commit 376a944abc2fb595785c447c440a9a67f5c6d755 Author: allard Date: Sun Nov 23 18:58:51 2025 +0100 initial commit diff --git a/GITHUBTOKEN b/GITHUBTOKEN new file mode 100644 index 0000000..76c9776 --- /dev/null +++ b/GITHUBTOKEN @@ -0,0 +1 @@ +3ecf481f2f51056b2a74d8ee5f6c150ea222b348 diff --git a/README.md b/README.md new file mode 100644 index 0000000..df013bf --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +Dit is een catalogus van alle yamls en values in github die gebruikt worden in de clusters van AllardDCS diff --git a/ansible/LICENSE b/ansible/LICENSE new file mode 100755 index 0000000..b022006 --- /dev/null +++ b/ansible/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Pavlos Ratis + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/ansible/README.md b/ansible/README.md new file mode 100755 index 0000000..3985a9b --- /dev/null +++ b/ansible/README.md @@ -0,0 +1,47 @@ +# ansible-rpi-cluster + +This is a basic collection of Ansible playbooks to perform common tasks in a Raspberry Pi cluster. + +Feel free to contribute other common tasks that would be useful. + +## Requirements + +* [Ansible](http://www.ansible.com/) + +## Installation + +Clone the repository + + git clone https://github.com/dastergon/ansible-rpi-cluster.git + +Copy `hosts.sample` to `hosts` + + cp hosts.sample hosts + +Edit `hosts` file with your own topology. For example: + +``` +[all:vars] +ansible_user=pi +ansible_ssh_pass=addyourpassword + +[picluster] +192.168.1.2 +192.168.1.3 +192.168.1.4 +192.168.1.5 +``` + +Run any of the playbooks. + +## Shutdown + +To shutdown all your RPis execute the following playbook: + + ansible-playbook playbooks/shutdown.yml -i hosts + +## Reboot + +To shutdown all your RPis execute the following playbook: + + ansible-playbook playbooks/reboot.yml -i hosts diff --git a/ansible/ansible-rpi-cluster/.gitignore b/ansible/ansible-rpi-cluster/.gitignore new file mode 100755 index 0000000..e2a23c8 --- /dev/null +++ b/ansible/ansible-rpi-cluster/.gitignore @@ -0,0 +1,2 @@ +.DS_Store +hosts diff --git a/ansible/ansible-rpi-cluster/LICENSE b/ansible/ansible-rpi-cluster/LICENSE new file mode 100755 index 0000000..b022006 --- /dev/null +++ b/ansible/ansible-rpi-cluster/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Pavlos Ratis + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/ansible/ansible-rpi-cluster/README.md b/ansible/ansible-rpi-cluster/README.md new file mode 100755 index 0000000..3985a9b --- /dev/null +++ b/ansible/ansible-rpi-cluster/README.md @@ -0,0 +1,47 @@ +# ansible-rpi-cluster + +This is a basic collection of Ansible playbooks to perform common tasks in a Raspberry Pi cluster. + +Feel free to contribute other common tasks that would be useful. + +## Requirements + +* [Ansible](http://www.ansible.com/) + +## Installation + +Clone the repository + + git clone https://github.com/dastergon/ansible-rpi-cluster.git + +Copy `hosts.sample` to `hosts` + + cp hosts.sample hosts + +Edit `hosts` file with your own topology. For example: + +``` +[all:vars] +ansible_user=pi +ansible_ssh_pass=addyourpassword + +[picluster] +192.168.1.2 +192.168.1.3 +192.168.1.4 +192.168.1.5 +``` + +Run any of the playbooks. + +## Shutdown + +To shutdown all your RPis execute the following playbook: + + ansible-playbook playbooks/shutdown.yml -i hosts + +## Reboot + +To shutdown all your RPis execute the following playbook: + + ansible-playbook playbooks/reboot.yml -i hosts diff --git a/ansible/ansible-rpi-cluster/catalog-info.yaml b/ansible/ansible-rpi-cluster/catalog-info.yaml new file mode 100644 index 0000000..c61641c --- /dev/null +++ b/ansible/ansible-rpi-cluster/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: ansible-ansible-rpi-cluster + title: Ansible-rpi-cluster (ansible) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/ansible/ansible-rpi-cluster/hosts.sample b/ansible/ansible-rpi-cluster/hosts.sample new file mode 100755 index 0000000..59f3f14 --- /dev/null +++ b/ansible/ansible-rpi-cluster/hosts.sample @@ -0,0 +1,2 @@ +[picluster] +rpi-worker 192.168.1.123 diff --git a/ansible/ansible-rpi-cluster/playbooks/reboot.yml b/ansible/ansible-rpi-cluster/playbooks/reboot.yml new file mode 100755 index 0000000..b7ac830 --- /dev/null +++ b/ansible/ansible-rpi-cluster/playbooks/reboot.yml @@ -0,0 +1,15 @@ +--- +- name: Playbook for rebooting the RPis + hosts: picluster + gather_facts: no + tasks: + - name: 'Reboot RPi' + shell: shutdown -r now + async: 0 + poll: 0 + ignore_errors: true + become: true + + - name: "Wait for reboot to complete" + local_action: wait_for host={{ ansible_host }} port=22 state=started delay=10 + become: false diff --git a/ansible/ansible-rpi-cluster/playbooks/shutdown.yml b/ansible/ansible-rpi-cluster/playbooks/shutdown.yml new file mode 100755 index 0000000..da9a4c0 --- /dev/null +++ b/ansible/ansible-rpi-cluster/playbooks/shutdown.yml @@ -0,0 +1,15 @@ +--- +- name: Playbook for shutting down the RPis + hosts: picluster + gather_facts: no + tasks: + - name: 'Shutdown RPi' + shell: shutdown -h now + async: 0 + poll: 0 + ignore_errors: true + become: true + + - name: "Wait for shutdown to complete" + local_action: wait_for host={{ ansible_host }} port=22 state=stopped + become: false diff --git a/ansible/ansible-rpi-cluster/playbooks/update.yml b/ansible/ansible-rpi-cluster/playbooks/update.yml new file mode 100755 index 0000000..da4fbbd --- /dev/null +++ b/ansible/ansible-rpi-cluster/playbooks/update.yml @@ -0,0 +1,8 @@ +--- +- name: Playbook for managing the updates in RPi + hosts: picluster + tasks: + - name: 'Update apt package cache' + become: yes + apt: + update_cache=yes diff --git a/ansible/ansible-rpi-cluster/playbooks/upgrade.yml b/ansible/ansible-rpi-cluster/playbooks/upgrade.yml new file mode 100755 index 0000000..c3e07b7 --- /dev/null +++ b/ansible/ansible-rpi-cluster/playbooks/upgrade.yml @@ -0,0 +1,11 @@ +--- +- name: Playbook for upgrading the RPis + hosts: picluster + gather_facts: no + tasks: + - name: Update and upgrade apt packages + become: true + apt: + upgrade: yes + update_cache: yes + cache_valid_time: 86400 diff --git a/ansible/catalog-info.yaml b/ansible/catalog-info.yaml new file mode 100644 index 0000000..fa67392 --- /dev/null +++ b/ansible/catalog-info.yaml @@ -0,0 +1,12 @@ +apiVersion: backstage.io/v1alpha1 +kind: System +metadata: + name: ansible + title: Ansible System +spec: + owner: platform-team + partOf: + - ../catalog-info.yaml + subcomponents: + - ./playbooks/catalog-info.yaml + - ./ansible-rpi-cluster/catalog-info.yaml diff --git a/ansible/hosts b/ansible/hosts new file mode 100755 index 0000000..d56fead --- /dev/null +++ b/ansible/hosts @@ -0,0 +1,8 @@ +[picluster] +pirtrwsv01 192.168.40.100 +pisvrwsv01 192.168.40.101 +pisvrwsv02 192.168.40.102 +pisvrwsv03 192.168.40.103 +pisvrwsv04 192.168.40.104 +pisvrwsv05 192.168.40.105 +pisvrwsv06 192.168.40.106 diff --git a/ansible/hosts.sample b/ansible/hosts.sample new file mode 100755 index 0000000..5f49f41 --- /dev/null +++ b/ansible/hosts.sample @@ -0,0 +1,9 @@ + +[picluster] +pirtrwsv01 192.168.40.100 +pisvrwsv01 192.168.40.101 +pisvrwsv02 192.168.40.102 +pisvrwsv03 192.168.40.103 +pisvrwsv04 192.168.40.104 +pisvrwsv05 192.168.40.105 +pisvrwsv06 192.168.40.106 diff --git a/ansible/playbooks/catalog-info.yaml b/ansible/playbooks/catalog-info.yaml new file mode 100644 index 0000000..9e5869b --- /dev/null +++ b/ansible/playbooks/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: ansible-playbooks + title: Playbooks (ansible) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/ansible/playbooks/reboot.yml b/ansible/playbooks/reboot.yml new file mode 100755 index 0000000..b7ac830 --- /dev/null +++ b/ansible/playbooks/reboot.yml @@ -0,0 +1,15 @@ +--- +- name: Playbook for rebooting the RPis + hosts: picluster + gather_facts: no + tasks: + - name: 'Reboot RPi' + shell: shutdown -r now + async: 0 + poll: 0 + ignore_errors: true + become: true + + - name: "Wait for reboot to complete" + local_action: wait_for host={{ ansible_host }} port=22 state=started delay=10 + become: false diff --git a/ansible/playbooks/shutdown.yml b/ansible/playbooks/shutdown.yml new file mode 100755 index 0000000..da9a4c0 --- /dev/null +++ b/ansible/playbooks/shutdown.yml @@ -0,0 +1,15 @@ +--- +- name: Playbook for shutting down the RPis + hosts: picluster + gather_facts: no + tasks: + - name: 'Shutdown RPi' + shell: shutdown -h now + async: 0 + poll: 0 + ignore_errors: true + become: true + + - name: "Wait for shutdown to complete" + local_action: wait_for host={{ ansible_host }} port=22 state=stopped + become: false diff --git a/ansible/playbooks/update.yml b/ansible/playbooks/update.yml new file mode 100755 index 0000000..da4fbbd --- /dev/null +++ b/ansible/playbooks/update.yml @@ -0,0 +1,8 @@ +--- +- name: Playbook for managing the updates in RPi + hosts: picluster + tasks: + - name: 'Update apt package cache' + become: yes + apt: + update_cache=yes diff --git a/ansible/playbooks/upgrade.yml b/ansible/playbooks/upgrade.yml new file mode 100755 index 0000000..c3e07b7 --- /dev/null +++ b/ansible/playbooks/upgrade.yml @@ -0,0 +1,11 @@ +--- +- name: Playbook for upgrading the RPis + hosts: picluster + gather_facts: no + tasks: + - name: Update and upgrade apt packages + become: true + apt: + upgrade: yes + update_cache: yes + cache_valid_time: 86400 diff --git a/asus/catalog-info.yaml b/asus/catalog-info.yaml new file mode 100644 index 0000000..d2f19f5 --- /dev/null +++ b/asus/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: System +metadata: + name: asus + title: Asus System +spec: + owner: platform-team + partOf: + - ../catalog-info.yaml + subcomponents: + - ./mongodb-sharded/catalog-info.yaml diff --git a/asus/mongodb-sharded/README.md b/asus/mongodb-sharded/README.md new file mode 100644 index 0000000..5f14b10 --- /dev/null +++ b/asus/mongodb-sharded/README.md @@ -0,0 +1,62 @@ +#VOORAF: +======== +De processor moet avx instructieset aankunnen. +Dit kun je controleren door het volgende commando uit te voeren in je virtualbx vm: + + cat /proc/cpuinfo | grep flags + +output: + + flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov + pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good + nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid + sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm + 3dnowprefetch pti fsgsbase bmi1 avx2 bmi2 invpcid rdseed adx clflushopt arat + +Je moet dan avx en sse4_2 tussen de flags zien staan: + +anders moet je op de windows host het commando + + bcdedit /set hypervisorlaunchtype off + +uitvoeren. + +#INSTALLATIE +============ +helm install mongodb bitnami/mongodb-sharded -n mongodb -f values.yaml + +OUTPUT: + +NAME: mongodb +LAST DEPLOYED: Mon Jul 7 09:10:41 2025 +NAMESPACE: mongodb +STATUS: deployed +REVISION: 1 +TEST SUITE: None +NOTES: +CHART NAME: mongodb-sharded +CHART VERSION: 9.1.1 +APP VERSION: 8.0.4 + +The MongoDB® Sharded cluster can be accessed via the Mongos instances in port 27017 on the following DNS name from within your cluster: + + mongodb-mongodb-sharded.mongodb.svc.cluster.local + +To get the root password run: + + export MONGODB_ROOT_PASSWORD=$(kubectl get secret --namespace mongodb mongodb-mongodb-sharded -o jsonpath="{.data.mongodb-root-password}" | base64 -d) + +To connect to your database run the following command: + + kubectl run --namespace mongodb mongodb-mongodb-sharded-client --rm --tty -i --restart='Never' --image docker.io/bitnami/mongodb-sharded:8.0.4-debian-12-r1 --command -- mongosh admin --host mongodb-mongodb-sharded --authenticationDatabase admin -u root -p $MONGODB_ROOT_PASSWORD + +To connect to your database from outside the cluster execute the following commands: + + kubectl port-forward --namespace mongodb svc/mongodb-mongodb-sharded 27017:27017 & + mongosh --host 127.0.0.1 --authenticationDatabase admin -p $MONGODB_ROOT_PASSWORD + +WARNING: There are "resources" sections in the chart not set. Using "resourcesPreset" is not recommended for production. For production installations, please set the following values according to your workload needs: + - configsvr.resources + - mongos.resources + - shardsvr.dataNode.resources ++info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ diff --git a/asus/mongodb-sharded/catalog-info.yaml b/asus/mongodb-sharded/catalog-info.yaml new file mode 100644 index 0000000..b93cadb --- /dev/null +++ b/asus/mongodb-sharded/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: asus-mongodb-sharded + title: Mongodb-sharded (asus) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/asus/mongodb-sharded/certificate.yaml b/asus/mongodb-sharded/certificate.yaml new file mode 100755 index 0000000..2abfe87 --- /dev/null +++ b/asus/mongodb-sharded/certificate.yaml @@ -0,0 +1,16 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: mongo-express-lp.allarddcs.nl-tls + namespace: mongodb +spec: + dnsNames: + - mongo-express-lp.allarddcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: mongo-express-lp.allarddcs.nl-tls + usages: + - digital signature + - key encipherment diff --git a/asus/mongodb-sharded/expose.yaml b/asus/mongodb-sharded/expose.yaml new file mode 100644 index 0000000..5205dd6 --- /dev/null +++ b/asus/mongodb-sharded/expose.yaml @@ -0,0 +1 @@ +microk8s kubectl expose deployment mongodb-mongodb-sharded --type=NodePort --name=mongodb-nodeport -n mongodb --port=27017 diff --git a/asus/mongodb-sharded/external-mongo-service.yaml b/asus/mongodb-sharded/external-mongo-service.yaml new file mode 100644 index 0000000..5d5fec9 --- /dev/null +++ b/asus/mongodb-sharded/external-mongo-service.yaml @@ -0,0 +1,22 @@ +apiVersion: v1 +kind: Service +metadata: + name: mongo + namespace: mongodb +spec: + ports: + - protocol: TCP + port: 27017 + targetPort: 27017 +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: mongo + namespace: mongodb +subsets: + - addresses: + - ip: 192.168.2.109 + ports: + - port: 30513 + diff --git a/asus/mongodb-sharded/mongo-express-lattepanda.yaml b/asus/mongodb-sharded/mongo-express-lattepanda.yaml new file mode 100644 index 0000000..164dc4a --- /dev/null +++ b/asus/mongodb-sharded/mongo-express-lattepanda.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: mongo-express +spec: + replicas: 1 + selector: + matchLabels: + app: mongo-express + template: + metadata: + labels: + app: mongo-express + spec: + containers: + - name: mongo-express + image: mongo-express + env: + - name: ME_CONFIG_MONGODB_URL + value: "mongodb://root:Mongodb01@192.168.2.109:30981" + ports: + - containerPort: 8081 +--- +apiVersion: v1 +kind: Service +metadata: + name: mongo-express +spec: + type: NodePort + ports: + - port: 8081 + targetPort: 8081 + nodePort: 30801 + selector: + app: mongo-express diff --git a/asus/mongodb-sharded/mongo-express-virtualbox.yaml b/asus/mongodb-sharded/mongo-express-virtualbox.yaml new file mode 100644 index 0000000..2776264 --- /dev/null +++ b/asus/mongodb-sharded/mongo-express-virtualbox.yaml @@ -0,0 +1,43 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: mongo-express + labels: + app: mongo-express +spec: + replicas: 1 + selector: + matchLabels: + app: mongo-express + template: + metadata: + labels: + app: mongo-express + spec: + containers: + - name: mongo-express + image: mongo-express:latest + env: + - name: ME_CONFIG_MONGODB_SERVER + value: "mongo.mongodb.svc.cluster.local" + - name: ME_CONFIG_MONGODB_PORT + value: "27017" + - name: ME_CONFIG_BASICAUTH_USERNAME + value: "admin" + - name: ME_CONFIG_BASICAUTH_PASSWORD + value: "pass" + ports: + - containerPort: 8081 +--- +apiVersion: v1 +kind: Service +metadata: + name: mongo-express +spec: + type: NodePort + ports: + - port: 8081 + targetPort: 8081 + nodePort: 30081 + selector: + app: mongo-express diff --git a/asus/mongodb-sharded/mongo-sharded-express.yaml b/asus/mongodb-sharded/mongo-sharded-express.yaml new file mode 100755 index 0000000..f7cc2dc --- /dev/null +++ b/asus/mongodb-sharded/mongo-sharded-express.yaml @@ -0,0 +1,63 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: mongo-sharded-express + namespace: nodejs + labels: + app: mongo-sharded-express +spec: + replicas: 1 + selector: + matchLabels: + app: mongo-sharded-express + template: + metadata: + labels: + app: mongo-sharded-express + spec: + containers: + - name: mongo-sharded-express + image: mongo-express + ports: + - containerPort: 8081 + env: + - name: ME_CONFIG_OPTIONS_EDITORTHEME + value: "ambiance" + - name: ME_CONFIG_BASICAUTH_USERNAME + value: "admin" + - name: ME_CONFIG_BASICAUTH_PASSWORD + value: "Mongodb01" + - name: ME_CONFIG_MONGODB_URL + value: "mongodb://root:Mongodb01@192.168.2.109:30981" +--- +apiVersion: v1 +kind: Service +metadata: + name: mongo-sharded-express + namespace: nodejs + labels: + name: mongo-sharded-express +spec: + type: ClusterIP + ports: + - port: 8081 + name: http + selector: + app: mongo-sharded-express +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: mongo-sharded-express-tls + namespace: nodejs +spec: + entryPoints: + - websecure + routes: + - match: Host(`mongoshardedexpress-prod.allarddcs.nl`) + kind: Rule + services: + - name: mongo-sharded-express + port: 8081 + tls: + certResolver: letsencrypt diff --git a/asus/mongodb-sharded/values.yaml b/asus/mongodb-sharded/values.yaml new file mode 100644 index 0000000..a9ad1dc --- /dev/null +++ b/asus/mongodb-sharded/values.yaml @@ -0,0 +1,1932 @@ +# Copyright Broadcom, Inc. All Rights Reserved. +# SPDX-License-Identifier: APACHE-2.0 + +## @section Global parameters +## Global Docker image parameters +## Please, note that this will override the image parameters, including dependencies, configured to use the global value +## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass +## + +## @param global.imageRegistry Global Docker image registry +## @param global.imagePullSecrets Global Docker registry secret names as an array +## @param global.defaultStorageClass Global default StorageClass for Persistent Volume(s) +## @param global.storageClass DEPRECATED: use global.defaultStorageClass instead +## +global: + imageRegistry: "" + ## E.g. + ## imagePullSecrets: + ## - myRegistryKeySecretName + ## + imagePullSecrets: [] + defaultStorageClass: "" + storageClass: "" + ## Security parameters + ## + security: + ## @param global.security.allowInsecureImages Allows skipping image verification + allowInsecureImages: false + ## Compatibility adaptations for Kubernetes platforms + ## + compatibility: + ## Compatibility adaptations for Openshift + ## + openshift: + ## @param global.compatibility.openshift.adaptSecurityContext Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) + ## + adaptSecurityContext: auto +## @section Common parameters +## + +## @param kubeVersion Override Kubernetes version +## +kubeVersion: "" +## @param nameOverride String to partially override common.names.name +## +nameOverride: "" +## @param fullnameOverride String to fully override common.names.fullname +## +fullnameOverride: "" +## @param namespaceOverride String to fully override common.names.namespace +## +namespaceOverride: "" +## @param commonLabels Labels to add to all deployed objects +## +commonLabels: {} +## @param commonAnnotations Annotations to add to all deployed objects +## +commonAnnotations: {} +## @param clusterDomain Kubernetes cluster domain name +## +clusterDomain: cluster.local +## @param extraDeploy Array of extra objects to deploy with the release +## +extraDeploy: [] +## Enable diagnostic mode in the deployment +## +diagnosticMode: + ## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden) + ## + enabled: false + ## @param diagnosticMode.command Command to override all containers in the deployment + ## + command: + - sleep + ## @param diagnosticMode.args Args to override all containers in the deployment + ## + args: + - infinity +## @section MongoDB(®) Sharded parameters +## + +## Bitnami MongoDB(®) Sharded image version +## ref: https://hub.docker.com/r/bitnami/mongodb-sharded/tags/ +## @param image.registry [default: REGISTRY_NAME] MongoDB(®) Sharded image registry +## @param image.repository [default: REPOSITORY_NAME/mongodb-sharded] MongoDB(®) Sharded Image name +## @skip image.tag MongoDB(®) Sharded image tag (immutable tags are recommended) +## @param image.digest MongoDB(®) Sharded image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag +## @param image.pullPolicy MongoDB(®) Sharded image pull policy +## @param image.pullSecrets Specify docker-registry secret names as an array +## @param image.debug Specify if debug logs should be enabled +## +image: + registry: docker.io + repository: bitnami/mongodb-sharded + tag: 8.0.10-debian-12-r2 + digest: "" + ## Specify a imagePullPolicy + ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Set to true if you would like to see extra information on logs + ## + debug: false +## MongoDB(®) Authentication parameters +## +auth: + ## @param auth.enabled Enable authentication + ## ref: https://docs.mongodb.com/manual/tutorial/enable-authentication/ + ## + enabled: true + ## @param auth.rootUser MongoDB(®) root user + ## + rootUser: root + ## @param auth.rootPassword MongoDB(®) root password + ## ref: https://github.com/bitnami/containers/tree/main/bitnami/mongodb#setting-the-root-user-and-password-on-first-run + ## + rootPassword: "Mongodb01" + ## @param auth.replicaSetKey Key used for authentication in the replicaset + ## + replicaSetKey: "" + ## @param auth.existingSecret Existing secret with MongoDB(®) credentials (keys: `mongodb-password`, `mongodb-root-password`, `mongodb-replica-set-key`) + ## NOTE: When it's set the previous parameters are ignored. + ## + existingSecret: "" + ## @param auth.usePasswordFiles Mount credentials as files instead of using environment variables + ## + usePasswordFiles: true +## @param shards Number of shards to be created +## ref: https://docs.mongodb.com/manual/core/sharded-cluster-shards/ +## +shards: 2 +## Properties for all of the pods in the cluster (shards, config servers and mongos) +## +common: + ## @param common.mongodbEnableNumactl Enable launch MongoDB instance prefixed with "numactl --interleave=all" + ## ref: https://docs.mongodb.com/manual/administration/production-notes/#mongodb-and-numa-hardware + ## + mongodbEnableNumactl: false + ## @param common.useHostnames Enable DNS hostnames in the replica set config + ## + useHostnames: true + ## @param common.mongodbEnableIPv6 Switch to enable/disable IPv6 on MongoDB® + ## ref: https://github.com/bitnami/containers/tree/main/bitnami/mongodb#enablingdisabling-ipv6 + ## + mongodbEnableIPv6: false + ## @param common.mongodbDirectoryPerDB Switch to enable/disable DirectoryPerDB on MongoDB® + ## ref: https://github.com/bitnami/containers/tree/main/bitnami/mongodb#enablingdisabling-directoryperdb + ## + mongodbDirectoryPerDB: false + ## @param common.mongodbSystemLogVerbosity MongoDB® system log verbosity level + ## ref: https://docs.mongodb.com/manual/reference/program/mongo/#cmdoption-mongo-ipv6 + ## + mongodbSystemLogVerbosity: 0 + ## @param common.mongodbDisableSystemLog Whether to disable MongoDB® system log or not + ## ref: https://github.com/bitnami/containers/tree/main/bitnami/mongodb#configuring-system-log-verbosity-level + ## + mongodbDisableSystemLog: false + ## @param common.mongodbInitRetryAttempts Maximum retries for checking the MongoDB® initialization status + ## + mongodbInitRetryAttempts: 24 + ## @param common.mongodbInitRetryDelay Time (in seconds) to wait between retries for checking the MongoDB® initialization status + ## + mongodbInitRetryDelay: 5 + ## @param common.initScriptsCM Configmap with init scripts to execute + ## + initScriptsCM: "" + ## @param common.initScriptsSecret Secret with init scripts to execute (for sensitive data) + ## + initScriptsSecret: "" + ## @param common.extraEnvVars An array to add extra env vars + ## For example: + ## extraEnvVars: + ## - name: KIBANA_ELASTICSEARCH_URL + ## value: test + ## + extraEnvVars: [] + ## @param common.extraEnvVarsCM Name of a ConfigMap containing extra env vars + ## + extraEnvVarsCM: "" + ## @param common.extraEnvVarsSecret Name of a Secret containing extra env vars + ## + extraEnvVarsSecret: "" + ## @param common.sidecars Add sidecars to the pod + ## For example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param common.initContainers Add init containers to the pod + ## For example: + ## initcontainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## + initContainers: [] + ## @param common.podAnnotations Additional pod annotations + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param common.podLabels Additional pod labels + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param common.extraVolumes Array to add extra volumes + ## + extraVolumes: [] + ## @param common.extraVolumeMounts Array to add extra mounts (normally used with extraVolumes) + ## + extraVolumeMounts: [] + ## @param common.containerPorts.mongodb MongoDB container port + ## + containerPorts: + mongodb: 27017 + ## K8s Service Account. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ## + serviceAccount: + ## @param common.serviceAccount.create Whether to create a Service Account for all pods automatically + ## + create: true + ## @param common.serviceAccount.name Name of a Service Account to be used by all Pods + ## If not set and create is true, a name is generated using the XXX.fullname template + ## + name: "" + ## @param common.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) + ## + annotations: {} + ## @param common.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## + automountServiceAccountToken: false +## Init containers parameters: +## volumePermissions: Change the owner and group of the persistent volume mountpoint to runAsUser:fsGroup values from the securityContext section. +## +volumePermissions: + ## @param volumePermissions.enabled Enable init container that changes volume permissions in the data directory (for cases where the default k8s `runAsUser` and `fsUser` values do not work) + ## + enabled: false + ## @param volumePermissions.image.registry [default: REGISTRY_NAME] Init container volume-permissions image registry + ## @param volumePermissions.image.repository [default: REPOSITORY_NAME/os-shell] Init container volume-permissions image name + ## @skip volumePermissions.image.tag Init container volume-permissions image tag + ## @param volumePermissions.image.digest Init container volume-permissions image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param volumePermissions.image.pullPolicy Init container volume-permissions image pull policy + ## @param volumePermissions.image.pullSecrets Init container volume-permissions image pull secrets + ## + image: + registry: docker.io + repository: bitnami/os-shell + tag: 12-debian-12-r40 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## @param volumePermissions.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if volumePermissions.resources is set (volumePermissions.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param volumePermissions.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} +## Kubernetes service type +## ref: https://kubernetes.io/docs/concepts/services-networking/service/ +## +service: + ## @param service.name Specify an explicit service name + ## + name: "" + ## @param service.annotations Additional service annotations (evaluate as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + annotations: {} + ## @param service.type Service type + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + ## + type: ClusterIP + ## @param service.externalTrafficPolicy External traffic policy + ## Enable client source IP preservation + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + ## + externalTrafficPolicy: Cluster + ## @param service.ports.mongodb MongoDB® service port + ## + ports: + mongodb: 27017 + ## @param service.clusterIP Static clusterIP or None for headless services + ## ref: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.16/#servicespec-v1-core + ## + clusterIP: "" + ## @param service.nodePorts.mongodb Specify the nodePort value for the LoadBalancer and NodePort service types. + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## + nodePorts: + mongodb: "" + ## @param service.externalIPs External IP list to use with ClusterIP service type + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#external-ips + ## + externalIPs: [] + ## @param service.loadBalancerIP Static IP Address to use for LoadBalancer service type + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#loadbalancer + ## + loadBalancerIP: "" + ## @param service.loadBalancerSourceRanges List of IP ranges allowed access to load balancer (if supported) + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## + loadBalancerSourceRanges: [] + ## @param service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same mongos Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## Headless service properties + ## + headless: + ## @param service.headless.annotations Annotations for the headless service. + ## + annotations: {} +## Network Policies +## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/ +## +networkPolicy: + ## @param networkPolicy.enabled Specifies whether a NetworkPolicy should be created + ## + enabled: true + ## @param networkPolicy.allowExternal Don't require server label for connections + ## The Policy model to apply. When set to false, only pods with the correct + ## server label will have network access to the ports server is listening + ## on. When true, server will accept connections from any source + ## (with the correct destination port). + ## + allowExternal: true + ## @param networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations. + ## + allowExternalEgress: true + ## @param networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy + ## e.g: + ## extraIngress: + ## - ports: + ## - port: 1234 + ## from: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + extraIngress: [] + ## @param networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy + ## e.g: + ## extraEgress: + ## - ports: + ## - port: 1234 + ## to: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + ## + extraEgress: [] + ## @param networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces + ## @param networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces + ## + ingressNSMatchLabels: {} + ingressNSPodMatchLabels: {} +## @section Config Server parameters +## + +## Config Server replica set properties +## ref: https://docs.mongodb.com/manual/core/sharded-cluster-config-servers/ +## +configsvr: + ## @param configsvr.replicaCount Number of nodes in the replica set (the first node will be primary) + ## + replicaCount: 1 + ## @param configsvr.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if configsvr.resources is set (configsvr.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "small" + ## @param configsvr.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## + resources: {} + ## @param configsvr.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: false + ## @param configsvr.hostAliases Deployment pod host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param configsvr.mongodbExtraFlags MongoDB® additional command line flags + ## Can be used to specify command line flags, for example: + ## mongodbExtraFlags: + ## - "--wiredTigerCacheSizeGB=2" + ## + mongodbExtraFlags: [] + ## @param configsvr.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param configsvr.priorityClassName Pod priority class name + ## https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ + ## + priorityClassName: "" + ## @param configsvr.podAffinityPreset Config Server Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param configsvr.podAntiAffinityPreset Config Server Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param configsvr.nodeAffinityPreset.type Config Server Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param configsvr.nodeAffinityPreset.key Config Server Node label key to match Ignored if `affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param configsvr.nodeAffinityPreset.values Config Server Node label values to match. Ignored if `affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param configsvr.affinity Config Server Affinity for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: configsvr.podAffinityPreset, configsvr.podAntiAffinityPreset, and configsvr.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param configsvr.nodeSelector Config Server Node labels for pod assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param configsvr.tolerations Config Server Tolerations for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param configsvr.podManagementPolicy Statefulset's pod management policy, allows parallel startup of pods + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies + ## + podManagementPolicy: OrderedReady + ## @param configsvr.updateStrategy.type updateStrategy for MongoDB® Primary, Secondary and Arbiter statefulsets + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + type: RollingUpdate + ## @param configsvr.config MongoDB® configuration file + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + config: "" + ## @param configsvr.configCM ConfigMap name with Config Server configuration file (cannot be used with configsvr.config) + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + configCM: "" + ## @param configsvr.extraEnvVars An array to add extra env vars + ## For example: + ## extraEnvVars: + ## - name: KIBANA_ELASTICSEARCH_URL + ## value: test + ## + extraEnvVars: [] + ## @param configsvr.extraEnvVarsCM Name of a ConfigMap containing extra env vars + ## + extraEnvVarsCM: "" + ## @param configsvr.extraEnvVarsSecret Name of a Secret containing extra env vars + ## + extraEnvVarsSecret: "" + ## @param configsvr.sidecars Add sidecars to the pod + ## For example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param configsvr.initContainers Add init containers to the pod + ## For example: + ## initcontainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## + initContainers: [] + ## @param configsvr.podAnnotations Additional pod annotations + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param configsvr.podLabels Additional pod labels + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param configsvr.extraVolumes Array to add extra volumes. Requires setting `extraVolumeMounts` + ## + extraVolumes: [] + ## @param configsvr.extraVolumeMounts Array to add extra mounts (normally used with extraVolumes). Normally used with `extraVolumes` + ## + extraVolumeMounts: [] + ## @param configsvr.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## Pod disruption budget + ## + pdb: + ## @param configsvr.pdb.create Enable pod disruption budget + ## + create: true + ## @param configsvr.pdb.minAvailable Minimum number of available config pods allowed (`0` to disable) + ## + minAvailable: 0 + ## @param configsvr.pdb.maxUnavailable Maximum number of unavailable config pods allowed (`0` to disable) + ## + maxUnavailable: 1 + ## Enable persistence using Persistent Volume Claims + ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/ + ## + persistence: + ## @param configsvr.persistence.enabled Use a PVC to persist data + ## + enabled: true + ## @param configsvr.persistence.mountPath Path to mount the volume at + ## MongoDB® images. + ## + mountPath: /bitnami/mongodb + ## @param configsvr.persistence.subPath Subdirectory of the volume to mount at (evaluated as a template) + ## Useful in dev environments and one PV for multiple services. + ## + subPath: "" + ## @param configsvr.persistence.storageClass Storage class of backing PVC + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + storageClass: "" + ## @param configsvr.persistence.accessModes Use volume as ReadOnly or ReadWrite + ## + accessModes: + - ReadWriteOnce + ## @param configsvr.persistence.size PersistentVolumeClaim size + ## + size: 8Gi + ## @param configsvr.persistence.annotations Persistent Volume annotations + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + annotations: {} + ## Persistent Volume Claim Retention Policy + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention + ## + persistentVolumeClaimRetentionPolicy: + ## @param configsvr.persistentVolumeClaimRetentionPolicy.enabled Enable Persistent volume retention policy for Config Server StatefulSet + ## + enabled: false + ## @param configsvr.persistentVolumeClaimRetentionPolicy.whenScaled Volume retention behavior when the replica count of the StatefulSet is reduced + ## + whenScaled: Retain + ## @param configsvr.persistentVolumeClaimRetentionPolicy.whenDeleted Volume retention behavior that applies when the StatefulSet is deleted + ## + whenDeleted: Retain + ## K8s Service Account. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ## + serviceAccount: + ## @param configsvr.serviceAccount.create Specifies whether a ServiceAccount should be created for Config Server + ## + create: true + ## @param configsvr.serviceAccount.name Name of a Service Account to be used by Config Server + ## If not set and create is true, a name is generated using the XXX.fullname template + ## + name: "" + ## @param configsvr.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) + ## + annotations: {} + ## @param configsvr.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## + automountServiceAccountToken: false + ## Use a external config server instead of deploying one + ## + external: + ## @param configsvr.external.host Primary node of an external Config Server replicaset + ## + host: "" + ## @param configsvr.external.rootPassword Root password of the external Config Server replicaset + ## + rootPassword: "" + ## @param configsvr.external.replicasetName Replicaset name of an external Config Server + ## + replicasetName: "" + ## @param configsvr.external.replicasetKey Replicaset key of an external Config Server + ## + replicasetKey: "" + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + ## @param configsvr.podSecurityContext.enabled Enable security context + ## @param configsvr.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param configsvr.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param configsvr.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param configsvr.podSecurityContext.fsGroup Group ID for the container + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param configsvr.containerSecurityContext.enabled Enabled containers' Security Context + ## @param configsvr.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param configsvr.containerSecurityContext.runAsUser Set containers' Security Context runAsUser + ## @param configsvr.containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup + ## @param configsvr.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot + ## @param configsvr.containerSecurityContext.privileged Set container's Security Context privileged + ## @param configsvr.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem + ## @param configsvr.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation + ## @param configsvr.containerSecurityContext.capabilities.drop List of capabilities to be dropped + ## @param configsvr.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + privileged: false + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## @param configsvr.command Override default container command (useful when using custom images) + ## + command: + - /bin/bash + - /entrypoint/replicaset-entrypoint.sh + ## @param configsvr.args Override default container args (useful when using custom images) + ## + args: [] + ## @param configsvr.terminationGracePeriodSeconds Seconds Redmine pod needs to terminate gracefully + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods + ## + terminationGracePeriodSeconds: "" + ## @param configsvr.lifecycleHooks for the Config Server container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## Configure extra options for liveness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param configsvr.livenessProbe.enabled Enable livenessProbe + ## @param configsvr.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param configsvr.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param configsvr.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param configsvr.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param configsvr.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 60 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 2 + successThreshold: 1 + ## Configure extra options for readiness probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param configsvr.readinessProbe.enabled Enable readinessProbe + ## @param configsvr.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param configsvr.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param configsvr.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param configsvr.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param configsvr.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 6 + successThreshold: 1 + ## Configure extra options for startup probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param configsvr.startupProbe.enabled Enable startupProbe + ## @param configsvr.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param configsvr.startupProbe.periodSeconds Period seconds for startupProbe + ## @param configsvr.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param configsvr.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param configsvr.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: true + initialDelaySeconds: 0 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 30 + successThreshold: 1 + ## @param configsvr.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param configsvr.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param configsvr.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} +## @section Mongos parameters +## + +## Mongos properties +## ref: https://docs.mongodb.com/manual/reference/program/mongos/#bin.mongos +## +mongos: + ## @param mongos.replicaCount Number of replicas + ## + replicaCount: 1 + ## @param mongos.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if mongos.resources is set (mongos.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "small" + ## @param mongos.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## + resources: {} + ## @param mongos.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: false + ## @param mongos.hostAliases Deployment pod host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param mongos.mongodbExtraFlags MongoDB® additional command line flags + ## Can be used to specify command line flags, for example: + ## mongodbExtraFlags: + ## - "--wiredTigerCacheSizeGB=2" + ## + mongodbExtraFlags: [] + ## @param mongos.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param mongos.priorityClassName Pod priority class name + ## https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ + ## + priorityClassName: "" + ## @param mongos.podAffinityPreset Mongos Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param mongos.podAntiAffinityPreset Mongos Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param mongos.nodeAffinityPreset.type Mongos Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param mongos.nodeAffinityPreset.key Mongos Node label key to match Ignored if `affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param mongos.nodeAffinityPreset.values Mongos Node label values to match. Ignored if `affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param mongos.affinity Mongos Affinity for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: mongos.podAffinityPreset, mongos.podAntiAffinityPreset, and mongos.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param mongos.nodeSelector Mongos Node labels for pod assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param mongos.tolerations Mongos Tolerations for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param mongos.podManagementPolicy Statefulsets pod management policy, allows parallel startup of pods + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies + ## + podManagementPolicy: OrderedReady + ## @param mongos.updateStrategy.type updateStrategy for MongoDB® Primary, Secondary and Arbiter statefulsets + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + type: RollingUpdate + ## @param mongos.config MongoDB® configuration file + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + config: "" + ## @param mongos.configCM ConfigMap name with MongoDB® configuration file (cannot be used with mongos.config) + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + configCM: "" + ## @param mongos.extraEnvVars An array to add extra env vars + ## For example: + ## extraEnvVars: + ## - name: KIBANA_ELASTICSEARCH_URL + ## value: test + ## + extraEnvVars: [] + ## @param mongos.extraEnvVarsCM Name of a ConfigMap containing extra env vars + ## + extraEnvVarsCM: "" + ## @param mongos.extraEnvVarsSecret Name of a Secret containing extra env vars + ## + extraEnvVarsSecret: "" + ## @param mongos.sidecars Add sidecars to the pod + ## For example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param mongos.initContainers Add init containers to the pod + ## For example: + ## initcontainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## + initContainers: [] + ## @param mongos.podAnnotations Additional pod annotations + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param mongos.podLabels Additional pod labels + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param mongos.extraVolumes Array to add extra volumes. Requires setting `extraVolumeMounts` + ## + extraVolumes: [] + ## @param mongos.extraVolumeMounts Array to add extra volume mounts. Normally used with `extraVolumes`. + ## + extraVolumeMounts: [] + ## @param mongos.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param mongos.useStatefulSet Use StatefulSet instead of Deployment + ## + useStatefulSet: false + ## When using a statefulset, you can enable one service per replica + ## This is useful when exposing the mongos through load balancers to make sure clients + ## connect to the same mongos and therefore can follow their cursors + ## + servicePerReplica: + ## @param mongos.servicePerReplica.enabled Create one service per mongos replica (must be used with statefulset) + ## + enabled: false + ## @param mongos.servicePerReplica.annotations Additional service annotations (evaluate as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + annotations: {} + ## @param mongos.servicePerReplica.type Service type + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + ## + type: ClusterIP + ## @param mongos.servicePerReplica.externalTrafficPolicy External traffic policy + ## Enable client source IP preservation + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + ## + externalTrafficPolicy: Cluster + ## @param mongos.servicePerReplica.port MongoDB® service port + ## + port: 27017 + ## @param mongos.servicePerReplica.clusterIPs Array of static clusterIPs for each MongoDB@reg; replica. Length must be the same as mongos.replicaCount + ## ref: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.16/#servicespec-v1-core + ## + clusterIPs: [] + ## @param mongos.servicePerReplica.nodePorts Array of node ports used for each MongoDB@reg; replica. Length must be the same as mongos.replicaCount + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## + nodePorts: [] + ## @param mongos.servicePerReplica.externalIPs External IP list to use with ClusterIP service type + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#external-ips + ## + externalIPs: [] + ## @param mongos.servicePerReplica.loadBalancerIPs Array of static IP Address to use for each replica LoadBalancer service type. Length must be the same as mongos.replicaCount + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#loadbalancer + ## + loadBalancerIPs: [] + ## @param mongos.servicePerReplica.loadBalancerSourceRanges List of IP ranges allowed access to load balancer (if supported) + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## + loadBalancerSourceRanges: [] + ## @param mongos.servicePerReplica.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param mongos.servicePerReplica.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same mongos Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param mongos.servicePerReplica.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## Pod disruption budget + ## + pdb: + ## @param mongos.pdb.create Enable pod disruption budget + ## + create: true + ## @param mongos.pdb.minAvailable Minimum number of available mongo pods allowed (`0` to disable) + ## + minAvailable: 0 + ## @param mongos.pdb.maxUnavailable Maximum number of unavailable mongo pods allowed (`0` to disable) + ## + maxUnavailable: 1 + ## K8s Service Account. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ## + serviceAccount: + ## @param mongos.serviceAccount.create Whether to create a Service Account for mongos automatically + ## + create: true + ## @param mongos.serviceAccount.name Name of a Service Account to be used by mongos + ## If not set and create is true, a name is generated using the XXX.fullname template + ## + name: "" + ## @param mongos.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) + ## + annotations: {} + ## @param mongos.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## + automountServiceAccountToken: false + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + ## @param mongos.podSecurityContext.enabled Enable security context + ## @param mongos.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param mongos.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param mongos.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param mongos.podSecurityContext.fsGroup Group ID for the container + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param mongos.containerSecurityContext.enabled Enabled containers' Security Context + ## @param mongos.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param mongos.containerSecurityContext.runAsUser Set containers' Security Context runAsUser + ## @param mongos.containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup + ## @param mongos.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot + ## @param mongos.containerSecurityContext.privileged Set container's Security Context privileged + ## @param mongos.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem + ## @param mongos.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation + ## @param mongos.containerSecurityContext.capabilities.drop List of capabilities to be dropped + ## @param mongos.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + privileged: false + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## @param mongos.command Override default container command (useful when using custom images) + ## + command: [] + ## @param mongos.args Override default container args (useful when using custom images) + ## + args: [] + ## @param mongos.terminationGracePeriodSeconds Seconds Redmine pod needs to terminate gracefully + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods + ## + terminationGracePeriodSeconds: "" + ## @param mongos.lifecycleHooks for the Mongo container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## Configure extra options for liveness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param mongos.livenessProbe.enabled Enable livenessProbe + ## @param mongos.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param mongos.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param mongos.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param mongos.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param mongos.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 60 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 2 + successThreshold: 1 + ## Configure extra options for readiness probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param mongos.readinessProbe.enabled Enable readinessProbe + ## @param mongos.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param mongos.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param mongos.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param mongos.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param mongos.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 6 + successThreshold: 1 + ## Configure extra options for startup probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param mongos.startupProbe.enabled Enable startupProbe + ## @param mongos.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param mongos.startupProbe.periodSeconds Period seconds for startupProbe + ## @param mongos.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param mongos.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param mongos.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 0 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 30 + successThreshold: 1 + ## @param mongos.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param mongos.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param mongos.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} +## @section Shard configuration: Data node parameters +## + +## Shard replica set properties +## ref: https://docs.mongodb.com/manual/replication/index.html +## +shardsvr: + ## Properties for data nodes (primary and secondary) + ## + dataNode: + ## @param shardsvr.dataNode.replicaCount Number of nodes in each shard replica set (the first node will be primary) + ## + replicaCount: 1 + ## @param shardsvr.dataNode.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if shardsvr.dataNode.resources is set (shardsvr.dataNode.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "medium" + ## @param shardsvr.dataNode.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## + resources: {} + ## @param shardsvr.dataNode.mongodbExtraFlags MongoDB® additional command line flags + ## Can be used to specify command line flags, for example: + ## mongodbExtraFlags: + ## - "--wiredTigerCacheSizeGB=2" + ## + mongodbExtraFlags: [] + ## @param shardsvr.dataNode.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param shardsvr.dataNode.priorityClassName Pod priority class name + ## https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ + ## + priorityClassName: "" + ## @param shardsvr.dataNode.podAffinityPreset Data nodes Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param shardsvr.dataNode.podAntiAffinityPreset Data nodes Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param shardsvr.dataNode.nodeAffinityPreset.type Data nodes Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param shardsvr.dataNode.nodeAffinityPreset.key Data nodes Node label key to match Ignored if `affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param shardsvr.dataNode.nodeAffinityPreset.values Data nodes Node label values to match. Ignored if `affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param shardsvr.dataNode.affinity Data nodes Affinity for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## You can set dataNodeLoopId (or any other parameter) by setting the below code block under this 'affinity' section: + ## affinity: + ## matchLabels: + ## shard: "{{ .dataNodeLoopId }}" + ## + ## Note: shardsvr.dataNode.podAffinityPreset, shardsvr.dataNode.podAntiAffinityPreset, and shardsvr.dataNode.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param shardsvr.dataNode.nodeSelector Data nodes Node labels for pod assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## You can set dataNodeLoopId (or any other parameter) by setting the below code block under this 'nodeSelector' section: + ## nodeSelector: { shardId: "{{ .dataNodeLoopId }}" } + ## + nodeSelector: {} + ## @param shardsvr.dataNode.tolerations Data nodes Tolerations for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## You can set dataNodeLoopId (or any other parameter) by setting the below code block under this 'nodeSelector' section: + ## tolerations: + ## - key: "shardId" + ## operator: "Equal" + ## value: "{{ .dataNodeLoopId }}" + ## effect: "NoSchedule" + ## + tolerations: [] + ## @param shardsvr.dataNode.podManagementPolicy podManagementPolicy for the statefulset, allows parallel startup of pods + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies + ## + podManagementPolicy: OrderedReady + ## @param shardsvr.dataNode.updateStrategy.type updateStrategy for MongoDB® Primary, Secondary and Arbiter statefulsets + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + type: RollingUpdate + ## @param shardsvr.dataNode.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: false + ## @param shardsvr.dataNode.hostAliases Deployment pod host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param shardsvr.dataNode.config Entries for the MongoDB® config file + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + config: "" + ## @param shardsvr.dataNode.configCM ConfigMap name with MongoDB® configuration (cannot be used with shardsvr.dataNode.config) + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + configCM: "" + ## @param shardsvr.dataNode.extraEnvVars An array to add extra env vars + ## For example: + ## extraEnvVars: + ## - name: KIBANA_ELASTICSEARCH_URL + ## value: test + ## + extraEnvVars: [] + ## @param shardsvr.dataNode.extraEnvVarsCM Name of a ConfigMap containing extra env vars + ## + extraEnvVarsCM: "" + ## @param shardsvr.dataNode.extraEnvVarsSecret Name of a Secret containing extra env vars + ## + extraEnvVarsSecret: "" + ## @param shardsvr.dataNode.sidecars Attach additional containers (evaluated as a template) + ## For example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param shardsvr.dataNode.initContainers Add init containers to the pod + ## For example: + ## initcontainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## + initContainers: [] + ## @param shardsvr.dataNode.podAnnotations Additional pod annotations + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param shardsvr.dataNode.podLabels Additional pod labels + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param shardsvr.dataNode.extraVolumes Array to add extra volumes. Requires setting `extraVolumeMounts` + ## + extraVolumes: [] + ## @param shardsvr.dataNode.extraVolumeMounts Array to add extra mounts. Normally used with `extraVolumes` + ## + extraVolumeMounts: [] + ## @param shardsvr.dataNode.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## Pod disruption budget + ## + pdb: + ## @param shardsvr.dataNode.pdb.create Enable pod disruption budget + ## + create: true + ## @param shardsvr.dataNode.pdb.minAvailable Minimum number of available data pods allowed (`0` to disable) + ## + minAvailable: 0 + ## @param shardsvr.dataNode.pdb.maxUnavailable Maximum number of unavailable data pods allowed (`0` to disable) + ## + maxUnavailable: 1 + ## K8s Service Account. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ## + serviceAccount: + ## @param shardsvr.dataNode.serviceAccount.create Specifies whether a ServiceAccount should be created for shardsvr + ## + create: true + ## @param shardsvr.dataNode.serviceAccount.name Name of a Service Account to be used by shardsvr data pods + ## If not set and create is true, a name is generated using the XXX.fullname template + ## + name: "" + ## @param shardsvr.dataNode.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) + ## + annotations: {} + ## @param shardsvr.dataNode.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## + automountServiceAccountToken: false + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + ## @param shardsvr.dataNode.podSecurityContext.enabled Enable security context + ## @param shardsvr.dataNode.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param shardsvr.dataNode.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param shardsvr.dataNode.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param shardsvr.dataNode.podSecurityContext.fsGroup Group ID for the container + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param shardsvr.dataNode.containerSecurityContext.enabled Enabled containers' Security Context + ## @param shardsvr.dataNode.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param shardsvr.dataNode.containerSecurityContext.runAsUser Set containers' Security Context runAsUser + ## @param shardsvr.dataNode.containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup + ## @param shardsvr.dataNode.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot + ## @param shardsvr.dataNode.containerSecurityContext.privileged Set container's Security Context privileged + ## @param shardsvr.dataNode.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem + ## @param shardsvr.dataNode.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation + ## @param shardsvr.dataNode.containerSecurityContext.capabilities.drop List of capabilities to be dropped + ## @param shardsvr.dataNode.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + privileged: false + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## @param shardsvr.dataNode.command Override default container command (useful when using custom images) + ## + command: + - /bin/bash + - /entrypoint/replicaset-entrypoint.sh + ## @param shardsvr.dataNode.args Override default container args (useful when using custom images) + ## + args: [] + ## @param shardsvr.dataNode.terminationGracePeriodSeconds Seconds Redmine pod needs to terminate gracefully + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods + ## + terminationGracePeriodSeconds: "" + ## @param shardsvr.dataNode.lifecycleHooks for the Data container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## Configure extra options for liveness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param shardsvr.dataNode.livenessProbe.enabled Enable livenessProbe + ## @param shardsvr.dataNode.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param shardsvr.dataNode.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param shardsvr.dataNode.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param shardsvr.dataNode.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param shardsvr.dataNode.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 60 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 2 + successThreshold: 1 + ## Configure extra options for readiness probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param shardsvr.dataNode.readinessProbe.enabled Enable readinessProbe + ## @param shardsvr.dataNode.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param shardsvr.dataNode.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param shardsvr.dataNode.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param shardsvr.dataNode.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param shardsvr.dataNode.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 6 + successThreshold: 1 + ## Configure extra options for startup probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param shardsvr.dataNode.startupProbe.enabled Enable startupProbe + ## @param shardsvr.dataNode.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param shardsvr.dataNode.startupProbe.periodSeconds Period seconds for startupProbe + ## @param shardsvr.dataNode.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param shardsvr.dataNode.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param shardsvr.dataNode.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 0 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 30 + successThreshold: 1 + ## @param shardsvr.dataNode.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param shardsvr.dataNode.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param shardsvr.dataNode.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @section Shard configuration: Persistence parameters + ## + + ## Enable persistence using Persistent Volume Claims + ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/ + ## + persistence: + ## @param shardsvr.persistence.enabled Use a PVC to persist data + ## + enabled: true + ## @param shardsvr.persistence.mountPath The path the volume will be mounted at, useful when using different MongoDB® images. + ## + mountPath: /bitnami/mongodb + ## @param shardsvr.persistence.subPath Subdirectory of the volume to mount at (evaluated as a template) + ## Useful in development environments and one PV for multiple services. + ## + subPath: "" + ## @param shardsvr.persistence.storageClass Storage class of backing PVC + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + storageClass: "" + ## @param shardsvr.persistence.accessModes Use volume as ReadOnly or ReadWrite + ## + accessModes: + - ReadWriteOnce + ## @param shardsvr.persistence.size PersistentVolumeClaim size + ## + size: 8Gi + ## @param shardsvr.persistence.annotations Additional volume annotations + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + annotations: {} + ## Persistent Volume Claim Retention Policy + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention + ## + persistentVolumeClaimRetentionPolicy: + ## @param shardsvr.persistentVolumeClaimRetentionPolicy.enabled Enable Persistent volume retention policy for Shard replicas StatefulSet + ## + enabled: false + ## @param shardsvr.persistentVolumeClaimRetentionPolicy.whenScaled Volume retention behavior when the replica count of the StatefulSet is reduced + ## + whenScaled: Retain + ## @param shardsvr.persistentVolumeClaimRetentionPolicy.whenDeleted Volume retention behavior that applies when the StatefulSet is deleted + ## + whenDeleted: Retain + + ## @section Shard configuration: Arbiter parameters + ## + + ## Properties for arbiter nodes + ## ref: https://docs.mongodb.com/manual/tutorial/add-replica-set-arbiter/ + ## + arbiter: + ## @param shardsvr.arbiter.replicaCount Number of arbiters in each shard replica set (the first node will be primary) + ## + replicaCount: 0 + ## @param shardsvr.arbiter.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: false + ## @param shardsvr.arbiter.hostAliases Deployment pod host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param shardsvr.arbiter.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if shardsvr.arbiter.resources is set (shardsvr.arbiter.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "small" + ## @param shardsvr.arbiter.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## + resources: {} + ## @param shardsvr.arbiter.mongodbExtraFlags MongoDB® additional command line flags + ## Can be used to specify command line flags, for example: + ## mongodbExtraFlags: + ## - "--wiredTigerCacheSizeGB=2" + ## + mongodbExtraFlags: [] + ## @param shardsvr.arbiter.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param shardsvr.arbiter.priorityClassName Pod priority class name + ## https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ + ## + priorityClassName: "" + ## @param shardsvr.arbiter.podAffinityPreset Arbiter's Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param shardsvr.arbiter.podAntiAffinityPreset Arbiter's Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param shardsvr.arbiter.nodeAffinityPreset.type Arbiter's Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param shardsvr.arbiter.nodeAffinityPreset.key Arbiter's Node label key to match Ignored if `affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param shardsvr.arbiter.nodeAffinityPreset.values Arbiter's Node label values to match. Ignored if `affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param shardsvr.arbiter.affinity Arbiter's Affinity for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## You can set arbiterLoopId (or any other parameter) by setting the below code block under this 'affinity' section: + ## affinity: + ## matchLabels: + ## shard: "{{ .arbiterLoopId }}" + ## + ## Note: shardsvr.arbiter.podAffinityPreset, shardsvr.arbiter.podAntiAffinityPreset, and shardsvr.arbiter.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param shardsvr.arbiter.nodeSelector Arbiter's Node labels for pod assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param shardsvr.arbiter.tolerations Arbiter's Tolerations for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param shardsvr.arbiter.podManagementPolicy Statefulset's pod management policy, allows parallel startup of pods + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies + ## + podManagementPolicy: OrderedReady + ## @param shardsvr.arbiter.updateStrategy.type updateStrategy for MongoDB® Primary, Secondary and Arbiter statefulsets + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + type: RollingUpdate + ## @param shardsvr.arbiter.config MongoDB® configuration file + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + config: "" + ## @param shardsvr.arbiter.configCM ConfigMap name with MongoDB® configuration file (cannot be used with shardsvr.arbiter.config) + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + configCM: "" + ## @param shardsvr.arbiter.extraEnvVars An array to add extra env vars + ## For example: + ## extraEnvVars: + ## - name: KIBANA_ELASTICSEARCH_URL + ## value: test + ## + extraEnvVars: [] + ## @param shardsvr.arbiter.extraEnvVarsCM Name of a ConfigMap containing extra env vars + ## + extraEnvVarsCM: "" + ## @param shardsvr.arbiter.extraEnvVarsSecret Name of a Secret containing extra env vars + ## + extraEnvVarsSecret: "" + ## @param shardsvr.arbiter.sidecars Add sidecars to the pod + ## For example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param shardsvr.arbiter.initContainers Add init containers to the pod + ## For example: + ## initcontainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## + initContainers: [] + ## @param shardsvr.arbiter.podAnnotations Additional pod annotations + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param shardsvr.arbiter.podLabels Additional pod labels + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param shardsvr.arbiter.extraVolumes Array to add extra volumes + ## + extraVolumes: [] + ## @param shardsvr.arbiter.extraVolumeMounts Array to add extra mounts (normally used with extraVolumes) + ## + extraVolumeMounts: [] + ## @param shardsvr.arbiter.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## K8s Service Account. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ## + serviceAccount: + ## @param shardsvr.arbiter.serviceAccount.create Specifies whether a ServiceAccount should be created for shardsvr arbiter nodes + ## + create: true + ## @param shardsvr.arbiter.serviceAccount.name Name of a Service Account to be used by shardsvr arbiter pods + ## If not set and create is true, a name is generated using the XXX.fullname template + ## + name: "" + ## @param shardsvr.arbiter.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) + ## + annotations: {} + ## @param shardsvr.arbiter.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## + automountServiceAccountToken: false + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + ## @param shardsvr.arbiter.podSecurityContext.enabled Enable security context + ## @param shardsvr.arbiter.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param shardsvr.arbiter.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param shardsvr.arbiter.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param shardsvr.arbiter.podSecurityContext.fsGroup Group ID for the container + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param shardsvr.arbiter.containerSecurityContext.enabled Enabled containers' Security Context + ## @param shardsvr.arbiter.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param shardsvr.arbiter.containerSecurityContext.runAsUser Set containers' Security Context runAsUser + ## @param shardsvr.arbiter.containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup + ## @param shardsvr.arbiter.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot + ## @param shardsvr.arbiter.containerSecurityContext.privileged Set container's Security Context privileged + ## @param shardsvr.arbiter.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem + ## @param shardsvr.arbiter.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation + ## @param shardsvr.arbiter.containerSecurityContext.capabilities.drop List of capabilities to be dropped + ## @param shardsvr.arbiter.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + privileged: false + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## @param shardsvr.arbiter.command Override default container command (useful when using custom images) + ## + command: [] + ## @param shardsvr.arbiter.args Override default container args (useful when using custom images) + ## + args: [] + ## @param shardsvr.arbiter.terminationGracePeriodSeconds Seconds Redmine pod needs to terminate gracefully + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods + ## + terminationGracePeriodSeconds: "" + ## @param shardsvr.arbiter.lifecycleHooks for the arbiter container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## Configure extra options for liveness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param shardsvr.arbiter.livenessProbe.enabled Enable livenessProbe + ## @param shardsvr.arbiter.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param shardsvr.arbiter.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param shardsvr.arbiter.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param shardsvr.arbiter.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param shardsvr.arbiter.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 60 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 2 + successThreshold: 1 + ## Configure extra options for readiness probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param shardsvr.arbiter.readinessProbe.enabled Enable readinessProbe + ## @param shardsvr.arbiter.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param shardsvr.arbiter.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param shardsvr.arbiter.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param shardsvr.arbiter.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param shardsvr.arbiter.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 6 + successThreshold: 1 + ## Configure extra options for startup probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param shardsvr.arbiter.startupProbe.enabled Enable startupProbe + ## @param shardsvr.arbiter.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param shardsvr.arbiter.startupProbe.periodSeconds Period seconds for startupProbe + ## @param shardsvr.arbiter.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param shardsvr.arbiter.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param shardsvr.arbiter.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 0 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 30 + successThreshold: 1 + ## @param shardsvr.arbiter.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param shardsvr.arbiter.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param shardsvr.arbiter.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} +## @section Metrics parameters +## + +metrics: + ## @param metrics.enabled Start a side-car prometheus exporter + ## + enabled: false + ## @param metrics.image.registry [default: REGISTRY_NAME] MongoDB® exporter image registry + ## @param metrics.image.repository [default: REPOSITORY_NAME/mongodb-exporter] MongoDB® exporter image name + ## @skip metrics.image.tag MongoDB® exporter image tag + ## @param metrics.image.digest MongoDB® exporter image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param metrics.image.pullPolicy MongoDB® exporter image pull policy + ## @param metrics.image.pullSecrets MongoDB® exporter image pull secrets + ## + image: + registry: docker.io + repository: bitnami/mongodb-exporter + tag: 0.44.0-debian-12-r1 + digest: "" + pullPolicy: Always + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## @param metrics.useTLS Whether to connect to MongoDB® with TLS + ## + useTLS: false + ## @param metrics.extraArgs String with extra arguments to the metrics exporter + ## ref: https://github.com/percona/mongodb_exporter/blob/main/main.go + ## + extraArgs: "" + ## @param metrics.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if metrics.resources is set (metrics.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param metrics.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## + resources: {} + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param metrics.containerSecurityContext.enabled Enabled containers' Security Context + ## @param metrics.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param metrics.containerSecurityContext.runAsUser Set containers' Security Context runAsUser + ## @param metrics.containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup + ## @param metrics.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot + ## @param metrics.containerSecurityContext.privileged Set container's Security Context privileged + ## @param metrics.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem + ## @param metrics.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation + ## @param metrics.containerSecurityContext.capabilities.drop List of capabilities to be dropped + ## @param metrics.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + privileged: false + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## Metrics exporter liveness probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes) + ## @param metrics.livenessProbe.enabled Enable livenessProbe + ## @param metrics.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param metrics.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param metrics.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param metrics.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param metrics.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: false + initialDelaySeconds: 15 + periodSeconds: 5 + timeoutSeconds: 5 + failureThreshold: 3 + successThreshold: 1 + ## Metrics exporter liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes) + ## @param metrics.readinessProbe.enabled Enable readinessProbe + ## @param metrics.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param metrics.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param metrics.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param metrics.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param metrics.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 5 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## Configure extra options for startup probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param metrics.startupProbe.enabled Enable startupProbe + ## @param metrics.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param metrics.startupProbe.periodSeconds Period seconds for startupProbe + ## @param metrics.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param metrics.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param metrics.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 0 + periodSeconds: 5 + timeoutSeconds: 2 + failureThreshold: 15 + successThreshold: 1 + ## @param metrics.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param metrics.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param metrics.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param metrics.containerPorts.metrics Port of the Prometheus metrics container + ## + containerPorts: + metrics: 9216 + ## @param metrics.podAnnotations [object] Metrics exporter pod Annotation + ## + podAnnotations: + prometheus.io/scrape: "true" + prometheus.io/port: "{{ .Values.metrics.containerPort }}" + ## Prometheus Service Monitor + ## ref: https://github.com/coreos/prometheus-operator + ## https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + podMonitor: + ## @param metrics.podMonitor.enabled Create PodMonitor Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param metrics.podMonitor.namespace Namespace where podmonitor resource should be created + ## + namespace: monitoring + ## @param metrics.podMonitor.interval Specify the interval at which metrics should be scraped + ## + interval: 30s + ## @param metrics.podMonitor.scrapeTimeout Specify the timeout after which the scrape is ended + ## e.g: + ## scrapeTimeout: 30s + ## + scrapeTimeout: "" + ## @param metrics.podMonitor.additionalLabels Additional labels that can be used so PodMonitors will be discovered by Prometheus + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#prometheusspec + ## + additionalLabels: {} + diff --git a/catalog-importer.yaml b/catalog-importer.yaml new file mode 100644 index 0000000..3ad2716 --- /dev/null +++ b/catalog-importer.yaml @@ -0,0 +1,8 @@ +apiVersion: backstage.io/v1alpha1 +kind: Location +metadata: + name: kubernetes-recursive-import + description: "Recursively import all catalog-info.yaml files from this repo" +spec: + targets: + - ./**/catalog-info.yaml diff --git a/catalog-info.yaml b/catalog-info.yaml new file mode 100644 index 0000000..82935b9 --- /dev/null +++ b/catalog-info.yaml @@ -0,0 +1,35 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: kubernetes-GITHUB + namespace: default + description: All deployment van Kubernetes clusters in github + annotations: + backstage.io/techdocs-ref: dir:./docs + links: + - url: https://github.com/AllardKrings/kubernetes + title: AllardDCS Kubernetes Configuration + docs: + - url: ./docs/README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + repo: https://github.com/AllardKrings/kubernetes.git + techdocs: + url: ./docs + children: + - ./odroid/catalog-info.yaml + - ./riscv/catalog-info.yaml + - ./asus/catalog-info.yaml + - ./dev/catalog-info.yaml + - ./scripts/catalog-info.yaml + - ./docs/catalog-info.yaml + - ./kubernetes/catalog-info.yaml + - ./diversen/catalog-info.yaml + - ./lp/catalog-info.yaml + - ./node_modules/catalog-info.yaml + - ./.git/catalog-info.yaml + - ./temp/catalog-info.yaml + - ./prod/catalog-info.yaml + - ./ansible/catalog-info.yaml diff --git a/dev.null b/dev.null new file mode 100644 index 0000000..014c1c0 --- /dev/null +++ b/dev.null @@ -0,0 +1 @@ +Now using node v20.19.5 (npm v10.8.2) diff --git a/dev/README.md b/dev/README.md new file mode 100644 index 0000000..76f3c26 --- /dev/null +++ b/dev/README.md @@ -0,0 +1,8 @@ +Alle configuraties van DEV-cluster: + +argocd crate elasticsearch-kibana kafka pgadmin postgres16 tekton +backstage defectdojo gitea kubernetes phpmyadmin prometheus traefik +camunda deptrack grafana mariadb portainer rabbitmq trivy +catalog-info.yaml dnsutils harbor nexus postgres13 redis zabbix +cockroachdb docs hercules nginx postgres14 redmine +cosign drupal itop olproperties postgres15 sonarqube diff --git a/dev/argocd/.argocdignore b/dev/argocd/.argocdignore new file mode 100644 index 0000000..de0ac16 --- /dev/null +++ b/dev/argocd/.argocdignore @@ -0,0 +1,2 @@ +catalog-info.yaml +catalog-info.yml diff --git a/dev/argocd/README.md b/dev/argocd/README.md new file mode 100755 index 0000000..13b8560 --- /dev/null +++ b/dev/argocd/README.md @@ -0,0 +1,120 @@ +#Installatie: + +kubectl create ns argocd + +#certificaat aanmaken: +kubectl apply -f argocd-certificate.yaml + + apiVersion: cert-manager.io/v1 + kind: Certificate + metadata: + name: argocd-tls-cert + namespace: argocd + spec: + secretName: argocd-tls-cert + dnsNames: + - argocd-dev.allarddcs.nl + issuerRef: + name: letsencrypt + kind: ClusterIssuer + +Hier wordt dus een Certificate aangemaakt met naam "argocd-tls-cert": +NAME TYPE DATA AGE +argocd-tls-cert kubernetes.io/tls 2 76m + +dat is opgeslagen in een secret "argocd-tls-cert": +NAME READY SECRET AGE +argocd-tls-cert True argocd-tls-cert 76m + +#installeren via helm +helm install argocd -f values.yaml argo-cd/argo-cd -n argocd -f values.yaml + +#values.yaml: + +ingress: + server: + enabled: true + ingressClassName: traefik + hosts: + - host: argocd-dev.allarddcs.nl + paths: + - "/" + tls: + - hosts: + - argocd-dev.allarddcs.nl + secretName: argocd-tls-cert + +configs: + params: + # disable insecure (HTTP) + server.insecure: "false" + +server: + tls: + enabled: true + # name of the TLS secret (created via cert-manager) + secretName: argocd-tls-cert + +Dit zorgt ervoor dat het eerder aangemaakte certificaat wordt gebruikt door argocd en +dat alleen verkeer via poort 443 mogelijk is. + +#ingressroutes: +- door het LP-cluster loopt een ingressrouteTCP met tls: passtrough: true. +- in het DEV-cluster is alleen de ingressrouteTCP nodig: + +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: argocd-route-tcp + namespace: argocd +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`argocd-dev.allarddcs.nl`) + priority: 10 + services: + - name: argocd-server + port: 443 + - match: HostSNI(`argocd-dev.allarddcs.nl`) && Headers(`Content-Type`, `application/grpc`) + priority: 11 + services: + - name: argocd-server + port: 443 + tls: + passthrough: true + +of het tweede deel nodig is en werkt weet ik niet zeker. In ieder geval doet traefik GEEN tls-interrupt. + +#Initieel password opvragen: + +kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d + +#gitea repository koppelen: + +Checken of de repository in git aanwezig is. + +project: default +https://gitea-dev.allarddcs.nl/AllardDCS/dev/olproperties (ZONDER.git!!!) +user: allard +password: Gitea01@ + +#applicatie toevoegen: + +repository invullen +pad toevoegen (olproperties) + +#api testen: + +er staat een argocd binary op pisvrwsv00 +argcd login https://argocd-dev.allarddcs +argocd app list + + +#task argocd-sync-and-wait installeren: + +kubectl apply -f argocd-task-sync-and-wait.yaml + + #testen kan met: +kubectl apply -f argocd-pipeline.yaml +kubectl create -f argocd-pipeline-run.yaml diff --git a/dev/argocd/argocd-certificate.yaml b/dev/argocd/argocd-certificate.yaml new file mode 100644 index 0000000..c9302c2 --- /dev/null +++ b/dev/argocd/argocd-certificate.yaml @@ -0,0 +1,12 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: argocd-tls-cert + namespace: argocd +spec: + secretName: argocd-tls-cert + dnsNames: + - argocd-dev.allarddcs.nl + issuerRef: + name: letsencrypt + kind: ClusterIssuer diff --git a/dev/argocd/catalog-info.yaml b/dev/argocd/catalog-info.yaml new file mode 100644 index 0000000..cbe3d60 --- /dev/null +++ b/dev/argocd/catalog-info.yaml @@ -0,0 +1,17 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + annotations: + argocd.argoproj.io/hook: Skip + name: dev-argocd + title: Argocd (dev) + description: ArgoCD-configuratie + annotations: + backstage.io/kubernetes-label-selector: "app=argocd" +spec: + type: service + owner: allarddcs + subcomponentOf: component:default/DEV-cluster + lifecycle: production + docs: + path: ./README.md diff --git a/dev/argocd/ingressroute-http.yaml b/dev/argocd/ingressroute-http.yaml new file mode 100755 index 0000000..ec03d46 --- /dev/null +++ b/dev/argocd/ingressroute-http.yaml @@ -0,0 +1,15 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: argocd-http + namespace: argocd +spec: + entryPoints: + - web + routes: + - kind: Rule + match: Host("argocd-dev.allarddcs.nl") + services: + - kind: Service + name: argocd-server + port: 80 diff --git a/dev/argocd/ingressroute-tls-old.yaml b/dev/argocd/ingressroute-tls-old.yaml new file mode 100755 index 0000000..a467d62 --- /dev/null +++ b/dev/argocd/ingressroute-tls-old.yaml @@ -0,0 +1,26 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: argocd-tls + namespace: argocd +spec: + entryPoints: + - websecure + routes: + - kind: Rule + match: Host(`argocd-dev.allarddcs.nl`) + priority: 10 + services: + - kind: Service + name: argocd-server + port: 80 +# - kind: Rule +# match: Host(`argocd-dev.allarddcs.nl`) && Headers(`Content-Type`, `application/grpc`) +# priority: 11 +# services: +# - kind: Service +# name: argocd-server +# port: 80 +# scheme: h2c + tls: + certResolver: letsencrypt diff --git a/dev/argocd/ingressroute-tls.yaml b/dev/argocd/ingressroute-tls.yaml new file mode 100755 index 0000000..a4dfea4 --- /dev/null +++ b/dev/argocd/ingressroute-tls.yaml @@ -0,0 +1,17 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: argocd-tls + namespace: argocd +spec: + entryPoints: + - websecure + routes: + - kind: Rule + match: Host(`argocd-dev.allarddcs.nl`) + services: + - kind: Service + name: argocd-server + port: 443 + tls: + certResolver: letsencrypt diff --git a/dev/argocd/ingressroute-web-ui.yaml b/dev/argocd/ingressroute-web-ui.yaml new file mode 100644 index 0000000..fa20a93 --- /dev/null +++ b/dev/argocd/ingressroute-web-ui.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: argocd-web + namespace: argocd +spec: + entryPoints: + - websecure + routes: + - match: Host(`argocd-dev.allarddcs.nl`) + kind: Rule + services: + - name: argocd-server + port: 443 + tls: + secretName: argocd-tls-cert diff --git a/dev/argocd/ingressrouteTCP-tls.yaml b/dev/argocd/ingressrouteTCP-tls.yaml new file mode 100755 index 0000000..470b610 --- /dev/null +++ b/dev/argocd/ingressrouteTCP-tls.yaml @@ -0,0 +1,22 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: argocd-route-tcp + namespace: argocd +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`argocd-dev.allarddcs.nl`) + priority: 10 + services: + - name: argocd-server + port: 443 + - match: HostSNI(`argocd-dev.allarddcs.nl`) && Headers(`Content-Type`, `application/grpc`) + priority: 11 + services: + - name: argocd-server + port: 443 + tls: + passthrough: true + diff --git a/dev/argocd/ingresstest.yaml b/dev/argocd/ingresstest.yaml new file mode 100644 index 0000000..e53107f --- /dev/null +++ b/dev/argocd/ingresstest.yaml @@ -0,0 +1,46 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: argocd-http + namespace: argocd +spec: + entryPoints: + - web + routes: + - match: Host(`argocd.example.com`) + kind: Rule + middlewares: + - name: redirect-to-https + services: + - name: argocd-server + port: 80 + scheme: https +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: redirect-to-https + namespace: argocd +spec: + redirectScheme: + scheme: https + permanent: true +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: argocd-https + namespace: argocd +spec: + entryPoints: + - websecure + routes: + - match: Host(`argocd.example.com`) + kind: Rule + services: + - name: argocd-server + port: 80 + scheme: https + tls: + certResolver: letsencrypt + diff --git a/dev/argocd/values.org b/dev/argocd/values.org new file mode 100644 index 0000000..27d45ff --- /dev/null +++ b/dev/argocd/values.org @@ -0,0 +1,4264 @@ +## Argo CD configuration +## Ref: https://github.com/argoproj/argo-cd +## + +# -- Provide a name in place of `argocd` +nameOverride: argocd +# -- String to fully override `"argo-cd.fullname"` +fullnameOverride: "" +# -- Override the namespace +# @default -- `.Release.Namespace` +namespaceOverride: "" +# -- Override the Kubernetes version, which is used to evaluate certain manifests +kubeVersionOverride: "" +# Override APIVersions +# If you want to template helm charts but cannot access k8s API server +# you can set api versions here +apiVersionOverrides: {} + +# -- Create aggregated roles that extend existing cluster roles to interact with argo-cd resources +## Ref: https://kubernetes.io/docs/reference/access-authn-authz/rbac/#aggregated-clusterroles +createAggregateRoles: false +# -- Create cluster roles for cluster-wide installation. +## Used when you manage applications in the same cluster where Argo CD runs +createClusterRoles: true + +openshift: + # -- enables using arbitrary uid for argo repo server + enabled: false + +## Custom resource configuration +crds: + # -- Install and upgrade CRDs + install: true + # -- Keep CRDs on chart uninstall + keep: true + # -- Annotations to be added to all CRDs + annotations: {} + # -- Additional labels to be added to all CRDs + additionalLabels: {} + +## Globally shared configuration +global: + # -- Default domain used by all components + ## Used for ingresses, certificates, SSO, notifications, etc. + domain: argocd.example.com + + # -- Runtime class name for all components + runtimeClassName: "" + + # -- Common labels for the all resources + additionalLabels: {} + # app: argo-cd + + # -- Number of old deployment ReplicaSets to retain. The rest will be garbage collected. + revisionHistoryLimit: 3 + + # Default image used by all components + image: + # -- If defined, a repository applied to all Argo CD deployments + repository: quay.io/argoproj/argocd + # -- Overrides the global Argo CD image tag whose default is the chart appVersion + tag: "" + # -- If defined, a imagePullPolicy applied to all Argo CD deployments + imagePullPolicy: IfNotPresent + + # -- Secrets with credentials to pull images from a private registry + imagePullSecrets: [] + + # Default logging options used by all components + logging: + # -- Set the global logging format. Either: `text` or `json` + format: text + # -- Set the global logging level. One of: `debug`, `info`, `warn` or `error` + level: info + + # -- Annotations for the all deployed Statefulsets + statefulsetAnnotations: {} + + # -- Annotations for the all deployed Deployments + deploymentAnnotations: {} + + # -- Labels for the all deployed Deployments + deploymentLabels: {} + + # -- Annotations for the all deployed pods + podAnnotations: {} + + # -- Labels for the all deployed pods + podLabels: {} + + # -- Add Prometheus scrape annotations to all metrics services. This can be used as an alternative to the ServiceMonitors. + addPrometheusAnnotations: false + + # -- Toggle and define pod-level security context. + # @default -- `{}` (See [values.yaml]) + securityContext: {} + # runAsUser: 999 + # runAsGroup: 999 + # fsGroup: 999 + + # -- Mapping between IP and hostnames that will be injected as entries in the pod's hosts files + hostAliases: [] + # - ip: 10.20.30.40 + # hostnames: + # - git.myhostname + + # Configure dual-stack used by all component services + dualStack: + # -- IP family policy to configure dual-stack see [Configure dual-stack](https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services) + ipFamilyPolicy: "" + # -- IP families that should be supported and the order in which they should be applied to ClusterIP as well. Can be IPv4 and/or IPv6. + ipFamilies: [] + + # Default network policy rules used by all components + networkPolicy: + # -- Create NetworkPolicy objects for all components + create: false + # -- Default deny all ingress traffic + defaultDenyIngress: false + + # -- Default priority class for all components + priorityClassName: "" + + # -- Default node selector for all components + nodeSelector: + kubernetes.io/os: linux + + # -- Default tolerations for all components + tolerations: [] + + # Default affinity preset for all components + affinity: + # -- Default pod anti-affinity rules. Either: `none`, `soft` or `hard` + podAntiAffinity: soft + # Node affinity rules + nodeAffinity: + # -- Default node affinity rules. Either: `none`, `soft` or `hard` + type: hard + # -- Default match expressions for node affinity + matchExpressions: [] + # - key: topology.kubernetes.io/zone + # operator: In + # values: + # - antarctica-east1 + # - antarctica-west1 + + # -- Default [TopologySpreadConstraints] rules for all components + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ + ## If labelSelector is left out, it will default to the labelSelector of the component + topologySpreadConstraints: [] + # - maxSkew: 1 + # topologyKey: topology.kubernetes.io/zone + # whenUnsatisfiable: DoNotSchedule + + # -- Deployment strategy for the all deployed Deployments + deploymentStrategy: {} + # type: RollingUpdate + # rollingUpdate: + # maxSurge: 25% + # maxUnavailable: 25% + + # -- Environment variables to pass to all deployed Deployments + env: [] + + # -- Annotations for the all deployed Certificates + certificateAnnotations: {} + +## Argo Configs +configs: + # General Argo CD configuration. Any values you put under `.configs.cm` are passed to argocd-cm ConfigMap. + ## Ref: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/argocd-cm.yaml + cm: + # -- Create the argocd-cm configmap for [declarative setup] + create: true + + # -- Annotations to be added to argocd-cm configmap + annotations: {} + + # -- The name of tracking label used by Argo CD for resource pruning + application.instanceLabelKey: argocd.argoproj.io/instance + + # -- Enable control of the service account used for the sync operation (alpha) + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/app-sync-using-impersonation/ + application.sync.impersonation.enabled: false + + # -- Enable exec feature in Argo UI + ## Ref: https://argo-cd.readthedocs.io/en/latest/operator-manual/rbac/#exec-resource + exec.enabled: false + + # -- Enable local admin user + ## Ref: https://argo-cd.readthedocs.io/en/latest/faq/#how-to-disable-admin-user + admin.enabled: true + + # -- Timeout to discover if a new manifests version got published to the repository + timeout.reconciliation: 180s + + # -- Timeout to refresh application data as well as target manifests cache + timeout.hard.reconciliation: 0s + + # -- Enable Status Badge + ## Ref: https://argo-cd.readthedocs.io/en/stable/user-guide/status-badge/ + statusbadge.enabled: false + + # Dex configuration + # dex.config: | + # connectors: + # # GitHub example + # - type: github + # id: github + # name: GitHub + # config: + # clientID: aabbccddeeff00112233 + # clientSecret: $dex.github.clientSecret # Alternatively $:dex.github.clientSecret + # orgs: + # - name: your-github-org + + # OIDC configuration as an alternative to dex (optional). + # oidc.config: | + # name: AzureAD + # issuer: https://login.microsoftonline.com/TENANT_ID/v2.0 + # clientID: aaaabbbbccccddddeee + # clientSecret: $oidc.azuread.clientSecret + + # Some OIDC providers require a separate clientID for different callback URLs. + # For example, if configuring Argo CD with self-hosted Dex, you will need a separate client ID + # for the 'localhost' (CLI) client to Dex. This field is optional. If omitted, the CLI will + # use the same clientID as the Argo CD server + # cliClientID: vvvvwwwwxxxxyyyyzzzz + + # rootCA: | + # -----BEGIN CERTIFICATE----- + # ... encoded certificate data here ... + # -----END CERTIFICATE----- + + # Optional list of allowed aud claims. If omitted or empty, defaults to the clientID value above (and the + # cliClientID, if that is also specified). If you specify a list and want the clientID to be allowed, you must + # explicitly include it in the list. + # Token verification will pass if any of the token's audiences matches any of the audiences in this list. + # allowedAudiences: + # - aaaabbbbccccddddeee + # - qqqqwwwweeeerrrrttt + + # Optional set of OIDC claims to request on the ID token. + # requestedIDTokenClaims: + # groups: + # essential: true + + # Optional set of OIDC scopes to request. If omitted, defaults to: ["openid", "profile", "email", "groups"] + # requestedScopes: + # - openid + # - profile + # - email + + # PKCE authentication flow processes authorization flow from browser only - default false + # uses the clientID + # make sure the Identity Provider (IdP) is public and doesn't need clientSecret + # make sure the Identity Provider (IdP) has this redirect URI registered: https://argocd.example.com/pkce/verify + # enablePKCEAuthentication: true + + # Extension Configuration + ## Ref: https://argo-cd.readthedocs.io/en/latest/developer-guide/extensions/proxy-extensions/ + # extension.config: | + # extensions: + # - name: httpbin + # backend: + # connectionTimeout: 2s + # keepAlive: 15s + # idleConnectionTimeout: 60s + # maxIdleConnections: 30 + # services: + # - url: http://httpbin.org + # headers: + # - name: some-header + # value: '$some.argocd.secret.key' + # cluster: + # name: some-cluster + # server: https://some-cluster + + ## Default configuration for ignoreResourceUpdates. + ## The ignoreResourceUpdates list contains K8s resource's properties that are known to be frequently updated + ## by controllers and operators. These resources, when watched by argo, will cause many unnecessary updates. + + # -- Ignoring status for all resources. An update will still be sent if the status update causes the health to change. + # @default -- See [values.yaml] + resource.customizations.ignoreResourceUpdates.all: | + jsonPointers: + - /status + # -- Some Application fields are generated and not related to the application updates itself + ## The Application itself is already watched by the controller lister, but this configuration is applied for apps of apps + # @default -- See [values.yaml] + resource.customizations.ignoreResourceUpdates.argoproj.io_Application: | + jqPathExpressions: + - '.metadata.annotations."notified.notifications.argoproj.io"' + - '.metadata.annotations."argocd.argoproj.io/refresh"' + - '.metadata.annotations."argocd.argoproj.io/hydrate"' + - '.operation' + # -- Ignore Argo Rollouts generated fields + # @default -- See [values.yaml] + resource.customizations.ignoreResourceUpdates.argoproj.io_Rollout: | + jqPathExpressions: + - '.metadata.annotations."notified.notifications.argoproj.io"' + # -- Legacy annotations used on HPA autoscaling/v1 + # @default -- See [values.yaml] + resource.customizations.ignoreResourceUpdates.autoscaling_HorizontalPodAutoscaler: | + jqPathExpressions: + - '.metadata.annotations."autoscaling.alpha.kubernetes.io/behavior"' + - '.metadata.annotations."autoscaling.alpha.kubernetes.io/conditions"' + - '.metadata.annotations."autoscaling.alpha.kubernetes.io/metrics"' + - '.metadata.annotations."autoscaling.alpha.kubernetes.io/current-metrics"' + # -- Ignore the cluster-autoscaler status + # @default -- See [values.yaml] + resource.customizations.ignoreResourceUpdates.ConfigMap: | + jqPathExpressions: + # Ignore the cluster-autoscaler status + - '.metadata.annotations."cluster-autoscaler.kubernetes.io/last-updated"' + # Ignore the annotation of the legacy Leases election + - '.metadata.annotations."control-plane.alpha.kubernetes.io/leader"' + # -- Ignore the common scaling annotations + # @default -- See [values.yaml] + resource.customizations.ignoreResourceUpdates.apps_ReplicaSet: | + jqPathExpressions: + - '.metadata.annotations."deployment.kubernetes.io/desired-replicas"' + - '.metadata.annotations."deployment.kubernetes.io/max-replicas"' + - '.metadata.annotations."rollout.argoproj.io/desired-replicas"' + # -- Ignores update if EndpointSlice is not excluded globally + # @default -- See [values.yaml] + resource.customizations.ignoreResourceUpdates.discovery.k8s.io_EndpointSlice: | + jsonPointers: + - /metadata + - /endpoints + - /ports + # -- Ignores update if Endpoints is not excluded globally + # @default -- See [values.yaml] + resource.customizations.ignoreResourceUpdates.Endpoints: | + jsonPointers: + - /metadata + - /subsets + + ## Default configuration for exclusions. + ## The exclusion list are K8s resources that we assume will never be declared in Git, + ## and are never child objects of managed resources that need to be presented in the resource tree. + ## This list contains high volume and high churn metadata objects which we exclude for performance + ## reasons, reducing connections and load to the K8s API servers of managed clusters. + + # -- Resource Exclusion/Inclusion + # @default -- See [values.yaml] + resource.exclusions: | + ### Network resources created by the Kubernetes control plane and excluded to reduce the number of watched events and UI clutter + - apiGroups: + - '' + - discovery.k8s.io + kinds: + - Endpoints + - EndpointSlice + ### Internal Kubernetes resources excluded reduce the number of watched events + - apiGroups: + - coordination.k8s.io + kinds: + - Lease + ### Internal Kubernetes Authz/Authn resources excluded reduce the number of watched events + - apiGroups: + - authentication.k8s.io + - authorization.k8s.io + kinds: + - SelfSubjectReview + - TokenReview + - LocalSubjectAccessReview + - SelfSubjectAccessReview + - SelfSubjectRulesReview + - SubjectAccessReview + ### Intermediate Certificate Request excluded reduce the number of watched events + - apiGroups: + - certificates.k8s.io + kinds: + - CertificateSigningRequest + - apiGroups: + - cert-manager.io + kinds: + - CertificateRequest + ### Cilium internal resources excluded reduce the number of watched events and UI Clutter + - apiGroups: + - cilium.io + kinds: + - CiliumIdentity + - CiliumEndpoint + - CiliumEndpointSlice + ### Kyverno intermediate and reporting resources excluded reduce the number of watched events and improve performance + - apiGroups: + - kyverno.io + - reports.kyverno.io + - wgpolicyk8s.io + kinds: + - PolicyReport + - ClusterPolicyReport + - EphemeralReport + - ClusterEphemeralReport + - AdmissionReport + - ClusterAdmissionReport + - BackgroundScanReport + - ClusterBackgroundScanReport + - UpdateRequest + + + # Argo CD configuration parameters + ## Ref: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/argocd-cmd-params-cm.yaml + params: + # -- Create the argocd-cmd-params-cm configmap + # If false, it is expected the configmap will be created by something else. + create: true + + # -- Annotations to be added to the argocd-cmd-params-cm ConfigMap + annotations: {} + + # You can customize parameters by adding parameters here. + # (e.g.) + # otlp.address: '' + + # Argo CD RBAC policy configuration + ## Ref: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/rbac.md + rbac: + # -- Create the argocd-rbac-cm configmap with ([Argo CD RBAC policy]) definitions. + # If false, it is expected the configmap will be created by something else. + # Argo CD will not work if there is no configmap created with the name above. + create: true + + # -- Annotations to be added to argocd-rbac-cm configmap + annotations: {} + + # -- The name of the default role which Argo CD will falls back to, when authorizing API requests (optional). + # If omitted or empty, users may be still be able to login, but will see no apps, projects, etc... + policy.default: '' + + # -- File containing user-defined policies and role definitions. + # @default -- `''` (See [values.yaml]) + policy.csv: '' + # Policy rules are in the form: + # p, subject, resource, action, object, effect + # Role definitions and bindings are in the form: + # g, subject, inherited-subject + # policy.csv: | + # p, role:org-admin, applications, *, */*, allow + # p, role:org-admin, clusters, get, *, allow + # p, role:org-admin, repositories, *, *, allow + # p, role:org-admin, logs, get, *, allow + # p, role:org-admin, exec, create, */*, allow + # g, your-github-org:your-team, role:org-admin + + # -- OIDC scopes to examine during rbac enforcement (in addition to `sub` scope). + # The scope value can be a string, or a list of strings. + scopes: "[groups]" + + # -- Matcher function for Casbin, `glob` for glob matcher and `regex` for regex matcher. + policy.matchMode: "glob" + + # GnuPG public keys for commit verification + ## Ref: https://argo-cd.readthedocs.io/en/stable/user-guide/gpg-verification/ + gpg: + # -- Annotations to be added to argocd-gpg-keys-cm configmap + annotations: {} + + # -- [GnuPG] public keys to add to the keyring + # @default -- `{}` (See [values.yaml]) + ## Note: Public keys should be exported with `gpg --export --armor ` + keys: {} + # 4AEE18F83AFDEB23: | + # -----BEGIN PGP PUBLIC KEY BLOCK----- + # ... + # -----END PGP PUBLIC KEY BLOCK----- + + # SSH known hosts for Git repositories + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/declarative-setup/#ssh-known-host-public-keys + ssh: + # -- Specifies if the argocd-ssh-known-hosts-cm configmap should be created by Helm. + create: true + + # -- Annotations to be added to argocd-ssh-known-hosts-cm configmap + annotations: {} + + # -- Known hosts to be added to the known host list by default. + # @default -- See [values.yaml] + knownHosts: | + [ssh.github.com]:443 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg= + [ssh.github.com]:443 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl + [ssh.github.com]:443 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCj7ndNxQowgcQnjshcLrqPEiiphnt+VTTvDP6mHBL9j1aNUkY4Ue1gvwnGLVlOhGeYrnZaMgRK6+PKCUXaDbC7qtbW8gIkhL7aGCsOr/C56SJMy/BCZfxd1nWzAOxSDPgVsmerOBYfNqltV9/hWCqBywINIR+5dIg6JTJ72pcEpEjcYgXkE2YEFXV1JHnsKgbLWNlhScqb2UmyRkQyytRLtL+38TGxkxCflmO+5Z8CSSNY7GidjMIZ7Q4zMjA2n1nGrlTDkzwDCsw+wqFPGQA179cnfGWOWRVruj16z6XyvxvjJwbz0wQZ75XK5tKSb7FNyeIEs4TT4jk+S4dhPeAUC5y+bDYirYgM4GC7uEnztnZyaVWQ7B381AK4Qdrwt51ZqExKbQpTUNn+EjqoTwvqNj4kqx5QUCI0ThS/YkOxJCXmPUWZbhjpCg56i+2aB6CmK2JGhn57K5mj0MNdBXA4/WnwH6XoPWJzK5Nyu2zB3nAZp+S5hpQs+p1vN1/wsjk= + bitbucket.org ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPIQmuzMBuKdWeF4+a2sjSSpBK0iqitSQ+5BM9KhpexuGt20JpTVM7u5BDZngncgrqDMbWdxMWWOGtZ9UgbqgZE= + bitbucket.org ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIazEu89wgQZ4bqs3d63QSMzYVa0MuJ2e2gKTKqu+UUO + bitbucket.org ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDQeJzhupRu0u0cdegZIa8e86EG2qOCsIsD1Xw0xSeiPDlCr7kq97NLmMbpKTX6Esc30NuoqEEHCuc7yWtwp8dI76EEEB1VqY9QJq6vk+aySyboD5QF61I/1WeTwu+deCbgKMGbUijeXhtfbxSxm6JwGrXrhBdofTsbKRUsrN1WoNgUa8uqN1Vx6WAJw1JHPhglEGGHea6QICwJOAr/6mrui/oB7pkaWKHj3z7d1IC4KWLtY47elvjbaTlkN04Kc/5LFEirorGYVbt15kAUlqGM65pk6ZBxtaO3+30LVlORZkxOh+LKL/BvbZ/iRNhItLqNyieoQj/uh/7Iv4uyH/cV/0b4WDSd3DptigWq84lJubb9t/DnZlrJazxyDCulTmKdOR7vs9gMTo+uoIrPSb8ScTtvw65+odKAlBj59dhnVp9zd7QUojOpXlL62Aw56U4oO+FALuevvMjiWeavKhJqlR7i5n9srYcrNV7ttmDw7kf/97P5zauIhxcjX+xHv4M= + github.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg= + github.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl + github.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCj7ndNxQowgcQnjshcLrqPEiiphnt+VTTvDP6mHBL9j1aNUkY4Ue1gvwnGLVlOhGeYrnZaMgRK6+PKCUXaDbC7qtbW8gIkhL7aGCsOr/C56SJMy/BCZfxd1nWzAOxSDPgVsmerOBYfNqltV9/hWCqBywINIR+5dIg6JTJ72pcEpEjcYgXkE2YEFXV1JHnsKgbLWNlhScqb2UmyRkQyytRLtL+38TGxkxCflmO+5Z8CSSNY7GidjMIZ7Q4zMjA2n1nGrlTDkzwDCsw+wqFPGQA179cnfGWOWRVruj16z6XyvxvjJwbz0wQZ75XK5tKSb7FNyeIEs4TT4jk+S4dhPeAUC5y+bDYirYgM4GC7uEnztnZyaVWQ7B381AK4Qdrwt51ZqExKbQpTUNn+EjqoTwvqNj4kqx5QUCI0ThS/YkOxJCXmPUWZbhjpCg56i+2aB6CmK2JGhn57K5mj0MNdBXA4/WnwH6XoPWJzK5Nyu2zB3nAZp+S5hpQs+p1vN1/wsjk= + gitlab.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFSMqzJeV9rUzU4kWitGjeR4PWSa29SPqJ1fVkhtj3Hw9xjLVXVYrU9QlYWrOLXBpQ6KWjbjTDTdDkoohFzgbEY= + gitlab.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAfuCHKVTjquxvt6CM6tdG4SLp1Btn/nOeHHE5UOzRdf + gitlab.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsj2bNKTBSpIYDEGk9KxsGh3mySTRgMtXL583qmBpzeQ+jqCMRgBqB98u3z++J1sKlXHWfM9dyhSevkMwSbhoR8XIq/U0tCNyokEi/ueaBMCvbcTHhO7FcwzY92WK4Yt0aGROY5qX2UKSeOvuP4D6TPqKF1onrSzH9bx9XUf2lEdWT/ia1NEKjunUqu1xOB/StKDHMoX4/OKyIzuS0q/T1zOATthvasJFoPrAjkohTyaDUz2LN5JoH839hViyEG82yB+MjcFV5MU3N1l1QL3cVUCh93xSaua1N85qivl+siMkPGbO5xR/En4iEY6K2XPASUEMaieWVNTRCtJ4S8H+9 + ssh.dev.azure.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7Hr1oTWqNqOlzGJOfGJ4NakVyIzf1rXYd4d7wo6jBlkLvCA4odBlL0mDUyZ0/QUfTTqeu+tm22gOsv+VrVTMk6vwRU75gY/y9ut5Mb3bR5BV58dKXyq9A9UeB5Cakehn5Zgm6x1mKoVyf+FFn26iYqXJRgzIZZcZ5V6hrE0Qg39kZm4az48o0AUbf6Sp4SLdvnuMa2sVNwHBboS7EJkm57XQPVU3/QpyNLHbWDdzwtrlS+ez30S3AdYhLKEOxAG8weOnyrtLJAUen9mTkol8oII1edf7mWWbWVf0nBmly21+nZcmCTISQBtdcyPaEno7fFQMDD26/s0lfKob4Kw8H + vs-ssh.visualstudio.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7Hr1oTWqNqOlzGJOfGJ4NakVyIzf1rXYd4d7wo6jBlkLvCA4odBlL0mDUyZ0/QUfTTqeu+tm22gOsv+VrVTMk6vwRU75gY/y9ut5Mb3bR5BV58dKXyq9A9UeB5Cakehn5Zgm6x1mKoVyf+FFn26iYqXJRgzIZZcZ5V6hrE0Qg39kZm4az48o0AUbf6Sp4SLdvnuMa2sVNwHBboS7EJkm57XQPVU3/QpyNLHbWDdzwtrlS+ez30S3AdYhLKEOxAG8weOnyrtLJAUen9mTkol8oII1edf7mWWbWVf0nBmly21+nZcmCTISQBtdcyPaEno7fFQMDD26/s0lfKob4Kw8H + + # -- Additional known hosts for private repositories + extraHosts: '' + + # Repository TLS certificates + # Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/declarative-setup/#repositories-using-self-signed-tls-certificates-or-are-signed-by-custom-ca + tls: + # -- Annotations to be added to argocd-tls-certs-cm configmap + annotations: {} + + # -- TLS certificates for Git repositories + # @default -- `{}` (See [values.yaml]) + certificates: {} + # server.example.com: | + # -----BEGIN CERTIFICATE----- + # ... + # -----END CERTIFICATE----- + + # -- Specifies if the argocd-tls-certs-cm configmap should be created by Helm. + create: true + + # ConfigMap for Config Management Plugins + # Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/config-management-plugins/ + cmp: + # -- Create the argocd-cmp-cm configmap + create: false + + # -- Annotations to be added to argocd-cmp-cm configmap + annotations: {} + + # -- Plugin yaml files to be added to argocd-cmp-cm + plugins: {} + # --- First plugin + # my-plugin: + # init: + # command: [sh] + # args: [-c, 'echo "Initializing..."'] + # generate: + # command: [sh, -c] + # args: + # - | + # echo "{\"kind\": \"ConfigMap\", \"apiVersion\": \"v1\", \"metadata\": { \"name\": \"$ARGOCD_APP_NAME\", \"namespace\": \"$ARGOCD_APP_NAMESPACE\", \"annotations\": {\"Foo\": \"$ARGOCD_ENV_FOO\", \"KubeVersion\": \"$KUBE_VERSION\", \"KubeApiVersion\": \"$KUBE_API_VERSIONS\",\"Bar\": \"baz\"}}}" + # discover: + # fileName: "./subdir/s*.yaml" + # find: + # glob: "**/Chart.yaml" + # command: [sh, -c, find . -name env.yaml] + + # --- Second plugin + # my-plugin2: + # init: + # command: [sh] + # args: [-c, 'echo "Initializing..."'] + # generate: + # command: [sh, -c] + # args: + # - | + # echo "{\"kind\": \"ConfigMap\", \"apiVersion\": \"v1\", \"metadata\": { \"name\": \"$ARGOCD_APP_NAME\", \"namespace\": \"$ARGOCD_APP_NAMESPACE\", \"annotations\": {\"Foo\": \"$ARGOCD_ENV_FOO\", \"KubeVersion\": \"$KUBE_VERSION\", \"KubeApiVersion\": \"$KUBE_API_VERSIONS\",\"Bar\": \"baz\"}}}" + # discover: + # fileName: "./subdir/s*.yaml" + # find: + # glob: "**/Chart.yaml" + # command: [sh, -c, find . -name env.yaml] + + # -- Provide one or multiple [external cluster credentials] + # @default -- `{}` (See [values.yaml]) + ## Ref: + ## - https://argo-cd.readthedocs.io/en/stable/operator-manual/declarative-setup/#clusters + ## - https://argo-cd.readthedocs.io/en/stable/operator-manual/security/#external-cluster-credentials + ## - https://argo-cd.readthedocs.io/en/stable/user-guide/projects/#project-scoped-repositories-and-clusters + clusterCredentials: {} + # mycluster: + # server: https://mycluster.example.com + # labels: {} + # annotations: {} + # config: + # bearerToken: "" + # tlsClientConfig: + # insecure: false + # caData: "" + # mycluster2: + # server: https://mycluster2.example.com + # labels: {} + # annotations: {} + # namespaces: namespace1,namespace2 + # clusterResources: true + # config: + # bearerToken: "" + # tlsClientConfig: + # insecure: false + # caData: "" + # mycluster3-project-scoped: + # server: https://mycluster3.example.com + # labels: {} + # annotations: {} + # project: my-project1 + # config: + # bearerToken: "" + # tlsClientConfig: + # insecure: false + # caData: "" + # mycluster4-sharded: + # shard: 1 + # server: https://mycluster4.example.com + # labels: {} + # annotations: {} + # config: + # bearerToken: "" + # tlsClientConfig: + # insecure: false + # caData: "" + + # -- Repository credentials to be used as Templates for other repos + ## Creates a secret for each key/value specified below to create repository credentials + credentialTemplates: {} + # github-enterprise-creds-1: + # url: https://github.com/argoproj + # githubAppID: 1 + # githubAppInstallationID: 2 + # githubAppEnterpriseBaseUrl: https://ghe.example.com/api/v3 + # githubAppPrivateKey: | + # -----BEGIN OPENSSH PRIVATE KEY----- + # ... + # -----END OPENSSH PRIVATE KEY----- + # https-creds: + # url: https://github.com/argoproj + # password: my-password + # username: my-username + # ssh-creds: + # url: git@github.com:argoproj-labs + # sshPrivateKey: | + # -----BEGIN OPENSSH PRIVATE KEY----- + # ... + # -----END OPENSSH PRIVATE KEY----- + + # -- Annotations to be added to `configs.credentialTemplates` Secret + credentialTemplatesAnnotations: {} + + # -- Repositories list to be used by applications + ## Creates a secret for each key/value specified below to create repositories + ## Note: the last example in the list would use a repository credential template, configured under "configs.credentialTemplates". + repositories: {} + # istio-helm-repo: + # url: https://storage.googleapis.com/istio-prerelease/daily-build/master-latest-daily/charts + # name: istio.io + # type: helm + # private-helm-repo: + # url: https://my-private-chart-repo.internal + # name: private-repo + # type: helm + # password: my-password + # username: my-username + # private-repo: + # url: https://github.com/argoproj/private-repo + + # -- Annotations to be added to `configs.repositories` Secret + repositoriesAnnotations: {} + + # Argo CD sensitive data + # Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/user-management/#sensitive-data-and-sso-client-secrets + secret: + # -- Create the argocd-secret + createSecret: true + # -- Labels to be added to argocd-secret + labels: {} + # -- Annotations to be added to argocd-secret + annotations: {} + + # -- Shared secret for authenticating GitHub webhook events + githubSecret: "" + # -- Shared secret for authenticating GitLab webhook events + gitlabSecret: "" + # -- Shared secret for authenticating BitbucketServer webhook events + bitbucketServerSecret: "" + # -- UUID for authenticating Bitbucket webhook events + bitbucketUUID: "" + # -- Shared secret for authenticating Gogs webhook events + gogsSecret: "" + ## Azure DevOps + azureDevops: + # -- Shared secret username for authenticating Azure DevOps webhook events + username: "" + # -- Shared secret password for authenticating Azure DevOps webhook events + password: "" + + # -- add additional secrets to be added to argocd-secret + ## Custom secrets. Useful for injecting SSO secrets into environment variables. + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/user-management/#sensitive-data-and-sso-client-secrets + ## Note that all values must be non-empty. + extra: + {} + # LDAP_PASSWORD: "mypassword" + + # -- Bcrypt hashed admin password + ## Argo expects the password in the secret to be bcrypt hashed. You can create this hash with + ## `htpasswd -nbBC 10 "" $ARGO_PWD | tr -d ':\n' | sed 's/$2y/$2a/'` + argocdServerAdminPassword: "" + # -- Admin password modification time. Eg. `"2006-01-02T15:04:05Z"` + # @default -- `""` (defaults to current time) + argocdServerAdminPasswordMtime: "" + + # -- Define custom [CSS styles] for your argo instance. + # This setting will automatically mount the provided CSS and reference it in the argo configuration. + # @default -- `""` (See [values.yaml]) + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/custom-styles/ + styles: "" + # styles: | + # .sidebar { + # background: linear-gradient(to bottom, #999, #777, #333, #222, #111); + # } + +# -- Array of extra K8s manifests to deploy +## Note: Supports use of custom Helm templates +extraObjects: [] + # - apiVersion: secrets-store.csi.x-k8s.io/v1 + # kind: SecretProviderClass + # metadata: + # name: argocd-secrets-store + # spec: + # provider: aws + # parameters: + # objects: | + # - objectName: "argocd" + # objectType: "secretsmanager" + # jmesPath: + # - path: "client_id" + # objectAlias: "client_id" + # - path: "client_secret" + # objectAlias: "client_secret" + # secretObjects: + # - data: + # - key: client_id + # objectName: client_id + # - key: client_secret + # objectName: client_secret + # secretName: argocd-secrets-store + # type: Opaque + # labels: + # app.kubernetes.io/part-of: argocd + +## Application controller +controller: + # -- Application controller name string + name: application-controller + + # -- The number of application controller pods to run. + # Additional replicas will cause sharding of managed clusters across number of replicas. + ## With dynamic cluster distribution turned on, sharding of the clusters will gracefully + ## rebalance if the number of replica's changes or one becomes unhealthy. (alpha) + replicas: 1 + + # -- Enable dynamic cluster distribution (alpha) + # Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/dynamic-cluster-distribution + ## This is done using a deployment instead of a statefulSet + ## When replicas are added or removed, the sharding algorithm is re-run to ensure that the + ## clusters are distributed according to the algorithm. If the algorithm is well-balanced, + ## like round-robin, then the shards will be well-balanced. + dynamicClusterDistribution: false + + # -- Runtime class name for the application controller + # @default -- `""` (defaults to global.runtimeClassName) + runtimeClassName: "" + + # -- Application controller heartbeat time + # Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/dynamic-cluster-distribution/#working-of-dynamic-distribution + heartbeatTime: 10 + + # -- Maximum number of controller revisions that will be maintained in StatefulSet history + revisionHistoryLimit: 5 + + ## Application controller Pod Disruption Budget + ## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/ + pdb: + # -- Deploy a [PodDisruptionBudget] for the application controller + enabled: false + # -- Labels to be added to application controller pdb + labels: {} + # -- Annotations to be added to application controller pdb + annotations: {} + # -- Number of pods that are available after eviction as number or percentage (eg.: 50%) + # @default -- `""` (defaults to 0 if not specified) + minAvailable: "" + # -- Number of pods that are unavailable after eviction as number or percentage (eg.: 50%). + ## Has higher precedence over `controller.pdb.minAvailable` + maxUnavailable: "" + + ## Application controller Vertical Pod Autoscaler + ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/ + vpa: + # -- Deploy a [VerticalPodAutoscaler](https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically/) for the application controller + enabled: false + # -- Labels to be added to application controller vpa + labels: {} + # -- Annotations to be added to application controller vpa + annotations: {} + # -- One of the VPA operation modes + ## Ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/#scaling-workloads-vertically + ## Note: Recreate update mode requires more than one replica unless the min-replicas VPA controller flag is overridden + updateMode: Initial + # -- Controls how VPA computes the recommended resources for application controller container + ## Ref: https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/examples/hamster.yaml + containerPolicy: {} + # controlledResources: ["cpu", "memory"] + # minAllowed: + # cpu: 250m + # memory: 256Mi + # maxAllowed: + # cpu: 1 + # memory: 1Gi + + + ## Application controller image + image: + # -- Repository to use for the application controller + # @default -- `""` (defaults to global.image.repository) + repository: "" + # -- Tag to use for the application controller + # @default -- `""` (defaults to global.image.tag) + tag: "" + # -- Image pull policy for the application controller + # @default -- `""` (defaults to global.image.imagePullPolicy) + imagePullPolicy: "" + + # -- Secrets with credentials to pull images from a private registry + # @default -- `[]` (defaults to global.imagePullSecrets) + imagePullSecrets: [] + + # -- Additional command line arguments to pass to application controller + extraArgs: [] + + # -- Environment variables to pass to application controller + env: [] + + # -- envFrom to pass to application controller + # @default -- `[]` (See [values.yaml]) + envFrom: [] + # - configMapRef: + # name: config-map-name + # - secretRef: + # name: secret-name + + # -- Additional containers to be added to the application controller pod + ## Note: Supports use of custom Helm templates + extraContainers: [] + + # -- Init containers to add to the application controller pod + ## If your target Kubernetes cluster(s) require a custom credential (exec) plugin + ## you could use this (and the same in the server pod) to provide such executable + ## Ref: https://kubernetes.io/docs/reference/access-authn-authz/authentication/#client-go-credential-plugins + ## Note: Supports use of custom Helm templates + initContainers: [] + # - name: download-tools + # image: alpine:3 + # command: [sh, -c] + # args: + # - wget -qO /custom-tools/kubelogin.zip https://github.com/Azure/kubelogin/releases/download/v0.2.7/kubelogin-linux-amd64.zip && + # mkdir /custom-tools/tmp && unzip -d /custom-tools/tmp /custom-tools/kubelogin.zip && + # mv /custom-tools/tmp/bin/linux_amd64/kubelogin /custom-tools/ && rm -rf custom-tools/tmp && rm /custom-tools/kubelogin.zip + # volumeMounts: + # - mountPath: /custom-tools + # name: custom-tools + + # -- Additional volumeMounts to the application controller main container + volumeMounts: [] + # - mountPath: /usr/local/bin/kubelogin + # name: custom-tools + # subPath: kubelogin + + # -- Additional volumes to the application controller pod + volumes: [] + # - name: custom-tools + # emptyDir: {} + + ## Application controller emptyDir volumes + emptyDir: + # -- EmptyDir size limit for application controller + # @default -- `""` (defaults not set if not specified i.e. no size limit) + sizeLimit: "" + # sizeLimit: "1Gi" + + # -- Annotations for the application controller StatefulSet + statefulsetAnnotations: {} + + # -- Annotations for the application controller Deployment + deploymentAnnotations: {} + + # -- Labels for the application controller Deployment + deploymentLabels: {} + + # -- Annotations to be added to application controller pods + podAnnotations: {} + + # -- Labels to be added to application controller pods + podLabels: {} + + # -- Resource limits and requests for the application controller pods + resources: {} + # limits: + # cpu: 500m + # memory: 512Mi + # requests: + # cpu: 250m + # memory: 256Mi + + # Application controller container ports + containerPorts: + # -- Metrics container port + metrics: 8082 + + # -- Host Network for application controller pods + hostNetwork: false + + # -- [DNS configuration] + dnsConfig: {} + # -- Alternative DNS policy for application controller pods + dnsPolicy: "ClusterFirst" + + # -- Application controller container-level security context + # @default -- See [values.yaml] + containerSecurityContext: + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + seccompProfile: + type: RuntimeDefault + capabilities: + drop: + - ALL + + # Readiness probe for application controller + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ + readinessProbe: + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 3 + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 10 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 10 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 1 + + # -- terminationGracePeriodSeconds for container lifecycle hook + terminationGracePeriodSeconds: 30 + + # -- Priority class for the application controller pods + # @default -- `""` (defaults to global.priorityClassName) + priorityClassName: "" + + # -- [Node selector] + # @default -- `{}` (defaults to global.nodeSelector) + nodeSelector: {} + + # -- [Tolerations] for use with node taints + # @default -- `[]` (defaults to global.tolerations) + tolerations: [] + + # -- Assign custom [affinity] rules to the deployment + # @default -- `{}` (defaults to global.affinity preset) + affinity: {} + + # -- Assign custom [TopologySpreadConstraints] rules to the application controller + # @default -- `[]` (defaults to global.topologySpreadConstraints) + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ + ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment + topologySpreadConstraints: [] + # - maxSkew: 1 + # topologyKey: topology.kubernetes.io/zone + # whenUnsatisfiable: DoNotSchedule + + # -- Automount API credentials for the Service Account into the pod. + automountServiceAccountToken: true + + serviceAccount: + # -- Create a service account for the application controller + create: true + # -- Service account name + name: argocd-application-controller + # -- Annotations applied to created service account + annotations: {} + # -- Labels applied to created service account + labels: {} + # -- Automount API credentials for the Service Account + automountServiceAccountToken: true + + ## Application controller metrics configuration + metrics: + # -- Deploy metrics service + enabled: false + # -- Prometheus ServiceMonitor scrapeTimeout. If empty, Prometheus uses the global scrape timeout unless it is less than the target's scrape interval value in which the latter is used. + scrapeTimeout: "" + applicationLabels: + # -- Enables additional labels in argocd_app_labels metric + enabled: false + # -- Additional labels + labels: [] + service: + # -- Metrics service type + type: ClusterIP + # -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP) + clusterIP: "" + # -- Metrics service annotations + annotations: {} + # -- Metrics service labels + labels: {} + # -- Metrics service port + servicePort: 8082 + # -- Metrics service port name + portName: http-metrics + serviceMonitor: + # -- Enable a prometheus ServiceMonitor + enabled: false + # -- Prometheus ServiceMonitor interval + interval: 30s + # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels. + honorLabels: false + # -- Prometheus [RelabelConfigs] to apply to samples before scraping + relabelings: [] + # -- Prometheus [MetricRelabelConfigs] to apply to samples before ingestion + metricRelabelings: [] + # -- Prometheus ServiceMonitor selector + selector: {} + # prometheus: kube-prometheus + + # -- Prometheus ServiceMonitor scheme + scheme: "" + # -- Prometheus ServiceMonitor tlsConfig + tlsConfig: {} + # -- Prometheus ServiceMonitor namespace + namespace: "" # "monitoring" + # -- Prometheus ServiceMonitor labels + additionalLabels: {} + # -- Prometheus ServiceMonitor annotations + annotations: {} + rules: + # -- Deploy a PrometheusRule for the application controller + enabled: false + # -- PrometheusRule namespace + namespace: "" # "monitoring" + # -- PrometheusRule selector + selector: {} + # prometheus: kube-prometheus + + # -- PrometheusRule labels + additionalLabels: {} + # -- PrometheusRule annotations + annotations: {} + + # -- PrometheusRule.Spec for the application controller + spec: [] + # - alert: ArgoAppMissing + # expr: | + # absent(argocd_app_info) == 1 + # for: 15m + # labels: + # severity: critical + # annotations: + # summary: "[Argo CD] No reported applications" + # description: > + # Argo CD has not reported any applications data for the past 15 minutes which + # means that it must be down or not functioning properly. This needs to be + # resolved for this cloud to continue to maintain state. + # - alert: ArgoAppNotSynced + # expr: | + # argocd_app_info{sync_status!="Synced"} == 1 + # for: 12h + # labels: + # severity: warning + # annotations: + # summary: "[{{`{{$labels.name}}`}}] Application not synchronized" + # description: > + # The application [{{`{{$labels.name}}`}} has not been synchronized for over + # 12 hours which means that the state of this cloud has drifted away from the + # state inside Git. + + ## Enable this and set the rules: to whatever custom rules you want for the Cluster Role resource. + ## Defaults to off + clusterRoleRules: + # -- Enable custom rules for the application controller's ClusterRole resource + enabled: false + # -- List of custom rules for the application controller's ClusterRole resource + rules: [] + + ## Enable this and set the rules: to whatever custom rules you want for the Role resource. + ## Defaults to off + # -- List of custom rules for the application controller's Role resource + roleRules: [] + + # Default application controller's network policy + networkPolicy: + # -- Default network policy rules used by application controller + # @default -- `false` (defaults to global.networkPolicy.create) + create: false + +## Dex +dex: + # -- Enable dex + enabled: true + # -- Dex name + name: dex-server + + # -- Additional command line arguments to pass to the Dex server + extraArgs: [] + + # -- Runtime class name for Dex + # @default -- `""` (defaults to global.runtimeClassName) + runtimeClassName: "" + + metrics: + # -- Deploy metrics service + enabled: false + service: + # -- Metrics service annotations + annotations: {} + # -- Metrics service labels + labels: {} + # -- Metrics service port name + portName: http-metrics + serviceMonitor: + # -- Enable a prometheus ServiceMonitor + enabled: false + # -- Prometheus ServiceMonitor interval + interval: 30s + # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels. + honorLabels: false + # -- Prometheus [RelabelConfigs] to apply to samples before scraping + relabelings: [] + # -- Prometheus [MetricRelabelConfigs] to apply to samples before ingestion + metricRelabelings: [] + # -- Prometheus ServiceMonitor selector + selector: {} + # prometheus: kube-prometheus + + # -- Prometheus ServiceMonitor scheme + scheme: "" + # -- Prometheus ServiceMonitor tlsConfig + tlsConfig: {} + # -- Prometheus ServiceMonitor namespace + namespace: "" # "monitoring" + # -- Prometheus ServiceMonitor labels + additionalLabels: {} + # -- Prometheus ServiceMonitor annotations + annotations: {} + + ## Dex Pod Disruption Budget + ## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/ + pdb: + # -- Deploy a [PodDisruptionBudget] for the Dex server + enabled: false + # -- Labels to be added to Dex server pdb + labels: {} + # -- Annotations to be added to Dex server pdb + annotations: {} + # -- Number of pods that are available after eviction as number or percentage (eg.: 50%) + # @default -- `""` (defaults to 0 if not specified) + minAvailable: "" + # -- Number of pods that are unavailble after eviction as number or percentage (eg.: 50%). + ## Has higher precedence over `dex.pdb.minAvailable` + maxUnavailable: "" + + ## Dex image + image: + # -- Dex image repository + repository: ghcr.io/dexidp/dex + # -- Dex image tag + tag: v2.44.0 + # -- Dex imagePullPolicy + # @default -- `""` (defaults to global.image.imagePullPolicy) + imagePullPolicy: "" + + # -- Secrets with credentials to pull images from a private registry + # @default -- `[]` (defaults to global.imagePullSecrets) + imagePullSecrets: [] + + # Argo CD init image that creates Dex config + initImage: + # -- Argo CD init image repository + # @default -- `""` (defaults to global.image.repository) + repository: "" + # -- Argo CD init image tag + # @default -- `""` (defaults to global.image.tag) + tag: "" + # -- Argo CD init image imagePullPolicy + # @default -- `""` (defaults to global.image.imagePullPolicy) + imagePullPolicy: "" + # -- Argo CD init image resources + # @default -- `{}` (defaults to dex.resources) + resources: {} + # requests: + # cpu: 5m + # memory: 96Mi + # limits: + # cpu: 10m + # memory: 144Mi + + # -- Environment variables to pass to the Dex server + env: [] + + # -- envFrom to pass to the Dex server + # @default -- `[]` (See [values.yaml]) + envFrom: [] + # - configMapRef: + # name: config-map-name + # - secretRef: + # name: secret-name + + # -- Additional containers to be added to the dex pod + ## Note: Supports use of custom Helm templates + extraContainers: [] + + # -- Init containers to add to the dex pod + ## Note: Supports use of custom Helm templates + initContainers: [] + + # -- Additional volumeMounts to the dex main container + volumeMounts: [] + + # -- Additional volumes to the dex pod + volumes: [] + + ## Dex server emptyDir volumes + emptyDir: + # -- EmptyDir size limit for Dex server + # @default -- `""` (defaults not set if not specified i.e. no size limit) + sizeLimit: "" + # sizeLimit: "1Gi" + + # TLS certificate configuration via Secret + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/tls/#configuring-tls-to-argocd-dex-server + ## Note: Issuing certificates via cert-manager in not supported right now because it's not possible to restart Dex automatically without extra controllers. + certificateSecret: + # -- Create argocd-dex-server-tls secret + enabled: false + # -- Labels to be added to argocd-dex-server-tls secret + labels: {} + # -- Annotations to be added to argocd-dex-server-tls secret + annotations: {} + # -- Certificate authority. Required for self-signed certificates. + ca: '' + # -- Certificate private key + key: '' + # -- Certificate data. Must contain SANs of Dex service (ie: argocd-dex-server, argocd-dex-server.argo-cd.svc) + crt: '' + + # -- Annotations to be added to the Dex server Deployment + deploymentAnnotations: {} + + # -- Labels for the Dex server Deployment + deploymentLabels: {} + + # -- Annotations to be added to the Dex server pods + podAnnotations: {} + + # -- Labels to be added to the Dex server pods + podLabels: {} + + # -- Resource limits and requests for dex + resources: {} + # limits: + # cpu: 50m + # memory: 64Mi + # requests: + # cpu: 10m + # memory: 32Mi + + # Dex container ports + # NOTE: These ports are currently hardcoded and cannot be changed + containerPorts: + # -- HTTP container port + http: 5556 + # -- gRPC container port + grpc: 5557 + # -- Metrics container port + metrics: 5558 + + # -- [DNS configuration] + dnsConfig: {} + # -- Alternative DNS policy for Dex server pods + dnsPolicy: "ClusterFirst" + + # -- Dex container-level security context + # @default -- See [values.yaml] + containerSecurityContext: + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + seccompProfile: + type: RuntimeDefault + capabilities: + drop: + - ALL + + ## Probes for Dex server + ## Supported from Dex >= 2.28.0 + livenessProbe: + # -- Enable Kubernetes liveness probe for Dex >= 2.28.0 + enabled: false + # -- Http path to use for the liveness probe + httpPath: /healthz/live + # -- Http port to use for the liveness probe + httpPort: metrics + # -- Scheme to use for for the liveness probe (can be HTTP or HTTPS) + httpScheme: HTTP + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 3 + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 10 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 10 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 1 + + readinessProbe: + # -- Enable Kubernetes readiness probe for Dex >= 2.28.0 + enabled: false + # -- Http path to use for the readiness probe + httpPath: /healthz/ready + # -- Http port to use for the readiness probe + httpPort: metrics + # -- Scheme to use for for the liveness probe (can be HTTP or HTTPS) + httpScheme: HTTP + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 3 + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 10 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 10 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 1 + + # -- terminationGracePeriodSeconds for container lifecycle hook + terminationGracePeriodSeconds: 30 + + # -- Automount API credentials for the Service Account into the pod. + automountServiceAccountToken: true + + serviceAccount: + # -- Create dex service account + create: true + # -- Dex service account name + name: argocd-dex-server + # -- Annotations applied to created service account + annotations: {} + # -- Automount API credentials for the Service Account + automountServiceAccountToken: true + + # -- Service port for HTTP access + servicePortHttp: 5556 + # -- Service port name for HTTP access + servicePortHttpName: http + # -- Service port for gRPC access + servicePortGrpc: 5557 + # -- Service port name for gRPC access + servicePortGrpcName: grpc + # -- Service port for metrics access + servicePortMetrics: 5558 + + # -- Priority class for the dex pods + # @default -- `""` (defaults to global.priorityClassName) + priorityClassName: "" + + # -- [Node selector] + # @default -- `{}` (defaults to global.nodeSelector) + nodeSelector: {} + + # -- [Tolerations] for use with node taints + # @default -- `[]` (defaults to global.tolerations) + tolerations: [] + + # -- Assign custom [affinity] rules to the deployment + # @default -- `{}` (defaults to global.affinity preset) + affinity: {} + + # -- Assign custom [TopologySpreadConstraints] rules to dex + # @default -- `[]` (defaults to global.topologySpreadConstraints) + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ + ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment + topologySpreadConstraints: [] + # - maxSkew: 1 + # topologyKey: topology.kubernetes.io/zone + # whenUnsatisfiable: DoNotSchedule + + # -- Deployment strategy to be added to the Dex server Deployment + deploymentStrategy: {} + # type: RollingUpdate + # rollingUpdate: + # maxSurge: 25% + # maxUnavailable: 25% + + # Default Dex server's network policy + networkPolicy: + # -- Default network policy rules used by Dex server + # @default -- `false` (defaults to global.networkPolicy.create) + create: false + + # DEPRECATED - Use configs.params to override + # -- Dex log format. Either `text` or `json` + # @default -- `""` (defaults to global.logging.format) + # logFormat: "" + # -- Dex log level. One of: `debug`, `info`, `warn`, `error` + # @default -- `""` (defaults to global.logging.level) + # logLevel: "" + +## Redis +redis: + # -- Enable redis + enabled: true + # -- Redis name + name: redis + + # -- Runtime class name for redis + # @default -- `""` (defaults to global.runtimeClassName) + runtimeClassName: "" + + ## Redis Pod Disruption Budget + ## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/ + pdb: + # -- Deploy a [PodDisruptionBudget] for the Redis + enabled: false + # -- Labels to be added to Redis pdb + labels: {} + # -- Annotations to be added to Redis pdb + annotations: {} + # -- Number of pods that are available after eviction as number or percentage (eg.: 50%) + # @default -- `""` (defaults to 0 if not specified) + minAvailable: "" + # -- Number of pods that are unavailble after eviction as number or percentage (eg.: 50%). + ## Has higher precedence over `redis.pdb.minAvailable` + maxUnavailable: "" + + ## Redis image + image: + # -- Redis repository + repository: ecr-public.aws.com/docker/library/redis + # -- Redis tag + ## Do not upgrade to >= 7.4.0, otherwise you are no longer using an open source version of Redis + tag: 8.2.2-alpine + # -- Redis image pull policy + # @default -- `""` (defaults to global.image.imagePullPolicy) + imagePullPolicy: "" + + ## Prometheus redis-exporter sidecar + exporter: + # -- Enable Prometheus redis-exporter sidecar + enabled: false + # -- Environment variables to pass to the Redis exporter + env: [] + ## Prometheus redis-exporter image + image: + # -- Repository to use for the redis-exporter + repository: ghcr.io/oliver006/redis_exporter + # -- Tag to use for the redis-exporter + tag: v1.80.0 + # -- Image pull policy for the redis-exporter + # @default -- `""` (defaults to global.image.imagePullPolicy) + imagePullPolicy: "" + + # -- Redis exporter security context + # @default -- See [values.yaml] + containerSecurityContext: + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + seccompProfile: + type: RuntimeDefault + capabilities: + drop: + - ALL + + ## Probes for Redis exporter (optional) + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ + readinessProbe: + # -- Enable Kubernetes liveness probe for Redis exporter (optional) + enabled: false + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 30 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 15 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 15 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 5 + livenessProbe: + # -- Enable Kubernetes liveness probe for Redis exporter + enabled: false + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 30 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 15 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 15 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 5 + + # -- Resource limits and requests for redis-exporter sidecar + resources: {} + # limits: + # cpu: 50m + # memory: 64Mi + # requests: + # cpu: 10m + # memory: 32Mi + + # -- Secrets with credentials to pull images from a private registry + # @default -- `[]` (defaults to global.imagePullSecrets) + imagePullSecrets: [] + + # -- Additional command line arguments to pass to redis-server + extraArgs: [] + # - --bind + # - "0.0.0.0" + + # -- Environment variables to pass to the Redis server + env: [] + + # -- envFrom to pass to the Redis server + # @default -- `[]` (See [values.yaml]) + envFrom: [] + # - configMapRef: + # name: config-map-name + # - secretRef: + # name: secret-name + + ## Probes for Redis server (optional) + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ + readinessProbe: + # -- Enable Kubernetes liveness probe for Redis server + enabled: false + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 30 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 15 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 15 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 5 + livenessProbe: + # -- Enable Kubernetes liveness probe for Redis server + enabled: false + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 30 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 15 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 15 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 5 + + # -- Additional containers to be added to the redis pod + ## Note: Supports use of custom Helm templates + extraContainers: [] + + # -- Init containers to add to the redis pod + ## Note: Supports use of custom Helm templates + initContainers: [] + + # -- Additional volumeMounts to the redis container + volumeMounts: [] + + # -- Additional volumes to the redis pod + volumes: [] + + # -- Annotations to be added to the Redis server Deployment + deploymentAnnotations: {} + + # -- Labels for the Redis server Deployment + deploymentLabels: {} + + # -- Annotations to be added to the Redis server pods + podAnnotations: {} + + # -- Labels to be added to the Redis server pods + podLabels: {} + + # -- Resource limits and requests for redis + resources: {} + # limits: + # cpu: 200m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 64Mi + + # -- Redis pod-level security context + # @default -- See [values.yaml] + securityContext: + runAsNonRoot: true + runAsUser: 999 + seccompProfile: + type: RuntimeDefault + + # Redis container ports + containerPorts: + # -- Redis container port + redis: 6379 + # -- Metrics container port + metrics: 9121 + + # -- [DNS configuration] + dnsConfig: {} + # -- Alternative DNS policy for Redis server pods + dnsPolicy: "ClusterFirst" + + # -- Redis container-level security context + # @default -- See [values.yaml] + containerSecurityContext: + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + + # -- Redis service port + servicePort: 6379 + + # -- Priority class for redis pods + # @default -- `""` (defaults to global.priorityClassName) + priorityClassName: "" + + # -- [Node selector] + # @default -- `{}` (defaults to global.nodeSelector) + nodeSelector: {} + + # -- [Tolerations] for use with node taints + # @default -- `[]` (defaults to global.tolerations) + tolerations: [] + + # -- Assign custom [affinity] rules to the deployment + # @default -- `{}` (defaults to global.affinity preset) + affinity: {} + + # -- Assign custom [TopologySpreadConstraints] rules to redis + # @default -- `[]` (defaults to global.topologySpreadConstraints) + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ + ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment + topologySpreadConstraints: [] + # - maxSkew: 1 + # topologyKey: topology.kubernetes.io/zone + # whenUnsatisfiable: DoNotSchedule + + # -- terminationGracePeriodSeconds for container lifecycle hook + terminationGracePeriodSeconds: 30 + + # -- Automount API credentials for the Service Account into the pod. + automountServiceAccountToken: true + + serviceAccount: + # -- Create a service account for the redis pod + create: false + # -- Service account name for redis pod + name: "" + # -- Annotations applied to created service account + annotations: {} + # -- Automount API credentials for the Service Account + automountServiceAccountToken: false + + service: + # -- Redis service annotations + annotations: {} + # -- Additional redis service labels + labels: {} + + metrics: + # -- Deploy metrics service + enabled: false + + # Redis metrics service configuration + service: + # -- Metrics service type + type: ClusterIP + # -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP) + clusterIP: None + # -- Metrics service annotations + annotations: {} + # -- Metrics service labels + labels: {} + # -- Metrics service port + servicePort: 9121 + # -- Metrics service port name + portName: http-metrics + + serviceMonitor: + # -- Enable a prometheus ServiceMonitor + enabled: false + # -- Interval at which metrics should be scraped + interval: 30s + # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels. + honorLabels: false + # -- Prometheus [RelabelConfigs] to apply to samples before scraping + relabelings: [] + # -- Prometheus [MetricRelabelConfigs] to apply to samples before ingestion + metricRelabelings: [] + # -- Prometheus ServiceMonitor selector + selector: {} + # prometheus: kube-prometheus + + # -- Prometheus ServiceMonitor scheme + scheme: "" + # -- Prometheus ServiceMonitor tlsConfig + tlsConfig: {} + # -- Prometheus ServiceMonitor namespace + namespace: "" # "monitoring" + # -- Prometheus ServiceMonitor labels + additionalLabels: {} + # -- Prometheus ServiceMonitor annotations + annotations: {} + + # Default redis's network policy + networkPolicy: + # -- Default network policy rules used by redis + # @default -- `false` (defaults to global.networkPolicy.create) + create: false + +## Redis-HA subchart replaces custom redis deployment when `redis-ha.enabled=true` +# Ref: https://github.com/DandyDeveloper/charts/blob/master/charts/redis-ha/values.yaml +redis-ha: + # -- Enables the Redis HA subchart and disables the custom Redis single node deployment + enabled: false + ## Redis image + image: + # -- Redis repository + repository: ecr-public.aws.com/docker/library/redis + # -- Redis tag + ## Do not upgrade to >= 7.4.0, otherwise you are no longer using an open source version of Redis + tag: 8.2.2-alpine + ## Prometheus redis-exporter sidecar + exporter: + # -- Enable Prometheus redis-exporter sidecar + enabled: false + # -- Repository to use for the redis-exporter + image: ghcr.io/oliver006/redis_exporter + # -- Tag to use for the redis-exporter + tag: v1.75.0 + persistentVolume: + # -- Configures persistence on Redis nodes + enabled: false + ## Redis specific configuration options + redis: + # -- Redis convention for naming the cluster group: must match `^[\\w-\\.]+$` and can be templated + masterGroupName: argocd + # -- Any valid redis config options in this section will be applied to each server (see `redis-ha` chart) + # @default -- See [values.yaml] + config: + # -- Will save the DB if both the given number of seconds and the given number of write operations against the DB occurred. `""` is disabled + # @default -- `'""'` + save: '""' + ## Enables a HA Proxy for better LoadBalancing / Sentinel Master support. Automatically proxies to Redis master. + haproxy: + # -- Enabled HAProxy LoadBalancing/Proxy + enabled: true + # -- Custom labels for the haproxy pod. This is relevant for Argo CD CLI. + labels: + app.kubernetes.io/name: argocd-redis-ha-haproxy + image: + # -- HAProxy Image Repository + repository: ecr-public.aws.com/docker/library/haproxy + metrics: + # -- HAProxy enable prometheus metric scraping + enabled: true + # -- Whether the haproxy pods should be forced to run on separate nodes. + hardAntiAffinity: true + # -- Additional affinities to add to the haproxy pods. + additionalAffinities: {} + # -- Assign custom [affinity] rules to the haproxy pods. + affinity: | + + # -- [Tolerations] for use with node taints for haproxy pods. + tolerations: [] + # -- HAProxy container-level security context + # @default -- See [values.yaml] + containerSecurityContext: + readOnlyRootFilesystem: true + + # -- Configures redis-ha with AUTH + auth: true + # -- Existing Secret to use for redis-ha authentication. + # By default the redis-secret-init Job is generating this Secret. + existingSecret: argocd-redis + + # -- Whether the Redis server pods should be forced to run on separate nodes. + hardAntiAffinity: true + + # -- Additional affinities to add to the Redis server pods. + additionalAffinities: {} + + # -- Assign custom [affinity] rules to the Redis pods. + affinity: | + + # -- [Tolerations] for use with node taints for Redis pods. + tolerations: [] + + # -- Assign custom [TopologySpreadConstraints] rules to the Redis pods. + ## https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ + topologySpreadConstraints: + # -- Enable Redis HA topology spread constraints + enabled: false + # -- Max skew of pods tolerated + # @default -- `""` (defaults to `1`) + maxSkew: "" + # -- Topology key for spread + # @default -- `""` (defaults to `topology.kubernetes.io/zone`) + topologyKey: "" + # -- Enforcement policy, hard or soft + # @default -- `""` (defaults to `ScheduleAnyway`) + whenUnsatisfiable: "" + # -- Redis HA statefulset container-level security context + # @default -- See [values.yaml] + containerSecurityContext: + readOnlyRootFilesystem: true + +# External Redis parameters +externalRedis: + # -- External Redis server host + host: "" + # -- External Redis username + username: "" + # -- External Redis password + password: "" + # -- External Redis server port + port: 6379 + # -- The name of an existing secret with Redis (must contain key `redis-password`. And should contain `redis-username` if username is not `default`) and Sentinel credentials. + # When it's set, the `externalRedis.username` and `externalRedis.password` parameters are ignored + existingSecret: "" + # -- External Redis Secret annotations + secretAnnotations: {} + +redisSecretInit: + # -- Enable Redis secret initialization. If disabled, secret must be provisioned by alternative methods + enabled: true + # -- Redis secret-init name + name: redis-secret-init + + image: + # -- Repository to use for the Redis secret-init Job + # @default -- `""` (defaults to global.image.repository) + repository: "" # defaults to global.image.repository + # -- Tag to use for the Redis secret-init Job + # @default -- `""` (defaults to global.image.tag) + tag: "" # defaults to global.image.tag + # -- Image pull policy for the Redis secret-init Job + # @default -- `""` (defaults to global.image.imagePullPolicy) + imagePullPolicy: "" # IfNotPresent + + # -- Additional command line arguments for the Redis secret-init Job + extraArgs: [] + + # -- Secrets with credentials to pull images from a private registry + # @default -- `[]` (defaults to global.imagePullSecrets) + imagePullSecrets: [] + + # -- Runtime class name for the Redis secret-init Job + # @default -- `""` (defaults to global.runtimeClassName) + runtimeClassName: "" + + # -- Annotations to be added to the Redis secret-init Job + jobAnnotations: {} + + # -- Annotations to be added to the Redis secret-init Job + podAnnotations: {} + + # -- Labels to be added to the Redis secret-init Job + podLabels: {} + + # -- Resource limits and requests for Redis secret-init Job + resources: {} + # limits: + # cpu: 200m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 64Mi + + # -- Application controller container-level security context + # @default -- See [values.yaml] + containerSecurityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + readOnlyRootFilesystem: true + runAsNonRoot: true + seccompProfile: + type: RuntimeDefault + + # -- Redis secret-init Job pod-level security context + securityContext: {} + + serviceAccount: + # -- Create a service account for the redis pod + create: true + # -- Service account name for redis pod + name: "" + # -- Annotations applied to created service account + annotations: {} + # -- Automount API credentials for the Service Account + automountServiceAccountToken: true + + # -- Priority class for Redis secret-init Job + # @default -- `""` (defaults to global.priorityClassName) + priorityClassName: "" + + # -- Assign custom [affinity] rules to the Redis secret-init Job + affinity: {} + + # -- Node selector to be added to the Redis secret-init Job + # @default -- `{}` (defaults to global.nodeSelector) + nodeSelector: {} + + # -- Tolerations to be added to the Redis secret-init Job + # @default -- `[]` (defaults to global.tolerations) + tolerations: [] + +## Server +server: + # -- Argo CD server name + name: server + + # -- The number of server pods to run + replicas: 1 + + # -- Runtime class name for the Argo CD server + # @default -- `""` (defaults to global.runtimeClassName) + runtimeClassName: "" + + ## Argo CD server Horizontal Pod Autoscaler + autoscaling: + # -- Enable Horizontal Pod Autoscaler ([HPA]) for the Argo CD server + enabled: false + # -- Minimum number of replicas for the Argo CD server [HPA] + minReplicas: 1 + # -- Maximum number of replicas for the Argo CD server [HPA] + maxReplicas: 5 + # -- Average CPU utilization percentage for the Argo CD server [HPA] + targetCPUUtilizationPercentage: 50 + # -- Average memory utilization percentage for the Argo CD server [HPA] + targetMemoryUtilizationPercentage: 50 + # -- Configures the scaling behavior of the target in both Up and Down directions. + behavior: {} + # scaleDown: + # stabilizationWindowSeconds: 300 + # policies: + # - type: Pods + # value: 1 + # periodSeconds: 180 + # scaleUp: + # stabilizationWindowSeconds: 300 + # policies: + # - type: Pods + # value: 2 + # periodSeconds: 60 + # -- Configures custom HPA metrics for the Argo CD server + # Ref: https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/ + metrics: [] + + ## Argo CD server Pod Disruption Budget + ## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/ + pdb: + # -- Deploy a [PodDisruptionBudget] for the Argo CD server + enabled: false + # -- Labels to be added to Argo CD server pdb + labels: {} + # -- Annotations to be added to Argo CD server pdb + annotations: {} + # -- Number of pods that are available after eviction as number or percentage (eg.: 50%) + # @default -- `""` (defaults to 0 if not specified) + minAvailable: "" + # -- Number of pods that are unavailable after eviction as number or percentage (eg.: 50%). + ## Has higher precedence over `server.pdb.minAvailable` + maxUnavailable: "" + + ## Argo CD server image + image: + # -- Repository to use for the Argo CD server + # @default -- `""` (defaults to global.image.repository) + repository: "" # defaults to global.image.repository + # -- Tag to use for the Argo CD server + # @default -- `""` (defaults to global.image.tag) + tag: "" # defaults to global.image.tag + # -- Image pull policy for the Argo CD server + # @default -- `""` (defaults to global.image.imagePullPolicy) + imagePullPolicy: "" # IfNotPresent + + # -- Secrets with credentials to pull images from a private registry + # @default -- `[]` (defaults to global.imagePullSecrets) + imagePullSecrets: [] + + # -- Additional command line arguments to pass to Argo CD server + extraArgs: [] + + # -- Environment variables to pass to Argo CD server + env: [] + + # -- envFrom to pass to Argo CD server + # @default -- `[]` (See [values.yaml]) + envFrom: [] + # - configMapRef: + # name: config-map-name + # - secretRef: + # name: secret-name + + # -- Specify postStart and preStop lifecycle hooks for your argo-cd-server container + lifecycle: {} + + ## Argo CD extensions + ## This function in tech preview stage, do expect instability or breaking changes in newer versions. + ## Ref: https://github.com/argoproj-labs/argocd-extension-installer + ## When you enable extensions, you need to configure RBAC of logged in Argo CD user. + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/rbac/#the-extensions-resource + extensions: + # -- Enable support for Argo CD extensions + enabled: false + + ## Argo CD extension installer image + image: + # -- Repository to use for extension installer image + repository: "quay.io/argoprojlabs/argocd-extension-installer" + # -- Tag to use for extension installer image + tag: "v0.0.8" + # -- Image pull policy for extensions + # @default -- `""` (defaults to global.image.imagePullPolicy) + imagePullPolicy: "" + + # -- Extensions for Argo CD + # @default -- `[]` (See [values.yaml]) + ## Ref: https://github.com/argoproj-labs/argocd-extension-metrics#install-ui-extension + extensionList: [] + # - name: extension-metrics + # env: + # - name: EXTENSION_URL + # value: https://github.com/argoproj-labs/argocd-extension-metrics/releases/download/v1.0.0/extension.tar.gz + # - name: EXTENSION_CHECKSUM_URL + # value: https://github.com/argoproj-labs/argocd-extension-metrics/releases/download/v1.0.0/extension_checksums.txt + + # -- Server UI extensions container-level security context + # @default -- See [values.yaml] + containerSecurityContext: + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + runAsUser: 1000 + seccompProfile: + type: RuntimeDefault + capabilities: + drop: + - ALL + + # -- Resource limits and requests for the argocd-extensions container + resources: {} + # limits: + # cpu: 50m + # memory: 128Mi + # requests: + # cpu: 10m + # memory: 64Mi + + # -- Additional containers to be added to the server pod + ## Note: Supports use of custom Helm templates + extraContainers: [] + # - name: my-sidecar + # image: nginx:latest + # - name: lemonldap-ng-controller + # image: lemonldapng/lemonldap-ng-controller:0.2.0 + # args: + # - /lemonldap-ng-controller + # - --alsologtostderr + # - --configmap=$(POD_NAMESPACE)/lemonldap-ng-configuration + # env: + # - name: POD_NAME + # valueFrom: + # fieldRef: + # fieldPath: metadata.name + # - name: POD_NAMESPACE + # valueFrom: + # fieldRef: + # fieldPath: metadata.namespace + # volumeMounts: + # - name: copy-portal-skins + # mountPath: /srv/var/lib/lemonldap-ng/portal/skins + + # -- Init containers to add to the server pod + ## If your target Kubernetes cluster(s) require a custom credential (exec) plugin + ## you could use this (and the same in the application controller pod) to provide such executable + ## Ref: https://kubernetes.io/docs/reference/access-authn-authz/authentication/#client-go-credential-plugins + initContainers: [] + # - name: download-tools + # image: alpine:3 + # command: [sh, -c] + # args: + # - wget -qO /custom-tools/kubelogin.zip https://github.com/Azure/kubelogin/releases/download/v0.2.7/kubelogin-linux-amd64.zip && + # mkdir /custom-tools/tmp && unzip -d /custom-tools/tmp /custom-tools/kubelogin.zip && + # mv /custom-tools/tmp/bin/linux_amd64/kubelogin /custom-tools/ && rm -rf custom-tools/tmp && rm /custom-tools/kubelogin.zip + # volumeMounts: + # - mountPath: /custom-tools + # name: custom-tools + + # -- Additional volumeMounts to the server main container + volumeMounts: [] + # - mountPath: /usr/local/bin/kubelogin + # name: custom-tools + # subPath: kubelogin + + # -- Additional volumes to the server pod + volumes: [] + # - name: custom-tools + # emptyDir: {} + + ## Argo CD server emptyDir volumes + emptyDir: + # -- EmptyDir size limit for the Argo CD server + # @default -- `""` (defaults not set if not specified i.e. no size limit) + sizeLimit: "" + # sizeLimit: "1Gi" + + # -- Annotations to be added to server Deployment + deploymentAnnotations: {} + + # -- Labels for the server Deployment + deploymentLabels: {} + + # -- Annotations to be added to server pods + podAnnotations: {} + + # -- Labels to be added to server pods + podLabels: {} + + # -- Resource limits and requests for the Argo CD server + resources: {} + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 50m + # memory: 64Mi + + # Server container ports + containerPorts: + # -- Server container port + server: 8080 + # -- Metrics container port + metrics: 8083 + + # -- Host Network for Server pods + hostNetwork: false + + # -- [DNS configuration] + dnsConfig: {} + # -- Alternative DNS policy for Server pods + dnsPolicy: "ClusterFirst" + + # -- Server container-level security context + # @default -- See [values.yaml] + containerSecurityContext: + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + seccompProfile: + type: RuntimeDefault + capabilities: + drop: + - ALL + + ## Readiness and liveness probes for default backend + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ + readinessProbe: + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 3 + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 10 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 10 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 1 + + livenessProbe: + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 3 + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 10 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 10 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 1 + + # -- terminationGracePeriodSeconds for container lifecycle hook + terminationGracePeriodSeconds: 30 + + # -- Priority class for the Argo CD server pods + # @default -- `""` (defaults to global.priorityClassName) + priorityClassName: "" + + # -- [Node selector] + # @default -- `{}` (defaults to global.nodeSelector) + nodeSelector: {} + + # -- [Tolerations] for use with node taints + # @default -- `[]` (defaults to global.tolerations) + tolerations: [] + + # -- Assign custom [affinity] rules to the deployment + # @default -- `{}` (defaults to global.affinity preset) + affinity: {} + + # -- Assign custom [TopologySpreadConstraints] rules to the Argo CD server + # @default -- `[]` (defaults to global.topologySpreadConstraints) + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ + ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment + topologySpreadConstraints: [] + # - maxSkew: 1 + # topologyKey: topology.kubernetes.io/zone + # whenUnsatisfiable: DoNotSchedule + + # -- Deployment strategy to be added to the server Deployment + deploymentStrategy: {} + # type: RollingUpdate + # rollingUpdate: + # maxSurge: 25% + # maxUnavailable: 25% + + # TLS certificate configuration via cert-manager + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/tls/#tls-certificates-used-by-argocd-server + certificate: + # -- Deploy a Certificate resource (requires cert-manager) + enabled: false + # -- Certificate primary domain (commonName) + # @default -- `""` (defaults to global.domain) + domain: "" + # -- Certificate Subject Alternate Names (SANs) + additionalHosts: [] + # -- The requested 'duration' (i.e. lifetime) of the certificate. + # @default -- `""` (defaults to 2160h = 90d if not specified) + ## Ref: https://cert-manager.io/docs/usage/certificate/#renewal + duration: "" + # -- How long before the expiry a certificate should be renewed. + # @default -- `""` (defaults to 360h = 15d if not specified) + ## Ref: https://cert-manager.io/docs/usage/certificate/#renewal + renewBefore: "" + # Certificate issuer + ## Ref: https://cert-manager.io/docs/concepts/issuer + issuer: + # -- Certificate issuer group. Set if using an external issuer. Eg. `cert-manager.io` + group: "" + # -- Certificate issuer kind. Either `Issuer` or `ClusterIssuer` + kind: "" + # -- Certificate issuer name. Eg. `letsencrypt` + name: "" + # Private key of the certificate + privateKey: + # -- Rotation policy of private key when certificate is re-issued. Either: `Never` or `Always` + rotationPolicy: Never + # -- The private key cryptography standards (PKCS) encoding for private key. Either: `PCKS1` or `PKCS8` + encoding: PKCS1 + # -- Algorithm used to generate certificate private key. One of: `RSA`, `Ed25519` or `ECDSA` + algorithm: RSA + # -- Key bit size of the private key. If algorithm is set to `Ed25519`, size is ignored. + size: 2048 + # -- Annotations to be applied to the Server Certificate + annotations: {} + # -- Usages for the certificate + ### Ref: https://cert-manager.io/docs/reference/api-docs/#cert-manager.io/v1.KeyUsage + usages: [] + # -- Annotations that allow the certificate to be composed from data residing in existing Kubernetes Resources + secretTemplateAnnotations: {} + + # TLS certificate configuration via Secret + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/tls/#tls-certificates-used-by-argocd-server + certificateSecret: + # -- Create argocd-server-tls secret + enabled: false + # -- Annotations to be added to argocd-server-tls secret + annotations: {} + # -- Labels to be added to argocd-server-tls secret + labels: {} + # -- Private Key of the certificate + key: '' + # -- Certificate data + crt: '' + + ## Server service configuration + service: + # -- Server service annotations + annotations: {} + # -- Server service labels + labels: {} + # -- Server service type + type: ClusterIP + # -- Server service http port for NodePort service type (only if `server.service.type` is set to "NodePort") + nodePortHttp: 30080 + # -- Server service https port for NodePort service type (only if `server.service.type` is set to "NodePort") + nodePortHttps: 30443 + # -- Server service http port + servicePortHttp: 80 + # -- Server service https port + servicePortHttps: 443 + # -- Server service http port name, can be used to route traffic via istio + servicePortHttpName: http + # -- Server service https port name, can be used to route traffic via istio + servicePortHttpsName: https + # -- Server service https port appProtocol + ## Ref: https://kubernetes.io/docs/concepts/services-networking/service/#application-protocol + servicePortHttpsAppProtocol: "" + # -- The class of the load balancer implementation + loadBalancerClass: "" + # -- LoadBalancer will get created with the IP specified in this field + loadBalancerIP: "" + # -- Source IP ranges to allow access to service from + ## EKS Ref: https://repost.aws/knowledge-center/eks-cidr-ip-address-loadbalancer + ## GKE Ref: https://cloud.google.com/kubernetes-engine/docs/concepts/network-overview#limit-connectivity-ext-lb + loadBalancerSourceRanges: [] + # -- Server service external IPs + externalIPs: [] + # -- Denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints + ## Ref: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + externalTrafficPolicy: Cluster + # -- Used to maintain session affinity. Supports `ClientIP` and `None` + ## Ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + sessionAffinity: None + + ## Server metrics service configuration + metrics: + # -- Deploy metrics service + enabled: false + service: + # -- Metrics service type + type: ClusterIP + # -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP) + clusterIP: "" + # -- Metrics service annotations + annotations: {} + # -- Metrics service labels + labels: {} + # -- Metrics service port + servicePort: 8083 + # -- Metrics service port name + portName: http-metrics + serviceMonitor: + # -- Enable a prometheus ServiceMonitor + enabled: false + # -- Prometheus ServiceMonitor interval + interval: 30s + # -- Prometheus ServiceMonitor scrapeTimeout. If empty, Prometheus uses the global scrape timeout unless it is less than the target's scrape interval value in which the latter is used. + scrapeTimeout: "" + # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels. + honorLabels: false + # -- Prometheus [RelabelConfigs] to apply to samples before scraping + relabelings: [] + # -- Prometheus [MetricRelabelConfigs] to apply to samples before ingestion + metricRelabelings: [] + # -- Prometheus ServiceMonitor selector + selector: {} + # prometheus: kube-prometheus + + # -- Prometheus ServiceMonitor scheme + scheme: "" + # -- Prometheus ServiceMonitor tlsConfig + tlsConfig: {} + # -- Prometheus ServiceMonitor namespace + namespace: "" # monitoring + # -- Prometheus ServiceMonitor labels + additionalLabels: {} + # -- Prometheus ServiceMonitor annotations + annotations: {} + + # -- Automount API credentials for the Service Account into the pod. + automountServiceAccountToken: true + + serviceAccount: + # -- Create server service account + create: true + # -- Server service account name + name: argocd-server + # -- Annotations applied to created service account + annotations: {} + # -- Labels applied to created service account + labels: {} + # -- Automount API credentials for the Service Account + automountServiceAccountToken: true + + # Argo CD server ingress configuration + ingress: + # -- Enable an ingress resource for the Argo CD server + enabled: false + # -- Specific implementation for ingress controller. One of `generic`, `aws` or `gke` + ## Additional configuration might be required in related configuration sections + controller: generic + # -- Additional ingress labels + labels: {} + # -- Additional ingress annotations + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/#option-1-ssl-passthrough + annotations: {} + # nginx.ingress.kubernetes.io/force-ssl-redirect: "true" + # nginx.ingress.kubernetes.io/ssl-passthrough: "true" + + # -- Defines which ingress controller will implement the resource + ingressClassName: "" + + # -- Argo CD server hostname + # @default -- `""` (defaults to global.domain) + hostname: "" + + # -- The path to Argo CD server + path: / + + # -- Ingress path type. One of `Exact`, `Prefix` or `ImplementationSpecific` + pathType: Prefix + + # -- Enable TLS configuration for the hostname defined at `server.ingress.hostname` + ## TLS certificate will be retrieved from a TLS secret `argocd-server-tls` + ## You can create this secret via `certificate` or `certificateSecret` option + tls: false + + # -- The list of additional hostnames to be covered by ingress record + # @default -- `[]` (See [values.yaml]) + extraHosts: [] + # - name: argocd.example.com + # path: / + + # -- Additional ingress paths + # @default -- `[]` (See [values.yaml]) + ## Note: Supports use of custom Helm templates + extraPaths: [] + # - path: /* + # pathType: Prefix + # backend: + # service: + # name: ssl-redirect + # port: + # name: use-annotation + + # -- Additional ingress rules + # @default -- `[]` (See [values.yaml]) + ## Note: Supports use of custom Helm templates + extraRules: [] + # - http: + # paths: + # - path: / + # pathType: Prefix + # backend: + # service: + # name: '{{ include "argo-cd.server.fullname" . }}' + # port: + # name: '{{ .Values.server.service.servicePortHttpsName }}' + + # -- Additional TLS configuration + # @default -- `[]` (See [values.yaml]) + extraTls: [] + # - hosts: + # - argocd.example.com + # secretName: your-certificate-name + + # AWS specific options for Application Load Balancer + # Applies only when `serv.ingress.controller` is set to `aws` + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/#aws-application-load-balancers-albs-and-classic-elb-http-mode + aws: + # -- Backend protocol version for the AWS ALB gRPC service + ## This tells AWS to send traffic from the ALB using gRPC. + ## For more information: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/target-group-health-checks.html#health-check-settings + backendProtocolVersion: GRPC + # -- Service type for the AWS ALB gRPC service + ## Can be of type NodePort or ClusterIP depending on which mode you are running. + ## Instance mode needs type NodePort, IP mode needs type ClusterIP + ## Ref: https://kubernetes-sigs.github.io/aws-load-balancer-controller/v2.2/how-it-works/#ingress-traffic + serviceType: NodePort + # -- Annotations for the AWS ALB gRPC service + ## Allows adding custom annotations to the gRPC service for integrations like DataDog, Prometheus, etc. + serviceAnnotations: {} + + # Google specific options for Google Application Load Balancer + # Applies only when `server.ingress.controller` is set to `gke` + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/#google-cloud-load-balancers-with-kubernetes-ingress + gke: + # -- Google [BackendConfig] resource, for use with the GKE Ingress Controller + # @default -- `{}` (See [values.yaml]) + ## Ref: https://cloud.google.com/kubernetes-engine/docs/how-to/ingress-features#configuring_ingress_features_through_frontendconfig_parameters + backendConfig: {} + # iap: + # enabled: true + # oauthclientCredentials: + # secretName: argocd-secret + + # -- Google [FrontendConfig] resource, for use with the GKE Ingress Controller + # @default -- `{}` (See [values.yaml]) + ## Ref: https://cloud.google.com/kubernetes-engine/docs/how-to/ingress-features#configuring_ingress_features_through_frontendconfig_parameters + frontendConfig: {} + # redirectToHttps: + # enabled: true + # responseCodeName: RESPONSE_CODE + + # Managed GKE certificate for ingress hostname + managedCertificate: + # -- Create ManagedCertificate resource and annotations for Google Load balancer + ## Ref: https://cloud.google.com/kubernetes-engine/docs/how-to/managed-certs + create: true + # -- Additional domains for ManagedCertificate resource + extraDomains: [] + # - argocd.example.com + + # Dedicated gRPC ingress for ingress controllers that supports only single backend protocol per Ingress resource + # Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/#option-2-multiple-ingress-objects-and-hosts + ingressGrpc: + # -- Enable an ingress resource for the Argo CD server for dedicated [gRPC-ingress] + enabled: false + # -- Additional ingress annotations for dedicated [gRPC-ingress] + annotations: {} + # -- Additional ingress labels for dedicated [gRPC-ingress] + labels: {} + # -- Defines which ingress controller will implement the resource [gRPC-ingress] + ingressClassName: "" + + # -- Argo CD server hostname for dedicated [gRPC-ingress] + # @default -- `""` (defaults to grpc.`server.ingress.hostname`) + hostname: "" + + # -- Argo CD server ingress path for dedicated [gRPC-ingress] + path: / + + # -- Ingress path type for dedicated [gRPC-ingress]. One of `Exact`, `Prefix` or `ImplementationSpecific` + pathType: Prefix + + # -- Enable TLS configuration for the hostname defined at `server.ingressGrpc.hostname` + ## TLS certificate will be retrieved from a TLS secret with name: `argocd-server-grpc-tls` + tls: false + + # -- The list of additional hostnames to be covered by ingress record + # @default -- `[]` (See [values.yaml]) + extraHosts: [] + # - name: grpc.argocd.example.com + # path: / + + # -- Additional ingress paths for dedicated [gRPC-ingress] + # @default -- `[]` (See [values.yaml]) + ## Note: Supports use of custom Helm templates + extraPaths: [] + # - path: /* + # pathType: Prefix + # backend: + # service: + # name: ssl-redirect + # port: + # name: use-annotation + + # -- Additional ingress rules + # @default -- `[]` (See [values.yaml]) + ## Note: Supports use of custom Helm templates + extraRules: [] + # - http: + # paths: + # - path: / + # pathType: Prefix + # backend: + # service: + # name: '{{ include "argo-cd.server.fullname" . }}' + # port: + # name: '{{ .Values.server.service.servicePortHttpName }}' + + # -- Additional TLS configuration for dedicated [gRPC-ingress] + # @default -- `[]` (See [values.yaml]) + extraTls: [] + # - secretName: your-certificate-name + # hosts: + # - argocd.example.com + + # Create a OpenShift Route with SSL passthrough for UI and CLI + # Consider setting 'hostname' e.g. https://argocd.apps-crc.testing/ using your Default Ingress Controller Domain + # Find your domain with: kubectl describe --namespace=openshift-ingress-operator ingresscontroller/default | grep Domain: + # If 'hostname' is an empty string "" OpenShift will create a hostname for you. + route: + # -- Enable an OpenShift Route for the Argo CD server + enabled: false + # -- Openshift Route annotations + annotations: {} + # -- Hostname of OpenShift Route + hostname: "" + # -- Termination type of Openshift Route + termination_type: passthrough + # -- Termination policy of Openshift Route + termination_policy: None + + # Gateway API HTTPRoute configuration + # NOTE: Gateway API support is in EXPERIMENTAL status + # Support depends on your Gateway controller implementation + # Some controllers may require additional configuration (e.g., BackendTLSPolicy for HTTPS backends) + # Refer to https://gateway-api.sigs.k8s.io/implementations/ for controller-specific details + httproute: + # -- Enable HTTPRoute resource for Argo CD server (Gateway API) + enabled: false + # -- Additional HTTPRoute labels + labels: {} + # -- Additional HTTPRoute annotations + annotations: {} + # -- Gateway API parentRefs for the HTTPRoute + ## Must reference an existing Gateway + # @default -- `[]` (See [values.yaml]) + parentRefs: [] + # - name: example-gateway + # namespace: example-gateway-namespace + # sectionName: https + # -- List of hostnames for the HTTPRoute + # @default -- `[]` (See [values.yaml]) + hostnames: [] + # - argocd.example.com + # -- HTTPRoute rules configuration + # @default -- `[]` (See [values.yaml]) + rules: + - matches: + - path: + type: PathPrefix + value: / + # filters: [] + # - type: RequestHeaderModifier + # requestHeaderModifier: + # add: + # - name: X-Custom-Header + # value: custom-value + + # Gateway API GRPCRoute configuration + # NOTE: Gateway API support is in EXPERIMENTAL status + # Support depends on your Gateway controller implementation + # Refer to https://gateway-api.sigs.k8s.io/implementations/ for controller-specific details + grpcroute: + # -- Enable GRPCRoute resource for Argo CD server (Gateway API) + enabled: false + # -- Additional GRPCRoute labels + labels: {} + # -- Additional GRPCRoute annotations + annotations: {} + # -- Gateway API parentRefs for the GRPCRoute + ## Must reference an existing Gateway + # @default -- `[]` (See [values.yaml]) + parentRefs: [] + # - name: example-gateway + # namespace: example-gateway-namespace + # sectionName: grpc + # -- List of hostnames for the GRPCRoute + # @default -- `[]` (See [values.yaml]) + hostnames: [] + # - grpc.argocd.example.com + # -- GRPCRoute rules configuration + # @default -- `[]` (See [values.yaml]) + rules: + - matches: + - method: + type: Exact + # filters: [] + # - type: RequestHeaderModifier + # requestHeaderModifier: + # add: + # - name: X-Custom-Header + # value: custom-value + + # Gateway API BackendTLSPolicy configuration + # NOTE: BackendTLSPolicy is in EXPERIMENTAL status (v1alpha3) + # Required for HTTPS backends when using Gateway API + # Not all Gateway controllers support this resource (e.g., Cilium does not support it yet) + backendTLSPolicy: + # -- Enable BackendTLSPolicy resource for Argo CD server (Gateway API) + enabled: false + # -- Additional BackendTLSPolicy labels + labels: {} + # -- Additional BackendTLSPolicy annotations + annotations: {} + # -- Target references for the BackendTLSPolicy + # @default -- `[]` (See [values.yaml]) + targetRefs: [] + # - group: "" + # kind: Service + # name: argocd-server + # sectionName: https + # -- TLS validation configuration + # @default -- `{}` (See [values.yaml]) + validation: {} + # hostname: argocd-server.argocd.svc.cluster.local + # caCertificateRefs: + # - name: example-ca-cert + # group: "" + # kind: ConfigMap + # wellKnownCACertificates: System + + ## Enable this and set the rules: to whatever custom rules you want for the Cluster Role resource. + ## Defaults to off + clusterRoleRules: + # -- Enable custom rules for the server's ClusterRole resource + enabled: false + # -- List of custom rules for the server's ClusterRole resource + rules: [] + + # Default ArgoCD Server's network policy + networkPolicy: + # -- Default network policy rules used by ArgoCD Server + # @default -- `false` (defaults to global.networkPolicy.create) + create: false + +## Repo Server +repoServer: + # -- Repo server name + name: repo-server + + # -- The number of repo server pods to run + replicas: 1 + + # -- Runtime class name for the repo server + # @default -- `""` (defaults to global.runtimeClassName) + runtimeClassName: "" + + ## Repo server Horizontal Pod Autoscaler + autoscaling: + # -- Enable Horizontal Pod Autoscaler ([HPA]) for the repo server + enabled: false + # -- Minimum number of replicas for the repo server [HPA] + minReplicas: 1 + # -- Maximum number of replicas for the repo server [HPA] + maxReplicas: 5 + # -- Average CPU utilization percentage for the repo server [HPA] + targetCPUUtilizationPercentage: 50 + # -- Average memory utilization percentage for the repo server [HPA] + targetMemoryUtilizationPercentage: 50 + # -- Configures the scaling behavior of the target in both Up and Down directions. + behavior: {} + # scaleDown: + # stabilizationWindowSeconds: 300 + # policies: + # - type: Pods + # value: 1 + # periodSeconds: 180 + # scaleUp: + # stabilizationWindowSeconds: 300 + # policies: + # - type: Pods + # value: 2 + # periodSeconds: 60 + # -- Configures custom HPA metrics for the Argo CD repo server + # Ref: https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/ + metrics: [] + + ## Repo server Pod Disruption Budget + ## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/ + pdb: + # -- Deploy a [PodDisruptionBudget] for the repo server + enabled: false + # -- Labels to be added to repo server pdb + labels: {} + # -- Annotations to be added to repo server pdb + annotations: {} + # -- Number of pods that are available after eviction as number or percentage (eg.: 50%) + # @default -- `""` (defaults to 0 if not specified) + minAvailable: "" + # -- Number of pods that are unavailable after eviction as number or percentage (eg.: 50%). + ## Has higher precedence over `repoServer.pdb.minAvailable` + maxUnavailable: "" + + ## Repo server image + image: + # -- Repository to use for the repo server + # @default -- `""` (defaults to global.image.repository) + repository: "" + # -- Tag to use for the repo server + # @default -- `""` (defaults to global.image.tag) + tag: "" + # -- Image pull policy for the repo server + # @default -- `""` (defaults to global.image.imagePullPolicy) + imagePullPolicy: "" + + # -- Secrets with credentials to pull images from a private registry + # @default -- `[]` (defaults to global.imagePullSecrets) + imagePullSecrets: [] + + # -- Additional command line arguments to pass to repo server + extraArgs: [] + + # -- Environment variables to pass to repo server + env: [] + + # -- envFrom to pass to repo server + # @default -- `[]` (See [values.yaml]) + envFrom: [] + # - configMapRef: + # name: config-map-name + # - secretRef: + # name: secret-name + + # -- Specify postStart and preStop lifecycle hooks for your argo-repo-server container + lifecycle: {} + + # -- Additional containers to be added to the repo server pod + ## Ref: https://argo-cd.readthedocs.io/en/stable/user-guide/config-management-plugins/ + ## Note: Supports use of custom Helm templates + extraContainers: [] + # - name: cmp-my-plugin + # command: + # - "/var/run/argocd/argocd-cmp-server" + # image: busybox + # securityContext: + # runAsNonRoot: true + # runAsUser: 999 + # volumeMounts: + # - mountPath: /var/run/argocd + # name: var-files + # - mountPath: /home/argocd/cmp-server/plugins + # name: plugins + # # Remove this volumeMount if you've chosen to bake the config file into the sidecar image. + # - mountPath: /home/argocd/cmp-server/config/plugin.yaml + # subPath: my-plugin.yaml + # name: argocd-cmp-cm + # # Starting with v2.4, do NOT mount the same tmp volume as the repo-server container. The filesystem separation helps + # # mitigate path traversal attacks. + # - mountPath: /tmp + # name: cmp-tmp + # - name: cmp-my-plugin2 + # command: + # - "/var/run/argocd/argocd-cmp-server" + # image: busybox + # securityContext: + # runAsNonRoot: true + # runAsUser: 999 + # volumeMounts: + # - mountPath: /var/run/argocd + # name: var-files + # # Remove this volumeMount if you've chosen to bake the config file into the sidecar image. + # - mountPath: /home/argocd/cmp-server/plugins + # name: plugins + # - mountPath: /home/argocd/cmp-server/config/plugin.yaml + # subPath: my-plugin2.yaml + # name: argocd-cmp-cm + # # Starting with v2.4, do NOT mount the same tmp volume as the repo-server container. The filesystem separation helps + # # mitigate path traversal attacks. + # - mountPath: /tmp + # name: cmp-tmp + + # -- Init containers to add to the repo server pods + initContainers: [] + + copyutil: + # -- Resource limits and requests for the repo server copyutil initContainer + resources: {} + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 50m + # memory: 64Mi + + # -- Additional volumeMounts to the repo server main container + volumeMounts: [] + + # -- Additional volumes to the repo server pod + volumes: [] + # - name: argocd-cmp-cm + # configMap: + # name: argocd-cmp-cm + # - name: cmp-tmp + # emptyDir: {} + + # -- Volumes to be used in replacement of emptydir on default volumes + existingVolumes: {} + # gpgKeyring: + # persistentVolumeClaim: + # claimName: pvc-argocd-repo-server-keyring + # helmWorkingDir: + # persistentVolumeClaim: + # claimName: pvc-argocd-repo-server-workdir + # tmp: + # persistentVolumeClaim: + # claimName: pvc-argocd-repo-server-tmp + # varFiles: + # persistentVolumeClaim: + # claimName: pvc-argocd-repo-server-varfiles + # plugins: + # persistentVolumeClaim: + # claimName: pvc-argocd-repo-server-plugins + + ## RepoServer emptyDir volumes + emptyDir: + # -- EmptyDir size limit for repo server + # @default -- `""` (defaults not set if not specified i.e. no size limit) + sizeLimit: "" + # sizeLimit: "1Gi" + + # -- Toggle the usage of a ephemeral Helm working directory + useEphemeralHelmWorkingDir: true + + # -- Annotations to be added to repo server Deployment + deploymentAnnotations: {} + + # -- Labels for the repo server Deployment + deploymentLabels: {} + + # -- Annotations to be added to repo server pods + podAnnotations: {} + + # -- Labels to be added to repo server pods + podLabels: {} + + # -- Resource limits and requests for the repo server pods + resources: {} + # limits: + # cpu: 50m + # memory: 128Mi + # requests: + # cpu: 10m + # memory: 64Mi + + # Repo server container ports + containerPorts: + # -- Repo server container port + server: 8081 + # -- Metrics container port + metrics: 8084 + + # -- Host Network for Repo server pods + hostNetwork: false + + # -- [DNS configuration] + dnsConfig: {} + # -- Alternative DNS policy for Repo server pods + dnsPolicy: "ClusterFirst" + + # -- Repo server container-level security context + # @default -- See [values.yaml] + containerSecurityContext: + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + seccompProfile: + type: RuntimeDefault + capabilities: + drop: + - ALL + + ## Readiness and liveness probes for default backend + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ + readinessProbe: + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 3 + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 10 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 10 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 1 + + livenessProbe: + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 3 + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 10 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 10 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 1 + + # -- terminationGracePeriodSeconds for container lifecycle hook + terminationGracePeriodSeconds: 30 + + # -- [Node selector] + # @default -- `{}` (defaults to global.nodeSelector) + nodeSelector: {} + + # -- [Tolerations] for use with node taints + # @default -- `[]` (defaults to global.tolerations) + tolerations: [] + + # -- Assign custom [affinity] rules to the deployment + # @default -- `{}` (defaults to global.affinity preset) + affinity: {} + + # -- Assign custom [TopologySpreadConstraints] rules to the repo server + # @default -- `[]` (defaults to global.topologySpreadConstraints) + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ + ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment + topologySpreadConstraints: [] + # - maxSkew: 1 + # topologyKey: topology.kubernetes.io/zone + # whenUnsatisfiable: DoNotSchedule + + # -- Deployment strategy to be added to the repo server Deployment + deploymentStrategy: {} + # type: RollingUpdate + # rollingUpdate: + # maxSurge: 25% + # maxUnavailable: 25% + + # -- Priority class for the repo server pods + # @default -- `""` (defaults to global.priorityClassName) + priorityClassName: "" + + # TLS certificate configuration via Secret + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/tls/#configuring-tls-to-argocd-repo-server + ## Note: Issuing certificates via cert-manager in not supported right now because it's not possible to restart repo server automatically without extra controllers. + certificateSecret: + # -- Create argocd-repo-server-tls secret + enabled: false + # -- Annotations to be added to argocd-repo-server-tls secret + annotations: {} + # -- Labels to be added to argocd-repo-server-tls secret + labels: {} + # -- Certificate authority. Required for self-signed certificates. + ca: '' + # -- Certificate private key + key: '' + # -- Certificate data. Must contain SANs of Repo service (ie: argocd-repo-server, argocd-repo-server.argo-cd.svc) + crt: '' + + ## Repo server service configuration + service: + # -- Repo server service annotations + annotations: {} + # -- Repo server service labels + labels: {} + # -- Repo server service port + port: 8081 + # -- Repo server service port name + portName: tcp-repo-server + # -- Traffic distribution preference for the repo server service. If the field is not set, the implementation will apply its default routing strategy. + trafficDistribution: "" + + ## Repo server metrics service configuration + metrics: + # -- Deploy metrics service + enabled: false + service: + # -- Metrics service type + type: ClusterIP + # -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP) + clusterIP: "" + # -- Metrics service annotations + annotations: {} + # -- Metrics service labels + labels: {} + # -- Metrics service port + servicePort: 8084 + # -- Metrics service port name + portName: http-metrics + serviceMonitor: + # -- Enable a prometheus ServiceMonitor + enabled: false + # -- Prometheus ServiceMonitor interval + interval: 30s + # -- Prometheus ServiceMonitor scrapeTimeout. If empty, Prometheus uses the global scrape timeout unless it is less than the target's scrape interval value in which the latter is used. + scrapeTimeout: "" + # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels. + honorLabels: false + # -- Prometheus [RelabelConfigs] to apply to samples before scraping + relabelings: [] + # -- Prometheus [MetricRelabelConfigs] to apply to samples before ingestion + metricRelabelings: [] + # -- Prometheus ServiceMonitor selector + selector: {} + # prometheus: kube-prometheus + + # -- Prometheus ServiceMonitor scheme + scheme: "" + # -- Prometheus ServiceMonitor tlsConfig + tlsConfig: {} + # -- Prometheus ServiceMonitor namespace + namespace: "" # "monitoring" + # -- Prometheus ServiceMonitor labels + additionalLabels: {} + # -- Prometheus ServiceMonitor annotations + annotations: {} + + ## Enable Custom Rules for the Repo server's Cluster Role resource + ## Enable this and set the rules: to whatever custom rules you want for the Cluster Role resource. + ## Defaults to off + clusterRoleRules: + # -- Enable custom rules for the Repo server's Cluster Role resource + enabled: false + # -- List of custom rules for the Repo server's Cluster Role resource + rules: [] + + # -- Automount API credentials for the Service Account into the pod. + automountServiceAccountToken: true + + ## Repo server service account + ## If create is set to true, make sure to uncomment the name and update the rbac section below + serviceAccount: + # -- Create repo server service account + create: true + # -- Repo server service account name + name: "" # "argocd-repo-server" + # -- Annotations applied to created service account + annotations: {} + # -- Labels applied to created service account + labels: {} + # -- Automount API credentials for the Service Account + automountServiceAccountToken: true + + # -- Repo server rbac rules + rbac: [] + # - apiGroups: + # - argoproj.io + # resources: + # - applications + # verbs: + # - get + # - list + # - watch + + # Default repo server's network policy + networkPolicy: + # -- Default network policy rules used by repo server + # @default -- `false` (defaults to global.networkPolicy.create) + create: false + +## ApplicationSet controller +applicationSet: + # -- ApplicationSet controller name string + name: applicationset-controller + + # -- The number of ApplicationSet controller pods to run + replicas: 1 + + # -- Runtime class name for the ApplicationSet controller + # @default -- `""` (defaults to global.runtimeClassName) + runtimeClassName: "" + + ## ApplicationSet controller Pod Disruption Budget + ## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/ + pdb: + # -- Deploy a [PodDisruptionBudget] for the ApplicationSet controller + enabled: false + # -- Labels to be added to ApplicationSet controller pdb + labels: {} + # -- Annotations to be added to ApplicationSet controller pdb + annotations: {} + # -- Number of pods that are available after eviction as number or percentage (eg.: 50%) + # @default -- `""` (defaults to 0 if not specified) + minAvailable: "" + # -- Number of pods that are unavailable after eviction as number or percentage (eg.: 50%). + ## Has higher precedence over `applicationSet.pdb.minAvailable` + maxUnavailable: "" + + ## ApplicationSet controller image + image: + # -- Repository to use for the ApplicationSet controller + # @default -- `""` (defaults to global.image.repository) + repository: "" + # -- Tag to use for the ApplicationSet controller + # @default -- `""` (defaults to global.image.tag) + tag: "" + # -- Image pull policy for the ApplicationSet controller + # @default -- `""` (defaults to global.image.imagePullPolicy) + imagePullPolicy: "" + + # -- If defined, uses a Secret to pull an image from a private Docker registry or repository. + # @default -- `[]` (defaults to global.imagePullSecrets) + imagePullSecrets: [] + + # -- ApplicationSet controller command line flags + extraArgs: [] + + # -- Environment variables to pass to the ApplicationSet controller + extraEnv: [] + # - name: "MY_VAR" + # value: "value" + + # -- envFrom to pass to the ApplicationSet controller + # @default -- `[]` (See [values.yaml]) + extraEnvFrom: [] + # - configMapRef: + # name: config-map-name + # - secretRef: + # name: secret-name + + # -- Additional containers to be added to the ApplicationSet controller pod + ## Note: Supports use of custom Helm templates + extraContainers: [] + + # -- Init containers to add to the ApplicationSet controller pod + ## Note: Supports use of custom Helm templates + initContainers: [] + + # -- List of extra mounts to add (normally used with extraVolumes) + extraVolumeMounts: [] + + # -- List of extra volumes to add + extraVolumes: [] + + ## ApplicationSet controller emptyDir volumes + emptyDir: + # -- EmptyDir size limit for applicationSet controller + # @default -- `""` (defaults not set if not specified i.e. no size limit) + sizeLimit: "" + # sizeLimit: "1Gi" + + ## Metrics service configuration + metrics: + # -- Deploy metrics service + enabled: false + service: + # -- Metrics service type + type: ClusterIP + # -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP) + clusterIP: "" + # -- Metrics service annotations + annotations: {} + # -- Metrics service labels + labels: {} + # -- Metrics service port + servicePort: 8080 + # -- Metrics service port name + portName: http-metrics + serviceMonitor: + # -- Enable a prometheus ServiceMonitor + enabled: false + # -- Prometheus ServiceMonitor interval + interval: 30s + # -- Prometheus ServiceMonitor scrapeTimeout. If empty, Prometheus uses the global scrape timeout unless it is less than the target's scrape interval value in which the latter is used. + scrapeTimeout: "" + # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels. + honorLabels: false + # -- Prometheus [RelabelConfigs] to apply to samples before scraping + relabelings: [] + # -- Prometheus [MetricRelabelConfigs] to apply to samples before ingestion + metricRelabelings: [] + # -- Prometheus ServiceMonitor selector + selector: {} + # prometheus: kube-prometheus + + # -- Prometheus ServiceMonitor scheme + scheme: "" + # -- Prometheus ServiceMonitor tlsConfig + tlsConfig: {} + # -- Prometheus ServiceMonitor namespace + namespace: "" # monitoring + # -- Prometheus ServiceMonitor labels + additionalLabels: {} + # -- Prometheus ServiceMonitor annotations + annotations: {} + + ## ApplicationSet service configuration + service: + # -- ApplicationSet service annotations + annotations: {} + # -- ApplicationSet service labels + labels: {} + # -- ApplicationSet service type + type: ClusterIP + # -- ApplicationSet service port + port: 7000 + # -- ApplicationSet service port name + portName: http-webhook + + # -- Automount API credentials for the Service Account into the pod. + automountServiceAccountToken: true + + serviceAccount: + # -- Create ApplicationSet controller service account + create: true + # -- ApplicationSet controller service account name + name: argocd-applicationset-controller + # -- Annotations applied to created service account + annotations: {} + # -- Labels applied to created service account + labels: {} + # -- Automount API credentials for the Service Account + automountServiceAccountToken: true + + # -- Annotations to be added to ApplicationSet controller Deployment + deploymentAnnotations: {} + + # -- Labels for the ApplicationSet controller Deployment + deploymentLabels: {} + + # -- Annotations for the ApplicationSet controller pods + podAnnotations: {} + + # -- Labels for the ApplicationSet controller pods + podLabels: {} + + # -- Resource limits and requests for the ApplicationSet controller pods. + resources: {} + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + + # ApplicationSet controller container ports + containerPorts: + # -- Metrics container port + metrics: 8080 + # -- Probe container port + probe: 8081 + # -- Webhook container port + webhook: 7000 + + # -- [DNS configuration] + dnsConfig: {} + # -- Alternative DNS policy for ApplicationSet controller pods + dnsPolicy: "ClusterFirst" + + # -- ApplicationSet controller container-level security context + # @default -- See [values.yaml] + containerSecurityContext: + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + seccompProfile: + type: RuntimeDefault + capabilities: + drop: + - ALL + + ## Probes for ApplicationSet controller (optional) + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ + readinessProbe: + # -- Enable Kubernetes liveness probe for ApplicationSet controller + enabled: false + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 10 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 10 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 1 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 3 + + livenessProbe: + # -- Enable Kubernetes liveness probe for ApplicationSet controller + enabled: false + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 10 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 10 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 1 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 3 + + # -- terminationGracePeriodSeconds for container lifecycle hook + terminationGracePeriodSeconds: 30 + + # -- [Node selector] + # @default -- `{}` (defaults to global.nodeSelector) + nodeSelector: {} + + # -- [Tolerations] for use with node taints + # @default -- `[]` (defaults to global.tolerations) + tolerations: [] + + # -- Assign custom [affinity] rules + # @default -- `{}` (defaults to global.affinity preset) + affinity: {} + + # -- Assign custom [TopologySpreadConstraints] rules to the ApplicationSet controller + # @default -- `[]` (defaults to global.topologySpreadConstraints) + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment + topologySpreadConstraints: [] + # - maxSkew: 1 + # topologyKey: topology.kubernetes.io/zone + # whenUnsatisfiable: DoNotSchedule + + # -- Deployment strategy to be added to the ApplicationSet controller Deployment + deploymentStrategy: {} + # type: RollingUpdate + # rollingUpdate: + # maxSurge: 25% + # maxUnavailable: 25% + + # -- Priority class for the ApplicationSet controller pods + # @default -- `""` (defaults to global.priorityClassName) + priorityClassName: "" + + # TLS certificate configuration via cert-manager + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/tls/#tls-configuration + certificate: + # -- Deploy a Certificate resource (requires cert-manager) + enabled: false + # -- Certificate primary domain (commonName) + # @default -- `""` (defaults to global.domain) + domain: "" + # -- Certificate Subject Alternate Names (SANs) + additionalHosts: [] + # -- The requested 'duration' (i.e. lifetime) of the certificate. + # @default -- `""` (defaults to 2160h = 90d if not specified) + ## Ref: https://cert-manager.io/docs/usage/certificate/#renewal + duration: "" + # -- How long before the expiry a certificate should be renewed. + # @default -- `""` (defaults to 360h = 15d if not specified) + ## Ref: https://cert-manager.io/docs/usage/certificate/#renewal + renewBefore: "" + # Certificate issuer + ## Ref: https://cert-manager.io/docs/concepts/issuer + issuer: + # -- Certificate issuer group. Set if using an external issuer. Eg. `cert-manager.io` + group: "" + # -- Certificate issuer kind. Either `Issuer` or `ClusterIssuer` + kind: "" + # -- Certificate issuer name. Eg. `letsencrypt` + name: "" + # Private key of the certificate + privateKey: + # -- Rotation policy of private key when certificate is re-issued. Either: `Never` or `Always` + rotationPolicy: Never + # -- The private key cryptography standards (PKCS) encoding for private key. Either: `PCKS1` or `PKCS8` + encoding: PKCS1 + # -- Algorithm used to generate certificate private key. One of: `RSA`, `Ed25519` or `ECDSA` + algorithm: RSA + # -- Key bit size of the private key. If algorithm is set to `Ed25519`, size is ignored. + size: 2048 + # -- Annotations to be applied to the ApplicationSet Certificate + annotations: {} + + ## Ingress for the Git Generator webhook + ## Ref: https://argocd-applicationset.readthedocs.io/en/master/Generators-Git/#webhook-configuration) + ingress: + # -- Enable an ingress resource for ApplicationSet webhook + enabled: false + # -- Additional ingress labels + labels: {} + # -- Additional ingress annotations + annotations: {} + + # -- Defines which ingress ApplicationSet controller will implement the resource + ingressClassName: "" + + # -- Argo CD ApplicationSet hostname + # @default -- `""` (defaults to global.domain) + hostname: "" + + # -- List of ingress paths + path: /api/webhook + + # -- Ingress path type. One of `Exact`, `Prefix` or `ImplementationSpecific` + pathType: Prefix + + # -- Enable TLS configuration for the hostname defined at `applicationSet.webhook.ingress.hostname` + ## TLS certificate will be retrieved from a TLS secret with name:`argocd-applicationset-controller-tls` + tls: false + + # -- The list of additional hostnames to be covered by ingress record + # @default -- `[]` (See [values.yaml]) + extraHosts: [] + # - name: argocd.example.com + # path: / + + # -- Additional ingress paths + # @default -- `[]` (See [values.yaml]) + extraPaths: [] + # - path: /* + # pathType: Prefix + # backend: + # service: + # name: ssl-redirect + # port: + # name: use-annotation + + # -- Additional ingress rules + # @default -- `[]` (See [values.yaml]) + ## Note: Supports use of custom Helm templates + extraRules: [] + # - http: + # paths: + # - path: /api/webhook + # pathType: Prefix + # backend: + # service: + # name: '{{ include "argo-cd.applicationSet.fullname" . }}' + # port: + # name: '{{ .Values.applicationSet.service.portName }}' + + # -- Additional ingress TLS configuration + # @default -- `[]` (See [values.yaml]) + extraTls: [] + # - secretName: argocd-applicationset-tls + # hosts: + # - argocd-applicationset.example.com + # -- Enable ApplicationSet in any namespace feature + allowAnyNamespace: false + + # Default ApplicationSet controller's network policy + networkPolicy: + # -- Default network policy rules used by ApplicationSet controller + # @default -- `false` (defaults to global.networkPolicy.create) + create: false + +## Notifications controller +notifications: + # -- Enable notifications controller + enabled: true + + # -- Notifications controller name string + name: notifications-controller + + # -- Argo CD dashboard url; used in place of {{.context.argocdUrl}} in templates + # @default -- `""` (defaults to https://`global.domain`) + argocdUrl: "" + + # -- Runtime class name for the notifications controller + # @default -- `""` (defaults to global.runtimeClassName) + runtimeClassName: "" + + ## Notifications controller Pod Disruption Budget + ## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/ + pdb: + # -- Deploy a [PodDisruptionBudget] for the notifications controller + enabled: false + # -- Labels to be added to notifications controller pdb + labels: {} + # -- Annotations to be added to notifications controller pdb + annotations: {} + # -- Number of pods that are available after eviction as number or percentage (eg.: 50%) + # @default -- `""` (defaults to 0 if not specified) + minAvailable: "" + # -- Number of pods that are unavailable after eviction as number or percentage (eg.: 50%). + ## Has higher precedence over `notifications.pdb.minAvailable` + maxUnavailable: "" + + ## Notifications controller image + image: + # -- Repository to use for the notifications controller + # @default -- `""` (defaults to global.image.repository) + repository: "" + # -- Tag to use for the notifications controller + # @default -- `""` (defaults to global.image.tag) + tag: "" + # -- Image pull policy for the notifications controller + # @default -- `""` (defaults to global.image.imagePullPolicy) + imagePullPolicy: "" + + # -- Secrets with credentials to pull images from a private registry + # @default -- `[]` (defaults to global.imagePullSecrets) + imagePullSecrets: [] + + # DEPRECATED - Use configs.params to override + # -- Notifications controller log format. Either `text` or `json` + # @default -- `""` (defaults to global.logging.format) + # logFormat: "" + # -- Notifications controller log level. One of: `debug`, `info`, `warn`, `error` + # @default -- `""` (defaults to global.logging.level) + # logLevel: "" + + # -- Extra arguments to provide to the notifications controller + extraArgs: [] + + # -- Additional container environment variables + extraEnv: [] + + # -- envFrom to pass to the notifications controller + # @default -- `[]` (See [values.yaml]) + extraEnvFrom: [] + # - configMapRef: + # name: config-map-name + # - secretRef: + # name: secret-name + + # -- Additional containers to be added to the notifications controller pod + ## Note: Supports use of custom Helm templates + extraContainers: [] + + # -- Init containers to add to the notifications controller pod + ## Note: Supports use of custom Helm templates + initContainers: [] + + # -- List of extra mounts to add (normally used with extraVolumes) + extraVolumeMounts: [] + + # -- List of extra volumes to add + extraVolumes: [] + + # -- Define user-defined context + ## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/templates/#defining-user-defined-context + context: {} + # region: east + # environmentName: staging + + secret: + # -- Whether helm chart creates notifications controller secret + ## If true, will create a secret with the name below. Otherwise, will assume existence of a secret with that name. + create: true + + # -- notifications controller Secret name + name: "argocd-notifications-secret" + + # -- key:value pairs of annotations to be added to the secret + annotations: {} + + # -- key:value pairs of labels to be added to the secret + labels: {} + + # -- Generic key:value pairs to be inserted into the secret + ## Can be used for templates, notification services etc. Some examples given below. + ## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/services/overview/ + items: {} + # slack-token: + # # For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/services/slack/ + + # grafana-apiKey: + # # For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/services/grafana/ + + # webhooks-github-token: + + # email-username: + # email-password: + # For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/services/email/ + + metrics: + # -- Enables prometheus metrics server + enabled: false + # -- Metrics port + port: 9001 + service: + # -- Metrics service type + type: ClusterIP + # -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP) + clusterIP: "" + # -- Metrics service annotations + annotations: {} + # -- Metrics service labels + labels: {} + # -- Metrics service port name + portName: http-metrics + serviceMonitor: + # -- Enable a prometheus ServiceMonitor + enabled: false + # -- Prometheus ServiceMonitor selector + selector: {} + # prometheus: kube-prometheus + # -- Prometheus ServiceMonitor labels + additionalLabels: {} + # -- Prometheus ServiceMonitor annotations + annotations: {} + # namespace: monitoring + # interval: 30s + # scrapeTimeout: 10s + # -- Prometheus ServiceMonitor scheme + scheme: "" + # -- Prometheus ServiceMonitor tlsConfig + tlsConfig: {} + # -- When true, honorLabels preserves the metric’s labels when they collide with the target’s labels. + honorLabels: false + # -- Prometheus [RelabelConfigs] to apply to samples before scraping + relabelings: [] + # -- Prometheus [MetricRelabelConfigs] to apply to samples before ingestion + metricRelabelings: [] + + # -- Configures notification services such as slack, email or custom webhook + # @default -- See [values.yaml] + ## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/services/overview/ + notifiers: {} + # service.slack: | + # token: $slack-token + + # -- Annotations to be applied to the notifications controller Deployment + deploymentAnnotations: {} + + # -- Labels for the notifications controller Deployment + deploymentLabels: {} + + # -- Annotations to be applied to the notifications controller Pods + podAnnotations: {} + + # -- Labels to be applied to the notifications controller Pods + podLabels: {} + + # -- Resource limits and requests for the notifications controller + resources: {} + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + + # Notification controller container ports + containerPorts: + # -- Metrics container port + metrics: 9001 + + # -- [DNS configuration] + dnsConfig: {} + # -- Alternative DNS policy for notifications controller Pods + dnsPolicy: "ClusterFirst" + + # -- Notification controller container-level security Context + # @default -- See [values.yaml] + containerSecurityContext: + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + seccompProfile: + type: RuntimeDefault + capabilities: + drop: + - ALL + + ## Probes for notifications controller Pods (optional) + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ + readinessProbe: + # -- Enable Kubernetes liveness probe for notifications controller Pods + enabled: false + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 10 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 10 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 1 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 3 + + livenessProbe: + # -- Enable Kubernetes liveness probe for notifications controller Pods + enabled: false + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 10 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 10 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 1 + # -- Minimum consecutive successes for the [probe] to be considered successful after having failed + successThreshold: 1 + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 3 + + # -- terminationGracePeriodSeconds for container lifecycle hook + terminationGracePeriodSeconds: 30 + + # -- [Node selector] + # @default -- `{}` (defaults to global.nodeSelector) + nodeSelector: {} + + # -- [Tolerations] for use with node taints + # @default -- `[]` (defaults to global.tolerations) + tolerations: [] + + # -- Assign custom [affinity] rules + # @default -- `{}` (defaults to global.affinity preset) + affinity: {} + + # -- Assign custom [TopologySpreadConstraints] rules to the application controller + # @default -- `[]` (defaults to global.topologySpreadConstraints) + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ + ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment + topologySpreadConstraints: [] + # - maxSkew: 1 + # topologyKey: topology.kubernetes.io/zone + # whenUnsatisfiable: DoNotSchedule + + # -- Deployment strategy to be added to the notifications controller Deployment + deploymentStrategy: + type: Recreate + + # -- Priority class for the notifications controller pods + # @default -- `""` (defaults to global.priorityClassName) + priorityClassName: "" + + # -- Automount API credentials for the Service Account into the pod. + automountServiceAccountToken: true + + serviceAccount: + # -- Create notifications controller service account + create: true + # -- Notification controller service account name + name: argocd-notifications-controller + # -- Annotations applied to created service account + annotations: {} + # -- Labels applied to created service account + labels: {} + # -- Automount API credentials for the Service Account + automountServiceAccountToken: true + + cm: + # -- Whether helm chart creates notifications controller config map + create: true + + ## Enable this and set the rules: to whatever custom rules you want for the Cluster Role resource. + ## Defaults to off + clusterRoleRules: + # -- List of custom rules for the notifications controller's ClusterRole resource + rules: [] + + # -- Contains centrally managed global application subscriptions + ## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/subscriptions/ + subscriptions: [] + # # subscription for on-sync-status-unknown trigger notifications + # - recipients: + # - slack:test2 + # - email:test@gmail.com + # triggers: + # - on-sync-status-unknown + # # subscription restricted to applications with matching labels only + # - recipients: + # - slack:test3 + # selector: test=true + # triggers: + # - on-sync-status-unknown + + # -- The notification template is used to generate the notification content + ## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/templates/ + templates: {} + # template.app-deployed: | + # email: + # subject: New version of an application {{.app.metadata.name}} is up and running. + # message: | + # {{if eq .serviceType "slack"}}:white_check_mark:{{end}} Application {{.app.metadata.name}} is now running new version of deployments manifests. + # slack: + # attachments: | + # [{ + # "title": "{{ .app.metadata.name}}", + # "title_link":"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}", + # "color": "#18be52", + # "fields": [ + # { + # "title": "Sync Status", + # "value": "{{.app.status.sync.status}}", + # "short": true + # }, + # { + # "title": "Repository", + # "value": "{{.app.spec.source.repoURL}}", + # "short": true + # }, + # { + # "title": "Revision", + # "value": "{{.app.status.sync.revision}}", + # "short": true + # } + # {{range $index, $c := .app.status.conditions}} + # {{if not $index}},{{end}} + # {{if $index}},{{end}} + # { + # "title": "{{$c.type}}", + # "value": "{{$c.message}}", + # "short": true + # } + # {{end}} + # ] + # }] + # template.app-health-degraded: | + # email: + # subject: Application {{.app.metadata.name}} has degraded. + # message: | + # {{if eq .serviceType "slack"}}:exclamation:{{end}} Application {{.app.metadata.name}} has degraded. + # Application details: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}. + # slack: + # attachments: |- + # [{ + # "title": "{{ .app.metadata.name}}", + # "title_link": "{{.context.argocdUrl}}/applications/{{.app.metadata.name}}", + # "color": "#f4c030", + # "fields": [ + # { + # "title": "Sync Status", + # "value": "{{.app.status.sync.status}}", + # "short": true + # }, + # { + # "title": "Repository", + # "value": "{{.app.spec.source.repoURL}}", + # "short": true + # } + # {{range $index, $c := .app.status.conditions}} + # {{if not $index}},{{end}} + # {{if $index}},{{end}} + # { + # "title": "{{$c.type}}", + # "value": "{{$c.message}}", + # "short": true + # } + # {{end}} + # ] + # }] + # template.app-sync-failed: | + # email: + # subject: Failed to sync application {{.app.metadata.name}}. + # message: | + # {{if eq .serviceType "slack"}}:exclamation:{{end}} The sync operation of application {{.app.metadata.name}} has failed at {{.app.status.operationState.finishedAt}} with the following error: {{.app.status.operationState.message}} + # Sync operation details are available at: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}?operation=true . + # slack: + # attachments: |- + # [{ + # "title": "{{ .app.metadata.name}}", + # "title_link":"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}", + # "color": "#E96D76", + # "fields": [ + # { + # "title": "Sync Status", + # "value": "{{.app.status.sync.status}}", + # "short": true + # }, + # { + # "title": "Repository", + # "value": "{{.app.spec.source.repoURL}}", + # "short": true + # } + # {{range $index, $c := .app.status.conditions}} + # {{if not $index}},{{end}} + # {{if $index}},{{end}} + # { + # "title": "{{$c.type}}", + # "value": "{{$c.message}}", + # "short": true + # } + # {{end}} + # ] + # }] + # template.app-sync-running: | + # email: + # subject: Start syncing application {{.app.metadata.name}}. + # message: | + # The sync operation of application {{.app.metadata.name}} has started at {{.app.status.operationState.startedAt}}. + # Sync operation details are available at: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}?operation=true . + # slack: + # attachments: |- + # [{ + # "title": "{{ .app.metadata.name}}", + # "title_link":"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}", + # "color": "#0DADEA", + # "fields": [ + # { + # "title": "Sync Status", + # "value": "{{.app.status.sync.status}}", + # "short": true + # }, + # { + # "title": "Repository", + # "value": "{{.app.spec.source.repoURL}}", + # "short": true + # } + # {{range $index, $c := .app.status.conditions}} + # {{if not $index}},{{end}} + # {{if $index}},{{end}} + # { + # "title": "{{$c.type}}", + # "value": "{{$c.message}}", + # "short": true + # } + # {{end}} + # ] + # }] + # template.app-sync-status-unknown: | + # email: + # subject: Application {{.app.metadata.name}} sync status is 'Unknown' + # message: | + # {{if eq .serviceType "slack"}}:exclamation:{{end}} Application {{.app.metadata.name}} sync is 'Unknown'. + # Application details: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}. + # {{if ne .serviceType "slack"}} + # {{range $c := .app.status.conditions}} + # * {{$c.message}} + # {{end}} + # {{end}} + # slack: + # attachments: |- + # [{ + # "title": "{{ .app.metadata.name}}", + # "title_link":"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}", + # "color": "#E96D76", + # "fields": [ + # { + # "title": "Sync Status", + # "value": "{{.app.status.sync.status}}", + # "short": true + # }, + # { + # "title": "Repository", + # "value": "{{.app.spec.source.repoURL}}", + # "short": true + # } + # {{range $index, $c := .app.status.conditions}} + # {{if not $index}},{{end}} + # {{if $index}},{{end}} + # { + # "title": "{{$c.type}}", + # "value": "{{$c.message}}", + # "short": true + # } + # {{end}} + # ] + # }] + # template.app-sync-succeeded: | + # email: + # subject: Application {{.app.metadata.name}} has been successfully synced. + # message: | + # {{if eq .serviceType "slack"}}:white_check_mark:{{end}} Application {{.app.metadata.name}} has been successfully synced at {{.app.status.operationState.finishedAt}}. + # Sync operation details are available at: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}?operation=true . + # slack: + # attachments: |- + # [{ + # "title": "{{ .app.metadata.name}}", + # "title_link":"{{.context.argocdUrl}}/applications/{{.app.metadata.name}}", + # "color": "#18be52", + # "fields": [ + # { + # "title": "Sync Status", + # "value": "{{.app.status.sync.status}}", + # "short": true + # }, + # { + # "title": "Repository", + # "value": "{{.app.spec.source.repoURL}}", + # "short": true + # } + # {{range $index, $c := .app.status.conditions}} + # {{if not $index}},{{end}} + # {{if $index}},{{end}} + # { + # "title": "{{$c.type}}", + # "value": "{{$c.message}}", + # "short": true + # } + # {{end}} + # ] + # }] + + # -- The trigger defines the condition when the notification should be sent + ## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/triggers/ + triggers: {} + # trigger.on-deployed: | + # - description: Application is synced and healthy. Triggered once per commit. + # oncePer: app.status.sync.revision + # send: + # - app-deployed + # when: app.status.operationState.phase in ['Succeeded'] and app.status.health.status == 'Healthy' + # trigger.on-health-degraded: | + # - description: Application has degraded + # send: + # - app-health-degraded + # when: app.status.health.status == 'Degraded' + # trigger.on-sync-failed: | + # - description: Application syncing has failed + # send: + # - app-sync-failed + # when: app.status.operationState.phase in ['Error', 'Failed'] + # trigger.on-sync-running: | + # - description: Application is being synced + # send: + # - app-sync-running + # when: app.status.operationState.phase in ['Running'] + # trigger.on-sync-status-unknown: | + # - description: Application status is 'Unknown' + # send: + # - app-sync-status-unknown + # when: app.status.sync.status == 'Unknown' + # trigger.on-sync-succeeded: | + # - description: Application syncing has succeeded + # send: + # - app-sync-succeeded + # when: app.status.operationState.phase in ['Succeeded'] + # + # For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/triggers/#default-triggers + # defaultTriggers: | + # - on-sync-status-unknown + + # Default notifications controller's network policy + networkPolicy: + # -- Default network policy rules used by notifications controller + # @default -- `false` (defaults to global.networkPolicy.create) + create: false + +commitServer: + # -- Enable commit server + enabled: false + + # -- Commit server name + name: commit-server + + # -- Runtime class name for the commit server + # @default -- `""` (defaults to global.runtimeClassName) + runtimeClassName: "" + + ## commit server controller image + image: + # -- Repository to use for the commit server + # @default -- `""` (defaults to global.image.repository) + repository: "" + # -- Tag to use for the commit server + # @default -- `""` (defaults to global.image.tag) + tag: "" + # -- Image pull policy for the commit server + # @default -- `""` (defaults to global.image.imagePullPolicy) + imagePullPolicy: "" + + # -- commit server command line flags + extraArgs: [] + + # -- Environment variables to pass to the commit server + extraEnv: [] + # - name: "MY_VAR" + # value: "value" + + # -- envFrom to pass to the commit server + # @default -- `[]` (See [values.yaml]) + extraEnvFrom: [] + # - configMapRef: + # name: config-map-name + # - secretRef: + # name: secret-name + + # -- List of extra mounts to add (normally used with extraVolumes) + extraVolumeMounts: [] + + # -- List of extra volumes to add + extraVolumes: [] + + metrics: + # -- Enables prometheus metrics server + enabled: false + service: + # -- Metrics service type + type: ClusterIP + # -- Metrics service clusterIP. `None` makes a "headless service" (no virtual IP) + clusterIP: "" + # -- Metrics service annotations + annotations: {} + # -- Metrics service labels + labels: {} + # -- Metrics service port + servicePort: 8087 + # -- Metrics service port name + portName: metrics + + ## commit server service configuration + service: + # -- commit server service annotations + annotations: {} + # -- commit server service labels + labels: {} + # -- commit server service port + port: 8086 + # -- commit server service port name + portName: server + + # -- Automount API credentials for the Service Account into the pod. + automountServiceAccountToken: false + + serviceAccount: + # -- Create commit server service account + create: true + # -- commit server service account name + name: argocd-commit-server + # -- Annotations applied to created service account + annotations: {} + # -- Labels applied to created service account + labels: {} + # -- Automount API credentials for the Service Account + automountServiceAccountToken: true + + # -- Annotations to be added to commit server Deployment + deploymentAnnotations: {} + + # -- Labels for the commit server Deployment + deploymentLabels: {} + + # -- Annotations for the commit server pods + podAnnotations: {} + + # -- Labels for the commit server pods + podLabels: {} + + # -- Resource limits and requests for the commit server pods. + resources: {} + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + + # -- [DNS configuration] + dnsConfig: {} + # -- Alternative DNS policy for commit server pods + dnsPolicy: "ClusterFirst" + + # -- commit server container-level security context + # @default -- See [values.yaml] + containerSecurityContext: + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + seccompProfile: + type: RuntimeDefault + + ## Probes for commit server (optional) + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ + readinessProbe: + # -- Enable Kubernetes liveness probe for commit server + enabled: true + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 5 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 10 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 1 + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 3 + + livenessProbe: + # -- Enable Kubernetes liveness probe for commit server + enabled: true + # -- Number of seconds after the container has started before [probe] is initiated + initialDelaySeconds: 30 + # -- How often (in seconds) to perform the [probe] + periodSeconds: 30 + # -- Number of seconds after which the [probe] times out + timeoutSeconds: 5 + # -- Minimum consecutive failures for the [probe] to be considered failed after having succeeded + failureThreshold: 3 + + # -- terminationGracePeriodSeconds for container lifecycle hook + terminationGracePeriodSeconds: 30 + + # -- [Node selector] + # @default -- `{}` (defaults to global.nodeSelector) + nodeSelector: {} + + # -- [Tolerations] for use with node taints + # @default -- `[]` (defaults to global.tolerations) + tolerations: [] + + # -- Assign custom [affinity] rules + # @default -- `{}` (defaults to global.affinity preset) + affinity: {} + + # -- Assign custom [TopologySpreadConstraints] rules to the commit server + # @default -- `[]` (defaults to global.topologySpreadConstraints) + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## If labelSelector is left out, it will default to the labelSelector configuration of the deployment + topologySpreadConstraints: [] + # - maxSkew: 1 + # topologyKey: topology.kubernetes.io/zone + # whenUnsatisfiable: DoNotSchedule + + # -- Deployment strategy to be added to the commit server Deployment + deploymentStrategy: {} + # type: RollingUpdate + # rollingUpdate: + # maxSurge: 25% + # maxUnavailable: 25% + + # -- Priority class for the commit server pods + # @default -- `""` (defaults to global.priorityClassName) + priorityClassName: "" + + # Default commit server's network policy + networkPolicy: + # -- Default network policy rules used by commit server + # @default -- `false` (defaults to global.networkPolicy.create) + create: false diff --git a/dev/argocd/values.yaml b/dev/argocd/values.yaml new file mode 100644 index 0000000..6adf7e6 --- /dev/null +++ b/dev/argocd/values.yaml @@ -0,0 +1,25 @@ +ingress: + server: + enabled: true + ingressClassName: traefik + hosts: + - host: argocd-dev.allarddcs.nl + paths: + - "/" + tls: + - hosts: + - argocd-dev.allarddcs.nl + secretName: argocd-tls-cert + +configs: + params: + # disable insecure (HTTP) + server.insecure: "false" + +server: + tls: + enabled: true + # name of the TLS secret (created via cert-manager) + secretName: argocd-tls-cert + +# If you want HA, you can also configure replicas, etc. diff --git a/dev/backstage/.argocdignore b/dev/backstage/.argocdignore new file mode 100644 index 0000000..de0ac16 --- /dev/null +++ b/dev/backstage/.argocdignore @@ -0,0 +1,2 @@ +catalog-info.yaml +catalog-info.yml diff --git a/dev/backstage/README.md b/dev/backstage/README.md new file mode 100644 index 0000000..53e1513 --- /dev/null +++ b/dev/backstage/README.md @@ -0,0 +1,24 @@ +#build container + +setup.sh is een script waarmee vanuit de backstage git repo een docker image wordt gebouwd met daarin: + +github, gitea, techdocs + +#installatie + +kubectl apply -f backstage.yaml + +maakt connectie met postgres13 database + + +#na installatie: + +als database connectie niet werkt controleren welke connectie-parameters geladen zijn door in de container: + +node -e "console.log(require('knex')({ + client: 'pg', + connection: process.env.DATABASE_URL +}).raw('select 1+1'))" + +uit te voeren. Als je dan "connection undefined" ziet weet je hoe laat het is. + diff --git a/dev/backstage/admin-configmap.yaml b/dev/backstage/admin-configmap.yaml new file mode 100644 index 0000000..25b0f30 --- /dev/null +++ b/dev/backstage/admin-configmap.yaml @@ -0,0 +1,16 @@ +# backstage-private-users-configmap.yaml +apiVersion: v1 +kind: ConfigMap +metadata: + name: backstage-private-users + namespace: backstage +data: + allardkrings.yaml: | + apiVersion: backstage.io/v1alpha1 + kind: User + metadata: + name: AllardKrings # must match GitHub username + email: admin@allarddcs.nl + spec: + memberOf: + - team:AllardDCS diff --git a/dev/backstage/backstage-secrets.yaml b/dev/backstage/backstage-secrets.yaml new file mode 100644 index 0000000..53cc788 --- /dev/null +++ b/dev/backstage/backstage-secrets.yaml @@ -0,0 +1,8 @@ +apiVersion: v1 +kind: Secret +metadata: + name: backstage-secrets + namespace: backstage +type: Opaque +data: + GITEA_TOKEN: N2MyODlkODliMDI0ODk5ODRmYzk4NTA0MTFiYjI2ZjZlZTRlOWQzNw== diff --git a/dev/backstage/backstage.yaml b/dev/backstage/backstage.yaml new file mode 100644 index 0000000..9b3c346 --- /dev/null +++ b/dev/backstage/backstage.yaml @@ -0,0 +1,109 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: backstage + namespace: backstage + labels: + backstage.io/kubernetes-id: backstage +spec: + replicas: 1 + selector: + matchLabels: + app: backstage + template: + metadata: + labels: + app: backstage + backstage.io/kubernetes-id: backstage + spec: + serviceAccountName: backstage + containers: + - name: backstage + image: allardkrings/backstage:1.44.0 + imagePullPolicy: Always + env: + - name: PORT + value: "7007" + - name: POSTGRES_USER + value: backstage + - name: POSTGRES_PASSWORD + value: backstage + - name: POSTGRES_DB + value: backstage + - name: POSTGRES_SERVICE_HOST + value: postgres13.postgres.svc.cluster.local + - name: POSTGRES_SERVICE_PORT + value: "5432" + - name: APP_CONFIG_auth_environment + value: development + - name: NODE_ENV + value: development + - name: GITHUB_TOKEN + valueFrom: + secretKeyRef: + name: github-token + key: GITHUB_TOKEN + - name: GITEA_TOKEN + valueFrom: + secretKeyRef: + name: gitea-token + key: GITEA_TOKEN + volumeMounts: + # Mount the configmap as a single file + - mountPath: /app/app-config.production.yaml + subPath: app-config.yaml + name: app-configmap + # Mount the PVC as the TechDocs storage directory + - mountPath: /tmp/techdocs-storage + name: techdocs-storage + - name: private-users + mountPath: /backstage/catalog/private-users + volumes: + # ConfigMap for app config + - name: app-configmap + configMap: + name: backstage-app-config + # PVC for TechDocs storage + - name: techdocs-storage + persistentVolumeClaim: + claimName: backstage-pvc + - name: private-users + configMap: + name: backstage-private-users + +--- +apiVersion: v1 +kind: Service +metadata: + name: backstage + namespace: backstage + labels: + backstage.io/kubernetes-id: backstage +spec: + type: ClusterIP + selector: + app: backstage + ports: + - name: http + port: 7007 + targetPort: 7007 + +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: backstage-tls + namespace: backstage + labels: + backstage.io/kubernetes-id: backstage +spec: + entryPoints: + - websecure + routes: + - match: Host(`backstage-dev.allarddcs.nl`) + kind: Rule + services: + - name: backstage + port: 7007 + tls: + secretName: backstage-dev.allarddcs.nl-tls diff --git a/dev/backstage/catalog-info.yaml b/dev/backstage/catalog-info.yaml new file mode 100644 index 0000000..3b044ae --- /dev/null +++ b/dev/backstage/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-backstage + title: Backstage (dev) + description: Backstage instance running in Kubernetes + annotations: + backstage.io/kubernetes-id: backstage + links: + - url: https://github.com/AllardKrings/kubernetes/dev/backstage + title: backstage-configuratie + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/backstage/certificate.yaml b/dev/backstage/certificate.yaml new file mode 100755 index 0000000..25ce3b7 --- /dev/null +++ b/dev/backstage/certificate.yaml @@ -0,0 +1,16 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: backstage-dev.allarddcs.nl-tls + namespace: backstage +spec: + dnsNames: + - backstage-dev.allarddcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: backstage-dev.allarddcs.nl-tls + usages: + - digital signature + - key encipherment diff --git a/dev/backstage/clusterrolebinding.yaml b/dev/backstage/clusterrolebinding.yaml new file mode 100644 index 0000000..7e8a741 --- /dev/null +++ b/dev/backstage/clusterrolebinding.yaml @@ -0,0 +1,75 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: backstage + namespace: backstage +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: backstage-k8s-reader +rules: + - apiGroups: [""] + resources: + - pods + - services + - configmaps + - namespaces + - endpoints + - limitranges + - resourcequotas + verbs: ["get", "list", "watch"] + + - apiGroups: ["apps"] + resources: + - deployments + - replicasets + - statefulsets + - daemonsets + verbs: ["get", "list", "watch"] + + - apiGroups: ["batch"] + resources: + - jobs + - cronjobs + verbs: ["get", "list", "watch"] + + - apiGroups: ["networking.k8s.io"] + resources: + - ingresses + verbs: ["get", "list", "watch"] + + - apiGroups: ["autoscaling"] + resources: + - horizontalpodautoscalers + verbs: ["get", "list", "watch"] + + - apiGroups: ["metrics.k8s.io"] + resources: + - pods + verbs: ["get", "list"] + - apiGroups: ["traefik.containo.us"] + resources: + - ingressroutes + - ingressroutetcps + - ingressrouteudps + - middlewares + - middlewarestraefikio + - tlsoptions + - tlsstores + - traefikservices + - serverstransports + verbs: ["get", "list"] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: backstage-k8s-reader-binding +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: backstage-k8s-reader +subjects: + - kind: ServiceAccount + name: backstage + namespace: backstage diff --git a/dev/backstage/configmap.yaml b/dev/backstage/configmap.yaml new file mode 100644 index 0000000..00eba8a --- /dev/null +++ b/dev/backstage/configmap.yaml @@ -0,0 +1,143 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: backstage-app-config + namespace: backstage +data: + app-config.yaml: | + app: + title: Backstage AllardDCS + baseUrl: https://backstage-dev.allarddcs.nl + extensions: + - entity-content:kubernetes/kubernetes + + backend: + baseUrl: https://backstage-dev.allarddcs.nl + env: + PATH: /usr/local/bin:$PATH + listen: + port: 7007 + cors: + origin: https://backstage-dev.allarddcs.nl + methods: [GET, POST, PUT, DELETE, PATCH] + credentials: true + csp: + connect-src: ["'self'", "http:", "https:"] + database: + client: pg + connection: + host: ${POSTGRES_SERVICE_HOST} + port: ${POSTGRES_SERVICE_PORT} + user: ${POSTGRES_USER} + password: ${POSTGRES_PASSWORD} + database: ${POSTGRES_DB} + reading: + allow: + - host: raw.githubusercontent.com + paths: + - / + cache: + memory: {} + trustProxy: true + log: + level: debug + + logging: + logLevel: info + loggers: + catalog: + level: debug + backend: + level: debug + techdocs: + builder: 'local' + publisher: + type: 'local' + generator: + runIn: local + + organization: + name: AllardDCS + + permission: + rules: + - allow: + users: + - AllardKrings + + integrations: + gitea: + - host: gitea-dev.allarddcs.nl + baseUrl: https://gitea-dev.allarddcs.nl + apiBaseUrl: https://gitea-dev.allarddcs.nl/api/v1 + token: + $env: GITEA_TOKEN + github: + - host: github.com + token: + $env: GITHUB_TOKEN + + catalog: + providers: + github: + myGithub: + organization: 'AllardKrings' + catalogPath: '/**/catalog-info.yaml' + filters: + branch: 'master' + repository: 'kubernetes' + schedule: + frequency: { minutes: 30 } + timeout: { minutes: 3 } + + gitea: + myGitea: + organization: 'allarddcs' + host: gitea-dev.allarddcs.nl + branch: 'master' + catalogPath: '/**/catalog-info.yaml' + schedule: + frequency: { minutes: 30 } + timeout: { minutes: 3 } + + locations: + - type: url + target: https://gitea-dev.allarddcs.nl/AllardDCS/kubernetes/raw/branch/master/group.yaml + rules: + - allow: [Group] + - type: file + target: /backstage/catalog/private-users/allardkrings.yaml + rules: + - allow: [User] + processors: + gitea: + - host: gitea-dev.allarddcs.nl + apiBaseUrl: https://gitea-dev.allarddcs.nl/api/v1 + + kubernetes: + serviceLocatorMethod: + type: multiTenant + clusterLocatorMethods: + - type: config + clusters: + - name: local-cluster + url: https://kubernetes.default.svc + authProvider: serviceAccount + auth: + # see https://backstage.io/docs/auth/ to learn about auth providers + environment: development + providers: + # See https://backstage.io/docs/auth/guest/provider + guest: {} + github: + development: + clientId: Ov23lilVTWftNp9vMFwB + clientSecret: a687566a8d4871d30fe0126f150515531969d5fc + usePopup: false + signIn: + resolvers: + # Matches the GitHub username with the Backstage user entity name. + # See https://backstage.io/docs/auth/github/provider#resolvers for more resolvers. + - resolver: usernameMatchingUserEntityName + + diff --git a/dev/backstage/create-gitea-token.sh b/dev/backstage/create-gitea-token.sh new file mode 100755 index 0000000..d7e9260 --- /dev/null +++ b/dev/backstage/create-gitea-token.sh @@ -0,0 +1,2 @@ +microk8s kubectl create secret generic gitea-token -n backstage \ + --from-literal=GITEA_TOKEN=7c289d89b02489984fc9850411bb26f6ee4e9d37 diff --git a/dev/backstage/gitea-token b/dev/backstage/gitea-token new file mode 100644 index 0000000..d500f28 --- /dev/null +++ b/dev/backstage/gitea-token @@ -0,0 +1 @@ +7c289d89b02489984fc9850411bb26f6ee4e9d37 diff --git a/dev/backstage/postgres-secrets.yaml b/dev/backstage/postgres-secrets.yaml new file mode 100644 index 0000000..efc063d --- /dev/null +++ b/dev/backstage/postgres-secrets.yaml @@ -0,0 +1,9 @@ +apiVersion: v1 +kind: Secret +metadata: + name: postgres-secrets + namespace: backstage +type: Opaque +data: + POSTGRES_USER: YmFja3N0YWdlCg== + POSTGRES_PASSWORD: YmFja3N0YWdlCg== diff --git a/dev/backstage/pvc.yaml b/dev/backstage/pvc.yaml new file mode 100644 index 0000000..8d2837a --- /dev/null +++ b/dev/backstage/pvc.yaml @@ -0,0 +1,34 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: backstage-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/backstage/dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: backstage-pvc + namespace: backstage +spec: + storageClassName: "" + volumeName: backstage-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/dev/backstage/restart.sh b/dev/backstage/restart.sh new file mode 100755 index 0000000..51b1df7 --- /dev/null +++ b/dev/backstage/restart.sh @@ -0,0 +1,3 @@ +microk8s kubectl apply -f configmap.yaml +microk8s kubectl rollout restart deploy/backstage -n backstage +microk8s kubectl get pod -n backstage diff --git a/dev/backstage/setup-with-techdocs.sh b/dev/backstage/setup-with-techdocs.sh new file mode 100755 index 0000000..9022c42 --- /dev/null +++ b/dev/backstage/setup-with-techdocs.sh @@ -0,0 +1,222 @@ +#!/bin/bash +set -e + +# ------------------------ +# Load NVM +# ------------------------ +export NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" + +# Use Node 20 +nvm use 20 + +# ------------------------ +# Configuration +# ------------------------ +APP_NAME="backstage" +APP_DIR="$PWD/$APP_NAME" + +echo "=== 1. Creating Backstage app ===" +# Use --ignore-existing to avoid cached/missing binaries +npx --ignore-existing @backstage/create-app@latest "$APP_DIR" + +cd "$APP_DIR" + +echo "=== 2. Bumping Backstage version to 1.42.1 ===" +yarn backstage-cli versions:bump --release 1.42.1 + +echo "=== 3. Installing plugin dependencies (Yarn 4 compatible) ===" +# Backend plugins +yarn --cwd packages/backend add \ + @backstage/plugin-techdocs-backend \ + @backstage/plugin-catalog-backend-module-github \ + @backstage/plugin-catalog-backend-module-gitea \ + @backstage/plugin-devtools-backend +# Frontend plugins +yarn --cwd packages/app add \ + @backstage/plugin-techdocs \ + @backstage/plugin-catalog \ + @backstage/plugin-catalog-graph \ + @backstage/plugin-techdocs-module-addons-contrib + +echo "=== 4. Patching backend/src/index.ts ===" +BACKEND_FILE=packages/backend/src/index.ts +cat > "$BACKEND_FILE" <<'EOF' +import { createBackend } from '@backstage/backend-defaults'; +import { createBackendFeatureLoader } from '@backstage/backend-plugin-api'; + +const backend = createBackend(); + +// Catalog +backend.add(import('@backstage/plugin-catalog-backend')); +backend.add(import('@backstage/plugin-catalog-backend-module-scaffolder-entity-model')); +backend.add(import('@backstage/plugin-catalog-backend-module-unprocessed')); +backend.add(import('@backstage/plugin-catalog-backend-module-github')); +backend.add(import('@backstage/plugin-catalog-backend-module-gitea')); +backend.add(import('@backstage/plugin-devtools-backend')); +// Scaffolder +backend.add(import('@backstage/plugin-scaffolder-backend')); +backend.add(import('@backstage/plugin-scaffolder-backend-module-github')); +backend.add(import('@backstage/plugin-scaffolder-backend-module-notifications')); + +// Auth +backend.add(import('@backstage/plugin-auth-backend')); +backend.add(import('@backstage/plugin-auth-backend-module-guest-provider')); + +// TechDocs +backend.add(import('@backstage/plugin-techdocs-backend')); + +// Kubernetes +backend.add(import('@backstage/plugin-kubernetes-backend')); + +// Search +const searchLoader = createBackendFeatureLoader({ + *loader() { + yield import('@backstage/plugin-search-backend'); + yield import('@backstage/plugin-search-backend-module-catalog'); + yield import('@backstage/plugin-search-backend-module-techdocs'); + }, +}); +backend.add(searchLoader); + +// Misc +backend.add(import('@backstage/plugin-devtools-backend')); +backend.add(import('@backstage/plugin-app-backend')); +backend.add(import('@backstage/plugin-proxy-backend')); +backend.add(import('@backstage/plugin-permission-backend')); +backend.add(import('@backstage/plugin-permission-backend-module-allow-all-policy')); +backend.add(import('@backstage/plugin-notifications-backend')); +backend.add(import('@backstage/plugin-events-backend')); + +backend.start(); +EOF +echo "✓ Backend patched." + +echo "=== 5. Patching packages/app/src/App.tsx ===" +APP_FILE=packages/app/src/App.tsx +cat > "$APP_FILE" <<'EOF' +import React from 'react'; +import { createApp } from '@backstage/app-defaults'; +import { FlatRoutes } from '@backstage/core-app-api'; +import { Route, Navigate } from 'react-router-dom'; + +import { CatalogIndexPage, CatalogEntityPage } from '@backstage/plugin-catalog'; +import { CatalogGraphPage } from '@backstage/plugin-catalog-graph'; +import { ApiExplorerPage } from '@backstage/plugin-api-docs'; + +import { TechDocsIndexPage, TechDocsReaderPage } from '@backstage/plugin-techdocs'; +import { ScaffolderPage } from '@backstage/plugin-scaffolder'; +import { SearchPage } from '@backstage/plugin-search'; +import { UserSettingsPage } from '@backstage/plugin-user-settings'; + +const app = createApp(); + +const routes = ( + + } /> + + } /> + } /> + + } /> + + } /> + + } /> + } /> + + } /> + + } /> + + } /> + +); + +export default app.createRoot(routes); +EOF +echo "✓ App.tsx patched." + +echo "=== 6. Installing all dependencies ===" +# Yarn 4 uses --immutable instead of --frozen-lockfile +yarn install --immutable + +echo "=== 7. Building backend artifacts ===" +yarn workspace backend build + +# Verify the build output +if [ ! -f packages/backend/dist/bundle.tar.gz ] || [ ! -f packages/backend/dist/skeleton.tar.gz ]; then + echo "⌠Backend build failed: required files not found!" + exit 1 +fi +echo "✓ Backend build complete." + +# ----------------------------- +# 8a. Patch backend Dockerfile to include TechDocs/MkDocs + Yarn 4 support +# ----------------------------- +DOCKERFILE=packages/backend/Dockerfile +cat > "$DOCKERFILE" <<'EOF' +# This dockerfile builds an image for the backend package. +# It should be executed with the root of the repo as docker context. +# +# Before building this image, be sure to have run the following commands in the repo root: +# +# yarn install +# yarn tsc +# yarn build:backend +# +# Once the commands have been run, you can build the image using `yarn build-image` + +FROM node:20-bookworm-slim + +# Install sqlite3 dependencies. You can skip this if you don't use sqlite3 in the image, +# in which case you should also move better-sqlite3 to "devDependencies" in package.json. +# Additionally, we install dependencies for `techdocs.generator.runIn: local`. +# https://backstage.io/docs/features/techdocs/getting-started#disabling-docker-in-docker-situation-optional +RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ + --mount=type=cache,target=/var/lib/apt,sharing=locked \ + apt-get update && \ + apt-get install -y --no-install-recommends libsqlite3-dev python3 python3-pip python3-venv build-essential && \ + yarn config set python /usr/bin/python3 + +# Set up a virtual environment for mkdocs-techdocs-core. +ENV VIRTUAL_ENV=/opt/venv +RUN python3 -m venv $VIRTUAL_ENV +ENV PATH="$VIRTUAL_ENV/bin:$PATH" + +RUN pip3 install mkdocs-techdocs-core==1.1.7 + +# From here on we use the least-privileged `node` user to run the backend. +WORKDIR /app +RUN chown node:node /app +USER node + + +# This switches many Node.js dependencies to production mode. +ENV NODE_ENV=production + +# Copy over Yarn 3 configuration, release, and plugins +COPY --chown=node:node .yarn ./.yarn +COPY --chown=node:node .yarnrc.yml ./ + +# Copy repo skeleton first, to avoid unnecessary docker cache invalidation. +# The skeleton contains the package.json of each package in the monorepo, +# and along with yarn.lock and the root package.json, that's enough to run yarn install. +COPY --chown=node:node yarn.lock package.json packages/backend/dist/skeleton.tar.gz ./ +RUN tar xzf skeleton.tar.gz && rm skeleton.tar.gz + +RUN --mount=type=cache,target=/home/node/.yarn/berry/cache,sharing=locked,uid=1000,gid=1000 \ + yarn workspaces focus --all --production + +# Then copy the rest of the backend bundle, along with any other files we might want. +COPY --chown=node:node packages/backend/dist/bundle.tar.gz app-config*.yaml ./ +RUN tar xzf bundle.tar.gz && rm bundle.tar.gz + +CMD ["node", "packages/backend", "--config", "app-config.yaml"] +EOF +echo "✓ Backend Dockerfile patched with TechDocs + Yarn 4 support." +echo "=== 8. Building backend Docker image ===" +yarn workspace backend build-image + +echo "✅ Backstage 1.42.1 setup complete with TechDocs!" +echo "Run with: docker run -p 7007:7007 " diff --git a/dev/backstage/setup.sh b/dev/backstage/setup.sh new file mode 100755 index 0000000..5141736 --- /dev/null +++ b/dev/backstage/setup.sh @@ -0,0 +1,178 @@ +#!/usr/bin/env bash +set -euo pipefail + +# ------------------------ +# Configuration +# ------------------------ +APP_NAME="backstage" +APP_DIR="$PWD/$APP_NAME" +BACKSTAGE_RELEASE="1.42.1" +NODE_VERSION_MIN=18 + +echo +echo "=== Backstage automated setup script ===" +echo "App dir: $APP_DIR" +echo "Target Backstage release: $BACKSTAGE_RELEASE" +echo + +# Quick environment checks +command -v node >/dev/null 2>&1 || echo "Warning: node not found (need >= ${NODE_VERSION_MIN})" +command -v yarn >/dev/null 2>&1 || echo "Warning: yarn not found" + +# ------------------------ +# 1) Create Backstage app +# ------------------------ +if [ -d "$APP_DIR" ]; then + echo "Directory $APP_DIR already exists — aborting to avoid overwriting." + exit 1 +fi + +echo "=== 1) Creating Backstage app ===" +npx --ignore-existing @backstage/create-app@latest "$APP_DIR" +cd "$APP_DIR" + +# ------------------------ +# 2) Bump Backstage versions +# ------------------------ +echo "=== 2) Bumping Backstage packages to release $BACKSTAGE_RELEASE ===" +yarn backstage-cli versions:bump --release "$BACKSTAGE_RELEASE" + +# ------------------------ +# 3) Install backend plugins +# ------------------------ +echo "=== 3) Installing backend plugins ===" +yarn --cwd packages/backend add \ + @backstage/plugin-catalog-backend \ + @backstage/plugin-catalog-backend-module-scaffolder-entity-model \ + @backstage/plugin-catalog-backend-module-unprocessed \ + @backstage/plugin-catalog-backend-module-github \ + @backstage/plugin-catalog-backend-module-gitea \ + @backstage/plugin-scaffolder-backend \ + @backstage/plugin-scaffolder-backend-module-github \ + @backstage/plugin-scaffolder-backend-module-notifications \ + @backstage/plugin-auth-backend \ + @backstage/plugin-techdocs-backend \ + @backstage/plugin-kubernetes-backend \ + @backstage/plugin-devtools-backend \ + @backstage/plugin-app-backend \ + @backstage/plugin-proxy-backend \ + @backstage/plugin-permission-backend \ + @backstage/plugin-permission-backend-module-allow-all-policy \ + @backstage/plugin-notifications-backend \ + @backstage/plugin-events-backend \ + @backstage/plugin-search-backend \ + @backstage/plugin-search-backend-module-catalog \ + @backstage/plugin-search-backend-module-techdocs + +# ------------------------ +# 4) Install frontend plugins +# ------------------------ +echo "=== 4) Installing frontend plugins ===" +yarn --cwd packages/app add \ + @backstage/plugin-catalog \ + @backstage/plugin-catalog-graph \ + @backstage/plugin-catalog-import \ + @backstage/plugin-techdocs \ + @backstage/plugin-techdocs-module-addons-contrib \ + @backstage/plugin-scaffolder \ + @backstage/plugin-user-settings \ + @backstage/plugin-search \ + @backstage/plugin-api-docs \ + @backstage/plugin-org + +# ------------------------ +# 5) Patch backend index.ts with static imports +# ------------------------ +echo "=== 5) Patching backend index.ts ===" +BACKEND_FILE="packages/backend/src/index.ts" + +mkdir -p "$(dirname "$BACKEND_FILE")" + +cat > "$BACKEND_FILE" <<'EOF' +import { createBackend } from '@backstage/backend-defaults'; +import { createBackendFeatureLoader } from '@backstage/backend-plugin-api'; + +import appBackend from '@backstage/plugin-app-backend'; +import catalogBackend from '@backstage/plugin-catalog-backend'; +import catalogScaffolderEntityModel from '@backstage/plugin-catalog-backend-module-scaffolder-entity-model'; +import catalogUnprocessed from '@backstage/plugin-catalog-backend-module-unprocessed'; +import catalogGithub from '@backstage/plugin-catalog-backend-module-github'; +import catalogGitea from '@backstage/plugin-catalog-backend-module-gitea'; +import scaffolderBackend from '@backstage/plugin-scaffolder-backend'; +import scaffolderGithub from '@backstage/plugin-scaffolder-backend-module-github'; +import scaffolderNotifications from '@backstage/plugin-scaffolder-backend-module-notifications'; +import authBackend from '@backstage/plugin-auth-backend'; +import techdocsBackend from '@backstage/plugin-techdocs-backend'; +import kubernetesBackend from '@backstage/plugin-kubernetes-backend'; +import devtoolsBackend from '@backstage/plugin-devtools-backend'; +import proxyBackend from '@backstage/plugin-proxy-backend'; +import permissionBackend from '@backstage/plugin-permission-backend'; +import allowAllPolicy from '@backstage/plugin-permission-backend-module-allow-all-policy'; +import notificationsBackend from '@backstage/plugin-notifications-backend'; +import eventsBackend from '@backstage/plugin-events-backend'; + +const backend = createBackend(); + +backend.add(appBackend); +backend.add(catalogBackend); +backend.add(catalogScaffolderEntityModel); +backend.add(catalogUnprocessed); +backend.add(catalogGithub); +backend.add(catalogGitea); + +backend.add(scaffolderBackend); +backend.add(scaffolderGithub); +backend.add(scaffolderNotifications); + +backend.add(authBackend); + +backend.add(techdocsBackend); +backend.add(kubernetesBackend); + +backend.add(devtoolsBackend); +backend.add(proxyBackend); +backend.add(permissionBackend); +backend.add(allowAllPolicy); +backend.add(notificationsBackend); +backend.add(eventsBackend); + +const searchLoader = createBackendFeatureLoader({ + *loader() { + yield import('@backstage/plugin-search-backend'); + yield import('@backstage/plugin-search-backend-module-catalog'); + yield import('@backstage/plugin-search-backend-module-techdocs'); + }, +}); +backend.add(searchLoader); + +backend.start(); +EOF + +echo "✓ Backend index.ts patched." + +# ------------------------ +# 6) Do NOT overwrite App.tsx +# ------------------------ +echo "=== 6) Preserving existing App.tsx ===" + +# ------------------------ +# 7) Install workspace dependencies +# ------------------------ +echo "=== 7) Installing workspace dependencies ===" +yarn install + +# ------------------------ +# 8) Build backend bundle +# ------------------------ +echo "=== 8) Building backend bundle ===" +yarn workspace backend build + +# ------------------------ +# 9) Build Docker image +# ------------------------ +echo "=== 9) Building backend Docker image ===" +yarn workspace backend build-image + +echo "=== DONE ===" +echo "Backstage app created at: $APP_DIR" +echo "Docker image built successfully. Run with: docker run -p 7007:7007 " diff --git a/dev/backstage/setup3.sh b/dev/backstage/setup3.sh new file mode 100755 index 0000000..5aee244 --- /dev/null +++ b/dev/backstage/setup3.sh @@ -0,0 +1,205 @@ +#!/usr/bin/env bash +set -euo pipefail + +# ------------------------ +# Configuration +# ------------------------ +APP_NAME="backstage" +APP_DIR="$PWD/$APP_NAME" +BACKSTAGE_RELEASE="1.42.1" +NODE_VERSION_MIN=18 + +echo +echo "=== Backstage automated setup script ===" +echo "App dir: $APP_DIR" +echo "Target Backstage release: $BACKSTAGE_RELEASE" +echo + +# Quick environment checks +command -v node >/dev/null 2>&1 || echo "Warning: node not found (need >= ${NODE_VERSION_MIN})" +command -v yarn >/dev/null 2>&1 || echo "Warning: yarn not found" + +# ------------------------ +# 1) Create Backstage app +# ------------------------ +if [ -d "$APP_DIR" ]; then + echo "Directory $APP_DIR already exists — aborting to avoid overwriting." + exit 1 +fi + +echo "=== 1) Creating Backstage app ===" +npx --ignore-existing @backstage/create-app@latest "$APP_DIR" +cd "$APP_DIR" + +# ------------------------ +# 2) Bump Backstage versions +# ------------------------ +echo "=== 2) Bumping Backstage packages to release $BACKSTAGE_RELEASE ===" +yarn backstage-cli versions:bump --release "$BACKSTAGE_RELEASE" + +# ------------------------ +# 3) Install backend plugins +# ------------------------ +echo "=== 3) Installing backend plugins ===" +yarn --cwd packages/backend add \ + @backstage/plugin-catalog-backend \ + @backstage/plugin-catalog-backend-module-scaffolder-entity-model \ + @backstage/plugin-catalog-backend-module-unprocessed \ + @backstage/plugin-catalog-backend-module-github \ + @backstage/plugin-catalog-backend-module-gitea \ + @backstage/plugin-scaffolder-backend \ + @backstage/plugin-scaffolder-backend-module-github \ + @backstage/plugin-scaffolder-backend-module-notifications \ + @backstage/plugin-auth-backend \ + @backstage/plugin-auth-backend-module-guest-provider \ + @backstage/plugin-techdocs-backend \ + @backstage/plugin-kubernetes-backend \ + @backstage/plugin-devtools-backend \ + @backstage/plugin-app-backend \ + @backstage/plugin-proxy-backend \ + @backstage/plugin-permission-backend \ + @backstage/plugin-permission-backend-module-allow-all-policy \ + @backstage/plugin-notifications-backend \ + @backstage/plugin-events-backend \ + @backstage/plugin-search-backend \ + @backstage/plugin-search-backend-module-catalog \ + @backstage/plugin-search-backend-module-techdocs + +# ------------------------ +# 4) Install frontend plugins +# ------------------------ +echo "=== 4) Installing frontend plugins ===" +yarn --cwd packages/app add \ + @backstage/plugin-catalog \ + @backstage/plugin-catalog-graph \ + @backstage/plugin-catalog-import \ + @backstage/plugin-techdocs \ + @backstage/plugin-techdocs-module-addons-contrib \ + @backstage/plugin-scaffolder \ + @backstage/plugin-user-settings \ + @backstage/plugin-search \ + @backstage/plugin-api-docs \ + @backstage/plugin-org + +# ------------------------ +# 5) Patch backend index.ts with static imports +# ------------------------ +echo "=== 5) Patching backend index.ts ===" +BACKEND_FILE="packages/backend/src/index.ts" + +mkdir -p "$(dirname "$BACKEND_FILE")" + +cat > "$BACKEND_FILE" <<'EOF' +import { createBackend } from '@backstage/backend-defaults'; +import { createBackendFeatureLoader } from '@backstage/backend-plugin-api'; + +import appBackend from '@backstage/plugin-app-backend'; +import catalogBackend from '@backstage/plugin-catalog-backend'; +import catalogScaffolderEntityModel from '@backstage/plugin-catalog-backend-module-scaffolder-entity-model'; +import catalogUnprocessed from '@backstage/plugin-catalog-backend-module-unprocessed'; +import catalogGithub from '@backstage/plugin-catalog-backend-module-github'; +import catalogGitea from '@backstage/plugin-catalog-backend-module-gitea'; +import scaffolderBackend from '@backstage/plugin-scaffolder-backend'; +import scaffolderGithub from '@backstage/plugin-scaffolder-backend-module-github'; +import scaffolderNotifications from '@backstage/plugin-scaffolder-backend-module-notifications'; +import authBackend from '@backstage/plugin-auth-backend'; +import guestProvider from '@backstage/plugin-auth-backend-module-guest-provider'; +import techdocsBackend from '@backstage/plugin-techdocs-backend'; +import kubernetesBackend from '@backstage/plugin-kubernetes-backend'; +import devtoolsBackend from '@backstage/plugin-devtools-backend'; +import proxyBackend from '@backstage/plugin-proxy-backend'; +import permissionBackend from '@backstage/plugin-permission-backend'; +import allowAllPolicy from '@backstage/plugin-permission-backend-module-allow-all-policy'; +import notificationsBackend from '@backstage/plugin-notifications-backend'; +import eventsBackend from '@backstage/plugin-events-backend'; + +const backend = createBackend(); + +backend.add(appBackend); +backend.add(catalogBackend); +backend.add(catalogScaffolderEntityModel); +backend.add(catalogUnprocessed); +backend.add(catalogGithub); +backend.add(catalogGitea); + +backend.add(scaffolderBackend); +backend.add(scaffolderGithub); +backend.add(scaffolderNotifications); + +backend.add(authBackend); +backend.add(guestProvider); + +backend.add(techdocsBackend); +backend.add(kubernetesBackend); + +backend.add(devtoolsBackend); +backend.add(proxyBackend); +backend.add(permissionBackend); +backend.add(allowAllPolicy); +backend.add(notificationsBackend); +backend.add(eventsBackend); + +const searchLoader = createBackendFeatureLoader({ + *loader() { + yield import('@backstage/plugin-search-backend'); + yield import('@backstage/plugin-search-backend-module-catalog'); + yield import('@backstage/plugin-search-backend-module-techdocs'); + }, +}); +backend.add(searchLoader); + +backend.start(); +EOF + +echo "✓ Backend index.ts patched." + +# ------------------------ +# 6) Do NOT overwrite App.tsx +# ------------------------ +echo "=== 6) Preserving existing App.tsx ===" + +# ------------------------ +# 7) Install workspace dependencies +# ------------------------ +echo "=== 7) Installing workspace dependencies ===" +yarn install + +# ------------------------ +# 8) Build backend bundle +# ------------------------ +echo "=== 8) Building backend bundle ===" +yarn workspace backend build + +# ------------------------ +# 9) Patch backend Dockerfile for TechDocs +# ------------------------ +DOCKERFILE="packages/backend/Dockerfile" +echo "=== Patching backend Dockerfile for TechDocs mkdocs ===" + +# Insert mkdocs virtualenv only if not already patched +if ! grep -q "VIRTUAL_ENV=/opt/venv" "$DOCKERFILE"; then + cat >> "$DOCKERFILE" <<'EOF' + +# --- TechDocs MkDocs virtualenv --- +USER root +RUN apt-get update && apt-get install -y python3 python3-pip python3-venv git build-essential && rm -rf /var/lib/apt/lists/* +ENV VIRTUAL_ENV=/opt/venv +RUN python3 -m venv $VIRTUAL_ENV +ENV PATH="$VIRTUAL_ENV/bin:$PATH" +RUN pip3 install mkdocs-techdocs-core mkdocs-awesome-pages-plugin +USER node +EOF + echo "✓ Dockerfile patched with mkdocs virtualenv" +else + echo "✓ Dockerfile already patched" +fi + +# ------------------------ +# 10) Build Docker image +# ------------------------ +echo "=== 10) Building backend Docker image ===" +yarn workspace backend build-image + +echo "=== DONE ===" +echo "Backstage app created at: $APP_DIR" +echo "Docker image built successfully. Run with: docker run -p 7007:7007 " diff --git a/dev/camunda/README.md b/dev/camunda/README.md new file mode 100755 index 0000000..6ba6408 --- /dev/null +++ b/dev/camunda/README.md @@ -0,0 +1,2 @@ +userid: demo +password: demo diff --git a/dev/camunda/camunda.yaml b/dev/camunda/camunda.yaml new file mode 100755 index 0000000..86dafe0 --- /dev/null +++ b/dev/camunda/camunda.yaml @@ -0,0 +1,52 @@ +apiVersion: v1 +kind: Service +metadata: + name: camunda + namespace: camunda +spec: + selector: + app: camunda + ports: + - name: http + port: 8080 + targetPort: 8080 + type: LoadBalancer +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: camunda + namespace: camunda +spec: + replicas: 1 + selector: + matchLabels: + app: camunda + template: + metadata: + labels: + app: camunda + spec: + containers: + - name: camunda + image: allardkrings/camunda7-arm64v8 + ports: + - containerPort: 8080 + imagePullPolicy: IfNotPresent +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: camunda-tls + namespace: camunda +spec: + entryPoints: + - websecure + routes: + - match: Host(`camunda-prod.allarddcs.nl`) + kind: Rule + services: + - name: camunda + port: 8080 + tls: + certResolver: letsencrypt diff --git a/dev/camunda/catalog-info.yaml b/dev/camunda/catalog-info.yaml new file mode 100644 index 0000000..ddd28f1 --- /dev/null +++ b/dev/camunda/catalog-info.yaml @@ -0,0 +1,17 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-camunda + title: Camunda (dev) + annotations: + backstage.io/kubernetes-id: camunda + links: + - url: https://github.com/AllardKrings/kubernetes/dev/camunda + title: camunda-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: allarddcs + subcomponentOf: component:default/DEV-cluster diff --git a/dev/catalog-info.yaml b/dev/catalog-info.yaml new file mode 100644 index 0000000..dd4df09 --- /dev/null +++ b/dev/catalog-info.yaml @@ -0,0 +1,60 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: DEV-cluster + namespace: default + description: deployments DEV-cluster + annotations: + backstage.io/techdocs-ref: dir:. + links: + - url: https://github.com/AllardKrings/kubernetes/dev/ + title: AllardDCS DEV-cluster + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + children: + - component:default/dev-camunda + - component:default/dev-redis + - component:default/dev-postgres16 + - component:default/dev-argocd + - component:default/dev-backstage + - component:default/dev-camunda + - component:default/dev-cockroachdb + - component:default/dev-cosign + - component:default/dev-crate + - component:default/dev-defectdojo + - component:default/dev-deptrack + - component:default/dev-dnsutils + - component:default/dev-docs + - component:default/dev-drupal + - component:default/dev-elasticsearch-kibana + - component:default/dev-gitea + - component:default/dev-grafana + - component:default/dev-harbor + - component:default/dev-hercules + - component:default/dev-itop + - component:default/dev-kafka + - component:default/dev-kubernetes + - component:default/dev-mariadb + - component:default/dev-nexus + - component:default/dev-nginx + - component:default/dev-olproperties + - component:default/dev-pgadmin + - component:default/dev-phpmyadmin + - component:default/dev-portainer + - component:default/dev-postgres13 + - component:default/dev-postgres14 + - component:default/dev-postgres15 + - component:default/dev-postgres16 + - component:default/dev-prometheus + - component:default/dev-rabbitmq + - component:default/dev-redis + - component:default/dev-redmine + - component:default/dev-sonarqube + - component:default/dev-tekton + - component:default/dev-traefik + - component:default/dev-trivy + - component:default/dev-zabbix diff --git a/dev/cockroachdb/README.md b/dev/cockroachdb/README.md new file mode 100644 index 0000000..66f0085 --- /dev/null +++ b/dev/cockroachdb/README.md @@ -0,0 +1,26 @@ +#Installation: + +#apply the CRD: + +kubectl apply -f https://raw.githubusercontent.com/cockroachdb/cockroach-operator/v2.14.0/install/crds.yaml + +#install cockroachdb: + +kubectl apply -f cockroachdb.yaml + +#Initialiseren cluster: + +kubectl exec -it cockroachdb-0 \ +-- /cockroach/cockroach init \ +--certs-dir=/cockroach/cockroach-certs + +#Inloggen client: + +kubectl exec -it cockroachdb-client-secure \ +-- ./cockroach sql \ +--certs-dir=/cockroach-certs \ +--host=cockroachdb-public + +#Gebruiker aanmaken: + +CREATE USER roach WITH PASSWORD 'Cockroach01@'; diff --git a/dev/cockroachdb/catalog-info.yaml b/dev/cockroachdb/catalog-info.yaml new file mode 100644 index 0000000..6c158ad --- /dev/null +++ b/dev/cockroachdb/catalog-info.yaml @@ -0,0 +1,10 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-cockroachdb + title: Cockroachdb (dev) +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster diff --git a/dev/cockroachdb/certs/ca.crt b/dev/cockroachdb/certs/ca.crt new file mode 100644 index 0000000..7419c81 --- /dev/null +++ b/dev/cockroachdb/certs/ca.crt @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDJTCCAg2gAwIBAgIQa/0mCEqslZ2d107ceEr9ATANBgkqhkiG9w0BAQsFADAr +MRIwEAYDVQQKEwlDb2Nrcm9hY2gxFTATBgNVBAMTDENvY2tyb2FjaCBDQTAeFw0y +NTAxMjUyMDIzNDRaFw0zNTAyMDMyMDIzNDRaMCsxEjAQBgNVBAoTCUNvY2tyb2Fj +aDEVMBMGA1UEAxMMQ29ja3JvYWNoIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAvBJOTewyeYeWUncc7wx27bRCaDH7YawGyaltYypUzo93li+8K5Uw +VSYfy3mxNp47IQXebDPCQITct5pGq/EBTrWGJ/MLf8ZcCfPvvzylsqsesFFfS5y0 +sYof+JzyowDOJflWsQnJLIK5kD32fvupvc0dKY8q/4WN/Ra1kiUm6ZcFYWVKJx2s +2ZVWcDP5xh+obCgP3F4cTsLjo1mkoRPMSLw5w9M5x3AiDgi6zwkcw9aUVq0lBciA +lI4cAHC4Awc1AP3OazYV/E+cC6dtzS+55KRGQIYOp/pkgBKsTAd2ahuZTh8ZWXyS +p30X0luRUO9wBksGEt5ixx5QdtOd0jQWLQIDAQABo0UwQzAOBgNVHQ8BAf8EBAMC +AuQwEgYDVR0TAQH/BAgwBgEB/wIBATAdBgNVHQ4EFgQU5Olr9c4vu7OLVJrlGOtF +rdh5+qQwDQYJKoZIhvcNAQELBQADggEBALTZARd4BA0ke5O4a9G+1Om1P4L16fk9 +R2uICKW1MEGg/1zDXZS/6dX+2xJrLLp3xhFcpFge78zi0MVyBfnrl0j+Uk+eSPar +iubS9S/qN7LkMKcZM8l2hZnPQ0bu6WbaKcH9Bu2KNcWdowsCLb7vgIEXkNPlxoKM +Q+lOZHorpLZgQph1Se7nnjhuXuqxzhxv5NlPVVy/ZiuoJ1FUn5nbS3vIvpGGiGsO +2bGltS2ADsfBNmCsRfgj1HutHERpUG+cvMsa9Wf9o3wuohUOzguPxxaL/Hpbxwp+ +hnL13ksKb/bs45VHtYRQuZaUPoqTWvLRMIdMMxaLNMzE6Xyzc8h/dbA= +-----END CERTIFICATE----- diff --git a/dev/cockroachdb/certs/client.root.crt b/dev/cockroachdb/certs/client.root.crt new file mode 100644 index 0000000..eee6ecc --- /dev/null +++ b/dev/cockroachdb/certs/client.root.crt @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDIDCCAgigAwIBAgIQJwncfRDbHgMyuJKxK0dKCDANBgkqhkiG9w0BAQsFADAr +MRIwEAYDVQQKEwlDb2Nrcm9hY2gxFTATBgNVBAMTDENvY2tyb2FjaCBDQTAeFw0y +NTAxMjUyMDIzNTdaFw0zMDAxMzAyMDIzNTdaMCMxEjAQBgNVBAoTCUNvY2tyb2Fj +aDENMAsGA1UEAxMEcm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +ALzsZkbDiGNFg+jC16+eLzL5GvygvInkFljBgxJcrajRueq3KKfWlg1WTw6SqoiU ++c1uBiK8wiz17zkyo6K1lOabIlRutyAPZNnx7F+iBvhbMw8uzrlvWZKNCTWAJi4M +tLNDesSqmcCdEl+7ycJkGEmXyyDjGz+UtI6Bq5ax/MN9lc8CoKKAc6KzqiiYf0MR +6A2f5wwm8th8kT89HIt541LyElUr0JjttYOhrR0O82gF11Uf6OTYCxiySaHXTXpW +yYXXs6YsFaqm+Y3UZfnIk3jkwMPTYuQ3HoVe66YPB87JbPfMmiO4+NBGgqpSq2d9 +n+l87zGJumwUaFQcq2s/1yUCAwEAAaNIMEYwDgYDVR0PAQH/BAQDAgWgMBMGA1Ud +JQQMMAoGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFOTpa/XOL7uzi1Sa5RjrRa3Yefqk +MA0GCSqGSIb3DQEBCwUAA4IBAQAyygcCWS9hC2/HI59i5IwirXxO6NXUJLQIrooz +z187fhAdfVGioAT6K1cU+NrrJgoFc9Znle4USjAgiCttfOu8ZXXySpm8kpwzlPCa +m7tg76cpOHB9Gw1vt4DQdgjTjBDiIMjQIa8BRdIgvjC0VodFMe950cBuYpTrX27W +KdFpsqWfD423uWPyVMxO/8k1E0epuHnLxqNEX55+yPM24PxiHVxsm6YSeViIAxj0 +NXNXYSAoHQKob+8NysWT4QhrezdF8Cj6zbvlIrpJdmRiwcvbvBp4bnj6wg5OYAPM +pNqjII1A52ryOn5jVEfZvBb6s18ZIm9d/xGPugVsbJhBJy6S +-----END CERTIFICATE----- diff --git a/dev/cockroachdb/certs/client.root.key b/dev/cockroachdb/certs/client.root.key new file mode 100644 index 0000000..70371f7 --- /dev/null +++ b/dev/cockroachdb/certs/client.root.key @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEpQIBAAKCAQEAvOxmRsOIY0WD6MLXr54vMvka/KC8ieQWWMGDElytqNG56rco +p9aWDVZPDpKqiJT5zW4GIrzCLPXvOTKjorWU5psiVG63IA9k2fHsX6IG+FszDy7O +uW9Zko0JNYAmLgy0s0N6xKqZwJ0SX7vJwmQYSZfLIOMbP5S0joGrlrH8w32VzwKg +ooBzorOqKJh/QxHoDZ/nDCby2HyRPz0ci3njUvISVSvQmO21g6GtHQ7zaAXXVR/o +5NgLGLJJoddNelbJhdezpiwVqqb5jdRl+ciTeOTAw9Ni5DcehV7rpg8Hzsls98ya +I7j40EaCqlKrZ32f6XzvMYm6bBRoVByraz/XJQIDAQABAoIBAAVHOYhKmDnlzEyp +fOssKTdsXEOonfvgQnuSVH4j1ro7uc0D9v/Rb/nJaoYGtPsB5oTFySgZS/eDm35m +msnF9vYGaYwgV79ujqvEJY16cmVn7uJCtYXaxY7hn9s9zFNHCZlkjj6GYatO+B9y +mK10rHUJ56PwlGdPWUgN+WRJbr1rbXJ0XhaNlR7d39XxrxFFI4MOvw2DNOvAOG6g +foIpA4ZeLhcGYIjsZxqrOZqVh1br4w5rWEvGqONi6LCrvwtMuNLAWExASkLJKIzw +vQ9jHpxYNqak0PHpsrHtUx50WsMt0ea1u/ioMKPNXs/Lkj18eGYpVI+S1wxDgKV+ +m6K6uZUCgYEA9UKYCV1KiKAINTtwbTKHSa/vn/U6JKOLQUvPD2qpbVRdgS2R1mQS +soqeDW1d+Y4tRk/tnlmpolkuuNDxulr2CTm6wbgeU6TnF7pq7ClIZK3hv2VGTT3B +uXxx+cQ+zjqygAidopjLMUH/3aO7Ldw6gcuCLrjN1xEVJiD4IGTwxtsCgYEAxTJD +Fl9m5g3bCQPfpSfclI0weNPHIoVQ63IcqRHH+e0BR03YZWbq8lMl+t81q6G/rsIH +jD1Pl5RW9EhgguXOoMXeKVpT34M+gcJ0PdEI6+WZ3ZjJ0kwwPcypsA93aZmZx883 +iksC2ZfIKqpCwguDKyvb5EcLNzrDSnMAl7NZOf8CgYEAoVqKg76ohnIidEMCmBSi +BMyGrYm8Eta1iuPA+beGd7MFQTMluxJjaqrfiJ3nMYNkLdnvzjnW7EQYBOcR4TRu +oWslfsUOzqCymF3AclZGllX/KtgKBE8Y4FsK8PM3Dp53SNxiONKk+2ccWkiZoHY+ +1513rB1Q7qkCbO9LzqQZ8/kCgYEAgFAYPzKMrh1N7SvMFpc9fJvycmy7IsdExC9Y +XtrnGMUTE+afbDvvnQZlrDwZnDh/laNDbglnBObNPd7qjcIjFZIq4RWZhdLMlXqG +UML33ydjW0HT8TcKHOxTbfBibyA3ZEB9j0sH67ZL1Rc8oS8Ehs7fIkboEWP3NzZl +qFBXOtkCgYEAz9L2J9rpXQgwbPCOCjuPvm+zvAnGXdNgrUsVd8Tk1wczc5FyaBxw +DMgHo1BxELPETb0hNxEdQ0DdR83MXp0PZA1IG1XKcAH8CXloELwN3jpM+/6PHQRz +vdvkLPv3wM1Qdj4g6FlnPvlJHAlPytnDrUbSWxA6xMVYQJKw8na2Cm8= +-----END RSA PRIVATE KEY----- diff --git a/dev/cockroachdb/certs/node.crt b/dev/cockroachdb/certs/node.crt new file mode 100644 index 0000000..c387b0c --- /dev/null +++ b/dev/cockroachdb/certs/node.crt @@ -0,0 +1,24 @@ +-----BEGIN CERTIFICATE----- +MIID+jCCAuKgAwIBAgIQI/uQsaTfs97kfvVSTD400zANBgkqhkiG9w0BAQsFADAr +MRIwEAYDVQQKEwlDb2Nrcm9hY2gxFTATBgNVBAMTDENvY2tyb2FjaCBDQTAeFw0y +NTAxMjUyMDI0MTBaFw0zMDAxMzAyMDI0MTBaMCMxEjAQBgNVBAoTCUNvY2tyb2Fj +aDENMAsGA1UEAxMEbm9kZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +AJ8eplN7Xp2XZYJqlp+BvOh6sN0CqVo7tCbuXSt1ZpeC0EzRTU4u1j7cGhExzYSj +VUGootjPZIjB6OQu6JHzheubWUzYMXBC72PjKYbbwoE69b98GsIP9aJ3++0j5dln +TUP/SgiVf90w3ltb6MdlWX9VMpqsmCj3b1CqNfGT+Xc/pbSCN1oT7m5XUsaGkaux +BKp9QeI6Zii8q+qyt/U1+qFCE1AVMoJe/KRM3O3j+3G+90t/IKGnJj3wtSs8+BzC +FV2ZBPJcLsmL0are9yOVU+xhc8drLdefxZQiNL8nb3MgqQ/uVSfDhraMlna+mpxo +lLDm1Zm4AKlztwwxvIV+dT8CAwEAAaOCASAwggEcMA4GA1UdDwEB/wQEAwIFoDAd +BgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwHwYDVR0jBBgwFoAU5Olr9c4v +u7OLVJrlGOtFrdh5+qQwgckGA1UdEQSBwTCBvoIJbG9jYWxob3N0ghJjb2Nrcm9h +Y2hkYi1wdWJsaWOCGmNvY2tyb2FjaGRiLXB1YmxpYy5kZWZhdWx0gixjb2Nrcm9h +Y2hkYi1wdWJsaWMuZGVmYXVsdC5zdmMuY2x1c3Rlci5sb2NhbIINKi5jb2Nrcm9h +Y2hkYoIVKi5jb2Nrcm9hY2hkYi5kZWZhdWx0gicqLmNvY2tyb2FjaGRiLmRlZmF1 +bHQuc3ZjLmNsdXN0ZXIubG9jYWyHBH8AAAEwDQYJKoZIhvcNAQELBQADggEBAIth +4wIOZDDcuNDtsy3dxB2q/6miFaO0p2/iUyMci3b1nwlLTliKzWGgOCwNGGR4UXOM +zVQ1bu8I2w4zY5xF047xQDQR+ek4HyOayxLlua1fVCVq4jxv23vgJA4Gv0IhUbay +TfjnDDFhijy9URzBoVAwXAx2hGu1PlFmZ1bHjre13s1mTohO3nMTA+GsMGkLk8FB +M5wWDP8UKC9zmUXPSFLEscLWzjJ015Y/tqZUMFWB4bFsGKAxdkBR2PTWbnDETfrJ +7HymCOLBFinbMs8m+NPz1j+B8MGlwi0Eu5SWxiyWkt5FtczBdMcgnuVhZBWqqxko +E13Q6CHbMt+P3Ky3FMQ= +-----END CERTIFICATE----- diff --git a/dev/cockroachdb/certs/node.key b/dev/cockroachdb/certs/node.key new file mode 100644 index 0000000..c220abd --- /dev/null +++ b/dev/cockroachdb/certs/node.key @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEowIBAAKCAQEAnx6mU3tenZdlgmqWn4G86Hqw3QKpWju0Ju5dK3Vml4LQTNFN +Ti7WPtwaETHNhKNVQaii2M9kiMHo5C7okfOF65tZTNgxcELvY+MphtvCgTr1v3wa +wg/1onf77SPl2WdNQ/9KCJV/3TDeW1vox2VZf1UymqyYKPdvUKo18ZP5dz+ltII3 +WhPubldSxoaRq7EEqn1B4jpmKLyr6rK39TX6oUITUBUygl78pEzc7eP7cb73S38g +oacmPfC1Kzz4HMIVXZkE8lwuyYvRqt73I5VT7GFzx2st15/FlCI0vydvcyCpD+5V +J8OGtoyWdr6anGiUsObVmbgAqXO3DDG8hX51PwIDAQABAoIBAFvoOi3yDl58Ohew +NTwAlfq6Ezo09Vi3L4FlIM+fShitaF9WbY6BIyK/wxa3a3v3U6FPJHCSqgEL79cM ++SyEOpAx9Myb+0Jahyds6GmKubgnNBbcOiBpU3n6T7tThsmiD1D9PefjYi2CsoyW +c8foVF9l+Iq6slDHSraO+gWFcQxc/9CizRsInGqHA64anN6XvBZoVBLlu2Fowg4G +EducEOiGCekYLiOUDcLBegv57STIA/lTQ8pqFk7HcFYgg4NQhMFoS1E79zdlkZfq +j7X/DHMbt8zvRZIlWp1PrDYMysYVQVCT0PbaSd8+x9bUbDKkoMkgSj/NHsQXYn4a +muEhj+ECgYEAx8NZxZ9JU4NL5rNN2crfs/QPwxCgKp+BI41px9hqLOWKqDfMB7fI +EjOlLJveZ07sFF2Yf2gMkzCwdrmHc2g0Rj0Csqzss6Si3ppvD6EIwREnmziiJplR +mq6dQzgd5u1p9YcbIZhjzKFvRWy9JR4Kl/0A+h0zN8QupvxelRBslZkCgYEAy+ow +J9cTUqEeBL69BQU2CUTnc/MKCKGeTPRWqtKfODd7uglTaUgQ0DxDBoJxnS4ORcCN +9isT/UNJov8ufoZ1U8Kk+nBX++K5QFb46/TEomxeW+oabBg1+oLEPyqmd0H2p5er +JDsgsURUAcgKEV6ac11rzl2rwwfhgo9WVTB2+JcCgYEAwEeu32QFBpe4tWUdqGd4 +kBR6H36fTKeffAMgMLaE7JY9stGSWFN0BuEjOh8GIlZ7MtcsdGZIxFz3XjASyukg +eAM915JPfFMaWj44bMjKTlwezW/j1Fd7jvJIeW1IiwE3HphfayTt2wgAvMh//3w9 +IjLrf9QfeqwhY6ZDvCPFAPECgYBHUHfW9xkC5OYisrJYdyIWy8pGetEfg6ZhM3K7 ++z1D4+OZhHlvcIywxuKJ/ETPu7OyIU2Esjwjbszp/GS+SzftOz2HeJLMvNYc8k3L +96ZtR4kYjB8BftYh7mnDzZ66Ro+EvT5VRXiBhmv604Lx4CwT/LAfVBMl+jOb/ZUr +5e81sQKBgEmLXN7NBs/3TXukSBwxvcixZWmgFVJIfrUhXN34p1T0BjaFKaTKREDZ +ulpnWImY9p/Q5ey1dpNlC3b9c/ZNseBXwOfmSP6TkaWpWBWNgwVOWMa6r6gPDVgZ +TlEn2zeJH+4YjrMZga0Aoeg7HcJondSV0s8jQqBhRNVZFSMjF+tA +-----END RSA PRIVATE KEY----- diff --git a/dev/cockroachdb/cli/README.md b/dev/cockroachdb/cli/README.md new file mode 100644 index 0000000..11587a9 --- /dev/null +++ b/dev/cockroachdb/cli/README.md @@ -0,0 +1,3 @@ +sudo mkdir -p /usr/local/lib/cockroach +sudo cp -i lib/libgeos.so /usr/local/lib/cockroach/ +sudo cp -i lib/libgeos_c.so /usr/local/lib/cockroach/ diff --git a/dev/cockroachdb/cli/lib/libgeos.so b/dev/cockroachdb/cli/lib/libgeos.so new file mode 100644 index 0000000..fc070d6 Binary files /dev/null and b/dev/cockroachdb/cli/lib/libgeos.so differ diff --git a/dev/cockroachdb/cli/lib/libgeos_c.so b/dev/cockroachdb/cli/lib/libgeos_c.so new file mode 100644 index 0000000..758db31 Binary files /dev/null and b/dev/cockroachdb/cli/lib/libgeos_c.so differ diff --git a/dev/cockroachdb/cockroachdb.yaml b/dev/cockroachdb/cockroachdb.yaml new file mode 100644 index 0000000..f44da3e --- /dev/null +++ b/dev/cockroachdb/cockroachdb.yaml @@ -0,0 +1,289 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: cockroachdb +# namespace: cockroachdb + labels: + app: cockroachdb +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: cockroachdb +# namespace: cockroachdb + labels: + app: cockroachdb +rules: +- apiGroups: + - "" + resources: + - secrets + verbs: + - get +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: cockroachdb +# namespace: cockroachdb + labels: + app: cockroachdb +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: cockroachdb +subjects: +- kind: ServiceAccount + name: cockroachdb +# namespace: default +--- +apiVersion: v1 +kind: Service +metadata: + # This service is meant to be used by clients of the database. It exposes a ClusterIP that will + # automatically load balance connections to the different database pods. + name: cockroachdb-public +# namespace: cockroachdb + labels: + app: cockroachdb +spec: + ports: + # The main port, served by gRPC, serves Postgres-flavor SQL, internode + # traffic and the cli. + - port: 26257 + targetPort: 26257 + name: grpc + # The secondary port serves the UI as well as health and debug endpoints. + - port: 8080 + targetPort: 8080 + name: http + selector: + app: cockroachdb +--- +apiVersion: v1 +kind: Service +metadata: + # This service only exists to create DNS entries for each pod in the stateful + # set such that they can resolve each other's IP addresses. It does not + # create a load-balanced ClusterIP and should not be used directly by clients + # in most circumstances. + name: cockroachdb +# namespace: cockroachdb + labels: + app: cockroachdb + annotations: + # Use this annotation in addition to the actual publishNotReadyAddresses + # field below because the annotation will stop being respected soon but the + # field is broken in some versions of Kubernetes: + # https://github.com/kubernetes/kubernetes/issues/58662 + service.alpha.kubernetes.io/tolerate-unready-endpoints: "true" + # Enable automatic monitoring of all instances when Prometheus is running in the cluster. + prometheus.io/scrape: "true" + prometheus.io/path: "_status/vars" + prometheus.io/port: "8080" +spec: + ports: + - port: 26257 + targetPort: 26257 + name: grpc + - port: 8080 + targetPort: 8080 + name: http + # We want all pods in the StatefulSet to have their addresses published for + # the sake of the other CockroachDB pods even before they're ready, since they + # have to be able to talk to each other in order to become ready. + publishNotReadyAddresses: true + clusterIP: None + selector: + app: cockroachdb +--- +apiVersion: policy/v1 +kind: PodDisruptionBudget +metadata: + name: cockroachdb-budget +# namespace: cockroachdb + labels: + app: cockroachdb +spec: + selector: + matchLabels: + app: cockroachdb + maxUnavailable: 1 +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: cockroachdb +# namespace: cockroachdb +spec: + serviceName: "cockroachdb" + replicas: 3 + selector: + matchLabels: + app: cockroachdb + template: + metadata: + labels: + app: cockroachdb + spec: + serviceAccountName: cockroachdb + affinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - weight: 100 + podAffinityTerm: + labelSelector: + matchExpressions: + - key: app + operator: In + values: + - cockroachdb + topologyKey: kubernetes.io/hostname + containers: + - name: cockroachdb + image: cockroachdb/cockroach:v24.1.2 + imagePullPolicy: IfNotPresent + args: ["-- insecure"] + # TODO: Change these to appropriate values for the hardware that you're running. You can see + # the resources that can be allocated on each of your Kubernetes nodes by running: + # kubectl describe nodes + # Note that requests and limits should have identical values. + resources: + requests: + cpu: "2" + memory: "2Gi" + limits: + cpu: "2" + memory: "2Gi" + ports: + - containerPort: 26257 + name: grpc + - containerPort: 8080 + name: http +# We recommend that you do not configure a liveness probe on a production environment, as this can impact the availability of production databases. +# livenessProbe: +# httpGet: +# path: "/health" +# port: http +# scheme: HTTPS +# initialDelaySeconds: 30 +# periodSeconds: 5 + readinessProbe: + httpGet: + path: "/health?ready=1" + port: http + scheme: HTTPS + initialDelaySeconds: 10 + periodSeconds: 5 + failureThreshold: 2 + volumeMounts: + - name: datadir + mountPath: /cockroach/cockroach-data + - name: certs + mountPath: /cockroach/cockroach-certs + env: + - name: COCKROACH_CHANNEL + value: kubernetes-secure + - name: GOMAXPROCS + valueFrom: + resourceFieldRef: + resource: limits.cpu + divisor: "1" + - name: MEMORY_LIMIT_MIB + valueFrom: + resourceFieldRef: + resource: limits.memory + divisor: "1Mi" + command: + - "/bin/bash" + - "-ecx" + # The use of qualified `hostname -f` is crucial: + # Other nodes aren't able to look up the unqualified hostname. + - exec + /cockroach/cockroach + start + --logtostderr + --certs-dir /cockroach/cockroach-certs + --advertise-host $(hostname -f) + --http-addr 0.0.0.0 + --join cockroachdb-0.cockroachdb,cockroachdb-1.cockroachdb,cockroachdb-2.cockroachdb + --cache $(expr $MEMORY_LIMIT_MIB / 4)MiB + --max-sql-memory $(expr $MEMORY_LIMIT_MIB / 4)MiB + # No pre-stop hook is required, a SIGTERM plus some time is all that's + # needed for graceful shutdown of a node. + terminationGracePeriodSeconds: 60 + volumes: + - name: datadir + persistentVolumeClaim: + claimName: datadir + - name: certs + secret: + secretName: cockroachdb.node + defaultMode: 256 + podManagementPolicy: Parallel + updateStrategy: + type: RollingUpdate + volumeClaimTemplates: + - metadata: + name: datadir + spec: + accessModes: + - "ReadWriteOnce" + resources: + requests: + storage: 1Gi +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: cockroach-tls +# namespace: cockroachdb +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`cockroach-prod.allarddcs.nl`) + services: + - name: cockroachdb-public + port: 8080 + tls: + passthrough: true +--- +# Generated file, DO NOT EDIT. Source: cloud/kubernetes/templates/bring-your-own-certs/client.yaml +# This config file demonstrates how to connect to the CockroachDB StatefulSet +# defined in bring-your-own-certs-statefulset.yaml that uses certificates +# created outside of Kubernetes. See that file for why you may want to use it. +# You should be able to adapt the core ideas to deploy your own custom +# applications and connect them to the database similarly. +# +# The pod that this file defines will sleep in the cluster not using any +# resources. After creating the pod, you can use it to open up a SQL shell to +# the database by running: +# +# kubectl exec -it cockroachdb-client-secure -- ./cockroach sql --url="postgres://root@cockroachdb-public:26257/?sslmode=verify-full&sslcert=/cockroach-certs/client.root.crt&sslkey=/cockroach-certs/client.root.key&sslrootcert=/cockroach-certs/ca.crt" +apiVersion: v1 +kind: Pod +metadata: + name: cockroachdb-client-secure +# namespace: cockroachdb + labels: + app: cockroachdb-client +spec: + serviceAccountName: cockroachdb + containers: + - name: cockroachdb-client + image: cockroachdb/cockroach:v24.1.2 + # Keep a pod open indefinitely so kubectl exec can be used to get a shell to it + # and run cockroach client commands, such as cockroach sql, cockroach node status, etc. + command: + - sleep + - "2147483648" # 2^31 + volumeMounts: + - name: client-certs + mountPath: /cockroach-certs + volumes: + - name: client-certs + secret: + secretName: cockroachdb.client.root + defaultMode: 256 + diff --git a/dev/cockroachdb/install.sh b/dev/cockroachdb/install.sh new file mode 100755 index 0000000..e932193 --- /dev/null +++ b/dev/cockroachdb/install.sh @@ -0,0 +1,16 @@ +#!/bin/bash +rm -rf certs +rm -rf my-safe-directory +mkdir certs +mkdir my-safe-directory +cockroach cert create-ca --certs-dir=certs --ca-key=my-safe-directory/ca.key +cockroach cert create-client root --certs-dir=certs --ca-key=my-safe-directory/ca.key +#microk8s kubectl create ns cockroachdb +microk8s kubectl create secret generic cockroachdb.client.root --from-file=certs +cockroach cert create-node --certs-dir=certs --ca-key=my-safe-directory/ca.key localhost 127.0.0.1 cockroachdb-public cockroachdb-public.default cockroachdb-public.default.svc.cluster.local *.cockroachdb *.cockroachdb.default *.cockroachdb.default.svc.cluster.local +microk8s kubectl create secret generic cockroachdb.node --from-file=certs +microk8s kubectl create -f cockroachdb.yaml +microk8s kubectl get pod +microk8s kubectl exec -it cockroachdb-0 \ +-- /cockroach/cockroach init \ +--certs-dir=/cockroach/cockroach-certs diff --git a/dev/cockroachdb/my-safe-directory/ca.key b/dev/cockroachdb/my-safe-directory/ca.key new file mode 100644 index 0000000..2ef8b3d --- /dev/null +++ b/dev/cockroachdb/my-safe-directory/ca.key @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEowIBAAKCAQEAvBJOTewyeYeWUncc7wx27bRCaDH7YawGyaltYypUzo93li+8 +K5UwVSYfy3mxNp47IQXebDPCQITct5pGq/EBTrWGJ/MLf8ZcCfPvvzylsqsesFFf +S5y0sYof+JzyowDOJflWsQnJLIK5kD32fvupvc0dKY8q/4WN/Ra1kiUm6ZcFYWVK +Jx2s2ZVWcDP5xh+obCgP3F4cTsLjo1mkoRPMSLw5w9M5x3AiDgi6zwkcw9aUVq0l +BciAlI4cAHC4Awc1AP3OazYV/E+cC6dtzS+55KRGQIYOp/pkgBKsTAd2ahuZTh8Z +WXySp30X0luRUO9wBksGEt5ixx5QdtOd0jQWLQIDAQABAoIBAQCwnCQqap7vnxLb +t/1UwojAKeGehSlCjFAHefI+CFeBbhpnz8XNy5iKrXV4F3wCBU8TcLZxN524Bsxa +Iicxee23YyFrTIJE6BowQoGmPSaBBM6Z1qA9mhfZDRN+3KvBxJTR9jaho8Xl5ZCq +UnWyw1Of6Aj1qPtA3sL6oyO47OiAu3Ph2+jlXBTlpmNQlz3BjansHpV0l9IsYY0H +dhAieMY4piYzB6LIFQUBH8T7gxnToPvgulSWaKV1mG7Xw/lSoj1YpDXXWYWMfiDB +Xl55Pyrp44J8+cdATGFIgk+ln5aeDQNtVV3wLIHsSrZaZ6ojFFpBY3qj4LvYmRjS +0Sj79ErFAoGBAN/riyjNfgSRs2wqsMPcVwetKHmP7we5wA8WAWMj1glDfjhNfHo1 +J6gEYASc2ai44aK5P6XIGeAt1NmAAqaeJKKk1/fMUKbgCLLeG+Ds24Q9FTIigUpW +kMctLTHJ9mkr2xSNfBUrjwvsvnZKYox6tBcYPDsnpgj/lkEJ7S32S5MjAoGBANcD +/ElaTUHFOr/q6YALQUgw97xBSff1WLa5ESByUXrirpNyKchnU6hY1Ndo9snd4QZs +RZIsPEPBbR1hN2R/gTbUn2hVGPxLZ0wUs/IbsYPXAsunRD87g2gI0W++OR3sz5j4 +p/6NodgsRcOmAXG1pZwJAFAJLTqUkTF0yXg8dS5vAoGACK6MRbe59BlmGIKLOfzY +Dv8iu5veC7GjBbK3uQ1RpihMw4gVlHNtJzGMO4GNWuJYNUPzeM0KW8vLHee9spId +H4U+rmfolJ/JFo5QDGeCl1z67meyFZzHnkFdKDoJaMh/hQt7TSLUOAUk2VdG/OVh +CCgzZaPC50RpofntjUOoaHsCgYBORvoq7kAgCKCZy/jUD8TldkZKd+5o4h4472kn +ydaWCT6LGU3S0qMnL6fVADaQSUGp5/LwA0CxXhLOVl0nLjApeQDLp+dfukfR79uO +8bwPhlBTOgLjjlQJpOQybSs4FMWDKEtopcFdBMklMCNodTvkcXZ2rNCVeg7d1Wmf +Z0s16wKBgA8KPg/7fEdmXItkbcVd2tyngCOo1NNXyGmZ7SnrkoXilyiKzZwmeUZl +PN27ciS/VpKTb278tNdQudmlBs28/McKddz9SnAKvTP/WbUXAh3gpeDTX9KVD7++ +Z7wCBrQcb2z5WG2ojUwbYYZGjuouYJT2WGElDoOxRT4eCSbgj4kB +-----END RSA PRIVATE KEY----- diff --git a/dev/cockroachdb/pvc.yaml b/dev/cockroachdb/pvc.yaml new file mode 100755 index 0000000..2b98516 --- /dev/null +++ b/dev/cockroachdb/pvc.yaml @@ -0,0 +1,336 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: cockroachdb + namespace: cockroachdb + labels: + app: cockroachdb +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: cockroachdb + namespace: cockroachdb + labels: + app: cockroachdb +rules: +- apiGroups: + - "" + resources: + - secrets + verbs: + - get +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: cockroachdb + namespace: cockroachdb + labels: + app: cockroachdb +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: cockroachdb +subjects: +- kind: ServiceAccount + name: cockroachdb + namespace: default +--- +apiVersion: v1 +kind: Service +metadata: + # This service is meant to be used by clients of the database. It exposes a ClusterIP that will + # automatically load balance connections to the different database pods. + name: cockroachdb-public + namespace: cockroachdb + labels: + app: cockroachdb +spec: + ports: + # The main port, served by gRPC, serves Postgres-flavor SQL, internode + # traffic and the cli. + - port: 26257 + targetPort: 26257 + name: grpc + # The secondary port serves the UI as well as health and debug endpoints. + - port: 8080 + targetPort: 8080 + name: http + selector: + app: cockroachdb +--- +apiVersion: v1 +kind: Service +metadata: + # This service only exists to create DNS entries for each pod in the stateful + # set such that they can resolve each other's IP addresses. It does not + # create a load-balanced ClusterIP and should not be used directly by clients + # in most circumstances. + name: cockroachdb + namespace: cockroachdb + labels: + app: cockroachdb + annotations: + # Use this annotation in addition to the actual publishNotReadyAddresses + # field below because the annotation will stop being respected soon but the + # field is broken in some versions of Kubernetes: + # https://github.com/kubernetes/kubernetes/issues/58662 + service.alpha.kubernetes.io/tolerate-unready-endpoints: "true" + # Enable automatic monitoring of all instances when Prometheus is running in the cluster. + prometheus.io/scrape: "true" + prometheus.io/path: "_status/vars" + prometheus.io/port: "8080" +spec: + ports: + - port: 26257 + targetPort: 26257 + name: grpc + - port: 8080 + targetPort: 8080 + name: http + # We want all pods in the StatefulSet to have their addresses published for + # the sake of the other CockroachDB pods even before they're ready, since they + # have to be able to talk to each other in order to become ready. + publishNotReadyAddresses: true + clusterIP: None + selector: + app: cockroachdb +--- +apiVersion: policy/v1 +kind: PodDisruptionBudget +metadata: + name: cockroachdb-budget + namespace: cockroachdb + labels: + app: cockroachdb +spec: + selector: + matchLabels: + app: cockroachdb + maxUnavailable: 1 +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: cockroachdb + namespace: cockroachdb +spec: + serviceName: "cockroachdb" + replicas: 3 + selector: + matchLabels: + app: cockroachdb + template: + metadata: + labels: + app: cockroachdb + spec: + serviceAccountName: cockroachdb + affinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - weight: 100 + podAffinityTerm: + labelSelector: + matchExpressions: + - key: app + operator: In + values: + - cockroachdb + topologyKey: kubernetes.io/hostname + containers: + - name: cockroachdb + image: cockroachdb/cockroach:v24.1.2 + imagePullPolicy: IfNotPresent + # TODO: Change these to appropriate values for the hardware that you're running. You can see + # the resources that can be allocated on each of your Kubernetes nodes by running: + # kubectl describe nodes + # Note that requests and limits should have identical values. + resources: + requests: + cpu: "2" + memory: "2Gi" + limits: + cpu: "2" + memory: "2Gi" + ports: + - containerPort: 26257 + name: grpc + - containerPort: 8080 + name: http +# We recommend that you do not configure a liveness probe on a production environment, as this can impact the availability of production databases. +# livenessProbe: +# httpGet: +# path: "/health" +# port: http +# scheme: HTTPS +# initialDelaySeconds: 30 +# periodSeconds: 5 + readinessProbe: + httpGet: + path: "/health?ready=1" + port: http + scheme: HTTPS + initialDelaySeconds: 10 + periodSeconds: 5 + failureThreshold: 2 + volumeMounts: + - name: datadir + mountPath: /cockroach/cockroach-data + - name: certs + mountPath: /cockroach/cockroach-certs + env: + - name: COCKROACH_CHANNEL + value: kubernetes-secure + - name: GOMAXPROCS + valueFrom: + resourceFieldRef: + resource: limits.cpu + divisor: "1" + - name: MEMORY_LIMIT_MIB + valueFrom: + resourceFieldRef: + resource: limits.memory + divisor: "1Mi" + command: + - "/bin/bash" + - "-ecx" + # The use of qualified `hostname -f` is crucial: + # Other nodes aren't able to look up the unqualified hostname. + - exec + /cockroach/cockroach + start + --logtostderr + --certs-dir /cockroach/cockroach-certs + --advertise-host $(hostname -f) + --http-addr 0.0.0.0 + --join cockroachdb-0.cockroachdb,cockroachdb-1.cockroachdb,cockroachdb-2.cockroachdb + --cache $(expr $MEMORY_LIMIT_MIB / 4)MiB + --max-sql-memory $(expr $MEMORY_LIMIT_MIB / 4)MiB + # No pre-stop hook is required, a SIGTERM plus some time is all that's + # needed for graceful shutdown of a node. + terminationGracePeriodSeconds: 60 + volumes: + - name: datadir + persistentVolumeClaim: + claimName: datadir + - name: certs + secret: + secretName: cockroachdb.node + defaultMode: 256 + podManagementPolicy: Parallel + updateStrategy: + type: RollingUpdate + volumeClaimTemplates: + - metadata: + name: datadir + spec: + accessModes: + - "ReadWriteOnce" + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: datadir-cockroachdb-0 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/cockroachdb/0 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: datadir-cockroachdb-1 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/cockroachdb/1 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: datadir-cockroachdb-2 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/cockroachdb/2 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: datadir-cockroachdb-0 + namespace: cockroachdb +spec: + storageClassName: nfs-client + volumeName: datadir-cockroachdb-0 + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: datadir-cockroachdb-1 + namespace: cockroachdb +spec: + storageClassName: nfs-client + volumeName: datadir-cockroachdb-1 + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: datadir-cockroachdb-2 + namespace: cockroachdb +spec: + storageClassName: nfs-client + volumeName: datadir-cockroachdb-2 + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/dev/cockroachdb/run-server.sh b/dev/cockroachdb/run-server.sh new file mode 100644 index 0000000..c4f41a8 --- /dev/null +++ b/dev/cockroachdb/run-server.sh @@ -0,0 +1,41 @@ +#!/bin/bash + +launcherJar=( server/plugins/org.jkiss.dbeaver.launcher*.jar ) + +echo "Starting CloudBeaver Enterprise Server" + +[ ! -d "workspace/.metadata" ] && mkdir -p workspace/.metadata \ + && mkdir -p workspace/GlobalConfiguration/.dbeaver \ + && [ ! -f "workspace/GlobalConfiguration/.dbeaver/data-sources.json" ] \ + && cp conf/initial-data-sources.conf workspace/GlobalConfiguration/.dbeaver/data-sources.json + +exec java ${JAVA_OPTS} \ + -Dfile.encoding=UTF-8 \ + --add-modules=ALL-SYSTEM \ + --add-opens=java.base/java.io=ALL-UNNAMED \ + --add-opens=java.base/java.lang=ALL-UNNAMED \ + --add-opens=java.base/java.lang.reflect=ALL-UNNAMED \ + --add-opens=java.base/java.net=ALL-UNNAMED \ + --add-opens=java.base/java.nio=ALL-UNNAMED \ + --add-opens=java.base/java.nio.charset=ALL-UNNAMED \ + --add-opens=java.base/java.text=ALL-UNNAMED \ + --add-opens=java.base/java.time=ALL-UNNAMED \ + --add-opens=java.base/java.util=ALL-UNNAMED \ + --add-opens=java.base/java.util.concurrent=ALL-UNNAMED \ + --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED \ + --add-opens=java.base/jdk.internal.vm=ALL-UNNAMED \ + --add-opens=java.base/jdk.internal.misc=ALL-UNNAMED \ + --add-opens=java.base/sun.nio.ch=ALL-UNNAMED \ + --add-opens=java.base/sun.security.ssl=ALL-UNNAMED \ + --add-opens=java.base/sun.security.action=ALL-UNNAMED \ + --add-opens=java.base/sun.security.util=ALL-UNNAMED \ + --add-opens=java.security.jgss/sun.security.jgss=ALL-UNNAMED \ + --add-opens=java.security.jgss/sun.security.krb5=ALL-UNNAMED \ + --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED \ + --add-opens=java.sql/java.sql=ALL-UNNAMED \ + -jar ${launcherJar} \ + -product io.cloudbeaver.product.ee.product \ + -data ${workspacePath} \ + -web-config conf/cloudbeaver.conf \ + -nl en \ + -registryMultiLanguage diff --git a/dev/cockroachdb/uninstall.sh b/dev/cockroachdb/uninstall.sh new file mode 100755 index 0000000..e72dc03 --- /dev/null +++ b/dev/cockroachdb/uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash +microk8s kubectl delete -f cockroachdb.yaml +microk8s kubectl delete pvc datadir-cockroachdb-0 -n cockroachdb +microk8s kubectl delete pvc datadir-cockroachdb-1 -n cockroachdb +microk8s kubectl delete pvc datadir-cockroachdb-2 -n cockroachdb +microk8s kubectl delete secret cockroachdb.node -n cockroachdb +microk8s kubectl delete secret cockroachdb.client.root -n cockroachdb +microk8s kubectl delete ns cockroachdb +rm -rf certs +rm -rf my-safe-directory diff --git a/dev/cosign/README.md b/dev/cosign/README.md new file mode 100755 index 0000000..ba7193c --- /dev/null +++ b/dev/cosign/README.md @@ -0,0 +1,40 @@ +#signing image with sbom + +#generate sbom in spdx-format + +syft quay.alldcs.nl/allard/olproperties:master -o spdx > olproperties.spdx + +#attach the sbom to the image: + +cosign attach sbom --sbom olproperties.spdx quay.alldcs.nl/allard/olproperties:master + +WARNING: Attaching SBOMs this way does not sign them. If you want to sign them, use ' +cosign attest --predicate olproperties.spdx --key ' or 'cosign sign --key --attachment sbom ' + +Uploading SBOM file for [quay.alldcs.nl/allard/olproperties:master] to [quay.alldcs.nl/allard/olproperties:sha256-4d79a08eb15ea8c9730e77fc54bea37299b4ed21d8b875d95fd54cd78e3556c9.sbom] with mediaType [text/spdx]. + +#singn the sbom: + +cosing sign --key cosign.key quay.alldcs.nl/allard/olproperties:sha256-4d79a08eb15ea8c9730e77fc54bea37299b4ed21d8b875d95fd54cd78e3556c9.sbom + +- output: + +Enter password for private key: +WARNING: Image reference quay.alldcs.nl/allard/olproperties:sha256-4d79a08eb15ea8c9730e77fc54bea37299b4ed21d8b875d95fd54cd78e3556c9.sbom uses a tag, not a digest, to identify the image to sign. + This can lead you to sign a different image than the intended one. Please use a + digest (example.com/ubuntu@sha256:abc123...) rather than tag + (example.com/ubuntu:latest) for the input to cosign. The ability to refer to + images by tag will be removed in a future release. + + + The sigstore service, hosted by sigstore a Series of LF Projects, LLC, is provided pursuant to the Hosted Project Tools Terms of Use, available at https://lfprojects.org/policies/hosted-project-tools-terms-of-use/. + Note that if your submission includes personal data associated with this signed artifact, it will be part of an immutable record. + This may include the email address associated with the account with which you authenticate your contractual Agreement. + This information will be used for signing this artifact and will be stored in public transparency logs and cannot be removed later, and is subject to the Immutable Record notice at https://lfprojects.org/policies/hosted-project-tools-immutable-records/. + +By typing 'y', you attest that (1) you are not submitting the personal data of any other person; and (2) you understand and agree to the statement and the Agreement terms at the URLs listed above. +Are you sure you would like to continue? [y/N] y +tlog entry created with index: 41682114 +Pushing signature to: quay.alldcs.nl/allard/olproperties + +#attest diff --git a/dev/cosign/catalog-info.yaml b/dev/cosign/catalog-info.yaml new file mode 100644 index 0000000..d894d73 --- /dev/null +++ b/dev/cosign/catalog-info.yaml @@ -0,0 +1,10 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-cosign + title: Cosign (dev) +spec: + type: service + lifecycle: production + owner: allarddcs + subcomponentOf: component:default/DEV-cluster diff --git a/dev/cosign/cosign.key b/dev/cosign/cosign.key new file mode 100755 index 0000000..867293c --- /dev/null +++ b/dev/cosign/cosign.key @@ -0,0 +1,11 @@ +-----BEGIN ENCRYPTED SIGSTORE PRIVATE KEY----- +eyJrZGYiOnsibmFtZSI6InNjcnlwdCIsInBhcmFtcyI6eyJOIjozMjc2OCwiciI6 +OCwicCI6MX0sInNhbHQiOiJxL1Fzdkk2di9JQlFjN096Z1N2aFhtNllYbGpHemVv +OFhDS2lRUE1jK0RvPSJ9LCJjaXBoZXIiOnsibmFtZSI6Im5hY2wvc2VjcmV0Ym94 +Iiwibm9uY2UiOiJ1T2h2c1AyMkh1d2M5RGF3OTZRNkVPcFNTTHhmbG5BKyJ9LCJj +aXBoZXJ0ZXh0IjoicHcxdm5BSENQUmgrZmMrM0t6UjVQTzdUU1hjcGRsMkEvdmhW +T3JHS2IzRWxtWGlNS2l3Wlo5M2pFT1MvdjZic3hjWXlOL3NKcmY0Ulc0TVQreDNw +SXJWd1duTlJCUWhmZ0VLb0xLZXhKNktOcnhTa1R0OE8zT25nZE1XNlBzSVZueldl +dTdZUWQrRW9KQnRxalVqb1dXYTBtTjcyNVZKVTFUNkNWNlh1K1UxVHNtYndKOWtB +TUpYVkttNmJyQys4MFJDL3dCS0x2dnZmTXc9PSJ9 +-----END ENCRYPTED SIGSTORE PRIVATE KEY----- diff --git a/dev/cosign/cosign.pub b/dev/cosign/cosign.pub new file mode 100755 index 0000000..69bcd06 --- /dev/null +++ b/dev/cosign/cosign.pub @@ -0,0 +1,4 @@ +-----BEGIN PUBLIC KEY----- +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEhvRXr/p/gE2ZVuf/aq+RktGqLWyR +fVHwC7ROAnfKL5zcsO3Deoao5nBXESQ9/6P/YB9Zjrw82ST2N4+e6bzFkA== +-----END PUBLIC KEY----- diff --git a/dev/cosign/olproperties.spdx b/dev/cosign/olproperties.spdx new file mode 100755 index 0000000..86c6d30 --- /dev/null +++ b/dev/cosign/olproperties.spdx @@ -0,0 +1,85579 @@ +SPDXVersion: SPDX-2.3 +DataLicense: CC0-1.0 +SPDXID: SPDXRef-DOCUMENT +DocumentName: quay.alldcs.nl/allard/olproperties +DocumentNamespace: https://anchore.com/syft/image/quay.alldcs.nl/allard/olproperties-61c53903-5d8d-4dab-a7de-0feb105774ff +LicenseListVersion: 3.21 +Creator: Organization: Anchore, Inc +Creator: Tool: syft-0.92.0 +Created: 2023-10-10T11:31:49Z + +##### Unpackaged files + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--about--.cpython-36.opt-1.pyc-7314dbf5dca99e34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--about--.cpython-36.opt-1.pyc-fc5230ffa4f95ec8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/__future__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--future--.cpython-36.opt-1.pyc-82e60336daa087c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/__future__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--future--.cpython-36.opt-2.pyc-a41ca6d27d308f6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-00c8ef91d429aa29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-0203baa8b6f189be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnfpluginscore/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-03d3fe8c77f50fd3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-0405a39da2708008 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/keylist/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-058fe2df355d8003 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-063e70a24c4fb099 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-09029d7e4fe8d0cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-0a7d6837e84d9c3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-12ed90316722ad3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-133d8ef687f8e7e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-1473ec0bdd42af92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-165995bed135e467 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-167327a68733a5a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-1982eebc0fc159c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/mainloop/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-1d0bd9b609d28c97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-2019a5e0338f3288 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-24105631a93ff688 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-2511a664dd30c890 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-26cb38fab61914a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-284dcca1964b9ef1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-28af62feb25c3bc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-29decca82df4f799 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/librepo/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-29ef19ba56d533e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-31f7a4b60f809010 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-32ea67152502e1e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3318f5a9f2808e87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-354ee15c23294564 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-378fedc1f8df93dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-397c6176322e5512 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3c92ac010f4a839a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3f30abb107278a66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3f93cf37a30614f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-41a9d75a8cf865fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-497e624491b24cf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4adcd7f1a48e8c12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4c5902d724a70931 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4d22e352e1974d50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4d95708de22d0f53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-502495156c470092 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/candlepin/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5501e1d157fec60f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-558a33dcb4220597 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/extern/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5759be629813113a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-578c0c52484b73c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5b888df91545e8ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5e8a13d5fbbe6a62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5fcc3a466c4cbaa1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-60f149ffaa24de75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-660b9c4a1d1cddb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-6711792db1cc38dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-67673167a92260b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-6a569ba60aa8046a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/zoneinfo/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-71e81aa26c2ad073 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/model/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-72020bcc4b9a2c94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-7229453558ea3dc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-732a58a88b2ff484 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-744232b454046932 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-7f7a3dfed1d5be99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-80f3d3dc0bda7ef8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/test/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-86d82e0098b045b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-88fec597c2d06493 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/data/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-8a03cbb86f6477e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-8a946590ec419f3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-90fbeee4b8c7be88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9206d9df3b36e7e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9828ecf2aec54cfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-991a943cc552a54c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9dd8ab68ae021173 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9fb93b5a8e5d5718 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a0d11256ccac47ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/branding/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a2fdee8d133d6a61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a383da6208c8e6c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/cli/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a3e27755e22c8c6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/repository/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a48bc122290710a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a4db67ac49b75764 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a511d9f21f12d702 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a67e2e376c2a47ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a7032fb3cc4e26f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a88541ab38d1f1f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a8b59012358588df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-aaadd09eac070481 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-abcbeaa554ba4e28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/compat/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-af11075ffe4f4bf0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b180d579c7541fcd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b2b93edd098f9876 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b36959984b232d12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b4198dc98f6ba853 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b54823917cdeaf35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b5c83f15c392af76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b601dee80609a284 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c295ad24803ef7c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c52927a4bbacf190 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/plugin/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c52aabcd8aed47e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c87cf7603aa77d4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c9b1f7c3e639a441 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-cd0add7c2de3763a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d1f4bee5a31001bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d29a23ca2810abd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d4b1afc98f2a74e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/tofu/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d7dee6bf1a6bc7f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/api/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d9edf31306aa5fc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-dadf5e4dbdd1f92c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-ddd2f9040fe85335 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-ddf2dbf8c234ce53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-dfc81911117e9a39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e08ea33543746d8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e3cdf232cd6d0f44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e8497428fa253090 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e938b0b6af22b8af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/ga_impls/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-eacae27c4b8a73e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-eb2f82046aa36632 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/backports/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-eb50c11fdf02196a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-ebe8ec569341c7e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-f2bd2b115dc7d334 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-f673343fdc230327 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-f70d4e7364c6f38e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0585bf705180ceec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0a659e1ff826714a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0e59c2eace6a28ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0eaa7d2d6cd931c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0fde465ee16b4a5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-1831ce8d00923b12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-18c8e685b35b8e9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-2551da148a76630b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-2714fd2cfa8713ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-29d87d4eaa3ab29e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-2a4966480df0b688 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-394bbd2999551ef9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-4b327a11c084e4af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-5a80dfac812f4265 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-6db3b6dc9864dcb3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-7524c3abf5cb39ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-8545b1a9966f10b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-8b679c40f437d69d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-94230cc6a88b2e37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-97fe953b29e4dfde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-987ac8edc6924609 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-9d3aadf49edb8e1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-a41be7e9d3c1c206 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b01c6b82447c34ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b3868ca91bf45220 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b62972ed0d55164b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b7ad3f47be155e0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-bc26d3b536831a63 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-bd889e2df1447e76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-c683ca27748c7238 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-c7779a93be400030 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-cad93b6da68af350 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-d8a53622cc4f70a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-ddb8816b3ea67359 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-e200dece4692c59c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-e21df61fefea5bef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-e83df8f1804f05ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-f3a08e520f8fc0e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/__main__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-1.pyc-1e3872f9404e7cd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/__main__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-1.pyc-c263ed9a97c27f4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/__main__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-1.pyc-eb534e8cbde32f26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__pycache__/__main__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-1.pyc-fd68f5476c2cfc36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/__main__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-2.pyc-233fd857b8a70671 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__pycache__/__main__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-2.pyc-27a8717d744c2b3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/__main__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-2.pyc-35865e243dd89df3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/__main__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-2.pyc-df6a8ac571445dd2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/__phello__.foo.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--phello--.foo.cpython-36.opt-1.pyc-cdf091e7f1d4d9c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/__phello__.foo.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--phello--.foo.cpython-36.opt-2.pyc-39373982e138ae8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/__phello__.foo.cpython-36.pyc +SPDXID: SPDXRef-File-...--phello--.foo.cpython-36.pyc-a2f9287539caa86e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----about--.cpython-36.pyc-0cede162ca8e5e02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----about--.cpython-36.pyc-97a80f94464abbf8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/__future__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----future--.cpython-36.pyc-72ba3dfb08bfafed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/branding/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-00a9d4c170e10426 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0395c6a8f8d39ebb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0776f681adc97192 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-07b4378a4349c8e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-080c666f693cedaf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0a85a9fadd0431bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0b143480894caec4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0e4e38eb6ea8522c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/compat/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0fbdb4e61ef65c5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1af56c3b0c412a7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1b1232dfc5d46dc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1b49c6b81194c68c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1d17b31324dd368b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/repository/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1d24790747007727 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1d4ed8f2bd640cf7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/model/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1e8c733397d3acef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1f3bb5647e55e060 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2275d9b12f95ab80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-25d9da5db3b5c53e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2710be33ee8a249b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/candlepin/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-280c4d68292a8b17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/mainloop/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2a726ff5eebc3cfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2bfdc52c45f181e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/zoneinfo/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2cd1438f16771709 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2dd5656c4a045241 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/plugin/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-30a0f7eee95fa48d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-315264f5a5c4102f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-333b5b442d370332 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-34ea6e7e87928257 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-3ca1068fed2aa8f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-3e5f92c635e4cf9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-3f7706915bf470d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-430881cff1995c4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-44d5c4d6580bee2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-453a4258ac22674b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/tofu/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-46df96ad39cd366c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-48e41a74932617ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/librepo/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-4b988aceb8a5ca56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnfpluginscore/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-4ca67d14e7e85c91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-51e0d059c88d6d78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-51ff74a5e8088111 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/test/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-57402724ee7c8a07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5b89bf3798a50a71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5d4b079b51de6bf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5efbf95f6d4724ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5fe8fafdb95ad64b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-62e6b8f9bf6a7398 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-6370fb055dd402b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/backports/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-68a8eac98dd26e65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-6b2c16ef0d98162b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-6dd85856ca14078b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-757461db2a2d2d92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-78c680e3933ebe01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-7a046842b2d1a443 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-7bd0561def8d514c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-7e811b3b14538ce5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-801dab2ad7ca448f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-8106720db85c9ea2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/data/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-8675a0b2164add55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-89bbb842466bbb02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-8a7ae778ffac5971 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-9525571a5efa957c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-95490423f0e8362e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-9931ffd34cf3038e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-99bedb70f8f49c78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-9daeb0568d269716 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-a1fbcfc027b39a86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/api/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-a3ad8c5af0b398a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-a7662c3a634d10ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ad075b9273a66499 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/keylist/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ae3bd0c36f9be65d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-aedd9ecfe572c247 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-af0116cde64da19f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-af59d642bc4dfe41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-afbf96b973770ebb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/extern/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b09374768d34c840 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b1139e9c9619c90a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/cli/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b1d6823ef3c8ab3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b56ac2bdf8b4b30f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b6c26f1b59d0ac2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-bfa0723d249dc339 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c2561cfa174b5a16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c48251d3bbcd2181 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c5d6765d4f3574e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c91a3307660ff4ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ca84232d13da64db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-caaf3e2b3d45246b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-cfe8d056b8ff5be9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d221e000e82bc8b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d3925189185938c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d5adb37c6a63c4ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d5de2286697cfcd2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d63c204f605bf103 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d68c0f555bee6e9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d6c0bb56f2bf99d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d8d3d7017758f9ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d9c49a5a0c299888 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-de15d5cff3a09d38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e13c0d69b96e0e27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e4544562cde4e023 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e4c62cfa29f57324 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e6b4ab9dad9ed1c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e836bcad45c0759d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ea2888088990b4bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f03b7d59a78ca2e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f26e37a23a8111b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f7e606c2d1ee91e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f8282c467e8dcc04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f9af71a26830833d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/ga_impls/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-fd5d76d89b651662 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-fd77032e6e161a29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__pycache__/__main__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----main--.cpython-36.pyc-2fa76ffa5edff89c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/__main__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----main--.cpython-36.pyc-c68874162263d457 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/__main__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----main--.cpython-36.pyc-d4c55792a29114f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/__main__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----main--.cpython-36.pyc-e9d2e4587cc46a27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/__version__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----version--.cpython-36.pyc-e2957adc2add610e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/_base.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache----base.cpython-36.opt-1.pyc-09bab0e06d5edc54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/_base.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache----base.cpython-36.opt-2.pyc-dba9f2eeda54e6d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/_base.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----base.cpython-36.pyc-c2d9072427a9e8e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_bootlocale.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----bootlocale.cpython-36.pyc-b7ab44f9b756f79f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/_bootstrap.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----bootstrap.cpython-36.pyc-9131ebf4810273c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/_common.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----common.cpython-36.pyc-954eb6b4aea86724 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/_compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----compat.cpython-36.pyc-0a986677b22d0252 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----compat.cpython-36.pyc-6b850215a370f707 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----compat.cpython-36.pyc-abed07f78efa82d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_constants.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----constants.cpython-36.pyc-71825a1ff0e7861a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/_dbus.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache----dbus.cpython-36.opt-1.pyc-557d39414ac22cf6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/_endian.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----endian.cpython-36.pyc-64fc5760a5e80a82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/_exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----exceptions.cpython-36.pyc-b81a66595739f069 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_markupbase.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----markupbase.cpython-36.pyc-50bc24ca23c28b5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_parseaddr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----parseaddr.cpython-36.pyc-a339dec6837d4a6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_policybase.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----policybase.cpython-36.pyc-8180ac28d73020cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_pydecimal.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----pydecimal.cpython-36.pyc-b1f355a8bb9a2efc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_pyio.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache----pyio.cpython-36.opt-1.pyc-537bc39c75e8187c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_pyio.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache----pyio.cpython-36.opt-2.pyc-b3545a86bf0c9cef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_pyio.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----pyio.cpython-36.pyc-c6289ab6d1c5fd39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_strptime.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----strptime.cpython-36.pyc-c0c7f04687542c2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----structures.cpython-36.pyc-2b44f119b05667a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----structures.cpython-36.pyc-e0b06338884cf984 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/_uninstall.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----uninstall.cpython-36.pyc-6eb2f341b81d5415 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/_version.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----version.cpython-36.pyc-bbd244af629e83cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_weakrefset.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----weakrefset.cpython-36.pyc-d3763885c3a6dc06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementPath.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ElementPath.cpython-36.pyc-d2b80e16568da6fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementTree.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ElementTree.cpython-36.pyc-c5f11efb2ba6ee8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/GLib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---GLib.cpython-36.opt-1.pyc-7204102418c03aec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/GLib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---GLib.cpython-36.pyc-c32af2c3793e4da3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/GObject.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---GObject.cpython-36.pyc-cc3cc2f678fd384b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Gdk.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---Gdk.cpython-36.opt-1.pyc-8dbafcabb1605bfb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Gdk.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---Gdk.cpython-36.pyc-24a19287eb690a8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Gio.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---Gio.cpython-36.opt-1.pyc-9a36088d0e5345bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Gio.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---Gio.cpython-36.pyc-6f76b19384748f68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Gtk.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---Gtk.cpython-36.opt-1.pyc-32e1b7896cb81752 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Gtk.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---Gtk.cpython-36.pyc-c872bba1932daff5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/NodeFilter.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---NodeFilter.cpython-36.pyc-44db5ad2250c4dd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Pango.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---Pango.cpython-36.opt-1.pyc-c89cf57abf393eb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Pango.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---Pango.cpython-36.pyc-8c2be6045c695ceb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/abc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.opt-1.pyc-03dd786257dc5ee0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/abc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.opt-1.pyc-4f840c5842f6cec9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/__pycache__/abc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.opt-1.pyc-642684f4a9f7c1ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/abc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.opt-2.pyc-0cf64412c5f7aa72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/abc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.opt-2.pyc-35cab891507ef7be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/__pycache__/abc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.opt-2.pyc-67982876f8dea55c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/abc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.pyc-8701bb01b5564933 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/__pycache__/abc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.pyc-b4f88a0e06aefcb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/abc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.pyc-e55afae9d822ba45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/adapters.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---adapters.cpython-36.pyc-1fa52738902ac8e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/aifc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---aifc.cpython-36.opt-1.pyc-978b1589337f113b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/aifc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---aifc.cpython-36.opt-2.pyc-50b5c834fa11426c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/aifc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---aifc.cpython-36.pyc-0627c92cdb0a5ad9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/alg_lists.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---alg-lists.cpython-36.pyc-9888708c54e158e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/__pycache__/alg_lists.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---alg-lists.cpython-36.pyc-b33e8eaa97ddee31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/alias.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---alias.cpython-36.opt-1.pyc-76c1db2fdf967bd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/alias.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---alias.cpython-36.opt-1.pyc-f432db200a6865a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/alias.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---alias.cpython-36.pyc-39063dd02484774f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/alias.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---alias.cpython-36.pyc-753ff8dad27eabc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/aliases.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---aliases.cpython-36.pyc-97e5f669db3c0c87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/all.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---all.cpython-36.opt-1.pyc-24582d68329fd7ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/antigravity.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---antigravity.cpython-36.pyc-5964c555ae0fe27c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/candlepin/__pycache__/api.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---api.cpython-36.opt-1.pyc-015a4bd67a43d85f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/api.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---api.cpython-36.opt-1.pyc-6c5b9a3788bfa65d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/candlepin/__pycache__/api.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---api.cpython-36.pyc-5cf6632fd00bca3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/api.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---api.cpython-36.pyc-5e553732bf78bc37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---appdirs.cpython-36.pyc-9d0b181b3e35fd6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/appengine.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---appengine.cpython-36.pyc-aef7de65f552e28d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/application.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---application.cpython-36.pyc-3960c6103e3f3d51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/argparse.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---argparse.cpython-36.pyc-beea762df550e61d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/ascii.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---ascii.cpython-36.opt-1.pyc-bd041d1851d52876 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/ascii.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---ascii.cpython-36.opt-1.pyc-cf796960997236cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/ascii.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---ascii.cpython-36.opt-2.pyc-65d9b614821211cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/ascii.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---ascii.cpython-36.opt-2.pyc-728d47d8b9d211be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/ascii.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ascii.cpython-36.pyc-281af4c9eed0af4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/ascii.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ascii.cpython-36.pyc-5aba3b285e341192 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ast.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---ast.cpython-36.opt-1.pyc-0ea8b16a2a30cef1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ast.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---ast.cpython-36.opt-2.pyc-e37ba81625bdc91d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ast.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ast.cpython-36.pyc-3a888321d0c45a28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/async_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---async-utils.cpython-36.pyc-92cc5d21ab5eceb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/asynchat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---asynchat.cpython-36.pyc-f46942a8c01bfd37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/asyncore.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---asyncore.cpython-36.pyc-0d49614246a1a82f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/attach.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---attach.cpython-36.pyc-3e4c60f2e8734d5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/attach.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---attach.cpython-36.pyc-e7fd2728d97cfb03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/audio.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---audio.cpython-36.opt-1.pyc-d45b07dc79aec119 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/audio.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---audio.cpython-36.opt-2.pyc-f3cc4e9d79c16314 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/auth.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---auth.cpython-36.opt-1.pyc-99b8974258be9cf7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/auth.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---auth.cpython-36.pyc-e360426b7623b852 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/autoremove.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---autoremove.cpython-36.pyc-a558111badf2e1fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/aws.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---aws.cpython-36.opt-1.pyc-0f1983210d754872 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/aws.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---aws.cpython-36.pyc-badde5b1374a4d0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/azure.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---azure.cpython-36.opt-1.pyc-04b672c445b7eb21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/azure.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---azure.cpython-36.pyc-1c49876508fb3494 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_events.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---base-events.cpython-36.pyc-00ebc42f7ac74c62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/base_object.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---base-object.cpython-36.pyc-a6f493eb8ed7c32c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/base_plugin.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---base-plugin.cpython-36.pyc-f0f33f5dccd8fab1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_tasks.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---base-tasks.cpython-36.pyc-8912b294461281b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/base.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---base.cpython-36.opt-1.pyc-006f6147dd0857c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/base.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---base.cpython-36.opt-1.pyc-7dd1340a6265bf62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/base.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---base.cpython-36.opt-1.pyc-cee6e3850b70ac32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/base.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---base.cpython-36.opt-2.pyc-5301b62421266df0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/base64.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---base64.cpython-36.pyc-79f264374bf370ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/base64mime.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---base64mime.cpython-36.pyc-40b7902e8801df2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bdb.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---bdb.cpython-36.opt-1.pyc-fb832a4bea0ad628 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bdb.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---bdb.cpython-36.opt-2.pyc-11042189a871eee7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bdb.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bdb.cpython-36.pyc-ba26190462d72aa6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_dumb.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bdist-dumb.cpython-36.pyc-b9938f4db7c9fcb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bdist-egg.cpython-36.pyc-36ea23ae56d1f78a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_msi.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bdist-msi.cpython-36.pyc-221213a46b18751e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_rpm.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bdist-rpm.cpython-36.pyc-440d2f52abf22848 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bdist-rpm.cpython-36.pyc-c1d0172ed333e9fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---bdist.cpython-36.opt-1.pyc-0f7a9907affd78f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---bdist.cpython-36.opt-2.pyc-91c7fa0b7144d7b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bdist.cpython-36.pyc-a1f9e6fed222f21f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/big5.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---big5.cpython-36.opt-1.pyc-d908cbc0646a1194 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/big5.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---big5.cpython-36.opt-2.pyc-9e86386ed99b153a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/big5.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---big5.cpython-36.pyc-231b88225f5e976f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/big5freq.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---big5freq.cpython-36.pyc-5fc062249ff0ac1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/big5hkscs.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---big5hkscs.cpython-36.pyc-bbbdded9e22ec658 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/big5prober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---big5prober.cpython-36.pyc-de2efe71ef2b5179 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/bind.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---bind.cpython-36.opt-1.pyc-f840df645a88e875 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/bind.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bind.cpython-36.pyc-56fbcba52c23f221 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bindings.cpython-36.pyc-ed041a04fcc62f3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/binhex.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---binhex.cpython-36.pyc-c0f31f46e84192a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bisect.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bisect.cpython-36.pyc-5b9e1b23c5ea85c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/bitstream.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bitstream.cpython-36.pyc-3dd45cbc0c2096bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/btm_matcher.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---btm-matcher.cpython-36.pyc-ffa172fd1bca28bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/btm_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---btm-utils.cpython-36.pyc-405d198e599efa18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/build_clib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build-clib.cpython-36.pyc-2643643781363bf6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_clib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build-clib.cpython-36.pyc-e2914b0c8e64bc85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/build_ext.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build-ext.cpython-36.pyc-5c0b90e6e35304b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_ext.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build-ext.cpython-36.pyc-ce2848eb1fedee75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/build_meta.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build-meta.cpython-36.pyc-15d91e9377d2337d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_py.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build-py.cpython-36.pyc-b935725573b9aa57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/build_py.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build-py.cpython-36.pyc-cc47b608c2c1e78f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---build.cpython-36.opt-1.pyc-7ac69d5082bcbdb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---build.cpython-36.opt-2.pyc-7f46ce515c462b06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build.cpython-36.pyc-3a11d566b376cf4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/builddep.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---builddep.cpython-36.pyc-8597d5681bf439ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/bus.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---bus.cpython-36.opt-1.pyc-ad1f9af472e35ebf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/bz2_codec.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bz2-codec.cpython-36.pyc-551d4f372f32a161 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bz2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---bz2.cpython-36.opt-1.pyc-0f5db09c6302f426 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bz2.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---bz2.cpython-36.opt-2.pyc-e945b5b8f75286e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bz2.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bz2.cpython-36.pyc-938daf1e42ce6965 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cProfile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cProfile.cpython-36.pyc-18cb72f6b88c5239 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cache.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cache.cpython-36.opt-1.pyc-3c71a2616316392e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cache.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cache.cpython-36.pyc-d6b9726a1e73acf0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/calendar.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---calendar.cpython-36.pyc-635ba7dee793fd7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/callback.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---callback.cpython-36.pyc-397552d6b0581657 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/callbacks.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---callbacks.cpython-36.pyc-87d3f4586a48ab25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/case.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---case.cpython-36.opt-1.pyc-0be4bc615292b360 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/case.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---case.cpython-36.opt-2.pyc-beab5831bf8ec0e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/case.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---case.cpython-36.pyc-17e9a1301235f73c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/ccompiler.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ccompiler.cpython-36.pyc-c71bcae162907c6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cert_sorter.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cert-sorter.cpython-36.pyc-bce0ac85293257e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/certificate.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---certificate.cpython-36.pyc-0a324636ddbf7d7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/certlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---certlib.cpython-36.pyc-65d89bdc30d0d628 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/certs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---certs.cpython-36.opt-1.pyc-8350081436c0e7b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/certs.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---certs.cpython-36.pyc-399bcbb9077a8469 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cgi.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cgi.cpython-36.opt-1.pyc-e11d50577bfab21b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cgi.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cgi.cpython-36.opt-2.pyc-ffb559ecc69cbba4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cgi.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cgi.cpython-36.pyc-9954779aa8c6a2fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cgitb.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cgitb.cpython-36.opt-1.pyc-54c2af1c9627fa75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cgitb.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cgitb.cpython-36.opt-2.pyc-5731a19b65de2617 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cgitb.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cgitb.cpython-36.pyc-223c7221d52606ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/changelog.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---changelog.cpython-36.pyc-3ea284e5df71390d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/cli/__pycache__/chardetect.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---chardetect.cpython-36.pyc-021306676da3ac2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/charmap.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---charmap.cpython-36.pyc-ba7d4c0b9c711b5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/charset.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---charset.cpython-36.pyc-3768579998bac900 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/check.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---check.cpython-36.opt-1.pyc-0e94a4ae6b6d6d8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/check.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---check.cpython-36.opt-1.pyc-dae45e9167458d5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/check.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---check.cpython-36.opt-2.pyc-6b7e95c143632a83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/check.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---check.cpython-36.pyc-2661715e01fc2027 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/check.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---check.cpython-36.pyc-e0f29c3b98f326af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/chunk.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---chunk.cpython-36.opt-1.pyc-aeb0600dd7ad91ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/chunk.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---chunk.cpython-36.opt-2.pyc-57ad5820ee472f21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/chunk.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---chunk.cpython-36.pyc-0d2f5623d09b76bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/clean.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---clean.cpython-36.opt-1.pyc-af5e4beee9a2d7ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/clean.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---clean.cpython-36.opt-1.pyc-d46eb3429c011e18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/clean.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---clean.cpython-36.opt-2.pyc-c508782d2f680d54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/clean.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---clean.cpython-36.pyc-449d32d7f2c02903 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/clean.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---clean.cpython-36.pyc-cc2b6470a10e0796 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/cleanup.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cleanup.cpython-36.pyc-d0f57a3b93fc764d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cli.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-051c86ff845bac4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/cli.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-11b3efc733f00ba1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/cli.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-4ed87de7e93ab353 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/__pycache__/cli.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-5c5be15c91500a69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/cli.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-b3f737d8a8f9769a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/cli.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.pyc-1ea30d4df51e6b96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/__pycache__/cli.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.pyc-92cb55c36b7fbc29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cli.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.pyc-f66c901ace0d476c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/client.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---client.cpython-36.pyc-04855f2d80e4c115 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/client.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---client.cpython-36.pyc-715e136b390fc69b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/cloud_facts.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cloud-facts.cpython-36.pyc-1f5d26ec8bdd054c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/cmd.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cmd.cpython-36.opt-1.pyc-8750d352ed61401c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cmd.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cmd.cpython-36.opt-1.pyc-a5761558af3b3900 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/cmd.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cmd.cpython-36.opt-2.pyc-468f15d7618297f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cmd.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cmd.cpython-36.opt-2.pyc-6cc1c44bb894cc9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/cmd.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cmd.cpython-36.pyc-1a30c389d097a20f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cmd.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cmd.cpython-36.pyc-2a78a4584395eb78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/code.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---code.cpython-36.opt-1.pyc-cdda0d5a0e701810 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/code.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---code.cpython-36.opt-2.pyc-488152d771d60729 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/code.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---code.cpython-36.pyc-5c18cf69e225a99b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/codec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---codec.cpython-36.opt-1.pyc-6f68f77b84fd660f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/codecs.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---codecs.cpython-36.pyc-67d6660957f8f468 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/codeop.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---codeop.cpython-36.pyc-7c5615e5230cda56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/collection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---collection.cpython-36.pyc-e9d8ce82384d322e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/collector.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---collector.cpython-36.pyc-95303a50700ed05f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/colorsys.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---colorsys.cpython-36.pyc-28285dbffa8629ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/commands.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---commands.cpython-36.pyc-8afd05e67c14c2e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---compat.cpython-36.pyc-7976c9c7869e0fef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---compat.cpython-36.pyc-a024e09ed94e6537 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---compat.cpython-36.pyc-cc4373645daf653c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---compat.cpython-36.pyc-ddc9819200a30bba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/compileall.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---compileall.cpython-36.pyc-6ae29b5a94775efc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/comps.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---comps.cpython-36.opt-1.pyc-eae723039bfef6b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/conf.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---conf.cpython-36.opt-1.pyc-fa01515187993ad0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---config.cpython-36.pyc-0aeefbb2fd97891f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---config.cpython-36.pyc-1b4cb13f863d66e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---config.cpython-36.pyc-85973b09c9f2ec30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---config.cpython-36.pyc-aecf31682c448d0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---config.cpython-36.pyc-c4bca7dd640c04e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---config.cpython-36.pyc-cf909a4cb9342d04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---config.cpython-36.pyc-d6b32c0f2ae99b12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/connection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---connection.cpython-36.pyc-014c8c615c1a2369 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/connection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---connection.cpython-36.pyc-0c111c4e08a739dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/__pycache__/connection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---connection.cpython-36.pyc-11d2d9443ed0d2a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/connection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---connection.cpython-36.pyc-76904ec1f3ece1b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/connection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---connection.cpython-36.pyc-7c835a34b96c186f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/connection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---connection.cpython-36.pyc-84a17137488311f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/connection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---connection.cpython-36.pyc-a5d48132499aef4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/const.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---const.cpython-36.opt-1.pyc-f23676cc1b7342fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/constants.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---constants.cpython-36.pyc-94a5f49121fe66ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/constants.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---constants.cpython-36.pyc-a7d5a36c7a4dd617 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/constants.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---constants.cpython-36.pyc-d09a1abe50b9290b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/consumer.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---consumer.cpython-36.pyc-3419ecd31d1d6385 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/consumer.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---consumer.cpython-36.pyc-f4f5680fabfbe81e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/context.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---context.cpython-36.pyc-4f8e984dc2ea1986 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/contextlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---contextlib.cpython-36.pyc-8a5539864cbd3149 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/conv.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---conv.cpython-36.opt-1.pyc-24d0dbd509770d7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/conv.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---conv.cpython-36.opt-2.pyc-04e1762ee149dd1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/cookiejar.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cookiejar.cpython-36.pyc-c2f78ed22b94563c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/cookies.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cookies.cpython-36.pyc-5c166b7f0d75ecc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/cookies.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cookies.cpython-36.pyc-f971f81d5553c456 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/copr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---copr.cpython-36.opt-1.pyc-c6e554301508f73c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/copr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---copr.cpython-36.pyc-3edd7203c15dffda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/copy.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---copy.cpython-36.opt-1.pyc-1d3ff7165c0de39a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/copy.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---copy.cpython-36.opt-2.pyc-0943e33d2bbb95e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/copy.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---copy.cpython-36.pyc-5830c78927a4eed0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/copyreg.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---copyreg.cpython-36.pyc-cc23b86087d12a10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/core.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---core.cpython-36.opt-1.pyc-24879659fcb09933 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/core.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---core.cpython-36.opt-1.pyc-6736b19ac8fb6e10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/core.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---core.cpython-36.opt-1.pyc-f85140e86efb7b4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/core.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---core.cpython-36.opt-2.pyc-ea4e32aa80f73d19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/core.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---core.cpython-36.pyc-9d33cec74d58699e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/coroutines.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---coroutines.cpython-36.pyc-f3a9e7312b01d44d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cp_provider.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp-provider.cpython-36.pyc-5713eede6635d8c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp037.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp037.cpython-36.opt-1.pyc-6c865aa7b69e4032 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp037.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp037.cpython-36.opt-2.pyc-acfa54de78215799 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp037.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp037.cpython-36.pyc-4c73902ef0cd5f47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1006.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1006.cpython-36.pyc-5148b403fce01cde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1026.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1026.cpython-36.pyc-471785cc98d03aa3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1125.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1125.cpython-36.pyc-2852fcf001355b8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1140.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1140.cpython-36.pyc-11284fe5751e4c34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1250.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1250.cpython-36.pyc-c5fb949e20f1da7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1251.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1251.cpython-36.pyc-3a7503b5a8b50e31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1252.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1252.cpython-36.pyc-efa2a35957bdc742 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1253.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1253.cpython-36.pyc-6e53eba16d83f4c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1254.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1254.cpython-36.pyc-be6c4771cf714db0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1255.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1255.cpython-36.pyc-c7fe652dcf1583c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1256.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1256.cpython-36.pyc-8b3eeb5802ef9cba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1257.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1257.cpython-36.pyc-525ee176207c29fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1258.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1258.cpython-36.pyc-cc8180fd947ef563 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp273.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp273.cpython-36.opt-1.pyc-deb76eb59a4be0c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp273.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp273.cpython-36.opt-2.pyc-0da3edabcffb3168 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp273.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp273.cpython-36.pyc-f91f86f7e9e22a3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp424.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp424.cpython-36.opt-1.pyc-ae005c4d48fb6e79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp424.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp424.cpython-36.opt-2.pyc-c341efe664fc3def +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp424.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp424.cpython-36.pyc-bfaa1cc5bb788514 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp437.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp437.cpython-36.opt-1.pyc-9fb53a2f3ddf38f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp437.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp437.cpython-36.opt-2.pyc-de263606e9813722 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp437.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp437.cpython-36.pyc-f5a82b717c380f5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp500.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp500.cpython-36.opt-1.pyc-a76185c6cd0f08af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp500.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp500.cpython-36.opt-2.pyc-81f79925ced511a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp500.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp500.cpython-36.pyc-fe480023d4588d8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp65001.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp65001.cpython-36.pyc-20250c3924676733 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp720.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp720.cpython-36.opt-1.pyc-5baffcab5c788a25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp720.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp720.cpython-36.opt-2.pyc-63345ac34538bf7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp720.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp720.cpython-36.pyc-794352cb650d9a03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp737.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp737.cpython-36.opt-1.pyc-2e418b759e64947a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp737.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp737.cpython-36.opt-2.pyc-18ffb26b1a6b27e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp737.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp737.cpython-36.pyc-d792bdd457f4b498 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp775.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp775.cpython-36.opt-1.pyc-9ffe9e76676b0ce3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp775.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp775.cpython-36.opt-2.pyc-91d301b47e050bd8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp775.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp775.cpython-36.pyc-d566bb6b6d9a5043 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp850.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp850.cpython-36.opt-1.pyc-c597c30a30872953 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp850.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp850.cpython-36.opt-2.pyc-49055063ed5aba5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp850.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp850.cpython-36.pyc-ce9deedf0b66e7c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp852.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp852.cpython-36.opt-1.pyc-d2ab0f3f68ca11f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp852.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp852.cpython-36.opt-2.pyc-c3acb8dab78eed3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp852.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp852.cpython-36.pyc-d4a9c51fd75b9fe2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp855.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp855.cpython-36.opt-1.pyc-44dc44b00d6172fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp855.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp855.cpython-36.opt-2.pyc-9c959132c46e966e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp855.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp855.cpython-36.pyc-b2efdf59c0bc57f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp856.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp856.cpython-36.opt-1.pyc-fbe52fa751a3219c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp856.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp856.cpython-36.opt-2.pyc-6fe2143b19c8ca65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp856.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp856.cpython-36.pyc-2d7162cdc1e728b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp857.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp857.cpython-36.opt-1.pyc-199d59dfe244b373 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp857.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp857.cpython-36.opt-2.pyc-37b6baacfec8377e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp857.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp857.cpython-36.pyc-a8ae0e218b03f9aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp858.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp858.cpython-36.opt-1.pyc-bf934e353d4adf99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp858.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp858.cpython-36.opt-2.pyc-851a4a7c310fa8c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp858.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp858.cpython-36.pyc-74ac2a3060da9832 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp860.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp860.cpython-36.opt-1.pyc-0f5baef2b1d72e01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp860.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp860.cpython-36.opt-2.pyc-29db331e2887b7d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp860.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp860.cpython-36.pyc-12f3676a67263acb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp861.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp861.cpython-36.opt-1.pyc-18c558edbd9f4575 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp861.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp861.cpython-36.opt-2.pyc-1452c53861fd9112 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp861.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp861.cpython-36.pyc-50fadb0eb71dbdae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp862.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp862.cpython-36.opt-1.pyc-eb42b304852968d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp862.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp862.cpython-36.opt-2.pyc-c15cb7da203e7c8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp862.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp862.cpython-36.pyc-b341314650a687a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp863.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp863.cpython-36.opt-1.pyc-e4bf64c43be37816 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp863.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp863.cpython-36.opt-2.pyc-f09408d9c857c495 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp863.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp863.cpython-36.pyc-7a69b35e4199df10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp864.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp864.cpython-36.opt-1.pyc-e9b5a6472cec1335 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp864.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp864.cpython-36.opt-2.pyc-9f1f1281eed58bd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp864.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp864.cpython-36.pyc-9ce2575f690a610c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp865.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp865.cpython-36.opt-1.pyc-18a4ddb1ef3bcaf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp865.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp865.cpython-36.opt-2.pyc-24a7420746b938d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp865.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp865.cpython-36.pyc-06644093b7658ba7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp866.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp866.cpython-36.opt-1.pyc-5ea9807a4101da3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp866.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp866.cpython-36.opt-2.pyc-a01fd20e2873f816 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp866.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp866.cpython-36.pyc-331681447d29117c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp869.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp869.cpython-36.opt-1.pyc-54e099aec6193a14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp869.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp869.cpython-36.opt-2.pyc-719a352665e0d6b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp869.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp869.cpython-36.pyc-ee66023970d3ee9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp874.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp874.cpython-36.opt-1.pyc-105523802adcfd0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp874.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp874.cpython-36.opt-2.pyc-ddc09e4353ebcfa7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp874.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp874.cpython-36.pyc-770f62d2031711ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp875.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp875.cpython-36.opt-1.pyc-bf7b968cd3ca1e1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp875.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp875.cpython-36.opt-2.pyc-09765646b9a84873 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp875.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp875.cpython-36.pyc-811d81b62893a54b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp932.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp932.cpython-36.opt-1.pyc-3ae3fd11e6ca2dc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp932.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp932.cpython-36.opt-2.pyc-fe619d08e323b4a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp932.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp932.cpython-36.pyc-ffab37a5d331869b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp949.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp949.cpython-36.opt-1.pyc-4ce005ee3266e39e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp949.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp949.cpython-36.opt-2.pyc-2fc89cec411e84d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp949.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp949.cpython-36.pyc-7869b13e23715300 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/cp949prober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp949prober.cpython-36.pyc-036a0b06dc05cb5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp950.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp950.cpython-36.opt-1.pyc-9e6d3449813a2d1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp950.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp950.cpython-36.opt-2.pyc-e3aaeb450e038b9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp950.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp950.cpython-36.pyc-7906fad138e7f712 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/cpuinfo.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cpuinfo.cpython-36.pyc-61957209304bc493 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cpuinfo.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cpuinfo.cpython-36.pyc-c91403c0707df374 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/create.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---create.cpython-36.pyc-aed88758b062dddc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/crypt.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---crypt.cpython-36.opt-1.pyc-07812bdf3518874f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/crypt.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---crypt.cpython-36.opt-2.pyc-77148518d8c5fe44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/crypt.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---crypt.cpython-36.pyc-d646e890f7945e35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/csv.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---csv.cpython-36.opt-1.pyc-0e35f63e6fdd15c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/csv.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---csv.cpython-36.opt-2.pyc-2ed7c1fdaab5666d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/csv.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---csv.cpython-36.pyc-532e18d81ca49d9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/custom.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---custom.cpython-36.pyc-c11473d25cf42341 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/__pycache__/daemon.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---daemon.cpython-36.pyc-63d31ba6715b03b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/datetime.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---datetime.cpython-36.pyc-dd24f062a27d6591 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/dbapi2.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dbapi2.cpython-36.pyc-1a666520db10e319 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/dbus_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dbus-utils.cpython-36.pyc-875d59c6e793d50a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/debug.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---debug.cpython-36.opt-1.pyc-885d8924c0914807 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/debug.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---debug.cpython-36.opt-1.pyc-93f5914d19d9a116 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/debug.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---debug.cpython-36.opt-2.pyc-bce8c9c4bc25ffdf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/debug.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---debug.cpython-36.pyc-3fdc9d1c66bdde44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/debug.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---debug.cpython-36.pyc-9027acb34e40b097 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/decimal.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---decimal.cpython-36.pyc-e5ab1b3798d49407 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/decoder.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---decoder.cpython-36.pyc-6ec994dd0541be7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/decorator.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---decorator.cpython-36.pyc-64f28fd874896c57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/decorators.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---decorators.cpython-36.pyc-d6ef60a2f13845e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dep_util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dep-util.cpython-36.pyc-619f50d74e1387cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/dep_util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dep-util.cpython-36.pyc-64a1e0f35b2313ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/depends.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---depends.cpython-36.pyc-329b4469090b5a23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/deplist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---deplist.cpython-36.pyc-262830bc6024103d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/develop.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---develop.cpython-36.pyc-a85ec7e91b919622 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/difflib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---difflib.cpython-36.pyc-24f9c88f00ba0947 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dir_util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dir-util.cpython-36.pyc-b406bbeaeeafe0d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/dis.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---dis.cpython-36.opt-1.pyc-555fb0d2cf6b52b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/dis.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---dis.cpython-36.opt-2.pyc-7c234cfc17e204a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/dis.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dis.cpython-36.pyc-8eb32325219fc9a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/dist_info.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dist-info.cpython-36.pyc-e46cd84ed99866d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/dist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---dist.cpython-36.opt-1.pyc-97403fb2cdcf418c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---dist.cpython-36.opt-1.pyc-ff0cbde7a2dac45a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dist.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---dist.cpython-36.opt-2.pyc-9872bd83c1810c23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/dist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dist.cpython-36.pyc-0c83aeaa30d6ba42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dist.cpython-36.pyc-e4c61bc9d0d50c8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/distrosync.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---distrosync.cpython-36.pyc-37be5ad5c0dceea7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/__pycache__/dmidecode.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dmidecode.cpython-36.pyc-8e30921ebc349e05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/dmiinfo.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dmiinfo.cpython-36.pyc-a9ddf08816883be7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/docstring.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---docstring.cpython-36.pyc-76342b2280062e7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/doctest.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---doctest.cpython-36.pyc-1dffa4262e07f3ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/downgrade.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---downgrade.cpython-36.pyc-fe94b1ff07125492 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/download.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---download.cpython-36.pyc-facbc5ef6ba14a4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/driver.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---driver.cpython-36.pyc-788385517b66f029 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/drpm.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---drpm.cpython-36.opt-1.pyc-f1bf1546b586ac4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/__pycache__/drv_libxml2.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---drv-libxml2.cpython-36.pyc-1098db0637559b44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/dumb.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---dumb.cpython-36.opt-1.pyc-5eeb6eef163fc591 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/dumb.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---dumb.cpython-36.opt-2.pyc-b65cd26d7000ded0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/dump.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---dump.cpython-36.opt-1.pyc-3a1fd45673cf34ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/dump.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---dump.cpython-36.opt-2.pyc-3c078816498dfbcb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/dump.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dump.cpython-36.pyc-737cae48a9177400 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/dyld.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---dyld.cpython-36.opt-1.pyc-80f30cba5d986974 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/dyld.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---dyld.cpython-36.opt-2.pyc-428481bea0d0c24e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/dyld.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dyld.cpython-36.pyc-fa70c931bab109fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/dylib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---dylib.cpython-36.opt-1.pyc-1ba241c66b384f03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/dylib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---dylib.cpython-36.opt-2.pyc-1c1d062fc1636daf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/dylib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dylib.cpython-36.pyc-1f05d5366da05a9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/easter.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---easter.cpython-36.pyc-a0cb7471ab289c13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/egg_info.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---egg-info.cpython-36.pyc-3f7ca3c9f62d282d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/encoder.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---encoder.cpython-36.pyc-4011448f3b9cedb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/encoders.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---encoders.cpython-36.pyc-7725e3f5d9f5450a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/data/__pycache__/encoding.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---encoding.cpython-36.pyc-f6a4fd42fcbc6406 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/model/__pycache__/ent_cert.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ent-cert.cpython-36.pyc-82c3eb260c1cc0a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/entbranding.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---entbranding.cpython-36.pyc-942517f2a0177473 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/entcertlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---entcertlib.cpython-36.pyc-e73cfd46fdd23057 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/entities.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---entities.cpython-36.pyc-6ab004e38ed712a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/entitlement.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---entitlement.cpython-36.pyc-83f359963a36c5e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/entitlement.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---entitlement.cpython-36.pyc-b915dbd2cfb05a43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/enum.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---enum.cpython-36.opt-1.pyc-1e2773019ce2e3de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/enum.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---enum.cpython-36.opt-2.pyc-2b257fc3a62acd70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/enum.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---enum.cpython-36.pyc-558d68353b035a85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/enums.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---enums.cpython-36.opt-1.pyc-14caf48a1f99f4b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/enums.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---enums.cpython-36.pyc-adad0f344df891ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/error.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---error.cpython-36.opt-1.pyc-724e5e4b3fdced1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/error.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---error.cpython-36.opt-1.pyc-77eef482d75a1cc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/error.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---error.cpython-36.opt-1.pyc-db9f0195c1d3adb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/error.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---error.cpython-36.opt-2.pyc-d009c31216cfe4aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/error.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---error.cpython-36.pyc-14d7696a2a17a83e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/error.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---error.cpython-36.pyc-713d7c162dfb7264 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/errors.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---errors.cpython-36.pyc-174ce5cdd7f822f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/errors.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---errors.cpython-36.pyc-e90abb835152542f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/escprober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---escprober.cpython-36.pyc-c114164f79d01fd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/escsm.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---escsm.cpython-36.opt-1.pyc-dd62f93107b82041 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/escsm.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---escsm.cpython-36.pyc-23add3b075a622a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jp.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---euc-jp.cpython-36.pyc-85b8e4b9fb32760a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_kr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---euc-kr.cpython-36.pyc-9b5435d0ff40bd55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/eucjpprober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---eucjpprober.cpython-36.pyc-a054dc26ea0ece40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euckrfreq.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---euckrfreq.cpython-36.pyc-548987825caab329 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euckrprober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---euckrprober.cpython-36.pyc-c946f7dfdc923455 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euctwfreq.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---euctwfreq.cpython-36.pyc-01ec29ed6b7dc91f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euctwprober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---euctwprober.cpython-36.pyc-2f2ec5bec4a67ce5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/event.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---event.cpython-36.opt-1.pyc-43a00089c59d0a5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/event.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---event.cpython-36.pyc-fa1c25f890d7ca81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/events.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---events.cpython-36.pyc-a0a3f2fb7cbcc63f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-24411cc0288a8eaa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-5b81bef3d2520328 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-5dce59fadf529d26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-64a065ad0b23d9f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-95e33392061c80b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-bf4b6c8a3f5f32cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-c39789defa526a69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-e5017e07aae456d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/__pycache__/expat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---expat.cpython-36.opt-1.pyc-01a1569e75f585c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/__pycache__/expat.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---expat.cpython-36.opt-2.pyc-a3c363fa2b2308d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/__pycache__/expat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---expat.cpython-36.pyc-f1a5a6452dd9a39e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/expatreader.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---expatreader.cpython-36.pyc-5933defebccd529d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/extension.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---extension.cpython-36.pyc-3ef3ea1b80dee5a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/extension.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---extension.cpython-36.pyc-95413be07260fe04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/factlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---factlib.cpython-36.pyc-43ad9984140da8aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/facts.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---facts.cpython-36.opt-1.pyc-28c3e56d3d3f75d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/facts.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---facts.cpython-36.pyc-0612d88cea68c62e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/feedparser.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---feedparser.cpython-36.pyc-ed1abcf59963a8fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/fields.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fields.cpython-36.pyc-c222f6e37bb53c31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/file_util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---file-util.cpython-36.pyc-f3e042818fe68383 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/filecmp.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---filecmp.cpython-36.pyc-7bbb8193a20d1096 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fileinput.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fileinput.cpython-36.pyc-da8b74a2431a30dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/filelist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---filelist.cpython-36.pyc-a98368723d571d60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/filepost.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---filepost.cpython-36.pyc-c92077418e47a6d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/files.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---files.cpython-36.opt-1.pyc-71d4cdc34dd29f94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/files.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---files.cpython-36.pyc-538ab6e7bca32cf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_apply.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-apply.cpython-36.pyc-f7ea63984376e3a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_asserts.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-asserts.cpython-36.pyc-d7264a7fcfdd678f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_buffer.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-buffer.cpython-36.pyc-3dc269dc4f850528 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_dict.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-dict.cpython-36.pyc-9b1cb2d61ab9df2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_except.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-except.cpython-36.pyc-e8b2e7ac6e3a26ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_exec.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-exec.cpython-36.pyc-090736cabc2ae8aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_filter.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-filter.cpython-36.pyc-a2404dfed8eb7f23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_future.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-future.cpython-36.pyc-993bb8a8747baab2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-getcwdu.cpython-36.pyc-165e26f389f26f30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_has_key.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-has-key.cpython-36.pyc-7156dbc2cffb16fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_idioms.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-idioms.cpython-36.pyc-7ee6191a4cf9f68c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_import.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-import.cpython-36.pyc-8410a166de247e60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_imports.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-imports.cpython-36.pyc-5f36759d30606375 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_input.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-input.cpython-36.pyc-f541424b57c1db2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_intern.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-intern.cpython-36.pyc-c2d2a9cf886f5916 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_long.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-long.cpython-36.pyc-8912fc739131d83d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_map.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-map.cpython-36.pyc-1038d67a40dae1d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_ne.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-ne.cpython-36.pyc-edd99f2c91a2a700 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_next.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-next.cpython-36.pyc-e9759f768edaf9e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_nonzero.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-nonzero.cpython-36.pyc-dd63753a8921b3eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_paren.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-paren.cpython-36.pyc-11d80520e9fca807 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_print.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-print.cpython-36.pyc-4ca2e145c923c1e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_raise.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-raise.cpython-36.pyc-a44beff10a3e6a4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_reduce.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-reduce.cpython-36.pyc-f28264653a13f9dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_reload.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-reload.cpython-36.pyc-c732ca3c3c556974 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_renames.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-renames.cpython-36.pyc-00ef89dbb94a89e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_repr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-repr.cpython-36.pyc-bc311e6123f79e3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-sys-exc.cpython-36.pyc-b33aaaf50efcb6ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_throw.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-throw.cpython-36.pyc-6c4e05cdfb0eafba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_types.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-types.cpython-36.pyc-a6317a255fb27b86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_unicode.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-unicode.cpython-36.pyc-20113d9d3e82a4ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_urllib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-urllib.cpython-36.pyc-4de058b825e4af6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_xrange.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-xrange.cpython-36.pyc-72ccdf30ddb083d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_zip.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-zip.cpython-36.pyc-72b95e7529823d92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/fixer_base.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fixer-base.cpython-36.pyc-dabbfb363ca687b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/fixer_util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fixer-util.cpython-36.pyc-786a87671868cbcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fnmatch.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fnmatch.cpython-36.pyc-13314d49907b024f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/forkserver.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---forkserver.cpython-36.pyc-88a42e183e9b90cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/formatter.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---formatter.cpython-36.pyc-cbea3cdb2339a68f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fractions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fractions.cpython-36.pyc-d3bd44b9e1fc432c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/framework.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---framework.cpython-36.pyc-b97e035a1938664b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ftplib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ftplib.cpython-36.pyc-81010e542ccb98af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/functools.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---functools.cpython-36.pyc-f6bfe9983871916a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/futures.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---futures.cpython-36.pyc-418a984c59c4dbdc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/ga_impls/__pycache__/ga_gtk3.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ga-gtk3.cpython-36.pyc-2fd029ae46d26445 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/ga_loader.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ga-loader.cpython-36.pyc-89ba5bcb32221be7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gb18030.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gb18030.cpython-36.pyc-c30bb13146a55d85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gb2312.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gb2312.cpython-36.pyc-130b510042704dd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/gb2312freq.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gb2312freq.cpython-36.pyc-553cda828fdb4838 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gbk.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---gbk.cpython-36.opt-1.pyc-79def8e74b55c061 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gbk.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---gbk.cpython-36.opt-2.pyc-7588df83f2142140 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gbk.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gbk.cpython-36.pyc-0a9c5f4dc4c0d83f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/gcp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---gcp.cpython-36.opt-1.pyc-73c4981fb9543158 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/gcp.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gcp.cpython-36.pyc-258633bf365032e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/general.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---general.cpython-36.pyc-06282da5f0398ccf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/generator.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---generator.cpython-36.pyc-1c1c7817bd20bc9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/genericpath.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---genericpath.cpython-36.pyc-8f52c844b501c1e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/getopt.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---getopt.cpython-36.pyc-9cf820677d9bf582 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/getpass.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---getpass.cpython-36.pyc-9ad4d99e407ae6b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/gettext.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gettext.cpython-36.pyc-ef8b4c09c5535b2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/gi_service.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gi-service.cpython-36.pyc-ffc9287080b7b73e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/glib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---glib.cpython-36.opt-1.pyc-5521343e22e8f000 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/mainloop/__pycache__/glib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---glib.cpython-36.opt-1.pyc-ad8366a3c1ea6681 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/mainloop/__pycache__/glib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---glib.cpython-36.pyc-073bf10418187009 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/glibc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---glibc.cpython-36.opt-1.pyc-7f115e7447e14a24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/glibc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---glibc.cpython-36.pyc-29e2af87460976b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/glob.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---glob.cpython-36.opt-1.pyc-8e9ed599ac80c37d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/glob.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---glob.cpython-36.opt-1.pyc-eeb03bb8ddfbc85b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/glob.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---glob.cpython-36.opt-2.pyc-9cecf7dc5bf38940 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/glob.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---glob.cpython-36.pyc-5049b2a9597c6b4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/glob.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---glob.cpython-36.pyc-79c28f0bde371046 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/gnu.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---gnu.cpython-36.opt-1.pyc-4fcf22834d315a5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/gnu.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---gnu.cpython-36.opt-2.pyc-5207067fed339953 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/gnutls.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gnutls.cpython-36.pyc-ffa6421733a4b64d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/goal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---goal.cpython-36.opt-1.pyc-44227711d41cf706 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/gpgme.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---gpgme.cpython-36.opt-1.pyc-3e074d757fd07303 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/grammar.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---grammar.cpython-36.pyc-e5a57622d753e74f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/__pycache__/group.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---group.cpython-36.opt-1.pyc-599535cf45df1f43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/group.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---group.cpython-36.opt-1.pyc-7f174726f1a079a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/group.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---group.cpython-36.pyc-2bded1c754d6c062 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/gzip.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---gzip.cpython-36.opt-1.pyc-9dcf3f12ca90434b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/gzip.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---gzip.cpython-36.opt-2.pyc-44cefbddb38c7e1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/gzip.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gzip.cpython-36.pyc-f5fa52a0496f93ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/handlers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---handlers.cpython-36.pyc-1880deaa612f609f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/handlers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---handlers.cpython-36.pyc-2c28aeeb00245623 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/has_key.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---has-key.cpython-36.pyc-128c96367a4ee092 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/hashlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---hashlib.cpython-36.pyc-57c374946fc37916 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/header.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---header.cpython-36.pyc-fcaf37484233645d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/headers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---headers.cpython-36.pyc-358657713e34de1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/healinglib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---healinglib.cpython-36.pyc-a4c2aa4a1221a10e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/heap.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---heap.cpython-36.opt-1.pyc-6a4122c6eec23e6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/heap.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---heap.cpython-36.opt-2.pyc-b438ce8346a6f51a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/heap.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---heap.cpython-36.pyc-1d1a0d7f5299fa69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/heapq.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---heapq.cpython-36.opt-1.pyc-c34d4e1ac1d11724 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/heapq.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---heapq.cpython-36.opt-2.pyc-24598c66c62387a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/heapq.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---heapq.cpython-36.pyc-fef8299460013208 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/help.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---help.cpython-36.opt-1.pyc-24d38609e806d60a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/help.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---help.cpython-36.pyc-cd48581c97bc1c2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hex_codec.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---hex-codec.cpython-36.pyc-dc750dc06fca2ca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/history.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---history.cpython-36.pyc-e1b68708ca6cc24a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/hmac.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---hmac.cpython-36.opt-1.pyc-690147557ea1377c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/hmac.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---hmac.cpython-36.opt-2.pyc-c1356d180e837488 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/hmac.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---hmac.cpython-36.pyc-ce497702db1bce99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/hooks.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---hooks.cpython-36.opt-1.pyc-9d9ff7c6ed1d34dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/hooks.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---hooks.cpython-36.pyc-cc1595cd024f0dd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hp_roman8.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---hp-roman8.cpython-36.pyc-323fa28aa9164325 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/https.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---https.cpython-36.opt-1.pyc-17d1d302d17d254b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/huffman.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---huffman.cpython-36.pyc-4c814923c83a7231 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/hwprobe.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---hwprobe.cpython-36.pyc-6f04c5a3eb58c565 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hz.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---hz.cpython-36.opt-1.pyc-55f0f289bebbb349 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hz.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---hz.cpython-36.opt-2.pyc-6259fbdcfe798264 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hz.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---hz.cpython-36.pyc-a576855294bbb8d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/i18n.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---i18n.cpython-36.opt-1.pyc-9e58e8a3a854519d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/i18n.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---i18n.cpython-36.opt-1.pyc-e76e5bf39c5ecc57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/i18n.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---i18n.cpython-36.opt-1.pyc-f8bb6a0c900f165c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/i18n.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---i18n.cpython-36.pyc-c16eba93720c04d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/i18n.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---i18n.cpython-36.pyc-c98fb32731ac9426 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/identity.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---identity.cpython-36.pyc-4f62cd6e64060ea0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/idna.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---idna.cpython-36.opt-1.pyc-c995e3dde2cc01c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/idna.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---idna.cpython-36.opt-2.pyc-b8835a1e56248217 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/idna.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---idna.cpython-36.pyc-ca64f036ba7e8e75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/idnadata.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---idnadata.cpython-36.pyc-7802975a6acb28b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/image.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---image.cpython-36.opt-1.pyc-7bd242a2410b0f91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/image.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---image.cpython-36.opt-2.pyc-ccb5af553ea40f43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imaplib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---imaplib.cpython-36.pyc-3889f043cb0d192d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imghdr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---imghdr.cpython-36.pyc-5108c32a46321458 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---imp.cpython-36.opt-1.pyc-dd9498aab8f20086 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imp.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---imp.cpython-36.opt-2.pyc-1be899aa410f4db4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imp.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---imp.cpython-36.pyc-077e95e0756c823a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/import_type.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---import-type.cpython-36.pyc-43ee3fb4d4dade4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/ini.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---ini.cpython-36.opt-1.pyc-24cb5bfe1cd8ff8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/ini.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ini.cpython-36.pyc-45b3757d24af3e11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/injection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---injection.cpython-36.pyc-36f3339419203a70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/insights.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---insights.cpython-36.pyc-28bf338555a787f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/inspect.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---inspect.cpython-36.pyc-acd75f8510ac0716 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_lib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---install-lib.cpython-36.pyc-48e0659e4d213cb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install_lib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---install-lib.cpython-36.pyc-d83159b7d1b54270 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---install.cpython-36.pyc-068b629037ea5a01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/install.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---install.cpython-36.pyc-1bb93db8f38cbdb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---install.cpython-36.pyc-24d9ccb3c0c29ff0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/intranges.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---intranges.cpython-36.pyc-59476696895ca4f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/io.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---io.cpython-36.opt-1.pyc-5415b95cba1ba8ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/io.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---io.cpython-36.opt-2.pyc-66076f8464c5ac46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/io.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---io.cpython-36.pyc-3a6c127baf3e302f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ipaddress.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ipaddress.cpython-36.pyc-67a7a9b26d482f99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso2022-jp.cpython-36.pyc-dc277dac5ddfe7e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_kr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso2022-kr.cpython-36.pyc-c3297b74fbe7aaf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_1.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-1.cpython-36.pyc-738128f6d80959c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_10.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-10.cpython-36.pyc-4b49d54ea8f0e337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_11.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-11.cpython-36.pyc-b13544e10bb49888 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_13.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-13.cpython-36.pyc-b6470b31017cdcca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_14.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-14.cpython-36.pyc-a02f6cb9111e43b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_15.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-15.cpython-36.pyc-9db9ae8bfd74e2a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_16.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-16.cpython-36.pyc-496be30149f56ad9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_2.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-2.cpython-36.pyc-596e93ff58a2dc80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_3.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-3.cpython-36.pyc-d397529e666d01dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_4.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-4.cpython-36.pyc-1b08258f820e3207 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_5.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-5.cpython-36.pyc-ab2463f9e699d331 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_6.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-6.cpython-36.pyc-fe516fb125ec8c37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_7.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-7.cpython-36.pyc-4874a313769308cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_8.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-8.cpython-36.pyc-d845067e63970a60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_9.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-9.cpython-36.pyc-e07d0e18dcff2373 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/isodate.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---isodate.cpython-36.pyc-95b2db07c87c45b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/iterators.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iterators.cpython-36.pyc-dcf6635d6bb31097 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/java.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---java.cpython-36.opt-1.pyc-3849828b7d81ce41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/java.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---java.cpython-36.pyc-1004c9c8948a4c93 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/jisfreq.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---jisfreq.cpython-36.pyc-8084f996e6504216 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/johab.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---johab.cpython-36.opt-1.pyc-84ea933e8f592e93 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/johab.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---johab.cpython-36.opt-2.pyc-f21ffa5b241c507c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/johab.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---johab.cpython-36.pyc-400a367714f27046 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/__pycache__/journal.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---journal.cpython-36.pyc-3797a65777b162b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/jpcntx.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---jpcntx.cpython-36.pyc-12ba9770429e33cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/jsonwrapper.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---jsonwrapper.cpython-36.pyc-35b146ea416aeac4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/keysign.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---keysign.cpython-36.pyc-668409ebf746e911 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/keysyms.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---keysyms.cpython-36.pyc-a6b6fce7acfc37f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/keyword.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---keyword.cpython-36.pyc-a09ceb27d4925c67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_r.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---koi8-r.cpython-36.pyc-cf0c9a7c59b80379 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_t.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---koi8-t.cpython-36.pyc-84e1faaf7a2db5d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_u.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---koi8-u.cpython-36.pyc-7fad3a41e98965bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/kpatch.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---kpatch.cpython-36.pyc-bb8298191049386e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/krb5.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---krb5.cpython-36.opt-1.pyc-1f757904ada9346c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/krb5.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---krb5.cpython-36.pyc-561a24031375c987 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/kz1048.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---kz1048.cpython-36.pyc-bfe569c74b6141d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/latin_1.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---latin-1.cpython-36.pyc-35744ea300b517fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/launch.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---launch.cpython-36.pyc-c8c02dc0b3921646 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---lib2to3-ex.cpython-36.pyc-42b3d3722c6d4113 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/libreswan.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---libreswan.cpython-36.pyc-45194389d2140db1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/libssh.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---libssh.cpython-36.pyc-a600ac7b52f2bc78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/__pycache__/libxml2.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---libxml2.cpython-36.pyc-f9bb6be523342b89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/linecache.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---linecache.cpython-36.pyc-e0a8a5512822ba62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/listing.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---listing.cpython-36.pyc-4fe6a5750a709eb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/literals.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---literals.cpython-36.pyc-90c39b209962a52c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/loader.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---loader.cpython-36.pyc-caf719b0a5f56314 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/locale.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---locale.cpython-36.pyc-03487e20442b8e2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/lock.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---lock.cpython-36.opt-1.pyc-48b3ddc761372864 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/lock.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---lock.cpython-36.opt-1.pyc-5b5e093ce3ca06f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/lock.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---lock.cpython-36.pyc-1d518288e7ac39ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/locks.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---locks.cpython-36.opt-1.pyc-ed10631affce4457 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/locks.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---locks.cpython-36.opt-2.pyc-a8142f8f159fce54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/locks.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---locks.cpython-36.pyc-dbf23393cf82715a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/log.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---log.cpython-36.opt-1.pyc-615fb378d5b1d52d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/log.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---log.cpython-36.opt-1.pyc-f5fb490019f1f2e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/log.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---log.cpython-36.opt-2.pyc-88ab2903f6e3124f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/log.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---log.cpython-36.opt-2.pyc-dd2bb690439a3dd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/log.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---log.cpython-36.pyc-26b403633e943525 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/logutil.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---logutil.cpython-36.pyc-6e9dc51ac5c94353 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---low-level.cpython-36.pyc-8c4efcb365714e17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/lowlevel.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---lowlevel.cpython-36.pyc-c41da0382a704773 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/lzma.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---lzma.cpython-36.opt-1.pyc-723cdbe2afa10489 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/lzma.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---lzma.cpython-36.opt-2.pyc-7ad9367753826e9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/lzma.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---lzma.cpython-36.pyc-221467600935d141 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/m2cryptossl.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---m2cryptossl.cpython-36.pyc-a69ff3ac0ae372a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_arabic.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mac-arabic.cpython-36.pyc-e6e7838b12b700a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_farsi.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mac-farsi.cpython-36.pyc-ceb0fb5b4c01980a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_greek.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mac-greek.cpython-36.pyc-52745fded86c3882 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_iceland.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mac-iceland.cpython-36.pyc-682ce4cae6253f0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_latin2.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mac-latin2.cpython-36.pyc-cefaf107f4021fdf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_roman.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mac-roman.cpython-36.pyc-31b4f159ef20fbf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_turkish.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mac-turkish.cpython-36.pyc-3d21720127619fc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/machinery.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---machinery.cpython-36.pyc-6aba5bace683d17c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/macpath.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---macpath.cpython-36.pyc-fa2500beeef562ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/macurl2path.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---macurl2path.cpython-36.pyc-8734d069d83ea1f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mailbox.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mailbox.cpython-36.pyc-4f2310576f166603 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mailcap.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mailcap.cpython-36.pyc-eb6d25dfd8821c9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/main.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-0aa1896e4d7e2488 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/main.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-4c9ceb2cdf20187e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/main.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-91adf2474d30a1d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/main.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-df3035db9588b3be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/main.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-ff95a23337c1ffeb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/main.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.opt-2.pyc-2189498162d87848 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/main.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.opt-2.pyc-89d94565bef34c99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/main.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.pyc-31507d9b9358733e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/main.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.pyc-3a6ddb57f0a0b0b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/main.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.pyc-598aecd0ec5f8a94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/main.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.pyc-93c0d386f7bcc5f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/makecache.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---makecache.cpython-36.pyc-9ba0c03b6d94e219 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/backports/__pycache__/makefile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---makefile.cpython-36.pyc-28a18292451847ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/managercli.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---managercli.cpython-36.pyc-c956b1c425cad418 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/managerlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---managerlib.cpython-36.pyc-7bc8bddaff601f05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/managers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---managers.cpython-36.pyc-7b325c951825872b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/mark.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---mark.cpython-36.opt-1.pyc-df27432f872e5269 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/mark.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mark.cpython-36.pyc-45db95b9b14090d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---markers.cpython-36.pyc-7387a4232e87f592 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---markers.cpython-36.pyc-8a7511b42c58cf5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mbcs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---mbcs.cpython-36.opt-1.pyc-2fd868b965c7080c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mbcs.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---mbcs.cpython-36.opt-2.pyc-c1575eb64f73d148 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mbcs.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mbcs.cpython-36.pyc-88cacc5f991dda5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/mbcssm.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mbcssm.cpython-36.pyc-9975631a8b88776a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/md.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---md.cpython-36.opt-1.pyc-63a632a26016d43a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/md.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---md.cpython-36.pyc-2e996ac0575e59de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/message.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---message.cpython-36.pyc-32158e30fff433b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/message.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---message.cpython-36.pyc-3a7a578ba13dcd1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mimetypes.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mimetypes.cpython-36.pyc-4d0bbf59aa83cbea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/minicompat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---minicompat.cpython-36.pyc-3980dc765c4f376b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/__pycache__/misc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---misc.cpython-36.opt-1.pyc-45e4d47fdaa09ac5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/miscutils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---miscutils.cpython-36.pyc-72dd692fc7df3ed7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/mock.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---mock.cpython-36.opt-1.pyc-198e76441c8b8927 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/mock.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---mock.cpython-36.opt-2.pyc-ff04aa6a58f249d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/mock.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mock.cpython-36.pyc-c4b2554ff35797f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/__pycache__/mode.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---mode.cpython-36.opt-1.pyc-6ad5aa4142791521 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/keylist/__pycache__/mode.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---mode.cpython-36.opt-1.pyc-c7cec218ab910c4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/keylist/__pycache__/mode.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mode.cpython-36.pyc-4d51436ee9789481 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/models.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---models.cpython-36.pyc-3c7cc8cd3e3aa352 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/__pycache__/module_base.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---module-base.cpython-36.pyc-557351f9efaee3ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/module.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---module.cpython-36.pyc-0e7f4d20983d3bc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/module.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---module.cpython-36.pyc-315c4767d134e990 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/monkey.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---monkey.cpython-36.pyc-9f1fabd0665e1036 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/msvc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---msvc.cpython-36.opt-1.pyc-ffcc6c330d926349 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/msvc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---msvc.cpython-36.pyc-afbbbb4979e51a14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/multipart.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---multipart.cpython-36.pyc-974199400cd9671d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/namespaces.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---namespaces.cpython-36.pyc-3d1e2b11a927ea17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/ndbm.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---ndbm.cpython-36.opt-1.pyc-4548f1673ef5278a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/ndbm.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---ndbm.cpython-36.opt-2.pyc-27523c1db83e7122 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/netrc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---netrc.cpython-36.opt-1.pyc-016c1c9683508489 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/netrc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---netrc.cpython-36.opt-2.pyc-2e70ce66a5563d6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/netrc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---netrc.cpython-36.pyc-bb1108a0fcbb89bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/nntplib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---nntplib.cpython-36.pyc-67a46eada0a0ae03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/__pycache__/notation.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---notation.cpython-36.pyc-27adffe15bacccc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/nss.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---nss.cpython-36.opt-1.pyc-347260bbd90e4e13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/nss.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---nss.cpython-36.pyc-8bd739c59f631a18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/ntlmpool.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ntlmpool.cpython-36.pyc-892c0f134e8d49ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ntpath.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ntpath.cpython-36.pyc-6696ac76053b5399 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/nturl2path.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---nturl2path.cpython-36.pyc-0d90897990f6dcf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/numbers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---numbers.cpython-36.pyc-c746d8ea9ef0525f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/oem.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---oem.cpython-36.opt-1.pyc-0ec5fdf76bf2beea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/oem.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---oem.cpython-36.opt-2.pyc-ce70799082f621f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/oem.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---oem.cpython-36.pyc-62552a9c222a6840 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/opcode.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---opcode.cpython-36.pyc-aff2aa2074bfa327 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/openssh.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---openssh.cpython-36.pyc-7dd5fc72d5b82468 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/openssl.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---openssl.cpython-36.pyc-b57fa93af26c8280 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/operator.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---operator.cpython-36.pyc-68dac8f86115dd80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/optparse.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---optparse.cpython-36.pyc-ebd33017171aebf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/os.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---os.cpython-36.opt-1.pyc-ba2d65053098516f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/os.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---os.cpython-36.opt-2.pyc-6285d9b08d159be3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/os.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---os.cpython-36.pyc-e7f0cdf2dddf6e3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/ourjson.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ourjson.cpython-36.pyc-0936052f1564141b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/overrides.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---overrides.cpython-36.pyc-e8c03036a9d7d527 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/packages.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---packages.cpython-36.pyc-3bb203cf0b154965 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/palmos.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---palmos.cpython-36.pyc-5e49d0ce99fee0ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/panel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---panel.cpython-36.opt-1.pyc-590a58492dddba5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/panel.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---panel.cpython-36.opt-2.pyc-6c674772f88f159a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/panel.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---panel.cpython-36.pyc-6df2fc2c44718d63 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/parse.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---parse.cpython-36.opt-1.pyc-5cb064f39fc90b9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/parse.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---parse.cpython-36.opt-1.pyc-8ca9f115df44f141 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/parse.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---parse.cpython-36.opt-2.pyc-7357f059d392802d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/parse.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---parse.cpython-36.opt-2.pyc-de0a33796484276c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/parse.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---parse.cpython-36.pyc-0a412bd510a94ebd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/parser.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---parser.cpython-36.pyc-42001bb6eb4eb071 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/parser.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---parser.cpython-36.pyc-87d455f03e8206f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/patcomp.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---patcomp.cpython-36.pyc-8e60a78592aab9ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pathlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pathlib.cpython-36.pyc-38fdaab3495f5c40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/pathtree.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pathtree.cpython-36.pyc-7a11b66f448a55bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pdb.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---pdb.cpython-36.opt-1.pyc-a9c4e61933ab1c90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pdb.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---pdb.cpython-36.opt-2.pyc-e7ceadecb50b0337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pdb.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pdb.cpython-36.pyc-c7463e9a2d54922b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/pep425tags.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pep425tags.cpython-36.pyc-eeaedcbfb7234938 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/persistor.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---persistor.cpython-36.pyc-dc5339c11d897946 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/pgen.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---pgen.cpython-36.opt-1.pyc-88bd7d7752d1b0f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/pgen.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---pgen.cpython-36.opt-2.pyc-36a2a7b4b3cecc8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pickle.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pickle.cpython-36.pyc-8f45fdec9c2ad095 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pickletools.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pickletools.cpython-36.pyc-e741ca749462c824 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pipes.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---pipes.cpython-36.opt-1.pyc-1d569b1c529ecfa9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pipes.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---pipes.cpython-36.opt-2.pyc-f8d169b75916213f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pipes.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pipes.cpython-36.pyc-26018d5d51f9ee98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/pk.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---pk.cpython-36.opt-1.pyc-057c9b6695ba5158 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/pk.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pk.cpython-36.pyc-bc8b09f4247a1b4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pkgutil.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pkgutil.cpython-36.pyc-2b0a31ea577b021c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/platform.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---platform.cpython-36.pyc-a6fced4321659e32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/plistlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---plistlib.cpython-36.pyc-7ced002fcd1ac0e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/plugins.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---plugins.cpython-36.pyc-d6af94093366c622 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/policy.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---policy.cpython-36.pyc-cb89fe50f6ca0684 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/pool.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---pool.cpython-36.opt-1.pyc-b63629e5cbdbb027 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/pool.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---pool.cpython-36.opt-2.pyc-6efe01d14676e41f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/pool.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pool.cpython-36.pyc-f89ff76fa23ae58e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/poolmanager.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---poolmanager.cpython-36.pyc-8a30563b0e2435c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_fork.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---popen-fork.cpython-36.pyc-7e8fe4d15df9e731 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/poplib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---poplib.cpython-36.pyc-c1b61dc8377b298e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/posixpath.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---posixpath.cpython-36.pyc-3689e613484cc57b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pprint.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pprint.cpython-36.pyc-e75d71b9c5a64056 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/printing.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---printing.cpython-36.pyc-86a3af916f40ced3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/process.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---process.cpython-36.pyc-9bb26be1a9367711 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/process.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---process.cpython-36.pyc-c313bc6b5ee8dd89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/product-id.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---product-id.cpython-36.pyc-5cf82b1ddd36dd92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/productid.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---productid.cpython-36.pyc-75239cad5e938319 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/products.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---products.cpython-36.pyc-1b0796678be7c1cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/products.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---products.cpython-36.pyc-609071b11c4e93bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/profile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---profile.cpython-36.pyc-5f6271ef3d0b0178 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/profile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---profile.cpython-36.pyc-ca61ad942ed21c38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/progress.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---progress.cpython-36.pyc-c7ed56d1bf89719a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/protocol.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---protocol.cpython-36.pyc-c94efeafd048aa94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/protocols.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---protocols.cpython-36.pyc-d765272f8b0c6181 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/provider.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---provider.cpython-36.pyc-c71b63f1b4893c4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/proxies.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---proxies.cpython-36.pyc-e1ceb9bef3292147 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pstats.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pstats.cpython-36.pyc-2007ab25b1902510 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/ptcp154.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ptcp154.cpython-36.pyc-4884511e1b623890 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pty.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---pty.cpython-36.opt-1.pyc-e097b771965f063a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pty.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---pty.cpython-36.opt-2.pyc-5c5c8290c30991a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pty.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pty.cpython-36.pyc-341ae30c15ad6c1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/punycode.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---punycode.cpython-36.pyc-4c5d3bd6a77bf3e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/py_compile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---py-compile.cpython-36.pyc-2ca284d2039a0f00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py27compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---py27compat.cpython-36.pyc-25dd341123d92fce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py31compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---py31compat.cpython-36.pyc-09b7a1151b315873 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/__pycache__/py31compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---py31compat.cpython-36.pyc-34314531462dd898 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py33compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---py33compat.cpython-36.pyc-5df8687ed5486689 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py36compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---py36compat.cpython-36.pyc-0be4266156ef6b45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/py36compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---py36compat.cpython-36.pyc-94796c94efdc5e5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pyclbr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pyclbr.cpython-36.pyc-9a3c6780ef5ba6c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pydoc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---pydoc.cpython-36.opt-1.pyc-a80bf96e7f51f6dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pydoc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---pydoc.cpython-36.opt-2.pyc-f468ffd5af567995 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pydoc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pydoc.cpython-36.pyc-5310b5d050f8e0d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/pygram.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pygram.cpython-36.pyc-07ea66df14ff8ba7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/pygtkcompat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pygtkcompat.cpython-36.pyc-2700436d18aa43c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/__pycache__/pygtkcompat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pygtkcompat.cpython-36.pyc-506dd9bdd5b7173d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/pyinotify.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pyinotify.cpython-36.pyc-59098d108c6a6e3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pyopenssl.cpython-36.pyc-58cc00ba0e6b46b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pyparsing.cpython-36.pyc-6b21ae47e937c43e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pyparsing.cpython-36.pyc-8f9685e6501bccd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/pytree.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pytree.cpython-36.pyc-c1ac973e815dd8a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/query.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---query.cpython-36.opt-1.pyc-1dd9c5ffca7cf891 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/queue.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---queue.cpython-36.opt-1.pyc-3a0a3da86ae89392 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/queue.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---queue.cpython-36.opt-1.pyc-83902ee327dc3a0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/queue.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---queue.cpython-36.opt-2.pyc-ed410657d3cb9249 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/queue.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---queue.cpython-36.pyc-b31aed4e33c7b066 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/queues.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---queues.cpython-36.pyc-63d3dd4642770d8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/queues.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---queues.cpython-36.pyc-d1519045b979c759 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/quopri.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---quopri.cpython-36.pyc-a8193883efd62de5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/quoprimime.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---quoprimime.cpython-36.pyc-650ee14b50d1368a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/random.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---random.cpython-36.pyc-d3c5e102fb4c59e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rct.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---rct.cpython-36.opt-1.pyc-fafae58617363932 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/re.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---re.cpython-36.opt-1.pyc-2993d287419d68c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/re.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---re.cpython-36.opt-2.pyc-0af55c36aec703cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/re.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---re.cpython-36.pyc-a4360b20c12fc74a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/read.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---read.cpython-36.opt-1.pyc-a5f1204c53cd5641 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/reasons.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---reasons.cpython-36.pyc-2be39de054f8e22f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/zoneinfo/__pycache__/rebuild.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rebuild.cpython-36.pyc-2857066dcfcc9882 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/reduction.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---reduction.cpython-36.pyc-ea79529c67049c50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/refactor.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---refactor.cpython-36.pyc-eb75187f102973f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/refresh.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---refresh.cpython-36.pyc-10722e5cff5743d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/register.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---register.cpython-36.pyc-7ed6ccad31c01225 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/register.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---register.cpython-36.pyc-bfa8461996e8dd3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/register.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---register.cpython-36.pyc-f53666f10a961a4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/register.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---register.cpython-36.pyc-f86e2fda304d7c0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/reinstall.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---reinstall.cpython-36.pyc-630a1a8acb7b10d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/release.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---release.cpython-36.pyc-64f067429ffa36bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/remove.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---remove.cpython-36.pyc-505332668dfff967 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/repo.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---repo.cpython-36.opt-1.pyc-000ff4a7f62f3421 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/repo.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---repo.cpython-36.opt-1.pyc-c8b3c387378c411a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repoclosure.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repoclosure.cpython-36.pyc-fa76c4b1b9eef291 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/repodict.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repodict.cpython-36.pyc-838d50e06408095c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repodiff.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repodiff.cpython-36.pyc-27afce78dfe699a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/repofile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repofile.cpython-36.pyc-1511fb6eb770062c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repograph.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repograph.cpython-36.pyc-7432fd592f2081e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/repolib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repolib.cpython-36.pyc-976f3a7b0cc2b04a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/repolist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repolist.cpython-36.pyc-4d7b7e4ceed53e34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repomanage.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repomanage.cpython-36.pyc-cb3c8650a3731d28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/repoquery.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repoquery.cpython-36.pyc-6e180141c29c3e84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/api/__pycache__/repos.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---repos.cpython-36.opt-1.pyc-aab253cb69db2ffd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/reposync.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---reposync.cpython-36.pyc-08f7dd0a7125b30b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/reprlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---reprlib.cpython-36.pyc-59b61f3623c9317d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/request.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---request.cpython-36.pyc-3817cf66058539ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/request.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---request.cpython-36.pyc-5462ed366e4a00e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/request.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---request.cpython-36.pyc-c676eb81873e4ed4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/response.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---response.cpython-36.pyc-181c842ac6751007 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/response.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---response.cpython-36.pyc-4b6c8dc16e0e164d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/response.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---response.cpython-36.pyc-ca67d03dd800e085 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/result.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---result.cpython-36.pyc-f64a13799e05144d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/retry.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---retry.cpython-36.opt-1.pyc-3f16a51fdc5ae681 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/rhelproduct.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rhelproduct.cpython-36.pyc-5cf813f46ef3db1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsm_debug.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rhsm-debug.cpython-36.pyc-51b223adebc5a696 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/rlcompleter.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rlcompleter.cpython-36.pyc-0fc43e4f991d53ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/robotparser.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---robotparser.cpython-36.pyc-18c220c9cea70eed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/rot_13.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rot-13.cpython-36.pyc-57765b3d9e45cf9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/rotate.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rotate.cpython-36.pyc-a0f8d7312924ab70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/__pycache__/rpmtrans.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rpmtrans.cpython-36.pyc-d82813346941f141 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/rrule.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---rrule.cpython-36.opt-1.pyc-b727818b7cd63eed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/rrule.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rrule.cpython-36.pyc-a909bcb174f66612 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/rules.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---rules.cpython-36.opt-1.pyc-bab9321ba297f98e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/rules.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rules.cpython-36.pyc-eb7278e003ad755f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/runner.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---runner.cpython-36.pyc-d37b69d00f5f5dca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/runpy.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---runpy.cpython-36.opt-1.pyc-dd7a3fe206fd51d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/runpy.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---runpy.cpython-36.opt-2.pyc-c4dee6574a2bf65c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/runpy.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---runpy.cpython-36.pyc-06e6fe5d3f31f456 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/sack.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---sack.cpython-36.opt-1.pyc-c47164ea9ef90b6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/sandbox.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sandbox.cpython-36.pyc-25385efd89c6dd5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/sat5to6.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sat5to6.cpython-36.pyc-ec8192f694fffda5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/saveopts.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---saveopts.cpython-36.pyc-5f5fe5791a17c103 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/saxutils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---saxutils.cpython-36.pyc-c310769e44dcd1bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/scanner.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---scanner.cpython-36.pyc-aad8eb84e01bf00d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sched.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---sched.cpython-36.opt-1.pyc-8be1c7cf03da0965 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sched.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---sched.cpython-36.opt-2.pyc-e3909aecf6373496 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sched.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sched.cpython-36.pyc-6473ce6626135337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/scope.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---scope.cpython-36.opt-1.pyc-3980da1db80e1709 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/scope.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---scope.cpython-36.pyc-ae595fa5ef6393f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/sdist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---sdist.cpython-36.opt-1.pyc-16786b9a58933d4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/sdist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---sdist.cpython-36.opt-1.pyc-2bd1098d9a5f7a2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/sdist.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---sdist.cpython-36.opt-2.pyc-9fcdb02df11f97c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/sdist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sdist.cpython-36.pyc-72a94aa4f38de346 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/sdist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sdist.cpython-36.pyc-e77218776bc227e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/search.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---search.cpython-36.pyc-8dabc8107be9bce2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/secrets.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---secrets.cpython-36.pyc-3c247f9a9cd33c7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/selector.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---selector.cpython-36.pyc-047ef222097cadbb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/selectors.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---selectors.cpython-36.pyc-a2863a43d09bbcc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/server.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---server.cpython-36.pyc-053126d7053b3394 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/service.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---service.cpython-36.pyc-d9d55e0c06b8406a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/sessions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sessions.cpython-36.pyc-7bab152c5c102c46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/setopt.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---setopt.cpython-36.pyc-068ca03dc96ba7bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/setup.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---setup.cpython-36.opt-1.pyc-6c15b595776fc446 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/setup.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---setup.cpython-36.pyc-cf1f8d334eaa87d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/shell.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---shell.cpython-36.opt-1.pyc-a0c2afbd30d60f44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/shell.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---shell.cpython-36.pyc-475ceeeab1eb832b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shelve.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---shelve.cpython-36.pyc-ea7a8db82f4f7ed8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jis.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---shift-jis.cpython-36.pyc-5649e6f6602f8bef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shlex.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---shlex.cpython-36.opt-1.pyc-5f1963f495521757 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shlex.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---shlex.cpython-36.opt-2.pyc-ab23a565769556f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shlex.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---shlex.cpython-36.pyc-b403215fb17e88e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shutil.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---shutil.cpython-36.pyc-ff624ececa18fb94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/signal.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---signal.cpython-36.pyc-7addc8b22f85de1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/signals.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---signals.cpython-36.pyc-bbfea4e26d2af868 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/sigsum.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sigsum.cpython-36.pyc-f4922ec0737a8c60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/site-patch.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---site-patch.cpython-36.pyc-0eff47e5ce77064b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/site.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---site.cpython-36.opt-1.pyc-d7e29f4364a02e88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/site.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---site.cpython-36.opt-2.pyc-c498599d72c96082 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/site.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---site.cpython-36.pyc-6fd17c125e105947 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/six.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---six.cpython-36.opt-1.pyc-19f6d698a9b3b961 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---six.cpython-36.opt-1.pyc-88b9108aa3bb0bc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/__pycache__/six.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---six.cpython-36.opt-1.pyc-e646091bc7cd44f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/six.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---six.cpython-36.pyc-397819a76dd784a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/sjisprober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sjisprober.cpython-36.pyc-5c66e54d0b9ebb0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/smartcols.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---smartcols.cpython-36.pyc-4e2e87465e185b88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/smtpd.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---smtpd.cpython-36.opt-1.pyc-5d7534d0e02e4804 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/smtpd.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---smtpd.cpython-36.opt-2.pyc-70a2ded37975c96c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/smtpd.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---smtpd.cpython-36.pyc-81f5e5f9c4f0b5a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/smtplib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---smtplib.cpython-36.pyc-d852e3f13746c174 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sndhdr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sndhdr.cpython-36.pyc-c979f13da1f59a1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/socket.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---socket.cpython-36.pyc-074ccc0ea81ff3d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/socks.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---socks.cpython-36.opt-1.pyc-82d71b534c71565b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/socks.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---socks.cpython-36.opt-1.pyc-af2de359b6303b7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/socks.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---socks.cpython-36.pyc-119ae5c8ff9312b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/socks.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---socks.cpython-36.pyc-cd2f2357b8eb9267 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/spawn.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---spawn.cpython-36.opt-1.pyc-b7061aec7ca6ab0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/spawn.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---spawn.cpython-36.opt-1.pyc-e13cc669bc51964c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/spawn.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---spawn.cpython-36.opt-2.pyc-3f442e285663ec1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/spawn.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---spawn.cpython-36.opt-2.pyc-bdb708757448c7e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/spawn.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---spawn.cpython-36.pyc-2facf87d098fe3f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/spawn.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---spawn.cpython-36.pyc-862205e36098e396 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---specifiers.cpython-36.pyc-524b2af929d3fb89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---specifiers.cpython-36.pyc-ef934e3e921f2ac4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_compile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sre-compile.cpython-36.pyc-0a6f3a1e10e2316a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_parse.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sre-parse.cpython-36.pyc-d8bfe2fe0fe40c85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/ssl_.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---ssl-.cpython-36.opt-1.pyc-b5645bb10d56e762 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/ssl_support.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ssl-support.cpython-36.pyc-67db056ce9cbbb16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ssl.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---ssl.cpython-36.opt-1.pyc-230b5d69d5007aa2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ssl.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---ssl.cpython-36.opt-2.pyc-7a8889b38f3f8099 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ssl.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ssl.cpython-36.pyc-c8d3472c55bcb211 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/sslproto.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sslproto.cpython-36.pyc-24599da6a0df37ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/stat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---stat.cpython-36.opt-1.pyc-de4f607a86454131 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/stat.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---stat.cpython-36.opt-2.pyc-ee1026349a5d1d76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/stat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---stat.cpython-36.pyc-366bc92b84dcab20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/statistics.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---statistics.cpython-36.pyc-66bcf77f8e916e23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/status.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---status.cpython-36.pyc-2f505bf727ce5785 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/streams.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---streams.cpython-36.pyc-7087fec6e9ffd049 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/string.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---string.cpython-36.pyc-05f1bbef8dc8b070 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/stringprep.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---stringprep.cpython-36.pyc-e51da88a90e67100 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/struct.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---struct.cpython-36.pyc-7fbbc326184994bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/structures.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---structures.cpython-36.pyc-19dc6001b089a5e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/subprocess.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---subprocess.cpython-36.pyc-7e8e5df570f69c0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/subprocess.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---subprocess.cpython-36.pyc-d8786bd3bb243352 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/suite.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---suite.cpython-36.opt-1.pyc-47c3cbe842e36f1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/suite.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---suite.cpython-36.opt-2.pyc-acfbb9d091b18230 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/suite.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---suite.cpython-36.pyc-de10535d02dd41d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sunau.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---sunau.cpython-36.opt-1.pyc-976171311ccb1375 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sunau.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---sunau.cpython-36.opt-2.pyc-6a050517c1fb8c9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sunau.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sunau.cpython-36.pyc-5c8879eacf4fc22c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/swap.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---swap.cpython-36.opt-1.pyc-9db8ed01f5cf1122 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/swap.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---swap.cpython-36.pyc-c35b6166b2b25d8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/symbol.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---symbol.cpython-36.pyc-4b43a393b89479d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/symtable.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---symtable.cpython-36.pyc-72fa660a904eba31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/synchronize.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---synchronize.cpython-36.pyc-a638b9b8f77a7b31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sysconfig.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sysconfig.cpython-36.pyc-70784c85eb69633f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/sysconfig.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sysconfig.cpython-36.pyc-875692ddbd17905e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/syspurpose.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---syspurpose.cpython-36.pyc-34b0b62cda4d916c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/syspurpose.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---syspurpose.cpython-36.pyc-82e93f7b796fe509 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tabnanny.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tabnanny.cpython-36.pyc-2f60d4ec7d06a4b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tarfile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tarfile.cpython-36.pyc-258e2c824700f319 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/tasks.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---tasks.cpython-36.opt-1.pyc-2c6db6592877f2db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/tasks.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---tasks.cpython-36.opt-2.pyc-041bff7b0b3ceebb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/tasks.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tasks.cpython-36.pyc-f294925d936bd3bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/telnetlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---telnetlib.cpython-36.pyc-3d3517d31b221be7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tempfile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tempfile.cpython-36.pyc-f1863becf54a2f29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/term.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---term.cpython-36.opt-1.pyc-f17d9c64af4efa69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/__pycache__/test_daemon.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---test-daemon.cpython-36.pyc-c21a64f9f731a18d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/__pycache__/test_login.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---test-login.cpython-36.pyc-3c925badfccce117 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/test_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---test-utils.cpython-36.pyc-d5aa2e945298c1f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/test.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---test.cpython-36.opt-1.pyc-9e9aa9f80b526797 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/test.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---test.cpython-36.pyc-7000dbcd7430b0d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/testresult.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---testresult.cpython-36.pyc-7b8a63a84ba60d41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/text_file.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---text-file.cpython-36.pyc-b90858d09fecc5cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/text.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---text.cpython-36.opt-1.pyc-a6b544f5a84c7521 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/text.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---text.cpython-36.opt-2.pyc-0a586fde76cced40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/textpad.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---textpad.cpython-36.pyc-83332deb5ec019b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/textwrap.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---textwrap.cpython-36.pyc-41a857f0d37c74f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/this.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---this.cpython-36.opt-1.pyc-0760d8f27edd4aeb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/this.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---this.cpython-36.opt-2.pyc-12a3175d7bfcdf9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/this.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---this.cpython-36.pyc-5c2d24b4fdff7d14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/thread.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---thread.cpython-36.pyc-8b1a677a1559fb44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/threading.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---threading.cpython-36.pyc-e17f50e715621edf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/timeit.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---timeit.cpython-36.pyc-ccb0ce3e5f021788 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/timeout.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---timeout.cpython-36.pyc-aaeb9c791681cd1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/tis_620.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tis-620.cpython-36.pyc-1a084cd12182405f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/token.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---token.cpython-36.opt-1.pyc-82c9cee6a7de18bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/token.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---token.cpython-36.opt-1.pyc-998859b7ddd79eef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/token.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---token.cpython-36.opt-2.pyc-1a6455cb3879d790 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/token.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---token.cpython-36.opt-2.pyc-451d3c16a1e2f7e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/token.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---token.cpython-36.pyc-8461bab02f784100 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/tokenize.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tokenize.cpython-36.pyc-43116e9521e0fac7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tokenize.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tokenize.cpython-36.pyc-fe3b9fe2bbf9e2ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/tool.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---tool.cpython-36.opt-1.pyc-8f6e83f2e807dba4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/tool.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---tool.cpython-36.opt-2.pyc-d0db017cb971bb44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/__pycache__/topics.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---topics.cpython-36.pyc-8578e33db9816815 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/trace.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---trace.cpython-36.opt-1.pyc-9a802f4d2de33a09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/trace.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---trace.cpython-36.opt-2.pyc-0b83de2c7cf53af9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/trace.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---trace.cpython-36.pyc-b03240054321a3bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/traceback.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---traceback.cpython-36.pyc-0ecae02d200306b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tracemalloc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tracemalloc.cpython-36.pyc-0bc35860aecd24ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/__pycache__/transaction.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---transaction.cpython-36.pyc-1faf9dc9e4650d0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/transaction.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---transaction.cpython-36.pyc-954075378a857790 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/transaction.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---transaction.cpython-36.pyc-a9555597364cf4e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/transaction.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---transaction.cpython-36.pyc-fff4020a9b59eab7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/transports.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---transports.cpython-36.pyc-b15a4ad67a37b8cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tty.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---tty.cpython-36.opt-1.pyc-dd42e25cb7520334 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tty.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---tty.cpython-36.opt-2.pyc-4bf1bb3c4d77b1c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tty.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tty.cpython-36.pyc-3b3890f517d92216 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/types.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---types.cpython-36.opt-1.pyc-3c64a70b08cf5c2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/types.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---types.cpython-36.opt-1.pyc-6b04a818e62849c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/types.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---types.cpython-36.opt-1.pyc-b7d621791737748f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/types.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---types.cpython-36.opt-2.pyc-fa1996df12fe1fb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/types.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---types.cpython-36.pyc-f728fcdefd675462 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/typing.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---typing.cpython-36.pyc-dbbd5c011bd11875 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/tzwin.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---tzwin.cpython-36.opt-1.pyc-fb8abfbadb50fa28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/tzwin.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tzwin.cpython-36.pyc-e8312a78628c3e0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/undefined.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---undefined.cpython-36.pyc-c18525ddf9d33d34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/unix_events.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---unix-events.cpython-36.pyc-3e7044b5409fba94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/unregister.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---unregister.cpython-36.pyc-8f3d5a5f101c30b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/unregister.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---unregister.cpython-36.pyc-babf2f00c98fb1a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/updateinfo.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---updateinfo.cpython-36.pyc-63309467643ac91b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/upgrade.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---upgrade.cpython-36.pyc-d53e04f34c737c20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/upload_docs.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---upload-docs.cpython-36.pyc-b1b23f5ad8646652 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/upload.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---upload.cpython-36.pyc-53eff3312532da78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/upload.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---upload.cpython-36.pyc-be81d050eaf81cf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/url.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---url.cpython-36.opt-1.pyc-a82eb069bae80e10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16_be.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-16-be.cpython-36.pyc-f08ab9348e289b2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16_le.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-16-le.cpython-36.pyc-47b6852d8ea772cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-16.cpython-36.pyc-9e09620fff44e023 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32_be.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-32-be.cpython-36.pyc-baab7a4fdec77630 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32_le.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-32-le.cpython-36.pyc-961709030ceefc5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-32.cpython-36.pyc-e2a6678af59a9596 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_7.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utf-7.cpython-36.opt-1.pyc-ba0286d9d8933901 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_7.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---utf-7.cpython-36.opt-2.pyc-91092a391be68b32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_7.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-7.cpython-36.pyc-d21253c4e6a6cdb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_8_sig.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-8-sig.cpython-36.pyc-6479d21f0d09542e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_8.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utf-8.cpython-36.opt-1.pyc-211842dc65562bb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_8.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---utf-8.cpython-36.opt-2.pyc-d5c40e91791974e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_8.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-8.cpython-36.pyc-695dac83ef7524a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/utf8prober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf8prober.cpython-36.pyc-896f11f4c393377a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-010be6e638bc766a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-105d61f4667fbd2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-510def62e5c07565 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-537093e41088f7d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-6560370f96feb385 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-6c6c7f977b3269b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-ac11cc1c39799106 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-d56c80f999fc0076 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-f085f362fb8839b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-216f5cb84751866e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-62dfca322ab5b7c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-8b0837b70ec7358d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-8e89930d4dca01d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-ebfd585065d2b956 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-f27724ad5d30be3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.pyc-05e4485bdbf84981 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.pyc-4bbab8827434bef5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.pyc-55dc60e6c4917421 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.pyc-b2f7c8db336c67d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.pyc-e626eca7cff4204e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-00c7678a0465dc8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-38e1bb4a31f86fef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-3a7a37b46084b2d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-4334655ae16fbabe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-61f6da82a15caecc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-6ec4dc729c1f7a32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-9873cb24c1403865 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-b1507c4f4f359d0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-b5cf72fa375e785a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-ffc2c3fa72149155 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/utils.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-2.pyc-cbef5f5729c40e49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.pyc-306502d8e4e17a47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.pyc-4850a291da5c5b7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.pyc-93a7f5a8c292ff86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.pyc-a4a925b64e8cd962 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.pyc-b195fcac439ef9fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.pyc-d7a255f8e91d61f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.pyc-deb553c0dfe4a890 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/uts46data.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---uts46data.cpython-36.pyc-68d6633e7b9cafa3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/uu_codec.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---uu-codec.cpython-36.pyc-1995b1caaac5256c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/uu.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---uu.cpython-36.opt-1.pyc-bb10259bf139c25b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/uu.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---uu.cpython-36.opt-2.pyc-fec546195f19bd2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/uu.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---uu.cpython-36.pyc-0aeefa3dd51fc744 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/uuid.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---uuid.cpython-36.opt-1.pyc-ea4b9ce3264ba332 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/uuid.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---uuid.cpython-36.opt-2.pyc-8c6081c3571e1279 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/uuid.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---uuid.cpython-36.pyc-71e8d9fc8db55711 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/validate.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---validate.cpython-36.pyc-a736ba22e82827d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/validity.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---validity.cpython-36.pyc-a98741a21a5c3e7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/validity.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---validity.cpython-36.pyc-f76f8c655af030a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---version.cpython-36.pyc-54d69ae0d3490211 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---version.cpython-36.pyc-abafa25e1b22da10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---version.cpython-36.pyc-c12b7fb88434e33c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---version.cpython-36.pyc-cc67b9d66407028e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---version.cpython-36.pyc-ee4276565912c304 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---version.cpython-36.pyc-f0c51154c06f5a30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/virt.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---virt.cpython-36.opt-1.pyc-d7af69f90cc5c479 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/wait.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---wait.cpython-36.opt-1.pyc-1ab2abfca343e04e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/warnings.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---warnings.cpython-36.pyc-3bcd433a7c622273 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/wave.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---wave.cpython-36.opt-1.pyc-845fb9308613bcfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/wave.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---wave.cpython-36.opt-2.pyc-28b624d07810872c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/wave.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---wave.cpython-36.pyc-7d87be9c332caf2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/weakref.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---weakref.cpython-36.pyc-cf7a6f629a4cf3a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/webbrowser.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---webbrowser.cpython-36.pyc-acd9a396d4d842f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/wheel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---wheel.cpython-36.opt-1.pyc-a46cb6a2b07397cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/wheel.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---wheel.cpython-36.pyc-6339043bd7ffca89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/win.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---win.cpython-36.opt-1.pyc-dd9df900b9b94393 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/wintypes.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---wintypes.cpython-36.pyc-03b2d49d6dfce96b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/xdrlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---xdrlib.cpython-36.pyc-2802a95c17319bb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/xmlbuilder.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---xmlbuilder.cpython-36.pyc-9e598584e64dca5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/xmlreader.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---xmlreader.cpython-36.pyc-f0bbcae11f312ddc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/zipapp.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---zipapp.cpython-36.pyc-7ab904bc1e09ff85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/zipfile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---zipfile.cpython-36.pyc-90ea6c4df28193ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/zlib_codec.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---zlib-codec.cpython-36.pyc-b1cc75199425683e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/__version__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--version--.cpython-36.opt-1.pyc-8485a437f300d785 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-appengine-environ.cpython-36.opt-1.pyc-5e501a9a6a9fc28f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-36.pyc +SPDXID: SPDXRef-File-...-appengine-environ.cpython-36.pyc-5f2a9c0d61412433 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_asyncio.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-asyncio.cpython-36m-x86-64-linux-gnu.so-9cc3b0306414dbeb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/_base_provider.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-base-provider.cpython-36.opt-1.pyc-93a176e56b27a9e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/_base_provider.cpython-36.pyc +SPDXID: SPDXRef-File-...-base-provider.cpython-36.pyc-4d824cadc75b614d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_bisect.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-bisect.cpython-36m-x86-64-linux-gnu.so-2690072667cfc04e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-blake2.cpython-36m-x86-64-linux-gnu.so-f702c8fb3de18e46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_bootlocale.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-bootlocale.cpython-36.opt-1.pyc-2ee5e41ea11d0ee0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_bootlocale.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-bootlocale.cpython-36.opt-2.pyc-96aab7a7a7c4914a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/_bootstrap_external.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-bootstrap-external.cpython-36.opt-1.pyc-288775a41cc7dc8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/_bootstrap_external.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-bootstrap-external.cpython-36.opt-2.pyc-62a91ee634295040 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/_bootstrap_external.cpython-36.pyc +SPDXID: SPDXRef-File-...-bootstrap-external.cpython-36.pyc-727817e4f5f0df1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/_bootstrap.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-bootstrap.cpython-36.opt-1.pyc-da5d74d44938430a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/_bootstrap.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-bootstrap.cpython-36.opt-2.pyc-14a89d427ad41e5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-bz2.cpython-36m-x86-64-linux-gnu.so-67d0fe0803bbe75e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/_certificate.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-certificate.cpython-36m-x86-64-linux-gnu.so-bd2007c0144efb98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_codecs_cn.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-codecs-cn.cpython-36m-x86-64-linux-gnu.so-ddd0be7f610b1555 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_codecs_hk.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-codecs-hk.cpython-36m-x86-64-linux-gnu.so-fb9220c8bfd5e1ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_codecs_iso2022.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-codecs-iso2022.cpython-36m-x86-64-linux-gnu.so-c6db402aa02d2ea7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_codecs_jp.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-codecs-jp.cpython-36m-x86-64-linux-gnu.so-78a7bb281d7404b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_codecs_kr.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-codecs-kr.cpython-36m-x86-64-linux-gnu.so-5d23934f2034df27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_codecs_tw.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-codecs-tw.cpython-36m-x86-64-linux-gnu.so-44d8850e5fc3273e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_collections_abc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-collections-abc.cpython-36.opt-1.pyc-175262bec90dbeae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_collections_abc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-collections-abc.cpython-36.opt-2.pyc-ed76eb9ebd60eadc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_collections_abc.cpython-36.pyc +SPDXID: SPDXRef-File-...-collections-abc.cpython-36.pyc-e00ce4fbbfbfc347 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/_collections.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-collections.cpython-36.opt-1.pyc-b5b147530221a2e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/_collections.cpython-36.pyc +SPDXID: SPDXRef-File-...-collections.cpython-36.pyc-bce1262bbbf10c4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/_common.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-common.cpython-36.opt-1.pyc-9fcf6e708c14c890 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/_common.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-common.cpython-36.opt-1.pyc-e14c2f166a84083a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_compat_pickle.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-compat-pickle.cpython-36.opt-1.pyc-1ec8e676bd95eca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_compat_pickle.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-compat-pickle.cpython-36.opt-2.pyc-11b6f964e6c9e54e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_compat_pickle.cpython-36.pyc +SPDXID: SPDXRef-File-...-compat-pickle.cpython-36.pyc-1173da7986d22c1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-compat.cpython-36.opt-1.pyc-30511abd7c1ff577 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-compat.cpython-36.opt-1.pyc-48b6c5909c29a2ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/_compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-compat.cpython-36.opt-1.pyc-b23e56ede00547aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_compression.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-compression.cpython-36.opt-1.pyc-502c38358d1b28a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_compression.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-compression.cpython-36.opt-2.pyc-ed45ffc6bdbf8648 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_compression.cpython-36.pyc +SPDXID: SPDXRef-File-...-compression.cpython-36.pyc-b2f228d38b1b37bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_constants.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-constants.cpython-36.opt-1.pyc-87c88c22b0ea831b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_crypt.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-crypt.cpython-36m-x86-64-linux-gnu.so-77d00405e28ae9e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-csv.cpython-36m-x86-64-linux-gnu.so-d3fd3f12d78803e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_ctypes.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-ctypes.cpython-36m-x86-64-linux-gnu.so-3a0addca4fa65722 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_curses_panel.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-curses-panel.cpython-36m-x86-64-linux-gnu.so-95c0fe85813a161c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_curses.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-curses.cpython-36m-x86-64-linux-gnu.so-219c6338fee13b1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/_daemon.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-daemon.cpython-36m-x86-64-linux-gnu.so-9fb20285e6c23f2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-datetime.cpython-36m-x86-64-linux-gnu.so-b82f90825ad99861 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_dbm.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-dbm.cpython-36m-x86-64-linux-gnu.so-8b638929cbabdece +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_decimal.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-decimal.cpython-36m-x86-64-linux-gnu.so-659784d80e2bd250 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_dummy_thread.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-dummy-thread.cpython-36.opt-1.pyc-00be3f674be8c6c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_dummy_thread.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-dummy-thread.cpython-36.opt-2.pyc-da0041f03f7a1e70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_dummy_thread.cpython-36.pyc +SPDXID: SPDXRef-File-...-dummy-thread.cpython-36.pyc-267b3db000c0d2a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_elementtree.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-elementtree.cpython-36m-x86-64-linux-gnu.so-8dec126c4688208c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_encoded_words.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-encoded-words.cpython-36.opt-1.pyc-b51186919b0129b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_encoded_words.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-encoded-words.cpython-36.opt-2.pyc-de060fab1acaf35f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_encoded_words.cpython-36.pyc +SPDXID: SPDXRef-File-...-encoded-words.cpython-36.pyc-1d51a0af06f64e0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/_endian.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-endian.cpython-36.opt-1.pyc-d491f989b653f8d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/_endian.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-endian.cpython-36.opt-2.pyc-f89a4d2885d93c3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_error.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-error.cpython-36.opt-1.pyc-656ac6a3f5e64ada +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/_exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-exceptions.cpython-36.opt-1.pyc-8a9104c40944937b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/_exceptions.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-exceptions.cpython-36.opt-2.pyc-4a056210788d89bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/_expat_introspect_parser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-expat-introspect-parser.cpython-36.opt-1.pyc-325431f79329a3f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/_expat_introspect_parser.cpython-36.pyc +SPDXID: SPDXRef-File-...-expat-introspect-parser.cpython-36.pyc-53efe168e7a9bc85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_gdbm.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-gdbm.cpython-36m-x86-64-linux-gnu.so-3c6870e48986ad76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/_gpgme.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-gpgme.cpython-36m-x86-64-linux-gnu.so-0fb42b583610e8e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-hashlib.cpython-36m-x86-64-linux-gnu.so-d250c8e5093a38ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_header_value_parser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-header-value-parser.cpython-36.opt-1.pyc-87d3b31fbf6c333e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_header_value_parser.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-header-value-parser.cpython-36.opt-2.pyc-90eaf3a87576f65e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_header_value_parser.cpython-36.pyc +SPDXID: SPDXRef-File-...-header-value-parser.cpython-36.pyc-b16712c9dbc5a72a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_heapq.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-heapq.cpython-36m-x86-64-linux-gnu.so-14e2e25de99b80a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_hmacopenssl.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-hmacopenssl.cpython-36m-x86-64-linux-gnu.so-dddda1b9941eae7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/_internal_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-internal-utils.cpython-36.opt-1.pyc-ce164cc4431b8b65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/_internal_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...-internal-utils.cpython-36.pyc-49691aa0896fd585 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/_journal.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-journal.cpython-36m-x86-64-linux-gnu.so-f0197f6bc3fa3349 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-json.cpython-36m-x86-64-linux-gnu.so-3cc090b46925bb76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_lsprof.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-lsprof.cpython-36m-x86-64-linux-gnu.so-dc8374dfea5b4a42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_lzma.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-lzma.cpython-36m-x86-64-linux-gnu.so-7e285d5fcc14470b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_markupbase.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-markupbase.cpython-36.opt-1.pyc-69ef5455cda69a0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_markupbase.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-markupbase.cpython-36.opt-2.pyc-64b59cc440048a76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/_msvccompiler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-msvccompiler.cpython-36.opt-1.pyc-ac087815b2384ec8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/_msvccompiler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-msvccompiler.cpython-36.opt-2.pyc-4ee637a7941178e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/_msvccompiler.cpython-36.pyc +SPDXID: SPDXRef-File-...-msvccompiler.cpython-36.pyc-a01438352fab49b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_multibytecodec.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-multibytecodec.cpython-36m-x86-64-linux-gnu.so-b059bede5b977fd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_multiprocessing.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-multiprocessing.cpython-36m-x86-64-linux-gnu.so-8c494fdc6a0b36ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_opcode.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-opcode.cpython-36m-x86-64-linux-gnu.so-3409c0f2ea9fd5ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_option.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-option.cpython-36.opt-1.pyc-44c36c23b2f13e67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_ossighelper.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-ossighelper.cpython-36.opt-1.pyc-1419cc6907be8857 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_ossighelper.cpython-36.pyc +SPDXID: SPDXRef-File-...-ossighelper.cpython-36.pyc-c62121e22cac93a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_osx_support.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-osx-support.cpython-36.opt-1.pyc-2895d22a3d4c3cd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_osx_support.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-osx-support.cpython-36.opt-2.pyc-e62265ee81279841 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_osx_support.cpython-36.pyc +SPDXID: SPDXRef-File-...-osx-support.cpython-36.pyc-e5de1c0033ffd4bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_parseaddr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-parseaddr.cpython-36.opt-1.pyc-d4dc6794c4040e0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_parseaddr.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-parseaddr.cpython-36.opt-2.pyc-24ddde1456f480a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_pickle.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-pickle.cpython-36m-x86-64-linux-gnu.so-826e4782ceceb14e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_policybase.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-policybase.cpython-36.opt-1.pyc-5767026000f61b09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_policybase.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-policybase.cpython-36.opt-2.pyc-ff44c1105cc5cf07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_posixsubprocess.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-posixsubprocess.cpython-36m-x86-64-linux-gnu.so-f4f3ae750ecddc97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_propertyhelper.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-propertyhelper.cpython-36.opt-1.pyc-f629911f346aad0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_propertyhelper.cpython-36.pyc +SPDXID: SPDXRef-File-...-propertyhelper.cpython-36.pyc-bc86d05c758d0d0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_pydecimal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-pydecimal.cpython-36.opt-1.pyc-8e843399b10c18a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_pydecimal.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-pydecimal.cpython-36.opt-2.pyc-df65ebbc3889e3e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_random.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-random.cpython-36m-x86-64-linux-gnu.so-ca3b31a1f1fe23e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/_reader.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-reader.cpython-36m-x86-64-linux-gnu.so-297daec878fc5d62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/_rpm.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-rpm.cpython-36m-x86-64-linux-gnu.so-2e3be79a136d31d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/_rpmb.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-rpmb.cpython-36m-x86-64-linux-gnu.so-ef1aa2ba5dbe1e2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/_rpms.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-rpms.cpython-36m-x86-64-linux-gnu.so-396fdbcd74cdfcfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_sd_hosts_or_user_at_host +SPDXID: SPDXRef-File-...-sd-hosts-or-user-at-host-76a93bdf7f16f97e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-sha3.cpython-36m-x86-64-linux-gnu.so-72e1d545dd96bf3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_signalhelper.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-signalhelper.cpython-36.opt-1.pyc-f08dc062e0adcf7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_signalhelper.cpython-36.pyc +SPDXID: SPDXRef-File-...-signalhelper.cpython-36.pyc-f83ecdf22f060f92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sitebuiltins.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-sitebuiltins.cpython-36.opt-1.pyc-92827bbfc50fff36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sitebuiltins.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-sitebuiltins.cpython-36.opt-2.pyc-2aac4f844be013dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sitebuiltins.cpython-36.pyc +SPDXID: SPDXRef-File-...-sitebuiltins.cpython-36.pyc-d479bbc1119579bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_socket.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-socket.cpython-36m-x86-64-linux-gnu.so-a9f90be048b37e46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_sqlite3.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-sqlite3.cpython-36m-x86-64-linux-gnu.so-733257dc45681e53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-ssl.cpython-36m-x86-64-linux-gnu.so-7b12f5bd3a9eb6a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_strptime.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-strptime.cpython-36.opt-1.pyc-d86fd81bb5a49991 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_strptime.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-strptime.cpython-36.opt-2.pyc-4c9bbc5c30f1f41f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-struct.cpython-36m-x86-64-linux-gnu.so-81c94347e7c1bbeb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-structures.cpython-36.opt-1.pyc-6128aad193f7faca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-structures.cpython-36.opt-1.pyc-8486396cec099c6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sysconfigdata_dm_linux_x86_64-linux-gnu.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.cpython-36.opt-1.pyc-738975737fc635d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sysconfigdata_dm_linux_x86_64-linux-gnu.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.cpython-36.opt-2.pyc-5c3f11f148a18e65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sysconfigdata_dm_linux_x86_64-linux-gnu.cpython-36.pyc +SPDXID: SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.cpython-36.pyc-a4f725b7c75e229d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_sysconfigdata_dm_linux_x86_64-linux-gnu.py +SPDXID: SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.py-9d01a19c893aab44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.cpython-36.opt-1.pyc-9eca55df5280a2eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.cpython-36.opt-2.pyc-d0318d6e4f25fafd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.pyc +SPDXID: SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.cpython-36.pyc-317c2b43a0b5e1bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_sysconfigdata_m_linux_x86_64-linux-gnu.py +SPDXID: SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.py-05171172ff5fdfe0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_testmultiphase.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-testmultiphase.cpython-36m-x86-64-linux-gnu.so-72d56e02352d45b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_threading_local.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-threading-local.cpython-36.opt-1.pyc-14c4ee96ce99227f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_threading_local.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-threading-local.cpython-36.opt-2.pyc-dd04759d7fc7fcc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_threading_local.cpython-36.pyc +SPDXID: SPDXRef-File-...-threading-local.cpython-36.pyc-de8324a64df93fb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/_uninstall.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-uninstall.cpython-36.opt-1.pyc-387cf54fefafaa73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/_uninstall.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-uninstall.cpython-36.opt-2.pyc-9043dc456429b692 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-36.pyc +SPDXID: SPDXRef-File-...-vendor---pycache---six.cpython-36.pyc-2beddbb6b479eedd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/__pycache__/six.cpython-36.pyc +SPDXID: SPDXRef-File-...-vendor---pycache---six.cpython-36.pyc-2fd17c1525fbfe07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__about__.py +SPDXID: SPDXRef-File-...-vendor-packaging---about--.py-7e5576ab3932eff9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__about__.py +SPDXID: SPDXRef-File-...-vendor-packaging---about--.py-f4f2a4432fa82a19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__init__.py +SPDXID: SPDXRef-File-...-vendor-packaging---init--.py-ba298ee74a740146 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__init__.py +SPDXID: SPDXRef-File-...-vendor-packaging---init--.py-cb295c2a0febdbe4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/_compat.py +SPDXID: SPDXRef-File-...-vendor-packaging--compat.py-4757fb8c9cb02aa9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/_compat.py +SPDXID: SPDXRef-File-...-vendor-packaging--compat.py-c2a8d58dc8aea80c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/_structures.py +SPDXID: SPDXRef-File-...-vendor-packaging--structures.py-45b8d139a49b0fd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/_structures.py +SPDXID: SPDXRef-File-...-vendor-packaging--structures.py-cabb727bc033321c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/markers.py +SPDXID: SPDXRef-File-...-vendor-packaging-markers.py-89546a514b2e7a66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/markers.py +SPDXID: SPDXRef-File-...-vendor-packaging-markers.py-b6293737b4d065ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/requirements.py +SPDXID: SPDXRef-File-...-vendor-packaging-requirements.py-51f697fcc3743ac8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/requirements.py +SPDXID: SPDXRef-File-...-vendor-packaging-requirements.py-dc6c16bfc172c205 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/specifiers.py +SPDXID: SPDXRef-File-...-vendor-packaging-specifiers.py-7940b867bf216d93 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/specifiers.py +SPDXID: SPDXRef-File-...-vendor-packaging-specifiers.py-de8f1b1620fc45b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/utils.py +SPDXID: SPDXRef-File-...-vendor-packaging-utils.py-c1a4983606b55d39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/version.py +SPDXID: SPDXRef-File-...-vendor-packaging-version.py-b6fe6bb04a9a41d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/version.py +SPDXID: SPDXRef-File-...-vendor-packaging-version.py-f25b6fdcce76fd18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/_version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-version.cpython-36.opt-1.pyc-e834c3e00625abb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_weakrefset.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-weakrefset.cpython-36.opt-1.pyc-1f89d2d499295638 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_weakrefset.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-weakrefset.cpython-36.opt-2.pyc-9520ad66593f3aac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/fontconfig/conf.avail/20-unhint-small-dejavu-sans.conf +SPDXID: SPDXRef-File-...20-unhint-small-dejavu-sans.conf-9d3636a5938a4ea9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /opt/ol/wlp/output/defaultServer/workarea/org.eclipse.osgi/201/data/boot-proxy.jar +SPDXID: SPDXRef-File-...201-data-boot-proxy.jar-d10719d1dcea600a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator +SPDXID: SPDXRef-File-...30-systemd-environment-d-generator-8ae9cd39f6749863 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-preset/85-display-manager.preset +SPDXID: SPDXRef-File-...85-display-manager.preset-49e4aa8176f9d504 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-preset/99-default-disable.preset +SPDXID: SPDXRef-File-...99-default-disable.preset-17ed4cd03af30f32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Buenos_Aires +SPDXID: SPDXRef-File-...America-Argentina-Buenos-Aires-ac260416c9b812ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/ComodRivadavia +SPDXID: SPDXRef-File-...America-Argentina-ComodRivadavia-032b27be534605d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Rio_Gallegos +SPDXID: SPDXRef-File-...America-Argentina-Rio-Gallegos-d6c1e9b09c944ec8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/North_Dakota/New_Salem +SPDXID: SPDXRef-File-...America-North-Dakota-New-Salem-90f509aeb07dd049 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...C.utf8-LC-MESSAGES-SYS-LC-MESSAGES-359857bfac54ae1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/swid/CA/redhat.com/redhatcodesignca.cert +SPDXID: SPDXRef-File-...CA-redhat.com-redhatcodesignca.cert-e6b482b09e0cf9b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/opensshserver.txt +SPDXID: SPDXRef-File-...DEFAULT-opensshserver.txt-a5d99fa248b62ef2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/DESCRIPTION.rst +SPDXID: SPDXRef-File-...DESCRIPTION.rst-3e7b3f6ee0a01014 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/fonts/dejavu/DejaVuSansCondensed-BoldOblique.ttf +SPDXID: SPDXRef-File-...DejaVuSansCondensed-BoldOblique.ttf-541c04277b575faa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/crypto-policies/EMPTY/opensshserver.txt +SPDXID: SPDXRef-File-...EMPTY-opensshserver.txt-ccd8e8040b3aaa9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementInclude.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ElementInclude.cpython-36.opt-1.pyc-98300b0bcd9dc8a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementInclude.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ElementInclude.cpython-36.opt-2.pyc-46405f86d68ee460 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementInclude.cpython-36.pyc +SPDXID: SPDXRef-File-...ElementInclude.cpython-36.pyc-433cfc2f1b3f8f30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementPath.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ElementPath.cpython-36.opt-1.pyc-9cca28bbd5b7a742 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementPath.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ElementPath.cpython-36.opt-2.pyc-5965c2847fcd8a53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementTree.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ElementTree.cpython-36.opt-1.pyc-c6868a1b3bc04313 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementTree.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ElementTree.cpython-36.opt-2.pyc-ae30b0eeabef9887 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/opensshserver.txt +SPDXID: SPDXRef-File-...FUTURE-opensshserver.txt-373174adedd701a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/GIMarshallingTests.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...GIMarshallingTests.cpython-36.opt-1.pyc-852b08ded866e621 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/GIMarshallingTests.cpython-36.pyc +SPDXID: SPDXRef-File-...GIMarshallingTests.cpython-36.pyc-45eabaa5ad5d950b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/GIRepository-2.0.typelib +SPDXID: SPDXRef-File-...GIRepository-2.0.typelib-8a8f617a2477a505 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/GObject.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...GObject.cpython-36.opt-1.pyc-d3bc2519aaefab29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...LC-MESSAGES-SYS-LC-MESSAGES-4dd8eeb04117903e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/crypto-policies/LEGACY/opensshserver.txt +SPDXID: SPDXRef-File-...LEGACY-opensshserver.txt-e56563b020042f2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/LICENSE.txt +SPDXID: SPDXRef-File-...LICENSE.txt-b5a02f76151a197f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/NodeFilter.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...NodeFilter.cpython-36.opt-1.pyc-57ab035dc05e21af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/NodeFilter.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...NodeFilter.cpython-36.opt-2.pyc-3cf25ca0c750563a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose-1.28.36-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-26f5dca0b03dd114 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus_python-1.2.4-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-7a7b9cef2a4515d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-800441630b142ce6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-869376688539b0c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-bd28bed913903e91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-bf244285e2e636bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps-0.1.18-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-c60bef20b2e47cf0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-d9e8b274b2c0eda7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/PatternGrammar3.6.8.final.0.pickle +SPDXID: SPDXRef-File-...PatternGrammar3.6.8.final.0.pickle-fd10cfbd14dec8f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/PySocks-1.6.8-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PySocks-1.6.8-py3.6.egg-info-PKG-INFO-8b161028d1df54f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-0bb58d96ebc6af20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/ethtool-0.14-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-4a1f3f1d66efdd6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/PySocks-1.6.8-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-629f04842ad8f7d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus_python-1.2.4-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-6302d665915fb284 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-68321575d6cc1a16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-799722ea4617dfc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-93cff17b12ad307e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose-1.28.36-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-a77c6d35cc0debc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-bdc33693ab3ab980 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-cc8d407a55da3cd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-d0ab41071d72ef91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps-0.1.18-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-dfeb7dc8a22e77be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-fe8a299ef2e9c9c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/X11/xinit/xinitrc.d/50-systemd-user.sh +SPDXID: SPDXRef-File-...X11-xinit-xinitrc.d-50-systemd-user.sh-f3b66277067c1b3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/action_client.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...action-client.cpython-36.opt-1.pyc-2cdb70453e7a2085 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/action_client.cpython-36.pyc +SPDXID: SPDXRef-File-...action-client.cpython-36.pyc-da986cffcb45f437 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/com.redhat.RHSM1.Facts.policy +SPDXID: SPDXRef-File-...actions-com.redhat.RHSM1.Facts.policy-55b55ce3a9cfe817 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/com.redhat.RHSM1.policy +SPDXID: SPDXRef-File-...actions-com.redhat.RHSM1.policy-f3bc1d932f655153 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/org.freedesktop.locale1.policy +SPDXID: SPDXRef-File-...actions-org.freedesktop.locale1.policy-3364b261c3333181 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/org.freedesktop.login1.policy +SPDXID: SPDXRef-File-...actions-org.freedesktop.login1.policy-8bb77ef3dae1e211 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/adapters.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...adapters.cpython-36.opt-1.pyc-c26e1a235f4df88d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/__pycache__/alg_lists.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...alg-lists.cpython-36.opt-1.pyc-ad41eec24e66b748 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/alg_lists.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...alg-lists.cpython-36.opt-1.pyc-f370bee54b8111c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/aliases.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...aliases.cpython-36.opt-1.pyc-22d0f51b50f469e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/aliases.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...aliases.cpython-36.opt-1.pyc-d8c18ffce3de4ba9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/aliases.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...aliases.cpython-36.opt-2.pyc-7db55c376bb62509 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/antigravity.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...antigravity.cpython-36.opt-1.pyc-a7e59ac452de53e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/antigravity.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...antigravity.cpython-36.opt-2.pyc-7baf19d02583494a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/api/__pycache__/repos.cpython-36.pyc +SPDXID: SPDXRef-File-...api---pycache---repos.cpython-36.pyc-ad37d452f1f8f4a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...appdirs.cpython-36.opt-1.pyc-9fa7d5f43be9ff43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/appengine.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...appengine.cpython-36.opt-1.pyc-6494d51b7bfbd0f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/application.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...application.cpython-36.opt-1.pyc-a49d9755597222e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/application.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...application.cpython-36.opt-2.pyc-c5ffcc60aff2ceff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/usr/servers/defaultServer/apps/guide-getting-started.war +SPDXID: SPDXRef-File-...apps-guide-getting-started.war-9c540d94dd610a8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/archive_util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...archive-util.cpython-36.opt-1.pyc-90eb08fe47c251d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/archive_util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...archive-util.cpython-36.opt-1.pyc-bc103eee57f1df34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/archive_util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...archive-util.cpython-36.opt-2.pyc-42d4f5dbf9aa0b58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/archive_util.cpython-36.pyc +SPDXID: SPDXRef-File-...archive-util.cpython-36.pyc-4208ed9c309e37d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/archive_util.cpython-36.pyc +SPDXID: SPDXRef-File-...archive-util.cpython-36.pyc-efa90c06f2117af5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/argparse.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...argparse.cpython-36.opt-1.pyc-990ec5789df88912 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/argparse.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...argparse.cpython-36.opt-2.pyc-847c4ee6efbc94ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/array.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...array.cpython-36m-x86-64-linux-gnu.so-86b7e0e3572d38a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/async_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...async-utils.cpython-36.opt-1.pyc-1d10df9eb3ae8ab7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/asynchat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...asynchat.cpython-36.opt-1.pyc-0356b07ec474d67d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/asynchat.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...asynchat.cpython-36.opt-2.pyc-1d2396ced0d44d99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/log.cpython-36.pyc +SPDXID: SPDXRef-File-...asyncio---pycache---log.cpython-36.pyc-14cf2cee855eec84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/asyncore.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...asyncore.cpython-36.opt-1.pyc-326d1aa47cb41f32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/asyncore.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...asyncore.cpython-36.opt-2.pyc-819f61f32bfb64d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/attach.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...attach.cpython-36.opt-1.pyc-63526e7a0b72793e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/attach.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...attach.cpython-36.opt-1.pyc-724e54f76a4526c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/audioop.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...audioop.cpython-36m-x86-64-linux-gnu.so-0967a307166ddc24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/autoremove.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...autoremove.cpython-36.opt-1.pyc-ee911a28dbb859d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/bind.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-bind.config-a8397b2c83999f6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/gnutls.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-gnutls.config-a69d908cc5d0bff5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/java.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-java.config-4e46ff2eece86b69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/krb5.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-krb5.config-9845f9ab6cb2daff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/libreswan.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-libreswan.config-e1b268d981488933 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/libssh.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-libssh.config-f984898a31daa7a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/nss.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-nss.config-2d4375d8043994dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/openssh.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-openssh.config-86cfd3270f8186e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/opensshserver.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-opensshserver.config-55ddfe487693493b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/openssl.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-openssl.config-d75669bbfd7f99ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/opensslcnf.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-opensslcnf.config-7d8ec13905994220 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/bind.config +SPDXID: SPDXRef-File-...back-ends-FIPS-bind.config-e0a56aafc6a74691 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/gnutls.config +SPDXID: SPDXRef-File-...back-ends-FIPS-gnutls.config-8eb8c2a422cc8171 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/java.config +SPDXID: SPDXRef-File-...back-ends-FIPS-java.config-077afe5bfa1ce8d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/krb5.config +SPDXID: SPDXRef-File-...back-ends-FIPS-krb5.config-7ec78608c9e249ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/libreswan.config +SPDXID: SPDXRef-File-...back-ends-FIPS-libreswan.config-70225bebe9311558 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/libssh.config +SPDXID: SPDXRef-File-...back-ends-FIPS-libssh.config-3887547c7daa62f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/nss.config +SPDXID: SPDXRef-File-...back-ends-FIPS-nss.config-c525294e8d49bb81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/openssh.config +SPDXID: SPDXRef-File-...back-ends-FIPS-openssh.config-4fc5ec119fb25df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/opensshserver.config +SPDXID: SPDXRef-File-...back-ends-FIPS-opensshserver.config-e2c85fb27ef1e37f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/openssl.config +SPDXID: SPDXRef-File-...back-ends-FIPS-openssl.config-fb984036c7bd3e21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/opensslcnf.config +SPDXID: SPDXRef-File-...back-ends-FIPS-opensslcnf.config-15cb1cffd1004d52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/bind.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-bind.config-4ef790b274d901cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/gnutls.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-gnutls.config-3dbd0a80dd01bafb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/java.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-java.config-c10f535734511b04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/krb5.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-krb5.config-4947eb9ebaebd789 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/libreswan.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-libreswan.config-e65788c8a188872e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/libssh.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-libssh.config-d157fc4fa7324605 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/nss.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-nss.config-6288a2c337b26e22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/openssh.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-openssh.config-1b640f3502c79778 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/opensshserver.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-opensshserver.config-9680180e24a509b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/openssl.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-openssl.config-faa27545967db140 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/opensslcnf.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-opensslcnf.config-2fd9dfb1d605fd82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/bind.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-bind.config-1fa70fc9d8f807be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/gnutls.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-gnutls.config-00d41282c039e6a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/java.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-java.config-d8719147b6288df1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/krb5.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-krb5.config-0d9d9f8b3878e1fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/libreswan.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-libreswan.config-4ba1ebbfa107e92d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/libssh.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-libssh.config-f9b48db8e1c14592 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/nss.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-nss.config-18140d9a745968db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/openssh.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-openssh.config-8f74cfe195f82837 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/opensshserver.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-opensshserver.config-0ce74952d083e1df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/openssl.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-openssl.config-9b28a0bdb753ba76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/opensslcnf.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-opensslcnf.config-06de8a105e140f2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/base_action_client.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base-action-client.cpython-36.opt-1.pyc-3188ea90dbc086a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/base_action_client.cpython-36.pyc +SPDXID: SPDXRef-File-...base-action-client.cpython-36.pyc-ce61d1001c87f6ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/base_action_client.py +SPDXID: SPDXRef-File-...base-action-client.py-ea0590f75013f59d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_events.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base-events.cpython-36.opt-1.pyc-96cee469d6ea8758 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_events.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...base-events.cpython-36.opt-2.pyc-e0c05b47ad18ee63 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_futures.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base-futures.cpython-36.opt-1.pyc-854b24dfe7e02486 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_futures.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...base-futures.cpython-36.opt-2.pyc-8d8cbbc2a1a583fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_futures.cpython-36.pyc +SPDXID: SPDXRef-File-...base-futures.cpython-36.pyc-e3237be203ab82c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/base_object.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base-object.cpython-36.opt-1.pyc-07074e238092ad3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/base_plugin.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base-plugin.cpython-36.opt-1.pyc-5b3ade2d2778f468 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_subprocess.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base-subprocess.cpython-36.opt-1.pyc-c195af47a598f294 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_subprocess.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...base-subprocess.cpython-36.opt-2.pyc-1856a0442e662483 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_subprocess.cpython-36.pyc +SPDXID: SPDXRef-File-...base-subprocess.cpython-36.pyc-a083b7e634ca52b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_tasks.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base-tasks.cpython-36.opt-1.pyc-c650dbb5affcb50b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_tasks.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...base-tasks.cpython-36.opt-2.pyc-18c7f1382c209dd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/base64_codec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base64-codec.cpython-36.opt-1.pyc-856c74ef6bf60365 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/base64_codec.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...base64-codec.cpython-36.opt-2.pyc-d6f865ad8b467f0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/base64_codec.cpython-36.pyc +SPDXID: SPDXRef-File-...base64-codec.cpython-36.pyc-439218b7fc0a01b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/base64.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base64.cpython-36.opt-1.pyc-9a54c11cc3152aab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/base64.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...base64.cpython-36.opt-2.pyc-e5f593d523092f05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/base64mime.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base64mime.cpython-36.opt-1.pyc-8d0b1c084c89777f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/base64mime.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...base64mime.cpython-36.opt-2.pyc-3a7e52822ea02869 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/addpart +SPDXID: SPDXRef-File-...bash-completion-completions-addpart-42a73d91dcf5a53f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/blkdiscard +SPDXID: SPDXRef-File-...bash-completion-completions-blkdiscard-83dfc2de62395006 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/blkid +SPDXID: SPDXRef-File-...bash-completion-completions-blkid-f2a427905b520cff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/blkzone +SPDXID: SPDXRef-File-...bash-completion-completions-blkzone-5f33c245bbb53a4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/blockdev +SPDXID: SPDXRef-File-...bash-completion-completions-blockdev-b6e3a4ad205ca263 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/busctl +SPDXID: SPDXRef-File-...bash-completion-completions-busctl-8374e71bd5cc9523 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/cfdisk +SPDXID: SPDXRef-File-...bash-completion-completions-cfdisk-3db23fe184ad3cf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/chcpu +SPDXID: SPDXRef-File-...bash-completion-completions-chcpu-5d45f654f0278ad8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/chmem +SPDXID: SPDXRef-File-...bash-completion-completions-chmem-947d40733436a708 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/colcrt +SPDXID: SPDXRef-File-...bash-completion-completions-colcrt-0fb8b96448b70908 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/colrm +SPDXID: SPDXRef-File-...bash-completion-completions-colrm-cb8608a95c9a66b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/column +SPDXID: SPDXRef-File-...bash-completion-completions-column-0151eb4ffb2838fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/ctrlaltdel +SPDXID: SPDXRef-File-...bash-completion-completions-ctrlaltdel-9d9780b99ab2944e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/delpart +SPDXID: SPDXRef-File-...bash-completion-completions-delpart-cb46c71515f19452 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/dmesg +SPDXID: SPDXRef-File-...bash-completion-completions-dmesg-2b377c93f58288fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/eject +SPDXID: SPDXRef-File-...bash-completion-completions-eject-7547d67de4f69dc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fallocate +SPDXID: SPDXRef-File-...bash-completion-completions-fallocate-915daa07c316065f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fdformat +SPDXID: SPDXRef-File-...bash-completion-completions-fdformat-b74153f64fadf3f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fdisk +SPDXID: SPDXRef-File-...bash-completion-completions-fdisk-52f8cb702e31efd8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fincore +SPDXID: SPDXRef-File-...bash-completion-completions-fincore-7ee9158014cd30f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/findfs +SPDXID: SPDXRef-File-...bash-completion-completions-findfs-181697daf2d23e54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/findmnt +SPDXID: SPDXRef-File-...bash-completion-completions-findmnt-f794499269e45fda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/flock +SPDXID: SPDXRef-File-...bash-completion-completions-flock-20de0265d9ee6bec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fsck.minix +SPDXID: SPDXRef-File-...bash-completion-completions-fsck.minix-b69872cb9dd036c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fsfreeze +SPDXID: SPDXRef-File-...bash-completion-completions-fsfreeze-6b54a400cffd3794 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fstrim +SPDXID: SPDXRef-File-...bash-completion-completions-fstrim-873db4bbfae54631 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/gdbus +SPDXID: SPDXRef-File-...bash-completion-completions-gdbus-51ecee8f3b4de042 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/getopt +SPDXID: SPDXRef-File-...bash-completion-completions-getopt-94d68091bfec53de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/gsettings +SPDXID: SPDXRef-File-...bash-completion-completions-gsettings-e9f9c8acbde8abd8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/hexdump +SPDXID: SPDXRef-File-...bash-completion-completions-hexdump-b8196b81f13837c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/hwclock +SPDXID: SPDXRef-File-...bash-completion-completions-hwclock-7851780290f5206b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/ionice +SPDXID: SPDXRef-File-...bash-completion-completions-ionice-b5f1240d76066374 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/ipcmk +SPDXID: SPDXRef-File-...bash-completion-completions-ipcmk-a599f9c7867d5013 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/ipcrm +SPDXID: SPDXRef-File-...bash-completion-completions-ipcrm-60e25949684d020b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/isosize +SPDXID: SPDXRef-File-...bash-completion-completions-isosize-32d67f523f7cb5a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/journalctl +SPDXID: SPDXRef-File-...bash-completion-completions-journalctl-501b603eec98fe3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/ldattach +SPDXID: SPDXRef-File-...bash-completion-completions-ldattach-60836ff1c9ea17a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/localectl +SPDXID: SPDXRef-File-...bash-completion-completions-localectl-e965a05b8dc814a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/logger +SPDXID: SPDXRef-File-...bash-completion-completions-logger-b0b08627102a01b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/loginctl +SPDXID: SPDXRef-File-...bash-completion-completions-loginctl-64e75cbcc451ab3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/losetup +SPDXID: SPDXRef-File-...bash-completion-completions-losetup-9cccb7602611be56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/lsblk +SPDXID: SPDXRef-File-...bash-completion-completions-lsblk-a613fbb0fb1b75f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/lscpu +SPDXID: SPDXRef-File-...bash-completion-completions-lscpu-03f0c0b2da6f97c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/lsipc +SPDXID: SPDXRef-File-...bash-completion-completions-lsipc-c5b3b8743182b91e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/lslocks +SPDXID: SPDXRef-File-...bash-completion-completions-lslocks-36aa5a43e76c589b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/lslogins +SPDXID: SPDXRef-File-...bash-completion-completions-lslogins-e5324a207a67117e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/lsmem +SPDXID: SPDXRef-File-...bash-completion-completions-lsmem-5d2f5c55111f293e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/mcookie +SPDXID: SPDXRef-File-...bash-completion-completions-mcookie-5ec66cca7c95f4f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/mkfs.minix +SPDXID: SPDXRef-File-...bash-completion-completions-mkfs.minix-e0ea5186eb5d5eae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/mkswap +SPDXID: SPDXRef-File-...bash-completion-completions-mkswap-1efa1a7a07e87a21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/mountpoint +SPDXID: SPDXRef-File-...bash-completion-completions-mountpoint-60d73a132d70817f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/namei +SPDXID: SPDXRef-File-...bash-completion-completions-namei-02a28998b737030d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/nsenter +SPDXID: SPDXRef-File-...bash-completion-completions-nsenter-74e34397f2efed8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/p11-kit +SPDXID: SPDXRef-File-...bash-completion-completions-p11-kit-5186ae069aab5e63 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/partx +SPDXID: SPDXRef-File-...bash-completion-completions-partx-6105797b34696fd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/pivot_root +SPDXID: SPDXRef-File-...bash-completion-completions-pivot-root-044aa0992967cad0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/prlimit +SPDXID: SPDXRef-File-...bash-completion-completions-prlimit-c61c618011e56de7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rename +SPDXID: SPDXRef-File-...bash-completion-completions-rename-43392add584bbfd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/renice +SPDXID: SPDXRef-File-...bash-completion-completions-renice-54b02297e6a2456a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/resizepart +SPDXID: SPDXRef-File-...bash-completion-completions-resizepart-940d83463e0238af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/resolvectl +SPDXID: SPDXRef-File-...bash-completion-completions-resolvectl-29f111fb596d0c0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rfkill +SPDXID: SPDXRef-File-...bash-completion-completions-rfkill-859d3540564702e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rhsm-debug +SPDXID: SPDXRef-File-...bash-completion-completions-rhsm-debug-fa28bcf296e48e99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rhsmcertd +SPDXID: SPDXRef-File-...bash-completion-completions-rhsmcertd-40ff3eae3072bf74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rtcwake +SPDXID: SPDXRef-File-...bash-completion-completions-rtcwake-0572c707bcf108ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/script +SPDXID: SPDXRef-File-...bash-completion-completions-script-1e8d831fdaaf366a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/setarch +SPDXID: SPDXRef-File-...bash-completion-completions-setarch-b2ea50b45a902402 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/setpriv +SPDXID: SPDXRef-File-...bash-completion-completions-setpriv-30958e193354fdde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/setsid +SPDXID: SPDXRef-File-...bash-completion-completions-setsid-e67bb29eb0634edc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/setterm +SPDXID: SPDXRef-File-...bash-completion-completions-setterm-4412aa0fef05e2b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/sfdisk +SPDXID: SPDXRef-File-...bash-completion-completions-sfdisk-a015a59ee7fe55c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/swaplabel +SPDXID: SPDXRef-File-...bash-completion-completions-swaplabel-7c448e00f4028724 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/swapoff +SPDXID: SPDXRef-File-...bash-completion-completions-swapoff-9c9926344b7ffeef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/swapon +SPDXID: SPDXRef-File-...bash-completion-completions-swapon-033ac11209c8080f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/syspurpose +SPDXID: SPDXRef-File-...bash-completion-completions-syspurpose-04c72526b0376275 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemctl +SPDXID: SPDXRef-File-...bash-completion-completions-systemctl-95733c641f37ac09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/taskset +SPDXID: SPDXRef-File-...bash-completion-completions-taskset-784e8106bef7db6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/trust +SPDXID: SPDXRef-File-...bash-completion-completions-trust-344d6e12a0ee7993 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/unshare +SPDXID: SPDXRef-File-...bash-completion-completions-unshare-a1915de01860ac22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/utmpdump +SPDXID: SPDXRef-File-...bash-completion-completions-utmpdump-3dbfd5ebf103b777 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/uuidgen +SPDXID: SPDXRef-File-...bash-completion-completions-uuidgen-591b2becb413549c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/uuidparse +SPDXID: SPDXRef-File-...bash-completion-completions-uuidparse-25cfadc72252baa2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/wdctl +SPDXID: SPDXRef-File-...bash-completion-completions-wdctl-c902730044ac1a2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/whereis +SPDXID: SPDXRef-File-...bash-completion-completions-whereis-340b0a956199b919 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/wipefs +SPDXID: SPDXRef-File-...bash-completion-completions-wipefs-e887fb34d8808a47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/write +SPDXID: SPDXRef-File-...bash-completion-completions-write-6cd2fe28886811a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/zramctl +SPDXID: SPDXRef-File-...bash-completion-completions-zramctl-eb69510bf1db58d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/bcppcompiler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bcppcompiler.cpython-36.opt-1.pyc-6bd44ffe84f86193 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/bcppcompiler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...bcppcompiler.cpython-36.opt-2.pyc-b12e56b6f3abc211 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/bcppcompiler.cpython-36.pyc +SPDXID: SPDXRef-File-...bcppcompiler.cpython-36.pyc-dc3ee262f54415e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_dumb.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bdist-dumb.cpython-36.opt-1.pyc-6082fc2c0beda77f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_dumb.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...bdist-dumb.cpython-36.opt-2.pyc-9b43e385b90d4b71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bdist-egg.cpython-36.opt-1.pyc-18490b4629d7192e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_msi.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bdist-msi.cpython-36.opt-1.pyc-d508615a7161eb68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_msi.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...bdist-msi.cpython-36.opt-2.pyc-36b9ab18889c248d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_rpm.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bdist-rpm.cpython-36.opt-1.pyc-65d1f55e762e6d42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bdist-rpm.cpython-36.opt-1.pyc-d448b53e63fc0a9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_rpm.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...bdist-rpm.cpython-36.opt-2.pyc-7d07f9ffae0b9eed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_wininst.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bdist-wininst.cpython-36.opt-1.pyc-2bfce4f8af7ab87c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/bdist_wininst.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bdist-wininst.cpython-36.opt-1.pyc-a409d9dea637b2b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_wininst.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...bdist-wininst.cpython-36.opt-2.pyc-e381d2f93496b3ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/bdist_wininst.cpython-36.pyc +SPDXID: SPDXRef-File-...bdist-wininst.cpython-36.pyc-6e5b90308de926bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_wininst.cpython-36.pyc +SPDXID: SPDXRef-File-...bdist-wininst.cpython-36.pyc-fe8646beb2b9c33b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/big5freq.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...big5freq.cpython-36.opt-1.pyc-f8c662d8371ca277 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/big5hkscs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...big5hkscs.cpython-36.opt-1.pyc-0c91bcf8968772d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/big5hkscs.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...big5hkscs.cpython-36.opt-2.pyc-a3dd043ab8fc9a20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/big5prober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...big5prober.cpython-36.opt-1.pyc-dbc1f1059b2f9296 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-update-activation-environment +SPDXID: SPDXRef-File-...bin-dbus-update-activation-environment-f686ef501f9755b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/bin/tools/ws-webserverPluginutil.jar +SPDXID: SPDXRef-File-...bin-tools-ws-webserverPluginutil.jar-50f2a2192da7580b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /usr/lib64/python3.6/lib-dynload/binascii.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...binascii.cpython-36m-x86-64-linux-gnu.so-f5f3f80cfb4af64e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bindings.cpython-36.opt-1.pyc-dfc7b1e905ceb7d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/binhex.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...binhex.cpython-36.opt-1.pyc-e9d2adfa4aa5e9d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/binhex.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...binhex.cpython-36.opt-2.pyc-34be0ac8b736e90d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bisect.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bisect.cpython-36.opt-1.pyc-a999edc4526ba8b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bisect.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...bisect.cpython-36.opt-2.pyc-2ff4da4dd389fdcd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/bitstream.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bitstream.cpython-36.opt-1.pyc-05ba05489294a279 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/branding/__init__.py +SPDXID: SPDXRef-File-...branding---init--.py-36c65341752e0eaa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/branding/redhat_branding.py +SPDXID: SPDXRef-File-...branding-redhat-branding.py-22280c5befe4c32b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/btm_matcher.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...btm-matcher.cpython-36.opt-1.pyc-fc6d6df3e0bb5b73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/btm_matcher.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...btm-matcher.cpython-36.opt-2.pyc-14e8232add708339 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/btm_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...btm-utils.cpython-36.opt-1.pyc-75951ec65b5ff5a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/btm_utils.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...btm-utils.cpython-36.opt-2.pyc-ce222e4035ce30df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_clib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-clib.cpython-36.opt-1.pyc-192dcdbe8799786a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/build_clib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-clib.cpython-36.opt-1.pyc-8522bdd03e9d5815 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_clib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...build-clib.cpython-36.opt-2.pyc-a33ba6fbd50bcc13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/__pycache__/build-crypto-policies.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-crypto-policies.cpython-36.opt-1.pyc-7f473f78a6e4a0b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/__pycache__/build-crypto-policies.cpython-36.pyc +SPDXID: SPDXRef-File-...build-crypto-policies.cpython-36.pyc-887cc52667a566a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_ext.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-ext.cpython-36.opt-1.pyc-4b72c983ad45fbc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/build_ext.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-ext.cpython-36.opt-1.pyc-a466e115febd5ac8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_ext.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...build-ext.cpython-36.opt-2.pyc-ab6793df05400c9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/build_meta.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-meta.cpython-36.opt-1.pyc-39186fc1337e108d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_py.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-py.cpython-36.opt-1.pyc-266e0cadb97d0cfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/build_py.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-py.cpython-36.opt-1.pyc-d488d86d8b96e2cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_py.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...build-py.cpython-36.opt-2.pyc-024155713c3c9fc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_scripts.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-scripts.cpython-36.opt-1.pyc-1032a808f9730741 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_scripts.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...build-scripts.cpython-36.opt-2.pyc-c900e1f423a5a00e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_scripts.cpython-36.pyc +SPDXID: SPDXRef-File-...build-scripts.cpython-36.pyc-66045853ee05d586 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/builddep.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...builddep.cpython-36.opt-1.pyc-e394aca5ebc82cbb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/bz2_codec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bz2-codec.cpython-36.opt-1.pyc-9fbba98eb3d2a6fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/bz2_codec.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...bz2-codec.cpython-36.opt-2.pyc-0f04c66db679c2cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/cElementTree.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cElementTree.cpython-36.opt-1.pyc-6e1fa583d04a9e09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/cElementTree.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cElementTree.cpython-36.opt-2.pyc-257245dd53019ff7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/cElementTree.cpython-36.pyc +SPDXID: SPDXRef-File-...cElementTree.cpython-36.pyc-5f3aef64c25374bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cProfile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cProfile.cpython-36.opt-1.pyc-1237744e1eff2cc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cProfile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cProfile.cpython-36.opt-2.pyc-b3ffcd93227e909e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/pki/ca-trust-legacy/ca-bundle.legacy.default.crt +SPDXID: SPDXRef-File-...ca-bundle.legacy.default.crt-2366fa373c9550b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/pki/ca-trust-legacy/ca-bundle.legacy.disable.crt +SPDXID: SPDXRef-File-...ca-bundle.legacy.disable.crt-c8ab04ad02c2908d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/pki/ca-trust-source/ca-bundle.trust.p11-kit +SPDXID: SPDXRef-File-...ca-bundle.trust.p11-kit-ab5fa56a58a54116 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rhsm/ca/redhat-entitlement-authority.pem +SPDXID: SPDXRef-File-...ca-redhat-entitlement-authority.pem-3595f63cb19ab7cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/edk2/cacerts.bin +SPDXID: SPDXRef-File-...ca-trust-extracted-edk2-cacerts.bin-79568197b9801373 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/calendar.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...calendar.cpython-36.opt-1.pyc-3dd25d74bf56ac1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/calendar.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...calendar.cpython-36.opt-2.pyc-ac1e3b3a9189471e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/callback.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...callback.cpython-36.opt-1.pyc-59c4decbbf1e166f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/callbacks.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...callbacks.cpython-36.opt-1.pyc-c78968ac91f3ebb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.be@latin.catalog +SPDXID: SPDXRef-File-...catalog-systemd.be-latin.catalog-f0781f26a8905154 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/ccompiler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ccompiler.cpython-36.opt-1.pyc-4047f7cbdb49e567 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/ccompiler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ccompiler.cpython-36.opt-2.pyc-7f2e802a015d3eda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/cert_commands.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cert-commands.cpython-36.opt-1.pyc-a934f62dfd28ebed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/cert_commands.cpython-36.pyc +SPDXID: SPDXRef-File-...cert-commands.cpython-36.pyc-8dd005cce22b25ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cert_sorter.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cert-sorter.cpython-36.opt-1.pyc-d95cb9747208aa5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/certdirectory.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...certdirectory.cpython-36.opt-1.pyc-1a7547a53c0963a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/certdirectory.cpython-36.pyc +SPDXID: SPDXRef-File-...certdirectory.cpython-36.pyc-09445c2ec66ca56d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/certificate.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...certificate.cpython-36.opt-1.pyc-3af58bbad1e70c5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/certificate2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...certificate2.cpython-36.opt-1.pyc-993235f0ed0a1c75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/certificate2.cpython-36.pyc +SPDXID: SPDXRef-File-...certificate2.cpython-36.pyc-f267e771ee91fda9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/certlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...certlib.cpython-36.opt-1.pyc-91147e2f782516a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/changelog.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...changelog.cpython-36.opt-1.pyc-18f74be3a57809ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...chardet-3.0.4-py3.6.egg-info-PKG-INFO-944ffd667cc9db41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/chardistribution.py +SPDXID: SPDXRef-File-...chardet-chardistribution.py-9af06b5487ec8414 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/charsetgroupprober.py +SPDXID: SPDXRef-File-...chardet-charsetgroupprober.py-c2ac137fbbbf4827 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/cli/chardetect.py +SPDXID: SPDXRef-File-...chardet-cli-chardetect.py-52b805fe7364f955 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/codingstatemachine.py +SPDXID: SPDXRef-File-...chardet-codingstatemachine.py-568f3507c4831e9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/langbulgarianmodel.py +SPDXID: SPDXRef-File-...chardet-langbulgarianmodel.py-7a8a63ca4f8a6838 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/langcyrillicmodel.py +SPDXID: SPDXRef-File-...chardet-langcyrillicmodel.py-2af0335aa3d37b56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/langgreekmodel.py +SPDXID: SPDXRef-File-...chardet-langgreekmodel.py-f5c0a0517b485775 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/langhebrewmodel.py +SPDXID: SPDXRef-File-...chardet-langhebrewmodel.py-1910e46ebc396a3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/langhungarianmodel.py +SPDXID: SPDXRef-File-...chardet-langhungarianmodel.py-18073081b68a426e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/langturkishmodel.py +SPDXID: SPDXRef-File-...chardet-langturkishmodel.py-cf6a24a0d5dfd507 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/mbcharsetprober.py +SPDXID: SPDXRef-File-...chardet-mbcharsetprober.py-d7758d23b20b448f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/mbcsgroupprober.py +SPDXID: SPDXRef-File-...chardet-mbcsgroupprober.py-e34e84952974b9d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/sbcharsetprober.py +SPDXID: SPDXRef-File-...chardet-sbcharsetprober.py-842683127bc2fa68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/sbcsgroupprober.py +SPDXID: SPDXRef-File-...chardet-sbcsgroupprober.py-6e9572a23062eaae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/universaldetector.py +SPDXID: SPDXRef-File-...chardet-universaldetector.py-ce856d8f42868c6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/cli/__pycache__/chardetect.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...chardetect.cpython-36.opt-1.pyc-b0f2949cdb9efa6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/chardistribution.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...chardistribution.cpython-36.opt-1.pyc-61b102bcc639c94b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/chardistribution.cpython-36.pyc +SPDXID: SPDXRef-File-...chardistribution.cpython-36.pyc-e5d45547f87068be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/charmap.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...charmap.cpython-36.opt-1.pyc-4907992b0d460a4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/charmap.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...charmap.cpython-36.opt-2.pyc-e524b07c5fbb9170 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/charset.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...charset.cpython-36.opt-1.pyc-a96cea6cfa55bff7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/charset.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...charset.cpython-36.opt-2.pyc-49c997fab77e5d16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/charsetgroupprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...charsetgroupprober.cpython-36.opt-1.pyc-b58dee54b498fefd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/charsetgroupprober.cpython-36.pyc +SPDXID: SPDXRef-File-...charsetgroupprober.cpython-36.pyc-a34378488fbb1c6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/charsetprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...charsetprober.cpython-36.opt-1.pyc-e2c3a2635db75f0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/charsetprober.cpython-36.pyc +SPDXID: SPDXRef-File-...charsetprober.cpython-36.pyc-0cf46994b9835531 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/cleanup.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cleanup.cpython-36.opt-1.pyc-d3bb6ef11a72b48d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/aliases.cpython-36.pyc +SPDXID: SPDXRef-File-...cli---pycache---aliases.cpython-36.pyc-9816a0fd3fbced6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/demand.cpython-36.pyc +SPDXID: SPDXRef-File-...cli---pycache---demand.cpython-36.pyc-8672375d166d0502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/format.cpython-36.pyc +SPDXID: SPDXRef-File-...cli---pycache---format.cpython-36.pyc-b27896835f2daf59 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/main.cpython-36.pyc +SPDXID: SPDXRef-File-...cli---pycache---main.cpython-36.pyc-1728d6580654be15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/output.cpython-36.pyc +SPDXID: SPDXRef-File-...cli---pycache---output.cpython-36.pyc-7bce6b010aaa653f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/term.cpython-36.pyc +SPDXID: SPDXRef-File-...cli---pycache---term.cpython-36.pyc-ae69fea3ad3a580f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...cli---pycache---utils.cpython-36.pyc-5ed71843863c8a46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/client.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...client.cpython-36.opt-1.pyc-0cb5fe00f5df65f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/client.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...client.cpython-36.opt-1.pyc-8d78d7e1e89f9cb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/client.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...client.cpython-36.opt-1.pyc-9382156f3d7d33b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/client.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...client.cpython-36.opt-2.pyc-5a8dcaeb07488a42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/client.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...client.cpython-36.opt-2.pyc-6bf21217050773f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/cloud_facts.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cloud-facts.cpython-36.opt-1.pyc-ecbf29e81ac521f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/_base_provider.py +SPDXID: SPDXRef-File-...cloud-what--base-provider.py-5c5dde0cf2aed132 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/fact_collector.py +SPDXID: SPDXRef-File-...cloud-what-fact-collector.py-059c321df3a32280 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__init__.py +SPDXID: SPDXRef-File-...cloud-what-providers---init--.py-3d5a1e43ca982c18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/aws.py +SPDXID: SPDXRef-File-...cloud-what-providers-aws.py-2816a0279321cd93 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/azure.py +SPDXID: SPDXRef-File-...cloud-what-providers-azure.py-7f3d7437ef85c772 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/gcp.py +SPDXID: SPDXRef-File-...cloud-what-providers-gcp.py-9ccf5794bf1a7399 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/cmath.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...cmath.cpython-36m-x86-64-linux-gnu.so-92ce74d804984e5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/codecs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...codecs.cpython-36.opt-1.pyc-4e46c7698fefa9e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/codecs.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...codecs.cpython-36.opt-2.pyc-c4a13021bb7decd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/codeop.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...codeop.cpython-36.opt-1.pyc-fac8b28cfebff2f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/codeop.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...codeop.cpython-36.opt-2.pyc-dcc340f6c164f764 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/codingstatemachine.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...codingstatemachine.cpython-36.opt-1.pyc-55c35a28c3ee2159 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/codingstatemachine.cpython-36.pyc +SPDXID: SPDXRef-File-...codingstatemachine.cpython-36.pyc-d46531d8ea3bbe8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/collection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...collection.cpython-36.opt-1.pyc-46c59428a4dddead +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/collector.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...collector.cpython-36.opt-1.pyc-b5fbdafc5548ffe3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/colorsys.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...colorsys.cpython-36.opt-1.pyc-62fd5978df09083f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/colorsys.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...colorsys.cpython-36.opt-2.pyc-cd33b0a086fb8079 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/lib/com.ibm.rls.jdbc.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.rls.jdbc.jakarta-1.0.81.jar-5538796d2660d732 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.basics_1.4.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.basics-1.4.81.jar-00605df85686e2c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.config_1.2.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.config-1.2.81.jar-d78fc23f82ac0cf7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.distributedMap_2.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.distributedMap-2.0.81.jar-faf2e170c3ad3f4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.endpoint_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.endpoint-1.0.81.jar-83238c71f4047c25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.hpel_2.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.hpel-2.0.81.jar-db4651692d448f54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.json_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.json-1.0.81.jar-dab5ce270ff355ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.kernel.service_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.kernel.service-1.1.81.jar-bf23c2abe81e7ad7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.monitor_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.monitor-1.1.81.jar-cbb12be1c28f0a7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.security.spnego_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.security.spnego-1.1.81.jar-af60242b9612b3c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.sessionstats_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.sessionstats-1.0.81.jar-2069e7d0cc7ed243 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.ssl_1.5.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.ssl-1.5.81.jar-9037cb65e8f378f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.anno_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.anno-1.1.81.jar-18a6f815c8767cfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.application_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.application-1.1.81.jar-2ced5dfcfb5b2dcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.artifact_1.2.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.artifact-1.2.81.jar-3e1850474b015dc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.classloading_1.4.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.classloading-1.4.81.jar-c421757311bdb945 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.containerServices_4.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.containerServices-4.0.81.jar-1505b09ac51969ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.httptransport_4.2.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.httptransport-4.2.81.jar-015bc3e9670e677a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.javaeedd_1.7.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.javaeedd-1.7.81.jar-d16bc499155f81c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.embeddable_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.embeddable-1.1.81.jar-fb628820b43b5c28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.filemonitor_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.filemonitor-1.0.81.jar-dda1699e6f79dc00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.metatype_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.metatype-1.0.81.jar-0ce64112c9304df6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.service_1.8.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.service-1.8.81.jar-81fcdeddee0d0f8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.logging_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.logging-1.1.81.jar-361f629061009b52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.ssl_1.5.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.ssl-1.5.81.jar-0ee4a6e722e22f10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.threading_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.threading-1.1.81.jar-88cd16be02d351c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.transaction_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.transaction-1.1.81.jar-bc330c7d1af04ac5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/com.ibm.websphere.javaee.activity.1.0_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.javaee.activity.1.0-1.0.81.jar-dfbabb310ca0c677 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.websphere.javaee.jcache.1.1.core.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.javaee.jcache.1.1.core.jakarta-1.0.81.jar-7321e500575d8af3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/com.ibm.websphere.javaee.jsonp.1.0_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.javaee.jsonp.1.0-1.0.81.jar-e0ec2b7af27e6287 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.websphere.jsonsupport_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.jsonsupport-1.0.81.jar-73a8961d53249d3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/stable/com.ibm.websphere.org.reactivestreams.reactive-streams.1.0_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.org.reactivestreams.reactive-streams.1.0-1.1.81.jar-bdb04312bd1a7d12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.websphere.rest.handler_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.rest.handler-1.0.81.jar-e2c6105bbb674308 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.websphere.security_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.security-1.1.81.jar-b1f2f0fb0c6dadfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.websphere.security.authentication_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.security.authentication-1.0.81.jar-ae6b7e37f8b4c225 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.websphere.security.impl_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.security.impl-1.0.81.jar-b125d98c471afcf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.adaptable.module_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.adaptable.module-1.0.81.jar-f08a5a4060540b5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.app.manager.lifecycle_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.app.manager.lifecycle-1.0.81.jar-c911c9dac217d462 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.app.manager.module_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.app.manager.module-1.0.81.jar-939b6904aa1353b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.app.manager.ready_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.app.manager.ready-1.0.81.jar-f682a30ecad6dc0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.app.manager.wab.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.app.manager.wab.jakarta-1.0.81.jar-f6e84fa2d4205419 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.app.manager.war.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.app.manager.war.jakarta-1.0.81.jar-6fb5a10a31b0d48f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact.bundle_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.artifact.bundle-1.0.81.jar-0982cf16138a6eaa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact.equinox.module_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.artifact.equinox.module-1.0.81.jar-32f241197a65e965 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact.file_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.artifact.file-1.0.81.jar-b2cdc51fea663cd3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact.loose_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.artifact.loose-1.0.81.jar-40c9afa825d7cd32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact.overlay_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.artifact.overlay-1.0.81.jar-a59c585148f50cc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.cdi.interfaces.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.cdi.interfaces.jakarta-1.0.81.jar-42b88f93823e8034 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.cdi.internal.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.cdi.internal.jakarta-1.0.81.jar-5154d278b0325d24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.cdi.jndi.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.cdi.jndi.jakarta-1.0.81.jar-3176ae3a323b3898 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.cdi.transaction.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.cdi.transaction.jakarta-1.0.81.jar-e9eb18fdb5da6e9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.cdi.web.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.cdi.web.jakarta-1.0.81.jar-cdc702ca5ba52723 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.cdi.weld.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.cdi.weld.jakarta-1.0.81.jar-d0a1cba265beed50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.classloader.context_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.classloader.context-1.0.81.jar-fb5d2f4623401edb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.classloading.configuration_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.classloading.configuration-1.0.81.jar-43220197fe5d6cd2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.collector.manager_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.collector.manager-1.0.81.jar-0dffa7576ee4c7e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.config.schemagen_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.config.schemagen-1.0.81.jar-fff7598d8c4aab16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.config.server.schemagen_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.config.server.schemagen-1.0.81.jar-03932bf40ecb0eb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.container.service_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.container.service-1.0.81.jar-30a4298d6116e93d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.crypto.certificate.creator.selfsigned_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.crypto.certificate.creator.selfsigned-1.0.81.jar-dd550de26b46bed4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.crypto.certificateutil_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.crypto.certificateutil-1.0.81.jar-dbdf8948b0c5e84f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.crypto.ltpakeyutil_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.crypto.ltpakeyutil-1.0.81.jar-c38314545dc44464 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.crypto.passwordutil_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.crypto.passwordutil-1.0.81.jar-4cd275cd3f4a6e1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.dynacache.monitor_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.dynacache.monitor-1.0.81.jar-59fff79cff650dc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.dynamic.bundle_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.dynamic.bundle-1.0.81.jar-ef93cc389aa3c695 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.eba.wab.integrator_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.eba.wab.integrator-1.0.81.jar-b38dc8096af5f2f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.http.plugin.merge_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.http.plugin.merge-1.0.81.jar-753d1d333a39618f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.injection.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.injection.jakarta-1.0.81.jar-64310fabe5169329 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.install.featureUtility_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.install.featureUtility-1.0.81.jar-1cdd43728057c16d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.dd.common_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.dd.common-1.1.81.jar-af2a6109841fb6c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.dd.ejb_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.dd.ejb-1.1.81.jar-764a3090e8e80c10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.ddmodel_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.ddmodel-1.0.81.jar-deb18579eaa4659f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.metadata.context_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.metadata.context-1.0.81.jar-e54c4be548eb5158 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.defaultresource_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.platform.defaultresource-1.0.81.jar-9826e4fcf3d4d00a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v7_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.platform.v7-1.0.81.jar-caded2919b31b48a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v7.jndi_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.platform.v7.jndi-1.0.81.jar-1969be499675deac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v8_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.platform.v8-1.0.81.jar-04a9ec6be4f0400f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.version_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.version-1.0.81.jar-f311d0b09f6cbe10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.jaxrs.2.x.config_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.jaxrs.2.x.config-1.0.81.jar-270d0a13811c5349 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.jaxrs.2.x.monitor.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.jaxrs.2.x.monitor.jakarta-1.0.81.jar-f93a38504e2a0d0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta-1.0.81.jar-ecfd17b0ea10f69f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.jndi.url.contexts_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.jndi.url.contexts-1.0.81.jar-f374774c6f46170b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.jsonb.service_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.jsonb.service-1.0.81.jar-2f0df6f3e2cc539a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.boot.archive_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.kernel.boot.archive-1.0.81.jar-88cc1e1259942caf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.cmdline_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.kernel.cmdline-1.0.81.jar-84cfc54d80dbb8fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.equinox.module_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.kernel.equinox.module-1.0.81.jar-0849764e1a973fad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.feature_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.kernel.feature-1.0.81.jar-6f462ab14f382e67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.filemonitor_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.kernel.filemonitor-1.0.81.jar-3f098f8b03ee629e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.metatype.helper_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.kernel.metatype.helper-1.0.81.jar-5ed3d5c92d2fec9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.service_1.3.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.kernel.service-1.3.81.jar-b6b931108d3c289c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.logging.hpel.osgi_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.logging.hpel.osgi-1.0.81.jar-69155660b1c476a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.managedobject_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.managedobject-1.0.81.jar-80cce54a959a2bd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.management.security_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.management.security-1.0.81.jar-3fb3c0f680c08baa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.microprofile.metrics.common_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.microprofile.metrics.common-1.0.81.jar-e4810f72921ec667 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jmx.api_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.aries.jmx.api-1.0.81.jar-5e7d77ec0d4786f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jmx.core.whiteboard_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.aries.jmx.core.whiteboard-1.0.81.jar-7aaba9559fc7e14e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jndi.api_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.aries.jndi.api-1.1.81.jar-4b7fe2405e59cbb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jndi.core_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.aries.jndi.core-1.1.81.jar-7ac128df1dcb478d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.util_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.aries.util-1.0.81.jar-ccccbeb428f76166 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.fileupload.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.commons.fileupload.jakarta-1.0.81.jar-f5be64dd99a12b13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.io_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.commons.io-1.0.81.jar-499b323d163e6d08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.lang3_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.commons.lang3-1.0.81.jar-002f7dd0dab45221 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.felix.scr_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.felix.scr-1.0.81.jar-60f3a296227d451a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.httpcomponents_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.httpcomponents-1.0.81.jar-036cfeb850991b73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.coordinator_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.eclipse.equinox.coordinator-1.0.81.jar-fa52a88314f6d4b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.metatype_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.eclipse.equinox.metatype-1.0.81.jar-2ae9fe0fefeb5634 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.region_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.eclipse.equinox.region-1.0.81.jar-c9e9c9d13566294f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.glassfish.json.1.0_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.glassfish.json.1.0-1.0.81.jar-9093987fcfef1f4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.jboss.jandex_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.jboss.jandex-1.0.81.jar-fb1771b5193ae197 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.jboss.jdeparser.1.0.0_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.jboss.jdeparser.1.0.0-1.0.81.jar-fd55b6e6c2bddf7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.jboss.logging_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.jboss.logging-1.0.81.jar-3a155ad9afd00976 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.joda.time.1.6.2_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.joda.time.1.6.2-1.0.81.jar-f27a7f9ec07699cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.objectweb.asm_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.objectweb.asm-1.0.81.jar-68705c0159056edd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.slf4j.api_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.slf4j.api-1.0.81.jar-892b65e425346a86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.slf4j.jdk14_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.slf4j.jdk14-1.0.81.jar-eee7c7b7c3548f85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.product.utility_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.product.utility-1.0.81.jar-61ccc7854aca503d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.repository.liberty_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.repository.liberty-1.0.81.jar-caae228d9c07ff34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.repository.parsers_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.repository.parsers-1.0.81.jar-7c7a78f9a07e021b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.repository.resolver_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.repository.resolver-1.0.81.jar-b178255111028459 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.request.probes_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.request.probes-1.0.81.jar-7bd44141116226e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.rest.handler.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.rest.handler.jakarta-1.0.81.jar-32c50a3816bc7463 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.runtime.update_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.runtime.update-1.0.81.jar-42bccd5d4a8e2d5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.audit.reader_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.audit.reader-1.0.81.jar-30697d64d9c46b5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.authentication_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.authentication-1.0.81.jar-ea0c109db6342fa9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.authorization_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.authorization-1.0.81.jar-4fa0f72a4d54b694 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.authorization.builtin_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.authorization.builtin-1.0.81.jar-53541811010d5d82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.context_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.context-1.0.81.jar-f4f8bde80c8c49cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.credentials_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.credentials-1.0.81.jar-ea03d1d65fdc8e87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.credentials.ssotoken_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.credentials.ssotoken-1.0.81.jar-1972379e558ae781 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.credentials.wscred_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.credentials.wscred-1.0.81.jar-36868e365448ff66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.java2sec_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.java2sec-1.0.81.jar-c7a49a8e3c87ab3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.kerberos.auth_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.kerberos.auth-1.0.81.jar-7f9e26148f78528b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.mp.jwt.proxy_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.mp.jwt.proxy-1.0.81.jar-fefb10301ec0392d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.quickstart_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.quickstart-1.0.81.jar-48af24264190fe3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.ready.service_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.ready.service-1.0.81.jar-218557d4e69f80ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.registry_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.registry-1.0.81.jar-a647e1cee84a5e7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.registry.basic_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.registry.basic-1.0.81.jar-55db95d181ccd6ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.token_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.token-1.0.81.jar-03daa98abac235cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.token.ltpa_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.token.ltpa-1.0.81.jar-8c0b26f973842303 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.token.s4u2_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.token.s4u2-1.0.81.jar-8c8a1f4be4fc788a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.utility_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.utility-1.0.81.jar-e732363ee439e80e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.serialization_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.serialization-1.0.81.jar-c1244b1cc9f607e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.session.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.session.jakarta-1.0.81.jar-e3244273a32f6cba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.session.monitor_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.session.monitor-1.0.81.jar-d2cb83b5af171cb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.transaction.context.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.transaction.context.jakarta-1.0.81.jar-6f42634e94743d6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.transaction.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.transaction.jakarta-1.0.81.jar-0c7e30cceec59763 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.transport.http_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.transport.http-1.0.81.jar-2418357cc9cb45a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.tx.embeddable.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.tx.embeddable.jakarta-1.0.81.jar-e9f2cdc13b4689f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.tx.jta.extensions.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.tx.jta.extensions.jakarta-1.0.81.jar-bb4017814aaf6c4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.cors.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webcontainer.cors.jakarta-1.0.81.jar-f96dfd4e1c8d5376 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.jakarta_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webcontainer.jakarta-1.1.81.jar-a54c566cbcbb484b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.monitor.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webcontainer.monitor.jakarta-1.0.81.jar-d64367108172feb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.security.admin_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webcontainer.security.admin-1.0.81.jar-282b6fc3ab9aba1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.security.feature_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webcontainer.security.feature-1.0.81.jar-001ba78f09c106c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.servlet.3.1.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webcontainer.servlet.3.1.jakarta-1.0.81.jar-39a4dbf51a0557bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.servlet.4.0.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webcontainer.servlet.4.0.jakarta-1.0.81.jar-2b9191ad3daace5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.runtime.interfaces_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webserver.plugin.runtime.interfaces-1.0.81.jar-61b4bf074cc63805 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.runtime.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webserver.plugin.runtime.jakarta-1.0.81.jar-8b58fd7c62646596 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.utility_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webserver.plugin.utility-1.0.81.jar-0616e8863c89967a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.core_1.2.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.core-1.2.81.jar-8e6f85f3eca08889 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.namespace.service_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.namespace.service-1.0.81.jar-c3524ae3f0bb574d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.cm_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.cm-1.1.81.jar-d05f79a88e8f768e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.component_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.component-1.1.81.jar-f97cdd1b2eb7bb1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.component.annotations_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.component.annotations-1.0.81.jar-9ab69e6b3654a243 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.coordinator_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.coordinator-1.0.81.jar-d0743a60ecec3268 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.event_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.event-1.0.81.jar-d83d5f46cae30c59 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.log_1.2.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.log-1.2.81.jar-d2a74b7d8fb90df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.metatype_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.metatype-1.1.81.jar-0f7f6bedce5e8750 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.metatype.annotations_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.metatype.annotations-1.0.81.jar-fb92666d08e1aa2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/third-party/com.ibm.wsspi.thirdparty.equinox_1.3.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.thirdparty.equinox-1.3.81.jar-f787b00868727742 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /usr/lib/swidtag/redhat.com/com.redhat.RHEL-8-x86_64.swidtag +SPDXID: SPDXRef-File-...com.redhat.RHEL-8-x86-64.swidtag-7090fb698b60be0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/swidtag/redhat.com/com.redhat.RHEL-8.8-x86_64.swidtag +SPDXID: SPDXRef-File-...com.redhat.RHEL-8.8-x86-64.swidtag-e31018fb0d6a14c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/com.redhat.RHSM1.Facts.service +SPDXID: SPDXRef-File-...com.redhat.RHSM1.Facts.service-76b8bd02481adc83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/com.redhat.RHSM1.service +SPDXID: SPDXRef-File-...com.redhat.RHSM1.service-896f622ce465a1e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/launcher manifest.xml +SPDXID: SPDXRef-File-...command-launcher-manifest.xml-fa36a58e016fdd87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/commands.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...commands.cpython-36.opt-1.pyc-2b44df32cacbe3e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/common_types.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...common-types.cpython-36.opt-1.pyc-2bdf298c6f3b2d7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/common_types.cpython-36.pyc +SPDXID: SPDXRef-File-...common-types.cpython-36.pyc-87c4f22e7553e98f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...compat.cpython-36.opt-1.pyc-51227cd82c255ecd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...compat.cpython-36.opt-1.pyc-56b160ae49476576 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...compat.cpython-36.opt-1.pyc-7ea539257f4e1c27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...compat.cpython-36.opt-1.pyc-d0038fd788b945d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...compat.cpython-36.opt-1.pyc-f0d4efd23146804a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/compat.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...compat.cpython-36.opt-2.pyc-9bb2ceddfaa23d51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/compileall.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...compileall.cpython-36.opt-1.pyc-16bd3613a9b88d9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/compileall.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...compileall.cpython-36.opt-2.pyc-f34064ad5be4a6f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/completion_helper.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...completion-helper.cpython-36.opt-1.pyc-90f1f87db5ab760c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/completion_helper.cpython-36.pyc +SPDXID: SPDXRef-File-...completion-helper.cpython-36.pyc-ddebd9462e97926e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/coredumpctl +SPDXID: SPDXRef-File-...completions-coredumpctl-f62e329a4ae3fa21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fsck.cramfs +SPDXID: SPDXRef-File-...completions-fsck.cramfs-481da53eaf8d20d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/gapplication +SPDXID: SPDXRef-File-...completions-gapplication-41c7e8b4f1ae563b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/hostnamectl +SPDXID: SPDXRef-File-...completions-hostnamectl-d9a48ced8beff4b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/mkfs.cramfs +SPDXID: SPDXRef-File-...completions-mkfs.cramfs-c67ce8f72a6a0142 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/portablectl +SPDXID: SPDXRef-File-...completions-portablectl-d198d31de1533d29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/readprofile +SPDXID: SPDXRef-File-...completions-readprofile-647a5e93a4a6d1ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/scriptreplay +SPDXID: SPDXRef-File-...completions-scriptreplay-3495569413d6d469 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/subscription-manager +SPDXID: SPDXRef-File-...completions-subscription-manager-21308883461a7452 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-analyze +SPDXID: SPDXRef-File-...completions-systemd-analyze-1e19e08a1c852477 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-cat +SPDXID: SPDXRef-File-...completions-systemd-cat-6c596df986f8125c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-cgls +SPDXID: SPDXRef-File-...completions-systemd-cgls-20896b16555f270d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-cgtop +SPDXID: SPDXRef-File-...completions-systemd-cgtop-b2e5c23479c8134c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-delta +SPDXID: SPDXRef-File-...completions-systemd-delta-113014ebac05d0c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-detect-virt +SPDXID: SPDXRef-File-...completions-systemd-detect-virt-2698434d7ff5f438 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-path +SPDXID: SPDXRef-File-...completions-systemd-path-ea914ee9fbfbd872 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-resolve +SPDXID: SPDXRef-File-...completions-systemd-resolve-724b9b514255bf40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-run +SPDXID: SPDXRef-File-...completions-systemd-run-18248c5cba8cc091 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/timedatectl +SPDXID: SPDXRef-File-...completions-timedatectl-c32c5923788dfd00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__init__.py +SPDXID: SPDXRef-File-...concurrent-futures---init--.py-71341eae3d843d83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/process.py +SPDXID: SPDXRef-File-...concurrent-futures-process.py-0de461b43ec7f4ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...conf---pycache---config.cpython-36.pyc-55a4cdca0d713a2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/read.cpython-36.pyc +SPDXID: SPDXRef-File-...conf---pycache---read.cpython-36.pyc-f264fe260177feb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/fontconfig/conf.avail/10-hinting-full.conf +SPDXID: SPDXRef-File-...conf.avail-10-hinting-full.conf-a28b50cbb64c6373 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-hinting-medium.conf +SPDXID: SPDXRef-File-...conf.avail-10-hinting-medium.conf-d4bd022fe7ce3c8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-hinting-none.conf +SPDXID: SPDXRef-File-...conf.avail-10-hinting-none.conf-978db3c104c6381d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-hinting-slight.conf +SPDXID: SPDXRef-File-...conf.avail-10-hinting-slight.conf-755568bbb96cc759 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-no-sub-pixel.conf +SPDXID: SPDXRef-File-...conf.avail-10-no-sub-pixel.conf-9117d4da3793e56e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf +SPDXID: SPDXRef-File-...conf.avail-10-scale-bitmap-fonts.conf-bbcfc32a1eb7e26d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf +SPDXID: SPDXRef-File-...conf.avail-10-sub-pixel-bgr.conf-3c875c213e7e28ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf +SPDXID: SPDXRef-File-...conf.avail-10-sub-pixel-rgb.conf-5b6fcf3fd529ad78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf +SPDXID: SPDXRef-File-...conf.avail-10-sub-pixel-vbgr.conf-6a425c075f71bf0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf +SPDXID: SPDXRef-File-...conf.avail-10-sub-pixel-vrgb.conf-aebc2d8b8639a8da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf +SPDXID: SPDXRef-File-...conf.avail-11-lcdfilter-default.conf-128a9adad30fe5d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf +SPDXID: SPDXRef-File-...conf.avail-11-lcdfilter-legacy.conf-d3aee102dd226900 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/11-lcdfilter-light.conf +SPDXID: SPDXRef-File-...conf.avail-11-lcdfilter-light.conf-5ec8259e64366658 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf +SPDXID: SPDXRef-File-...conf.avail-20-unhint-small-vera.conf-2229f74d3965bb92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/25-unhint-nonlatin.conf +SPDXID: SPDXRef-File-...conf.avail-25-unhint-nonlatin.conf-e01b74c0b724899e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/30-metric-aliases.conf +SPDXID: SPDXRef-File-...conf.avail-30-metric-aliases.conf-e4d4e64106df6dde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/49-sansserif.conf +SPDXID: SPDXRef-File-...conf.avail-49-sansserif.conf-47fe978d4ff84707 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/57-dejavu-sans.conf +SPDXID: SPDXRef-File-...conf.avail-57-dejavu-sans.conf-4474dc1985af1290 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/65-fonts-persian.conf +SPDXID: SPDXRef-File-...conf.avail-65-fonts-persian.conf-016594a31cc81ab6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/70-no-bitmaps.conf +SPDXID: SPDXRef-File-...conf.avail-70-no-bitmaps.conf-50775690e31f87b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/70-yes-bitmaps.conf +SPDXID: SPDXRef-File-...conf.avail-70-yes-bitmaps.conf-c9a1af80cc4a540a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/80-delicious.conf +SPDXID: SPDXRef-File-...conf.avail-80-delicious.conf-be742a98b07c7196 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/90-synthetic.conf +SPDXID: SPDXRef-File-...conf.avail-90-synthetic.conf-ad4861d60c32c08f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/config-3.6m-x86_64-linux-gnu/Makefile +SPDXID: SPDXRef-File-...config-3.6m-x86-64-linux-gnu-Makefile-60b0929b7adfbd28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/config_manager.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config-manager.cpython-36.opt-1.pyc-eafab434f140b254 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/config_manager.cpython-36.pyc +SPDXID: SPDXRef-File-...config-manager.cpython-36.pyc-db9cb27fd80f09e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-1eda49d877373753 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-45ecf0686d88ade4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-791d567dca2dd2b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-834052b96a3ea148 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-87a5179fb8c0d2b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-9b2b1c72d59356b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-acb27124d1b5e395 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-b2475befcf858602 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-dc492f434bb8b38b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/config.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-2.pyc-555f5f263c8033eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/config.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-2.pyc-81e057b8db977fff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/config.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-2.pyc-d3d2b8cded7612b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/configgenerator.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...configgenerator.cpython-36.opt-1.pyc-434bff073b01f224 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/configgenerator.cpython-36.pyc +SPDXID: SPDXRef-File-...configgenerator.cpython-36.pyc-934ba161c127a9fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/configparser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...configparser.cpython-36.opt-1.pyc-59952d647636ddda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/configparser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...configparser.cpython-36.opt-1.pyc-70822d4b3e0c9e08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/configparser.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...configparser.cpython-36.opt-2.pyc-74c010a78eb7c28b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/configparser.cpython-36.pyc +SPDXID: SPDXRef-File-...configparser.cpython-36.pyc-9fbc26f6d5c2ec68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/configparser.cpython-36.pyc +SPDXID: SPDXRef-File-...configparser.cpython-36.pyc-d26f9fa05d810852 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/connection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-1.pyc-11ddad0a4e9803ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/connection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-1.pyc-328dbf4c726993e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/connection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-1.pyc-495f88c81cd867c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/__pycache__/connection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-1.pyc-53bc8e7fa31f8d58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/connection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-1.pyc-77c80c9971a7a7ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/connection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-1.pyc-cc549009937e0af3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/connection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-1.pyc-f3afc782bf553906 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/connection.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-2.pyc-236c80ee973c29e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/__pycache__/connection.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-2.pyc-27d6e0f225a19301 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/connectionpool.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connectionpool.cpython-36.opt-1.pyc-c362cf719443706c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/connectionpool.cpython-36.pyc +SPDXID: SPDXRef-File-...connectionpool.cpython-36.pyc-ea95ab5bff9c6edc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/console.apps/subscription-manager +SPDXID: SPDXRef-File-...console.apps-subscription-manager-c79a3e544afff38d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/constants.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...constants.cpython-36.opt-1.pyc-4f460df8caec3d0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/constants.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...constants.cpython-36.opt-1.pyc-769da245044daffb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/constants.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...constants.cpython-36.opt-1.pyc-7f122a197a99fac9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/constants.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...constants.cpython-36.opt-2.pyc-ba1f836af27fe571 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/consumer.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...consumer.cpython-36.opt-1.pyc-237a65089c75f5de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/consumer.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...consumer.cpython-36.opt-1.pyc-23d41ced3bb35cf5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/content_action_client.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...content-action-client.cpython-36.opt-1.pyc-d8f46e36e70b9e20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/content_action_client.cpython-36.pyc +SPDXID: SPDXRef-File-...content-action-client.cpython-36.pyc-36f6c95c79fb302c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/content_action_client.py +SPDXID: SPDXRef-File-...content-action-client.py-2b19dd8c87191dae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/contentmanager.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...contentmanager.cpython-36.opt-1.pyc-eb31eddefceed172 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/contentmanager.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...contentmanager.cpython-36.opt-2.pyc-d31d24278d15ba09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/contentmanager.cpython-36.pyc +SPDXID: SPDXRef-File-...contentmanager.cpython-36.pyc-00a60ce4c06cd018 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/context.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...context.cpython-36.opt-1.pyc-b89e2f48427dfcc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/context.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...context.cpython-36.opt-2.pyc-ce2072c59e54c195 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/contextlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...contextlib.cpython-36.opt-1.pyc-cbd11f1e2316f44c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/contextlib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...contextlib.cpython-36.opt-2.pyc-b0ffa058c9b7b407 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__init__.py +SPDXID: SPDXRef-File-...contrib--securetransport---init--.py-6dc0c77c225bafed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/bindings.py +SPDXID: SPDXRef-File-...contrib--securetransport-bindings.py-8bc8ea7d431a0002 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/low_level.py +SPDXID: SPDXRef-File-...contrib--securetransport-low-level.py-8d30db1858480ffa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/cookiejar.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cookiejar.cpython-36.opt-1.pyc-dc9facbf15b93efc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/cookiejar.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cookiejar.cpython-36.opt-2.pyc-ac5299b89bbfa99e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/cookies.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cookies.cpython-36.opt-1.pyc-976dc8ee05ad13da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/cookies.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cookies.cpython-36.opt-1.pyc-9fedcaa3421d2b28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/cookies.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cookies.cpython-36.opt-2.pyc-6071197af0f2295d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/copyreg.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...copyreg.cpython-36.opt-1.pyc-2a061099a13569c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/copyreg.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...copyreg.cpython-36.opt-2.pyc-9595c661f7189637 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/coroutines.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...coroutines.cpython-36.opt-1.pyc-de237772a3eb1043 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/coroutines.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...coroutines.cpython-36.opt-2.pyc-8e214b21bb9885e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cp_provider.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp-provider.cpython-36.opt-1.pyc-b88c20b7a6ffe6f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1006.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1006.cpython-36.opt-1.pyc-2f268d5706d34dca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1006.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1006.cpython-36.opt-2.pyc-63b2e7404701e7ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1026.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1026.cpython-36.opt-1.pyc-2080d5b3e613a89e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1026.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1026.cpython-36.opt-2.pyc-435b1416a2b79987 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1125.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1125.cpython-36.opt-1.pyc-34bc060ac4ebb000 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1125.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1125.cpython-36.opt-2.pyc-5189ec492595217d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1140.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1140.cpython-36.opt-1.pyc-91401c2dac19069a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1140.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1140.cpython-36.opt-2.pyc-713af15603d27b8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1250.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1250.cpython-36.opt-1.pyc-cc00d788bcb0b963 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1250.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1250.cpython-36.opt-2.pyc-20795cf3170051ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1251.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1251.cpython-36.opt-1.pyc-d034e8054169b152 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1251.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1251.cpython-36.opt-2.pyc-6c7edd3c54cb6ba0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1252.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1252.cpython-36.opt-1.pyc-140054c1d99fed84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1252.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1252.cpython-36.opt-2.pyc-a3013b315e178136 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1253.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1253.cpython-36.opt-1.pyc-8a75f422da71d1ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1253.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1253.cpython-36.opt-2.pyc-8035187f133155a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1254.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1254.cpython-36.opt-1.pyc-c23983f38aca1178 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1254.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1254.cpython-36.opt-2.pyc-1ee87f4428916dbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1255.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1255.cpython-36.opt-1.pyc-e6baddeb6d287877 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1255.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1255.cpython-36.opt-2.pyc-f097ccc91602d867 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1256.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1256.cpython-36.opt-1.pyc-212267b7e57f5d20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1256.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1256.cpython-36.opt-2.pyc-eec243dd1bf75c18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1257.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1257.cpython-36.opt-1.pyc-9ad68c400374431f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1257.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1257.cpython-36.opt-2.pyc-eb6235add718a510 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1258.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1258.cpython-36.opt-1.pyc-0a2e203fcca778cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1258.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1258.cpython-36.opt-2.pyc-6377c3d22f4f3eb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp65001.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp65001.cpython-36.opt-1.pyc-5df3e59c72f2376c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp65001.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp65001.cpython-36.opt-2.pyc-8bbf279b829ccd71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/cp949prober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp949prober.cpython-36.opt-1.pyc-997094c4ea4db302 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/cpuinfo.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cpuinfo.cpython-36.opt-1.pyc-2fa88b2966e4a20a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cpuinfo.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cpuinfo.cpython-36.opt-1.pyc-64bc052f5e0c1842 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/create.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...create.cpython-36.opt-1.pyc-1016f72f3d3568d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /tmp/usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...crit-3.18-py3.6.egg-info-PKG-INFO-4820f3c33a6f53c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:ae8ca4ad3728bc07e1f5c89dff6565942d9109266a15e7c45a983d6130a2615a + +FileName: /usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...crit-3.18-py3.6.egg-info-PKG-INFO-c2616591addfe5cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:ae8ca4ad3728bc07e1f5c89dff6565942d9109266a15e7c45a983d6130a2615a + +FileName: /usr/share/licenses/crypto-policies/COPYING.LESSER +SPDXID: SPDXRef-File-...crypto-policies-COPYING.LESSER-6f985d0e502f9b76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/gnutls.txt +SPDXID: SPDXRef-File-...crypto-policies-DEFAULT-gnutls.txt-4ed81240a0256911 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/libreswan.txt +SPDXID: SPDXRef-File-...crypto-policies-DEFAULT-libreswan.txt-880f7f8a3a33a064 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/libssh.txt +SPDXID: SPDXRef-File-...crypto-policies-DEFAULT-libssh.txt-fdeadfaf140b67f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/openssh.txt +SPDXID: SPDXRef-File-...crypto-policies-DEFAULT-openssh.txt-b5fbd9a86079aeba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/openssl.txt +SPDXID: SPDXRef-File-...crypto-policies-DEFAULT-openssl.txt-69a01dcddb25be7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/opensslcnf.txt +SPDXID: SPDXRef-File-...crypto-policies-DEFAULT-opensslcnf.txt-dc2fbe4908ea1a9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/libreswan.txt +SPDXID: SPDXRef-File-...crypto-policies-EMPTY-libreswan.txt-f887fbfad8a81b67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/openssh.txt +SPDXID: SPDXRef-File-...crypto-policies-EMPTY-openssh.txt-625f0811c40879d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/openssl.txt +SPDXID: SPDXRef-File-...crypto-policies-EMPTY-openssl.txt-d56eaf0891b08172 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/opensslcnf.txt +SPDXID: SPDXRef-File-...crypto-policies-EMPTY-opensslcnf.txt-6ec5536f089d3fda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/libreswan.txt +SPDXID: SPDXRef-File-...crypto-policies-FIPS-libreswan.txt-e5e8994ba6add4a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/opensshserver.txt +SPDXID: SPDXRef-File-...crypto-policies-FIPS-opensshserver.txt-84357976b52479bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/opensslcnf.txt +SPDXID: SPDXRef-File-...crypto-policies-FIPS-opensslcnf.txt-faf9f9f2ccc08fe9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/gnutls.txt +SPDXID: SPDXRef-File-...crypto-policies-FUTURE-gnutls.txt-3eb07f0b14f46d8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/libreswan.txt +SPDXID: SPDXRef-File-...crypto-policies-FUTURE-libreswan.txt-f71391c2ab23d794 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/libssh.txt +SPDXID: SPDXRef-File-...crypto-policies-FUTURE-libssh.txt-c589d2f32d9e822a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/openssh.txt +SPDXID: SPDXRef-File-...crypto-policies-FUTURE-openssh.txt-14f19ad4d282d335 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/openssl.txt +SPDXID: SPDXRef-File-...crypto-policies-FUTURE-openssl.txt-b496120634f40348 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/opensslcnf.txt +SPDXID: SPDXRef-File-...crypto-policies-FUTURE-opensslcnf.txt-822335635f34bd0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/gnutls.txt +SPDXID: SPDXRef-File-...crypto-policies-LEGACY-gnutls.txt-71ebabcf1397433b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/libreswan.txt +SPDXID: SPDXRef-File-...crypto-policies-LEGACY-libreswan.txt-7c5d756c782c5fc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/libssh.txt +SPDXID: SPDXRef-File-...crypto-policies-LEGACY-libssh.txt-ddc60b77d93cfc9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/openssh.txt +SPDXID: SPDXRef-File-...crypto-policies-LEGACY-openssh.txt-9c55ae11ea9b8e66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/openssl.txt +SPDXID: SPDXRef-File-...crypto-policies-LEGACY-openssl.txt-cc73448fa988e95c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/opensslcnf.txt +SPDXID: SPDXRef-File-...crypto-policies-LEGACY-opensslcnf.txt-5546bc355b95d6cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/DEFAULT.pol +SPDXID: SPDXRef-File-...crypto-policies-policies-DEFAULT.pol-1c80323d610449f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/EMPTY.pol +SPDXID: SPDXRef-File-...crypto-policies-policies-EMPTY.pol-59c4e118c8ebbdf3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/FIPS.pol +SPDXID: SPDXRef-File-...crypto-policies-policies-FIPS.pol-3e1d24f4b1b8cb54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/FUTURE.pol +SPDXID: SPDXRef-File-...crypto-policies-policies-FUTURE.pol-8e19949a286d114d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/LEGACY.pol +SPDXID: SPDXRef-File-...crypto-policies-policies-LEGACY.pol-512deec5f01186fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/crypto.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...crypto.cpython-36.opt-1.pyc-d0c3ba32f49127dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/cryptopolicies.py +SPDXID: SPDXRef-File-...cryptopolicies-cryptopolicies.py-99cc9b97a4c1f508 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__init__.py +SPDXID: SPDXRef-File-...cryptopolicies-validation---init--.py-b09489edf8e14aa3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/alg_lists.py +SPDXID: SPDXRef-File-...cryptopolicies-validation-alg-lists.py-0cc067d410ef6e43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/general.py +SPDXID: SPDXRef-File-...cryptopolicies-validation-general.py-ede17ec118c1352e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/rules.py +SPDXID: SPDXRef-File-...cryptopolicies-validation-rules.py-da8ef223f187d10d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/scope.py +SPDXID: SPDXRef-File-...cryptopolicies-validation-scope.py-17ffaa27f9c2d5df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/__pycache__/cryptopolicies.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cryptopolicies.cpython-36.opt-1.pyc-c592f9fc78ec3ca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/__pycache__/cryptopolicies.cpython-36.pyc +SPDXID: SPDXRef-File-...cryptopolicies.cpython-36.pyc-0ac76676ef1989d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...ctypes---pycache---util.cpython-36.pyc-78673e4722d078fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/README.ctypes +SPDXID: SPDXRef-File-...ctypes-macholib-README.ctypes-6fe79a7828a7f67e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/fetch_macholib +SPDXID: SPDXRef-File-...ctypes-macholib-fetch-macholib-9762a508d71641dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/custom.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...custom.cpython-36.opt-1.pyc-5f561bcd3d1498c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/cygwinccompiler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cygwinccompiler.cpython-36.opt-1.pyc-0a93f2bb231d8adc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/cygwinccompiler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cygwinccompiler.cpython-36.opt-2.pyc-a4ef842abe4ab5fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/cygwinccompiler.cpython-36.pyc +SPDXID: SPDXRef-File-...cygwinccompiler.cpython-36.pyc-13250819df86afbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/__pycache__/daemon.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...daemon.cpython-36.opt-1.pyc-7c21c169f39c4cf3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/datetime.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...datetime.cpython-36.opt-1.pyc-4cd6c7e5facd50fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/datetime.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...datetime.cpython-36.opt-2.pyc-93d492bf2b9dbebc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/relativedelta.py +SPDXID: SPDXRef-File-...dateutil-relativedelta.py-e14b38f846cc878b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/zoneinfo/__init__.py +SPDXID: SPDXRef-File-...dateutil-zoneinfo---init--.py-cf71c2e0bc3c5d12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/zoneinfo/rebuild.py +SPDXID: SPDXRef-File-...dateutil-zoneinfo-rebuild.py-7b873306602e8f7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...db---pycache-----init--.cpython-36.pyc-7ad730d1a4e13d30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/__pycache__/group.cpython-36.pyc +SPDXID: SPDXRef-File-...db---pycache---group.cpython-36.pyc-e56516076701c03d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/__pycache__/history.cpython-36.pyc +SPDXID: SPDXRef-File-...db---pycache---history.cpython-36.pyc-a13cb7fd253399e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/dbapi2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dbapi2.cpython-36.opt-1.pyc-9d8cbbf6d4fd00e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/dbapi2.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...dbapi2.cpython-36.opt-2.pyc-fdcfd95e1ef70d11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/dumb.cpython-36.pyc +SPDXID: SPDXRef-File-...dbm---pycache---dumb.cpython-36.pyc-dbeab38e244cfd3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/gnu.cpython-36.pyc +SPDXID: SPDXRef-File-...dbm---pycache---gnu.cpython-36.pyc-edc2e82da2169c14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/ndbm.cpython-36.pyc +SPDXID: SPDXRef-File-...dbm---pycache---ndbm.cpython-36.pyc-07eaf989abc978c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/_dbus.cpython-36.pyc +SPDXID: SPDXRef-File-...dbus---pycache----dbus.cpython-36.pyc-7e363825c85cebe4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/bus.cpython-36.pyc +SPDXID: SPDXRef-File-...dbus---pycache---bus.cpython-36.pyc-4958fd0d11cbc945 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/glib.cpython-36.pyc +SPDXID: SPDXRef-File-...dbus---pycache---glib.cpython-36.pyc-f96efced44ce6b2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/server.cpython-36.pyc +SPDXID: SPDXRef-File-...dbus---pycache---server.cpython-36.pyc-b847465e3d3c5142 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/server.cpython-36.pyc +SPDXID: SPDXRef-File-...dbus---pycache---server.cpython-36.pyc-de57585b43802b89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/types.cpython-36.pyc +SPDXID: SPDXRef-File-...dbus---pycache---types.cpython-36.pyc-0441077c0be5b569 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...dbus---pycache---util.cpython-36.pyc-2df2f8e588452125 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/_expat_introspect_parser.py +SPDXID: SPDXRef-File-...dbus--expat-introspect-parser.py-a7e059f8050b04db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/dbus-1/dbus-daemon-launch-helper +SPDXID: SPDXRef-File-...dbus-1-dbus-daemon-launch-helper-5863faf90c99be6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dbus-1/system.d/com.redhat.RHSM1.conf +SPDXID: SPDXRef-File-...dbus-1-system.d-com.redhat.RHSM1.conf-ff740cbacd5e792e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/mainloop/__init__.py +SPDXID: SPDXRef-File-...dbus-mainloop---init--.py-fa358622cf429120 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/dbus_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dbus-utils.cpython-36.opt-1.pyc-fa86baf384b7be37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/__pycache__/debug_commands.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...debug-commands.cpython-36.opt-1.pyc-5cf471762f8d8973 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/__pycache__/debug_commands.cpython-36.pyc +SPDXID: SPDXRef-File-...debug-commands.cpython-36.pyc-1fe66f8419d5402b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/debuginfo-install.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...debuginfo-install.cpython-36.opt-1.pyc-5cb963fc78abd3ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/debuginfo-install.cpython-36.pyc +SPDXID: SPDXRef-File-...debuginfo-install.cpython-36.pyc-c08deeaa98d5747a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/decimal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...decimal.cpython-36.opt-1.pyc-5d029f26c0d98c7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/decimal.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...decimal.cpython-36.opt-2.pyc-2b4744523e723828 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/decoder.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...decoder.cpython-36.opt-1.pyc-5f017112302a37b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/decoder.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...decoder.cpython-36.opt-2.pyc-10c8debc35e85eb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/decorator.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...decorator.cpython-36.opt-1.pyc-97694482de89b68d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/decorators.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...decorators.cpython-36.opt-1.pyc-fade188fc6255d69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/fonts/dejavu/DejaVuSans-BoldOblique.ttf +SPDXID: SPDXRef-File-...dejavu-DejaVuSans-BoldOblique.ttf-c0afdc59bb070502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fonts/dejavu/DejaVuSansCondensed-Bold.ttf +SPDXID: SPDXRef-File-...dejavu-DejaVuSansCondensed-Bold.ttf-d89882d1dffe22ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fonts/dejavu/DejaVuSansCondensed-Oblique.ttf +SPDXID: SPDXRef-File-...dejavu-DejaVuSansCondensed-Oblique.ttf-51f6ce074236e223 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/demand.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...demand.cpython-36.opt-1.pyc-485d5bf28937de75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dep_util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dep-util.cpython-36.opt-1.pyc-333afb963650bf52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/dep_util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dep-util.cpython-36.opt-1.pyc-4248eca29b9bbb3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dep_util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...dep-util.cpython-36.opt-2.pyc-da14ce6f9ad8cbc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-14fe012b4cd3807d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps-0.1.18-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-211bdaaad35cd8be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-34208653ef4c7e36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-379d0970069ebe1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-3e6e46be29490151 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-58f8360c81712d54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus_python-1.2.4-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-5e0d5e09fa6e94ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/ethtool-0.14-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-6c7bd81899114741 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-b7a4cfb1cf3a3b0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-bc00342a2928bf4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-d1c092fed42f7817 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose-1.28.36-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-decf0b32a6cb7618 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/PySocks-1.6.8-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-f0fb793f7323e763 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-f27452b7efbe0cad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna-2.5-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-fd59f52b038d8043 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/depends.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...depends.cpython-36.opt-1.pyc-1d92ce43171f6543 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/deplist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...deplist.cpython-36.opt-1.pyc-a0c445b898769e58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/develop.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...develop.cpython-36.opt-1.pyc-f0e16d008a871902 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/device-mapper-libs/COPYING.LIB +SPDXID: SPDXRef-File-...device-mapper-libs-COPYING.LIB-e49e596eeda4f478 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/difflib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...difflib.cpython-36.opt-1.pyc-ec1964b926b87aae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/difflib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...difflib.cpython-36.opt-2.pyc-24c8a96e414c0ed0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dir_util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dir-util.cpython-36.opt-1.pyc-b4a7403dc8dae727 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dir_util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...dir-util.cpython-36.opt-2.pyc-3eb022087680e203 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/dist_info.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dist-info.cpython-36.opt-1.pyc-214e3d411bf071e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/distrosync.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...distrosync.cpython-36.opt-1.pyc-1f5dcc0bdb509660 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__init__.py +SPDXID: SPDXRef-File-...distutils-command---init--.py-bed43f927b1ecb58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/bdist_dumb.py +SPDXID: SPDXRef-File-...distutils-command-bdist-dumb.py-100b1042661218de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/bdist_msi.py +SPDXID: SPDXRef-File-...distutils-command-bdist-msi.py-0e194f467d303c29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/bdist_rpm.py +SPDXID: SPDXRef-File-...distutils-command-bdist-rpm.py-17fae6d3eac01a1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/bdist_wininst.py +SPDXID: SPDXRef-File-...distutils-command-bdist-wininst.py-507ec29a6d6f74e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/build_clib.py +SPDXID: SPDXRef-File-...distutils-command-build-clib.py-98686918137b753a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/build_ext.py +SPDXID: SPDXRef-File-...distutils-command-build-ext.py-61fc513e7cbb0c72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/build_py.py +SPDXID: SPDXRef-File-...distutils-command-build-py.py-a0460ce404f1a1b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/build_scripts.py +SPDXID: SPDXRef-File-...distutils-command-build-scripts.py-af4e34d9e3ccc76a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/command_template +SPDXID: SPDXRef-File-...distutils-command-command-template-c27000e35ecdade4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/install_data.py +SPDXID: SPDXRef-File-...distutils-command-install-data.py-c464873185cefd27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/install_egg_info.py +SPDXID: SPDXRef-File-...distutils-command-install-egg-info.py-0c6972e2a65e1dc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/install_headers.py +SPDXID: SPDXRef-File-...distutils-command-install-headers.py-475a25c6273dd975 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/install_lib.py +SPDXID: SPDXRef-File-...distutils-command-install-lib.py-ee15c2a6b592e445 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/install_scripts.py +SPDXID: SPDXRef-File-...distutils-command-install-scripts.py-19f5a88a54ab233a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/register.py +SPDXID: SPDXRef-File-...distutils-command-register.py-e294e5aab66d112f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/versionpredicate.py +SPDXID: SPDXRef-File-...distutils-versionpredicate.py-722e9647f512ddab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/__pycache__/dmidecode.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dmidecode.cpython-36.opt-1.pyc-d36b92a48b7b5e9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dmidecodemod.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...dmidecodemod.cpython-36m-x86-64-linux-gnu.so-c2dae78ddcd94469 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/dmiinfo.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dmiinfo.cpython-36.opt-1.pyc-ba710e9ce328a13e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/base.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---base.cpython-36.pyc-d3037198d53e2bd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/comps.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---comps.cpython-36.pyc-b6d63207aaf3ab5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/const.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---const.cpython-36.pyc-4c20d40b03d76551 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/crypto.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---crypto.cpython-36.pyc-51d3c89522fd68f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/dnssec.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---dnssec.cpython-36.pyc-2933f8f9b7763a6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/drpm.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---drpm.cpython-36.pyc-f94f5ce12d3c86c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/goal.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---goal.cpython-36.pyc-599997576b4c27bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/history.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---history.cpython-36.pyc-d419def234a54b6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/i18n.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---i18n.cpython-36.pyc-8bd8ca7cd4947efe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/lock.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---lock.cpython-36.pyc-0bc47ff4e566f3bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/logging.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---logging.cpython-36.pyc-5fdc886fe0031345 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/package.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---package.cpython-36.pyc-2c93cf7a05aee956 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/plugin.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---plugin.cpython-36.pyc-1985c1f7111dc797 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/pycomp.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---pycomp.cpython-36.pyc-d7b7bceaeea66163 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/query.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---query.cpython-36.pyc-7edb1f1d9c5cb8a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/repo.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---repo.cpython-36.pyc-03422275b1396cca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/sack.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---sack.cpython-36.pyc-0e15f18befeaa602 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/subject.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---subject.cpython-36.pyc-791fbec357f70ef6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---util.cpython-36.pyc-53cbad5e69ba5176 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/cli.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf-cli---pycache---cli.cpython-36.pyc-73cd03ccbb9848c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__init__.py +SPDXID: SPDXRef-File-...dnf-cli-commands---init--.py-a7659c5ffc25c094 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/alias.py +SPDXID: SPDXRef-File-...dnf-cli-commands-alias.py-d8ac939e3a19c5d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/autoremove.py +SPDXID: SPDXRef-File-...dnf-cli-commands-autoremove.py-5135419935dbc959 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/check.py +SPDXID: SPDXRef-File-...dnf-cli-commands-check.py-c0b60e7e87889de4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/clean.py +SPDXID: SPDXRef-File-...dnf-cli-commands-clean.py-38a8c3fb28190884 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/deplist.py +SPDXID: SPDXRef-File-...dnf-cli-commands-deplist.py-dc7b732d53c3a095 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/distrosync.py +SPDXID: SPDXRef-File-...dnf-cli-commands-distrosync.py-5afa8f9047a8e2cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/downgrade.py +SPDXID: SPDXRef-File-...dnf-cli-commands-downgrade.py-6a6eb765c74f4e62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/group.py +SPDXID: SPDXRef-File-...dnf-cli-commands-group.py-372a4f51245affc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/history.py +SPDXID: SPDXRef-File-...dnf-cli-commands-history.py-498d5952bff47324 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/install.py +SPDXID: SPDXRef-File-...dnf-cli-commands-install.py-06a80341b58be448 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/makecache.py +SPDXID: SPDXRef-File-...dnf-cli-commands-makecache.py-793faf3264cba9d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/module.py +SPDXID: SPDXRef-File-...dnf-cli-commands-module.py-07c2c79c41fccced +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/reinstall.py +SPDXID: SPDXRef-File-...dnf-cli-commands-reinstall.py-97f1a465ab16c054 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/remove.py +SPDXID: SPDXRef-File-...dnf-cli-commands-remove.py-401d4e38ab2c2e4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/repolist.py +SPDXID: SPDXRef-File-...dnf-cli-commands-repolist.py-a9b957504581acbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/repoquery.py +SPDXID: SPDXRef-File-...dnf-cli-commands-repoquery.py-46b1a34cc04bfaf5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/search.py +SPDXID: SPDXRef-File-...dnf-cli-commands-search.py-bd067c8ecf1227bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/shell.py +SPDXID: SPDXRef-File-...dnf-cli-commands-shell.py-6bf46fbe5a693307 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/updateinfo.py +SPDXID: SPDXRef-File-...dnf-cli-commands-updateinfo.py-54ea780415b7dfa0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/upgrade.py +SPDXID: SPDXRef-File-...dnf-cli-commands-upgrade.py-317e3998338ce4bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/upgrademinimal.py +SPDXID: SPDXRef-File-...dnf-cli-commands-upgrademinimal.py-6be47d4abbfb5d03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/completion_helper.py +SPDXID: SPDXRef-File-...dnf-cli-completion-helper.py-faccc2c17e25511f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/substitutions.py +SPDXID: SPDXRef-File-...dnf-conf-substitutions.py-2e96d67433c81a8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/module_base.py +SPDXID: SPDXRef-File-...dnf-module-module-base.py-447a0c64e148faf5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/config_manager.py +SPDXID: SPDXRef-File-...dnf-plugins-config-manager.py-b71e8709bb6f931c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/debuginfo-install.py +SPDXID: SPDXRef-File-...dnf-plugins-debuginfo-install.py-c380efe423dcaac0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/groups_manager.py +SPDXID: SPDXRef-File-...dnf-plugins-groups-manager.py-f1ae2d9359db4712 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/needs_restarting.py +SPDXID: SPDXRef-File-...dnf-plugins-needs-restarting.py-c3e7b3fc5be2ec9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/product-id.py +SPDXID: SPDXRef-File-...dnf-plugins-product-id.py-1c96678d7341250f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/repoclosure.py +SPDXID: SPDXRef-File-...dnf-plugins-repoclosure.py-5602da6012595251 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/repomanage.py +SPDXID: SPDXRef-File-...dnf-plugins-repomanage.py-34d4d3750138041c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/plugins/subscription-manager.conf +SPDXID: SPDXRef-File-...dnf-plugins-subscription-manager.conf-05b964ac3d5fa1b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/subscription-manager.py +SPDXID: SPDXRef-File-...dnf-plugins-subscription-manager.py-74a655d94fe63010 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/system_upgrade.py +SPDXID: SPDXRef-File-...dnf-plugins-system-upgrade.py-054025bc184fdbe9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/upload-profile.py +SPDXID: SPDXRef-File-...dnf-plugins-upload-profile.py-575a87656dc3face +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/protected.d/redhat-release.conf +SPDXID: SPDXRef-File-...dnf-protected.d-redhat-release.conf-d2cb17d269cff348 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dnf-system-upgrade-cleanup.service +SPDXID: SPDXRef-File-...dnf-system-upgrade-cleanup.service-ed5c05c7a540501e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnfpluginscore/__init__.py +SPDXID: SPDXRef-File-...dnfpluginscore---init--.py-5cab0afd5e2854ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/dnssec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dnssec.cpython-36.opt-1.pyc-116cd6771bf58e60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/doc/dejavu-fonts-common/status.txt.bz2 +SPDXID: SPDXRef-File-...doc-dejavu-fonts-common-status.txt.bz2-2d1afaa42e4ac5b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/dejavu-fonts-common/unicover.txt +SPDXID: SPDXRef-File-...doc-dejavu-fonts-common-unicover.txt-f0729876bcc5e656 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/fontconfig/fontconfig-user.html +SPDXID: SPDXRef-File-...doc-fontconfig-fontconfig-user.html-14c1cb398678c2a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/fontconfig/fontconfig-user.txt +SPDXID: SPDXRef-File-...doc-fontconfig-fontconfig-user.txt-3985533ea47ce64c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/nftables/examples/ct_helpers.nft +SPDXID: SPDXRef-File-...doc-nftables-examples-ct-helpers.nft-c0fac319263f2de3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/nftables/examples/secmark.nft +SPDXID: SPDXRef-File-...doc-nftables-examples-secmark.nft-0070656fedb6f7ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/docstring.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...docstring.cpython-36.opt-1.pyc-877891c9edd45e50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/doctest.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...doctest.cpython-36.opt-1.pyc-df866f5cf7a3a1a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/doctest.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...doctest.cpython-36.opt-2.pyc-e50397b3301102c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/domreg.cpython-36.pyc +SPDXID: SPDXRef-File-...dom---pycache---domreg.cpython-36.pyc-7dda240aac7efee9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/minidom.cpython-36.pyc +SPDXID: SPDXRef-File-...dom---pycache---minidom.cpython-36.pyc-4168b6c252a2f18e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/pulldom.cpython-36.pyc +SPDXID: SPDXRef-File-...dom---pycache---pulldom.cpython-36.pyc-1f62cef0ad6ff6a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/domreg.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...domreg.cpython-36.opt-1.pyc-91dd47a4baaf4102 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/domreg.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...domreg.cpython-36.opt-2.pyc-448f11b85db849d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/downgrade.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...downgrade.cpython-36.opt-1.pyc-42d204e56c841b23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/download.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...download.cpython-36.opt-1.pyc-667d5a89969f538f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/driver.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...driver.cpython-36.opt-1.pyc-660eb9f8b6e84b1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/driver.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...driver.cpython-36.opt-2.pyc-213cb67db7f46bb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/__pycache__/drv_libxml2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...drv-libxml2.cpython-36.opt-1.pyc-3fe5d44bcd702d88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/dummy_threading.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dummy-threading.cpython-36.opt-1.pyc-014512e0c66dbd93 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/dummy_threading.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...dummy-threading.cpython-36.opt-2.pyc-d96ba4ad68e36aec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/dummy_threading.cpython-36.pyc +SPDXID: SPDXRef-File-...dummy-threading.cpython-36.pyc-722cf505d6441cc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/easter.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...easter.cpython-36.opt-1.pyc-b28705384ac5cac5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/easy_install.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...easy-install.cpython-36.opt-1.pyc-1c51cd382ff24c8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/easy_install.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...easy-install.cpython-36.opt-1.pyc-59e55f61ba8524cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/easy_install.cpython-36.pyc +SPDXID: SPDXRef-File-...easy-install.cpython-36.pyc-8e76f5ec539afb01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/easy_install.cpython-36.pyc +SPDXID: SPDXRef-File-...easy-install.cpython-36.pyc-ada4ee8b5eb73166 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/egg_info.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...egg-info.cpython-36.opt-1.pyc-af6d8df4e6c95eee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/elfutils-libelf/COPYING-LGPLV3 +SPDXID: SPDXRef-File-...elfutils-libelf-COPYING-LGPLV3-bc7dcd87acd02afb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...email---pycache---utils.cpython-36.pyc-de7285b210fbafc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/_header_value_parser.py +SPDXID: SPDXRef-File-...email--header-value-parser.py-659810e3746e97e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_AG/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...en-AG-LC-MESSAGES-SYS-LC-MESSAGES-d9629137742a772c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...en-AU-LC-MESSAGES-SYS-LC-MESSAGES-2613807ab4a8057d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...en-CA-LC-MESSAGES-SYS-LC-MESSAGES-8dabc08bc9dfbf3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA.utf8/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...en-CA.utf8-LC-MESSAGES-SYS-LC-MESSAGES-9c71c428eda55c83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...en-DK-LC-MESSAGES-SYS-LC-MESSAGES-08b0e51d392c493e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK.utf8/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...en-DK.utf8-LC-MESSAGES-SYS-LC-MESSAGES-48ec458afb1f8b82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/json-glib-1.0.mo +SPDXID: SPDXRef-File-...en-GB-LC-MESSAGES-json-glib-1.0.mo-0a062e0adc7ba9c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...en-GB.iso885915-LC-IDENTIFICATION-5f2e756c1021af61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.iso885915/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...en-US.iso885915-LC-IDENTIFICATION-bf235af607ae2985 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZM/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...en-ZM-LC-MESSAGES-SYS-LC-MESSAGES-12589b2621e10b89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/json/__pycache__/encoder.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...encoder.cpython-36.opt-1.pyc-cf53a4f0629620ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/encoder.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...encoder.cpython-36.opt-2.pyc-c9a1891bd0292e68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/encoders.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...encoders.cpython-36.opt-1.pyc-427bdbb4e68d9bfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/encoders.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...encoders.cpython-36.opt-2.pyc-2776007c4695fe64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/data/__pycache__/encoding.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...encoding.cpython-36.opt-1.pyc-d4fde4949f0e0e03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/raw_unicode_escape.py +SPDXID: SPDXRef-File-...encodings-raw-unicode-escape.py-627c252ec9c7604e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/unicode_internal.py +SPDXID: SPDXRef-File-...encodings-unicode-internal.py-9582b18d44ab70a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/model/__pycache__/ent_cert.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ent-cert.cpython-36.opt-1.pyc-c40c30180451b9df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/entbranding.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...entbranding.cpython-36.opt-1.pyc-a118ae7493a783c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/entcertlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...entcertlib.cpython-36.opt-1.pyc-d328993abca86549 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/entities.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...entities.cpython-36.opt-1.pyc-2f50509d10d1d30c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/entities.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...entities.cpython-36.opt-2.pyc-4a8793c5dc0501a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/entitlement.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...entitlement.cpython-36.opt-1.pyc-7759caf41624230c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/entitlement.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...entitlement.cpython-36.opt-1.pyc-d874ce322c03b6bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/entry_points.txt +SPDXID: SPDXRef-File-...entry-points.txt-093084c6b1da5e44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/entry_points.txt +SPDXID: SPDXRef-File-...entry-points.txt-5b09e5e7a661613f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose-1.28.36-py3.6.egg-info/entry_points.txt +SPDXID: SPDXRef-File-...entry-points.txt-87ab44d2b959a6dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/entry_points.txt +SPDXID: SPDXRef-File-...entry-points.txt-8c482f773e30b202 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/entry_points.txt +SPDXID: SPDXRef-File-...entry-points.txt-a859889535112d8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/errors.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...errors.cpython-36.opt-1.pyc-087d140030f03114 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/errors.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...errors.cpython-36.opt-1.pyc-8a5a4d5f7121ddfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/errors.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...errors.cpython-36.opt-1.pyc-a2147fadca5f4954 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/errors.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...errors.cpython-36.opt-2.pyc-9cf119103c96b829 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/errors.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...errors.cpython-36.opt-2.pyc-a980f28d141035b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/escprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...escprober.cpython-36.opt-1.pyc-246c61b273b3150b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/ethtool-0.14-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...ethtool-0.14-py3.6.egg-info-PKG-INFO-2738b5642c2848f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/ethtool.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...ethtool.cpython-36m-x86-64-linux-gnu.so-52f4ae7d1d842047 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jis_2004.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euc-jis-2004.cpython-36.opt-1.pyc-084107cf09d755d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jis_2004.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...euc-jis-2004.cpython-36.opt-2.pyc-56671edccf6b2533 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jis_2004.cpython-36.pyc +SPDXID: SPDXRef-File-...euc-jis-2004.cpython-36.pyc-c4a4378caa5a3c96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jisx0213.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euc-jisx0213.cpython-36.opt-1.pyc-9cdebadaac6a98fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jisx0213.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...euc-jisx0213.cpython-36.opt-2.pyc-f5fb645643001e1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jisx0213.cpython-36.pyc +SPDXID: SPDXRef-File-...euc-jisx0213.cpython-36.pyc-37d8693d8a8228dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euc-jp.cpython-36.opt-1.pyc-a8eedb8080ec08c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jp.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...euc-jp.cpython-36.opt-2.pyc-11e80806884ab512 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_kr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euc-kr.cpython-36.opt-1.pyc-6e947e5780a7d1cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_kr.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...euc-kr.cpython-36.opt-2.pyc-97da1f9ea717c844 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/eucjpprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...eucjpprober.cpython-36.opt-1.pyc-8c9f3f3c1c795b35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euckrfreq.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euckrfreq.cpython-36.opt-1.pyc-6c9334caefcc9279 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euckrprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euckrprober.cpython-36.opt-1.pyc-9c9187b485f11e81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euctwfreq.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euctwfreq.cpython-36.opt-1.pyc-35c4bda7afbc4bf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euctwprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euctwprober.cpython-36.opt-1.pyc-d43d4fd63188f808 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/events.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...events.cpython-36.opt-1.pyc-0a4ea1f37ecb1797 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/events.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...events.cpython-36.opt-2.pyc-143ceaab53723c73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-34e54a5f6cb733f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-3d2ec590cfbd1980 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-621f91c07a4c871b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-800f7d59225ae2af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-a628f578ce14207c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-ba97889a9069218e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-de94f03f7d461a0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-fc42c6df844b1200 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/expatbuilder.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...expatbuilder.cpython-36.opt-1.pyc-6e659e01fcea3308 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/expatbuilder.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...expatbuilder.cpython-36.opt-2.pyc-ffb1ba147f8eda86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/expatbuilder.cpython-36.pyc +SPDXID: SPDXRef-File-...expatbuilder.cpython-36.pyc-2d5727a7b26ca391 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/expatreader.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...expatreader.cpython-36.opt-1.pyc-d7f810497ed2632c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/expatreader.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...expatreader.cpython-36.opt-2.pyc-22857f76a9ecc5dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/extension.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...extension.cpython-36.opt-1.pyc-396c38c29316d5e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/extension.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...extension.cpython-36.opt-1.pyc-4a214e0bb5487235 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/extension.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...extension.cpython-36.opt-2.pyc-71b8bc30b612ea01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/openssl/ca-bundle.trust.crt +SPDXID: SPDXRef-File-...extracted-openssl-ca-bundle.trust.crt-9e1cd1d76d37f0f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/pem/email-ca-bundle.pem +SPDXID: SPDXRef-File-...extracted-pem-email-ca-bundle.pem-2de4791551b51b77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/pem/objsign-ca-bundle.pem +SPDXID: SPDXRef-File-...extracted-pem-objsign-ca-bundle.pem-dd080ef41e7e5f71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem +SPDXID: SPDXRef-File-...extracted-pem-tls-ca-bundle.pem-74339ef2e9a3f27c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/fact_collector.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fact-collector.cpython-36.opt-1.pyc-fa67a2c2ed7a3737 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/fact_collector.cpython-36.pyc +SPDXID: SPDXRef-File-...fact-collector.cpython-36.pyc-d972fc8847e76682 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/factlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...factlib.cpython-36.opt-1.pyc-2f3454b57fff8927 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/all.cpython-36.pyc +SPDXID: SPDXRef-File-...facts---pycache---all.cpython-36.pyc-7979e632a139555d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/base.cpython-36.pyc +SPDXID: SPDXRef-File-...facts---pycache---base.cpython-36.pyc-0bd8f013f68fcecf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/virt.cpython-36.pyc +SPDXID: SPDXRef-File-...facts---pycache---virt.cpython-36.pyc-0ea71c12e82c39e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/fancy_getopt.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fancy-getopt.cpython-36.opt-1.pyc-54d2658edb5e0615 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/fancy_getopt.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fancy-getopt.cpython-36.opt-2.pyc-035e59b22a90d5ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/fancy_getopt.cpython-36.pyc +SPDXID: SPDXRef-File-...fancy-getopt.cpython-36.pyc-7fd672a149b0e121 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/fcntl.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...fcntl.cpython-36m-x86-64-linux-gnu.so-6d1cf68354431adb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/feedparser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...feedparser.cpython-36.opt-1.pyc-0634e4c1ae72699e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/feedparser.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...feedparser.cpython-36.opt-2.pyc-8e14ea5893e61b2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/fields.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fields.cpython-36.opt-1.pyc-849476945284f5b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/__pycache__/file_monitor.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...file-monitor.cpython-36.opt-1.pyc-670ab17ec3e53e97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/__pycache__/file_monitor.cpython-36.pyc +SPDXID: SPDXRef-File-...file-monitor.cpython-36.pyc-15ffd87e58599a5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/file_util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...file-util.cpython-36.opt-1.pyc-2a755d6cea6a309a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/file_util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...file-util.cpython-36.opt-2.pyc-b8b54fb28b215ca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/filecmp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...filecmp.cpython-36.opt-1.pyc-8fa938d2778ae322 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/filecmp.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...filecmp.cpython-36.opt-2.pyc-ec2720e7ce58206b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fileinput.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fileinput.cpython-36.opt-1.pyc-779bbc879b920c40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fileinput.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fileinput.cpython-36.opt-2.pyc-f38e055353d5127f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/filelist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...filelist.cpython-36.opt-1.pyc-1261131f8e60e18c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/filelist.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...filelist.cpython-36.opt-2.pyc-694ac4580b640571 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/filepost.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...filepost.cpython-36.opt-1.pyc-4416c3a817e5b151 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/firmware_info.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...firmware-info.cpython-36.opt-1.pyc-ff0ae1a601c5cff7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/firmware_info.cpython-36.pyc +SPDXID: SPDXRef-File-...firmware-info.cpython-36.pyc-29892b931b6c28cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_apply.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-apply.cpython-36.opt-1.pyc-f121e2126211c594 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_apply.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-apply.cpython-36.opt-2.pyc-6697931afa841ad1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_asserts.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-asserts.cpython-36.opt-1.pyc-b6b846cc8dbe9431 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_asserts.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-asserts.cpython-36.opt-2.pyc-9625f46dcf612722 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_basestring.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-basestring.cpython-36.opt-1.pyc-49eefa870209bea8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_basestring.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-basestring.cpython-36.opt-2.pyc-81a7c2e1825e17e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_basestring.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-basestring.cpython-36.pyc-a482e8623b57db7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_buffer.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-buffer.cpython-36.opt-1.pyc-422a48ec03e89665 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_buffer.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-buffer.cpython-36.opt-2.pyc-066f413cabf84c35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_dict.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-dict.cpython-36.opt-1.pyc-378d330f5c7428ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_dict.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-dict.cpython-36.opt-2.pyc-98599f060feec627 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_except.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-except.cpython-36.opt-1.pyc-d249ce1f121703ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_except.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-except.cpython-36.opt-2.pyc-82cbac9663e80bd2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_exec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-exec.cpython-36.opt-1.pyc-cf9d0d605cd04bc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_exec.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-exec.cpython-36.opt-2.pyc-8dc9774b5928c124 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_execfile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-execfile.cpython-36.opt-1.pyc-9534904df965f5e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_execfile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-execfile.cpython-36.opt-2.pyc-a2595f039cc47acd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_execfile.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-execfile.cpython-36.pyc-1bcaf31096e488b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-exitfunc.cpython-36.opt-1.pyc-07633aa7f11caccc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-exitfunc.cpython-36.opt-2.pyc-ba3409483eefbda4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-exitfunc.cpython-36.pyc-3a10d8cca48ceaa5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_filter.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-filter.cpython-36.opt-1.pyc-ddbc7cddc07dc21f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_filter.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-filter.cpython-36.opt-2.pyc-22b80a0cd07a82df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-funcattrs.cpython-36.opt-1.pyc-9172865bd09f7269 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-funcattrs.cpython-36.opt-2.pyc-d983e70c82bd4f38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-funcattrs.cpython-36.pyc-250c54388f687557 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_future.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-future.cpython-36.opt-1.pyc-11c3611fab12f6c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_future.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-future.cpython-36.opt-2.pyc-610bafa742484a7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-getcwdu.cpython-36.opt-1.pyc-0b77f0686f75960c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-getcwdu.cpython-36.opt-2.pyc-8a8e267ced8fd4ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_has_key.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-has-key.cpython-36.opt-1.pyc-eae9ba54e653d565 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_has_key.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-has-key.cpython-36.opt-2.pyc-d7e6ebc7a293e4e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_idioms.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-idioms.cpython-36.opt-1.pyc-8e3f6ab83db8d644 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_idioms.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-idioms.cpython-36.opt-2.pyc-724c77a457ed5df3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_import.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-import.cpython-36.opt-1.pyc-fd8aa8fd1faf5045 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_import.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-import.cpython-36.opt-2.pyc-460f636619278cee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_imports.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-imports.cpython-36.opt-1.pyc-cc4551171a9f6c9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_imports.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-imports.cpython-36.opt-2.pyc-d510d04d3f5c30e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_imports2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-imports2.cpython-36.opt-1.pyc-e26b135c704776a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_imports2.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-imports2.cpython-36.opt-2.pyc-e38eb6115b87c242 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_imports2.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-imports2.cpython-36.pyc-055bf9fe3892d30d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_input.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-input.cpython-36.opt-1.pyc-aa4d992dd04f72de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_input.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-input.cpython-36.opt-2.pyc-784ebe0795bc49b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_intern.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-intern.cpython-36.opt-1.pyc-ae4b5bf1e9d26fa9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_intern.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-intern.cpython-36.opt-2.pyc-1f6ed588dc47ea2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_isinstance.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-isinstance.cpython-36.opt-1.pyc-99d05780dbcaebde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_isinstance.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-isinstance.cpython-36.opt-2.pyc-488d38b5ecb4b22a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_isinstance.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-isinstance.cpython-36.pyc-db06949423d73bd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-itertools-imports.cpython-36.opt-1.pyc-d1a7379a913b23d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-itertools-imports.cpython-36.opt-2.pyc-8026178ecbd541d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-itertools-imports.cpython-36.pyc-e1451478ee570b61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_itertools.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-itertools.cpython-36.opt-1.pyc-15f658efd780abef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_itertools.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-itertools.cpython-36.opt-2.pyc-b913d57537661ba7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_itertools.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-itertools.cpython-36.pyc-d32ffaeb2c1c9f05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_long.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-long.cpython-36.opt-1.pyc-daa82719c8f16c8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_long.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-long.cpython-36.opt-2.pyc-75a9d3ef453b21d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_map.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-map.cpython-36.opt-1.pyc-e6ff881fee8649e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_map.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-map.cpython-36.opt-2.pyc-70cb053f991a4b1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_metaclass.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-metaclass.cpython-36.opt-1.pyc-d8041d5e14920450 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_metaclass.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-metaclass.cpython-36.opt-2.pyc-270552cb5e8cff2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_metaclass.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-metaclass.cpython-36.pyc-a769344489ff593a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-methodattrs.cpython-36.opt-1.pyc-dd44fb74b235691e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-methodattrs.cpython-36.opt-2.pyc-784e588cdafe4da8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-methodattrs.cpython-36.pyc-232e1f51820f57d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_ne.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-ne.cpython-36.opt-1.pyc-a08815f9662b1e89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_ne.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-ne.cpython-36.opt-2.pyc-1427307aa73974fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_next.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-next.cpython-36.opt-1.pyc-936a4ac55e92b68b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_next.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-next.cpython-36.opt-2.pyc-a74245157f5c6aad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_nonzero.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-nonzero.cpython-36.opt-1.pyc-dd5e0f332f803231 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_nonzero.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-nonzero.cpython-36.opt-2.pyc-c019cc38769d286c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_numliterals.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-numliterals.cpython-36.opt-1.pyc-26c42ee620325ddf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_numliterals.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-numliterals.cpython-36.opt-2.pyc-8d83a389494aee01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_numliterals.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-numliterals.cpython-36.pyc-793d167b365ea532 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_operator.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-operator.cpython-36.opt-1.pyc-b1b73f797074773c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_operator.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-operator.cpython-36.opt-2.pyc-5c03bc22120e8372 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_operator.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-operator.cpython-36.pyc-4f30263a85ba357f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_paren.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-paren.cpython-36.opt-1.pyc-9cc76678398ea299 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_paren.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-paren.cpython-36.opt-2.pyc-38d36ccda313918a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_print.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-print.cpython-36.opt-1.pyc-bea9c67f89b81afe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_print.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-print.cpython-36.opt-2.pyc-b3ee159e67e6da87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_raise.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-raise.cpython-36.opt-1.pyc-8c663cc0b1c4552a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_raise.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-raise.cpython-36.opt-2.pyc-affad52cb3a4b7c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_raw_input.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-raw-input.cpython-36.opt-1.pyc-81106415fa99f65e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_raw_input.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-raw-input.cpython-36.opt-2.pyc-37878624a079d396 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_raw_input.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-raw-input.cpython-36.pyc-7a5a2f626134b0da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_reduce.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-reduce.cpython-36.opt-1.pyc-71e5aeda9b4f623d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_reduce.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-reduce.cpython-36.opt-2.pyc-ae03c5a6538300a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_reload.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-reload.cpython-36.opt-1.pyc-25183c5e9d130b11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_reload.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-reload.cpython-36.opt-2.pyc-3e739afc4d9961ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_renames.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-renames.cpython-36.opt-1.pyc-3bd99f453a719d3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_renames.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-renames.cpython-36.opt-2.pyc-4f64c23d82c6c084 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_repr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-repr.cpython-36.opt-1.pyc-097c83f792a0c8c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_repr.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-repr.cpython-36.opt-2.pyc-0b5bcf4e12fe0198 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_set_literal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-set-literal.cpython-36.opt-1.pyc-6e5df839c002b1ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_set_literal.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-set-literal.cpython-36.opt-2.pyc-0f1d57be89541813 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_set_literal.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-set-literal.cpython-36.pyc-a109e810d794b934 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_standarderror.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-standarderror.cpython-36.opt-1.pyc-434bf55e16a70671 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_standarderror.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-standarderror.cpython-36.opt-2.pyc-47d7971ca4108a36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_standarderror.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-standarderror.cpython-36.pyc-b7b63c3c63ea7a5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-sys-exc.cpython-36.opt-1.pyc-5825199974733b6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-sys-exc.cpython-36.opt-2.pyc-02a85d7838319cfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_throw.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-throw.cpython-36.opt-1.pyc-b55b7ec1228c19fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_throw.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-throw.cpython-36.opt-2.pyc-034664401ee77fb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-tuple-params.cpython-36.opt-1.pyc-814e91f31c5e0784 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-tuple-params.cpython-36.opt-2.pyc-fb1f9015e7db0ae6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-tuple-params.cpython-36.pyc-854f9c58d46b11ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_types.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-types.cpython-36.opt-1.pyc-fcef363244b37f04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_types.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-types.cpython-36.opt-2.pyc-246d9e20920843b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_unicode.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-unicode.cpython-36.opt-1.pyc-0f9cd36964aa1cb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_unicode.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-unicode.cpython-36.opt-2.pyc-b49466550b2bcfe2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_urllib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-urllib.cpython-36.opt-1.pyc-b976ba9129e82770 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_urllib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-urllib.cpython-36.opt-2.pyc-6634bb2a18e8db68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-ws-comma.cpython-36.opt-1.pyc-e5716948ef167e6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-ws-comma.cpython-36.opt-2.pyc-248090898631148c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-ws-comma.cpython-36.pyc-2b7bb12c0e6431d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_xrange.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-xrange.cpython-36.opt-1.pyc-3c61f1e57ec5a73e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_xrange.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-xrange.cpython-36.opt-2.pyc-be6be097bfad0e72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-xreadlines.cpython-36.opt-1.pyc-eefd2dedb214913f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-xreadlines.cpython-36.opt-2.pyc-75dc36536cfcd3dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-xreadlines.cpython-36.pyc-02f00a22db19bdc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_zip.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-zip.cpython-36.opt-1.pyc-47ec6fdace7912d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_zip.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-zip.cpython-36.opt-2.pyc-7079f3fa245ef075 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/fixer_base.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fixer-base.cpython-36.opt-1.pyc-0d817f757d1d81b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/fixer_base.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fixer-base.cpython-36.opt-2.pyc-d905d60bd5bd6341 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/fixer_util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fixer-util.cpython-36.opt-1.pyc-cac05b352d88fe5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/fixer_util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fixer-util.cpython-36.opt-2.pyc-cbba8c2a43b04bdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fnmatch.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fnmatch.cpython-36.opt-1.pyc-2e26014996cb64bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fnmatch.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fnmatch.cpython-36.opt-2.pyc-6fb7818177531c25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/fontconfig-2.0.typelib +SPDXID: SPDXRef-File-...fontconfig-2.0.typelib-c51918866a709546 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/fontconfig/conf.avail/10-autohint.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-10-autohint.conf-a72910a255b21d6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-unhinted.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-10-unhinted.conf-0a143f82975232e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/40-nonlatin.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-40-nonlatin.conf-9524683e2a7ad0e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/45-generic.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-45-generic.conf-a485f97d1f252997 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/45-latin.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-45-latin.conf-b2d5db3c81a50037 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/50-user.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-50-user.conf-c329acc0ab92a5e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/51-local.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-51-local.conf-240d77f0a243f3ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/60-generic.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-60-generic.conf-6f367f5fd3e6c7d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/60-latin.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-60-latin.conf-0939a55bd44e2390 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/65-khmer.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-65-khmer.conf-9980d7aeecacd4cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/65-nonlatin.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-65-nonlatin.conf-2c761a67a43515ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/69-unifont.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-69-unifont.conf-21e995f228891de2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fonts/dejavu/DejaVuSans-ExtraLight.ttf +SPDXID: SPDXRef-File-...fonts-dejavu-DejaVuSans-ExtraLight.ttf-84f0d3033eaad11a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fonts/dejavu/DejaVuSans-Oblique.ttf +SPDXID: SPDXRef-File-...fonts-dejavu-DejaVuSans-Oblique.ttf-4eb60c0b65f373fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fonts/dejavu/DejaVuSansCondensed.ttf +SPDXID: SPDXRef-File-...fonts-dejavu-DejaVuSansCondensed.ttf-e329709be25c634c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/forkserver.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...forkserver.cpython-36.opt-1.pyc-49a4afe8d9f13e25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/forkserver.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...forkserver.cpython-36.opt-2.pyc-6db6adc68f160eed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/format.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...format.cpython-36.opt-1.pyc-e63d7d796316219c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/formatter.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...formatter.cpython-36.opt-1.pyc-b1ec48a6df1d65d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/formatter.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...formatter.cpython-36.opt-2.pyc-e16dee9d6b2c2bc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fractions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fractions.cpython-36.opt-1.pyc-f0de359990f81f95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fractions.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fractions.cpython-36.opt-2.pyc-55838c4ebb96fa92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/framework.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...framework.cpython-36.opt-1.pyc-db0d7c2c356be6f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/framework.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...framework.cpython-36.opt-2.pyc-36c9aa05cf6f47cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ftplib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ftplib.cpython-36.opt-1.pyc-d4f00e754a0dad4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ftplib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ftplib.cpython-36.opt-2.pyc-41256db0f4059f2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/functools.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...functools.cpython-36.opt-1.pyc-4d6c9ecae8012895 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/functools.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...functools.cpython-36.opt-2.pyc-e0062e77d286e320 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/futures.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...futures.cpython-36.opt-1.pyc-640befac8cb52f91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/futures.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...futures.cpython-36.opt-2.pyc-55e1149e56234021 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/ga_impls/__pycache__/ga_gtk3.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ga-gtk3.cpython-36.opt-1.pyc-e82fabb28224bf5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/ga_impls/__init__.py +SPDXID: SPDXRef-File-...ga-impls---init--.py-d99aa0b6869f5020 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/ga_impls/ga_gtk3.py +SPDXID: SPDXRef-File-...ga-impls-ga-gtk3.py-b1e9a4ff37d62c6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/ga_loader.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ga-loader.cpython-36.opt-1.pyc-474e11414355265f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gb18030.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...gb18030.cpython-36.opt-1.pyc-ca1de2281a497411 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gb18030.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...gb18030.cpython-36.opt-2.pyc-f574b7bb1e0afff3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gb2312.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...gb2312.cpython-36.opt-1.pyc-590f591886bfd596 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gb2312.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...gb2312.cpython-36.opt-2.pyc-789f4563c510abf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/gb2312freq.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...gb2312freq.cpython-36.opt-1.pyc-7fc82cd97f76ce1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/gb2312prober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...gb2312prober.cpython-36.opt-1.pyc-1da7123b5113e842 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/gb2312prober.cpython-36.pyc +SPDXID: SPDXRef-File-...gb2312prober.cpython-36.pyc-b4dfd5cf66ce8ba3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/__init__.py +SPDXID: SPDXRef-File-...gcc-8-python-libstdcxx---init--.py-d91bc8c4128a4e70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/__init__.py +SPDXID: SPDXRef-File-...gcc-8-python-libstdcxx-v6---init--.py-d4d8beacc9474116 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/printers.py +SPDXID: SPDXRef-File-...gcc-8-python-libstdcxx-v6-printers.py-2af752d878122828 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/xmethods.py +SPDXID: SPDXRef-File-...gcc-8-python-libstdcxx-v6-xmethods.py-ee831f25156e5dd9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/general.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...general.cpython-36.opt-1.pyc-7c736fdcfe459f90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/generate_completion_cache.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...generate-completion-cache.cpython-36.opt-1.pyc-fbc3c8b227ea1f87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/generate_completion_cache.cpython-36.pyc +SPDXID: SPDXRef-File-...generate-completion-cache.cpython-36.pyc-359cf7d5666d362d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/generate_completion_cache.py +SPDXID: SPDXRef-File-...generate-completion-cache.py-e9640ecc53ef1715 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/generator.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...generator.cpython-36.opt-1.pyc-236acb15330faec3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/generator.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...generator.cpython-36.opt-2.pyc-8450e987ec4572fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/genericpath.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...genericpath.cpython-36.opt-1.pyc-a85250ae830bbbe2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/genericpath.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...genericpath.cpython-36.opt-2.pyc-4c8b0befc49d35fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/__pycache__/generictreemodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...generictreemodel.cpython-36.opt-1.pyc-d769729b234ec73f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/__pycache__/generictreemodel.cpython-36.pyc +SPDXID: SPDXRef-File-...generictreemodel.cpython-36.pyc-c1289a1e19b8803e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/getopt.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...getopt.cpython-36.opt-1.pyc-553e7fe64b3c2875 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/getopt.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...getopt.cpython-36.opt-2.pyc-715ebf17bd0993fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/getpass.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...getpass.cpython-36.opt-1.pyc-97ce2ea5f70ff831 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/getpass.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...getpass.cpython-36.opt-2.pyc-a7af394a2c56edf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/gettext.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...gettext.cpython-36.opt-1.pyc-f4decf54efa66884 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/gettext.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...gettext.cpython-36.opt-2.pyc-02366ab56a4de059 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...gi---pycache-----init--.cpython-36.pyc-0d3930eb6551b17d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_error.cpython-36.pyc +SPDXID: SPDXRef-File-...gi---pycache----error.cpython-36.pyc-48d55611062ec6f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_option.cpython-36.pyc +SPDXID: SPDXRef-File-...gi---pycache----option.cpython-36.pyc-3a4c893b11baa36a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/importer.cpython-36.pyc +SPDXID: SPDXRef-File-...gi---pycache---importer.cpython-36.pyc-c7798c3b620348e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/module.cpython-36.pyc +SPDXID: SPDXRef-File-...gi---pycache---module.cpython-36.pyc-c014e57b0363e3a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/types.cpython-36.pyc +SPDXID: SPDXRef-File-...gi---pycache---types.cpython-36.pyc-cb2d375bd766f51a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...gi--gi.cpython-36m-x86-64-linux-gnu.so-a3d3e88ec83b7e96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/GIMarshallingTests.py +SPDXID: SPDXRef-File-...gi-overrides-GIMarshallingTests.py-9325bca5bca008f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/repository/__init__.py +SPDXID: SPDXRef-File-...gi-repository---init--.py-08f744cdc82957ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/gi_service.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...gi-service.cpython-36.opt-1.pyc-647df989897a0362 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/DBus-1.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-DBus-1.0.typelib-1bebea4cb0e61bc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/DBusGLib-1.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-DBusGLib-1.0.typelib-b6daa90daf0418fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/GLib-2.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-GLib-2.0.typelib-cdfadcac60999734 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/GModule-2.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-GModule-2.0.typelib-28fe89c5d76b0fda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/GObject-2.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-GObject-2.0.typelib-a5cb41ac71e52c68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/Json-1.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-Json-1.0.typelib-71dce22bc827cd88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/Modulemd-2.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-Modulemd-2.0.typelib-7dd8603e9e37430a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/cairo-1.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-cairo-1.0.typelib-61836658d0745006 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/freetype2-2.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-freetype2-2.0.typelib-7e415f1a5f78e39f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/libxml2-2.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-libxml2-2.0.typelib-59280c0eb5a8dd2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/win32-1.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-win32-1.0.typelib-ff08a8ba9ffd2b79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/xfixes-4.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-xfixes-4.0.typelib-01f88093deb9ae8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/xlib-2.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-xlib-2.0.typelib-a5157e3576a31a85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/xrandr-1.3.typelib +SPDXID: SPDXRef-File-...girepository-1.0-xrandr-1.3.typelib-5d4dc0866ec20a77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/gnutls.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...gnutls.cpython-36.opt-1.pyc-78102a3f6b86e179 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/core.cpython-36.pyc +SPDXID: SPDXRef-File-...gpg---pycache---core.cpython-36.pyc-693c7390167184b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/errors.cpython-36.pyc +SPDXID: SPDXRef-File-...gpg---pycache---errors.cpython-36.pyc-c641bcea594d9ab5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/gpgme.cpython-36.pyc +SPDXID: SPDXRef-File-...gpg---pycache---gpgme.cpython-36.pyc-009f9314e3f5f94d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/results.cpython-36.pyc +SPDXID: SPDXRef-File-...gpg---pycache---results.cpython-36.pyc-b55a38f9745c5abe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...gpg---pycache---util.cpython-36.pyc-006323b9c10a6675 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...gpg---pycache---version.cpython-36.pyc-56d246cd4bfac3bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg-1.13.1-py3.6.egg-info +SPDXID: SPDXRef-File-...gpg-1.13.1-py3.6.egg-info-da7717d7cf43e5e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__init__.py +SPDXID: SPDXRef-File-...gpg-constants---init--.py-b52d57b21175bf58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/data/__init__.py +SPDXID: SPDXRef-File-...gpg-constants-data---init--.py-547aa19715941390 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/data/encoding.py +SPDXID: SPDXRef-File-...gpg-constants-data-encoding.py-ebea7cbad3e1afa0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/import_type.py +SPDXID: SPDXRef-File-...gpg-constants-import-type.py-bd4b678ac3d8143b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/keylist/__init__.py +SPDXID: SPDXRef-File-...gpg-constants-keylist---init--.py-312085910975516b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/keylist/mode.py +SPDXID: SPDXRef-File-...gpg-constants-keylist-mode.py-bc34c229b5ce82ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/protocol.py +SPDXID: SPDXRef-File-...gpg-constants-protocol.py-686f5683f74a1b2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/__init__.py +SPDXID: SPDXRef-File-...gpg-constants-sig---init--.py-23a43b1aa1887dda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/mode.py +SPDXID: SPDXRef-File-...gpg-constants-sig-mode.py-0e59fbe30d7db75d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/notation.py +SPDXID: SPDXRef-File-...gpg-constants-sig-notation.py-64017266c2d25e54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/tofu/__init__.py +SPDXID: SPDXRef-File-...gpg-constants-tofu---init--.py-1f0aef71d771e992 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/tofu/policy.py +SPDXID: SPDXRef-File-...gpg-constants-tofu-policy.py-56cc8f0d32e9627c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/validity.py +SPDXID: SPDXRef-File-...gpg-constants-validity.py-c1468068592f70f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/grammar.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...grammar.cpython-36.opt-1.pyc-c6d6ed54283ab1c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/grammar.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...grammar.cpython-36.opt-2.pyc-36c912c29a0bfba8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/groups_manager.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...groups-manager.cpython-36.opt-1.pyc-7ea036bfd84efa7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/groups_manager.cpython-36.pyc +SPDXID: SPDXRef-File-...groups-manager.cpython-36.pyc-c1b750efef5027b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/grp.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...grp.cpython-36m-x86-64-linux-gnu.so-944b2785ef93a5c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/handler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...handler.cpython-36.opt-1.pyc-fd06fc4498071636 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/handler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...handler.cpython-36.opt-2.pyc-9038bda4cf0eb295 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/handlers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...handlers.cpython-36.opt-1.pyc-5ceb6f85713c3cdc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/handlers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...handlers.cpython-36.opt-1.pyc-7aa19a5b576a30d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/handlers.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...handlers.cpython-36.opt-2.pyc-1e3219c8a9c5b755 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/handlers.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...handlers.cpython-36.opt-2.pyc-7312bde4b63535cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/has_key.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...has-key.cpython-36.opt-1.pyc-44c49154906f49b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/has_key.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...has-key.cpython-36.opt-2.pyc-f150b62adb875b34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/hashlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...hashlib.cpython-36.opt-1.pyc-b00bed8ce6a4e1b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/hashlib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...hashlib.cpython-36.opt-2.pyc-d5adb3989dfdc0b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/test/_hawkey_test.so +SPDXID: SPDXRef-File-...hawkey-test--hawkey-test.so-b4c826f17e36b169 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/header.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...header.cpython-36.opt-1.pyc-cbed6bf3ad1dd832 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/header.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...header.cpython-36.opt-2.pyc-f98187d60f4455fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/headerregistry.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...headerregistry.cpython-36.opt-1.pyc-c9863dba914a2809 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/headerregistry.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...headerregistry.cpython-36.opt-2.pyc-8b93d97242c0349d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/headerregistry.cpython-36.pyc +SPDXID: SPDXRef-File-...headerregistry.cpython-36.pyc-693f37d7fa3b40cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/headers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...headers.cpython-36.opt-1.pyc-fb1554322402e787 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/headers.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...headers.cpython-36.opt-2.pyc-5852b6715988ae6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/healinglib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...healinglib.cpython-36.opt-1.pyc-1eb5ce2247c2938c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/hebrewprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...hebrewprober.cpython-36.opt-1.pyc-420875c2d006ba8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/hebrewprober.cpython-36.pyc +SPDXID: SPDXRef-File-...hebrewprober.cpython-36.pyc-d886077e0ebd8313 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hex_codec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...hex-codec.cpython-36.opt-1.pyc-d068f0b2be182abc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hex_codec.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...hex-codec.cpython-36.opt-2.pyc-0bbfb0da9b7d879e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/history.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...history.cpython-36.opt-1.pyc-182a1ad6922b4835 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/history.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...history.cpython-36.opt-1.pyc-a2c4059fc467287c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/__pycache__/history.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...history.cpython-36.opt-1.pyc-cab1c4e919461336 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/host_collector.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...host-collector.cpython-36.opt-1.pyc-33df45ea1c9b4a19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/host_collector.cpython-36.pyc +SPDXID: SPDXRef-File-...host-collector.cpython-36.pyc-f09fb466278c87a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hp_roman8.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...hp-roman8.cpython-36.opt-1.pyc-9559926516aeb149 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hp_roman8.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...hp-roman8.cpython-36.opt-2.pyc-24ac4a63f86b0b1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/parser.cpython-36.pyc +SPDXID: SPDXRef-File-...html---pycache---parser.cpython-36.pyc-88ca05da8605d6f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/client.cpython-36.pyc +SPDXID: SPDXRef-File-...http---pycache---client.cpython-36.pyc-9dd3fae7ad68a537 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/server.cpython-36.pyc +SPDXID: SPDXRef-File-...http---pycache---server.cpython-36.pyc-e0bd6dffd19ec80f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/huffman.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...huffman.cpython-36.opt-1.pyc-0c609c4a1ece42b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/hwprobe.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...hwprobe.cpython-36.opt-1.pyc-d17d03ba2dddda50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/i18n_argparse.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...i18n-argparse.cpython-36.opt-1.pyc-6b5f13a79c2ded79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/i18n_argparse.cpython-36.pyc +SPDXID: SPDXRef-File-...i18n-argparse.cpython-36.pyc-970387e4b2c51d52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/dev/spi/ibm/io.openliberty.cdi.spi_1.1.81.jar +SPDXID: SPDXRef-File-...ibm-io.openliberty.cdi.spi-1.1.81.jar-75d26c6b1106c10e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/io.openliberty.jaxrs30_1.0.81.jar +SPDXID: SPDXRef-File-...ibm-io.openliberty.jaxrs30-1.0.81.jar-95dfcb4f6e420701 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/io.openliberty.security_1.3.81.jar +SPDXID: SPDXRef-File-...ibm-io.openliberty.security-1.3.81.jar-51798608285d4446 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /usr/lib64/python3.6/site-packages/systemd/id128.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...id128.cpython-36m-x86-64-linux-gnu.so-95d91c07ef7ee17b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/identity.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...identity.cpython-36.opt-1.pyc-89e064967e6a8718 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/identitycertlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...identitycertlib.cpython-36.opt-1.pyc-c817683025451839 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/identitycertlib.cpython-36.pyc +SPDXID: SPDXRef-File-...identitycertlib.cpython-36.pyc-45cd675ebcbc73cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/identitycertlib.py +SPDXID: SPDXRef-File-...identitycertlib.py-a3c629d2f8052cce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/codec.cpython-36.pyc +SPDXID: SPDXRef-File-...idna---pycache---codec.cpython-36.pyc-10c3c749983c2a10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/compat.cpython-36.pyc +SPDXID: SPDXRef-File-...idna---pycache---compat.cpython-36.pyc-219c1c062014ad3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/core.cpython-36.pyc +SPDXID: SPDXRef-File-...idna---pycache---core.cpython-36.pyc-543ae3229ed5a2af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna-2.5-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...idna-2.5-py3.6.egg-info-PKG-INFO-d2899fc2d56f719e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna-2.5-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...idna-2.5-py3.6.egg-info-SOURCES.txt-168350ae20ce2e41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna-2.5-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...idna-2.5-py3.6.egg-info-top-level.txt-7e49ae50ecbd5ca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/idnadata.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...idnadata.cpython-36.opt-1.pyc-825a50ad7aa5a2e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imaplib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...imaplib.cpython-36.opt-1.pyc-5e739be3a00c132b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imaplib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...imaplib.cpython-36.opt-2.pyc-8099f92a8f4daa9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imghdr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...imghdr.cpython-36.opt-1.pyc-f090a9f1a0b7a130 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imghdr.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...imghdr.cpython-36.opt-2.pyc-cd33268b2aed5aee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/import_type.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...import-type.cpython-36.opt-1.pyc-87f9ddc2aeaaf9b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/importer.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...importer.cpython-36.opt-1.pyc-96a74b3602a48def +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/_bootstrap_external.py +SPDXID: SPDXRef-File-...importlib--bootstrap-external.py-c985b3f458d53630 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...iniparse-0.4-py3.6.egg-info-PKG-INFO-5f333130ccbc4458 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/injection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...injection.cpython-36.opt-1.pyc-d5708b9e90783368 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/injectioninit.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...injectioninit.cpython-36.opt-1.pyc-730f29490945a7d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/injectioninit.cpython-36.pyc +SPDXID: SPDXRef-File-...injectioninit.cpython-36.pyc-7de475d05f41e576 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/insights.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...insights.cpython-36.opt-1.pyc-baa82d6233f540a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/inspect.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...inspect.cpython-36.opt-1.pyc-0872c70a19dbde03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/inspect.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...inspect.cpython-36.opt-2.pyc-ebf968cb7038859a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_data.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-data.cpython-36.opt-1.pyc-205369de55cbc682 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_data.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...install-data.cpython-36.opt-2.pyc-c8a08e414c5d0fd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_data.cpython-36.pyc +SPDXID: SPDXRef-File-...install-data.cpython-36.pyc-1e42b50c41f79bd3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-egg-info.cpython-36.opt-1.pyc-2bc4db77a86747f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_egg_info.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-egg-info.cpython-36.opt-1.pyc-2c2af296ebcbf779 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_egg_info.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...install-egg-info.cpython-36.opt-2.pyc-78121a41214ad6ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_egg_info.cpython-36.pyc +SPDXID: SPDXRef-File-...install-egg-info.cpython-36.pyc-387ff8fda6da001f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-36.pyc +SPDXID: SPDXRef-File-...install-egg-info.cpython-36.pyc-b6c29d924518d783 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_headers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-headers.cpython-36.opt-1.pyc-17718e3c0172c34d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_headers.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...install-headers.cpython-36.opt-2.pyc-1b18f5c81ef35a4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_headers.cpython-36.pyc +SPDXID: SPDXRef-File-...install-headers.cpython-36.pyc-f228277e2274ff95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install_lib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-lib.cpython-36.opt-1.pyc-739d1345127b484f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_lib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-lib.cpython-36.opt-1.pyc-da557f455cc0722f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_lib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...install-lib.cpython-36.opt-2.pyc-333594b67cd2c2e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_scripts.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-scripts.cpython-36.opt-1.pyc-094de77cd137b80f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install_scripts.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-scripts.cpython-36.opt-1.pyc-cf8dfc4296e79475 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_scripts.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...install-scripts.cpython-36.opt-2.pyc-01f437d0d96a41f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install_scripts.cpython-36.pyc +SPDXID: SPDXRef-File-...install-scripts.cpython-36.pyc-b72278cc990d5b7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_scripts.cpython-36.pyc +SPDXID: SPDXRef-File-...install-scripts.cpython-36.pyc-ef2c535a1ab2d760 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/install.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install.cpython-36.opt-1.pyc-7925ccabf4ef50ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install.cpython-36.opt-1.pyc-a1b8a5603f14c857 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install.cpython-36.opt-1.pyc-d18187d6fed93d33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...install.cpython-36.opt-2.pyc-ff1a26b6229adad0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/installedproductslib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...installedproductslib.cpython-36.opt-1.pyc-7b8b5cbe8813bbe7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/installedproductslib.cpython-36.pyc +SPDXID: SPDXRef-File-...installedproductslib.cpython-36.pyc-8b15e0c415873ba8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/installedproductslib.py +SPDXID: SPDXRef-File-...installedproductslib.py-40f78aa6fcafc114 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/intranges.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...intranges.cpython-36.opt-1.pyc-792ed7f718ca01ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/lib/io.openliberty.accesslists.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.accesslists.internal-1.0.81.jar-a4f57d2a8539555b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.interfaces_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.cdi.4.0.interfaces-1.0.81.jar-6393cff2f998def7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.services.fragment_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.cdi.4.0.internal.services.fragment-1.0.81.jar-fc1b6e08bf9fbcff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.web_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.cdi.4.0.internal.web-1.0.81.jar-ae594f61545ed4c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.weld_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.cdi.4.0.internal.weld-1.0.81.jar-6d90932b3c67cb36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/third-party/io.openliberty.cdi.4.0.thirdparty_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.cdi.4.0.thirdparty-1.0.81.jar-36082487486261fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.checkpoint_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.checkpoint-1.0.81.jar-b4528c44eac1a589 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/io.openliberty.dynacache.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.dynacache.internal-1.0.81.jar-5cfab70da35221e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.el.internal.cdi.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.el.internal.cdi.jakarta-1.0.81.jar-2f6361eb33adf0ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.io.micrometer_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.io.micrometer-1.0.81.jar-253f658bf8d5ef42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.io.netty.ssl_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.io.netty.ssl-1.0.81.jar-79ec4d9a028f1cf0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.io.smallrye.common.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.io.smallrye.common.jakarta-1.0.81.jar-0e1ca4473ef22abc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.io.smallrye.config.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.io.smallrye.config.jakarta-1.0.81.jar-03f846e4d48fbd7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.io.smallrye.metrics_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.io.smallrye.metrics-1.0.81.jar-e7028b1a666d998f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.activation.2.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.activation.2.1-1.0.81.jar-7e4ddb9dfbc08d12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.annotation.2.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.annotation.2.1-1.0.81.jar-29c86f9b5c7b30e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.cdi.4.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.cdi.4.0-1.0.81.jar-7b3d8afece7a00e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.connectors.2.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.connectors.2.1-1.0.81.jar-023b7d626ae3d945 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.enterpriseBeans.4.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.enterpriseBeans.4.0-1.0.81.jar-4bac58477431d801 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.expressionLanguage.5.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.expressionLanguage.5.0-1.0.81.jar-eeab502ee7013eff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.interceptor.2.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.interceptor.2.1-1.0.81.jar-0f6a5248af8c6df3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.jsonb.3.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.jsonb.3.0-1.0.81.jar-6416f8e14fec8e90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.jsonp.2.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.jsonp.2.1-1.0.81.jar-6294411e0a5e34c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.mail.2.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.mail.2.1-1.0.81.jar-a9b4dd70c1247053 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.pages.3.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.pages.3.1-1.0.81.jar-4f21a9e821b46007 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.persistence.3.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.persistence.3.1-1.0.81.jar-eba7779ce765f3e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.jakarta.persistence.api.3.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.persistence.api.3.1-1.0.81.jar-ae41084a4f7616f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.restfulWS.3.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.restfulWS.3.1-1.0.81.jar-bfd622da86425be6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.servlet.6.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.servlet.6.0-1.0.81.jar-4349a4209c8b3484 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.soap.3.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.soap.3.0-1.0.81.jar-27d53554e2df5be1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.transaction.2.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.transaction.2.0-1.0.81.jar-dfdf7b3124803b64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.validation.3.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.validation.3.0-1.0.81.jar-00bcf0d9e36382cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.xmlBinding.4.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.xmlBinding.4.0-1.0.81.jar-81a52a01a936b593 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.xmlWS.4.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.xmlWS.4.0-1.0.81.jar-6f22fe1b15536d02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.jakartaee.platform.v10_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakartaee.platform.v10-1.0.81.jar-ecee344bd7844d6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.jakartaee.platform.v9_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakartaee.platform.v9-1.0.81.jar-79455cec71ad77d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.java11.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.java11.internal-1.0.81.jar-8f0bbd106d0e608a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.jcache.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jcache.internal-1.0.81.jar-50ed96c0669043a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.microprofile.config.internal.common_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.microprofile.config.internal.common-1.0.81.jar-5756037321c9d6c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.microprofile.config.internal.serverxml_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.microprofile.config.internal.serverxml-1.0.81.jar-eaf87bd3958e5f2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.microprofile.health.3.1.internal.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.microprofile.health.3.1.internal.jakarta-1.0.81.jar-74e186d2a2c2a8a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.internal-1.0.81.jar-6434924c5b8d99fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.monitor.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.monitor.internal-1.0.81.jar-791dac2205f89200 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.private.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.private.internal-1.0.81.jar-9a459551e0eccfb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.public.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.public.internal-1.0.81.jar-27702236041b1855 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.netty.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.netty.internal-1.0.81.jar-137a843309eb2c1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.netty.internal.tls.impl_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.netty.internal.tls.impl-1.0.81.jar-70833247a6606926 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.apache.commons.codec_1.15.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.apache.commons.codec-1.15.81.jar-15b2c566b3b30f40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.apache.commons.logging_1.2.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.apache.commons.logging-1.2.81.jar-f755f06cf7d38ddb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.eclipse.angus.activation_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.eclipse.angus.activation-1.0.81.jar-714344ab9ba7af12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.config.3.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.eclipse.microprofile.config.3.0-1.0.81.jar-3efbf5011ae43394 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.health.4.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.eclipse.microprofile.health.4.0-1.0.81.jar-f658f4c9a08996b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.metrics.5.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.eclipse.microprofile.metrics.5.0-1.0.81.jar-448ff8e3a12316ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.eclipse.parsson.1.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.eclipse.parsson.1.1-1.0.81.jar-87f382f57dea1937 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.eclipse.persistence-3.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.eclipse.persistence-3.1-1.0.81.jar-9b046c9928656fc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.eclipse.yasson.3.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.eclipse.yasson.3.0-1.0.81.jar-88a673dfbb6a6a14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.glassfish.hk2.osgi-resource-locator_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.glassfish.hk2.osgi-resource-locator-1.0.81.jar-45bf0b29511bcec5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.jboss.classfilewriter.1.3_1.3.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.jboss.classfilewriter.1.3-1.3.81.jar-1fe80f34d7cd41b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.jboss.logging35_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.jboss.logging35-1.0.81.jar-05e0c7b2da85f719 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.cdi.ee10_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.jboss.resteasy.cdi.ee10-1.0.81.jar-2665f82bf39cedf8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.common.ee10_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.jboss.resteasy.common.ee10-1.0.81.jar-44e873a0b3006e0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.server.ee10_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.jboss.resteasy.server.ee10-1.0.81.jar-2f0c2fc0af19d358 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.jboss.weld5_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.jboss.weld5-1.0.81.jar-c6bf066b5f46b83f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.jboss.weld5.se_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.jboss.weld5.se-1.0.81.jar-4d74162fb0fed5ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.restfulWS.internal.ssl_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.restfulWS.internal.ssl-1.0.81.jar-867bd14a668f0553 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.restfulWS.mpMetrics.filter_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.restfulWS.mpMetrics.filter-1.0.81.jar-7d43960d8a09e9aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.restfulWS30.jsonb20provider_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.restfulWS30.jsonb20provider-1.0.81.jar-fdd076c2cb0f0254 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.security.authentication.internal.builtin_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.security.authentication.internal.builtin-1.0.81.jar-896a0fec6f26324d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.security.authentication.internal.filter_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.security.authentication.internal.filter-1.0.81.jar-b7d60e1bce2dd3f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.security.authentication.internal.tai_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.security.authentication.internal.tai-1.0.81.jar-7ba9b2b4a183a86f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.security.jaas.internal.common_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.security.jaas.internal.common-1.0.81.jar-d850e02edc56f08f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.security.sso.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.security.sso.internal-1.0.81.jar-39e55c2b44fa7ce2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.session.6.0.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.session.6.0.internal-1.0.81.jar-7191ca1cf58ce7c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/io.openliberty.transaction_1.1.81.jar +SPDXID: SPDXRef-File-...io.openliberty.transaction-1.1.81.jar-25c287b5ad4b9d21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.transaction.internal.cdi20.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.transaction.internal.cdi20.jakarta-1.0.81.jar-5ec26bbd6f6c6c6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.webcontainer.security.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.webcontainer.security.internal-1.0.81.jar-914a2371aef03ce8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.webcontainer.servlet.6.0.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.webcontainer.servlet.6.0.internal-1.0.81.jar-38b72e8f08282bdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.webcontainer.servlet.6.0.internal.factories_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.webcontainer.servlet.6.0.internal.factories-1.0.81.jar-d31c8fbdaee11ac4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.wsoc.ssl.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.wsoc.ssl.internal-1.0.81.jar-ca2172ab26960f71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /usr/lib64/python3.6/__pycache__/ipaddress.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ipaddress.cpython-36.opt-1.pyc-3ebf907640a18e30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ipaddress.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ipaddress.cpython-36.opt-2.pyc-cc4fdda90adcd7f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_1.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso2022-jp-1.cpython-36.opt-1.pyc-8712dc33e1d7a9f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_1.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso2022-jp-1.cpython-36.opt-2.pyc-c8e8cd4ce2eedf8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_1.cpython-36.pyc +SPDXID: SPDXRef-File-...iso2022-jp-1.cpython-36.pyc-022fc5bfef70c6d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso2022-jp-2.cpython-36.opt-1.pyc-0650e82714bea79f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_2.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso2022-jp-2.cpython-36.opt-2.pyc-a83eacfebbc7ec7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_2.cpython-36.pyc +SPDXID: SPDXRef-File-...iso2022-jp-2.cpython-36.pyc-5e6dc96fea56cf73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_2004.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso2022-jp-2004.cpython-36.opt-1.pyc-e653386b95413945 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_2004.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso2022-jp-2004.cpython-36.opt-2.pyc-bc85c377eb5a060f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_2004.cpython-36.pyc +SPDXID: SPDXRef-File-...iso2022-jp-2004.cpython-36.pyc-fee69e3ed460b8f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_3.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso2022-jp-3.cpython-36.opt-1.pyc-88a523995ac5b7f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_3.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso2022-jp-3.cpython-36.opt-2.pyc-44b2d11f82168b08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_3.cpython-36.pyc +SPDXID: SPDXRef-File-...iso2022-jp-3.cpython-36.pyc-1c0b28b95e888fc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_ext.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso2022-jp-ext.cpython-36.opt-1.pyc-7793d28a301c0ab7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_ext.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso2022-jp-ext.cpython-36.opt-2.pyc-8ffd2fc86316d626 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_ext.cpython-36.pyc +SPDXID: SPDXRef-File-...iso2022-jp-ext.cpython-36.pyc-64279906aa1f2e64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso2022-jp.cpython-36.opt-1.pyc-d03e3be5916ea374 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso2022-jp.cpython-36.opt-2.pyc-bf2b9ea11ce77057 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_kr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso2022-kr.cpython-36.opt-1.pyc-08adc15808c19be4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_kr.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso2022-kr.cpython-36.opt-2.pyc-eaa785dd346813ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_1.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-1.cpython-36.opt-1.pyc-bb95832565df780c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_1.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-1.cpython-36.opt-2.pyc-e269f637b78d7b5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_10.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-10.cpython-36.opt-1.pyc-c896c339c6e07991 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_10.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-10.cpython-36.opt-2.pyc-50787c22a903ef91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_11.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-11.cpython-36.opt-1.pyc-08f5a36a0d217c6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_11.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-11.cpython-36.opt-2.pyc-4cc667563ce9b325 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_13.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-13.cpython-36.opt-1.pyc-be27d42eb6257ac4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_13.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-13.cpython-36.opt-2.pyc-bf3f5e993ec8528a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_14.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-14.cpython-36.opt-1.pyc-7870984773062fbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_14.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-14.cpython-36.opt-2.pyc-be0e6d8b6c6519d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_15.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-15.cpython-36.opt-1.pyc-5a120e239492e44b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_15.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-15.cpython-36.opt-2.pyc-115c0986360e8bce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_16.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-16.cpython-36.opt-1.pyc-4f61de9049087ec8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_16.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-16.cpython-36.opt-2.pyc-3d68a7bd4f4060c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-2.cpython-36.opt-1.pyc-d8a1556bab8d030b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_2.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-2.cpython-36.opt-2.pyc-5f3f6d97e96229a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_3.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-3.cpython-36.opt-1.pyc-54abff259268b2ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_3.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-3.cpython-36.opt-2.pyc-e3499ae70a1694df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_4.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-4.cpython-36.opt-1.pyc-f0694945dfeabec6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_4.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-4.cpython-36.opt-2.pyc-5867565c0ce36dee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_5.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-5.cpython-36.opt-1.pyc-241c5a75a6959398 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_5.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-5.cpython-36.opt-2.pyc-fba1a1c0e815f6be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_6.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-6.cpython-36.opt-1.pyc-220c9530a65b9acf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_6.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-6.cpython-36.opt-2.pyc-e5b1de26441127cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_7.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-7.cpython-36.opt-1.pyc-6d6abac45a0a3eb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_7.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-7.cpython-36.opt-2.pyc-975d91145c1c3d7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_8.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-8.cpython-36.opt-1.pyc-b9c5b6a64406d01b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_8.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-8.cpython-36.opt-2.pyc-ff0c1acdefe2a286 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_9.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-9.cpython-36.opt-1.pyc-271e2fbd4e1ab04f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_9.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-9.cpython-36.opt-2.pyc-93dbf0028ff53b1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/isodate.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...isodate.cpython-36.opt-1.pyc-181a9865f7149874 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/iterators.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iterators.cpython-36.opt-1.pyc-210a829e8f45c7e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/iterators.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iterators.cpython-36.opt-2.pyc-ec86418cb51ad278 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/jisfreq.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...jisfreq.cpython-36.opt-1.pyc-8e84eafda54c21f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/__pycache__/journal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...journal.cpython-36.opt-1.pyc-f6e46166dbd5d354 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/jpcntx.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...jpcntx.cpython-36.opt-1.pyc-4ef1c74e47f92fc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/tool.cpython-36.pyc +SPDXID: SPDXRef-File-...json---pycache---tool.cpython-36.pyc-6e4c98889592fdb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/jsonwrapper.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...jsonwrapper.cpython-36.opt-1.pyc-7c9c220e46510bf8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/keysign.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...keysign.cpython-36.opt-1.pyc-95862abcc30e4edb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/keysyms.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...keysyms.cpython-36.opt-1.pyc-54a79976851c5c46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/keyword.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...keyword.cpython-36.opt-1.pyc-033bcb9f57952e1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/keyword.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...keyword.cpython-36.opt-2.pyc-eb08e6dc482f1922 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_r.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...koi8-r.cpython-36.opt-1.pyc-b444ed542d8daba1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_r.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...koi8-r.cpython-36.opt-2.pyc-216d572f417898be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_t.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...koi8-t.cpython-36.opt-1.pyc-455aea9cc76e4e92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_t.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...koi8-t.cpython-36.opt-2.pyc-2a05f33c492c2ffe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_u.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...koi8-u.cpython-36.opt-1.pyc-a5277283e37d29e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_u.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...koi8-u.cpython-36.opt-2.pyc-1588a8c256075234 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/kpatch.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...kpatch.cpython-36.opt-1.pyc-b65c79af25c74b9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/kz1048.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...kz1048.cpython-36.opt-1.pyc-a0cece8897011b11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/kz1048.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...kz1048.cpython-36.opt-2.pyc-2f6f052d96a1e12f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langbulgarianmodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...langbulgarianmodel.cpython-36.opt-1.pyc-3c3cad204266878d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langbulgarianmodel.cpython-36.pyc +SPDXID: SPDXRef-File-...langbulgarianmodel.cpython-36.pyc-ad14a1628de3ac96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langcyrillicmodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...langcyrillicmodel.cpython-36.opt-1.pyc-9e0e73402d269897 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langcyrillicmodel.cpython-36.pyc +SPDXID: SPDXRef-File-...langcyrillicmodel.cpython-36.pyc-ad1332265a008256 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langgreekmodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...langgreekmodel.cpython-36.opt-1.pyc-f2142b82c6cb5b8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langgreekmodel.cpython-36.pyc +SPDXID: SPDXRef-File-...langgreekmodel.cpython-36.pyc-7880d6776d906dd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langhebrewmodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...langhebrewmodel.cpython-36.opt-1.pyc-c5a1314a69aa0a47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langhebrewmodel.cpython-36.pyc +SPDXID: SPDXRef-File-...langhebrewmodel.cpython-36.pyc-0cff3d20f6be00be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langhungarianmodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...langhungarianmodel.cpython-36.opt-1.pyc-d9bf6f3addf3fd45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langhungarianmodel.cpython-36.pyc +SPDXID: SPDXRef-File-...langhungarianmodel.cpython-36.pyc-c1fee2ad84e5e557 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langthaimodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...langthaimodel.cpython-36.opt-1.pyc-6cab9377f73f5cb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langthaimodel.cpython-36.pyc +SPDXID: SPDXRef-File-...langthaimodel.cpython-36.pyc-489587cfc2f465af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langturkishmodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...langturkishmodel.cpython-36.opt-1.pyc-5ae01334eadf7aea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langturkishmodel.cpython-36.pyc +SPDXID: SPDXRef-File-...langturkishmodel.cpython-36.pyc-92411396dbff78ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/latin_1.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...latin-1.cpython-36.opt-1.pyc-adf6751d8cb44e15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/latin_1.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...latin-1.cpython-36.opt-2.pyc-8a28db6339490152 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/latin1prober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...latin1prober.cpython-36.opt-1.pyc-ec145475e303db5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/latin1prober.cpython-36.pyc +SPDXID: SPDXRef-File-...latin1prober.cpython-36.pyc-0fdc25fe63fb0e8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/launch.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...launch.cpython-36.opt-1.pyc-1a15f6c843b5450b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/lib/com.ibm.tx.jta.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.tx.jta.jakarta-1.0.81.jar-929222e05121a521 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.tx.util.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.tx.util.jakarta-1.0.81.jar-d637e9500906e9cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.app.manager_1.1.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.app.manager-1.1.81.jar-a2c6abb966c1213b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact.url_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.artifact.url-1.0.81.jar-94e72c018599974c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact.zip_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.artifact.zip-1.0.81.jar-518251f252a041c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.channel.ssl_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.channel.ssl-1.0.81.jar-4583b55abcf194ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.channelfw_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.channelfw-1.0.81.jar-df43e1afa895c76e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.classloading_1.1.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.classloading-1.1.81.jar-34345d73098fcafd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.diagnostics_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.diagnostics-1.0.81.jar-1e382bfe288892f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.install.map_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.install.map-1.0.81.jar-b72a391100b4c61d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.dd_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.javaee.dd-1.0.81.jar-d640a9ed9d369834 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.boot_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.kernel.boot-1.0.81.jar-d95b1236acd055fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.logging.hpel_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.logging.hpel-1.0.81.jar-9e8a57b02663df52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.logging.osgi_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.logging.osgi-1.0.81.jar-c1e19a239d94571b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.recoverylog_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.recoverylog-1.0.81.jar-95e343ce57f526a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.repository_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.repository-1.0.81.jar-1c94cf1cca4f01a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.threading_1.1.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.threading-1.1.81.jar-a288d22610fe3a1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.wsbytebuffer_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.wsbytebuffer-1.0.81.jar-802c4b1e8193136b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.endpoint_1.0.81.jar +SPDXID: SPDXRef-File-...lib-io.openliberty.endpoint-1.0.81.jar-6e522216f6cd5d1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.io.netty_1.0.81.jar +SPDXID: SPDXRef-File-...lib-io.openliberty.io.netty-1.0.81.jar-24b54418e6323c7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /usr/lib/locale/C.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...lib-locale-C.utf8-LC-IDENTIFICATION-5678c4e0e1c656c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_ADDRESS +SPDXID: SPDXRef-File-...lib-locale-en-GB.iso885915-LC-ADDRESS-14efa0e1c5b6129d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_COLLATE +SPDXID: SPDXRef-File-...lib-locale-en-GB.iso885915-LC-COLLATE-e6f2d6c7d056f94c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_CTYPE +SPDXID: SPDXRef-File-...lib-locale-en-GB.iso885915-LC-CTYPE-7806d7a2767297ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_MONETARY +SPDXID: SPDXRef-File-...lib-locale-en-GB.iso885915-LC-MONETARY-c175f40bbda0dbb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_NUMERIC +SPDXID: SPDXRef-File-...lib-locale-en-GB.iso885915-LC-NUMERIC-67c98038685bd622 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_PAPER +SPDXID: SPDXRef-File-...lib-locale-en-GB.iso885915-LC-PAPER-67b332bc717e90bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.iso885915/LC_ADDRESS +SPDXID: SPDXRef-File-...lib-locale-en-US.iso885915-LC-ADDRESS-f92a68a5283720dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.iso885915/LC_MONETARY +SPDXID: SPDXRef-File-...lib-locale-en-US.iso885915-LC-MONETARY-2738e8abd5b733fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.iso885915/LC_PAPER +SPDXID: SPDXRef-File-...lib-locale-en-US.iso885915-LC-PAPER-b969e04f4329b6e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.utf8/LC_MEASUREMENT +SPDXID: SPDXRef-File-...lib-locale-en-US.utf8-LC-MEASUREMENT-f682071750cb8b01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/python3.6/site-packages/socks.py +SPDXID: SPDXRef-File-...lib-python3.6-site-packages-socks.py-e81bd9ddf844cff3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/aarch64-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-aarch64-linux-macros-eafbcea0513b9a66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/alpha-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-alpha-linux-macros-5b8e9d00407d68bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/alphaev5-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-alphaev5-linux-macros-2bf033ef8c0a051a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/alphaev6-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-alphaev6-linux-macros-91407ed8b2d0ab78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/amd64-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-amd64-linux-macros-0129a3e49a5456b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv3l-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv3l-linux-macros-02ad4f528e7ceb9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv4b-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv4b-linux-macros-253cff719d761295 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv4l-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv4l-linux-macros-a3bd73753d2e64cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv5tel-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv5tel-linux-macros-a4948e20da6cfc9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv5tl-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv5tl-linux-macros-6a0d81d2dc38ea02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv6hl-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv6hl-linux-macros-e9380b67e53303c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv6l-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv6l-linux-macros-d4166ccec323f733 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv7hl-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv7hl-linux-macros-1d1788e5837771b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv7hnl-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv7hnl-linux-macros-627e130e55590397 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv7l-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv7l-linux-macros-ecb0fc5793d57175 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/athlon-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-athlon-linux-macros-0bbee84af18c39cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/geode-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-geode-linux-macros-48cb6c98dc681e92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ia32e-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-ia32e-linux-macros-397c7883c94f92c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mips64-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-mips64-linux-macros-5d6752546e995f4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mips64el-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-mips64el-linux-macros-aed4971ffd1d2108 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mips64r6-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-mips64r6-linux-macros-10fa89e40d44a7e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mipsel-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-mipsel-linux-macros-1904d86f9c52f5e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mipsr6-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-mipsr6-linux-macros-a111546ffd95efb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mipsr6el-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-mipsr6el-linux-macros-608ded62e456db06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/noarch-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-noarch-linux-macros-e4e29d9e3f33b21b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/pentium3-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-pentium3-linux-macros-3b46e102f6b12368 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/pentium4-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-pentium4-linux-macros-178b7cd37f9ace75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc32dy4-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-ppc32dy4-linux-macros-ae49a2341dbd5d4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc64-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-ppc64-linux-macros-f503067933d7714d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc64le-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-ppc64le-linux-macros-be33ec7be582993e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc64p7-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-ppc64p7-linux-macros-df523be0ee7b6d7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc8260-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-ppc8260-linux-macros-bce90afe326888fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc8560-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-ppc8560-linux-macros-b3ccc04eb15a526c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/riscv64-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-riscv64-linux-macros-0499084d58da627c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/s390x-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-s390x-linux-macros-f1d20d31bcc4e077 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sparc-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-sparc-linux-macros-79f0541e0c8e337c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sparc64-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-sparc64-linux-macros-91ee56aae9a98efa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sparc64v-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-sparc64v-linux-macros-614bf24761e205e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sparcv8-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-sparcv8-linux-macros-db4206162a3e9d29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sparcv9-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-sparcv9-linux-macros-e19bececcea397d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sparcv9v-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-sparcv9v-linux-macros-a9d4efab8f0fa48a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/x86_64-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-x86-64-linux-macros-0bf0f1284193bf76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.be.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.be.catalog-c2da0344bfb4fb6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.bg.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.bg.catalog-ce37c76d8fa4c0c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.catalog-13b371a7879c3e19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.de.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.de.catalog-20c81276c974f91a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.fr.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.fr.catalog-fa3bb02cefba96b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.it.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.it.catalog-c99c9e2c6be33cd9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.pl.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.pl.catalog-807761e2427c14be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.ru.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.ru.catalog-dfda49c9b71bcd0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/libsystemd-shared-239.so +SPDXID: SPDXRef-File-...lib-systemd-libsystemd-shared-239.so-f702fc8f6c35df64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/bluetooth.target +SPDXID: SPDXRef-File-...lib-systemd-system-bluetooth.target-125b99d02d3745b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/debug-shell.service +SPDXID: SPDXRef-File-...lib-systemd-system-debug-shell.service-e27bfa36ee3248ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dev-hugepages.mount +SPDXID: SPDXRef-File-...lib-systemd-system-dev-hugepages.mount-7bc027ef1b7cf975 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dev-mqueue.mount +SPDXID: SPDXRef-File-...lib-systemd-system-dev-mqueue.mount-1a09a51638e9f9d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dnf-makecache.timer +SPDXID: SPDXRef-File-...lib-systemd-system-dnf-makecache.timer-1aa1f909a4e0339f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/emergency.service +SPDXID: SPDXRef-File-...lib-systemd-system-emergency.service-eca72e93e4c5c9b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/emergency.target +SPDXID: SPDXRef-File-...lib-systemd-system-emergency.target-3390623168a2def0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/getty-pre.target +SPDXID: SPDXRef-File-...lib-systemd-system-getty-pre.target-6e6c618118da02c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/graphical.target +SPDXID: SPDXRef-File-...lib-systemd-system-graphical.target-8a3bf1a57ba4e680 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/halt-local.service +SPDXID: SPDXRef-File-...lib-systemd-system-halt-local.service-4515cf557dea0130 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd-fs.target +SPDXID: SPDXRef-File-...lib-systemd-system-initrd-fs.target-83e3d799fcd7db17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/ldconfig.service +SPDXID: SPDXRef-File-...lib-systemd-system-ldconfig.service-9a321e96d1e79282 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/local-fs-pre.target +SPDXID: SPDXRef-File-...lib-systemd-system-local-fs-pre.target-1f5aaa8505a1f637 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/multi-user.target +SPDXID: SPDXRef-File-...lib-systemd-system-multi-user.target-6c7ad3cb5669ac6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/network-pre.target +SPDXID: SPDXRef-File-...lib-systemd-system-network-pre.target-a33179f52a344e86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/nftables.service +SPDXID: SPDXRef-File-...lib-systemd-system-nftables.service-9c1eb611e12c69e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/systemd/system/nss-lookup.target +SPDXID: SPDXRef-File-...lib-systemd-system-nss-lookup.target-1cd5a5982b246494 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/rc-local.service +SPDXID: SPDXRef-File-...lib-systemd-system-rc-local.service-7d3ea7e050e43a7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/remote-fs.target +SPDXID: SPDXRef-File-...lib-systemd-system-remote-fs.target-3e5820ad4e7eef34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/rhsm-facts.service +SPDXID: SPDXRef-File-...lib-systemd-system-rhsm-facts.service-5984ef7844ded846 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/rhsmcertd.service +SPDXID: SPDXRef-File-...lib-systemd-system-rhsmcertd.service-2c94802b4b674504 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/smartcard.target +SPDXID: SPDXRef-File-...lib-systemd-system-smartcard.target-bf699119dc241dae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/time-sync.target +SPDXID: SPDXRef-File-...lib-systemd-system-time-sync.target-45b9e33951a5efb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-user-runtime-dir +SPDXID: SPDXRef-File-...lib-systemd-systemd-user-runtime-dir-3f1784f78cb5deff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/gpg-agent-ssh.socket +SPDXID: SPDXRef-File-...lib-systemd-user-gpg-agent-ssh.socket-be1a05434219e72b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/systemd-exit.service +SPDXID: SPDXRef-File-...lib-systemd-user-systemd-exit.service-eb03fcd257955956 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/systemd-nologin.conf +SPDXID: SPDXRef-File-...lib-tmpfiles.d-systemd-nologin.conf-5f8327952cae6ec1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/udev/rules.d/95-dm-notify.rules +SPDXID: SPDXRef-File-...lib-udev-rules.d-95-dm-notify.rules-6d3596fbec794f95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/Grammar3.6.8.final.0.pickle +SPDXID: SPDXRef-File-...lib2to3-Grammar3.6.8.final.0.pickle-937141d3a06103c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...lib2to3-ex.cpython-36.opt-1.pyc-fdc50ad497d18a47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_basestring.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-basestring.py-e3486ce7ce638c13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_execfile.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-execfile.py-f16b9af2adb54096 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_exitfunc.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-exitfunc.py-fc3d851fa862b15a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_funcattrs.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-funcattrs.py-c7748c274a6a18c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_imports2.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-imports2.py-846bf08330cb507e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_isinstance.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-isinstance.py-dc752f1c3446e62e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_itertools_imports.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-itertools-imports.py-74bc15cfd2f19793 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_itertools.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-itertools.py-2875921312f9fd6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_metaclass.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-metaclass.py-1b815a4715478c08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_methodattrs.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-methodattrs.py-eea47490228bee9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_numliterals.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-numliterals.py-c0a17d4a7f964f3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_operator.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-operator.py-d365dedd146e5baa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_raw_input.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-raw-input.py-752b2e3c1d706069 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_set_literal.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-set-literal.py-c25b3433cd001ed3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_standarderror.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-standarderror.py-74ef0aafd7968e5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_tuple_params.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-tuple-params.py-5237d720d028207b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_ws_comma.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-ws-comma.py-ba3c76fe18472106 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_xreadlines.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-xreadlines.py-f707fc6e270d2552 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/fipscheck/libgmp.so.10.3.2.hmac +SPDXID: SPDXRef-File-...lib64-fipscheck-libgmp.so.10.3.2.hmac-54cb231af4e39120 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/GL-1.0.typelib +SPDXID: SPDXRef-File-...lib64-girepository-1.0-GL-1.0.typelib-646a52d9b53ea1ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/Gio-2.0.typelib +SPDXID: SPDXRef-File-...lib64-girepository-1.0-Gio-2.0.typelib-79adba79459aac24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/xft-2.0.typelib +SPDXID: SPDXRef-File-...lib64-girepository-1.0-xft-2.0.typelib-75d02293523d704d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/krb5/plugins/preauth/spake.so +SPDXID: SPDXRef-File-...lib64-krb5-plugins-preauth-spake.so-c86702582253b66b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libibverbs/libbnxt_re-rdmav34.so +SPDXID: SPDXRef-File-...lib64-libibverbs-libbnxt-re-rdmav34.so-8df65b6ed85671bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libibverbs/libcxgb4-rdmav34.so +SPDXID: SPDXRef-File-...lib64-libibverbs-libcxgb4-rdmav34.so-bd7577063c47c01e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libibverbs/libirdma-rdmav34.so +SPDXID: SPDXRef-File-...lib64-libibverbs-libirdma-rdmav34.so-df179fdf2a36d24b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libibverbs/libqedr-rdmav34.so +SPDXID: SPDXRef-File-...lib64-libibverbs-libqedr-rdmav34.so-a4f8e583a8e20f2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libnetfilter_conntrack.so.3.6.0 +SPDXID: SPDXRef-File-...lib64-libnetfilter-conntrack.so.3.6.0-840bc9deb414f17f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/_collections_abc.py +SPDXID: SPDXRef-File-...lib64-python3.6--collections-abc.py-8d89a92d18c37b23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_threading_local.py +SPDXID: SPDXRef-File-...lib64-python3.6--threading-local.py-85247986c4b6c27e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio---init--.py-f268af3266a2eb89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/base_events.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-base-events.py-2948d902a6774165 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/base_tasks.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-base-tasks.py-42d7033485ace213 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/constants.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-constants.py-c1c647105da18d44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/coroutines.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-coroutines.py-97d6455892cb39f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/protocols.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-protocols.py-8f85e047b5f229b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/sslproto.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-sslproto.py-8cc70e5f782b61a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/subprocess.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-subprocess.py-b848addd2afeccf8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/test_utils.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-test-utils.py-b88663bcc48ff553 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/transports.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-transports.py-c4d4d13d891652d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/unix_events.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-unix-events.py-16d944b1927862ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-concurrent---init--.py-c05e34a402626ba4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils---init--.py-6881a3065ea4ed8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/ccompiler.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-ccompiler.py-5991ba3b3dc4fbe8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/config.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-config.py-bdc5dddeb0550935 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/dep_util.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-dep-util.py-ebf45bcd27bbc7c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/dir_util.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-dir-util.py-7f66d64109fbb470 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/errors.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-errors.py-524d78849e0ca834 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/extension.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-extension.py-718f58480a9afafb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/file_util.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-file-util.py-6c063ace76f2c225 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/filelist.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-filelist.py-1204071e2909e9ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/sysconfig.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-sysconfig.py-05c7b4d8a4816490 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/text_file.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-text-file.py-89cdb5c8b04d1a02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/version.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-version.py-de2bf8c9a121d9c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/_parseaddr.py +SPDXID: SPDXRef-File-...lib64-python3.6-email--parseaddr.py-152120eb5f1135f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/_policybase.py +SPDXID: SPDXRef-File-...lib64-python3.6-email--policybase.py-00c67feebe00e0b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/base64mime.py +SPDXID: SPDXRef-File-...lib64-python3.6-email-base64mime.py-c78220666ae3f64a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/feedparser.py +SPDXID: SPDXRef-File-...lib64-python3.6-email-feedparser.py-216fb172b8d3c889 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-email-mime---init--.py-79ac401330bd3d36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/audio.py +SPDXID: SPDXRef-File-...lib64-python3.6-email-mime-audio.py-19e538a88dde6d97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/image.py +SPDXID: SPDXRef-File-...lib64-python3.6-email-mime-image.py-396fd10afdabc26e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/message.py +SPDXID: SPDXRef-File-...lib64-python3.6-email-mime-message.py-b2c4a34bcedaab30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/quoprimime.py +SPDXID: SPDXRef-File-...lib64-python3.6-email-quoprimime.py-90cb298be75629ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings---init--.py-b7fac0e9dbd3773e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/aliases.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-aliases.py-8439325b412b6630 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/big5hkscs.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-big5hkscs.py-3e52fade3080c429 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/bz2_codec.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-bz2-codec.py-5c48f163602ce34b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/charmap.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-charmap.py-9c10f2a1cb1f1e10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1006.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1006.py-9609a4c0633c345e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1026.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1026.py-f51abdec02552398 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1125.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1125.py-05ff9cd3aa921406 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1140.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1140.py-81e4e0ff2eadcc1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1250.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1250.py-d790a22e560080c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1251.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1251.py-467ba5c0890e8eec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1252.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1252.py-6b4c0147a000fa32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1253.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1253.py-0b578c8fbd67e002 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1254.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1254.py-e0a1030b409f60f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1255.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1255.py-cb97b7fdce31bcc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1256.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1256.py-3936babf07896997 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1257.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1257.py-5f81205338982a8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1258.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1258.py-c4292a4626885580 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp65001.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp65001.py-6e1c0899c57f27a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/euc_jp.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-euc-jp.py-b1f5ad5ea840e27d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/euc_kr.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-euc-kr.py-9e08af2794eb9930 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/gb18030.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-gb18030.py-f284ccbbfd239341 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/gb2312.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-gb2312.py-6ec6e259c6c19627 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/hex_codec.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-hex-codec.py-c39b0d2966dcb59c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/hp_roman8.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-hp-roman8.py-7b063b9efa47dfff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_1.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-1.py-cab65f19e8062ae2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_2.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-2.py-5ead108d5b38d1d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_3.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-3.py-751946916436201e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_4.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-4.py-e75b91de8c57ec47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_5.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-5.py-fc45820722ef2905 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_6.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-6.py-ec52004fa7cb7e15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_7.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-7.py-90d2e567fa1611b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_8.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-8.py-017aa5368459759f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_9.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-9.py-64df6d1d050ed140 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/koi8_r.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-koi8-r.py-1452210bb3a0434a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/koi8_t.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-koi8-t.py-57fbbe952a0453e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/koi8_u.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-koi8-u.py-ba5e906227fb3717 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/kz1048.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-kz1048.py-2767e28aa81ebe02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/latin_1.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-latin-1.py-11cbb77f70b08fac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_farsi.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-mac-farsi.py-10ca6257e43e61f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_greek.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-mac-greek.py-3d4cea5d70d7086d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_roman.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-mac-roman.py-135ba8bacf135817 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/palmos.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-palmos.py-47ec110ebc1974a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/ptcp154.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-ptcp154.py-d93ac59f22784472 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/punycode.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-punycode.py-78d2472008447794 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/rot_13.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-rot-13.py-65309baedaa731d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/shift_jis.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-shift-jis.py-a151304e48309e21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/tis_620.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-tis-620.py-109da836f019dcf7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/undefined.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-undefined.py-a73a99b9b26b9f9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_16_be.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-utf-16-be.py-7ffa9ec3045a0549 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_16_le.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-utf-16-le.py-36a385164ac944e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_16.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-utf-16.py-5e67cc1e89eb5e85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_32_be.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-utf-32-be.py-8253b0839c077bdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_32_le.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-utf-32-le.py-d7a065f4ad87559e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_32.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-utf-32.py-f3627cff1ffb0925 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_8_sig.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-utf-8-sig.py-103371f92f4b2bba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/uu_codec.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-uu-codec.py-09ce51faae9a48f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-ensurepip---init--.py-1a6dea977939785e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__main__.py +SPDXID: SPDXRef-File-...lib64-python3.6-ensurepip---main--.py-3b5402c85cd24247 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-importlib---init--.py-5f85b6d1e7096ca9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/machinery.py +SPDXID: SPDXRef-File-...lib64-python3.6-importlib-machinery.py-7a6f2662f9a2974e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3---init--.py-91ed042cf42e4072 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__main__.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3---main--.py-0384ebb0f50aeaf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/Grammar.txt +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-Grammar.txt-2d0afa80b0371619 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/btm_matcher.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-btm-matcher.py-c1935e7d0a30d3ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/btm_utils.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-btm-utils.py-32e71a602a21bb04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixer_base.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-fixer-base.py-44db598c0bed6318 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixer_util.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-fixer-util.py-f2c584c5dbbbf04e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/conv.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-conv.py-eecc12042fafd7c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/parse.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-parse.py-9c19541e06e381e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/pgen.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-pgen.py-82ae5253404a7011 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/token.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-token.py-ad793a9963de4bbe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/refactor.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-refactor.py-a9e297e001dca034 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-logging---init--.py-020bb135ff64a7fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/handlers.py +SPDXID: SPDXRef-File-...lib64-python3.6-logging-handlers.py-cd42d73c28de6431 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-pydoc-data---init--.py-967e23f66b3ae8b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/_pydoc.css +SPDXID: SPDXRef-File-...lib64-python3.6-pydoc-data--pydoc.css-4827f5ae6ff5c61e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/topics.py +SPDXID: SPDXRef-File-...lib64-python3.6-pydoc-data-topics.py-577a580b0c9f76bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-sqlite3---init--.py-aab24a03ae4a9b94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-unittest---init--.py-0a8f0e346ebf5816 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__main__.py +SPDXID: SPDXRef-File-...lib64-python3.6-unittest---main--.py-d02159ff059cb1ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/signals.py +SPDXID: SPDXRef-File-...lib64-python3.6-unittest-signals.py-172e767df57e8fa5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/robotparser.py +SPDXID: SPDXRef-File-...lib64-python3.6-urllib-robotparser.py-049e3c44751bd0c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-wsgiref---init--.py-56a1f232a8907635 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/handlers.py +SPDXID: SPDXRef-File-...lib64-python3.6-wsgiref-handlers.py-472a74d54d599393 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/validate.py +SPDXID: SPDXRef-File-...lib64-python3.6-wsgiref-validate.py-464f33c548b4179e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-dom---init--.py-bb44c09411fe818c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/NodeFilter.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-dom-NodeFilter.py-d84fb8132efe5f46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/minicompat.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-dom-minicompat.py-b156907c787e40d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/xmlbuilder.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-dom-xmlbuilder.py-0a085298f62a8f87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-etree---init--.py-0b6019f8ef78e0da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/expat.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-parsers-expat.py-f562f6ab6871314b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-sax---init--.py-dc7c6b9aaaa938c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/_exceptions.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-sax--exceptions.py-845c9892dbf71eaa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/expatreader.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-sax-expatreader.py-daa92c4f133f6986 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/saxutils.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-sax-saxutils.py-7d0a5b933bc2eca9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/xmlreader.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-sax-xmlreader.py-5b4710cc5cc5da6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_filter/upperLOWER +SPDXID: SPDXRef-File-...lib64-security-pam-filter-upperLOWER-22110c00c13cb26f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/xtables/libip6t_MASQUERADE.so +SPDXID: SPDXRef-File-...lib64-xtables-libip6t-MASQUERADE.so-c97297d37a177cee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_ipv6header.so +SPDXID: SPDXRef-File-...lib64-xtables-libip6t-ipv6header.so-b0869edc65e94731 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/conf.cpython-36.pyc +SPDXID: SPDXRef-File-...libdnf---pycache---conf.cpython-36.pyc-681db22609cf0ca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/repo.cpython-36.pyc +SPDXID: SPDXRef-File-...libdnf---pycache---repo.cpython-36.pyc-6327ef76428f055e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/getconf/POSIX_V6_LP64_OFF64 +SPDXID: SPDXRef-File-...libexec-getconf-POSIX-V6-LP64-OFF64-ef810a1d0ae96183 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/getconf/POSIX_V7_LP64_OFF64 +SPDXID: SPDXRef-File-...libexec-getconf-POSIX-V7-LP64-OFF64-43024eaee2d9cd1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/p11-kit/trust-extract-compat +SPDXID: SPDXRef-File-...libexec-p11-kit-trust-extract-compat-b701e74a00c19bd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libibverbs/libhfi1verbs-rdmav34.so +SPDXID: SPDXRef-File-...libibverbs-libhfi1verbs-rdmav34.so-48c373697106ea68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libibverbs/libvmw_pvrdma-rdmav34.so +SPDXID: SPDXRef-File-...libibverbs-libvmw-pvrdma-rdmav34.so-c18ce21e044f1821 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/libnetfilter_conntrack/COPYING +SPDXID: SPDXRef-File-...libnetfilter-conntrack-COPYING-ee0323e77b3a853e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libreport/events.d/collect_dnf.conf +SPDXID: SPDXRef-File-...libreport-events.d-collect-dnf.conf-3f01ae444977b153 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/libreswan.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...libreswan.cpython-36.opt-1.pyc-c703492749d08b6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/libssh.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...libssh.cpython-36.opt-1.pyc-8a69c6e890e5f224 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gdb/auto-load/usr/lib64/__pycache__/libstdc++.so.6.0.25-gdb.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...libstdc--.so.6.0.25-gdb.cpython-36.opt-1.pyc-cf1403ff057a7d17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gdb/auto-load/usr/lib64/__pycache__/libstdc++.so.6.0.25-gdb.cpython-36.pyc +SPDXID: SPDXRef-File-...libstdc--.so.6.0.25-gdb.cpython-36.pyc-e92909bf6b6947b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/__pycache__/libxml2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...libxml2.cpython-36.opt-1.pyc-397126dcab780ca9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/coreutils-single/COPYING +SPDXID: SPDXRef-File-...licenses-coreutils-single-COPYING-fed2b2c6919dd923 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/cryptsetup-libs/COPYING.LGPL +SPDXID: SPDXRef-File-...licenses-cryptsetup-libs-COPYING.LGPL-c4ec8307d91dc10d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/device-mapper/COPYING.LIB +SPDXID: SPDXRef-File-...licenses-device-mapper-COPYING.LIB-37b2524242e455fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/device-mapper-libs/COPYING +SPDXID: SPDXRef-File-...licenses-device-mapper-libs-COPYING-c5e5155c78392c9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/elfutils-libelf/COPYING-GPLV2 +SPDXID: SPDXRef-File-...licenses-elfutils-libelf-COPYING-GPLV2-11613efeb64d51e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/elfutils-libs/COPYING-GPLV2 +SPDXID: SPDXRef-File-...licenses-elfutils-libs-COPYING-GPLV2-0e31a34ab999b66c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/elfutils-libs/COPYING-LGPLV3 +SPDXID: SPDXRef-File-...licenses-elfutils-libs-COPYING-LGPLV3-48a70c0542973304 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gobject-introspection/COPYING +SPDXID: SPDXRef-File-...licenses-gobject-introspection-COPYING-9c3fb9c489228424 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/keyutils-libs/LICENCE.LGPL +SPDXID: SPDXRef-File-...licenses-keyutils-libs-LICENCE.LGPL-b73164a895e10f80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libfdisk/COPYING.LGPLv2.1 +SPDXID: SPDXRef-File-...licenses-libfdisk-COPYING.LGPLv2.1-32ad7b1a810f0fd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgpg-error/COPYING.LIB +SPDXID: SPDXRef-File-...licenses-libgpg-error-COPYING.LIB-ea3c6828fc87e12f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libidn2/COPYING.LESSERv3 +SPDXID: SPDXRef-File-...licenses-libidn2-COPYING.LESSERv3-c636c58590ba3c29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libmount/COPYING.LGPLv2.1 +SPDXID: SPDXRef-File-...licenses-libmount-COPYING.LGPLv2.1-3ed42538f352af51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libsmartcols/COPYING.LGPLv2.1 +SPDXID: SPDXRef-File-...licenses-libsmartcols-COPYING.LGPLv2.1-41a962b3605e7b6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libunistring/COPYING.LIB +SPDXID: SPDXRef-File-...licenses-libunistring-COPYING.LIB-0aaaf2d5e89adfa9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python-iniparse/LICENSE-PSF +SPDXID: SPDXRef-File-...licenses-python-iniparse-LICENSE-PSF-b183dd336e12f252 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-dateutil/LICENSE +SPDXID: SPDXRef-File-...licenses-python3-dateutil-LICENSE-c9bb7a28c1416fb3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-decorator/LICENSE.txt +SPDXID: SPDXRef-File-...licenses-python3-decorator-LICENSE.txt-8e8ee2da69c10561 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-dmidecode/AUTHORS +SPDXID: SPDXRef-File-...licenses-python3-dmidecode-AUTHORS-3fd9e95e70af8985 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-dmidecode/LICENSE +SPDXID: SPDXRef-File-...licenses-python3-dmidecode-LICENSE-9059e0c8f5555f2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-gobject-base/COPYING +SPDXID: SPDXRef-File-...licenses-python3-gobject-base-COPYING-cee0c632d76d1b00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-idna/LICENSE.rst +SPDXID: SPDXRef-File-...licenses-python3-idna-LICENSE.rst-5969e315fe5bc0dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-pip-wheel/LICENSE.txt +SPDXID: SPDXRef-File-...licenses-python3-pip-wheel-LICENSE.txt-4aea6b6de1488527 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-requests/LICENSE +SPDXID: SPDXRef-File-...licenses-python3-requests-LICENSE-4e730620a8625e87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-systemd/LICENSE.txt +SPDXID: SPDXRef-File-...licenses-python3-systemd-LICENSE.txt-f348287d137e3139 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-urllib3/LICENSE.txt +SPDXID: SPDXRef-File-...licenses-python3-urllib3-LICENSE.txt-cefc386016f03f5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/shadow-utils/gpl-2.0.txt +SPDXID: SPDXRef-File-...licenses-shadow-utils-gpl-2.0.txt-c9b3d4e1970a5a6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/shadow-utils/shadow-bsd.txt +SPDXID: SPDXRef-File-...licenses-shadow-utils-shadow-bsd.txt-3d94ebd79d6bc361 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/util-linux/COPYING.BSD-3 +SPDXID: SPDXRef-File-...licenses-util-linux-COPYING.BSD-3-060a755da54e559d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/util-linux/COPYING.GPLv2 +SPDXID: SPDXRef-File-...licenses-util-linux-COPYING.GPLv2-823983abf08c357f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/util-linux/COPYING.LGPLv2.1 +SPDXID: SPDXRef-File-...licenses-util-linux-COPYING.LGPLv2.1-b12dab56f2c4b278 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/linecache.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...linecache.cpython-36.opt-1.pyc-829ddef374238a56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/linecache.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...linecache.cpython-36.opt-2.pyc-80739798bc982348 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/listing.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...listing.cpython-36.opt-1.pyc-d83f5b19b3e50dbe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/literals.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...literals.cpython-36.opt-1.pyc-be1a3adbffcc425e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/literals.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...literals.cpython-36.opt-2.pyc-e83e65040d1ecf49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/loader.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...loader.cpython-36.opt-1.pyc-bd650b9cacb57c07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/loader.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...loader.cpython-36.opt-2.pyc-d238f4c7028a9613 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_AU.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-AU.utf8-LC-IDENTIFICATION-596c75a6c89074bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-BW.utf8-LC-IDENTIFICATION-f5fb7a6c1d6c11af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/locale/en_CA/LC_MESSAGES/glib20.mo +SPDXID: SPDXRef-File-...locale-en-CA-LC-MESSAGES-glib20.mo-9a8424607ee14d24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_CA.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-CA.utf8-LC-IDENTIFICATION-a0c27f21adf787f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-DK.utf8-LC-IDENTIFICATION-c0fd73f774aa80e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/Linux-PAM.mo +SPDXID: SPDXRef-File-...locale-en-GB-LC-MESSAGES-Linux-PAM.mo-9275c31734f7d705 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/chkconfig.mo +SPDXID: SPDXRef-File-...locale-en-GB-LC-MESSAGES-chkconfig.mo-1a162369497c3492 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/glib20.mo +SPDXID: SPDXRef-File-...locale-en-GB-LC-MESSAGES-glib20.mo-87f6373b20ca3eec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/libuser.mo +SPDXID: SPDXRef-File-...locale-en-GB-LC-MESSAGES-libuser.mo-5982164573bd37d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/p11-kit.mo +SPDXID: SPDXRef-File-...locale-en-GB-LC-MESSAGES-p11-kit.mo-831b3a4da9a880c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/passwd.mo +SPDXID: SPDXRef-File-...locale-en-GB-LC-MESSAGES-passwd.mo-d87806068c537ccf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/usermode.mo +SPDXID: SPDXRef-File-...locale-en-GB-LC-MESSAGES-usermode.mo-5a408c76245d264a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_MEASUREMENT +SPDXID: SPDXRef-File-...locale-en-GB.iso885915-LC-MEASUREMENT-7e9bb1c060133a31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_TELEPHONE +SPDXID: SPDXRef-File-...locale-en-GB.iso885915-LC-TELEPHONE-dea6d787fac48ab2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-GB.utf8-LC-IDENTIFICATION-71ff28e2019ebd95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-HK.utf8-LC-IDENTIFICATION-f73007afa8b1dad8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE@euro/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-IE-euro-LC-IDENTIFICATION-f3dd3b1a0199ddf6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-IE.utf8-LC-IDENTIFICATION-4fa5f0b1794cac2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-NZ.utf8-LC-IDENTIFICATION-c625bebaf2ae40c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-PH.utf8-LC-IDENTIFICATION-b94a5e0748b4b440 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SC.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-SC.utf8-LC-IDENTIFICATION-67d7fd54d5d9eb01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-SG.utf8-LC-IDENTIFICATION-c3ba938185dfd0dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/locale/en_US/LC_MESSAGES/mit-krb5.mo +SPDXID: SPDXRef-File-...locale-en-US-LC-MESSAGES-mit-krb5.mo-3f4c6669e92f25c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_US.iso885915/LC_MEASUREMENT +SPDXID: SPDXRef-File-...locale-en-US.iso885915-LC-MEASUREMENT-68cdd5260ac9670f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.iso885915/LC_TELEPHONE +SPDXID: SPDXRef-File-...locale-en-US.iso885915-LC-TELEPHONE-ec8ac8e57e44d74b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-US.utf8-LC-IDENTIFICATION-7e276f8b7514d1c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-ZA.utf8-LC-IDENTIFICATION-7a5d1a8432766b6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-ZW.utf8-LC-IDENTIFICATION-3cd91ec58fe212d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/__pycache__/locale.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...locale.cpython-36.opt-1.pyc-063b2aa5c4a48b0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/locale.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...locale.cpython-36.opt-2.pyc-81e4758c05a3b208 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/logging.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...logging.cpython-36.opt-1.pyc-af76629dd006b8be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/login.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...login.cpython-36m-x86-64-linux-gnu.so-0c10436627d1f534 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/logutil.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...logutil.cpython-36.opt-1.pyc-0c6c3e0c350392c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...low-level.cpython-36.opt-1.pyc-bb147f6e9219e293 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/lowlevel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...lowlevel.cpython-36.opt-1.pyc-7f30c7fa04ce6795 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/m2cryptohttp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...m2cryptohttp.cpython-36.opt-1.pyc-f3ce615434e55ac5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/m2cryptohttp.cpython-36.pyc +SPDXID: SPDXRef-File-...m2cryptohttp.cpython-36.pyc-59178187bcde1cc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/m2cryptossl.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...m2cryptossl.cpython-36.opt-1.pyc-be40d8853534eb68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_arabic.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-arabic.cpython-36.opt-1.pyc-5002a3c1cd286e43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_arabic.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-arabic.cpython-36.opt-2.pyc-750a6ab12e0cb5b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_centeuro.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-centeuro.cpython-36.opt-1.pyc-4b8a6d9b03e147b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_centeuro.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-centeuro.cpython-36.opt-2.pyc-3de6e51c3078523e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_centeuro.cpython-36.pyc +SPDXID: SPDXRef-File-...mac-centeuro.cpython-36.pyc-1b9428575c2d6b31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_croatian.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-croatian.cpython-36.opt-1.pyc-2c889b5dd97cf65d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_croatian.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-croatian.cpython-36.opt-2.pyc-05833b838df14e2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_croatian.cpython-36.pyc +SPDXID: SPDXRef-File-...mac-croatian.cpython-36.pyc-78c0a933426ac8ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_cyrillic.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-cyrillic.cpython-36.opt-1.pyc-ce383a95b535bcdf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_cyrillic.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-cyrillic.cpython-36.opt-2.pyc-a1775f82a56d3f8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_cyrillic.cpython-36.pyc +SPDXID: SPDXRef-File-...mac-cyrillic.cpython-36.pyc-c8f10f47d71b5276 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_farsi.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-farsi.cpython-36.opt-1.pyc-dbb1a4256248240c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_farsi.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-farsi.cpython-36.opt-2.pyc-fa0dd431b9f23ca8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_greek.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-greek.cpython-36.opt-1.pyc-8dcc8df6ae1e976f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_greek.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-greek.cpython-36.opt-2.pyc-c980952cd786801a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_iceland.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-iceland.cpython-36.opt-1.pyc-1b72ff621bf51a46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_iceland.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-iceland.cpython-36.opt-2.pyc-0431f858e66bef15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_latin2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-latin2.cpython-36.opt-1.pyc-22eabdf7a83ebb75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_latin2.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-latin2.cpython-36.opt-2.pyc-ebbf2349f0059770 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_roman.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-roman.cpython-36.opt-1.pyc-b29bf8883ca79e4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_roman.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-roman.cpython-36.opt-2.pyc-a259b57dd86492be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_romanian.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-romanian.cpython-36.opt-1.pyc-30f783f08099f74e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_romanian.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-romanian.cpython-36.opt-2.pyc-435d9016982677fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_romanian.cpython-36.pyc +SPDXID: SPDXRef-File-...mac-romanian.cpython-36.pyc-d42b8803dac84412 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_turkish.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-turkish.cpython-36.opt-1.pyc-f3d39e56d326ca56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_turkish.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-turkish.cpython-36.opt-2.pyc-18f1c7d7498d3280 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/machinery.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...machinery.cpython-36.opt-1.pyc-358707bd6b5c60d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/machinery.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...machinery.cpython-36.opt-2.pyc-1e5b03f2fbbc5905 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/macpath.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...macpath.cpython-36.opt-1.pyc-388343091ed4111e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/macpath.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...macpath.cpython-36.opt-2.pyc-1bd398c9fe778328 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/macurl2path.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...macurl2path.cpython-36.opt-1.pyc-09abbf3704ba4ac3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/macurl2path.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...macurl2path.cpython-36.opt-2.pyc-b95cd2816b8a4f1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mailbox.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mailbox.cpython-36.opt-1.pyc-7d847a75020fccec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mailbox.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mailbox.cpython-36.opt-2.pyc-bfc1744b1655036f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mailcap.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mailcap.cpython-36.opt-1.pyc-1bd005cbc3999032 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mailcap.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mailcap.cpython-36.opt-2.pyc-d9942ea5af7e5b48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/makecache.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...makecache.cpython-36.opt-1.pyc-90afa71d25bbf805 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/backports/__pycache__/makefile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...makefile.cpython-36.opt-1.pyc-2be9a3acee613ee1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/man/man7/EVP_KDF_TLS1_PRF.7ssl.gz +SPDXID: SPDXRef-File-...man-man7-EVP-KDF-TLS1-PRF.7ssl.gz-1dab765d034c273e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/passphrase-encoding.7ssl.gz +SPDXID: SPDXRef-File-...man-man7-passphrase-encoding.7ssl.gz-c2410cf80a9010e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/proxy-certificates.7ssl.gz +SPDXID: SPDXRef-File-...man-man7-proxy-certificates.7ssl.gz-8333505228626385 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/ip6tables-translate.8.gz +SPDXID: SPDXRef-File-...man-man8-ip6tables-translate.8.gz-08362a4905205a33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/iptables-extensions.8.gz +SPDXID: SPDXRef-File-...man-man8-iptables-extensions.8.gz-7391d90529e349d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/ip6tables-restore-translate.8.gz +SPDXID: SPDXRef-File-...man8-ip6tables-restore-translate.8.gz-2501faa41adff774 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/iptables-restore-translate.8.gz +SPDXID: SPDXRef-File-...man8-iptables-restore-translate.8.gz-da6ca0ce93942d3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/managercli.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...managercli.cpython-36.opt-1.pyc-30372b844810701b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/managerlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...managerlib.cpython-36.opt-1.pyc-1fe09eff23045593 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/managers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...managers.cpython-36.opt-1.pyc-af7d9931da633725 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/managers.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...managers.cpython-36.opt-2.pyc-b0ed08e102b929b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/manifest_commands.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...manifest-commands.cpython-36.opt-1.pyc-a9adfbd42fdae29e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/manifest_commands.cpython-36.pyc +SPDXID: SPDXRef-File-...manifest-commands.cpython-36.pyc-3bbcbc87c82378b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...markers.cpython-36.opt-1.pyc-a7551b5bb3538926 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...markers.cpython-36.opt-1.pyc-e03e70277105ce47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/match_counter.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...match-counter.cpython-36.opt-1.pyc-128d62c776a9fa24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/match_counter.cpython-36.pyc +SPDXID: SPDXRef-File-...match-counter.cpython-36.pyc-9f3d662b652f2cbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/math.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...math.cpython-36m-x86-64-linux-gnu.so-4acd9d5ae5df23fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/mbcharsetprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mbcharsetprober.cpython-36.opt-1.pyc-b8a38f7167e22e44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/mbcharsetprober.cpython-36.pyc +SPDXID: SPDXRef-File-...mbcharsetprober.cpython-36.pyc-caf247091c838d96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/mbcsgroupprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mbcsgroupprober.cpython-36.opt-1.pyc-17d702cacac850c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/mbcsgroupprober.cpython-36.pyc +SPDXID: SPDXRef-File-...mbcsgroupprober.cpython-36.pyc-3395ba24a146b8d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/mbcssm.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mbcssm.cpython-36.opt-1.pyc-cca7615f470c9c4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/message.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...message.cpython-36.opt-1.pyc-028f53dd48d11158 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/message.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...message.cpython-36.opt-1.pyc-1062391a578b2506 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/message.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...message.cpython-36.opt-2.pyc-504ab0e0e9d4a057 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/message.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...message.cpython-36.opt-2.pyc-eb18c3e162dd1759 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/metadata.json +SPDXID: SPDXRef-File-...metadata.json-7610bf23d0a1df03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/audio.cpython-36.pyc +SPDXID: SPDXRef-File-...mime---pycache---audio.cpython-36.pyc-30d8020328bdb007 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/base.cpython-36.pyc +SPDXID: SPDXRef-File-...mime---pycache---base.cpython-36.pyc-28502f4cfef0f9a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/image.cpython-36.pyc +SPDXID: SPDXRef-File-...mime---pycache---image.cpython-36.pyc-7dbbd4193d852485 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/text.cpython-36.pyc +SPDXID: SPDXRef-File-...mime---pycache---text.cpython-36.pyc-6c93413ee4191c62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mimetypes.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mimetypes.cpython-36.opt-1.pyc-da845b42cc8e05b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mimetypes.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mimetypes.cpython-36.opt-2.pyc-5b8a32d9d1523b38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/minicompat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...minicompat.cpython-36.opt-1.pyc-04ce6bf9c81edba2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/minicompat.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...minicompat.cpython-36.opt-2.pyc-f6482f964e6027ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/minidom.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...minidom.cpython-36.opt-1.pyc-cb272d9ae023048b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/minidom.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...minidom.cpython-36.opt-2.pyc-fba05059b58e40c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/miscutils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...miscutils.cpython-36.opt-1.pyc-bb1aa45888575450 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...mmap.cpython-36m-x86-64-linux-gnu.so-573fb38a259e20c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/models.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...models.cpython-36.opt-1.pyc-f0663522e62f8e15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/__pycache__/module_base.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...module-base.cpython-36.opt-1.pyc-facd32c2414f35fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/module.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...module.cpython-36.opt-1.pyc-30252ce4bf0dbd4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/module.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...module.cpython-36.opt-1.pyc-b0b4eb46a22cd4f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/module.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...module.cpython-36.opt-1.pyc-b7af0d9d338128d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/modulefinder.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...modulefinder.cpython-36.opt-1.pyc-d8bf7fb7b1bd2a84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/modulefinder.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...modulefinder.cpython-36.opt-2.pyc-5f84051e792b1d63 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/modulefinder.cpython-36.pyc +SPDXID: SPDXRef-File-...modulefinder.cpython-36.pyc-1555e3e6610c0bd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/monkey.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...monkey.cpython-36.opt-1.pyc-1856a3f1eb2eb866 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/msvc9compiler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...msvc9compiler.cpython-36.opt-1.pyc-94f97e3f915582c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/msvc9compiler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...msvc9compiler.cpython-36.opt-2.pyc-16eaf5e40861e096 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/msvc9compiler.cpython-36.pyc +SPDXID: SPDXRef-File-...msvc9compiler.cpython-36.pyc-3cfa919278611167 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/msvccompiler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...msvccompiler.cpython-36.opt-1.pyc-dc47b488a1183fdd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/msvccompiler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...msvccompiler.cpython-36.opt-2.pyc-312b0c62d957d776 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/msvccompiler.cpython-36.pyc +SPDXID: SPDXRef-File-...msvccompiler.cpython-36.pyc-6ef68aeb6d3d1556 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/multipart.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...multipart.cpython-36.opt-1.pyc-12344b6af28c5768 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/multipart.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...multipart.cpython-36.opt-2.pyc-5e5f60f7a77302ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/connection.py +SPDXID: SPDXRef-File-...multiprocessing-connection.py-338c4c5b106545ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/__init__.py +SPDXID: SPDXRef-File-...multiprocessing-dummy---init--.py-43c8173616038998 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/connection.py +SPDXID: SPDXRef-File-...multiprocessing-dummy-connection.py-933c6c84efb59409 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/forkserver.py +SPDXID: SPDXRef-File-...multiprocessing-forkserver.py-eae6cf988f874064 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/popen_fork.py +SPDXID: SPDXRef-File-...multiprocessing-popen-fork.py-4f972ec61d81033c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/popen_forkserver.py +SPDXID: SPDXRef-File-...multiprocessing-popen-forkserver.py-098226301531417f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/popen_spawn_posix.py +SPDXID: SPDXRef-File-...multiprocessing-popen-spawn-posix.py-eef0b57ee7ebb5ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/popen_spawn_win32.py +SPDXID: SPDXRef-File-...multiprocessing-popen-spawn-win32.py-b2e4b05969461b6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/resource_sharer.py +SPDXID: SPDXRef-File-...multiprocessing-resource-sharer.py-d1811b0cd2355651 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/semaphore_tracker.py +SPDXID: SPDXRef-File-...multiprocessing-semaphore-tracker.py-55d103c53491d584 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/sharedctypes.py +SPDXID: SPDXRef-File-...multiprocessing-sharedctypes.py-56990a2578be8b91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/synchronize.py +SPDXID: SPDXRef-File-...multiprocessing-synchronize.py-8b26e9120ca0fdb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/namespaces.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...namespaces.cpython-36.opt-1.pyc-6a63f687534f8d31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/needs_restarting.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...needs-restarting.cpython-36.opt-1.pyc-662c9929ad56c525 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/needs_restarting.cpython-36.pyc +SPDXID: SPDXRef-File-...needs-restarting.cpython-36.pyc-374d0b7aa5503484 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/doc/nftables/examples/load_balancing.nft +SPDXID: SPDXRef-File-...nftables-examples-load-balancing.nft-11b08391036faa3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/nftables/examples/sets_and_maps.nft +SPDXID: SPDXRef-File-...nftables-examples-sets-and-maps.nft-94b3afcc42cbd91d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/lib-dynload/nis.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...nis.cpython-36m-x86-64-linux-gnu.so-ee542b2b1ae1abc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/nntplib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...nntplib.cpython-36.opt-1.pyc-4ad0c72539e966b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/nntplib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...nntplib.cpython-36.opt-2.pyc-42ad008df44b1cfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/nonmultipart.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...nonmultipart.cpython-36.opt-1.pyc-00dd930f20ed5df0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/nonmultipart.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...nonmultipart.cpython-36.opt-2.pyc-9e07d2eb280978fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/nonmultipart.cpython-36.pyc +SPDXID: SPDXRef-File-...nonmultipart.cpython-36.pyc-26f4c0e160b437c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/not-zip-safe +SPDXID: SPDXRef-File-...not-zip-safe-070b608c5c268c50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/not-zip-safe +SPDXID: SPDXRef-File-...not-zip-safe-555c50a9a914ca66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/__pycache__/notation.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...notation.cpython-36.opt-1.pyc-db0c429f4bc96837 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/ntlmpool.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ntlmpool.cpython-36.opt-1.pyc-313bba81af9088fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ntpath.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ntpath.cpython-36.opt-1.pyc-432e61149674328e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ntpath.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ntpath.cpython-36.opt-2.pyc-09627abaf5855362 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/nturl2path.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...nturl2path.cpython-36.opt-1.pyc-cb7ea1ba5ee9ecc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/nturl2path.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...nturl2path.cpython-36.opt-2.pyc-3a453eb5e33a67b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/numbers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...numbers.cpython-36.opt-1.pyc-f5b6ea6c3f96d2b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/numbers.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...numbers.cpython-36.opt-2.pyc-97b0817f42521ed7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/bin/tools/ws-auditreader.jar +SPDXID: SPDXRef-File-...ol-wlp-bin-tools-ws-auditreader.jar-dac94bd442e85e0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/bin/tools/ws-featureUtility.jar +SPDXID: SPDXRef-File-...ol-wlp-bin-tools-ws-featureUtility.jar-92a26802a6d3517b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/bin/tools/ws-featurelist.jar +SPDXID: SPDXRef-File-...ol-wlp-bin-tools-ws-featurelist.jar-4c721027cdcb4451 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/bin/tools/ws-productutil.jar +SPDXID: SPDXRef-File-...ol-wlp-bin-tools-ws-productutil.jar-ed699c86ff9a98ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/bin/tools/ws-securityutil.jar +SPDXID: SPDXRef-File-...ol-wlp-bin-tools-ws-securityutil.jar-d47265613f76c274 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.json4j_1.0.81.jar +SPDXID: SPDXRef-File-...ol-wlp-lib-com.ibm.json4j-1.0.81.jar-9d86d72954b6bd05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.anno_1.1.81.jar +SPDXID: SPDXRef-File-...ol-wlp-lib-com.ibm.ws.anno-1.1.81.jar-0955563bba5dace9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.event_1.0.81.jar +SPDXID: SPDXRef-File-...ol-wlp-lib-com.ibm.ws.event-1.0.81.jar-1667fd4b324baaa0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.jmx_1.0.81.jar +SPDXID: SPDXRef-File-...ol-wlp-lib-com.ibm.ws.jmx-1.0.81.jar-067e93124bf92e0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.jndi_1.0.81.jar +SPDXID: SPDXRef-File-...ol-wlp-lib-com.ibm.ws.jndi-1.0.81.jar-390f3f72accbfbb3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.ssl_1.5.81.jar +SPDXID: SPDXRef-File-...ol-wlp-lib-com.ibm.ws.ssl-1.5.81.jar-597666d860d03a81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.timer_1.0.81.jar +SPDXID: SPDXRef-File-...ol-wlp-lib-com.ibm.ws.timer-1.0.81.jar-6c0fba7301d80ca9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /usr/lib64/python3.6/__pycache__/opcode.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...opcode.cpython-36.opt-1.pyc-7934171ab66dfe1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/opcode.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...opcode.cpython-36.opt-2.pyc-a305f0317b214977 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/openssh.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...openssh.cpython-36.opt-1.pyc-b2de5591b9dcc64c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/openssl.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...openssl.cpython-36.opt-1.pyc-c59ec02ce9b08a3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/operator.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...operator.cpython-36.opt-1.pyc-3ef3ffdbe1891469 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/operator.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...operator.cpython-36.opt-2.pyc-bcb3fc3ea1255fe7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/option_parser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...option-parser.cpython-36.opt-1.pyc-322c9ca2c77c4ae4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/option_parser.cpython-36.pyc +SPDXID: SPDXRef-File-...option-parser.cpython-36.pyc-3d40e26891565636 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/optparse.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...optparse.cpython-36.opt-1.pyc-ead76a791cd35bc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/optparse.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...optparse.cpython-36.opt-2.pyc-9636df361df87719 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/metainfo/org.fedoraproject.LangPack-en.metainfo.xml +SPDXID: SPDXRef-File-...org.fedoraproject.LangPack-en.metainfo.xml-bf9a80417c82a0ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.d/org.freedesktop.hostname1.conf +SPDXID: SPDXRef-File-...org.freedesktop.hostname1.conf-6f13f0c0913fd58d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/org.freedesktop.hostname1.policy +SPDXID: SPDXRef-File-...org.freedesktop.hostname1.policy-18972c9da55b6ace +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/org.freedesktop.hostname1.service +SPDXID: SPDXRef-File-...org.freedesktop.hostname1.service-f21d3483a068a1e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/org.freedesktop.locale1.service +SPDXID: SPDXRef-File-...org.freedesktop.locale1.service-d8d2ae8c3e23ee97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/org.freedesktop.login1.service +SPDXID: SPDXRef-File-...org.freedesktop.login1.service-bbc32b35800a4d14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.d/org.freedesktop.portable1.conf +SPDXID: SPDXRef-File-...org.freedesktop.portable1.conf-5b0c0c1569d165a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/org.freedesktop.portable1.policy +SPDXID: SPDXRef-File-...org.freedesktop.portable1.policy-5ee143c0081ca3b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/org.freedesktop.portable1.service +SPDXID: SPDXRef-File-...org.freedesktop.portable1.service-2941264291f6d9d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/org.freedesktop.resolve1.policy +SPDXID: SPDXRef-File-...org.freedesktop.resolve1.policy-ebc714ea1d4353d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/org.freedesktop.resolve1.service +SPDXID: SPDXRef-File-...org.freedesktop.resolve1.service-2539154e0047b90a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/org.freedesktop.systemd1.policy +SPDXID: SPDXRef-File-...org.freedesktop.systemd1.policy-88b4154b912d2af1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/org.freedesktop.systemd1.service +SPDXID: SPDXRef-File-...org.freedesktop.systemd1.service-37c2b9f96351a64c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.d/org.freedesktop.timedate1.conf +SPDXID: SPDXRef-File-...org.freedesktop.timedate1.conf-c1ea4c3636b6cd23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/org.freedesktop.timedate1.policy +SPDXID: SPDXRef-File-...org.freedesktop.timedate1.policy-cd42d58d51c3dd8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/org.freedesktop.timedate1.service +SPDXID: SPDXRef-File-...org.freedesktop.timedate1.service-c830a14a90b26e6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/ossaudiodev.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...ossaudiodev.cpython-36m-x86-64-linux-gnu.so-6207e66c7857be8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/ourjson.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ourjson.cpython-36.opt-1.pyc-832d0162dc2d027f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/output.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...output.cpython-36.opt-1.pyc-77b609e075b04b47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/overrides.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...overrides.cpython-36.opt-1.pyc-fad383de793af3fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/p11-kit/modules/p11-kit-trust.module +SPDXID: SPDXRef-File-...p11-kit-modules-p11-kit-trust.module-be11d4f39c846246 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/package_index.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...package-index.cpython-36.opt-1.pyc-78726b82d803c42f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/package_index.cpython-36.pyc +SPDXID: SPDXRef-File-...package-index.cpython-36.pyc-3e7699d6145e2ffb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/package_profile_upload.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...package-profile-upload.cpython-36.opt-1.pyc-52bd7711d00ee52a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/package_profile_upload.cpython-36.pyc +SPDXID: SPDXRef-File-...package-profile-upload.cpython-36.pyc-9f81a097f045b35f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/package.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...package.cpython-36.opt-1.pyc-32d28ea693bf5c79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/packageprofilelib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...packageprofilelib.cpython-36.opt-1.pyc-a0034c5dc2a8d1af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/packageprofilelib.cpython-36.pyc +SPDXID: SPDXRef-File-...packageprofilelib.cpython-36.pyc-03ebc9391e5338ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/packageprofilelib.py +SPDXID: SPDXRef-File-...packageprofilelib.py-4a0430d918037391 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/packages.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...packages.cpython-36.opt-1.pyc-f37406686bedda01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/palmos.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...palmos.cpython-36.opt-1.pyc-528ca901d0ad583e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/palmos.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...palmos.cpython-36.opt-2.pyc-07f0e21b86c2cf33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/parser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...parser.cpython-36.opt-1.pyc-05eda4ade2646a0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/parser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...parser.cpython-36.opt-1.pyc-0ce396519213b5a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/parser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...parser.cpython-36.opt-1.pyc-6b428cc38961ddcd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/parser.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...parser.cpython-36.opt-2.pyc-9131c2a7ea24c075 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/parser.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...parser.cpython-36.opt-2.pyc-f268ed1e9d6c5f60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/parser.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...parser.cpython-36m-x86-64-linux-gnu.so-3ea85947ec598bc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/patcomp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...patcomp.cpython-36.opt-1.pyc-db7553a9287560b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/patcomp.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...patcomp.cpython-36.opt-2.pyc-f64a5fca6cc54b53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pathlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pathlib.cpython-36.opt-1.pyc-e864b63dde8ba5b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pathlib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pathlib.cpython-36.opt-2.pyc-5371677bdbabdae7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/pathtree.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pathtree.cpython-36.opt-1.pyc-ef73d7ae28d3ba69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/pbr.json +SPDXID: SPDXRef-File-...pbr.json-a7a5d5a958e59d31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/pep425tags.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pep425tags.cpython-36.opt-1.pyc-f6f955bd182e4af8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/persistor.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...persistor.cpython-36.opt-1.pyc-31166b4a8bcac161 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/conv.cpython-36.pyc +SPDXID: SPDXRef-File-...pgen2---pycache---conv.cpython-36.pyc-a7d5a33f7bd999ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/parse.cpython-36.pyc +SPDXID: SPDXRef-File-...pgen2---pycache---parse.cpython-36.pyc-0ec908c642253866 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/pgen.cpython-36.pyc +SPDXID: SPDXRef-File-...pgen2---pycache---pgen.cpython-36.pyc-7357b6ce0fa4fac6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/token.cpython-36.pyc +SPDXID: SPDXRef-File-...pgen2---pycache---token.cpython-36.pyc-a2bf4df52bed1303 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pickle.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pickle.cpython-36.opt-1.pyc-0fc180b425422e4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pickle.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pickle.cpython-36.opt-2.pyc-92f096ae58a40215 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pickletools.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pickletools.cpython-36.opt-1.pyc-864cb568eb390105 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pickletools.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pickletools.cpython-36.opt-2.pyc-e7debf12d68061ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/python3-wheels/pip-9.0.3-py2.py3-none-any.whl +SPDXID: SPDXRef-File-...pip-9.0.3-py2.py3-none-any.whl-59ea201cb5923978 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/__init__.py +SPDXID: SPDXRef-File-...pkg-resources---init--.py-5b3d2cb76ee0e91e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__init__.py +SPDXID: SPDXRef-File-...pkg-resources--vendor---init--.py-7c8d8fc19abfa393 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/appdirs.py +SPDXID: SPDXRef-File-...pkg-resources--vendor-appdirs.py-cf1746f589bdffc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/pyparsing.py +SPDXID: SPDXRef-File-...pkg-resources--vendor-pyparsing.py-1ed0c1347dcba0ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/six.py +SPDXID: SPDXRef-File-...pkg-resources--vendor-six.py-d6dc6b9217bfba35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/extern/__init__.py +SPDXID: SPDXRef-File-...pkg-resources-extern---init--.py-c2f0b9ff97cdbaed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/py31compat.py +SPDXID: SPDXRef-File-...pkg-resources-py31compat.py-41393cfb9d5e5d9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pkgutil.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pkgutil.cpython-36.opt-1.pyc-eeae2cb31f08cc7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pkgutil.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pkgutil.cpython-36.opt-2.pyc-6e0a909683a88bae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/java/cacerts +SPDXID: SPDXRef-File-...pki-ca-trust-extracted-java-cacerts-086386e3e9bb80b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/openssl/README +SPDXID: SPDXRef-File-...pki-ca-trust-extracted-openssl-README-f9bf72482ca4bf28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/rpm-gpg/ISV-Container-signing-key +SPDXID: SPDXRef-File-...pki-rpm-gpg-ISV-Container-signing-key-3fadd4a1ca57118c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-beta +SPDXID: SPDXRef-File-...pki-rpm-gpg-RPM-GPG-KEY-redhat-beta-e22d24acdc4e9a0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release +SPDXID: SPDXRef-File-...pki-rpm-gpg-RPM-GPG-KEY-redhat-release-aa1b380587abd12a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/platform-python-setuptools/LICENSE +SPDXID: SPDXRef-File-...platform-python-setuptools-LICENSE-c93c535151e969e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/platform.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...platform.cpython-36.opt-1.pyc-eafda0172d30d173 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/platform.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...platform.cpython-36.opt-2.pyc-2b2cd28111ae0c34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/plistlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...plistlib.cpython-36.opt-1.pyc-dd7093cb4dade069 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/plistlib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...plistlib.cpython-36.opt-2.pyc-6380f0bd1961f063 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/plugin/__init__.py +SPDXID: SPDXRef-File-...plugin---init--.py-ff981de0798146fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/plugin.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...plugin.cpython-36.opt-1.pyc-2fa70ebc5ce6d099 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/plugins.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...plugins.cpython-36.opt-1.pyc-ff2e26cc368719f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/modules/AD-SUPPORT.pmod +SPDXID: SPDXRef-File-...policies-modules-AD-SUPPORT.pmod-4126a538a2e68d05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/modules/ECDHE-ONLY.pmod +SPDXID: SPDXRef-File-...policies-modules-ECDHE-ONLY.pmod-2a004eb9054a1d6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/modules/NO-CAMELLIA.pmod +SPDXID: SPDXRef-File-...policies-modules-NO-CAMELLIA.pmod-05cb030413e7d0e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/modules/NO-SHA1.pmod +SPDXID: SPDXRef-File-...policies-modules-NO-SHA1.pmod-ccc101911cc2e3f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/modules/OSPP.pmod +SPDXID: SPDXRef-File-...policies-modules-OSPP.pmod-3a2b32a189ee6706 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/policy.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...policy.cpython-36.opt-1.pyc-8b0dd6a49454e2f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/tofu/__pycache__/policy.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...policy.cpython-36.opt-1.pyc-a873b1f413ba6502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/policy.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...policy.cpython-36.opt-2.pyc-cc0f8feb18baa3bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/configgenerator.py +SPDXID: SPDXRef-File-...policygenerators-configgenerator.py-83ead8e5282678bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/poolmanager.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...poolmanager.cpython-36.opt-1.pyc-f83d6f2660215dbb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_fork.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...popen-fork.cpython-36.opt-1.pyc-aff4baab7680e1ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_fork.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...popen-fork.cpython-36.opt-2.pyc-48686a648eeb5493 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_forkserver.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...popen-forkserver.cpython-36.opt-1.pyc-704a9afc35b4c19a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_forkserver.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...popen-forkserver.cpython-36.opt-2.pyc-e2bf634b3027b3b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_forkserver.cpython-36.pyc +SPDXID: SPDXRef-File-...popen-forkserver.cpython-36.pyc-effb314ef1c79097 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_spawn_posix.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...popen-spawn-posix.cpython-36.opt-1.pyc-62c07aadffdf1e83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_spawn_posix.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...popen-spawn-posix.cpython-36.opt-2.pyc-d50c849bb9512327 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_spawn_posix.cpython-36.pyc +SPDXID: SPDXRef-File-...popen-spawn-posix.cpython-36.pyc-d8a38d26f6c8ec23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_spawn_win32.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...popen-spawn-win32.cpython-36.opt-1.pyc-c8e13a78b5a06ed2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_spawn_win32.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...popen-spawn-win32.cpython-36.opt-2.pyc-8b73fda6f9adc520 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_spawn_win32.cpython-36.pyc +SPDXID: SPDXRef-File-...popen-spawn-win32.cpython-36.pyc-2f43f95aa6088671 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/poplib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...poplib.cpython-36.opt-1.pyc-3fbae515cfc48a2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/poplib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...poplib.cpython-36.opt-2.pyc-288bf837caf03c15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/portable/profile/default/service.conf +SPDXID: SPDXRef-File-...portable-profile-default-service.conf-6630e6ce6d02b6a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/portable/profile/strict/service.conf +SPDXID: SPDXRef-File-...portable-profile-strict-service.conf-c5dfc7118f750df7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/portable/profile/trusted/service.conf +SPDXID: SPDXRef-File-...portable-profile-trusted-service.conf-3b0ea2e50a1ca85d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Buenos_Aires +SPDXID: SPDXRef-File-...posix-America-Argentina-Buenos-Aires-eaf9ebe0294e5a68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Catamarca +SPDXID: SPDXRef-File-...posix-America-Argentina-Catamarca-bc2fde7e466916de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/ComodRivadavia +SPDXID: SPDXRef-File-...posix-America-Argentina-ComodRivadavia-f65780a75c58f840 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Cordoba +SPDXID: SPDXRef-File-...posix-America-Argentina-Cordoba-816a00b60479885b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/La_Rioja +SPDXID: SPDXRef-File-...posix-America-Argentina-La-Rioja-0ac3a1161de06d79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Mendoza +SPDXID: SPDXRef-File-...posix-America-Argentina-Mendoza-be561c81cd000e34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Rio_Gallegos +SPDXID: SPDXRef-File-...posix-America-Argentina-Rio-Gallegos-568e5baeda02402f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/San_Juan +SPDXID: SPDXRef-File-...posix-America-Argentina-San-Juan-2b4c99ed3cd79f5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/San_Luis +SPDXID: SPDXRef-File-...posix-America-Argentina-San-Luis-8e116060197b9e5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Tucuman +SPDXID: SPDXRef-File-...posix-America-Argentina-Tucuman-0385ba7706c3c10c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Ushuaia +SPDXID: SPDXRef-File-...posix-America-Argentina-Ushuaia-8426a38cc390b6d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Indianapolis +SPDXID: SPDXRef-File-...posix-America-Indiana-Indianapolis-e39fd5fb01fba60d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Petersburg +SPDXID: SPDXRef-File-...posix-America-Indiana-Petersburg-f96ef00e52fa5d80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Tell_City +SPDXID: SPDXRef-File-...posix-America-Indiana-Tell-City-ea92544cadea52e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Vincennes +SPDXID: SPDXRef-File-...posix-America-Indiana-Vincennes-7c0d719153de5bdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Kentucky/Louisville +SPDXID: SPDXRef-File-...posix-America-Kentucky-Louisville-16d998cf456e7504 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Kentucky/Monticello +SPDXID: SPDXRef-File-...posix-America-Kentucky-Monticello-39e8f2c71a7956ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/North_Dakota/Beulah +SPDXID: SPDXRef-File-...posix-America-North-Dakota-Beulah-8274a18e97089120 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/North_Dakota/Center +SPDXID: SPDXRef-File-...posix-America-North-Dakota-Center-e5d5244845ccd7d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/North_Dakota/New_Salem +SPDXID: SPDXRef-File-...posix-America-North-Dakota-New-Salem-c6d2e6e21b0dc678 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/DumontDUrville +SPDXID: SPDXRef-File-...posix-Antarctica-DumontDUrville-ce692e890036e731 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/posixpath.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...posixpath.cpython-36.opt-1.pyc-b45c623a865dc2b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/posixpath.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...posixpath.cpython-36.opt-2.pyc-2dfe7ffbdfc19c72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pprint.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pprint.cpython-36.opt-1.pyc-77e2912b2b289d32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pprint.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pprint.cpython-36.opt-2.pyc-13415533391bd39a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/__pycache__/printers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...printers.cpython-36.opt-1.pyc-71a0bdeb5372bee2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/printing_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...printing-utils.cpython-36.opt-1.pyc-6de29c7e27124337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/printing_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...printing-utils.cpython-36.pyc-e00e12c1b9111e8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/printing.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...printing.cpython-36.opt-1.pyc-6539e8abb7aee4a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/proactor_events.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...proactor-events.cpython-36.opt-1.pyc-3eac7060e6de952a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/proactor_events.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...proactor-events.cpython-36.opt-2.pyc-abf14f55dbcd6b24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/proactor_events.cpython-36.pyc +SPDXID: SPDXRef-File-...proactor-events.cpython-36.pyc-bc622bc35316a39a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/proc-sys-fs-binfmt_misc.automount +SPDXID: SPDXRef-File-...proc-sys-fs-binfmt-misc.automount-484478b9866be9b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/process.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...process.cpython-36.opt-1.pyc-8c20f1d046977771 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/process.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...process.cpython-36.opt-1.pyc-a881056bba8576fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/process.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...process.cpython-36.opt-2.pyc-8c3b775f0625f65e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/process.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...process.cpython-36.opt-2.pyc-f7dc1f24e0fc53ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/product-id.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...product-id.cpython-36.opt-1.pyc-05dd831de5858d89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/productid.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...productid.cpython-36.opt-1.pyc-71b8b71193b30c06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/products.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...products.cpython-36.opt-1.pyc-7047e830799188a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/products.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...products.cpython-36.opt-1.pyc-c94607c60b71e58b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/portable/profile/nonetwork/service.conf +SPDXID: SPDXRef-File-...profile-nonetwork-service.conf-d95f5ed0f4e6e091 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/profile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...profile.cpython-36.opt-1.pyc-b383c310acc414ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/profile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...profile.cpython-36.opt-1.pyc-ecf011d2fdd6a7e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/profile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...profile.cpython-36.opt-2.pyc-3888c4a5e88a4f78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/progress.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...progress.cpython-36.opt-1.pyc-5bc95e7947421f24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/protocol.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...protocol.cpython-36.opt-1.pyc-529e1c2ed8f954d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/protocols.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...protocols.cpython-36.opt-1.pyc-6db7ca22d8dfa377 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/protocols.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...protocols.cpython-36.opt-2.pyc-d268eacc6db24cac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/provider.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...provider.cpython-36.opt-1.pyc-db1e5098450b6a49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/proxies.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...proxies.cpython-36.opt-1.pyc-a00dae9dafe26e9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pstats.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pstats.cpython-36.opt-1.pyc-783a2ba413dcfa82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pstats.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pstats.cpython-36.opt-2.pyc-9ce4aa85e981d878 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/ptcp154.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ptcp154.cpython-36.opt-1.pyc-c0f93e31b5d2bf7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/ptcp154.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ptcp154.cpython-36.opt-2.pyc-17305d81cd1018d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/publicsuffix-list-dafsa/COPYING +SPDXID: SPDXRef-File-...publicsuffix-list-dafsa-COPYING-bc2c8696daaa6275 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/publicsuffix/public_suffix_list.dafsa +SPDXID: SPDXRef-File-...publicsuffix-public-suffix-list.dafsa-057a683215eedd04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/pulldom.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pulldom.cpython-36.opt-1.pyc-06916a116103b2ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/pulldom.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pulldom.cpython-36.opt-2.pyc-ae13d6ef60d51cd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/punycode.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...punycode.cpython-36.opt-1.pyc-e09f807fbb164866 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/punycode.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...punycode.cpython-36.opt-2.pyc-18079e9467afe7cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/py_compile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...py-compile.cpython-36.opt-1.pyc-7d80c697e646a9bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/py_compile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...py-compile.cpython-36.opt-2.pyc-be331f23dba635bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py27compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...py27compat.cpython-36.opt-1.pyc-2f756eb99a21ed03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/__pycache__/py31compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...py31compat.cpython-36.opt-1.pyc-406dfe0e644c75c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py31compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...py31compat.cpython-36.opt-1.pyc-65070c5d3f50db99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py33compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...py33compat.cpython-36.opt-1.pyc-db55caa0581ac55a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/py36compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...py36compat.cpython-36.opt-1.pyc-97cdb22e5cbee9e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py36compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...py36compat.cpython-36.opt-1.pyc-dead9ac7585fe549 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pyclbr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pyclbr.cpython-36.opt-1.pyc-92a62cd1116d1d0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pyclbr.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pyclbr.cpython-36.opt-2.pyc-2a66c09d6c790f06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/pycomp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pycomp.cpython-36.opt-1.pyc-dbb8aceba1d600ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/pyexpat.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...pyexpat.cpython-36m-x86-64-linux-gnu.so-40c4942813e709fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygobject-3.28.3-py3.6.egg-info +SPDXID: SPDXRef-File-...pygobject-3.28.3-py3.6.egg-info-1d5f71a5d0b43e6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/pygram.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pygram.cpython-36.opt-1.pyc-7eec1d509b001724 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/pygram.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pygram.cpython-36.opt-2.pyc-7bf8a9426f81c8fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/generictreemodel.py +SPDXID: SPDXRef-File-...pygtkcompat-generictreemodel.py-eb709269a8cf9cbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/pygtkcompat.py +SPDXID: SPDXRef-File-...pygtkcompat-pygtkcompat.py-f6e50818fe4e2437 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/__pycache__/pygtkcompat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pygtkcompat.cpython-36.opt-1.pyc-392f8a72f8d62552 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/pygtkcompat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pygtkcompat.cpython-36.opt-1.pyc-701e4522cc14990c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/pyinotify.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pyinotify.cpython-36.opt-1.pyc-1c630e002b98378b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pyopenssl.cpython-36.opt-1.pyc-57129258403fbc14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pyparsing.cpython-36.opt-1.pyc-760816225615e007 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pyparsing.cpython-36.opt-1.pyc-9ffc34e224f9cc2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/build-crypto-policies.py +SPDXID: SPDXRef-File-...python-build-crypto-policies.py-9d37b396750383e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/__init__.py +SPDXID: SPDXRef-File-...python-cryptopolicies---init--.py-7b737d3badecd828 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/alg_lists.py +SPDXID: SPDXRef-File-...python-cryptopolicies-alg-lists.py-31848d1869680cb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/python_dmidecode-3.12.2-py3.6.egg-info +SPDXID: SPDXRef-File-...python-dmidecode-3.12.2-py3.6.egg-info-48a8a1d3752813a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__init__.py +SPDXID: SPDXRef-File-...python-policygenerators---init--.py-adbd2da8d9cc19ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/bind.py +SPDXID: SPDXRef-File-...python-policygenerators-bind.py-dadc44b4d8da59c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/gnutls.py +SPDXID: SPDXRef-File-...python-policygenerators-gnutls.py-96217e5e1e9a00cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/java.py +SPDXID: SPDXRef-File-...python-policygenerators-java.py-d4ed8e278eb0e2d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/krb5.py +SPDXID: SPDXRef-File-...python-policygenerators-krb5.py-a975ee3afb0b3d7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/libreswan.py +SPDXID: SPDXRef-File-...python-policygenerators-libreswan.py-c749c622048e5642 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/libssh.py +SPDXID: SPDXRef-File-...python-policygenerators-libssh.py-db4cb51ce64c645b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/nss.py +SPDXID: SPDXRef-File-...python-policygenerators-nss.py-de0d63a443328f52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/openssh.py +SPDXID: SPDXRef-File-...python-policygenerators-openssh.py-d9c14c8d753e22a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/openssl.py +SPDXID: SPDXRef-File-...python-policygenerators-openssl.py-3100f596ad343dad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/update-crypto-policies.py +SPDXID: SPDXRef-File-...python-update-crypto-policies.py-8dcb318ef2f3c0e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-dmidecode/AUTHORS.upstream +SPDXID: SPDXRef-File-...python3-dmidecode-AUTHORS.upstream-1b5490199a1471c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-dnf-plugins-core/COPYING +SPDXID: SPDXRef-File-...python3-dnf-plugins-core-COPYING-7ff4007a367a4aa4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-setuptools-wheel/LICENSE +SPDXID: SPDXRef-File-...python3-setuptools-wheel-LICENSE-7c82c126a1a287d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/base_futures.py +SPDXID: SPDXRef-File-...python3.6-asyncio-base-futures.py-94895ea88222da7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/base_subprocess.py +SPDXID: SPDXRef-File-...python3.6-asyncio-base-subprocess.py-91e4e763477bb557 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/proactor_events.py +SPDXID: SPDXRef-File-...python3.6-asyncio-proactor-events.py-08ab407b779b855e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/selector_events.py +SPDXID: SPDXRef-File-...python3.6-asyncio-selector-events.py-07e4f66f677ed2b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/windows_events.py +SPDXID: SPDXRef-File-...python3.6-asyncio-windows-events.py-bb56fd71715f640b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/windows_utils.py +SPDXID: SPDXRef-File-...python3.6-asyncio-windows-utils.py-4c67350300d3cb0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/__init__.py +SPDXID: SPDXRef-File-...python3.6-collections---init--.py-3553884e04560c1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/_base.py +SPDXID: SPDXRef-File-...python3.6-concurrent-futures--base.py-229a434344f31135 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/thread.py +SPDXID: SPDXRef-File-...python3.6-concurrent-futures-thread.py-e159613eceeb5db2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__init__.py +SPDXID: SPDXRef-File-...python3.6-ctypes-macholib---init--.py-e84ee162acdaf58f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/dyld.py +SPDXID: SPDXRef-File-...python3.6-ctypes-macholib-dyld.py-af9e54826b669e22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/dylib.py +SPDXID: SPDXRef-File-...python3.6-ctypes-macholib-dylib.py-4839955a1ad2688f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/framework.py +SPDXID: SPDXRef-File-...python3.6-ctypes-macholib-framework.py-82dcb34ba82e6f56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/_msvccompiler.py +SPDXID: SPDXRef-File-...python3.6-distutils--msvccompiler.py-275b22f6a0d97d6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/archive_util.py +SPDXID: SPDXRef-File-...python3.6-distutils-archive-util.py-589423a014139ed7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/bcppcompiler.py +SPDXID: SPDXRef-File-...python3.6-distutils-bcppcompiler.py-defa050ab27b82c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/bdist.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-bdist.py-31b773b8a43c6cb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/build.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-build.py-9932d0b7dec83edc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/check.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-check.py-3b2dfa69a7b0f5f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/clean.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-clean.py-bec406833ef3b30c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/config.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-config.py-1550e45b6cce467c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/install.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-install.py-ee34d993fe0b7e2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/sdist.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-sdist.py-18c9db7412e334d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/upload.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-upload.py-fb5f87c417e5f135 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/cygwinccompiler.py +SPDXID: SPDXRef-File-...python3.6-distutils-cygwinccompiler.py-46c1986be11a848c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/fancy_getopt.py +SPDXID: SPDXRef-File-...python3.6-distutils-fancy-getopt.py-0a9e8ec8dbb279a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/msvc9compiler.py +SPDXID: SPDXRef-File-...python3.6-distutils-msvc9compiler.py-0defcce09ed5af90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/msvccompiler.py +SPDXID: SPDXRef-File-...python3.6-distutils-msvccompiler.py-daa6c4d7ed27eb42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/unixccompiler.py +SPDXID: SPDXRef-File-...python3.6-distutils-unixccompiler.py-02ded7963c0d3883 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/_encoded_words.py +SPDXID: SPDXRef-File-...python3.6-email--encoded-words.py-6123441cacaa3196 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/contentmanager.py +SPDXID: SPDXRef-File-...python3.6-email-contentmanager.py-2609a43953eea9d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/headerregistry.py +SPDXID: SPDXRef-File-...python3.6-email-headerregistry.py-23bda9b4f63ea309 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/application.py +SPDXID: SPDXRef-File-...python3.6-email-mime-application.py-0e842ae6f8303f8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/multipart.py +SPDXID: SPDXRef-File-...python3.6-email-mime-multipart.py-2b3c8c50f0655fce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/nonmultipart.py +SPDXID: SPDXRef-File-...python3.6-email-mime-nonmultipart.py-10edf039724b5ab2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/base64_codec.py +SPDXID: SPDXRef-File-...python3.6-encodings-base64-codec.py-5ed776d2c404af42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/euc_jis_2004.py +SPDXID: SPDXRef-File-...python3.6-encodings-euc-jis-2004.py-a9246c60271e281c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/euc_jisx0213.py +SPDXID: SPDXRef-File-...python3.6-encodings-euc-jisx0213.py-117486bb05b63b12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso2022_jp_1.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso2022-jp-1.py-f023a8bfff31e7f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso2022_jp_2.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso2022-jp-2.py-dd249c741319f054 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso2022_jp_2004.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso2022-jp-2004.py-81483d15da581d8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso2022_jp_3.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso2022-jp-3.py-973e716720e10ec2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso2022_jp_ext.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso2022-jp-ext.py-c62a6c60a5de26fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso2022_jp.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso2022-jp.py-df5be53a93e9027b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso2022_kr.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso2022-kr.py-1de62ba92640e9cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_10.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso8859-10.py-75a9a0cfd82f13c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_11.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso8859-11.py-46c82d552ee609a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_13.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso8859-13.py-2913d1ae53cf312c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_14.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso8859-14.py-b571a8cc2c3cfcc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_15.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso8859-15.py-e920633dcf2e3d08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_16.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso8859-16.py-8925d5418e78ddb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_arabic.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-arabic.py-b76d8ae4e8cf2575 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_centeuro.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-centeuro.py-75ff6b95196b1b43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_croatian.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-croatian.py-672aae807bd212af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_cyrillic.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-cyrillic.py-f8f762bb1a1c7583 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_iceland.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-iceland.py-dbd4e3991c8f3413 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_latin2.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-latin2.py-c06ff2b06c5e048f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_romanian.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-romanian.py-759dffc3f6c05508 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_turkish.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-turkish.py-ac43304b2aeb06aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/quopri_codec.py +SPDXID: SPDXRef-File-...python3.6-encodings-quopri-codec.py-068aa26c5bedf67e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/shift_jis_2004.py +SPDXID: SPDXRef-File-...python3.6-encodings-shift-jis-2004.py-6c9134b3cc245fb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/shift_jisx0213.py +SPDXID: SPDXRef-File-...python3.6-encodings-shift-jisx0213.py-440126cdee815acf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/unicode_escape.py +SPDXID: SPDXRef-File-...python3.6-encodings-unicode-escape.py-2a1363289944580b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/zlib_codec.py +SPDXID: SPDXRef-File-...python3.6-encodings-zlib-codec.py-af4f0b773b6dfac4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/_uninstall.py +SPDXID: SPDXRef-File-...python3.6-ensurepip--uninstall.py-44438aa1a2acca35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/_bootstrap.py +SPDXID: SPDXRef-File-...python3.6-importlib--bootstrap.py-1a645b5dd5a6ff5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/PatternGrammar.txt +SPDXID: SPDXRef-File-...python3.6-lib2to3-PatternGrammar.txt-373a19bd420593ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__init__.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes---init--.py-042cba1b9f03682e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_apply.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-apply.py-b18c9a51441f8319 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_asserts.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-asserts.py-a15b717ebd282fcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_buffer.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-buffer.py-a7bca3bdf8f15643 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_dict.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-dict.py-8f25bad08294bb40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_except.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-except.py-f685a0464a31538e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_exec.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-exec.py-53a069a3613f6e1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_filter.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-filter.py-5a8e76a543f4b002 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_future.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-future.py-088e29646ab49c47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_getcwdu.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-getcwdu.py-229fe853c0f0f580 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_has_key.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-has-key.py-80e554359f50f476 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_idioms.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-idioms.py-dfa2851daa11a349 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_import.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-import.py-b74240204e725fcf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_imports.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-imports.py-91f8a9ced650787c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_input.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-input.py-3fc6cfe9437adeaf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_intern.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-intern.py-bf606240f92753be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_long.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-long.py-026560f39610ae99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_map.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-map.py-c29f0be9bd6a5c8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_ne.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-ne.py-9a0d721e49f1448b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_next.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-next.py-9256b12f1e72b0a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_nonzero.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-nonzero.py-033b63ea80d8e272 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_paren.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-paren.py-e5c3c846bebece2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_print.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-print.py-d02f1efc4a5506c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_raise.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-raise.py-86b20b05e854ea05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_reduce.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-reduce.py-b04fec266be9e4eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_reload.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-reload.py-3b3b470738240b89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_renames.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-renames.py-3c5e1d15cc0f3d76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_repr.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-repr.py-bbceae03e4b5e6fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_sys_exc.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-sys-exc.py-b7575b30f813ca36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_throw.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-throw.py-7326fffbd7d8a317 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_types.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-types.py-af209d9bdfe32545 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_unicode.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-unicode.py-00df4884f11814bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_urllib.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-urllib.py-acc8409cd96c02db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_xrange.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-xrange.py-f543372ea8df88d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_zip.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-zip.py-e781174afdf7aadc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__init__.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-pgen2---init--.py-3ae069d7d31ca215 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/driver.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-pgen2-driver.py-34c92731a7dfe1ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/grammar.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-pgen2-grammar.py-030c6606aba8b084 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/literals.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-pgen2-literals.py-93d6ddfefa81ebdd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/tokenize.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-pgen2-tokenize.py-2d64b315de60beb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__init__.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing---init--.py-b64176d04f044403 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/context.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-context.py-a5b34db9fd89ec56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/heap.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-heap.py-3afb0f6de2fb35f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/managers.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-managers.py-875cb31bbd0a06e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/pool.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-pool.py-0032433f0e5c2159 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/process.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-process.py-f0afa15f7ddb741e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/queues.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-queues.py-5a664c902551b46c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/reduction.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-reduction.py-ca83d1b2f3a74859 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/spawn.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-spawn.py-9cc202352a917c6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/util.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-util.py-41302a79b976d14a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/README.txt +SPDXID: SPDXRef-File-...python3.6-site-packages-README.txt-292d545864c05a0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/_dbus.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dbus--dbus.py-d6f5077e0458390d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/bus.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dbus-bus.py-5bde95bf22410c99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/glib.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dbus-glib.py-8136d2fcb1e41460 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/server.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dbus-server.py-9ada2482ffe7897a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/types.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dbus-types.py-bbdf441e88f4df12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/decorator.py +SPDXID: SPDXRef-File-...python3.6-site-packages-decorator.py-82b6559637b0740f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dmidecode.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dmidecode.py-758cc19dd423d505 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/base.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-base.py-f6e7d6a2e5e6cf8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/cli.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-cli-cli.py-6f498cdf056f6094 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/comps.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-comps.py-6124f2ce2e687167 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/const.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-const.py-b3ca8554ccbb7d90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/crypto.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-crypto.py-1bde3289b6ac0bc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/dnssec.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-dnssec.py-9daa809abbd884b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/drpm.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-drpm.py-5416c87398c66e95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/goal.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-goal.py-91146f909fcc21ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/history.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-history.py-5e8541bd2b4a4de8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/i18n.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-i18n.py-11042d64e1fc5daa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/lock.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-lock.py-f774af1ef07c31ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/logging.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-logging.py-f2c55526f4931326 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/package.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-package.py-8f52be1825471443 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/plugin.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-plugin.py-970d14eba055734a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/pycomp.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-pycomp.py-ce82cafd0f4ffd21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/query.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-query.py-37beffbff4a8f559 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/repo.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-repo.py-bf77464330f030a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/sack.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-sack.py-35a13e587abc55e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/subject.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-subject.py-455d7e14d5003d46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/util.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-util.py-b695c4a34784d8d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/drv_libxml2.py +SPDXID: SPDXRef-File-...python3.6-site-packages-drv-libxml2.py-3c1f22e03788606a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__init__.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gi---init--.py-da6015be81246769 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/_error.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gi--error.py-3f7bf8049452598b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/_option.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gi--option.py-9648d54b9889e245 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/importer.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gi-importer.py-aca621f2980e97cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/module.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gi-module.py-30935a7046ec1e66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/types.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gi-types.py-5fdfd2376af5d92e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/core.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gpg-core.py-d87c22c6ae6c74bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/errors.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gpg-errors.py-a399ab8b16cb5327 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/gpgme.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gpg-gpgme.py-a59309da917b1c80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/results.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gpg-results.py-142df2fa7990e6c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/util.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gpg-util.py-94daa32cccbc488a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/version.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gpg-version.py-086e09896c711c32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/codec.py +SPDXID: SPDXRef-File-...python3.6-site-packages-idna-codec.py-5956dcaa4bc05026 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/compat.py +SPDXID: SPDXRef-File-...python3.6-site-packages-idna-compat.py-47a63ff497614214 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/core.py +SPDXID: SPDXRef-File-...python3.6-site-packages-idna-core.py-7868eab39b971be4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/conf.py +SPDXID: SPDXRef-File-...python3.6-site-packages-libdnf-conf.py-d35df845d1602ea7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/repo.py +SPDXID: SPDXRef-File-...python3.6-site-packages-libdnf-repo.py-3f9594db9abf9eae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libxml2.py +SPDXID: SPDXRef-File-...python3.6-site-packages-libxml2.py-d9c50d50e7c61164 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libxml2mod.so +SPDXID: SPDXRef-File-...python3.6-site-packages-libxml2mod.so-67c8647f521d5f3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pyinotify.py +SPDXID: SPDXRef-File-...python3.6-site-packages-pyinotify.py-4d85ba64a4cf5e3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/cli.py +SPDXID: SPDXRef-File-...python3.6-site-packages-rct-cli.py-9903a351ff55f47b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/version.py +SPDXID: SPDXRef-File-...python3.6-site-packages-rct-version.py-cc2b927d445b1b7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/config.py +SPDXID: SPDXRef-File-...python3.6-site-packages-rhsm-config.py-afacaf102033d30e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/https.py +SPDXID: SPDXRef-File-...python3.6-site-packages-rhsm-https.py-b8ee76de7a811176 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/utils.py +SPDXID: SPDXRef-File-...python3.6-site-packages-rhsm-utils.py-648308bac9b094d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/_rpm.so +SPDXID: SPDXRef-File-...python3.6-site-packages-rpm--rpm.so-fb5c16a8dd3e1c0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/_rpmb.so +SPDXID: SPDXRef-File-...python3.6-site-packages-rpm--rpmb.so-03d081fa7402fb6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/_rpms.so +SPDXID: SPDXRef-File-...python3.6-site-packages-rpm--rpms.so-4bf790f8500ff406 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__init__.py +SPDXID: SPDXRef-File-...python3.6-test-support---init--.py-368fef5f6ac8bcd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/testresult.py +SPDXID: SPDXRef-File-...python3.6-test-support-testresult.py-944cb5f0133a4fbb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/scripts/common/activate +SPDXID: SPDXRef-File-...python3.6-venv-scripts-common-activate-99d8ec5e3b63c47f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/simple_server.py +SPDXID: SPDXRef-File-...python3.6-wsgiref-simple-server.py-59cc3079f3e3ae5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/expatbuilder.py +SPDXID: SPDXRef-File-...python3.6-xml-dom-expatbuilder.py-48a5da5165279bc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/ElementInclude.py +SPDXID: SPDXRef-File-...python3.6-xml-etree-ElementInclude.py-5da7692d1af59519 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/ElementPath.py +SPDXID: SPDXRef-File-...python3.6-xml-etree-ElementPath.py-403dda3323428623 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/ElementTree.py +SPDXID: SPDXRef-File-...python3.6-xml-etree-ElementTree.py-c6f8c4db4c4a3ca5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/cElementTree.py +SPDXID: SPDXRef-File-...python3.6-xml-etree-cElementTree.py-8fcc1bed246e37af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/__init__.py +SPDXID: SPDXRef-File-...python3.6-xml-parsers---init--.py-cddb82b0a8ea12ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/pytree.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pytree.cpython-36.opt-1.pyc-fcab62136f526f30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/pytree.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pytree.cpython-36.opt-2.pyc-80509a8a513885e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/queues.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...queues.cpython-36.opt-1.pyc-8de88954cecd1c20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/queues.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...queues.cpython-36.opt-1.pyc-ea0e85528d79e041 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/queues.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...queues.cpython-36.opt-2.pyc-b86886092ed04763 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/queues.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...queues.cpython-36.opt-2.pyc-c2a2867a8d5b9b1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/quopri_codec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...quopri-codec.cpython-36.opt-1.pyc-840c0cb7a279676f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/quopri_codec.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...quopri-codec.cpython-36.opt-2.pyc-f6fdafcfde99e740 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/quopri_codec.cpython-36.pyc +SPDXID: SPDXRef-File-...quopri-codec.cpython-36.pyc-2bc284fe23930016 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/quopri.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...quopri.cpython-36.opt-1.pyc-486e874e765380a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/quopri.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...quopri.cpython-36.opt-2.pyc-dcc60d3008bb3c20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/quoprimime.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...quoprimime.cpython-36.opt-1.pyc-8fb2b0ca9c987e3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/quoprimime.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...quoprimime.cpython-36.opt-2.pyc-f532c9c7d3fe5916 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/random.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...random.cpython-36.opt-1.pyc-2d7d983a91d18ab5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/random.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...random.cpython-36.opt-2.pyc-aa9d68c189fc629c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/raw_unicode_escape.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...raw-unicode-escape.cpython-36.opt-1.pyc-30613024e5c7cc71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/raw_unicode_escape.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...raw-unicode-escape.cpython-36.opt-2.pyc-099c377f78cd7888 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/raw_unicode_escape.cpython-36.pyc +SPDXID: SPDXRef-File-...raw-unicode-escape.cpython-36.pyc-b36204b6cc3be122 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/cli.cpython-36.pyc +SPDXID: SPDXRef-File-...rct---pycache---cli.cpython-36.pyc-faac9dba8ddd425b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...rct---pycache---version.cpython-36.pyc-540c552565eb007e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/readline.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...readline.cpython-36m-x86-64-linux-gnu.so-e3f8bd576a4ce957 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/reasons.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...reasons.cpython-36.opt-1.pyc-bdfbefda19d42459 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/zoneinfo/__pycache__/rebuild.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rebuild.cpython-36.opt-1.pyc-0010a8c8a75efe7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/branding/__pycache__/redhat_branding.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...redhat-branding.cpython-36.opt-1.pyc-1003f9e23de65ca7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/branding/__pycache__/redhat_branding.cpython-36.pyc +SPDXID: SPDXRef-File-...redhat-branding.cpython-36.pyc-ddf38d689b02016c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/reduction.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...reduction.cpython-36.opt-1.pyc-c15492e39fc261f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/reduction.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...reduction.cpython-36.opt-2.pyc-c699229b0a0757a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/refactor.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...refactor.cpython-36.opt-1.pyc-f70ae63920793018 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/refactor.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...refactor.cpython-36.opt-2.pyc-9df2f36f0b0339ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/refresh.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...refresh.cpython-36.opt-1.pyc-c187c7c5813d6836 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/register.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...register.cpython-36.opt-1.pyc-135deb21b541851b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/register.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...register.cpython-36.opt-1.pyc-70caa0f18234264e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/register.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...register.cpython-36.opt-1.pyc-9a069c6a427e7189 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/register.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...register.cpython-36.opt-1.pyc-a4307b15c640b3bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/register.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...register.cpython-36.opt-2.pyc-74c4a6806b5f88b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/reinstall.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...reinstall.cpython-36.opt-1.pyc-316d2ad932910939 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/relativedelta.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...relativedelta.cpython-36.opt-1.pyc-1acee4cdb05f9701 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/relativedelta.cpython-36.pyc +SPDXID: SPDXRef-File-...relativedelta.cpython-36.pyc-43f015a479dd2f24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/release.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...release.cpython-36.opt-1.pyc-72d05fdf1e08199f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/remove.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...remove.cpython-36.opt-1.pyc-f0ec1b87a2720391 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repoclosure.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repoclosure.cpython-36.opt-1.pyc-891a8434ba383360 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/repodict.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repodict.cpython-36.opt-1.pyc-40b08e4efc1f335a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repodiff.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repodiff.cpython-36.opt-1.pyc-33bf606073528454 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/repofile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repofile.cpython-36.opt-1.pyc-58ca3014af8e77ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repograph.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repograph.cpython-36.opt-1.pyc-fb7ccac3c37abd4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/repolib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repolib.cpython-36.opt-1.pyc-21b7c1aaf4d863e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/repolist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repolist.cpython-36.opt-1.pyc-0593e160660a364a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repomanage.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repomanage.cpython-36.opt-1.pyc-809824dd7d330a30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/repoquery.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repoquery.cpython-36.opt-1.pyc-57eb9537dffa5bb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/reposync.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...reposync.cpython-36.opt-1.pyc-117ff75138b4ed82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/reprlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...reprlib.cpython-36.opt-1.pyc-8277075c83e88d55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/reprlib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...reprlib.cpython-36.opt-2.pyc-0884a22cda576df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/request.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...request.cpython-36.opt-1.pyc-346aa1ac8d816d33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/request.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...request.cpython-36.opt-1.pyc-48d4569ac1ca4001 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/request.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...request.cpython-36.opt-1.pyc-c3d21daa24c951c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/request.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...request.cpython-36.opt-2.pyc-26b3d60f225b66cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/_internal_utils.py +SPDXID: SPDXRef-File-...requests--internal-utils.py-dc2259ba1e4c9127 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...requirements.cpython-36.opt-1.pyc-614e69e60e258007 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...requirements.cpython-36.opt-1.pyc-957f05abd56c590d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-36.pyc +SPDXID: SPDXRef-File-...requirements.cpython-36.pyc-21e8fa6b2562a43f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-36.pyc +SPDXID: SPDXRef-File-...requirements.cpython-36.pyc-5b5e9bcd8e87de29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/requires.txt +SPDXID: SPDXRef-File-...requires.txt-0016d62ca95073aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/requires.txt +SPDXID: SPDXRef-File-...requires.txt-6541fc354c5775c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/requires.txt +SPDXID: SPDXRef-File-...requires.txt-7ce0fd65fc3e83ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/requires.txt +SPDXID: SPDXRef-File-...requires.txt-8daaa7e7679cdbe4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/requires.txt +SPDXID: SPDXRef-File-...requires.txt-a60c35d0dda93d62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/resource_sharer.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...resource-sharer.cpython-36.opt-1.pyc-55c600c318c364fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/resource_sharer.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...resource-sharer.cpython-36.opt-2.pyc-15aacd0abe61885f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/resource_sharer.cpython-36.pyc +SPDXID: SPDXRef-File-...resource-sharer.cpython-36.pyc-f72b49462f486b0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/resource.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...resource.cpython-36m-x86-64-linux-gnu.so-76ad8d297afe2fa8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/response.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...response.cpython-36.opt-1.pyc-2eff7a310bbd21b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/response.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...response.cpython-36.opt-1.pyc-99f6f039947476f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/response.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...response.cpython-36.opt-1.pyc-bd2fae1ca6044a19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/response.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...response.cpython-36.opt-2.pyc-9e887b76f4cc0d37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/result.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...result.cpython-36.opt-1.pyc-57225a961956d5be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/result.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...result.cpython-36.opt-2.pyc-5cddc62495f27aee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/results.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...results.cpython-36.opt-1.pyc-24f5d24afb8202e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/rhelentbranding.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rhelentbranding.cpython-36.opt-1.pyc-73fa210d75f2b8dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/rhelentbranding.cpython-36.pyc +SPDXID: SPDXRef-File-...rhelentbranding.cpython-36.pyc-9623069f5ac42d11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/rhelentbranding.py +SPDXID: SPDXRef-File-...rhelentbranding.py-93f779744ed8da78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/rhelproduct.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rhelproduct.cpython-36.opt-1.pyc-f7454225aa29b2d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rhn-migrate-classic-to-rhsm +SPDXID: SPDXRef-File-...rhn-migrate-classic-to-rhsm-579b9abd50ab220c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhn_migrate_classic_to_rhsm.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rhn-migrate-classic-to-rhsm.cpython-36.opt-1.pyc-6f61be425ec76520 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhn_migrate_classic_to_rhsm.cpython-36.pyc +SPDXID: SPDXRef-File-...rhn-migrate-classic-to-rhsm.cpython-36.pyc-0787c7274859b34c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...rhsm---pycache---config.cpython-36.pyc-b5e89e39c7d75ff5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/https.cpython-36.pyc +SPDXID: SPDXRef-File-...rhsm---pycache---https.cpython-36.pyc-99886d4947b8a20f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...rhsm---pycache---utils.cpython-36.pyc-44c17ab5e35115a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/debug_commands.py +SPDXID: SPDXRef-File-...rhsm-debug-debug-commands.py-a8a3ab6a478d7eef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsm_debug.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rhsm-debug.cpython-36.opt-1.pyc-e38f31f81b6628f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsm_facts_service.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rhsm-facts-service.cpython-36.opt-1.pyc-a2b44073a80564c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsm_facts_service.cpython-36.pyc +SPDXID: SPDXRef-File-...rhsm-facts-service.cpython-36.pyc-ce32cf8be204e388 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsm_service.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rhsm-service.cpython-36.opt-1.pyc-c048e9203f30eed7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsm_service.cpython-36.pyc +SPDXID: SPDXRef-File-...rhsm-service.cpython-36.pyc-13ec0a41a00fafb3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsmcertd_worker.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rhsmcertd-worker.cpython-36.opt-1.pyc-a26c1e76d1eff394 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsmcertd_worker.cpython-36.pyc +SPDXID: SPDXRef-File-...rhsmcertd-worker.cpython-36.pyc-08ff659057f5bcd9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/candlepin/__init__.py +SPDXID: SPDXRef-File-...rhsmlib-candlepin---init--.py-5f2ffb72232b713d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/compat/__init__.py +SPDXID: SPDXRef-File-...rhsmlib-compat---init--.py-3eccd932267e9421 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/compat/subprocess_compat.py +SPDXID: SPDXRef-File-...rhsmlib-compat-subprocess-compat.py-25d33fa528bf485b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/base_object.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-base-object.py-fa1e0f10d949c898 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/constants.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-constants.py-431cdec7050ff25d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/dbus_utils.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-dbus-utils.py-cee386adc41caac1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/exceptions.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-exceptions.py-779313b265ca4802 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__init__.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-facts---init--.py-0047b422d5bd2532 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/base.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-facts-base.py-68a63769f524c68a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/client.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-facts-client.py-4e42ad7ba5f3aaa2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/constants.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-facts-constants.py-3b500c04541a57ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__init__.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects---init--.py-2f7055bd65d8ed7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/attach.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-attach.py-c060d31cf163a5f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/config.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-config.py-ac2895ac11ec4fb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/consumer.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-consumer.py-17361911eaa6c2cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/entitlement.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-entitlement.py-5cf0caa2a913114f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/main.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-main.py-3afafb1aa1f3f7c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/products.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-products.py-70f8633ac32db2d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/register.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-register.py-9470a73ed5f20dc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/syspurpose.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-syspurpose.py-47169e0fe3a89036 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/unregister.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-unregister.py-4b54bd7974dd09c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/service_wrapper.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-service-wrapper.py-f551eb6de8585d7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__init__.py +SPDXID: SPDXRef-File-...rhsmlib-facts---init--.py-b7ce3066101bc2d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/cloud_facts.py +SPDXID: SPDXRef-File-...rhsmlib-facts-cloud-facts.py-75d7c3a54a459b13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/collection.py +SPDXID: SPDXRef-File-...rhsmlib-facts-collection.py-f2f4daa1b064e5ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/collector.py +SPDXID: SPDXRef-File-...rhsmlib-facts-collector.py-f6302d2264ff079a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/firmware_info.py +SPDXID: SPDXRef-File-...rhsmlib-facts-firmware-info.py-d26b1f446b726877 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/host_collector.py +SPDXID: SPDXRef-File-...rhsmlib-facts-host-collector.py-94bb70f3c0e98e3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/insights.py +SPDXID: SPDXRef-File-...rhsmlib-facts-insights.py-7e2853d26f834e65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__init__.py +SPDXID: SPDXRef-File-...rhsmlib-services---init--.py-746dc23d2a70c14d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/attach.py +SPDXID: SPDXRef-File-...rhsmlib-services-attach.py-903e42ec4bad746b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/config.py +SPDXID: SPDXRef-File-...rhsmlib-services-config.py-88834236fd3575cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/consumer.py +SPDXID: SPDXRef-File-...rhsmlib-services-consumer.py-a7f58e151d379b5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/entitlement.py +SPDXID: SPDXRef-File-...rhsmlib-services-entitlement.py-844d3186e2904bb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/exceptions.py +SPDXID: SPDXRef-File-...rhsmlib-services-exceptions.py-e26c00113c72e066 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/products.py +SPDXID: SPDXRef-File-...rhsmlib-services-products.py-fe720d912c405170 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/refresh.py +SPDXID: SPDXRef-File-...rhsmlib-services-refresh.py-18d578497eb0f621 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/register.py +SPDXID: SPDXRef-File-...rhsmlib-services-register.py-de4681094d70267f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/syspurpose.py +SPDXID: SPDXRef-File-...rhsmlib-services-syspurpose.py-cef7d8f7f8c5a34f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/unregister.py +SPDXID: SPDXRef-File-...rhsmlib-services-unregister.py-f76cbfbb9e1c3009 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Buenos_Aires +SPDXID: SPDXRef-File-...right-America-Argentina-Buenos-Aires-c1a53a0134fb0f5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Catamarca +SPDXID: SPDXRef-File-...right-America-Argentina-Catamarca-5d93f225e3326eb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/ComodRivadavia +SPDXID: SPDXRef-File-...right-America-Argentina-ComodRivadavia-d2411d71004e83bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Cordoba +SPDXID: SPDXRef-File-...right-America-Argentina-Cordoba-1b56f5a7079ae723 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/La_Rioja +SPDXID: SPDXRef-File-...right-America-Argentina-La-Rioja-6a8c366800cd7aee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Mendoza +SPDXID: SPDXRef-File-...right-America-Argentina-Mendoza-16b9cb50f4dfab9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Rio_Gallegos +SPDXID: SPDXRef-File-...right-America-Argentina-Rio-Gallegos-1a9024ffef609999 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/San_Juan +SPDXID: SPDXRef-File-...right-America-Argentina-San-Juan-6323d4e22deb918b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/San_Luis +SPDXID: SPDXRef-File-...right-America-Argentina-San-Luis-b394ea575daa3e03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Tucuman +SPDXID: SPDXRef-File-...right-America-Argentina-Tucuman-8664aee025a91762 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Ushuaia +SPDXID: SPDXRef-File-...right-America-Argentina-Ushuaia-e30e102c9f3e3d94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Indianapolis +SPDXID: SPDXRef-File-...right-America-Indiana-Indianapolis-df47c9ad0519de3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Petersburg +SPDXID: SPDXRef-File-...right-America-Indiana-Petersburg-a8bfbaa1276152dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Tell_City +SPDXID: SPDXRef-File-...right-America-Indiana-Tell-City-747c746cce9ee41f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Vincennes +SPDXID: SPDXRef-File-...right-America-Indiana-Vincennes-767be5aab3358683 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Kentucky/Louisville +SPDXID: SPDXRef-File-...right-America-Kentucky-Louisville-8cef8ac1eafd310f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Kentucky/Monticello +SPDXID: SPDXRef-File-...right-America-Kentucky-Monticello-67225c702b2b63f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/North_Dakota/Beulah +SPDXID: SPDXRef-File-...right-America-North-Dakota-Beulah-9666a449e658c088 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/North_Dakota/Center +SPDXID: SPDXRef-File-...right-America-North-Dakota-Center-25800cb069d6d1a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/North_Dakota/New_Salem +SPDXID: SPDXRef-File-...right-America-North-Dakota-New-Salem-8a5d80a683b7abe7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/DumontDUrville +SPDXID: SPDXRef-File-...right-Antarctica-DumontDUrville-6ffc9218d4d16457 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/rlcompleter.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rlcompleter.cpython-36.opt-1.pyc-235d6546bd6d6e86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/rlcompleter.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...rlcompleter.cpython-36.opt-2.pyc-6e44cb3abff892f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/robotparser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...robotparser.cpython-36.opt-1.pyc-79c7e633b4af610e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/robotparser.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...robotparser.cpython-36.opt-2.pyc-df606fa5ab57ee91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/rot_13.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rot-13.cpython-36.opt-1.pyc-78be170941135a9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/rot_13.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...rot-13.cpython-36.opt-2.pyc-56297d7e19473d69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/rotate.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rotate.cpython-36.opt-1.pyc-c717c2f43a6a3911 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/error.cpython-36.pyc +SPDXID: SPDXRef-File-...rpm---pycache---error.cpython-36.pyc-384d19217f6f9353 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm-4.14.3-py3.6.egg-info +SPDXID: SPDXRef-File-...rpm-4.14.3-py3.6.egg-info-8792eff33893e83c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/alphaev56-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-alphaev56-linux-macros-411b6ebd8b65ece9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/alphaev67-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-alphaev67-linux-macros-e7dce1b9fc2940fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/alphapca56-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-alphapca56-linux-macros-a1624ea903793264 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv5tejl-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-armv5tejl-linux-macros-7a8f9d3cde60fc2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mips64r6el-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-mips64r6el-linux-macros-9d2b4debadbebee4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc64iseries-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-ppc64iseries-linux-macros-6d80168f3660ee62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc64pseries-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-ppc64pseries-linux-macros-cf353b9e37e1f754 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppciseries-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-ppciseries-linux-macros-35b6c78b766fe4fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppcpseries-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-ppcpseries-linux-macros-0171aed9205a5f07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/__pycache__/rpmtrans.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rpmtrans.cpython-36.opt-1.pyc-2eb0dde0f0a0264e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/runner.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...runner.cpython-36.opt-1.pyc-2d8f106fe2a32aa6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/runner.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...runner.cpython-36.opt-2.pyc-aa41ae8b5489e375 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/sandbox.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sandbox.cpython-36.opt-1.pyc-22062d31a229ee12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/sat5to6.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sat5to6.cpython-36.opt-1.pyc-98af6ae139f62d58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/saveopts.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...saveopts.cpython-36.opt-1.pyc-031fff9688bf595d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/handler.cpython-36.pyc +SPDXID: SPDXRef-File-...sax---pycache---handler.cpython-36.pyc-f9878c5d068978e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/saxutils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...saxutils.cpython-36.opt-1.pyc-845571b15f50a4e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/saxutils.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...saxutils.cpython-36.opt-2.pyc-ae4415fa1ff2eb90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/sbcharsetprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sbcharsetprober.cpython-36.opt-1.pyc-3af0d10fdecb79ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/sbcharsetprober.cpython-36.pyc +SPDXID: SPDXRef-File-...sbcharsetprober.cpython-36.pyc-4b7b3d6f50cb5a77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/sbcsgroupprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sbcsgroupprober.cpython-36.opt-1.pyc-9c6398ab3688d09a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/sbcsgroupprober.cpython-36.pyc +SPDXID: SPDXRef-File-...sbcsgroupprober.cpython-36.pyc-fed766634c35c156 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/scanner.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...scanner.cpython-36.opt-1.pyc-dc89d272d0c8c34f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/scanner.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...scanner.cpython-36.opt-2.pyc-18d97205f04bd122 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/script_helper.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...script-helper.cpython-36.opt-1.pyc-c07c6b63c941b060 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/script_helper.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...script-helper.cpython-36.opt-2.pyc-2bc7c23acfd81fe0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/script_helper.cpython-36.pyc +SPDXID: SPDXRef-File-...script-helper.cpython-36.pyc-2fec3a8033c7d13b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__init__.py +SPDXID: SPDXRef-File-...scripts---init--.py-8a52f77df222d771 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rct.cpython-36.pyc +SPDXID: SPDXRef-File-...scripts---pycache---rct.cpython-36.pyc-df5b7e8071eadffe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/package_profile_upload.py +SPDXID: SPDXRef-File-...scripts-package-profile-upload.py-fee00451ce123d99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/rhn_migrate_classic_to_rhsm.py +SPDXID: SPDXRef-File-...scripts-rhn-migrate-classic-to-rhsm.py-2f5b6c1ae2cf30df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/rhsm_debug.py +SPDXID: SPDXRef-File-...scripts-rhsm-debug.py-eda076a202a4a869 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/rhsm_facts_service.py +SPDXID: SPDXRef-File-...scripts-rhsm-facts-service.py-180643e66df8bb79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/rhsm_service.py +SPDXID: SPDXRef-File-...scripts-rhsm-service.py-2102c98d4203bd59 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/rhsmcertd_worker.py +SPDXID: SPDXRef-File-...scripts-rhsmcertd-worker.py-7cd271e1d130f025 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/sat5to6.py +SPDXID: SPDXRef-File-...scripts-sat5to6.py-0574570e9a9ac181 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/subscription_manager_gui.py +SPDXID: SPDXRef-File-...scripts-subscription-manager-gui.py-90eea1f9e61fb49a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/subscription_manager.py +SPDXID: SPDXRef-File-...scripts-subscription-manager.py-02f344850d4012d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/search.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...search.cpython-36.opt-1.pyc-2dd4538300ae1af7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/secrets.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...secrets.cpython-36.opt-1.pyc-5f0a794e71eec41f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/secrets.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...secrets.cpython-36.opt-2.pyc-c5cb0bfcc592bd29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/securetransport.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...securetransport.cpython-36.opt-1.pyc-58f2fc032ffa0fe6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/securetransport.cpython-36.pyc +SPDXID: SPDXRef-File-...securetransport.cpython-36.pyc-4d346e40f0429137 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/select.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...select.cpython-36m-x86-64-linux-gnu.so-66ba274b153df873 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/selector_events.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...selector-events.cpython-36.opt-1.pyc-a61a7fcd9bd87b9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/selector_events.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...selector-events.cpython-36.opt-2.pyc-637d777265954940 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/selector_events.cpython-36.pyc +SPDXID: SPDXRef-File-...selector-events.cpython-36.pyc-964975e63f1623a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/selector.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...selector.cpython-36.opt-1.pyc-7ff31d284e9c7aad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/selectors.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...selectors.cpython-36.opt-1.pyc-e1b385dce4320820 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/selectors.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...selectors.cpython-36.opt-2.pyc-6c19d9dd16a418f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/semaphore_tracker.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...semaphore-tracker.cpython-36.opt-1.pyc-d1dd2c28a9195878 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/semaphore_tracker.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...semaphore-tracker.cpython-36.opt-2.pyc-4cefd636bd9c27ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/semaphore_tracker.cpython-36.pyc +SPDXID: SPDXRef-File-...semaphore-tracker.cpython-36.pyc-1c2802a36a54c889 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/server.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...server.cpython-36.opt-1.pyc-2ca93309455ffbbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/server.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...server.cpython-36.opt-1.pyc-5eda238c44bf62c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/server.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...server.cpython-36.opt-1.pyc-779a47a0e07d7f44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/server.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...server.cpython-36.opt-1.pyc-964c2271a5dbc6e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/server.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...server.cpython-36.opt-2.pyc-4dc212e9431ffa75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/server.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...server.cpython-36.opt-2.pyc-b7ff35df978560a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/service_wrapper.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...service-wrapper.cpython-36.opt-1.pyc-fb44a6ad0b9b90a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/service_wrapper.cpython-36.pyc +SPDXID: SPDXRef-File-...service-wrapper.cpython-36.pyc-32d3bf18b2946dde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/service.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...service.cpython-36.opt-1.pyc-847673b3ee7d6959 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/sessions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sessions.cpython-36.opt-1.pyc-9d02720bc1b62bb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/setopt.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...setopt.cpython-36.opt-1.pyc-47eb939df05349df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/__init__.py +SPDXID: SPDXRef-File-...setuptools--vendor---init--.py-61edf1bb8c213a01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/utils.py +SPDXID: SPDXRef-File-...setuptools--vendor-packaging-utils.py-fd04a072afe206fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/pyparsing.py +SPDXID: SPDXRef-File-...setuptools--vendor-pyparsing.py-3870856a39832a2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/six.py +SPDXID: SPDXRef-File-...setuptools--vendor-six.py-6add234b33337f12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/python3-wheels/setuptools-39.2.0-py2.py3-none-any.whl +SPDXID: SPDXRef-File-...setuptools-39.2.0-py2.py3-none-any.whl-5a892c898d067ef6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/INSTALLER +SPDXID: SPDXRef-File-...setuptools-39.2.0.dist-info-INSTALLER-be96468f8c8bc395 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/METADATA +SPDXID: SPDXRef-File-...setuptools-39.2.0.dist-info-METADATA-2a25a6c384b85697 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/RECORD +SPDXID: SPDXRef-File-...setuptools-39.2.0.dist-info-RECORD-f4c2df7bbbe4ae48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/WHEEL +SPDXID: SPDXRef-File-...setuptools-39.2.0.dist-info-WHEEL-a20d6b80cae28f3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/zip-safe +SPDXID: SPDXRef-File-...setuptools-39.2.0.dist-info-zip-safe-da00492d0450490d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/archive_util.py +SPDXID: SPDXRef-File-...setuptools-archive-util.py-a3fe3b7d533312f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__init__.py +SPDXID: SPDXRef-File-...setuptools-command---init--.py-5dbbec1dddd97a66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/alias.py +SPDXID: SPDXRef-File-...setuptools-command-alias.py-2b2177a4e012a396 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/bdist_egg.py +SPDXID: SPDXRef-File-...setuptools-command-bdist-egg.py-ed921f5043e1a4a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/bdist_rpm.py +SPDXID: SPDXRef-File-...setuptools-command-bdist-rpm.py-0d854bb8cf714161 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/bdist_wininst.py +SPDXID: SPDXRef-File-...setuptools-command-bdist-wininst.py-01c5e7f0bc962cfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/build_clib.py +SPDXID: SPDXRef-File-...setuptools-command-build-clib.py-b4c878d9b7e7daf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/build_ext.py +SPDXID: SPDXRef-File-...setuptools-command-build-ext.py-3703845066e40f6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/build_py.py +SPDXID: SPDXRef-File-...setuptools-command-build-py.py-e336f581428f49f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/develop.py +SPDXID: SPDXRef-File-...setuptools-command-develop.py-e04a20582440d037 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/dist_info.py +SPDXID: SPDXRef-File-...setuptools-command-dist-info.py-c3f63b9301021b50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/easy_install.py +SPDXID: SPDXRef-File-...setuptools-command-easy-install.py-eb7b9d5c4ccd0dfb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/egg_info.py +SPDXID: SPDXRef-File-...setuptools-command-egg-info.py-cbf6ce2212866df7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/install_egg_info.py +SPDXID: SPDXRef-File-...setuptools-command-install-egg-info.py-f6bc7239c46835a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/install_lib.py +SPDXID: SPDXRef-File-...setuptools-command-install-lib.py-8df91e571a110dc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/install_scripts.py +SPDXID: SPDXRef-File-...setuptools-command-install-scripts.py-33921b1fb561c3ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/install.py +SPDXID: SPDXRef-File-...setuptools-command-install.py-e86d98b7f1ef5eb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/py36compat.py +SPDXID: SPDXRef-File-...setuptools-command-py36compat.py-db5c6c2d8ce9bad3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/register.py +SPDXID: SPDXRef-File-...setuptools-command-register.py-68310a952c36c597 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/rotate.py +SPDXID: SPDXRef-File-...setuptools-command-rotate.py-ff2e4b2b36032308 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/saveopts.py +SPDXID: SPDXRef-File-...setuptools-command-saveopts.py-f343a27f9bb163d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/sdist.py +SPDXID: SPDXRef-File-...setuptools-command-sdist.py-ce165968df4439e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/setopt.py +SPDXID: SPDXRef-File-...setuptools-command-setopt.py-c551de5364d2559a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/test.py +SPDXID: SPDXRef-File-...setuptools-command-test.py-af7f0a12c22b2e0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/upload_docs.py +SPDXID: SPDXRef-File-...setuptools-command-upload-docs.py-e1b4b57d71940825 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/upload.py +SPDXID: SPDXRef-File-...setuptools-command-upload.py-bbdae0fc7c385fdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/extern/__init__.py +SPDXID: SPDXRef-File-...setuptools-extern---init--.py-242cea71a8c8fb3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/package_index.py +SPDXID: SPDXRef-File-...setuptools-package-index.py-7ec9de6d102fd649 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/script (dev).tmpl +SPDXID: SPDXRef-File-...setuptools-script--dev-.tmpl-cfc909e564a65fe3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/ssl_support.py +SPDXID: SPDXRef-File-...setuptools-ssl-support.py-4fd689abdb8b052d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/unicode_utils.py +SPDXID: SPDXRef-File-...setuptools-unicode-utils.py-207e23fd28d96eb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/windows_support.py +SPDXID: SPDXRef-File-...setuptools-windows-support.py-ff6433a2d0595f98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/appdata/dejavu-sans.metainfo.xml +SPDXID: SPDXRef-File-...share-appdata-dejavu-sans.metainfo.xml-fc43020972e78acd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/bash-completion/completions/cal +SPDXID: SPDXRef-File-...share-bash-completion-completions-cal-0ba8029737b4bc05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/chrt +SPDXID: SPDXRef-File-...share-bash-completion-completions-chrt-77459fde93cc87b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/col +SPDXID: SPDXRef-File-...share-bash-completion-completions-col-ef8c3e760c0de377 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/dnf +SPDXID: SPDXRef-File-...share-bash-completion-completions-dnf-53943a082ad0c5d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fsck +SPDXID: SPDXRef-File-...share-bash-completion-completions-fsck-62bda2762ffcf742 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/ipcs +SPDXID: SPDXRef-File-...share-bash-completion-completions-ipcs-3288c42649695af9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/last +SPDXID: SPDXRef-File-...share-bash-completion-completions-last-4fd8de0c6f5e6405 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/look +SPDXID: SPDXRef-File-...share-bash-completion-completions-look-d7d4ff8bc3a7d3b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/lsns +SPDXID: SPDXRef-File-...share-bash-completion-completions-lsns-ebdd6e63a5a5f598 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/mesg +SPDXID: SPDXRef-File-...share-bash-completion-completions-mesg-b6eed2a89ed498a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/mkfs +SPDXID: SPDXRef-File-...share-bash-completion-completions-mkfs-3c08e35f2aa818b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/more +SPDXID: SPDXRef-File-...share-bash-completion-completions-more-346b462a8f0c914d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/raw +SPDXID: SPDXRef-File-...share-bash-completion-completions-raw-f27956c90fc3c92b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rct +SPDXID: SPDXRef-File-...share-bash-completion-completions-rct-c01267cebf010579 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rev +SPDXID: SPDXRef-File-...share-bash-completion-completions-rev-29f9c01eab75843a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/su +SPDXID: SPDXRef-File-...share-bash-completion-completions-su-bc68697fda446d5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/ul +SPDXID: SPDXRef-File-...share-bash-completion-completions-ul-df5d691e77bb9704 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/wall +SPDXID: SPDXRef-File-...share-bash-completion-completions-wall-17413ae09c697fde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/bind.txt +SPDXID: SPDXRef-File-...share-crypto-policies-DEFAULT-bind.txt-0cdc9ea98bbd2896 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/java.txt +SPDXID: SPDXRef-File-...share-crypto-policies-DEFAULT-java.txt-52f135410a8fb00c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/krb5.txt +SPDXID: SPDXRef-File-...share-crypto-policies-DEFAULT-krb5.txt-d6b290fd2cfa04cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/nss.txt +SPDXID: SPDXRef-File-...share-crypto-policies-DEFAULT-nss.txt-36ce92bc8b65a6d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/bind.txt +SPDXID: SPDXRef-File-...share-crypto-policies-EMPTY-bind.txt-07a575d3a9934013 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/gnutls.txt +SPDXID: SPDXRef-File-...share-crypto-policies-EMPTY-gnutls.txt-060406ab506e02eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/java.txt +SPDXID: SPDXRef-File-...share-crypto-policies-EMPTY-java.txt-05ddf5239c9dc576 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/krb5.txt +SPDXID: SPDXRef-File-...share-crypto-policies-EMPTY-krb5.txt-37a804988f11b614 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/libssh.txt +SPDXID: SPDXRef-File-...share-crypto-policies-EMPTY-libssh.txt-3f608bf9d6b95e5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/nss.txt +SPDXID: SPDXRef-File-...share-crypto-policies-EMPTY-nss.txt-79dd90ea75c4e967 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/bind.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FIPS-bind.txt-60761712558c6541 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/gnutls.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FIPS-gnutls.txt-c69ab7663a1a3a0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/java.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FIPS-java.txt-be786f14bc65129e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/krb5.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FIPS-krb5.txt-f9783e10324e53a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/libssh.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FIPS-libssh.txt-a069543ecd45a1f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/openssh.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FIPS-openssh.txt-388a4884f2ec2297 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/openssl.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FIPS-openssl.txt-8360ca87ef3c90aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/bind.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FUTURE-bind.txt-9ee7d28eb60992f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/java.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FUTURE-java.txt-46a14c04ff37b6e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/krb5.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FUTURE-krb5.txt-e74cc380240cd2aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/nss.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FUTURE-nss.txt-8a5cf6cc360a04dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/bind.txt +SPDXID: SPDXRef-File-...share-crypto-policies-LEGACY-bind.txt-034d8ada8c368cae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/java.txt +SPDXID: SPDXRef-File-...share-crypto-policies-LEGACY-java.txt-f4d4cee6210df460 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/krb5.txt +SPDXID: SPDXRef-File-...share-crypto-policies-LEGACY-krb5.txt-f6f6de897dd507ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/nss.txt +SPDXID: SPDXRef-File-...share-crypto-policies-LEGACY-nss.txt-464f71da0d9e9823 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/default-config +SPDXID: SPDXRef-File-...share-crypto-policies-default-config-58a363c11dc7b0af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/reload-cmds.sh +SPDXID: SPDXRef-File-...share-crypto-policies-reload-cmds.sh-7336478926a86d5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/doc/dejavu-fonts-common/AUTHORS +SPDXID: SPDXRef-File-...share-doc-dejavu-fonts-common-AUTHORS-7b7879e4d3623757 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/dejavu-fonts-common/LICENSE +SPDXID: SPDXRef-File-...share-doc-dejavu-fonts-common-LICENSE-94c6ad568bd95d10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/dejavu-fonts-common/README +SPDXID: SPDXRef-File-...share-doc-dejavu-fonts-common-README-ba48cce40b2f07f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/iptables/INCOMPATIBILITIES +SPDXID: SPDXRef-File-...share-doc-iptables-INCOMPATIBILITIES-4772ff2675dd3ef8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/openssl/Makefile.certificate +SPDXID: SPDXRef-File-...share-doc-openssl-Makefile.certificate-eec8462583aace83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/factory/etc/pam.d/system-auth +SPDXID: SPDXRef-File-...share-factory-etc-pam.d-system-auth-0625c804045ec446 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/fonts/dejavu/DejaVuSans-Bold.ttf +SPDXID: SPDXRef-File-...share-fonts-dejavu-DejaVuSans-Bold.ttf-acec86fc66246420 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/gnupg/sks-keyservers.netCA.pem +SPDXID: SPDXRef-File-...share-gnupg-sks-keyservers.netCA.pem-fb48183f47c81a54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/audit-libs/lgpl-2.1.txt +SPDXID: SPDXRef-File-...share-licenses-audit-libs-lgpl-2.1.txt-6e91cec0e26f7fb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/cracklib/COPYING.LIB +SPDXID: SPDXRef-File-...share-licenses-cracklib-COPYING.LIB-a225e1610abf435e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/cryptsetup-libs/COPYING +SPDXID: SPDXRef-File-...share-licenses-cryptsetup-libs-COPYING-bec3a053183070e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/cyrus-sasl-lib/COPYING +SPDXID: SPDXRef-File-...share-licenses-cyrus-sasl-lib-COPYING-907fe9822af0db96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/device-mapper/COPYING +SPDXID: SPDXRef-File-...share-licenses-device-mapper-COPYING-a3d1ce96fc761366 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/dnf/PACKAGE-LICENSING +SPDXID: SPDXRef-File-...share-licenses-dnf-PACKAGE-LICENSING-1e6a857e58f598cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/freetype/LICENSE.TXT +SPDXID: SPDXRef-File-...share-licenses-freetype-LICENSE.TXT-3f239787609c008d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/gmp/COPYING.LESSERv3 +SPDXID: SPDXRef-File-...share-licenses-gmp-COPYING.LESSERv3-8883c65e02c6768e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gnutls/COPYING.LESSER +SPDXID: SPDXRef-File-...share-licenses-gnutls-COPYING.LESSER-50a7702dcd35cc6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gpgme/COPYING.LESSER +SPDXID: SPDXRef-File-...share-licenses-gpgme-COPYING.LESSER-aee333a719c63551 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/ima-evm-utils/COPYING +SPDXID: SPDXRef-File-...share-licenses-ima-evm-utils-COPYING-5ec0b2e0e8c79e44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libassuan/COPYING.LIB +SPDXID: SPDXRef-File-...share-licenses-libassuan-COPYING.LIB-835f625ffadbdc80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libcap-ng/COPYING.LIB +SPDXID: SPDXRef-File-...share-licenses-libcap-ng-COPYING.LIB-0f1f32e8196b5670 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgcc/COPYING.RUNTIME +SPDXID: SPDXRef-File-...share-licenses-libgcc-COPYING.RUNTIME-0815da2e94d3741e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgcrypt/COPYING.LIB +SPDXID: SPDXRef-File-...share-licenses-libgcrypt-COPYING.LIB-769ee9977bc7dd64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgpg-error/COPYING +SPDXID: SPDXRef-File-...share-licenses-libgpg-error-COPYING-b3f84ce5234a5d5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libidn2/COPYING.unicode +SPDXID: SPDXRef-File-...share-licenses-libidn2-COPYING.unicode-77f5cdb623a4912c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libksba/COPYING.GPLv2 +SPDXID: SPDXRef-File-...share-licenses-libksba-COPYING.GPLv2-991c75c855bc6374 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libksba/COPYING.GPLv3 +SPDXID: SPDXRef-File-...share-licenses-libksba-COPYING.GPLv3-deea9c69f8d63720 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libksba/COPYING.LGPLv3 +SPDXID: SPDXRef-File-...share-licenses-libksba-COPYING.LGPLv3-c76e89269e08066e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libnfnetlink/COPYING +SPDXID: SPDXRef-File-...share-licenses-libnfnetlink-COPYING-c594affcf4e382a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/libpwquality/COPYING +SPDXID: SPDXRef-File-...share-licenses-libpwquality-COPYING-64f5b8acefc4574f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libsmartcols/COPYING +SPDXID: SPDXRef-File-...share-licenses-libsmartcols-COPYING-2f004eaa79c7fc12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libtasn1/COPYING.LIB +SPDXID: SPDXRef-File-...share-licenses-libtasn1-COPYING.LIB-baab74cf8584e16d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libunistring/COPYING +SPDXID: SPDXRef-File-...share-licenses-libunistring-COPYING-f97b584506063ae3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libuuid/COPYING.BSD-3 +SPDXID: SPDXRef-File-...share-licenses-libuuid-COPYING.BSD-3-a9d6cd0bebc7ae3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libxcrypt/COPYING.LIB +SPDXID: SPDXRef-File-...share-licenses-libxcrypt-COPYING.LIB-623c53f89b47349f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/ncurses-base/COPYING +SPDXID: SPDXRef-File-...share-licenses-ncurses-base-COPYING-1c153009ab95459a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/nettle/COPYING.LESSERv3 +SPDXID: SPDXRef-File-...share-licenses-nettle-COPYING.LESSERv3-5d37d8321938e311 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/openssl-libs/LICENSE +SPDXID: SPDXRef-File-...share-licenses-openssl-libs-LICENSE-bf37d205b33febd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/platform-python/LICENSE +SPDXID: SPDXRef-File-...share-licenses-platform-python-LICENSE-0afb474413d35ee9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python-iniparse/LICENSE +SPDXID: SPDXRef-File-...share-licenses-python-iniparse-LICENSE-d8cbf5f0afad466e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-chardet/LICENSE +SPDXID: SPDXRef-File-...share-licenses-python3-chardet-LICENSE-3616888ab83fbf26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-dbus/COPYING +SPDXID: SPDXRef-File-...share-licenses-python3-dbus-COPYING-0d4ca85d14f4854a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-ethtool/COPYING +SPDXID: SPDXRef-File-...share-licenses-python3-ethtool-COPYING-92ec5d58bd3c8909 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-inotify/COPYING +SPDXID: SPDXRef-File-...share-licenses-python3-inotify-COPYING-96a145b0de26d8c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-libs/LICENSE +SPDXID: SPDXRef-File-...share-licenses-python3-libs-LICENSE-ad2aaba3951726a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-pysocks/LICENSE +SPDXID: SPDXRef-File-...share-licenses-python3-pysocks-LICENSE-0ae6c6deb9ba3195 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/systemd/LICENSE.GPL2 +SPDXID: SPDXRef-File-...share-licenses-systemd-LICENSE.GPL2-3ae2b4f3f4cf3550 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/systemd/LICENSE.LGPL2.1 +SPDXID: SPDXRef-File-...share-licenses-systemd-LICENSE.LGPL2.1-0989646e069c1a21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/util-linux/COPYING.ISC +SPDXID: SPDXRef-File-...share-licenses-util-linux-COPYING.ISC-bcec15e77221b3df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/util-linux/COPYING.UCB +SPDXID: SPDXRef-File-...share-licenses-util-linux-COPYING.UCB-c80a10fac29eb44e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/dnf.mo +SPDXID: SPDXRef-File-...share-locale-en-GB-LC-MESSAGES-dnf.mo-21984a59091bd9b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/man/man5/libnftables-json.5.gz +SPDXID: SPDXRef-File-...share-man-man5-libnftables-json.5.gz-cedf7382ec8d9999 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man5/x509v3_config.5ssl.gz +SPDXID: SPDXRef-File-...share-man-man5-x509v3-config.5ssl.gz-d42aaa2c40fac859 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/EVP_KDF_HKDF.7ssl.gz +SPDXID: SPDXRef-File-...share-man-man7-EVP-KDF-HKDF.7ssl.gz-1765cc2a8a9682bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/EVP_KDF_KRB5KDF.7ssl.gz +SPDXID: SPDXRef-File-...share-man-man7-EVP-KDF-KRB5KDF.7ssl.gz-196bb74b3ab5a352 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/EVP_KDF_PBKDF2.7ssl.gz +SPDXID: SPDXRef-File-...share-man-man7-EVP-KDF-PBKDF2.7ssl.gz-8815451eb114cf5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/EVP_KDF_SCRYPT.7ssl.gz +SPDXID: SPDXRef-File-...share-man-man7-EVP-KDF-SCRYPT.7ssl.gz-1bf3dd4635f779ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/EVP_KDF_SSHKDF.7ssl.gz +SPDXID: SPDXRef-File-...share-man-man7-EVP-KDF-SSHKDF.7ssl.gz-2b00c2eb6b3b9e10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/ossl_store-file.7ssl.gz +SPDXID: SPDXRef-File-...share-man-man7-ossl-store-file.7ssl.gz-101d014d5dabe2c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/ip6tables-restore.8.gz +SPDXID: SPDXRef-File-...share-man-man8-ip6tables-restore.8.gz-3b5e00199539c1f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/iptables-restore.8.gz +SPDXID: SPDXRef-File-...share-man-man8-iptables-restore.8.gz-b2a7980ab4411f02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/iptables-translate.8.gz +SPDXID: SPDXRef-File-...share-man-man8-iptables-translate.8.gz-bf55eb2b6b63c2b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/xtables-monitor.8.gz +SPDXID: SPDXRef-File-...share-man-man8-xtables-monitor.8.gz-9b062c970c82f8ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/xtables-translate.8.gz +SPDXID: SPDXRef-File-...share-man-man8-xtables-translate.8.gz-3e83b3b511f9ad90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/ru/man5/semanage.conf.5.gz +SPDXID: SPDXRef-File-...share-man-ru-man5-semanage.conf.5.gz-512e0fcb47511046 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/systemd/language-fallback-map +SPDXID: SPDXRef-File-...share-systemd-language-fallback-map-1417f84d816493f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-cygwin-native +SPDXID: SPDXRef-File-...share-terminfo-r-rxvt-cygwin-native-7673c83047eb0754 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.putty-256color +SPDXID: SPDXRef-File-...share-terminfo-s-screen.putty-256color-5b9eb5d82d6833c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.vte-256color +SPDXID: SPDXRef-File-...share-terminfo-s-screen.vte-256color-a891f8b91e6c5bad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.xterm-256color +SPDXID: SPDXRef-File-...share-terminfo-s-screen.xterm-256color-7b1bb12b6d43fa2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.xterm-xfree86 +SPDXID: SPDXRef-File-...share-terminfo-s-screen.xterm-xfree86-2a44489eaa479241 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Dar_es_Salaam +SPDXID: SPDXRef-File-...share-zoneinfo-Africa-Dar-es-Salaam-0c4542a2762eb6cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Jujuy +SPDXID: SPDXRef-File-...share-zoneinfo-America-Argentina-Jujuy-e99d04a4108fc549 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Salta +SPDXID: SPDXRef-File-...share-zoneinfo-America-Argentina-Salta-39ff4cc58df91cc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Bahia_Banderas +SPDXID: SPDXRef-File-...share-zoneinfo-America-Bahia-Banderas-6f4b0bcc5dc69ea2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Blanc-Sablon +SPDXID: SPDXRef-File-...share-zoneinfo-America-Blanc-Sablon-be2aab5fba77f017 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Buenos_Aires +SPDXID: SPDXRef-File-...share-zoneinfo-America-Buenos-Aires-6e0f51c99af7b957 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Cambridge_Bay +SPDXID: SPDXRef-File-...share-zoneinfo-America-Cambridge-Bay-ab39d5c4cadd8a6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Campo_Grande +SPDXID: SPDXRef-File-...share-zoneinfo-America-Campo-Grande-c1961cf40430f883 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Ciudad_Juarez +SPDXID: SPDXRef-File-...share-zoneinfo-America-Ciudad-Juarez-a14a1a8ee880b7fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Coral_Harbour +SPDXID: SPDXRef-File-...share-zoneinfo-America-Coral-Harbour-e2bd4642bec00870 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Danmarkshavn +SPDXID: SPDXRef-File-...share-zoneinfo-America-Danmarkshavn-45952689fcaaf592 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Dawson_Creek +SPDXID: SPDXRef-File-...share-zoneinfo-America-Dawson-Creek-135b0b9d550f37cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Knox +SPDXID: SPDXRef-File-...share-zoneinfo-America-Indiana-Knox-74c9534dbe502e9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Marengo +SPDXID: SPDXRef-File-...share-zoneinfo-America-Indiana-Marengo-1c12dcafbbcaec35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Vevay +SPDXID: SPDXRef-File-...share-zoneinfo-America-Indiana-Vevay-ccccc6f2963b38cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Winamac +SPDXID: SPDXRef-File-...share-zoneinfo-America-Indiana-Winamac-181493b59bb4433d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indianapolis +SPDXID: SPDXRef-File-...share-zoneinfo-America-Indianapolis-563968570163fac2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Lower_Princes +SPDXID: SPDXRef-File-...share-zoneinfo-America-Lower-Princes-40fbb205cc3f7307 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Port-au-Prince +SPDXID: SPDXRef-File-...share-zoneinfo-America-Port-au-Prince-6ac5924c5b2e160a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Port_of_Spain +SPDXID: SPDXRef-File-...share-zoneinfo-America-Port-of-Spain-3ff7b89b740b4db9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Punta_Arenas +SPDXID: SPDXRef-File-...share-zoneinfo-America-Punta-Arenas-e4a51840e51e5569 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Rankin_Inlet +SPDXID: SPDXRef-File-...share-zoneinfo-America-Rankin-Inlet-d2418ce6124a2d95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Santa_Isabel +SPDXID: SPDXRef-File-...share-zoneinfo-America-Santa-Isabel-9b819ead05d51da7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Santo_Domingo +SPDXID: SPDXRef-File-...share-zoneinfo-America-Santo-Domingo-b0a2a4533d2a52a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Scoresbysund +SPDXID: SPDXRef-File-...share-zoneinfo-America-Scoresbysund-8d21bdb78c7fcce5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/St_Barthelemy +SPDXID: SPDXRef-File-...share-zoneinfo-America-St-Barthelemy-14e929ab523610e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Swift_Current +SPDXID: SPDXRef-File-...share-zoneinfo-America-Swift-Current-9804a94ed987d37a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Macquarie +SPDXID: SPDXRef-File-...share-zoneinfo-Antarctica-Macquarie-fc01909904cec67f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/South_Pole +SPDXID: SPDXRef-File-...share-zoneinfo-Antarctica-South-Pole-e31ce88f7e5ebf83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/South_Georgia +SPDXID: SPDXRef-File-...share-zoneinfo-Atlantic-South-Georgia-58240b54fa5415af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Broken_Hill +SPDXID: SPDXRef-File-...share-zoneinfo-Australia-Broken-Hill-54baa9ef6dc73dcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Queensland +SPDXID: SPDXRef-File-...share-zoneinfo-Australia-Queensland-e8d347dad156abff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Yancowinna +SPDXID: SPDXRef-File-...share-zoneinfo-Australia-Yancowinna-9f181b4678c0a6e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Bougainville +SPDXID: SPDXRef-File-...share-zoneinfo-Pacific-Bougainville-91f364eb044a3bd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Port_Moresby +SPDXID: SPDXRef-File-...share-zoneinfo-Pacific-Port-Moresby-1e24569b725b1337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Abidjan +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Abidjan-be9602d5270660c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Algiers +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Algiers-874c040608e723f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Blantyre +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Blantyre-1b3f0812e38b039f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Bujumbura +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Bujumbura-20be0341e66ecb55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Casablanca +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Casablanca-5689ca090dc73ad8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Conakry +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Conakry-73a82059b4ccb7f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Djibouti +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Djibouti-a5c0f9a66030b4b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/El_Aaiun +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-El-Aaiun-d23a562f7a9fe131 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Freetown +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Freetown-b4204ba69bbf03ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Gaborone +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Gaborone-9fdb7bd9aeaa8871 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Kampala +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Kampala-518e8d848af181f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Khartoum +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Khartoum-09672186f1989ec2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Kinshasa +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Kinshasa-0448c44282669c29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Libreville +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Libreville-3cf213f2ebcc5860 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Lubumbashi +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Lubumbashi-eda0b3c5282e4cc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Mbabane +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Mbabane-8fbcba5d4035f79c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Mogadishu +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Mogadishu-fb2c9bb793b5d024 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Monrovia +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Monrovia-13428ab314a81843 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Nairobi +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Nairobi-1270c277f39c64c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Ndjamena +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Ndjamena-32e92432b5621c30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Nouakchott +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Nouakchott-410089a062211282 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Porto-Novo +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Porto-Novo-49f4c5f1e125038d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Sao_Tome +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Sao-Tome-759cc5596a953169 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Timbuktu +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Timbuktu-9226033f84f3968c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Tripoli +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Tripoli-af14c0d49b3c42d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Windhoek +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Windhoek-8c8489fb6b92d4b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Anchorage +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Anchorage-1889d51e039106d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Anguilla +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Anguilla-0863b8d22f369311 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Antigua +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Antigua-1fe3bee8a9a0be0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Araguaina +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Araguaina-166ecb38f0934449 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Asuncion +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Asuncion-f9cb4aefd8bc5ea7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Atikokan +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Atikokan-af0bd8db85abebe2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Barbados +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Barbados-bb0d624da24d7af2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Belize +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Belize-4cf1fefeed4539dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Boa_Vista +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Boa-Vista-19ad88ce04808460 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Bogota +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Bogota-bb34f097c6dd5e52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Cancun +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Cancun-2944a46f237a2f58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Caracas +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Caracas-9723a0cb53918349 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Catamarca +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Catamarca-5f1dd1ffe9560911 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Cayenne +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Cayenne-6dc4802cbfb295f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Cayman +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Cayman-621f3a84d37fb3ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Chicago +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Chicago-a135cd2aea5c7dfb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Chihuahua +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Chihuahua-47776c32c7107e40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Cordoba +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Cordoba-5d6b97aac39d8000 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Creston +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Creston-4d5bb98c8a3cabdd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Cuiaba +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Cuiaba-fce14edc205037c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Curacao +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Curacao-b5e93b27aea825d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Dawson +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Dawson-36a3544aad21684d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Denver +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Denver-0334c5fb0613f662 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Detroit +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Detroit-4b54686d88aba994 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Dominica +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Dominica-5ea1122234e58bda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Edmonton +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Edmonton-19054ffc33cb2615 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Eirunepe +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Eirunepe-07db564c66623e84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Ensenada +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Ensenada-f54fab344c589154 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Fortaleza +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Fortaleza-9f834af7d550cc95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Glace_Bay +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Glace-Bay-e23c4fd0551f370a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Godthab +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Godthab-d060cd22cb24e8dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Goose_Bay +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Goose-Bay-4e8b21ffef0b892e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Grenada +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Grenada-ce9caa7dddcafa4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Guatemala +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Guatemala-457971516c5e6bf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Guayaquil +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Guayaquil-f2cff911ce94b25b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Guyana +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Guyana-6ecc9b08daddbd75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Halifax +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Halifax-bfe7b0706ee007ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Havana +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Havana-cc539447ed2585e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Inuvik +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Inuvik-ebd368215f3b2e2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Iqaluit +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Iqaluit-1485838d7fd16be1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Jamaica +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Jamaica-9da108fc07051013 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Juneau +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Juneau-729069155a0854ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Knox_IN +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Knox-IN-b5f70d422e2a8a13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/La_Paz +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-La-Paz-94971856cad96a01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Maceio +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Maceio-8edf7ba1c193b263 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Managua +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Managua-fe730b4d526c4506 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Manaus +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Manaus-c764be80a800a81e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Marigot +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Marigot-459baa1d89886fe6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Matamoros +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Matamoros-b457cae4774d2f05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Mazatlan +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Mazatlan-52c888e362b7af06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Mendoza +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Mendoza-64d68116d61b8e7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Menominee +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Menominee-2fd706135a597bbe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Merida +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Merida-9515da959b577b5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Miquelon +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Miquelon-b8886359f1c30665 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Moncton +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Moncton-e46c4cdda28861ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Monterrey +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Monterrey-4a9320c352e80802 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Montreal +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Montreal-8b0f2a7543d30938 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Nassau +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Nassau-56aa206dbf9d095a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/New_York +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-New-York-f5ac51c915881bfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Nipigon +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Nipigon-0527cc317d4edf44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Noronha +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Noronha-2761fedb6ceaa6bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Ojinaga +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Ojinaga-07abaf5c5e6b1ba0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Panama +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Panama-3fbf0f3bb41b87a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Phoenix +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Phoenix-5d5dfedd582f2bcf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Recife +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Recife-d69f86f677ca2e22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Regina +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Regina-27293109a82a497b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Resolute +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Resolute-9f7d142ccfe42ce8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Rosario +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Rosario-df280260e03d0676 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Santarem +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Santarem-550f96d9cccec32b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Santiago +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Santiago-728866521cf0232f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Sao_Paulo +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Sao-Paulo-96521f0a833d01b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Shiprock +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Shiprock-5827fa0db3e7db3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/St_Johns +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-St-Johns-2db2f18ced86e58e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/St_Kitts +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-St-Kitts-eace2e5e90e967e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/St_Lucia +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-St-Lucia-80022d8554ad1c7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/St_Thomas +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-St-Thomas-d94511567d1d7619 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Tijuana +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Tijuana-95feec09e783dd86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Toronto +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Toronto-999f27741626236b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Tortola +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Tortola-4546323687b17806 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Vancouver +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Vancouver-543a6f53eb2712f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Virgin +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Virgin-28cc465d9be00d26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Winnipeg +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Winnipeg-f4f761245b0a0122 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Yakutat +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Yakutat-6568ad9bed5ae3ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Casey +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Antarctica-Casey-1fdeaeb28ae5a7ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Davis +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Antarctica-Davis-92e4439329f1adcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Mawson +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Antarctica-Mawson-67851b4bc7a5dfae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Palmer +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Antarctica-Palmer-a28f6c7c08a843f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Syowa +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Antarctica-Syowa-33387c86cedea37c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Troll +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Antarctica-Troll-04ce07761b67e05c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Vostok +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Antarctica-Vostok-b333ea710a547821 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Ashkhabad +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Ashkhabad-bb9d937e46c5a7e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Choibalsan +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Choibalsan-f58d50c9d240d99f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Chongqing +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Chongqing-eaa37810c7504ee2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Chungking +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Chungking-2e8b816a94007abd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Famagusta +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Famagusta-37070496a660cfa0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Ho_Chi_Minh +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Ho-Chi-Minh-61408cdbec1c31fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Hong_Kong +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Hong-Kong-e665ed7aa729b7c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Jerusalem +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Jerusalem-acb56c574e17dcec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kamchatka +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Kamchatka-bb66e6d0f67021c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kathmandu +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Kathmandu-687ab76255e18557 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Krasnoyarsk +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Krasnoyarsk-3993d88bd9e85b9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kuala_Lumpur +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Kuala-Lumpur-1faa2019498ea8e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Novokuznetsk +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Novokuznetsk-f8f6e629903c2f82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Novosibirsk +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Novosibirsk-c4c1aac97f0b68bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Phnom_Penh +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Phnom-Penh-ece3088ba8a745a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Pontianak +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Pontianak-5cb16d7c75c34a0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Pyongyang +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Pyongyang-9e55df322adb1568 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Qyzylorda +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Qyzylorda-c0ce30b5bbe8ff3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Samarkand +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Samarkand-9b88f48ab96025e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Singapore +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Singapore-04538cd4160818cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Ulaanbaatar +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Ulaanbaatar-0e88b89b45dd0408 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Ulan_Bator +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Ulan-Bator-5dcc5d362b90abca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Vientiane +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Vientiane-a7eb3af5063e741f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Vladivostok +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Vladivostok-26e000b41ea077c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Azores +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Atlantic-Azores-4606a90378372651 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Bermuda +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Atlantic-Bermuda-9aec64eb81acfff5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Canary +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Atlantic-Canary-8dca9f956af63d9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Faeroe +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Atlantic-Faeroe-d4b2071ac7788553 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Faroe +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Atlantic-Faroe-4401e2189272667d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Madeira +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Atlantic-Madeira-4a02a63c3228e96c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Stanley +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Atlantic-Stanley-bce2ba69d93a0110 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Currie +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-Currie-3293382a535dbb0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Darwin +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-Darwin-74ac86d6d2e2a308 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Eucla +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-Eucla-abff752269a5aeb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Hobart +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-Hobart-1c507cffa0ad09d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/North +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-North-fe54c8b9bec9b870 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Perth +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-Perth-82fbd3b418545009 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/South +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-South-ab8e8ff22de7ddd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Sydney +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-Sydney-71ee42b213d3102e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/West +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-West-38639a4d80aaafb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Brazil/DeNoronha +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Brazil-DeNoronha-3543d2358113b157 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Atlantic +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Canada-Atlantic-77832710d60503e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Central +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Canada-Central-61eeae6ebde29512 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Eastern +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Canada-Eastern-00942610af2155b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Mountain +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Canada-Mountain-23137ffb4801c106 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Pacific +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Canada-Pacific-bd0b65e7c53cd28c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Chile/Continental +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Chile-Continental-efa323dda7cbe0a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Amsterdam +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Amsterdam-138911b2d7c410c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Andorra +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Andorra-1f3825ed4311a1a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Astrakhan +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Astrakhan-e83a71484783e817 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Belfast +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Belfast-d81caae6307f7fb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Belgrade +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Belgrade-bea63c6e3542d1d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Bratislava +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Bratislava-5e682cbb6fe86598 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Brussels +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Brussels-1fdf69c7ee6c9d45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Bucharest +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Bucharest-e05393ea9f0a112e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Budapest +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Budapest-813fc1b5a61fbea7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Busingen +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Busingen-73621d80c32671a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Chisinau +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Chisinau-9e49f761c2286efc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Copenhagen +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Copenhagen-74ad115417e3300b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Gibraltar +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Gibraltar-44546d00736caae2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Guernsey +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Guernsey-218cd77876dc89dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Helsinki +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Helsinki-21b7e70b0519d87a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Istanbul +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Istanbul-ad61b18372ade36a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Ljubljana +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Ljubljana-39fb474a08323b7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Luxembourg +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Luxembourg-d635f7e531aa5422 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Mariehamn +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Mariehamn-55ca287dcea1ca4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Nicosia +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Nicosia-227ac3c5ee34f234 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Podgorica +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Podgorica-326d2aec816a9baf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/San_Marino +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-San-Marino-7ab964126e69c426 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Sarajevo +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Sarajevo-f3d7989f8cff3cda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Saratov +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Saratov-9e9562006a94d7d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Simferopol +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Simferopol-711fac02f9bc3d2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Stockholm +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Stockholm-802a0b2c2236a5f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Tallinn +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Tallinn-a5dd9413af91a371 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Tiraspol +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Tiraspol-0ad0e811c4325ff7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Ulyanovsk +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Ulyanovsk-eae3e50c71d6e65d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Uzhgorod +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Uzhgorod-627dc0b215bdf2dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Vatican +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Vatican-a4eea54d85ec3b3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Vilnius +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Vilnius-11bb9caacd17fdfb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Volgograd +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Volgograd-ae1a3d9ce6f1e2ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Zaporozhye +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Zaporozhye-1ba117426930b124 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Christmas +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Indian-Christmas-84c67ef3ae054dee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Kerguelen +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Indian-Kerguelen-d74449d9c487518e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Maldives +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Indian-Maldives-7daffab09ffbe4ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Mauritius +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Indian-Mauritius-9c0fd727bb572bd8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Mayotte +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Indian-Mayotte-dd0f973f64af02d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Reunion +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Indian-Reunion-e8879ecfe722a5d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Mexico/BajaNorte +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Mexico-BajaNorte-66ccb5b20a14ad39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Mexico/BajaSur +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Mexico-BajaSur-f585bbc1724601ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Mexico/General +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Mexico-General-74640391886f889d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Auckland +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Auckland-b57477d6e23b2a7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Chatham +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Chatham-a08485743c80ce59 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Easter +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Easter-280f212716129455 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Enderbury +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Enderbury-7c5a62607aec4366 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Fakaofo +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Fakaofo-ad87177ccc40c266 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Funafuti +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Funafuti-7c436fa92f3ef6b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Galapagos +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Galapagos-a9f79e653817938f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Gambier +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Gambier-24a2d8a183fd8f0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Honolulu +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Honolulu-91af410b0888de03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Johnston +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Johnston-641c3b8d7b1870ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Kanton +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Kanton-6952af4b47a7d774 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Kosrae +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Kosrae-61ca1be299070bcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Kwajalein +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Kwajalein-eeb5db21eebb8bfd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Majuro +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Majuro-48559e907089abfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Marquesas +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Marquesas-3829d92678b111e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Midway +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Midway-14c621c7fa1bef3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Norfolk +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Norfolk-8ea5aad41de30fe5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Noumea +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Noumea-3399b18cf51964e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Pago_Pago +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Pago-Pago-14c508a51e3dcf5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Pitcairn +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Pitcairn-0dbc38d891d3222f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Pohnpei +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Pohnpei-d6abab62e8b463e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Ponape +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Ponape-00d5aa992ab5ac52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Rarotonga +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Rarotonga-1b6cb2a0023f4405 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Saipan +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Saipan-05b662cc02b5fcf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Tahiti +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Tahiti-ae749513dfe213a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Tarawa +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Tarawa-b0b14641995f3853 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Tongatapu +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Tongatapu-65d83d726e0ab93b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Wallis +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Wallis-41be956657fbc419 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/East-Indiana +SPDXID: SPDXRef-File-...share-zoneinfo-posix-US-East-Indiana-826f3f150863b0d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Indiana-Starke +SPDXID: SPDXRef-File-...share-zoneinfo-posix-US-Indiana-Starke-74ae0be3628f0cb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Abidjan +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Abidjan-b80d09f476625e85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Algiers +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Algiers-12fca1c5dfb3e0ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Blantyre +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Blantyre-7c2e5d17d2ca288c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Bujumbura +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Bujumbura-d234e8a159f0f620 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Casablanca +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Casablanca-d86026b8ffeac7a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Conakry +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Conakry-c6181ac8d29d4bc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Djibouti +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Djibouti-06d8d5e23c6eed45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/El_Aaiun +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-El-Aaiun-8a5b799dea1999f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Freetown +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Freetown-6a09ed84692c1140 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Gaborone +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Gaborone-a751bafdaf2f817b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Kampala +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Kampala-50826c9cf6c8d4b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Khartoum +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Khartoum-db86bdd03106ae64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Kinshasa +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Kinshasa-06c05a2e48431dc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Libreville +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Libreville-f6273bdbb8823c5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Lubumbashi +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Lubumbashi-232b91931ea9b187 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Mbabane +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Mbabane-7fb105dba71dfdc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Mogadishu +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Mogadishu-685218501c807e12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Monrovia +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Monrovia-1dc0ae255bd1a999 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Nairobi +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Nairobi-4b5ac54d13a2f2be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Ndjamena +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Ndjamena-4664f15c5812c699 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Nouakchott +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Nouakchott-aea73a9ee4ee0c42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Porto-Novo +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Porto-Novo-d4860f946bf2cb53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Sao_Tome +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Sao-Tome-63a6356698e04fb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Timbuktu +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Timbuktu-6ac8d8433baf23d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Tripoli +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Tripoli-e8d9ac88fb1df47e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Windhoek +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Windhoek-eba24c8f704c85c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Anchorage +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Anchorage-62cb06fc6b0a682d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Anguilla +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Anguilla-12291477623e1194 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Antigua +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Antigua-e44e20525adcfe97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Araguaina +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Araguaina-9a7b7f518953e7c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Asuncion +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Asuncion-003c680b42232863 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Atikokan +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Atikokan-eeaa010b839d2301 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Barbados +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Barbados-d13afce26471f9ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Belize +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Belize-6f2fa424f2131790 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Boa_Vista +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Boa-Vista-6bc18dedb1193307 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Bogota +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Bogota-ee03fb9442438dfd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Cancun +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Cancun-9752014b049cfdcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Caracas +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Caracas-72553e16e0c29996 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Catamarca +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Catamarca-ec3dc8716b84df1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Cayenne +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Cayenne-46b32dabc1a26b90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Cayman +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Cayman-4e4e948b3323dabb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Chicago +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Chicago-1466708ee8677185 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Chihuahua +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Chihuahua-8ab3d5e240b04204 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Cordoba +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Cordoba-625b752d60dc5d7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Creston +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Creston-c15a1aff4b4fe84d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Cuiaba +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Cuiaba-f8420aedd589be6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Curacao +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Curacao-28d77943ed7d5f55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Dawson +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Dawson-b550db08d2ef9c3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Denver +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Denver-c07a184605dde1a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Detroit +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Detroit-d8b75f27ecb30e39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Dominica +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Dominica-3be40fab8b7c674f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Edmonton +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Edmonton-04233e5990e60b9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Eirunepe +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Eirunepe-bb11da9be14836b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Ensenada +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Ensenada-07bf407b147f7056 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Fortaleza +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Fortaleza-ea2a9b242568dbe9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Glace_Bay +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Glace-Bay-09f1365a0b22ab6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Godthab +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Godthab-ec1332af1b1eef51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Goose_Bay +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Goose-Bay-530550394b90c5b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Grenada +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Grenada-95bcdfbf5b9a28ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Guatemala +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Guatemala-28de39c895c89696 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Guayaquil +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Guayaquil-f63114445a87743d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Guyana +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Guyana-6621c6b1e67b467c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Halifax +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Halifax-4c6e2bdd27055093 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Havana +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Havana-136ce26a5bb746c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Inuvik +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Inuvik-c939eebf4f29e143 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Iqaluit +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Iqaluit-ab2aa89bb678fb29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Jamaica +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Jamaica-7ead5c2695d88379 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Juneau +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Juneau-b1498e5bd967cafa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Knox_IN +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Knox-IN-b1d3c56b34732dfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/La_Paz +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-La-Paz-48ed9d69971de18e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Maceio +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Maceio-f4dff9266e70b80f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Managua +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Managua-73d73a1ff4d0997b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Manaus +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Manaus-455d4dd192930f02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Marigot +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Marigot-d27b5432fa844884 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Matamoros +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Matamoros-905af1e8fb2e6084 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Mazatlan +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Mazatlan-6eaa123f1066007e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Mendoza +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Mendoza-6366605ff76644e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Menominee +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Menominee-3a4d29594b3a7711 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Merida +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Merida-2aa437bc3c5546b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Miquelon +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Miquelon-6c763a10ad82213c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Moncton +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Moncton-807b283410ef8e15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Monterrey +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Monterrey-7ca2bd0b44f5d554 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Montreal +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Montreal-e2a50172684722e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Nassau +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Nassau-d87d9e8898812e24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/New_York +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-New-York-9f2605a9cf725d57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Nipigon +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Nipigon-1d0b5bc0869a6553 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Noronha +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Noronha-fd943e89303e6bda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Ojinaga +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Ojinaga-7c15d9fd241c93c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Panama +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Panama-6f9dd849e37bf814 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Phoenix +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Phoenix-11a2267bb6bb43f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Recife +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Recife-edde3ac40ad7844b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Regina +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Regina-51c660e06867c76e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Resolute +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Resolute-383792b66183304e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Rosario +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Rosario-844edda99a41b2bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Santarem +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Santarem-6b021e730bae6a29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Santiago +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Santiago-2c452c47894e94b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Sao_Paulo +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Sao-Paulo-b8b93d8a429a388b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Shiprock +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Shiprock-0b708831d48b9ee9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/St_Johns +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-St-Johns-d239912d3debb20c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/St_Kitts +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-St-Kitts-ae98e6776e138180 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/St_Lucia +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-St-Lucia-087ec5a67db9aa91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/St_Thomas +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-St-Thomas-7db9a547a0b01952 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Tijuana +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Tijuana-0423274d67d39fc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Toronto +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Toronto-6ed05552fad28446 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Tortola +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Tortola-a3c5e9d1f7a6ca14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Vancouver +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Vancouver-13e4fda82b5871ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Virgin +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Virgin-88eb52e1cf076e89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Winnipeg +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Winnipeg-f9337571e58918bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Yakutat +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Yakutat-bb003f47678aa40d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Casey +SPDXID: SPDXRef-File-...share-zoneinfo-right-Antarctica-Casey-54718e9967256a52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Davis +SPDXID: SPDXRef-File-...share-zoneinfo-right-Antarctica-Davis-5eb804051a6161b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Mawson +SPDXID: SPDXRef-File-...share-zoneinfo-right-Antarctica-Mawson-54905f3430f04f41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Palmer +SPDXID: SPDXRef-File-...share-zoneinfo-right-Antarctica-Palmer-9aee00d327d1d44c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Syowa +SPDXID: SPDXRef-File-...share-zoneinfo-right-Antarctica-Syowa-d1a370764ca7856c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Troll +SPDXID: SPDXRef-File-...share-zoneinfo-right-Antarctica-Troll-22d9b6c02588299a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Vostok +SPDXID: SPDXRef-File-...share-zoneinfo-right-Antarctica-Vostok-58ff4f29f91a8f26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Ashkhabad +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Ashkhabad-32c483e27e83a309 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Choibalsan +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Choibalsan-02a98f1ff8b3c8d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Chongqing +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Chongqing-39ea4bda04179646 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Chungking +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Chungking-4ce1cad9a7f5df7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Famagusta +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Famagusta-0fece72f94b879c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Ho_Chi_Minh +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Ho-Chi-Minh-ad07d6993ad6f03b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Hong_Kong +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Hong-Kong-985c6a52e2aa1cdd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Jerusalem +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Jerusalem-c7b597398bf58186 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kamchatka +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Kamchatka-b7cdd6ead0689e94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kathmandu +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Kathmandu-8a5df7e182b0b617 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Krasnoyarsk +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Krasnoyarsk-76ac0f2d0f168ca6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kuala_Lumpur +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Kuala-Lumpur-ee5130b6663a4502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Novokuznetsk +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Novokuznetsk-bc6796345ceefe85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Novosibirsk +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Novosibirsk-db3afa97612c1629 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Phnom_Penh +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Phnom-Penh-8ef08b0e96757f4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Pontianak +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Pontianak-762c830aed047f33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Pyongyang +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Pyongyang-2440bece316519af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Qyzylorda +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Qyzylorda-e05b5dbee2a3bf65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Samarkand +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Samarkand-b84e3047148d0f86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Singapore +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Singapore-b553e03a91486ecf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Ulaanbaatar +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Ulaanbaatar-28bb4ffd64064506 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Ulan_Bator +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Ulan-Bator-765d45eb3e4915c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Vientiane +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Vientiane-9a821800559cfe38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Vladivostok +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Vladivostok-ba30b5ee4bf3045d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Azores +SPDXID: SPDXRef-File-...share-zoneinfo-right-Atlantic-Azores-45c4be6789cc1785 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Bermuda +SPDXID: SPDXRef-File-...share-zoneinfo-right-Atlantic-Bermuda-88048cfe5c84a351 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Canary +SPDXID: SPDXRef-File-...share-zoneinfo-right-Atlantic-Canary-aa9d1491644952cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Faeroe +SPDXID: SPDXRef-File-...share-zoneinfo-right-Atlantic-Faeroe-d8e626f5c3e9adce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Faroe +SPDXID: SPDXRef-File-...share-zoneinfo-right-Atlantic-Faroe-4118b3bccf3ed34e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Madeira +SPDXID: SPDXRef-File-...share-zoneinfo-right-Atlantic-Madeira-41686067185fbac9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Stanley +SPDXID: SPDXRef-File-...share-zoneinfo-right-Atlantic-Stanley-a984459c5e802f4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Currie +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-Currie-20a5e65c7102121e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Darwin +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-Darwin-aca7be17188e3f7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Eucla +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-Eucla-aa559e2c5bf7cd10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Hobart +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-Hobart-b7ed10eb774e2592 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/North +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-North-33fbb27c28647017 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Perth +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-Perth-cd98e6b68f5ff529 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/South +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-South-786fbd4623b07b56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Sydney +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-Sydney-a957118c6a3dfe7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/West +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-West-57ea9e932b4568ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Brazil/DeNoronha +SPDXID: SPDXRef-File-...share-zoneinfo-right-Brazil-DeNoronha-a45ffb795c3b1d0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Atlantic +SPDXID: SPDXRef-File-...share-zoneinfo-right-Canada-Atlantic-81e6cdf18244c129 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Central +SPDXID: SPDXRef-File-...share-zoneinfo-right-Canada-Central-ac8184fcb6861c60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Eastern +SPDXID: SPDXRef-File-...share-zoneinfo-right-Canada-Eastern-4bf06a131f0e4ef7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Mountain +SPDXID: SPDXRef-File-...share-zoneinfo-right-Canada-Mountain-4ee8b3f81d98161f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Pacific +SPDXID: SPDXRef-File-...share-zoneinfo-right-Canada-Pacific-b90f9080613fcccf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Chile/Continental +SPDXID: SPDXRef-File-...share-zoneinfo-right-Chile-Continental-8590f5c6f156abc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Amsterdam +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Amsterdam-9c8b07319094ada8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Andorra +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Andorra-740730165141fd6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Astrakhan +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Astrakhan-cac39eebe9577e81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Belfast +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Belfast-dec4d522eb3bebf3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Belgrade +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Belgrade-02e9cbc2469ab58a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Bratislava +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Bratislava-835f25632da51918 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Brussels +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Brussels-60ca8beba4bb2d3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Bucharest +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Bucharest-17307dff268c109a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Budapest +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Budapest-a8b21370f2d5b534 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Busingen +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Busingen-44ae0f2a3f3826ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Chisinau +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Chisinau-1d41f19b565068af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Copenhagen +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Copenhagen-dfc125df56791e97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Gibraltar +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Gibraltar-e1b95b8bd4958133 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Guernsey +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Guernsey-1767270ff8c46a99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Helsinki +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Helsinki-4f70d6951bd368aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Istanbul +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Istanbul-cbdebb38eb204d78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Ljubljana +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Ljubljana-238c0461d1bde231 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Luxembourg +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Luxembourg-ad07402a6e95abe6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Mariehamn +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Mariehamn-c0c7f0920c217d73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Nicosia +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Nicosia-2c4d89205bf81989 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Podgorica +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Podgorica-7df6422067177ef7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/San_Marino +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-San-Marino-44d653fc10d35699 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Sarajevo +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Sarajevo-19827dc071b2aefc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Saratov +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Saratov-05eca189f07bbd5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Simferopol +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Simferopol-0d956028838b4d14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Stockholm +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Stockholm-8baabde4ebd42a26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Tallinn +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Tallinn-981700920bb6ca4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Tiraspol +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Tiraspol-2ebf573548ca15c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Ulyanovsk +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Ulyanovsk-ca530d84f6d17f4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Uzhgorod +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Uzhgorod-178bd0ea370ee3ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Vatican +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Vatican-17da8b75feb3435e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Vilnius +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Vilnius-df9ee898f3ddfdad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Volgograd +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Volgograd-f7404b525877f069 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Zaporozhye +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Zaporozhye-cad0f0a33f2ab0e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Christmas +SPDXID: SPDXRef-File-...share-zoneinfo-right-Indian-Christmas-ec519075f3bdf8d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Kerguelen +SPDXID: SPDXRef-File-...share-zoneinfo-right-Indian-Kerguelen-adac339c5fe796ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Maldives +SPDXID: SPDXRef-File-...share-zoneinfo-right-Indian-Maldives-5dbf504a642cc576 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Mauritius +SPDXID: SPDXRef-File-...share-zoneinfo-right-Indian-Mauritius-d399c8e48ad68bbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Mayotte +SPDXID: SPDXRef-File-...share-zoneinfo-right-Indian-Mayotte-12d19dab29b9555a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Reunion +SPDXID: SPDXRef-File-...share-zoneinfo-right-Indian-Reunion-09dda6cc2a053bf7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Mexico/BajaNorte +SPDXID: SPDXRef-File-...share-zoneinfo-right-Mexico-BajaNorte-930fc6a190a03c44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Mexico/BajaSur +SPDXID: SPDXRef-File-...share-zoneinfo-right-Mexico-BajaSur-ec1a1f251f085d6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Mexico/General +SPDXID: SPDXRef-File-...share-zoneinfo-right-Mexico-General-aba4f4115601b339 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Auckland +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Auckland-7363904f9180f056 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Chatham +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Chatham-fad5a1156e5e40a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Easter +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Easter-a567892ebe04bf2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Enderbury +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Enderbury-db4a84238f4ca2a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Fakaofo +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Fakaofo-388329d0b9ca83f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Funafuti +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Funafuti-ffac86c666b9298e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Galapagos +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Galapagos-bbbe0dc1b0f1b072 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Gambier +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Gambier-1122ee3d3cd41963 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Honolulu +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Honolulu-8649597e0f5497e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Johnston +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Johnston-d4b7e226ec564841 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Kanton +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Kanton-38dbe121a0bcf4b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Kosrae +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Kosrae-cbcc38e041551cad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Kwajalein +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Kwajalein-db6256e8e65940cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Majuro +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Majuro-9d36ee43c31e7ce4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Marquesas +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Marquesas-1ab29fa32ad6dec1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Midway +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Midway-74503a3af204f929 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Norfolk +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Norfolk-e719f705636d263c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Noumea +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Noumea-6fb59859fd17c85a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Pago_Pago +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Pago-Pago-ee7aa1a64911f8de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Pitcairn +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Pitcairn-af5f2b2eecd6ba11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Pohnpei +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Pohnpei-1ec6af00d02c10a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Ponape +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Ponape-01a39b3d385de6de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Rarotonga +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Rarotonga-24997e138e66693d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Saipan +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Saipan-294d1decd61097dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Tahiti +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Tahiti-90922de3e0fff3b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Tarawa +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Tarawa-5f4278105172be5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Tongatapu +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Tongatapu-4863c3759bac9c01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Wallis +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Wallis-0891036530ab5e84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/East-Indiana +SPDXID: SPDXRef-File-...share-zoneinfo-right-US-East-Indiana-912250e96f3d9099 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Indiana-Starke +SPDXID: SPDXRef-File-...share-zoneinfo-right-US-Indiana-Starke-c1c983a553f31543 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_coredumpctl +SPDXID: SPDXRef-File-...share-zsh-site-functions--coredumpctl-1fe9bfff00e83111 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_hostnamectl +SPDXID: SPDXRef-File-...share-zsh-site-functions--hostnamectl-e2fbfc56d0f42fea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_journalctl +SPDXID: SPDXRef-File-...share-zsh-site-functions--journalctl-cb1da11ec6c255b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_localectl +SPDXID: SPDXRef-File-...share-zsh-site-functions--localectl-35465143acd5d29d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_sd_machines +SPDXID: SPDXRef-File-...share-zsh-site-functions--sd-machines-6d1687fa2784b026 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemctl +SPDXID: SPDXRef-File-...share-zsh-site-functions--systemctl-d20036f360edbe0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemd-run +SPDXID: SPDXRef-File-...share-zsh-site-functions--systemd-run-77c9269387d4b1eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_timedatectl +SPDXID: SPDXRef-File-...share-zsh-site-functions--timedatectl-4a5db7a10ba435fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/sharedctypes.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sharedctypes.cpython-36.opt-1.pyc-19b7a09704366c4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/sharedctypes.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sharedctypes.cpython-36.opt-2.pyc-b51a755b1d57a75f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/sharedctypes.cpython-36.pyc +SPDXID: SPDXRef-File-...sharedctypes.cpython-36.pyc-fa3c2416bfaaac42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shelve.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...shelve.cpython-36.opt-1.pyc-f4d3182856f7d8be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shelve.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...shelve.cpython-36.opt-2.pyc-21b7fbd65fcb57a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jis_2004.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...shift-jis-2004.cpython-36.opt-1.pyc-d3e6332273e4f864 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jis_2004.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...shift-jis-2004.cpython-36.opt-2.pyc-3155bbb4c2427683 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jis_2004.cpython-36.pyc +SPDXID: SPDXRef-File-...shift-jis-2004.cpython-36.pyc-5b590a1a9ec979f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jis.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...shift-jis.cpython-36.opt-1.pyc-c38a15144f86e829 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jis.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...shift-jis.cpython-36.opt-2.pyc-bbd5e77c39423cb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jisx0213.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...shift-jisx0213.cpython-36.opt-1.pyc-1c5639d85e4f5150 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jisx0213.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...shift-jisx0213.cpython-36.opt-2.pyc-7b7688733e9033c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jisx0213.cpython-36.pyc +SPDXID: SPDXRef-File-...shift-jisx0213.cpython-36.pyc-1cc042796016db4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shutil.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...shutil.cpython-36.opt-1.pyc-8af1e2dd685fadaa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shutil.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...shutil.cpython-36.opt-2.pyc-7fdd1513b6a58fae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/__pycache__/mode.cpython-36.pyc +SPDXID: SPDXRef-File-...sig---pycache---mode.cpython-36.pyc-81479874552ee83e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/signal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...signal.cpython-36.opt-1.pyc-c79968342f25f1b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/signal.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...signal.cpython-36.opt-2.pyc-379d23dedafae02a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/signals.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...signals.cpython-36.opt-1.pyc-bd529ac6eaa7af6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/signals.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...signals.cpython-36.opt-2.pyc-e0b177af2f13918a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/sigsum.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sigsum.cpython-36.opt-1.pyc-2cfbf0eafb825904 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/simple_server.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...simple-server.cpython-36.opt-1.pyc-e5f3f8faa6e2b378 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/simple_server.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...simple-server.cpython-36.opt-2.pyc-243d500c2c992944 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/simple_server.cpython-36.pyc +SPDXID: SPDXRef-File-...simple-server.cpython-36.pyc-736f186640fdf2f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/_dbus_bindings.so +SPDXID: SPDXRef-File-...site-packages--dbus-bindings.so-9713811758c46231 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/_dbus_glib_bindings.so +SPDXID: SPDXRef-File-...site-packages--dbus-glib-bindings.so-9eaf3ff26456fd27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__init__.py +SPDXID: SPDXRef-File-...site-packages-chardet---init--.py-b233a87ee2864281 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/big5freq.py +SPDXID: SPDXRef-File-...site-packages-chardet-big5freq.py-785b984e7f856e1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/big5prober.py +SPDXID: SPDXRef-File-...site-packages-chardet-big5prober.py-d7b24a180a3dcb41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/charsetprober.py +SPDXID: SPDXRef-File-...site-packages-chardet-charsetprober.py-9eccef2b20601d1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/cli/__init__.py +SPDXID: SPDXRef-File-...site-packages-chardet-cli---init--.py-3f2d107ac70bad08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/compat.py +SPDXID: SPDXRef-File-...site-packages-chardet-compat.py-df58ff3dfbebeba8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/cp949prober.py +SPDXID: SPDXRef-File-...site-packages-chardet-cp949prober.py-14ecbdf95218eeca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/enums.py +SPDXID: SPDXRef-File-...site-packages-chardet-enums.py-bd3955311fc5f4f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/escprober.py +SPDXID: SPDXRef-File-...site-packages-chardet-escprober.py-735974d53e13832a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/escsm.py +SPDXID: SPDXRef-File-...site-packages-chardet-escsm.py-b748feed553f81f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/eucjpprober.py +SPDXID: SPDXRef-File-...site-packages-chardet-eucjpprober.py-48833a787df52f17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/euckrfreq.py +SPDXID: SPDXRef-File-...site-packages-chardet-euckrfreq.py-117b36287525800d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/euckrprober.py +SPDXID: SPDXRef-File-...site-packages-chardet-euckrprober.py-23f0db76aab5b05d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/euctwfreq.py +SPDXID: SPDXRef-File-...site-packages-chardet-euctwfreq.py-7836f65cc043a2f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/euctwprober.py +SPDXID: SPDXRef-File-...site-packages-chardet-euctwprober.py-f9504d477e9fa2d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/gb2312freq.py +SPDXID: SPDXRef-File-...site-packages-chardet-gb2312freq.py-f79fc118407a4044 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/gb2312prober.py +SPDXID: SPDXRef-File-...site-packages-chardet-gb2312prober.py-cb6d1eb9bd047000 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/hebrewprober.py +SPDXID: SPDXRef-File-...site-packages-chardet-hebrewprober.py-b8b21a721b4afba9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/jisfreq.py +SPDXID: SPDXRef-File-...site-packages-chardet-jisfreq.py-92478905f1bfa757 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/jpcntx.py +SPDXID: SPDXRef-File-...site-packages-chardet-jpcntx.py-9ce8763aa56e3a0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/langthaimodel.py +SPDXID: SPDXRef-File-...site-packages-chardet-langthaimodel.py-5ec2d1d9b7c66d69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/latin1prober.py +SPDXID: SPDXRef-File-...site-packages-chardet-latin1prober.py-1edc209670cd00a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/mbcssm.py +SPDXID: SPDXRef-File-...site-packages-chardet-mbcssm.py-f3d53240b96685d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/sjisprober.py +SPDXID: SPDXRef-File-...site-packages-chardet-sjisprober.py-bda4de4f382e401c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/utf8prober.py +SPDXID: SPDXRef-File-...site-packages-chardet-utf8prober.py-d7b4ea1ade196b51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/version.py +SPDXID: SPDXRef-File-...site-packages-chardet-version.py-b88482637a98a3b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__init__.py +SPDXID: SPDXRef-File-...site-packages-cloud-what---init--.py-d4db3db5ae02e54d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/provider.py +SPDXID: SPDXRef-File-...site-packages-cloud-what-provider.py-fbc5c1025ff902e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/setup.py +SPDXID: SPDXRef-File-...site-packages-cloud-what-setup.py-19ffdae447de5c09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__init__.py +SPDXID: SPDXRef-File-...site-packages-dateutil---init--.py-4aea0d87a0b8aeb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/_common.py +SPDXID: SPDXRef-File-...site-packages-dateutil--common.py-8928a87ee3f4305e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/_version.py +SPDXID: SPDXRef-File-...site-packages-dateutil--version.py-1f3270bd970f50fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/easter.py +SPDXID: SPDXRef-File-...site-packages-dateutil-easter.py-1505fb7a62adb01b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/parser.py +SPDXID: SPDXRef-File-...site-packages-dateutil-parser.py-3a793d83ff7d424a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/rrule.py +SPDXID: SPDXRef-File-...site-packages-dateutil-rrule.py-d75305a28d0d4ddc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__init__.py +SPDXID: SPDXRef-File-...site-packages-dateutil-tz---init--.py-de9175af3627488e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/_common.py +SPDXID: SPDXRef-File-...site-packages-dateutil-tz--common.py-ced2bf09e199500a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/tz.py +SPDXID: SPDXRef-File-...site-packages-dateutil-tz-tz.py-cfa2bd214f6eb5f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/win.py +SPDXID: SPDXRef-File-...site-packages-dateutil-tz-win.py-9b194251bbb719b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tzwin.py +SPDXID: SPDXRef-File-...site-packages-dateutil-tzwin.py-3da187ff439e81a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__init__.py +SPDXID: SPDXRef-File-...site-packages-dbus---init--.py-0cb76e8e6115c452 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/_compat.py +SPDXID: SPDXRef-File-...site-packages-dbus--compat.py-8da49a558aeeacbe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/connection.py +SPDXID: SPDXRef-File-...site-packages-dbus-connection.py-1a1dae64eb98bc88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/decorators.py +SPDXID: SPDXRef-File-...site-packages-dbus-decorators.py-af076c8ebcd08032 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/exceptions.py +SPDXID: SPDXRef-File-...site-packages-dbus-exceptions.py-12d03fb4782bee36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/gi_service.py +SPDXID: SPDXRef-File-...site-packages-dbus-gi-service.py-475347b057b0c7e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/lowlevel.py +SPDXID: SPDXRef-File-...site-packages-dbus-lowlevel.py-6ff69df20019f4f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/mainloop/glib.py +SPDXID: SPDXRef-File-...site-packages-dbus-mainloop-glib.py-eb2d0ab7041f3b56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/proxies.py +SPDXID: SPDXRef-File-...site-packages-dbus-proxies.py-b5ea491d65f20dc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/service.py +SPDXID: SPDXRef-File-...site-packages-dbus-service.py-e4813acf4686447f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__init__.py +SPDXID: SPDXRef-File-...site-packages-dnf---init--.py-6c5355011fa0f007 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/callback.py +SPDXID: SPDXRef-File-...site-packages-dnf-callback.py-51e3f5f61a64ac78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__init__.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli---init--.py-05822f7e73948350 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/aliases.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-aliases.py-6afb6745a44b8a95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/mark.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-commands-mark.py-182a7e144ce5ea52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/swap.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-commands-swap.py-7c0ff1f7784d886c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/demand.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-demand.py-6413ffa869811762 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/format.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-format.py-d3cc77b0e5ef5dba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/main.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-main.py-f8d45a36c9bc659d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/option_parser.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-option-parser.py-6f8bc26954c5b3ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/output.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-output.py-dbf356f8e33953f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/progress.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-progress.py-b9986da631339c8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/term.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-term.py-819a8a5ea7c2b28d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/utils.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-utils.py-f4a02f4dd2839cc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__init__.py +SPDXID: SPDXRef-File-...site-packages-dnf-conf---init--.py-cee531368360561d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/config.py +SPDXID: SPDXRef-File-...site-packages-dnf-conf-config.py-431e9bcf6e0aa7e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/read.py +SPDXID: SPDXRef-File-...site-packages-dnf-conf-read.py-29e079893cdf14ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/__init__.py +SPDXID: SPDXRef-File-...site-packages-dnf-db---init--.py-2787429543e9434f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/group.py +SPDXID: SPDXRef-File-...site-packages-dnf-db-group.py-6432680506170247 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/history.py +SPDXID: SPDXRef-File-...site-packages-dnf-db-history.py-350416ec80f4e833 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/exceptions.py +SPDXID: SPDXRef-File-...site-packages-dnf-exceptions.py-5466e17bb6d714b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/match_counter.py +SPDXID: SPDXRef-File-...site-packages-dnf-match-counter.py-b7062421359d830c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/__init__.py +SPDXID: SPDXRef-File-...site-packages-dnf-module---init--.py-03eeede8583196dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/exceptions.py +SPDXID: SPDXRef-File-...site-packages-dnf-module-exceptions.py-df87253c2daa0724 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/persistor.py +SPDXID: SPDXRef-File-...site-packages-dnf-persistor.py-36ef8ff52871a085 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/builddep.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-builddep.py-8182d904fabf2296 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/changelog.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-changelog.py-69709b3c978e7ba7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/copr.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-copr.py-56ff46dbfd2e5613 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/debug.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-debug.py-82c0252439103f56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/download.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-download.py-54a8e2b04d83cfe1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/repodiff.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-repodiff.py-8fad5bd22d8f5bb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/repograph.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-repograph.py-168c2db14e9d296c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/reposync.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-reposync.py-a2b94040bb2fa621 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/repodict.py +SPDXID: SPDXRef-File-...site-packages-dnf-repodict.py-bb6a43a34d964abe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__init__.py +SPDXID: SPDXRef-File-...site-packages-dnf-rpm---init--.py-5d5556a6e9691ccd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/connection.py +SPDXID: SPDXRef-File-...site-packages-dnf-rpm-connection.py-d6193c104bfe9f26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/error.py +SPDXID: SPDXRef-File-...site-packages-dnf-rpm-error.py-4c0281d9b80caf39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/miscutils.py +SPDXID: SPDXRef-File-...site-packages-dnf-rpm-miscutils.py-57cbebdce76c91cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/transaction.py +SPDXID: SPDXRef-File-...site-packages-dnf-rpm-transaction.py-4d844137c07f992c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/selector.py +SPDXID: SPDXRef-File-...site-packages-dnf-selector.py-ee7c9fc0a48027cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/transaction_sr.py +SPDXID: SPDXRef-File-...site-packages-dnf-transaction-sr.py-c45158a768e1933f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/transaction.py +SPDXID: SPDXRef-File-...site-packages-dnf-transaction.py-738a20cf4c5f8f96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/__init__.py +SPDXID: SPDXRef-File-...site-packages-dnf-yum---init--.py-5393d7ae28d7212a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/misc.py +SPDXID: SPDXRef-File-...site-packages-dnf-yum-misc.py-e898678338845a39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/rpmtrans.py +SPDXID: SPDXRef-File-...site-packages-dnf-yum-rpmtrans.py-c9f8ccc3a41bdc28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/easy_install.py +SPDXID: SPDXRef-File-...site-packages-easy-install.py-42f389ec35f3ea32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/_constants.py +SPDXID: SPDXRef-File-...site-packages-gi--constants.py-8226255dca65c16b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/_ossighelper.py +SPDXID: SPDXRef-File-...site-packages-gi--ossighelper.py-72ab285a8e0a5070 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/_propertyhelper.py +SPDXID: SPDXRef-File-...site-packages-gi--propertyhelper.py-72897f3152673167 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/_signalhelper.py +SPDXID: SPDXRef-File-...site-packages-gi--signalhelper.py-53b3d080702ae2f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/docstring.py +SPDXID: SPDXRef-File-...site-packages-gi-docstring.py-d18938519e168eec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__init__.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides---init--.py-7bee3df00f17b653 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/GLib.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides-GLib.py-719484b8576568ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/GObject.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides-GObject.py-cc08ac9cf7589868 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/Gdk.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides-Gdk.py-8979ff1a446a8872 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/Gio.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides-Gio.py-9182aa0368982269 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/Gtk.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides-Gtk.py-38260fa4703685a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/Pango.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides-Pango.py-4a802b75426e372c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/keysyms.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides-keysyms.py-cf92e44a71621f62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/pygtkcompat.py +SPDXID: SPDXRef-File-...site-packages-gi-pygtkcompat.py-5bcce6bcaa91f4f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__init__.py +SPDXID: SPDXRef-File-...site-packages-gpg---init--.py-c3d733d6f371e99a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/callbacks.py +SPDXID: SPDXRef-File-...site-packages-gpg-callbacks.py-e65cbced916bd891 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/create.py +SPDXID: SPDXRef-File-...site-packages-gpg-constants-create.py-b4e61a8720c7daaf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/event.py +SPDXID: SPDXRef-File-...site-packages-gpg-constants-event.py-f4771a9d5d811f44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/keysign.py +SPDXID: SPDXRef-File-...site-packages-gpg-constants-keysign.py-097bb99af31d4f10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/md.py +SPDXID: SPDXRef-File-...site-packages-gpg-constants-md.py-e7120909c9c1cc8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/pk.py +SPDXID: SPDXRef-File-...site-packages-gpg-constants-pk.py-82ecf9c7c90cb292 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sigsum.py +SPDXID: SPDXRef-File-...site-packages-gpg-constants-sigsum.py-0546504b1c11cdc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/status.py +SPDXID: SPDXRef-File-...site-packages-gpg-constants-status.py-0c56ce162cadf1e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/__init__.py +SPDXID: SPDXRef-File-...site-packages-hawkey---init--.py-715cba7d67cd2ba1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/_hawkey.so +SPDXID: SPDXRef-File-...site-packages-hawkey--hawkey.so-0cccbb25cf7ece8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/test/__init__.py +SPDXID: SPDXRef-File-...site-packages-hawkey-test---init--.py-d402b2db36795682 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__init__.py +SPDXID: SPDXRef-File-...site-packages-idna---init--.py-b81d853b86b76688 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/idnadata.py +SPDXID: SPDXRef-File-...site-packages-idna-idnadata.py-99639ddf43521fbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/intranges.py +SPDXID: SPDXRef-File-...site-packages-idna-intranges.py-8c562e1a9d58cf4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/uts46data.py +SPDXID: SPDXRef-File-...site-packages-idna-uts46data.py-137fb2036a30eb3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__init__.py +SPDXID: SPDXRef-File-...site-packages-iniparse---init--.py-5063a2a1f5310ffe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/compat.py +SPDXID: SPDXRef-File-...site-packages-iniparse-compat.py-12654e2e0bd76f00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/config.py +SPDXID: SPDXRef-File-...site-packages-iniparse-config.py-ae01e426b744ae46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/configparser.py +SPDXID: SPDXRef-File-...site-packages-iniparse-configparser.py-c4508a868fc3cb32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/ini.py +SPDXID: SPDXRef-File-...site-packages-iniparse-ini.py-b312f411894e7d3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/utils.py +SPDXID: SPDXRef-File-...site-packages-iniparse-utils.py-39443a08a76b3c48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps/__init__.py +SPDXID: SPDXRef-File-...site-packages-libcomps---init--.py-8cf67f3548dd05ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps/_libpycomps.so +SPDXID: SPDXRef-File-...site-packages-libcomps--libpycomps.so-e9eed799c4e41c3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__init__.py +SPDXID: SPDXRef-File-...site-packages-libdnf---init--.py-1f3e59cc675b05f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_common_types.so +SPDXID: SPDXRef-File-...site-packages-libdnf--common-types.so-c6d468b9854a490f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_conf.so +SPDXID: SPDXRef-File-...site-packages-libdnf--conf.so-3fd167c7e4c2cf66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_error.so +SPDXID: SPDXRef-File-...site-packages-libdnf--error.so-dd2ce70ad6a9ed5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_module.so +SPDXID: SPDXRef-File-...site-packages-libdnf--module.so-7fd0f53da4471d4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_repo.so +SPDXID: SPDXRef-File-...site-packages-libdnf--repo.so-7871c95e0e7d2026 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_smartcols.so +SPDXID: SPDXRef-File-...site-packages-libdnf--smartcols.so-745cb2bdd7bb210c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_transaction.so +SPDXID: SPDXRef-File-...site-packages-libdnf--transaction.so-25247fb5d5e7d603 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_utils.so +SPDXID: SPDXRef-File-...site-packages-libdnf--utils.so-4167da513290feb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/common_types.py +SPDXID: SPDXRef-File-...site-packages-libdnf-common-types.py-6f1099127a2ca0d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/error.py +SPDXID: SPDXRef-File-...site-packages-libdnf-error.py-643468cd4df07ebe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/module.py +SPDXID: SPDXRef-File-...site-packages-libdnf-module.py-9dc08549b3815a4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/smartcols.py +SPDXID: SPDXRef-File-...site-packages-libdnf-smartcols.py-2b2f98c09e70acc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/transaction.py +SPDXID: SPDXRef-File-...site-packages-libdnf-transaction.py-460fbc3f07d5d042 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/utils.py +SPDXID: SPDXRef-File-...site-packages-libdnf-utils.py-94c4eac4dfe87b7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/librepo/__init__.py +SPDXID: SPDXRef-File-...site-packages-librepo---init--.py-77a6b3c15c888046 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/librepo/_librepo.so +SPDXID: SPDXRef-File-...site-packages-librepo--librepo.so-b1fda36290cdc11a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/__init__.py +SPDXID: SPDXRef-File-...site-packages-pygtkcompat---init--.py-64c4475f98aded71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__init__.py +SPDXID: SPDXRef-File-...site-packages-rct---init--.py-85f13e3d14c6f8f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/cert_commands.py +SPDXID: SPDXRef-File-...site-packages-rct-cert-commands.py-937f090a2eb521a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/commands.py +SPDXID: SPDXRef-File-...site-packages-rct-commands.py-9e0ca07b091f93d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/manifest_commands.py +SPDXID: SPDXRef-File-...site-packages-rct-manifest-commands.py-18ee3ac68980c797 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/printing.py +SPDXID: SPDXRef-File-...site-packages-rct-printing.py-10214f9bad60846e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__init__.py +SPDXID: SPDXRef-File-...site-packages-requests---init--.py-103baf4281f1f7f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__version__.py +SPDXID: SPDXRef-File-...site-packages-requests---version--.py-9954b72fc7e766a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/adapters.py +SPDXID: SPDXRef-File-...site-packages-requests-adapters.py-d5254ff5f86f0ce3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/api.py +SPDXID: SPDXRef-File-...site-packages-requests-api.py-334b45d5a91d61eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/auth.py +SPDXID: SPDXRef-File-...site-packages-requests-auth.py-c20b0c9cf54c7928 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/certs.py +SPDXID: SPDXRef-File-...site-packages-requests-certs.py-861f957628c434ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/compat.py +SPDXID: SPDXRef-File-...site-packages-requests-compat.py-8a62885b205eb10b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/cookies.py +SPDXID: SPDXRef-File-...site-packages-requests-cookies.py-ed6ba72091c2026f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/exceptions.py +SPDXID: SPDXRef-File-...site-packages-requests-exceptions.py-eb76c3800314c510 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/help.py +SPDXID: SPDXRef-File-...site-packages-requests-help.py-26056549dfa9763f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/hooks.py +SPDXID: SPDXRef-File-...site-packages-requests-hooks.py-43393de073c9ef9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/models.py +SPDXID: SPDXRef-File-...site-packages-requests-models.py-c296cb05da1d9a00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/packages.py +SPDXID: SPDXRef-File-...site-packages-requests-packages.py-720121ab3860f581 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/sessions.py +SPDXID: SPDXRef-File-...site-packages-requests-sessions.py-691a8050eb317b1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/status_codes.py +SPDXID: SPDXRef-File-...site-packages-requests-status-codes.py-dd530938f5685da7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/structures.py +SPDXID: SPDXRef-File-...site-packages-requests-structures.py-23542046f2e11dd9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/utils.py +SPDXID: SPDXRef-File-...site-packages-requests-utils.py-d437bf78b7df01bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__init__.py +SPDXID: SPDXRef-File-...site-packages-rhsm---init--.py-2ca38ae01e5c8f4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/bitstream.py +SPDXID: SPDXRef-File-...site-packages-rhsm-bitstream.py-a4765f588f5d7897 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/certificate.py +SPDXID: SPDXRef-File-...site-packages-rhsm-certificate.py-a4e189ddac998dc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/certificate2.py +SPDXID: SPDXRef-File-...site-packages-rhsm-certificate2.py-ab1552628de260a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/connection.py +SPDXID: SPDXRef-File-...site-packages-rhsm-connection.py-3f1cc26b529013af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/__init__.py +SPDXID: SPDXRef-File-...site-packages-rhsm-debug---init--.py-3fcbd5443c7f8fc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/cli.py +SPDXID: SPDXRef-File-...site-packages-rhsm-debug-cli.py-8f4c4e2995a920f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/huffman.py +SPDXID: SPDXRef-File-...site-packages-rhsm-huffman.py-f5c0a5ad07e2b730 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/logutil.py +SPDXID: SPDXRef-File-...site-packages-rhsm-logutil.py-2a10b36747e053f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/m2cryptohttp.py +SPDXID: SPDXRef-File-...site-packages-rhsm-m2cryptohttp.py-36975be258600118 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/m2cryptossl.py +SPDXID: SPDXRef-File-...site-packages-rhsm-m2cryptossl.py-08c311aa8596c8df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/ourjson.py +SPDXID: SPDXRef-File-...site-packages-rhsm-ourjson.py-c8b160808df8a8e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/pathtree.py +SPDXID: SPDXRef-File-...site-packages-rhsm-pathtree.py-0cf57ed033cfd574 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/profile.py +SPDXID: SPDXRef-File-...site-packages-rhsm-profile.py-32c453b713b47926 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/__init__.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib---init--.py-1ca1b18a6eb8a387 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/candlepin/api.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-candlepin-api.py-895f6ac94a5f2241 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__init__.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-dbus---init--.py-15b5fdc781ac1f6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/server.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-dbus-server.py-636fc8fecd2e507c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/util.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-dbus-util.py-61f1ddff176dc560 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/all.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-all.py-c5a3deacab657085 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/cleanup.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-cleanup.py-fb4960d89460175b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/cpuinfo.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-cpuinfo.py-d07aad3916a1b747 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/custom.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-custom.py-6e01cc68d29b34ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/dmiinfo.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-dmiinfo.py-a3a43fdd567524f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/hwprobe.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-hwprobe.py-24b252969bdd0062 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/kpatch.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-kpatch.py-0bbbcf6df73be708 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/virt.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-virt.py-2f782d18ac071c04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/file_monitor.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-file-monitor.py-b17a556420f5482d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/__init__.py +SPDXID: SPDXRef-File-...site-packages-rpm---init--.py-1e2144e761f14abe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/transaction.py +SPDXID: SPDXRef-File-...site-packages-rpm-transaction.py-12644e8588f79c53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__init__.py +SPDXID: SPDXRef-File-...site-packages-setuptools---init--.py-c5a4bb2af7efe9d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/build_meta.py +SPDXID: SPDXRef-File-...site-packages-setuptools-build-meta.py-fc04745fa4e287e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/config.py +SPDXID: SPDXRef-File-...site-packages-setuptools-config.py-f7313d5d1b853cb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/dep_util.py +SPDXID: SPDXRef-File-...site-packages-setuptools-dep-util.py-5abe4089bf7ffdb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/depends.py +SPDXID: SPDXRef-File-...site-packages-setuptools-depends.py-5fede8f015baecc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/dist.py +SPDXID: SPDXRef-File-...site-packages-setuptools-dist.py-710aaafe8d63d136 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/extension.py +SPDXID: SPDXRef-File-...site-packages-setuptools-extension.py-9abef593e0116135 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/glibc.py +SPDXID: SPDXRef-File-...site-packages-setuptools-glibc.py-c9079f8a7d643294 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/glob.py +SPDXID: SPDXRef-File-...site-packages-setuptools-glob.py-1aa6201e77bc7244 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/launch.py +SPDXID: SPDXRef-File-...site-packages-setuptools-launch.py-8999122ec2cd656c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/lib2to3_ex.py +SPDXID: SPDXRef-File-...site-packages-setuptools-lib2to3-ex.py-755649c78846b274 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/monkey.py +SPDXID: SPDXRef-File-...site-packages-setuptools-monkey.py-ace93678954727d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/msvc.py +SPDXID: SPDXRef-File-...site-packages-setuptools-msvc.py-b82883d5a37fb26b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/namespaces.py +SPDXID: SPDXRef-File-...site-packages-setuptools-namespaces.py-1fb67e475f11f762 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/pep425tags.py +SPDXID: SPDXRef-File-...site-packages-setuptools-pep425tags.py-6b9493eb0bc0137c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/py27compat.py +SPDXID: SPDXRef-File-...site-packages-setuptools-py27compat.py-b3013b87cf63df68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/py31compat.py +SPDXID: SPDXRef-File-...site-packages-setuptools-py31compat.py-b250d8ffcfffe034 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/py33compat.py +SPDXID: SPDXRef-File-...site-packages-setuptools-py33compat.py-3280f492baa90485 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/py36compat.py +SPDXID: SPDXRef-File-...site-packages-setuptools-py36compat.py-52738668879b36ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/sandbox.py +SPDXID: SPDXRef-File-...site-packages-setuptools-sandbox.py-2c76bd9f279009bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/script.tmpl +SPDXID: SPDXRef-File-...site-packages-setuptools-script.tmpl-53363999b650fce6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/site-patch.py +SPDXID: SPDXRef-File-...site-packages-setuptools-site-patch.py-c73aeebc10b99328 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/version.py +SPDXID: SPDXRef-File-...site-packages-setuptools-version.py-51c4b0280afb78a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/wheel.py +SPDXID: SPDXRef-File-...site-packages-setuptools-wheel.py-04b4752a1d746162 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/sockshandler.py +SPDXID: SPDXRef-File-...site-packages-sockshandler.py-cd3fe14814ee7495 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__init__.py +SPDXID: SPDXRef-File-...site-packages-syspurpose---init--.py-31cd169f5e08bef9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/cli.py +SPDXID: SPDXRef-File-...site-packages-syspurpose-cli.py-6189f593eb0c22fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/files.py +SPDXID: SPDXRef-File-...site-packages-syspurpose-files.py-cfc0a00ca4348a64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/i18n.py +SPDXID: SPDXRef-File-...site-packages-syspurpose-i18n.py-dec7076f1952259c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/main.py +SPDXID: SPDXRef-File-...site-packages-syspurpose-main.py-f38f10ebc17098e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/utils.py +SPDXID: SPDXRef-File-...site-packages-syspurpose-utils.py-ed3d1e293a2470c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/__init__.py +SPDXID: SPDXRef-File-...site-packages-systemd---init--.py-e8a1a47eabe519ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/daemon.py +SPDXID: SPDXRef-File-...site-packages-systemd-daemon.py-74bb220df3378134 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/journal.py +SPDXID: SPDXRef-File-...site-packages-systemd-journal.py-ee6f43a8668bc749 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__init__.py +SPDXID: SPDXRef-File-...site-packages-urllib3---init--.py-6e95091b1a74d0fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/_collections.py +SPDXID: SPDXRef-File-...site-packages-urllib3--collections.py-dfe560765f37456e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/connection.py +SPDXID: SPDXRef-File-...site-packages-urllib3-connection.py-ec54e8f24dccd219 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/socks.py +SPDXID: SPDXRef-File-...site-packages-urllib3-contrib-socks.py-caaac9b3160c465f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/exceptions.py +SPDXID: SPDXRef-File-...site-packages-urllib3-exceptions.py-8e2b419d68e43120 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/fields.py +SPDXID: SPDXRef-File-...site-packages-urllib3-fields.py-dace5cb0cad0e0ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/filepost.py +SPDXID: SPDXRef-File-...site-packages-urllib3-filepost.py-d1321068bc21254f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/poolmanager.py +SPDXID: SPDXRef-File-...site-packages-urllib3-poolmanager.py-0bb8ea5c22c6b1d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/request.py +SPDXID: SPDXRef-File-...site-packages-urllib3-request.py-cf60990b84de5105 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/response.py +SPDXID: SPDXRef-File-...site-packages-urllib3-response.py-304b130e478a2dd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__init__.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util---init--.py-02267dabdc6d35af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/queue.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-queue.py-db8d21a104831045 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/request.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-request.py-e7165c770f79b6f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/response.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-response.py-927503beebedcda5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/retry.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-retry.py-2fa73c332acc98a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/ssl_.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-ssl-.py-d2d0f058fe01887b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/timeout.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-timeout.py-8b362937880f2a4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/url.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-url.py-f4fe625f2fae7936 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/wait.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-wait.py-729bf9a94015367d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/site-patch.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...site-patch.cpython-36.opt-1.pyc-25ccdda4735656e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/DESCRIPTION.rst +SPDXID: SPDXRef-File-...six-1.11.0.dist-info-DESCRIPTION.rst-d26a92ac05c8d2c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/INSTALLER +SPDXID: SPDXRef-File-...six-1.11.0.dist-info-INSTALLER-81e44b435428b1fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/METADATA +SPDXID: SPDXRef-File-...six-1.11.0.dist-info-METADATA-8762652a2c9d4459 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/RECORD +SPDXID: SPDXRef-File-...six-1.11.0.dist-info-RECORD-620d2cb46f556c95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/WHEEL +SPDXID: SPDXRef-File-...six-1.11.0.dist-info-WHEEL-2a0952a3d177f8b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/metadata.json +SPDXID: SPDXRef-File-...six-1.11.0.dist-info-metadata.json-994f66f4e5fca615 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/top_level.txt +SPDXID: SPDXRef-File-...six-1.11.0.dist-info-top-level.txt-e266b79b516ae32c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/sjisprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sjisprober.cpython-36.opt-1.pyc-64dcd5d6aba17bf0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/smartcols.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...smartcols.cpython-36.opt-1.pyc-98415a4e227cdfda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/smtplib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...smtplib.cpython-36.opt-1.pyc-7ef5365ea420a576 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/smtplib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...smtplib.cpython-36.opt-2.pyc-d753247ccc2b6b2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sndhdr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sndhdr.cpython-36.opt-1.pyc-7163ee0a75c82ada +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sndhdr.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sndhdr.cpython-36.opt-2.pyc-e4a84615f4ac9238 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/socket.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...socket.cpython-36.opt-1.pyc-3b74b5252437c637 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/socket.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...socket.cpython-36.opt-2.pyc-1f56a0eb7b26a4a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/socketserver.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...socketserver.cpython-36.opt-1.pyc-8571f7ec89fb4b5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/socketserver.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...socketserver.cpython-36.opt-2.pyc-ce332ebeb1ffe674 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/socketserver.cpython-36.pyc +SPDXID: SPDXRef-File-...socketserver.cpython-36.pyc-a07a128e051c54be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/sockshandler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sockshandler.cpython-36.opt-1.pyc-7e3b89230e54d32a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/sockshandler.cpython-36.pyc +SPDXID: SPDXRef-File-...sockshandler.cpython-36.pyc-95006809f3b97586 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...specifiers.cpython-36.opt-1.pyc-0f1829c57b3cb260 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...specifiers.cpython-36.opt-1.pyc-b0ccaba183052078 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/spwd.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...spwd.cpython-36m-x86-64-linux-gnu.so-158fc412af1fb7df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_compile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sre-compile.cpython-36.opt-1.pyc-d7472848f809ef50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_compile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sre-compile.cpython-36.opt-2.pyc-7fbb12dd1e56f2af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_constants.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sre-constants.cpython-36.opt-1.pyc-2dd0d413488ff3b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_constants.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sre-constants.cpython-36.opt-2.pyc-38aa3ddd0dcd5a3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_constants.cpython-36.pyc +SPDXID: SPDXRef-File-...sre-constants.cpython-36.pyc-010854311f8dc557 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_parse.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sre-parse.cpython-36.opt-1.pyc-99631b94e0aaeeff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_parse.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sre-parse.cpython-36.opt-2.pyc-4a78ffef0fc30195 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/__pycache__/ssl_match_hostname.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ssl-match-hostname.cpython-36.opt-1.pyc-667efab3379c8f98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/__pycache__/ssl_match_hostname.cpython-36.pyc +SPDXID: SPDXRef-File-...ssl-match-hostname.cpython-36.pyc-f997e72ff1073983 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/ssl_support.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ssl-support.cpython-36.opt-1.pyc-e4c41f623f614d5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/sslproto.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sslproto.cpython-36.opt-1.pyc-0feb70cc39d89987 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/sslproto.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sslproto.cpython-36.opt-2.pyc-1561f2c6f408c54b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/statistics.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...statistics.cpython-36.opt-1.pyc-994ccf13e4ebb0b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/statistics.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...statistics.cpython-36.opt-2.pyc-49c2f883f49c76df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/status_codes.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...status-codes.cpython-36.opt-1.pyc-acffa332919158ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/status_codes.cpython-36.pyc +SPDXID: SPDXRef-File-...status-codes.cpython-36.pyc-3042e71b05ea2857 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/status.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...status.cpython-36.opt-1.pyc-b8b7f3280c874b9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/streams.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...streams.cpython-36.opt-1.pyc-187292eacfb54abb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/streams.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...streams.cpython-36.opt-2.pyc-1deab74a4407de86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/string.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...string.cpython-36.opt-1.pyc-8ea6b04cd7300cf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/string.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...string.cpython-36.opt-2.pyc-77d10b7772f4bd7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/stringprep.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...stringprep.cpython-36.opt-1.pyc-78c660bdc00bc82c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/stringprep.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...stringprep.cpython-36.opt-2.pyc-fb9e11e49cd730e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/struct.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...struct.cpython-36.opt-1.pyc-af63d7294336a840 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/struct.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...struct.cpython-36.opt-2.pyc-1f58f1e8832dbaac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/structures.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...structures.cpython-36.opt-1.pyc-d7b049ac3e8c7530 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/subject.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...subject.cpython-36.opt-1.pyc-62e71bf69d8e4b81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/compat/__pycache__/subprocess_compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...subprocess-compat.cpython-36.opt-1.pyc-a35989dc2e012a1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/compat/__pycache__/subprocess_compat.cpython-36.pyc +SPDXID: SPDXRef-File-...subprocess-compat.cpython-36.pyc-0289633ddc9512a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/subprocess.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...subprocess.cpython-36.opt-1.pyc-37c49b805ca5ac8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/subprocess.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...subprocess.cpython-36.opt-1.pyc-89a9540e813817f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/subprocess.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...subprocess.cpython-36.opt-2.pyc-4a67f198a4910808 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/subprocess.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...subprocess.cpython-36.opt-2.pyc-f1453d22cb51839e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__init__.py +SPDXID: SPDXRef-File-...subscription-manager---init--.py-0c25f94c144ca453 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/action_client.py +SPDXID: SPDXRef-File-...subscription-manager-action-client.py-93a33d2ee640ab9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/api/__init__.py +SPDXID: SPDXRef-File-...subscription-manager-api---init--.py-c6650269d36fe020 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/api/repos.py +SPDXID: SPDXRef-File-...subscription-manager-api-repos.py-5cda6b951de64e38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/async_utils.py +SPDXID: SPDXRef-File-...subscription-manager-async-utils.py-a9c1940e8a90a959 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/base_plugin.py +SPDXID: SPDXRef-File-...subscription-manager-base-plugin.py-0872ea2cd9680f8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/cache.py +SPDXID: SPDXRef-File-...subscription-manager-cache.py-3d9c1354cd5901a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/cert_sorter.py +SPDXID: SPDXRef-File-...subscription-manager-cert-sorter.py-16365fa079b98336 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/certdirectory.py +SPDXID: SPDXRef-File-...subscription-manager-certdirectory.py-72d39653d075928c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/certlib.py +SPDXID: SPDXRef-File-...subscription-manager-certlib.py-914501d72efea9dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/cli.py +SPDXID: SPDXRef-File-...subscription-manager-cli.py-4e5f46db0b6f9a0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/cp_provider.py +SPDXID: SPDXRef-File-...subscription-manager-cp-provider.py-7d19733fa6adeeda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/cpuinfo.py +SPDXID: SPDXRef-File-...subscription-manager-cpuinfo.py-1dc7728868105b76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/entbranding.py +SPDXID: SPDXRef-File-...subscription-manager-entbranding.py-26f6d0b9bbba5465 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/entcertlib.py +SPDXID: SPDXRef-File-...subscription-manager-entcertlib.py-f83f6999df8f91a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/exceptions.py +SPDXID: SPDXRef-File-...subscription-manager-exceptions.py-32955e1920ff2779 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/factlib.py +SPDXID: SPDXRef-File-...subscription-manager-factlib.py-61a68cb908305f1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/facts.py +SPDXID: SPDXRef-File-...subscription-manager-facts.py-d35a2a3b38417599 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/ga_loader.py +SPDXID: SPDXRef-File-...subscription-manager-ga-loader.py-cf08729147545744 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/subscription_manager_gui.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...subscription-manager-gui.cpython-36.opt-1.pyc-a183abdf81ad4ac5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/subscription_manager_gui.cpython-36.pyc +SPDXID: SPDXRef-File-...subscription-manager-gui.cpython-36.pyc-494ecbc8fa8063a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/healinglib.py +SPDXID: SPDXRef-File-...subscription-manager-healinglib.py-25bc94d817160d56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/i18n_argparse.py +SPDXID: SPDXRef-File-...subscription-manager-i18n-argparse.py-a50be5ebef638562 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/i18n.py +SPDXID: SPDXRef-File-...subscription-manager-i18n.py-486b057bc62ef9df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/identity.py +SPDXID: SPDXRef-File-...subscription-manager-identity.py-a4d9db194cee2f34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/injection.py +SPDXID: SPDXRef-File-...subscription-manager-injection.py-88694d235281709e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/injectioninit.py +SPDXID: SPDXRef-File-...subscription-manager-injectioninit.py-2aff206f55e1710a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/isodate.py +SPDXID: SPDXRef-File-...subscription-manager-isodate.py-870d0c4bf3130bf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/jsonwrapper.py +SPDXID: SPDXRef-File-...subscription-manager-jsonwrapper.py-d1a0a1f174c1cad2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/listing.py +SPDXID: SPDXRef-File-...subscription-manager-listing.py-48b675f6f36ea5fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/lock.py +SPDXID: SPDXRef-File-...subscription-manager-lock.py-48a035f7c03a45d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/managercli.py +SPDXID: SPDXRef-File-...subscription-manager-managercli.py-ad6112292d1f4720 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/managerlib.py +SPDXID: SPDXRef-File-...subscription-manager-managerlib.py-13ffefda7e7f7093 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/model/__init__.py +SPDXID: SPDXRef-File-...subscription-manager-model---init--.py-7cfdbd2673666531 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/model/ent_cert.py +SPDXID: SPDXRef-File-...subscription-manager-model-ent-cert.py-e09663414796cc53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/overrides.py +SPDXID: SPDXRef-File-...subscription-manager-overrides.py-aa8be5e35d503a1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/plugins.py +SPDXID: SPDXRef-File-...subscription-manager-plugins.py-06f8a02b3c5f7a24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/printing_utils.py +SPDXID: SPDXRef-File-...subscription-manager-printing-utils.py-41c0c8181316afbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/productid.py +SPDXID: SPDXRef-File-...subscription-manager-productid.py-70eb3bda758c8d37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/reasons.py +SPDXID: SPDXRef-File-...subscription-manager-reasons.py-95429fa2b2869687 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/release.py +SPDXID: SPDXRef-File-...subscription-manager-release.py-1e99a6beb66f4395 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/repofile.py +SPDXID: SPDXRef-File-...subscription-manager-repofile.py-ad489cffe026ecd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/repolib.py +SPDXID: SPDXRef-File-...subscription-manager-repolib.py-1d136a6e2deeba2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/rhelproduct.py +SPDXID: SPDXRef-File-...subscription-manager-rhelproduct.py-b3a32a9b3a3d1b65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/rct.py +SPDXID: SPDXRef-File-...subscription-manager-scripts-rct.py-0071f07382791faf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/syspurposelib.py +SPDXID: SPDXRef-File-...subscription-manager-syspurposelib.py-ffc6fb59f6408e06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/unicode_width.py +SPDXID: SPDXRef-File-...subscription-manager-unicode-width.py-7e66c40f66e3b07f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/utils.py +SPDXID: SPDXRef-File-...subscription-manager-utils.py-41367cb87426cc0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/validity.py +SPDXID: SPDXRef-File-...subscription-manager-validity.py-08273bf4eaae8374 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/version.py +SPDXID: SPDXRef-File-...subscription-manager-version.py-b4207f60f9408492 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/subscription_manager.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...subscription-manager.cpython-36.opt-1.pyc-e071192b03f358e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/subscription-manager.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...subscription-manager.cpython-36.opt-1.pyc-e46c6db1cd165a49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/subscription-manager.cpython-36.pyc +SPDXID: SPDXRef-File-...subscription-manager.cpython-36.pyc-6daf6bfea71f2661 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/subscription_manager.cpython-36.pyc +SPDXID: SPDXRef-File-...subscription-manager.cpython-36.pyc-7fc024b8a04767ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/substitutions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...substitutions.cpython-36.opt-1.pyc-6513861e07db070e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/substitutions.cpython-36.pyc +SPDXID: SPDXRef-File-...substitutions.cpython-36.pyc-1b59f1abe691c21f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/symbol.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...symbol.cpython-36.opt-1.pyc-d35dd0d800db4a40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/symbol.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...symbol.cpython-36.opt-2.pyc-1bcc6b4b0e5e96c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/symtable.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...symtable.cpython-36.opt-1.pyc-fe79c415af2a515f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/symtable.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...symtable.cpython-36.opt-2.pyc-23f8aad8654b2fd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/synchronize.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...synchronize.cpython-36.opt-1.pyc-7528e9038e1ee8e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/synchronize.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...synchronize.cpython-36.opt-2.pyc-87aad1cc07071f3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sysconfig.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sysconfig.cpython-36.opt-1.pyc-60486df9d0ae4301 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/sysconfig.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sysconfig.cpython-36.opt-1.pyc-b0e55ea3cb813771 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sysconfig.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sysconfig.cpython-36.opt-2.pyc-67a11e9412b8432f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/sysconfig.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sysconfig.cpython-36.opt-2.pyc-f62e299ae948f85c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/sysctl.d/10-default-yama-scope.conf +SPDXID: SPDXRef-File-...sysctl.d-10-default-yama-scope.conf-0587b7a6fa24498d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/syslog.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...syslog.cpython-36m-x86-64-linux-gnu.so-053acd63a64a34b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/syspurpose.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...syspurpose.cpython-36.opt-1.pyc-1ce561671cac9149 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/syspurpose.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...syspurpose.cpython-36.opt-1.pyc-97161ed176fcc6b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/syspurposelib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...syspurposelib.cpython-36.opt-1.pyc-5d9e8faff2b65750 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/syspurposelib.cpython-36.pyc +SPDXID: SPDXRef-File-...syspurposelib.cpython-36.pyc-547ecd5af85f2782 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/container-getty@.service +SPDXID: SPDXRef-File-...system-container-getty-.service-d925c64777a431d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dnf-system-upgrade.service +SPDXID: SPDXRef-File-...system-dnf-system-upgrade.service-1edad3b5be6116a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd-parse-etc.service +SPDXID: SPDXRef-File-...system-initrd-parse-etc.service-4382aa0cc5546971 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd-root-device.target +SPDXID: SPDXRef-File-...system-initrd-root-device.target-d708f88d5d949138 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd-switch-root.service +SPDXID: SPDXRef-File-...system-initrd-switch-root.service-513b5afb5d9a4c07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd-switch-root.target +SPDXID: SPDXRef-File-...system-initrd-switch-root.target-6108121cf50b4acb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-preset/90-default.preset +SPDXID: SPDXRef-File-...system-preset-90-default.preset-690de0f76885d281 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-preset/90-systemd.preset +SPDXID: SPDXRef-File-...system-preset-90-systemd.preset-83d366511402e499 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/proc-sys-fs-binfmt_misc.mount +SPDXID: SPDXRef-File-...system-proc-sys-fs-binfmt-misc.mount-a60a432c5131e9b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/sys-fs-fuse-connections.mount +SPDXID: SPDXRef-File-...system-sys-fs-fuse-connections.mount-7505d55c6f6d1ab3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/system-update-cleanup.service +SPDXID: SPDXRef-File-...system-system-update-cleanup.service-337531757dadeb29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/system-update-pre.target +SPDXID: SPDXRef-File-...system-system-update-pre.target-24c9d287a8779847 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-ask-password-wall.path +SPDXID: SPDXRef-File-...system-systemd-ask-password-wall.path-5930683aede7e63e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-coredump@.service +SPDXID: SPDXRef-File-...system-systemd-coredump-.service-cde805e24a050be7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-firstboot.service +SPDXID: SPDXRef-File-...system-systemd-firstboot.service-84f4cf2fb4d518d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-fsck-root.service +SPDXID: SPDXRef-File-...system-systemd-fsck-root.service-a402eb0c4487d10a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-hostnamed.service +SPDXID: SPDXRef-File-...system-systemd-hostnamed.service-0735b674bd619a5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-journal-flush.service +SPDXID: SPDXRef-File-...system-systemd-journal-flush.service-5dbc459ffb27b6bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-journald-audit.socket +SPDXID: SPDXRef-File-...system-systemd-journald-audit.socket-b42c2c7ed70850be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-journald-dev-log.socket +SPDXID: SPDXRef-File-...system-systemd-journald-dev-log.socket-e7f1ff713433aa32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-journald.service +SPDXID: SPDXRef-File-...system-systemd-journald.service-c8b5732aee857ed1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-portabled.service +SPDXID: SPDXRef-File-...system-systemd-portabled.service-791118e71c2593e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-poweroff.service +SPDXID: SPDXRef-File-...system-systemd-poweroff.service-b0d6718250735408 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-resolved.service +SPDXID: SPDXRef-File-...system-systemd-resolved.service-eff9aff1a3cdfec3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-sysusers.service +SPDXID: SPDXRef-File-...system-systemd-sysusers.service-245c72c831cfc04c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-timedated.service +SPDXID: SPDXRef-File-...system-systemd-timedated.service-7edfd6b7035e6f27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-tmpfiles-clean.service +SPDXID: SPDXRef-File-...system-systemd-tmpfiles-clean.service-f2a885a466af9331 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-tmpfiles-clean.timer +SPDXID: SPDXRef-File-...system-systemd-tmpfiles-clean.timer-906b6ba2e3e93165 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-tmpfiles-setup.service +SPDXID: SPDXRef-File-...system-systemd-tmpfiles-setup.service-92b0afc24470b8a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-update-done.service +SPDXID: SPDXRef-File-...system-systemd-update-done.service-e9d1cbac0396836f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-update-utmp.service +SPDXID: SPDXRef-File-...system-systemd-update-utmp.service-071285e817f600ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-user-sessions.service +SPDXID: SPDXRef-File-...system-systemd-user-sessions.service-bec5aa14f768ead9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-volatile-root.service +SPDXID: SPDXRef-File-...system-systemd-volatile-root.service-9ae9648f0538d20c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/system_upgrade.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...system-upgrade.cpython-36.opt-1.pyc-ead57863ff1055db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/system_upgrade.cpython-36.pyc +SPDXID: SPDXRef-File-...system-upgrade.cpython-36.pyc-2b961109804441f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/user-.slice.d/10-defaults.conf +SPDXID: SPDXRef-File-...system-user-.slice.d-10-defaults.conf-24e4fd7613ff4e56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/user-runtime-dir@.service +SPDXID: SPDXRef-File-...system-user-runtime-dir-.service-0b916bcf41ef8191 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dbus-1/system.d/com.redhat.RHSM1.Facts.conf +SPDXID: SPDXRef-File-...system.d-com.redhat.RHSM1.Facts.conf-75131ac648ad9e00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.d/org.freedesktop.locale1.conf +SPDXID: SPDXRef-File-...system.d-org.freedesktop.locale1.conf-680ee49a3e29931b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.d/org.freedesktop.login1.conf +SPDXID: SPDXRef-File-...system.d-org.freedesktop.login1.conf-ab9b545e98b8bc17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.d/org.freedesktop.resolve1.conf +SPDXID: SPDXRef-File-...system.d-org.freedesktop.resolve1.conf-dd279202ea5207f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.d/org.freedesktop.systemd1.conf +SPDXID: SPDXRef-File-...system.d-org.freedesktop.systemd1.conf-5de99c49af05653e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-ask-password-console.path +SPDXID: SPDXRef-File-...systemd-ask-password-console.path-609852362308432d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-ask-password-console.service +SPDXID: SPDXRef-File-...systemd-ask-password-console.service-049444b884732ec2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-ask-password-wall.service +SPDXID: SPDXRef-File-...systemd-ask-password-wall.service-fffc3d60490c63de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.pt_BR.catalog +SPDXID: SPDXRef-File-...systemd-catalog-systemd.pt-BR.catalog-e8623a2f4ddd644b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.zh_CN.catalog +SPDXID: SPDXRef-File-...systemd-catalog-systemd.zh-CN.catalog-e6ea2ec9ebef7b33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.zh_TW.catalog +SPDXID: SPDXRef-File-...systemd-catalog-systemd.zh-TW.catalog-304bf1518c99482a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-generators/systemd-debug-generator +SPDXID: SPDXRef-File-...systemd-debug-generator-a1e9f69a948a64d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-generators/systemd-fstab-generator +SPDXID: SPDXRef-File-...systemd-fstab-generator-f0e772ae6bb276c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-generators/systemd-getty-generator +SPDXID: SPDXRef-File-...systemd-getty-generator-ec5ce24802a7909c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-journal-catalog-update.service +SPDXID: SPDXRef-File-...systemd-journal-catalog-update.service-c90c65181d778a80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-machine-id-commit.service +SPDXID: SPDXRef-File-...systemd-machine-id-commit.service-9a5985c5479b5d30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd_python-234-py3.6.egg-info +SPDXID: SPDXRef-File-...systemd-python-234-py3.6.egg-info-bf1d1b655be7d33d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-generators/systemd-rc-local-generator +SPDXID: SPDXRef-File-...systemd-rc-local-generator-f279cc11c0d38f84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/boot-complete.target +SPDXID: SPDXRef-File-...systemd-system-boot-complete.target-561f48bc6de4f911 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/console-getty.service +SPDXID: SPDXRef-File-...systemd-system-console-getty.service-6dcdffb53674b29d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dnf-makecache.service +SPDXID: SPDXRef-File-...systemd-system-dnf-makecache.service-e958fe25483b76cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd-cleanup.service +SPDXID: SPDXRef-File-...systemd-system-initrd-cleanup.service-98c955036b369ed3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd-root-fs.target +SPDXID: SPDXRef-File-...systemd-system-initrd-root-fs.target-970c43a7f0a40c1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/network-online.target +SPDXID: SPDXRef-File-...systemd-system-network-online.target-2a5d2d06acee7994 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/nss-user-lookup.target +SPDXID: SPDXRef-File-...systemd-system-nss-user-lookup.target-f45fd1b432e21c86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/remote-fs-pre.target +SPDXID: SPDXRef-File-...systemd-system-remote-fs-pre.target-409a9a362d25411a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/serial-getty@.service +SPDXID: SPDXRef-File-...systemd-system-serial-getty-.service-3a512a0e654153b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/sys-kernel-config.mount +SPDXID: SPDXRef-File-...systemd-system-sys-kernel-config.mount-61df0f9630a0292b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/sys-kernel-debug.mount +SPDXID: SPDXRef-File-...systemd-system-sys-kernel-debug.mount-583704cf1c33fa6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/system-update.target +SPDXID: SPDXRef-File-...systemd-system-system-update.target-3c30d5a02abd27d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-binfmt.service +SPDXID: SPDXRef-File-...systemd-system-systemd-binfmt.service-e68d70ebd1832f86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-coredump.socket +SPDXID: SPDXRef-File-...systemd-system-systemd-coredump.socket-e8100dfb73a3882b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-exit.service +SPDXID: SPDXRef-File-...systemd-system-systemd-exit.service-9fd00c0c6d21904a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-fsck@.service +SPDXID: SPDXRef-File-...systemd-system-systemd-fsck-.service-0c635f2635f73fc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-halt.service +SPDXID: SPDXRef-File-...systemd-system-systemd-halt.service-15e0d2919b84419d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-initctl.service +SPDXID: SPDXRef-File-...systemd-system-systemd-initctl.service-c6506a31bb2e0e06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-initctl.socket +SPDXID: SPDXRef-File-...systemd-system-systemd-initctl.socket-60faa7e37e0aa090 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-journald.socket +SPDXID: SPDXRef-File-...systemd-system-systemd-journald.socket-23d09b3d8ddf9790 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-kexec.service +SPDXID: SPDXRef-File-...systemd-system-systemd-kexec.service-40b997c61a20afb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-localed.service +SPDXID: SPDXRef-File-...systemd-system-systemd-localed.service-6fc00670696a5c30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-logind.service +SPDXID: SPDXRef-File-...systemd-system-systemd-logind.service-b22b7ff70d84d9b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-pstore.service +SPDXID: SPDXRef-File-...systemd-system-systemd-pstore.service-3206f030e860ce2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-reboot.service +SPDXID: SPDXRef-File-...systemd-system-systemd-reboot.service-dc43b2cdfe0e444d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-sysctl.service +SPDXID: SPDXRef-File-...systemd-system-systemd-sysctl.service-82dcc4fc1402a4a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-generators/systemd-system-update-generator +SPDXID: SPDXRef-File-...systemd-system-update-generator-d8a74b60cb716fb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-generators/systemd-sysv-generator +SPDXID: SPDXRef-File-...systemd-sysv-generator-ed0ba623929e1a46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/test_daemon.py +SPDXID: SPDXRef-File-...systemd-test-test-daemon.py-59a8db29407b77ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/test_journal.py +SPDXID: SPDXRef-File-...systemd-test-test-journal.py-25ef83b25cbe8473 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/test_login.py +SPDXID: SPDXRef-File-...systemd-test-test-login.py-8109fa06d1cbe382 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-update-utmp-runlevel.service +SPDXID: SPDXRef-File-...systemd-update-utmp-runlevel.service-88c0719d4ccf5f9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/gpg-agent-browser.socket +SPDXID: SPDXRef-File-...systemd-user-gpg-agent-browser.socket-5b8cf2e32b168d0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/gpg-agent-extra.socket +SPDXID: SPDXRef-File-...systemd-user-gpg-agent-extra.socket-a57da2f4b43273ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/graphical-session.target +SPDXID: SPDXRef-File-...systemd-user-graphical-session.target-270ccbdcfee3d637 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user-preset/90-systemd.preset +SPDXID: SPDXRef-File-...systemd-user-preset-90-systemd.preset-9cf3cd66b745bd9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-generators/systemd-veritysetup-generator +SPDXID: SPDXRef-File-...systemd-veritysetup-generator-eeb848c8fd95c950 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tabnanny.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tabnanny.cpython-36.opt-1.pyc-d43631e5bacd6da3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tabnanny.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...tabnanny.cpython-36.opt-2.pyc-88b283a2427e651a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tarfile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tarfile.cpython-36.opt-1.pyc-4b948fc9ad3d35bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tarfile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...tarfile.cpython-36.opt-2.pyc-5e39902bc6858b8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/telnetlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...telnetlib.cpython-36.opt-1.pyc-000458c29363eed2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/telnetlib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...telnetlib.cpython-36.opt-2.pyc-476f6f433bc114dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tempfile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tempfile.cpython-36.opt-1.pyc-7a0245a5f010546d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tempfile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...tempfile.cpython-36.opt-2.pyc-1f7da75ec427945b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.konsole-256color +SPDXID: SPDXRef-File-...terminfo-s-screen.konsole-256color-2c2a28adc513956a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.mlterm-256color +SPDXID: SPDXRef-File-...terminfo-s-screen.mlterm-256color-1bbcae5aa21e4da1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/termios.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...termios.cpython-36m-x86-64-linux-gnu.so-8ee6723ccfb86510 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/__pycache__/test_daemon.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...test-daemon.cpython-36.opt-1.pyc-95c8d24d38911a0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/__pycache__/test_journal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...test-journal.cpython-36.opt-1.pyc-5952e41acf588361 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/__pycache__/test_journal.cpython-36.pyc +SPDXID: SPDXRef-File-...test-journal.cpython-36.pyc-0c8bb0bc4c3a94b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/__pycache__/test_login.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...test-login.cpython-36.opt-1.pyc-1e42e86cada3746d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/script_helper.py +SPDXID: SPDXRef-File-...test-support-script-helper.py-6cd40ab5f0a00071 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/test_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...test-utils.cpython-36.opt-1.pyc-bf8b99ef3615ee69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/test_utils.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...test-utils.cpython-36.opt-2.pyc-160c3a4a95d7eb35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/testresult.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...testresult.cpython-36.opt-1.pyc-f2e58e239137c3bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/testresult.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...testresult.cpython-36.opt-2.pyc-230468b928c01842 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/text_file.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...text-file.cpython-36.opt-1.pyc-865af2b51c7894e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/text_file.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...text-file.cpython-36.opt-2.pyc-db15a9a51a182a30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/textpad.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...textpad.cpython-36.opt-1.pyc-2a2c54fe2c5391df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/textpad.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...textpad.cpython-36.opt-2.pyc-576419154bff9910 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/textwrap.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...textwrap.cpython-36.opt-1.pyc-762b79add18a1915 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/textwrap.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...textwrap.cpython-36.opt-2.pyc-46db29fd40da516c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/thread.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...thread.cpython-36.opt-1.pyc-6babbf59ac9210fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/thread.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...thread.cpython-36.opt-2.pyc-96a0a96c3b1bf369 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/threading.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...threading.cpython-36.opt-1.pyc-d9bee8988ba6268f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/threading.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...threading.cpython-36.opt-2.pyc-16cd012f62ba4fd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/timeit.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...timeit.cpython-36.opt-1.pyc-659b4911aca7072a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/timeit.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...timeit.cpython-36.opt-2.pyc-f1d364e614be9de0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/timeout.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...timeout.cpython-36.opt-1.pyc-68690eccf6899cf7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/tis_620.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tis-620.cpython-36.opt-1.pyc-17df460f7a5b6d93 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/tis_620.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...tis-620.cpython-36.opt-2.pyc-fd46a7e3a08cd2e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/subscription-manager.conf +SPDXID: SPDXRef-File-...tmpfiles.d-subscription-manager.conf-9468a353bfc942ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/tofu/__pycache__/policy.cpython-36.pyc +SPDXID: SPDXRef-File-...tofu---pycache---policy.cpython-36.pyc-bd017b73cbc27fe8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/tokenize.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tokenize.cpython-36.opt-1.pyc-2663db19c2c79c34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tokenize.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tokenize.cpython-36.opt-1.pyc-cc7fd05f167489d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/tokenize.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...tokenize.cpython-36.opt-2.pyc-c8171c1b63a8f5a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tokenize.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...tokenize.cpython-36.opt-2.pyc-f99fc27b327d211e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-1ba04c959109600a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-45b1b0808b2235e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-4dea0b623aa55407 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps-0.1.18-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-551e8cb471cc247b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/ethtool-0.14-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-63568b39c201fdcd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/PySocks-1.6.8-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-685ddbd4b437b8ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-95a8ec1d16083751 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose-1.28.36-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-99a62eb9d87042c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-9e0fc58cb2f8c225 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-a01aee50d0a8ec7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-a3ab0284f6f24fb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-c8655973f7893a80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-cb4c5d137c1d7af6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus_python-1.2.4-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-e58da4bfa855c077 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/__pycache__/topics.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...topics.cpython-36.opt-1.pyc-2ea3cd68468fc2be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/__pycache__/topics.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...topics.cpython-36.opt-2.pyc-55235221e7011f9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/traceback.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...traceback.cpython-36.opt-1.pyc-9441c22585dfb001 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/traceback.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...traceback.cpython-36.opt-2.pyc-8771b3363c4bd035 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tracemalloc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tracemalloc.cpython-36.opt-1.pyc-7d639a8d13d950f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tracemalloc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...tracemalloc.cpython-36.opt-2.pyc-92cf89656d19878c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/transaction_sr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...transaction-sr.cpython-36.opt-1.pyc-8f91cf46cc23c362 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/transaction_sr.cpython-36.pyc +SPDXID: SPDXRef-File-...transaction-sr.cpython-36.pyc-07583e92e9cb88e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/transaction.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...transaction.cpython-36.opt-1.pyc-07f09f8ae904b2c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/__pycache__/transaction.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...transaction.cpython-36.opt-1.pyc-14d87bb59e07b5e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/transaction.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...transaction.cpython-36.opt-1.pyc-da247976a74bcc72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/transaction.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...transaction.cpython-36.opt-1.pyc-fa9f268233d4dc92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/transports.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...transports.cpython-36.opt-1.pyc-c3a3eef044341764 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/transports.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...transports.cpython-36.opt-2.pyc-cbb2fa4c7c2b75c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/typing.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...typing.cpython-36.opt-1.pyc-a118c74b8120ce17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/typing.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...typing.cpython-36.opt-2.pyc-be03b233286ede83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...tz---pycache-----init--.cpython-36.pyc-42de64ff20bfb1a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/_common.cpython-36.pyc +SPDXID: SPDXRef-File-...tz---pycache----common.cpython-36.pyc-933f3eded4c6bb50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/tz.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tz---pycache---tz.cpython-36.opt-1.pyc-af87abaeadf4aae3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/tz.cpython-36.pyc +SPDXID: SPDXRef-File-...tz---pycache---tz.cpython-36.pyc-0a202bf29fcc7a18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/win.cpython-36.pyc +SPDXID: SPDXRef-File-...tz---pycache---win.cpython-36.pyc-67ad6ae594a7b943 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/undefined.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...undefined.cpython-36.opt-1.pyc-855b147b35a33bcb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/undefined.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...undefined.cpython-36.opt-2.pyc-4fbdfae2332c2e55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/unicode_escape.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unicode-escape.cpython-36.opt-1.pyc-0f6095ec907bba0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/unicode_escape.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...unicode-escape.cpython-36.opt-2.pyc-152925052088b152 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/unicode_escape.cpython-36.pyc +SPDXID: SPDXRef-File-...unicode-escape.cpython-36.pyc-c3f152591a6e5eeb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/unicode_internal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unicode-internal.cpython-36.opt-1.pyc-0a4fb5930cf584ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/unicode_internal.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...unicode-internal.cpython-36.opt-2.pyc-beac41b1029c3903 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/unicode_internal.cpython-36.pyc +SPDXID: SPDXRef-File-...unicode-internal.cpython-36.pyc-16431ff2395ff240 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/unicode_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unicode-utils.cpython-36.opt-1.pyc-1a2372817271dd4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/unicode_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...unicode-utils.cpython-36.pyc-db3ed331e804d57d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/unicode_width.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unicode-width.cpython-36.opt-1.pyc-0ef32e2a68420933 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/unicode_width.cpython-36.pyc +SPDXID: SPDXRef-File-...unicode-width.cpython-36.pyc-3f0a70cacd650230 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/unicodedata.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...unicodedata.cpython-36m-x86-64-linux-gnu.so-bd590998912b6c9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/universaldetector.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...universaldetector.cpython-36.opt-1.pyc-7effd3b8f9fe4e2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/universaldetector.cpython-36.pyc +SPDXID: SPDXRef-File-...universaldetector.cpython-36.pyc-36367aed0dd54928 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/unix_events.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unix-events.cpython-36.opt-1.pyc-b411e25e9fc5df42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/unix_events.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...unix-events.cpython-36.opt-2.pyc-164c859e3be638d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/unixccompiler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unixccompiler.cpython-36.opt-1.pyc-907da87f887cd274 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/unixccompiler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...unixccompiler.cpython-36.opt-2.pyc-9888c65ed6e00abf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/unixccompiler.cpython-36.pyc +SPDXID: SPDXRef-File-...unixccompiler.cpython-36.pyc-e49aff8eccc058f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/unregister.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unregister.cpython-36.opt-1.pyc-4489462acc30aef4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/unregister.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unregister.cpython-36.opt-1.pyc-c5b9f2bd23779761 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/__pycache__/update-crypto-policies.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...update-crypto-policies.cpython-36.opt-1.pyc-fa0ac0fa4cdc142a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/__pycache__/update-crypto-policies.cpython-36.pyc +SPDXID: SPDXRef-File-...update-crypto-policies.cpython-36.pyc-df8668f1a87096ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/updateinfo.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...updateinfo.cpython-36.opt-1.pyc-0ddec09c228ebb1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/upgrade.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...upgrade.cpython-36.opt-1.pyc-fbb33fc7c5565f1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/upgrademinimal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...upgrademinimal.cpython-36.opt-1.pyc-aed128b02c909830 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/upgrademinimal.cpython-36.pyc +SPDXID: SPDXRef-File-...upgrademinimal.cpython-36.pyc-9d753bbf4831d481 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/upload_docs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...upload-docs.cpython-36.opt-1.pyc-c82453389888a221 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/upload-profile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...upload-profile.cpython-36.opt-1.pyc-e373c8c611ec4ae2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/upload-profile.cpython-36.pyc +SPDXID: SPDXRef-File-...upload-profile.cpython-36.pyc-285dee68c6fc3fa8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/upload.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...upload.cpython-36.opt-1.pyc-213cded80e613321 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/upload.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...upload.cpython-36.opt-1.pyc-c9bcd450bf7bf366 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/upload.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...upload.cpython-36.opt-2.pyc-b29186e149c69bfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...urllib3-1.24.2-py3.6.egg-info-PKG-INFO-4731163b373c6e55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/connectionpool.py +SPDXID: SPDXRef-File-...urllib3-connectionpool.py-9317658d5b2ffb6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__init__.py +SPDXID: SPDXRef-File-...urllib3-contrib---init--.py-835c5cc130729dc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_appengine_environ.py +SPDXID: SPDXRef-File-...urllib3-contrib--appengine-environ.py-b35ef51c10f79da5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/appengine.py +SPDXID: SPDXRef-File-...urllib3-contrib-appengine.py-d6e6e53a4e56509c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/ntlmpool.py +SPDXID: SPDXRef-File-...urllib3-contrib-ntlmpool.py-0b903a7d57fadfca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/pyopenssl.py +SPDXID: SPDXRef-File-...urllib3-contrib-pyopenssl.py-95621e83ea6a51ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/securetransport.py +SPDXID: SPDXRef-File-...urllib3-contrib-securetransport.py-a0acee4743b80f31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/__init__.py +SPDXID: SPDXRef-File-...urllib3-packages---init--.py-c5b9d6441926a6fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/backports/__init__.py +SPDXID: SPDXRef-File-...urllib3-packages-backports---init--.py-01edf366734c6204 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/backports/makefile.py +SPDXID: SPDXRef-File-...urllib3-packages-backports-makefile.py-fb8e46c4274bf84e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/ssl_match_hostname.py +SPDXID: SPDXRef-File-...urllib3-packages-ssl-match-hostname.py-d5ea983e3423d32c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/connection.py +SPDXID: SPDXRef-File-...urllib3-util-connection.py-4e4536c8b7a0aec9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/graphical-session-pre.target +SPDXID: SPDXRef-File-...user-graphical-session-pre.target-1839e0124df89ef4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/systemd-tmpfiles-clean.service +SPDXID: SPDXRef-File-...user-systemd-tmpfiles-clean.service-9259040d53a74882 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/systemd-tmpfiles-clean.timer +SPDXID: SPDXRef-File-...user-systemd-tmpfiles-clean.timer-b36e1aa87fd756a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/systemd-tmpfiles-setup.service +SPDXID: SPDXRef-File-...user-systemd-tmpfiles-setup.service-2217457b5fcc2c41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gdb/auto-load/usr/lib64/libstdc++.so.6.0.25-gdb.py +SPDXID: SPDXRef-File-...usr-lib64-libstdc--.so.6.0.25-gdb.py-4e3b9f530c1e6f6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16_be.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf-16-be.cpython-36.opt-1.pyc-7636dc4eb23f4af7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16_be.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...utf-16-be.cpython-36.opt-2.pyc-29d9c212255986d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16_le.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf-16-le.cpython-36.opt-1.pyc-8622b4a6aa3cc1f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16_le.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...utf-16-le.cpython-36.opt-2.pyc-c7ab20ea312bc4bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf-16.cpython-36.opt-1.pyc-3a2605e557baf01d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...utf-16.cpython-36.opt-2.pyc-93756152423119d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32_be.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf-32-be.cpython-36.opt-1.pyc-b6f1cb9025a3e931 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32_be.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...utf-32-be.cpython-36.opt-2.pyc-08c7d65f1cbd3637 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32_le.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf-32-le.cpython-36.opt-1.pyc-9b27b83f2d4da338 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32_le.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...utf-32-le.cpython-36.opt-2.pyc-5dcd1e52f8ffe249 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf-32.cpython-36.opt-1.pyc-38692dda682fc101 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...utf-32.cpython-36.opt-2.pyc-32ad241d7676b905 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_8_sig.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf-8-sig.cpython-36.opt-1.pyc-5b2c2ac4ff4357ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_8_sig.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...utf-8-sig.cpython-36.opt-2.pyc-9d6cbe7c4dd73edb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/utf8prober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf8prober.cpython-36.opt-1.pyc-0df7a3f12e4fddaa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/queue.cpython-36.pyc +SPDXID: SPDXRef-File-...util---pycache---queue.cpython-36.pyc-6828db9d42a73817 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/retry.cpython-36.pyc +SPDXID: SPDXRef-File-...util---pycache---retry.cpython-36.pyc-c8669f0a1b682be4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/ssl_.cpython-36.pyc +SPDXID: SPDXRef-File-...util---pycache---ssl-.cpython-36.pyc-9352d1974afbcd3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/url.cpython-36.pyc +SPDXID: SPDXRef-File-...util---pycache---url.cpython-36.pyc-d5bdaa712b669b37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/wait.cpython-36.pyc +SPDXID: SPDXRef-File-...util---pycache---wait.cpython-36.pyc-c8c31d86e50687b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/uts46data.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...uts46data.cpython-36.opt-1.pyc-16a93f453b6015a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/uu_codec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...uu-codec.cpython-36.opt-1.pyc-f2c75385b16f5ab0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/uu_codec.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...uu-codec.cpython-36.opt-2.pyc-7855be196903aa4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...v6---pycache-----init--.cpython-36.pyc-55a7559c5150863b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/__pycache__/printers.cpython-36.pyc +SPDXID: SPDXRef-File-...v6---pycache---printers.cpython-36.pyc-94313d2f3d63dc20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/__pycache__/xmethods.cpython-36.pyc +SPDXID: SPDXRef-File-...v6---pycache---xmethods.cpython-36.pyc-d0a2fb112fb6e0b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/validate.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...validate.cpython-36.opt-1.pyc-cf63114f1860ea08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/validate.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...validate.cpython-36.opt-2.pyc-124edf12615024fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/validity.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...validity.cpython-36.opt-1.pyc-1b9dae516173509f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/validity.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...validity.cpython-36.opt-1.pyc-59602a9532342e7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/scripts/posix/activate.csh +SPDXID: SPDXRef-File-...venv-scripts-posix-activate.csh-3d7ae30540e8b7fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/scripts/posix/activate.fish +SPDXID: SPDXRef-File-...venv-scripts-posix-activate.fish-654df972ddbb8835 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-0f97d4852ad2ac69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-35d44b125d4dd88e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-59bc3c44c60fe58d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-757a776f5ef95e92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-8a14b00aa1fa5899 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-8b3adb7cbf896bb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-94a999b108608791 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-bee703a389bd1eff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/version.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-2.pyc-480e30ec46faa9e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/versionpredicate.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...versionpredicate.cpython-36.opt-1.pyc-4f611e230f16b6d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/versionpredicate.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...versionpredicate.cpython-36.opt-2.pyc-a5fe6499fbd1881e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/versionpredicate.cpython-36.pyc +SPDXID: SPDXRef-File-...versionpredicate.cpython-36.pyc-b32c6eecfbf7f682 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/warnings.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...warnings.cpython-36.opt-1.pyc-8a3e68c00b4324b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/warnings.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...warnings.cpython-36.opt-2.pyc-46b19002654e806d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/weakref.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...weakref.cpython-36.opt-1.pyc-e0ce32177a3792a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/weakref.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...weakref.cpython-36.opt-2.pyc-450f97066c8636f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/webbrowser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...webbrowser.cpython-36.opt-1.pyc-a4d6032399b52d4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/webbrowser.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...webbrowser.cpython-36.opt-2.pyc-8eb270940142701a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/windows_events.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...windows-events.cpython-36.opt-1.pyc-34d61aeab9e76ebe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/windows_events.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...windows-events.cpython-36.opt-2.pyc-6de0e98ac0963cde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/windows_events.cpython-36.pyc +SPDXID: SPDXRef-File-...windows-events.cpython-36.pyc-0c38905fcc819375 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/windows_support.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...windows-support.cpython-36.opt-1.pyc-c5ce1249af33b34d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/windows_support.cpython-36.pyc +SPDXID: SPDXRef-File-...windows-support.cpython-36.pyc-a56d0f0e55835e19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/windows_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...windows-utils.cpython-36.opt-1.pyc-da26dc7a03d17886 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/windows_utils.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...windows-utils.cpython-36.opt-2.pyc-5fd695a5fdbf9af9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/windows_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...windows-utils.cpython-36.pyc-83ac29f9f092a198 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/wintypes.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...wintypes.cpython-36.opt-1.pyc-b0cdd00286e84023 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/wintypes.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...wintypes.cpython-36.opt-2.pyc-ee7be1210d78c2e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/bin/tools/ws-binarylogviewer.jar +SPDXID: SPDXRef-File-...wlp-bin-tools-ws-binarylogviewer.jar-6b8a1c0c8ae07228 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/bin/tools/ws-serverSchemagen.jar +SPDXID: SPDXRef-File-...wlp-bin-tools-ws-serverSchemagen.jar-7abceac531a8cf7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.artifact-1.0.81.jar-a142ab488a8d452b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.config_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.config-1.0.81.jar-d4df66677e16213e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.context_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.context-1.0.81.jar-13b2f4b84e4ab3f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.install_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.install-1.0.81.jar-a44ba1964661b299 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.logging_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.logging-1.0.81.jar-84621c5e78ab4598 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.monitor_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.monitor-1.0.81.jar-09ec11a080b99478 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.resource_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.resource-1.0.81.jar-654889404142e3fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.security-1.0.81.jar-e61ce55d7adc91f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/org.eclipse.osgi_3.18.300.jar +SPDXID: SPDXRef-File-...wlp-lib-org.eclipse.osgi-3.18.300.jar-3fa98d9efa9af05e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /usr/lib64/python3.6/__pycache__/xdrlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...xdrlib.cpython-36.opt-1.pyc-4a87263abcfe5f07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/xdrlib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...xdrlib.cpython-36.opt-2.pyc-a7d010d57a66d482 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/__pycache__/xmethods.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...xmethods.cpython-36.opt-1.pyc-6a790ce66409e07b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/xmlbuilder.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...xmlbuilder.cpython-36.opt-1.pyc-6c547a4a955d1c8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/xmlbuilder.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...xmlbuilder.cpython-36.opt-2.pyc-bec5b3fe1f35270d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/xmlreader.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...xmlreader.cpython-36.opt-1.pyc-1749b0ef2acde99c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/xmlreader.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...xmlreader.cpython-36.opt-2.pyc-fb67b22b5b7de6c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/xxlimited.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...xxlimited.cpython-36m-x86-64-linux-gnu.so-d7cba40be30c30e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/__pycache__/misc.cpython-36.pyc +SPDXID: SPDXRef-File-...yum---pycache---misc.cpython-36.pyc-bb35d60e9d4e8a0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/zip-safe +SPDXID: SPDXRef-File-...zip-safe-d76b95ff73fd1bab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/zipapp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...zipapp.cpython-36.opt-1.pyc-b5cf15872b6994a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/zipapp.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...zipapp.cpython-36.opt-2.pyc-e6c0e1235d6be3d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/zipfile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...zipfile.cpython-36.opt-1.pyc-6765e60661020e8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/zipfile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...zipfile.cpython-36.opt-2.pyc-20df91aee8f5a93c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/zlib_codec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...zlib-codec.cpython-36.opt-1.pyc-4333b65bf836712c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/zlib_codec.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...zlib-codec.cpython-36.opt-2.pyc-2151f14d1aa92847 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...zlib.cpython-36m-x86-64-linux-gnu.so-afe962c63cb68f6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Catamarca +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-Catamarca-c93c382667dd9b58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Cordoba +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-Cordoba-5f0a542cc4265710 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/La_Rioja +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-La-Rioja-d5278a54e24249ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Mendoza +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-Mendoza-0419a537cf8c187a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/San_Juan +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-San-Juan-4abb8574586cff9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/San_Luis +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-San-Luis-785997dea3730112 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Tucuman +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-Tucuman-c75982e533c61d3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Ushuaia +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-Ushuaia-14d4b85e90b338c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Indianapolis +SPDXID: SPDXRef-File-...zoneinfo-America-Indiana-Indianapolis-b40f5254b641b6fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Petersburg +SPDXID: SPDXRef-File-...zoneinfo-America-Indiana-Petersburg-c6a6c79b9fba63b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Tell_City +SPDXID: SPDXRef-File-...zoneinfo-America-Indiana-Tell-City-d8178d1fa10659e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Vincennes +SPDXID: SPDXRef-File-...zoneinfo-America-Indiana-Vincennes-ecbe3ea60a4b6f75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Kentucky/Louisville +SPDXID: SPDXRef-File-...zoneinfo-America-Kentucky-Louisville-8c0b98513f3ab0a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Kentucky/Monticello +SPDXID: SPDXRef-File-...zoneinfo-America-Kentucky-Monticello-a5f9809dc27ec638 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/North_Dakota/Beulah +SPDXID: SPDXRef-File-...zoneinfo-America-North-Dakota-Beulah-62104c0a4c4c6d91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/North_Dakota/Center +SPDXID: SPDXRef-File-...zoneinfo-America-North-Dakota-Center-f456edf71f63cf67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/DumontDUrville +SPDXID: SPDXRef-File-...zoneinfo-Antarctica-DumontDUrville-0a802f28eefb2bfd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz +SPDXID: SPDXRef-File-...zoneinfo-dateutil-zoneinfo.tar.gz-675048e4d802e089 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Addis_Ababa +SPDXID: SPDXRef-File-...zoneinfo-posix-Africa-Addis-Ababa-659044aa54ff11a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Brazzaville +SPDXID: SPDXRef-File-...zoneinfo-posix-Africa-Brazzaville-28fbf884163c36ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Dar_es_Salaam +SPDXID: SPDXRef-File-...zoneinfo-posix-Africa-Dar-es-Salaam-67a1665464eac612 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Johannesburg +SPDXID: SPDXRef-File-...zoneinfo-posix-Africa-Johannesburg-d5d90604412f7250 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Ouagadougou +SPDXID: SPDXRef-File-...zoneinfo-posix-Africa-Ouagadougou-54a93d5eff67d6c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Jujuy +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Argentina-Jujuy-744783083fdd46d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Salta +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Argentina-Salta-8c9ff1a9c99f2331 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Bahia_Banderas +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Bahia-Banderas-8c6d6295e524cd82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Blanc-Sablon +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Blanc-Sablon-2a5e132532c056ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Buenos_Aires +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Buenos-Aires-6297f670770fe380 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Cambridge_Bay +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Cambridge-Bay-5e75625a9e91fe36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Campo_Grande +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Campo-Grande-56cdfffead9c1583 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Ciudad_Juarez +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Ciudad-Juarez-b68540147460d35b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Coral_Harbour +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Coral-Harbour-ed904b5eec65d6d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Costa_Rica +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Costa-Rica-72097263ca4fa3b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Danmarkshavn +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Danmarkshavn-5552e86da393911e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Dawson_Creek +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Dawson-Creek-c76521be78a9512f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/El_Salvador +SPDXID: SPDXRef-File-...zoneinfo-posix-America-El-Salvador-19e6626712601854 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Fort_Nelson +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Fort-Nelson-91d4567eee8a326e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Fort_Wayne +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Fort-Wayne-2b85d00f0995079f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Grand_Turk +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Grand-Turk-dc0b29cf00349586 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Guadeloupe +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Guadeloupe-cf67b9610614b2c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Hermosillo +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Hermosillo-7495dd6bf9a86b4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Knox +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Indiana-Knox-bf5b940188da1fad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Marengo +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Indiana-Marengo-0967658bf23b5164 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Vevay +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Indiana-Vevay-184941de491dde61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Winamac +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Indiana-Winamac-2b31993f187cffd2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indianapolis +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Indianapolis-79f4623a9a093d23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Kralendijk +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Kralendijk-7fbfaa1b0bca495b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Los_Angeles +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Los-Angeles-d34d60cd03314b84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Louisville +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Louisville-b3700922b8c593f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Lower_Princes +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Lower-Princes-266bddcc157731a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Martinique +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Martinique-ea280b928b29765e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Metlakatla +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Metlakatla-63807a1516f5cb9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Mexico_City +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Mexico-City-401cd1cc1766be45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Montevideo +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Montevideo-5efc090b56574580 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Montserrat +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Montserrat-00abe2ad80990845 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Pangnirtung +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Pangnirtung-b7abeef507f855ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Paramaribo +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Paramaribo-f956386a9a279b87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Port-au-Prince +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Port-au-Prince-2af0412addb5e7ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Port_of_Spain +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Port-of-Spain-9567d512216e91d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Porto_Acre +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Porto-Acre-1c61690a5d11c684 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Porto_Velho +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Porto-Velho-e1d144dde5f5ffab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Puerto_Rico +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Puerto-Rico-fa5a97068088bf2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Punta_Arenas +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Punta-Arenas-0d21a61b66afbcd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Rainy_River +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Rainy-River-8209a442d7ca625c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Rankin_Inlet +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Rankin-Inlet-bd4fa151ba6382b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Rio_Branco +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Rio-Branco-1068f363c55efdd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Santa_Isabel +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Santa-Isabel-dfdd2d7f707dcaa7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Santo_Domingo +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Santo-Domingo-94ce4ad4b3a032f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Scoresbysund +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Scoresbysund-9efc60ad3d282460 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/St_Barthelemy +SPDXID: SPDXRef-File-...zoneinfo-posix-America-St-Barthelemy-d7e82b452fd64f0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/St_Vincent +SPDXID: SPDXRef-File-...zoneinfo-posix-America-St-Vincent-15417edacc7a0308 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Swift_Current +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Swift-Current-372a787485debc14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Tegucigalpa +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Tegucigalpa-c24ee3269c517a3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Thunder_Bay +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Thunder-Bay-e15c699568dbae72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Whitehorse +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Whitehorse-078958a3288ea521 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Yellowknife +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Yellowknife-9c086a2e9d6371cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Macquarie +SPDXID: SPDXRef-File-...zoneinfo-posix-Antarctica-Macquarie-6f8f1b173853a284 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/McMurdo +SPDXID: SPDXRef-File-...zoneinfo-posix-Antarctica-McMurdo-0e1c87957cbdd2b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Rothera +SPDXID: SPDXRef-File-...zoneinfo-posix-Antarctica-Rothera-88121c1d6d4162c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/South_Pole +SPDXID: SPDXRef-File-...zoneinfo-posix-Antarctica-South-Pole-d64fbf3c032eef89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Arctic/Longyearbyen +SPDXID: SPDXRef-File-...zoneinfo-posix-Arctic-Longyearbyen-e78d93cf91d35fe6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Srednekolymsk +SPDXID: SPDXRef-File-...zoneinfo-posix-Asia-Srednekolymsk-f13d65c4d148c12c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Ujung_Pandang +SPDXID: SPDXRef-File-...zoneinfo-posix-Asia-Ujung-Pandang-0cb0f3890d32c746 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Yekaterinburg +SPDXID: SPDXRef-File-...zoneinfo-posix-Asia-Yekaterinburg-c0aea23a8c418205 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Cape_Verde +SPDXID: SPDXRef-File-...zoneinfo-posix-Atlantic-Cape-Verde-50ef553952fd6515 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Jan_Mayen +SPDXID: SPDXRef-File-...zoneinfo-posix-Atlantic-Jan-Mayen-7ffbfd137e10ad5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Reykjavik +SPDXID: SPDXRef-File-...zoneinfo-posix-Atlantic-Reykjavik-2cc77d80150be7c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/South_Georgia +SPDXID: SPDXRef-File-...zoneinfo-posix-Atlantic-South-Georgia-5ac1887fb704ecc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/St_Helena +SPDXID: SPDXRef-File-...zoneinfo-posix-Atlantic-St-Helena-97f94511a525956b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Adelaide +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Adelaide-1b8d6ecbd34b96ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Brisbane +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Brisbane-d3bde231fe10ae84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Broken_Hill +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Broken-Hill-83fc910e78033f79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Canberra +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Canberra-368d46a647345965 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Lindeman +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Lindeman-db80c29270690f39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Lord_Howe +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Lord-Howe-ac271e431624bb14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Melbourne +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Melbourne-8167e8ed6319763b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Queensland +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Queensland-e11361145c781915 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Tasmania +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Tasmania-01d47de016b4e77c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Victoria +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Victoria-747225694891ed1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Yancowinna +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Yancowinna-7801ee8d23711636 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Newfoundland +SPDXID: SPDXRef-File-...zoneinfo-posix-Canada-Newfoundland-d6978e7061980e6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Saskatchewan +SPDXID: SPDXRef-File-...zoneinfo-posix-Canada-Saskatchewan-f897300ee4e28938 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Chile/EasterIsland +SPDXID: SPDXRef-File-...zoneinfo-posix-Chile-EasterIsland-373b403b952c6668 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Isle_of_Man +SPDXID: SPDXRef-File-...zoneinfo-posix-Europe-Isle-of-Man-ee8e7c898465e014 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Kaliningrad +SPDXID: SPDXRef-File-...zoneinfo-posix-Europe-Kaliningrad-66ac8e4814f93ef7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Antananarivo +SPDXID: SPDXRef-File-...zoneinfo-posix-Indian-Antananarivo-1984cc84b574372e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Bougainville +SPDXID: SPDXRef-File-...zoneinfo-posix-Pacific-Bougainville-745eafdc14f770cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Guadalcanal +SPDXID: SPDXRef-File-...zoneinfo-posix-Pacific-Guadalcanal-cc3f0bf903b6a49a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Kiritimati +SPDXID: SPDXRef-File-...zoneinfo-posix-Pacific-Kiritimati-d40d6fa3212aca6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Port_Moresby +SPDXID: SPDXRef-File-...zoneinfo-posix-Pacific-Port-Moresby-206077bc713cab18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Addis_Ababa +SPDXID: SPDXRef-File-...zoneinfo-right-Africa-Addis-Ababa-0b5737de65bf4a4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Brazzaville +SPDXID: SPDXRef-File-...zoneinfo-right-Africa-Brazzaville-e4d1940983cd44a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Dar_es_Salaam +SPDXID: SPDXRef-File-...zoneinfo-right-Africa-Dar-es-Salaam-f555b54f497e445f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Johannesburg +SPDXID: SPDXRef-File-...zoneinfo-right-Africa-Johannesburg-9b91cf0885717a5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Ouagadougou +SPDXID: SPDXRef-File-...zoneinfo-right-Africa-Ouagadougou-6fcba9e89391a44b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Jujuy +SPDXID: SPDXRef-File-...zoneinfo-right-America-Argentina-Jujuy-e100893d7d8bcb57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Salta +SPDXID: SPDXRef-File-...zoneinfo-right-America-Argentina-Salta-1fedb3403c63ef8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Bahia_Banderas +SPDXID: SPDXRef-File-...zoneinfo-right-America-Bahia-Banderas-04ad9d22e445b5ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Blanc-Sablon +SPDXID: SPDXRef-File-...zoneinfo-right-America-Blanc-Sablon-ad809808b5329a5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Buenos_Aires +SPDXID: SPDXRef-File-...zoneinfo-right-America-Buenos-Aires-3c9bff9fcdb145f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Cambridge_Bay +SPDXID: SPDXRef-File-...zoneinfo-right-America-Cambridge-Bay-5db99e5750e3caae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Campo_Grande +SPDXID: SPDXRef-File-...zoneinfo-right-America-Campo-Grande-1c0e7b83ab672459 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Ciudad_Juarez +SPDXID: SPDXRef-File-...zoneinfo-right-America-Ciudad-Juarez-c24a96416b2b0ab8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Coral_Harbour +SPDXID: SPDXRef-File-...zoneinfo-right-America-Coral-Harbour-581cb39a00f59c89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Costa_Rica +SPDXID: SPDXRef-File-...zoneinfo-right-America-Costa-Rica-6c7bf881913e5a6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Danmarkshavn +SPDXID: SPDXRef-File-...zoneinfo-right-America-Danmarkshavn-3a53e075fd72856b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Dawson_Creek +SPDXID: SPDXRef-File-...zoneinfo-right-America-Dawson-Creek-a421442c7af6a65d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/El_Salvador +SPDXID: SPDXRef-File-...zoneinfo-right-America-El-Salvador-720cbcce8ec3055c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Fort_Nelson +SPDXID: SPDXRef-File-...zoneinfo-right-America-Fort-Nelson-1c3d89cd7967c0ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Fort_Wayne +SPDXID: SPDXRef-File-...zoneinfo-right-America-Fort-Wayne-52f2294de5aba540 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Grand_Turk +SPDXID: SPDXRef-File-...zoneinfo-right-America-Grand-Turk-7e601a46db28dd6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Guadeloupe +SPDXID: SPDXRef-File-...zoneinfo-right-America-Guadeloupe-0d9dda2c3e68085a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Hermosillo +SPDXID: SPDXRef-File-...zoneinfo-right-America-Hermosillo-65860e84b462e67f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Knox +SPDXID: SPDXRef-File-...zoneinfo-right-America-Indiana-Knox-c11ca4f7c850c9cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Marengo +SPDXID: SPDXRef-File-...zoneinfo-right-America-Indiana-Marengo-eb8afcac2580f0f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Vevay +SPDXID: SPDXRef-File-...zoneinfo-right-America-Indiana-Vevay-2cec56a2016b35b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Winamac +SPDXID: SPDXRef-File-...zoneinfo-right-America-Indiana-Winamac-13062c229607de32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indianapolis +SPDXID: SPDXRef-File-...zoneinfo-right-America-Indianapolis-3de1632e3aa1005d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Kralendijk +SPDXID: SPDXRef-File-...zoneinfo-right-America-Kralendijk-192f42122c02433e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Los_Angeles +SPDXID: SPDXRef-File-...zoneinfo-right-America-Los-Angeles-bf72a7406560df47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Louisville +SPDXID: SPDXRef-File-...zoneinfo-right-America-Louisville-19ed3f73478ac685 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Lower_Princes +SPDXID: SPDXRef-File-...zoneinfo-right-America-Lower-Princes-55c9bf2f1df80f46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Martinique +SPDXID: SPDXRef-File-...zoneinfo-right-America-Martinique-d358412f7693bca1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Metlakatla +SPDXID: SPDXRef-File-...zoneinfo-right-America-Metlakatla-1d93f6e8d037c847 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Mexico_City +SPDXID: SPDXRef-File-...zoneinfo-right-America-Mexico-City-4f940af3e5c9e20d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Montevideo +SPDXID: SPDXRef-File-...zoneinfo-right-America-Montevideo-249e3cbf6e90cef6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Montserrat +SPDXID: SPDXRef-File-...zoneinfo-right-America-Montserrat-98efc091d040c84e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Pangnirtung +SPDXID: SPDXRef-File-...zoneinfo-right-America-Pangnirtung-f99ed9f92195ba11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Paramaribo +SPDXID: SPDXRef-File-...zoneinfo-right-America-Paramaribo-f7bd30322eee62aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Port-au-Prince +SPDXID: SPDXRef-File-...zoneinfo-right-America-Port-au-Prince-58cb01538c337fa4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Port_of_Spain +SPDXID: SPDXRef-File-...zoneinfo-right-America-Port-of-Spain-25ff1541b58db4c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Porto_Acre +SPDXID: SPDXRef-File-...zoneinfo-right-America-Porto-Acre-09d0bb4d9630ea2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Porto_Velho +SPDXID: SPDXRef-File-...zoneinfo-right-America-Porto-Velho-8656598f79436b12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Puerto_Rico +SPDXID: SPDXRef-File-...zoneinfo-right-America-Puerto-Rico-3dbdda115e95a0e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Punta_Arenas +SPDXID: SPDXRef-File-...zoneinfo-right-America-Punta-Arenas-b65d0f4755ead389 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Rainy_River +SPDXID: SPDXRef-File-...zoneinfo-right-America-Rainy-River-da30c37c3fbf35e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Rankin_Inlet +SPDXID: SPDXRef-File-...zoneinfo-right-America-Rankin-Inlet-c5cd0b7ff12d409b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Rio_Branco +SPDXID: SPDXRef-File-...zoneinfo-right-America-Rio-Branco-55feb0e8f6274aab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Santa_Isabel +SPDXID: SPDXRef-File-...zoneinfo-right-America-Santa-Isabel-8e8c368fb20e9837 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Santo_Domingo +SPDXID: SPDXRef-File-...zoneinfo-right-America-Santo-Domingo-7c37049773f60fe5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Scoresbysund +SPDXID: SPDXRef-File-...zoneinfo-right-America-Scoresbysund-12e0cda21b20acaf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/St_Barthelemy +SPDXID: SPDXRef-File-...zoneinfo-right-America-St-Barthelemy-2927fea5d8da5cbb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/St_Vincent +SPDXID: SPDXRef-File-...zoneinfo-right-America-St-Vincent-b1ac1004b8e060af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Swift_Current +SPDXID: SPDXRef-File-...zoneinfo-right-America-Swift-Current-be992afee149fdb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Tegucigalpa +SPDXID: SPDXRef-File-...zoneinfo-right-America-Tegucigalpa-5832e3b87a40fcba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Thunder_Bay +SPDXID: SPDXRef-File-...zoneinfo-right-America-Thunder-Bay-4d93c16ae804ebad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Whitehorse +SPDXID: SPDXRef-File-...zoneinfo-right-America-Whitehorse-88c304b67ac75926 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Yellowknife +SPDXID: SPDXRef-File-...zoneinfo-right-America-Yellowknife-cca72e2778613e9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Macquarie +SPDXID: SPDXRef-File-...zoneinfo-right-Antarctica-Macquarie-7be6a7f67890598e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/McMurdo +SPDXID: SPDXRef-File-...zoneinfo-right-Antarctica-McMurdo-250166ac4c11b8e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Rothera +SPDXID: SPDXRef-File-...zoneinfo-right-Antarctica-Rothera-12047db722f9bc01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/South_Pole +SPDXID: SPDXRef-File-...zoneinfo-right-Antarctica-South-Pole-40a54feab7b7d1dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Arctic/Longyearbyen +SPDXID: SPDXRef-File-...zoneinfo-right-Arctic-Longyearbyen-cc95bca5cf84fbf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Srednekolymsk +SPDXID: SPDXRef-File-...zoneinfo-right-Asia-Srednekolymsk-db91d5592f0d6de1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Ujung_Pandang +SPDXID: SPDXRef-File-...zoneinfo-right-Asia-Ujung-Pandang-cb219c1f2f1411c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Yekaterinburg +SPDXID: SPDXRef-File-...zoneinfo-right-Asia-Yekaterinburg-5bfb36bbd0556f32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Cape_Verde +SPDXID: SPDXRef-File-...zoneinfo-right-Atlantic-Cape-Verde-6137ebbac86afc20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Jan_Mayen +SPDXID: SPDXRef-File-...zoneinfo-right-Atlantic-Jan-Mayen-18e9526b8eaee251 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Reykjavik +SPDXID: SPDXRef-File-...zoneinfo-right-Atlantic-Reykjavik-147b63bcd8916862 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/South_Georgia +SPDXID: SPDXRef-File-...zoneinfo-right-Atlantic-South-Georgia-9b266b86a5142562 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/St_Helena +SPDXID: SPDXRef-File-...zoneinfo-right-Atlantic-St-Helena-1097b76a12a71ab8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Adelaide +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Adelaide-9c7cc86eb922fe81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Brisbane +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Brisbane-aa13dc5da67c3443 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Broken_Hill +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Broken-Hill-9f77e3b751f2dc15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Canberra +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Canberra-3d3598da4068b2d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Lindeman +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Lindeman-e002ae66a3b29e28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Lord_Howe +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Lord-Howe-22f9a52447763804 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Melbourne +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Melbourne-42aec64a52cecb6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Queensland +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Queensland-6b6975887d31a7a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Tasmania +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Tasmania-e0674137f1f2c7c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Victoria +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Victoria-788e46dc0878eeb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Yancowinna +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Yancowinna-d22a63c1e24bea8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Newfoundland +SPDXID: SPDXRef-File-...zoneinfo-right-Canada-Newfoundland-c8e2dc1c161b2087 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Saskatchewan +SPDXID: SPDXRef-File-...zoneinfo-right-Canada-Saskatchewan-cda3d702fd9bdbf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Chile/EasterIsland +SPDXID: SPDXRef-File-...zoneinfo-right-Chile-EasterIsland-ea29c7dabde26c3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Isle_of_Man +SPDXID: SPDXRef-File-...zoneinfo-right-Europe-Isle-of-Man-f908e7ee3977d1f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Kaliningrad +SPDXID: SPDXRef-File-...zoneinfo-right-Europe-Kaliningrad-64353765c5a8f5bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Antananarivo +SPDXID: SPDXRef-File-...zoneinfo-right-Indian-Antananarivo-511460194a5120c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Bougainville +SPDXID: SPDXRef-File-...zoneinfo-right-Pacific-Bougainville-0f17b5dd7036bfe1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Guadalcanal +SPDXID: SPDXRef-File-...zoneinfo-right-Pacific-Guadalcanal-bb0ddea73dc858f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Kiritimati +SPDXID: SPDXRef-File-...zoneinfo-right-Pacific-Kiritimati-4edd692e162a9ced +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Port_Moresby +SPDXID: SPDXRef-File-...zoneinfo-right-Pacific-Port-Moresby-ea7bfe22f503b380 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_sd_outputmodes +SPDXID: SPDXRef-File-...zsh-site-functions--sd-outputmodes-2d9b397db7a05ec3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_sd_unit_files +SPDXID: SPDXRef-File-...zsh-site-functions--sd-unit-files-32c43a8a50b01764 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemd-analyze +SPDXID: SPDXRef-File-...zsh-site-functions--systemd-analyze-6a5812a63b1a0a5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemd-delta +SPDXID: SPDXRef-File-...zsh-site-functions--systemd-delta-69980daaf61481dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemd-inhibit +SPDXID: SPDXRef-File-...zsh-site-functions--systemd-inhibit-590d5a72b3eb38f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemd-resolve +SPDXID: SPDXRef-File-...zsh-site-functions--systemd-resolve-ff2d7690c8b146cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemd-tmpfiles +SPDXID: SPDXRef-File-...zsh-site-functions--systemd-tmpfiles-cab0381335a345b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/GREP_COLORS +SPDXID: SPDXRef-File-etc-GREP-COLORS-bacb11fa373e1fc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/X11/xorg.conf.d/00-keyboard.conf +SPDXID: SPDXRef-File-etc-X11-xorg.conf.d-00-keyboard.conf-acfb6e6b7ef715d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/adjtime +SPDXID: SPDXRef-File-etc-adjtime-4ed0ab6e822df583 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/aliases +SPDXID: SPDXRef-File-etc-aliases-9e22cbe417ad2ab4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/bashrc +SPDXID: SPDXRef-File-etc-bashrc-ece2de793a0c1a36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/bindresvport.blacklist +SPDXID: SPDXRef-File-etc-bindresvport.blacklist-405c1878215d01e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/crypto-policies/config +SPDXID: SPDXRef-File-etc-crypto-policies-config-2023d233a19ba276 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/crypto-policies/state/CURRENT.pol +SPDXID: SPDXRef-File-etc-crypto-policies-state-CURRENT.pol-6ffd2ba288fe5ebf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/crypto-policies/state/current +SPDXID: SPDXRef-File-etc-crypto-policies-state-current-8fca46800dea9d86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/crypttab +SPDXID: SPDXRef-File-etc-crypttab-dee8380495a4cf86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/csh.cshrc +SPDXID: SPDXRef-File-etc-csh.cshrc-09f80283e76590cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/csh.login +SPDXID: SPDXRef-File-etc-csh.login-be19e5f9f668bde2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dbus-1/session.conf +SPDXID: SPDXRef-File-etc-dbus-1-session.conf-44c8f8cbf4737db1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dbus-1/system.conf +SPDXID: SPDXRef-File-etc-dbus-1-system.conf-3243a3319d33a9c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/default/useradd +SPDXID: SPDXRef-File-etc-default-useradd-4ce18e0c0164a351 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/dnf.conf +SPDXID: SPDXRef-File-etc-dnf-dnf.conf-5415cd13736cacdc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/plugins/copr.conf +SPDXID: SPDXRef-File-etc-dnf-plugins-copr.conf-d2a260212379547c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/plugins/debuginfo-install.conf +SPDXID: SPDXRef-File-etc-dnf-plugins-debuginfo-install.conf-f1df741709ca019e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/plugins/product-id.conf +SPDXID: SPDXRef-File-etc-dnf-plugins-product-id.conf-54bb6445b2fad991 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/protected.d/dnf.conf +SPDXID: SPDXRef-File-etc-dnf-protected.d-dnf.conf-e1a23125cb6c7590 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/protected.d/setup.conf +SPDXID: SPDXRef-File-etc-dnf-protected.d-setup.conf-3a4253edbba81e76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/protected.d/systemd.conf +SPDXID: SPDXRef-File-etc-dnf-protected.d-systemd.conf-a64e2b295f8b9eb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/protected.d/yum.conf +SPDXID: SPDXRef-File-etc-dnf-protected.d-yum.conf-0187943b2e5f307a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/environment +SPDXID: SPDXRef-File-etc-environment-8ef58ba6d912c968 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/ethertypes +SPDXID: SPDXRef-File-etc-ethertypes-03fcab9483d4a32b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/exports +SPDXID: SPDXRef-File-etc-exports-626f02fbaf5d9f4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/filesystems +SPDXID: SPDXRef-File-etc-filesystems-910b481e67e71ac7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/fonts/conf.d/README +SPDXID: SPDXRef-File-etc-fonts-conf.d-README-fd67fb715fb7558c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/fonts/fonts.conf +SPDXID: SPDXRef-File-etc-fonts-fonts.conf-8e59c78284664d67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/gcrypt/random.conf +SPDXID: SPDXRef-File-etc-gcrypt-random.conf-5f30328f0d2f5a54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/group +SPDXID: SPDXRef-File-etc-group-126b5168e4d9fd8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/gshadow +SPDXID: SPDXRef-File-etc-gshadow-c42f3b0bb60d8196 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/host.conf +SPDXID: SPDXRef-File-etc-host.conf-4868ec58da1c90fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/hostname +SPDXID: SPDXRef-File-etc-hostname-f646fcb09c277d5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/hosts +SPDXID: SPDXRef-File-etc-hosts-313360aadb479c12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:5c5a862c379058833cd6994589e6ad90ab08faea472d8dc2dac046acd815a70a + +FileName: /etc/inittab +SPDXID: SPDXRef-File-etc-inittab-16d6c0f35c6b085a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/inputrc +SPDXID: SPDXRef-File-etc-inputrc-bf07b00e4f485257 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/issue +SPDXID: SPDXRef-File-etc-issue-1a6139587efc9b4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/issue.net +SPDXID: SPDXRef-File-etc-issue.net-bb609963d8224cf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/krb5.conf +SPDXID: SPDXRef-File-etc-krb5.conf-e08585469b0e61f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/ld.so.cache +SPDXID: SPDXRef-File-etc-ld.so.cache-a3a49bcf68803b4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:ae8ca4ad3728bc07e1f5c89dff6565942d9109266a15e7c45a983d6130a2615a + +FileName: /etc/ld.so.conf +SPDXID: SPDXRef-File-etc-ld.so.conf-9d4d2315b8159d40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/libaudit.conf +SPDXID: SPDXRef-File-etc-libaudit.conf-0ef20fca5a22065c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/libibverbs.d/bnxt_re.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-bnxt-re.driver-22692f255a41b5c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/cxgb4.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-cxgb4.driver-3f1bbc604146b111 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/efa.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-efa.driver-f5a6f21b6305e635 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/hfi1verbs.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-hfi1verbs.driver-bb630a8f2dd1da3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/hns.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-hns.driver-ec3abbb8d734ad8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/irdma.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-irdma.driver-343310c3d2906c6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/mlx4.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-mlx4.driver-ded7e7df7db67c23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/mlx5.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-mlx5.driver-082705b227a5250a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/qedr.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-qedr.driver-01fffe9b90024450 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/rxe.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-rxe.driver-ffd177095d134fc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/siw.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-siw.driver-d5ab1d058e4c67b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/vmw_pvrdma.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-vmw-pvrdma.driver-8c5e7562fcfb5e40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libnl/classid +SPDXID: SPDXRef-File-etc-libnl-classid-e662cd7ecdb55d7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/libnl/pktloc +SPDXID: SPDXRef-File-etc-libnl-pktloc-de85d4fb5d3c1678 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/libssh/libssh_client.config +SPDXID: SPDXRef-File-etc-libssh-libssh-client.config-31e32e16fdea192f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/libssh/libssh_server.config +SPDXID: SPDXRef-File-etc-libssh-libssh-server.config-f97a5eb4e503b165 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/libuser.conf +SPDXID: SPDXRef-File-etc-libuser.conf-25cd23f43e125928 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/locale.conf +SPDXID: SPDXRef-File-etc-locale.conf-6787ccab017a9caf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/login.defs +SPDXID: SPDXRef-File-etc-login.defs-46c7f883387232ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/logrotate.d/dnf +SPDXID: SPDXRef-File-etc-logrotate.d-dnf-8ca272940c14476e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/logrotate.d/subscription-manager +SPDXID: SPDXRef-File-etc-logrotate.d-subscription-manager-9f20476ba4dad8b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/machine-id +SPDXID: SPDXRef-File-etc-machine-id-1d2eeb6c35de9827 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/motd +SPDXID: SPDXRef-File-etc-motd-ce9469b8cab5279c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/netconfig +SPDXID: SPDXRef-File-etc-netconfig-bdf9caf37ce103ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/networks +SPDXID: SPDXRef-File-etc-networks-afa1e4a0d8a9e142 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/nftables/main.nft +SPDXID: SPDXRef-File-etc-nftables-main.nft-1d998067f80fd5f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/nftables/nat.nft +SPDXID: SPDXRef-File-etc-nftables-nat.nft-5e0c3b6bdb8b0ac1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/nftables/osf/pf.os +SPDXID: SPDXRef-File-etc-nftables-osf-pf.os-466ba07e05bd8df5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/nftables/router.nft +SPDXID: SPDXRef-File-etc-nftables-router.nft-683eb59791d91368 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/nsswitch.conf +SPDXID: SPDXRef-File-etc-nsswitch.conf-c23113a191f1b1d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/openldap/ldap.conf +SPDXID: SPDXRef-File-etc-openldap-ldap.conf-91eb039632dbcf78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/config-util +SPDXID: SPDXRef-File-etc-pam.d-config-util-44a1b1d83b2dc66a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/fingerprint-auth +SPDXID: SPDXRef-File-etc-pam.d-fingerprint-auth-dadc09b3c82832f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/login +SPDXID: SPDXRef-File-etc-pam.d-login-f31db323edd73e9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/other +SPDXID: SPDXRef-File-etc-pam.d-other-7bfc13e464be593b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/passwd +SPDXID: SPDXRef-File-etc-pam.d-passwd-541957eabc00bbdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/password-auth +SPDXID: SPDXRef-File-etc-pam.d-password-auth-e4b04599401de0b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/postlogin +SPDXID: SPDXRef-File-etc-pam.d-postlogin-358f093208a17aec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/remote +SPDXID: SPDXRef-File-etc-pam.d-remote-7b5e7d32cf09e008 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/runuser +SPDXID: SPDXRef-File-etc-pam.d-runuser-6f6b006da29629cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/runuser-l +SPDXID: SPDXRef-File-etc-pam.d-runuser-l-2fa9493d98dc27d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/smartcard-auth +SPDXID: SPDXRef-File-etc-pam.d-smartcard-auth-3975d6f6d6f30a67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/su +SPDXID: SPDXRef-File-etc-pam.d-su-c8a5c816f064afb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/su-l +SPDXID: SPDXRef-File-etc-pam.d-su-l-26fe759d840dee6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/subscription-manager +SPDXID: SPDXRef-File-etc-pam.d-subscription-manager-4710ab729ebf1497 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/system-auth +SPDXID: SPDXRef-File-etc-pam.d-system-auth-28c3b67509a115a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/systemd-user +SPDXID: SPDXRef-File-etc-pam.d-systemd-user-f1eef627e5d1fcc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/passwd +SPDXID: SPDXRef-File-etc-passwd-90de2d8634cc64c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:711a6bcc74697eeea01e778a93f515669fcd6cbb945fdd12446e4c6440802d2b + +FileName: /etc/pki/ca-trust/README +SPDXID: SPDXRef-File-etc-pki-ca-trust-README-96ecf6ead68d0c25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/ca-legacy.conf +SPDXID: SPDXRef-File-etc-pki-ca-trust-ca-legacy.conf-941143020d563d10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/README +SPDXID: SPDXRef-File-etc-pki-ca-trust-extracted-README-80ed41260332a1ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/edk2/README +SPDXID: SPDXRef-File-etc-pki-ca-trust-extracted-edk2-README-d28ed8243b83d2ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/java/README +SPDXID: SPDXRef-File-etc-pki-ca-trust-extracted-java-README-0bb6f1c96969abef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/pem/README +SPDXID: SPDXRef-File-etc-pki-ca-trust-extracted-pem-README-1d2ecb57de6d58ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/source/README +SPDXID: SPDXRef-File-etc-pki-ca-trust-source-README-ef036ffb48058105 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/product-default/479.pem +SPDXID: SPDXRef-File-etc-pki-product-default-479.pem-03a11ebe10f77ea2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/tls/ct_log_list.cnf +SPDXID: SPDXRef-File-etc-pki-tls-ct-log-list.cnf-8fbba57cc0ef9365 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/tls/openssl.cnf +SPDXID: SPDXRef-File-etc-pki-tls-openssl.cnf-7a7377c66d7f25a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/printcap +SPDXID: SPDXRef-File-etc-printcap-798f42720575d83a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile +SPDXID: SPDXRef-File-etc-profile-5a7d895563e2a4b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/colorgrep.csh +SPDXID: SPDXRef-File-etc-profile.d-colorgrep.csh-d9db08ce5c03e386 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/colorgrep.sh +SPDXID: SPDXRef-File-etc-profile.d-colorgrep.sh-17e0e4a63748c690 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/colorzgrep.csh +SPDXID: SPDXRef-File-etc-profile.d-colorzgrep.csh-c4a6f677e5533a33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/colorzgrep.sh +SPDXID: SPDXRef-File-etc-profile.d-colorzgrep.sh-59cbe5208d0b48cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/csh.local +SPDXID: SPDXRef-File-etc-profile.d-csh.local-d7f2266219ea533b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/gawk.csh +SPDXID: SPDXRef-File-etc-profile.d-gawk.csh-1266f3467c6bae09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/gawk.sh +SPDXID: SPDXRef-File-etc-profile.d-gawk.sh-4ed9805d3069a9f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/lang.csh +SPDXID: SPDXRef-File-etc-profile.d-lang.csh-0187bc6ea2b5ac9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/lang.sh +SPDXID: SPDXRef-File-etc-profile.d-lang.sh-cbde1e30082ef996 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/sh.local +SPDXID: SPDXRef-File-etc-profile.d-sh.local-bfb9288815fc2000 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/which2.csh +SPDXID: SPDXRef-File-etc-profile.d-which2.csh-14d29d124494fdad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/which2.sh +SPDXID: SPDXRef-File-etc-profile.d-which2.sh-5d10f15a57b32e67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/protocols +SPDXID: SPDXRef-File-etc-protocols-b60ff1f0bea24ce5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rc.d/init.d/README +SPDXID: SPDXRef-File-etc-rc.d-init.d-README-40c859900b4b760f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rc.d/rc.local +SPDXID: SPDXRef-File-etc-rc.d-rc.local-e1bf31ef47fc3222 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/redhat-release +SPDXID: SPDXRef-File-etc-redhat-release-ef6d52083fa32a5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rhsm/ca/redhat-uep.pem +SPDXID: SPDXRef-File-etc-rhsm-ca-redhat-uep.pem-16429a5a5c7f5b74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rhsm/logging.conf +SPDXID: SPDXRef-File-etc-rhsm-logging.conf-e6dc5e722b02acec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rhsm/rhsm.conf +SPDXID: SPDXRef-File-etc-rhsm-rhsm.conf-33ee4e49801a8939 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rhsm/syspurpose/valid_fields.json +SPDXID: SPDXRef-File-etc-rhsm-syspurpose-valid-fields.json-370e95071e132f85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rpc +SPDXID: SPDXRef-File-etc-rpc-a6dec8bf69c4b476 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rpm/macros.dist +SPDXID: SPDXRef-File-etc-rpm-macros.dist-ff878d87d85b98fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/access.conf +SPDXID: SPDXRef-File-etc-security-access.conf-483f4355e19fef17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/chroot.conf +SPDXID: SPDXRef-File-etc-security-chroot.conf-6f592c2e4aa427f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/console.apps/config-util +SPDXID: SPDXRef-File-etc-security-console.apps-config-util-06ffec58708307c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/console.handlers +SPDXID: SPDXRef-File-etc-security-console.handlers-8cddc3102cb9ca9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/console.perms +SPDXID: SPDXRef-File-etc-security-console.perms-043e8634a0965656 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/faillock.conf +SPDXID: SPDXRef-File-etc-security-faillock.conf-46ab6fb3e4330c07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/group.conf +SPDXID: SPDXRef-File-etc-security-group.conf-32e6e0ce38bfb61e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/limits.conf +SPDXID: SPDXRef-File-etc-security-limits.conf-10126cd3ee8b5dd2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/namespace.conf +SPDXID: SPDXRef-File-etc-security-namespace.conf-188f8fd7f08df7cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/namespace.init +SPDXID: SPDXRef-File-etc-security-namespace.init-7972ad94002ec0d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/opasswd +SPDXID: SPDXRef-File-etc-security-opasswd-4ea39fc2dc18f4f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/pam_env.conf +SPDXID: SPDXRef-File-etc-security-pam-env.conf-ee927e4398f8442d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/pwhistory.conf +SPDXID: SPDXRef-File-etc-security-pwhistory.conf-1071f06d7e3b0a7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/pwquality.conf +SPDXID: SPDXRef-File-etc-security-pwquality.conf-aa5a752bcc77345b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/sepermit.conf +SPDXID: SPDXRef-File-etc-security-sepermit.conf-d23184be304121e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/time.conf +SPDXID: SPDXRef-File-etc-security-time.conf-c0625510190528e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/selinux/semanage.conf +SPDXID: SPDXRef-File-etc-selinux-semanage.conf-94ebbbbebf9a3cd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/services +SPDXID: SPDXRef-File-etc-services-4af93d739636ab4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/shadow +SPDXID: SPDXRef-File-etc-shadow-bd97c6978c250f04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:711a6bcc74697eeea01e778a93f515669fcd6cbb945fdd12446e4c6440802d2b + +FileName: /etc/shells +SPDXID: SPDXRef-File-etc-shells-02d9af0b38cd98e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/skel/.bash_logout +SPDXID: SPDXRef-File-etc-skel-.bash-logout-3e12cf6d425eca40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/skel/.bash_profile +SPDXID: SPDXRef-File-etc-skel-.bash-profile-e9bf8b015bb2b301 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/skel/.bashrc +SPDXID: SPDXRef-File-etc-skel-.bashrc-88051a122bc4794a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/subgid +SPDXID: SPDXRef-File-etc-subgid-1fb40ae1ef6f69b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/subuid +SPDXID: SPDXRef-File-etc-subuid-161015d5ebfe405f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/sysconfig/ip6tables-config +SPDXID: SPDXRef-File-etc-sysconfig-ip6tables-config-a06418242fac8a81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/sysconfig/iptables-config +SPDXID: SPDXRef-File-etc-sysconfig-iptables-config-da84a8dbe12db1fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/sysconfig/nftables.conf +SPDXID: SPDXRef-File-etc-sysconfig-nftables.conf-cbba7caadf5b2db4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/sysctl.conf +SPDXID: SPDXRef-File-etc-sysctl.conf-22ac3ca910f56d15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/system-release-cpe +SPDXID: SPDXRef-File-etc-system-release-cpe-088e463ba7ac1c7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/systemd/coredump.conf +SPDXID: SPDXRef-File-etc-systemd-coredump.conf-0fa0d53ca5d64690 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/systemd/journald.conf +SPDXID: SPDXRef-File-etc-systemd-journald.conf-161587aead4f30d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/systemd/logind.conf +SPDXID: SPDXRef-File-etc-systemd-logind.conf-a0a588c35da35e14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/systemd/pstore.conf +SPDXID: SPDXRef-File-etc-systemd-pstore.conf-11250dcdaa00a5e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/systemd/resolved.conf +SPDXID: SPDXRef-File-etc-systemd-resolved.conf-5c642b3598ef12ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/systemd/system.conf +SPDXID: SPDXRef-File-etc-systemd-system.conf-03bfb375b2b507e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/systemd/user.conf +SPDXID: SPDXRef-File-etc-systemd-user.conf-f7cdc2be6ae2c773 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/virc +SPDXID: SPDXRef-File-etc-virc-5e8e0527a1b4ef7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/xattr.conf +SPDXID: SPDXRef-File-etc-xattr.conf-bbf6f2936807a965 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/yum.repos.d/redhat.repo +SPDXID: SPDXRef-File-etc-yum.repos.d-redhat.repo-7c883101633cb685 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /opt/java/openjdk/bin/java +SPDXID: SPDXRef-File-opt-java-openjdk-bin-java-9aa898fbd0b3e993 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:d8dad3122a723d8dcf08bb4beccac632acdcbff8186f700d79f526f4cc486fb9 + +FileName: /opt/java/openjdk/lib/jrt-fs.jar +SPDXID: SPDXRef-File-opt-java-openjdk-lib-jrt-fs.jar-096fcaf7da0ab64c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:d8dad3122a723d8dcf08bb4beccac632acdcbff8186f700d79f526f4cc486fb9 + +FileName: /opt/ol/wlp/bin/tools/ws-javaagent.jar +SPDXID: SPDXRef-File-opt-ol-wlp-bin-tools-ws-javaagent.jar-cc78d3904194e910 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/bin/tools/ws-schemagen.jar +SPDXID: SPDXRef-File-opt-ol-wlp-bin-tools-ws-schemagen.jar-2549f9f3b480549c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/bin/tools/ws-server.jar +SPDXID: SPDXRef-File-opt-ol-wlp-bin-tools-ws-server.jar-9a239fa39b4fd6f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/bootstrap-agent.jar +SPDXID: SPDXRef-File-opt-ol-wlp-lib-bootstrap-agent.jar-b2c0aa2b346923b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/ws-launch.jar +SPDXID: SPDXRef-File-opt-ol-wlp-lib-ws-launch.jar-d46337f79f64e601 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /root/.bash_logout +SPDXID: SPDXRef-File-root-.bash-logout-20745bd95ce05027 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /root/.bash_profile +SPDXID: SPDXRef-File-root-.bash-profile-6cb0a62f87e9d043 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /root/.bashrc +SPDXID: SPDXRef-File-root-.bashrc-f73edd36ace924c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /root/.cshrc +SPDXID: SPDXRef-File-root-.cshrc-a0519b5a2f52e968 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /root/.tcshrc +SPDXID: SPDXRef-File-root-.tcshrc-f8f2924eed0d9ed3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/[ +SPDXID: SPDXRef-File-usr-bin---5d50a5c7733a5443 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/alias +SPDXID: SPDXRef-File-usr-bin-alias-301ca1facbefe794 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/arch +SPDXID: SPDXRef-File-usr-bin-arch-d98ca7ef721130c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/b2sum +SPDXID: SPDXRef-File-usr-bin-b2sum-1ff010ac94b35573 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/base32 +SPDXID: SPDXRef-File-usr-bin-base32-6b094c42bb45261b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/base64 +SPDXID: SPDXRef-File-usr-bin-base64-8650ff0e272bcd68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/basename +SPDXID: SPDXRef-File-usr-bin-basename-25411a7a4026c6d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/bash +SPDXID: SPDXRef-File-usr-bin-bash-11695f5bbf42dad4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/bashbug-64 +SPDXID: SPDXRef-File-usr-bin-bashbug-64-a8059e84dae3f45c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/bg +SPDXID: SPDXRef-File-usr-bin-bg-4e8cfe258ce5cf3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/brotli +SPDXID: SPDXRef-File-usr-bin-brotli-23ef24a434020a35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/busctl +SPDXID: SPDXRef-File-usr-bin-busctl-1c42670385f918db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ca-legacy +SPDXID: SPDXRef-File-usr-bin-ca-legacy-ecd8ff85d3189ae4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/cal +SPDXID: SPDXRef-File-usr-bin-cal-2852b38da693aa65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/cat +SPDXID: SPDXRef-File-usr-bin-cat-91170b79ac19796f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/catchsegv +SPDXID: SPDXRef-File-usr-bin-catchsegv-c003dbceb8d7986f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/cd +SPDXID: SPDXRef-File-usr-bin-cd-f6ed4278910f843d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chacl +SPDXID: SPDXRef-File-usr-bin-chacl-0ecbb8cf3a13bcfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chage +SPDXID: SPDXRef-File-usr-bin-chage-395c90859219267a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chardetect +SPDXID: SPDXRef-File-usr-bin-chardetect-d6e390daf0ddc264 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chcon +SPDXID: SPDXRef-File-usr-bin-chcon-16fe8720c443b6ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chgrp +SPDXID: SPDXRef-File-usr-bin-chgrp-7ad81929fdf95bcb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chmem +SPDXID: SPDXRef-File-usr-bin-chmem-8ca3d461256c79ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chmod +SPDXID: SPDXRef-File-usr-bin-chmod-c7be14c5570f6999 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chown +SPDXID: SPDXRef-File-usr-bin-chown-1787a3ad14a9330f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chrt +SPDXID: SPDXRef-File-usr-bin-chrt-4bf45dee53cf37a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/cksum +SPDXID: SPDXRef-File-usr-bin-cksum-a56e605bada7d4e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/col +SPDXID: SPDXRef-File-usr-bin-col-3982383c75bdbb11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/colcrt +SPDXID: SPDXRef-File-usr-bin-colcrt-c8ea70a4dc80234c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/colrm +SPDXID: SPDXRef-File-usr-bin-colrm-1d310e1701246d60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/column +SPDXID: SPDXRef-File-usr-bin-column-6f562d86e906c4b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/comm +SPDXID: SPDXRef-File-usr-bin-comm-38ea875ccd8489e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/command +SPDXID: SPDXRef-File-usr-bin-command-f50418d637798502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/consolehelper +SPDXID: SPDXRef-File-usr-bin-consolehelper-f0cf2a189ff3bb74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/coredumpctl +SPDXID: SPDXRef-File-usr-bin-coredumpctl-83a6a5615297f00b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/coreutils +SPDXID: SPDXRef-File-usr-bin-coreutils-4e66195c80e76d94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/cp +SPDXID: SPDXRef-File-usr-bin-cp-2332a40d37410d35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/csplit +SPDXID: SPDXRef-File-usr-bin-csplit-fd73a92f0d4d0cf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/curl +SPDXID: SPDXRef-File-usr-bin-curl-952ce60cd528f93b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/cut +SPDXID: SPDXRef-File-usr-bin-cut-c53581bf8686266a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/date +SPDXID: SPDXRef-File-usr-bin-date-53713e3f5331fdb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_archive +SPDXID: SPDXRef-File-usr-bin-db-archive-5d04b942779cf002 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_checkpoint +SPDXID: SPDXRef-File-usr-bin-db-checkpoint-e0402bdf3ce616d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_deadlock +SPDXID: SPDXRef-File-usr-bin-db-deadlock-eee43bdf68f59995 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_dump +SPDXID: SPDXRef-File-usr-bin-db-dump-309b5968b0c9d3f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_dump185 +SPDXID: SPDXRef-File-usr-bin-db-dump185-35759986b592c159 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_hotbackup +SPDXID: SPDXRef-File-usr-bin-db-hotbackup-e6b838ddf7bfa68f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_load +SPDXID: SPDXRef-File-usr-bin-db-load-37fce3b95279ce2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_log_verify +SPDXID: SPDXRef-File-usr-bin-db-log-verify-9ba3ed6b9cb07290 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_printlog +SPDXID: SPDXRef-File-usr-bin-db-printlog-82dba6d842794a67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_recover +SPDXID: SPDXRef-File-usr-bin-db-recover-4a98d4bab1fed412 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_replicate +SPDXID: SPDXRef-File-usr-bin-db-replicate-b00eeae663331b27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_stat +SPDXID: SPDXRef-File-usr-bin-db-stat-0983830ed9a58de2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_tuner +SPDXID: SPDXRef-File-usr-bin-db-tuner-4c2bfde9885512ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_upgrade +SPDXID: SPDXRef-File-usr-bin-db-upgrade-e37bfb93c36042ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_verify +SPDXID: SPDXRef-File-usr-bin-db-verify-faa44758f54565f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-binding-tool +SPDXID: SPDXRef-File-usr-bin-dbus-binding-tool-41c76be09a3e351c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-cleanup-sockets +SPDXID: SPDXRef-File-usr-bin-dbus-cleanup-sockets-1b0ed22a7a0487cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-daemon +SPDXID: SPDXRef-File-usr-bin-dbus-daemon-5fa75d17886df743 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-monitor +SPDXID: SPDXRef-File-usr-bin-dbus-monitor-feab5640aefebea5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-run-session +SPDXID: SPDXRef-File-usr-bin-dbus-run-session-d8e9e023831ad290 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-send +SPDXID: SPDXRef-File-usr-bin-dbus-send-fab90d42fa53c741 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-test-tool +SPDXID: SPDXRef-File-usr-bin-dbus-test-tool-6c0ab134ab5fb082 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-uuidgen +SPDXID: SPDXRef-File-usr-bin-dbus-uuidgen-d1ce41e14afce8ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dd +SPDXID: SPDXRef-File-usr-bin-dd-05f9b9b2c9519bb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/df +SPDXID: SPDXRef-File-usr-bin-df-f7312bdcc796fb5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dir +SPDXID: SPDXRef-File-usr-bin-dir-6b6dd0f9f77cb524 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dircolors +SPDXID: SPDXRef-File-usr-bin-dircolors-b79550bde7c2d093 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dirmngr +SPDXID: SPDXRef-File-usr-bin-dirmngr-85ed1bf6225dce74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dirmngr-client +SPDXID: SPDXRef-File-usr-bin-dirmngr-client-b517ff400bdfe5b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dirname +SPDXID: SPDXRef-File-usr-bin-dirname-a7b100debaeadb2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dmesg +SPDXID: SPDXRef-File-usr-bin-dmesg-0f7031e436f0168f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dnf-3 +SPDXID: SPDXRef-File-usr-bin-dnf-3-16175176c3acd9d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/du +SPDXID: SPDXRef-File-usr-bin-du-4897d0f00b625ce6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/echo +SPDXID: SPDXRef-File-usr-bin-echo-4355567056fd4dfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/egrep +SPDXID: SPDXRef-File-usr-bin-egrep-aed92999cfb17304 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/eject +SPDXID: SPDXRef-File-usr-bin-eject-9f6eda36d568d6f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/env +SPDXID: SPDXRef-File-usr-bin-env-60488a7730f12e31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/evmctl +SPDXID: SPDXRef-File-usr-bin-evmctl-8187e18523fad015 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/expand +SPDXID: SPDXRef-File-usr-bin-expand-8057aea9011ad58e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/expr +SPDXID: SPDXRef-File-usr-bin-expr-1ca0551b969d1b12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/factor +SPDXID: SPDXRef-File-usr-bin-factor-1f1905a717803039 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fallocate +SPDXID: SPDXRef-File-usr-bin-fallocate-ade54647f9a37905 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/false +SPDXID: SPDXRef-File-usr-bin-false-fc6eebb70e0daf0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fc +SPDXID: SPDXRef-File-usr-bin-fc-52da7ab3b20e783d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fc-cache +SPDXID: SPDXRef-File-usr-bin-fc-cache-45e1370509e37260 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-cache-64 +SPDXID: SPDXRef-File-usr-bin-fc-cache-64-0b13f3e18cfd3249 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-cat +SPDXID: SPDXRef-File-usr-bin-fc-cat-9bac35ace24999f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-conflist +SPDXID: SPDXRef-File-usr-bin-fc-conflist-87489a904cbaf170 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-list +SPDXID: SPDXRef-File-usr-bin-fc-list-9e987c5cde6fc5d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-match +SPDXID: SPDXRef-File-usr-bin-fc-match-9f650f46f435e2a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-pattern +SPDXID: SPDXRef-File-usr-bin-fc-pattern-9bc515d2c84af8f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-query +SPDXID: SPDXRef-File-usr-bin-fc-query-ea3b26791dfb86d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-scan +SPDXID: SPDXRef-File-usr-bin-fc-scan-664196b1474edff7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-validate +SPDXID: SPDXRef-File-usr-bin-fc-validate-f358adee20bc97f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fg +SPDXID: SPDXRef-File-usr-bin-fg-e7b1b69f1775fc04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fgrep +SPDXID: SPDXRef-File-usr-bin-fgrep-cc0ea280a1dd78f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fincore +SPDXID: SPDXRef-File-usr-bin-fincore-d024d61a48b1bd97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/find +SPDXID: SPDXRef-File-usr-bin-find-b98291df748fd65b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/findmnt +SPDXID: SPDXRef-File-usr-bin-findmnt-a3357bf98e79859c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fips-finish-install +SPDXID: SPDXRef-File-usr-bin-fips-finish-install-8d969bae039eecce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fips-mode-setup +SPDXID: SPDXRef-File-usr-bin-fips-mode-setup-f8f6febfa034e893 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/flock +SPDXID: SPDXRef-File-usr-bin-flock-99181d8d187ab597 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fmt +SPDXID: SPDXRef-File-usr-bin-fmt-e1e473e89be5f240 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fold +SPDXID: SPDXRef-File-usr-bin-fold-3cb198d50f1e5a0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/g13 +SPDXID: SPDXRef-File-usr-bin-g13-b853cdbd34c603ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gapplication +SPDXID: SPDXRef-File-usr-bin-gapplication-fc933c4ddc7dc091 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gawk +SPDXID: SPDXRef-File-usr-bin-gawk-ccf8149a99c484d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gdbm_dump +SPDXID: SPDXRef-File-usr-bin-gdbm-dump-0fc47f63e96ddf65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gdbm_load +SPDXID: SPDXRef-File-usr-bin-gdbm-load-cb419ab4bbd6f08a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gdbmtool +SPDXID: SPDXRef-File-usr-bin-gdbmtool-30bfe4b875f52080 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gdbserver +SPDXID: SPDXRef-File-usr-bin-gdbserver-8d21c3fb379aee6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gdbus +SPDXID: SPDXRef-File-usr-bin-gdbus-8ab18f0efb7e01ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gencat +SPDXID: SPDXRef-File-usr-bin-gencat-57ba352f84ca9c20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/getconf +SPDXID: SPDXRef-File-usr-bin-getconf-05eb3796b00473d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/getent +SPDXID: SPDXRef-File-usr-bin-getent-b4027803010b6686 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/getfacl +SPDXID: SPDXRef-File-usr-bin-getfacl-2c9cb1d15ce83fab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/getopt +SPDXID: SPDXRef-File-usr-bin-getopt-da8dba53247ee783 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/getopts +SPDXID: SPDXRef-File-usr-bin-getopts-9d12602cbc4e5861 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gio +SPDXID: SPDXRef-File-usr-bin-gio-03aae959a4a7002b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gio-querymodules-64 +SPDXID: SPDXRef-File-usr-bin-gio-querymodules-64-18d81c4c967d50c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/glib-compile-schemas +SPDXID: SPDXRef-File-usr-bin-glib-compile-schemas-42ee867c7551575b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpasswd +SPDXID: SPDXRef-File-usr-bin-gpasswd-677e1db91b5b7fb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpg-agent +SPDXID: SPDXRef-File-usr-bin-gpg-agent-ff38d93d254ce4c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpg-connect-agent +SPDXID: SPDXRef-File-usr-bin-gpg-connect-agent-4bcacd9cf972bfc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpg-error +SPDXID: SPDXRef-File-usr-bin-gpg-error-901be8daec8d0325 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpg +SPDXID: SPDXRef-File-usr-bin-gpg-fdf0a57b39a3a17a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpg-wks-server +SPDXID: SPDXRef-File-usr-bin-gpg-wks-server-1899695bd68127ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpg-zip +SPDXID: SPDXRef-File-usr-bin-gpg-zip-552c13ca996257ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpgconf +SPDXID: SPDXRef-File-usr-bin-gpgconf-24cd0f11ee72ff7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpgme-json +SPDXID: SPDXRef-File-usr-bin-gpgme-json-d26572c526407a05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpgparsemail +SPDXID: SPDXRef-File-usr-bin-gpgparsemail-519046b8f9193063 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpgsplit +SPDXID: SPDXRef-File-usr-bin-gpgsplit-6df406738099b6cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpgv +SPDXID: SPDXRef-File-usr-bin-gpgv-01bda67dd8f9b423 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/grep +SPDXID: SPDXRef-File-usr-bin-grep-974ba8f294bb0dde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/groups +SPDXID: SPDXRef-File-usr-bin-groups-fa279371f3022794 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gsettings +SPDXID: SPDXRef-File-usr-bin-gsettings-013e656dcfcac800 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gunzip +SPDXID: SPDXRef-File-usr-bin-gunzip-fb01a37017cc5581 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gzexe +SPDXID: SPDXRef-File-usr-bin-gzexe-b57fa495b2db7dc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gzip +SPDXID: SPDXRef-File-usr-bin-gzip-06f34d6435b7d12e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/hash +SPDXID: SPDXRef-File-usr-bin-hash-af4d693097f83e4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/head +SPDXID: SPDXRef-File-usr-bin-head-6d5648ad903746e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/hexdump +SPDXID: SPDXRef-File-usr-bin-hexdump-2f1932acbdc2a337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/hostid +SPDXID: SPDXRef-File-usr-bin-hostid-700af32eae66742a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/hostnamectl +SPDXID: SPDXRef-File-usr-bin-hostnamectl-76e93c0a34e3aa52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/iconv +SPDXID: SPDXRef-File-usr-bin-iconv-1cf9a78ec9f64d75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/id +SPDXID: SPDXRef-File-usr-bin-id-f8cb6de5c9aa2782 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/info +SPDXID: SPDXRef-File-usr-bin-info-efee99e7ff1a6ae5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/install +SPDXID: SPDXRef-File-usr-bin-install-99bb7aabd6e12173 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ionice +SPDXID: SPDXRef-File-usr-bin-ionice-98f52df29925a2ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ipcmk +SPDXID: SPDXRef-File-usr-bin-ipcmk-995355ef666d81e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ipcrm +SPDXID: SPDXRef-File-usr-bin-ipcrm-9bd3109355f40501 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ipcs +SPDXID: SPDXRef-File-usr-bin-ipcs-57b3a454ab9f1a0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/isosize +SPDXID: SPDXRef-File-usr-bin-isosize-1c7f906bf5efb946 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/jobs +SPDXID: SPDXRef-File-usr-bin-jobs-c644dbad088b725d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/join +SPDXID: SPDXRef-File-usr-bin-join-62a518d6985e2090 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/journalctl +SPDXID: SPDXRef-File-usr-bin-journalctl-693a41101780608c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/kill +SPDXID: SPDXRef-File-usr-bin-kill-0a6dce09e397dd4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/last +SPDXID: SPDXRef-File-usr-bin-last-5a98fd9f5363dfed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lastlog +SPDXID: SPDXRef-File-usr-bin-lastlog-32a377518867f99f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lchfn +SPDXID: SPDXRef-File-usr-bin-lchfn-635f75ad5ebd35bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lchsh +SPDXID: SPDXRef-File-usr-bin-lchsh-51753e1a6da3121e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ldd +SPDXID: SPDXRef-File-usr-bin-ldd-6ce038fb9ee081d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/link +SPDXID: SPDXRef-File-usr-bin-link-ac9a2302a076862c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ln +SPDXID: SPDXRef-File-usr-bin-ln-b6a6b77fb4a18dd8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/locale +SPDXID: SPDXRef-File-usr-bin-locale-cc62172f88b769bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/localectl +SPDXID: SPDXRef-File-usr-bin-localectl-a0650745365c0754 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/localedef +SPDXID: SPDXRef-File-usr-bin-localedef-4c87c226994103f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/logger +SPDXID: SPDXRef-File-usr-bin-logger-fe9aacca01b178d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/login +SPDXID: SPDXRef-File-usr-bin-login-a5820c55a0acf341 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/loginctl +SPDXID: SPDXRef-File-usr-bin-loginctl-51e12304b5f021cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/logname +SPDXID: SPDXRef-File-usr-bin-logname-a284cbfd2521da6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/look +SPDXID: SPDXRef-File-usr-bin-look-b698a3ef25836dc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ls +SPDXID: SPDXRef-File-usr-bin-ls-45acbaeafa7483b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lsblk +SPDXID: SPDXRef-File-usr-bin-lsblk-28ca6dc9d4da6c85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lscpu +SPDXID: SPDXRef-File-usr-bin-lscpu-bb3ae1fbb8b7e6c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lsipc +SPDXID: SPDXRef-File-usr-bin-lsipc-9b5bbd32ae4bf16c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lslocks +SPDXID: SPDXRef-File-usr-bin-lslocks-dce2decadcc007be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lslogins +SPDXID: SPDXRef-File-usr-bin-lslogins-977d6948ffd5d218 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lsmem +SPDXID: SPDXRef-File-usr-bin-lsmem-de6c82a5fde8dcda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lsns +SPDXID: SPDXRef-File-usr-bin-lsns-859c0e31fe4d5956 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/make-dummy-cert +SPDXID: SPDXRef-File-usr-bin-make-dummy-cert-04704039b6f2f087 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/makedb +SPDXID: SPDXRef-File-usr-bin-makedb-941cb55c1d25b8c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mcookie +SPDXID: SPDXRef-File-usr-bin-mcookie-81f2ffbfa2fc0d45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/md5sum +SPDXID: SPDXRef-File-usr-bin-md5sum-76c4d79d89ac1a27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mesg +SPDXID: SPDXRef-File-usr-bin-mesg-66a9d3a557f8fc34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mkdir +SPDXID: SPDXRef-File-usr-bin-mkdir-eba5192a4985f7f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mkfifo +SPDXID: SPDXRef-File-usr-bin-mkfifo-6ec5c1bd07d07e5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mknod +SPDXID: SPDXRef-File-usr-bin-mknod-4b2314978fecf976 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mktemp +SPDXID: SPDXRef-File-usr-bin-mktemp-0f0af3c607475367 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/modulemd-validator +SPDXID: SPDXRef-File-usr-bin-modulemd-validator-d9ef2fee55f31fe9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/more +SPDXID: SPDXRef-File-usr-bin-more-5780c124c1d6624a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mount +SPDXID: SPDXRef-File-usr-bin-mount-50b059aaba1de796 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mountpoint +SPDXID: SPDXRef-File-usr-bin-mountpoint-f335290dafe737ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mv +SPDXID: SPDXRef-File-usr-bin-mv-cd9ae67ae8663eb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/namei +SPDXID: SPDXRef-File-usr-bin-namei-a03176721663d4ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/newgidmap +SPDXID: SPDXRef-File-usr-bin-newgidmap-e25f16725e941183 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/newgrp +SPDXID: SPDXRef-File-usr-bin-newgrp-ce1b81db2983ae25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/newuidmap +SPDXID: SPDXRef-File-usr-bin-newuidmap-f7a69fcc550d39d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/nice +SPDXID: SPDXRef-File-usr-bin-nice-dba8b2ded58211a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/nl +SPDXID: SPDXRef-File-usr-bin-nl-465b691c25595e4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/nohup +SPDXID: SPDXRef-File-usr-bin-nohup-9ebe7583f5c021e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/nproc +SPDXID: SPDXRef-File-usr-bin-nproc-d7038d804df947b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/nsenter +SPDXID: SPDXRef-File-usr-bin-nsenter-fcc1ee9365e772ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/numfmt +SPDXID: SPDXRef-File-usr-bin-numfmt-4574fc253a7e3b27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/od +SPDXID: SPDXRef-File-usr-bin-od-236f3d245b1416e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/openssl +SPDXID: SPDXRef-File-usr-bin-openssl-bd2dbf10c7834d86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/p11-kit +SPDXID: SPDXRef-File-usr-bin-p11-kit-e60d47020480b040 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/passwd +SPDXID: SPDXRef-File-usr-bin-passwd-1cd78e2d3dab3466 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/paste +SPDXID: SPDXRef-File-usr-bin-paste-9f568728818a5ba6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pathchk +SPDXID: SPDXRef-File-usr-bin-pathchk-7ff26038ed0cf74d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pinky +SPDXID: SPDXRef-File-usr-bin-pinky-9632538ee6a35e39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pldd +SPDXID: SPDXRef-File-usr-bin-pldd-6451af671105ffcf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pr +SPDXID: SPDXRef-File-usr-bin-pr-866203e429d4243f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/printenv +SPDXID: SPDXRef-File-usr-bin-printenv-318c0192064b0d77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/printf +SPDXID: SPDXRef-File-usr-bin-printf-e76e52b963f7cde4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/prlimit +SPDXID: SPDXRef-File-usr-bin-prlimit-3553163f1e1cf4b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ptx +SPDXID: SPDXRef-File-usr-bin-ptx-e3180520209a6f06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pwd +SPDXID: SPDXRef-File-usr-bin-pwd-ea806065cab44fd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pwmake +SPDXID: SPDXRef-File-usr-bin-pwmake-35d44fa1766eaf3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pwscore +SPDXID: SPDXRef-File-usr-bin-pwscore-caaaa279f05cbedd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pydoc3.6 +SPDXID: SPDXRef-File-usr-bin-pydoc3.6-a72e09cc63751932 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pyinotify +SPDXID: SPDXRef-File-usr-bin-pyinotify-b422e9b17baa5577 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pyvenv-3.6 +SPDXID: SPDXRef-File-usr-bin-pyvenv-3.6-5e7590a0dfe7a76a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/raw +SPDXID: SPDXRef-File-usr-bin-raw-9d7530a13080c3cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rct +SPDXID: SPDXRef-File-usr-bin-rct-cb405c6a1c4083f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/read +SPDXID: SPDXRef-File-usr-bin-read-da5bdaeee82a7e6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/readlink +SPDXID: SPDXRef-File-usr-bin-readlink-1e50830c82baf114 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/realpath +SPDXID: SPDXRef-File-usr-bin-realpath-762610ce02febbb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rename +SPDXID: SPDXRef-File-usr-bin-rename-070abff6a1e619d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/renew-dummy-cert +SPDXID: SPDXRef-File-usr-bin-renew-dummy-cert-7657542d0f9202df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/renice +SPDXID: SPDXRef-File-usr-bin-renice-1fae36cba99a6c69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/resolvectl +SPDXID: SPDXRef-File-usr-bin-resolvectl-b9af0cf3c8f456c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rev +SPDXID: SPDXRef-File-usr-bin-rev-5f5b1442375b7f83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rhsm-debug +SPDXID: SPDXRef-File-usr-bin-rhsm-debug-ee7fab936296c48c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rhsmcertd +SPDXID: SPDXRef-File-usr-bin-rhsmcertd-41abed6856a450d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rm +SPDXID: SPDXRef-File-usr-bin-rm-8c1484caa71064f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rmdir +SPDXID: SPDXRef-File-usr-bin-rmdir-3ab9a59fb1b2cc3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rpm +SPDXID: SPDXRef-File-usr-bin-rpm-35b0a05eb8dff726 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rpm2archive +SPDXID: SPDXRef-File-usr-bin-rpm2archive-778fb6512f57b6f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rpm2cpio +SPDXID: SPDXRef-File-usr-bin-rpm2cpio-ff6863f05a2b1336 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rpmdb +SPDXID: SPDXRef-File-usr-bin-rpmdb-3f192d9492039852 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rpmkeys +SPDXID: SPDXRef-File-usr-bin-rpmkeys-b164e73bc5ab2621 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/runcon +SPDXID: SPDXRef-File-usr-bin-runcon-d58684550c2b31cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/script +SPDXID: SPDXRef-File-usr-bin-script-f792c5f19f362d42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/scriptreplay +SPDXID: SPDXRef-File-usr-bin-scriptreplay-70c3702a776423c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sed +SPDXID: SPDXRef-File-usr-bin-sed-1d81a12e3b9399c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/seq +SPDXID: SPDXRef-File-usr-bin-seq-fdf9f500f7d1e42d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/setarch +SPDXID: SPDXRef-File-usr-bin-setarch-9067e5b8f29dca3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/setfacl +SPDXID: SPDXRef-File-usr-bin-setfacl-66f18fad398d5b78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/setpriv +SPDXID: SPDXRef-File-usr-bin-setpriv-7600f093c229e3ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/setsid +SPDXID: SPDXRef-File-usr-bin-setsid-609b24b70007e15e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/setterm +SPDXID: SPDXRef-File-usr-bin-setterm-08063f4ff4442c92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sha1sum +SPDXID: SPDXRef-File-usr-bin-sha1sum-62047354d50f8cfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sha224sum +SPDXID: SPDXRef-File-usr-bin-sha224sum-238d6f941c60a430 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sha256sum +SPDXID: SPDXRef-File-usr-bin-sha256sum-88bb9228526be95c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sha384sum +SPDXID: SPDXRef-File-usr-bin-sha384sum-803f165ab6396d0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sha512sum +SPDXID: SPDXRef-File-usr-bin-sha512sum-c7d806f83ead0503 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/shred +SPDXID: SPDXRef-File-usr-bin-shred-c0cef5e6ca300d0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/shuf +SPDXID: SPDXRef-File-usr-bin-shuf-08e2035826b6be8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sleep +SPDXID: SPDXRef-File-usr-bin-sleep-d9e8d65f67fb5c6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sort +SPDXID: SPDXRef-File-usr-bin-sort-8ede684d0d34f802 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sotruss +SPDXID: SPDXRef-File-usr-bin-sotruss-d01224775e07a109 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/split +SPDXID: SPDXRef-File-usr-bin-split-22027b26a486d831 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sprof +SPDXID: SPDXRef-File-usr-bin-sprof-31f84a9d41863861 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/stat +SPDXID: SPDXRef-File-usr-bin-stat-f82d167f47eb9065 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/stdbuf +SPDXID: SPDXRef-File-usr-bin-stdbuf-e46e301e8d38d4c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/stty +SPDXID: SPDXRef-File-usr-bin-stty-9fe4a4cf929a4710 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/su +SPDXID: SPDXRef-File-usr-bin-su-30fbc07000cf1543 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sum +SPDXID: SPDXRef-File-usr-bin-sum-b6c683a42386dbf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sync +SPDXID: SPDXRef-File-usr-bin-sync-47ff3f787fbace1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemctl +SPDXID: SPDXRef-File-usr-bin-systemctl-1564c2ea89ec1b49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-analyze +SPDXID: SPDXRef-File-usr-bin-systemd-analyze-81277f2b418a456d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-ask-password +SPDXID: SPDXRef-File-usr-bin-systemd-ask-password-2e04e801f28d2eb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-cat +SPDXID: SPDXRef-File-usr-bin-systemd-cat-035bdf353a8b313f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-cgls +SPDXID: SPDXRef-File-usr-bin-systemd-cgls-d44480593fc481d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-cgtop +SPDXID: SPDXRef-File-usr-bin-systemd-cgtop-0d4daeead478177a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-delta +SPDXID: SPDXRef-File-usr-bin-systemd-delta-18ae2df6f3f03b0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-detect-virt +SPDXID: SPDXRef-File-usr-bin-systemd-detect-virt-19d730827aa04c98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-escape +SPDXID: SPDXRef-File-usr-bin-systemd-escape-c9250b19bbcf5241 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-firstboot +SPDXID: SPDXRef-File-usr-bin-systemd-firstboot-3a52f1a05f7e3000 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-inhibit +SPDXID: SPDXRef-File-usr-bin-systemd-inhibit-918537602c0f894b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-machine-id-setup +SPDXID: SPDXRef-File-usr-bin-systemd-machine-id-setup-7be90e8a26725f1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-mount +SPDXID: SPDXRef-File-usr-bin-systemd-mount-cf3f06c5ae18643a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-notify +SPDXID: SPDXRef-File-usr-bin-systemd-notify-41e3d86a17e84805 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-path +SPDXID: SPDXRef-File-usr-bin-systemd-path-09f7964127cbe019 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-run +SPDXID: SPDXRef-File-usr-bin-systemd-run-bf94f69bb0f0b820 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-socket-activate +SPDXID: SPDXRef-File-usr-bin-systemd-socket-activate-49bcce7809a1e948 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-stdio-bridge +SPDXID: SPDXRef-File-usr-bin-systemd-stdio-bridge-eb33ca6b6cd1a4b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-sysusers +SPDXID: SPDXRef-File-usr-bin-systemd-sysusers-8e24bf0cb49b3dd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-tmpfiles +SPDXID: SPDXRef-File-usr-bin-systemd-tmpfiles-dcb7cc973a77c416 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-tty-ask-password-agent +SPDXID: SPDXRef-File-usr-bin-systemd-tty-ask-password-agent-64129f155943b17b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tac +SPDXID: SPDXRef-File-usr-bin-tac-98cf606b1f230f38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tail +SPDXID: SPDXRef-File-usr-bin-tail-e9b3a3f11c2f8989 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tar +SPDXID: SPDXRef-File-usr-bin-tar-fa580debc9d7492c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/taskset +SPDXID: SPDXRef-File-usr-bin-taskset-28be5ff07210a8b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tee +SPDXID: SPDXRef-File-usr-bin-tee-895c5829d1157a32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/test +SPDXID: SPDXRef-File-usr-bin-test-6f0f7a126883399a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/timedatectl +SPDXID: SPDXRef-File-usr-bin-timedatectl-11a6a3fb9b1b851d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/timeout +SPDXID: SPDXRef-File-usr-bin-timeout-e48683b79b81b0b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/touch +SPDXID: SPDXRef-File-usr-bin-touch-b0c54409730dae57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tr +SPDXID: SPDXRef-File-usr-bin-tr-715604516e76aeab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/true +SPDXID: SPDXRef-File-usr-bin-true-6eae799d1ca0173d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/truncate +SPDXID: SPDXRef-File-usr-bin-truncate-195a2e61d0eb0eab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/trust +SPDXID: SPDXRef-File-usr-bin-trust-0b067f094056a8d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tsort +SPDXID: SPDXRef-File-usr-bin-tsort-4325d9fd20a617e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tty +SPDXID: SPDXRef-File-usr-bin-tty-c4f9a1872c9dad07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/type +SPDXID: SPDXRef-File-usr-bin-type-721ea5dac09f0b24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tzselect +SPDXID: SPDXRef-File-usr-bin-tzselect-ba5bd5bfee958294 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ul +SPDXID: SPDXRef-File-usr-bin-ul-9e6d9734e9732b42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ulimit +SPDXID: SPDXRef-File-usr-bin-ulimit-e7b0b129462e3189 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/umask +SPDXID: SPDXRef-File-usr-bin-umask-7e3496199b83518e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/umount +SPDXID: SPDXRef-File-usr-bin-umount-5aea5226ee5fd5d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/unalias +SPDXID: SPDXRef-File-usr-bin-unalias-6be4cb11aed17376 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/uname +SPDXID: SPDXRef-File-usr-bin-uname-84e53df46b5a1375 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/unexpand +SPDXID: SPDXRef-File-usr-bin-unexpand-427c3d371505ce07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/uniq +SPDXID: SPDXRef-File-usr-bin-uniq-818d44b9e94fe725 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/unlink +SPDXID: SPDXRef-File-usr-bin-unlink-9aea3e58dd1b1a13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/unshare +SPDXID: SPDXRef-File-usr-bin-unshare-5a0461df5bc958fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/update-ca-trust +SPDXID: SPDXRef-File-usr-bin-update-ca-trust-0c25b618daa533c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/update-crypto-policies +SPDXID: SPDXRef-File-usr-bin-update-crypto-policies-f2176860a09dd330 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/users +SPDXID: SPDXRef-File-usr-bin-users-d51072ffe70e5227 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/utmpdump +SPDXID: SPDXRef-File-usr-bin-utmpdump-f161bb18cb40c3de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/uuidgen +SPDXID: SPDXRef-File-usr-bin-uuidgen-66064aac965af476 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/uuidparse +SPDXID: SPDXRef-File-usr-bin-uuidparse-e16a061d1a02f583 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/vdir +SPDXID: SPDXRef-File-usr-bin-vdir-676177514717507e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/vi +SPDXID: SPDXRef-File-usr-bin-vi-1e293eaa12aef215 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/wait +SPDXID: SPDXRef-File-usr-bin-wait-f3419a226cc821f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/wall +SPDXID: SPDXRef-File-usr-bin-wall-a5fb1370842c469d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/watchgnupg +SPDXID: SPDXRef-File-usr-bin-watchgnupg-52453ca259438ad6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/wc +SPDXID: SPDXRef-File-usr-bin-wc-a09ac9cd19ae1062 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/wdctl +SPDXID: SPDXRef-File-usr-bin-wdctl-eac394b4c5871511 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/whereis +SPDXID: SPDXRef-File-usr-bin-whereis-668c4ccd9025d12f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/which +SPDXID: SPDXRef-File-usr-bin-which-bbc3d2f2014a88ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/who +SPDXID: SPDXRef-File-usr-bin-who-6d4928d4d2d5ad9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/whoami +SPDXID: SPDXRef-File-usr-bin-whoami-8f37af6cd04cbf66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/write +SPDXID: SPDXRef-File-usr-bin-write-f61682145fda874c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/xargs +SPDXID: SPDXRef-File-usr-bin-xargs-f3571069e15bd862 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/xmlcatalog +SPDXID: SPDXRef-File-usr-bin-xmlcatalog-f2a74834d35f0919 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/xmllint +SPDXID: SPDXRef-File-usr-bin-xmllint-a213f35a75ac05ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/xmlwf +SPDXID: SPDXRef-File-usr-bin-xmlwf-3d3c8f387c936adf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/yes +SPDXID: SPDXRef-File-usr-bin-yes-882cba3c3703702e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zcat +SPDXID: SPDXRef-File-usr-bin-zcat-be2b8596ff764e1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zcmp +SPDXID: SPDXRef-File-usr-bin-zcmp-5a44d19348a1d47e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zdiff +SPDXID: SPDXRef-File-usr-bin-zdiff-4b3640ff665ea58d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zegrep +SPDXID: SPDXRef-File-usr-bin-zegrep-88685e006381f799 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zfgrep +SPDXID: SPDXRef-File-usr-bin-zfgrep-7144d81e60b4344b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zforce +SPDXID: SPDXRef-File-usr-bin-zforce-3346e80100b79bf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zgrep +SPDXID: SPDXRef-File-usr-bin-zgrep-10ed544e03c1bcb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zless +SPDXID: SPDXRef-File-usr-bin-zless-1f190d5d92ce93f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zmore +SPDXID: SPDXRef-File-usr-bin-zmore-6c71d895d8b23f6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/znew +SPDXID: SPDXRef-File-usr-bin-znew-b5d7fca1d959f9ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/include/python3.6m/pyconfig-64.h +SPDXID: SPDXRef-File-usr-include-python3.6m-pyconfig-64.h-87f75a0c69079270 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-ADDRESS-1fd32ac4d065a7cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_COLLATE +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-COLLATE-09af79f2ca234748 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_CTYPE +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-CTYPE-69de207c4f5570a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_MEASUREMENT +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-MEASUREMENT-dedc119633386903 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-MONETARY-6fc4930073dab20e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-NAME-954e32b29f2c0091 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-NUMERIC-bfc0351061dc4756 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_PAPER +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-PAPER-0144b56250caa36e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-TELEPHONE-2422032a4b95d04b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-TIME-7685769238c4432d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_AG/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-ADDRESS-86828ea3a614793e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_COLLATE +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-COLLATE-d68e6a00c74688b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-IDENTIFICATION-acc0fe47e33101c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_MEASUREMENT +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-MEASUREMENT-6b49a0bf1af82e96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-MONETARY-f1c9dd81ff852452 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-NAME-14c997a4f59ba3fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-NUMERIC-2dadb402b7f0a575 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_PAPER +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-PAPER-0c663ebffa76eca3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-TELEPHONE-5fb0900b759781c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-TIME-8ac2294cb383a4d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-ADDRESS-3dcfa47bf37ac895 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_COLLATE +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-COLLATE-c27609ef2ef0e834 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_CTYPE +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-CTYPE-5fa42eb8d6d6fb5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-IDENTIFICATION-13d894943df07c7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_MEASUREMENT +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-MEASUREMENT-31b37f01c39ec6c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-MONETARY-2a4f3094355cd9bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-NAME-26b1cf0f2cd01332 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-NUMERIC-8dcc033c07e1ff54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_PAPER +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-PAPER-8016a781f0058752 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-TELEPHONE-5fbab395cb323bac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-TIME-8a1c3ac2bf6b3953 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-ADDRESS-c628438e48ac358f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-MONETARY-cc6e534865cfcc8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU.utf8/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-NAME-7e56328537fc2fbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-TELEPHONE-0b1750e180b5c4e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-TIME-628cc7420743e170 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-BW-LC-ADDRESS-f61dc050627a2d2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-BW-LC-IDENTIFICATION-02c856c925fa2570 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-BW-LC-MONETARY-1edc0f9c6f5d56fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-BW-LC-TELEPHONE-52d15f233a83c660 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-BW-LC-TIME-2f1d1825f61b7378 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-ADDRESS-4100b14dc11c2542 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-MONETARY-515335621fbab38e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-TELEPHONE-6b9bb67343162edd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-TIME-1c40b2690827e9b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-CA-LC-ADDRESS-91bb9f2a188c548e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_COLLATE +SPDXID: SPDXRef-File-usr-lib-locale-en-CA-LC-COLLATE-5e8b4efacf3979ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-CA-LC-IDENTIFICATION-44b88b9f31a63c17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-CA-LC-MONETARY-608d711669f7c25f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_PAPER +SPDXID: SPDXRef-File-usr-lib-locale-en-CA-LC-PAPER-803a799ee628b488 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-CA-LC-TELEPHONE-d9f8389e38e5e12b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-CA-LC-TIME-50b504658e3a6a22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-ADDRESS-aac40d89a6a834bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA.utf8/LC_COLLATE +SPDXID: SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-COLLATE-60a9976dd3b860e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-MONETARY-6a1eb3a2f418f48b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA.utf8/LC_PAPER +SPDXID: SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-PAPER-93e8ab04db42fa92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-TIME-7f765efea9260172 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-DK-LC-ADDRESS-72405d972f0bb9ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-DK-LC-IDENTIFICATION-5c6da5382ff79c24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-DK-LC-MONETARY-f66638a5e6f00905 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-en-DK-LC-NUMERIC-710f99a698f27ebb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-DK-LC-TELEPHONE-d14eb414191b3ea2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-DK-LC-TIME-8c119b8916a00a76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-ADDRESS-1305e9da969269e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-MONETARY-aeecdfcf9d37affb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK.utf8/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-NUMERIC-482c63500b4a519e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-TELEPHONE-b1be887187f1a8ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-TIME-38c0371dc134cc3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-GB-LC-ADDRESS-b574181d2b2f27d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-GB-LC-IDENTIFICATION-65e23fdcbef8e660 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-GB-LC-MONETARY-3c2eb16ad40a0208 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-GB-LC-NAME-a693349f1137e78f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-GB-LC-TELEPHONE-28a937e487469af5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-GB-LC-TIME-cde5cd993d62a784 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-GB.iso885915-LC-NAME-d61fcf3e6989e938 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-GB.iso885915-LC-TIME-2942fbadea9ba406 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-ADDRESS-8bc645939cf86893 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-MONETARY-52173a7352f8e839 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-TELEPHONE-5b6470f7016a2968 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-TIME-0ea9e57d2326c4b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-HK-LC-ADDRESS-e7ae266076536640 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-HK-LC-IDENTIFICATION-8aa4bdd32288f291 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-HK-LC-MONETARY-6424687ed70e2ede +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-HK-LC-NAME-8eb24ff2cdd806ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-en-HK-LC-NUMERIC-1c2178cc71e23bd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-HK-LC-TELEPHONE-4fe2949c0499a612 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-HK-LC-TIME-f15951354cbc3a80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-ADDRESS-f918a2f971f50419 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-MONETARY-2f94ee69888154c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK.utf8/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-NAME-27eff88af3ac2e39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK.utf8/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-NUMERIC-35c2f956157e7797 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-TELEPHONE-0e03dc68b171217e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-TIME-783ab1550b9ad5c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-LC-ADDRESS-9b3675e43cc2bb5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-LC-IDENTIFICATION-8f5ec9080c777e0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-LC-MONETARY-72cf68b177f5796f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-LC-TELEPHONE-164a7b6581d88b80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-LC-TIME-aaca2f5914f58533 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE@euro/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-euro-LC-ADDRESS-c363cc35c6fadb6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE@euro/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-euro-LC-MONETARY-f151e691a71b3804 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE@euro/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-euro-LC-NAME-8fd0db66ab1d7565 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE@euro/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-euro-LC-TELEPHONE-e7f8c4c2e3854a7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE@euro/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-euro-LC-TIME-ea5be04751285400 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-ADDRESS-c0ad68c1c43cd2b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-MONETARY-471b6ac89f9478cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-TELEPHONE-8520a5b3fcae748a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-TIME-a07e1524f82b245b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IL/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-IL-LC-ADDRESS-daeec6d2fdad9f1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IL/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-IL-LC-IDENTIFICATION-b1f91dfd818a338d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IL/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-IL-LC-MONETARY-cc3261a69746de7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IL/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-IL-LC-TELEPHONE-89600bbc05482652 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IL/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-IL-LC-TIME-f1ec9cf9cd4c6573 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IN/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-IN-LC-ADDRESS-0a344062d13c7ac6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IN/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-IN-LC-IDENTIFICATION-9947cde3a2f55722 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IN/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-IN-LC-MONETARY-423941758b580b5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IN/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-en-IN-LC-NUMERIC-b6ae3bc99dd49e41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IN/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-IN-LC-TELEPHONE-22adce6dcc339152 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IN/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-IN-LC-TIME-377e3bdc8bd2548a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NG/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-NG-LC-ADDRESS-2443ee6a312a58e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NG/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-NG-LC-IDENTIFICATION-a9040f1a04694a29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NG/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-NG-LC-MONETARY-56f8ebb8d1cac10c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NG/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-NG-LC-TELEPHONE-00efc990e28968b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NG/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-NG-LC-TIME-52763d4286924020 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-NZ-LC-ADDRESS-9af5e9b54d963f18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-NZ-LC-IDENTIFICATION-f615006208df8bb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-NZ-LC-MONETARY-a0ab980258aa49fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-NZ-LC-TELEPHONE-93088bc95deaad17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-NZ.utf8-LC-ADDRESS-de0297a9dfc4724c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-NZ.utf8-LC-MONETARY-59c0aa6709578525 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-NZ.utf8-LC-TELEPHONE-5b60c4183a67cdcf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-PH-LC-ADDRESS-ccc9a5bd5671ad09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-PH-LC-IDENTIFICATION-3a7f34ef7fd2cf4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-PH-LC-MONETARY-3cd1166737635a1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-PH-LC-NAME-a4013572779b61a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-PH-LC-TELEPHONE-80281cf0594fe089 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-PH-LC-TIME-1fe310fad9d86aca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-ADDRESS-66e40f2bb555d667 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-MONETARY-c7931ef20bf3ef72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH.utf8/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-NAME-0b9bbab53980635a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-TELEPHONE-44f8c28f5f15246e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-TIME-e61dab623df4dc97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SC.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-SC.utf8-LC-ADDRESS-b4e862c23b0f5360 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SC.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-SC.utf8-LC-MONETARY-29a833e48badb967 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SC.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-SC.utf8-LC-TELEPHONE-684b44048fd1ed61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-SG-LC-ADDRESS-801de6318ac70996 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-SG-LC-IDENTIFICATION-58d8f48c4fc91c74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-SG-LC-MONETARY-5be75a92c2fd3056 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-SG-LC-TELEPHONE-832b0e2d9ed7cf87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-SG-LC-TIME-5afac03645e1d825 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-ADDRESS-d03723b21f32e6ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-MONETARY-4f38eb7755b21428 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-TELEPHONE-5fbc57665ffa5d3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-TIME-e2314cc05884a9dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-US-LC-ADDRESS-c9a0dd78fc466c88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-US-LC-IDENTIFICATION-6124c9b5ac9a2bd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US/LC_MEASUREMENT +SPDXID: SPDXRef-File-usr-lib-locale-en-US-LC-MEASUREMENT-68c649530a57887a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-US-LC-MONETARY-671ff83b9313c5f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-US-LC-TELEPHONE-ac5e48056406d81d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-US-LC-TIME-ca1e05730eccbda0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.iso885915/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-US.iso885915-LC-TIME-67bb460ec8a7eda4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-US.utf8-LC-ADDRESS-64d95d0753b167f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-US.utf8-LC-MONETARY-137e091ea8212536 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-US.utf8-LC-TELEPHONE-2dce36a110bd1c95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-US.utf8-LC-TIME-3e4e6df0aac90b0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.utf8@ampm/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-US.utf8-ampm-LC-TIME-12c50bf117b13cd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA-LC-ADDRESS-d82c3300e4d4fbec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA-LC-IDENTIFICATION-997d76d46412c6b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA-LC-MONETARY-c64f096edd98c7ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA-LC-NAME-7a3f3dbf8aa6b15c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA-LC-TELEPHONE-fa93fd1a7e284018 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-ADDRESS-d201cb7c2088ae8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-MONETARY-abcb90c2976d9471 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA.utf8/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-NAME-fc89c22b3315d614 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-TELEPHONE-d247b7e4c4b8e7f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZM/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-ZM-LC-ADDRESS-df360e9309f25736 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZM/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-ZM-LC-IDENTIFICATION-980e3fbaaab39c26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZM/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-ZM-LC-MONETARY-18cf98ff17cdf888 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZM/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-ZM-LC-TELEPHONE-3663f004bf919b11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZM/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-ZM-LC-TIME-aea1159f9f2d0641 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-ZW-LC-ADDRESS-fba65845604a3b85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-ZW-LC-IDENTIFICATION-74b710fc4b5b01ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-ZW-LC-MONETARY-ec3f46083c424969 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-ZW-LC-TELEPHONE-f398309ba8a7d662 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-ZW.utf8-LC-ADDRESS-4c42fb49ae71e9d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-ZW.utf8-LC-MONETARY-d2ffdf62ea89f7b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-ZW.utf8-LC-TELEPHONE-637bbcc2d311e1e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/os-release +SPDXID: SPDXRef-File-usr-lib-os-release-7216a1736d1cee0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six.py +SPDXID: SPDXRef-File-usr-lib-python3.6-site-packages-six.py-3dd7b2cfe1100d24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/macros +SPDXID: SPDXRef-File-usr-lib-rpm-macros-9414fcbf02dea404 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/macros.d/macros.info +SPDXID: SPDXRef-File-usr-lib-rpm-macros.d-macros.info-78dc00ffd65e7db6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/macros.d/macros.systemd +SPDXID: SPDXRef-File-usr-lib-rpm-macros.d-macros.systemd-b45ed309582c2b47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/i386-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-i386-linux-macros-9599cfd7154b21f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/i486-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-i486-linux-macros-6d49efe80151e72f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/i586-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-i586-linux-macros-e788b5cf0758d53c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/i686-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-i686-linux-macros-1d89630752f22eb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ia64-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-ia64-linux-macros-6468c626c76c5e11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/m68k-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-m68k-linux-macros-ff9370a17b6a3963 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mips-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-mips-linux-macros-7280b811ef117214 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-ppc-linux-macros-0a7d23c0f1483674 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/s390-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-s390-linux-macros-3f01a6ad78fa56de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sh-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-sh-linux-macros-3866e3d137f7c797 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sh3-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-sh3-linux-macros-d3c65ced064bca1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sh4-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-sh4-linux-macros-a47eed1cfc699d47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sh4a-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-sh4a-linux-macros-32f9e830cb9cfdd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/python-macro-helper +SPDXID: SPDXRef-File-usr-lib-rpm-python-macro-helper-9d87a57191c5cd65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/rpm.daily +SPDXID: SPDXRef-File-usr-lib-rpm-rpm.daily-cf1868bf28a6d3de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/rpm.log +SPDXID: SPDXRef-File-usr-lib-rpm-rpm.log-19fc6ea01d2683ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/rpm.supp +SPDXID: SPDXRef-File-usr-lib-rpm-rpm.supp-c026cafcff5ed4d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/rpm2cpio.sh +SPDXID: SPDXRef-File-usr-lib-rpm-rpm2cpio.sh-6de2c6b4d36c3815 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/rpmdb_loadcvt +SPDXID: SPDXRef-File-usr-lib-rpm-rpmdb-loadcvt-59f9dd2b0628515d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/rpmpopt-4.14.3 +SPDXID: SPDXRef-File-usr-lib-rpm-rpmpopt-4.14.3-753d45e8154ab4d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/rpmrc +SPDXID: SPDXRef-File-usr-lib-rpm-rpmrc-cf5ba301cc07a6f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/tgpg +SPDXID: SPDXRef-File-usr-lib-rpm-tgpg-12f60d796ce29c4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/sysctl.d/50-coredump.conf +SPDXID: SPDXRef-File-usr-lib-sysctl.d-50-coredump.conf-20bd96ed271d11f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/sysctl.d/50-default.conf +SPDXID: SPDXRef-File-usr-lib-sysctl.d-50-default.conf-d8b22cbbdbb48f5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/sysctl.d/50-pid-max.conf +SPDXID: SPDXRef-File-usr-lib-sysctl.d-50-pid-max.conf-da2cc44ea36b37a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/portablectl +SPDXID: SPDXRef-File-usr-lib-systemd-portablectl-337576440289ca4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/purge-nobody-user +SPDXID: SPDXRef-File-usr-lib-systemd-purge-nobody-user-db3319c378aeb53b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/resolv.conf +SPDXID: SPDXRef-File-usr-lib-systemd-resolv.conf-bbaca72b6adb88a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/basic.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-basic.target-c85b858817fde218 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dbus.service +SPDXID: SPDXRef-File-usr-lib-systemd-system-dbus.service-c74695f3debdbf81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dbus.socket +SPDXID: SPDXRef-File-usr-lib-systemd-system-dbus.socket-c116c7c34ec110ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/exit.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-exit.target-3a2867cf74c58d24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/final.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-final.target-5365441a966abb7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/fstrim.service +SPDXID: SPDXRef-File-usr-lib-systemd-system-fstrim.service-d7e1e208fccf0fc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/fstrim.timer +SPDXID: SPDXRef-File-usr-lib-systemd-system-fstrim.timer-6ece0c810adc1c2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/getty@.service +SPDXID: SPDXRef-File-usr-lib-systemd-system-getty-.service-61ef701d61a94330 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/getty.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-getty.target-b0e9ddb6e54e859e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/halt.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-halt.target-8304f1e6ede8381b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-initrd.target-33f90c8bf43f6b18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/kexec.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-kexec.target-4ceaf2602dcdef43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/local-fs.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-local-fs.target-c2cfe732ff89eafe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/network.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-network.target-69cf0bc9caa986b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/paths.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-paths.target-61c02f8148a062db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/poweroff.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-poweroff.target-2463ec591887664c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/printer.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-printer.target-79e6a01fa957f98e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/reboot.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-reboot.target-f7a74152dade036d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/rescue.service +SPDXID: SPDXRef-File-usr-lib-systemd-system-rescue.service-2c92c65e558a29f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/rescue.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-rescue.target-468d60086b7fa3fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/rhsm.service +SPDXID: SPDXRef-File-usr-lib-systemd-system-rhsm.service-facdebd80012518b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/rpcbind.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-rpcbind.target-92465d891dc8e52e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/shutdown.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-shutdown.target-202f787593e4696f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/sigpwr.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-sigpwr.target-ac065cdb6da61d17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/slices.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-slices.target-005bfe32fadcc17f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/sockets.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-sockets.target-41ba3a17121c4500 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/sound.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-sound.target-9c2d172e166fd24e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/swap.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-swap.target-ccdd13025b5d8b37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/sysinit.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-sysinit.target-d42e0600a897e31e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/syslog.socket +SPDXID: SPDXRef-File-usr-lib-systemd-system-syslog.socket-668a7f9e5fa70411 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/timers.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-timers.target-929eaec84ef987fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/tmp.mount +SPDXID: SPDXRef-File-usr-lib-systemd-system-tmp.mount-3dbe5b92e7a72e39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/umount.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-umount.target-f176471009588c6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/user@.service +SPDXID: SPDXRef-File-usr-lib-systemd-system-user-.service-e425e2639d305773 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/user.slice +SPDXID: SPDXRef-File-usr-lib-systemd-system-user.slice-900d7cce6da082a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-ac-power +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-ac-power-58eb277540db9eb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-binfmt +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-binfmt-e52baafee9060a9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-ccc612058f7dbbe6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-cgroups-agent +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-cgroups-agent-b46f5ca2afb4fbc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-coredump +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-coredump-f52f3d3553d84ced +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-dissect +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-dissect-c531adeb1335c2b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-export +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-export-f2f0e8103355c4b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-fsck +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-fsck-dd5ac7f2a16804ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-hostnamed +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-hostnamed-94560331c94e978b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-initctl +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-initctl-ddd60c0b4f53caf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-journald +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-journald-a646406f8732f88b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-localed +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-localed-8266062d67f7f6a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-logind +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-logind-bb8a3d35349654a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-portabled +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-portabled-1c7fd3eaf244a8d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-pstore +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-pstore-121a6962926ef182 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-reply-password +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-reply-password-11f896318f5cea88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-resolved +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-resolved-e6312e0f0ea49da8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-shutdown +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-shutdown-595c6f1d4f134756 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-socket-proxyd +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-socket-proxyd-4df39a58f37a0f48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-sulogin-shell +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-sulogin-shell-dac2afda3a77719f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-sysctl +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-sysctl-ff20d3c2b2aa5416 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-timedated +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-timedated-99e00bf006968659 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-update-done +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-update-done-20266d67288202fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-update-utmp +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-update-utmp-6e50e04a0d7551e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-user-sessions +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-user-sessions-6de18a6998d14e55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-veritysetup +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-veritysetup-6db62e83c52fc36e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-volatile-root +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-volatile-root-9d50d70fb5cd30c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/basic.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-basic.target-1c466cc7298294b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/bluetooth.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-bluetooth.target-d9639f4a8ec416c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/dbus.service +SPDXID: SPDXRef-File-usr-lib-systemd-user-dbus.service-f20257ef9246b0eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/dbus.socket +SPDXID: SPDXRef-File-usr-lib-systemd-user-dbus.socket-aada9b0f53723150 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/default.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-default.target-bce4071f29b318af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/dirmngr.service +SPDXID: SPDXRef-File-usr-lib-systemd-user-dirmngr.service-e8137eed05f36fac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/dirmngr.socket +SPDXID: SPDXRef-File-usr-lib-systemd-user-dirmngr.socket-500c8ec87369a5b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/exit.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-exit.target-361dc31dbc4b5c4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/gpg-agent.service +SPDXID: SPDXRef-File-usr-lib-systemd-user-gpg-agent.service-1224a0120f462823 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/gpg-agent.socket +SPDXID: SPDXRef-File-usr-lib-systemd-user-gpg-agent.socket-4982709a39849fb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/paths.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-paths.target-87d486c87b003283 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/printer.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-printer.target-4e69481fa9bce474 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/shutdown.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-shutdown.target-a4831f8091db5952 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/smartcard.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-smartcard.target-c4364605ca95b004 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/sockets.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-sockets.target-278c148e0f6cc45e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/sound.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-sound.target-745888844c7c3e2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/timers.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-timers.target-055ce4e14c6e4367 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/sysusers.d/basic.conf +SPDXID: SPDXRef-File-usr-lib-sysusers.d-basic.conf-e236b2c4c29aba7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/sysusers.d/dbus.conf +SPDXID: SPDXRef-File-usr-lib-sysusers.d-dbus.conf-6f36638e025d0b1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/sysusers.d/systemd.conf +SPDXID: SPDXRef-File-usr-lib-sysusers.d-systemd.conf-20b91d58dba8dc01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/cryptsetup.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-cryptsetup.conf-2eed818b41d9a1c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/dbus.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-dbus.conf-d7168470fa567c65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/dnf.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-dnf.conf-cd29427268b72efc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/etc.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-etc.conf-ac279c0824d88bfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/home.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-home.conf-9120017858eab67c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/journal-nocow.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-journal-nocow.conf-870a034d7bea6ba7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/legacy.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-legacy.conf-297a27226b56ddf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/libselinux.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-libselinux.conf-cb3db5165b47c6b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/pam.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-pam.conf-a30f196ff0d68ec9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/portables.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-portables.conf-024bf2095af272fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/rpm.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-rpm.conf-e2acff19b673c2ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/systemd.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-systemd.conf-09a0e9e4bfbb7b73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/tmp.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-tmp.conf-b8d54264461a4bcb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/var.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-var.conf-84d0b993eaf35a85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/x11.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-x11.conf-a67d2ee36373dd8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/udev/rules.d/10-dm.rules +SPDXID: SPDXRef-File-usr-lib-udev-rules.d-10-dm.rules-ce438bd662f8eecf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/udev/rules.d/13-dm-disk.rules +SPDXID: SPDXRef-File-usr-lib-udev-rules.d-13-dm-disk.rules-80e9d9d6722a9dad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/udev/rules.d/60-raw.rules +SPDXID: SPDXRef-File-usr-lib-udev-rules.d-60-raw.rules-27021ff96152c0ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/udev/rules.d/60-tpm-udev.rules +SPDXID: SPDXRef-File-usr-lib-udev-rules.d-60-tpm-udev.rules-162951a761239d8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/.libcrypt.so.1.1.0.hmac +SPDXID: SPDXRef-File-usr-lib64-.libcrypt.so.1.1.0.hmac-779030f247b5a35b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/.libcrypto.so.1.1.1k.hmac +SPDXID: SPDXRef-File-usr-lib64-.libcrypto.so.1.1.1k.hmac-084024821f89e983 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/.libgcrypt.so.20.hmac +SPDXID: SPDXRef-File-usr-lib64-.libgcrypt.so.20.hmac-6092d9df36ada5b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/.libgnutls.so.30.28.2.hmac +SPDXID: SPDXRef-File-usr-lib64-.libgnutls.so.30.28.2.hmac-a636f094e6365f89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/.libhogweed.so.4.5.hmac +SPDXID: SPDXRef-File-usr-lib64-.libhogweed.so.4.5.hmac-eb06b32f81646290 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/.libnettle.so.6.5.hmac +SPDXID: SPDXRef-File-usr-lib64-.libnettle.so.6.5.hmac-e9716a5ea2978295 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/.libssl.so.1.1.1k.hmac +SPDXID: SPDXRef-File-usr-lib64-.libssl.so.1.1.1k.hmac-08bd6b7f68a82faa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/audit/sotruss-lib.so +SPDXID: SPDXRef-File-usr-lib64-audit-sotruss-lib.so-a781e72b447d9590 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/engines-1.1/afalg.so +SPDXID: SPDXRef-File-usr-lib64-engines-1.1-afalg.so-a34191bfb7b1991f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/engines-1.1/capi.so +SPDXID: SPDXRef-File-usr-lib64-engines-1.1-capi.so-5076d229e861461e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/engines-1.1/padlock.so +SPDXID: SPDXRef-File-usr-lib64-engines-1.1-padlock.so-88bacab0d5f2bfde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/filefuncs.so +SPDXID: SPDXRef-File-usr-lib64-gawk-filefuncs.so-1f4fe69ff6f2d839 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/fnmatch.so +SPDXID: SPDXRef-File-usr-lib64-gawk-fnmatch.so-afc8ffb5c6835149 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/fork.so +SPDXID: SPDXRef-File-usr-lib64-gawk-fork.so-433fd37021fd394e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/inplace.so +SPDXID: SPDXRef-File-usr-lib64-gawk-inplace.so-5b3e463a12052aa4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/intdiv.so +SPDXID: SPDXRef-File-usr-lib64-gawk-intdiv.so-e919f9a093a171e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/ordchr.so +SPDXID: SPDXRef-File-usr-lib64-gawk-ordchr.so-ddad3f739bf562ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/readdir.so +SPDXID: SPDXRef-File-usr-lib64-gawk-readdir.so-e91b9b9aa807282e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/readfile.so +SPDXID: SPDXRef-File-usr-lib64-gawk-readfile.so-0f91658ccbd6a65e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/revoutput.so +SPDXID: SPDXRef-File-usr-lib64-gawk-revoutput.so-337e61571be315d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/revtwoway.so +SPDXID: SPDXRef-File-usr-lib64-gawk-revtwoway.so-f343f4c17452b404 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/rwarray.so +SPDXID: SPDXRef-File-usr-lib64-gawk-rwarray.so-511269d7664d00cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/time.so +SPDXID: SPDXRef-File-usr-lib64-gawk-time.so-b137a8ca5032eb80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/ANSI_X3.110.so +SPDXID: SPDXRef-File-usr-lib64-gconv-ANSI-X3.110.so-7fff974fab11676f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/CP1252.so +SPDXID: SPDXRef-File-usr-lib64-gconv-CP1252.so-4b52f65c9a85f387 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/ISO8859-1.so +SPDXID: SPDXRef-File-usr-lib64-gconv-ISO8859-1.so-b6ae37f627f28c6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/ISO8859-15.so +SPDXID: SPDXRef-File-usr-lib64-gconv-ISO8859-15.so-f2136decf7325108 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/UNICODE.so +SPDXID: SPDXRef-File-usr-lib64-gconv-UNICODE.so-a4eb3960005c3c1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/UTF-16.so +SPDXID: SPDXRef-File-usr-lib64-gconv-UTF-16.so-24f07e0b0fe72e57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/UTF-32.so +SPDXID: SPDXRef-File-usr-lib64-gconv-UTF-32.so-02b6b936c2ebacea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/UTF-7.so +SPDXID: SPDXRef-File-usr-lib64-gconv-UTF-7.so-6e4369b347788539 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/gconv-modules +SPDXID: SPDXRef-File-usr-lib64-gconv-gconv-modules-ab74bb86da2b760f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/gconv-modules.cache +SPDXID: SPDXRef-File-usr-lib64-gconv-gconv-modules.cache-c86440fc1aeb5b4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/krb5/plugins/tls/k5tls.so +SPDXID: SPDXRef-File-usr-lib64-krb5-plugins-tls-k5tls.so-7b2dbc2f9413ebc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/ld-2.28.so +SPDXID: SPDXRef-File-usr-lib64-ld-2.28.so-899b84a654a23ae4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libBrokenLocale-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libBrokenLocale-2.28.so-f40f77d58ff4b49f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libSegFault.so +SPDXID: SPDXRef-File-usr-lib64-libSegFault.so-d418374ee72bcf95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libacl.so.1.1.2253 +SPDXID: SPDXRef-File-usr-lib64-libacl.so.1.1.2253-94789880a76395d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libanl-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libanl-2.28.so-7f4a06cca86fac08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libarchive.so.13.3.3 +SPDXID: SPDXRef-File-usr-lib64-libarchive.so.13.3.3-5decaba694c6a7a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libasm-0.188.so +SPDXID: SPDXRef-File-usr-lib64-libasm-0.188.so-00329a2ca370ef08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libassuan.so.0.8.1 +SPDXID: SPDXRef-File-usr-lib64-libassuan.so.0.8.1-81e6e3a717179fa4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libattr.so.1.1.2448 +SPDXID: SPDXRef-File-usr-lib64-libattr.so.1.1.2448-7fceac1eb0d89f52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libaudit.so.1.0.0 +SPDXID: SPDXRef-File-usr-lib64-libaudit.so.1.0.0-fa101d079f1e5239 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libauparse.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libauparse.so.0.0.0-1246382363eb489d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libblkid.so.1.1.0 +SPDXID: SPDXRef-File-usr-lib64-libblkid.so.1.1.0-3dce829bd26ca4a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libbrotlicommon.so.1.0.6 +SPDXID: SPDXRef-File-usr-lib64-libbrotlicommon.so.1.0.6-f1d529308b232dfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libbrotlidec.so.1.0.6 +SPDXID: SPDXRef-File-usr-lib64-libbrotlidec.so.1.0.6-4e0d3f231bee2a1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libbrotlienc.so.1.0.6 +SPDXID: SPDXRef-File-usr-lib64-libbrotlienc.so.1.0.6-ed007d468a36596b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libbz2.so.1.0.6 +SPDXID: SPDXRef-File-usr-lib64-libbz2.so.1.0.6-d497d96e06de5d98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libc-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libc-2.28.so-8a0216ba1339ecc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcap-ng.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libcap-ng.so.0.0.0-75b4fdfee98ab106 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcap.so.2.48 +SPDXID: SPDXRef-File-usr-lib64-libcap.so.2.48-dca963abeacb99d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcom_err.so.2.1 +SPDXID: SPDXRef-File-usr-lib64-libcom-err.so.2.1-5e37c45025c6f81a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcomps.so.0 +SPDXID: SPDXRef-File-usr-lib64-libcomps.so.0-a4e1dd52875ac0fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcrack.so.2.9.0 +SPDXID: SPDXRef-File-usr-lib64-libcrack.so.2.9.0-e16c1ec46c8d019b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcrypt.so.1.1.0 +SPDXID: SPDXRef-File-usr-lib64-libcrypt.so.1.1.0-cdeba8918acb87e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcrypto.so.1.1.1k +SPDXID: SPDXRef-File-usr-lib64-libcrypto.so.1.1.1k-2313000baaf2d3f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcryptsetup.so.12.6.0 +SPDXID: SPDXRef-File-usr-lib64-libcryptsetup.so.12.6.0-cb2e4894d41bc322 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcurl.so.4.5.0 +SPDXID: SPDXRef-File-usr-lib64-libcurl.so.4.5.0-f6319e635e085bad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdb-5.3.so +SPDXID: SPDXRef-File-usr-lib64-libdb-5.3.so-37019ffd38bbe2c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdbus-1.so.3.19.7 +SPDXID: SPDXRef-File-usr-lib64-libdbus-1.so.3.19.7-b6210e1c04c468ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdbus-glib-1.so.2.3.4 +SPDXID: SPDXRef-File-usr-lib64-libdbus-glib-1.so.2.3.4-017d3f1b219e5313 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdevmapper.so.1.02 +SPDXID: SPDXRef-File-usr-lib64-libdevmapper.so.1.02-ee27af79a82201e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdl-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libdl-2.28.so-3caae6eda12c8a53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdnf/plugins/README +SPDXID: SPDXRef-File-usr-lib64-libdnf-plugins-README-852a5bf38a3c880d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdnf/plugins/product-id.so +SPDXID: SPDXRef-File-usr-lib64-libdnf-plugins-product-id.so-6bc92bb3c8954ee5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdnf.so.2 +SPDXID: SPDXRef-File-usr-lib64-libdnf.so.2-ec311eba8f23c49c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdw-0.188.so +SPDXID: SPDXRef-File-usr-lib64-libdw-0.188.so-323035c43657a141 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libefa.so.1.2.44.0 +SPDXID: SPDXRef-File-usr-lib64-libefa.so.1.2.44.0-14f64c0df7f78e7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libelf-0.188.so +SPDXID: SPDXRef-File-usr-lib64-libelf-0.188.so-453c61fee9b983ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libexpat.so.1.6.7 +SPDXID: SPDXRef-File-usr-lib64-libexpat.so.1.6.7-9a1c827816a8e840 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libfdisk.so.1.1.0 +SPDXID: SPDXRef-File-usr-lib64-libfdisk.so.1.1.0-bc587e0f4d28153a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libffi.so.6.0.2 +SPDXID: SPDXRef-File-usr-lib64-libffi.so.6.0.2-54964a8807c8d848 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libfontconfig.so.1.12.0 +SPDXID: SPDXRef-File-usr-lib64-libfontconfig.so.1.12.0-5f288ae5f818ef3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libform.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libform.so.6.1-3d1f69182dc01243 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libformw.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libformw.so.6.1-e1c6b379a1a891a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libfreetype.so.6.16.1 +SPDXID: SPDXRef-File-usr-lib64-libfreetype.so.6.16.1-7c4f273d62d09444 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libgcc_s-8-20210514.so.1 +SPDXID: SPDXRef-File-usr-lib64-libgcc-s-8-20210514.so.1-c14e75cb80e20c1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgcrypt.so.20.2.5 +SPDXID: SPDXRef-File-usr-lib64-libgcrypt.so.20.2.5-220ef3d54c35f495 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgdbm_compat.so.4.0.0 +SPDXID: SPDXRef-File-usr-lib64-libgdbm-compat.so.4.0.0-958e504d250f6ce7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgdbm.so.6.0.0 +SPDXID: SPDXRef-File-usr-lib64-libgdbm.so.6.0.0-5ff81c04ddf8f15b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgio-2.0.so.0.5600.4 +SPDXID: SPDXRef-File-usr-lib64-libgio-2.0.so.0.5600.4-16accb16969b5172 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgirepository-1.0.so.1.0.0 +SPDXID: SPDXRef-File-usr-lib64-libgirepository-1.0.so.1.0.0-bcb171dd709b6ebe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libglib-2.0.so.0.5600.4 +SPDXID: SPDXRef-File-usr-lib64-libglib-2.0.so.0.5600.4-e3821fcda866e7c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgmodule-2.0.so.0.5600.4 +SPDXID: SPDXRef-File-usr-lib64-libgmodule-2.0.so.0.5600.4-783079b2953be1ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgmp.so.10.3.2 +SPDXID: SPDXRef-File-usr-lib64-libgmp.so.10.3.2-1899997b9f57f364 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgnutls.so.30.28.2 +SPDXID: SPDXRef-File-usr-lib64-libgnutls.so.30.28.2-5bad2a698fea7652 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgobject-2.0.so.0.5600.4 +SPDXID: SPDXRef-File-usr-lib64-libgobject-2.0.so.0.5600.4-6f35ae6103bcaf83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgpg-error.so.0.24.2 +SPDXID: SPDXRef-File-usr-lib64-libgpg-error.so.0.24.2-eebe04898dc1104f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgpgme.so.11.22.1 +SPDXID: SPDXRef-File-usr-lib64-libgpgme.so.11.22.1-9288129581acc3da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgssapi_krb5.so.2.2 +SPDXID: SPDXRef-File-usr-lib64-libgssapi-krb5.so.2.2-7f052cb37d632add +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgssrpc.so.4.2 +SPDXID: SPDXRef-File-usr-lib64-libgssrpc.so.4.2-bfcf362178edf7aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgthread-2.0.so.0.5600.4 +SPDXID: SPDXRef-File-usr-lib64-libgthread-2.0.so.0.5600.4-108c4a7209cc9898 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libhistory.so.7.0 +SPDXID: SPDXRef-File-usr-lib64-libhistory.so.7.0-ec352d20a1ffe247 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libhogweed.so.4.5 +SPDXID: SPDXRef-File-usr-lib64-libhogweed.so.4.5-634a7713f3653dea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libibverbs/libhns-rdmav34.so +SPDXID: SPDXRef-File-usr-lib64-libibverbs-libhns-rdmav34.so-3e97e717bd682439 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libibverbs/librxe-rdmav34.so +SPDXID: SPDXRef-File-usr-lib64-libibverbs-librxe-rdmav34.so-1bb60ef064846090 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libibverbs/libsiw-rdmav34.so +SPDXID: SPDXRef-File-usr-lib64-libibverbs-libsiw-rdmav34.so-278ef80f6a61902b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libibverbs.so.1.14.44.0 +SPDXID: SPDXRef-File-usr-lib64-libibverbs.so.1.14.44.0-f1fab28dadecec42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libidn2.so.0.3.6 +SPDXID: SPDXRef-File-usr-lib64-libidn2.so.0.3.6-8fb1776496cda610 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libimaevm.so.2.0.0 +SPDXID: SPDXRef-File-usr-lib64-libimaevm.so.2.0.0-e6196edfc93d483f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libinproctrace.so +SPDXID: SPDXRef-File-usr-lib64-libinproctrace.so-3ea6d7eef0a84230 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libip4tc.so.0.1.0 +SPDXID: SPDXRef-File-usr-lib64-libip4tc.so.0.1.0-a35f6c5e272ae6a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libip4tc.so.2.0.0 +SPDXID: SPDXRef-File-usr-lib64-libip4tc.so.2.0.0-5b7cda72ed734d0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libip6tc.so.0.1.0 +SPDXID: SPDXRef-File-usr-lib64-libip6tc.so.0.1.0-089d553126f0404d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libip6tc.so.2.0.0 +SPDXID: SPDXRef-File-usr-lib64-libip6tc.so.2.0.0-1dccb800ab8e7196 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libiptc.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libiptc.so.0.0.0-0e78b29a8e248258 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libjansson.so.4.14.0 +SPDXID: SPDXRef-File-usr-lib64-libjansson.so.4.14.0-49b29d0e6f8499a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libjson-c.so.4.0.0 +SPDXID: SPDXRef-File-usr-lib64-libjson-c.so.4.0.0-3517408a541ae959 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libjson-glib-1.0.so.0.400.4 +SPDXID: SPDXRef-File-usr-lib64-libjson-glib-1.0.so.0.400.4-957ae7df7a8165cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libk5crypto.so.3.1 +SPDXID: SPDXRef-File-usr-lib64-libk5crypto.so.3.1-c67bd535442fe9d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libkdb5.so.10.0 +SPDXID: SPDXRef-File-usr-lib64-libkdb5.so.10.0-41901b776dba1616 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libkeyutils.so.1.6 +SPDXID: SPDXRef-File-usr-lib64-libkeyutils.so.1.6-03b3f1eeafa779d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libkmod.so.2.3.3 +SPDXID: SPDXRef-File-usr-lib64-libkmod.so.2.3.3-6193f781697e9ec6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libkrad.so.0.0 +SPDXID: SPDXRef-File-usr-lib64-libkrad.so.0.0-7a277395db789653 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libkrb5.so.3.3 +SPDXID: SPDXRef-File-usr-lib64-libkrb5.so.3.3-b3579c1cb88fdfc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libkrb5support.so.0.1 +SPDXID: SPDXRef-File-usr-lib64-libkrb5support.so.0.1-b2aaf38478c3e571 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libksba.so.8.11.6 +SPDXID: SPDXRef-File-usr-lib64-libksba.so.8.11.6-acd6fe3137a6f760 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/liblber-2.4.so.2.10.9 +SPDXID: SPDXRef-File-usr-lib64-liblber-2.4.so.2.10.9-cdc99235b436ebf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libldap-2.4.so.2.10.9 +SPDXID: SPDXRef-File-usr-lib64-libldap-2.4.so.2.10.9-29575a76c3e82ee6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libldap_r-2.4.so.2.10.9 +SPDXID: SPDXRef-File-usr-lib64-libldap-r-2.4.so.2.10.9-864ee657bdff9863 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/liblua-5.3.so +SPDXID: SPDXRef-File-usr-lib64-liblua-5.3.so-94a6f82d097cf8c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/liblz4.so.1.8.3 +SPDXID: SPDXRef-File-usr-lib64-liblz4.so.1.8.3-6538e09e53fe38c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/liblzma.so.5.2.4 +SPDXID: SPDXRef-File-usr-lib64-liblzma.so.5.2.4-1171f4f0625d4f8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libm-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libm-2.28.so-24bb340519ffb940 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmagic.so.1.0.0 +SPDXID: SPDXRef-File-usr-lib64-libmagic.so.1.0.0-5ebcf188c0e92ed7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmemusage.so +SPDXID: SPDXRef-File-usr-lib64-libmemusage.so-d803b9467e850822 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmenu.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libmenu.so.6.1-57fa1e003baafada +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmenuw.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libmenuw.so.6.1-d8a60710014b77f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmlx4.so.1.0.44.0 +SPDXID: SPDXRef-File-usr-lib64-libmlx4.so.1.0.44.0-ffece5b753c16a03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libmlx5.so.1.24.44.0 +SPDXID: SPDXRef-File-usr-lib64-libmlx5.so.1.24.44.0-574b9ab233702d56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libmnl.so.0.2.0 +SPDXID: SPDXRef-File-usr-lib64-libmnl.so.0.2.0-3ab98c003875068a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libmodulemd.so.2.13.0 +SPDXID: SPDXRef-File-usr-lib64-libmodulemd.so.2.13.0-2451e16dc8f4a035 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmount.so.1.1.0 +SPDXID: SPDXRef-File-usr-lib64-libmount.so.1.1.0-2b35e1b59b0dc3aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmpfr.so.4.1.6 +SPDXID: SPDXRef-File-usr-lib64-libmpfr.so.4.1.6-3f1fddb396fa99ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmvec-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libmvec-2.28.so-b7fba42a357d605f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libncurses.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libncurses.so.6.1-0aae8e6195124e9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libncursesw.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libncursesw.so.6.1-6edcde95db46ed40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnet.so.1.7.0 +SPDXID: SPDXRef-File-usr-lib64-libnet.so.1.7.0-9687d900dcb3f0f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libnettle.so.6.5 +SPDXID: SPDXRef-File-usr-lib64-libnettle.so.6.5-6cfd6bb62d2d4e22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnfnetlink.so.0.2.0 +SPDXID: SPDXRef-File-usr-lib64-libnfnetlink.so.0.2.0-2ce876764332ca25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libnftables.so.1.0.0 +SPDXID: SPDXRef-File-usr-lib64-libnftables.so.1.0.0-6321b173391448af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libnftnl.so.11.2.0 +SPDXID: SPDXRef-File-usr-lib64-libnftnl.so.11.2.0-dcff648f0ec23380 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libnghttp2.so.14.17.0 +SPDXID: SPDXRef-File-usr-lib64-libnghttp2.so.14.17.0-b870740cb07defb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnl-3.so.200.26.0 +SPDXID: SPDXRef-File-usr-lib64-libnl-3.so.200.26.0-55e59b1e8dc8b290 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnl-genl-3.so.200.26.0 +SPDXID: SPDXRef-File-usr-lib64-libnl-genl-3.so.200.26.0-4e7d061a5a5a181a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnl-idiag-3.so.200.26.0 +SPDXID: SPDXRef-File-usr-lib64-libnl-idiag-3.so.200.26.0-dfebde06cf412245 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnl-nf-3.so.200.26.0 +SPDXID: SPDXRef-File-usr-lib64-libnl-nf-3.so.200.26.0-2425b6d6b605f038 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnl-route-3.so.200.26.0 +SPDXID: SPDXRef-File-usr-lib64-libnl-route-3.so.200.26.0-9f0a90493b3899b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnl-xfrm-3.so.200.26.0 +SPDXID: SPDXRef-File-usr-lib64-libnl-xfrm-3.so.200.26.0-950333b5d611211b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnpth.so.0.1.1 +SPDXID: SPDXRef-File-usr-lib64-libnpth.so.0.1.1-b61444a39103cffd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnsl.so.2.0.0 +SPDXID: SPDXRef-File-usr-lib64-libnsl.so.2.0.0-e655338bf8ec0f08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnss_compat-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libnss-compat-2.28.so-e4d96cebebb6d32e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnss_dns-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libnss-dns-2.28.so-41ce653f5ef31968 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnss_files-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libnss-files-2.28.so-d83d87f4af9a1559 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnss_myhostname.so.2 +SPDXID: SPDXRef-File-usr-lib64-libnss-myhostname.so.2-eadaf7adf0562383 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnss_resolve.so.2 +SPDXID: SPDXRef-File-usr-lib64-libnss-resolve.so.2-d5be9b064c76fa9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnss_systemd.so.2 +SPDXID: SPDXRef-File-usr-lib64-libnss-systemd.so.2-33785ffd6be6e700 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libp11-kit.so.0.3.0 +SPDXID: SPDXRef-File-usr-lib64-libp11-kit.so.0.3.0-db20a3f7cd7eed74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpam_misc.so.0.82.1 +SPDXID: SPDXRef-File-usr-lib64-libpam-misc.so.0.82.1-0db726a9969c81ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpam.so.0.84.2 +SPDXID: SPDXRef-File-usr-lib64-libpam.so.0.84.2-a513b77a9d5ba81f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpamc.so.0.82.1 +SPDXID: SPDXRef-File-usr-lib64-libpamc.so.0.82.1-c0ad484d57d20408 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpanel.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libpanel.so.6.1-dd875c471ad6e188 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpanelw.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libpanelw.so.6.1-930ed1b769034773 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpcap.so.1.9.1 +SPDXID: SPDXRef-File-usr-lib64-libpcap.so.1.9.1-136fa4c57ca16fcb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libpcprofile.so +SPDXID: SPDXRef-File-usr-lib64-libpcprofile.so-d8a0502a08dc3460 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpcre.so.1.2.10 +SPDXID: SPDXRef-File-usr-lib64-libpcre.so.1.2.10-54d89969af7ae7f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpcre2-8.so.0.7.1 +SPDXID: SPDXRef-File-usr-lib64-libpcre2-8.so.0.7.1-4088ef734a94853d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpcre2-posix.so.2.0.1 +SPDXID: SPDXRef-File-usr-lib64-libpcre2-posix.so.2.0.1-1f5722aab24ff725 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpcreposix.so.0.0.6 +SPDXID: SPDXRef-File-usr-lib64-libpcreposix.so.0.0.6-ae2e023dddc5d116 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpng16.so.16.34.0 +SPDXID: SPDXRef-File-usr-lib64-libpng16.so.16.34.0-0873f4ad6c406ec1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libpopt.so.0.0.1 +SPDXID: SPDXRef-File-usr-lib64-libpopt.so.0.0.1-a7289540b2a9a5de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libprotobuf-c.so.1.0.0 +SPDXID: SPDXRef-File-usr-lib64-libprotobuf-c.so.1.0.0-8467b5514cd3b16f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libpsl.so.5.3.1 +SPDXID: SPDXRef-File-usr-lib64-libpsl.so.5.3.1-5355b2c50198f794 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpsx.so.2.48 +SPDXID: SPDXRef-File-usr-lib64-libpsx.so.2.48-04e2149fee5a9c83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpthread-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libpthread-2.28.so-70feb92e73b56b2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpwquality.so.1.0.2 +SPDXID: SPDXRef-File-usr-lib64-libpwquality.so.1.0.2-90515a61f8906424 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpython3.6m.so.1.0 +SPDXID: SPDXRef-File-usr-lib64-libpython3.6m.so.1.0-851a17b2ed448e0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpython3.so +SPDXID: SPDXRef-File-usr-lib64-libpython3.so-7a8bc2db5eee3933 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libreadline.so.7.0 +SPDXID: SPDXRef-File-usr-lib64-libreadline.so.7.0-57f1940fa0d79773 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/librepo.so.0 +SPDXID: SPDXRef-File-usr-lib64-librepo.so.0-88a6717f70af5bc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libresolv-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libresolv-2.28.so-46d22700607cd625 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/librhsm.so.0 +SPDXID: SPDXRef-File-usr-lib64-librhsm.so.0-6911efcc5dc2efdc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/librpm.so.8.2.0 +SPDXID: SPDXRef-File-usr-lib64-librpm.so.8.2.0-cfdf6db416ac4262 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/librpmbuild.so.8.2.0 +SPDXID: SPDXRef-File-usr-lib64-librpmbuild.so.8.2.0-0cbd8132fba619ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/librpmio.so.8.2.0 +SPDXID: SPDXRef-File-usr-lib64-librpmio.so.8.2.0-8157c60607216bdf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/librpmsign.so.8.2.0 +SPDXID: SPDXRef-File-usr-lib64-librpmsign.so.8.2.0-f441e4f8cb1c595a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/librt-2.28.so +SPDXID: SPDXRef-File-usr-lib64-librt-2.28.so-166d2681a2aaf47a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libsasl2.so.3.0.0 +SPDXID: SPDXRef-File-usr-lib64-libsasl2.so.3.0.0-69807fd5b97e2105 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libseccomp.so.2.5.2 +SPDXID: SPDXRef-File-usr-lib64-libseccomp.so.2.5.2-37fbde766f7b4a09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libselinux.so.1 +SPDXID: SPDXRef-File-usr-lib64-libselinux.so.1-4c159e60a3275e03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libsemanage.so.1 +SPDXID: SPDXRef-File-usr-lib64-libsemanage.so.1-d167d0fbef027dc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libsepol.so.1 +SPDXID: SPDXRef-File-usr-lib64-libsepol.so.1-b0adcd91f9a2da70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libsigsegv.so.2.0.4 +SPDXID: SPDXRef-File-usr-lib64-libsigsegv.so.2.0.4-ac649c3c8a88e058 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libslapi-2.4.so.2.10.9 +SPDXID: SPDXRef-File-usr-lib64-libslapi-2.4.so.2.10.9-f239ed9a52120052 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libsmartcols.so.1.1.0 +SPDXID: SPDXRef-File-usr-lib64-libsmartcols.so.1.1.0-61fc215af7cfea5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libsolv.so.1 +SPDXID: SPDXRef-File-usr-lib64-libsolv.so.1-df84155aa89b6cfd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libsolvext.so.1 +SPDXID: SPDXRef-File-usr-lib64-libsolvext.so.1-4d080f6408830d5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libsqlite3.so.0.8.6 +SPDXID: SPDXRef-File-usr-lib64-libsqlite3.so.0.8.6-1001f1ca1b9f052a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libssh.so.4.8.7 +SPDXID: SPDXRef-File-usr-lib64-libssh.so.4.8.7-e74b3b6fed85c878 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libssl.so.1.1.1k +SPDXID: SPDXRef-File-usr-lib64-libssl.so.1.1.1k-5631740cb75108b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libstdc++.so.6.0.25 +SPDXID: SPDXRef-File-usr-lib64-libstdc--.so.6.0.25-034b2109703b1348 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libsystemd.so.0.23.0 +SPDXID: SPDXRef-File-usr-lib64-libsystemd.so.0.23.0-c448e97380cca779 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtasn1.so.6.5.5 +SPDXID: SPDXRef-File-usr-lib64-libtasn1.so.6.5.5-81040f537b17d369 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libthread_db-1.0.so +SPDXID: SPDXRef-File-usr-lib64-libthread-db-1.0.so-960d931eb58ce757 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtic.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libtic.so.6.1-0f343f181e99fdfd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtinfo.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libtinfo.so.6.1-3cd192028d2a0392 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtirpc.so.3.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtirpc.so.3.0.0-f39ef9386a75a676 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtss2-esys.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtss2-esys.so.0.0.0-e67737a6033c3746 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtss2-mu.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtss2-mu.so.0.0.0-1d34ae6d4d2bb35c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtss2-rc.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtss2-rc.so.0.0.0-3ab17b6f5e1d10a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtss2-sys.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtss2-sys.so.0.0.0-4f6ad189b060b89b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtss2-tcti-device.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtss2-tcti-device.so.0.0.0-1ae6e1f7602c626a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtss2-tcti-mssim.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtss2-tcti-mssim.so.0.0.0-6c66315b7971aeb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtss2-tctildr.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtss2-tctildr.so.0.0.0-c19c62089caa5fca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libudev.so.1.6.11 +SPDXID: SPDXRef-File-usr-lib64-libudev.so.1.6.11-0db2b037980b7bd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libunistring.so.2.1.0 +SPDXID: SPDXRef-File-usr-lib64-libunistring.so.2.1.0-cbe392533bc6cfd8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libusb-1.0.so.0.2.0 +SPDXID: SPDXRef-File-usr-lib64-libusb-1.0.so.0.2.0-680dfded82e3d639 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libuser/libuser_files.so +SPDXID: SPDXRef-File-usr-lib64-libuser-libuser-files.so-a2af7276d240f86f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libuser/libuser_ldap.so +SPDXID: SPDXRef-File-usr-lib64-libuser-libuser-ldap.so-9e2e49ece79f5dce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libuser/libuser_shadow.so +SPDXID: SPDXRef-File-usr-lib64-libuser-libuser-shadow.so-236b6a23e8719107 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libuser.so.1.5.2 +SPDXID: SPDXRef-File-usr-lib64-libuser.so.1.5.2-185719423f9af73a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libutempter.so.1.1.6 +SPDXID: SPDXRef-File-usr-lib64-libutempter.so.1.1.6-e2009bfa4c17a8e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libutil-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libutil-2.28.so-14604828ae84b1c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libuuid.so.1.3.0 +SPDXID: SPDXRef-File-usr-lib64-libuuid.so.1.3.0-79b4f8f2f7be14cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libverto.so.1.0.0 +SPDXID: SPDXRef-File-usr-lib64-libverto.so.1.0.0-3a7163f90f9f5919 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libxml2.so.2.9.7 +SPDXID: SPDXRef-File-usr-lib64-libxml2.so.2.9.7-43b74e13e28c79a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libxtables.so.12.2.0 +SPDXID: SPDXRef-File-usr-lib64-libxtables.so.12.2.0-62c47b82c901c8a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libyaml-0.so.2.0.5 +SPDXID: SPDXRef-File-usr-lib64-libyaml-0.so.2.0.5-5037ddf99a79f5ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libz.so.1.2.11 +SPDXID: SPDXRef-File-usr-lib64-libz.so.1.2.11-51932d6e34adcaff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libzstd.so.1.4.4 +SPDXID: SPDXRef-File-usr-lib64-libzstd.so.1.4.4-0a800f0500000ff2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/pkcs11/p11-kit-trust.so +SPDXID: SPDXRef-File-usr-lib64-pkcs11-p11-kit-trust.so-c21a87826612dd6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__future__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6---future--.py-879e861f647b32f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__phello__.foo.py +SPDXID: SPDXRef-File-usr-lib64-python3.6---phello--.foo.py-be5c01ddec805889 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_bootlocale.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--bootlocale.py-35239f9e9460a643 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_compat_pickle.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--compat-pickle.py-db189bca068d2635 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_compression.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--compression.py-ff2ddbaa150c9505 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_dummy_thread.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--dummy-thread.py-fdf5ef797dbcd00e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_markupbase.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--markupbase.py-61902fe48286c220 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_osx_support.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--osx-support.py-6236080f51102596 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_pydecimal.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--pydecimal.py-c1fdc1c439c6c222 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_pyio.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--pyio.py-054b9a7ba5c711c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_sitebuiltins.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--sitebuiltins.py-427dda9cb5cc42dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_strptime.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--strptime.py-d6e287aab24fd302 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_weakrefset.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--weakrefset.py-be96b4615ca6fb06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/abc.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-abc.py-fa8b00f29a41f0f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/aifc.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-aifc.py-97e6c2ba605d3c4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/antigravity.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-antigravity.py-ad05c2801549cb49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/argparse.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-argparse.py-e001122abd387d34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ast.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ast.py-4bf5c962573be648 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asynchat.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asynchat.py-ab5ae4878f342cd3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/compat.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-compat.py-e6b59d95f2ceebe6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/events.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-events.py-1d8699c2bf3d29fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/futures.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-futures.py-32d3a8c3dc845e1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/locks.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-locks.py-fec66c6d67fe9bac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/log.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-log.py-26876d0d21485603 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/queues.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-queues.py-139ad237ab09001d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/streams.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-streams.py-534f5fd7a6852def +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/tasks.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-tasks.py-fbbc5e4ecedaea51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncore.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncore.py-9ce7cf13b7919b45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/base64.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-base64.py-8f8f935f1629c374 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/bdb.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-bdb.py-5500cf5165444015 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/binhex.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-binhex.py-069c936486418cb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/bisect.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-bisect.py-2ed2fa67151f07b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/bz2.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-bz2.py-c77bc96861678ff1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/cProfile.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-cProfile.py-540b17d1a43e5e4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/calendar.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-calendar.py-552cf4908e399e1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/cgi.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-cgi.py-1e763187ed9a854b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/cgitb.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-cgitb.py-bc94a0c6a6ef855a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/chunk.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-chunk.py-dbee829555253f80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/cmd.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-cmd.py-32096e08e2233cac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/code.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-code.py-62c8047b75881cec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/codecs.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-codecs.py-ab7b0ee1892183c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/codeop.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-codeop.py-64078ab4e8821d5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/abc.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-collections-abc.py-734d8f6b52b5383e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/colorsys.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-colorsys.py-74601a6b4140701f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/compileall.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-compileall.py-3cb2cb9ae67b5bd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/configparser.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-configparser.py-d8718a58bacb5733 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/contextlib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-contextlib.py-44532df0a4ef9845 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/copy.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-copy.py-4c2743bb78d1d034 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/copyreg.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-copyreg.py-4f139750e80215be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/crypt.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-crypt.py-efbb5c3c6380fc78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/csv.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-csv.py-6a3a318d41f92fb3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ctypes---init--.py-4aa08ba1d6f60374 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/_endian.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ctypes--endian.py-688c3d8e5b73a2d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/util.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ctypes-util.py-e4ebdf3391db06aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/wintypes.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ctypes-wintypes.py-6078998f6c5559fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-curses---init--.py-732bde4ab613221a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/ascii.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-curses-ascii.py-3f9b378806ca425d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/has_key.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-curses-has-key.py-b6a98a91f6215ce7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/panel.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-curses-panel.py-59d9b5c6e90153a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/textpad.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-curses-textpad.py-a0a3fe6f2a22af09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/datetime.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-datetime.py-f75ce6b655f1499e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-dbm---init--.py-ab5e1259201b8c9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/dumb.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-dbm-dumb.py-5af0e66af85035ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/gnu.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-dbm-gnu.py-0d1532324ae2fb79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/ndbm.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-dbm-ndbm.py-f5ab756d60283e64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/decimal.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-decimal.py-3e5ba83dd51af313 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/difflib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-difflib.py-c1f665277991ccc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dis.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-dis.py-79cc4184a1550e5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/README +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-README-4067d5cb80c8e0d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/cmd.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-cmd.py-f48bb4b80c0fc914 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/core.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-core.py-0ccbf8f33a907de0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/debug.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-debug.py-4ed346a854cb5176 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/dist.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-dist.py-b1c4879dad7c9b1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/log.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-log.py-71f6fc187d47ca74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/spawn.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-spawn.py-2b4d404e8a991e0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/util.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-util.py-970d3fe1072507c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/doctest.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-doctest.py-08a9528d8632e6aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dummy_threading.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-dummy-threading.py-e24fce9704f531f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email---init--.py-718e91499485f0bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/charset.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-charset.py-d7e36ea904f49459 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/encoders.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-encoders.py-798b189ab8ae7ff1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/errors.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-errors.py-1891a00a72874302 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/generator.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-generator.py-70eb949beb52f03c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/header.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-header.py-bb2e337fc7bc25d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/iterators.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-iterators.py-2f2af03930dc63b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/message.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-message.py-87f8692c7c859f74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/base.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-mime-base.py-05caae5634d8c3df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/text.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-mime-text.py-871616b476c35750 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/parser.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-parser.py-27f591562b6f184e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/policy.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-policy.py-61ff80d847994f1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/utils.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-utils.py-411636a2d3611bdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/ascii.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-ascii.py-4a115e72a894aa49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/big5.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-big5.py-cf7d8448d7e7c293 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp037.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp037.py-47a820d875ad566f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp273.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp273.py-ee725f6bc618a16a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp424.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp424.py-bc9906886de49c71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp437.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp437.py-ed012004b534ab4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp500.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp500.py-06d4de53df74ddc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp720.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp720.py-67e85f731f09ac9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp737.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp737.py-9c40b6c416355d37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp775.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp775.py-de06a79609ecc24b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp850.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp850.py-8fac0fa310bcf7d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp852.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp852.py-b40d6a19dc47fd5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp855.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp855.py-e08f5d669acbf408 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp856.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp856.py-71a606aeeff86d6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp857.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp857.py-a9f000fcfb657377 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp858.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp858.py-e2823fec5a0651ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp860.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp860.py-0917b0d945e44de3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp861.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp861.py-4f55761c09cfee69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp862.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp862.py-f8f6628c3b78806f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp863.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp863.py-33a362932c24ad43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp864.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp864.py-18def1083aa057b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp865.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp865.py-b9f1a37deb39a672 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp866.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp866.py-13780e94901cd261 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp869.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp869.py-8a96706c678d447e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp874.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp874.py-9351c7a4c77c670e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp875.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp875.py-62c4422acea4809f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp932.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp932.py-da122815fbcef99c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp949.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp949.py-2e4d5ed275283cea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp950.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp950.py-e5d90f665090dbc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/gbk.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-gbk.py-657ff27fc1f9c295 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/hz.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-hz.py-e5d1f6d81990d41e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/idna.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-idna.py-43b0b18bb64c0467 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/johab.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-johab.py-4c6adf346fc72e33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mbcs.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-mbcs.py-0fe511cb3ae06b44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/oem.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-oem.py-7a77b5772c975089 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_7.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-utf-7.py-7fcf8cf9d42dd357 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_8.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-utf-8.py-a7dde49b6c41e684 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/enum.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-enum.py-23c6065ffe6f1ddf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/filecmp.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-filecmp.py-4d80643532839b07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/fileinput.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-fileinput.py-6a2f01fe7b7adbbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/fnmatch.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-fnmatch.py-b5926719a37394d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/formatter.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-formatter.py-ec284befe416d6f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/fractions.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-fractions.py-6b68fa744f027b8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ftplib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ftplib.py-31a82430a2ee3e49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/functools.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-functools.py-851d9125a873134e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/genericpath.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-genericpath.py-2187635b43eb6864 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/getopt.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-getopt.py-82ee261275faf8a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/getpass.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-getpass.py-21529cfd13defe47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/gettext.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-gettext.py-6992bbd4fb6da725 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/glob.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-glob.py-d603b5874ea7cc3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/gzip.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-gzip.py-1e801a412a675d41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/hashlib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-hashlib.py-06e2ab1d9a5b1d85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/heapq.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-heapq.py-e95612c0d54c2b17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/hmac.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-hmac.py-d5f1f8d83f205ecb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-html---init--.py-27a803ec6e32df63 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/entities.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-html-entities.py-516f1d3eef04a8b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/parser.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-html-parser.py-57c2f55f5e6d8215 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-http---init--.py-fdd2b2106b93a9af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/client.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-http-client.py-b1960373aefd7f61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/cookiejar.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-http-cookiejar.py-cf6e80d544210195 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/cookies.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-http-cookies.py-370e4c3bbad410fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/server.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-http-server.py-941de174aff4a3b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/imaplib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-imaplib.py-936e69ccbceab213 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/imghdr.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-imghdr.py-2579789324ac7520 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/imp.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-imp.py-8e67b1c991fa1447 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/abc.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-importlib-abc.py-d20ed7b1ed709533 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/util.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-importlib-util.py-e2037a49509f59b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/inspect.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-inspect.py-b2c91e796aa5ee77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/io.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-io.py-0c9d9239a8cfdd33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ipaddress.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ipaddress.py-0a9612c585191df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-json---init--.py-7f43fe086974199b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/decoder.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-json-decoder.py-02163774d9b1c6db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/encoder.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-json-encoder.py-49895eb15aa6e135 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/scanner.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-json-scanner.py-825eac73410c41da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/tool.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-json-tool.py-fa3c4855ab032823 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/keyword.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-keyword.py-cf84656467927494 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/main.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-lib2to3-main.py-36e99774f5ff51d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/patcomp.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-lib2to3-patcomp.py-ee829611eb3c184c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pygram.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-lib2to3-pygram.py-7d5094e345a4215a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pytree.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-lib2to3-pytree.py-1096aa56b26b9608 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/linecache.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-linecache.py-f6739fb7e6fbc714 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/locale.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-locale.py-2c02490578c2660f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/config.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-logging-config.py-c13cb7a36918c56a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lzma.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-lzma.py-c83f4fe641177aba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/macpath.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-macpath.py-0fd44fc0d4d6d390 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/macurl2path.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-macurl2path.py-65eff5ea054b5368 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/mailbox.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-mailbox.py-e09fd04bfc2dc1ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/mailcap.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-mailcap.py-9caa52ee4a91d3be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/mimetypes.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-mimetypes.py-610a7b38c7a93421 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/modulefinder.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-modulefinder.py-4ae899c7412672b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/netrc.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-netrc.py-bf40314d7d89feca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/nntplib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-nntplib.py-70fe835bedcdc15e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ntpath.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ntpath.py-617a09ddd70bc2b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/nturl2path.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-nturl2path.py-a27fc4173b818da1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/numbers.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-numbers.py-9df233d8a5a44e0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/opcode.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-opcode.py-f0f954dbb2833801 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/operator.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-operator.py-aa01c4acab93367c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/optparse.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-optparse.py-1c76ad647e6c87f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/os.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-os.py-cefd00f42764160a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pathlib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pathlib.py-5a4b1e0a332dfa13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pdb.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pdb.py-55761d069cd97f29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pickle.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pickle.py-11748e5644dc6475 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pickletools.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pickletools.py-f1e5b5edcb6b0a13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pipes.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pipes.py-da5cdbfe5f8bb0e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pkgutil.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pkgutil.py-89bf9f8b88c574ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/platform.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-platform.py-57a25d1dce76446c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/plistlib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-plistlib.py-92cf809cf7dbf858 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/poplib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-poplib.py-0622b94a5fd4d8f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/posixpath.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-posixpath.py-3c32119e9243b6c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pprint.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pprint.py-3d30c73246052e8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/profile.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-profile.py-552c3fc70d804b5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pstats.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pstats.py-c0a6c16d8afc10d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pty.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pty.py-f69611f56baba1ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/py_compile.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-py-compile.py-bd99ebc18fe1e1fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pyclbr.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pyclbr.py-f3dad685c9147987 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pydoc.py-5a09657abfa45c53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/queue.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-queue.py-044e307e912a3a48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/quopri.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-quopri.py-4e6ba7df977f1505 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/random.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-random.py-f3fc631ef8241c18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/re.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-re.py-12710e79b8e766fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/reprlib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-reprlib.py-b6e0eec06143f4a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/rlcompleter.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-rlcompleter.py-f6b9181db5b08ca5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/runpy.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-runpy.py-260a9ccdb31657a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sched.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sched.py-5daed23910f888e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/secrets.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-secrets.py-a3cde4aaa8d87cf8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/selectors.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-selectors.py-09c539644f97d9cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/shelve.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-shelve.py-0c6695e786e8d1bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/shlex.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-shlex.py-f8950486a423cb6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/shutil.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-shutil.py-b4baf93cb37e4be5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/signal.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-signal.py-2aa4c12a76cf2e3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-site.py-bfc47ea4416c5f3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/smtpd.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-smtpd.py-c755b1de1c727ca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/smtplib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-smtplib.py-ddf85bfd81411449 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sndhdr.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sndhdr.py-28f417a9b0a98b1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/socket.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-socket.py-0ff8cce2b3d13913 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/socketserver.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-socketserver.py-ab99febe5f06b9ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/dbapi2.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sqlite3-dbapi2.py-334cbc47c6fb3d08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/dump.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sqlite3-dump.py-c210627074393021 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sre_compile.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sre-compile.py-74c2b1c54ed2ebc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sre_constants.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sre-constants.py-e1447512bb65e032 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sre_parse.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sre-parse.py-a3b224d784ef0f7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ssl.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ssl.py-56fd1a43cd8dba11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/stat.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-stat.py-79a0ce7cb16b589b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/statistics.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-statistics.py-cbef0356c6384f0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/string.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-string.py-cd4ba999747aab1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/stringprep.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-stringprep.py-5f67ec6b05806eb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/struct.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-struct.py-9558fc919a7ab54f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/subprocess.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-subprocess.py-8f26e35c4a9ae2e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sunau.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sunau.py-f75f3879c69aa675 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/symbol.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-symbol.py-4f269c9a458308e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/symtable.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-symtable.py-86a1fb71442a4a2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sysconfig.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sysconfig.py-0a9171b9b3e0ff1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/tabnanny.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-tabnanny.py-515bb779113c2033 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/tarfile.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-tarfile.py-0bdfacff06d7c160 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/telnetlib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-telnetlib.py-26fb4824366dd59f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/tempfile.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-tempfile.py-e36c1317dba5574e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-test---init--.py-e9b535545651bffc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/textwrap.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-textwrap.py-25a97194295334a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/this.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-this.py-bdfc5fbf773523a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/threading.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-threading.py-93db38c2556ead09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/timeit.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-timeit.py-10fbdbe9d74b6d57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/token.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-token.py-baa8310d71e39288 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/tokenize.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-tokenize.py-1c02e61ea043314e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/trace.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-trace.py-d8caaad719ba9664 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/traceback.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-traceback.py-d388c14d403c7e5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/tracemalloc.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-tracemalloc.py-48800194b3482e1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/tty.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-tty.py-d85c295cfc1338dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/types.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-types.py-4c282b8aaf207ee8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/typing.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-typing.py-bfee7c1206a991cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/case.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-case.py-f1b9f55a23af9ac2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/loader.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-loader.py-6a061981abe4bac0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/main.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-main.py-af788d0e67700fdc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/mock.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-mock.py-2c82be888ec6e0c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/result.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-result.py-c9152b00a3454b83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/runner.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-runner.py-32b2677948a5f488 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/suite.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-suite.py-78d919b5103b2d08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/util.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-util.py-4094885fd243cebc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-urllib---init--.py-044c715ab330502e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/error.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-urllib-error.py-4b60a25b2fa27a43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/parse.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-urllib-parse.py-277d17ca3e359bd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/request.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-urllib-request.py-af43c3af2e9d7f69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/response.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-urllib-response.py-170182a58d9eceac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/uu.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-uu.py-ef369ac33d126ab4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/uuid.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-uuid.py-6f42e49919bef2fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-venv---init--.py-8000c93773906909 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__main__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-venv---main--.py-d251d8d2b8e9b735 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/warnings.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-warnings.py-d40bb397f07e6d37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wave.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-wave.py-f7fbca4fa03e5c75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/weakref.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-weakref.py-ac505d18c3fced6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/webbrowser.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-webbrowser.py-ef64e4a74481a03c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/headers.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-wsgiref-headers.py-47e68f7c6ae95155 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/util.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-wsgiref-util.py-9dc8046edb72598a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xdrlib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xdrlib.py-b4d9c07b41ba6f7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xml---init--.py-8a30aec408d41672 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/domreg.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xml-dom-domreg.py-363b33f2a7ce5381 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/minidom.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xml-dom-minidom.py-808ba63ac0a956a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/pulldom.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xml-dom-pulldom.py-3d67c18377455043 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/handler.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xml-sax-handler.py-9de38776c3d5a460 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xmlrpc---init--.py-c9a92994b229b992 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/client.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xmlrpc-client.py-db762ea816e6ce67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/server.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xmlrpc-server.py-0ef533fe6c831d62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/zipapp.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-zipapp.py-5d78c46fc96adbc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/zipfile.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-zipfile.py-4c08e738bbfbf6d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/sasl2/libanonymous.so.3.0.0 +SPDXID: SPDXRef-File-usr-lib64-sasl2-libanonymous.so.3.0.0-5eea771844241fb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/sasl2/libsasldb.so.3.0.0 +SPDXID: SPDXRef-File-usr-lib64-sasl2-libsasldb.so.3.0.0-4bf81599d5ea07f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_access.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-access.so-87823db11acd6602 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_cap.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-cap.so-aa9f3a65b0d59615 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_chroot.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-chroot.so-c71e371b3ee1940c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_console.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-console.so-cd85ddf22c9349c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_cracklib.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-cracklib.so-64005b7deee04f19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_debug.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-debug.so-70d203bf1aeb8d3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_deny.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-deny.so-00e5913a07655ba7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_echo.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-echo.so-90645347a2fa1074 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_env.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-env.so-73d395c297e22df7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_exec.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-exec.so-adcbda368a953d35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_faildelay.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-faildelay.so-dc4aadd1706c255b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_faillock.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-faillock.so-f4b6fa503861cd0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_filter.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-filter.so-5bddb4a93a1a2ffb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_ftp.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-ftp.so-53580c4c4f7aba80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_group.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-group.so-f7a6d9d9f46b3704 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_issue.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-issue.so-f5c5ec502ac86160 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_keyinit.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-keyinit.so-32f8a7096c7faaa7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_lastlog.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-lastlog.so-90095ff7cc7b3232 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_limits.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-limits.so-6df41fd69b0ef4d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_listfile.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-listfile.so-3628bdf0a29a6653 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_localuser.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-localuser.so-8be941c227ec764a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_loginuid.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-loginuid.so-ace18675f7488ca2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_mail.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-mail.so-f7858403c0d56667 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_mkhomedir.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-mkhomedir.so-6527bf955d2e1ecd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_motd.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-motd.so-5ac09dc80b53be2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_namespace.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-namespace.so-f4a0d51dcbeefb13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_nologin.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-nologin.so-968e8e0f92136fb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_permit.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-permit.so-2a9680a57044a433 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_postgresok.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-postgresok.so-cf2304a2eb474695 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_pwhistory.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-pwhistory.so-bd22fc79d6f23314 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_pwquality.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-pwquality.so-ddc31ff8d1f5f1e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_rhosts.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-rhosts.so-839c4ed204d9c47b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_rootok.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-rootok.so-a6187098c7283231 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_securetty.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-securetty.so-90e76874e098b219 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_selinux.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-selinux.so-ebe9e36c22a0438f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_sepermit.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-sepermit.so-c019470aeed8f918 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_shells.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-shells.so-5bc7ea2d216e4cdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_stress.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-stress.so-8984a8f34c1a6e5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_succeed_if.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-succeed-if.so-c806778baa7a5951 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_systemd.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-systemd.so-fb867478ee7279dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_time.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-time.so-d8dc945ff6e14c16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_timestamp.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-timestamp.so-59bb3f54e43771f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_tty_audit.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-tty-audit.so-5f9917408b8c3fb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_umask.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-umask.so-c1c790756ac251a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_unix.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-unix.so-f24672afcd9ce839 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_userdb.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-userdb.so-68e2b6b0aab4291e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_usertype.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-usertype.so-965cc6407a44d0ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_warn.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-warn.so-82e42e4d3d21523b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_wheel.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-wheel.so-74044d0fe410f3d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_xauth.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-xauth.so-7d8676abf64f8298 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/xtables/libarpt_mangle.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libarpt-mangle.so-0a8989aebe15b04a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_802_3.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-802-3.so-2bf0c88f4ee41ab6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_among.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-among.so-6fcf8bdd08ad879e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_arp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-arp.so-a8c2ed928f0e064e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_arpreply.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-arpreply.so-dc38354148e873f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_dnat.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-dnat.so-4f819261fe50da09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_ip.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-ip.so-0b70d68ae29ac990 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_ip6.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-ip6.so-a3b64975261d949a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_log.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-log.so-66be005f517802c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_mark_m.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-mark-m.so-aa56a47e66797194 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_mark.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-mark.so-8dc0419f37f5a341 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_nflog.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-nflog.so-3d19885b5a79b64f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_pkttype.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-pkttype.so-ce53e362a2da11ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_redirect.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-redirect.so-6c239620beca3472 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_snat.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-snat.so-1450f2bacd3cc1ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_stp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-stp.so-2e1b4fcf1feea383 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_vlan.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-vlan.so-71452a7158acb0a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_DNAT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-DNAT.so-5b1db53fe63f5a67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_DNPT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-DNPT.so-499789cda4db14b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_HL.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-HL.so-322b603a32e1cdc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_LOG.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-LOG.so-257d97acd7a47902 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_NETMAP.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-NETMAP.so-23e15242e2ffdaec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_REDIRECT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-REDIRECT.so-bc95f60ff4577312 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_REJECT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-REJECT.so-d1cde2bfc13478b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_SNAT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-SNAT.so-973d5fefbb2126e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_SNPT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-SNPT.so-8fd1ec94183473c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_ah.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-ah.so-7edeb75b70485888 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_dst.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-dst.so-e976e35a12d919df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_eui64.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-eui64.so-8d277d77046d755e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_frag.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-frag.so-522ab760cf9e1023 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_hbh.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-hbh.so-3432aeb718ccd262 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_hl.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-hl.so-54ef27b59a338e36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_icmp6.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-icmp6.so-26be7c5cc18ff324 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_mh.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-mh.so-ffbc06d58d9eb899 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_rt.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-rt.so-28e2fff509f904c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_srh.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-srh.so-cc123181e9bac9ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_CLUSTERIP.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-CLUSTERIP.so-93c5c8783030c32d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_DNAT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-DNAT.so-94bfb7091c286773 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_ECN.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-ECN.so-5c534e4a0e5f2259 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_LOG.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-LOG.so-64bbe0a075c82fb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_MASQUERADE.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-MASQUERADE.so-629963d3272c111a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_NETMAP.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-NETMAP.so-9f72b2afb20b9f7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_REDIRECT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-REDIRECT.so-ffdbcbb2c369e85a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_REJECT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-REJECT.so-b7c2f4e6d2514e48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_SNAT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-SNAT.so-f901e3ad51b18b2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_TTL.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-TTL.so-169929e53ecd3e99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_ULOG.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-ULOG.so-eafb8c858bb469c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_ah.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-ah.so-9c47300989f10cbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_icmp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-icmp.so-fca94ed86b96b7c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_realm.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-realm.so-4f010fe4f183b60c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_ttl.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-ttl.so-298fd1f9dc3ca481 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_AUDIT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-AUDIT.so-e3527fb795c5e22f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_CHECKSUM.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-CHECKSUM.so-d6ca3894ac858dd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_CLASSIFY.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-CLASSIFY.so-df98792a174f5280 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_CONNMARK.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-CONNMARK.so-ef586e360b5c4cfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_CONNSECMARK.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-CONNSECMARK.so-1a62b6fac74ab2ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_CT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-CT.so-d2bc299ec48387bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_DSCP.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-DSCP.so-2143b6d37bb1331a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_HMARK.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-HMARK.so-db4ef7b178b1821b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_IDLETIMER.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-IDLETIMER.so-2ad9c43e2173da00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_LED.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-LED.so-2723b40a6d864e81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_MARK.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-MARK.so-ececa36c3e7cbc0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_NFLOG.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-NFLOG.so-aeefbd299efc91bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_NFQUEUE.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-NFQUEUE.so-b802b01e1297e628 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_RATEEST.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-RATEEST.so-654be8c0e858c7b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_SECMARK.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-SECMARK.so-4f03efdb9035d5e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_SET.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-SET.so-0e1850b770228a49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_SYNPROXY.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-SYNPROXY.so-62ea1162397dc409 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_TCPMSS.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-TCPMSS.so-8c4c798d036dacf0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_TCPOPTSTRIP.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-TCPOPTSTRIP.so-a5477362a06c343e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_TEE.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-TEE.so-b1f6d6ed4de93d3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_TOS.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-TOS.so-e49d1822ab908333 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_TPROXY.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-TPROXY.so-d7ea2b70bc107a2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_TRACE.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-TRACE.so-313c839fa367c688 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_addrtype.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-addrtype.so-93f53d05b301b3bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_bpf.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-bpf.so-d19a5b228d2d996d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_cgroup.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-cgroup.so-7f442ce604dbd4bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_cluster.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-cluster.so-ab0b3c98f1abfc24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_comment.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-comment.so-a68574d7c43140a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_connbytes.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-connbytes.so-480199ed4d48d1eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_connlabel.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-connlabel.so-9d8ef1974f0d1b6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_connlimit.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-connlimit.so-b0b90b5cd7413d75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_connmark.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-connmark.so-a44fda4cfcd906b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_conntrack.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-conntrack.so-4435c2520fd42d4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_cpu.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-cpu.so-cf728d398f60cc0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_dccp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-dccp.so-c63d744544ba2ec4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_devgroup.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-devgroup.so-1f4cd59acd0f7f9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_dscp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-dscp.so-888a840c06a3a57b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_ecn.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-ecn.so-c02189c5ad7ae7c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_esp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-esp.so-8d2197fc9080c165 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_hashlimit.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-hashlimit.so-d89a5fcc6d0d0a18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_helper.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-helper.so-c93b15d9c91928b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_ipcomp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-ipcomp.so-b4ec4233b95a7cf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_iprange.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-iprange.so-5c255766e50b13dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_ipvs.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-ipvs.so-920a47022e3ecdf0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_length.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-length.so-fb98ff4038d0ddcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_limit.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-limit.so-41fb99b093645c2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_mac.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-mac.so-b22828d2efd7ee4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_mark.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-mark.so-d4dd3e664600733e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_multiport.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-multiport.so-ef757d9b66df9291 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_nfacct.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-nfacct.so-d58f9dd89c0277eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_osf.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-osf.so-7f92015105c1057d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_owner.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-owner.so-97d2041ee7eb9412 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_physdev.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-physdev.so-3d57f1df03239025 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_pkttype.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-pkttype.so-22db963a40dbcea3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_policy.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-policy.so-bc91fa3c5d868f2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_quota.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-quota.so-ae6e22b2fe9daffe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_rateest.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-rateest.so-cb8da67b71705cec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_recent.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-recent.so-27882b2b4c2c550f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_rpfilter.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-rpfilter.so-a408d25cfb0952c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_sctp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-sctp.so-1a45ca421cc01c9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_set.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-set.so-1eadf6c55d37ed15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_socket.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-socket.so-8d5f275ff4222448 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_standard.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-standard.so-acf01d9eb409539a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_statistic.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-statistic.so-6559f23febcbeb58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_string.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-string.so-dc1658892f39d831 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_tcp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-tcp.so-a0ee4a1232b1502b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_tcpmss.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-tcpmss.so-639d66770ad6e012 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_time.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-time.so-8eff4cb494c2ca3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_tos.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-tos.so-573cce1653aca3eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_u32.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-u32.so-8200e706124b85eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_udp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-udp.so-debe34d906d0694f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/libexec/awk/grcat +SPDXID: SPDXRef-File-usr-libexec-awk-grcat-df55418deebcbbbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/awk/pwcat +SPDXID: SPDXRef-File-usr-libexec-awk-pwcat-4347f7e43eaa69a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/coreutils/libstdbuf.so +SPDXID: SPDXRef-File-usr-libexec-coreutils-libstdbuf.so-d9115f3032342a46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/dirmngr_ldap +SPDXID: SPDXRef-File-usr-libexec-dirmngr-ldap-14a0a3f9fcdb8f73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/getconf/XBS5_LP64_OFF64 +SPDXID: SPDXRef-File-usr-libexec-getconf-XBS5-LP64-OFF64-d20abff376e0f337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/gpg-check-pattern +SPDXID: SPDXRef-File-usr-libexec-gpg-check-pattern-6a8855dbb1c51ef3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/gpg-preset-passphrase +SPDXID: SPDXRef-File-usr-libexec-gpg-preset-passphrase-15b764792cb9d0a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/gpg-protect-tool +SPDXID: SPDXRef-File-usr-libexec-gpg-protect-tool-1a358d25ad4f1328 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/gpg-wks-client +SPDXID: SPDXRef-File-usr-libexec-gpg-wks-client-aa56150aaa78286d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/grepconf.sh +SPDXID: SPDXRef-File-usr-libexec-grepconf.sh-39ecc07b25165ca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/no-python +SPDXID: SPDXRef-File-usr-libexec-no-python-e34fc456a28a2b81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/p11-kit/p11-kit-remote +SPDXID: SPDXRef-File-usr-libexec-p11-kit-p11-kit-remote-bacfcdb6a40947d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/platform-python3.6 +SPDXID: SPDXRef-File-usr-libexec-platform-python3.6-1f9aa3174ddc7a7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/platform-python3.6m +SPDXID: SPDXRef-File-usr-libexec-platform-python3.6m-b0dda77b764f2159 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/rhsm-facts-service +SPDXID: SPDXRef-File-usr-libexec-rhsm-facts-service-f85ae7c2a0b61a7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/rhsm-service +SPDXID: SPDXRef-File-usr-libexec-rhsm-service-12b73d530c000089 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/rhsmcertd-worker +SPDXID: SPDXRef-File-usr-libexec-rhsmcertd-worker-a25534fa34908b06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/scdaemon +SPDXID: SPDXRef-File-usr-libexec-scdaemon-46695b70b6cf7ccf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/utempter/utempter +SPDXID: SPDXRef-File-usr-libexec-utempter-utempter-ddb7833ec5aed11f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/virt-what-cpuid-helper +SPDXID: SPDXRef-File-usr-libexec-virt-what-cpuid-helper-52c610d2ce7df1a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/addgnupghome +SPDXID: SPDXRef-File-usr-sbin-addgnupghome-95d62c800eca5c03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/addpart +SPDXID: SPDXRef-File-usr-sbin-addpart-6f6555e8dfd27c6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/agetty +SPDXID: SPDXRef-File-usr-sbin-agetty-112cebe4e1dc89e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/alternatives +SPDXID: SPDXRef-File-usr-sbin-alternatives-6d125db4bb60a9dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/applygnupgdefaults +SPDXID: SPDXRef-File-usr-sbin-applygnupgdefaults-d305fe8d07d0f600 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/biosdecode +SPDXID: SPDXRef-File-usr-sbin-biosdecode-a5c23a6ff80c8f15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/blkdeactivate +SPDXID: SPDXRef-File-usr-sbin-blkdeactivate-aa86b3251a52a033 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/blkdiscard +SPDXID: SPDXRef-File-usr-sbin-blkdiscard-d4b91db236adf9ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/blkid +SPDXID: SPDXRef-File-usr-sbin-blkid-6487755e02cf2a6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/blkzone +SPDXID: SPDXRef-File-usr-sbin-blkzone-259b604f5327a25b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/blockdev +SPDXID: SPDXRef-File-usr-sbin-blockdev-d24e432f3d090856 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/capsh +SPDXID: SPDXRef-File-usr-sbin-capsh-a685d3cb1164f864 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/cfdisk +SPDXID: SPDXRef-File-usr-sbin-cfdisk-c65d3eeb78b83463 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/chcpu +SPDXID: SPDXRef-File-usr-sbin-chcpu-fd423957f82b59f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/chgpasswd +SPDXID: SPDXRef-File-usr-sbin-chgpasswd-b27ca77cb4e04682 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/chkconfig +SPDXID: SPDXRef-File-usr-sbin-chkconfig-09c7a81dac1cff44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/chpasswd +SPDXID: SPDXRef-File-usr-sbin-chpasswd-e21ffa82d3f56fc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/chroot +SPDXID: SPDXRef-File-usr-sbin-chroot-49ccacce511dbb56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/cracklib-check +SPDXID: SPDXRef-File-usr-sbin-cracklib-check-44fb50efdc6e3f98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/cracklib-format +SPDXID: SPDXRef-File-usr-sbin-cracklib-format-5c9ba3451440e818 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/cracklib-packer +SPDXID: SPDXRef-File-usr-sbin-cracklib-packer-30a254ccb5506d00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/cracklib-unpacker +SPDXID: SPDXRef-File-usr-sbin-cracklib-unpacker-af6a1a3ebb75f441 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/create-cracklib-dict +SPDXID: SPDXRef-File-usr-sbin-create-cracklib-dict-a3d3c852c66c8daa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/ctrlaltdel +SPDXID: SPDXRef-File-usr-sbin-ctrlaltdel-c749c3e507136791 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/delpart +SPDXID: SPDXRef-File-usr-sbin-delpart-af8f75195c9a0fb3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/dmfilemapd +SPDXID: SPDXRef-File-usr-sbin-dmfilemapd-9aa799f0659cde86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/dmidecode +SPDXID: SPDXRef-File-usr-sbin-dmidecode-c9214f440da5bc4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/dmsetup +SPDXID: SPDXRef-File-usr-sbin-dmsetup-9bf778f24c5ba40e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/faillock +SPDXID: SPDXRef-File-usr-sbin-faillock-e11d94a700e3be29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fdformat +SPDXID: SPDXRef-File-usr-sbin-fdformat-c9e5aca7ff3c7924 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fdisk +SPDXID: SPDXRef-File-usr-sbin-fdisk-6b2b3ff70df7fcbc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/findfs +SPDXID: SPDXRef-File-usr-sbin-findfs-4b2624fafeccacd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fix-info-dir +SPDXID: SPDXRef-File-usr-sbin-fix-info-dir-f76397cfe121f349 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fsck +SPDXID: SPDXRef-File-usr-sbin-fsck-40c85f07e8bfae86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fsck.cramfs +SPDXID: SPDXRef-File-usr-sbin-fsck.cramfs-6735ebd2d754f820 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fsck.minix +SPDXID: SPDXRef-File-usr-sbin-fsck.minix-3a841f1e7aa1bdc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fsfreeze +SPDXID: SPDXRef-File-usr-sbin-fsfreeze-0f58d1dfdfbeb412 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fstrim +SPDXID: SPDXRef-File-usr-sbin-fstrim-a5cb1dd627e53633 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/g13-syshelp +SPDXID: SPDXRef-File-usr-sbin-g13-syshelp-63bca89e606f2ef1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/getcap +SPDXID: SPDXRef-File-usr-sbin-getcap-02c9adff932e7ba7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/getpcaps +SPDXID: SPDXRef-File-usr-sbin-getpcaps-4058609c2022fae5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/groupadd +SPDXID: SPDXRef-File-usr-sbin-groupadd-2dbf845c572259d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/groupdel +SPDXID: SPDXRef-File-usr-sbin-groupdel-944deb58373f0bcd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/groupmems +SPDXID: SPDXRef-File-usr-sbin-groupmems-aa5c7fbf92d2015c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/groupmod +SPDXID: SPDXRef-File-usr-sbin-groupmod-a86e343ed25abfa9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/grpck +SPDXID: SPDXRef-File-usr-sbin-grpck-c0a2a782bc0aed75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/grpconv +SPDXID: SPDXRef-File-usr-sbin-grpconv-a44a2ef8547b1597 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/grpunconv +SPDXID: SPDXRef-File-usr-sbin-grpunconv-43e3afd5c68951c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/hwclock +SPDXID: SPDXRef-File-usr-sbin-hwclock-aa928fed8ce1861e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/iconvconfig +SPDXID: SPDXRef-File-usr-sbin-iconvconfig-a1f3cfb0bf0faa13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/install-info +SPDXID: SPDXRef-File-usr-sbin-install-info-7021998d7eaddeb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/iptables-apply +SPDXID: SPDXRef-File-usr-sbin-iptables-apply-a935472c79b22928 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/sbin/lchage +SPDXID: SPDXRef-File-usr-sbin-lchage-2162f4d2e57b0ab7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/ldattach +SPDXID: SPDXRef-File-usr-sbin-ldattach-107697624a4be73c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/ldconfig +SPDXID: SPDXRef-File-usr-sbin-ldconfig-e01d507d6a915ec9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/lgroupadd +SPDXID: SPDXRef-File-usr-sbin-lgroupadd-d3a353481522a4b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/lgroupdel +SPDXID: SPDXRef-File-usr-sbin-lgroupdel-ecf2d4b8f6b0dab4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/lgroupmod +SPDXID: SPDXRef-File-usr-sbin-lgroupmod-fb3f2d0f21612c17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/lid +SPDXID: SPDXRef-File-usr-sbin-lid-7cedb312f5bd0d01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/lnewusers +SPDXID: SPDXRef-File-usr-sbin-lnewusers-566050323d7c4642 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/losetup +SPDXID: SPDXRef-File-usr-sbin-losetup-49aac265a149e3ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/lpasswd +SPDXID: SPDXRef-File-usr-sbin-lpasswd-753a5cd30265bdb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/luseradd +SPDXID: SPDXRef-File-usr-sbin-luseradd-0ecaddc71a29b93c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/luserdel +SPDXID: SPDXRef-File-usr-sbin-luserdel-2c4e473485168570 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/lusermod +SPDXID: SPDXRef-File-usr-sbin-lusermod-d756e74179ada97e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/mkfs +SPDXID: SPDXRef-File-usr-sbin-mkfs-91722e570b578747 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/mkfs.cramfs +SPDXID: SPDXRef-File-usr-sbin-mkfs.cramfs-d1897f06e8b71dd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/mkfs.minix +SPDXID: SPDXRef-File-usr-sbin-mkfs.minix-56be8d5c05fe13bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/mkhomedir_helper +SPDXID: SPDXRef-File-usr-sbin-mkhomedir-helper-9c25bbf0eae65fc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/mkswap +SPDXID: SPDXRef-File-usr-sbin-mkswap-bfe51e7cf5130a72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/newusers +SPDXID: SPDXRef-File-usr-sbin-newusers-17a55fb0983aa27e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/nft +SPDXID: SPDXRef-File-usr-sbin-nft-bb6c1623b69e66b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/sbin/nologin +SPDXID: SPDXRef-File-usr-sbin-nologin-03ac757b944026bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/ownership +SPDXID: SPDXRef-File-usr-sbin-ownership-3d7f9425a773e02b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pam_console_apply +SPDXID: SPDXRef-File-usr-sbin-pam-console-apply-50421397d10ac33b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pam_timestamp_check +SPDXID: SPDXRef-File-usr-sbin-pam-timestamp-check-f3328110d5a8f2f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/partx +SPDXID: SPDXRef-File-usr-sbin-partx-78868d9be079f88e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pethtool +SPDXID: SPDXRef-File-usr-sbin-pethtool-855a4e8d0dc38ed6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pifconfig +SPDXID: SPDXRef-File-usr-sbin-pifconfig-d11a72bb2dc6e8a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pivot_root +SPDXID: SPDXRef-File-usr-sbin-pivot-root-0f7971a159b75136 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pwck +SPDXID: SPDXRef-File-usr-sbin-pwck-c1ca1fd8d7b3335f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pwconv +SPDXID: SPDXRef-File-usr-sbin-pwconv-a59004f305f8cc04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pwhistory_helper +SPDXID: SPDXRef-File-usr-sbin-pwhistory-helper-43fc92df59e31231 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pwunconv +SPDXID: SPDXRef-File-usr-sbin-pwunconv-996b4ddc0dff6b4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/readprofile +SPDXID: SPDXRef-File-usr-sbin-readprofile-e8693201d892cc2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/resizepart +SPDXID: SPDXRef-File-usr-sbin-resizepart-98bd78f17c3b198e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/rfkill +SPDXID: SPDXRef-File-usr-sbin-rfkill-effcc8364debbad7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/rtcwake +SPDXID: SPDXRef-File-usr-sbin-rtcwake-840b523e87c03fc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/runuser +SPDXID: SPDXRef-File-usr-sbin-runuser-c9650eaaf887fad3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/sasldblistusers2 +SPDXID: SPDXRef-File-usr-sbin-sasldblistusers2-6e9ddbc51d8ab773 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/saslpasswd2 +SPDXID: SPDXRef-File-usr-sbin-saslpasswd2-b88467bd5697f120 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/setcap +SPDXID: SPDXRef-File-usr-sbin-setcap-38a06c75fd582191 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/sfdisk +SPDXID: SPDXRef-File-usr-sbin-sfdisk-5e02da231537b556 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/subscription-manager +SPDXID: SPDXRef-File-usr-sbin-subscription-manager-413bef9dc01e328e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/sulogin +SPDXID: SPDXRef-File-usr-sbin-sulogin-6ee94c4694ebcb0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/swaplabel +SPDXID: SPDXRef-File-usr-sbin-swaplabel-5868135abd7ab36d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/swapoff +SPDXID: SPDXRef-File-usr-sbin-swapoff-4bf8755ffc071e6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/swapon +SPDXID: SPDXRef-File-usr-sbin-swapon-1ad224cfca362ab1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/switch_root +SPDXID: SPDXRef-File-usr-sbin-switch-root-ea31943e7e27398c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/syspurpose +SPDXID: SPDXRef-File-usr-sbin-syspurpose-b40cfa1da3b7ad47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/unix_chkpwd +SPDXID: SPDXRef-File-usr-sbin-unix-chkpwd-61f482f1e76008ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/unix_update +SPDXID: SPDXRef-File-usr-sbin-unix-update-5c61705ca8597ede +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/useradd +SPDXID: SPDXRef-File-usr-sbin-useradd-bdf0602370255068 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/userdel +SPDXID: SPDXRef-File-usr-sbin-userdel-a6d7d896270ba7fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/userhelper +SPDXID: SPDXRef-File-usr-sbin-userhelper-f22001a49ea90934 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/usermod +SPDXID: SPDXRef-File-usr-sbin-usermod-394cd426db35541f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/vipw +SPDXID: SPDXRef-File-usr-sbin-vipw-04c01be4c8ffa4c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/virt-what +SPDXID: SPDXRef-File-usr-sbin-virt-what-f384c47acbc017e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/vpddecode +SPDXID: SPDXRef-File-usr-sbin-vpddecode-2825a01200dd5222 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/wipefs +SPDXID: SPDXRef-File-usr-sbin-wipefs-197a4168542157a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/xtables-nft-multi +SPDXID: SPDXRef-File-usr-sbin-xtables-nft-multi-60c6987e55db8b5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/sbin/zdump +SPDXID: SPDXRef-File-usr-sbin-zdump-ba674b217a4fa67c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/zic +SPDXID: SPDXRef-File-usr-sbin-zic-6e44a79e99cd0e2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/zramctl +SPDXID: SPDXRef-File-usr-sbin-zramctl-8199e7439b4ac4d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/appdata/dejavu.metainfo.xml +SPDXID: SPDXRef-File-usr-share-appdata-dejavu.metainfo.xml-17e8279fea1d8d35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/awk/assert.awk +SPDXID: SPDXRef-File-usr-share-awk-assert.awk-f91c6ed6a45a0255 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/bits2str.awk +SPDXID: SPDXRef-File-usr-share-awk-bits2str.awk-d88ffa74f0eff1d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/cliff_rand.awk +SPDXID: SPDXRef-File-usr-share-awk-cliff-rand.awk-e22d35c56b593ef6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/ctime.awk +SPDXID: SPDXRef-File-usr-share-awk-ctime.awk-ab74e7127b4f63d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/ftrans.awk +SPDXID: SPDXRef-File-usr-share-awk-ftrans.awk-44114a83b5979810 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/getopt.awk +SPDXID: SPDXRef-File-usr-share-awk-getopt.awk-2b1fdc1077dcc342 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/gettime.awk +SPDXID: SPDXRef-File-usr-share-awk-gettime.awk-08a15cbc1bc2bf65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/group.awk +SPDXID: SPDXRef-File-usr-share-awk-group.awk-5771879b57c7ef44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/have_mpfr.awk +SPDXID: SPDXRef-File-usr-share-awk-have-mpfr.awk-10f61487aa4521a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/inplace.awk +SPDXID: SPDXRef-File-usr-share-awk-inplace.awk-741b54c4e3e69390 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/intdiv0.awk +SPDXID: SPDXRef-File-usr-share-awk-intdiv0.awk-8a9fbdd38aacd07f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/join.awk +SPDXID: SPDXRef-File-usr-share-awk-join.awk-c7dbc647a58dabc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/libintl.awk +SPDXID: SPDXRef-File-usr-share-awk-libintl.awk-b2db0632380ebe40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/noassign.awk +SPDXID: SPDXRef-File-usr-share-awk-noassign.awk-e0733a78555e7645 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/ord.awk +SPDXID: SPDXRef-File-usr-share-awk-ord.awk-1430150663429a70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/passwd.awk +SPDXID: SPDXRef-File-usr-share-awk-passwd.awk-9e3c177fad7092d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/processarray.awk +SPDXID: SPDXRef-File-usr-share-awk-processarray.awk-257444d49f5b5db1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/quicksort.awk +SPDXID: SPDXRef-File-usr-share-awk-quicksort.awk-21019387d1860cf6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/readable.awk +SPDXID: SPDXRef-File-usr-share-awk-readable.awk-b70069a3e665b138 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/readfile.awk +SPDXID: SPDXRef-File-usr-share-awk-readfile.awk-2e5d249532999902 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/rewind.awk +SPDXID: SPDXRef-File-usr-share-awk-rewind.awk-b8c57b670106503b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/round.awk +SPDXID: SPDXRef-File-usr-share-awk-round.awk-3164d60fd0a331a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/shellquote.awk +SPDXID: SPDXRef-File-usr-share-awk-shellquote.awk-184e9700110d06c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/strtonum.awk +SPDXID: SPDXRef-File-usr-share-awk-strtonum.awk-f0548bc6bc6e499a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/walkarray.awk +SPDXID: SPDXRef-File-usr-share-awk-walkarray.awk-1373a93451f765df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/zerofile.awk +SPDXID: SPDXRef-File-usr-share-awk-zerofile.awk-1915efe071a896f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/cracklib/cracklib-small.hwm +SPDXID: SPDXRef-File-usr-share-cracklib-cracklib-small.hwm-ba259b112cc6fdcf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/cracklib/cracklib-small.pwd +SPDXID: SPDXRef-File-usr-share-cracklib-cracklib-small.pwd-aef83d5715318e32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/cracklib/cracklib-small.pwi +SPDXID: SPDXRef-File-usr-share-cracklib-cracklib-small.pwi-a251949a8ba39e31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/cracklib/cracklib.magic +SPDXID: SPDXRef-File-usr-share-cracklib-cracklib.magic-07b3c000f80881ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/cracklib/pw_dict.hwm +SPDXID: SPDXRef-File-usr-share-cracklib-pw-dict.hwm-9fc982e75a44303b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/cracklib/pw_dict.pwd +SPDXID: SPDXRef-File-usr-share-cracklib-pw-dict.pwd-6fefb2799b190e56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/cracklib/pw_dict.pwi +SPDXID: SPDXRef-File-usr-share-cracklib-pw-dict.pwi-7e5103942b133fe1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/nss.txt +SPDXID: SPDXRef-File-usr-share-crypto-policies-FIPS-nss.txt-32bb273f37c5dce3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/session.conf +SPDXID: SPDXRef-File-usr-share-dbus-1-session.conf-4b66d7377a4595a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.conf +SPDXID: SPDXRef-File-usr-share-dbus-1-system.conf-7c250a6c32657e70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/doc/dejavu-fonts-common/BUGS +SPDXID: SPDXRef-File-usr-share-doc-dejavu-fonts-common-BUGS-348d3071955dd979 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/dejavu-fonts-common/NEWS +SPDXID: SPDXRef-File-usr-share-doc-dejavu-fonts-common-NEWS-212697fb7bb1cb18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/fontconfig/AUTHORS +SPDXID: SPDXRef-File-usr-share-doc-fontconfig-AUTHORS-1ce8db0073822ab8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/fontconfig/README +SPDXID: SPDXRef-File-usr-share-doc-fontconfig-README-4df10b06fdadb1f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/freetype/README +SPDXID: SPDXRef-File-usr-share-doc-freetype-README-166cb698158e879e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/jansson/CHANGES +SPDXID: SPDXRef-File-usr-share-doc-jansson-CHANGES-9656507ea58788b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/jansson/LICENSE +SPDXID: SPDXRef-File-usr-share-doc-jansson-LICENSE-4ab711e8fe621d69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libmnl/README +SPDXID: SPDXRef-File-usr-share-doc-libmnl-README-3613fb6e9971cf98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libnet/CHANGELOG +SPDXID: SPDXRef-File-usr-share-doc-libnet-CHANGELOG-b012ddf73e4a28d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libnet/CONTRIB +SPDXID: SPDXRef-File-usr-share-doc-libnet-CONTRIB-1cf554a08647a884 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libnet/COPYING +SPDXID: SPDXRef-File-usr-share-doc-libnet-COPYING-6ee8d8e4426e35fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libnet/README +SPDXID: SPDXRef-File-usr-share-doc-libnet-README-0b3f832626119b0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libnfnetlink/README +SPDXID: SPDXRef-File-usr-share-doc-libnfnetlink-README-05012c2130998b1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libnftnl/COPYING +SPDXID: SPDXRef-File-usr-share-doc-libnftnl-COPYING-b55311e627103956 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libpcap/CHANGES +SPDXID: SPDXRef-File-usr-share-doc-libpcap-CHANGES-b140499f342fe180 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libpcap/CREDITS +SPDXID: SPDXRef-File-usr-share-doc-libpcap-CREDITS-e46850b0a3d26a91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libpcap/README.md +SPDXID: SPDXRef-File-usr-share-doc-libpcap-README.md-9b6ee4c364c070bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libsolv/README +SPDXID: SPDXRef-File-usr-share-doc-libsolv-README-b64cbfa4f5e5c06e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/openssl/FAQ +SPDXID: SPDXRef-File-usr-share-doc-openssl-FAQ-c4e4bc2587067835 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/openssl/NEWS +SPDXID: SPDXRef-File-usr-share-doc-openssl-NEWS-c38ca20a7d336103 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/openssl/README +SPDXID: SPDXRef-File-usr-share-doc-openssl-README-75e6abd7e83af940 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/openssl/README.FIPS +SPDXID: SPDXRef-File-usr-share-doc-openssl-README.FIPS-e6b8e01e725c5051 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/protobuf-c/ChangeLog +SPDXID: SPDXRef-File-usr-share-doc-protobuf-c-ChangeLog-832626f9174eea4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/protobuf-c/LICENSE +SPDXID: SPDXRef-File-usr-share-doc-protobuf-c-LICENSE-be15fe4e5026a818 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/protobuf-c/TODO +SPDXID: SPDXRef-File-usr-share-doc-protobuf-c-TODO-3ead4bb5e64b21be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/rdma-core/libibverbs.md +SPDXID: SPDXRef-File-usr-share-doc-rdma-core-libibverbs.md-b9115564528b9217 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/xz/COPYING +SPDXID: SPDXRef-File-usr-share-doc-xz-COPYING-a2630286ca6e8e0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/factory/etc/nsswitch.conf +SPDXID: SPDXRef-File-usr-share-factory-etc-nsswitch.conf-1f4783fe4e3bd4a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/factory/etc/pam.d/other +SPDXID: SPDXRef-File-usr-share-factory-etc-pam.d-other-fe114eda0fdfd632 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/fonts/dejavu/DejaVuSans.ttf +SPDXID: SPDXRef-File-usr-share-fonts-dejavu-DejaVuSans.ttf-715c7e6cffbd9e0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/gnupg/distsigkey.gpg +SPDXID: SPDXRef-File-usr-share-gnupg-distsigkey.gpg-ebbac8997b1c4bd8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.be.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.be.txt-025d29736299ea4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.ca.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.ca.txt-3708e1f6c04cf5d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.cs.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.cs.txt-4aeafd58863e19ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.da.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.da.txt-65f7b7c4bfd3d6a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.de.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.de.txt-54d81c390bc25451 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.el.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.el.txt-446bfb105d1dc7a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.eo.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.eo.txt-adfa5d45663496fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.es.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.es.txt-d2c077a6492a5752 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.et.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.et.txt-775023be180b8e7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.fi.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.fi.txt-e8d6c8aa94c72894 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.fr.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.fr.txt-d448935108c4548f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.gl.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.gl.txt-d8ed03e48f0f3f7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.hu.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.hu.txt-078f6e3e0700f6c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.id.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.id.txt-77df6b15e7316aa5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.it.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.it.txt-d37f64171ca956a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.ja.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.ja.txt-4583aec7d7faded8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.nb.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.nb.txt-72a06a96b275bd8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.pl.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.pl.txt-ab0bd7f409de934f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.pt_BR.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.pt-BR.txt-eb17c631f010cbec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.pt.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.pt.txt-77cdfdf2d060ab51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.ro.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.ro.txt-6969421d4c2c897f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.ru.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.ru.txt-0ea32e037ef95b92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.sk.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.sk.txt-95023049180bccc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.sv.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.sv.txt-098d5f59f560320a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.tr.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.tr.txt-96756a67a9f72923 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.txt-37b54befc1be3802 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.zh_CN.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.zh-CN.txt-d5810c8b3ace4f38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.zh_TW.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.zh-TW.txt-d0ec5af3603924fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/info/dir +SPDXID: SPDXRef-File-usr-share-info-dir-60ee52a9659bb512 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/info/dir.old +SPDXID: SPDXRef-File-usr-share-info-dir.old-22645fda9aaa5181 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/libgpg-error/errorref.txt +SPDXID: SPDXRef-File-usr-share-libgpg-error-errorref.txt-7a0d8a55fc820f96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/acl/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-acl-COPYING-b6b0bc755a2683f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/acl/COPYING.LGPL +SPDXID: SPDXRef-File-usr-share-licenses-acl-COPYING.LGPL-820047b4468ceb9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/bash/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-bash-COPYING-de53e201f8f9f9ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/brotli/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-brotli-LICENSE-65386193ff1c3a9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/bzip2-libs/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-bzip2-libs-LICENSE-294ae9a2ea0f2824 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/chkconfig/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-chkconfig-COPYING-9f15a49442943a45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/dbus-daemon/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-dbus-daemon-COPYING-650d3eb15814efbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/dbus-glib/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-dbus-glib-COPYING-51c1cb7f52e0c249 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/dbus-libs/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-dbus-libs-COPYING-b7e2cfeae6b2c9da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/dbus-tools/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-dbus-tools-COPYING-d03d68231c1058f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/dmidecode/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-dmidecode-LICENSE-24d84dde8e782a20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/dnf/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-dnf-COPYING-2b04a7f24c4aa6ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/expat/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-expat-COPYING-ad7b37d0a575f4cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/file-libs/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-file-libs-COPYING-3459d60d81a56cb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/findutils/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-findutils-COPYING-ca864457434e5214 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/fontconfig/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-fontconfig-COPYING-f5a9c6adfb07d43d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/freetype/FTL.TXT +SPDXID: SPDXRef-File-usr-share-licenses-freetype-FTL.TXT-844cb04e50af26cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/freetype/GPLv2.TXT +SPDXID: SPDXRef-File-usr-share-licenses-freetype-GPLv2.TXT-fac998f0094c9c5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/gawk/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-gawk-COPYING-2af9cae2bd34e3d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gawk/LICENSE.BSD +SPDXID: SPDXRef-File-usr-share-licenses-gawk-LICENSE.BSD-12ebb69e5e86d7f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gawk/LICENSE.GPLv2 +SPDXID: SPDXRef-File-usr-share-licenses-gawk-LICENSE.GPLv2-f0bd1cf4dcfe5398 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gawk/LICENSE.LGPLv2 +SPDXID: SPDXRef-File-usr-share-licenses-gawk-LICENSE.LGPLv2-b895a937ec301d0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gdbm-libs/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-gdbm-libs-COPYING-3da27d23b4dbf44b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/glib2/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-glib2-COPYING-f01954096e9d888e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/glibc/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-glibc-COPYING-a30e0b6e02b9527a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/glibc/COPYING.LIB +SPDXID: SPDXRef-File-usr-share-licenses-glibc-COPYING.LIB-cf3f34cec7a83caf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/glibc/LICENSES +SPDXID: SPDXRef-File-usr-share-licenses-glibc-LICENSES-fd4e99dd9b2a9828 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gmp/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-gmp-COPYING-c49f8de17f10b633 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gmp/COPYINGv2 +SPDXID: SPDXRef-File-usr-share-licenses-gmp-COPYINGv2-df1b3b1da0ca29dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gmp/COPYINGv3 +SPDXID: SPDXRef-File-usr-share-licenses-gmp-COPYINGv3-7e9e1bf0e86073a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gnupg2/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-gnupg2-COPYING-7789de3156cab373 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gnutls/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-gnutls-COPYING-ae8e616d685e7187 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gnutls/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-gnutls-LICENSE-93d7049a14bc07ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gpgme/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-gpgme-COPYING-c6143780d3b875f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gpgme/LICENSES +SPDXID: SPDXRef-File-usr-share-licenses-gpgme-LICENSES-e53f45b6f8796abf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/grep/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-grep-COPYING-92b86ff1dbaf0377 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gzip/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-gzip-COPYING-6fce93e7a41cd8e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gzip/fdl-1.3.txt +SPDXID: SPDXRef-File-usr-share-licenses-gzip-fdl-1.3.txt-10717af3075e8dac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/info/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-info-COPYING-4fc071846ccf8f09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/iptables/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-iptables-COPYING-ae3ff39e09daac37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/json-c/AUTHORS +SPDXID: SPDXRef-File-usr-share-licenses-json-c-AUTHORS-557fa83d87a9b427 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/json-c/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-json-c-COPYING-bc6d053356401aba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/json-glib/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-json-glib-COPYING-a87f1884f6ee71fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/kmod-libs/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-kmod-libs-COPYING-cf851846017e82f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/krb5-libs/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-krb5-libs-LICENSE-b36fdf5277da3e35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libarchive/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libarchive-COPYING-da0c301351d5b2ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libassuan/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libassuan-COPYING-873fc7c4ce1d7eaa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libcap/License +SPDXID: SPDXRef-File-usr-share-licenses-libcap-License-b5f4d9eda66a2fdd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libcom_err/NOTICE +SPDXID: SPDXRef-File-usr-share-licenses-libcom-err-NOTICE-e0a04622497bf779 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libcomps/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libcomps-COPYING-08b078b961c3e048 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libcurl/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libcurl-COPYING-08a1d1a91d48c03d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libdb/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libdb-LICENSE-4b72e538c28ae765 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libdb/lgpl-2.1.txt +SPDXID: SPDXRef-File-usr-share-licenses-libdb-lgpl-2.1.txt-ef3268d7b2eea0b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libdnf/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libdnf-COPYING-5165a23ed804ca7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libfdisk/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libfdisk-COPYING-8ce923042ea368f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libffi/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libffi-LICENSE-c33d49f7d1866c3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgcc/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libgcc-COPYING-2254c6e368622d0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgcc/COPYING.LIB +SPDXID: SPDXRef-File-usr-share-licenses-libgcc-COPYING.LIB-6acc8769ccebe8ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgcc/COPYING3 +SPDXID: SPDXRef-File-usr-share-licenses-libgcc-COPYING3-6fe322cd37f28f60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgcc/COPYING3.LIB +SPDXID: SPDXRef-File-usr-share-licenses-libgcc-COPYING3.LIB-367fef6219975bdc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libidn2/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libidn2-COPYING-eea0f276ab7de75c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libidn2/COPYINGv2 +SPDXID: SPDXRef-File-usr-share-licenses-libidn2-COPYINGv2-a59e496b3569301b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libksba/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libksba-COPYING-ecb9cbf009a9c06f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libmnl/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libmnl-COPYING-0567d87d9293d094 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/libmodulemd/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libmodulemd-COPYING-f0f30c22fec63858 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libmount/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libmount-COPYING-1077891aec096a0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libnghttp2/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libnghttp2-COPYING-82799547f1993398 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libnsl2/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libnsl2-COPYING-b4c33fc0f483d181 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libpcap/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libpcap-LICENSE-e4c2e07283d0b7b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/libpng/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libpng-LICENSE-8eb176a3aee2920e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/libpsl/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libpsl-COPYING-44c907be9a26eeef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/librepo/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-librepo-COPYING-314dfe1e241c6b6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/librhsm/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-librhsm-COPYING-e20b4ca22f004cd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libseccomp/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libseccomp-LICENSE-a6bcf740b8b25082 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libselinux/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libselinux-LICENSE-3e2247315b7dfac2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libsemanage/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libsemanage-COPYING-8125a3ce8fdb1aa7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/libsepol/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libsepol-COPYING-861f062dbead7042 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libsigsegv/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libsigsegv-COPYING-615cc83212ce4daa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libsolv/LICENSE.BSD +SPDXID: SPDXRef-File-usr-share-licenses-libsolv-LICENSE.BSD-b8e78439d99ed502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/libssh/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libssh-COPYING-8f53894d6cee6bd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libtasn1/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libtasn1-COPYING-a01cd30f476e1b50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libusbx/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libusbx-COPYING-ff9a81353433763f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libuser/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libuser-COPYING-8ecbe618f2b81a69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libutempter/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libutempter-COPYING-572609dd307d17bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libuuid/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libuuid-COPYING-9300a569e8de31ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libverto/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libverto-COPYING-8babef6f55bd5568 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libxcrypt/AUTHORS +SPDXID: SPDXRef-File-usr-share-licenses-libxcrypt-AUTHORS-c2c5a2a10c92ba20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libxcrypt/LICENSING +SPDXID: SPDXRef-File-usr-share-licenses-libxcrypt-LICENSING-8df5c44b0a2c6aed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libxml2/Copyright +SPDXID: SPDXRef-File-usr-share-licenses-libxml2-Copyright-79d097ee18d64582 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libyaml/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libyaml-LICENSE-f0f43ebf288ce518 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libzstd/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libzstd-COPYING-be00669b48fb5d12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libzstd/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libzstd-LICENSE-37124f71f1346822 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/mpfr/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-mpfr-COPYING-dc377766b4c3d428 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/mpfr/COPYING.LESSER +SPDXID: SPDXRef-File-usr-share-licenses-mpfr-COPYING.LESSER-80cd1ace42e47cf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/nettle/COPYINGv2 +SPDXID: SPDXRef-File-usr-share-licenses-nettle-COPYINGv2-14c391e6daf59c5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/nftables/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-nftables-COPYING-e5bb6a147c8980c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/npth/COPYING.LIB +SPDXID: SPDXRef-File-usr-share-licenses-npth-COPYING.LIB-546832545ae59d9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/openldap/COPYRIGHT +SPDXID: SPDXRef-File-usr-share-licenses-openldap-COPYRIGHT-3c26c6e373ac9693 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/openldap/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-openldap-LICENSE-568e33503ff18f13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/openssl/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-openssl-LICENSE-651b55083af77470 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/p11-kit/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-p11-kit-COPYING-e5c66c8ca710cb17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/pam/Copyright +SPDXID: SPDXRef-File-usr-share-licenses-pam-Copyright-e0ead8bec01d7231 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/pam/gpl-2.0.txt +SPDXID: SPDXRef-File-usr-share-licenses-pam-gpl-2.0.txt-958d782a021aba03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/passwd/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-passwd-COPYING-a295bdc63bb09db3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/pcre/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-pcre-COPYING-84ef21562d09300b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/pcre/LICENCE +SPDXID: SPDXRef-File-usr-share-licenses-pcre-LICENCE-2024cbee757274b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/pcre2/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-pcre2-COPYING-dd3842a2b6cdb2b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/pcre2/LICENCE +SPDXID: SPDXRef-File-usr-share-licenses-pcre2-LICENCE-40736386285f68cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/popt/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-popt-COPYING-c54dbeb5cb63ee97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-six/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-python3-six-LICENSE-5db3cc28b6f7cd43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/readline/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-readline-COPYING-e1a7a6136ffde8bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/readline/USAGE +SPDXID: SPDXRef-File-usr-share-licenses-readline-USAGE-d920170b5d9e5907 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/rpm/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-rpm-COPYING-3a005342e17732bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/sed/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-sed-COPYING-bb9753ca8d21083c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/setup/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-setup-COPYING-b1697b974ab84c60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/tar/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-tar-COPYING-a0248b7b9ad2f646 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/tpm2-tss/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-tpm2-tss-LICENSE-ff39a3bb7f481309 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/tzdata/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-tzdata-LICENSE-a4ebb53ea1ad14d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/which/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-which-COPYING-f227d4a1c98a6181 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/zlib/README +SPDXID: SPDXRef-File-usr-share-licenses-zlib-README-40d4951b973bd41a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/locale.alias +SPDXID: SPDXRef-File-usr-share-locale-locale.alias-672cfb4202427c09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/man/man1/asn1parse.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-asn1parse.1ssl.gz-6ceb0fd6c957cef7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/ca.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-ca.1ssl.gz-c5dbbe77d420f8c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/ciphers.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-ciphers.1ssl.gz-b5763aa23286b9f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/cms.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-cms.1ssl.gz-b907d67c4088d504 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/crl.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-crl.1ssl.gz-756d3215fcb45dce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/crl2pkcs7.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-crl2pkcs7.1ssl.gz-f9bb38fcc91f96df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/dgst.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-dgst.1ssl.gz-cfb33bda3e5bcb4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/dhparam.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-dhparam.1ssl.gz-5cfd039d5d2cbc23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/dsa.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-dsa.1ssl.gz-dd6fd638b12ee4c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/dsaparam.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-dsaparam.1ssl.gz-41282c83b8f70957 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/ec.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-ec.1ssl.gz-f1ea6f6a5a7e6aa0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/ecparam.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-ecparam.1ssl.gz-7f4f4e163ce5f7af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/enc.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-enc.1ssl.gz-45f445734a1c7547 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/engine.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-engine.1ssl.gz-58fb7d68e733b8cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/errstr.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-errstr.1ssl.gz-4e9bd25ddb96dcbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-cache.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-cache.1.gz-bdca42b293ea35a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-cat.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-cat.1.gz-6d4550c9e8ad2366 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-conflist.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-conflist.1.gz-5f65c9ad6bfde265 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-list.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-list.1.gz-ef1ffb79dd3e768e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-match.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-match.1.gz-b05a32901284c2b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-pattern.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-pattern.1.gz-dcd911bf4cde60c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-query.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-query.1.gz-d8ba7fbe8babdcb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-scan.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-scan.1.gz-068073dc3a769c71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-validate.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-validate.1.gz-be02b7ff0bb1cacb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/gendsa.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-gendsa.1ssl.gz-7607390736dc7e52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/genpkey.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-genpkey.1ssl.gz-b103d553bdb6f1a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/genrsa.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-genrsa.1ssl.gz-088c49754957903b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/list.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-list.1ssl.gz-88daee10954a1294 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/nseq.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-nseq.1ssl.gz-4f900a6a619b779d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/ocsp.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-ocsp.1ssl.gz-d2afb4ff1e6dd089 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/openssl.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-openssl.1ssl.gz-2d53e404c37ada4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/pkcs12.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-pkcs12.1ssl.gz-9c40ee6d215b1d65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/pkcs7.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-pkcs7.1ssl.gz-6f88d08133e3a411 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/pkcs8.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-pkcs8.1ssl.gz-5f8a671a0fa32cd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/pkey.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-pkey.1ssl.gz-b432e7a714fdde13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/pkeyparam.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-pkeyparam.1ssl.gz-7dc34f2091d5df9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/pkeyutl.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-pkeyutl.1ssl.gz-8bc6faac5591ad5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/prime.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-prime.1ssl.gz-30e28211efeca463 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/rehash.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-rehash.1ssl.gz-c1b66f911b283de0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/req.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-req.1ssl.gz-57fccbfb2a03040d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/rsa.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-rsa.1ssl.gz-efa17e46cda3f428 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/rsautl.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-rsautl.1ssl.gz-9e8d39452d3462b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/s_client.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-s-client.1ssl.gz-dcd201437b4dbd03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/s_server.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-s-server.1ssl.gz-ac156d2dc033416b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/s_time.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-s-time.1ssl.gz-e591200a1638a7aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/sess_id.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-sess-id.1ssl.gz-a47429666fcb1158 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/smime.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-smime.1ssl.gz-8ab2acc7ee159e14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/speed.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-speed.1ssl.gz-82ebf54b9e4d7789 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/spkac.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-spkac.1ssl.gz-cc0cb932a614f791 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/srp.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-srp.1ssl.gz-65735719efe05cc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/sslpasswd.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-sslpasswd.1ssl.gz-65c9db6741a409ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/sslrand.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-sslrand.1ssl.gz-217e23c7710baee5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/storeutl.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-storeutl.1ssl.gz-f4e1d97825d7f995 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/ts.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-ts.1ssl.gz-31b545f1e2c48e8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/verify.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-verify.1ssl.gz-be0f85604424e7d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/version.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-version.1ssl.gz-dce030745973af44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/x509.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-x509.1ssl.gz-f06d83124616e0cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man5/config.5ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man5-config.5ssl.gz-405d93d96f88969f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man5/fonts-conf.5.gz +SPDXID: SPDXRef-File-usr-share-man-man5-fonts-conf.5.gz-e2f8f6d300bafbd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man5/png.5.gz +SPDXID: SPDXRef-File-usr-share-man-man5-png.5.gz-1c082c7e345c0cd9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man5/semanage.conf.5.gz +SPDXID: SPDXRef-File-usr-share-man-man5-semanage.conf.5.gz-d179f9aacdd95fc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/EVP_KDF_KB.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-EVP-KDF-KB.7ssl.gz-d9b6366124a99f6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/EVP_KDF_SS.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-EVP-KDF-SS.7ssl.gz-bdf98dc1b80bf078 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/Ed25519.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-Ed25519.7ssl.gz-57abdd292bd018fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/RAND_DRBG.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-RAND-DRBG.7ssl.gz-edf02b7bf9d4d298 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/RAND.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-RAND.7ssl.gz-3f5f7bfb90e80ebd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/RSA-PSS.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-RSA-PSS.7ssl.gz-7b0f5037e76d4a59 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/SM2.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-SM2.7ssl.gz-f9bea0b736dad495 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/X25519.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-X25519.7ssl.gz-fcf4123d0db3f5d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/bio.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-bio.7ssl.gz-dbc5f9cf014f2888 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/crypto.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-crypto.7ssl.gz-caee55d467057d16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/ct.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-ct.7ssl.gz-f73e38eb07fa2161 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/des_modes.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-des-modes.7ssl.gz-c4c4bd00eeaed837 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/evp.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-evp.7ssl.gz-2e78e6c6e15a7bb3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/ossl_store.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-ossl-store.7ssl.gz-8bd1451cd7bde956 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/pcap-filter.7.gz +SPDXID: SPDXRef-File-usr-share-man-man7-pcap-filter.7.gz-2e0e60872e34bdcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/pcap-linktype.7.gz +SPDXID: SPDXRef-File-usr-share-man-man7-pcap-linktype.7.gz-fa450d4562216d43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/pcap-tstamp.7.gz +SPDXID: SPDXRef-File-usr-share-man-man7-pcap-tstamp.7.gz-37bb347d7d9bda82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/scrypt.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-scrypt.7ssl.gz-fc886d5137f2cdfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/ssl.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-ssl.7ssl.gz-c94256b8af98ff76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/x509.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-x509.7ssl.gz-d7d2b2745d2d410d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/ip6tables-save.8.gz +SPDXID: SPDXRef-File-usr-share-man-man8-ip6tables-save.8.gz-cabb3d49566b03bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/ip6tables.8.gz +SPDXID: SPDXRef-File-usr-share-man-man8-ip6tables.8.gz-bb005ff015988835 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/iptables-apply.8.gz +SPDXID: SPDXRef-File-usr-share-man-man8-iptables-apply.8.gz-4a82f6eef9ec44bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/iptables-save.8.gz +SPDXID: SPDXRef-File-usr-share-man-man8-iptables-save.8.gz-7311ffe30b62ac92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/iptables.8.gz +SPDXID: SPDXRef-File-usr-share-man-man8-iptables.8.gz-8ba8e3abaf3908c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/nft.8.gz +SPDXID: SPDXRef-File-usr-share-man-man8-nft.8.gz-69d6e490cd8ee7de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/xtables-nft.8.gz +SPDXID: SPDXRef-File-usr-share-man-man8-xtables-nft.8.gz-0076c02b3f109a86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/misc/magic +SPDXID: SPDXRef-File-usr-share-misc-magic-b76d9d9e31ebadce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/misc/magic.mgc +SPDXID: SPDXRef-File-usr-share-misc-magic.mgc-ea408c7b5912acaf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/pkgconfig/systemd.pc +SPDXID: SPDXRef-File-usr-share-pkgconfig-systemd.pc-ff2ca5d52b2ad9b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/pkgconfig/udev.pc +SPDXID: SPDXRef-File-usr-share-pkgconfig-udev.pc-91d223df393d8b84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/pki/ca-trust-source/README +SPDXID: SPDXRef-File-usr-share-pki-ca-trust-source-README-c5df098e511c8911 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/python-dmidecode/pymap.xml +SPDXID: SPDXRef-File-usr-share-python-dmidecode-pymap.xml-74a2dce3084c0d2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/systemd/kbd-model-map +SPDXID: SPDXRef-File-usr-share-systemd-kbd-model-map-4f968b8e5789c421 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/tabset/std +SPDXID: SPDXRef-File-usr-share-tabset-std-0601e56c179ca54c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/tabset/stdcrt +SPDXID: SPDXRef-File-usr-share-tabset-stdcrt-389c97d54a3f7d15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/tabset/vt100 +SPDXID: SPDXRef-File-usr-share-tabset-vt100-98fabed2880a6a55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/tabset/vt300 +SPDXID: SPDXRef-File-usr-share-tabset-vt300-dfc562df8c9afa8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/A/Apple_Terminal +SPDXID: SPDXRef-File-usr-share-terminfo-A-Apple-Terminal-bf0c97d738b05b6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/E/Eterm-256color +SPDXID: SPDXRef-File-usr-share-terminfo-E-Eterm-256color-8079f7537cc4f92e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/E/Eterm +SPDXID: SPDXRef-File-usr-share-terminfo-E-Eterm-5c36e55895fda695 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/E/Eterm-88color +SPDXID: SPDXRef-File-usr-share-terminfo-E-Eterm-88color-e088641be4c7de77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/E/Eterm-color +SPDXID: SPDXRef-File-usr-share-terminfo-E-Eterm-color-6a8e76d95c493723 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/a/ansi +SPDXID: SPDXRef-File-usr-share-terminfo-a-ansi-b74077d2d9e47a6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/a/ansi80x25 +SPDXID: SPDXRef-File-usr-share-terminfo-a-ansi80x25-a0da2d34e983faec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/a/ansis +SPDXID: SPDXRef-File-usr-share-terminfo-a-ansis-5cb4af1eda171299 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/a/aterm +SPDXID: SPDXRef-File-usr-share-terminfo-a-aterm-e4f83ba0f1f0962c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/b/bterm +SPDXID: SPDXRef-File-usr-share-terminfo-b-bterm-f8cdf9d727319f67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/c/cons25 +SPDXID: SPDXRef-File-usr-share-terminfo-c-cons25-56bf5b4074398af9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/c/cygwin +SPDXID: SPDXRef-File-usr-share-terminfo-c-cygwin-022a2d3fb19de022 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/d/dumb +SPDXID: SPDXRef-File-usr-share-terminfo-d-dumb-6f741566fce62cd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/e/eterm +SPDXID: SPDXRef-File-usr-share-terminfo-e-eterm-3af9134a11d37f70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/e/eterm-color +SPDXID: SPDXRef-File-usr-share-terminfo-e-eterm-color-3467776397234902 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/g/gnome-256color +SPDXID: SPDXRef-File-usr-share-terminfo-g-gnome-256color-326d6d8cf37de313 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/g/gnome +SPDXID: SPDXRef-File-usr-share-terminfo-g-gnome-5cd1dc4992e2f234 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/h/hurd +SPDXID: SPDXRef-File-usr-share-terminfo-h-hurd-1dafc1246000f513 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/j/jfbterm +SPDXID: SPDXRef-File-usr-share-terminfo-j-jfbterm-6251c13e778bbfd3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/k/kon +SPDXID: SPDXRef-File-usr-share-terminfo-k-kon-a2f403d86e0e70f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/k/kon2 +SPDXID: SPDXRef-File-usr-share-terminfo-k-kon2-c1e55e5e77d2b981 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/k/konsole-256color +SPDXID: SPDXRef-File-usr-share-terminfo-k-konsole-256color-9cb14e3887ea7885 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/k/konsole +SPDXID: SPDXRef-File-usr-share-terminfo-k-konsole-2e3bf270d499cd73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/l/linux +SPDXID: SPDXRef-File-usr-share-terminfo-l-linux-cec34df49a89dc86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/m/mach-bold +SPDXID: SPDXRef-File-usr-share-terminfo-m-mach-bold-d0591ebb3267c49c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/m/mach-color +SPDXID: SPDXRef-File-usr-share-terminfo-m-mach-color-cc891254d2e02b14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/m/mach +SPDXID: SPDXRef-File-usr-share-terminfo-m-mach-d56e39d5b5876fa4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/m/mach-gnu +SPDXID: SPDXRef-File-usr-share-terminfo-m-mach-gnu-23b60373da2ddc76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/m/mach-gnu-color +SPDXID: SPDXRef-File-usr-share-terminfo-m-mach-gnu-color-acc6dd925fe347bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/m/mlterm +SPDXID: SPDXRef-File-usr-share-terminfo-m-mlterm-18339fe4bfd46847 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/m/mrxvt +SPDXID: SPDXRef-File-usr-share-terminfo-m-mrxvt-563ec1402711dcc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/n/nsterm +SPDXID: SPDXRef-File-usr-share-terminfo-n-nsterm-7824da4a5e60ba42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/n/nxterm +SPDXID: SPDXRef-File-usr-share-terminfo-n-nxterm-064f0f9e87ebde6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/p/pcansi +SPDXID: SPDXRef-File-usr-share-terminfo-p-pcansi-f6098fe27af5542f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/p/putty-256color +SPDXID: SPDXRef-File-usr-share-terminfo-p-putty-256color-0ab5338e56fdb9b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/p/putty +SPDXID: SPDXRef-File-usr-share-terminfo-p-putty-5bfff9a23bc7a9e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-0bb70b801a1bd9a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-16color +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-16color-d4b8586fab01ea26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-256color +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-256color-187cb5843387b086 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-88color +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-88color-5f774efa70be7727 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-basic +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-basic-a96dcc7e7b036734 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-color +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-color-08019ecd06dd4c1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-cygwin +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-cygwin-b38aea14808b4fb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-unicode +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-unicode-0482e06816801320 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-xpm +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-xpm-8a8a1155677934c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen-16color +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen-16color-4e170ee94a866841 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen-256color +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen-256color-66f98a83c9a99058 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen-dde79a383a09d776 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.Eterm +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.Eterm-49f222f62b2ef70c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.gnome +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.gnome-56cee7543a6c70ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.konsole +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.konsole-12b72cddb695e4b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.linux +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.linux-66b5b28e1b45745e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.mlterm +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.mlterm-2c662d5871b64cba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.mrxvt +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.mrxvt-3670b65f3c7fb009 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.putty +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.putty-65d58180cb0744ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.rxvt +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.rxvt-eef34bb2e95fe2ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.teraterm +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.teraterm-8027572b48475e7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.vte +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.vte-6dde0eff7e86d579 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.xterm-new +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.xterm-new-58a0975089c93016 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.xterm-r6 +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.xterm-r6-c9ed3174e165a54c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/st-16color +SPDXID: SPDXRef-File-usr-share-terminfo-s-st-16color-127fe09de2553da4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/st-256color +SPDXID: SPDXRef-File-usr-share-terminfo-s-st-256color-411fc61bbb5c0ff6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/st +SPDXID: SPDXRef-File-usr-share-terminfo-s-st-9c169a3a80293007 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/stterm-16color +SPDXID: SPDXRef-File-usr-share-terminfo-s-stterm-16color-8d14d4ab0c9a90c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/stterm-256color +SPDXID: SPDXRef-File-usr-share-terminfo-s-stterm-256color-37c4bb7ab75deffd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/stterm +SPDXID: SPDXRef-File-usr-share-terminfo-s-stterm-67262e90f89870ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/sun +SPDXID: SPDXRef-File-usr-share-terminfo-s-sun-8f8b76a51516fe71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/sun1 +SPDXID: SPDXRef-File-usr-share-terminfo-s-sun1-7ed7c3941670a596 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/sun2 +SPDXID: SPDXRef-File-usr-share-terminfo-s-sun2-b29cfd74c1a828d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/t/teraterm +SPDXID: SPDXRef-File-usr-share-terminfo-t-teraterm-0bf4077a32ccd5e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/t/teraterm2.3 +SPDXID: SPDXRef-File-usr-share-terminfo-t-teraterm2.3-0968991a09bb26a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/t/tmux-256color +SPDXID: SPDXRef-File-usr-share-terminfo-t-tmux-256color-e19e872323b94513 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/t/tmux +SPDXID: SPDXRef-File-usr-share-terminfo-t-tmux-af248ea2538319fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vs100 +SPDXID: SPDXRef-File-usr-share-terminfo-v-vs100-e87a3f4d03be548b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vt100 +SPDXID: SPDXRef-File-usr-share-terminfo-v-vt100-7bf06233cf19aa13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vt100-am +SPDXID: SPDXRef-File-usr-share-terminfo-v-vt100-am-42f5470e95dc5d4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vt100-nav +SPDXID: SPDXRef-File-usr-share-terminfo-v-vt100-nav-b5e1d2a5bad09380 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vt102 +SPDXID: SPDXRef-File-usr-share-terminfo-v-vt102-8015889519693330 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vt200 +SPDXID: SPDXRef-File-usr-share-terminfo-v-vt200-920308582bac7479 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vt220 +SPDXID: SPDXRef-File-usr-share-terminfo-v-vt220-ddcab038b98f0ed4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vt52 +SPDXID: SPDXRef-File-usr-share-terminfo-v-vt52-b28c885ce811647d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vte-256color +SPDXID: SPDXRef-File-usr-share-terminfo-v-vte-256color-a9b4842e40b9ffba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vte +SPDXID: SPDXRef-File-usr-share-terminfo-v-vte-87928dcd7e1b1045 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vwmterm +SPDXID: SPDXRef-File-usr-share-terminfo-v-vwmterm-1429572ecdc92212 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/w/wsvt25 +SPDXID: SPDXRef-File-usr-share-terminfo-w-wsvt25-a2e8952006879bf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/w/wsvt25m +SPDXID: SPDXRef-File-usr-share-terminfo-w-wsvt25m-2d377b7a9a913722 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xfce +SPDXID: SPDXRef-File-usr-share-terminfo-x-xfce-a7b752d5bade4480 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-031104521fc21fc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-1002 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-1002-90692680f3c921d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-1003 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-1003-a8d12247bcbab41d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-1005 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-1005-0fa1916a0103d64e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-1006 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-1006-2a61970a223ddf68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-16color +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-16color-de8f1c0dd96f4e47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-24 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-24-cbb9ef2d95e96f0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-256color +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-256color-c4e60500c8bd1a5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-88color +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-88color-f03a1cbb12729bb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-8bit +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-8bit-6afbdb5c6c58208d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-basic +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-basic-7aee846ff92d1953 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-bold +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-bold-2b9229c0dfc61890 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-color +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-color-aa7719b5d5385e99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-direct +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-direct-a7b7c0f952d600ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-direct2 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-direct2-db47ed5d56527a43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-hp +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-hp-1db10c90c941438c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-new +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-new-0417a7571d361596 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-nic +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-nic-ef26ce3199c699ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-noapp +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-noapp-5a7ecb53116643a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-old +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-old-64eaa13dc582e538 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-pcolor +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-pcolor-8654f4396a5f6ece +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-r5 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-r5-c34c63e65da2f03b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-r6 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-r6-4b80715f75cae38b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-sco +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-sco-34496067479fea31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-sun +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-sun-fd5c82e8b5b0457b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-utf8 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-utf8-fb85e3b03682e11f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-vt220 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-vt220-3a3579d21756beaf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-vt52 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-vt52-d9eacb9fd5fcfde1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-x10mouse +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-x10mouse-981ac444ee600e8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-x11hilite +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-x11hilite-50ab9485cf504537 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-x11mouse +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-x11mouse-cfddef43a9317759 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xf86-v32 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v32-14b658d292d717f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xf86-v33 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v33-00dbb75140f7ce52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xf86-v333 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v333-633540a6e67e157f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xf86-v40 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v40-62241a46a0cbe63e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xf86-v43 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v43-ddadf4dd8b4d645b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xf86-v44 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v44-0ab95e08bdd5daeb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xfree86 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xfree86-946184bb85d598d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xi +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xi-24da9a3a06420e0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterms +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterms-e86c468ba26eb2e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/xml/fontconfig/fonts.dtd +SPDXID: SPDXRef-File-usr-share-xml-fontconfig-fonts.dtd-9f03c0e178ff762a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/zoneinfo/Africa/Abidjan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Abidjan-e844c340f31121f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Accra +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Accra-f2b5202ef23964a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Addis_Ababa +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Addis-Ababa-cf49509eb2a836a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Algiers +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Algiers-4aebc7f59afa0606 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Asmara +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Asmara-54b0360df67a03ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Asmera +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Asmera-72975ac0b11b23ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Bamako +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Bamako-5bc1fdfb65e5378a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Bangui +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Bangui-f3b97d30a6671ac9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Banjul +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Banjul-18dc6cb0929e67bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Bissau +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Bissau-7bba4604f8a1f416 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Blantyre +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Blantyre-5b855ca6b0b9fa9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Brazzaville +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Brazzaville-fbb751c2ce6f471b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Bujumbura +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Bujumbura-188f01f2c8b22689 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Cairo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Cairo-e0662aad7fcdf02c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Casablanca +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Casablanca-774b70dcd677d2bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Ceuta +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Ceuta-0804495e1fe0cf1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Conakry +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Conakry-3ec767167a81b9c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Dakar +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Dakar-f1634eb1b5441878 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Djibouti +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Djibouti-8c3a9ada91d5c3ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Douala +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Douala-71aab6294e7b73e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/El_Aaiun +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-El-Aaiun-e3ee023d147e84c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Freetown +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Freetown-372c68bf984fcba9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Gaborone +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Gaborone-1e93affc718e7426 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Harare +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Harare-2436f266dc6c612a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Johannesburg +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Johannesburg-48eb081449ca7ef2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Juba +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Juba-774a78be340961d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Kampala +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Kampala-fa9f06d723857df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Khartoum +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Khartoum-828138d63a193c2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Kigali +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Kigali-ca04255831de384c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Kinshasa +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Kinshasa-20ae6e9beb9734c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Lagos +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Lagos-7056959757e1c598 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Libreville +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Libreville-642bf1023df0a871 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Lome +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Lome-7a5982aea5ddb98f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Luanda +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Luanda-f90dd834739e5922 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Lubumbashi +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Lubumbashi-b74f32bae7ed8614 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Lusaka +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Lusaka-fa353ff05b94c7ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Malabo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Malabo-987ae299795477c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Maputo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Maputo-d890512dd0728489 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Maseru +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Maseru-93c61101becf7139 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Mbabane +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Mbabane-fe4585c9f4b6d91a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Mogadishu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Mogadishu-6fc60e182c2d9cfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Monrovia +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Monrovia-bcc624e6afeeb999 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Nairobi +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Nairobi-62d02f0fb4bdfb6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Ndjamena +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Ndjamena-0a46fa509bda5b1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Niamey +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Niamey-3edb39c3415ad29e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Nouakchott +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Nouakchott-16fdb74febd26c17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Ouagadougou +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Ouagadougou-d69addbdb7488dda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Porto-Novo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Porto-Novo-1be88c57878d4f15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Sao_Tome +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Sao-Tome-0f90240ee850d6b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Timbuktu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Timbuktu-9e0071b29846eba5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Tripoli +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Tripoli-1e9aa26023ad0bca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Tunis +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Tunis-499949bdf298590d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Windhoek +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Windhoek-9d16e6859b46eb65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Adak +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Adak-56888919780bb315 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Anchorage +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Anchorage-5ea24487e8643121 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Anguilla +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Anguilla-8fb76ebe7b17c556 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Antigua +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Antigua-95eecab58ad115bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Araguaina +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Araguaina-3f96c593e5ac8a3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Aruba +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Aruba-aff28a215db18ceb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Asuncion +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Asuncion-a230400091d01caa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Atikokan +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Atikokan-78556b64d7cfc0bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Atka +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Atka-0289d757a20650e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Bahia +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Bahia-95620767acd9a2b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Barbados +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Barbados-b840afcaf626c81d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Belem +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Belem-e17563ff2a43e8d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Belize +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Belize-5ade69e6b8c04841 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Boa_Vista +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Boa-Vista-df508f1e010eadce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Bogota +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Bogota-bc7b87ef610a71a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Boise +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Boise-f429c5404e2b47a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Cancun +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Cancun-ae264860e0414d63 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Caracas +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Caracas-a979b42e6ffe32cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Catamarca +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Catamarca-bd6e420cfc281133 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Cayenne +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Cayenne-b1432f174ee2c70d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Cayman +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Cayman-ce41494a4bd57e62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Chicago +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Chicago-0b1794ca87ca0b2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Chihuahua +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Chihuahua-b36a062583b00216 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Cordoba +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Cordoba-cc579c096e438e82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Costa_Rica +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Costa-Rica-85a9893343bb49c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Creston +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Creston-674ec88030ffc5f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Cuiaba +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Cuiaba-9b1286a34d8bde5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Curacao +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Curacao-28108c46e5f22ad6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Dawson +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Dawson-449124f98ece733e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Denver +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Denver-0aa31e32ab0246be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Detroit +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Detroit-95cc79ce8b8e8f8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Dominica +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Dominica-d723bb79e2c26c18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Edmonton +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Edmonton-6a65e1c53227ed3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Eirunepe +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Eirunepe-b4435c4a16073a0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/El_Salvador +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-El-Salvador-234b33f759927a9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Ensenada +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Ensenada-3485fdb16b23df8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Fort_Nelson +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Fort-Nelson-4432b7ce601eb4c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Fort_Wayne +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Fort-Wayne-7e62e93e18b33008 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Fortaleza +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Fortaleza-fb4da518a93eb1c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Glace_Bay +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Glace-Bay-29c5c1e9da22f6f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Godthab +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Godthab-94ce5a62b5ba852f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Goose_Bay +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Goose-Bay-6307fa13196ce256 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Grand_Turk +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Grand-Turk-e8596956e725beae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Grenada +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Grenada-408c42d802df48df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Guadeloupe +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Guadeloupe-8c7ed0a7500a3946 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Guatemala +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Guatemala-920ea51a6225a645 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Guayaquil +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Guayaquil-4be4541e759d80d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Guyana +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Guyana-88cd4f7f4f5ffb0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Halifax +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Halifax-625c572f8911b4be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Havana +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Havana-327eebc2f63e692e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Hermosillo +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Hermosillo-3fe7d2ffea943a0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Inuvik +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Inuvik-9187aaa5d0bbdb98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Iqaluit +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Iqaluit-7f313e20c6b0c094 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Jamaica +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Jamaica-8bcca8da56ecc437 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Jujuy +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Jujuy-20349837aabb0b4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Juneau +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Juneau-3939a9ace55745a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Knox_IN +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Knox-IN-716f9771506b7bf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Kralendijk +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Kralendijk-a39389dd818bf2e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/La_Paz +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-La-Paz-cb909cfa542a1649 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Lima +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Lima-34fcbcb107e4062e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Los_Angeles +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Los-Angeles-9d67bf17cb85c8ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Louisville +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Louisville-2608682775c817cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Maceio +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Maceio-4d2fa9df11fbb13d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Managua +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Managua-42d8771f9e1febfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Manaus +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Manaus-0a11a907933bd2a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Marigot +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Marigot-4ae71f07667d1bb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Martinique +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Martinique-b4d111e044420c4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Matamoros +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Matamoros-de373411e185a1aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Mazatlan +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Mazatlan-c93de14541209fac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Mendoza +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Mendoza-52f9aceda80e260d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Menominee +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Menominee-c70a9d2c06ed2a7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Merida +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Merida-b5319251f60c5796 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Metlakatla +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Metlakatla-722724e488266ec6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Mexico_City +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Mexico-City-2ef10345a51981ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Miquelon +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Miquelon-bcd0b3be8d95d5a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Moncton +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Moncton-fd3e4b30bcdadd08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Monterrey +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Monterrey-9ef7eb484729837c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Montevideo +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Montevideo-b65722f47f710302 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Montreal +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Montreal-942a4ab1724f982e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Montserrat +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Montserrat-5cb778c1e7aa7ddc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Nassau +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Nassau-84f865eff3e7bd0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/New_York +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-New-York-728a0f4a0b50324d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Nipigon +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Nipigon-c90f1818114568ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Nome +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Nome-85ce1771d189646c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Noronha +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Noronha-b90775fae20a4731 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Nuuk +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Nuuk-e0304f2f3eeaaf48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Ojinaga +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Ojinaga-10d71eaa2f313ed2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Panama +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Panama-32cb9340e338ff20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Pangnirtung +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Pangnirtung-eccec01f5eb24823 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Paramaribo +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Paramaribo-cc2e2bc6f081c99e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Phoenix +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Phoenix-81735e1ef3a0be09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Porto_Acre +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Porto-Acre-6f7224eeb8092123 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Porto_Velho +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Porto-Velho-2b29045b89ff9a8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Puerto_Rico +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Puerto-Rico-e30ab90edfc9d465 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Rainy_River +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Rainy-River-49ccb49b2b022661 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Recife +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Recife-a91c809fd9e93bc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Regina +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Regina-cf7deb9a927fd49a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Resolute +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Resolute-93bc54e0758f1df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Rio_Branco +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Rio-Branco-bdcef3f8fda1ee95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Rosario +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Rosario-b45817f92d3df27d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Santarem +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Santarem-5d89f6e3931479c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Santiago +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Santiago-1a4135234908249f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Sao_Paulo +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Sao-Paulo-9c4f9a2c0691d421 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Shiprock +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Shiprock-b48ac55188ee6f2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Sitka +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Sitka-faa8bf84bfb04362 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/St_Johns +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-St-Johns-551b5f36e5485bf5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/St_Kitts +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-St-Kitts-3ba9ab5bc541c1c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/St_Lucia +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-St-Lucia-14c8407cddb7d5e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/St_Thomas +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-St-Thomas-84a1ab0c77301728 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/St_Vincent +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-St-Vincent-9369fac9f9031db4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Tegucigalpa +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Tegucigalpa-3053441ffc35ead9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Thule +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Thule-8e423888c82d7879 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Thunder_Bay +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Thunder-Bay-088a2b05c07842f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Tijuana +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Tijuana-69de8ce0e9257632 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Toronto +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Toronto-93d0e265395abe4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Tortola +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Tortola-339e2c7bbd77b500 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Vancouver +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Vancouver-cdb3e92c39b22f33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Virgin +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Virgin-49bdef6eb959c5c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Whitehorse +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Whitehorse-71febde24feb1362 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Winnipeg +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Winnipeg-b6712421c0267fd9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Yakutat +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Yakutat-f3f04fb3e6c6b611 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Yellowknife +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Yellowknife-147685d94cbd9b48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Casey +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Casey-719eb20a39899618 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Davis +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Davis-57d3c048a034f2bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Mawson +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Mawson-ee6a7dfea9c76691 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/McMurdo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-McMurdo-401a1a5046485b0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Palmer +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Palmer-aadde2bd5518ac13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Rothera +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Rothera-8ecd3a98b92fa3c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Syowa +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Syowa-cd13ce2bef65a37a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Troll +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Troll-2577657527f82415 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Vostok +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Vostok-de3b5f50d4b71b61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Arctic/Longyearbyen +SPDXID: SPDXRef-File-usr-share-zoneinfo-Arctic-Longyearbyen-df4afe953541bb64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Aden +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Aden-8c22ea8707f29f8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Almaty +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Almaty-0541772cbe00552b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Amman +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Amman-32052d70176a708d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Anadyr +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Anadyr-241a8b8fabdbed9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Aqtau +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Aqtau-88e23db4d40a2424 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Aqtobe +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Aqtobe-ff2d8dcb56fdca1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Ashgabat +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Ashgabat-7b84a94447e71bb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Ashkhabad +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Ashkhabad-47feb79c1ce72398 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Atyrau +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Atyrau-fa2ea4fc75514409 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Baghdad +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Baghdad-170689e25e9dd4ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Bahrain +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Bahrain-c785a86fa751b8bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Baku +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Baku-119f4f57f1f87f92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Bangkok +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Bangkok-36602e19a58016ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Barnaul +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Barnaul-960eb4ef639409d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Beirut +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Beirut-1f36f4d844cf3c2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Bishkek +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Bishkek-f0dc73329256437f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Brunei +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Brunei-1503652a1f47f37e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Calcutta +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Calcutta-8820866a7ca061b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Chita +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Chita-d5ba06dd27cb7f24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Choibalsan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Choibalsan-ff671b208af6cb0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Chongqing +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Chongqing-c44b6fff862d65cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Chungking +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Chungking-1e0aaea19c1cc1be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Colombo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Colombo-c92cd497813d08d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Dacca +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Dacca-ced2a94eaa29444f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Damascus +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Damascus-ecbe429fd08047ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Dhaka +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Dhaka-3803e3b8238dec3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Dili +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Dili-4bfe56e60f9bfcf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Dubai +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Dubai-7ed1ebabd73e1a72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Dushanbe +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Dushanbe-51aa99aa630646ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Famagusta +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Famagusta-74de5e9f4012fc96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Gaza +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Gaza-ac884b9a1aa18cba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Harbin +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Harbin-5e610367147eb744 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Hebron +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Hebron-06c1311ea01b8b46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Ho_Chi_Minh +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Ho-Chi-Minh-f798a26e1a86b16a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Hong_Kong +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Hong-Kong-a7f3e0e1d0b854de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Hovd +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Hovd-191bf3ffb05fc9c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Irkutsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Irkutsk-1be3069410c02184 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Istanbul +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Istanbul-050da865134d1cbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Jakarta +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Jakarta-5642744effba1582 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Jayapura +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Jayapura-647ed30c16038a8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Jerusalem +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Jerusalem-3c7bb0a76ec9dc27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kabul +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kabul-628f5b3e98429f5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kamchatka +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kamchatka-766bfaa69907bad4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Karachi +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Karachi-9ec6977c8ce3c1e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kashgar +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kashgar-2285e5247d746513 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kathmandu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kathmandu-673f9ee1396b2c62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Katmandu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Katmandu-017738821feb19da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Khandyga +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Khandyga-0be875eaf0311f35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kolkata +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kolkata-d5f0081be0bbbe05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Krasnoyarsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Krasnoyarsk-93f3d32c69b1a813 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kuala_Lumpur +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kuala-Lumpur-312f19413e2b2148 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kuching +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kuching-c83c541f92943c2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kuwait +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kuwait-b81639f59cc78feb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Macao +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Macao-a724d58e48b6d6e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Macau +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Macau-59b16ae3f91e56b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Magadan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Magadan-057979f8d766e0c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Makassar +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Makassar-ae392a3ab9c44011 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Manila +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Manila-144063691ef783d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Muscat +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Muscat-b5c27f3e6f3e4df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Nicosia +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Nicosia-6a9c73bf16c8aaa3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Novokuznetsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Novokuznetsk-2e224340b7c92ba6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Novosibirsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Novosibirsk-c9541edd9fddb44c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Omsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Omsk-fe17256b26a285c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Oral +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Oral-9925c98e7916ee1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Phnom_Penh +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Phnom-Penh-1a95c9d2b2804b5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Pontianak +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Pontianak-4524f823e222ae31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Pyongyang +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Pyongyang-ba5989c1b27da58e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Qatar +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Qatar-f4aae74afaf49cc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Qostanay +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Qostanay-c855ccd16be31ef2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Qyzylorda +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Qyzylorda-3df6d9a21b7f5fe5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Rangoon +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Rangoon-2ccced84071ea25b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Riyadh +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Riyadh-9c4111075f32b21a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Saigon +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Saigon-91da65835aa971a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Sakhalin +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Sakhalin-926955718186fc96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Samarkand +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Samarkand-9b201456461d298d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Seoul +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Seoul-21890701938195d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Shanghai +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Shanghai-72002c1fab2ac6b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Singapore +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Singapore-0370498d656047ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Srednekolymsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Srednekolymsk-67fa0ead71d03404 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Taipei +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Taipei-b81b7678b5daad70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Tashkent +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Tashkent-3110bf6044c9beeb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Tbilisi +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Tbilisi-3d29edbaed9b8fc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Tehran +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Tehran-aeb96463187db6a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Tel_Aviv +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Tel-Aviv-1e12d53500fe43de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Thimbu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Thimbu-55b5bbac87b14a2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Thimphu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Thimphu-8d2726d5fe198daf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Tokyo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Tokyo-7ee5ee499f2427ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Tomsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Tomsk-78d40efea3283dac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Ujung_Pandang +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Ujung-Pandang-2867f71841cf22ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Ulaanbaatar +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Ulaanbaatar-8b34d5a7d8700043 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Ulan_Bator +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Ulan-Bator-e0a3bb9460447656 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Urumqi +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Urumqi-1c7a4162b493786e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Ust-Nera +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Ust-Nera-4f1d22d54d08c488 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Vientiane +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Vientiane-daf207336cdea015 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Vladivostok +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Vladivostok-57efd17c0a58ca08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Yakutsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Yakutsk-aa1ea76866bd9bb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Yangon +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Yangon-df45b8adcbbb21fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Yekaterinburg +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Yekaterinburg-21a7738a0a4101ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Yerevan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Yerevan-9d1e020687589b14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Azores +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Azores-1147e08d324e17d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Bermuda +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Bermuda-43647d92f468e6d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Canary +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Canary-08b01398d83cf9f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Cape_Verde +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Cape-Verde-944ad4ea783d13d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Faeroe +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Faeroe-5d43bf03000a8163 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Faroe +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Faroe-266ce6243af8bc4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Jan_Mayen +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Jan-Mayen-a67eb7be1b3d26c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Madeira +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Madeira-c8d0ce73fd39384b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Reykjavik +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Reykjavik-020a708a593c7df7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/St_Helena +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-St-Helena-203b57e16808548f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Stanley +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Stanley-df5451a770345f6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/ACT +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-ACT-201c2b776cd1a9a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Adelaide +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Adelaide-02bb9e230fe5f223 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Brisbane +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Brisbane-99c31a488b587c2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Canberra +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Canberra-a9f380d45bc484a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Currie +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Currie-78053081b06d4ba2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Darwin +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Darwin-c0864e0c484054c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Eucla +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Eucla-d1b1c20bab0e7927 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Hobart +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Hobart-3e764c85c1c157d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/LHI +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-LHI-5490f829de19ae23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Lindeman +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Lindeman-3eec59952581475b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Lord_Howe +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Lord-Howe-3ef337ddb4c3f693 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Melbourne +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Melbourne-24dee5f709564c23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/NSW +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-NSW-856341d08b7eb912 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/North +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-North-a40966ef528107e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Perth +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Perth-8371217cf12047c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/South +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-South-0df8fb3712e8da70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Sydney +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Sydney-6c6b0f0b5f374820 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Tasmania +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Tasmania-51448140b3e47c3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Victoria +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Victoria-22d1af21175bae24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/West +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-West-18ed295d22ed1cd3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Brazil/Acre +SPDXID: SPDXRef-File-usr-share-zoneinfo-Brazil-Acre-91df7805b726ccb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Brazil/DeNoronha +SPDXID: SPDXRef-File-usr-share-zoneinfo-Brazil-DeNoronha-36a6fbc8af624685 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Brazil/East +SPDXID: SPDXRef-File-usr-share-zoneinfo-Brazil-East-58b45f1c430e6197 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Brazil/West +SPDXID: SPDXRef-File-usr-share-zoneinfo-Brazil-West-5454132613de2eec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/CET +SPDXID: SPDXRef-File-usr-share-zoneinfo-CET-62bfceef606d61f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/CST6CDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-CST6CDT-5c0f414dca0c263d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Atlantic +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Atlantic-1153dc7a6e58cc8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Central +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Central-b46fbb8e2224b794 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Eastern +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Eastern-9f9c532c1881489a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Mountain +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Mountain-5d731bd4969b475c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Newfoundland +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Newfoundland-46d00f14d2b364c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Pacific +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Pacific-890c10148be33e82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Saskatchewan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Saskatchewan-6fbc2191935affa2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Yukon +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Yukon-ecff106822079bdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Chile/Continental +SPDXID: SPDXRef-File-usr-share-zoneinfo-Chile-Continental-910debf509f542a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Chile/EasterIsland +SPDXID: SPDXRef-File-usr-share-zoneinfo-Chile-EasterIsland-393f0231a60920e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Cuba +SPDXID: SPDXRef-File-usr-share-zoneinfo-Cuba-9e8ac6d0f9abd7ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/EET +SPDXID: SPDXRef-File-usr-share-zoneinfo-EET-26e9936a5af8d1ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/EST +SPDXID: SPDXRef-File-usr-share-zoneinfo-EST-f1b5fa151d52ce31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/EST5EDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-EST5EDT-08cb860d1c1ba1db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Egypt +SPDXID: SPDXRef-File-usr-share-zoneinfo-Egypt-8ec0d4806cdfeea1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Eire +SPDXID: SPDXRef-File-usr-share-zoneinfo-Eire-57daa95a0e7bc272 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-0-c53c5f53cbbc87b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-0-df0d1d88dc23264d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-1 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-1-2adf31daff893c6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+1 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-1-ff0069181e975bf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-10 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-10-8dd578e3f3c18215 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+10 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-10-9175aa1cdd8b48b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-11 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-11-a1cf6ab26382eefa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+11 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-11-c2086c656309d5b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+12 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-12-ab38f130300be930 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-12 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-12-efdf00715db4016d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-13 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-13-e305cc26d1e97076 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-14 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-14-5697affaba3c768f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+2 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-2-63dcf82bd00e621b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-2 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-2-8d4f1cc70f26da4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+3 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-3-5ccd04c593322c54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-3 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-3-f01fd3905d9b144d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-4 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-4-29829823ee5fe4ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+4 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-4-99081208c7e387b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-5 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-5-3850151e2f177aba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+5 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-5-d752d147595a1665 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-6 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-6-7d2bef599e0f1904 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+6 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-6-94468bbd5c81e4cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-7 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-7-e344b37a164e6607 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+7 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-7-e74f4f9de1b3706e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-8 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-8-3d05d78f87852ac1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+8 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-8-970f0f2188587d5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-9 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-9-49a01234e6d2846a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+9 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-9-dcd107f4f4e9b958 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-c07f61f581633097 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT0-4aa8ba12db5baa31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/Greenwich +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-Greenwich-f7b8e018b5f96a8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/UCT +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-UCT-906dd4cc44e2488b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/UTC +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-UTC-cef2b18440be2b49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/Universal +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-Universal-b7f0784a9e3bc300 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/Zulu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-Zulu-faa87798374b9dfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Amsterdam +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Amsterdam-e68d94781cbd43d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Andorra +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Andorra-da2dfd396225f081 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Astrakhan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Astrakhan-7b41217bf4bb92a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Athens +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Athens-6ec7d4ea17c65daf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Belfast +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Belfast-51fdd53e06649d95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Belgrade +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Belgrade-76a08d4003980237 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Berlin +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Berlin-a065c74722873c39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Bratislava +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Bratislava-0481cd006eb762d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Brussels +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Brussels-d5f20cbb66d835fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Bucharest +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Bucharest-2aec9f1dafec6c09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Budapest +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Budapest-2ef1a748afe0fdd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Busingen +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Busingen-9c17217ee2d884ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Chisinau +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Chisinau-c69bb6cf22a3aab0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Copenhagen +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Copenhagen-8981c5295df0e0ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Dublin +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Dublin-2b58bb49f79f51f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Gibraltar +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Gibraltar-2920bd2b7999611d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Guernsey +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Guernsey-a80784a1889f9e71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Helsinki +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Helsinki-a8f6505771b1eff7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Isle_of_Man +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Isle-of-Man-f3e3659b57d2f535 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Istanbul +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Istanbul-7cc78538eb768ef9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Jersey +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Jersey-26217464fe5261b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Kaliningrad +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Kaliningrad-e9899d501c3600a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Kiev +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Kiev-5bc041d608932156 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Kirov +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Kirov-a76a9f653922fd15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Kyiv +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Kyiv-291f3d5076993b3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Lisbon +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Lisbon-f76c29648b4b4a61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Ljubljana +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Ljubljana-3e06798328ee350b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/London +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-London-246723dc606355fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Luxembourg +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Luxembourg-1efe0d4ff6d61d35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Madrid +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Madrid-2d78764e431384c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Malta +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Malta-268bfe1a478f3146 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Mariehamn +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Mariehamn-31188bccfc3a0177 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Minsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Minsk-1620241ca1099350 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Monaco +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Monaco-bd5f51b699deae0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Moscow +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Moscow-1933daa93ce44e2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Nicosia +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Nicosia-f2fc78f6b6ab4c77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Oslo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Oslo-60f535480d74dc66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Paris +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Paris-19536490aafe1d41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Podgorica +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Podgorica-0eabf71968af88b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Prague +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Prague-3a761bc83ccc5eac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Riga +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Riga-0c7914b9293531b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Rome +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Rome-42a510b7d1f55676 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Samara +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Samara-4881a211c0ab8ebf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/San_Marino +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-San-Marino-77ee845c884d8003 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Sarajevo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Sarajevo-0916b3dcb2f76aa2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Saratov +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Saratov-8af843352b418947 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Simferopol +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Simferopol-7e7b40a65fd43fe4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Skopje +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Skopje-0e277ed9604060a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Sofia +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Sofia-d708aa6a7e50b8e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Stockholm +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Stockholm-1d34b7133993b2e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Tallinn +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Tallinn-8009b26ed73bd581 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Tirane +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Tirane-f96cc18187a4fc81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Tiraspol +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Tiraspol-ac7e4623da10a913 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Ulyanovsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Ulyanovsk-80674ff3684b239d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Uzhgorod +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Uzhgorod-c87fb596ea6f7c81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Vaduz +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Vaduz-e21da58e5d2909c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Vatican +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Vatican-6232db13d8bd5b57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Vienna +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Vienna-9b491d2d4ccaf792 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Vilnius +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Vilnius-d4fa6089d240032b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Volgograd +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Volgograd-53818f6ac6aa49ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Warsaw +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Warsaw-4128ca431885bf20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Zagreb +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Zagreb-f20dc3993e34a535 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Zaporozhye +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Zaporozhye-51f5fd6ecf68d958 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Zurich +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Zurich-d99914e5962e535b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/GB +SPDXID: SPDXRef-File-usr-share-zoneinfo-GB-51d2e9887d931d21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/GB-Eire +SPDXID: SPDXRef-File-usr-share-zoneinfo-GB-Eire-6590396946380b5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/GMT+0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-GMT-0-4ad901179383bdc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/GMT-0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-GMT-0-fac9d61cbd3e774a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/GMT +SPDXID: SPDXRef-File-usr-share-zoneinfo-GMT-c739dfbdf01937e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/GMT0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-GMT0-c298a2e6e73d3817 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Greenwich +SPDXID: SPDXRef-File-usr-share-zoneinfo-Greenwich-892aee4bd2cf479b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/HST +SPDXID: SPDXRef-File-usr-share-zoneinfo-HST-a16f8e0b71f13058 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Hongkong +SPDXID: SPDXRef-File-usr-share-zoneinfo-Hongkong-3f0807c4d3747489 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Iceland +SPDXID: SPDXRef-File-usr-share-zoneinfo-Iceland-987d28238ce37b27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Antananarivo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Antananarivo-5d1d29e1891bc3fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Chagos +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Chagos-7fe17e4538cb38ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Christmas +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Christmas-fd4bb7fb9aa102f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Cocos +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Cocos-ec3edb8e2baf30ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Comoro +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Comoro-e15b3d1e1d9066ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Kerguelen +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Kerguelen-6f9670d8f1015fb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Mahe +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Mahe-1c37c8b18e967809 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Maldives +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Maldives-4fd87c560c1a04c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Mauritius +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Mauritius-e145e060347d3b6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Mayotte +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Mayotte-83a6cabb3df54de7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Reunion +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Reunion-3a580ec9f4271474 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Iran +SPDXID: SPDXRef-File-usr-share-zoneinfo-Iran-0b4429c239b44826 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Israel +SPDXID: SPDXRef-File-usr-share-zoneinfo-Israel-f3accc5b5834bfbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Jamaica +SPDXID: SPDXRef-File-usr-share-zoneinfo-Jamaica-87298a51e1bc7166 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Japan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Japan-f15ca447042e77dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Kwajalein +SPDXID: SPDXRef-File-usr-share-zoneinfo-Kwajalein-d563bbd086791581 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Libya +SPDXID: SPDXRef-File-usr-share-zoneinfo-Libya-780a9254d2fc7681 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/MET +SPDXID: SPDXRef-File-usr-share-zoneinfo-MET-3cd59da1990aab21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/MST +SPDXID: SPDXRef-File-usr-share-zoneinfo-MST-3368173408cf4b7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/MST7MDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-MST7MDT-7c7d86a7ef2747fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Mexico/BajaNorte +SPDXID: SPDXRef-File-usr-share-zoneinfo-Mexico-BajaNorte-3d961170a2969258 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Mexico/BajaSur +SPDXID: SPDXRef-File-usr-share-zoneinfo-Mexico-BajaSur-16d1d9492191ec9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Mexico/General +SPDXID: SPDXRef-File-usr-share-zoneinfo-Mexico-General-90d7d0d832dfb1f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/NZ-CHAT +SPDXID: SPDXRef-File-usr-share-zoneinfo-NZ-CHAT-932094120e0b183d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/NZ +SPDXID: SPDXRef-File-usr-share-zoneinfo-NZ-ca5ac15c579c3e01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Navajo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Navajo-3895d6efb7ac9bac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/PRC +SPDXID: SPDXRef-File-usr-share-zoneinfo-PRC-b3790c52aeaca5bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/PST8PDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-PST8PDT-470fc5f124bd67b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Apia +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Apia-643588cb9409b477 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Auckland +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Auckland-6f9587474de18f34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Chatham +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Chatham-7c4888eb36ea237d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Chuuk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Chuuk-3e9198a5c6847fa6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Easter +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Easter-6aea10e63b21784f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Efate +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Efate-938e13c492c907a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Enderbury +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Enderbury-fa9bd3e68836fbf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Fakaofo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Fakaofo-aee7eb2409ec24ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Fiji +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Fiji-7b5e185aa600849f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Funafuti +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Funafuti-3ddc076efde91965 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Galapagos +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Galapagos-8d1c86f32b44c575 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Gambier +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Gambier-07f41ad2ecaea786 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Guadalcanal +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Guadalcanal-364e6dd86506c8ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Guam +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Guam-717cb3ecb9a5caa1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Honolulu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Honolulu-41dcdfdcae87de7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Johnston +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Johnston-c77ad49ab8ea7148 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Kanton +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Kanton-219067de458d1d62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Kiritimati +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Kiritimati-1fb9e4f73350f6fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Kosrae +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Kosrae-758cade5b32b708b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Kwajalein +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Kwajalein-79bba1373c100e82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Majuro +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Majuro-02f5386f67d7f8cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Marquesas +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Marquesas-d4ac91462fa78d5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Midway +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Midway-5ae5785b4966dfcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Nauru +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Nauru-42c96f4a558b05cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Niue +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Niue-5c5394f9a99b260f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Norfolk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Norfolk-d43d74e42fcb3fa8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Noumea +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Noumea-257aef7ec3a8dbb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Pago_Pago +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Pago-Pago-be894274d5d625d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Palau +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Palau-023dc3a4b2d330b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Pitcairn +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Pitcairn-a6297fd5a3b25f7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Pohnpei +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Pohnpei-eaee9b76002f5175 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Ponape +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Ponape-25d1c18134a200c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Rarotonga +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Rarotonga-66ac0ca01c77fb05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Saipan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Saipan-e62bcf7b8ff96d3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Samoa +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Samoa-741f52f6e2294226 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Tahiti +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Tahiti-2785674ce2356037 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Tarawa +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Tarawa-b97929b57d330b2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Tongatapu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Tongatapu-e52e1a231f866b2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Truk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Truk-53014a5b1bf25db1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Wake +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Wake-5824ec52ea1bd91c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Wallis +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Wallis-230fba9ace3c2b41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Yap +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Yap-19d7793ecc39a6af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Poland +SPDXID: SPDXRef-File-usr-share-zoneinfo-Poland-0c107ebfa2ec04cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Portugal +SPDXID: SPDXRef-File-usr-share-zoneinfo-Portugal-b962c0206734f201 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/ROC +SPDXID: SPDXRef-File-usr-share-zoneinfo-ROC-25cf014b3c1522dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/ROK +SPDXID: SPDXRef-File-usr-share-zoneinfo-ROK-68db8c6f045205ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Singapore +SPDXID: SPDXRef-File-usr-share-zoneinfo-Singapore-3b28f28a9a8551dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Turkey +SPDXID: SPDXRef-File-usr-share-zoneinfo-Turkey-04a6b174b2d6c975 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/UCT +SPDXID: SPDXRef-File-usr-share-zoneinfo-UCT-b273e0ce60655708 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Alaska +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Alaska-4b21c26949e02337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Aleutian +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Aleutian-e9a2b36c4daf73ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Arizona +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Arizona-11a739fc43d5c6d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Central +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Central-26c1fab77e10a8a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/East-Indiana +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-East-Indiana-2074371500bcea40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Eastern +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Eastern-2e92a3d8a5053f80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Hawaii +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Hawaii-bb0af169c921bf2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Indiana-Starke +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Indiana-Starke-6d06fadd70a63341 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Michigan +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Michigan-10e1f6a2fc6f1fc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Mountain +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Mountain-76479f575f33d370 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Pacific +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Pacific-15dee03eec155d6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Samoa +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Samoa-0c0cf4da1c455741 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/UTC +SPDXID: SPDXRef-File-usr-share-zoneinfo-UTC-9e23415b179e7e80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Universal +SPDXID: SPDXRef-File-usr-share-zoneinfo-Universal-e83414d8e03daf73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/W-SU +SPDXID: SPDXRef-File-usr-share-zoneinfo-W-SU-e60cdbf81505b08d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/WET +SPDXID: SPDXRef-File-usr-share-zoneinfo-WET-bcd79e4f281897d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Zulu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Zulu-92260da33b6f4f2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/iso3166.tab +SPDXID: SPDXRef-File-usr-share-zoneinfo-iso3166.tab-8c7a55f3ff22879d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/leap-seconds.list +SPDXID: SPDXRef-File-usr-share-zoneinfo-leap-seconds.list-aa1b5b92d7dbffdd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/leapseconds +SPDXID: SPDXRef-File-usr-share-zoneinfo-leapseconds-ed5ec5c150cdc474 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Accra +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Accra-35472a3b4ddade71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Asmara +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Asmara-d6ef1ce0409c2cc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Asmera +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Asmera-abd650c63a995cb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Bamako +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Bamako-8df4e25281318b19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Bangui +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Bangui-d03cdb554a4c9b17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Banjul +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Banjul-4b34010267742fa8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Bissau +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Bissau-fb1b19edf0d7aa04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Cairo +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Cairo-ba8cfcad91664531 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Ceuta +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Ceuta-89da3e8ed05c7daa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Dakar +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Dakar-1709828541b698d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Douala +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Douala-4d038aaf9fdb812e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Harare +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Harare-2b838406ac5e4299 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Juba +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Juba-bea70a295a4361df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Kigali +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Kigali-72b8c0d22bfce723 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Lagos +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Lagos-4da90629b73370e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Lome +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Lome-8efed044c61c6490 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Luanda +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Luanda-99a9485d08e2e8d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Lusaka +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Lusaka-a735e3ea1e7b1db5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Malabo +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Malabo-09142a3a8edbaf2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Maputo +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Maputo-c5de490d6899f926 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Maseru +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Maseru-d1a910246b1d8d19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Niamey +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Niamey-e33b9c91c0a76edc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Tunis +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Tunis-454d2cd86962dec6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Adak +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Adak-013d914fa07d1ad6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Aruba +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Aruba-464cf9ca03b172a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Atka +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Atka-41b8524eeace248d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Bahia +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Bahia-015e3518d7d601a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Belem +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Belem-fc4d3ce1fa67a1bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Boise +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Boise-6b1f171fb535fd79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Jujuy +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Jujuy-22b29de1df30daff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Lima +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Lima-6421a1d71b24cd6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Nome +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Nome-db4e5164f025c851 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Nuuk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Nuuk-cb912ed2ad3c38d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Sitka +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Sitka-1ba317ba59b5afdf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Thule +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Thule-0e8b8b61513e9bb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Aden +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Aden-7e9c8fddaa45f6dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Almaty +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Almaty-c74a3ffd617ddc78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Amman +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Amman-46e8c3f76ff8a2d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Anadyr +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Anadyr-7330033c81cb88ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Aqtau +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Aqtau-85c65a3136e62ed6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Aqtobe +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Aqtobe-b406a7f97bfb14ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Ashgabat +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Ashgabat-0aef82807d7a2bfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Atyrau +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Atyrau-a3bfa479b3971f4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Baghdad +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Baghdad-bf7335c0644060e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Bahrain +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Bahrain-a24bc218412d3400 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Baku +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Baku-4c6dc29155afc906 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Bangkok +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Bangkok-a65d947460818570 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Barnaul +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Barnaul-94e95117b4787394 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Beirut +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Beirut-ccc40b569b11c67e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Bishkek +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Bishkek-5065310af17cd5e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Brunei +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Brunei-cf6646e826cbc22a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Calcutta +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Calcutta-27735bed13e399af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Chita +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Chita-990c45e6523e1dda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Colombo +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Colombo-ce628e3dd1e748c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Dacca +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dacca-85860637ad7f71dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Damascus +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Damascus-fad8ad1eafe5d63e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Dhaka +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dhaka-bb9e7ec63b61f276 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Dili +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dili-74cbc3051f5c33d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Dubai +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dubai-f10cbcef7a9cf1ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Dushanbe +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dushanbe-7b9c9f6d4968f1c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Gaza +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Gaza-af1571c1f57767fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Harbin +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Harbin-bb1b9fcbea7c3b7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Hebron +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Hebron-6e44876215173aff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Hovd +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Hovd-2cdadb3fee17c638 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Irkutsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Irkutsk-bc78a06577793c26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Istanbul +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Istanbul-17575eef3a3291d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Jakarta +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Jakarta-8e348b2ff0979487 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Jayapura +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Jayapura-3d538709bfcd53b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kabul +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kabul-b9dedb80610152a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Karachi +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Karachi-416defe194325a42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kashgar +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kashgar-69ee2571570d2277 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Katmandu +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Katmandu-4b83d6659489ca34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Khandyga +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Khandyga-86c3bbd27ecb713e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kolkata +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kolkata-7ab5aa8633c6c502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kuching +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kuching-6b6f0424cd3addea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kuwait +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kuwait-4f0bb8f685116ba5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Macao +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Macao-0754bbcb28e990dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Macau +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Macau-aff66468edb2bb11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Magadan +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Magadan-8d4d9ddd5e6ce9d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Makassar +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Makassar-3abea07201f1e5d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Manila +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Manila-fdbf117a51bce9de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Muscat +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Muscat-65afbbc155b79c17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Nicosia +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Nicosia-6862972a7f5f6166 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Omsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Omsk-7bf5685c3dff4f5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Oral +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Oral-80858a8e11fa804d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Qatar +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Qatar-4b09ef3c6babd48e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Qostanay +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Qostanay-2ab4c62dbb0f1cba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Rangoon +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Rangoon-3b84fe87e6e0cbae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Riyadh +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Riyadh-45e09243aedbad82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Saigon +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Saigon-438174f383716723 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Sakhalin +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Sakhalin-1162960dcdd2dc83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Seoul +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Seoul-60f9a06215973d82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Shanghai +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Shanghai-526f6335b2259104 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Taipei +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Taipei-773968568fa63230 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Tashkent +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tashkent-fae95515cb95f8ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Tbilisi +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tbilisi-a212434f6c04a7c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Tehran +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tehran-5a7fa98750d8c726 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Tel_Aviv +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tel-Aviv-dd7ad1f02aea6454 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Thimbu +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Thimbu-f5b6c0a0b2aa4fac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Thimphu +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Thimphu-17bf43b1d8538e05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Tokyo +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tokyo-8b4b32128481b775 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Tomsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tomsk-52c2237f1185a732 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Urumqi +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Urumqi-499d60b43e850386 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Ust-Nera +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Ust-Nera-9d0d8b49e8368d35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Yakutsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Yakutsk-3810f48e859beca6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Yangon +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Yangon-d39bbe91d9e6f3be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Yerevan +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Yerevan-67d4fe9c56ad9b58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/ACT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Australia-ACT-a20ab4c0e0876ea4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/LHI +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Australia-LHI-1a2bc9f326778c25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/NSW +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Australia-NSW-0331e31cff1d9609 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Brazil/Acre +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Brazil-Acre-b0bd8ad937b77531 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Brazil/East +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Brazil-East-a7cfbf15307a13af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Brazil/West +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Brazil-West-de3548468eef9d16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/CET +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-CET-7bc6fba9df3a43e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/CST6CDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-CST6CDT-b4fd9e520e4dd502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Yukon +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Canada-Yukon-4bda1351952f98f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Cuba +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Cuba-58f3d65572f4eb45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/EET +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-EET-e5cebc84f0f5e7be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/EST +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-EST-5a0209e81490fe5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/EST5EDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-EST5EDT-3e8566e58fe2c564 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Egypt +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Egypt-c0e23811624c7950 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Eire +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Eire-67ab35365cd6127a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-0-5e4f5a8f15b312aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-0-c36b2b8f45e2032c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-1 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-1-144df7ff4407aa96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+1 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-1-e713c56aa924f7a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-10 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-10-2b9c68337a5157dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+10 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-10-477f5b09a6dc4b34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-11 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-11-2e35d83e5d1a40cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+11 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-11-9437439d01a58037 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+12 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-12-4c69523ed27ecf9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-12 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-12-e1d5cf18af6c09ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-13 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-13-9577d534f0e1fadc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-14 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-14-0c579cfcb119922e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-2 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-2-5b907ecab5e48bf3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+2 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-2-b2cd59b4d7c77c3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-2a706eb6c59ffe77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+3 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-3-76aca26f926713c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-3 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-3-de019b8653c19713 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-4 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-4-acb8f2c9c3dd924e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+4 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-4-bcff92c6a1511738 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+5 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-5-97a5056dcfd1a599 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-5 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-5-bb7d0183c1099041 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-6 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-6-a662e2cad9177e4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+6 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-6-faedd473c070466d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-7 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-7-c93d3af8a9dbcb44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+7 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-7-f85f5509f20c3435 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+8 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-8-d5bc5615789db9b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-8 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-8-f81b7f0667e18573 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-9 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-9-1fec84bf32e87402 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+9 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-9-bf0fb8645e02a849 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT0-3e877f1fa7e98819 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/Greenwich +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-Greenwich-6abfe5b8c011c3d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/UCT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-UCT-93c1ddf0eea31941 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/UTC +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-UTC-96868400dd7d81bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/Universal +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-Universal-937bfef42e0254cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/Zulu +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-Zulu-5ef12954b9125c00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Athens +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Athens-d6d18a984d313af6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Berlin +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Berlin-59fa08cef5f4f4f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Dublin +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Dublin-235532ac5bf57be2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Jersey +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Jersey-1a676ab68e5a8ad8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Kiev +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Kiev-61e80adf5fddbbad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Kirov +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Kirov-d343079f25777e38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Kyiv +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Kyiv-6915b4c7a6a81c95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Lisbon +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Lisbon-75096177a14b702c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/London +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-London-93e726a0baf071ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Madrid +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Madrid-fe119658f548a6ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Malta +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Malta-ed69e55e541c8c56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Minsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Minsk-8c1bfc837e7be8e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Monaco +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Monaco-ca2f56ec2ae54e65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Moscow +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Moscow-37a1191c2951728c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Oslo +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Oslo-f89cc3d7b95218dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Paris +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Paris-17d0bf02966f2df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Prague +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Prague-5422ddaa6143b23c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Riga +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Riga-dd4c109f2e01e281 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Rome +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Rome-37062e3eb6ddbb3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Samara +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Samara-f08bb013a41d1a90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Skopje +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Skopje-70d334a464e91064 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Sofia +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Sofia-5a9bcd63aa05866c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Tirane +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Tirane-ddf7ca51bcb03d1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Vaduz +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Vaduz-d45d61469b2f775b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Vienna +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Vienna-708e75796a4e7c11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Warsaw +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Warsaw-0115ee4c707c898e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Zagreb +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Zagreb-0ca1ad9171619b22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Zurich +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Zurich-b26883232ec71c75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/GB-Eire +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-GB-Eire-f94d7805574631cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/GB +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-GB-a2d3c3e1ab387e77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/GMT-0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-GMT-0-67af0d0d503efc49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/GMT+0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-GMT-0-efc7985082dec0ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/GMT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-GMT-47ad46f3e74adbf8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/GMT0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-GMT0-6e1e41f4a6ca905e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Greenwich +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Greenwich-23b95b752e0936ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/HST +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-HST-535d7a438c39faa6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Hongkong +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Hongkong-cd4de9de3d862046 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Iceland +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Iceland-3cc51e65e13ba4a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Chagos +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Indian-Chagos-e95941e8c711003d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Cocos +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Indian-Cocos-f1a8e296000c4054 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Comoro +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Indian-Comoro-d16d537fadbc5166 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Mahe +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Indian-Mahe-a4763d0ebde86708 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Iran +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Iran-5a8f58bc671c42ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Israel +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Israel-2323fb3a2d256c4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Jamaica +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Jamaica-70ee34e14a9217dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Japan +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Japan-754580e4e2086e67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Kwajalein +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Kwajalein-4a0806302f3890a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Libya +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Libya-13a79918eb3b935e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/MET +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-MET-24640c2cdd47585e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/MST +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-MST-64062123ef767c78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/MST7MDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-MST7MDT-00c366afc971a1a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/NZ +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-NZ-31ce4fc18f21b208 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/NZ-CHAT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-NZ-CHAT-cc2b7cc555452129 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Navajo +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Navajo-f5043da34fb69f6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/PRC +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-PRC-38d0929dcdc91144 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/PST8PDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-PST8PDT-55f856f568c39e73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Apia +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Apia-f4d0f752c7086584 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Chuuk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Chuuk-2ac4a1f2913a5e6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Efate +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Efate-9e4a3f89aebc1f8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Fiji +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Fiji-a46a3e7b88955e6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Guam +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Guam-7660466e2ab29afb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Nauru +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Nauru-2c0e1cd0693a7dba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Niue +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Niue-c8b53e5a80e74cc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Palau +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Palau-dd5e2afe7d72b06d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Samoa +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Samoa-ce1920ca156b5ac9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Truk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Truk-b0de0999340923b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Wake +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Wake-344e09fd88454948 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Yap +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Yap-1f507cc07289bae6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Poland +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Poland-eb465867301e1d95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Portugal +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Portugal-0f3cc47a5fd68966 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/ROC +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-ROC-90a2d661c9569338 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/ROK +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-ROK-262e46b2929816c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Singapore +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Singapore-1745cc4f97c3ebff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Turkey +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Turkey-14b55f125aa001b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/UCT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-UCT-21a1d29e5e1db8db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Alaska +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Alaska-01f4b0d40ab7dc28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Aleutian +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Aleutian-43dbb89d7a63753e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Arizona +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Arizona-3d00fc9e1eac2708 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Central +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Central-1509abcf0c62f332 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Eastern +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Eastern-b80a228730a5438a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Hawaii +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Hawaii-319339c882f7438b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Michigan +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Michigan-ba383ec1c00cddfd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Mountain +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Mountain-fb3d146c3d21d461 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Pacific +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Pacific-90c8f9782fd9f216 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Samoa +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Samoa-2fc9a40924f11bb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/UTC +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-UTC-4143142a4203541a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Universal +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Universal-5df1e76fbdf33844 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/W-SU +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-W-SU-de344113da5da2de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/WET +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-WET-570d51419e400a21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Zulu +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Zulu-9d1192080c48fe28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posixrules +SPDXID: SPDXRef-File-usr-share-zoneinfo-posixrules-52ae4f71c6edf4aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Accra +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Accra-d35b4e25af52b33a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Asmara +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Asmara-108e0ddb4821b2eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Asmera +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Asmera-e76c327509c1b7ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Bamako +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Bamako-ba79439521a9c6a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Bangui +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Bangui-0e5d3713f22c401d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Banjul +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Banjul-b61aa7d5282613e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Bissau +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Bissau-1c221c7a17905aa8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Cairo +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Cairo-4862f46b509265fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Ceuta +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Ceuta-efaf41cb4752e7ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Dakar +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Dakar-88222fdcb8fcfacb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Douala +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Douala-72cd9483796db162 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Harare +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Harare-baec36dfc8704334 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Juba +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Juba-4a41097eb172dd6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Kigali +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Kigali-46258ef6e3aaaf1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Lagos +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Lagos-a788a31364f41eec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Lome +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Lome-a78bb7d1dc213075 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Luanda +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Luanda-8dd9f212c3d5250e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Lusaka +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Lusaka-4755a07d29ff3075 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Malabo +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Malabo-1e57803675767ab6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Maputo +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Maputo-93fdc7d163b77b37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Maseru +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Maseru-11b7fceacfb96136 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Niamey +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Niamey-bafbb9f89ff1ff82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Tunis +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Tunis-10b4d7ca6f41bc51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Adak +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Adak-adbfa52b0d4e9aa3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Aruba +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Aruba-621d1c7ed14f6583 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Atka +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Atka-423040b70699eb8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Bahia +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Bahia-0fc48e4982431c66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Belem +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Belem-51556efc948da496 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Boise +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Boise-a737ce434a5bcdf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Jujuy +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Jujuy-f1c4fae62f35d8ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Lima +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Lima-884c85eb91e8204e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Nome +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Nome-f40ed9b257055cb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Nuuk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Nuuk-91d179d1f3dd1c67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Sitka +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Sitka-8a2f4647b566d39e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Thule +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Thule-0c748304cdbba179 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Aden +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Aden-b768b9129fda10c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Almaty +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Almaty-bd435cb0c4c034ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Amman +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Amman-2d6a1e8f88d65c31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Anadyr +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Anadyr-3c960511fcdd47fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Aqtau +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Aqtau-b5d0cccf57108fc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Aqtobe +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Aqtobe-7e2e60c3fda8c102 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Ashgabat +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Ashgabat-ad9d53fee825429a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Atyrau +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Atyrau-b75a4245a691ec88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Baghdad +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Baghdad-01d8a8175839bfd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Bahrain +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Bahrain-a1e04af90ec16537 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Baku +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Baku-0286235926410bba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Bangkok +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Bangkok-9d32b6974c36f821 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Barnaul +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Barnaul-6b01704c60b4d25b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Beirut +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Beirut-be269c915ca60248 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Bishkek +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Bishkek-c406e1204f613950 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Brunei +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Brunei-062fdb6b1bcc31ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Calcutta +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Calcutta-83b875cb03f1ea70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Chita +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Chita-333bd5817f89c73f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Colombo +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Colombo-c1a2402565bb33c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Dacca +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Dacca-ef0d8ee42927ebad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Damascus +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Damascus-5f752eb1c1d23838 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Dhaka +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Dhaka-30cec014e97ccb83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Dili +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Dili-d78599e031b8dec5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Dubai +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Dubai-9e31ee55e21762e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Dushanbe +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Dushanbe-4053d07a6eb81b72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Gaza +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Gaza-f67f77f9e03dd3d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Harbin +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Harbin-6661de30a0204d70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Hebron +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Hebron-e6053ee9b858f2de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Hovd +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Hovd-ba56764975f0a45e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Irkutsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Irkutsk-850cd9a46d755e5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Istanbul +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Istanbul-6e732c690e1c0e77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Jakarta +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Jakarta-2991879746649a4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Jayapura +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Jayapura-f60f4fc2e81816f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kabul +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Kabul-61be725119ff0019 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Karachi +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Karachi-23243538b76889bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kashgar +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Kashgar-580b124d1ceedef4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Katmandu +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Katmandu-d0d3e795b2606ccd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Khandyga +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Khandyga-1889556fafd481df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kolkata +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Kolkata-f4100ba843feb3c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kuching +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Kuching-e9c3c540281373c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kuwait +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Kuwait-c80ac9c0dcd0051d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Macao +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Macao-a02cad65076117aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Macau +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Macau-80cd147d8134efe7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Magadan +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Magadan-0082357688edb68f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Makassar +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Makassar-a0b6c79de3c769b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Manila +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Manila-1d4b672014c59333 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Muscat +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Muscat-a10c69bc43ce1fe4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Nicosia +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Nicosia-580795629bb3205c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Omsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Omsk-20301fe9591ece91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Oral +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Oral-4b39a377ae3bf5d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Qatar +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Qatar-0a4fd2c8fcc88812 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Qostanay +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Qostanay-b161517c36141812 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Rangoon +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Rangoon-9d6f78257236f210 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Riyadh +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Riyadh-aa3c1ad832595979 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Saigon +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Saigon-6b069e554143f1e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Sakhalin +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Sakhalin-09efa9be0f09c3f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Seoul +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Seoul-2a602ccdc4845dbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Shanghai +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Shanghai-4d5f8e4eceaaae24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Taipei +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Taipei-2b755866e7d8b336 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Tashkent +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Tashkent-0fe2de6373fbb939 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Tbilisi +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Tbilisi-a45329db137c6e5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Tehran +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Tehran-543f32c1efd57e1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Tel_Aviv +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Tel-Aviv-a4390f8a80782a0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Thimbu +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Thimbu-dce2eeed2bd27688 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Thimphu +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Thimphu-58e1a336ec8207d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Tokyo +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Tokyo-51b3a71fe124da0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Tomsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Tomsk-58d11efa51b24e28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Urumqi +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Urumqi-4463d266ec284c81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Ust-Nera +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Ust-Nera-1754ef6e12ae3fa4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Yakutsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Yakutsk-d67004226137393f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Yangon +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Yangon-89632d752e95bbab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Yerevan +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Yerevan-377ba20d8d2345b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/ACT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Australia-ACT-1dbc106844b1c3c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/LHI +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Australia-LHI-0ae0b40ff4e7dada +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/NSW +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Australia-NSW-9fd6127320584926 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Brazil/Acre +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Brazil-Acre-d75ffbce10d4eada +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Brazil/East +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Brazil-East-dd6e8c14e0ece3c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Brazil/West +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Brazil-West-79e5a17cd8eb1f3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/CET +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-CET-eaaa87321f866292 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/CST6CDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-CST6CDT-8e47d03ec8d76a04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Yukon +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Canada-Yukon-1cdbd81a676c6558 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Cuba +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Cuba-e918976becca4cd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/EET +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-EET-8345e008a2843d16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/EST +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-EST-4d1b9ae80facc188 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/EST5EDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-EST5EDT-6116226833a90880 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Egypt +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Egypt-7e1d7274f6960a71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Eire +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Eire-1c08c52afcb4be65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-0-06aae8efaf00524b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-0-9b1c00da20caa601 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+1 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-1-ca0a712f99e32df8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-1 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-1-ec6982b2a2172134 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-10 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-10-4383eda2848aad7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+10 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-10-517d27986ddfd61c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+11 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-11-649e502fd9f8b908 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-11 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-11-a8df065c5bdc1caf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-12 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-12-1748451f3712b64a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+12 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-12-2fb15230c176976e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-13 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-13-d6f735de940b4df4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-14 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-14-53dfb2e022ef32aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-2 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-2-25f086c750889259 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+2 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-2-c843cc9009d01d9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-3 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-3-8c57f75ac59f678d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+3 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-3-d3d718743c9f9599 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+4 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-4-18c133d8eb5f2a9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-4 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-4-dba0788a1f0e2c70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-5 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-5-889b834d65e2e5ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+5 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-5-a79858945570dc70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-6 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-6-3b98429817250f83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+6 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-6-e6b47f5f87fa6241 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-69739dfdee06b830 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+7 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-7-081d8cc465c090ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-7 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-7-23244af0b5120335 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+8 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-8-38a34c169fc5a24d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-8 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-8-fd19f00d6d414d85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+9 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-9-10f0fb4e5732619a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-9 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-9-12d6724675fa5be7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT0-fac85ed1531168c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/Greenwich +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-Greenwich-b395830de260bad4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/UCT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-UCT-29f898e4d8fa055f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/UTC +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-UTC-b1259359b4378936 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/Universal +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-Universal-cef5e0bd76ab90ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/Zulu +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-Zulu-8b985e439b088880 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Athens +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Athens-19f0f0004784db2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Berlin +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Berlin-ff3c4c572d1b7fa8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Dublin +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Dublin-19e52b9324a96c88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Jersey +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Jersey-2d7c7a3d1dd274eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Kiev +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Kiev-8d27e4884e7aaab9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Kirov +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Kirov-f60de5d7eca277eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Kyiv +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Kyiv-47994db90d0f8271 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Lisbon +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Lisbon-b0f61e1d4fbab911 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/London +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-London-8312a657da639b2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Madrid +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Madrid-98b7daa0b03e2c30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Malta +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Malta-346e2fe80ca553ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Minsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Minsk-a4b717635b2fc2aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Monaco +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Monaco-9b024aa55f55dea3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Moscow +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Moscow-666d5bb1665d9b3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Oslo +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Oslo-64d7436737292b26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Paris +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Paris-727aefc051221ba4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Prague +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Prague-d6eaf29e3f3a2c76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Riga +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Riga-df210f363d0e0cb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Rome +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Rome-8f869860d9a7f32f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Samara +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Samara-6d38d7ae9a19aa8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Skopje +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Skopje-a1dd47e04244f39a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Sofia +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Sofia-8297bbb21a47279e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Tirane +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Tirane-c26248af8fc07064 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Vaduz +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Vaduz-6399fe450c11ccf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Vienna +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Vienna-5e2f37b9b5e79f50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Warsaw +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Warsaw-313e03a59459df5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Zagreb +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Zagreb-4557e54abb2e55cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Zurich +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Zurich-47b3878072e84128 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/GB +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-GB-635a2e0237a3cbf7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/GB-Eire +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-GB-Eire-1565f07ef971ced6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/GMT-0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-GMT-0-2f7bbb58ac71d6f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/GMT+0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-GMT-0-be5232ef2c6d8c0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/GMT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-GMT-33e9aa11cd5885f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/GMT0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-GMT0-76eb0da79433643d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Greenwich +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Greenwich-8bb80866ad4e6533 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/HST +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-HST-c74d531a1a26ad6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Hongkong +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Hongkong-86847aebaf4f1246 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Iceland +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Iceland-40cc8cd95d56fe8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Chagos +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Indian-Chagos-b44572a450a0f80b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Cocos +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Indian-Cocos-5e26a7ba9f942258 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Comoro +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Indian-Comoro-591a16a4ccdae862 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Mahe +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Indian-Mahe-eb6cb9925197e241 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Iran +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Iran-6d570c99b1995144 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Israel +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Israel-e379158171887084 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Jamaica +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Jamaica-3627ffd003a361d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Japan +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Japan-9c93bdc7bb4c2412 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Kwajalein +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Kwajalein-81b62ed0539c9b52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Libya +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Libya-b25de5ca2cd5a439 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/MET +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-MET-000209debf32d521 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/MST +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-MST-49cfb0bcf4419a57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/MST7MDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-MST7MDT-f96ff3e1fc11f3ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/NZ +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-NZ-514728702c80b2a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/NZ-CHAT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-NZ-CHAT-5f0597ae3dfa60f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Navajo +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Navajo-08e88cfdfff16878 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/PRC +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-PRC-5a13e8813c7c1c13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/PST8PDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-PST8PDT-4602163d7aa7d075 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Apia +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Apia-2685d47955771160 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Chuuk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Chuuk-a490f110773cb7cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Efate +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Efate-200bf72242205191 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Fiji +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Fiji-e8c2813f7bf5f76c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Guam +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Guam-3d2e00a47fbd6fd3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Nauru +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Nauru-8f327c8d15d9c198 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Niue +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Niue-210cf11541d79ac3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Palau +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Palau-3608ae6589178a51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Samoa +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Samoa-2b90ad239bc964bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Truk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Truk-dde8f3f7e3209dd2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Wake +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Wake-8f18b6eefc1e6863 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Yap +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Yap-46d386603ff28a3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Poland +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Poland-757026fbe68680e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Portugal +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Portugal-7dd7eea79b7bbf9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/ROC +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-ROC-666c13058413cc99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/ROK +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-ROK-09254b090ed34351 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Singapore +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Singapore-9ff5933e02286c93 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Turkey +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Turkey-c79cf4b76a072618 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/UCT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-UCT-137bf97f3363cb22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Alaska +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Alaska-eb3ce691a44950d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Aleutian +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Aleutian-d375c2fcca0252e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Arizona +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Arizona-2842ae6c00f723c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Central +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Central-67447bde0f9c4073 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Eastern +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Eastern-04e89206574110f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Hawaii +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Hawaii-807221df948060b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Michigan +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Michigan-f54e1c916d9a0431 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Mountain +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Mountain-2a564386078f9c21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Pacific +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Pacific-9a9c4db000f39fda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Samoa +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Samoa-13f8f6f4672faebe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/UTC +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-UTC-4570f6de40469f1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Universal +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Universal-64d78b24d5f3b9f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/W-SU +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-W-SU-c382a06ea74a8f78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/WET +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-WET-bce8c94782109871 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Zulu +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Zulu-627976a30f13eb68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/tzdata.zi +SPDXID: SPDXRef-File-usr-share-zoneinfo-tzdata.zi-1a9ae2057bbf8f02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/zone.tab +SPDXID: SPDXRef-File-usr-share-zoneinfo-zone.tab-e8055321d356644e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/zone1970.tab +SPDXID: SPDXRef-File-usr-share-zoneinfo-zone1970.tab-07a98333bb6ccc05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_busctl +SPDXID: SPDXRef-File-usr-share-zsh-site-functions--busctl-52976729c76be3b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_curl +SPDXID: SPDXRef-File-usr-share-zsh-site-functions--curl-b56b385ca9f3c90c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_loginctl +SPDXID: SPDXRef-File-usr-share-zsh-site-functions--loginctl-7180243402407104 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemd +SPDXID: SPDXRef-File-usr-share-zsh-site-functions--systemd-fcd0017775beb102 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /var/cache/dnf/packages.db +SPDXID: SPDXRef-File-var-cache-dnf-packages.db-8df50c35e25349ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +FileName: /var/cache/ldconfig/aux-cache +SPDXID: SPDXRef-File-var-cache-ldconfig-aux-cache-fa12b0fd3a460fab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:ae8ca4ad3728bc07e1f5c89dff6565942d9109266a15e7c45a983d6130a2615a + +FileName: /var/lib/rpm/__db.001 +SPDXID: SPDXRef-File-var-lib-rpm---db.001-fba0623d0a8391d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +FileName: /var/lib/rpm/__db.002 +SPDXID: SPDXRef-File-var-lib-rpm---db.002-fb895eea6da2d1d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +FileName: /var/lib/rpm/__db.003 +SPDXID: SPDXRef-File-var-lib-rpm---db.003-3e496f62e4fc12d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +FileName: /var/lib/rpm/Basenames +SPDXID: SPDXRef-File-var-lib-rpm-Basenames-1e8d242de9e8ccbc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Conflictname +SPDXID: SPDXRef-File-var-lib-rpm-Conflictname-4ae4e37472c7390e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Dirnames +SPDXID: SPDXRef-File-var-lib-rpm-Dirnames-8048d3bd44bebf7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Group +SPDXID: SPDXRef-File-var-lib-rpm-Group-85e82b7f69e79be1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Installtid +SPDXID: SPDXRef-File-var-lib-rpm-Installtid-2e88407d08a91510 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Name +SPDXID: SPDXRef-File-var-lib-rpm-Name-429f333e5847d3f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Obsoletename +SPDXID: SPDXRef-File-var-lib-rpm-Obsoletename-0a002bd80923378b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Packages +SPDXID: SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Providename +SPDXID: SPDXRef-File-var-lib-rpm-Providename-194bb06f4d5ac255 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Requirename +SPDXID: SPDXRef-File-var-lib-rpm-Requirename-11e7c6ce0b01e781 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Sha1header +SPDXID: SPDXRef-File-var-lib-rpm-Sha1header-91fc8c66fa9b878e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Sigmd5 +SPDXID: SPDXRef-File-var-lib-rpm-Sigmd5-455e32ded7479296 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Triggername +SPDXID: SPDXRef-File-var-lib-rpm-Triggername-76ed42315129371d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/systemd/catalog/database +SPDXID: SPDXRef-File-var-lib-systemd-catalog-database-e34c9b8d121e62a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /var/log/dnf.librepo.log +SPDXID: SPDXRef-File-var-log-dnf.librepo.log-ad6b7fec418d15b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +FileName: /var/log/dnf.log +SPDXID: SPDXRef-File-var-log-dnf.log-b04fd137817fe243 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +FileName: /var/log/dnf.rpm.log +SPDXID: SPDXRef-File-var-log-dnf.rpm.log-cc0590da116b02c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +FileName: /var/log/hawkey.log +SPDXID: SPDXRef-File-var-log-hawkey.log-ac57c936cbd2e4c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +##### Package: quay.alldcs.nl/allard/olproperties + +PackageName: quay.alldcs.nl/allard/olproperties +SPDXID: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties +PackageVersion: master +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +PrimaryPackagePurpose: CONTAINER +FilesAnalyzed: false +PackageChecksum: SHA256: c7e4f6cf8d22d75928fd04c44585176b4dbb24b466b62c17a24da865ccb6cb6c +ExternalRef: PACKAGE-MANAGER purl pkg:oci/quay.alldcs.nl/allard/olproperties@sha256:c7e4f6cf8d22d75928fd04c44585176b4dbb24b466b62c17a24da865ccb6cb6c?arch=amd64&tag=master + +##### Package: java + +PackageName: java +SPDXID: SPDXRef-Package-binary-java-d9e23e0b1de302e4 +PackageVersion: 17.0.8.1+1 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from the following paths: /opt/java/openjdk/bin/java +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:oracle:openjdk:17.0.8.1\+1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java:java:17.0.8.1\+1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:generic/java@17.0.8.1+1 + +##### Package: Apache Commons Daemon Service Runner + +PackageName: Apache Commons Daemon Service Runner +SPDXID: SPDXRef-Package-dotnet-Apache-Commons-Daemon-Service-Runner-108b9d9123e75ddd +PackageVersion: 1.2.2.0 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from dotnet project assets file: /opt/ol/wlp/bin/tools/win/prunsrv.exe +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Apache_Commons_Daemon_Service_Runner:Apache_Commons_Daemon_Service_Runner:1.2.2.0:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:nuget/Apache%20Commons%20Daemon%20Service%20Runner@1.2.2.0 + +##### Package: boot-proxy + +PackageName: boot-proxy +SPDXID: SPDXRef-Package-java-archive-boot-proxy-1aba7eb0d811ebb9 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2de77cbb170cd3982dd4f6a9b889f256f161323a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/output/defaultServer/workarea/org.eclipse.osgi/201/data/boot-proxy.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot-proxy:boot-proxy:*:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot-proxy:boot_proxy:*:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot_proxy:boot-proxy:*:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot_proxy:boot_proxy:*:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot-proxy:*:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot_proxy:*:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/boot-proxy/boot-proxy + +##### Package: bootstrap-agent + +PackageName: bootstrap-agent +SPDXID: SPDXRef-Package-java-archive-bootstrap-agent-df89313d7d4ebec4 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e1ea9927a0e6325988beca765c41ed0ce2ac741e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/bootstrap-agent.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap-agent:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap-agent:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap_agent:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap_agent:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap-agent:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap_agent:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap-agent:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap_agent:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap-agent:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap_agent:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap-agent:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap_agent:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.kernel.instrument.check/bootstrap-agent@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.json4j + +PackageName: com.ibm.json4j +SPDXID: SPDXRef-Package-java-archive-com.ibm.json4j-cfae675b723f2735 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 671d21e0c22890a6410bcfc9d6551efb729add36 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.json4j_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.json4j:com.ibm.json4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.json4j:json4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json4j:com.ibm.json4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.json4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json4j:json4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:json4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.json4j@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.rls.jdbc.jakarta + +PackageName: com.ibm.rls.jdbc.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.rls.jdbc.jakarta-75e3781a87aab322 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: eb89149715a9ff75af7239c598722566c9baa5e2 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.rls.jdbc.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.rls.jdbc.jakarta:com.ibm.rls.jdbc.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.rls.jdbc.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.rls.jdbc.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.rls.jdbc.jakarta:jdbc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdbc:com.ibm.rls.jdbc.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.rls.jdbc.jakarta:rls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.rls.jdbc.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rls:com.ibm.rls.jdbc.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jdbc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdbc:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:rls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rls:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdbc:jdbc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jdbc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdbc:rls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rls:jdbc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:rls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rls:rls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.rls.jdbc.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.tx.jta.jakarta + +PackageName: com.ibm.tx.jta.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.tx.jta.jakarta-f61867c065c3c5fe +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1cecced4edb1ae1d92de14835e6e4ec4b75ee6b9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.tx.jta.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.jta.jakarta:com.ibm.tx.jta.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:TxBundleTools:com.ibm.tx.jta.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.jta.jakarta:TxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.jta.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.tx.jta.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:TxBundleTools:TxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.jta.jakarta:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:com.ibm.tx.jta.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.jta.jakarta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.tx.jta.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:com.ibm.tx.jta.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.jta.jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:com.ibm.tx.jta.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:TxBundleTools:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:TxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:TxBundleTools:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:TxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:TxBundleTools:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:TxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:TxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:TxBundleTools:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:TxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.tx.jta.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.tx.util.jakarta + +PackageName: com.ibm.tx.util.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.tx.util.jakarta-22a2d52242f0b82a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cad52d8a6aace0d665f8f6008bc7ab818569e48c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.tx.util.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.util.jakarta:com.ibm.tx.util.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.util.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.tx.util.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.util.jakarta:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:com.ibm.tx.util.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.tx.util.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.util.jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:com.ibm.tx.util.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.tx.util.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.basics + +PackageName: com.ibm.websphere.appserver.api.basics +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.basics-9f1f28ba07ffddec +PackageVersion: 1.4.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d6b90ea373ebf3613d8d870f096043e1eb658912 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.basics_1.4.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.basics:com.ibm.websphere.appserver.api.basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.basics:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.basics:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basics:com.ibm.websphere.appserver.api.basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.basics:basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.basics:api:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basics:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basics:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basics:basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basics:api:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.basics@1.4.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.config + +PackageName: com.ibm.websphere.appserver.api.config +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.config-66ddfec1c99641dc +PackageVersion: 1.2.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cd2ead89d62580864af3476b3d3c1d6ce142a3ea +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.config_1.2.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.config:com.ibm.websphere.appserver.api.config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.config:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.config:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.config:config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.websphere.appserver.api.config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.config:api:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:api:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.config@1.2.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.distributedMap + +PackageName: com.ibm.websphere.appserver.api.distributedMap +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.distributedMap-ade50b3b5247ec64 +PackageVersion: 2.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2b711c9bc138a9647fc2da8917d3f2c38636d5c2 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.distributedMap_2.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:com.ibm.websphere.appserver.api.distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distributedMap:com.ibm.websphere.appserver.api.distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distributedMap:distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distributedMap:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distributedMap:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distributedMap:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.distributedMap@2.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.endpoint + +PackageName: com.ibm.websphere.appserver.api.endpoint +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.endpoint-66ab3ac228472eda +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 359b018521cfe04e906f8f423016e72401c19e98 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.endpoint_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:com.ibm.websphere.appserver.api.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:endpoint:com.ibm.websphere.appserver.api.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:endpoint:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:endpoint:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:endpoint:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:endpoint:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.endpoint@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.hpel + +PackageName: com.ibm.websphere.appserver.api.hpel +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.hpel-c429f58b8034c2cc +PackageVersion: 2.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ec948f859cc07ddf7dcad3b67dd40699d02aca1c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.hpel_2.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:com.ibm.websphere.appserver.api.hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:com.ibm.websphere.appserver.api.hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.hpel@2.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.json + +PackageName: com.ibm.websphere.appserver.api.json +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.json-cc9cae007144d249 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cd334eab216545b357b2272f722b4db8eb5a7e99 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.json_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.json:com.ibm.websphere.appserver.api.json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.json:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.json:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.json:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:com.ibm.websphere.appserver.api.json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.json:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.json@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.kernel.service + +PackageName: com.ibm.websphere.appserver.api.kernel.service +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.kernel.service-d939ed5bedb62843 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 403c6043d6d4b77a5320954ebe22c349403eff9d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.kernel.service_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:com.ibm.websphere.appserver.api.kernel.service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.kernel.service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.kernel.service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.websphere.appserver.api.kernel.service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.websphere.appserver.api.kernel.service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.kernel.service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.kernel.service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.kernel.service@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.monitor + +PackageName: com.ibm.websphere.appserver.api.monitor +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.monitor-e1a15f5cd55c4cbd +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 01d6ca956231ad5e637b3f41bfc9b7cb9f7ac2c0 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.monitor_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:com.ibm.websphere.appserver.api.monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:com.ibm.websphere.appserver.api.monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.monitor@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.security.spnego + +PackageName: com.ibm.websphere.appserver.api.security.spnego +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.security.spnego-4ae53050e4fe0d56 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 826b2e6e9e2962f90546999a7bf7906c396602ec +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.security.spnego_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:com.ibm.websphere.appserver.api.security.spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.security.spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.security.spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.websphere.appserver.api.security.spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spnego:com.ibm.websphere.appserver.api.security.spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.security.spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.security.spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spnego:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spnego:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spnego:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spnego:spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spnego:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.security.spnego@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.sessionstats + +PackageName: com.ibm.websphere.appserver.api.sessionstats +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.sessionstats-2a94d6299aad479a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 22815e77ef2c1679ed1a5b75abf3094674d7e245 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.sessionstats_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:com.ibm.websphere.appserver.api.sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sessionstats:com.ibm.websphere.appserver.api.sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sessionstats:sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sessionstats:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sessionstats:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sessionstats:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.sessionstats@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.ssl + +PackageName: com.ibm.websphere.appserver.api.ssl +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.ssl-1b9b8e246bb01d2c +PackageVersion: 1.5.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 39beb4dca62e7ee4d4d6a41cb6a0fe925838faae +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.ssl_1.5.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:com.ibm.websphere.appserver.api.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:api:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:com.ibm.websphere.appserver.api.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:api:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.ssl@1.5.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.anno + +PackageName: com.ibm.websphere.appserver.spi.anno +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.anno-3fb825ea1e85acd7 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6f1f5157ed3c55c59226c37a4366b5de8cd26e0f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.anno_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:com.ibm.websphere.appserver.spi.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:com.ibm.websphere.appserver.spi.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.anno@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.application + +PackageName: com.ibm.websphere.appserver.spi.application +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.application-748abe5518b3314e +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 93e5a263fe39639ae355f7aa9ce3ecfc8b37377b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.application_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.application:com.ibm.websphere.appserver.spi.application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:application:com.ibm.websphere.appserver.spi.application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.application:application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.application:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.application:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.application:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:application:application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:application:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:application:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:application:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.application@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.artifact + +PackageName: com.ibm.websphere.appserver.spi.artifact +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.artifact-2173cd741b62f5a5 +PackageVersion: 1.2.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 4294c45e7247858312f3b1fa2421af517952e919 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.artifact_1.2.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:com.ibm.websphere.appserver.spi.artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.websphere.appserver.spi.artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:spi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:spi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.artifact@1.2.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.classloading + +PackageName: com.ibm.websphere.appserver.spi.classloading +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.classloading-75c7e061c7ba2305 +PackageVersion: 1.4.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 02857642dbd4049e3b5b546c2b9bdbc5de401e1b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.classloading_1.4.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:com.ibm.websphere.appserver.spi.classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:com.ibm.websphere.appserver.spi.classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:spi:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:spi:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.classloading@1.4.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.containerServices + +PackageName: com.ibm.websphere.appserver.spi.containerServices +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.containerServices-32bf4b13c197596c +PackageVersion: 4.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ff1677ce2adaf676c2836fe1758e57e65c734258 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.containerServices_4.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:com.ibm.websphere.appserver.spi.containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:containerServices:com.ibm.websphere.appserver.spi.containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:appserver:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:websphere:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:spi:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:containerServices:containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:containerServices:appserver:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:containerServices:websphere:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:containerServices:spi:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.containerServices@4.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.httptransport + +PackageName: com.ibm.websphere.appserver.spi.httptransport +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.httptransport-d8fb12885ef56ff7 +PackageVersion: 4.2.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 41d269555163fb3692e1c2d38ca4e4f054b4add0 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.httptransport_4.2.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:com.ibm.websphere.appserver.spi.httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:httptransport:com.ibm.websphere.appserver.spi.httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:appserver:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:websphere:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:spi:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:httptransport:httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:httptransport:appserver:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:httptransport:websphere:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:httptransport:spi:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.httptransport@4.2.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.javaeedd + +PackageName: com.ibm.websphere.appserver.spi.javaeedd +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.javaeedd-8aaadc0ff19db6ad +PackageVersion: 1.7.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 72049f13a798727af28394f94d827cb638f14306 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.javaeedd_1.7.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:com.ibm.websphere.appserver.spi.javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:appserver:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:websphere:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaeedd:com.ibm.websphere.appserver.spi.javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:spi:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaeedd:appserver:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaeedd:websphere:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaeedd:javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaeedd:spi:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.javaeedd@1.7.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.kernel.embeddable + +PackageName: com.ibm.websphere.appserver.spi.kernel.embeddable +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.embeddable-3b8d907fb16b2e94 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: fe61b7ede706688cebe2a2dd3d57b6cf0620a52f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.embeddable_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.embeddable@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.kernel.filemonitor + +PackageName: com.ibm.websphere.appserver.spi.kernel.filemonitor +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.filemonitor-ff50a675f87deefb +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f8779aff6c0004745b77829c0f167377d4fadf3b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.filemonitor_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.filemonitor@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.kernel.metatype + +PackageName: com.ibm.websphere.appserver.spi.kernel.metatype +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.metatype-e2bb1263effc3a69 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 29d6b191e31c1681b04b62a067e88b17ebc58a90 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.metatype_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.metatype@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.kernel.service + +PackageName: com.ibm.websphere.appserver.spi.kernel.service +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.service-421932a8e40184c4 +PackageVersion: 1.8.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 018f74fd2fb7216a0f135724cf7a7fe4d169e835 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.service_1.8.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:com.ibm.websphere.appserver.spi.kernel.service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.kernel.service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:appserver:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:websphere:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.kernel.service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.websphere.appserver.spi.kernel.service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:kernel:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.websphere.appserver.spi.kernel.service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:spi:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.kernel.service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.kernel.service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:appserver:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:websphere:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:kernel:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:appserver:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:websphere:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:kernel:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:kernel:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:spi:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:spi:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:kernel:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.service@1.8.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.logging + +PackageName: com.ibm.websphere.appserver.spi.logging +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.logging-d6690f2ff1085822 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cfef2f02bdba998faece9efda283dccd5540d71b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.logging_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:com.ibm.websphere.appserver.spi.logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:com.ibm.websphere.appserver.spi.logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.logging@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.ssl + +PackageName: com.ibm.websphere.appserver.spi.ssl +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.ssl-3a6d9f1416bf3550 +PackageVersion: 1.5.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 280ebc20e8c622adddc568fec386cdd760c52f18 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.ssl_1.5.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:com.ibm.websphere.appserver.spi.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:spi:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:com.ibm.websphere.appserver.spi.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:spi:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.ssl@1.5.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.threading + +PackageName: com.ibm.websphere.appserver.spi.threading +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.threading-cbfaa03416eb5740 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1bddc89a6817160c5c7269b11fe9877f00e0b422 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.threading_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:com.ibm.websphere.appserver.spi.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:com.ibm.websphere.appserver.spi.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.threading@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.transaction + +PackageName: com.ibm.websphere.appserver.spi.transaction +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.transaction-40203f0f030d57c8 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 91eba92a32263b556019227acc644b65154419d0 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.transaction_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:com.ibm.websphere.appserver.spi.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:com.ibm.websphere.appserver.spi.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.transaction@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.javaee.activity.1.0 + +PackageName: com.ibm.websphere.javaee.activity.1.0 +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.javaee.activity.1.0-539b5585a68d881c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: fc346222f84c758ad8abfd77c8ec1fb0666b23cb +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/com.ibm.websphere.javaee.activity.1.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:com.ibm.websphere.javaee.activity.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.javaee.activity.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activity:com.ibm.websphere.javaee.activity.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:activity:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.websphere.javaee.activity.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.javaee.activity.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:com.ibm.websphere.javaee.activity.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.websphere.javaee.activity.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activity:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:activity:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activity:activity:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activity:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:activity:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:activity:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:activity:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:activity:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activity:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activity:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.javaee.activity.1.0@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.javaee.jcache.1.1.core.jakarta + +PackageName: com.ibm.websphere.javaee.jcache.1.1.core.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.javaee.jcache.1.1.core.jakarta-a1abca5528994e35 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 22b1cd581d3d184235c3384c9718e5b859926922 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.websphere.javaee.jcache.1.1.core.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.javaee.jcache.1.1.core.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.javaee.jsonp.1.0 + +PackageName: com.ibm.websphere.javaee.jsonp.1.0 +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.javaee.jsonp.1.0-ad3879053f00036f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 30a6c97ff3351ccbeeb94cb5c752c2507d000bef +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/com.ibm.websphere.javaee.jsonp.1.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:com.ibm.websphere.javaee.jsonp.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.javaee.jsonp.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.websphere.javaee.jsonp.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:com.ibm.websphere.javaee.jsonp.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.javaee.jsonp.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:com.ibm.websphere.javaee.jsonp.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.websphere.javaee.jsonp.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.javaee.jsonp.1.0@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.jsonsupport + +PackageName: com.ibm.websphere.jsonsupport +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.jsonsupport-6dbb9365dfff79bc +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 403bf1230d804e32c363e7c2e4b2dac41e7c31b3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.websphere.jsonsupport_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.jsonsupport:com.ibm.websphere.jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.jsonsupport:jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonsupport:com.ibm.websphere.jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.jsonsupport:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonsupport:jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonsupport:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.jsonsupport@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.org.reactivestreams.reactive-streams.1.0 + +PackageName: com.ibm.websphere.org.reactivestreams.reactive-streams.1.0 +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.org.reactivestreams.reactive-streams.1.0-b58b9bc35a4e1a74 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: dd28585928a10f38d107e21d6419f4887d7535c6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/stable/com.ibm.websphere.org.reactivestreams.reactive-streams.1.0_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.org.reactivestreams.reactive-streams.1.0@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.rest.handler + +PackageName: com.ibm.websphere.rest.handler +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.rest.handler-8d1aec4aea85fc8e +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 117062cabeeb8d01aae4bd098df3e12c1590403b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.websphere.rest.handler_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.rest.handler:com.ibm.websphere.rest.handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.rest.handler:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.rest.handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.rest.handler:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:com.ibm.websphere.rest.handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.rest.handler:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:com.ibm.websphere.rest.handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.rest.handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.rest.handler@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.security + +PackageName: com.ibm.websphere.security +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.security-2d6fc057b2b6172c +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 77cc95fa52298ebf9a62f15df29f989f9b75549c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.websphere.security_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security:com.ibm.websphere.security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.websphere.security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.security@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.security.authentication + +PackageName: com.ibm.websphere.security.authentication +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.security.authentication-6623a069c33c5778 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 53faa379b03427c23ce28364cfa2044000fc380c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.websphere.security.authentication_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.authentication:com.ibm.websphere.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:com.ibm.websphere.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.authentication:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.authentication:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.authentication:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.websphere.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.security.authentication@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.security.impl + +PackageName: com.ibm.websphere.security.impl +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.security.impl-c0196b7635519e5b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 06d42d249b1541bb543b004ba2195815bc91ac97 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.websphere.security.impl_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.impl:com.ibm.websphere.security.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.impl:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.security.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.impl:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.websphere.security.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.impl:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:com.ibm.websphere.security.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.security.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.security.impl@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.adaptable.module + +PackageName: com.ibm.ws.adaptable.module +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.adaptable.module-d193330201a8bc44 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 84d7653c875461405b1677f278afa9f4e1ba2f32 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.adaptable.module_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.adaptable.module:com.ibm.ws.adaptable.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adaptable:com.ibm.ws.adaptable.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.adaptable.module:adaptable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.adaptable.module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:com.ibm.ws.adaptable.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.adaptable.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.adaptable.module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.adaptable.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adaptable:adaptable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adaptable:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:adaptable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:adaptable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adaptable:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:adaptable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.adaptable.module@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.anno + +PackageName: com.ibm.ws.anno +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.anno-9b254ddbce79a975 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 9db780722d9a64eed651c8e5bc8a8f4315bf4428 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.anno_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.anno:com.ibm.ws.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:com.ibm.ws.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.anno:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.anno:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.anno@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.app.manager + +PackageName: com.ibm.ws.app.manager +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.app.manager-b2135968a1d4f442 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e99a635f056c757d0a2fefa606b03bd2dbc1d035 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.app.manager_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager:com.ibm.ws.app.manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager:manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:com.ibm.ws.app.manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:com.ibm.ws.app.manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager:app:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.app.manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.app.manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:app:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:app:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:app:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:app:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.app.manager@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.app.manager.lifecycle + +PackageName: com.ibm.ws.app.manager.lifecycle +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.lifecycle-34c625553449efde +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 9cda205c9e581e3ec636c4d91febb9ffe6a25d6d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.app.manager.lifecycle_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:com.ibm.ws.app.manager.lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lifecycle:com.ibm.ws.app.manager.lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:com.ibm.ws.app.manager.lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:com.ibm.ws.app.manager.lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.app.manager.lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.app.manager.lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lifecycle:lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lifecycle:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lifecycle:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lifecycle:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.app.manager.lifecycle@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.app.manager.module + +PackageName: com.ibm.ws.app.manager.module +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.module-b83da2c1a8fe06d1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f8f3fd86742508ba42ad1780f7d79aef33397870 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.app.manager.module_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.module:com.ibm.ws.app.manager.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.module:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:com.ibm.ws.app.manager.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:com.ibm.ws.app.manager.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:com.ibm.ws.app.manager.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.module:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.app.manager.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.app.manager.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.app.manager.module@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.app.manager.ready + +PackageName: com.ibm.ws.app.manager.ready +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.ready-098086dd3d8df3a3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 70e31f6be9efd51d477ebe976b5ca24983657375 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.app.manager.ready_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.ready:com.ibm.ws.app.manager.ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:AppManagerActivator:com.ibm.ws.app.manager.ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.ready:AppManagerActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:AppManagerActivator:AppManagerActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.ready:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:com.ibm.ws.app.manager.ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.ready:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:com.ibm.ws.app.manager.ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:com.ibm.ws.app.manager.ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.ready:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.app.manager.ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.ready:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.app.manager.ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:AppManagerActivator:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:AppManagerActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:AppManagerActivator:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:AppManagerActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:AppManagerActivator:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:AppManagerActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:AppManagerActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:AppManagerActivator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:AppManagerActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.app.manager.ready@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.app.manager.wab.jakarta + +PackageName: com.ibm.ws.app.manager.wab.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.wab.jakarta-99f6997896fda028 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f83ec61cc677221dce99dc52ef2795d1c3eb2e8e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.app.manager.wab.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:com.ibm.ws.app.manager.wab.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.app.manager.wab.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:com.ibm.ws.app.manager.wab.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:com.ibm.ws.app.manager.wab.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.app.manager.wab.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:com.ibm.ws.app.manager.wab.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.app.manager.wab.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.app.manager.wab.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.app.manager.war.jakarta + +PackageName: com.ibm.ws.app.manager.war.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.war.jakarta-2c425a89cc925a53 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 810d2b51234a2521d0896ad567abb9e53689ca2a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.app.manager.war.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:com.ibm.ws.app.manager.war.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.app.manager.war.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:com.ibm.ws.app.manager.war.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:com.ibm.ws.app.manager.war.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:war:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.app.manager.war.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:war:com.ibm.ws.app.manager.war.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.app.manager.war.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:war:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:war:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:war:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:war:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:war:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:war:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:war:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:war:war:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:war:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:war:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.app.manager.war.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact + +PackageName: com.ibm.ws.artifact +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact-b7b24dc61fcbabde +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6a60943d1782a8ffce61724d22891eff3448781f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact:com.ibm.ws.artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact.bundle + +PackageName: com.ibm.ws.artifact.bundle +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact.bundle-7ca57299f4ce7827 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 87808dbc1c4d91bde56ef7a6b06a720328ac22ca +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact.bundle_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.bundle:com.ibm.ws.artifact.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.bundle:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:com.ibm.ws.artifact.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.bundle:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.bundle:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact.bundle@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact.equinox.module + +PackageName: com.ibm.ws.artifact.equinox.module +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact.equinox.module-95cb364cc6fdeb96 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6a1ba35594c64de9f967ecc3caab82be018ea9ad +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact.equinox.module_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.equinox.module:com.ibm.ws.artifact.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.equinox.module:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.equinox.module:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:com.ibm.ws.artifact.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.equinox.module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:com.ibm.ws.artifact.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.equinox.module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact.equinox.module@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact.file + +PackageName: com.ibm.ws.artifact.file +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact.file-98f364289079cd2b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: bcef01bab2137650f4229529933840c63a993ff5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact.file_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.file:com.ibm.ws.artifact.file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact.file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.file:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.file:file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file:com.ibm.ws.artifact.file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact.file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.file:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact.file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file:file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact.file@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact.loose + +PackageName: com.ibm.ws.artifact.loose +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact.loose-dcb472bff679f387 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ed814cf093242a965833088f83f0cc85cb578f95 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact.loose_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.loose:com.ibm.ws.artifact.loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact.loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.loose:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.loose:loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:loose:com.ibm.ws.artifact.loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact.loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.loose:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact.loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:loose:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:loose:loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:loose:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact.loose@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact.overlay + +PackageName: com.ibm.ws.artifact.overlay +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact.overlay-52e797606b454ca3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 69f1715b4752ad7d854c1a296d74170715a1ecfb +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact.overlay_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.overlay:com.ibm.ws.artifact.overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact.overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.overlay:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.overlay:overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:overlay:com.ibm.ws.artifact.overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact.overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.overlay:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact.overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:overlay:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:overlay:overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:overlay:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact.overlay@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact.url + +PackageName: com.ibm.ws.artifact.url +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact.url-e2baf4271fb4cdcb +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: b80f512680f02c03db3e4004be29e4a1c084b53d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact.url_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.url:com.ibm.ws.artifact.url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact.url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.url:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.url:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact.url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:com.ibm.ws.artifact.url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.url:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact.url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact.url@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact.zip + +PackageName: com.ibm.ws.artifact.zip +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact.zip-327efb05b0ed769a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 44c3d7f17c62fcd3d7cca56f2340fcf1c0bf2058 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact.zip_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.zip:com.ibm.ws.artifact.zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact.zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.zip:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.zip:zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact.zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:zip:com.ibm.ws.artifact.zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.zip:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact.zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:zip:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:zip:zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:zip:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact.zip@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.cdi.interfaces.jakarta + +PackageName: com.ibm.ws.cdi.interfaces.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.cdi.interfaces.jakarta-04ae30f55385e266 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 707282d02a0e30962a3fe0aa57884a3cd85b675d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.cdi.interfaces.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:com.ibm.ws.cdi.interfaces.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:com.ibm.ws.cdi.interfaces.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.cdi.interfaces.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:com.ibm.ws.cdi.interfaces.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.cdi.interfaces.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.cdi.interfaces.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.cdi.interfaces.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.cdi.internal.jakarta + +PackageName: com.ibm.ws.cdi.internal.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.cdi.internal.jakarta-b074d85e1d289f1c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 5a54d849651ccd7e8643925e45127a19eb1bd11e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.cdi.internal.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:com.ibm.ws.cdi.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:com.ibm.ws.cdi.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.cdi.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:com.ibm.ws.cdi.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.cdi.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.cdi.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.cdi.internal.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.cdi.jndi.jakarta + +PackageName: com.ibm.ws.cdi.jndi.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.cdi.jndi.jakarta-5828db872bd83d8d +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6cf45d5a10498c8f8bf097f02b6fe37136e09ff2 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.cdi.jndi.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:com.ibm.ws.cdi.jndi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.cdi.jndi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:com.ibm.ws.cdi.jndi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:com.ibm.ws.cdi.jndi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.cdi.jndi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.cdi.jndi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.cdi.jndi.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.cdi.transaction.jakarta + +PackageName: com.ibm.ws.cdi.transaction.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.cdi.transaction.jakarta-cca3ac184a383b1a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 73f0c09c9ffe1b2f5f677e7a0491bd9310b387a3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.cdi.transaction.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:com.ibm.ws.cdi.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:com.ibm.ws.cdi.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.cdi.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:com.ibm.ws.cdi.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.cdi.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.cdi.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.cdi.transaction.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.cdi.web.jakarta + +PackageName: com.ibm.ws.cdi.web.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.cdi.web.jakarta-11311d79d2229e78 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3796194e175c833349c3b640397b59327ec06978 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.cdi.web.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:com.ibm.ws.cdi.web.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.cdi.web.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:com.ibm.ws.cdi.web.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.cdi.web.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:com.ibm.ws.cdi.web.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.cdi.web.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.cdi.web.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.cdi.weld.jakarta + +PackageName: com.ibm.ws.cdi.weld.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.cdi.weld.jakarta-3fb2f035da57ce2b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 9fec55d2765020b02a0a6166940356aafa32a83f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.cdi.weld.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:com.ibm.ws.cdi.weld.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.cdi.weld.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:com.ibm.ws.cdi.weld.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:com.ibm.ws.cdi.weld.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.cdi.weld.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.cdi.weld.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.cdi.weld.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.channel.ssl + +PackageName: com.ibm.ws.channel.ssl +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.channel.ssl-8d1607111dc76bf7 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 79d3e97c3b0e526cdb94c9f61176539f742347e2 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.channel.ssl_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.channel.ssl:com.ibm.ws.channel.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:channel:com.ibm.ws.channel.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.channel.ssl:channel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.channel.ssl:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.channel.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:com.ibm.ws.channel.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.channel.ssl:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.channel.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:channel:channel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:channel:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:channel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:channel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:channel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:channel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.channel.ssl@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.channelfw + +PackageName: com.ibm.ws.channelfw +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.channelfw-66b968e18db97e3f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8b4330389e02a9bef597fa05001cfa4dacf31e5b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.channelfw_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.channelfw:com.ibm.ws.channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:channelfw:com.ibm.ws.channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.channelfw:channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.channelfw:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:channelfw:channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:channelfw:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.channelfw@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.classloader.context + +PackageName: com.ibm.ws.classloader.context +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.classloader.context-cef214e61d25941e +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f606207cab89407ff74a4d85445c326022b69ca5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.classloader.context_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloader.context:com.ibm.ws.classloader.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloader:com.ibm.ws.classloader.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloader.context:classloader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloader.context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:com.ibm.ws.classloader.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.classloader.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloader.context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.classloader.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloader:classloader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloader:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:classloader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:classloader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:classloader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.classloader.context@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.classloading + +PackageName: com.ibm.ws.classloading +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.classloading-450cd0896f16afba +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ebc8cd298b700627159bdb43c4a3e07dba20c36d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.classloading_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloading:com.ibm.ws.classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:com.ibm.ws.classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloading:classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloading:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.classloading@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.classloading.configuration + +PackageName: com.ibm.ws.classloading.configuration +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.classloading.configuration-bbede9faa7a4ef54 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: adc8b4fc9f11f71bbd839c43a12fe75f960990ff +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.classloading.configuration_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloading.configuration:com.ibm.ws.classloading.configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloading.configuration:configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:configuration:com.ibm.ws.classloading.configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:com.ibm.ws.classloading.configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloading.configuration:classloading:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.classloading.configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloading.configuration:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.classloading.configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:configuration:configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:configuration:classloading:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:classloading:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:configuration:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:classloading:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:classloading:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.classloading.configuration@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.collector.manager + +PackageName: com.ibm.ws.collector.manager +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.collector.manager-a105a18389d8c866 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2e9cfbeaf33018ca0c4e0e2214e98cbee57da4e4 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.collector.manager_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.collector.manager:com.ibm.ws.collector.manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:collector:com.ibm.ws.collector.manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.collector.manager:collector:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.collector.manager:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:com.ibm.ws.collector.manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.collector.manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.collector.manager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.collector.manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:collector:collector:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:collector:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:collector:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:collector:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:collector:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:collector:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.collector.manager@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.config + +PackageName: com.ibm.ws.config +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.config-61e900efa362f9e1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ed9dcd3bf97a70589f9be530ff37918f4ad09e7f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.config_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:WSConfigActivator:WSConfigActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:WSConfigActivator:com.ibm.ws.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config:WSConfigActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config:com.ibm.ws.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:WSConfigActivator:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:WSConfigActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:com.ibm.ws.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:WSConfigActivator:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:WSConfigActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.ws.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:WSConfigActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:WSConfigActivator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:WSConfigActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.config@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.config.schemagen + +PackageName: com.ibm.ws.config.schemagen +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.config.schemagen-5b76b2736b884d7f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ed41eebf63c57874e6e5362fae30608f12c6f935 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.config.schemagen_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen:com.ibm.ws.config.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:com.ibm.ws.config.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.ws.config.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.config.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.config.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.config.schemagen@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.config.schemagen.schemagen + +PackageName: com.ibm.ws.config.schemagen.schemagen +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.config.schemagen.schemagen-1e60349c3d000cd5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-schemagen.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen.schemagen:com.ibm.ws.config.schemagen.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen.schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:com.ibm.ws.config.schemagen.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen.schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.ws.config.schemagen.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.config.schemagen.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen.schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.config.schemagen.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.config.schemagen.schemagen@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.config.server.schemagen + +PackageName: com.ibm.ws.config.server.schemagen +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen-94107ffafc593492 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: adccb56c996d148af7524e4bb3006d0388922c94 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.config.server.schemagen_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen:com.ibm.ws.config.server.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:com.ibm.ws.config.server.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.ws.config.server.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:com.ibm.ws.config.server.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.config.server.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.config.server.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.config.server.schemagen@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.config.server.schemagen.serverschemagen + +PackageName: com.ibm.ws.config.server.schemagen.serverschemagen +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen.serverschemagen-1fed813f3c643120 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.config.server.schemagen_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.config.server.schemagen.serverschemagen@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.config.server.schemagen.serverschemagen + +PackageName: com.ibm.ws.config.server.schemagen.serverschemagen +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen.serverschemagen-216aa4500d7ed9bf +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-serverSchemagen.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.config.server.schemagen.serverschemagen@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.container.service + +PackageName: com.ibm.ws.container.service +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.container.service-260b772a916e1f2e +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2fc2976818c703d940251e393cd313e1052e6f18 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.container.service_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.container.service:com.ibm.ws.container.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.container.service:container:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:container:com.ibm.ws.container.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.container.service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.ws.container.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.container.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.container.service:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.container.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:container:container:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:container:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:container:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:container:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:container:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:container:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.container.service@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.context + +PackageName: com.ibm.ws.context +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.context-922a1685924c2e6b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a33fb4001a9fc0c9b4cf1aa0040113f1a3fae140 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.context_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.context:com.ibm.ws.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:com.ibm.ws.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.context@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.crypto.certificate.creator.selfsigned + +PackageName: com.ibm.ws.crypto.certificate.creator.selfsigned +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.crypto.certificate.creator.selfsigned-cb1e6649f2a5d34a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 46f5176cac0a470384da8ef49f1abffacf54cfaf +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.crypto.certificate.creator.selfsigned_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificate:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:certificate:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:selfsigned:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:creator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:creator:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificate:certificate:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificate:selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:selfsigned:certificate:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:selfsigned:selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificate:creator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:creator:certificate:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificate:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:creator:selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:certificate:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:selfsigned:creator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:selfsigned:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:creator:creator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:certificate:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificate:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:creator:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:creator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:certificate:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:selfsigned:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:creator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:creator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:creator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.crypto.certificate.creator.selfsigned@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.crypto.certificateutil + +PackageName: com.ibm.ws.crypto.certificateutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.crypto.certificateutil-12307a2b3786915d +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3098e9a70394588e389a80b261e537b6504027ea +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.crypto.certificateutil_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificateutil:com.ibm.ws.crypto.certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificateutil:com.ibm.ws.crypto.certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificateutil:certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificateutil:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:com.ibm.ws.crypto.certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.crypto.certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificateutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.crypto.certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificateutil:certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificateutil:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificateutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.crypto.certificateutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.crypto.ltpakeyutil + +PackageName: com.ibm.ws.crypto.ltpakeyutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.crypto.ltpakeyutil-4b995684ce6a3be1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 91864d56f938d69ba929148259e27d7024086e55 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.crypto.ltpakeyutil_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.ltpakeyutil:com.ibm.ws.crypto.ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.ltpakeyutil:ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpakeyutil:com.ibm.ws.crypto.ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.ltpakeyutil:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:com.ibm.ws.crypto.ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.crypto.ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.ltpakeyutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.crypto.ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpakeyutil:ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpakeyutil:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpakeyutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.crypto.ltpakeyutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.crypto.passwordutil + +PackageName: com.ibm.ws.crypto.passwordutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.crypto.passwordutil-459d93e4c1fee5fc +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7fb27157726ef854a9755100e9e3eab3a8420c8a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.crypto.passwordutil_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.passwordutil:com.ibm.ws.crypto.passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.passwordutil:passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:passwordutil:com.ibm.ws.crypto.passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.passwordutil:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:com.ibm.ws.crypto.passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.crypto.passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.passwordutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.crypto.passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:passwordutil:passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:passwordutil:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:passwordutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.crypto.passwordutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.diagnostics + +PackageName: com.ibm.ws.diagnostics +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.diagnostics-3ce69f18c6c57288 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 131b88bbbccfc7940b9ed770944297c55158a0a5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.diagnostics_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.diagnostics:com.ibm.ws.diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.diagnostics:diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:diagnostics:com.ibm.ws.diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.diagnostics:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:diagnostics:diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:diagnostics:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.diagnostics@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.dynacache.monitor + +PackageName: com.ibm.ws.dynacache.monitor +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.dynacache.monitor-6d9200f29816f7ff +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: c28505e12e6e9203bcef51ba076c961a75c5e2f1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.dynacache.monitor_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynacache.monitor:com.ibm.ws.dynacache.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynacache.monitor:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynacache:com.ibm.ws.dynacache.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynacache.monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:com.ibm.ws.dynacache.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.dynacache.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynacache.monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.dynacache.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynacache:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynacache:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynacache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.dynacache.monitor@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.dynamic.bundle + +PackageName: com.ibm.ws.dynamic.bundle +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.dynamic.bundle-08d6cd9d800f0b92 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e8837556fb04232345cd2163494ad8998bfefd2f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.dynamic.bundle_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynamic.bundle:com.ibm.ws.dynamic.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynamic.bundle:dynamic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynamic:com.ibm.ws.dynamic.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:com.ibm.ws.dynamic.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynamic.bundle:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.dynamic.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynamic.bundle:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.dynamic.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynamic:dynamic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:dynamic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynamic:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:dynamic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynamic:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:dynamic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.dynamic.bundle@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.eba.wab.integrator + +PackageName: com.ibm.ws.eba.wab.integrator +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.eba.wab.integrator-e0f862f96f48f23e +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6eae03aab8984957c88c02f3ea317b913b8e65f3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.eba.wab.integrator_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.eba.wab.integrator:com.ibm.ws.eba.wab.integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.eba.wab.integrator:integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:integrator:com.ibm.ws.eba.wab.integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.eba.wab.integrator:eba:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.eba.wab.integrator:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eba:com.ibm.ws.eba.wab.integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.eba.wab.integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:com.ibm.ws.eba.wab.integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.eba.wab.integrator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.eba.wab.integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:integrator:integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eba:integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:integrator:eba:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:integrator:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:integrator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eba:eba:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eba:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:eba:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:eba:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eba:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:eba:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.eba.wab.integrator@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.event + +PackageName: com.ibm.ws.event +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.event-9764d1dd8f849ae9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 9fa2525a26da1c89c9dbbddafa6b9e60e0c5576f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.event_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.event:com.ibm.ws.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.event:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:com.ibm.ws.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.event:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.event@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.http.plugin.merge + +PackageName: com.ibm.ws.http.plugin.merge +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.http.plugin.merge-bc7d4d738b60c216 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e78542a4a0b0009b383c171bb236eeaca49e0fd9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.http.plugin.merge_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.http.plugin.merge:com.ibm.ws.http.plugin.merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.http.plugin.merge:merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:merge:com.ibm.ws.http.plugin.merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.http.plugin.merge:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:com.ibm.ws.http.plugin.merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.http.plugin.merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.http.plugin.merge:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.http.plugin.merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:merge:merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:merge:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:merge:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.http.plugin.merge@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.injection.jakarta + +PackageName: com.ibm.ws.injection.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.injection.jakarta-b9aa8a8ead0ffdfa +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 14b44244f250327554ea3dc38af3d1f4c4c8859f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.injection.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.injection.jakarta:com.ibm.ws.injection.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.injection.jakarta:injection:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:injection:com.ibm.ws.injection.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.injection.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.injection.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.injection.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.injection.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.injection.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:injection:injection:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:injection:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:injection:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:injection:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:injection:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:injection:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.injection.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.install + +PackageName: com.ibm.ws.install +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.install-0ae3e531f18a4587 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d8fade8419b39721d27ca64513b3955228281714 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.install_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install:com.ibm.ws.install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:com.ibm.ws.install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.install@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.install.featureUtility + +PackageName: com.ibm.ws.install.featureUtility +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.install.featureUtility-4071c9e1c073c1e5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: dde3b4ff525794450bf35356ffbacca9dadcb5b8 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.install.featureUtility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility:com.ibm.ws.install.featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:com.ibm.ws.install.featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:com.ibm.ws.install.featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.install.featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.install.featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.install.featureUtility@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.install.featureUtility.featureutil + +PackageName: com.ibm.ws.install.featureUtility.featureutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.install.featureUtility.featureutil-8baec303d4720fdf +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-featureUtility.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:com.ibm.ws.install.featureUtility.featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:com.ibm.ws.install.featureUtility.featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:com.ibm.ws.install.featureUtility.featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:com.ibm.ws.install.featureUtility.featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.install.featureUtility.featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.install.featureUtility.featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.install.featureUtility.featureutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.install.map + +PackageName: com.ibm.ws.install.map +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.install.map-48c15cc676df1319 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 81d8efd11749c738f9d9155f22c5c700052a25f4 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.install.map_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.map:com.ibm.ws.install.map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.map:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:com.ibm.ws.install.map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.map:map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.install.map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:map:com.ibm.ws.install.map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.map:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.install.map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:map:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:map:map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:map:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.install.map@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.dd + +PackageName: com.ibm.ws.javaee.dd +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd-bf6dfa85944c5918 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1b42bbedb516310c86dfc0786f628af3f78de232 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.dd_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd:com.ibm.ws.javaee.dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd:dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:com.ibm.ws.javaee.dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.dd@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.dd.common + +PackageName: com.ibm.ws.javaee.dd.common +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd.common-16857c35ba5e7e3a +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d231f31772fc9ac43272ed4c823f01a7b9bf516a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.dd.common_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.common:com.ibm.ws.javaee.dd.common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.common:common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.common:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:com.ibm.ws.javaee.dd.common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.dd.common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.dd.common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.common:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.common:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:com.ibm.ws.javaee.dd.common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.dd.common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.dd.common@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.dd.ejb + +PackageName: com.ibm.ws.javaee.dd.ejb +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd.ejb-7dcf65ebe120bcf4 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cca675369ef342feb230068753b6f08c1d763c1b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.dd.ejb_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:com.ibm.ws.javaee.dd.ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.dd.ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ejb:com.ibm.ws.javaee.dd.ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.dd.ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:com.ibm.ws.javaee.dd.ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.dd.ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ejb:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ejb:ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ejb:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ejb:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.dd.ejb@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.ddmodel + +PackageName: com.ibm.ws.javaee.ddmodel +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.ddmodel-0e8d48788588149a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ba9034eb7407669a9a5bee89b8c06e9b56fd382f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.ddmodel_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.ddmodel:com.ibm.ws.javaee.ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.ddmodel:ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ddmodel:com.ibm.ws.javaee.ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.ddmodel:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.ddmodel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ddmodel:ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ddmodel:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ddmodel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.ddmodel@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.metadata.context + +PackageName: com.ibm.ws.javaee.metadata.context +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.metadata.context-5ca4d7a2c0d58f0f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8b1ffeacccf6dcbb6d9cf9d34b8d48d2aaa858dd +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.metadata.context_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.metadata.context:com.ibm.ws.javaee.metadata.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.metadata.context:metadata:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metadata:com.ibm.ws.javaee.metadata.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.metadata.context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:com.ibm.ws.javaee.metadata.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.metadata.context:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.metadata.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.metadata.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.metadata.context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.metadata.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metadata:metadata:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:metadata:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metadata:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:metadata:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metadata:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:metadata:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metadata:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:metadata:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.metadata.context@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.platform.defaultresource + +PackageName: com.ibm.ws.javaee.platform.defaultresource +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.defaultresource-007af3d81d7f48a8 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0c5936055672ba7d017ebc92e5c1f996f0034dc6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.defaultresource_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:com.ibm.ws.javaee.platform.defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultresource:com.ibm.ws.javaee.platform.defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:com.ibm.ws.javaee.platform.defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.platform.defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.platform.defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.platform.defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultresource:defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultresource:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultresource:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultresource:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.platform.defaultresource@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.platform.v7 + +PackageName: com.ibm.ws.javaee.platform.v7 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v7-da0ec5e73a05a42c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 86eb441f639747dec5ec94c3f5a7bf0155a07d71 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v7_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7:com.ibm.ws.javaee.platform.v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:com.ibm.ws.javaee.platform.v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.platform.v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.platform.v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:com.ibm.ws.javaee.platform.v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.platform.v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.platform.v7@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.platform.v7.jndi + +PackageName: com.ibm.ws.javaee.platform.v7.jndi +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v7.jndi-8041251ba24ed52a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8b924b2223dfe014534881cca16ec0fa995967d9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v7.jndi_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:com.ibm.ws.javaee.platform.v7.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:com.ibm.ws.javaee.platform.v7.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.platform.v7.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:com.ibm.ws.javaee.platform.v7.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.platform.v7.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:com.ibm.ws.javaee.platform.v7.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.platform.v7.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.platform.v7.jndi@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.platform.v8 + +PackageName: com.ibm.ws.javaee.platform.v8 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v8-6a88cbf3eaed3be1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 5ec20ee7f80fd0d7c0a0cf9152e935f9a8b0ce36 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v8_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v8:com.ibm.ws.javaee.platform.v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v8:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:com.ibm.ws.javaee.platform.v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v8:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.platform.v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.platform.v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v8:v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v8:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v8:com.ibm.ws.javaee.platform.v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.platform.v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v8:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v8:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v8:v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v8:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.platform.v8@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.version + +PackageName: com.ibm.ws.javaee.version +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.version-f3a507f45bcb3758 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: c58d78c82c794150287d7968354a3a60352e1107 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.version_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.version:com.ibm.ws.javaee.version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.version:version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:version:com.ibm.ws.javaee.version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.version:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.version:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:version:version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:version:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:version:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.version@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.jaxrs.2.x.config + +PackageName: com.ibm.ws.jaxrs.2.x.config +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.2.x.config-09182df796a8cd3c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 83f3bd720a563132fdc7b702d54cdba4d024c661 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.jaxrs.2.x.config_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:com.ibm.ws.jaxrs.2.x.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.ws.jaxrs.2.x.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:com.ibm.ws.jaxrs.2.x.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.jaxrs.2.x.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.jaxrs.2.x.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:com.ibm.ws.jaxrs.2.x.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:com.ibm.ws.jaxrs.2.x.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.jaxrs.2.x.config@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.jaxrs.2.x.monitor.jakarta + +PackageName: com.ibm.ws.jaxrs.2.x.monitor.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.2.x.monitor.jakarta-faa672b91802dbce +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: bdba4122f438eca8b99d04899f2dfce2320fded9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.jaxrs.2.x.monitor.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.jaxrs.2.x.monitor.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta + +PackageName: com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta-b09eadc72583ddc7 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 599dd5265c45a80af0d3c9be718781e23979106f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:defaultexceptionmapper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultexceptionmapper:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultexceptionmapper:defaultexceptionmapper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultexceptionmapper:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:defaultexceptionmapper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultexceptionmapper:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:defaultexceptionmapper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:defaultexceptionmapper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultexceptionmapper:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:defaultexceptionmapper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.jmx + +PackageName: com.ibm.ws.jmx +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.jmx-191229ab7f2a419b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0944b9275ed825163d6d9245e1fd99c473872a28 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.jmx_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jmx:com.ibm.ws.jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jmx:jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jmx:com.ibm.ws.jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jmx:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jmx:jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jmx:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.jmx@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.jndi + +PackageName: com.ibm.ws.jndi +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.jndi-104523a570fd0157 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7479b709a730372b384a301463a61ba6f6485752 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.jndi_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JNDIServiceBinderManager:JNDIServiceBinderManager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JNDIServiceBinderManager:com.ibm.ws.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi:JNDIServiceBinderManager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JNDIServiceBinderManager:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:JNDIServiceBinderManager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi:com.ibm.ws.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JNDIServiceBinderManager:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:JNDIServiceBinderManager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:JNDIServiceBinderManager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JNDIServiceBinderManager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:JNDIServiceBinderManager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:com.ibm.ws.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:com.ibm.ws.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.jndi@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.jndi.url.contexts + +PackageName: com.ibm.ws.jndi.url.contexts +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.jndi.url.contexts-82055f4f911ddd86 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: bc5b4026a224bba4fbd8bc81a7f8d258d5b1e2e4 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.jndi.url.contexts_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi.url.contexts:com.ibm.ws.jndi.url.contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi.url.contexts:contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:contexts:com.ibm.ws.jndi.url.contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi.url.contexts:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:com.ibm.ws.jndi.url.contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi.url.contexts:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.jndi.url.contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:com.ibm.ws.jndi.url.contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi.url.contexts:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.jndi.url.contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:contexts:contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:contexts:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:contexts:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:contexts:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.jndi.url.contexts@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.jsonb.service + +PackageName: com.ibm.ws.jsonb.service +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.jsonb.service-9834690d13a040c2 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: db2f63951b86c52c19beee3ad5f56d7e6eb7ab46 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.jsonb.service_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jsonb.service:com.ibm.ws.jsonb.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jsonb.service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.ws.jsonb.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jsonb.service:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:com.ibm.ws.jsonb.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.jsonb.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jsonb.service:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.jsonb.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.jsonb.service@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.boot + +PackageName: com.ibm.ws.kernel.boot +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot-38c971b780108cd4 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3e81cbfe7bc3b7cc4a2e45cbbe0c35d8e7438345 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.boot_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot:com.ibm.ws.kernel.boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.boot@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.boot.archive + +PackageName: com.ibm.ws.kernel.boot.archive +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.archive-a0bf24de56dfbcf3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d80d467c2833bf5a305875ebba806d0da0e91261 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.boot.archive_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.archive:com.ibm.ws.kernel.boot.archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:archive:com.ibm.ws.kernel.boot.archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.archive:archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.archive:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot.archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.archive:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.archive:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot.archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:archive:archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:archive:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:archive:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:archive:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.boot.archive@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.boot.ws-launch + +PackageName: com.ibm.ws.kernel.boot.ws-launch +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-launch-b56eff31af2b3397 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/ws-launch.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-launch:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-launch:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_launch:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_launch:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-launch:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-launch:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_launch:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_launch:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-launch:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_launch:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-launch:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_launch:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-launch:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_launch:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.boot.ws-launch@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.boot.ws-server + +PackageName: com.ibm.ws.kernel.boot.ws-server +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-server-05c89cd1d469dd04 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-server.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.boot.ws-server@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.boot.ws-server + +PackageName: com.ibm.ws.kernel.boot.ws-server +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-server-cba6c2753995ba98 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.boot_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.boot.ws-server@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.cmdline + +PackageName: com.ibm.ws.kernel.cmdline +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.cmdline-81359e29cf6d4224 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: b4176bb0a0451c80e079cc7a72efdee5a86d8ea7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.cmdline_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.cmdline:com.ibm.ws.kernel.cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cmdline:com.ibm.ws.kernel.cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.cmdline:cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.cmdline:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.cmdline:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cmdline:cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cmdline:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cmdline:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.cmdline@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.equinox.module + +PackageName: com.ibm.ws.kernel.equinox.module +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.equinox.module-3c7f2e9024265206 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f9115ed053e9a0fd852ba50c14ff323cbc1f42c6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.equinox.module_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.equinox.module:com.ibm.ws.kernel.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.equinox.module:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:com.ibm.ws.kernel.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.equinox.module:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.equinox.module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:com.ibm.ws.kernel.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.equinox.module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.equinox.module@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.feature + +PackageName: com.ibm.ws.kernel.feature +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.feature-892614febcd1ae20 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1328d667bb69d439428b63fa26a6bc31526610f5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.feature_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature:com.ibm.ws.kernel.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:com.ibm.ws.kernel.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.feature@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.feature.featurelist + +PackageName: com.ibm.ws.kernel.feature.featurelist +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.feature.featurelist-7eec3f00c5332c79 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-featurelist.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature.featurelist:com.ibm.ws.kernel.feature.featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature.featurelist:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:com.ibm.ws.kernel.feature.featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature.featurelist:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:com.ibm.ws.kernel.feature.featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature.featurelist:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.feature.featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.feature.featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature.featurelist:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.feature.featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.feature.featurelist@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.filemonitor + +PackageName: com.ibm.ws.kernel.filemonitor +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.filemonitor-87273f3743c0754c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 98c2a840c33aef513e13bfbcc9b2a018265cc2c9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.filemonitor_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.filemonitor:com.ibm.ws.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.filemonitor:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:com.ibm.ws.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.filemonitor:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.filemonitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.filemonitor@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.instrument.check + +PackageName: com.ibm.ws.kernel.instrument.check +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.instrument.check-04ae0a0c5ffc5c19 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-javaagent.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.instrument.check@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.instrument.check + +PackageName: com.ibm.ws.kernel.instrument.check +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.instrument.check-4a71efdb15f8f29b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/bootstrap-agent.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.instrument.check@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.metatype.helper + +PackageName: com.ibm.ws.kernel.metatype.helper +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.metatype.helper-22148fb06e54b25c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: feafb1eaa7cc93127d381c718b6f93c82412ff56 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.metatype.helper_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:com.ibm.ws.kernel.metatype.helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:com.ibm.ws.kernel.metatype.helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:helper:com.ibm.ws.kernel.metatype.helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.metatype.helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.metatype.helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.metatype.helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:helper:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:helper:helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:helper:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:helper:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.metatype.helper@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.service + +PackageName: com.ibm.ws.kernel.service +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.service-eaf511615c27e802 +PackageVersion: 1.3.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a954f54b7a8d86271ac76f882a20e2c4d56f23b1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.service_1.3.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.service:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.service:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.service:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.service:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:location:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.service:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.service:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.service:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:location:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:location:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:location:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:location:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:location:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:location:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.service@1.3.81.cl230920230904-1158 + +##### Package: com.ibm.ws.logging + +PackageName: com.ibm.ws.logging +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.logging-f5f0aa8c366d2ac0 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e652214e91a36c411cebd9fcb588774d130dcd09 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.logging_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging:com.ibm.ws.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:com.ibm.ws.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.logging@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.logging.hpel + +PackageName: com.ibm.ws.logging.hpel +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel-0ab750de1add5f0e +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f46d0284ebc56ce89103bfecfab6aaf3ea4edb26 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.logging.hpel_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel:com.ibm.ws.logging.hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:com.ibm.ws.logging.hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:com.ibm.ws.logging.hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.logging.hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.logging.hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.logging.hpel@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.logging.hpel.binarylogviewer + +PackageName: com.ibm.ws.logging.hpel.binarylogviewer +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel.binarylogviewer-c2f211fa6a49c56b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-binarylogviewer.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:com.ibm.ws.logging.hpel.binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:com.ibm.ws.logging.hpel.binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:com.ibm.ws.logging.hpel.binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:com.ibm.ws.logging.hpel.binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.logging.hpel.binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.logging.hpel.binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.logging.hpel.binarylogviewer@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.logging.hpel.osgi + +PackageName: com.ibm.ws.logging.hpel.osgi +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel.osgi-65135ef5c209f133 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: fc3b71545ec11b337bd6f622e2a2e92206cae7ad +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.logging.hpel.osgi_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.logging.hpel.osgi@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.logging.osgi + +PackageName: com.ibm.ws.logging.osgi +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.logging.osgi-54f6582cba8dbf38 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2798d6848592ac5ee89747414916f647ef2e42b5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.logging.osgi_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.osgi:com.ibm.ws.logging.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:com.ibm.ws.logging.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.osgi:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.osgi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:com.ibm.ws.logging.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.osgi:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:com.ibm.ws.logging.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.ws.logging.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.logging.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.osgi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.logging.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.logging.osgi@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.managedobject + +PackageName: com.ibm.ws.managedobject +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.managedobject-1981498e7cecd9ca +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: c892fccd3a949b404a69a577e51af296ffa8de53 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.managedobject_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.managedobject:com.ibm.ws.managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.managedobject:managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:managedobject:com.ibm.ws.managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.managedobject:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:managedobject:managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:managedobject:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.managedobject@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.management.security + +PackageName: com.ibm.ws.management.security +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.management.security-e1a35fbc676a3bb4 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 770029fb294b37c0bd3aaec00567b61ac55bcebf +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.management.security_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.management.security:com.ibm.ws.management.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.management.security:management:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:management:com.ibm.ws.management.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.management.security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.management.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.management.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.management.security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.management.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:management:management:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:management:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:management:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:management:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:management:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:management:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.management.security@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.microprofile.metrics.common + +PackageName: com.ibm.ws.microprofile.metrics.common +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.microprofile.metrics.common-5269865d0e23c8d4 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e884c4262bc6c2de6c8c5e4a5935f2790ffbff7a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.microprofile.metrics.common_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:com.ibm.ws.microprofile.metrics.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:com.ibm.ws.microprofile.metrics.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:com.ibm.ws.microprofile.metrics.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:com.ibm.ws.microprofile.metrics.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.microprofile.metrics.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.microprofile.metrics.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.microprofile.metrics.common@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.monitor + +PackageName: com.ibm.ws.monitor +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.monitor-c6fe46100ac575fb +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 5e5d6e3effdaca52b4954e1c0ba2cf282268308d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.monitor_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.monitor:com.ibm.ws.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:com.ibm.ws.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.monitor@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.aries.jmx.api + +PackageName: com.ibm.ws.org.apache.aries.jmx.api +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jmx.api-7978c68156986b68 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 87797273bc0d311d1425a39873fa4562b672aa62 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jmx.api_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.jmx.api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:aries:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.aries.jmx.api@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.aries.jmx.core.whiteboard + +PackageName: com.ibm.ws.org.apache.aries.jmx.core.whiteboard +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jmx.core.whiteboard-d024df8930f6e14c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 02be1bb97f699eac6f621d9ef90b5d8f3e0d1511 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jmx.core.whiteboard_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.jmx.core.whiteboard:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:whiteboard:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:aries:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.aries.jmx.core.whiteboard@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.aries.jndi.api + +PackageName: com.ibm.ws.org.apache.aries.jndi.api +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jndi.api-577ed84398f4dabd +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7c5c1bf34d9c83cae3453f779b4402c48405ca76 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jndi.api_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.jndi.api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:aries:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:jndi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.aries.jndi.api@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.aries.jndi.core + +PackageName: com.ibm.ws.org.apache.aries.jndi.core +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jndi.core-52167c6e9be82da5 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f1c7a9554d7039b0508f4cf7233ef3c66eb60991 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jndi.core_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.jndi.core:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:Activator:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:startup:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:aries:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:core:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:jndi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.aries.jndi.core@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.aries.util + +PackageName: com.ibm.ws.org.apache.aries.util +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.util-7253c13a1b5cf358 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0acf243201841b703a3f11d08ff72613ba20b2b8 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.util_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:aries:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.aries.util@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.commons.fileupload.jakarta + +PackageName: com.ibm.ws.org.apache.commons.fileupload.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.fileupload.jakarta-d64e9df37e550aa3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 972d3e751ffbf003d9125716811807d6f7349fb9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.fileupload.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-https---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.commons.fileupload.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:fileupload:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:commons:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.commons.fileupload.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.commons.io + +PackageName: com.ibm.ws.org.apache.commons.io +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.io-810c3481a6caaad2 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 577f25f5ad7e9cdf27721354148f28be101c0375 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.io_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-https---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.commons.io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:commons:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.commons.io@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.commons.lang3 + +PackageName: com.ibm.ws.org.apache.commons.lang3 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.lang3-052888805a0ba73d +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: c8913294bb3f020341dc835da4ef064a1da9cc92 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.lang3_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-https---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.commons.lang3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:commons:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:lang3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.commons.lang3@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.felix.scr + +PackageName: com.ibm.ws.org.apache.felix.scr +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.felix.scr-b877b2749da70824 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: b1545286bd71bcbd006424683934b6d7f1e23fea +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.felix.scr_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-https---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.felix.scr:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:felix:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:scr:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.felix.scr@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.httpcomponents + +PackageName: com.ibm.ws.org.apache.httpcomponents +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.httpcomponents-0838e8dbedcbabcb +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 838e1d8fc7af7bbd427f3b4aa790341d6fc3e08e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.httpcomponents_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.httpcomponents:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:httpcomponents:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.httpcomponents@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.eclipse.equinox.coordinator + +PackageName: com.ibm.ws.org.eclipse.equinox.coordinator +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.coordinator-cae4dfa1a0a38c81 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ca3f84c36a220233e7a43e61a990ca4143523479 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.coordinator_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.eclipse.equinox.coordinator@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.eclipse.equinox.metatype + +PackageName: com.ibm.ws.org.eclipse.equinox.metatype +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.metatype-e23255d2a858b2a3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6cea00593e57d2e7fdab985963a89c65f2d0a01d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.metatype_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.eclipse.equinox.metatype@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.eclipse.equinox.region + +PackageName: com.ibm.ws.org.eclipse.equinox.region +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.region-a2e99083c724d408 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 295fa2ba9e087d4536925b845af42d08616542af +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.region_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:com.ibm.ws.org.eclipse.equinox.region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:com.ibm.ws.org.eclipse.equinox.region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:com.ibm.ws.org.eclipse.equinox.region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:region:com.ibm.ws.org.eclipse.equinox.region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.eclipse.equinox.region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.eclipse.equinox.region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.eclipse.equinox.region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:region:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:region:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:region:region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:region:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:region:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.eclipse.equinox.region@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.glassfish.json.1.0 + +PackageName: com.ibm.ws.org.glassfish.json.1.0 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.glassfish.json.1.0-200bede0300ec3f9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 342ca4abd03ac9b90c0dbb87a402bf3687555ef7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.glassfish.json.1.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-https---glassfish.java.net-public-CDDL-GPL-1-1.html +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.glassfish.json.1.0@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.jboss.jandex + +PackageName: com.ibm.ws.org.jboss.jandex +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.jandex-c79f42367d823002 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 387f1384aa0d8d127bf4a9202d2f9cdc800a915b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.jboss.jandex_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jandex:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jandex:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jandex:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jandex:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jandex:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jandex:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jandex:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jandex:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jandex:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jandex:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.jboss.jandex@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.jboss.jdeparser.1.0.0 + +PackageName: com.ibm.ws.org.jboss.jdeparser.1.0.0 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.jdeparser.1.0.0-1aa60d6e4bfef0f5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d4717a86dde79200c5702981b2e087536ba75268 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.jboss.jdeparser.1.0.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdeparser:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdeparser:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdeparser:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdeparser:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdeparser:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdeparser:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdeparser:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.jboss.jdeparser.1.0.0@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.jboss.logging + +PackageName: com.ibm.ws.org.jboss.logging +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.logging-8dc23917d07e91e9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: efa069f0f8a8e5cbbc2312d04cacdc4f30582cc7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.jboss.logging_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.logging:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.logging:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.logging:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.jboss.logging@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.joda.time.1.6.2 + +PackageName: com.ibm.ws.org.joda.time.1.6.2 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.joda.time.1.6.2-5a454c453f632e06 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6156878b15c26c23c94aa4ba423cab443182a509 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.joda.time.1.6.2_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Apache-2.0 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.joda.time.1.6.2@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.objectweb.asm + +PackageName: com.ibm.ws.org.objectweb.asm +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.objectweb.asm-27b96bbbf02de19c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 55933bb3f2def54f6804c8e4f51683abb00e7a4b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.objectweb.asm_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-3-Clause-link-https---asm.ow2.io-LICENSE.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.objectweb.asm:com.ibm.ws.org.objectweb.asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.objectweb.asm:objectweb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:objectweb:com.ibm.ws.org.objectweb.asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:asm:com.ibm.ws.org.objectweb.asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.objectweb.asm:asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.objectweb.asm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.objectweb.asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.objectweb.asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.objectweb.asm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.objectweb.asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:objectweb:objectweb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:asm:objectweb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:objectweb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:objectweb:asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:objectweb:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:objectweb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:objectweb:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:objectweb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:asm:asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:asm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:asm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.objectweb.asm@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.slf4j.api + +PackageName: com.ibm.ws.org.slf4j.api +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.slf4j.api-bf59116b0f585960 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a0b5aa45993405bdb23e9fc9cd57cbaad7f6f60f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.slf4j.api_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.api:com.ibm.ws.org.slf4j.api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.api:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:com.ibm.ws.org.slf4j.api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.ws.org.slf4j.api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.api:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.api:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.slf4j.api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.slf4j.api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.api:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.slf4j.api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.slf4j.api@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.slf4j.jdk14 + +PackageName: com.ibm.ws.org.slf4j.jdk14 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.slf4j.jdk14-90998235881dddab +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 75bbdedbba3cfdd3c83b2ee67ef2cd1e555c6e03 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.slf4j.jdk14_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:com.ibm.ws.org.slf4j.jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdk14:com.ibm.ws.org.slf4j.jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:com.ibm.ws.org.slf4j.jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.slf4j.jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.slf4j.jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.slf4j.jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdk14:jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdk14:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdk14:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdk14:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.slf4j.jdk14@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.product.utility + +PackageName: com.ibm.ws.product.utility +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.product.utility-0a677035ad8b6950 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6156fea3f9e597463c38e846551019780119d18b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.product.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility:com.ibm.ws.product.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:com.ibm.ws.product.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.product.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.product.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.product.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.product.utility@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.product.utility.productutil + +PackageName: com.ibm.ws.product.utility.productutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.product.utility.productutil-2bb22c41f2f6d52f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-productutil.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.product.utility.productutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.product.utility.productutil + +PackageName: com.ibm.ws.product.utility.productutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.product.utility.productutil-42ba1f36b46a3a6a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.product.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.product.utility.productutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.recoverylog + +PackageName: com.ibm.ws.recoverylog +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.recoverylog-c1e8dd8d006d5bfd +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2328751c1fe75a6f29593b06a253765c22273288 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.recoverylog_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.recoverylog:com.ibm.ws.recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.recoverylog:recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:recoverylog:com.ibm.ws.recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.recoverylog:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:recoverylog:recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:recoverylog:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.recoverylog@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.repository + +PackageName: com.ibm.ws.repository +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.repository-052eacb4e345a6af +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: c9eb78ef50036574583f913209d78af273a393a3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.repository_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository:com.ibm.ws.repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:com.ibm.ws.repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.repository@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.repository.liberty + +PackageName: com.ibm.ws.repository.liberty +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.repository.liberty-b3fcdb956d882ddd +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8c05f1ddebcf0e0681c6148c6c34f81c489e2190 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.repository.liberty_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.liberty:com.ibm.ws.repository.liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.liberty:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:com.ibm.ws.repository.liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.liberty:liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:liberty:com.ibm.ws.repository.liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.repository.liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.liberty:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.repository.liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:liberty:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:liberty:liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:liberty:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.repository.liberty@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.repository.parsers + +PackageName: com.ibm.ws.repository.parsers +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.repository.parsers-7936172742d614b5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 173e705273955488f94760293b7c9819366a38b0 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.repository.parsers_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.parsers:com.ibm.ws.repository.parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.parsers:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:com.ibm.ws.repository.parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.parsers:parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsers:com.ibm.ws.repository.parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.repository.parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.parsers:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.repository.parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsers:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsers:parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsers:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.repository.parsers@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.repository.resolver + +PackageName: com.ibm.ws.repository.resolver +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.repository.resolver-ae97e246e90df2d3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d3af0d04ca7aaf42b467f19e5077db56a34352c6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.repository.resolver_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.resolver:com.ibm.ws.repository.resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.resolver:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:com.ibm.ws.repository.resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.resolver:resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resolver:com.ibm.ws.repository.resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.repository.resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.resolver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.repository.resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resolver:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resolver:resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resolver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.repository.resolver@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.request.probes + +PackageName: com.ibm.ws.request.probes +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.request.probes-f9d7dc75bc346030 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 9af6a9ae039778986059cb467ec8f0351d61cd74 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.request.probes_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.request.probes:com.ibm.ws.request.probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.request.probes:request:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:request:com.ibm.ws.request.probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.request.probes:probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:probes:com.ibm.ws.request.probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.request.probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.request.probes:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.request.probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:request:request:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:probes:request:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:request:probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:probes:probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:request:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:request:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:request:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:probes:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.request.probes@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.resource + +PackageName: com.ibm.ws.resource +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.resource-463ae47b7545e2c0 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f3a983f2b9d560bc7d70da0e61de11a8db32a951 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.resource_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.resource:com.ibm.ws.resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.resource:resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resource:com.ibm.ws.resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.resource:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resource:resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resource:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.resource@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.rest.handler.jakarta + +PackageName: com.ibm.ws.rest.handler.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.rest.handler.jakarta-c0f39d8ab2cc8940 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1655ef04f5173ef27573e1be0e42ec1efcc18a67 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.rest.handler.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:com.ibm.ws.rest.handler.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:com.ibm.ws.rest.handler.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.rest.handler.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:com.ibm.ws.rest.handler.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.rest.handler.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.rest.handler.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.rest.handler.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.runtime.update + +PackageName: com.ibm.ws.runtime.update +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.runtime.update-c1298107964cccd5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 5ff97fdaba4b111a4ae58885e92752dc07a4d564 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.runtime.update_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.runtime.update:com.ibm.ws.runtime.update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.runtime.update:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:com.ibm.ws.runtime.update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.runtime.update:update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:update:com.ibm.ws.runtime.update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.runtime.update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.runtime.update:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.runtime.update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:update:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:update:update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:update:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.runtime.update@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security + +PackageName: com.ibm.ws.security +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security-df4334c69aab9582 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 723a5a95f0e9b74c68db7741a26f9234540e45cd +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security:com.ibm.ws.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.audit.reader + +PackageName: com.ibm.ws.security.audit.reader +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader-b0f068fb82bfd1a3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3f7e7603fc76b4d0c2f170a36a80d8adf1ef7d0c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.audit.reader_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader:com.ibm.ws.security.audit.reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.audit.reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:com.ibm.ws.security.audit.reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:com.ibm.ws.security.audit.reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.audit.reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.audit.reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.audit.reader@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.audit.reader.auditreader + +PackageName: com.ibm.ws.security.audit.reader.auditreader +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader.auditreader-8f344506f25c58af +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.audit.reader_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.audit.reader.auditreader@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.audit.reader.auditreader + +PackageName: com.ibm.ws.security.audit.reader.auditreader +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader.auditreader-c61c4f9d07369217 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-auditreader.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.audit.reader.auditreader@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.authentication + +PackageName: com.ibm.ws.security.authentication +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.authentication-3a8a7a13c07386b2 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f91c48967f12eba1d927a99ff1fd61b19254e9c6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.authentication_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authentication:com.ibm.ws.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:com.ibm.ws.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authentication:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authentication:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authentication:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.authentication@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.authorization + +PackageName: com.ibm.ws.security.authorization +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.authorization-a3796fae4626fb20 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a7b492eb95a6089483ff96c8da60f012fb6c272b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.authorization_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization:com.ibm.ws.security.authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:com.ibm.ws.security.authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.authorization@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.authorization.builtin + +PackageName: com.ibm.ws.security.authorization.builtin +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.authorization.builtin-9a610721379b7e83 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d562b0592eb088459018b96e33687fdd0aa27c82 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.authorization.builtin_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization.builtin:com.ibm.ws.security.authorization.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:com.ibm.ws.security.authorization.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization.builtin:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization.builtin:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.authorization.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:com.ibm.ws.security.authorization.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization.builtin:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.authorization.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization.builtin:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.authorization.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.authorization.builtin@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.context + +PackageName: com.ibm.ws.security.context +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.context-ee9fcf16b4c39d41 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 859e0d78ab4290f04c3aa3934d51bac7f3fd378d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.context_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.context:com.ibm.ws.security.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.context:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:com.ibm.ws.security.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.context@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.credentials + +PackageName: com.ibm.ws.security.credentials +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.credentials-54204e2affa36dd6 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f021d494776f23b161d42312c5cb4843af30dad4 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.credentials_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials:com.ibm.ws.security.credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:com.ibm.ws.security.credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.credentials@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.credentials.ssotoken + +PackageName: com.ibm.ws.security.credentials.ssotoken +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.credentials.ssotoken-5f5fa197584cf032 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2ecf89a9556e3cc40d963d3df1b0c50929b00621 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.credentials.ssotoken_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:com.ibm.ws.security.credentials.ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:com.ibm.ws.security.credentials.ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.credentials.ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssotoken:com.ibm.ws.security.credentials.ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.credentials.ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.credentials.ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssotoken:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssotoken:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssotoken:ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssotoken:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.credentials.ssotoken@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.credentials.wscred + +PackageName: com.ibm.ws.security.credentials.wscred +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.credentials.wscred-7d2973745a28b886 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d28e5dc9155a412006e6a8fb5be3fa3ae93f2466 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.credentials.wscred_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.wscred:com.ibm.ws.security.credentials.wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.wscred:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:com.ibm.ws.security.credentials.wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.wscred:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.credentials.wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.wscred:wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wscred:com.ibm.ws.security.credentials.wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.credentials.wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.wscred:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.credentials.wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wscred:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wscred:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wscred:wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wscred:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.credentials.wscred@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.java2sec + +PackageName: com.ibm.ws.security.java2sec +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.java2sec-e8286830825febc9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 136dc76b4d36afa06fc4061f5fe45c88c0dc8174 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.java2sec_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.java2sec:com.ibm.ws.security.java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.java2sec:java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.java2sec:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java2sec:com.ibm.ws.security.java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.java2sec:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java2sec:java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java2sec:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java2sec:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.java2sec@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.kerberos.auth + +PackageName: com.ibm.ws.security.kerberos.auth +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.kerberos.auth-8307eb5847190739 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e2f594247d3516f7345409d5dea3d916bec8f4d1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.kerberos.auth_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.kerberos.auth:com.ibm.ws.security.kerberos.auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.kerberos.auth:kerberos:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.kerberos.auth:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kerberos:com.ibm.ws.security.kerberos.auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.kerberos.auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auth:com.ibm.ws.security.kerberos.auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.kerberos.auth:auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.kerberos.auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.kerberos.auth:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.kerberos.auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kerberos:kerberos:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kerberos:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:kerberos:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auth:kerberos:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auth:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kerberos:auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kerberos:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kerberos:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kerberos:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auth:auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auth:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.kerberos.auth@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.mp.jwt.proxy + +PackageName: com.ibm.ws.security.mp.jwt.proxy +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.mp.jwt.proxy-8f00f2ec2e3f6b5b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 87d6d98f5d0f24ca0860befab640a9e1c80bde1e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.mp.jwt.proxy_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:com.ibm.ws.security.mp.jwt.proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.mp.jwt.proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:proxy:com.ibm.ws.security.mp.jwt.proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:jwt:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.mp.jwt.proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jwt:com.ibm.ws.security.mp.jwt.proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:mp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mp:com.ibm.ws.security.mp.jwt.proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.mp.jwt.proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:proxy:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jwt:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:jwt:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mp:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:proxy:proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:mp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jwt:proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:proxy:jwt:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mp:proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:proxy:mp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:proxy:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jwt:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jwt:jwt:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:mp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jwt:mp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jwt:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mp:jwt:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jwt:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mp:mp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mp:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:mp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.mp.jwt.proxy@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.quickstart + +PackageName: com.ibm.ws.security.quickstart +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.quickstart-2bd4ccbf2bffd031 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 46b47e64570c215ab208a3ae3cd3d83afe1f4a71 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.quickstart_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.quickstart:com.ibm.ws.security.quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.quickstart:quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:quickstart:com.ibm.ws.security.quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.quickstart:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.quickstart:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:quickstart:quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:quickstart:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:quickstart:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.quickstart@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.ready.service + +PackageName: com.ibm.ws.security.ready.service +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.ready.service-886a7e9cecc0f6d5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 82e5df38d2a6e70da26444a97808c3d48a624479 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.ready.service_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.ready.service:com.ibm.ws.security.ready.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.ready.service:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.ready.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.ready.service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.ws.security.ready.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.ready.service:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:com.ibm.ws.security.ready.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.ready.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.ready.service:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.ready.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.ready.service@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.registry + +PackageName: com.ibm.ws.security.registry +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.registry-09a30f3c6fafe647 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7378905a18bb28036edbb73c60182cdf20002002 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.registry_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry:com.ibm.ws.security.registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:com.ibm.ws.security.registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.registry@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.registry.basic + +PackageName: com.ibm.ws.security.registry.basic +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.registry.basic-b27fa9bc88ae39a8 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3f3a4b73b977b8d78faa4459122f53225fa7f6cb +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.registry.basic_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry.basic:com.ibm.ws.security.registry.basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry.basic:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry.basic:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:com.ibm.ws.security.registry.basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.registry.basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basic:com.ibm.ws.security.registry.basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry.basic:basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.registry.basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry.basic:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.registry.basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basic:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basic:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basic:basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basic:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.registry.basic@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.token + +PackageName: com.ibm.ws.security.token +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.token-67dbeeeb433ba94a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 238c6979a34b333ee998c5dfdd63349d5873dbdc +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.token_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token:com.ibm.ws.security.token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:com.ibm.ws.security.token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.token@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.token.ltpa + +PackageName: com.ibm.ws.security.token.ltpa +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.token.ltpa-622231ba9c844d7f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 45af23f7e5a2423782da9e66108f4e61222f3e25 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.token.ltpa_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.ltpa:com.ibm.ws.security.token.ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.ltpa:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.token.ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.ltpa:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:com.ibm.ws.security.token.ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.ltpa:ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpa:com.ibm.ws.security.token.ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.token.ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.ltpa:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.token.ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpa:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpa:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpa:ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpa:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.token.ltpa@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.token.s4u2 + +PackageName: com.ibm.ws.security.token.s4u2 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.token.s4u2-d4ce9269292633b7 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 953217a25fe083ccad39a2c6980522266702e395 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.token.s4u2_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.s4u2:com.ibm.ws.security.token.s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.s4u2:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.token.s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.s4u2:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:com.ibm.ws.security.token.s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.s4u2:s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:s4u2:com.ibm.ws.security.token.s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.token.s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.s4u2:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.token.s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:s4u2:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:s4u2:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:s4u2:s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:s4u2:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.token.s4u2@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.utility + +PackageName: com.ibm.ws.security.utility +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.utility-f53bcf3b45eef75f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1df450390bf72cba248790e11664d894c7050655 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility:com.ibm.ws.security.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.security.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.utility@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.utility.securityutil + +PackageName: com.ibm.ws.security.utility.securityutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.utility.securityutil-98d95b7cb8d7f646 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-securityutil.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.utility.securityutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.utility.securityutil + +PackageName: com.ibm.ws.security.utility.securityutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.utility.securityutil-ca8b9d721e9a1e1d +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.utility.securityutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.serialization + +PackageName: com.ibm.ws.serialization +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.serialization-f64d70a534b67721 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f55438fc6aada25f42842c0a4ae5a6b6b8973da1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.serialization_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.serialization:com.ibm.ws.serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.serialization:serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serialization:com.ibm.ws.serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.serialization:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serialization:serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serialization:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.serialization@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.session.jakarta + +PackageName: com.ibm.ws.session.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.session.jakarta-27113c1d16fd556f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f345fc55038c34baa94da815629bc6bcb635dc72 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.session.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.jakarta:com.ibm.ws.session.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.jakarta:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.session.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:com.ibm.ws.session.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.session.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.session.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.session.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.session.monitor + +PackageName: com.ibm.ws.session.monitor +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.session.monitor-6df330efa7adaf70 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 172f33ced64c30ca8c6aa086ab10a8f562e834fe +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.session.monitor_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.monitor:com.ibm.ws.session.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.monitor:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:com.ibm.ws.session.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:com.ibm.ws.session.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.session.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.session.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.session.monitor@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.ssl + +PackageName: com.ibm.ws.ssl +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.ssl-5ec6a973db6a521a +PackageVersion: 1.5.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2a08dea8265848da1f3882c44015101cd126f8bc +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.ssl_1.5.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.ssl:com.ibm.ws.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.ssl:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:com.ibm.ws.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.ssl:ws:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ws:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.ssl@1.5.81.cl230920230904-1158 + +##### Package: com.ibm.ws.threading + +PackageName: com.ibm.ws.threading +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.threading-04a82de306980599 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: aa2939f0ebf05cb02ad13ce67df9ee262165b717 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.threading_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.threading:com.ibm.ws.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.threading:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:com.ibm.ws.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.threading:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.threading@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.timer + +PackageName: com.ibm.ws.timer +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.timer-de9e29e7df6d7ef9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6f4d50ffd12ee6b3b6999f7928237fe6f6e4223e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.timer_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.timer:com.ibm.ws.timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.timer:timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:timer:com.ibm.ws.timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.timer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:timer:timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:timer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.timer@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.transaction.context.jakarta + +PackageName: com.ibm.ws.transaction.context.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.transaction.context.jakarta-655cfebbb0413977 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0370e6d83b82cba65ef98c09e97c215c715488ad +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.transaction.context.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:com.ibm.ws.transaction.context.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:com.ibm.ws.transaction.context.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:com.ibm.ws.transaction.context.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.transaction.context.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.transaction.context.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.transaction.context.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.transaction.context.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.transaction.jakarta + +PackageName: com.ibm.ws.transaction.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.transaction.jakarta-8fb81778b3027ede +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 932f83495b8a7c8149c7e66ad9057eaaeae35d86 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.transaction.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.jakarta:com.ibm.ws.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:com.ibm.ws.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.transaction.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.transport.http + +PackageName: com.ibm.ws.transport.http +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.transport.http-9ecc2b0be781ef45 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d8a71124a7f3e18db14d2c9b584369ea8b8b1f62 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.transport.http_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transport.http:com.ibm.ws.transport.http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:HttpChannelProvider:com.ibm.ws.transport.http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transport.http:HttpChannelProvider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:HttpChannelProvider:HttpChannelProvider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transport.http:transport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transport:com.ibm.ws.transport.http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transport.http:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:com.ibm.ws.transport.http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transport.http:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:com.ibm.ws.transport.http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:HttpChannelProvider:transport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.transport.http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transport:HttpChannelProvider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:HttpChannelProvider:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transport.http:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:HttpChannelProvider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.transport.http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:HttpChannelProvider:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:HttpChannelProvider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:HttpChannelProvider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:HttpChannelProvider:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:HttpChannelProvider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transport:transport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:transport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transport:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:transport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transport:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:transport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transport:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:transport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.transport.http@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.tx.embeddable.jakarta + +PackageName: com.ibm.ws.tx.embeddable.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.tx.embeddable.jakarta-6a0218b35e4c54bb +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 13ae25def53790312fcf6f83a3c9ea3cfcaa48c7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.tx.embeddable.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.tx.embeddable.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.tx.jta.extensions.jakarta + +PackageName: com.ibm.ws.tx.jta.extensions.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.tx.jta.extensions.jakarta-cc2e0c21ecbb7fd1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7d019026f75ff6eb4f5ce2df94112b0191494c04 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.tx.jta.extensions.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:com.ibm.ws.tx.jta.extensions.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:extensions:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:extensions:com.ibm.ws.tx.jta.extensions.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.tx.jta.extensions.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.tx.jta.extensions.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:com.ibm.ws.tx.jta.extensions.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:com.ibm.ws.tx.jta.extensions.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.tx.jta.extensions.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:extensions:extensions:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:extensions:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:extensions:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:extensions:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:extensions:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:extensions:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:extensions:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:extensions:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:extensions:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:extensions:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.tx.jta.extensions.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webcontainer.cors.jakarta + +PackageName: com.ibm.ws.webcontainer.cors.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.cors.jakarta-19e84b0297f47f72 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 690c7b9b4c20a399e7515cf3fb379993def0f7ce +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.cors.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:com.ibm.ws.webcontainer.cors.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.cors.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.cors.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:cors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cors:com.ibm.ws.webcontainer.cors.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webcontainer.cors.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webcontainer.cors.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cors:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:cors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cors:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cors:cors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cors:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webcontainer.cors.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webcontainer.jakarta + +PackageName: com.ibm.ws.webcontainer.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.jakarta-57169466f7c5ad89 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 715acbd87a6859ac0039af3985fae59c466d9597 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.jakarta_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.jakarta:com.ibm.ws.webcontainer.jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.jakarta:webcontainer:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.jakarta:jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webcontainer.jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.jakarta:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webcontainer.jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:webcontainer:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webcontainer:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webcontainer:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webcontainer.jakarta@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webcontainer.monitor.jakarta + +PackageName: com.ibm.ws.webcontainer.monitor.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.monitor.jakarta-42a0bfb4d82d0246 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 9c716016a21942599f6eb39b694ef4b7bbb11aa9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.monitor.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:com.ibm.ws.webcontainer.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:com.ibm.ws.webcontainer.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webcontainer.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webcontainer.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webcontainer.monitor.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webcontainer.security.admin + +PackageName: com.ibm.ws.webcontainer.security.admin +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.security.admin-cac3f63abeadad89 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 363f72ff40a48fd383deb11bd9348904de15937c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.security.admin_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:com.ibm.ws.webcontainer.security.admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.security.admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.webcontainer.security.admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:admin:com.ibm.ws.webcontainer.security.admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webcontainer.security.admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webcontainer.security.admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:admin:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:admin:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:admin:admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:admin:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webcontainer.security.admin@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webcontainer.security.feature + +PackageName: com.ibm.ws.webcontainer.security.feature +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.security.feature-4219f8419578111a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cb15303906618edb6ce71666b9a08aca5fda021a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.security.feature_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:com.ibm.ws.webcontainer.security.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.security.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.webcontainer.security.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:com.ibm.ws.webcontainer.security.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webcontainer.security.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webcontainer.security.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webcontainer.security.feature@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webcontainer.servlet.3.1.jakarta + +PackageName: com.ibm.ws.webcontainer.servlet.3.1.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.servlet.3.1.jakarta-ecc39995894e0901 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 4017b8ca1d52234f7046e8761e540f74b3cb6bca +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.servlet.3.1.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webcontainer.servlet.3.1.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webcontainer.servlet.4.0.jakarta + +PackageName: com.ibm.ws.webcontainer.servlet.4.0.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.servlet.4.0.jakarta-ee075dcb42a7385a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3fd6ff5e43d071cb1406d2193d0e533e2c5bc95f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.servlet.4.0.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webcontainer.servlet.4.0.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webserver.plugin.runtime.interfaces + +PackageName: com.ibm.ws.webserver.plugin.runtime.interfaces +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.runtime.interfaces-d8f7c7f67ed53663 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2bbd8aa7e4b14df0ef9dc3dcd059e2619137548c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.runtime.interfaces_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webserver.plugin.runtime.interfaces@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webserver.plugin.runtime.jakarta + +PackageName: com.ibm.ws.webserver.plugin.runtime.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.runtime.jakarta-7ff3c6a91e9abb3c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f88feba89c16597e90c7ab3f741355975f1635d5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.runtime.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webserver.plugin.runtime.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webserver.plugin.utility + +PackageName: com.ibm.ws.webserver.plugin.utility +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility-00312ca50eae702c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 176db395ed6376a3f6b6c68b2ad5495255c158fd +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility:com.ibm.ws.webserver.plugin.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.webserver.plugin.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webserver.plugin.utility@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webserver.plugin.utility.webserverPluginutil + +PackageName: com.ibm.ws.webserver.plugin.utility.webserverPluginutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility.webserverPluginutil-5fc7d895c5805927 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webserver.plugin.utility.webserverPluginutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webserver.plugin.utility.webserverPluginutil + +PackageName: com.ibm.ws.webserver.plugin.utility.webserverPluginutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility.webserverPluginutil-c06c8f49c4752a37 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-webserverPluginutil.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webserver.plugin.utility.webserverPluginutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.wsbytebuffer + +PackageName: com.ibm.ws.wsbytebuffer +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.wsbytebuffer-d6d7aedfbda2c7a6 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 089ea2dd867ce519a04d05a55e8500d83ea51fe5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.wsbytebuffer_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.wsbytebuffer:com.ibm.ws.wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.wsbytebuffer:wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsbytebuffer:com.ibm.ws.wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.wsbytebuffer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsbytebuffer:wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsbytebuffer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.wsbytebuffer@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.core + +PackageName: com.ibm.wsspi.org.osgi.core +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.core-cc10e4e4ad879773 +PackageVersion: 1.2.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: aed7b88c63eb08b86bca9effa26152b97513d982 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.core_1.2.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-b522309a0902b9c2edf0e43791a497ee72dc820dd9db8cbaf3839d3421e541cc +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.core:com.ibm.wsspi.org.osgi.core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.core:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.core:core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.core:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:com.ibm.wsspi.org.osgi.core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.core:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.core@1.2.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.namespace.service + +PackageName: com.ibm.wsspi.org.osgi.namespace.service +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.namespace.service-933eff1b00233d81 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 806396d2e152c0eb33fec2926462507efe0c0af4 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.namespace.service_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-84987e62fcaab3858aed0bafe7f4e32a774f0dc234322f0e1200e4b7a10780cc +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:com.ibm.wsspi.org.osgi.namespace.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:namespace:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:namespace:com.ibm.wsspi.org.osgi.namespace.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.namespace.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.namespace.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.namespace.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.namespace.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.namespace.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:namespace:namespace:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:namespace:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:namespace:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:namespace:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:namespace:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:namespace:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:namespace:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:namespace:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:namespace:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:namespace:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.namespace.service@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.cm + +PackageName: com.ibm.wsspi.org.osgi.service.cm +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.cm-e580e9d14c9a9896 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 20559b89f4fe21e5e7e2561d73ef7a325ef5d0c8 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.cm_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-e361ddcfb3f97c3adb1f3b354c6e025142dd9103569c956cf43a08d9908b2d8c +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:com.ibm.wsspi.org.osgi.service.cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cm:com.ibm.wsspi.org.osgi.service.cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cm:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cm:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cm:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cm:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cm:cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.cm@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.component + +PackageName: com.ibm.wsspi.org.osgi.service.component +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.component-3f51d271514f2837 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d47c893be298b26cb745ff7866189d5a8ffc73b1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.component_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-b8a5b49031798281d934c96178d7e9b482b25662154407659a04874cda1893b0 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:com.ibm.wsspi.org.osgi.service.component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:com.ibm.wsspi.org.osgi.service.component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.component@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.component.annotations + +PackageName: com.ibm.wsspi.org.osgi.service.component.annotations +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.component.annotations-c04b9599d1184dc9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 9436424b146096c7c72f2b06a7e2928323aac3a0 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.component.annotations_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-e361ddcfb3f97c3adb1f3b354c6e025142dd9103569c956cf43a08d9908b2d8c +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.component.annotations@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.coordinator + +PackageName: com.ibm.wsspi.org.osgi.service.coordinator +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.coordinator-3c4d4100ae462734 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 83fa4d5b4282733cec74a343cf0e683ad6dc4cfa +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.coordinator_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-84987e62fcaab3858aed0bafe7f4e32a774f0dc234322f0e1200e4b7a10780cc +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:com.ibm.wsspi.org.osgi.service.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:com.ibm.wsspi.org.osgi.service.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.coordinator@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.event + +PackageName: com.ibm.wsspi.org.osgi.service.event +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.event-b4eae56772edbbe1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: b66ef1d454a4aa606a1f0d47bb0327305cd604bd +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.event_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-84987e62fcaab3858aed0bafe7f4e32a774f0dc234322f0e1200e4b7a10780cc +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:com.ibm.wsspi.org.osgi.service.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:com.ibm.wsspi.org.osgi.service.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.event@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.log + +PackageName: com.ibm.wsspi.org.osgi.service.log +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.log-01f1ee8c9ddfe34c +PackageVersion: 1.2.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a5129cb36924ddb0c144ac9d371868b2b5d3f2d1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.log_1.2.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-b522309a0902b9c2edf0e43791a497ee72dc820dd9db8cbaf3839d3421e541cc +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:com.ibm.wsspi.org.osgi.service.log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:service:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:log:com.ibm.wsspi.org.osgi.service.log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:log:service:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:log:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:log:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:log:log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:log:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.log@1.2.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.metatype + +PackageName: com.ibm.wsspi.org.osgi.service.metatype +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.metatype-dba6e3c5aebc2417 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e1f54e18f12d906a44ef022a2bbbf5ff5128b480 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.metatype_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-e361ddcfb3f97c3adb1f3b354c6e025142dd9103569c956cf43a08d9908b2d8c +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:com.ibm.wsspi.org.osgi.service.metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:com.ibm.wsspi.org.osgi.service.metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.metatype@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.metatype.annotations + +PackageName: com.ibm.wsspi.org.osgi.service.metatype.annotations +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.metatype.annotations-57608e27b67eb2a0 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 660d3641d78440636e3ecb244aa0e3b88d04d2b4 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.metatype.annotations_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-e361ddcfb3f97c3adb1f3b354c6e025142dd9103569c956cf43a08d9908b2d8c +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.metatype.annotations@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.thirdparty.equinox + +PackageName: com.ibm.wsspi.thirdparty.equinox +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.thirdparty.equinox-f00552568d914797 +PackageVersion: 1.3.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e9d2574355cd1fb59201b23b52148095d1c11375 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/third-party/com.ibm.wsspi.thirdparty.equinox_1.3.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.thirdparty.equinox:com.ibm.wsspi.thirdparty.equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.thirdparty.equinox:thirdparty:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:com.ibm.wsspi.thirdparty.equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.thirdparty.equinox:equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:com.ibm.wsspi.thirdparty.equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.thirdparty.equinox:wsspi:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.thirdparty.equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.thirdparty.equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:thirdparty:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:thirdparty:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:wsspi:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:thirdparty:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:thirdparty:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:wsspi:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.thirdparty.equinox@1.3.81.cl230920230904-1158 + +##### Package: guide-getting-started + +PackageName: guide-getting-started +SPDXID: SPDXRef-Package-java-archive-guide-getting-started-0470a2ffe7a4f194 +PackageVersion: 1.0-SNAPSHOT +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 433deb47a8caf983cc7faeff107639c6e3b02e5e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/usr/servers/defaultServer/apps/guide-getting-started.war +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide-getting-started:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide-getting-started:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide_getting_started:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide_getting_started:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide-getting:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide-getting:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide_getting:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide_getting:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guides:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guides:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/io.openliberty.guides/guide-getting-started@1.0-SNAPSHOT + +##### Package: io.openliberty.accesslists.internal + +PackageName: io.openliberty.accesslists.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.accesslists.internal-348779c8b4c0f3c7 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ea9f2321fd65960ac9f2247f3baaaa0502ca6dda +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.accesslists.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.accesslists.internal:io.openliberty.accesslists.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:accesslists:io.openliberty.accesslists.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.accesslists.internal:accesslists:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.accesslists.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.accesslists.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.accesslists.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:accesslists:accesslists:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:accesslists:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:accesslists:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:accesslists:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.accesslists.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.cdi.4.0.interfaces + +PackageName: io.openliberty.cdi.4.0.interfaces +SPDXID: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.interfaces-c16434037d8f3889 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d558d596f7bc75be2134a4e123d1fd66979806b3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.interfaces_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.interfaces:io.openliberty.cdi.4.0.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:io.openliberty.cdi.4.0.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.interfaces:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.cdi.4.0.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.interfaces:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.cdi.4.0.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.cdi.4.0.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.interfaces:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.interfaces:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.cdi.4.0.interfaces@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.cdi.4.0.internal.services.fragment + +PackageName: io.openliberty.cdi.4.0.internal.services.fragment +SPDXID: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.services.fragment-edeab00c7cfe155f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8abe6b7ab1389e685d6a39bd1d50feed8a3ba819 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.services.fragment_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fragment:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:services:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fragment:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fragment:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fragment:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:services:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:services:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:services:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fragment:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:services:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fragment:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fragment:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:services:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:services:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.cdi.4.0.internal.services.fragment@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.cdi.4.0.internal.web + +PackageName: io.openliberty.cdi.4.0.internal.web +SPDXID: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.web-f67ab33a049816c4 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e052a2f2cac5c5858294858787c11f1543a055b2 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.web_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:io.openliberty.cdi.4.0.internal.web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.internal.web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.cdi.4.0.internal.web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.cdi.4.0.internal.web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:io.openliberty.cdi.4.0.internal.web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.cdi.4.0.internal.web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.cdi.4.0.internal.web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.cdi.4.0.internal.web@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.cdi.4.0.internal.weld + +PackageName: io.openliberty.cdi.4.0.internal.weld +SPDXID: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.weld-48ed937a7e69e891 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: dba0f9a1eac2367eefa2dafa7bf65d20c2276a33 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.weld_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:io.openliberty.cdi.4.0.internal.weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.internal.weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.cdi.4.0.internal.weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:io.openliberty.cdi.4.0.internal.weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.cdi.4.0.internal.weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.cdi.4.0.internal.weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.cdi.4.0.internal.weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.cdi.4.0.internal.weld@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.cdi.4.0.thirdparty + +PackageName: io.openliberty.cdi.4.0.thirdparty +SPDXID: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.thirdparty-c560a9497a9dc8cb +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: b13a7dead238da446187d5e92b53b6dd2c0fb5ca +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/third-party/io.openliberty.cdi.4.0.thirdparty_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:io.openliberty.cdi.4.0.thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:io.openliberty.cdi.4.0.thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.cdi.4.0.thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.cdi.4.0.thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.cdi.4.0.thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.cdi.4.0.thirdparty@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.cdi.spi + +PackageName: io.openliberty.cdi.spi +SPDXID: SPDXRef-Package-java-archive-io.openliberty.cdi.spi-5769548082bfa726 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ad49c6e06e76480ba0e513a7384b584c58712d90 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/io.openliberty.cdi.spi_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.spi:io.openliberty.cdi.spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.cdi.spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.cdi.spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.spi:cdi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:io.openliberty.cdi.spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:cdi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.cdi.spi@1.1.81.cl230920230904-1158 + +##### Package: io.openliberty.checkpoint + +PackageName: io.openliberty.checkpoint +SPDXID: SPDXRef-Package-java-archive-io.openliberty.checkpoint-8a542215f307aab5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: aded8ec34b4ccb0250bc39d4f9a25a9fa52babc6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.checkpoint_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.checkpoint:io.openliberty.checkpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.checkpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:checkpoint:io.openliberty.checkpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.checkpoint:checkpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:checkpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:checkpoint:checkpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.checkpoint@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.dynacache.internal + +PackageName: io.openliberty.dynacache.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.dynacache.internal-3679127cfbf6d051 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 028f734657e452656a84f65297e3a2cd54b55e13 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.dynacache.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.dynacache.internal:io.openliberty.dynacache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.dynacache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynacache:io.openliberty.dynacache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.dynacache.internal:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.dynacache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.dynacache.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynacache:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynacache:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.dynacache.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.el.internal.cdi.jakarta + +PackageName: io.openliberty.el.internal.cdi.jakarta +SPDXID: SPDXRef-Package-java-archive-io.openliberty.el.internal.cdi.jakarta-62e27c792932b3ae +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 449b794931b7399eadfc5e29a443dd8d9c502e20 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.el.internal.cdi.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:io.openliberty.el.internal.cdi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.el.internal.cdi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.el.internal.cdi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.el.internal.cdi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.el.internal.cdi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:el:io.openliberty.el.internal.cdi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:el:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:el:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:el:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:el:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:el:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:el:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:el:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:el:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:el:el:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.el.internal.cdi.jakarta@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.endpoint + +PackageName: io.openliberty.endpoint +SPDXID: SPDXRef-Package-java-archive-io.openliberty.endpoint-f29f09d31d83d248 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6bd01d73db96287dc340a0576ed87a4bbfb958a5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.endpoint_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.endpoint:io.openliberty.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:endpoint:io.openliberty.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.endpoint:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:endpoint:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.endpoint@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.io.micrometer + +PackageName: io.openliberty.io.micrometer +SPDXID: SPDXRef-Package-java-archive-io.openliberty.io.micrometer-fb2cb7cf2d6ef540 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 38316988134ec7f26ce8a7bd8c4e82b7aa6653a7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.io.micrometer_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.micrometer:io.openliberty.io.micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.io.micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.micrometer:micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:micrometer:io.openliberty.io.micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.micrometer:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io.openliberty.io.micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:micrometer:micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:micrometer:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.io.micrometer@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.io.netty + +PackageName: io.openliberty.io.netty +SPDXID: SPDXRef-Package-java-archive-io.openliberty.io.netty-b10b2643bdb5f826 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 698a7681bf5a82ae07a15b20f3def12c2c52b8cc +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.io.netty_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.netty:io.openliberty.io.netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.io.netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.netty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:io.openliberty.io.netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.netty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io.openliberty.io.netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.io.netty@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.io.netty.ssl + +PackageName: io.openliberty.io.netty.ssl +SPDXID: SPDXRef-Package-java-archive-io.openliberty.io.netty.ssl-77a0ac5be06a4317 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 253b8884930517e7384c83dfbd4a47cbf462422a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.io.netty.ssl_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.netty.ssl:io.openliberty.io.netty.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.io.netty.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.netty.ssl:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:io.openliberty.io.netty.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.netty.ssl:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:io.openliberty.io.netty.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.netty.ssl:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io.openliberty.io.netty.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.io.netty.ssl@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.io.smallrye.common.jakarta + +PackageName: io.openliberty.io.smallrye.common.jakarta +SPDXID: SPDXRef-Package-java-archive-io.openliberty.io.smallrye.common.jakarta-1f8abfb0200823fe +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7dcd341f66df037f440b3fa311a04be1b5872740 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.io.smallrye.common.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:io.openliberty.io.smallrye.common.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.io.smallrye.common.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:io.openliberty.io.smallrye.common.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.io.smallrye.common.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:io.openliberty.io.smallrye.common.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io.openliberty.io.smallrye.common.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.io.smallrye.common.jakarta@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.io.smallrye.config.jakarta + +PackageName: io.openliberty.io.smallrye.config.jakarta +SPDXID: SPDXRef-Package-java-archive-io.openliberty.io.smallrye.config.jakarta-a6c64dde369a4bd1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 5f65aea85cb92413cc5db86a40d7650bf9a5c6f4 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.io.smallrye.config.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:io.openliberty.io.smallrye.config.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.io.smallrye.config.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:io.openliberty.io.smallrye.config.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.io.smallrye.config.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:io.openliberty.io.smallrye.config.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io.openliberty.io.smallrye.config.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.io.smallrye.config.jakarta@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.io.smallrye.metrics + +PackageName: io.openliberty.io.smallrye.metrics +SPDXID: SPDXRef-Package-java-archive-io.openliberty.io.smallrye.metrics-1981bbe28a0d2bf1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0caa2857d900fa910006770b321cadeba33ea42c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.io.smallrye.metrics_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.metrics:io.openliberty.io.smallrye.metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.io.smallrye.metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.metrics:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:io.openliberty.io.smallrye.metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:io.openliberty.io.smallrye.metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.metrics:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io.openliberty.io.smallrye.metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.io.smallrye.metrics@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.activation.2.1 + +PackageName: io.openliberty.jakarta.activation.2.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.activation.2.1-a0e0435368e50251 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 5da928179c970351d93963cf9a09f4d3690664a7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.activation.2.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.activation.2.1:io.openliberty.jakarta.activation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.activation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:io.openliberty.jakarta.activation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.activation.2.1:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.activation.2.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.activation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.activation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:io.openliberty.jakarta.activation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.activation.2.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.activation.2.1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.activation.2.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.annotation.2.1 + +PackageName: io.openliberty.jakarta.annotation.2.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.annotation.2.1-b6edbcb5e9053be2 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f6bca45e40a919f6fdc227018d6090c95badb2fa +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.annotation.2.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:io.openliberty.jakarta.annotation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.annotation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotation:io.openliberty.jakarta.annotation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:annotation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.annotation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.annotation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:io.openliberty.jakarta.annotation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:annotation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotation:annotation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotation:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:annotation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:annotation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:annotation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotation:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotation:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.annotation.2.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.cdi.4.0 + +PackageName: io.openliberty.jakarta.cdi.4.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.cdi.4.0-00400792c1da6a4a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0d8aba74053c0e46e7b5f665c82927a4ec33e3dd +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.cdi.4.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:io.openliberty.jakarta.cdi.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.cdi.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.cdi.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.jakarta.cdi.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.cdi.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.jakarta.cdi.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.cdi.4.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.connectors.2.1 + +PackageName: io.openliberty.jakarta.connectors.2.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.connectors.2.1-e76868f2573e0ea9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 570547cd9bc78390f41c3e35640ffcf91714286b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.connectors.2.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:io.openliberty.jakarta.connectors.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.connectors.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:connectors:io.openliberty.jakarta.connectors.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:connectors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.connectors.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.connectors.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:io.openliberty.jakarta.connectors.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:connectors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:connectors:connectors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:connectors:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:connectors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:connectors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:connectors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:connectors:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:connectors:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.connectors.2.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.enterpriseBeans.4.0 + +PackageName: io.openliberty.jakarta.enterpriseBeans.4.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.enterpriseBeans.4.0-2e6d7754bdcf7906 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 62fdb23b5bd66484dfc80d59beb14e23a7254b31 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.enterpriseBeans.4.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:enterpriseBeans:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:enterpriseBeans:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:enterpriseBeans:enterpriseBeans:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:enterpriseBeans:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:enterpriseBeans:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:enterpriseBeans:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:enterpriseBeans:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:enterpriseBeans:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:enterpriseBeans:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:enterpriseBeans:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.enterpriseBeans.4.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.expressionLanguage.5.0 + +PackageName: io.openliberty.jakarta.expressionLanguage.5.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.expressionLanguage.5.0-d237df2857b8cf70 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6f614bba26cc3cc768f739797ee85fb249be0b65 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.expressionLanguage.5.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:io.openliberty.jakarta.expressionLanguage.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:expressionLanguage:io.openliberty.jakarta.expressionLanguage.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:expressionLanguage:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.expressionLanguage.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.expressionLanguage.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.expressionLanguage.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:io.openliberty.jakarta.expressionLanguage.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:expressionLanguage:expressionLanguage:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:expressionLanguage:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:expressionLanguage:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:expressionLanguage:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:expressionLanguage:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:expressionLanguage:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:expressionLanguage:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:expressionLanguage:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.expressionLanguage.5.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.interceptor.2.1 + +PackageName: io.openliberty.jakarta.interceptor.2.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.interceptor.2.1-78069b28c25a1408 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f76fcf3d571a1a54e195c1a1e534ddb99a573908 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.interceptor.2.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:io.openliberty.jakarta.interceptor.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interceptor:io.openliberty.jakarta.interceptor.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:interceptor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.interceptor.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.interceptor.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.interceptor.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:io.openliberty.jakarta.interceptor.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interceptor:interceptor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:interceptor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interceptor:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:interceptor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:interceptor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:interceptor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interceptor:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interceptor:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.interceptor.2.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.jsonb.3.0 + +PackageName: io.openliberty.jakarta.jsonb.3.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.jsonb.3.0-9dd0dc9b16e624f7 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 88fb55f7702b3547fb283d59c3c7cfab1663df9a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.jsonb.3.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:io.openliberty.jakarta.jsonb.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.jsonb.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.jsonb.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:io.openliberty.jakarta.jsonb.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.jsonb.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.jakarta.jsonb.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.jsonb.3.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.jsonp.2.1 + +PackageName: io.openliberty.jakarta.jsonp.2.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.jsonp.2.1-a9f126779846a343 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 600b2ff80a6a5a1eaef97bf9a29aed708b26ec81 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.jsonp.2.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:io.openliberty.jakarta.jsonp.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.jsonp.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.jsonp.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:io.openliberty.jakarta.jsonp.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.jsonp.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:io.openliberty.jakarta.jsonp.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.jsonp.2.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.mail.2.1 + +PackageName: io.openliberty.jakarta.mail.2.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.mail.2.1-2ab37d9ff119e432 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 4b8d7f012d2c2deaf25916df9add6029c45829e7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.mail.2.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.mail.2.1:io.openliberty.jakarta.mail.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.mail.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.mail.2.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.mail.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.mail.2.1:mail:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mail:io.openliberty.jakarta.mail.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.mail.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:io.openliberty.jakarta.mail.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.mail.2.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.mail.2.1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:mail:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:mail:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mail:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mail:mail:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:mail:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:mail:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mail:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mail:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.mail.2.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.pages.3.1 + +PackageName: io.openliberty.jakarta.pages.3.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.pages.3.1-128193a06618afaf +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 4faf3d5e290d6c3a3d3176104b4f1e5202de0fff +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.pages.3.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.pages.3.1:io.openliberty.jakarta.pages.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.pages.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.pages.3.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.pages.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.pages.3.1:pages:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pages:io.openliberty.jakarta.pages.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.pages.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.jakarta.pages.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.pages.3.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.pages.3.1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:pages:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:pages:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pages:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pages:pages:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:pages:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:pages:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pages:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pages:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.pages.3.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.persistence.3.1 + +PackageName: io.openliberty.jakarta.persistence.3.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.persistence.3.1-52af0fd25b633d19 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 4986ce5b27977030908c1778ebdb043b6f704e4c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.persistence.3.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.persistence.3.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.persistence.api.3.1 + +PackageName: io.openliberty.jakarta.persistence.api.3.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.persistence.api.3.1-ca362583b374a441 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6da72084de2ac752bbb1a3155fceacec1a28c062 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.jakarta.persistence.api.3.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:io.openliberty.jakarta.persistence.api.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.persistence.api.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:io.openliberty.jakarta.persistence.api.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.persistence.api.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:io.openliberty.jakarta.persistence.api.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.persistence.api.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.jakarta.persistence.api.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.persistence.api.3.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.restfulWS.3.1 + +PackageName: io.openliberty.jakarta.restfulWS.3.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.restfulWS.3.1-7ccdfa2119281541 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8c9de69561ec2a1185ea631894572f7f79f3109b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.restfulWS.3.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:io.openliberty.jakarta.restfulWS.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.restfulWS.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:io.openliberty.jakarta.restfulWS.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.restfulWS.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.restfulWS.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.jakarta.restfulWS.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.restfulWS.3.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.servlet.6.0 + +PackageName: io.openliberty.jakarta.servlet.6.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.servlet.6.0-4b40cefce58f0cac +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 01434105ca315d834039b38f660ba5091cd7c749 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.servlet.6.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:io.openliberty.jakarta.servlet.6.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.servlet.6.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.servlet.6.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:io.openliberty.jakarta.servlet.6.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.servlet.6.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:io.openliberty.jakarta.servlet.6.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.servlet.6.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.soap.3.0 + +PackageName: io.openliberty.jakarta.soap.3.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.soap.3.0-4d1af385604efc57 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6a37fca52245d12e8058ac69db1eb94c34464f97 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.soap.3.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.soap.3.0:io.openliberty.jakarta.soap.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.soap.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.soap.3.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.soap.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.soap.3.0:soap:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:soap:io.openliberty.jakarta.soap.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.soap.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.jakarta.soap.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.soap.3.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.soap.3.0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:soap:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:soap:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:soap:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:soap:soap:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:soap:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:soap:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:soap:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:soap:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.soap.3.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.transaction.2.0 + +PackageName: io.openliberty.jakarta.transaction.2.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.transaction.2.0-de6a4493c1f4ec7b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 5dd012a0b81e52b6642cf3e9a1c22e4422197e86 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.transaction.2.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:io.openliberty.jakarta.transaction.2.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.transaction.2.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:io.openliberty.jakarta.transaction.2.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.transaction.2.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.transaction.2.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:io.openliberty.jakarta.transaction.2.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.transaction.2.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.validation.3.0 + +PackageName: io.openliberty.jakarta.validation.3.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.validation.3.0-27e05000e02b06ac +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 77d31a3e095dbe4cbf6a78dc1c04b5fad8ff653f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.validation.3.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.validation.3.0:io.openliberty.jakarta.validation.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.validation.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.validation.3.0:validation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:validation:io.openliberty.jakarta.validation.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.validation.3.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.validation.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.validation.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.jakarta.validation.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.validation.3.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.validation.3.0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:validation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:validation:validation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:validation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:validation:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:validation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:validation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:validation:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:validation:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.validation.3.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.xmlBinding.4.0 + +PackageName: io.openliberty.jakarta.xmlBinding.4.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.xmlBinding.4.0-9f8511fbe5569dad +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 731f0590053b4fcf9462a6808833119f0d40a667 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.xmlBinding.4.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:io.openliberty.jakarta.xmlBinding.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.xmlBinding.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:xmlBinding:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlBinding:io.openliberty.jakarta.xmlBinding.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.xmlBinding.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.xmlBinding.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.jakarta.xmlBinding.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:xmlBinding:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlBinding:xmlBinding:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:xmlBinding:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlBinding:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:xmlBinding:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:xmlBinding:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlBinding:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlBinding:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.xmlBinding.4.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.xmlWS.4.0 + +PackageName: io.openliberty.jakarta.xmlWS.4.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.xmlWS.4.0-7e12bdbf180c8b67 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8582b7ba64bf095be13ec2c676f50a3656e88530 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.xmlWS.4.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:io.openliberty.jakarta.xmlWS.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.xmlWS.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.xmlWS.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:xmlWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlWS:io.openliberty.jakarta.xmlWS.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.xmlWS.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.jakarta.xmlWS.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:xmlWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:xmlWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlWS:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlWS:xmlWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:xmlWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:xmlWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlWS:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlWS:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.xmlWS.4.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakartaee.platform.v10 + +PackageName: io.openliberty.jakartaee.platform.v10 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakartaee.platform.v10-20733c6463dd687a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 348063905c4857f6fdce0c5a892aa136fe6cb703 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.jakartaee.platform.v10_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v10:io.openliberty.jakartaee.platform.v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakartaee.platform.v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v10:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:io.openliberty.jakartaee.platform.v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v10:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:io.openliberty.jakartaee.platform.v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v10:v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v10:io.openliberty.jakartaee.platform.v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v10:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v10:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v10:v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakartaee.platform.v10@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakartaee.platform.v9 + +PackageName: io.openliberty.jakartaee.platform.v9 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakartaee.platform.v9-4281e9510ade84e9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f4ba617f393e657ebe2a81b9bf3cb5abfe36930e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.jakartaee.platform.v9_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v9:io.openliberty.jakartaee.platform.v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakartaee.platform.v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v9:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:io.openliberty.jakartaee.platform.v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v9:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:io.openliberty.jakartaee.platform.v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v9:v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v9:io.openliberty.jakartaee.platform.v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v9:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v9:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v9:v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakartaee.platform.v9@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.java11.internal + +PackageName: io.openliberty.java11.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.java11.internal-38ddfeb1154186b8 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 30f58efe4bd9b199e4f85dc03deb57784c30c70c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.java11.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.java11.internal:io.openliberty.java11.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.java11.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.java11.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.java11.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.java11.internal:java11:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java11:io.openliberty.java11.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:java11:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:java11:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java11:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java11:java11:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.java11.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jaxrs30 + +PackageName: io.openliberty.jaxrs30 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jaxrs30-e775cebf7062ff5c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: b888a8585d5c77b542e141db0cf1ef3884023939 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/io.openliberty.jaxrs30_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jaxrs30:io.openliberty.jaxrs30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jaxrs30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jaxrs30:jaxrs30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs30:io.openliberty.jaxrs30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jaxrs30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs30:jaxrs30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jaxrs30@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jcache.internal + +PackageName: io.openliberty.jcache.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jcache.internal-65a05a3bf42e0221 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3ac78fb4dd8634a3555df67d67c5ce85b1351128 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.jcache.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jcache.internal:io.openliberty.jcache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jcache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.jcache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jcache.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jcache.internal:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:io.openliberty.jcache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jcache.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.microprofile.config.internal.common + +PackageName: io.openliberty.microprofile.config.internal.common +SPDXID: SPDXRef-Package-java-archive-io.openliberty.microprofile.config.internal.common-7354fb61a26e927e +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1683a9245c648f7cadb2d3d61d9d1764ee48e25b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.microprofile.config.internal.common_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.common:io.openliberty.microprofile.config.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.common:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.microprofile.config.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.microprofile.config.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.microprofile.config.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.common:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:io.openliberty.microprofile.config.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:io.openliberty.microprofile.config.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.common:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.microprofile.config.internal.common@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.microprofile.config.internal.serverxml + +PackageName: io.openliberty.microprofile.config.internal.serverxml +SPDXID: SPDXRef-Package-java-archive-io.openliberty.microprofile.config.internal.serverxml-6abea41833808907 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0bbce9be3a1b8c33d70fc7233fe2beda271d5fc9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.microprofile.config.internal.serverxml_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:io.openliberty.microprofile.config.internal.serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.microprofile.config.internal.serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.microprofile.config.internal.serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverxml:io.openliberty.microprofile.config.internal.serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.microprofile.config.internal.serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:io.openliberty.microprofile.config.internal.serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverxml:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverxml:serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverxml:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverxml:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.microprofile.config.internal.serverxml@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.microprofile.health.3.1.internal.jakarta + +PackageName: io.openliberty.microprofile.health.3.1.internal.jakarta +SPDXID: SPDXRef-Package-java-archive-io.openliberty.microprofile.health.3.1.internal.jakarta-8dbab8314d5b8152 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0150eda80144cf67eafd5208fbfbbd941a60c57c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.microprofile.health.3.1.internal.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.microprofile.health.3.1.internal.jakarta@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.microprofile.metrics.5.0.internal + +PackageName: io.openliberty.microprofile.metrics.5.0.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.internal-aa29e6c851679007 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 75f44fa3ab07c18f67370940b5f87ac9d92d8931 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:io.openliberty.microprofile.metrics.5.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.microprofile.metrics.5.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.microprofile.metrics.5.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.microprofile.metrics.5.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:io.openliberty.microprofile.metrics.5.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.microprofile.metrics.5.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:io.openliberty.microprofile.metrics.5.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.microprofile.metrics.5.0.monitor.internal + +PackageName: io.openliberty.microprofile.metrics.5.0.monitor.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.monitor.internal-a00da8d5e98c46b3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: be68c14f28952f6a029fe5d54226c22927dc4b13 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.monitor.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.monitor.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.microprofile.metrics.5.0.private.internal + +PackageName: io.openliberty.microprofile.metrics.5.0.private.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.private.internal-6b73b703db0b4142 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d89ea59f225f74b9f8801c13af04cb06de1012c7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.private.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:private:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:private:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:private:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:private:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:private:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:private:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:private:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.private.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.microprofile.metrics.5.0.public.internal + +PackageName: io.openliberty.microprofile.metrics.5.0.public.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.public.internal-ab489b83add53d04 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6651592c5a5dd169431ae962031171362a494c6e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.public.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:public:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:public:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:public:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:public:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:public:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:public:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:public:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.public.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.netty.internal + +PackageName: io.openliberty.netty.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.netty.internal-bf9bec02f2693337 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 388c33a47df9ed5f0724ff027968aab73ea1ca0e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.netty.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal:io.openliberty.netty.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.netty.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.netty.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:io.openliberty.netty.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.netty.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.netty.internal.tls.impl + +PackageName: io.openliberty.netty.internal.tls.impl +SPDXID: SPDXRef-Package-java-archive-io.openliberty.netty.internal.tls.impl-618277a2b604b791 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3a2e909afc5ba18b03e2cf51525ed50e0acdd76a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.netty.internal.tls.impl_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal.tls.impl:io.openliberty.netty.internal.tls.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.netty.internal.tls.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.netty.internal.tls.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal.tls.impl:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal.tls.impl:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:io.openliberty.netty.internal.tls.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:io.openliberty.netty.internal.tls.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal.tls.impl:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal.tls.impl:tls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tls:io.openliberty.netty.internal.tls.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:tls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:tls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tls:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:tls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tls:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:tls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tls:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tls:tls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.netty.internal.tls.impl@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.apache.commons.codec + +PackageName: io.openliberty.org.apache.commons.codec +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.apache.commons.codec-a44140855947d054 +PackageVersion: 1.15.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d757c6d041ee20a581d548165ecdac00e38a5eef +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.apache.commons.codec_1.15.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-https---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:io.openliberty.org.apache.commons.codec:1.15.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:commons:1.15.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.15.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:codec:1.15.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.15.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.apache.commons.codec@1.15.81.cl230920230904-1158 + +##### Package: io.openliberty.org.apache.commons.logging + +PackageName: io.openliberty.org.apache.commons.logging +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.apache.commons.logging-31c3e284ec109962 +PackageVersion: 1.2.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 279c6e2aeb7bc063c8a89b3888e91405b76b9bf3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.apache.commons.logging_1.2.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:io.openliberty.org.apache.commons.logging:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:commons:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:logging:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.apache.commons.logging@1.2.81.cl230920230904-1158 + +##### Package: io.openliberty.org.eclipse.angus.activation + +PackageName: io.openliberty.org.eclipse.angus.activation +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.angus.activation-83344f32bf0da0b4 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 61fd83498039f3a5148621b5d8bddd089a3502ca +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.eclipse.angus.activation_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:io.openliberty.org.eclipse.angus.activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.angus.activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:io.openliberty.org.eclipse.angus.activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.angus.activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:angus:io.openliberty.org.eclipse.angus.activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:angus:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.angus.activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:angus:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:angus:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:angus:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:angus:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:angus:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:angus:angus:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:angus:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:angus:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.eclipse.angus.activation@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.eclipse.microprofile.config.3.0 + +PackageName: io.openliberty.org.eclipse.microprofile.config.3.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.config.3.0-e6925c5839937e85 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 82a87ef7328be3acf5e241fdf190ac5d554d03cd +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.config.3.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.eclipse.microprofile.config.3.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.eclipse.microprofile.health.4.0 + +PackageName: io.openliberty.org.eclipse.microprofile.health.4.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.health.4.0-de255c121c78305a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d7bdad438ae273a9832e6b50bcdc206797cd2935 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.health.4.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.eclipse.microprofile.health.4.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.eclipse.microprofile.metrics.5.0 + +PackageName: io.openliberty.org.eclipse.microprofile.metrics.5.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.metrics.5.0-fcb825d727397a08 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: af846df8b48e4ef61618aac55d5e5a5bc8589598 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.metrics.5.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.eclipse.microprofile.metrics.5.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.eclipse.parsson.1.1 + +PackageName: io.openliberty.org.eclipse.parsson.1.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.parsson.1.1-1bb0c08cba48bbd4 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cd6e21087835ad34204fdf63c9aaa66e8339423c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.eclipse.parsson.1.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-12fb2ee089bfd860136a5dc94e5a1990ee9cc0e49396da51c2a58d0552aa370b +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:io.openliberty.org.eclipse.parsson.1.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.parsson.1.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.parsson.1.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:parsson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsson:io.openliberty.org.eclipse.parsson.1.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.parsson.1.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.org.eclipse.parsson.1.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:parsson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:parsson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsson:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsson:parsson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:parsson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsson:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:parsson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsson:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.eclipse.parsson.1.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.eclipse.persistence-3.1 + +PackageName: io.openliberty.org.eclipse.persistence-3.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.persistence-3.1-012f8ad4fa8efe92 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7ac9a2cd7ee99b646e01c47c7cd91c447fd9aa54 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.eclipse.persistence-3.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.eclipse.persistence-3.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.eclipse.yasson.3.0 + +PackageName: io.openliberty.org.eclipse.yasson.3.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.yasson.3.0-882143b6eaf54e26 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: b586ad0a5a9f7433fc47b88bcca626798418d4db +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.eclipse.yasson.3.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-61844448b5d7c01d6d8b1e440ffbfaddcb562b77af86d4b0eda5607a169affb8 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:io.openliberty.org.eclipse.yasson.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.yasson.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.yasson.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:yasson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:yasson:io.openliberty.org.eclipse.yasson.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.yasson.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.org.eclipse.yasson.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.org.eclipse.yasson.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:yasson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:yasson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:yasson:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:yasson:yasson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:yasson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:yasson:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:yasson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:yasson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:yasson:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:yasson:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.eclipse.yasson.3.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.glassfish.hk2.osgi-resource-locator + +PackageName: io.openliberty.org.glassfish.hk2.osgi-resource-locator +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.glassfish.hk2.osgi-resource-locator-2dd36d13eb338803 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 54dfdbe849208a2d5b4d394b014009240a0cd930 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.glassfish.hk2.osgi-resource-locator_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.glassfish.hk2.osgi-resource-locator@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.jboss.classfilewriter.1.3 + +PackageName: io.openliberty.org.jboss.classfilewriter.1.3 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.jboss.classfilewriter.1.3-2400266da2e70a6d +PackageVersion: 1.3.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: c928fd1ee45eb69b327e01ce884b3de54bef75f3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.jboss.classfilewriter.1.3_1.3.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classfilewriter:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classfilewriter:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classfilewriter:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classfilewriter:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classfilewriter:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classfilewriter:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.jboss.classfilewriter.1.3@1.3.81.cl230920230904-1158 + +##### Package: io.openliberty.org.jboss.logging35 + +PackageName: io.openliberty.org.jboss.logging35 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.jboss.logging35-6f5042d0577c4190 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f8736a8ce3f6f7686e4a6bb4ffafaa4428e0d3fe +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.jboss.logging35_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-https---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.logging35:io.openliberty.org.jboss.logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:io.openliberty.org.jboss.logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:io.openliberty.org.jboss.logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.jboss.logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.logging35:logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging35:io.openliberty.org.jboss.logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.logging35:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:io.openliberty.org.jboss.logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.logging35:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.jboss.logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging35:logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging35:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging35:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.jboss.logging35@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.jboss.resteasy.cdi.ee10 + +PackageName: io.openliberty.org.jboss.resteasy.cdi.ee10 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.cdi.ee10-e78953ee8df3990f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0d23fe9e3b6dd8e4cd6ae815e676d201f030c9ae +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.cdi.ee10_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.jboss.resteasy.cdi.ee10@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.jboss.resteasy.common.ee10 + +PackageName: io.openliberty.org.jboss.resteasy.common.ee10 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.common.ee10-5dc2391a0014e80d +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: dd369314f26c84f4ae932e72a7be883fcd596228 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.common.ee10_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:io.openliberty.org.jboss.resteasy.common.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.jboss.resteasy.common.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:io.openliberty.org.jboss.resteasy.common.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:io.openliberty.org.jboss.resteasy.common.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:io.openliberty.org.jboss.resteasy.common.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:io.openliberty.org.jboss.resteasy.common.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.jboss.resteasy.common.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.jboss.resteasy.common.ee10@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.jboss.resteasy.server.ee10 + +PackageName: io.openliberty.org.jboss.resteasy.server.ee10 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.server.ee10-be66d3c87069f1f6 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1a26bb7ece7f688f303eb06ce6441e45b043ff98 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.server.ee10_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:io.openliberty.org.jboss.resteasy.server.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.jboss.resteasy.server.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:io.openliberty.org.jboss.resteasy.server.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:io.openliberty.org.jboss.resteasy.server.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:io.openliberty.org.jboss.resteasy.server.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:io.openliberty.org.jboss.resteasy.server.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.jboss.resteasy.server.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.jboss.resteasy.server.ee10@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.jboss.weld5 + +PackageName: io.openliberty.org.jboss.weld5 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.jboss.weld5-42d3117b8c69897a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8592d52e48da3f67458b30efec3e7e4cbca9125b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.jboss.weld5_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.html +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5:io.openliberty.org.jboss.weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.jboss.weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:io.openliberty.org.jboss.weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:io.openliberty.org.jboss.weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.jboss.weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.jboss.weld5@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.jboss.weld5.se + +PackageName: io.openliberty.org.jboss.weld5.se +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.jboss.weld5.se-fbad8c9ad57d9307 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 682175ab3157695e910d5ed88f08cc7097913f2b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.jboss.weld5.se_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5.se:io.openliberty.org.jboss.weld5.se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.jboss.weld5.se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5.se:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5.se:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:io.openliberty.org.jboss.weld5.se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:io.openliberty.org.jboss.weld5.se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5.se:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.jboss.weld5.se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5.se:se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:se:io.openliberty.org.jboss.weld5.se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:se:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:se:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:se:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:se:se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.jboss.weld5.se@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.restfulWS.internal.ssl + +PackageName: io.openliberty.restfulWS.internal.ssl +SPDXID: SPDXRef-Package-java-archive-io.openliberty.restfulWS.internal.ssl-83e65ff9b0b27acb +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f1b41a2fe620aed188f3cc7b775c716adda8daeb +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.restfulWS.internal.ssl_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.internal.ssl:io.openliberty.restfulWS.internal.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.restfulWS.internal.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.internal.ssl:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:io.openliberty.restfulWS.internal.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.restfulWS.internal.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.internal.ssl:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.internal.ssl:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:io.openliberty.restfulWS.internal.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.restfulWS.internal.ssl@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.restfulWS.mpMetrics.filter + +PackageName: io.openliberty.restfulWS.mpMetrics.filter +SPDXID: SPDXRef-Package-java-archive-io.openliberty.restfulWS.mpMetrics.filter-b921929bb8e9c339 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3664b136dd3c8afe2d5b013d50fd33a7dd36f527 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.restfulWS.mpMetrics.filter_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.mpMetrics.filter:io.openliberty.restfulWS.mpMetrics.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.restfulWS.mpMetrics.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.mpMetrics.filter:mpMetrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.mpMetrics.filter:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mpMetrics:io.openliberty.restfulWS.mpMetrics.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:io.openliberty.restfulWS.mpMetrics.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:io.openliberty.restfulWS.mpMetrics.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.mpMetrics.filter:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:mpMetrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mpMetrics:mpMetrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mpMetrics:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:mpMetrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:mpMetrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mpMetrics:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.restfulWS.mpMetrics.filter@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.restfulWS30.jsonb20provider + +PackageName: io.openliberty.restfulWS30.jsonb20provider +SPDXID: SPDXRef-Package-java-archive-io.openliberty.restfulWS30.jsonb20provider-79b622081ee5a476 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 94027de1e2e8ca0975da0ca41bdb6d37c744b63d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.restfulWS30.jsonb20provider_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS30.jsonb20provider:io.openliberty.restfulWS30.jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS30.jsonb20provider:jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb20provider:io.openliberty.restfulWS30.jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS30.jsonb20provider:restfulWS30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.restfulWS30.jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS30:io.openliberty.restfulWS30.jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb20provider:jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb20provider:restfulWS30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS30:jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:restfulWS30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS30:restfulWS30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.restfulWS30.jsonb20provider@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.security + +PackageName: io.openliberty.security +SPDXID: SPDXRef-Package-java-archive-io.openliberty.security-338956fc7ac5ebb9 +PackageVersion: 1.3.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8d90e54083da2b106780485f2eac3f89021ddef8 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/io.openliberty.security_1.3.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security:io.openliberty.security:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.security:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security:security:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:io.openliberty.security:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:security:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.security@1.3.81.cl230920230904-1158 + +##### Package: io.openliberty.security.authentication.internal.builtin + +PackageName: io.openliberty.security.authentication.internal.builtin +SPDXID: SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.builtin-5463bf749e0971ce +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 11a8607e1ac245b4248725f2a7ef5c52a26bcc49 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.security.authentication.internal.builtin_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:io.openliberty.security.authentication.internal.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:io.openliberty.security.authentication.internal.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.security.authentication.internal.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.security.authentication.internal.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:io.openliberty.security.authentication.internal.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:io.openliberty.security.authentication.internal.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.security.authentication.internal.builtin@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.security.authentication.internal.filter + +PackageName: io.openliberty.security.authentication.internal.filter +SPDXID: SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.filter-ad8eaf70eb144d78 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 75ecb2a58afd5bb11c90f8c9381105d9f4343456 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.security.authentication.internal.filter_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.filter:io.openliberty.security.authentication.internal.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:io.openliberty.security.authentication.internal.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.filter:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.security.authentication.internal.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.security.authentication.internal.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.filter:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.filter:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:io.openliberty.security.authentication.internal.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:io.openliberty.security.authentication.internal.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.filter:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.security.authentication.internal.filter@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.security.authentication.internal.tai + +PackageName: io.openliberty.security.authentication.internal.tai +SPDXID: SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.tai-13af1a248263e9c5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a282f996e08863d582518a88ea8a0d11bb69801e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.security.authentication.internal.tai_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.tai:io.openliberty.security.authentication.internal.tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:io.openliberty.security.authentication.internal.tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.tai:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.security.authentication.internal.tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.security.authentication.internal.tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.tai:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.tai:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:io.openliberty.security.authentication.internal.tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.tai:tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tai:io.openliberty.security.authentication.internal.tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tai:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tai:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tai:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tai:tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.security.authentication.internal.tai@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.security.jaas.internal.common + +PackageName: io.openliberty.security.jaas.internal.common +SPDXID: SPDXRef-Package-java-archive-io.openliberty.security.jaas.internal.common-99399c598d276da1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a09abadfc8316c5d16c0756023e4b716ae7d9bcb +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.security.jaas.internal.common_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.jaas.internal.common:io.openliberty.security.jaas.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.security.jaas.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.security.jaas.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.jaas.internal.common:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.jaas.internal.common:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:io.openliberty.security.jaas.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:io.openliberty.security.jaas.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.jaas.internal.common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.jaas.internal.common:jaas:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaas:io.openliberty.security.jaas.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jaas:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jaas:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaas:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaas:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:jaas:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:jaas:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaas:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaas:jaas:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.security.jaas.internal.common@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.security.sso.internal + +PackageName: io.openliberty.security.sso.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.security.sso.internal-d6187fd248cce2ce +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2851ee968221c18e5918fb41fe93a9c3cfff5378 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.security.sso.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.sso.internal:io.openliberty.security.sso.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.security.sso.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.security.sso.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.sso.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.sso.internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:io.openliberty.security.sso.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.sso.internal:sso:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sso:io.openliberty.security.sso.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:sso:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:sso:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:sso:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sso:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sso:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sso:sso:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.security.sso.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.session.6.0.internal + +PackageName: io.openliberty.session.6.0.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.session.6.0.internal-1c350314002feaf1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1eb0059e9faf44de786bead0ba88f7b579f37f61 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.session.6.0.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.session.6.0.internal:io.openliberty.session.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.session.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.session.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.session.6.0.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.session.6.0.internal:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:io.openliberty.session.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.session.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:io.openliberty.session.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.session.6.0.internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.session.6.0.internal:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.session.6.0.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.transaction + +PackageName: io.openliberty.transaction +SPDXID: SPDXRef-Package-java-archive-io.openliberty.transaction-8a165dac8620c5e9 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7b3438ddf373774703b3b60de39900301bf0131f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/io.openliberty.transaction_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.transaction:io.openliberty.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.transaction:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:io.openliberty.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.transaction@1.1.81.cl230920230904-1158 + +##### Package: io.openliberty.transaction.internal.cdi20.jakarta + +PackageName: io.openliberty.transaction.internal.cdi20.jakarta +SPDXID: SPDXRef-Package-java-archive-io.openliberty.transaction.internal.cdi20.jakarta-b5fc44809a53b473 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 4c5074ab61f40e54b75f1b3e8524b38254d64880 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.transaction.internal.cdi20.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:io.openliberty.transaction.internal.cdi20.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.transaction.internal.cdi20.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:io.openliberty.transaction.internal.cdi20.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.transaction.internal.cdi20.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.transaction.internal.cdi20.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi20:io.openliberty.transaction.internal.cdi20.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:cdi20:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi20:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi20:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:cdi20:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi20:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:cdi20:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi20:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi20:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi20:cdi20:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.transaction.internal.cdi20.jakarta@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.webcontainer.security.internal + +PackageName: io.openliberty.webcontainer.security.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.webcontainer.security.internal-3d1dbec5aaae7993 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8a75bf6d953aed59a8aaf93b199cfac202ff9dca +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.webcontainer.security.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.security.internal:io.openliberty.webcontainer.security.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.security.internal:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:io.openliberty.webcontainer.security.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.webcontainer.security.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.webcontainer.security.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.security.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.security.internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:io.openliberty.webcontainer.security.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.webcontainer.security.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.webcontainer.servlet.6.0.internal + +PackageName: io.openliberty.webcontainer.servlet.6.0.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.webcontainer.servlet.6.0.internal-dbeb836c22275336 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8b14f75a7e76af8b308d8296e28cd92e85457691 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.webcontainer.servlet.6.0.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:io.openliberty.webcontainer.servlet.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:io.openliberty.webcontainer.servlet.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.webcontainer.servlet.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.webcontainer.servlet.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:io.openliberty.webcontainer.servlet.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.webcontainer.servlet.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:io.openliberty.webcontainer.servlet.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.webcontainer.servlet.6.0.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.webcontainer.servlet.6.0.internal.factories + +PackageName: io.openliberty.webcontainer.servlet.6.0.internal.factories +SPDXID: SPDXRef-Package-java-archive-io.openliberty.webcontainer.servlet.6.0.internal.factories-54be295232b23485 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1066aa5399c2dc76e7afbc19b19caf980fa7f5f5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.webcontainer.servlet.6.0.internal.factories_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:factories:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:factories:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:factories:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:factories:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:factories:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:factories:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:factories:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.webcontainer.servlet.6.0.internal.factories@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.wsoc.ssl.internal + +PackageName: io.openliberty.wsoc.ssl.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.wsoc.ssl.internal-8e0e00ee38279d62 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d4e0c38ba43381cb0bb5b6708350a68457d6ec04 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.wsoc.ssl.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.wsoc.ssl.internal:io.openliberty.wsoc.ssl.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.wsoc.ssl.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.wsoc.ssl.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.wsoc.ssl.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.wsoc.ssl.internal:wsoc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsoc:io.openliberty.wsoc.ssl.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.wsoc.ssl.internal:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:io.openliberty.wsoc.ssl.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:wsoc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:wsoc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsoc:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsoc:wsoc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:wsoc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsoc:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.wsoc.ssl.internal@1.0.81.cl230920230904-1158 + +##### Package: jrt-fs + +PackageName: jrt-fs +SPDXID: SPDXRef-Package-java-archive-jrt-fs-b5a4068828245f9c +PackageVersion: 17.0.8.1 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cb9b98d3ed84334a85714a98bd28294cdd45f745 +PackageSourceInfo: acquired package info from installed java archive: /opt/java/openjdk/lib/jrt-fs.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:oracle-corporation:jrt-fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:oracle-corporation:jrt_fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:oracle_corporation:jrt-fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:oracle_corporation:jrt_fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm-corporation:jrt-fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm-corporation:jrt_fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm_corporation:jrt-fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm_corporation:jrt_fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jrt-fs:jrt-fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jrt-fs:jrt_fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jrt_fs:jrt-fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jrt_fs:jrt_fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jrt:jrt-fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jrt:jrt_fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/jrt-fs/jrt-fs@17.0.8.1 + +##### Package: org.eclipse.osgi + +PackageName: org.eclipse.osgi +SPDXID: SPDXRef-Package-java-archive-org.eclipse.osgi-98c62e474bd18238 +PackageVersion: 3.18.300.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 019063c54256283568372296659695a9ceae6808 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/org.eclipse.osgi_3.18.300.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:SystemBundleActivator:SystemBundleActivator:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:SystemBundleActivator:org.eclipse.osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org.eclipse.osgi:SystemBundleActivator:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org.eclipse.osgi:org.eclipse.osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:SystemBundleActivator:framework:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:framework:SystemBundleActivator:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:SystemBundleActivator:internal:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:SystemBundleActivator:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:SystemBundleActivator:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:SystemBundleActivator:osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:framework:org.eclipse.osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org.eclipse.osgi:framework:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:SystemBundleActivator:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:org.eclipse.osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org.eclipse.osgi:internal:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org.eclipse.osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org.eclipse.osgi:osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org.eclipse.osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:framework:framework:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:framework:internal:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:framework:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:framework:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:internal:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:framework:osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:framework:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:internal:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/org.eclipse.osgi@3.18.300.cl230920230904-1158 + +##### Package: ws-auditreader + +PackageName: ws-auditreader +SPDXID: SPDXRef-Package-java-archive-ws-auditreader-2cb4d0d746cdae86 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a0bde2758989386487d5135c5aa44c83df71e8a1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-auditreader.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.security.audit.reader.auditreader/ws-auditreader@1.0.81.cl230920230904-1158 + +##### Package: ws-auditreader + +PackageName: ws-auditreader +SPDXID: SPDXRef-Package-java-archive-ws-auditreader-f510d73363ff9447 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a0bde2758989386487d5135c5aa44c83df71e8a1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.audit.reader_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.security.audit.reader.auditreader/ws-auditreader@1.0.81.cl230920230904-1158 + +##### Package: ws-binarylogviewer + +PackageName: ws-binarylogviewer +SPDXID: SPDXRef-Package-java-archive-ws-binarylogviewer-ad2bec3dc6b298dd +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: c91b678962771431ded4369398444edc2442c296 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-binarylogviewer.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-binarylogviewer:ws-binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-binarylogviewer:ws_binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_binarylogviewer:ws-binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_binarylogviewer:ws_binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:ws-binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:ws_binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-binarylogviewer:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_binarylogviewer:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws-binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws_binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-binarylogviewer:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_binarylogviewer:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:ws-binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:ws_binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-binarylogviewer:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_binarylogviewer:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-binarylogviewer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_binarylogviewer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.logging.hpel.binarylogviewer/ws-binarylogviewer@1.0.81.cl230920230904-1158 + +##### Package: ws-featureUtility + +PackageName: ws-featureUtility +SPDXID: SPDXRef-Package-java-archive-ws-featureUtility-1c587851fc967577 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: eedd908592392e0943cdb93429c34f74b1dc6d77 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-featureUtility.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featureUtility:ws-featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featureUtility:ws_featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featureUtility:ws-featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featureUtility:ws_featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:ws-featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:ws_featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featureUtility:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featureUtility:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:ws-featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:ws_featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featureUtility:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featureUtility:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:ws-featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:ws_featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featureUtility:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featureUtility:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featureUtility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featureUtility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.install.featureUtility.featureutil/ws-featureUtility@1.0.81.cl230920230904-1158 + +##### Package: ws-featurelist + +PackageName: ws-featurelist +SPDXID: SPDXRef-Package-java-archive-ws-featurelist-db745e443214a1e2 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: af3abc47687a9ebe72045b42c15251af60365ca1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-featurelist.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featurelist:ws-featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featurelist:ws_featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featurelist:ws-featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featurelist:ws_featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:ws-featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:ws_featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featurelist:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featurelist:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:ws-featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:ws_featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featurelist:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featurelist:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featurelist:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featurelist:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featurelist:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featurelist:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.kernel.feature.featurelist/ws-featurelist@1.0.81.cl230920230904-1158 + +##### Package: ws-javaagent + +PackageName: ws-javaagent +SPDXID: SPDXRef-Package-java-archive-ws-javaagent-286db1a1f1423963 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f943bc25281f17cd228becf29f5d50eaedb89f01 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-javaagent.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-javaagent:ws-javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-javaagent:ws_javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_javaagent:ws-javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_javaagent:ws_javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:ws-javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:ws_javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-javaagent:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_javaagent:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-javaagent:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_javaagent:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:ws-javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:ws_javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-javaagent:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_javaagent:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-javaagent:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_javaagent:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.kernel.instrument.check/ws-javaagent@1.0.81.cl230920230904-1158 + +##### Package: ws-launch + +PackageName: ws-launch +SPDXID: SPDXRef-Package-java-archive-ws-launch-22d346fb8340a3c1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6fc615ac75e09a7bf51e921c019fbb5aac09af1b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/ws-launch.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.kernel.boot.ws-launch/ws-launch@1.0.81.cl230920230904-1158 + +##### Package: ws-productutil + +PackageName: ws-productutil +SPDXID: SPDXRef-Package-java-archive-ws-productutil-af521fee7557a77b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1d07129bec393f82d159e8bcfa85154dbaac2fab +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.product.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.product.utility.productutil/ws-productutil@1.0.81.cl230920230904-1158 + +##### Package: ws-productutil + +PackageName: ws-productutil +SPDXID: SPDXRef-Package-java-archive-ws-productutil-b3b1a307ad9a854d +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1d07129bec393f82d159e8bcfa85154dbaac2fab +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-productutil.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.product.utility.productutil/ws-productutil@1.0.81.cl230920230904-1158 + +##### Package: ws-schemagen + +PackageName: ws-schemagen +SPDXID: SPDXRef-Package-java-archive-ws-schemagen-2643abaf60e0638d +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1c91aaabb2496ae4289f77dd7a2c4ac0e3b0ce01 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-schemagen.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-schemagen:ws-schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-schemagen:ws_schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_schemagen:ws-schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_schemagen:ws_schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws-schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws_schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws-schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws_schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.config.schemagen.schemagen/ws-schemagen@1.0.81.cl230920230904-1158 + +##### Package: ws-securityutil + +PackageName: ws-securityutil +SPDXID: SPDXRef-Package-java-archive-ws-securityutil-248c284f10d70274 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a362ef0999760bb9a2aa8d92488994c6da1c54f3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-securityutil.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.security.utility.securityutil/ws-securityutil@1.0.81.cl230920230904-1158 + +##### Package: ws-securityutil + +PackageName: ws-securityutil +SPDXID: SPDXRef-Package-java-archive-ws-securityutil-df187fb4fe4c3522 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a362ef0999760bb9a2aa8d92488994c6da1c54f3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.security.utility.securityutil/ws-securityutil@1.0.81.cl230920230904-1158 + +##### Package: ws-server + +PackageName: ws-server +SPDXID: SPDXRef-Package-java-archive-ws-server-c24a2dabb7438137 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 743a5264078f15e77bf0a2f330fc193fee24fca6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-server.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.kernel.boot.ws-server/ws-server@1.0.81.cl230920230904-1158 + +##### Package: ws-server + +PackageName: ws-server +SPDXID: SPDXRef-Package-java-archive-ws-server-e4dbd36ed2832fe2 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: dfa587e5e1c5de74cb3bafab467fc9527eb4a749 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.boot_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.kernel.boot.ws-server/ws-server@1.0.81.cl230920230904-1158 + +##### Package: ws-serverSchemagen + +PackageName: ws-serverSchemagen +SPDXID: SPDXRef-Package-java-archive-ws-serverSchemagen-03f4a941773d92c5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: beb544e1110d445cf29c07b22eeb2468598009e2 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-serverSchemagen.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.config.server.schemagen.serverschemagen/ws-serverSchemagen@1.0.81.cl230920230904-1158 + +##### Package: ws-serverSchemagen + +PackageName: ws-serverSchemagen +SPDXID: SPDXRef-Package-java-archive-ws-serverSchemagen-9b02db7a319b708c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: beb544e1110d445cf29c07b22eeb2468598009e2 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.config.server.schemagen_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.config.server.schemagen.serverschemagen/ws-serverSchemagen@1.0.81.cl230920230904-1158 + +##### Package: ws-webserverPluginutil + +PackageName: ws-webserverPluginutil +SPDXID: SPDXRef-Package-java-archive-ws-webserverPluginutil-1733bf66d2879f15 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ac849f18e907fe23afa96cc9fcb0f2e9f76cb3f6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.webserver.plugin.utility.webserverPluginutil/ws-webserverPluginutil@1.0.81.cl230920230904-1158 + +##### Package: ws-webserverPluginutil + +PackageName: ws-webserverPluginutil +SPDXID: SPDXRef-Package-java-archive-ws-webserverPluginutil-5138594310b74d46 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ac849f18e907fe23afa96cc9fcb0f2e9f76cb3f6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-webserverPluginutil.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.webserver.plugin.utility.webserverPluginutil/ws-webserverPluginutil@1.0.81.cl230920230904-1158 + +##### Package: PyGObject + +PackageName: PyGObject +SPDXID: SPDXRef-Package-python-PyGObject-026a55989515496e +PackageVersion: 3.28.3 +PackageSupplier: Person: James Henstridge (james@daa.com.au) +PackageOriginator: Person: James Henstridge (james@daa.com.au) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/pygobject-3.28.3-py3.6.egg-info +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GNU-LGPL +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridge_project:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridge_project:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridgeproject:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridgeproject:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridge_project:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridge:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridge:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridgeproject:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-PyGObject:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-PyGObject:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_PyGObject:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_PyGObject:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_project:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_project:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jamesproject:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jamesproject:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:PyGObject:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:PyGObject:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridge:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-PyGObject:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_PyGObject:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_project:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jamesproject:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:PyGObject:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/PyGObject@3.28.3 + +##### Package: PySocks + +PackageName: PySocks +SPDXID: SPDXRef-Package-python-PySocks-9a572bb052f6e9e4 +PackageVersion: 1.6.8 +PackageSupplier: Person: Anorov (anorov.vorona@gmail.com) +PackageOriginator: Person: Anorov (anorov.vorona@gmail.com) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/PySocks-1.6.8-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/PySocks-1.6.8-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_vorona_project:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_vorona_project:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_voronaproject:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_voronaproject:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_project:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_project:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_vorona_project:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-PySocks:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-PySocks:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_PySocks:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_PySocks:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov-vorona:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov-vorona:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_vorona:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_vorona:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_voronaproject:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorovproject:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorovproject:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:PySocks:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:PySocks:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_project:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-PySocks:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_PySocks:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov-vorona:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_vorona:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorovproject:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:PySocks:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/PySocks@1.6.8 + +##### Package: chardet + +PackageName: chardet +SPDXID: SPDXRef-Package-python-chardet-ff941a34dc8ad898 +PackageVersion: 3.0.4 +PackageSupplier: Person: Mark Pilgrim (mark@diveintomark.org) +PackageOriginator: Person: Mark Pilgrim (mark@diveintomark.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPL +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrim_project:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrim_project:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrimproject:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrimproject:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-chardet:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-chardet:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_chardet:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_chardet:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrim_project:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrim:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrim:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrimproject:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_project:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_project:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:markproject:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:markproject:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chardet:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chardet:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-chardet:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_chardet:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrim:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_project:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:markproject:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chardet:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/chardet@3.0.4 + +##### Package: crit + +PackageName: crit +SPDXID: SPDXRef-Package-python-crit-93303bae4b0d7b38 +PackageVersion: 3.18 +PackageSupplier: Person: CRIU team (criu@openvz.org) +PackageOriginator: Person: CRIU team (criu@openvz.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/PKG-INFO, /usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/installed-files.txt, /usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team_project:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team_project:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_teamproject:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_teamproject:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_project:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_project:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criuproject:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criuproject:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-crit:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-crit:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_crit:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_crit:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team_project:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_teamproject:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_project:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crit:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crit:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criuproject:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-crit:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_crit:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crit:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu:crit:3.18:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/crit@3.18 + +##### Package: crit + +PackageName: crit +SPDXID: SPDXRef-Package-python-crit-9d9ae1c0b26b6359 +PackageVersion: 3.18 +PackageSupplier: Person: CRIU team (criu@openvz.org) +PackageOriginator: Person: CRIU team (criu@openvz.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /tmp/usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/PKG-INFO, /tmp/usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/installed-files.txt, /tmp/usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team_project:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team_project:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_teamproject:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_teamproject:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_project:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_project:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criuproject:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criuproject:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-crit:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-crit:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_crit:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_crit:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team_project:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_teamproject:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_project:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crit:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crit:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criuproject:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-crit:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_crit:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crit:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu:crit:3.18:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/crit@3.18 + +##### Package: dbus-python + +PackageName: dbus-python +SPDXID: SPDXRef-Package-python-dbus-python-9a2539d64666884c +PackageVersion: 1.2.4 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/dbus_python-1.2.4-py3.6.egg-info/PKG-INFO, /usr/lib64/python3.6/site-packages/dbus_python-1.2.4-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Expat--MIT-X11- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus-python:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus-python:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus_python:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus_python:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-python:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-python:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_python:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_python:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus-python:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus-python:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus_python:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus_python:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-python:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-python:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_python:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_python:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/dbus-python@1.2.4 + +##### Package: decorator + +PackageName: decorator +SPDXID: SPDXRef-Package-python-decorator-64ad1a0dc4b7f605 +PackageVersion: 4.2.1 +PackageSupplier: Person: Michele Simionato (michele.simionato@gmail.com) +PackageOriginator: Person: Michele Simionato (michele.simionato@gmail.com) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-new-BSD-License +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:decorator:4.2.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/decorator@4.2.1 + +##### Package: ethtool + +PackageName: ethtool +SPDXID: SPDXRef-Package-python-ethtool-47e0eb55544e9981 +PackageVersion: 0.14 +PackageSupplier: Person: Harald Hoyer, Arnaldo Carvalho de Melo, David Sommerseth (davids@redhat.com) +PackageOriginator: Person: Harald Hoyer, Arnaldo Carvalho de Melo, David Sommerseth (davids@redhat.com) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/ethtool-0.14-py3.6.egg-info/PKG-INFO, /usr/lib64/python3.6/site-packages/ethtool-0.14-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: GPL-2.0-only +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommerseth_project:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommerseth_project:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommersethproject:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommersethproject:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommerseth_project:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommerseth:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommerseth:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommersethproject:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommerseth:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davids_project:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davids_project:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-ethtool:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-ethtool:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_ethtool:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_ethtool:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davidsproject:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davidsproject:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davids_project:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ethtool:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ethtool:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-ethtool:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_ethtool:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davids:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davids:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davidsproject:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ethtool:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davids:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/ethtool@0.14 + +##### Package: gpg + +PackageName: gpg +SPDXID: SPDXRef-Package-python-gpg-176c74855eaee639 +PackageVersion: 1.13.1 +PackageSupplier: Person: The GnuPG hackers (gnupg-devel@gnupg.org) +PackageOriginator: Person: The GnuPG hackers (gnupg-devel@gnupg.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/gpg-1.13.1-py3.6.egg-info +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPL2.1---the-library---GPL2---tests-and-examples- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackers_project:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackers_project:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackersproject:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackersproject:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_devel_project:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_devel_project:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_develproject:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_develproject:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackers_project:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackers:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackers:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackersproject:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_devel_project:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg-devel:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg-devel:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_devel:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_devel:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_develproject:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-gpg:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-gpg:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_gpg:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_gpg:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackers:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg-devel:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_devel:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-gpg:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_gpg:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/gpg@1.13.1 + +##### Package: idna + +PackageName: idna +SPDXID: SPDXRef-Package-python-idna-df327da7f0a4a959 +PackageVersion: 2.5 +PackageSupplier: Person: Kim Davies (kim@cynosure.com.au) +PackageOriginator: Person: Kim Davies (kim@cynosure.com.au) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/idna-2.5-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/idna-2.5-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-like +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_davies_project:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_davies_project:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_daviesproject:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_daviesproject:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_davies_project:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_project:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_project:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-idna:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-idna:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_idna:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_idna:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_davies:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_davies:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_daviesproject:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kimproject:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kimproject:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:idna:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:idna:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_project:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-idna:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_idna:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_davies:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kimproject:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:idna:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim:idna:2.5:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/idna@2.5 + +##### Package: iniparse + +PackageName: iniparse +SPDXID: SPDXRef-Package-python-iniparse-b1ac8ab06cf60d46 +PackageVersion: 0.4 +PackageSupplier: Person: Paramjit Oberoi (param@cs.wisc.edu) +PackageOriginator: Person: Paramjit Oberoi (param@cs.wisc.edu) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoi_project:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoi_project:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoiproject:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoiproject:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoi_project:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoi:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoi:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoiproject:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-iniparse:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-iniparse:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_iniparse:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_iniparse:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:param_project:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:param_project:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramproject:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramproject:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iniparse:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iniparse:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoi:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-iniparse:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_iniparse:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:param_project:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:param:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:param:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramproject:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iniparse:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:param:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/iniparse@0.4 + +##### Package: libcomps + +PackageName: libcomps +SPDXID: SPDXRef-Package-python-libcomps-08b412214951d9e5 +PackageVersion: 0.1.18 +PackageSupplier: Person: RPM Software Management (rpm-ecosystem@lists.rpm.org) +PackageOriginator: Person: RPM Software Management (rpm-ecosystem@lists.rpm.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/libcomps-0.1.18-py3.6.egg-info/PKG-INFO, /usr/lib64/python3.6/site-packages/libcomps-0.1.18-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_management_project:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_management_project:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_managementproject:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_managementproject:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_management_project:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_management:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_management:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_managementproject:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystem_project:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystem_project:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystemproject:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystemproject:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_management:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-libcomps:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-libcomps:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_libcomps:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_libcomps:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystem_project:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-ecosystem:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-ecosystem:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystem:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystem:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystemproject:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcomps:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcomps:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-libcomps:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_libcomps:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-ecosystem:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystem:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcomps:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/libcomps@0.1.18 + +##### Package: pyinotify + +PackageName: pyinotify +SPDXID: SPDXRef-Package-python-pyinotify-2cc0497e30b46d84 +PackageVersion: 0.9.6 +PackageSupplier: Person: Sebastien Martini (seb@dbzteam.org) +PackageOriginator: Person: Sebastien Martini (seb@dbzteam.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-MIT-License +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martini_project:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martini_project:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martiniproject:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martiniproject:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martini_project:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martini:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martini:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martiniproject:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-pyinotify:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-pyinotify:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_pyinotify:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_pyinotify:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:seb_project:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:seb_project:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martini:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebproject:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebproject:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pyinotify:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pyinotify:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-pyinotify:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_pyinotify:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:seb_project:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:seb:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:seb:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebproject:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pyinotify:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:seb:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/pyinotify@0.9.6 + +##### Package: python-dateutil + +PackageName: python-dateutil +SPDXID: SPDXRef-Package-python-python-dateutil-509a860043c6af7b +PackageVersion: 2.6.1 +PackageSupplier: Person: Paul Ganssle (dateutil@python.org) +PackageOriginator: Person: Paul Ganssle (dateutil@python.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Simplified-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paul_ganssle_project:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paul_ganssle_project:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paul_ganssleproject:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paul_ganssleproject:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dateutil_project:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dateutil_project:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dateutilproject:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dateutilproject:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dateutil:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dateutil:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dateutil:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dateutil:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paul_ganssle:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paul_ganssle:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dateutil:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dateutil:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/python-dateutil@2.6.1 + +##### Package: python-dmidecode + +PackageName: python-dmidecode +SPDXID: SPDXRef-Package-python-python-dmidecode-9f1510382966a14d +PackageVersion: 3.12.2 +PackageSupplier: Person: Nima Talebi & David Sommerseth (nima@it.net.au, davids@redhat.com) +PackageOriginator: Person: Nima Talebi & David Sommerseth (nima@it.net.au, davids@redhat.com) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/python_dmidecode-3.12.2-py3.6.egg-info +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: GPL-2.0-only +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_talebi_\&_david_sommerseth_project:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_talebi_\&_david_sommerseth_project:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_talebi_\&_david_sommersethproject:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_talebi_\&_david_sommersethproject:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_talebi_\&_david_sommerseth:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_talebi_\&_david_sommerseth:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dmidecode:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dmidecode:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dmidecode:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dmidecode:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_project:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_project:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nimaproject:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nimaproject:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/python-dmidecode@3.12.2 + +##### Package: requests + +PackageName: requests +SPDXID: SPDXRef-Package-python-requests-69c379e96a25693b +PackageVersion: 2.20.0 +PackageSupplier: Person: Kenneth Reitz (me@kennethreitz.org) +PackageOriginator: Person: Kenneth Reitz (me@kennethreitz.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Apache-2.0 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitz_project:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitz_project:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitzproject:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitzproject:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-requests:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-requests:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_requests:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_requests:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitz_project:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitz:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitz:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitzproject:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:me_project:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:me_project:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:meproject:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:meproject:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-requests:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_requests:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:requests:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:requests:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitz:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:me_project:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:me:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:me:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:meproject:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:requests:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:me:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/requests@2.20.0 + +##### Package: rpm + +PackageName: rpm +SPDXID: SPDXRef-Package-python-rpm-a5c78e59349331b5 +PackageVersion: 4.14.3 +PackageSupplier: Person: UNKNOWN (rpm-maint@lists.rpm.org) +PackageOriginator: Person: UNKNOWN (rpm-maint@lists.rpm.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/rpm-4.14.3-py3.6.egg-info +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-UNKNOWN +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maint_project:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maint_project:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maintproject:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maintproject:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknown_project:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknown_project:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknownproject:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknownproject:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-rpm:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-rpm:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_rpm:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_rpm:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maint_project:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-maint:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-maint:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maint:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maint:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maintproject:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknown_project:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknown:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknown:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknownproject:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-rpm:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_rpm:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-maint:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maint:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknown:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/rpm@4.14.3 + +##### Package: setuptools + +PackageName: setuptools +SPDXID: SPDXRef-Package-python-setuptools-70ad73e984ff17a3 +PackageVersion: 39.2.0 +PackageSupplier: Person: Python Packaging Authority (distutils-sig@python.org) +PackageOriginator: Person: Python Packaging Authority (distutils-sig@python.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/METADATA, /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/RECORD, /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-UNKNOWN +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authority_project:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authority_project:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authorityproject:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authorityproject:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authority_project:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authority:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authority:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authorityproject:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sig_project:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sig_project:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sigproject:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sigproject:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authority:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-setuptools:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-setuptools:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_setuptools:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_setuptools:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sig_project:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils-sig:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils-sig:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sig:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sig:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sigproject:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-setuptools:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_setuptools:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:setuptools:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:setuptools:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils-sig:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sig:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:setuptools:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/setuptools@39.2.0 + +##### Package: six + +PackageName: six +SPDXID: SPDXRef-Package-python-six-e4e7ee91fea80cd9 +PackageVersion: 1.11.0 +PackageSupplier: Person: Benjamin Peterson (benjamin@python.org) +PackageOriginator: Person: Benjamin Peterson (benjamin@python.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/METADATA, /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/RECORD, /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_peterson_project:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_peterson_project:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_petersonproject:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_petersonproject:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_peterson_project:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_peterson:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_peterson:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_petersonproject:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_project:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_project:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjaminproject:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjaminproject:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_peterson:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-six:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-six:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_six:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_six:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_project:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjaminproject:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-six:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_six:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:six:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:six:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:six:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/six@1.11.0 + +##### Package: subscription-manager + +PackageName: subscription-manager +SPDXID: SPDXRef-Package-python-subscription-manager-7276605e595d4096 +PackageVersion: 1.28.36 +PackageSupplier: Person: Adrian Likins (alikins@redhat.com) +PackageOriginator: Person: Adrian Likins (alikins@redhat.com) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/PKG-INFO, /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription-manager:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription-manager:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription_manager:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription_manager:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins_project:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins_project:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likinsproject:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likinsproject:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription-manager:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription-manager:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription_manager:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription_manager:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins_project:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins_project:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins_project:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins_project:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikinsproject:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikinsproject:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likinsproject:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likinsproject:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins_project:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins_project:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikinsproject:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikinsproject:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/subscription-manager@1.28.36 + +##### Package: syspurpose + +PackageName: syspurpose +SPDXID: SPDXRef-Package-python-syspurpose-c2c79d0712654121 +PackageVersion: 1.28.36 +PackageSupplier: Person: Chris Snyder (chainsaw@redhat.com) +PackageOriginator: Person: Chris Snyder (chainsaw@redhat.com) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/syspurpose-1.28.36-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/syspurpose-1.28.36-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyder_project:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyder_project:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyderproject:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyderproject:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-syspurpose:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-syspurpose:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_syspurpose:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_syspurpose:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsaw_project:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsaw_project:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsawproject:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsawproject:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyder_project:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyder:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyder:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyderproject:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-syspurpose:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_syspurpose:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:syspurpose:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:syspurpose:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsaw_project:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsaw:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsaw:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsawproject:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyder:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:syspurpose:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsaw:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/syspurpose@1.28.36 + +##### Package: systemd-python + +PackageName: systemd-python +SPDXID: SPDXRef-Package-python-systemd-python-7d3d321f514748f5 +PackageVersion: 234 +PackageSupplier: Person: systemd developers (systemd-devel@lists.freedesktop.org) +PackageOriginator: Person: systemd developers (systemd-devel@lists.freedesktop.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/systemd_python-234-py3.6.egg-info +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers_project:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers_project:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developersproject:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developersproject:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd-python:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd-python:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd_python:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd_python:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel_project:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel_project:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_develproject:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_develproject:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers_project:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers_project:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developersproject:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developersproject:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd-python:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd-python:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd_python:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd_python:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-python:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-python:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel_project:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel_project:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_python:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_python:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-devel:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-devel:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_develproject:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_develproject:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-python:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-python:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_python:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_python:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-devel:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-devel:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/systemd-python@234 + +##### Package: urllib3 + +PackageName: urllib3 +SPDXID: SPDXRef-Package-python-urllib3-8ede639981c11081 +PackageVersion: 1.24.2 +PackageSupplier: Person: Andrey Petrov (andrey.petrov@shazow.net) +PackageOriginator: Person: Andrey Petrov (andrey.petrov@shazow.net) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:urllib3:1.24.2:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/urllib3@1.24.2 + +##### Package: acl + +PackageName: acl +SPDXID: SPDXRef-Package-rpm-acl-45fd7a3cd138b877 +PackageVersion: 2.2.53-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:acl:2.2.53-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:acl:acl:2.2.53-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/acl@2.2.53-1.el8?arch=x86_64&upstream=acl-2.2.53-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: audit-libs + +PackageName: audit-libs +SPDXID: SPDXRef-Package-rpm-audit-libs-a8759a9d0a3b60da +PackageVersion: 3.0.7-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit-libs:audit-libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit-libs:audit_libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit_libs:audit-libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit_libs:audit_libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:audit-libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:audit_libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:audit-libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:audit_libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/audit-libs@3.0.7-4.el8?arch=x86_64&upstream=audit-3.0.7-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: basesystem + +PackageName: basesystem +SPDXID: SPDXRef-Package-rpm-basesystem-423a8fdad2b882bb +PackageVersion: 11-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basesystem:basesystem:11-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:basesystem:11-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/basesystem@11-5.el8?arch=noarch&upstream=basesystem-11-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: bash + +PackageName: bash +SPDXID: SPDXRef-Package-rpm-bash-044e31d699b18d1a +PackageVersion: 4.4.20-4.el8_6 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:bash:4.4.20-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bash:bash:4.4.20-4.el8_6:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/bash@4.4.20-4.el8_6?arch=x86_64&upstream=bash-4.4.20-4.el8_6.src.rpm&distro=rhel-8.8 + +##### Package: brotli + +PackageName: brotli +SPDXID: SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a +PackageVersion: 1.0.6-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:brotli:brotli:1.0.6-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:brotli:1.0.6-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/brotli@1.0.6-3.el8?arch=x86_64&upstream=brotli-1.0.6-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: bzip2-libs + +PackageName: bzip2-libs +SPDXID: SPDXRef-Package-rpm-bzip2-libs-17acab8822026709 +PackageVersion: 1.0.6-26.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bzip2-libs:bzip2-libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bzip2-libs:bzip2_libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bzip2_libs:bzip2-libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bzip2_libs:bzip2_libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:bzip2-libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:bzip2_libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bzip2:bzip2-libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bzip2:bzip2_libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/bzip2-libs@1.0.6-26.el8?arch=x86_64&upstream=bzip2-1.0.6-26.el8.src.rpm&distro=rhel-8.8 + +##### Package: ca-certificates + +PackageName: ca-certificates +SPDXID: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d +PackageVersion: 2023.2.60_v7.0.306-80.0.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ca-certificates:ca-certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ca-certificates:ca_certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ca_certificates:ca-certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ca_certificates:ca_certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ca-certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ca_certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ca:ca-certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ca:ca_certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/ca-certificates@2023.2.60_v7.0.306-80.0.el8_8?arch=noarch&upstream=ca-certificates-2023.2.60_v7.0.306-80.0.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: chkconfig + +PackageName: chkconfig +SPDXID: SPDXRef-Package-rpm-chkconfig-cc7797317bf6a1e2 +PackageVersion: 1.19.1-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chkconfig:chkconfig:1.19.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:chkconfig:1.19.1-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/chkconfig@1.19.1-1.el8?arch=x86_64&upstream=chkconfig-1.19.1-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: coreutils-single + +PackageName: coreutils-single +SPDXID: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d +PackageVersion: 8.30-15.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coreutils-single:coreutils-single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coreutils-single:coreutils_single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coreutils_single:coreutils-single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coreutils_single:coreutils_single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coreutils:coreutils-single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coreutils:coreutils_single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:coreutils-single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:coreutils_single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/coreutils-single@8.30-15.el8?arch=x86_64&upstream=coreutils-8.30-15.el8.src.rpm&distro=rhel-8.8 + +##### Package: cracklib + +PackageName: cracklib +SPDXID: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d +PackageVersion: 2.9.6-15.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cracklib:cracklib:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:cracklib:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/cracklib@2.9.6-15.el8?arch=x86_64&upstream=cracklib-2.9.6-15.el8.src.rpm&distro=rhel-8.8 + +##### Package: cracklib-dicts + +PackageName: cracklib-dicts +SPDXID: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 +PackageVersion: 2.9.6-15.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cracklib-dicts:cracklib-dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cracklib-dicts:cracklib_dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cracklib_dicts:cracklib-dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cracklib_dicts:cracklib_dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cracklib:cracklib-dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cracklib:cracklib_dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:cracklib-dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:cracklib_dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/cracklib-dicts@2.9.6-15.el8?arch=x86_64&upstream=cracklib-2.9.6-15.el8.src.rpm&distro=rhel-8.8 + +##### Package: crypto-policies + +PackageName: crypto-policies +SPDXID: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d +PackageVersion: 20221215-1.gitece0092.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto-policies:crypto-policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto-policies:crypto_policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto_policies:crypto-policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto_policies:crypto_policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto-policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto_policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:crypto-policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:crypto_policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/crypto-policies@20221215-1.gitece0092.el8?arch=noarch&upstream=crypto-policies-20221215-1.gitece0092.el8.src.rpm&distro=rhel-8.8 + +##### Package: crypto-policies-scripts + +PackageName: crypto-policies-scripts +SPDXID: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e +PackageVersion: 20221215-1.gitece0092.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto-policies-scripts:crypto-policies-scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto-policies-scripts:crypto_policies_scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto_policies_scripts:crypto-policies-scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto_policies_scripts:crypto_policies_scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto-policies:crypto-policies-scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto-policies:crypto_policies_scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto_policies:crypto-policies-scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto_policies:crypto_policies_scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto-policies-scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto_policies_scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:crypto-policies-scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:crypto_policies_scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/crypto-policies-scripts@20221215-1.gitece0092.el8?arch=noarch&upstream=crypto-policies-20221215-1.gitece0092.el8.src.rpm&distro=rhel-8.8 + +##### Package: cryptsetup-libs + +PackageName: cryptsetup-libs +SPDXID: SPDXRef-Package-rpm-cryptsetup-libs-a97447baebc7eca3 +PackageVersion: 2.3.7-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--and-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cryptsetup-libs:cryptsetup-libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cryptsetup-libs:cryptsetup_libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cryptsetup_libs:cryptsetup-libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cryptsetup_libs:cryptsetup_libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cryptsetup:cryptsetup-libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cryptsetup:cryptsetup_libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:cryptsetup-libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:cryptsetup_libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/cryptsetup-libs@2.3.7-5.el8?arch=x86_64&upstream=cryptsetup-2.3.7-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: curl + +PackageName: curl +SPDXID: SPDXRef-Package-rpm-curl-2ac75dd8cdd82d1d +PackageVersion: 7.61.1-30.el8_8.3 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:curl:7.61.1-30.el8_8.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:curl:curl:7.61.1-30.el8_8.3:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/curl@7.61.1-30.el8_8.3?arch=x86_64&upstream=curl-7.61.1-30.el8_8.3.src.rpm&distro=rhel-8.8 + +##### Package: cyrus-sasl-lib + +PackageName: cyrus-sasl-lib +SPDXID: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 +PackageVersion: 2.1.27-6.el8_5 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-with-advertising +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus-sasl-lib:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus-sasl-lib:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus_sasl_lib:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus_sasl_lib:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus-sasl:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus-sasl:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus_sasl:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus_sasl:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/cyrus-sasl-lib@2.1.27-6.el8_5?arch=x86_64&upstream=cyrus-sasl-2.1.27-6.el8_5.src.rpm&distro=rhel-8.8 + +##### Package: dbus + +PackageName: dbus +SPDXID: SPDXRef-Package-rpm-dbus-1cb6510238ba5dd8 +PackageVersion: 1:1.12.8-24.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef--GPLv2--or-AFL--and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dbus@1.12.8-24.el8_8.1?arch=x86_64&epoch=1&upstream=dbus-1.12.8-24.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: dbus-common + +PackageName: dbus-common +SPDXID: SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 +PackageVersion: 1:1.12.8-24.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef--GPLv2--or-AFL--and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-common:dbus-common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-common:dbus_common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_common:dbus-common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_common:dbus_common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus-common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus_common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus-common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus_common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dbus-common@1.12.8-24.el8_8.1?arch=noarch&epoch=1&upstream=dbus-1.12.8-24.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: dbus-daemon + +PackageName: dbus-daemon +SPDXID: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d +PackageVersion: 1:1.12.8-24.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef--GPLv2--or-AFL--and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-daemon:dbus-daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-daemon:dbus_daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_daemon:dbus-daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_daemon:dbus_daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus-daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus_daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus-daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus_daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dbus-daemon@1.12.8-24.el8_8.1?arch=x86_64&epoch=1&upstream=dbus-1.12.8-24.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: dbus-glib + +PackageName: dbus-glib +SPDXID: SPDXRef-Package-rpm-dbus-glib-93aad31cdc4b7d7c +PackageVersion: 0.110-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-AFL-and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-glib:dbus-glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-glib:dbus_glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_glib:dbus-glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_glib:dbus_glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus-glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus_glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus-glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus_glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dbus-glib@0.110-2.el8?arch=x86_64&upstream=dbus-glib-0.110-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: dbus-libs + +PackageName: dbus-libs +SPDXID: SPDXRef-Package-rpm-dbus-libs-6491607d041784b9 +PackageVersion: 1:1.12.8-24.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef--GPLv2--or-AFL--and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-libs:dbus-libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-libs:dbus_libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_libs:dbus-libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_libs:dbus_libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus-libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus_libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus-libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus_libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dbus-libs@1.12.8-24.el8_8.1?arch=x86_64&epoch=1&upstream=dbus-1.12.8-24.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: dbus-tools + +PackageName: dbus-tools +SPDXID: SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 +PackageVersion: 1:1.12.8-24.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef--GPLv2--or-AFL--and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-tools:dbus-tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-tools:dbus_tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_tools:dbus-tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_tools:dbus_tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus-tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus_tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus-tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus_tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dbus-tools@1.12.8-24.el8_8.1?arch=x86_64&epoch=1&upstream=dbus-1.12.8-24.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: dejavu-fonts-common + +PackageName: dejavu-fonts-common +SPDXID: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 +PackageVersion: 2.35-7.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Bitstream-Vera-and-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-fonts-common:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-fonts-common:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_fonts_common:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_fonts_common:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-fonts:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-fonts:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_fonts:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_fonts:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dejavu-fonts-common@2.35-7.el8?arch=noarch&upstream=dejavu-fonts-2.35-7.el8.src.rpm&distro=rhel-8.8 + +##### Package: dejavu-sans-fonts + +PackageName: dejavu-sans-fonts +SPDXID: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 +PackageVersion: 2.35-7.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Bitstream-Vera-and-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-sans-fonts:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-sans-fonts:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_sans_fonts:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_sans_fonts:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-sans:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-sans:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_sans:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_sans:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dejavu-sans-fonts@2.35-7.el8?arch=noarch&upstream=dejavu-fonts-2.35-7.el8.src.rpm&distro=rhel-8.8 + +##### Package: device-mapper + +PackageName: device-mapper +SPDXID: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 +PackageVersion: 8:1.02.181-9.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device-mapper:device-mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device-mapper:device_mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device_mapper:device-mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device_mapper:device_mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device:device-mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device:device_mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:device-mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:device_mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/device-mapper@1.02.181-9.el8?arch=x86_64&epoch=8&upstream=lvm2-2.03.14-9.el8.src.rpm&distro=rhel-8.8 + +##### Package: device-mapper-libs + +PackageName: device-mapper-libs +SPDXID: SPDXRef-Package-rpm-device-mapper-libs-c05ce4d7f437decf +PackageVersion: 8:1.02.181-9.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device-mapper-libs:device-mapper-libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device-mapper-libs:device_mapper_libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device_mapper_libs:device-mapper-libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device_mapper_libs:device_mapper_libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device-mapper:device-mapper-libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device-mapper:device_mapper_libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device_mapper:device-mapper-libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device_mapper:device_mapper_libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device:device-mapper-libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device:device_mapper_libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:device-mapper-libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:device_mapper_libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/device-mapper-libs@1.02.181-9.el8?arch=x86_64&epoch=8&upstream=lvm2-2.03.14-9.el8.src.rpm&distro=rhel-8.8 + +##### Package: dmidecode + +PackageName: dmidecode +SPDXID: SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 +PackageVersion: 1:3.3-4.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dmidecode:dmidecode:1\:3.3-4.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dmidecode:1\:3.3-4.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dmidecode@3.3-4.el8_8.1?arch=x86_64&epoch=1&upstream=dmidecode-3.3-4.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: dnf + +PackageName: dnf +SPDXID: SPDXRef-Package-rpm-dnf-4418429efe47422c +PackageVersion: 4.7.0-16.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf:dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dnf@4.7.0-16.el8_8?arch=noarch&upstream=dnf-4.7.0-16.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: dnf-data + +PackageName: dnf-data +SPDXID: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 +PackageVersion: 4.7.0-16.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-data:dnf-data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-data:dnf_data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_data:dnf-data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_data:dnf_data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dnf-data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dnf_data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf:dnf-data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf:dnf_data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dnf-data@4.7.0-16.el8_8?arch=noarch&upstream=dnf-4.7.0-16.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: dnf-plugin-subscription-manager + +PackageName: dnf-plugin-subscription-manager +SPDXID: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e +PackageVersion: 1.28.36-3.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-plugin-subscription-manager:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-plugin-subscription-manager:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_plugin_subscription_manager:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_plugin_subscription_manager:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-plugin-subscription:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-plugin-subscription:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_plugin_subscription:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_plugin_subscription:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-plugin:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-plugin:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_plugin:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_plugin:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dnf-plugin-subscription-manager@1.28.36-3.el8_8?arch=x86_64&upstream=subscription-manager-1.28.36-3.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: elfutils-default-yama-scope + +PackageName: elfutils-default-yama-scope +SPDXID: SPDXRef-Package-rpm-elfutils-default-yama-scope-8056e0aae345bdf9 +PackageVersion: 0.188-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--or-LGPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-default-yama-scope:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-default-yama-scope:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_default_yama_scope:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_default_yama_scope:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-default-yama:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-default-yama:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_default_yama:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_default_yama:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-default:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-default:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_default:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_default:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/elfutils-default-yama-scope@0.188-3.el8?arch=noarch&upstream=elfutils-0.188-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: elfutils-libelf + +PackageName: elfutils-libelf +SPDXID: SPDXRef-Package-rpm-elfutils-libelf-1490683b1177d120 +PackageVersion: 0.188-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--or-LGPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-libelf:elfutils-libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-libelf:elfutils_libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_libelf:elfutils-libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_libelf:elfutils_libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils:elfutils-libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils:elfutils_libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:elfutils-libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:elfutils_libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/elfutils-libelf@0.188-3.el8?arch=x86_64&upstream=elfutils-0.188-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: elfutils-libs + +PackageName: elfutils-libs +SPDXID: SPDXRef-Package-rpm-elfutils-libs-62f17b42f3fcff45 +PackageVersion: 0.188-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--or-LGPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-libs:elfutils-libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-libs:elfutils_libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_libs:elfutils-libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_libs:elfutils_libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils:elfutils-libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils:elfutils_libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:elfutils-libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:elfutils_libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/elfutils-libs@0.188-3.el8?arch=x86_64&upstream=elfutils-0.188-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: expat + +PackageName: expat +SPDXID: SPDXRef-Package-rpm-expat-580d0138d97ae889 +PackageVersion: 2.2.5-11.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:expat:2.2.5-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:expat:expat:2.2.5-11.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/expat@2.2.5-11.el8?arch=x86_64&upstream=expat-2.2.5-11.el8.src.rpm&distro=rhel-8.8 + +##### Package: file-libs + +PackageName: file-libs +SPDXID: SPDXRef-Package-rpm-file-libs-a73849bc58ff0d0c +PackageVersion: 5.33-24.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file-libs:file-libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file-libs:file_libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file_libs:file-libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file_libs:file_libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:file-libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:file_libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file:file-libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file:file_libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/file-libs@5.33-24.el8?arch=x86_64&upstream=file-5.33-24.el8.src.rpm&distro=rhel-8.8 + +##### Package: filesystem + +PackageName: filesystem +SPDXID: SPDXRef-Package-rpm-filesystem-179398b43587ad72 +PackageVersion: 3.8-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filesystem:filesystem:3.8-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:filesystem:3.8-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/filesystem@3.8-6.el8?arch=x86_64&upstream=filesystem-3.8-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: findutils + +PackageName: findutils +SPDXID: SPDXRef-Package-rpm-findutils-0c5e4ad061cf8e7d +PackageVersion: 1:4.6.0-20.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:findutils:findutils:1\:4.6.0-20.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:findutils:1\:4.6.0-20.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/findutils@4.6.0-20.el8_8.1?arch=x86_64&epoch=1&upstream=findutils-4.6.0-20.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: fontconfig + +PackageName: fontconfig +SPDXID: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 +PackageVersion: 2.13.1-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-MIT-and-Public-Domain-and-UCD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fontconfig:fontconfig:2.13.1-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:fontconfig:2.13.1-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/fontconfig@2.13.1-4.el8?arch=x86_64&upstream=fontconfig-2.13.1-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: fontpackages-filesystem + +PackageName: fontpackages-filesystem +SPDXID: SPDXRef-Package-rpm-fontpackages-filesystem-f296bbcdecba4614 +PackageVersion: 1.44-22.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fontpackages-filesystem:fontpackages-filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fontpackages-filesystem:fontpackages_filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fontpackages_filesystem:fontpackages-filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fontpackages_filesystem:fontpackages_filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fontpackages:fontpackages-filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fontpackages:fontpackages_filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:fontpackages-filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:fontpackages_filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/fontpackages-filesystem@1.44-22.el8?arch=noarch&upstream=fontpackages-1.44-22.el8.src.rpm&distro=rhel-8.8 + +##### Package: freetype + +PackageName: freetype +SPDXID: SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d +PackageVersion: 2.9.1-9.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-80a0f05e17641589a96d3170725af37b98a6fe1cfaabf90db4f4259ec0914fdf +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:freetype:freetype:2.9.1-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:freetype:2.9.1-9.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/freetype@2.9.1-9.el8?arch=x86_64&upstream=freetype-2.9.1-9.el8.src.rpm&distro=rhel-8.8 + +##### Package: gawk + +PackageName: gawk +SPDXID: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 +PackageVersion: 4.2.1-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3--and-GPLv2--and-LGPLv2--and-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gawk:4.2.1-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gawk:gawk:4.2.1-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gawk@4.2.1-4.el8?arch=x86_64&upstream=gawk-4.2.1-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: gdb-gdbserver + +PackageName: gdb-gdbserver +SPDXID: SPDXRef-Package-rpm-gdb-gdbserver-b09f80b040ee2d01 +PackageVersion: 8.2-19.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-3ec43172950c15b1a1e5e626ac065b88ced800063bd77f89878f87073df8a5ae +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdb-gdbserver:gdb-gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdb-gdbserver:gdb_gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdb_gdbserver:gdb-gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdb_gdbserver:gdb_gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gdb-gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gdb_gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdb:gdb-gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdb:gdb_gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gdb-gdbserver@8.2-19.el8?arch=x86_64&upstream=gdb-8.2-19.el8.src.rpm&distro=rhel-8.8 + +##### Package: gdbm + +PackageName: gdbm +SPDXID: SPDXRef-Package-rpm-gdbm-5f248ec8dffe726e +PackageVersion: 1:1.18-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gdbm:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdbm:gdbm:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gdbm@1.18-2.el8?arch=x86_64&epoch=1&upstream=gdbm-1.18-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: gdbm-libs + +PackageName: gdbm-libs +SPDXID: SPDXRef-Package-rpm-gdbm-libs-a01746ed3caeb940 +PackageVersion: 1:1.18-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdbm-libs:gdbm-libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdbm-libs:gdbm_libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdbm_libs:gdbm-libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdbm_libs:gdbm_libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gdbm-libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gdbm_libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdbm:gdbm-libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdbm:gdbm_libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gdbm-libs@1.18-2.el8?arch=x86_64&epoch=1&upstream=gdbm-1.18-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: glib2 + +PackageName: glib2 +SPDXID: SPDXRef-Package-rpm-glib2-a1907d769a35de0a +PackageVersion: 2.56.4-161.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glib2:2.56.4-161.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glib2:glib2:2.56.4-161.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/glib2@2.56.4-161.el8?arch=x86_64&upstream=glib2-2.56.4-161.el8.src.rpm&distro=rhel-8.8 + +##### Package: glibc-common + +PackageName: glibc-common +SPDXID: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e +PackageVersion: 2.28-225.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-cedbc2fa4301332b3d3569627696d986a63b3f3a293a2759a611c7c3deebd428 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-common:glibc-common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-common:glibc_common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_common:glibc-common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_common:glibc_common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glibc-common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glibc_common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc:glibc-common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc:glibc_common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/glibc-common@2.28-225.el8?arch=x86_64&upstream=glibc-2.28-225.el8.src.rpm&distro=rhel-8.8 + +##### Package: glibc + +PackageName: glibc +SPDXID: SPDXRef-Package-rpm-glibc-f7093d600015666c +PackageVersion: 2.28-225.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-cedbc2fa4301332b3d3569627696d986a63b3f3a293a2759a611c7c3deebd428 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glibc:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc:glibc:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/glibc@2.28-225.el8?arch=x86_64&upstream=glibc-2.28-225.el8.src.rpm&distro=rhel-8.8 + +##### Package: glibc-langpack-en + +PackageName: glibc-langpack-en +SPDXID: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 +PackageVersion: 2.28-225.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-cedbc2fa4301332b3d3569627696d986a63b3f3a293a2759a611c7c3deebd428 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-langpack-en:glibc-langpack-en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-langpack-en:glibc_langpack_en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_langpack_en:glibc-langpack-en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_langpack_en:glibc_langpack_en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-langpack:glibc-langpack-en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-langpack:glibc_langpack_en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_langpack:glibc-langpack-en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_langpack:glibc_langpack_en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glibc-langpack-en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glibc_langpack_en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc:glibc-langpack-en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc:glibc_langpack_en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/glibc-langpack-en@2.28-225.el8?arch=x86_64&upstream=glibc-2.28-225.el8.src.rpm&distro=rhel-8.8 + +##### Package: glibc-minimal-langpack + +PackageName: glibc-minimal-langpack +SPDXID: SPDXRef-Package-rpm-glibc-minimal-langpack-a4d2f9b09ae44069 +PackageVersion: 2.28-225.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-cedbc2fa4301332b3d3569627696d986a63b3f3a293a2759a611c7c3deebd428 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-minimal-langpack:glibc-minimal-langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-minimal-langpack:glibc_minimal_langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_minimal_langpack:glibc-minimal-langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_minimal_langpack:glibc_minimal_langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-minimal:glibc-minimal-langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-minimal:glibc_minimal_langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_minimal:glibc-minimal-langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_minimal:glibc_minimal_langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glibc-minimal-langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glibc_minimal_langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc:glibc-minimal-langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc:glibc_minimal_langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/glibc-minimal-langpack@2.28-225.el8?arch=x86_64&upstream=glibc-2.28-225.el8.src.rpm&distro=rhel-8.8 + +##### Package: gmp + +PackageName: gmp +SPDXID: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf +PackageVersion: 1:6.1.2-10.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv3--or-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gmp:1\:6.1.2-10.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gmp:gmp:1\:6.1.2-10.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gmp@6.1.2-10.el8?arch=x86_64&epoch=1&upstream=gmp-6.1.2-10.el8.src.rpm&distro=rhel-8.8 + +##### Package: gnupg2 + +PackageName: gnupg2 +SPDXID: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 +PackageVersion: 2.2.20-3.el8_6 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg2:gnupg2:2.2.20-3.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gnupg2:2.2.20-3.el8_6:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gnupg2@2.2.20-3.el8_6?arch=x86_64&upstream=gnupg2-2.2.20-3.el8_6.src.rpm&distro=rhel-8.8 + +##### Package: gnutls + +PackageName: gnutls +SPDXID: SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 +PackageVersion: 3.6.16-6.el8_7 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3--and-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnutls:gnutls:3.6.16-6.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gnutls:3.6.16-6.el8_7:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gnutls@3.6.16-6.el8_7?arch=x86_64&upstream=gnutls-3.6.16-6.el8_7.src.rpm&distro=rhel-8.8 + +##### Package: gobject-introspection + +PackageName: gobject-introspection +SPDXID: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 +PackageVersion: 1.56.1-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2---LGPLv2---MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gobject-introspection:gobject-introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gobject-introspection:gobject_introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gobject_introspection:gobject-introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gobject_introspection:gobject_introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gobject:gobject-introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gobject:gobject_introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gobject-introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gobject_introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gobject-introspection@1.56.1-1.el8?arch=x86_64&upstream=gobject-introspection-1.56.1-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: gpg-pubkey + +PackageName: gpg-pubkey +SPDXID: SPDXRef-Package-rpm-gpg-pubkey-f11cf456670bc682 +PackageVersion: fd431d51-4ae0493b +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-pubkey +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg-pubkey:gpg-pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg-pubkey:gpg_pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg_pubkey:gpg-pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg_pubkey:gpg_pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg:gpg-pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg:gpg_pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gpg-pubkey@fd431d51-4ae0493b?distro=rhel-8.8 + +##### Package: gpg-pubkey + +PackageName: gpg-pubkey +SPDXID: SPDXRef-Package-rpm-gpg-pubkey-fd1087723a227e81 +PackageVersion: d4082792-5b32db75 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-pubkey +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg-pubkey:gpg-pubkey:d4082792-5b32db75:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg-pubkey:gpg_pubkey:d4082792-5b32db75:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg_pubkey:gpg-pubkey:d4082792-5b32db75:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg_pubkey:gpg_pubkey:d4082792-5b32db75:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg:gpg-pubkey:d4082792-5b32db75:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg:gpg_pubkey:d4082792-5b32db75:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gpg-pubkey@d4082792-5b32db75?distro=rhel-8.8 + +##### Package: gpgme + +PackageName: gpgme +SPDXID: SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 +PackageVersion: 1.13.1-11.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gpgme:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpgme:gpgme:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gpgme@1.13.1-11.el8?arch=x86_64&upstream=gpgme-1.13.1-11.el8.src.rpm&distro=rhel-8.8 + +##### Package: grep + +PackageName: grep +SPDXID: SPDXRef-Package-rpm-grep-0328ffc80d53f10e +PackageVersion: 3.1-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:grep:3.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:grep:grep:3.1-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/grep@3.1-6.el8?arch=x86_64&upstream=grep-3.1-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: gzip + +PackageName: gzip +SPDXID: SPDXRef-Package-rpm-gzip-96776ea0534048fb +PackageVersion: 1.9-13.el8_5 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3--and-GFDL +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gzip:1.9-13.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gzip:gzip:1.9-13.el8_5:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gzip@1.9-13.el8_5?arch=x86_64&upstream=gzip-1.9-13.el8_5.src.rpm&distro=rhel-8.8 + +##### Package: ima-evm-utils + +PackageName: ima-evm-utils +SPDXID: SPDXRef-Package-rpm-ima-evm-utils-dfd6cbe7443a229f +PackageVersion: 1.3.2-12.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima-evm-utils:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima-evm-utils:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima_evm_utils:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima_evm_utils:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima-evm:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima-evm:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima_evm:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima_evm:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/ima-evm-utils@1.3.2-12.el8?arch=x86_64&upstream=ima-evm-utils-1.3.2-12.el8.src.rpm&distro=rhel-8.8 + +##### Package: info + +PackageName: info +SPDXID: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 +PackageVersion: 6.5-7.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:info:6.5-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:info:info:6.5-7.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/info@6.5-7.el8?arch=x86_64&upstream=texinfo-6.5-7.el8.src.rpm&distro=rhel-8.8 + +##### Package: iptables + +PackageName: iptables +SPDXID: SPDXRef-Package-rpm-iptables-48db2896eea2df43 +PackageVersion: 1.8.4-24.el8_8.2 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2-and-Artistic-2.0-and-ISC +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iptables:iptables:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:iptables:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/iptables@1.8.4-24.el8_8.2?arch=x86_64&upstream=iptables-1.8.4-24.el8_8.2.src.rpm&distro=rhel-8.8 + +##### Package: iptables-libs + +PackageName: iptables-libs +SPDXID: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 +PackageVersion: 1.8.4-24.el8_8.2 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2-and-Artistic-2.0-and-ISC +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iptables-libs:iptables-libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iptables-libs:iptables_libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iptables_libs:iptables-libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iptables_libs:iptables_libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iptables:iptables-libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iptables:iptables_libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:iptables-libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:iptables_libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/iptables-libs@1.8.4-24.el8_8.2?arch=x86_64&upstream=iptables-1.8.4-24.el8_8.2.src.rpm&distro=rhel-8.8 + +##### Package: jansson + +PackageName: jansson +SPDXID: SPDXRef-Package-rpm-jansson-a6e466f321d3c5ff +PackageVersion: 2.14-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jansson:jansson:2.14-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:jansson:2.14-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/jansson@2.14-1.el8?arch=x86_64&upstream=jansson-2.14-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: json-c + +PackageName: json-c +SPDXID: SPDXRef-Package-rpm-json-c-399cffcbd42f5af6 +PackageVersion: 0.13.1-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json-c:json-c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json-c:json_c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json_c:json-c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json_c:json_c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:json-c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:json_c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:json-c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:json_c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/json-c@0.13.1-3.el8?arch=x86_64&upstream=json-c-0.13.1-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: json-glib + +PackageName: json-glib +SPDXID: SPDXRef-Package-rpm-json-glib-fb5800e4b9214ebd +PackageVersion: 1.4.4-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json-glib:json-glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json-glib:json_glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json_glib:json-glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json_glib:json_glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:json-glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:json_glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:json-glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:json_glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/json-glib@1.4.4-1.el8?arch=x86_64&upstream=json-glib-1.4.4-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: keyutils-libs + +PackageName: keyutils-libs +SPDXID: SPDXRef-Package-rpm-keyutils-libs-885dca71d492333b +PackageVersion: 1.5.10-9.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--and-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:keyutils-libs:keyutils-libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:keyutils-libs:keyutils_libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:keyutils_libs:keyutils-libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:keyutils_libs:keyutils_libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:keyutils:keyutils-libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:keyutils:keyutils_libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:keyutils-libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:keyutils_libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/keyutils-libs@1.5.10-9.el8?arch=x86_64&upstream=keyutils-1.5.10-9.el8.src.rpm&distro=rhel-8.8 + +##### Package: kmod-libs + +PackageName: kmod-libs +SPDXID: SPDXRef-Package-rpm-kmod-libs-dce662a72db32ee1 +PackageVersion: 25-19.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kmod-libs:kmod-libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kmod-libs:kmod_libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kmod_libs:kmod-libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kmod_libs:kmod_libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:kmod-libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:kmod_libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kmod:kmod-libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kmod:kmod_libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/kmod-libs@25-19.el8?arch=x86_64&upstream=kmod-25-19.el8.src.rpm&distro=rhel-8.8 + +##### Package: krb5-libs + +PackageName: krb5-libs +SPDXID: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 +PackageVersion: 1.18.2-25.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:krb5-libs:krb5-libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:krb5-libs:krb5_libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:krb5_libs:krb5-libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:krb5_libs:krb5_libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:krb5-libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:krb5_libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:krb5:krb5-libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:krb5:krb5_libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/krb5-libs@1.18.2-25.el8_8?arch=x86_64&upstream=krb5-1.18.2-25.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: langpacks-en + +PackageName: langpacks-en +SPDXID: SPDXRef-Package-rpm-langpacks-en-b921e0dabe7fe84e +PackageVersion: 1.0-12.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:langpacks-en:langpacks-en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:langpacks-en:langpacks_en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:langpacks_en:langpacks-en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:langpacks_en:langpacks_en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:langpacks:langpacks-en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:langpacks:langpacks_en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:langpacks-en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:langpacks_en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/langpacks-en@1.0-12.el8?arch=noarch&upstream=langpacks-1.0-12.el8.src.rpm&distro=rhel-8.8 + +##### Package: libacl + +PackageName: libacl +SPDXID: SPDXRef-Package-rpm-libacl-1e60fab75e8d074c +PackageVersion: 2.2.53-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libacl:libacl:2.2.53-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libacl:2.2.53-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libacl@2.2.53-1.el8?arch=x86_64&upstream=acl-2.2.53-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libarchive + +PackageName: libarchive +SPDXID: SPDXRef-Package-rpm-libarchive-d2fcf670d209798e +PackageVersion: 3.3.3-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libarchive:libarchive:3.3.3-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libarchive:3.3.3-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libarchive@3.3.3-5.el8?arch=x86_64&upstream=libarchive-3.3.3-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libassuan + +PackageName: libassuan +SPDXID: SPDXRef-Package-rpm-libassuan-9166c1f313ff431e +PackageVersion: 2.5.1-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libassuan:libassuan:2.5.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libassuan:2.5.1-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libassuan@2.5.1-3.el8?arch=x86_64&upstream=libassuan-2.5.1-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: libattr + +PackageName: libattr +SPDXID: SPDXRef-Package-rpm-libattr-d77f66c9b8b51965 +PackageVersion: 2.4.48-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libattr:libattr:2.4.48-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libattr:2.4.48-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libattr@2.4.48-3.el8?arch=x86_64&upstream=attr-2.4.48-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: libblkid + +PackageName: libblkid +SPDXID: SPDXRef-Package-rpm-libblkid-2984dcc387f1f22a +PackageVersion: 2.32.1-42.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libblkid:libblkid:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libblkid:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libblkid@2.32.1-42.el8_8?arch=x86_64&upstream=util-linux-2.32.1-42.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libcap + +PackageName: libcap +SPDXID: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c +PackageVersion: 2.48-5.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-or-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcap:libcap:2.48-5.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libcap:2.48-5.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libcap@2.48-5.el8_8?arch=x86_64&upstream=libcap-2.48-5.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libcap-ng + +PackageName: libcap-ng +SPDXID: SPDXRef-Package-rpm-libcap-ng-51cf02126f09a3ef +PackageVersion: 0.7.11-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcap-ng:libcap-ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcap-ng:libcap_ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcap_ng:libcap-ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcap_ng:libcap_ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcap:libcap-ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcap:libcap_ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libcap-ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libcap_ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libcap-ng@0.7.11-1.el8?arch=x86_64&upstream=libcap-ng-0.7.11-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libcom_err + +PackageName: libcom_err +SPDXID: SPDXRef-Package-rpm-libcom-err-5810f3c8a99f4bcd +PackageVersion: 1.45.6-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcom-err:libcom-err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcom-err:libcom_err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcom_err:libcom-err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcom_err:libcom_err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcom:libcom-err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcom:libcom_err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libcom-err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libcom_err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libcom_err@1.45.6-5.el8?arch=x86_64&upstream=e2fsprogs-1.45.6-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libcomps + +PackageName: libcomps +SPDXID: SPDXRef-Package-rpm-libcomps-a4decf888fcc52e4 +PackageVersion: 0.1.18-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcomps:libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libcomps@0.1.18-1.el8?arch=x86_64&upstream=libcomps-0.1.18-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libcurl + +PackageName: libcurl +SPDXID: SPDXRef-Package-rpm-libcurl-be0041c760e1b43f +PackageVersion: 7.61.1-30.el8_8.3 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcurl:libcurl:7.61.1-30.el8_8.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libcurl:7.61.1-30.el8_8.3:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libcurl@7.61.1-30.el8_8.3?arch=x86_64&upstream=curl-7.61.1-30.el8_8.3.src.rpm&distro=rhel-8.8 + +##### Package: libdb + +PackageName: libdb +SPDXID: SPDXRef-Package-rpm-libdb-cdeffe58cdcf475e +PackageVersion: 5.3.28-42.el8_4 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-and-LGPLv2-and-Sleepycat +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libdb:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdb:libdb:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libdb@5.3.28-42.el8_4?arch=x86_64&upstream=libdb-5.3.28-42.el8_4.src.rpm&distro=rhel-8.8 + +##### Package: libdb-utils + +PackageName: libdb-utils +SPDXID: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 +PackageVersion: 5.3.28-42.el8_4 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-and-LGPLv2-and-Sleepycat +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdb-utils:libdb-utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdb-utils:libdb_utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdb_utils:libdb-utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdb_utils:libdb_utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libdb-utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libdb_utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdb:libdb-utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdb:libdb_utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libdb-utils@5.3.28-42.el8_4?arch=x86_64&upstream=libdb-5.3.28-42.el8_4.src.rpm&distro=rhel-8.8 + +##### Package: libdnf + +PackageName: libdnf +SPDXID: SPDXRef-Package-rpm-libdnf-f386d34765ff5f46 +PackageVersion: 0.63.0-14.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdnf:libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libdnf@0.63.0-14.el8_8?arch=x86_64&upstream=libdnf-0.63.0-14.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libfdisk + +PackageName: libfdisk +SPDXID: SPDXRef-Package-rpm-libfdisk-14aa4da39dcdd70b +PackageVersion: 2.32.1-42.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libfdisk:libfdisk:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libfdisk:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libfdisk@2.32.1-42.el8_8?arch=x86_64&upstream=util-linux-2.32.1-42.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libffi + +PackageName: libffi +SPDXID: SPDXRef-Package-rpm-libffi-28487ffb13452c88 +PackageVersion: 3.1-24.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libffi:libffi:3.1-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libffi:3.1-24.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libffi@3.1-24.el8?arch=x86_64&upstream=libffi-3.1-24.el8.src.rpm&distro=rhel-8.8 + +##### Package: libgcc + +PackageName: libgcc +SPDXID: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 +PackageVersion: 8.5.0-18.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-0a20635703258c08665cede2a4166b90795ad1cb30dd85cfde1598463d68ebf5 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgcc:libgcc:8.5.0-18.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libgcc:8.5.0-18.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libgcc@8.5.0-18.el8?arch=x86_64&upstream=gcc-8.5.0-18.el8.src.rpm&distro=rhel-8.8 + +##### Package: libgcrypt + +PackageName: libgcrypt +SPDXID: SPDXRef-Package-rpm-libgcrypt-65b56d43de84072c +PackageVersion: 1.8.5-7.el8_6 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgcrypt:libgcrypt:1.8.5-7.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libgcrypt:1.8.5-7.el8_6:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libgcrypt@1.8.5-7.el8_6?arch=x86_64&upstream=libgcrypt-1.8.5-7.el8_6.src.rpm&distro=rhel-8.8 + +##### Package: libgpg-error + +PackageName: libgpg-error +SPDXID: SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 +PackageVersion: 1.31-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgpg-error:libgpg-error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgpg-error:libgpg_error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgpg_error:libgpg-error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgpg_error:libgpg_error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgpg:libgpg-error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgpg:libgpg_error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libgpg-error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libgpg_error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libgpg-error@1.31-1.el8?arch=x86_64&upstream=libgpg-error-1.31-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libibverbs + +PackageName: libibverbs +SPDXID: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 +PackageVersion: 44.0-2.el8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2-or-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libibverbs:libibverbs:44.0-2.el8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libibverbs:44.0-2.el8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libibverbs@44.0-2.el8.1?arch=x86_64&upstream=rdma-core-44.0-2.el8.1.src.rpm&distro=rhel-8.8 + +##### Package: libidn2 + +PackageName: libidn2 +SPDXID: SPDXRef-Package-rpm-libidn2-2ad5f614b681561b +PackageVersion: 2.2.0-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef--GPLv2--or-LGPLv3---and-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libidn2:libidn2:2.2.0-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libidn2:2.2.0-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libidn2@2.2.0-1.el8?arch=x86_64&upstream=libidn2-2.2.0-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libksba + +PackageName: libksba +SPDXID: SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 +PackageVersion: 1.3.5-9.el8_7 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef--LGPLv3--or-GPLv2---and-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libksba:libksba:1.3.5-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libksba:1.3.5-9.el8_7:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libksba@1.3.5-9.el8_7?arch=x86_64&upstream=libksba-1.3.5-9.el8_7.src.rpm&distro=rhel-8.8 + +##### Package: libmnl + +PackageName: libmnl +SPDXID: SPDXRef-Package-rpm-libmnl-b714cde5e9c0a3f9 +PackageVersion: 1.0.4-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libmnl:libmnl:1.0.4-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libmnl:1.0.4-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libmnl@1.0.4-6.el8?arch=x86_64&upstream=libmnl-1.0.4-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: libmodulemd + +PackageName: libmodulemd +SPDXID: SPDXRef-Package-rpm-libmodulemd-9c9ffed1c422836c +PackageVersion: 2.13.0-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libmodulemd:libmodulemd:2.13.0-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libmodulemd:2.13.0-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libmodulemd@2.13.0-1.el8?arch=x86_64&upstream=libmodulemd-2.13.0-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libmount + +PackageName: libmount +SPDXID: SPDXRef-Package-rpm-libmount-070a612d83e6848e +PackageVersion: 2.32.1-42.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libmount:libmount:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libmount:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libmount@2.32.1-42.el8_8?arch=x86_64&upstream=util-linux-2.32.1-42.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libnet + +PackageName: libnet +SPDXID: SPDXRef-Package-rpm-libnet-f53795cb57509559 +PackageVersion: 1.1.6-15.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnet:libnet:1.1.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnet:1.1.6-15.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libnet@1.1.6-15.el8?arch=x86_64&upstream=libnet-1.1.6-15.el8.src.rpm&distro=rhel-8.8 + +##### Package: libnetfilter_conntrack + +PackageName: libnetfilter_conntrack +SPDXID: SPDXRef-Package-rpm-libnetfilter-conntrack-830c21345b7e5867 +PackageVersion: 1.0.6-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnetfilter-conntrack:libnetfilter-conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnetfilter-conntrack:libnetfilter_conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnetfilter_conntrack:libnetfilter-conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnetfilter_conntrack:libnetfilter_conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnetfilter:libnetfilter-conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnetfilter:libnetfilter_conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnetfilter-conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnetfilter_conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libnetfilter_conntrack@1.0.6-5.el8?arch=x86_64&upstream=libnetfilter_conntrack-1.0.6-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libnfnetlink + +PackageName: libnfnetlink +SPDXID: SPDXRef-Package-rpm-libnfnetlink-d0dd7b9ce7180a33 +PackageVersion: 1.0.1-13.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnfnetlink:libnfnetlink:1.0.1-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnfnetlink:1.0.1-13.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libnfnetlink@1.0.1-13.el8?arch=x86_64&upstream=libnfnetlink-1.0.1-13.el8.src.rpm&distro=rhel-8.8 + +##### Package: libnftnl + +PackageName: libnftnl +SPDXID: SPDXRef-Package-rpm-libnftnl-e5ed9cb81779a0d2 +PackageVersion: 1.1.5-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnftnl:libnftnl:1.1.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnftnl:1.1.5-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libnftnl@1.1.5-5.el8?arch=x86_64&upstream=libnftnl-1.1.5-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libnghttp2 + +PackageName: libnghttp2 +SPDXID: SPDXRef-Package-rpm-libnghttp2-6b719eae4b2d0223 +PackageVersion: 1.33.0-3.el8_2.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnghttp2:libnghttp2:1.33.0-3.el8_2.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnghttp2:1.33.0-3.el8_2.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libnghttp2@1.33.0-3.el8_2.1?arch=x86_64&upstream=nghttp2-1.33.0-3.el8_2.1.src.rpm&distro=rhel-8.8 + +##### Package: libnl3 + +PackageName: libnl3 +SPDXID: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e +PackageVersion: 3.7.0-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnl3:libnl3:3.7.0-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnl3:3.7.0-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libnl3@3.7.0-1.el8?arch=x86_64&upstream=libnl3-3.7.0-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libnsl2 + +PackageName: libnsl2 +SPDXID: SPDXRef-Package-rpm-libnsl2-ec79fbc521155d21 +PackageVersion: 1.2.0-2.20180605git4a062cf.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-and-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnsl2:libnsl2:1.2.0-2.20180605git4a062cf.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnsl2:1.2.0-2.20180605git4a062cf.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libnsl2@1.2.0-2.20180605git4a062cf.el8?arch=x86_64&upstream=libnsl2-1.2.0-2.20180605git4a062cf.el8.src.rpm&distro=rhel-8.8 + +##### Package: libpcap + +PackageName: libpcap +SPDXID: SPDXRef-Package-rpm-libpcap-66241757d50be997 +PackageVersion: 14:1.9.1-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-with-advertising +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libpcap:libpcap:14\:1.9.1-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libpcap:14\:1.9.1-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libpcap@1.9.1-5.el8?arch=x86_64&epoch=14&upstream=libpcap-1.9.1-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libpng + +PackageName: libpng +SPDXID: SPDXRef-Package-rpm-libpng-d91e6e2416007afb +PackageVersion: 2:1.6.34-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: Zlib +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libpng:libpng:2\:1.6.34-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libpng:2\:1.6.34-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libpng@1.6.34-5.el8?arch=x86_64&epoch=2&upstream=libpng-1.6.34-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libpsl + +PackageName: libpsl +SPDXID: SPDXRef-Package-rpm-libpsl-fac4c11e752b3ddd +PackageVersion: 0.20.2-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libpsl:libpsl:0.20.2-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libpsl:0.20.2-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libpsl@0.20.2-6.el8?arch=x86_64&upstream=libpsl-0.20.2-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: libpwquality + +PackageName: libpwquality +SPDXID: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 +PackageVersion: 1.4.4-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-or-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libpwquality:libpwquality:1.4.4-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libpwquality:1.4.4-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libpwquality@1.4.4-6.el8?arch=x86_64&upstream=libpwquality-1.4.4-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: librepo + +PackageName: librepo +SPDXID: SPDXRef-Package-rpm-librepo-4cd2e86c97c4754a +PackageVersion: 1.14.2-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:librepo:librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/librepo@1.14.2-4.el8?arch=x86_64&upstream=librepo-1.14.2-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: libreport-filesystem + +PackageName: libreport-filesystem +SPDXID: SPDXRef-Package-rpm-libreport-filesystem-279179905ddc5197 +PackageVersion: 2.9.5-15.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libreport-filesystem:libreport-filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libreport-filesystem:libreport_filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libreport_filesystem:libreport-filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libreport_filesystem:libreport_filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libreport:libreport-filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libreport:libreport_filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libreport-filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libreport_filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libreport-filesystem@2.9.5-15.el8?arch=x86_64&upstream=libreport-2.9.5-15.el8.src.rpm&distro=rhel-8.8 + +##### Package: librhsm + +PackageName: librhsm +SPDXID: SPDXRef-Package-rpm-librhsm-a49d331240abf19b +PackageVersion: 0.0.3-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:librhsm:librhsm:0.0.3-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:librhsm:0.0.3-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/librhsm@0.0.3-5.el8?arch=x86_64&upstream=librhsm-0.0.3-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libseccomp + +PackageName: libseccomp +SPDXID: SPDXRef-Package-rpm-libseccomp-9637380e6a0d0e55 +PackageVersion: 2.5.2-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libseccomp:libseccomp:2.5.2-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libseccomp:2.5.2-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libseccomp@2.5.2-1.el8?arch=x86_64&upstream=libseccomp-2.5.2-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libselinux + +PackageName: libselinux +SPDXID: SPDXRef-Package-rpm-libselinux-594107f6b62dc4ab +PackageVersion: 2.9-8.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libselinux:libselinux:2.9-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libselinux:2.9-8.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libselinux@2.9-8.el8?arch=x86_64&upstream=libselinux-2.9-8.el8.src.rpm&distro=rhel-8.8 + +##### Package: libsemanage + +PackageName: libsemanage +SPDXID: SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f +PackageVersion: 2.9-9.el8_6 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libsemanage:libsemanage:2.9-9.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libsemanage:2.9-9.el8_6:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libsemanage@2.9-9.el8_6?arch=x86_64&upstream=libsemanage-2.9-9.el8_6.src.rpm&distro=rhel-8.8 + +##### Package: libsepol + +PackageName: libsepol +SPDXID: SPDXRef-Package-rpm-libsepol-26ec304cd5fb1c60 +PackageVersion: 2.9-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libsepol:libsepol:2.9-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libsepol:2.9-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libsepol@2.9-3.el8?arch=x86_64&upstream=libsepol-2.9-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: libsigsegv + +PackageName: libsigsegv +SPDXID: SPDXRef-Package-rpm-libsigsegv-27b4d892ad295940 +PackageVersion: 2.11-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libsigsegv:libsigsegv:2.11-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libsigsegv:2.11-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libsigsegv@2.11-5.el8?arch=x86_64&upstream=libsigsegv-2.11-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libsmartcols + +PackageName: libsmartcols +SPDXID: SPDXRef-Package-rpm-libsmartcols-cfc1b4c97bd0b1f9 +PackageVersion: 2.32.1-42.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libsmartcols:libsmartcols:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libsmartcols:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libsmartcols@2.32.1-42.el8_8?arch=x86_64&upstream=util-linux-2.32.1-42.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libsolv + +PackageName: libsolv +SPDXID: SPDXRef-Package-rpm-libsolv-8b6446e1aef0cb45 +PackageVersion: 0.7.20-4.el8_7 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libsolv:libsolv:0.7.20-4.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libsolv:0.7.20-4.el8_7:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libsolv@0.7.20-4.el8_7?arch=x86_64&upstream=libsolv-0.7.20-4.el8_7.src.rpm&distro=rhel-8.8 + +##### Package: libssh + +PackageName: libssh +SPDXID: SPDXRef-Package-rpm-libssh-8cb077ad4f6fdfd4 +PackageVersion: 0.9.6-10.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libssh:libssh:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libssh:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libssh@0.9.6-10.el8_8?arch=x86_64&upstream=libssh-0.9.6-10.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libssh-config + +PackageName: libssh-config +SPDXID: SPDXRef-Package-rpm-libssh-config-b52f1724c9af9daa +PackageVersion: 0.9.6-10.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libssh-config:libssh-config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libssh-config:libssh_config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libssh_config:libssh-config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libssh_config:libssh_config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libssh:libssh-config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libssh:libssh_config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libssh-config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libssh_config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libssh-config@0.9.6-10.el8_8?arch=noarch&upstream=libssh-0.9.6-10.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libstdc++ + +PackageName: libstdc++ +SPDXID: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b +PackageVersion: 8.5.0-18.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-0a20635703258c08665cede2a4166b90795ad1cb30dd85cfde1598463d68ebf5 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libstdc\+\+:libstdc\+\+:8.5.0-18.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libstdc\+\+:8.5.0-18.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libstdc++@8.5.0-18.el8?arch=x86_64&upstream=gcc-8.5.0-18.el8.src.rpm&distro=rhel-8.8 + +##### Package: libtasn1 + +PackageName: libtasn1 +SPDXID: SPDXRef-Package-rpm-libtasn1-ce90f646db4cd13d +PackageVersion: 4.13-4.el8_7 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3--and-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libtasn1:libtasn1:4.13-4.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libtasn1:4.13-4.el8_7:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libtasn1@4.13-4.el8_7?arch=x86_64&upstream=libtasn1-4.13-4.el8_7.src.rpm&distro=rhel-8.8 + +##### Package: libtirpc + +PackageName: libtirpc +SPDXID: SPDXRef-Package-rpm-libtirpc-8061da9a912f4b51 +PackageVersion: 1.1.4-8.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-SISSL-and-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libtirpc:libtirpc:1.1.4-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libtirpc:1.1.4-8.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libtirpc@1.1.4-8.el8?arch=x86_64&upstream=libtirpc-1.1.4-8.el8.src.rpm&distro=rhel-8.8 + +##### Package: libunistring + +PackageName: libunistring +SPDXID: SPDXRef-Package-rpm-libunistring-831f91ebad44f2ec +PackageVersion: 0.9.9-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--or-LGPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libunistring:libunistring:0.9.9-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libunistring:0.9.9-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libunistring@0.9.9-3.el8?arch=x86_64&upstream=libunistring-0.9.9-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: libusbx + +PackageName: libusbx +SPDXID: SPDXRef-Package-rpm-libusbx-703f02296551e01f +PackageVersion: 1.0.23-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libusbx:libusbx:1.0.23-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libusbx:1.0.23-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libusbx@1.0.23-4.el8?arch=x86_64&upstream=libusbx-1.0.23-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: libuser + +PackageName: libuser +SPDXID: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 +PackageVersion: 0.62-25.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libuser:libuser:0.62-25.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libuser:0.62-25.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libuser@0.62-25.el8?arch=x86_64&upstream=libuser-0.62-25.el8.src.rpm&distro=rhel-8.8 + +##### Package: libutempter + +PackageName: libutempter +SPDXID: SPDXRef-Package-rpm-libutempter-3b10d50d8648cfcf +PackageVersion: 1.1.6-14.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libutempter:libutempter:1.1.6-14.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libutempter:1.1.6-14.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libutempter@1.1.6-14.el8?arch=x86_64&upstream=libutempter-1.1.6-14.el8.src.rpm&distro=rhel-8.8 + +##### Package: libuuid + +PackageName: libuuid +SPDXID: SPDXRef-Package-rpm-libuuid-6320b104102d68ba +PackageVersion: 2.32.1-42.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libuuid:libuuid:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libuuid:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libuuid@2.32.1-42.el8_8?arch=x86_64&upstream=util-linux-2.32.1-42.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libverto + +PackageName: libverto +SPDXID: SPDXRef-Package-rpm-libverto-75c996841840f97a +PackageVersion: 0.3.2-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libverto:libverto:0.3.2-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libverto:0.3.2-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libverto@0.3.2-2.el8?arch=x86_64&upstream=libverto-0.3.2-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: libxcrypt + +PackageName: libxcrypt +SPDXID: SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 +PackageVersion: 4.1.1-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-BSD-and-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libxcrypt:libxcrypt:4.1.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libxcrypt:4.1.1-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libxcrypt@4.1.1-6.el8?arch=x86_64&upstream=libxcrypt-4.1.1-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: libxml2 + +PackageName: libxml2 +SPDXID: SPDXRef-Package-rpm-libxml2-fda5b57dbb69e8e7 +PackageVersion: 2.9.7-16.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libxml2:libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libxml2@2.9.7-16.el8_8.1?arch=x86_64&upstream=libxml2-2.9.7-16.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: libyaml + +PackageName: libyaml +SPDXID: SPDXRef-Package-rpm-libyaml-d3d578fd9d7e0485 +PackageVersion: 0.1.7-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libyaml:libyaml:0.1.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libyaml:0.1.7-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libyaml@0.1.7-5.el8?arch=x86_64&upstream=libyaml-0.1.7-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libzstd + +PackageName: libzstd +SPDXID: SPDXRef-Package-rpm-libzstd-ae3b0f6ebfec6dfc +PackageVersion: 1.4.4-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-and-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libzstd:libzstd:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libzstd:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libzstd@1.4.4-1.el8?arch=x86_64&upstream=zstd-1.4.4-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: lua-libs + +PackageName: lua-libs +SPDXID: SPDXRef-Package-rpm-lua-libs-1f0da6c7eb5408a0 +PackageVersion: 5.3.4-12.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lua-libs:lua-libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lua-libs:lua_libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lua_libs:lua-libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lua_libs:lua_libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:lua-libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:lua_libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lua:lua-libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lua:lua_libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/lua-libs@5.3.4-12.el8?arch=x86_64&upstream=lua-5.3.4-12.el8.src.rpm&distro=rhel-8.8 + +##### Package: lz4-libs + +PackageName: lz4-libs +SPDXID: SPDXRef-Package-rpm-lz4-libs-fab834f3c05b83f6 +PackageVersion: 1.8.3-3.el8_4 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--and-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lz4-libs:lz4-libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lz4-libs:lz4_libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lz4_libs:lz4-libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lz4_libs:lz4_libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:lz4-libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:lz4_libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lz4:lz4-libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lz4:lz4_libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/lz4-libs@1.8.3-3.el8_4?arch=x86_64&upstream=lz4-1.8.3-3.el8_4.src.rpm&distro=rhel-8.8 + +##### Package: mpfr + +PackageName: mpfr +SPDXID: SPDXRef-Package-rpm-mpfr-1a8596f0e80a7465 +PackageVersion: 3.1.6-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv3--and-GPLv3--and-GFDL +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:mpfr:3.1.6-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mpfr:mpfr:3.1.6-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/mpfr@3.1.6-1.el8?arch=x86_64&upstream=mpfr-3.1.6-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: ncurses-base + +PackageName: ncurses-base +SPDXID: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 +PackageVersion: 6.1-9.20180224.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses-base:ncurses-base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses-base:ncurses_base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses_base:ncurses-base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses_base:ncurses_base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses:ncurses-base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses:ncurses_base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ncurses-base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ncurses_base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/ncurses-base@6.1-9.20180224.el8_8.1?arch=noarch&upstream=ncurses-6.1-9.20180224.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: ncurses-libs + +PackageName: ncurses-libs +SPDXID: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 +PackageVersion: 6.1-9.20180224.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses-libs:ncurses-libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses-libs:ncurses_libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses_libs:ncurses-libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses_libs:ncurses_libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses:ncurses-libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses:ncurses_libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ncurses-libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ncurses_libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/ncurses-libs@6.1-9.20180224.el8_8.1?arch=x86_64&upstream=ncurses-6.1-9.20180224.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: nettle + +PackageName: nettle +SPDXID: SPDXRef-Package-rpm-nettle-446fa052fc193975 +PackageVersion: 3.4.1-7.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv3--or-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nettle:nettle:3.4.1-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:nettle:3.4.1-7.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/nettle@3.4.1-7.el8?arch=x86_64&upstream=nettle-3.4.1-7.el8.src.rpm&distro=rhel-8.8 + +##### Package: nftables + +PackageName: nftables +SPDXID: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 +PackageVersion: 1:0.9.3-26.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nftables:nftables:1\:0.9.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:nftables:1\:0.9.3-26.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/nftables@0.9.3-26.el8?arch=x86_64&epoch=1&upstream=nftables-0.9.3-26.el8.src.rpm&distro=rhel-8.8 + +##### Package: npth + +PackageName: npth +SPDXID: SPDXRef-Package-rpm-npth-9ce2662d05a994e8 +PackageVersion: 1.5-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:npth:1.5-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:npth:npth:1.5-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/npth@1.5-4.el8?arch=x86_64&upstream=npth-1.5-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: openldap + +PackageName: openldap +SPDXID: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 +PackageVersion: 2.4.46-18.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-OpenLDAP +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openldap:openldap:2.4.46-18.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:openldap:2.4.46-18.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/openldap@2.4.46-18.el8?arch=x86_64&upstream=openldap-2.4.46-18.el8.src.rpm&distro=rhel-8.8 + +##### Package: openssl + +PackageName: openssl +SPDXID: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 +PackageVersion: 1:1.1.1k-9.el8_7 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-OpenSSL-and-ASL-2.0 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openssl:openssl:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:openssl:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/openssl@1.1.1k-9.el8_7?arch=x86_64&epoch=1&upstream=openssl-1.1.1k-9.el8_7.src.rpm&distro=rhel-8.8 + +##### Package: openssl-libs + +PackageName: openssl-libs +SPDXID: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 +PackageVersion: 1:1.1.1k-9.el8_7 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-OpenSSL-and-ASL-2.0 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openssl-libs:openssl-libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openssl-libs:openssl_libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openssl_libs:openssl-libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openssl_libs:openssl_libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openssl:openssl-libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openssl:openssl_libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:openssl-libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:openssl_libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/openssl-libs@1.1.1k-9.el8_7?arch=x86_64&epoch=1&upstream=openssl-1.1.1k-9.el8_7.src.rpm&distro=rhel-8.8 + +##### Package: p11-kit + +PackageName: p11-kit +SPDXID: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 +PackageVersion: 0.23.22-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11-kit:p11-kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11-kit:p11_kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11_kit:p11-kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11_kit:p11_kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:p11-kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:p11_kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11:p11-kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11:p11_kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/p11-kit@0.23.22-1.el8?arch=x86_64&upstream=p11-kit-0.23.22-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: p11-kit-trust + +PackageName: p11-kit-trust +SPDXID: SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f +PackageVersion: 0.23.22-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11-kit-trust:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11-kit-trust:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11_kit_trust:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11_kit_trust:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11-kit:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11-kit:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11_kit:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11_kit:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/p11-kit-trust@0.23.22-1.el8?arch=x86_64&upstream=p11-kit-0.23.22-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: pam + +PackageName: pam +SPDXID: SPDXRef-Package-rpm-pam-c80e5763b488aaab +PackageVersion: 1.3.1-25.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:pam:1.3.1-25.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pam:pam:1.3.1-25.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/pam@1.3.1-25.el8?arch=x86_64&upstream=pam-1.3.1-25.el8.src.rpm&distro=rhel-8.8 + +##### Package: passwd + +PackageName: passwd +SPDXID: SPDXRef-Package-rpm-passwd-d530074a47793db2 +PackageVersion: 0.80-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-or-GPL- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:passwd:passwd:0.80-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:passwd:0.80-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/passwd@0.80-4.el8?arch=x86_64&upstream=passwd-0.80-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: pcre + +PackageName: pcre +SPDXID: SPDXRef-Package-rpm-pcre-39055d7c30264ebc +PackageVersion: 8.42-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:pcre:8.42-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pcre:pcre:8.42-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/pcre@8.42-6.el8?arch=x86_64&upstream=pcre-8.42-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: pcre2 + +PackageName: pcre2 +SPDXID: SPDXRef-Package-rpm-pcre2-3da25cce088d6f35 +PackageVersion: 10.32-3.el8_6 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:pcre2:10.32-3.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pcre2:pcre2:10.32-3.el8_6:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/pcre2@10.32-3.el8_6?arch=x86_64&upstream=pcre2-10.32-3.el8_6.src.rpm&distro=rhel-8.8 + +##### Package: platform-python + +PackageName: platform-python +SPDXID: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 +PackageVersion: 3.6.8-51.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Python +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform-python:platform-python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform-python:platform_python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform_python:platform-python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform_python:platform_python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform-python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform_python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:platform-python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:platform_python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/platform-python@3.6.8-51.el8_8.1?arch=x86_64&upstream=python3-3.6.8-51.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: platform-python-setuptools + +PackageName: platform-python-setuptools +SPDXID: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd +PackageVersion: 39.2.0-7.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform-python-setuptools:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform-python-setuptools:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform_python_setuptools:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform_python_setuptools:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform-python:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform-python:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform_python:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform_python:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/platform-python-setuptools@39.2.0-7.el8?arch=noarch&upstream=python-setuptools-39.2.0-7.el8.src.rpm&distro=rhel-8.8 + +##### Package: popt + +PackageName: popt +SPDXID: SPDXRef-Package-rpm-popt-0b3935dae763295c +PackageVersion: 1.18-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:popt:1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:popt:popt:1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/popt@1.18-1.el8?arch=x86_64&upstream=popt-1.18-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: protobuf-c + +PackageName: protobuf-c +SPDXID: SPDXRef-Package-rpm-protobuf-c-caf48a448cb494cc +PackageVersion: 1.3.0-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:protobuf-c:protobuf-c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:protobuf-c:protobuf_c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:protobuf_c:protobuf-c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:protobuf_c:protobuf_c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:protobuf:protobuf-c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:protobuf:protobuf_c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:protobuf-c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:protobuf_c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/protobuf-c@1.3.0-6.el8?arch=x86_64&upstream=protobuf-c-1.3.0-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: publicsuffix-list-dafsa + +PackageName: publicsuffix-list-dafsa +SPDXID: SPDXRef-Package-rpm-publicsuffix-list-dafsa-214d24ff5f54adcf +PackageVersion: 20180723-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-MPLv2.0 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix-list-dafsa:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix-list-dafsa:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix_list_dafsa:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix_list_dafsa:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix-list:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix-list:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix_list:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix_list:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/publicsuffix-list-dafsa@20180723-1.el8?arch=noarch&upstream=publicsuffix-list-20180723-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-chardet + +PackageName: python3-chardet +SPDXID: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa +PackageVersion: 3.0.4-7.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-chardet:python3-chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-chardet:python3_chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_chardet:python3-chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_chardet:python3_chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-chardet@3.0.4-7.el8?arch=noarch&upstream=python-chardet-3.0.4-7.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-cloud-what + +PackageName: python3-cloud-what +SPDXID: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 +PackageVersion: 1.28.36-3.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-cloud-what:python3-cloud-what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-cloud-what:python3_cloud_what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_cloud_what:python3-cloud-what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_cloud_what:python3_cloud_what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-cloud:python3-cloud-what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-cloud:python3_cloud_what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_cloud:python3-cloud-what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_cloud:python3_cloud_what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-cloud-what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_cloud_what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-cloud-what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_cloud_what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-cloud-what@1.28.36-3.el8_8?arch=x86_64&upstream=subscription-manager-1.28.36-3.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-dateutil + +PackageName: python3-dateutil +SPDXID: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 +PackageVersion: 1:2.6.1-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dateutil:python3-dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dateutil:python3_dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dateutil:python3-dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dateutil:python3_dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-dateutil@2.6.1-6.el8?arch=noarch&epoch=1&upstream=python-dateutil-2.6.1-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-dbus + +PackageName: python3-dbus +SPDXID: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 +PackageVersion: 1.2.4-15.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dbus:python3-dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dbus:python3_dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dbus:python3-dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dbus:python3_dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-dbus@1.2.4-15.el8?arch=x86_64&upstream=dbus-python-1.2.4-15.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-decorator + +PackageName: python3-decorator +SPDXID: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 +PackageVersion: 4.2.1-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-decorator:python3-decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-decorator:python3_decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_decorator:python3-decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_decorator:python3_decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-decorator@4.2.1-2.el8?arch=noarch&upstream=python-decorator-4.2.1-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-dmidecode + +PackageName: python3-dmidecode +SPDXID: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 +PackageVersion: 3.12.3-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dmidecode:python3-dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dmidecode:python3_dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dmidecode:python3-dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dmidecode:python3_dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-dmidecode@3.12.3-2.el8?arch=x86_64&upstream=python-dmidecode-3.12.3-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-dnf + +PackageName: python3-dnf +SPDXID: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 +PackageVersion: 4.7.0-16.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf:python3-dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf:python3_dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf:python3-dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf:python3_dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-dnf@4.7.0-16.el8_8?arch=noarch&upstream=dnf-4.7.0-16.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-dnf-plugins-core + +PackageName: python3-dnf-plugins-core +SPDXID: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 +PackageVersion: 4.0.21-19.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf-plugins-core:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf-plugins-core:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf_plugins_core:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf_plugins_core:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf-plugins:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf-plugins:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf_plugins:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf_plugins:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-dnf-plugins-core@4.0.21-19.el8_8?arch=noarch&upstream=dnf-plugins-core-4.0.21-19.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-ethtool + +PackageName: python3-ethtool +SPDXID: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 +PackageVersion: 0.14-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-ethtool:python3-ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-ethtool:python3_ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_ethtool:python3-ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_ethtool:python3_ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-ethtool@0.14-5.el8?arch=x86_64&upstream=python-ethtool-0.14-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-gobject-base + +PackageName: python3-gobject-base +SPDXID: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 +PackageVersion: 3.28.3-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-gobject-base:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-gobject-base:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_gobject_base:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_gobject_base:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-gobject:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-gobject:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_gobject:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_gobject:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-gobject-base@3.28.3-2.el8?arch=x86_64&upstream=pygobject3-3.28.3-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-gpg + +PackageName: python3-gpg +SPDXID: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d +PackageVersion: 1.13.1-11.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-gpg:python3-gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-gpg:python3_gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_gpg:python3-gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_gpg:python3_gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-gpg@1.13.1-11.el8?arch=x86_64&upstream=gpgme-1.13.1-11.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-hawkey + +PackageName: python3-hawkey +SPDXID: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd +PackageVersion: 0.63.0-14.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-hawkey:python3-hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-hawkey:python3_hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_hawkey:python3-hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_hawkey:python3_hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-hawkey@0.63.0-14.el8_8?arch=x86_64&upstream=libdnf-0.63.0-14.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-idna + +PackageName: python3-idna +SPDXID: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 +PackageVersion: 2.5-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-and-Python-and-Unicode +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-idna:python3-idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-idna:python3_idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_idna:python3-idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_idna:python3_idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-idna@2.5-5.el8?arch=noarch&upstream=python-idna-2.5-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-iniparse + +PackageName: python3-iniparse +SPDXID: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 +PackageVersion: 0.4-31.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-MIT-and-Python +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-iniparse:python3-iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-iniparse:python3_iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_iniparse:python3-iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_iniparse:python3_iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-iniparse@0.4-31.el8?arch=noarch&upstream=python-iniparse-0.4-31.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-inotify + +PackageName: python3-inotify +SPDXID: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 +PackageVersion: 0.9.6-13.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-inotify:python3-inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-inotify:python3_inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_inotify:python3-inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_inotify:python3_inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-inotify@0.9.6-13.el8?arch=noarch&upstream=python-inotify-0.9.6-13.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-libcomps + +PackageName: python3-libcomps +SPDXID: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d +PackageVersion: 0.1.18-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libcomps:python3-libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libcomps:python3_libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libcomps:python3-libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libcomps:python3_libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-libcomps@0.1.18-1.el8?arch=x86_64&upstream=libcomps-0.1.18-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-libdnf + +PackageName: python3-libdnf +SPDXID: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 +PackageVersion: 0.63.0-14.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libdnf:python3-libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libdnf:python3_libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libdnf:python3-libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libdnf:python3_libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-libdnf@0.63.0-14.el8_8?arch=x86_64&upstream=libdnf-0.63.0-14.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-librepo + +PackageName: python3-librepo +SPDXID: SPDXRef-Package-rpm-python3-librepo-0b6f4113629057b0 +PackageVersion: 1.14.2-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-librepo:python3-librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-librepo:python3_librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_librepo:python3-librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_librepo:python3_librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-librepo@1.14.2-4.el8?arch=x86_64&upstream=librepo-1.14.2-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-libs + +PackageName: python3-libs +SPDXID: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 +PackageVersion: 3.6.8-51.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Python +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libs:python3-libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libs:python3_libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libs:python3-libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libs:python3_libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-libs@3.6.8-51.el8_8.1?arch=x86_64&upstream=python3-3.6.8-51.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: python3-libxml2 + +PackageName: python3-libxml2 +SPDXID: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 +PackageVersion: 2.9.7-16.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libxml2:python3-libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libxml2:python3_libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libxml2:python3-libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libxml2:python3_libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-libxml2@2.9.7-16.el8_8.1?arch=x86_64&upstream=libxml2-2.9.7-16.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: python3-pip-wheel + +PackageName: python3-pip-wheel +SPDXID: SPDXRef-Package-rpm-python3-pip-wheel-468c6d9b2ca975d4 +PackageVersion: 9.0.3-22.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-2cecbaa02b06308d4d3db56ae890f9d8fa8289de0557ac98056ab86246326f86 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-pip-wheel:python3-pip-wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-pip-wheel:python3_pip_wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_pip_wheel:python3-pip-wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_pip_wheel:python3_pip_wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-pip:python3-pip-wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-pip:python3_pip_wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_pip:python3-pip-wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_pip:python3_pip_wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-pip-wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_pip_wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-pip-wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_pip_wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-pip-wheel@9.0.3-22.el8?arch=noarch&upstream=python-pip-9.0.3-22.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-pysocks + +PackageName: python3-pysocks +SPDXID: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 +PackageVersion: 1.6.8-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-pysocks:python3-pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-pysocks:python3_pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_pysocks:python3-pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_pysocks:python3_pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-pysocks@1.6.8-3.el8?arch=noarch&upstream=python-pysocks-1.6.8-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-requests + +PackageName: python3-requests +SPDXID: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 +PackageVersion: 2.20.0-3.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ASL-2.0 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-requests:python3-requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-requests:python3_requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_requests:python3-requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_requests:python3_requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-requests@2.20.0-3.el8_8?arch=noarch&upstream=python-requests-2.20.0-3.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-rpm + +PackageName: python3-rpm +SPDXID: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 +PackageVersion: 4.14.3-26.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-rpm:python3-rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-rpm:python3_rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_rpm:python3-rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_rpm:python3_rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-rpm@4.14.3-26.el8?arch=x86_64&upstream=rpm-4.14.3-26.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-setuptools-wheel + +PackageName: python3-setuptools-wheel +SPDXID: SPDXRef-Package-rpm-python3-setuptools-wheel-33a76a121de2018e +PackageVersion: 39.2.0-7.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-setuptools-wheel:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-setuptools-wheel:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_setuptools_wheel:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_setuptools_wheel:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-setuptools:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-setuptools:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_setuptools:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_setuptools:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-setuptools-wheel@39.2.0-7.el8?arch=noarch&upstream=python-setuptools-39.2.0-7.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-six + +PackageName: python3-six +SPDXID: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea +PackageVersion: 1.11.0-8.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-six:python3-six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-six:python3_six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_six:python3-six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_six:python3_six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-six@1.11.0-8.el8?arch=noarch&upstream=python-six-1.11.0-8.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-subscription-manager-rhsm + +PackageName: python3-subscription-manager-rhsm +SPDXID: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 +PackageVersion: 1.28.36-3.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-subscription-manager-rhsm:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-subscription-manager-rhsm:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_subscription_manager_rhsm:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_subscription_manager_rhsm:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-subscription-manager:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-subscription-manager:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_subscription_manager:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_subscription_manager:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-subscription:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-subscription:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_subscription:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_subscription:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-subscription-manager-rhsm@1.28.36-3.el8_8?arch=x86_64&upstream=subscription-manager-1.28.36-3.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-syspurpose + +PackageName: python3-syspurpose +SPDXID: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 +PackageVersion: 1.28.36-3.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-syspurpose:python3-syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-syspurpose:python3_syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_syspurpose:python3-syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_syspurpose:python3_syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-syspurpose@1.28.36-3.el8_8?arch=x86_64&upstream=subscription-manager-1.28.36-3.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-systemd + +PackageName: python3-systemd +SPDXID: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 +PackageVersion: 234-8.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-systemd:python3-systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-systemd:python3_systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_systemd:python3-systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_systemd:python3_systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-systemd@234-8.el8?arch=x86_64&upstream=python-systemd-234-8.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-urllib3 + +PackageName: python3-urllib3 +SPDXID: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 +PackageVersion: 1.24.2-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-urllib3:python3-urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-urllib3:python3_urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_urllib3:python3-urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_urllib3:python3_urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-urllib3@1.24.2-5.el8?arch=noarch&upstream=python-urllib3-1.24.2-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: readline + +PackageName: readline +SPDXID: SPDXRef-Package-rpm-readline-c5d42f4c234235ee +PackageVersion: 7.0-10.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:readline:readline:7.0-10.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:readline:7.0-10.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/readline@7.0-10.el8?arch=x86_64&upstream=readline-7.0-10.el8.src.rpm&distro=rhel-8.8 + +##### Package: redhat-release + +PackageName: redhat-release +SPDXID: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 +PackageVersion: 8.8-0.8.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat-release:redhat-release:8.8-0.8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat-release:redhat_release:8.8-0.8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat_release:redhat-release:8.8-0.8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat_release:redhat_release:8.8-0.8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:redhat-release:8.8-0.8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:redhat_release:8.8-0.8.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/redhat-release@8.8-0.8.el8?arch=x86_64&upstream=redhat-release-8.8-0.8.el8.src.rpm&distro=rhel-8.8 + +##### Package: rootfiles + +PackageName: rootfiles +SPDXID: SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 +PackageVersion: 8.1-22.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rootfiles:rootfiles:8.1-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:rootfiles:8.1-22.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/rootfiles@8.1-22.el8?arch=noarch&upstream=rootfiles-8.1-22.el8.src.rpm&distro=rhel-8.8 + +##### Package: rpm + +PackageName: rpm +SPDXID: SPDXRef-Package-rpm-rpm-544fe79948a81a2a +PackageVersion: 4.14.3-26.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/rpm@4.14.3-26.el8?arch=x86_64&upstream=rpm-4.14.3-26.el8.src.rpm&distro=rhel-8.8 + +##### Package: rpm-build-libs + +PackageName: rpm-build-libs +SPDXID: SPDXRef-Package-rpm-rpm-build-libs-f8e876f78b1b0978 +PackageVersion: 4.14.3-26.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--and-LGPLv2--with-exceptions +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-build-libs:rpm-build-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-build-libs:rpm_build_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_build_libs:rpm-build-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_build_libs:rpm_build_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-build:rpm-build-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-build:rpm_build_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_build:rpm-build-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_build:rpm_build_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:rpm-build-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:rpm_build_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:rpm-build-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:rpm_build_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/rpm-build-libs@4.14.3-26.el8?arch=x86_64&upstream=rpm-4.14.3-26.el8.src.rpm&distro=rhel-8.8 + +##### Package: rpm-libs + +PackageName: rpm-libs +SPDXID: SPDXRef-Package-rpm-rpm-libs-d493d01c7fe718f9 +PackageVersion: 4.14.3-26.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--and-LGPLv2--with-exceptions +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-libs:rpm-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-libs:rpm_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_libs:rpm-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_libs:rpm_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:rpm-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:rpm_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:rpm-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:rpm_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/rpm-libs@4.14.3-26.el8?arch=x86_64&upstream=rpm-4.14.3-26.el8.src.rpm&distro=rhel-8.8 + +##### Package: sed + +PackageName: sed +SPDXID: SPDXRef-Package-rpm-sed-fe812e7e94487ede +PackageVersion: 4.5-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:sed:4.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sed:sed:4.5-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/sed@4.5-5.el8?arch=x86_64&upstream=sed-4.5-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: setup + +PackageName: setup +SPDXID: SPDXRef-Package-rpm-setup-f479bfae76b76a21 +PackageVersion: 2.12.2-9.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:setup:2.12.2-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:setup:setup:2.12.2-9.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/setup@2.12.2-9.el8?arch=noarch&upstream=setup-2.12.2-9.el8.src.rpm&distro=rhel-8.8 + +##### Package: shadow-utils + +PackageName: shadow-utils +SPDXID: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a +PackageVersion: 2:4.6-17.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:shadow-utils:shadow-utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:shadow-utils:shadow_utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:shadow_utils:shadow-utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:shadow_utils:shadow_utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:shadow-utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:shadow_utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:shadow:shadow-utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:shadow:shadow_utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/shadow-utils@4.6-17.el8?arch=x86_64&epoch=2&upstream=shadow-utils-4.6-17.el8.src.rpm&distro=rhel-8.8 + +##### Package: sqlite-libs + +PackageName: sqlite-libs +SPDXID: SPDXRef-Package-rpm-sqlite-libs-3c14677b35b16020 +PackageVersion: 3.26.0-18.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sqlite-libs:sqlite-libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sqlite-libs:sqlite_libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sqlite_libs:sqlite-libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sqlite_libs:sqlite_libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:sqlite-libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:sqlite_libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sqlite:sqlite-libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sqlite:sqlite_libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/sqlite-libs@3.26.0-18.el8_8?arch=x86_64&upstream=sqlite-3.26.0-18.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: subscription-manager + +PackageName: subscription-manager +SPDXID: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 +PackageVersion: 1.28.36-3.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/subscription-manager@1.28.36-3.el8_8?arch=x86_64&upstream=subscription-manager-1.28.36-3.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: subscription-manager-rhsm-certificates + +PackageName: subscription-manager-rhsm-certificates +SPDXID: SPDXRef-Package-rpm-subscription-manager-rhsm-certificates-7c18b7dbf0061f93 +PackageVersion: 1.28.36-3.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager-rhsm-certificates:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager-rhsm-certificates:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager_rhsm_certificates:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager_rhsm_certificates:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager-rhsm:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager-rhsm:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager_rhsm:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager_rhsm:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/subscription-manager-rhsm-certificates@1.28.36-3.el8_8?arch=x86_64&upstream=subscription-manager-1.28.36-3.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: systemd + +PackageName: systemd +SPDXID: SPDXRef-Package-rpm-systemd-04d6184674b39275 +PackageVersion: 239-74.el8_8.5 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-MIT-and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:systemd:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:systemd:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/systemd@239-74.el8_8.5?arch=x86_64&upstream=systemd-239-74.el8_8.5.src.rpm&distro=rhel-8.8 + +##### Package: systemd-libs + +PackageName: systemd-libs +SPDXID: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 +PackageVersion: 239-74.el8_8.5 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-libs:systemd-libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-libs:systemd_libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_libs:systemd-libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_libs:systemd_libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:systemd-libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:systemd_libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:systemd-libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:systemd_libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/systemd-libs@239-74.el8_8.5?arch=x86_64&upstream=systemd-239-74.el8_8.5.src.rpm&distro=rhel-8.8 + +##### Package: systemd-pam + +PackageName: systemd-pam +SPDXID: SPDXRef-Package-rpm-systemd-pam-b5bc31dd627a1038 +PackageVersion: 239-74.el8_8.5 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-MIT-and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-pam:systemd-pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-pam:systemd_pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_pam:systemd-pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_pam:systemd_pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:systemd-pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:systemd_pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:systemd-pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:systemd_pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/systemd-pam@239-74.el8_8.5?arch=x86_64&upstream=systemd-239-74.el8_8.5.src.rpm&distro=rhel-8.8 + +##### Package: tar + +PackageName: tar +SPDXID: SPDXRef-Package-rpm-tar-fb2eb771609ce85a +PackageVersion: 2:1.30-9.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:tar:2\:1.30-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tar:tar:2\:1.30-9.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/tar@1.30-9.el8?arch=x86_64&epoch=2&upstream=tar-1.30-9.el8.src.rpm&distro=rhel-8.8 + +##### Package: tpm2-tss + +PackageName: tpm2-tss +SPDXID: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec +PackageVersion: 2.3.2-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tpm2-tss:tpm2-tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tpm2-tss:tpm2_tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tpm2_tss:tpm2-tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tpm2_tss:tpm2_tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:tpm2-tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:tpm2_tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tpm2:tpm2-tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tpm2:tpm2_tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/tpm2-tss@2.3.2-4.el8?arch=x86_64&upstream=tpm2-tss-2.3.2-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: tzdata + +PackageName: tzdata +SPDXID: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac +PackageVersion: 2023c-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:tzdata:2023c-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tzdata:tzdata:2023c-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/tzdata@2023c-1.el8?arch=noarch&upstream=tzdata-2023c-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: usermode + +PackageName: usermode +SPDXID: SPDXRef-Package-rpm-usermode-8ab8e85f37f04064 +PackageVersion: 1.113-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:usermode:usermode:1.113-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:usermode:1.113-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/usermode@1.113-2.el8?arch=x86_64&upstream=usermode-1.113-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: util-linux + +PackageName: util-linux +SPDXID: SPDXRef-Package-rpm-util-linux-bf827b267d474173 +PackageVersion: 2.32.1-42.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-863d3e39506e6ebcf82f78e79964ef78390b1d9acd2c6c59993a8e6ce7d124eb +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util-linux:util-linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util-linux:util_linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util_linux:util-linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util_linux:util_linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:util-linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:util_linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:util-linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:util_linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/util-linux@2.32.1-42.el8_8?arch=x86_64&upstream=util-linux-2.32.1-42.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: vim-minimal + +PackageName: vim-minimal +SPDXID: SPDXRef-Package-rpm-vim-minimal-b0b67d2d41e3e7c7 +PackageVersion: 2:8.0.1763-19.el8_6.4 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Vim-and-MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:vim-minimal:vim-minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:vim-minimal:vim_minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:vim_minimal:vim-minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:vim_minimal:vim_minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:vim-minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:vim_minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:vim:vim-minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:vim:vim_minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/vim-minimal@8.0.1763-19.el8_6.4?arch=x86_64&epoch=2&upstream=vim-8.0.1763-19.el8_6.4.src.rpm&distro=rhel-8.8 + +##### Package: virt-what + +PackageName: virt-what +SPDXID: SPDXRef-Package-rpm-virt-what-3a5a55ee259fe7fc +PackageVersion: 1.25-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:virt-what:virt-what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:virt-what:virt_what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:virt_what:virt-what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:virt_what:virt_what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:virt-what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:virt_what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:virt:virt-what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:virt:virt_what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/virt-what@1.25-3.el8?arch=x86_64&upstream=virt-what-1.25-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: which + +PackageName: which +SPDXID: SPDXRef-Package-rpm-which-2a569468adbfddc1 +PackageVersion: 2.21-18.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:which:2.21-18.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:which:which:2.21-18.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/which@2.21-18.el8?arch=x86_64&upstream=which-2.21-18.el8.src.rpm&distro=rhel-8.8 + +##### Package: xz-libs + +PackageName: xz-libs +SPDXID: SPDXRef-Package-rpm-xz-libs-284770d9f31d73af +PackageVersion: 5.2.4-4.el8_6 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xz-libs:xz-libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xz-libs:xz_libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xz_libs:xz-libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xz_libs:xz_libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:xz-libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:xz_libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xz:xz-libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xz:xz_libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/xz-libs@5.2.4-4.el8_6?arch=x86_64&upstream=xz-5.2.4-4.el8_6.src.rpm&distro=rhel-8.8 + +##### Package: yum + +PackageName: yum +SPDXID: SPDXRef-Package-rpm-yum-b9a4eb0f7c61e467 +PackageVersion: 4.7.0-16.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:yum:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:yum:yum:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/yum@4.7.0-16.el8_8?arch=noarch&upstream=dnf-4.7.0-16.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: zlib + +PackageName: zlib +SPDXID: SPDXRef-Package-rpm-zlib-c03c984064097e8d +PackageVersion: 1.2.11-21.el8_7 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-zlib-and-Boost +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:zlib:1.2.11-21.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:zlib:zlib:1.2.11-21.el8_7:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/zlib@1.2.11-21.el8_7?arch=x86_64&upstream=zlib-1.2.11-21.el8_7.src.rpm&distro=rhel-8.8 + +##### Other Licenses + +LicenseID: LicenseRef--GPLv2--or-AFL--and-GPLv2- +ExtractedText: (GPLv2+ or AFL) and GPLv2+ + +LicenseID: LicenseRef--GPLv2--or-LGPLv3---and-GPLv3- +ExtractedText: (GPLv2+ or LGPLv3+) and GPLv3+ + +LicenseID: LicenseRef--LGPLv3--or-GPLv2---and-GPLv3- +ExtractedText: (LGPLv3+ or GPLv2+) and GPLv3+ + +LicenseID: LicenseRef-0a20635703258c08665cede2a4166b90795ad1cb30dd85cfde1598463d68ebf5 +ExtractedText: GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD + +LicenseID: LicenseRef-12fb2ee089bfd860136a5dc94e5a1990ee9cc0e49396da51c2a58d0552aa370b +ExtractedText: https://projects.eclipse.org/license/epl-2.0, https://projects.eclipse.org/license/secondary-gpl-2.0-cp + +LicenseID: LicenseRef-2cecbaa02b06308d4d3db56ae890f9d8fa8289de0557ac98056ab86246326f86 +ExtractedText: MIT and Python and ASL 2.0 and BSD and ISC and LGPLv2 and MPLv2.0 and (ASL 2.0 or BSD) + +LicenseID: LicenseRef-3ec43172950c15b1a1e5e626ac065b88ced800063bd77f89878f87073df8a5ae +ExtractedText: GPLv3+ and GPLv3+ with exceptions and GPLv2+ and GPLv2+ with exceptions and GPL+ and LGPLv2+ and LGPLv3+ and BSD and Public Domain and GFDL + +LicenseID: LicenseRef-61844448b5d7c01d6d8b1e440ffbfaddcb562b77af86d4b0eda5607a169affb8 +ExtractedText: http://www.eclipse.org/legal/epl-v20.html, http://www.eclipse.org/org/documents/edl-v10.php + +LicenseID: LicenseRef-80a0f05e17641589a96d3170725af37b98a6fe1cfaabf90db4f4259ec0914fdf +ExtractedText: (FTL or GPLv2+) and BSD and MIT and Public Domain and zlib with acknowledgement + +LicenseID: LicenseRef-84987e62fcaab3858aed0bafe7f4e32a774f0dc234322f0e1200e4b7a10780cc +ExtractedText: http://opensource.org/licenses/apache2.0.php; link="http://www.apache.org/licenses/LICENSE-2.0"; description="Apache License, Version 2.0" + +LicenseID: LicenseRef-863d3e39506e6ebcf82f78e79964ef78390b1d9acd2c6c59993a8e6ce7d124eb +ExtractedText: GPLv2 and GPLv2+ and LGPLv2+ and BSD with advertising and Public Domain + +LicenseID: LicenseRef-AFL-and-GPLv2- +ExtractedText: AFL and GPLv2+ + +LicenseID: LicenseRef-ASL-2.0 +ExtractedText: ASL 2.0 + +LicenseID: LicenseRef-Apache-2.0 +ExtractedText: Apache 2.0 + +LicenseID: LicenseRef-BSD +ExtractedText: BSD + +LicenseID: LicenseRef-BSD-3-Clause-link-https---asm.ow2.io-LICENSE.txt +ExtractedText: BSD-3-Clause;link=https://asm.ow2.io/LICENSE.txt + +LicenseID: LicenseRef-BSD-and-GPLv2 +ExtractedText: BSD and GPLv2 + +LicenseID: LicenseRef-BSD-and-GPLv2- +ExtractedText: BSD and GPLv2+ + +LicenseID: LicenseRef-BSD-and-LGPLv2- +ExtractedText: BSD and LGPLv2+ + +LicenseID: LicenseRef-BSD-and-LGPLv2-and-Sleepycat +ExtractedText: BSD and LGPLv2 and Sleepycat + +LicenseID: LicenseRef-BSD-and-Python-and-Unicode +ExtractedText: BSD and Python and Unicode + +LicenseID: LicenseRef-BSD-like +ExtractedText: BSD-like + +LicenseID: LicenseRef-BSD-or-GPL- +ExtractedText: BSD or GPL+ + +LicenseID: LicenseRef-BSD-or-GPLv2 +ExtractedText: BSD or GPLv2 + +LicenseID: LicenseRef-BSD-or-GPLv2- +ExtractedText: BSD or GPLv2+ + +LicenseID: LicenseRef-BSD-with-advertising +ExtractedText: BSD with advertising + +LicenseID: LicenseRef-Bitstream-Vera-and-Public-Domain +ExtractedText: Bitstream Vera and Public Domain + +LicenseID: LicenseRef-Expat--MIT-X11- +ExtractedText: Expat (MIT/X11) + +LicenseID: LicenseRef-GNU-LGPL +ExtractedText: GNU LGPL + +LicenseID: LicenseRef-GPLv2 +ExtractedText: GPLv2 + +LicenseID: LicenseRef-GPLv2- +ExtractedText: GPLv2+ + +LicenseID: LicenseRef-GPLv2---LGPLv2---MIT +ExtractedText: GPLv2+, LGPLv2+, MIT + +LicenseID: LicenseRef-GPLv2--and-BSD +ExtractedText: GPLv2+ and BSD + +LicenseID: LicenseRef-GPLv2--and-LGPLv2- +ExtractedText: GPLv2+ and LGPLv2+ + +LicenseID: LicenseRef-GPLv2--and-LGPLv2--with-exceptions +ExtractedText: GPLv2+ and LGPLv2+ with exceptions + +LicenseID: LicenseRef-GPLv2--or-LGPLv3- +ExtractedText: GPLv2+ or LGPLv3+ + +LicenseID: LicenseRef-GPLv2-and-Artistic-2.0-and-ISC +ExtractedText: GPLv2 and Artistic 2.0 and ISC + +LicenseID: LicenseRef-GPLv2-or-BSD +ExtractedText: GPLv2 or BSD + +LicenseID: LicenseRef-GPLv3 +ExtractedText: GPLv3 + +LicenseID: LicenseRef-GPLv3- +ExtractedText: GPLv3+ + +LicenseID: LicenseRef-GPLv3--and-GFDL +ExtractedText: GPLv3+ and GFDL + +LicenseID: LicenseRef-GPLv3--and-GPLv2--and-LGPLv2--and-BSD +ExtractedText: GPLv3+ and GPLv2+ and LGPLv2+ and BSD + +LicenseID: LicenseRef-GPLv3--and-LGPLv2- +ExtractedText: GPLv3+ and LGPLv2+ + +LicenseID: LicenseRef-LGPL +ExtractedText: LGPL + +LicenseID: LicenseRef-LGPL2.1---the-library---GPL2---tests-and-examples- +ExtractedText: LGPL2.1+ (the library), GPL2+ (tests and examples) + +LicenseID: LicenseRef-LGPLv2 +ExtractedText: LGPLv2 + +LicenseID: LicenseRef-LGPLv2- +ExtractedText: LGPLv2+ + +LicenseID: LicenseRef-LGPLv2--and-BSD-and-Public-Domain +ExtractedText: LGPLv2+ and BSD and Public Domain + +LicenseID: LicenseRef-LGPLv2--and-GPLv3- +ExtractedText: LGPLv2+ and GPLv3+ + +LicenseID: LicenseRef-LGPLv2--and-MIT +ExtractedText: LGPLv2+ and MIT + +LicenseID: LicenseRef-LGPLv2--and-MIT-and-GPLv2- +ExtractedText: LGPLv2+ and MIT and GPLv2+ + +LicenseID: LicenseRef-LGPLv3--and-GPLv3--and-GFDL +ExtractedText: LGPLv3+ and GPLv3+ and GFDL + +LicenseID: LicenseRef-LGPLv3--or-GPLv2- +ExtractedText: LGPLv3+ or GPLv2+ + +LicenseID: LicenseRef-MIT-License +ExtractedText: MIT License + +LicenseID: LicenseRef-MIT-and-Public-Domain-and-UCD +ExtractedText: MIT and Public Domain and UCD + +LicenseID: LicenseRef-MIT-and-Python +ExtractedText: MIT and Python + +LicenseID: LicenseRef-MPLv2.0 +ExtractedText: MPLv2.0 + +LicenseID: LicenseRef-OpenLDAP +ExtractedText: OpenLDAP + +LicenseID: LicenseRef-OpenSSL-and-ASL-2.0 +ExtractedText: OpenSSL and ASL 2.0 + +LicenseID: LicenseRef-Public-Domain +ExtractedText: Public Domain + +LicenseID: LicenseRef-Python +ExtractedText: Python + +LicenseID: LicenseRef-SISSL-and-BSD +ExtractedText: SISSL and BSD + +LicenseID: LicenseRef-Simplified-BSD +ExtractedText: Simplified BSD + +LicenseID: LicenseRef-UNKNOWN +ExtractedText: UNKNOWN + +LicenseID: LicenseRef-Vim-and-MIT +ExtractedText: Vim and MIT + +LicenseID: LicenseRef-b522309a0902b9c2edf0e43791a497ee72dc820dd9db8cbaf3839d3421e541cc +ExtractedText: Apache-2.0; link="https://www.apache.org/licenses/LICENSE-2.0"; description="Apache License, Version 2.0" + +LicenseID: LicenseRef-b8a5b49031798281d934c96178d7e9b482b25662154407659a04874cda1893b0 +ExtractedText: Apache-2.0;description="This program and the accompanying materials are made available under the terms of the Apache License, Version 2.0.";link="https://opensource.org/licenses/Apache-2.0" + +LicenseID: LicenseRef-cedbc2fa4301332b3d3569627696d986a63b3f3a293a2759a611c7c3deebd428 +ExtractedText: LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ and GPLv2+ with exceptions and BSD and Inner-Net and ISC and Public Domain and GFDL + +LicenseID: LicenseRef-e361ddcfb3f97c3adb1f3b354c6e025142dd9103569c956cf43a08d9908b2d8c +ExtractedText: Apache-2.0; link="http://www.apache.org/licenses/LICENSE-2.0"; description="Apache License, Version 2.0" + +LicenseID: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +ExtractedText: Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/ + +LicenseID: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.html +ExtractedText: http://www.apache.org/licenses/LICENSE-2.0.html + +LicenseID: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +ExtractedText: http://www.apache.org/licenses/LICENSE-2.0.txt + +LicenseID: LicenseRef-https---glassfish.java.net-public-CDDL-GPL-1-1.html +ExtractedText: https://glassfish.java.net/public/CDDL+GPL_1_1.html + +LicenseID: LicenseRef-https---www.apache.org-licenses-LICENSE-2.0.txt +ExtractedText: https://www.apache.org/licenses/LICENSE-2.0.txt + +LicenseID: LicenseRef-new-BSD-License +ExtractedText: new BSD License + +LicenseID: LicenseRef-pubkey +ExtractedText: pubkey + +LicenseID: LicenseRef-zlib-and-Boost +ExtractedText: zlib and Boost + +##### Relationships + +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility-00312ca50eae702c OTHER SPDXRef-File-...com.ibm.ws.webserver.plugin.utility-1.0.81.jar-0616e8863c89967a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.cdi.4.0-00400792c1da6a4a OTHER SPDXRef-File-...io.openliberty.jakarta.cdi.4.0-1.0.81.jar-7b3d8afece7a00e6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.defaultresource-007af3d81d7f48a8 OTHER SPDXRef-File-...com.ibm.ws.javaee.platform.defaultresource-1.0.81.jar-9826e4fcf3d4d00a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.persistence-3.1-012f8ad4fa8efe92 OTHER SPDXRef-File-...io.openliberty.org.eclipse.persistence-3.1-1.0.81.jar-9b046c9928656fc3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...python3-dmidecode-AUTHORS.upstream-1b5490199a1471c4 +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...licenses-python3-dmidecode-AUTHORS-3fd9e95e70af8985 +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...python-dmidecode-3.12.2-py3.6.egg-info-48a8a1d3752813a7 +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-usr-share-python-dmidecode-pymap.xml-74a2dce3084c0d2e +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...python3.6-site-packages-dmidecode.py-758cc19dd423d505 +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...--pycache---dmidecode.cpython-36.pyc-8e30921ebc349e05 +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...licenses-python3-dmidecode-LICENSE-9059e0c8f5555f2b +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 OTHER SPDXRef-Package-python-python-dmidecode-9f1510382966a14d +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...dmidecodemod.cpython-36m-x86-64-linux-gnu.so-c2dae78ddcd94469 +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...dmidecode.cpython-36.opt-1.pyc-d36b92a48b7b5e9e +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.log-01f1ee8c9ddfe34c OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.log-1.2.81.jar-d2a74b7d8fb90df9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-PyGObject-026a55989515496e OTHER SPDXRef-File-...pygobject-3.28.3-py3.6.egg-info-1d5f71a5d0b43e6f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...share-licenses-python3-pysocks-LICENSE-0ae6c6deb9ba3195 +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...--pycache---socks.cpython-36.pyc-119ae5c8ff9312b4 +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...SOURCES.txt-629f04842ad8f7d9 +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...top-level.txt-685ddbd4b437b8ed +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...sockshandler.cpython-36.opt-1.pyc-7e3b89230e54d32a +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...--pycache---socks.cpython-36.opt-1.pyc-82d71b534c71565b +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...PySocks-1.6.8-py3.6.egg-info-PKG-INFO-8b161028d1df54f7 +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...sockshandler.cpython-36.pyc-95006809f3b97586 +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 OTHER SPDXRef-Package-python-PySocks-9a572bb052f6e9e4 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...site-packages-sockshandler.py-cd3fe14814ee7495 +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...lib-python3.6-site-packages-socks.py-e81bd9ddf844cff3 +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...dependency-links.txt-f0fb793f7323e763 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-etc-profile.d-colorgrep.sh-17e0e4a63748c690 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-usr-libexec-grepconf.sh-39ecc07b25165ca0 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-usr-share-licenses-grep-COPYING-92b86ff1dbaf0377 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-usr-bin-grep-974ba8f294bb0dde +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-usr-bin-egrep-aed92999cfb17304 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-etc-GREP-COLORS-bacb11fa373e1fc3 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-usr-bin-fgrep-cc0ea280a1dd78f3 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-etc-profile.d-colorgrep.csh-d9db08ce5c03e386 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-serverSchemagen-03f4a941773d92c5 OTHER SPDXRef-File-...wlp-bin-tools-ws-serverSchemagen.jar-7abceac531a8cf7d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-bash-11695f5bbf42dad4 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-alias-301ca1facbefe794 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-etc-skel-.bash-logout-3e12cf6d425eca40 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-bg-4e8cfe258ce5cf3a +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-fc-52da7ab3b20e783d +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-unalias-6be4cb11aed17376 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-type-721ea5dac09f0b24 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-umask-7e3496199b83518e +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-etc-skel-.bashrc-88051a122bc4794a +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-getopts-9d12602cbc4e5861 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-bashbug-64-a8059e84dae3f45c +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-hash-af4d693097f83e4d +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-jobs-c644dbad088b725d +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-read-da5bdaeee82a7e6c +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-share-licenses-bash-COPYING-de53e201f8f9f9ca +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-ulimit-e7b0b129462e3189 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-fg-e7b1b69f1775fc04 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-etc-skel-.bash-profile-e9bf8b015bb2b301 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-wait-f3419a226cc821f7 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-command-f50418d637798502 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-cd-f6ed4278910f843d +Relationship: SPDXRef-Package-java-archive-guide-getting-started-0470a2ffe7a4f194 OTHER SPDXRef-File-...apps-guide-getting-started.war-9c540d94dd610a8e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.threading-04a82de306980599 OTHER SPDXRef-File-...lib-com.ibm.ws.threading-1.1.81.jar-a288d22610fe3a1a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.instrument.check-04ae0a0c5ffc5c19 OTHER SPDXRef-File-opt-ol-wlp-bin-tools-ws-javaagent.jar-cc78d3904194e910 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.cdi.interfaces.jakarta-04ae30f55385e266 OTHER SPDXRef-File-...com.ibm.ws.cdi.interfaces.jakarta-1.0.81.jar-42b88f93823e8034 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-slices.target-005bfe32fadcc17f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-portables.conf-024bf2095af272fe +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-cat-035bdf353a8b313f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-systemd-system.conf-03bfb375b2b507e7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-ask-password-console.service-049444b884732ec2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-timers.target-055ce4e14c6e4367 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-factory-etc-pam.d-system-auth-0625c804045ec446 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-update-utmp.service-071285e817f600ef +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-hostnamed.service-0735b674bd619a5b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-licenses-systemd-LICENSE.LGPL2.1-0989646e069c1a21 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-systemd.conf-09a0e9e4bfbb7b73 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-path-09f7964127cbe019 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-user-runtime-dir-.service-0b916bcf41ef8191 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-fsck-.service-0c635f2635f73fc4 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-cgtop-0d4daeead478177a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-systemd-coredump.conf-0fa0d53ca5d64690 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-systemd-pstore.conf-11250dcdaa00a5e8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-delta-113014ebac05d0c7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-timedatectl-11a6a3fb9b1b851d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-reply-password-11f896318f5cea88 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-pstore-121a6962926ef182 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-bluetooth.target-125b99d02d3745b3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.catalog-13b371a7879c3e19 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-systemd-language-fallback-map-1417f84d816493f3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemctl-1564c2ea89ec1b49 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-halt.service-15e0d2919b84419d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-systemd-journald.conf-161587aead4f30d3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-inittab-16d6c0f35c6b085a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-run-18248c5cba8cc091 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...user-graphical-session-pre.target-1839e0124df89ef4 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.hostname1.policy-18972c9da55b6ace +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-delta-18ae2df6f3f03b0e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-detect-virt-19d730827aa04c98 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-dev-mqueue.mount-1a09a51638e9f9d2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-busctl-1c42670385f918db +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-basic.target-1c466cc7298294b1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-portabled-1c7fd3eaf244a8d2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-nss-lookup.target-1cd5a5982b246494 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-machine-id-1d2eeb6c35de9827 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-analyze-1e19e08a1c852477 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-factory-etc-nsswitch.conf-1f4783fe4e3bd4a7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-local-fs-pre.target-1f5aaa8505a1f637 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--coredumpctl-1fe9bfff00e83111 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-update-done-20266d67288202fa +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-shutdown.target-202f787593e4696f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-cgls-20896b16555f270d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-sysusers.d-systemd.conf-20b91d58dba8dc01 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-sysctl.d-50-coredump.conf-20bd96ed271d11f3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.de.catalog-20c81276c974f91a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...user-systemd-tmpfiles-setup.service-2217457b5fcc2c41 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-sysctl.conf-22ac3ca910f56d15 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-journald.socket-23d09b3d8ddf9790 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-sysusers.service-245c72c831cfc04c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-poweroff.target-2463ec591887664c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-system-update-pre.target-24c9d287a8779847 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-user-.slice.d-10-defaults.conf-24e4fd7613ff4e56 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.resolve1.service-2539154e0047b90a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-detect-virt-2698434d7ff5f438 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-user-graphical-session.target-270ccbdcfee3d637 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-sockets.target-278c148e0f6cc45e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.portable1.service-2941264291f6d9d3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-legacy.conf-297a27226b56ddf1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...bash-completion-completions-resolvectl-29f111fb596d0c0f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-network-online.target-2a5d2d06acee7994 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-rescue.service-2c92c65e558a29f9 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...zsh-site-functions--sd-outputmodes-2d9b397db7a05ec3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-ask-password-2e04e801f28d2eb8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-catalog-systemd.zh-TW.catalog-304bf1518c99482a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-pstore.service-3206f030e860ce2d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...zsh-site-functions--sd-unit-files-32c43a8a50b01764 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...actions-org.freedesktop.locale1.policy-3364b261c3333181 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-system-update-cleanup.service-337531757dadeb29 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-portablectl-337576440289ca4d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-emergency.target-3390623168a2def0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-initrd.target-33f90c8bf43f6b18 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--localectl-35465143acd5d29d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-exit.target-361dc31dbc4b5c4e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.systemd1.service-37c2b9f96351a64c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-exit.target-3a2867cf74c58d24 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-serial-getty-.service-3a512a0e654153b6 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-firstboot-3a52f1a05f7e3000 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-licenses-systemd-LICENSE.GPL2-3ae2b4f3f4cf3550 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...portable-profile-trusted-service.conf-3b0ea2e50a1ca85d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-system-update.target-3c30d5a02abd27d7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-tmp.mount-3dbe5b92e7a72e39 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-remote-fs.target-3e5820ad4e7eef34 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-systemd-user-runtime-dir-3f1784f78cb5deff +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-remote-fs-pre.target-409a9a362d25411a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-kexec.service-40b997c61a20afb1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-rc.d-init.d-README-40c859900b4b760f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-sockets.target-41ba3a17121c4500 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-notify-41e3d86a17e84805 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-initrd-parse-etc.service-4382aa0cc5546971 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-halt-local.service-4515cf557dea0130 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-time-sync.target-45b9e33951a5efb8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-rescue.target-468d60086b7fa3fa +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...proc-sys-fs-binfmt-misc.automount-484478b9866be9b8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-socket-activate-49bcce7809a1e948 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--timedatectl-4a5db7a10ba435fe +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-kexec.target-4ceaf2602dcdef43 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-socket-proxyd-4df39a58f37a0f48 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-printer.target-4e69481fa9bce474 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-systemd-kbd-model-map-4f968b8e5789c421 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...bash-completion-completions-journalctl-501b603eec98fe3d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-initrd-switch-root.service-513b5afb5d9a4c07 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-loginctl-51e12304b5f021cc +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-zsh-site-functions--busctl-52976729c76be3b7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-final.target-5365441a966abb7a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-boot-complete.target-561f48bc6de4f911 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-sys-kernel-debug.mount-583704cf1c33fa6d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-ac-power-58eb277540db9eb8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...zsh-site-functions--systemd-inhibit-590d5a72b3eb38f2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-ask-password-wall.path-5930683aede7e63e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-shutdown-595c6f1d4f134756 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.portable1.conf-5b0c0c1569d165a5 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-systemd-resolved.conf-5c642b3598ef12ea +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-journal-flush.service-5dbc459ffb27b6bb +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system.d-org.freedesktop.systemd1.conf-5de99c49af05653e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.portable1.policy-5ee143c0081ca3b2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-tmpfiles.d-systemd-nologin.conf-5f8327952cae6ec1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-ask-password-console.path-609852362308432d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-initctl.socket-60faa7e37e0aa090 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-initrd-switch-root.target-6108121cf50b4acb +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-paths.target-61c02f8148a062db +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-sys-kernel-config.mount-61df0f9630a0292b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-getty-.service-61ef701d61a94330 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-tty-ask-password-agent-64129f155943b17b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...bash-completion-completions-loginctl-64e75cbcc451ab3f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...portable-profile-default-service.conf-6630e6ce6d02b6a6 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-syslog.socket-668a7f9e5fa70411 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-locale.conf-6787ccab017a9caf +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system.d-org.freedesktop.locale1.conf-680ee49a3e29931b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-journalctl-693a41101780608c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...zsh-site-functions--systemd-delta-69980daaf61481dc +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-network.target-69cf0bc9caa986b0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...zsh-site-functions--systemd-analyze-6a5812a63b1a0a5c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-cat-6c596df986f8125c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-multi-user.target-6c7ad3cb5669ac6b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--sd-machines-6d1687fa2784b026 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-veritysetup-6db62e83c52fc36e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-console-getty.service-6dcdffb53674b29d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-user-sessions-6de18a6998d14e55 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-update-utmp-6e50e04a0d7551e0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-getty-pre.target-6e6c618118da02c4 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.hostname1.conf-6f13f0c0913fd58d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-localed.service-6fc00670696a5c30 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-zsh-site-functions--loginctl-7180243402407104 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-resolve-724b9b514255bf40 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-sound.target-745888844c7c3e2a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-sys-fs-fuse-connections.mount-7505d55c6f6d1ab3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...-sd-hosts-or-user-at-host-76a93bdf7f16f97e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-hostnamectl-76e93c0a34e3aa52 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--systemd-run-77c9269387d4b1eb +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-portabled.service-791118e71c2593e7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-printer.target-79e6a01fa957f98e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-dev-hugepages.mount-7bc027ef1b7cf975 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-machine-id-setup-7be90e8a26725f1d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-rc-local.service-7d3ea7e050e43a7a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-timedated.service-7edfd6b7035e6f27 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.pl.catalog-807761e2427c14be +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-analyze-81277f2b418a456d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-localed-8266062d67f7f6a3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-sysctl.service-82dcc4fc1402a4a1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-halt.target-8304f1e6ede8381b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...bash-completion-completions-busctl-8374e71bd5cc9523 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-coredumpctl-83a6a5615297f00b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-preset-90-systemd.preset-83d366511402e499 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-initrd-fs.target-83e3d799fcd7db17 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-var.conf-84d0b993eaf35a85 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-firstboot.service-84f4cf2fb4d518d1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-journal-nocow.conf-870a034d7bea6ba7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-paths.target-87d486c87b003283 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.systemd1.policy-88b4154b912d2af1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-update-utmp-runlevel.service-88c0719d4ccf5f9c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-graphical.target-8a3bf1a57ba4e680 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...30-systemd-environment-d-generator-8ae9cd39f6749863 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...actions-org.freedesktop.login1.policy-8bb77ef3dae1e211 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-sysusers-8e24bf0cb49b3dd1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-environment-8ef58ba6d912c968 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-user.slice-900d7cce6da082a5 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-tmpfiles-clean.timer-906b6ba2e3e93165 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-home.conf-9120017858eab67c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-inhibit-918537602c0f894b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-pkgconfig-udev.pc-91d223df393d8b84 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-rpcbind.target-92465d891dc8e52e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...user-systemd-tmpfiles-clean.service-9259040d53a74882 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-timers.target-929eaec84ef987fa +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-tmpfiles-setup.service-92b0afc24470b8a7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-hostnamed-94560331c94e978b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...bash-completion-completions-systemctl-95733c641f37ac09 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-initrd-root-fs.target-970c43a7f0a40c1c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-initrd-cleanup.service-98c955036b369ed3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-timedated-99e00bf006968659 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-ldconfig.service-9a321e96d1e79282 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-machine-id-commit.service-9a5985c5479b5d30 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-volatile-root.service-9ae9648f0538d20c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-sound.target-9c2d172e166fd24e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-user-preset-90-systemd.preset-9cf3cd66b745bd9c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-volatile-root-9d50d70fb5cd30c0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-exit.service-9fd00c0c6d21904a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-localectl-a0650745365c0754 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-systemd-logind.conf-a0a588c35da35e14 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-debug-generator-a1e9f69a948a64d8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-network-pre.target-a33179f52a344e86 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-fsck-root.service-a402eb0c4487d10a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-shutdown.target-a4831f8091db5952 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-proc-sys-fs-binfmt-misc.mount-a60a432c5131e9b1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-journald-a646406f8732f88b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-dnf-protected.d-systemd.conf-a64e2b295f8b9eb7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-x11.conf-a67d2ee36373dd8a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system.d-org.freedesktop.login1.conf-ab9b545e98b8bc17 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-sigpwr.target-ac065cdb6da61d17 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-etc.conf-ac279c0824d88bfe +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-X11-xorg.conf.d-00-keyboard.conf-acfb6e6b7ef715d7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-poweroff.service-b0d6718250735408 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-getty.target-b0e9ddb6e54e859e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-logind.service-b22b7ff70d84d9b2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-cgtop-b2e5c23479c8134c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...user-systemd-tmpfiles-clean.timer-b36e1aa87fd756a9 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-journald-audit.socket-b42c2c7ed70850be +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-rpm-macros.d-macros.systemd-b45ed309582c2b47 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-cgroups-agent-b46f5ca2afb4fbc7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-tmp.conf-b8d54264461a4bcb +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-resolvectl-b9af0cf3c8f456c8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-logind-bb8a3d35349654a4 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-resolv.conf-bbaca72b6adb88a2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.login1.service-bbc32b35800a4d14 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-default.target-bce4071f29b318af +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-user-sessions.service-bec5aa14f768ead9 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-smartcard.target-bf699119dc241dae +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-run-bf94f69bb0f0b820 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.timedate1.conf-c1ea4c3636b6cd23 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-local-fs.target-c2cfe732ff89eafe +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.be.catalog-c2da0344bfb4fb6a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-timedatectl-c32c5923788dfd00 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-smartcard.target-c4364605ca95b004 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-dissect-c531adeb1335c2b0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...portable-profile-strict-service.conf-c5dfc7118f750df7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-initctl.service-c6506a31bb2e0e06 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.timedate1.service-c830a14a90b26e6d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-basic.target-c85b858817fde218 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-journald.service-c8b5732aee857ed1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-journal-catalog-update.service-c90c65181d778a80 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-escape-c9250b19bbcf5241 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.it.catalog-c99c9e2c6be33cd9 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...zsh-site-functions--systemd-tmpfiles-cab0381335a345b5 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--journalctl-cb1da11ec6c255b0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-ccc612058f7dbbe6 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-swap.target-ccdd13025b5d8b37 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.timedate1.policy-cd42d58d51c3dd8f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-coredump-.service-cde805e24a050be7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.bg.catalog-ce37c76d8fa4c0c5 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-UTC-cef2b18440be2b49 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-mount-cf3f06c5ae18643a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-portablectl-d198d31de1533d29 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--systemctl-d20036f360edbe0f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-sysinit.target-d42e0600a897e31e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-cgls-d44480593fc481d9 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-initrd-root-device.target-d708f88d5d949138 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-update-generator-d8a74b60cb716fb2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-sysctl.d-50-default.conf-d8b22cbbdbb48f5f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.locale1.service-d8d2ae8c3e23ee97 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-container-getty-.service-d925c64777a431d8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...profile-nonetwork-service.conf-d95f5ed0f4e6e091 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-bluetooth.target-d9639f4a8ec416c8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-hostnamectl-d9a48ced8beff4b8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-sysctl.d-50-pid-max.conf-da2cc44ea36b37a5 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-sulogin-shell-dac2afda3a77719f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-purge-nobody-user-db3319c378aeb53b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-reboot.service-dc43b2cdfe0e444d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-tmpfiles-dcb7cc973a77c416 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system.d-org.freedesktop.resolve1.conf-dd279202ea5207f4 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-fsck-dd5ac7f2a16804ec +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-initctl-ddd60c0b4f53caf2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-crypttab-dee8380495a4cf86 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.ru.catalog-dfda49c9b71bcd0d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-rc.d-rc.local-e1bf31ef47fc3222 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-sysusers.d-basic.conf-e236b2c4c29aba7d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-debug-shell.service-e27bfa36ee3248ef +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--hostnamectl-e2fbfc56d0f42fea +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-var-lib-systemd-catalog-database-e34c9b8d121e62a0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-user-.service-e425e2639d305773 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-binfmt-e52baafee9060a9c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-resolved-e6312e0f0ea49da8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-binfmt.service-e68d70ebd1832f86 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-catalog-systemd.zh-CN.catalog-e6ea2ec9ebef7b33 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-journald-dev-log.socket-e7f1ff713433aa32 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-coredump.socket-e8100dfb73a3882b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-catalog-systemd.pt-BR.catalog-e8623a2f4ddd644b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...bash-completion-completions-localectl-e965a05b8dc814a6 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-update-done.service-e9d1cbac0396836f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-path-ea914ee9fbfbd872 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-user-systemd-exit.service-eb03fcd257955956 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-stdio-bridge-eb33ca6b6cd1a4b1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.resolve1.policy-ebc714ea1d4353d2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-getty-generator-ec5ce24802a7909c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-emergency.service-eca72e93e4c5c9b7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-sysv-generator-ed0ba623929e1a46 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-veritysetup-generator-eeb848c8fd95c950 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-resolved.service-eff9aff1a3cdfec3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...catalog-systemd.be-latin.catalog-f0781f26a8905154 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-fstab-generator-f0e772ae6bb276c8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-umount.target-f176471009588c6a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-pam.d-systemd-user-f1eef627e5d1fcc8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.hostname1.service-f21d3483a068a1e9 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-rc-local-generator-f279cc11c0d38f84 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-tmpfiles-clean.service-f2a885a466af9331 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-export-f2f0e8103355c4b2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...X11-xinit-xinitrc.d-50-systemd-user.sh-f3b66277067c1b3b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-nss-user-lookup.target-f45fd1b432e21c86 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-coredump-f52f3d3553d84ced +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-coredumpctl-f62e329a4ae3fa21 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-hostname-f646fcb09c277d5e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-libsystemd-shared-239.so-f702fc8f6c35df64 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-reboot.target-f7a74152dade036d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-systemd-user.conf-f7cdc2be6ae2c773 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.fr.catalog-fa3bb02cefba96b0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-zsh-site-functions--systemd-fcd0017775beb102 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-factory-etc-pam.d-other-fe114eda0fdfd632 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-sysctl-ff20d3c2b2aa5416 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-pkgconfig-systemd.pc-ff2ca5d52b2ad9b5 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...zsh-site-functions--systemd-resolve-ff2d7690c8b146cd +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-ask-password-wall.service-fffc3d60490c63de +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...not-zip-safe-070b608c5c268c50 +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 OTHER SPDXRef-Package-python-decorator-64ad1a0dc4b7f605 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...--pycache---decorator.cpython-36.pyc-64f28fd874896c57 +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...SOURCES.txt-799722ea4617dfc0 +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...python3.6-site-packages-decorator.py-82b6559637b0740f +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...licenses-python3-decorator-LICENSE.txt-8e8ee2da69c10561 +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...decorator.cpython-36.opt-1.pyc-97694482de89b68d +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...top-level.txt-a3ab0284f6f24fb0 +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...pbr.json-a7a5d5a958e59d31 +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...PKG-INFO-bd28bed913903e91 +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...dependency-links.txt-f27452b7efbe0cad +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.lang3-052888805a0ba73d OTHER SPDXRef-File-...com.ibm.ws.org.apache.commons.lang3-1.0.81.jar-002f7dd0dab45221 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.repository-052eacb4e345a6af OTHER SPDXRef-File-...lib-com.ibm.ws.repository-1.0.81.jar-1c94cf1cca4f01a1 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-server-05c89cd1d469dd04 OTHER SPDXRef-File-opt-ol-wlp-bin-tools-ws-server.jar-9a239fa39b4fd6f4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libmount-070a612d83e6848e CONTAINS SPDXRef-File-usr-share-licenses-libmount-COPYING-1077891aec096a0e +Relationship: SPDXRef-Package-rpm-libmount-070a612d83e6848e CONTAINS SPDXRef-File-usr-lib64-libmount.so.1.1.0-2b35e1b59b0dc3aa +Relationship: SPDXRef-Package-rpm-libmount-070a612d83e6848e CONTAINS SPDXRef-File-...licenses-libmount-COPYING.LGPLv2.1-3ed42538f352af51 +Relationship: SPDXRef-Package-rpm-libmount-070a612d83e6848e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.httpcomponents-0838e8dbedcbabcb OTHER SPDXRef-File-...com.ibm.ws.org.apache.httpcomponents-1.0.81.jar-036cfeb850991b73 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-libcomps-08b412214951d9e5 OTHER SPDXRef-File-...PKG-INFO-c60bef20b2e47cf0 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.dynamic.bundle-08d6cd9d800f0b92 OTHER SPDXRef-File-...com.ibm.ws.dynamic.bundle-1.0.81.jar-ef93cc389aa3c695 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.2.x.config-09182df796a8cd3c OTHER SPDXRef-File-...com.ibm.ws.jaxrs.2.x.config-1.0.81.jar-270d0a13811c5349 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.ready-098086dd3d8df3a3 OTHER SPDXRef-File-...com.ibm.ws.app.manager.ready-1.0.81.jar-f682a30ecad6dc0b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.registry-09a30f3c6fafe647 OTHER SPDXRef-File-...com.ibm.ws.security.registry-1.0.81.jar-a647e1cee84a5e7c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.product.utility-0a677035ad8b6950 OTHER SPDXRef-File-...com.ibm.ws.product.utility-1.0.81.jar-61ccc7854aca503d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel-0ab750de1add5f0e OTHER SPDXRef-File-...lib-com.ibm.ws.logging.hpel-1.0.81.jar-9e8a57b02663df52 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.install-0ae3e531f18a4587 OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.install-1.0.81.jar-a44ba1964661b299 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 CONTAINS SPDXRef-File-...share-licenses-libksba-COPYING.GPLv2-991c75c855bc6374 +Relationship: SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 CONTAINS SPDXRef-File-usr-lib64-libksba.so.8.11.6-acd6fe3137a6f760 +Relationship: SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 CONTAINS SPDXRef-File-...share-licenses-libksba-COPYING.LGPLv3-c76e89269e08066e +Relationship: SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 CONTAINS SPDXRef-File-...share-licenses-libksba-COPYING.GPLv3-deea9c69f8d63720 +Relationship: SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 CONTAINS SPDXRef-File-usr-share-licenses-libksba-COPYING-ecb9cbf009a9c06f +Relationship: SPDXRef-Package-rpm-popt-0b3935dae763295c CONTAINS SPDXRef-File-usr-lib64-libpopt.so.0.0.1-a7289540b2a9a5de +Relationship: SPDXRef-Package-rpm-popt-0b3935dae763295c CONTAINS SPDXRef-File-usr-share-licenses-popt-COPYING-c54dbeb5cb63ee97 +Relationship: SPDXRef-Package-rpm-popt-0b3935dae763295c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-librepo-0b6f4113629057b0 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-29ef19ba56d533e8 +Relationship: SPDXRef-Package-rpm-python3-librepo-0b6f4113629057b0 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-4b988aceb8a5ca56 +Relationship: SPDXRef-Package-rpm-python3-librepo-0b6f4113629057b0 CONTAINS SPDXRef-File-...site-packages-librepo---init--.py-77a6b3c15c888046 +Relationship: SPDXRef-Package-rpm-python3-librepo-0b6f4113629057b0 CONTAINS SPDXRef-File-...site-packages-librepo--librepo.so-b1fda36290cdc11a +Relationship: SPDXRef-Package-rpm-python3-librepo-0b6f4113629057b0 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-findutils-0c5e4ad061cf8e7d CONTAINS SPDXRef-File-usr-bin-find-b98291df748fd65b +Relationship: SPDXRef-Package-rpm-findutils-0c5e4ad061cf8e7d CONTAINS SPDXRef-File-usr-share-licenses-findutils-COPYING-ca864457434e5214 +Relationship: SPDXRef-Package-rpm-findutils-0c5e4ad061cf8e7d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-findutils-0c5e4ad061cf8e7d CONTAINS SPDXRef-File-usr-bin-xargs-f3571069e15bd862 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.ddmodel-0e8d48788588149a OTHER SPDXRef-File-...com.ibm.ws.javaee.ddmodel-1.0.81.jar-deb18579eaa4659f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-qedr.driver-01fffe9b90024450 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-mlx5.driver-082705b227a5250a +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-lib64-libefa.so.1.2.44.0-14f64c0df7f78e7a +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-lib64-libibverbs-librxe-rdmav34.so-1bb60ef064846090 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-bnxt-re.driver-22692f255a41b5c2 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-lib64-libibverbs-libsiw-rdmav34.so-278ef80f6a61902b +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-irdma.driver-343310c3d2906c6b +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-lib64-libibverbs-libhns-rdmav34.so-3e97e717bd682439 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-cxgb4.driver-3f1bbc604146b111 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-...libibverbs-libhfi1verbs-rdmav34.so-48c373697106ea68 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-lib64-libmlx5.so.1.24.44.0-574b9ab233702d56 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-vmw-pvrdma.driver-8c5e7562fcfb5e40 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-...lib64-libibverbs-libbnxt-re-rdmav34.so-8df65b6ed85671bb +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-...lib64-libibverbs-libqedr-rdmav34.so-a4f8e583a8e20f2b +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-share-doc-rdma-core-libibverbs.md-b9115564528b9217 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-hfi1verbs.driver-bb630a8f2dd1da3e +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-...lib64-libibverbs-libcxgb4-rdmav34.so-bd7577063c47c01e +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-...libibverbs-libvmw-pvrdma-rdmav34.so-c18ce21e044f1821 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-siw.driver-d5ab1d058e4c67b4 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-mlx4.driver-ded7e7df7db67c23 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-...lib64-libibverbs-libirdma-rdmav34.so-df179fdf2a36d24b +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-hns.driver-ec3abbb8d734ad8b +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-lib64-libibverbs.so.1.14.44.0-f1fab28dadecec42 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-efa.driver-f5a6f21b6305e635 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-rxe.driver-ffd177095d134fc9 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-lib64-libmlx4.so.1.0.44.0-ffece5b753c16a03 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.jndi-104523a570fd0157 OTHER SPDXRef-File-...ol-wlp-lib-com.ibm.ws.jndi-1.0.81.jar-390f3f72accbfbb3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---repo.cpython-36.opt-1.pyc-000ff4a7f62f3421 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---error.cpython-36.pyc-14d7696a2a17a83e +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf---init--.py-1f3e59cc675b05f1 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--transaction.so-25247fb5d5e7d603 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf-smartcols.py-2b2f98c09e70acc4 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...common-types.cpython-36.opt-1.pyc-2bdf298c6f3b2d7e +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---module.cpython-36.pyc-315c4767d134e990 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...python3.6-site-packages-libdnf-repo.py-3f9594db9abf9eae +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--conf.so-3fd167c7e4c2cf66 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--utils.so-4167da513290feb4 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf-transaction.py-460fbc3f07d5d042 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---smartcols.cpython-36.pyc-4e2e87465e185b88 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-61f6da82a15caecc +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...libdnf---pycache---repo.cpython-36.pyc-6327ef76428f055e +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf-error.py-643468cd4df07ebe +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...libdnf---pycache---conf.cpython-36.pyc-681db22609cf0ca0 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf-common-types.py-6f1099127a2ca0d3 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---error.cpython-36.opt-1.pyc-724e5e4b3fdced1c +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-744232b454046932 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--smartcols.so-745cb2bdd7bb210c +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--repo.so-7871c95e0e7d2026 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--module.so-7fd0f53da4471d4a +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...common-types.cpython-36.pyc-87c4f22e7553e98f +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf-utils.py-94c4eac4dfe87b7d +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...smartcols.cpython-36.opt-1.pyc-98415a4e227cdfda +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf-module.py-9dc08549b3815a4d +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...module.cpython-36.opt-1.pyc-b0b4eb46a22cd4f7 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--common-types.so-c6d468b9854a490f +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...python3.6-site-packages-libdnf-conf.py-d35df845d1602ea7 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.pyc-d7a255f8e91d61f3 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--error.so-dd2ce70ad6a9ed5c +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f03b7d59a78ca2e6 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---conf.cpython-36.opt-1.pyc-fa01515187993ad0 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...transaction.cpython-36.opt-1.pyc-fa9f268233d4dc92 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---transaction.cpython-36.pyc-fff4020a9b59eab7 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.cdi.web.jakarta-11311d79d2229e78 OTHER SPDXRef-File-...com.ibm.ws.cdi.web.jakarta-1.0.81.jar-cdc702ca5ba52723 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 CONTAINS SPDXRef-File-usr-lib64-libldap-2.4.so.2.10.9-29575a76c3e82ee6 +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 CONTAINS SPDXRef-File-usr-share-licenses-openldap-COPYRIGHT-3c26c6e373ac9693 +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 CONTAINS SPDXRef-File-usr-share-licenses-openldap-LICENSE-568e33503ff18f13 +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 CONTAINS SPDXRef-File-usr-lib64-libldap-r-2.4.so.2.10.9-864ee657bdff9863 +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 CONTAINS SPDXRef-File-etc-openldap-ldap.conf-91eb039632dbcf78 +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 CONTAINS SPDXRef-File-usr-lib64-liblber-2.4.so.2.10.9-cdc99235b436ebf2 +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 CONTAINS SPDXRef-File-usr-lib64-libslapi-2.4.so.2.10.9-f239ed9a52120052 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.crypto.certificateutil-12307a2b3786915d OTHER SPDXRef-File-...com.ibm.ws.crypto.certificateutil-1.0.81.jar-dbdf8948b0c5e84f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.pages.3.1-128193a06618afaf OTHER SPDXRef-File-...io.openliberty.jakarta.pages.3.1-1.0.81.jar-4f21a9e821b46007 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.tai-13af1a248263e9c5 OTHER SPDXRef-File-...io.openliberty.security.authentication.internal.tai-1.0.81.jar-7ba9b2b4a183a86f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-elfutils-libelf-1490683b1177d120 CONTAINS SPDXRef-File-...licenses-elfutils-libelf-COPYING-GPLV2-11613efeb64d51e1 +Relationship: SPDXRef-Package-rpm-elfutils-libelf-1490683b1177d120 CONTAINS SPDXRef-File-usr-lib64-libelf-0.188.so-453c61fee9b983ee +Relationship: SPDXRef-Package-rpm-elfutils-libelf-1490683b1177d120 CONTAINS SPDXRef-File-...elfutils-libelf-COPYING-LGPLV3-bc7dcd87acd02afb +Relationship: SPDXRef-Package-rpm-elfutils-libelf-1490683b1177d120 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libfdisk-14aa4da39dcdd70b CONTAINS SPDXRef-File-...licenses-libfdisk-COPYING.LGPLv2.1-32ad7b1a810f0fd7 +Relationship: SPDXRef-Package-rpm-libfdisk-14aa4da39dcdd70b CONTAINS SPDXRef-File-usr-share-licenses-libfdisk-COPYING-8ce923042ea368f3 +Relationship: SPDXRef-Package-rpm-libfdisk-14aa4da39dcdd70b CONTAINS SPDXRef-File-usr-lib64-libfdisk.so.1.1.0-bc587e0f4d28153a +Relationship: SPDXRef-Package-rpm-libfdisk-14aa4da39dcdd70b OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd.common-16857c35ba5e7e3a OTHER SPDXRef-File-...com.ibm.ws.javaee.dd.common-1.1.81.jar-af2a6109841fb6c1 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-webserverPluginutil-1733bf66d2879f15 OTHER SPDXRef-File-...com.ibm.ws.webserver.plugin.utility-1.0.81.jar-0616e8863c89967a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NG-LC-TELEPHONE-00efc990e28968b6 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW-LC-IDENTIFICATION-02c856c925fa2570 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-DK-LC-MESSAGES-SYS-LC-MESSAGES-08b0e51d392c493e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IN-LC-ADDRESS-0a344062d13c7ac6 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-TELEPHONE-0b1750e180b5c4e3 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-NAME-0b9bbab53980635a +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-PAPER-0c663ebffa76eca3 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-TELEPHONE-0e03dc68b171217e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-TIME-0ea9e57d2326c4b8 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-ZM-LC-MESSAGES-SYS-LC-MESSAGES-12589b2621e10b89 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US.utf8-ampm-LC-TIME-12c50bf117b13cd0 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-ADDRESS-1305e9da969269e7 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US.utf8-LC-MONETARY-137e091ea8212536 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-IDENTIFICATION-13d894943df07c7e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-NAME-14c997a4f59ba3fd +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-GB.iso885915-LC-ADDRESS-14efa0e1c5b6129d +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-LC-TELEPHONE-164a7b6581d88b80 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZM-LC-MONETARY-18cf98ff17cdf888 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK-LC-NUMERIC-1c2178cc71e23bd5 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-TIME-1c40b2690827e9b3 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW-LC-MONETARY-1edc0f9c6f5d56fb +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH-LC-TIME-1fe310fad9d86aca +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IN-LC-TELEPHONE-22adce6dcc339152 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NG-LC-ADDRESS-2443ee6a312a58e0 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-AU-LC-MESSAGES-SYS-LC-MESSAGES-2613807ab4a8057d +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-NAME-26b1cf0f2cd01332 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-US.iso885915-LC-MONETARY-2738e8abd5b733fe +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-NAME-27eff88af3ac2e39 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB-LC-TELEPHONE-28a937e487469af5 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB.iso885915-LC-TIME-2942fbadea9ba406 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SC.utf8-LC-MONETARY-29a833e48badb967 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-MONETARY-2a4f3094355cd9bb +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-NUMERIC-2dadb402b7f0a575 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US.utf8-LC-TELEPHONE-2dce36a110bd1c95 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW-LC-TIME-2f1d1825f61b7378 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-MONETARY-2f94ee69888154c9 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-MEASUREMENT-31b37f01c39ec6c0 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-NUMERIC-35c2f956157e7797 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZM-LC-TELEPHONE-3663f004bf919b11 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IN-LC-TIME-377e3bdc8bd2548a +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-TIME-38c0371dc134cc3b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH-LC-IDENTIFICATION-3a7f34ef7fd2cf4d +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB-LC-MONETARY-3c2eb16ad40a0208 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH-LC-MONETARY-3cd1166737635a1e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-ZW.utf8-LC-IDENTIFICATION-3cd91ec58fe212d6 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-ADDRESS-3dcfa47bf37ac895 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US.utf8-LC-TIME-3e4e6df0aac90b0c +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-ADDRESS-4100b14dc11c2542 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IN-LC-MONETARY-423941758b580b5d +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA-LC-IDENTIFICATION-44b88b9f31a63c17 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-TELEPHONE-44f8c28f5f15246e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-MONETARY-471b6ac89f9478cd +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-NUMERIC-482c63500b4a519e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-DK.utf8-LC-MESSAGES-SYS-LC-MESSAGES-48ec458afb1f8b82 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZW.utf8-LC-ADDRESS-4c42fb49ae71e9d4 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...LC-MESSAGES-SYS-LC-MESSAGES-4dd8eeb04117903e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-MONETARY-4f38eb7755b21428 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-IE.utf8-LC-IDENTIFICATION-4fa5f0b1794cac2b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK-LC-TELEPHONE-4fe2949c0499a612 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA-LC-TIME-50b504658e3a6a22 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-MONETARY-515335621fbab38e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-MONETARY-52173a7352f8e839 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NG-LC-TIME-52763d4286924020 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW-LC-TELEPHONE-52d15f233a83c660 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NG-LC-MONETARY-56f8ebb8d1cac10c +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG-LC-IDENTIFICATION-58d8f48c4fc91c74 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-AU.utf8-LC-IDENTIFICATION-596c75a6c89074bf +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NZ.utf8-LC-MONETARY-59c0aa6709578525 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG-LC-TIME-5afac03645e1d825 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NZ.utf8-LC-TELEPHONE-5b60c4183a67cdcf +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-TELEPHONE-5b6470f7016a2968 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG-LC-MONETARY-5be75a92c2fd3056 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK-LC-IDENTIFICATION-5c6da5382ff79c24 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA-LC-COLLATE-5e8b4efacf3979ac +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-GB.iso885915-LC-IDENTIFICATION-5f2e756c1021af61 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-CTYPE-5fa42eb8d6d6fb5e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-TELEPHONE-5fb0900b759781c7 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-TELEPHONE-5fbab395cb323bac +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-TELEPHONE-5fbc57665ffa5d3e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA-LC-MONETARY-608d711669f7c25f +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-COLLATE-60a9976dd3b860e7 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US-LC-IDENTIFICATION-6124c9b5ac9a2bd0 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-TIME-628cc7420743e170 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZW.utf8-LC-TELEPHONE-637bbcc2d311e1e7 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK-LC-MONETARY-6424687ed70e2ede +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US.utf8-LC-ADDRESS-64d95d0753b167f5 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB-LC-IDENTIFICATION-65e23fdcbef8e660 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-ADDRESS-66e40f2bb555d667 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US-LC-MONETARY-671ff83b9313c5f3 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-GB.iso885915-LC-PAPER-67b332bc717e90bf +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US.iso885915-LC-TIME-67bb460ec8a7eda4 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-GB.iso885915-LC-NUMERIC-67c98038685bd622 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-SC.utf8-LC-IDENTIFICATION-67d7fd54d5d9eb01 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SC.utf8-LC-TELEPHONE-684b44048fd1ed61 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US-LC-MEASUREMENT-68c649530a57887a +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-US.iso885915-LC-MEASUREMENT-68cdd5260ac9670f +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-CTYPE-69de207c4f5570a2 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-MONETARY-6a1eb3a2f418f48b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-MEASUREMENT-6b49a0bf1af82e96 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-TELEPHONE-6b9bb67343162edd +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK-LC-NUMERIC-710f99a698f27ebb +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-GB.utf8-LC-IDENTIFICATION-71ff28e2019ebd95 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK-LC-ADDRESS-72405d972f0bb9ae +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-LC-MONETARY-72cf68b177f5796f +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZW-LC-IDENTIFICATION-74b710fc4b5b01ed +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-GB.iso885915-LC-CTYPE-7806d7a2767297ae +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-TIME-783ab1550b9ad5c5 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA-LC-NAME-7a3f3dbf8aa6b15c +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-ZA.utf8-LC-IDENTIFICATION-7a5d1a8432766b6b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-US.utf8-LC-IDENTIFICATION-7e276f8b7514d1c2 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-NAME-7e56328537fc2fbd +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-GB.iso885915-LC-MEASUREMENT-7e9bb1c060133a31 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-TIME-7f765efea9260172 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-PAPER-8016a781f0058752 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG-LC-ADDRESS-801de6318ac70996 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH-LC-TELEPHONE-80281cf0594fe089 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA-LC-PAPER-803a799ee628b488 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG-LC-TELEPHONE-832b0e2d9ed7cf87 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-TELEPHONE-8520a5b3fcae748a +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-ADDRESS-86828ea3a614793e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IL-LC-TELEPHONE-89600bbc05482652 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-TIME-8a1c3ac2bf6b3953 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK-LC-IDENTIFICATION-8aa4bdd32288f291 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-TIME-8ac2294cb383a4d0 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-ADDRESS-8bc645939cf86893 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK-LC-TIME-8c119b8916a00a76 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-CA-LC-MESSAGES-SYS-LC-MESSAGES-8dabc08bc9dfbf3b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-NUMERIC-8dcc033c07e1ff54 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK-LC-NAME-8eb24ff2cdd806ad +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-LC-IDENTIFICATION-8f5ec9080c777e0c +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-euro-LC-NAME-8fd0db66ab1d7565 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA-LC-ADDRESS-91bb9f2a188c548e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NZ-LC-TELEPHONE-93088bc95deaad17 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-PAPER-93e8ab04db42fa92 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZM-LC-IDENTIFICATION-980e3fbaaab39c26 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IN-LC-IDENTIFICATION-9947cde3a2f55722 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA-LC-IDENTIFICATION-997d76d46412c6b7 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NZ-LC-ADDRESS-9af5e9b54d963f18 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-LC-ADDRESS-9b3675e43cc2bb5e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-CA.utf8-LC-MESSAGES-SYS-LC-MESSAGES-9c71c428eda55c83 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-TIME-a07e1524f82b245b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NZ-LC-MONETARY-a0ab980258aa49fa +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-CA.utf8-LC-IDENTIFICATION-a0c27f21adf787f2 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH-LC-NAME-a4013572779b61a7 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB-LC-NAME-a693349f1137e78f +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NG-LC-IDENTIFICATION-a9040f1a04694a29 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-ADDRESS-aac40d89a6a834bc +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-LC-TIME-aaca2f5914f58533 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-MONETARY-abcb90c2976d9471 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US-LC-TELEPHONE-ac5e48056406d81d +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-IDENTIFICATION-acc0fe47e33101c3 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZM-LC-TIME-aea1159f9f2d0641 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-MONETARY-aeecdfcf9d37affb +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-TELEPHONE-b1be887187f1a8ca +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IL-LC-IDENTIFICATION-b1f91dfd818a338d +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SC.utf8-LC-ADDRESS-b4e862c23b0f5360 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB-LC-ADDRESS-b574181d2b2f27d9 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IN-LC-NUMERIC-b6ae3bc99dd49e41 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-PH.utf8-LC-IDENTIFICATION-b94a5e0748b4b440 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-US.iso885915-LC-PAPER-b969e04f4329b6e1 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-US.iso885915-LC-IDENTIFICATION-bf235af607ae2985 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-ADDRESS-c0ad68c1c43cd2b9 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-DK.utf8-LC-IDENTIFICATION-c0fd73f774aa80e6 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-GB.iso885915-LC-MONETARY-c175f40bbda0dbb9 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-COLLATE-c27609ef2ef0e834 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-euro-LC-ADDRESS-c363cc35c6fadb6b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-SG.utf8-LC-IDENTIFICATION-c3ba938185dfd0dd +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-NZ.utf8-LC-IDENTIFICATION-c625bebaf2ae40c1 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-ADDRESS-c628438e48ac358f +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA-LC-MONETARY-c64f096edd98c7ac +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-MONETARY-c7931ef20bf3ef72 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US-LC-ADDRESS-c9a0dd78fc466c88 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US-LC-TIME-ca1e05730eccbda0 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IL-LC-MONETARY-cc3261a69746de7f +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-MONETARY-cc6e534865cfcc8b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH-LC-ADDRESS-ccc9a5bd5671ad09 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB-LC-TIME-cde5cd993d62a784 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-ADDRESS-d03723b21f32e6ac +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK-LC-TELEPHONE-d14eb414191b3ea2 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-ADDRESS-d201cb7c2088ae8f +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-TELEPHONE-d247b7e4c4b8e7f0 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZW.utf8-LC-MONETARY-d2ffdf62ea89f7b1 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB.iso885915-LC-NAME-d61fcf3e6989e938 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-COLLATE-d68e6a00c74688b3 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA-LC-ADDRESS-d82c3300e4d4fbec +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-AG-LC-MESSAGES-SYS-LC-MESSAGES-d9629137742a772c +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA-LC-TELEPHONE-d9f8389e38e5e12b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IL-LC-ADDRESS-daeec6d2fdad9f1a +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NZ.utf8-LC-ADDRESS-de0297a9dfc4724c +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-GB.iso885915-LC-TELEPHONE-dea6d787fac48ab2 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZM-LC-ADDRESS-df360e9309f25736 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-TIME-e2314cc05884a9dc +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-TIME-e61dab623df4dc97 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-GB.iso885915-LC-COLLATE-e6f2d6c7d056f94c +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK-LC-ADDRESS-e7ae266076536640 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-euro-LC-TELEPHONE-e7f8c4c2e3854a7e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-euro-LC-TIME-ea5be04751285400 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZW-LC-MONETARY-ec3f46083c424969 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-US.iso885915-LC-TELEPHONE-ec8ac8e57e44d74b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-euro-LC-MONETARY-f151e691a71b3804 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK-LC-TIME-f15951354cbc3a80 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-MONETARY-f1c9dd81ff852452 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IL-LC-TIME-f1ec9cf9cd4c6573 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZW-LC-TELEPHONE-f398309ba8a7d662 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-IE-euro-LC-IDENTIFICATION-f3dd3b1a0199ddf6 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-BW.utf8-LC-IDENTIFICATION-f5fb7a6c1d6c11af +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NZ-LC-IDENTIFICATION-f615006208df8bb8 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW-LC-ADDRESS-f61dc050627a2d2b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK-LC-MONETARY-f66638a5e6f00905 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-US.utf8-LC-MEASUREMENT-f682071750cb8b01 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-HK.utf8-LC-IDENTIFICATION-f73007afa8b1dad8 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-ADDRESS-f918a2f971f50419 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-US.iso885915-LC-ADDRESS-f92a68a5283720dd +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA-LC-TELEPHONE-fa93fd1a7e284018 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZW-LC-ADDRESS-fba65845604a3b85 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-NAME-fc89c22b3315d614 +Relationship: SPDXRef-Package-python-gpg-176c74855eaee639 OTHER SPDXRef-File-...gpg-1.13.1-py3.6.egg-info-da7717d7cf43e5e6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-filesystem-179398b43587ad72 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-bzip2-libs-17acab8822026709 CONTAINS SPDXRef-File-usr-share-licenses-bzip2-libs-LICENSE-294ae9a2ea0f2824 +Relationship: SPDXRef-Package-rpm-bzip2-libs-17acab8822026709 CONTAINS SPDXRef-File-usr-lib64-libbz2.so.1.0.6-d497d96e06de5d98 +Relationship: SPDXRef-Package-rpm-bzip2-libs-17acab8822026709 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-usr-lib64-libstdc--.so.6.0.25-034b2109703b1348 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...gcc-8-python-libstdcxx-v6-printers.py-2af752d878122828 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...usr-lib64-libstdc--.so.6.0.25-gdb.py-4e3b9f530c1e6f6f +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-558a33dcb4220597 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...v6---pycache-----init--.cpython-36.pyc-55a7559c5150863b +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...xmethods.cpython-36.opt-1.pyc-6a790ce66409e07b +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-6dd85856ca14078b +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...printers.cpython-36.opt-1.pyc-71a0bdeb5372bee2 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...v6---pycache---printers.cpython-36.pyc-94313d2f3d63dc20 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...libstdc--.so.6.0.25-gdb.cpython-36.opt-1.pyc-cf1403ff057a7d17 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...v6---pycache---xmethods.cpython-36.pyc-d0a2fb112fb6e0b1 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...gcc-8-python-libstdcxx-v6---init--.py-d4d8beacc9474116 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...gcc-8-python-libstdcxx---init--.py-d91bc8c4128a4e70 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...libstdc--.so.6.0.25-gdb.cpython-36.pyc-e92909bf6b6947b2 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...gcc-8-python-libstdcxx-v6-xmethods.py-ee831f25156e5dd9 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-f70d4e7364c6f38e +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.jmx-191229ab7f2a419b OTHER SPDXRef-File-...ol-wlp-lib-com.ibm.ws.jmx-1.0.81.jar-067e93124bf92e0c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.managedobject-1981498e7cecd9ca OTHER SPDXRef-File-...com.ibm.ws.managedobject-1.0.81.jar-80cce54a959a2bd7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.io.smallrye.metrics-1981bbe28a0d2bf1 OTHER SPDXRef-File-...io.openliberty.io.smallrye.metrics-1.0.81.jar-e7028b1a666d998f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.cors.jakarta-19e84b0297f47f72 OTHER SPDXRef-File-...com.ibm.ws.webcontainer.cors.jakarta-1.0.81.jar-f96dfd4e1c8d5376 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-mpfr-1a8596f0e80a7465 CONTAINS SPDXRef-File-usr-lib64-libmpfr.so.4.1.6-3f1fddb396fa99ef +Relationship: SPDXRef-Package-rpm-mpfr-1a8596f0e80a7465 CONTAINS SPDXRef-File-usr-share-licenses-mpfr-COPYING.LESSER-80cd1ace42e47cf2 +Relationship: SPDXRef-Package-rpm-mpfr-1a8596f0e80a7465 CONTAINS SPDXRef-File-usr-share-licenses-mpfr-COPYING-dc377766b4c3d428 +Relationship: SPDXRef-Package-rpm-mpfr-1a8596f0e80a7465 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.jdeparser.1.0.0-1aa60d6e4bfef0f5 OTHER SPDXRef-File-...com.ibm.ws.org.jboss.jdeparser.1.0.0-1.0.81.jar-fd55b6e6c2bddf7c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-boot-proxy-1aba7eb0d811ebb9 OTHER SPDXRef-File-...201-data-boot-proxy.jar-d10719d1dcea600a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.ssl-1b9b8e246bb01d2c OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.ssl-1.5.81.jar-9037cb65e8f378f5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.parsson.1.1-1bb0c08cba48bbd4 OTHER SPDXRef-File-...io.openliberty.org.eclipse.parsson.1.1-1.0.81.jar-87f382f57dea1937 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.session.6.0.internal-1c350314002feaf1 OTHER SPDXRef-File-...io.openliberty.session.6.0.internal-1.0.81.jar-7191ca1cf58ce7c8 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-featureUtility-1c587851fc967577 OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-featureUtility.jar-92a26802a6d3517b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dbus-1cb6510238ba5dd8 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.config.schemagen.schemagen-1e60349c3d000cd5 OTHER SPDXRef-File-opt-ol-wlp-bin-tools-ws-schemagen.jar-2549f9f3b480549c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libacl-1e60fab75e8d074c CONTAINS SPDXRef-File-usr-lib64-libacl.so.1.1.2253-94789880a76395d9 +Relationship: SPDXRef-Package-rpm-libacl-1e60fab75e8d074c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-lua-libs-1f0da6c7eb5408a0 CONTAINS SPDXRef-File-usr-lib64-liblua-5.3.so-94a6f82d097cf8c6 +Relationship: SPDXRef-Package-rpm-lua-libs-1f0da6c7eb5408a0 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.io.smallrye.common.jakarta-1f8abfb0200823fe OTHER SPDXRef-File-...io.openliberty.io.smallrye.common.jakarta-1.0.81.jar-0e1ca4473ef22abc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen.serverschemagen-1fed813f3c643120 OTHER SPDXRef-File-...com.ibm.ws.config.server.schemagen-1.0.81.jar-03932bf40ecb0eb7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.glassfish.json.1.0-200bede0300ec3f9 OTHER SPDXRef-File-...com.ibm.ws.org.glassfish.json.1.0-1.0.81.jar-9093987fcfef1f4e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakartaee.platform.v10-20733c6463dd687a OTHER SPDXRef-File-...io.openliberty.jakartaee.platform.v10-1.0.81.jar-ecee344bd7844d6c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-etc-pki-product-default-479.pem-03a11ebe10f77ea2 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-etc-system-release-cpe-088e463ba7ac1c7c +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...99-default-disable.preset-17ed4cd03af30f32 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-etc-issue-1a6139587efc9b4b +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...pki-rpm-gpg-ISV-Container-signing-key-3fadd4a1ca57118c +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...85-display-manager.preset-49e4aa8176f9d504 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...system-preset-90-default.preset-690de0f76885d281 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...com.redhat.RHEL-8-x86-64.swidtag-7090fb698b60be0e +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-usr-lib-os-release-7216a1736d1cee0d +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...pki-rpm-gpg-RPM-GPG-KEY-redhat-release-aa1b380587abd12a +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-etc-issue.net-bb609963d8224cf4 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...dnf-protected.d-redhat-release.conf-d2cb17d269cff348 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...pki-rpm-gpg-RPM-GPG-KEY-redhat-beta-e22d24acdc4e9a0b +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...com.redhat.RHEL-8.8-x86-64.swidtag-e31018fb0d6a14c3 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...CA-redhat.com-redhatcodesignca.cert-e6b482b09e0cf9b8 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-etc-redhat-release-ef6d52083fa32a5c +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-etc-rpm-macros.dist-ff878d87d85b98fb +Relationship: SPDXRef-Package-rpm-publicsuffix-list-dafsa-214d24ff5f54adcf CONTAINS SPDXRef-File-...publicsuffix-public-suffix-list.dafsa-057a683215eedd04 +Relationship: SPDXRef-Package-rpm-publicsuffix-list-dafsa-214d24ff5f54adcf CONTAINS SPDXRef-File-...publicsuffix-list-dafsa-COPYING-bc2c8696daaa6275 +Relationship: SPDXRef-Package-rpm-publicsuffix-list-dafsa-214d24ff5f54adcf OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen.serverschemagen-216aa4500d7ed9bf OTHER SPDXRef-File-...wlp-bin-tools-ws-serverSchemagen.jar-7abceac531a8cf7d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.artifact-2173cd741b62f5a5 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.artifact-1.2.81.jar-3e1850474b015dc9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.metatype.helper-22148fb06e54b25c OTHER SPDXRef-File-...com.ibm.ws.kernel.metatype.helper-1.0.81.jar-5ed3d5c92d2fec9e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 CONTAINS SPDXRef-File-usr-bin-pwmake-35d44fa1766eaf3f +Relationship: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 CONTAINS SPDXRef-File-...share-licenses-libpwquality-COPYING-64f5b8acefc4574f +Relationship: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 CONTAINS SPDXRef-File-usr-lib64-libpwquality.so.1.0.2-90515a61f8906424 +Relationship: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 CONTAINS SPDXRef-File-etc-security-pwquality.conf-aa5a752bcc77345b +Relationship: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 CONTAINS SPDXRef-File-usr-bin-pwscore-caaaa279f05cbedd +Relationship: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 CONTAINS SPDXRef-File-usr-lib64-security-pam-pwquality.so-ddc31ff8d1f5f1e2 +Relationship: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.tx.util.jakarta-22a2d52242f0b82a OTHER SPDXRef-File-...lib-com.ibm.tx.util.jakarta-1.0.81.jar-d637e9500906e9cd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-launch-22d346fb8340a3c1 OTHER SPDXRef-File-opt-ol-wlp-lib-ws-launch.jar-d46337f79f64e601 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.jboss.classfilewriter.1.3-2400266da2e70a6d OTHER SPDXRef-File-...io.openliberty.org.jboss.classfilewriter.1.3-1.3.81.jar-1fe80f34d7cd41b2 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-securityutil-248c284f10d70274 OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-securityutil.jar-d47265613f76c274 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.container.service-260b772a916e1f2e OTHER SPDXRef-File-...com.ibm.ws.container.service-1.0.81.jar-30a4298d6116e93d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-schemagen-2643abaf60e0638d OTHER SPDXRef-File-opt-ol-wlp-bin-tools-ws-schemagen.jar-2549f9f3b480549c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libsepol-26ec304cd5fb1c60 CONTAINS SPDXRef-File-usr-share-licenses-libsepol-COPYING-861f062dbead7042 +Relationship: SPDXRef-Package-rpm-libsepol-26ec304cd5fb1c60 CONTAINS SPDXRef-File-usr-lib64-libsepol.so.1-b0adcd91f9a2da70 +Relationship: SPDXRef-Package-rpm-libsepol-26ec304cd5fb1c60 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.session.jakarta-27113c1d16fd556f OTHER SPDXRef-File-...com.ibm.ws.session.jakarta-1.0.81.jar-e3244273a32f6cba +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-luseradd-0ecaddc71a29b93c +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-lib64-libuser.so.1.5.2-185719423f9af73a +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lchage-2162f4d2e57b0ab7 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-lib64-libuser-libuser-shadow.so-236b6a23e8719107 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-etc-libuser.conf-25cd23f43e125928 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-luserdel-2c4e473485168570 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-bin-lchsh-51753e1a6da3121e +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lnewusers-566050323d7c4642 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-...locale-en-GB-LC-MESSAGES-libuser.mo-5982164573bd37d7 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-bin-lchfn-635f75ad5ebd35bb +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lpasswd-753a5cd30265bdb2 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lid-7cedb312f5bd0d01 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-share-licenses-libuser-COPYING-8ecbe618f2b81a69 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-lib64-libuser-libuser-ldap.so-9e2e49ece79f5dce +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-lib64-libuser-libuser-files.so-a2af7276d240f86f +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lgroupadd-d3a353481522a4b0 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lusermod-d756e74179ada97e +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lgroupdel-ecf2d4b8f6b0dab4 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lgroupmod-fb3f2d0f21612c17 +Relationship: SPDXRef-Package-rpm-libreport-filesystem-279179905ddc5197 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libsigsegv-27b4d892ad295940 CONTAINS SPDXRef-File-usr-share-licenses-libsigsegv-COPYING-615cc83212ce4daa +Relationship: SPDXRef-Package-rpm-libsigsegv-27b4d892ad295940 CONTAINS SPDXRef-File-usr-lib64-libsigsegv.so.2.0.4-ac649c3c8a88e058 +Relationship: SPDXRef-Package-rpm-libsigsegv-27b4d892ad295940 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.objectweb.asm-27b96bbbf02de19c OTHER SPDXRef-File-...com.ibm.ws.org.objectweb.asm-1.0.81.jar-68705c0159056edd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.validation.3.0-27e05000e02b06ac OTHER SPDXRef-File-...io.openliberty.jakarta.validation.3.0-1.0.81.jar-00bcf0d9e36382cc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-xz-libs-284770d9f31d73af CONTAINS SPDXRef-File-usr-lib64-liblzma.so.5.2.4-1171f4f0625d4f8f +Relationship: SPDXRef-Package-rpm-xz-libs-284770d9f31d73af CONTAINS SPDXRef-File-usr-share-doc-xz-COPYING-a2630286ca6e8e0f +Relationship: SPDXRef-Package-rpm-xz-libs-284770d9f31d73af OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libffi-28487ffb13452c88 CONTAINS SPDXRef-File-usr-lib64-libffi.so.6.0.2-54964a8807c8d848 +Relationship: SPDXRef-Package-rpm-libffi-28487ffb13452c88 CONTAINS SPDXRef-File-usr-share-licenses-libffi-LICENSE-c33d49f7d1866c3a +Relationship: SPDXRef-Package-rpm-libffi-28487ffb13452c88 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-javaagent-286db1a1f1423963 OTHER SPDXRef-File-opt-ol-wlp-bin-tools-ws-javaagent.jar-cc78d3904194e910 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libblkid-2984dcc387f1f22a CONTAINS SPDXRef-File-usr-lib64-libblkid.so.1.1.0-3dce829bd26ca4a6 +Relationship: SPDXRef-Package-rpm-libblkid-2984dcc387f1f22a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-which-2a569468adbfddc1 CONTAINS SPDXRef-File-etc-profile.d-which2.csh-14d29d124494fdad +Relationship: SPDXRef-Package-rpm-which-2a569468adbfddc1 CONTAINS SPDXRef-File-etc-profile.d-which2.sh-5d10f15a57b32e67 +Relationship: SPDXRef-Package-rpm-which-2a569468adbfddc1 CONTAINS SPDXRef-File-usr-bin-which-bbc3d2f2014a88ed +Relationship: SPDXRef-Package-rpm-which-2a569468adbfddc1 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-which-2a569468adbfddc1 CONTAINS SPDXRef-File-usr-share-licenses-which-COPYING-f227d4a1c98a6181 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-facts---init--.py-0047b422d5bd2532 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---base.cpython-36.opt-1.pyc-006f6147dd0857c4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-scripts-rct.py-0071f07382791faf +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-00a9d4c170e10426 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---api.cpython-36.opt-1.pyc-015a4bd67a43d85f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subprocess-compat.cpython-36.pyc-0289633ddc9512a9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-subscription-manager.py-02f344850d4012d2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0395c6a8f8d39ebb +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...packageprofilelib.cpython-36.pyc-03ebc9391e5338ec +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-051c86ff845bac4a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-sat5to6.py-0574570e9a9ac181 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...dnf-plugins-subscription-manager.conf-05b964ac3d5fa1b7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---facts.cpython-36.pyc-0612d88cea68c62e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-plugins.py-06f8a02b3c5f7a24 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...base-object.cpython-36.opt-1.pyc-07074e238092ad3a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhn-migrate-classic-to-rhsm.cpython-36.pyc-0787c7274859b34c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-validity.py-08273bf4eaae8374 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-base-plugin.py-0872ea2cd9680f8d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmcertd-worker.cpython-36.pyc-08ff659057f5bcd9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...certdirectory.cpython-36.pyc-09445c2ec66ca56d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---config.cpython-36.pyc-0aeefbb2fd97891f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...SOURCES.txt-0bb58d96ebc6af20 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-kpatch.py-0bbbcf6df73be708 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...facts---pycache---base.cpython-36.pyc-0bd8f013f68fcecf +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager---init--.py-0c25f94c144ca453 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0e4e38eb6ea8522c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...facts---pycache---virt.cpython-36.pyc-0ea71c12e82c39e5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...unicode-width.cpython-36.opt-1.pyc-0ef32e2a68420933 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-0f97d4852ad2ac69 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0fbdb4e61ef65c5d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...redhat-branding.cpython-36.opt-1.pyc-1003f9e23de65ca7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rct-printing.py-10214f9bad60846e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---refresh.cpython-36.pyc-10722e5cff5743d0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-11b3efc733f00ba1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-libexec-rhsm-service-12b73d530c000089 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsm-service.cpython-36.pyc-13ec0a41a00fafb3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-managerlib.py-13ffefda7e7f7093 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---repofile.cpython-36.pyc-1511fb6eb770062c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-dbus---init--.py-15b5fdc781ac1f6a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...file-monitor.cpython-36.pyc-15ffd87e58599a5d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-cert-sorter.py-16365fa079b98336 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-consumer.py-17361911eaa6c2cf +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-rhsm-facts-service.py-180643e66df8bb79 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...isodate.cpython-36.opt-1.pyc-181a9865f7149874 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-refresh.py-18d578497eb0f621 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rct-manifest-commands.py-18ee3ac68980c797 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...certdirectory.cpython-36.opt-1.pyc-1a7547a53c0963a3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---products.cpython-36.pyc-1b0796678be7c1cc +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---config.cpython-36.pyc-1b4cb13f863d66e3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib---init--.py-1ca1b18a6eb8a387 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...syspurpose.cpython-36.opt-1.pyc-1ce561671cac9149 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...async-utils.cpython-36.opt-1.pyc-1d10df9eb3ae8ab7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-repolib.py-1d136a6e2deeba2b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---lock.cpython-36.pyc-1d518288e7ac39ea +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-cpuinfo.py-1dc7728868105b76 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1e8c733397d3acef +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-release.py-1e99a6beb66f4395 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...healinglib.cpython-36.opt-1.pyc-1eb5ce2247c2938c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cloud-facts.cpython-36.pyc-1f5d26ec8bdd054c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...managerlib.cpython-36.opt-1.pyc-1fe09eff23045593 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...debug-commands.cpython-36.pyc-1fe66f8419d5402b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-rhsm-service.py-2102c98d4203bd59 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...completions-subscription-manager-21308883461a7452 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...repolib.cpython-36.opt-1.pyc-21b7c1aaf4d863e3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...branding-redhat-branding.py-22280c5befe4c32b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...consumer.cpython-36.opt-1.pyc-237a65089c75f5de +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...consumer.cpython-36.opt-1.pyc-23d41ced3bb35cf5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---all.cpython-36.opt-1.pyc-24582d68329fd7ca +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-hwprobe.py-24b252969bdd0062 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-healinglib.py-25bc94d817160d56 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-compat-subprocess-compat.py-25d33fa528bf485b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-entbranding.py-26f6d0b9bbba5465 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-280c4d68292a8b17 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---insights.cpython-36.pyc-28bf338555a787f0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---facts.cpython-36.opt-1.pyc-28c3e56d3d3f75d0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...firmware-info.cpython-36.pyc-29892b931b6c28cf +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-injectioninit.py-2aff206f55e1710a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...content-action-client.py-2b19dd8c87191dae +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...commands.cpython-36.opt-1.pyc-2b44df32cacbe3e5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---reasons.cpython-36.pyc-2be39de054f8e22f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...lib-systemd-system-rhsmcertd.service-2c94802b4b674504 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...action-client.cpython-36.opt-1.pyc-2cdb70453e7a2085 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...dbus---pycache---util.cpython-36.pyc-2df2f8e588452125 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...factlib.cpython-36.opt-1.pyc-2f3454b57fff8927 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-rhn-migrate-classic-to-rhsm.py-2f5b6c1ae2cf30df +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects---init--.py-2f7055bd65d8ed7d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-virt.py-2f782d18ac071c04 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cpuinfo.cpython-36.opt-1.pyc-2fa88b2966e4a20a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---ga-gtk3.cpython-36.pyc-2fd029ae46d26445 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...managercli.cpython-36.opt-1.pyc-30372b844810701b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-30a0f7eee95fa48d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.pyc-31507d9b9358733e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...base-action-client.cpython-36.opt-1.pyc-3188ea90dbc086a0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-exceptions.py-32955e1920ff2779 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...service-wrapper.cpython-36.pyc-32d3bf18b2946dde +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3318f5a9f2808e87 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...host-collector.cpython-36.opt-1.pyc-33df45ea1c9b4a19 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-etc-rhsm-rhsm.conf-33ee4e49801a8939 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---consumer.cpython-36.pyc-3419ecd31d1d6385 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---syspurpose.cpython-36.pyc-34b0b62cda4d916c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-34ea6e7e87928257 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---jsonwrapper.cpython-36.pyc-35b146ea416aeac4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...branding---init--.py-36c65341752e0eaa +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---injection.cpython-36.pyc-36f3339419203a70 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...content-action-client.cpython-36.pyc-36f6c95c79fb302c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...dependency-links.txt-379d0970069ebe1c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-397c6176322e5512 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-main.py-3afafb1aa1f3f7c8 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-facts-constants.py-3b500c04541a57ed +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...manifest-commands.cpython-36.pyc-3bbcbc87c82378b2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cache.cpython-36.opt-1.pyc-3c71a2616316392e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-3d2ec590cfbd1980 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-cache.py-3d9c1354cd5901a5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---attach.cpython-36.pyc-3e4c60f2e8734d5a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-compat---init--.py-3eccd932267e9421 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...unicode-width.cpython-36.pyc-3f0a70cacd650230 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3f93cf37a30614f0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsm-debug---init--.py-3fcbd5443c7f8fc6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...installedproductslib.py-40f78aa6fcafc114 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...bash-completion-completions-rhsmcertd-40ff3eae3072bf74 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-utils.py-41367cb87426cc0e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-sbin-subscription-manager-413bef9dc01e328e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-bin-rhsmcertd-41abed6856a450d6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-printing-utils.py-41c0c8181316afbd +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-constants.py-431cdec7050ff25d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---factlib.cpython-36.pyc-43ad9984140da8aa +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...unregister.cpython-36.opt-1.pyc-4489462acc30aef4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...identitycertlib.cpython-36.pyc-45cd675ebcbc73cd +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...collection.cpython-36.opt-1.pyc-46c59428a4dddead +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-etc-pam.d-subscription-manager-4710ab729ebf1497 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-syspurpose.py-47169e0fe3a89036 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...ga-loader.cpython-36.opt-1.pyc-474e11414355265f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-i18n.py-486b057bc62ef9df +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-lock.py-48a035f7c03a45d5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---lock.cpython-36.opt-1.pyc-48b3ddc761372864 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-listing.py-48b675f6f36ea5fc +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-gui.cpython-36.pyc-494ecbc8fa8063a3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...packageprofilelib.py-4a0430d918037391 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-unregister.py-4b54bd7974dd09c3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4d22e352e1974d50 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-facts-client.py-4e42ad7ba5f3aaa2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-cli.py-4e5f46db0b6f9a0c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---identity.cpython-36.pyc-4f62cd6e64060ea0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---listing.cpython-36.pyc-4fe6a5750a709eb5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---rhsm-debug.cpython-36.pyc-51b223adebc5a696 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...package-profile-upload.cpython-36.opt-1.pyc-52bd7711d00ee52a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rct---pycache---version.cpython-36.pyc-540c552565eb007e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...syspurposelib.cpython-36.pyc-547ecd5af85f2782 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-etc-dnf-plugins-product-id.conf-54bb6445b2fad991 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5501e1d157fec60f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...actions-com.redhat.RHSM1.Facts.policy-55b55ce3a9cfe817 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cp-provider.cpython-36.pyc-5713eede6635d8c2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhn-migrate-classic-to-rhsm-579b9abd50ab220c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...repofile.cpython-36.opt-1.pyc-58ca3014af8e77ae +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...validity.cpython-36.opt-1.pyc-59602a9532342e7a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...lib-systemd-system-rhsm-facts.service-5984ef7844ded846 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...base-plugin.cpython-36.opt-1.pyc-5b3ade2d2778f468 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-5b81bef3d2520328 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5b89bf3798a50a71 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-5c5be15c91500a69 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-api-repos.py-5cda6b951de64e38 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-entitlement.py-5cf0caa2a913114f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...debug-commands.cpython-36.opt-1.pyc-5cf471762f8d8973 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---api.cpython-36.pyc-5cf6632fd00bca3e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---rhelproduct.cpython-36.pyc-5cf813f46ef3db1f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...syspurposelib.cpython-36.opt-1.pyc-5d9e8faff2b65750 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-candlepin---init--.py-5f2ffb72232b713d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...custom.cpython-36.opt-1.pyc-5f561bcd3d1498c4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---products.cpython-36.pyc-609071b11c4e93bf +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cpuinfo.cpython-36.pyc-61957209304bc493 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-factlib.py-61a68cb908305f1b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-dbus-util.py-61f1ddff176dc560 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-62e6b8f9bf6a7398 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...attach.cpython-36.opt-1.pyc-63526e7a0b72793e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-dbus-server.py-636fc8fecd2e507c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-64a065ad0b23d9f3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cpuinfo.cpython-36.opt-1.pyc-64bc052f5e0c1842 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---release.cpython-36.pyc-64f067429ffa36bf +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...printing.cpython-36.opt-1.pyc-6539e8abb7aee4a5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---certlib.cpython-36.pyc-65d89bdc30d0d628 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...file-monitor.cpython-36.opt-1.pyc-670ab17ec3e53e97 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-67673167a92260b2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-facts-base.py-68a63769f524c68a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...i18n-argparse.cpython-36.opt-1.pyc-6b5f13a79c2ded79 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-6c6c7f977b3269b2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...printing-utils.cpython-36.opt-1.pyc-6de29c7e27124337 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-custom.py-6e01cc68d29b34ec +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---hwprobe.cpython-36.pyc-6f04c5a3eb58c565 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhn-migrate-classic-to-rhsm.cpython-36.opt-1.pyc-6f61be425ec76520 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...products.cpython-36.opt-1.pyc-7047e830799188a1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...register.cpython-36.opt-1.pyc-70caa0f18234264e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-productid.py-70eb3bda758c8d37 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-products.py-70f8633ac32db2d3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---client.cpython-36.pyc-715e136b390fc69b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...productid.cpython-36.opt-1.pyc-71b8b71193b30c06 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-72020bcc4b9a2c94 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-7229453558ea3dc6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...attach.cpython-36.opt-1.pyc-724e54f76a4526c9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 OTHER SPDXRef-Package-python-subscription-manager-7276605e595d4096 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...release.cpython-36.opt-1.pyc-72d05fdf1e08199f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-certdirectory.py-72d39653d075928c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...injectioninit.cpython-36.opt-1.pyc-730f29490945a7d9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhelentbranding.cpython-36.opt-1.pyc-73fa210d75f2b8dd +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services---init--.py-746dc23d2a70c14d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...system.d-com.redhat.RHSM1.Facts.conf-75131ac648ad9e00 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---productid.cpython-36.pyc-75239cad5e938319 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-facts-cloud-facts.py-75d7c3a54a459b13 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...constants.cpython-36.opt-1.pyc-769da245044daffb +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...com.redhat.RHSM1.Facts.service-76b8bd02481adc83 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...entitlement.cpython-36.opt-1.pyc-7759caf41624230c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-exceptions.py-779313b265ca4802 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...server.cpython-36.opt-1.pyc-779a47a0e07d7f44 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-791d567dca2dd2b7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...facts---pycache---all.cpython-36.pyc-7979e632a139555d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-7a046842b2d1a443 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...installedproductslib.cpython-36.opt-1.pyc-7b8b5cbe8813bbe7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---managerlib.cpython-36.pyc-7bc8bddaff601f05 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-etc-yum.repos.d-redhat.repo-7c883101633cb685 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...jsonwrapper.cpython-36.opt-1.pyc-7c9c220e46510bf8 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-rhsmcertd-worker.py-7cd271e1d130f025 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...requires.txt-7ce0fd65fc3e83ab +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-model---init--.py-7cfdbd2673666531 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-cp-provider.py-7d19733fa6adeeda +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...injectioninit.cpython-36.pyc-7de475d05f41e576 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-facts-insights.py-7e2853d26f834e65 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-unicode-width.py-7e66c40f66e3b07f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---register.cpython-36.pyc-7ed6ccad31c01225 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...constants.cpython-36.opt-1.pyc-7f122a197a99fac9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-7f7a3dfed1d5be99 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager.cpython-36.pyc-7fc024b8a04767ed +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-801dab2ad7ca448f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---ent-cert.cpython-36.pyc-82c3eb260c1cc0a5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---syspurpose.cpython-36.pyc-82e93f7b796fe509 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---entitlement.cpython-36.pyc-83f359963a36c5e1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-entitlement.py-844d3186e2904bb0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rct---init--.py-85f13e3d14c6f8f8 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---printing.cpython-36.pyc-86a3af916f40ced3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-isodate.py-870d0c4bf3130bf9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---dbus-utils.cpython-36.pyc-875d59c6e793d50a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-injection.py-88694d235281709e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-config.py-88834236fd3575cf +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-candlepin-api.py-895f6ac94a5f2241 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...com.redhat.RHSM1.service-896f622ce465a1e6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---ga-loader.cpython-36.pyc-89ba5bcb32221be7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...identity.cpython-36.opt-1.pyc-89e064967e6a8718 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts---init--.py-8a52f77df222d771 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---commands.cpython-36.pyc-8afd05e67c14c2e6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...installedproductslib.cpython-36.pyc-8b15e0c415873ba8 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...client.cpython-36.opt-1.pyc-8d78d7e1e89f9cb1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cert-commands.cpython-36.pyc-8dd005cce22b25ff +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---unregister.cpython-36.pyc-8f3d5a5f101c30b2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsm-debug-cli.py-8f4c4e2995a920f1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-attach.py-903e42ec4bad746b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-subscription-manager-gui.py-90eea1f9e61fb49a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...certlib.cpython-36.opt-1.pyc-91147e2f782516a1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-certlib.py-914501d72efea9dc +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9206d9df3b36e7e4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.pyc-92cb55c36b7fbc29 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---async-utils.cpython-36.pyc-92cc5d21ab5eceb6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rct-cert-commands.py-937f090a2eb521a4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-action-client.py-93a33d2ee640ab9b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhelentbranding.py-93f779744ed8da78 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---entbranding.cpython-36.pyc-942517f2a0177473 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...tmpfiles.d-subscription-manager.conf-9468a353bfc942ef +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-register.py-9470a73ed5f20dc8 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---constants.cpython-36.pyc-94a5f49121fe66ea +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-94a999b108608791 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-facts-host-collector.py-94bb70f3c0e98e3c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---collector.cpython-36.pyc-95303a50700ed05f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-reasons.py-95429fa2b2869687 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---isodate.cpython-36.pyc-95b2db07c87c45b8 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhelentbranding.cpython-36.pyc-9623069f5ac42d11 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...i18n-argparse.cpython-36.pyc-970387e4b2c51d52 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...syspurpose.cpython-36.opt-1.pyc-97161ed176fcc6b1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---repolib.cpython-36.pyc-976f3a7b0cc2b04a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...sat5to6.cpython-36.opt-1.pyc-98af6ae139f62d58 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...python3.6-site-packages-rct-cli.py-9903a351ff55f47b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...register.cpython-36.opt-1.pyc-9a069c6a427e7189 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rct-commands.py-9e0ca07b091f93d3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---i18n.cpython-36.opt-1.pyc-9e58e8a3a854519d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-etc-logrotate.d-subscription-manager-9f20476ba4dad8b3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...package-profile-upload.cpython-36.pyc-9f81a097f045b35f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...packageprofilelib.cpython-36.opt-1.pyc-a0034c5dc2a8d1af +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...top-level.txt-a01aee50d0a8ec7f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...entbranding.cpython-36.opt-1.pyc-a118ae7493a783c8 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-gui.cpython-36.opt-1.pyc-a183abdf81ad4ac5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-libexec-rhsmcertd-worker-a25534fa34908b06 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmcertd-worker.cpython-36.opt-1.pyc-a26c1e76d1eff394 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsm-facts-service.cpython-36.opt-1.pyc-a2b44073a80564c3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a2fdee8d133d6a61 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subprocess-compat.cpython-36.opt-1.pyc-a35989dc2e012a1e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-dmiinfo.py-a3a43fdd567524f2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-a3ad8c5af0b398a0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...identitycertlib.py-a3c629d2f8052cce +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---healinglib.cpython-36.pyc-a4c2aa4a1221a10e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-identity.py-a4d9db194cee2f34 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-i18n-argparse.py-a50be5ebef638562 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-a628f578ce14207c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---base-object.cpython-36.pyc-a6f493eb8ed7c32c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---constants.cpython-36.pyc-a7d5a36c7a4dd617 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-consumer.py-a7f58e151d379b5f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...entry-points.txt-a859889535112d8d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsm-debug-debug-commands.py-a8a3ab6a478d7eef +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cert-commands.cpython-36.opt-1.pyc-a934f62dfd28ebed +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---validity.cpython-36.pyc-a98741a21a5c3e7b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...manifest-commands.cpython-36.opt-1.pyc-a9adfbd42fdae29e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-async-utils.py-a9c1940e8a90a959 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---dmiinfo.cpython-36.pyc-a9ddf08816883be7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-overrides.py-aa8be5e35d503a1e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---repos.cpython-36.opt-1.pyc-aab253cb69db2ffd +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-config.py-ac2895ac11ec4fb4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...api---pycache---repos.cpython-36.pyc-ad37d452f1f8f4a1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-repofile.py-ad489cffe026ecd7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-managercli.py-ad6112292d1f4720 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-af11075ffe4f4bf0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-file-monitor.py-b17a556420f5482d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.pyc-b195fcac439ef9fb +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...ga-impls-ga-gtk3.py-b1e9a4ff37d62c6c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-rhelproduct.py-b3a32a9b3a3d1b65 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-version.py-b4207f60f9408492 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...collector.cpython-36.opt-1.pyc-b5fbdafc5548ffe3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...kpatch.cpython-36.opt-1.pyc-b65c79af25c74b9b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-facts---init--.py-b7ce3066101bc2d6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cp-provider.cpython-36.opt-1.pyc-b88c20b7a6ffe6f4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---entitlement.cpython-36.pyc-b915dbd2cfb05a43 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...dmiinfo.cpython-36.opt-1.pyc-ba710e9ce328a13e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...insights.cpython-36.opt-1.pyc-baa82d6233f540a3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---unregister.cpython-36.pyc-babf2f00c98fb1a4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---kpatch.cpython-36.pyc-bb8298191049386e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cert-sorter.cpython-36.pyc-bce0ac85293257e9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...reasons.cpython-36.opt-1.pyc-bdfbefda19d42459 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...share-bash-completion-completions-rct-c01267cebf010579 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsm-service.cpython-36.opt-1.pyc-c048e9203f30eed7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-attach.py-c060d31cf163a5f3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---custom.cpython-36.pyc-c11473d25cf42341 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...refresh.cpython-36.opt-1.pyc-c187c7c5813d6836 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...ent-cert.cpython-36.opt-1.pyc-c40c30180451b9df +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c52aabcd8aed47e6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-all.py-c5a3deacab657085 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...unregister.cpython-36.opt-1.pyc-c5b9f2bd23779761 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-api---init--.py-c6650269d36fe020 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...console.apps-subscription-manager-c79a3e544afff38d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...identitycertlib.cpython-36.opt-1.pyc-c817683025451839 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cpuinfo.cpython-36.pyc-c91403c0707df374 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c91a3307660ff4ef +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...products.cpython-36.opt-1.pyc-c94607c60b71e58b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---managercli.cpython-36.pyc-c956b1c425cad418 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---i18n.cpython-36.pyc-c98fb32731ac9426 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-bin-rct-cb405c6a1c4083f5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...python3.6-site-packages-rct-version.py-cc2b927d445b1b7c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsm-facts-service.cpython-36.pyc-ce32cf8be204e388 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...base-action-client.cpython-36.pyc-ce61d1001c87f6ec +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-dbus-utils.py-cee386adc41caac1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-syspurpose.py-cef7d8f7f8c5a34f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-ga-loader.py-cf08729147545744 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-cpuinfo.py-d07aad3916a1b747 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cleanup.cpython-36.pyc-d0f57a3b93fc764d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...hwprobe.cpython-36.opt-1.pyc-d17d03ba2dddda50 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-jsonwrapper.py-d1a0a1f174c1cad2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-facts-firmware-info.py-d26b1f446b726877 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d29a23ca2810abd7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...entcertlib.cpython-36.opt-1.pyc-d328993abca86549 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-facts.py-d35a2a3b38417599 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cleanup.cpython-36.opt-1.pyc-d3bb6ef11a72b48d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...injection.cpython-36.opt-1.pyc-d5708b9e90783368 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---plugins.cpython-36.pyc-d6af94093366c622 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cache.cpython-36.pyc-d6b9726a1e73acf0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---virt.cpython-36.opt-1.pyc-d7af69f90cc5c479 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...listing.cpython-36.opt-1.pyc-d83f5b19b3e50dbe +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...entitlement.cpython-36.opt-1.pyc-d874ce322c03b6bc +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...content-action-client.cpython-36.opt-1.pyc-d8f46e36e70b9e20 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cert-sorter.cpython-36.opt-1.pyc-d95cb9747208aa5b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...ga-impls---init--.py-d99aa0b6869f5020 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...PKG-INFO-d9e8b274b2c0eda7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d9edf31306aa5fc6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...action-client.cpython-36.pyc-da986cffcb45f437 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-dc492f434bb8b38b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...redhat-branding.cpython-36.pyc-ddf38d689b02016c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-register.py-de4681094d70267f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...dbus---pycache---server.cpython-36.pyc-de57585b43802b89 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts---pycache---rct.cpython-36.pyc-df5b7e8071eadffe +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...printing-utils.cpython-36.pyc-e00e12c1b9111e8f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager.cpython-36.opt-1.pyc-e071192b03f358e5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e08ea33543746d8a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-model-ent-cert.py-e09663414796cc53 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-exceptions.py-e26c00113c72e066 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsm-debug.cpython-36.opt-1.pyc-e38f31f81b6628f1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e4c62cfa29f57324 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-e5017e07aae456d9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-etc-rhsm-logging.conf-e6dc5e722b02acec +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---entcertlib.cpython-36.pyc-e73cfd46fdd23057 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---attach.cpython-36.pyc-e7fd2728d97cfb03 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...ga-gtk3.cpython-36.opt-1.pyc-e82fabb28224bf5d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e836bcad45c0759d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---overrides.cpython-36.pyc-e8c03036a9d7d527 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---collection.cpython-36.pyc-e9d8ce82384d322e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...base-action-client.py-ea0590f75013f59d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-eacae27c4b8a73e6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---sat5to6.cpython-36.pyc-ec8192f694fffda5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cloud-facts.cpython-36.opt-1.pyc-ecbf29e81ac521f0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-rhsm-debug.py-eda076a202a4a869 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---version.cpython-36.pyc-ee4276565912c304 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-bin-rhsm-debug-ee7fab936296c48c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...host-collector.cpython-36.pyc-f09fb466278c87a4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-bin-consolehelper-f0cf2a189ff3bb74 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---base-plugin.cpython-36.pyc-f0f33f5dccd8fab1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-facts-collection.py-f2f4daa1b064e5ad +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...actions-com.redhat.RHSM1.policy-f3bc1d932f655153 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---consumer.cpython-36.pyc-f4f5680fabfbe81e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-service-wrapper.py-f551eb6de8585d7c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-facts-collector.py-f6302d2264ff079a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.pyc-f66c901ace0d476c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhelproduct.cpython-36.opt-1.pyc-f7454225aa29b2d7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-unregister.py-f76cbfbb9e1c3009 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-entcertlib.py-f83f6999df8f91a0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-libexec-rhsm-facts-service-f85ae7c2a0b61a7a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---register.cpython-36.pyc-f86e2fda304d7c0e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-base-object.py-fa1e0f10d949c898 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...bash-completion-completions-rhsm-debug-fa28bcf296e48e99 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...dbus-utils.cpython-36.opt-1.pyc-fa86baf384b7be37 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rct---pycache---cli.cpython-36.pyc-faac9dba8ddd425b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-lib-systemd-system-rhsm.service-facdebd80012518b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...overrides.cpython-36.opt-1.pyc-fad383de793af3fe +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---rct.cpython-36.opt-1.pyc-fafae58617363932 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...service-wrapper.cpython-36.opt-1.pyc-fb44a6ad0b9b90a9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-cleanup.py-fb4960d89460175b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-fc42c6df844b1200 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-fd5d76d89b651662 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-products.py-fe720d912c405170 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-package-profile-upload.py-fee00451ce123d99 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...firmware-info.cpython-36.opt-1.pyc-ff0ae1a601c5cff7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...plugins.cpython-36.opt-1.pyc-ff2e26cc368719f3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...dbus-1-system.d-com.redhat.RHSM1.conf-ff740cbacd5e792e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-ff95a23337c1ffeb +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...plugin---init--.py-ff981de0798146fb +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-ffc2c3fa72149155 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-syspurposelib.py-ffc6fb59f6408e06 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.sessionstats-2a94d6299aad479a OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.sessionstats-1.0.81.jar-2069e7d0cc7ed243 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.mail.2.1-2ab37d9ff119e432 OTHER SPDXRef-File-...io.openliberty.jakarta.mail.2.1-1.0.81.jar-a9b4dd70c1247053 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-curl-2ac75dd8cdd82d1d CONTAINS SPDXRef-File-usr-bin-curl-952ce60cd528f93b +Relationship: SPDXRef-Package-rpm-curl-2ac75dd8cdd82d1d CONTAINS SPDXRef-File-usr-share-zsh-site-functions--curl-b56b385ca9f3c90c +Relationship: SPDXRef-Package-rpm-curl-2ac75dd8cdd82d1d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libidn2-2ad5f614b681561b CONTAINS SPDXRef-File-...share-licenses-libidn2-COPYING.unicode-77f5cdb623a4912c +Relationship: SPDXRef-Package-rpm-libidn2-2ad5f614b681561b CONTAINS SPDXRef-File-usr-lib64-libidn2.so.0.3.6-8fb1776496cda610 +Relationship: SPDXRef-Package-rpm-libidn2-2ad5f614b681561b CONTAINS SPDXRef-File-usr-share-licenses-libidn2-COPYINGv2-a59e496b3569301b +Relationship: SPDXRef-Package-rpm-libidn2-2ad5f614b681561b CONTAINS SPDXRef-File-...licenses-libidn2-COPYING.LESSERv3-c636c58590ba3c29 +Relationship: SPDXRef-Package-rpm-libidn2-2ad5f614b681561b OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libidn2-2ad5f614b681561b CONTAINS SPDXRef-File-usr-share-licenses-libidn2-COPYING-eea0f276ab7de75c +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.product.utility.productutil-2bb22c41f2f6d52f OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-productutil.jar-ed699c86ff9a98ec +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.quickstart-2bd4ccbf2bffd031 OTHER SPDXRef-File-...com.ibm.ws.security.quickstart-1.0.81.jar-48af24264190fe3f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.war.jakarta-2c425a89cc925a53 OTHER SPDXRef-File-...com.ibm.ws.app.manager.war.jakarta-1.0.81.jar-6fb5a10a31b0d48f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-auditreader-2cb4d0d746cdae86 OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-auditreader.jar-dac94bd442e85e0b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-pyinotify-2cc0497e30b46d84 OTHER SPDXRef-File-...PKG-INFO-bf244285e2e636bf +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.security-2d6fc057b2b6172c OTHER SPDXRef-File-...com.ibm.websphere.security-1.1.81.jar-b1f2f0fb0c6dadfc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v33-00dbb75140f7ce52 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-c-cygwin-022a2d3fb19de022 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-031104521fc21fc9 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-new-0417a7571d361596 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-unicode-0482e06816801320 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-tabset-std-0601e56c179ca54c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-n-nxterm-064f0f9e87ebde6a +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-color-08019ecd06dd4c1c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-t-teraterm2.3-0968991a09bb26a5 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-p-putty-256color-0ab5338e56fdb9b0 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v44-0ab95e08bdd5daeb +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-0bb70b801a1bd9a5 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-t-teraterm-0bf4077a32ccd5e4 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-1005-0fa1916a0103d64e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-st-16color-127fe09de2553da4 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.konsole-12b72cddb695e4b5 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vwmterm-1429572ecdc92212 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v32-14b658d292d717f6 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-m-mlterm-18339fe4bfd46847 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-256color-187cb5843387b086 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...terminfo-s-screen.mlterm-256color-1bbcae5aa21e4da1 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...share-licenses-ncurses-base-COPYING-1c153009ab95459a +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-h-hurd-1dafc1246000f513 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-hp-1db10c90c941438c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-m-mach-gnu-23b60373da2ddc76 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xi-24da9a3a06420e0c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...share-terminfo-s-screen.xterm-xfree86-2a44489eaa479241 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-1006-2a61970a223ddf68 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-bold-2b9229c0dfc61890 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...terminfo-s-screen.konsole-256color-2c2a28adc513956a +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.mlterm-2c662d5871b64cba +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-w-wsvt25m-2d377b7a9a913722 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-k-konsole-2e3bf270d499cd73 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-g-gnome-256color-326d6d8cf37de313 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-sco-34496067479fea31 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-e-eterm-color-3467776397234902 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.mrxvt-3670b65f3c7fb009 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-stterm-256color-37c4bb7ab75deffd +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-tabset-stdcrt-389c97d54a3f7d15 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-vt220-3a3579d21756beaf +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-e-eterm-3af9134a11d37f70 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-st-256color-411fc61bbb5c0ff6 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vt100-am-42f5470e95dc5d4b +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.Eterm-49f222f62b2ef70c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-r6-4b80715f75cae38b +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen-16color-4e170ee94a866841 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-x11hilite-50ab9485cf504537 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-m-mrxvt-563ec1402711dcc8 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-c-cons25-56bf5b4074398af9 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.gnome-56cee7543a6c70ff +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.xterm-new-58a0975089c93016 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-noapp-5a7ecb53116643a5 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...share-terminfo-s-screen.putty-256color-5b9eb5d82d6833c0 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-p-putty-5bfff9a23bc7a9e8 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-E-Eterm-5c36e55895fda695 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-a-ansis-5cb4af1eda171299 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-g-gnome-5cd1dc4992e2f234 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-88color-5f774efa70be7727 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v40-62241a46a0cbe63e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-j-jfbterm-6251c13e778bbfd3 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v333-633540a6e67e157f +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-old-64eaa13dc582e538 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.putty-65d58180cb0744ba +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.linux-66b5b28e1b45745e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen-256color-66f98a83c9a99058 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-stterm-67262e90f89870ba +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-E-Eterm-color-6a8e76d95c493723 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-8bit-6afbdb5c6c58208d +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.vte-6dde0eff7e86d579 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-d-dumb-6f741566fce62cd4 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...share-terminfo-r-rxvt-cygwin-native-7673c83047eb0754 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-n-nsterm-7824da4a5e60ba42 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-basic-7aee846ff92d1953 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...share-terminfo-s-screen.xterm-256color-7b1bb12b6d43fa2e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vt100-7bf06233cf19aa13 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-sun1-7ed7c3941670a596 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vt102-8015889519693330 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.teraterm-8027572b48475e7e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-E-Eterm-256color-8079f7537cc4f92e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-pcolor-8654f4396a5f6ece +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vte-87928dcd7e1b1045 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-xpm-8a8a1155677934c4 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-stterm-16color-8d14d4ab0c9a90c6 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-sun-8f8b76a51516fe71 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-1002-90692680f3c921d7 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vt200-920308582bac7479 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xfree86-946184bb85d598d4 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-x10mouse-981ac444ee600e8a +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-tabset-vt100-98fabed2880a6a55 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-st-9c169a3a80293007 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-k-konsole-256color-9cb14e3887ea7885 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-a-ansi80x25-a0da2d34e983faec +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-w-wsvt25-a2e8952006879bf1 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-k-kon-a2f403d86e0e70f3 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xfce-a7b752d5bade4480 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-direct-a7b7c0f952d600ac +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...share-terminfo-s-screen.vte-256color-a891f8b91e6c5bad +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-1003-a8d12247bcbab41d +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-basic-a96dcc7e7b036734 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vte-256color-a9b4842e40b9ffba +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-color-aa7719b5d5385e99 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-m-mach-gnu-color-acc6dd925fe347bd +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-t-tmux-af248ea2538319fe +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vt52-b28c885ce811647d +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-sun2-b29cfd74c1a828d9 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-cygwin-b38aea14808b4fb2 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vt100-nav-b5e1d2a5bad09380 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-a-ansi-b74077d2d9e47a6d +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-A-Apple-Terminal-bf0c97d738b05b6d +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-k-kon2-c1e55e5e77d2b981 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-r5-c34c63e65da2f03b +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-256color-c4e60500c8bd1a5e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.xterm-r6-c9ed3174e165a54c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-24-cbb9ef2d95e96f0e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-m-mach-color-cc891254d2e02b14 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-l-linux-cec34df49a89dc86 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-x11mouse-cfddef43a9317759 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-m-mach-bold-d0591ebb3267c49c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-16color-d4b8586fab01ea26 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-m-mach-d56e39d5b5876fa4 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-vt52-d9eacb9fd5fcfde1 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-direct2-db47ed5d56527a43 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v43-ddadf4dd8b4d645b +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vt220-ddcab038b98f0ed4 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen-dde79a383a09d776 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-16color-de8f1c0dd96f4e47 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-tabset-vt300-dfc562df8c9afa8a +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-E-Eterm-88color-e088641be4c7de77 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-t-tmux-256color-e19e872323b94513 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-a-aterm-e4f83ba0f1f0962c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterms-e86c468ba26eb2e9 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vs100-e87a3f4d03be548b +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.rxvt-eef34bb2e95fe2ad +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-nic-ef26ce3199c699ac +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-88color-f03a1cbb12729bb1 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-p-pcansi-f6098fe27af5542f +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-b-bterm-f8cdf9d727319f67 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-utf8-fb85e3b03682e11f +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-sun-fd5c82e8b5b0457b +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.glassfish.hk2.osgi-resource-locator-2dd36d13eb338803 OTHER SPDXRef-File-...io.openliberty.org.glassfish.hk2.osgi-resource-locator-1.0.81.jar-45bf0b29511bcec5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...bash-completion-completions-syspurpose-04c72526b0376275 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.pyc-1ea30d4df51e6b96 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...PKG-INFO-26f5dca0b03dd114 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...site-packages-syspurpose---init--.py-31cd169f5e08bef9 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-etc-rhsm-syspurpose-valid-fields.json-370e95071e132f85 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-3a7a37b46084b2d2 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4adcd7f1a48e8c12 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-4c9ceb2cdf20187e +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-4ed87de7e93ab353 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---files.cpython-36.pyc-538ab6e7bca32cf2 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.pyc-598aecd0ec5f8a94 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...site-packages-syspurpose-cli.py-6189f593eb0c22fa +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---files.cpython-36.opt-1.pyc-71d4cdc34dd29f94 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...entry-points.txt-87ab44d2b959a6dd +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.pyc-93a7f5a8c292ff86 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...top-level.txt-99a62eb9d87042c4 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...SOURCES.txt-a77c6d35cc0debc8 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-usr-sbin-syspurpose-b40cfa1da3b7ad47 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---i18n.cpython-36.pyc-c16eba93720c04d6 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 OTHER SPDXRef-Package-python-syspurpose-c2c79d0712654121 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...site-packages-syspurpose-files.py-cfc0a00ca4348a64 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d63c204f605bf103 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...site-packages-syspurpose-i18n.py-dec7076f1952259c +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...dependency-links.txt-decf0b32a6cb7618 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---i18n.cpython-36.opt-1.pyc-e76e5bf39c5ecc57 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...site-packages-syspurpose-utils.py-ed3d1e293a2470c6 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...site-packages-syspurpose-main.py-f38f10ebc17098e2 +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.enterpriseBeans.4.0-2e6d7754bdcf7906 OTHER SPDXRef-File-...io.openliberty.jakarta.enterpriseBeans.4.0-1.0.81.jar-4bac58477431d801 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-...ethtool-0.14-py3.6.egg-info-PKG-INFO-2738b5642c2848f5 +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 OTHER SPDXRef-Package-python-ethtool-47e0eb55544e9981 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-...SOURCES.txt-4a1f3f1d66efdd6d +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-...ethtool.cpython-36m-x86-64-linux-gnu.so-52f4ae7d1d842047 +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-...top-level.txt-63568b39c201fdcd +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-...dependency-links.txt-6c7bd81899114741 +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-usr-sbin-pethtool-855a4e8d0dc38ed6 +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-...share-licenses-python3-ethtool-COPYING-92ec5d58bd3c8909 +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-usr-sbin-pifconfig-d11a72bb2dc6e8a9 +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f CONTAINS SPDXRef-File-usr-bin-trust-0b067f094056a8d5 +Relationship: SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f CONTAINS SPDXRef-File-...bash-completion-completions-trust-344d6e12a0ee7993 +Relationship: SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f CONTAINS SPDXRef-File-...libexec-p11-kit-trust-extract-compat-b701e74a00c19bd6 +Relationship: SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f CONTAINS SPDXRef-File-...p11-kit-modules-p11-kit-trust.module-be11d4f39c846246 +Relationship: SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f CONTAINS SPDXRef-File-usr-lib64-pkcs11-p11-kit-trust.so-c21a87826612dd6b +Relationship: SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.apache.commons.logging-31c3e284ec109962 OTHER SPDXRef-File-...io.openliberty.org.apache.commons.logging-1.2.81.jar-f755f06cf7d38ddb +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact.zip-327efb05b0ed769a OTHER SPDXRef-File-...lib-com.ibm.ws.artifact.zip-1.0.81.jar-518251f252a041c3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.containerServices-32bf4b13c197596c OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.containerServices-4.0.81.jar-1505b09ac51969ee +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.security-338956fc7ac5ebb9 OTHER SPDXRef-File-...ibm-io.openliberty.security-1.3.81.jar-51798608285d4446 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-setuptools-wheel-33a76a121de2018e CONTAINS SPDXRef-File-...setuptools-39.2.0-py2.py3-none-any.whl-5a892c898d067ef6 +Relationship: SPDXRef-Package-rpm-python3-setuptools-wheel-33a76a121de2018e CONTAINS SPDXRef-File-...python3-setuptools-wheel-LICENSE-7c82c126a1a287d1 +Relationship: SPDXRef-Package-rpm-python3-setuptools-wheel-33a76a121de2018e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-...share-licenses-dnf-PACKAGE-LICENSING-1e6a857e58f598cf +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-usr-share-licenses-dnf-COPYING-2b04a7f24c4aa6ff +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-...libreport-events.d-collect-dnf.conf-3f01ae444977b153 +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-etc-dnf-dnf.conf-5415cd13736cacdc +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-etc-logrotate.d-dnf-8ca272940c14476e +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-var-log-hawkey.log-ac57c936cbd2e4c2 +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-var-log-dnf.librepo.log-ad6b7fec418d15b1 +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-var-log-dnf.log-b04fd137817fe243 +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-var-log-dnf.rpm.log-cc0590da116b02c0 +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-dnf.conf-cd29427268b72efc +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-etc-dnf-protected.d-dnf.conf-e1a23125cb6c7590 +Relationship: SPDXRef-Package-java-archive-io.openliberty.accesslists.internal-348779c8b4c0f3c7 OTHER SPDXRef-File-...io.openliberty.accesslists.internal-1.0.81.jar-a4f57d2a8539555b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.lifecycle-34c625553449efde OTHER SPDXRef-File-...com.ibm.ws.app.manager.lifecycle-1.0.81.jar-c911c9dac217d462 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.dynacache.internal-3679127cfbf6d051 OTHER SPDXRef-File-...io.openliberty.dynacache.internal-1.0.81.jar-5cfab70da35221e5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot-38c971b780108cd4 OTHER SPDXRef-File-...lib-com.ibm.ws.kernel.boot-1.0.81.jar-d95b1236acd055fd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.java11.internal-38ddfeb1154186b8 OTHER SPDXRef-File-...io.openliberty.java11.internal-1.0.81.jar-8f0bbd106d0e608a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-pcre-39055d7c30264ebc CONTAINS SPDXRef-File-usr-share-licenses-pcre-LICENCE-2024cbee757274b1 +Relationship: SPDXRef-Package-rpm-pcre-39055d7c30264ebc CONTAINS SPDXRef-File-usr-lib64-libpcre.so.1.2.10-54d89969af7ae7f8 +Relationship: SPDXRef-Package-rpm-pcre-39055d7c30264ebc CONTAINS SPDXRef-File-usr-share-licenses-pcre-COPYING-84ef21562d09300b +Relationship: SPDXRef-Package-rpm-pcre-39055d7c30264ebc CONTAINS SPDXRef-File-usr-lib64-libpcreposix.so.0.0.6-ae2e023dddc5d116 +Relationship: SPDXRef-Package-rpm-pcre-39055d7c30264ebc OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-json-c-399cffcbd42f5af6 CONTAINS SPDXRef-File-usr-lib64-libjson-c.so.4.0.0-3517408a541ae959 +Relationship: SPDXRef-Package-rpm-json-c-399cffcbd42f5af6 CONTAINS SPDXRef-File-usr-share-licenses-json-c-AUTHORS-557fa83d87a9b427 +Relationship: SPDXRef-Package-rpm-json-c-399cffcbd42f5af6 CONTAINS SPDXRef-File-usr-share-licenses-json-c-COPYING-bc6d053356401aba +Relationship: SPDXRef-Package-rpm-json-c-399cffcbd42f5af6 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-virt-what-3a5a55ee259fe7fc CONTAINS SPDXRef-File-usr-libexec-virt-what-cpuid-helper-52c610d2ce7df1a3 +Relationship: SPDXRef-Package-rpm-virt-what-3a5a55ee259fe7fc OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-virt-what-3a5a55ee259fe7fc CONTAINS SPDXRef-File-usr-sbin-virt-what-f384c47acbc017e9 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.ssl-3a6d9f1416bf3550 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.ssl-1.5.81.jar-0ee4a6e722e22f10 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.authentication-3a8a7a13c07386b2 OTHER SPDXRef-File-...com.ibm.ws.security.authentication-1.0.81.jar-ea0c109db6342fa9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libutempter-3b10d50d8648cfcf CONTAINS SPDXRef-File-usr-share-licenses-libutempter-COPYING-572609dd307d17bf +Relationship: SPDXRef-Package-rpm-libutempter-3b10d50d8648cfcf CONTAINS SPDXRef-File-usr-libexec-utempter-utempter-ddb7833ec5aed11f +Relationship: SPDXRef-Package-rpm-libutempter-3b10d50d8648cfcf OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libutempter-3b10d50d8648cfcf CONTAINS SPDXRef-File-usr-lib64-libutempter.so.1.1.6-e2009bfa4c17a8e8 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.embeddable-3b8d907fb16b2e94 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.embeddable-1.1.81.jar-fb628820b43b5c28 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-sqlite-libs-3c14677b35b16020 CONTAINS SPDXRef-File-usr-lib64-libsqlite3.so.0.8.6-1001f1ca1b9f052a +Relationship: SPDXRef-Package-rpm-sqlite-libs-3c14677b35b16020 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.coordinator-3c4d4100ae462734 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.coordinator-1.0.81.jar-d0743a60ecec3268 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.equinox.module-3c7f2e9024265206 OTHER SPDXRef-File-...com.ibm.ws.kernel.equinox.module-1.0.81.jar-0849764e1a973fad +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.diagnostics-3ce69f18c6c57288 OTHER SPDXRef-File-...lib-com.ibm.ws.diagnostics-1.0.81.jar-1e382bfe288892f6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.webcontainer.security.internal-3d1dbec5aaae7993 OTHER SPDXRef-File-...io.openliberty.webcontainer.security.internal-1.0.81.jar-914a2371aef03ce8 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-pcre2-3da25cce088d6f35 CONTAINS SPDXRef-File-usr-lib64-libpcre2-posix.so.2.0.1-1f5722aab24ff725 +Relationship: SPDXRef-Package-rpm-pcre2-3da25cce088d6f35 CONTAINS SPDXRef-File-usr-share-licenses-pcre2-LICENCE-40736386285f68cb +Relationship: SPDXRef-Package-rpm-pcre2-3da25cce088d6f35 CONTAINS SPDXRef-File-usr-lib64-libpcre2-8.so.0.7.1-4088ef734a94853d +Relationship: SPDXRef-Package-rpm-pcre2-3da25cce088d6f35 CONTAINS SPDXRef-File-usr-share-licenses-pcre2-COPYING-dd3842a2b6cdb2b9 +Relationship: SPDXRef-Package-rpm-pcre2-3da25cce088d6f35 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.component-3f51d271514f2837 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.component-1.1.81.jar-f97cdd1b2eb7bb1c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-PAPER-0144b56250caa36e +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-getconf-05eb3796b00473d1 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-COLLATE-09af79f2ca234748 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-iconv-1cf9a78ec9f64d75 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-ADDRESS-1fd32ac4d065a7cd +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-TELEPHONE-2422032a4b95d04b +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-sprof-31f84a9d41863861 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-...C.utf8-LC-MESSAGES-SYS-LC-MESSAGES-359857bfac54ae1c +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-localedef-4c87c226994103f2 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-...lib-locale-C.utf8-LC-IDENTIFICATION-5678c4e0e1c656c5 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-gencat-57ba352f84ca9c20 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-pldd-6451af671105ffcf +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-share-locale-locale.alias-672cfb4202427c09 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-CTYPE-69de207c4f5570a2 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-ldd-6ce038fb9ee081d9 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-sbin-zic-6e44a79e99cd0e2b +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-MONETARY-6fc4930073dab20e +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-TIME-7685769238c4432d +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib64-ld-2.28.so-899b84a654a23ae4 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-makedb-941cb55c1d25b8c6 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-NAME-954e32b29f2c0091 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-getent-b4027803010b6686 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-tzselect-ba5bd5bfee958294 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-sbin-zdump-ba674b217a4fa67c +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-NUMERIC-bfc0351061dc4756 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-catchsegv-c003dbceb8d7986f +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-locale-cc62172f88b769bc +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-sotruss-d01224775e07a109 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-MEASUREMENT-dedc119633386903 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.cdi.weld.jakarta-3fb2f035da57ce2b OTHER SPDXRef-File-...com.ibm.ws.cdi.weld.jakarta-1.0.81.jar-d0a1cba265beed50 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.anno-3fb825ea1e85acd7 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.anno-1.1.81.jar-18a6f815c8767cfc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.transaction-40203f0f030d57c8 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.transaction-1.1.81.jar-bc330c7d1af04ac5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-vipw-04c01be4c8ffa4c4 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-newusers-17a55fb0983aa27e +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-groupadd-2dbf845c572259d0 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-bin-lastlog-32a377518867f99f +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-usermod-394cd426db35541f +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-bin-chage-395c90859219267a +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-...licenses-shadow-utils-shadow-bsd.txt-3d94ebd79d6bc361 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-grpunconv-43e3afd5c68951c7 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-etc-login.defs-46c7f883387232ca +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-etc-default-useradd-4ce18e0c0164a351 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-bin-gpasswd-677e1db91b5b7fb4 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-groupdel-944deb58373f0bcd +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-pwunconv-996b4ddc0dff6b4a +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-grpconv-a44a2ef8547b1597 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-pwconv-a59004f305f8cc04 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-userdel-a6d7d896270ba7fe +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-groupmod-a86e343ed25abfa9 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-groupmems-aa5c7fbf92d2015c +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-chgpasswd-b27ca77cb4e04682 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-useradd-bdf0602370255068 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-grpck-c0a2a782bc0aed75 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-pwck-c1ca1fd8d7b3335f +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-...licenses-shadow-utils-gpl-2.0.txt-c9b3d4e1970a5a6c +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-bin-newgrp-ce1b81db2983ae25 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-chpasswd-e21ffa82d3f56fc2 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-bin-newgidmap-e25f16725e941183 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-bin-newuidmap-f7a69fcc550d39d3 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.install.featureUtility-4071c9e1c073c1e5 OTHER SPDXRef-File-...com.ibm.ws.install.featureUtility-1.0.81.jar-1cdd43728057c16d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-...doc-nftables-examples-secmark.nft-0070656fedb6f7ea +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-...nftables-examples-load-balancing.nft-11b08391036faa3a +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-etc-nftables-main.nft-1d998067f80fd5f8 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-etc-nftables-osf-pf.os-466ba07e05bd8df5 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-etc-nftables-nat.nft-5e0c3b6bdb8b0ac1 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-usr-lib64-libnftables.so.1.0.0-6321b173391448af +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-etc-nftables-router.nft-683eb59791d91368 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-usr-share-man-man8-nft.8.gz-69d6e490cd8ee7de +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-...nftables-examples-sets-and-maps.nft-94b3afcc42cbd91d +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-...lib-systemd-system-nftables.service-9c1eb611e12c69e0 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-usr-sbin-nft-bb6c1623b69e66b7 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-...doc-nftables-examples-ct-helpers.nft-c0fac319263f2de3 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-etc-sysconfig-nftables.conf-cbba7caadf5b2db4 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-...share-man-man5-libnftables-json.5.gz-cedf7382ec8d9999 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-usr-share-licenses-nftables-COPYING-e5bb6a147c8980c2 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.service-421932a8e40184c4 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.service-1.8.81.jar-81fcdeddee0d0f8e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.security.feature-4219f8419578111a OTHER SPDXRef-File-...com.ibm.ws.webcontainer.security.feature-1.0.81.jar-001ba78f09c106c4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-basesystem-423a8fdad2b882bb OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakartaee.platform.v9-4281e9510ade84e9 OTHER SPDXRef-File-...io.openliberty.jakartaee.platform.v9-1.0.81.jar-79455cec71ad77d9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.monitor.jakarta-42a0bfb4d82d0246 OTHER SPDXRef-File-...com.ibm.ws.webcontainer.monitor.jakarta-1.0.81.jar-d64367108172feb1 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.product.utility.productutil-42ba1f36b46a3a6a OTHER SPDXRef-File-...com.ibm.ws.product.utility-1.0.81.jar-61ccc7854aca503d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.jboss.weld5-42d3117b8c69897a OTHER SPDXRef-File-...io.openliberty.org.jboss.weld5-1.0.81.jar-c6bf066b5f46b83f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dnf-4418429efe47422c CONTAINS SPDXRef-File-usr-bin-dnf-3-16175176c3acd9d0 +Relationship: SPDXRef-Package-rpm-dnf-4418429efe47422c CONTAINS SPDXRef-File-...lib-systemd-system-dnf-makecache.timer-1aa1f909a4e0339f +Relationship: SPDXRef-Package-rpm-dnf-4418429efe47422c CONTAINS SPDXRef-File-...share-locale-en-GB-LC-MESSAGES-dnf.mo-21984a59091bd9b2 +Relationship: SPDXRef-Package-rpm-dnf-4418429efe47422c CONTAINS SPDXRef-File-...share-bash-completion-completions-dnf-53943a082ad0c5d5 +Relationship: SPDXRef-Package-rpm-dnf-4418429efe47422c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dnf-4418429efe47422c CONTAINS SPDXRef-File-...systemd-system-dnf-makecache.service-e958fe25483b76cc +Relationship: SPDXRef-Package-rpm-nettle-446fa052fc193975 CONTAINS SPDXRef-File-usr-share-licenses-nettle-COPYINGv2-14c391e6daf59c5b +Relationship: SPDXRef-Package-rpm-nettle-446fa052fc193975 CONTAINS SPDXRef-File-...share-licenses-nettle-COPYING.LESSERv3-5d37d8321938e311 +Relationship: SPDXRef-Package-rpm-nettle-446fa052fc193975 CONTAINS SPDXRef-File-usr-lib64-libhogweed.so.4.5-634a7713f3653dea +Relationship: SPDXRef-Package-rpm-nettle-446fa052fc193975 CONTAINS SPDXRef-File-usr-lib64-libnettle.so.6.5-6cfd6bb62d2d4e22 +Relationship: SPDXRef-Package-rpm-nettle-446fa052fc193975 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-nettle-446fa052fc193975 CONTAINS SPDXRef-File-usr-lib64-.libnettle.so.6.5.hmac-e9716a5ea2978295 +Relationship: SPDXRef-Package-rpm-nettle-446fa052fc193975 CONTAINS SPDXRef-File-usr-lib64-.libhogweed.so.4.5.hmac-eb06b32f81646290 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.classloading-450cd0896f16afba OTHER SPDXRef-File-...lib-com.ibm.ws.classloading-1.1.81.jar-34345d73098fcafd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 CONTAINS SPDXRef-File-...--pycache---drv-libxml2.cpython-36.pyc-1098db0637559b44 +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 CONTAINS SPDXRef-File-...libxml2.cpython-36.opt-1.pyc-397126dcab780ca9 +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 CONTAINS SPDXRef-File-...python3.6-site-packages-drv-libxml2.py-3c1f22e03788606a +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 CONTAINS SPDXRef-File-...drv-libxml2.cpython-36.opt-1.pyc-3fe5d44bcd702d88 +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 CONTAINS SPDXRef-File-...python3.6-site-packages-libxml2mod.so-67c8647f521d5f3d +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 CONTAINS SPDXRef-File-...python3.6-site-packages-libxml2.py-d9c50d50e7c61164 +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 CONTAINS SPDXRef-File-...--pycache---libxml2.cpython-36.pyc-f9bb6be523342b89 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.crypto.passwordutil-459d93e4c1fee5fc OTHER SPDXRef-File-...com.ibm.ws.crypto.passwordutil-1.0.81.jar-4cd275cd3f4a6e1f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-acl-45fd7a3cd138b877 CONTAINS SPDXRef-File-usr-bin-chacl-0ecbb8cf3a13bcfc +Relationship: SPDXRef-Package-rpm-acl-45fd7a3cd138b877 CONTAINS SPDXRef-File-usr-bin-getfacl-2c9cb1d15ce83fab +Relationship: SPDXRef-Package-rpm-acl-45fd7a3cd138b877 CONTAINS SPDXRef-File-usr-bin-setfacl-66f18fad398d5b78 +Relationship: SPDXRef-Package-rpm-acl-45fd7a3cd138b877 CONTAINS SPDXRef-File-usr-share-licenses-acl-COPYING.LGPL-820047b4468ceb9e +Relationship: SPDXRef-Package-rpm-acl-45fd7a3cd138b877 CONTAINS SPDXRef-File-usr-share-licenses-acl-COPYING-b6b0bc755a2683f2 +Relationship: SPDXRef-Package-rpm-acl-45fd7a3cd138b877 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.resource-463ae47b7545e2c0 OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.resource-1.0.81.jar-654889404142e3fa +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-pip-wheel-468c6d9b2ca975d4 CONTAINS SPDXRef-File-...licenses-python3-pip-wheel-LICENSE.txt-4aea6b6de1488527 +Relationship: SPDXRef-Package-rpm-python3-pip-wheel-468c6d9b2ca975d4 CONTAINS SPDXRef-File-...pip-9.0.3-py2.py3-none-any.whl-59ea201cb5923978 +Relationship: SPDXRef-Package-rpm-python3-pip-wheel-468c6d9b2ca975d4 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...requires.txt-0016d62ca95073aa +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0776f681adc97192 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...site-packages-iniparse-compat.py-12654e2e0bd76f00 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-1473ec0bdd42af92 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...top-level.txt-1ba04c959109600a +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--pycache---ini.cpython-36.opt-1.pyc-24cb5bfe1cd8ff8f +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...site-packages-iniparse-utils.py-39443a08a76b3c48 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--pycache---ini.cpython-36.pyc-45b3757d24af3e11 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...site-packages-iniparse---init--.py-5063a2a1f5310ffe +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...iniparse-0.4-py3.6.egg-info-PKG-INFO-5f333130ccbc4458 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...configparser.cpython-36.opt-1.pyc-70822d4b3e0c9e08 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...compat.cpython-36.opt-1.pyc-7ea539257f4e1c27 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--pycache---config.cpython-36.pyc-85973b09c9f2ec30 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-87a5179fb8c0d2b1 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.pyc-a4a925b64e8cd962 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...site-packages-iniparse-config.py-ae01e426b744ae46 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...licenses-python-iniparse-LICENSE-PSF-b183dd336e12f252 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 OTHER SPDXRef-Package-python-iniparse-b1ac8ab06cf60d46 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...site-packages-iniparse-ini.py-b312f411894e7d3a +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-b5cf72fa375e785a +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...dependency-links.txt-bc00342a2928bf4a +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...site-packages-iniparse-configparser.py-c4508a868fc3cb32 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--pycache---compat.cpython-36.pyc-cc4373645daf653c +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...SOURCES.txt-cc8d407a55da3cd5 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...configparser.cpython-36.pyc-d26f9fa05d810852 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...share-licenses-python-iniparse-LICENSE-d8cbf5f0afad466e +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...rebuild.cpython-36.opt-1.pyc-0010a8c8a75efe7c +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...tz---pycache---tz.cpython-36.pyc-0a202bf29fcc7a18 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-easter.py-1505fb7a62adb01b +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...relativedelta.cpython-36.opt-1.pyc-1acee4cdb05f9701 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil--version.py-1f3270bd970f50fc +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-284dcca1964b9ef1 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---rebuild.cpython-36.pyc-2857066dcfcc9882 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2cd1438f16771709 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2dd5656c4a045241 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-parser.py-3a793d83ff7d424a +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-tzwin.py-3da187ff439e81a6 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...tz---pycache-----init--.cpython-36.pyc-42de64ff20bfb1a0 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...relativedelta.cpython-36.pyc-43f015a479dd2f24 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil---init--.py-4aea0d87a0b8aeb2 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 OTHER SPDXRef-Package-python-python-dateutil-509a860043c6af7b +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...zoneinfo-dateutil-zoneinfo.tar.gz-675048e4d802e089 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...tz---pycache---win.cpython-36.pyc-67ad6ae594a7b943 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...parser.cpython-36.opt-1.pyc-6b428cc38961ddcd +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-71e81aa26c2ad073 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...dateutil-zoneinfo-rebuild.py-7b873306602e8f7d +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...PKG-INFO-869376688539b0c1 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---parser.cpython-36.pyc-87d455f03e8206f3 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil--common.py-8928a87ee3f4305e +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...tz---pycache----common.cpython-36.pyc-933f3eded4c6bb50 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache----common.cpython-36.pyc-954eb6b4aea86724 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-tz-win.py-9b194251bbb719b2 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...top-level.txt-9e0fc58cb2f8c225 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...-common.cpython-36.opt-1.pyc-9fcf6e708c14c890 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---easter.cpython-36.pyc-a0cb7471ab289c13 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...requires.txt-a60c35d0dda93d62 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---rrule.cpython-36.pyc-a909bcb174f66612 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...tz---pycache---tz.cpython-36.opt-1.pyc-af87abaeadf4aae3 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...easter.cpython-36.opt-1.pyc-b28705384ac5cac5 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b4198dc98f6ba853 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---rrule.cpython-36.opt-1.pyc-b727818b7cd63eed +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache----version.cpython-36.pyc-bbd244af629e83cb +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...SOURCES.txt-bdc33693ab3ab980 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...licenses-python3-dateutil-LICENSE-c9bb7a28c1416fb3 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-tz--common.py-ced2bf09e199500a +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...dateutil-zoneinfo---init--.py-cf71c2e0bc3c5d12 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-tz-tz.py-cfa2bd214f6eb5f2 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...dependency-links.txt-d1c092fed42f7817 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-rrule.py-d75305a28d0d4ddc +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...zip-safe-d76b95ff73fd1bab +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---win.cpython-36.opt-1.pyc-dd9df900b9b94393 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-tz---init--.py-de9175af3627488e +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...dateutil-relativedelta.py-e14b38f846cc878b +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...-common.cpython-36.opt-1.pyc-e14c2f166a84083a +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---tzwin.cpython-36.pyc-e8312a78628c3e0a +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...-version.cpython-36.opt-1.pyc-e834c3e00625abb7 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---tzwin.cpython-36.opt-1.pyc-fb8abfbadb50fa28 +Relationship: SPDXRef-Package-python-ethtool-47e0eb55544e9981 OTHER SPDXRef-File-...ethtool-0.14-py3.6.egg-info-PKG-INFO-2738b5642c2848f5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 CONTAINS SPDXRef-File-...share-licenses-libxcrypt-COPYING.LIB-623c53f89b47349f +Relationship: SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 CONTAINS SPDXRef-File-usr-lib64-.libcrypt.so.1.1.0.hmac-779030f247b5a35b +Relationship: SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 CONTAINS SPDXRef-File-usr-share-licenses-libxcrypt-LICENSING-8df5c44b0a2c6aed +Relationship: SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 CONTAINS SPDXRef-File-usr-share-licenses-libxcrypt-AUTHORS-c2c5a2a10c92ba20 +Relationship: SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 CONTAINS SPDXRef-File-usr-lib64-libcrypt.so.1.1.0-cdeba8918acb87e6 +Relationship: SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.install.map-48c15cc676df1319 OTHER SPDXRef-File-...lib-com.ibm.ws.install.map-1.0.81.jar-b72a391100b4c61d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-share-man-man8-xtables-nft.8.gz-0076c02b3f109a86 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-etc-ethertypes-03fcab9483d4a32b +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...man-man8-ip6tables-translate.8.gz-08362a4905205a33 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libarpt-mangle.so-0a8989aebe15b04a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-ip.so-0b70d68ae29ac990 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-SET.so-0e1850b770228a49 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-snat.so-1450f2bacd3cc1ff +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-TTL.so-169929e53ecd3e99 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-sctp.so-1a45ca421cc01c9f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-CONNSECMARK.so-1a62b6fac74ab2ce +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-set.so-1eadf6c55d37ed15 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-devgroup.so-1f4cd59acd0f7f9b +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-DSCP.so-2143b6d37bb1331a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-pkttype.so-22db963a40dbcea3 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-NETMAP.so-23e15242e2ffdaec +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...man8-ip6tables-restore-translate.8.gz-2501faa41adff774 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-LOG.so-257d97acd7a47902 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-icmp6.so-26be7c5cc18ff324 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-LED.so-2723b40a6d864e81 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-recent.so-27882b2b4c2c550f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-rt.so-28e2fff509f904c6 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-ttl.so-298fd1f9dc3ca481 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-IDLETIMER.so-2ad9c43e2173da00 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-802-3.so-2bf0c88f4ee41ab6 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-stp.so-2e1b4fcf1feea383 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-TRACE.so-313c839fa367c688 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-HL.so-322b603a32e1cdc6 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-hbh.so-3432aeb718ccd262 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...share-man-man8-ip6tables-restore.8.gz-3b5e00199539c1f3 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-nflog.so-3d19885b5a79b64f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-physdev.so-3d57f1df03239025 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...share-man-man8-xtables-translate.8.gz-3e83b3b511f9ad90 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-limit.so-41fb99b093645c2a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-conntrack.so-4435c2520fd42d4f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...share-doc-iptables-INCOMPATIBILITIES-4772ff2675dd3ef8 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-connbytes.so-480199ed4d48d1eb +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-DNPT.so-499789cda4db14b2 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-share-man-man8-iptables-apply.8.gz-4a82f6eef9ec44bc +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-realm.so-4f010fe4f183b60c +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-SECMARK.so-4f03efdb9035d5e7 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-dnat.so-4f819261fe50da09 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-frag.so-522ab760cf9e1023 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-hl.so-54ef27b59a338e36 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-tos.so-573cce1653aca3eb +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-DNAT.so-5b1db53fe63f5a67 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-iprange.so-5c255766e50b13dd +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-ECN.so-5c534e4a0e5f2259 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-sbin-xtables-nft-multi-60c6987e55db8b5c +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-MASQUERADE.so-629963d3272c111a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-SYNPROXY.so-62ea1162397dc409 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-tcpmss.so-639d66770ad6e012 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-LOG.so-64bbe0a075c82fb4 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-RATEEST.so-654be8c0e858c7b0 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-statistic.so-6559f23febcbeb58 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-log.so-66be005f517802c4 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-redirect.so-6c239620beca3472 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-among.so-6fcf8bdd08ad879e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-vlan.so-71452a7158acb0a3 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-share-man-man8-iptables-save.8.gz-7311ffe30b62ac92 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...man-man8-iptables-extensions.8.gz-7391d90529e349d2 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-ah.so-7edeb75b70485888 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-cgroup.so-7f442ce604dbd4bc +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-osf.so-7f92015105c1057d +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-u32.so-8200e706124b85eb +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-dscp.so-888a840c06a3a57b +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-share-man-man8-iptables.8.gz-8ba8e3abaf3908c8 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-TCPMSS.so-8c4c798d036dacf0 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-esp.so-8d2197fc9080c165 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-eui64.so-8d277d77046d755e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-socket.so-8d5f275ff4222448 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-mark.so-8dc0419f37f5a341 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-time.so-8eff4cb494c2ca3a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-SNPT.so-8fd1ec94183473c2 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-ipvs.so-920a47022e3ecdf0 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-CLUSTERIP.so-93c5c8783030c32d +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-addrtype.so-93f53d05b301b3bc +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-DNAT.so-94bfb7091c286773 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-SNAT.so-973d5fefbb2126e2 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-owner.so-97d2041ee7eb9412 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...share-man-man8-xtables-monitor.8.gz-9b062c970c82f8ad +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-ah.so-9c47300989f10cbd +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-connlabel.so-9d8ef1974f0d1b6d +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-NETMAP.so-9f72b2afb20b9f7e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-etc-sysconfig-ip6tables-config-a06418242fac8a81 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-tcp.so-a0ee4a1232b1502b +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-ip6.so-a3b64975261d949a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-rpfilter.so-a408d25cfb0952c3 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-connmark.so-a44fda4cfcd906b4 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-TCPOPTSTRIP.so-a5477362a06c343e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-comment.so-a68574d7c43140a1 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-arp.so-a8c2ed928f0e064e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-sbin-iptables-apply-a935472c79b22928 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-mark-m.so-aa56a47e66797194 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-cluster.so-ab0b3c98f1abfc24 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-standard.so-acf01d9eb409539a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-share-licenses-iptables-COPYING-ae3ff39e09daac37 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-quota.so-ae6e22b2fe9daffe +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-NFLOG.so-aeefbd299efc91bc +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...lib64-xtables-libip6t-ipv6header.so-b0869edc65e94731 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-connlimit.so-b0b90b5cd7413d75 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-TEE.so-b1f6d6ed4de93d3d +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-mac.so-b22828d2efd7ee4e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...share-man-man8-iptables-restore.8.gz-b2a7980ab4411f02 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-ipcomp.so-b4ec4233b95a7cf4 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-REJECT.so-b7c2f4e6d2514e48 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-NFQUEUE.so-b802b01e1297e628 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-share-man-man8-ip6tables.8.gz-bb005ff015988835 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-policy.so-bc91fa3c5d868f2e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-REDIRECT.so-bc95f60ff4577312 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...share-man-man8-iptables-translate.8.gz-bf55eb2b6b63c2b8 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-ecn.so-c02189c5ad7ae7c3 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-dccp.so-c63d744544ba2ec4 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-helper.so-c93b15d9c91928b1 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...lib64-xtables-libip6t-MASQUERADE.so-c97297d37a177cee +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-share-man-man8-ip6tables-save.8.gz-cabb3d49566b03bc +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-rateest.so-cb8da67b71705cec +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-srh.so-cc123181e9bac9ca +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-pkttype.so-ce53e362a2da11ae +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-cpu.so-cf728d398f60cc0d +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-bpf.so-d19a5b228d2d996d +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-REJECT.so-d1cde2bfc13478b1 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-CT.so-d2bc299ec48387bc +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-mark.so-d4dd3e664600733e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-nfacct.so-d58f9dd89c0277eb +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-CHECKSUM.so-d6ca3894ac858dd7 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-TPROXY.so-d7ea2b70bc107a2c +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-hashlimit.so-d89a5fcc6d0d0a18 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...man8-iptables-restore-translate.8.gz-da6ca0ce93942d3f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-etc-sysconfig-iptables-config-da84a8dbe12db1fa +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-HMARK.so-db4ef7b178b1821b +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-string.so-dc1658892f39d831 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-arpreply.so-dc38354148e873f2 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-udp.so-debe34d906d0694f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-CLASSIFY.so-df98792a174f5280 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-AUDIT.so-e3527fb795c5e22f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-TOS.so-e49d1822ab908333 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-dst.so-e976e35a12d919df +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-ULOG.so-eafb8c858bb469c3 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-MARK.so-ececa36c3e7cbc0f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-CONNMARK.so-ef586e360b5c4cfa +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-multiport.so-ef757d9b66df9291 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-SNAT.so-f901e3ad51b18b2a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-length.so-fb98ff4038d0ddcc +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-icmp.so-fca94ed86b96b7c5 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-mh.so-ffbc06d58d9eb899 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-REDIRECT.so-ffdbcbb2c369e85a +Relationship: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.weld-48ed937a7e69e891 OTHER SPDXRef-File-...io.openliberty.cdi.4.0.internal.weld-1.0.81.jar-6d90932b3c67cb36 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.instrument.check-4a71efdb15f8f29b OTHER SPDXRef-File-opt-ol-wlp-lib-bootstrap-agent.jar-b2c0aa2b346923b4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 CONTAINS SPDXRef-File-usr-lib64-sasl2-libsasldb.so.3.0.0-4bf81599d5ea07f0 +Relationship: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 CONTAINS SPDXRef-File-usr-lib64-sasl2-libanonymous.so.3.0.0-5eea771844241fb0 +Relationship: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 CONTAINS SPDXRef-File-usr-lib64-libsasl2.so.3.0.0-69807fd5b97e2105 +Relationship: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 CONTAINS SPDXRef-File-usr-sbin-sasldblistusers2-6e9ddbc51d8ab773 +Relationship: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 CONTAINS SPDXRef-File-...share-licenses-cyrus-sasl-lib-COPYING-907fe9822af0db96 +Relationship: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 CONTAINS SPDXRef-File-usr-sbin-saslpasswd2-b88467bd5697f120 +Relationship: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.security.spnego-4ae53050e4fe0d56 OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.security.spnego-1.1.81.jar-af60242b9612b3c8 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.servlet.6.0-4b40cefce58f0cac OTHER SPDXRef-File-...io.openliberty.jakarta.servlet.6.0-1.0.81.jar-4349a4209c8b3484 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.crypto.ltpakeyutil-4b995684ce6a3be1 OTHER SPDXRef-File-...com.ibm.ws.crypto.ltpakeyutil-1.0.81.jar-c38314545dc44464 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-bin-make-dummy-cert-04704039b6f2f087 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-genrsa.1ssl.gz-088c49754957903b +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-man-man7-ossl-store-file.7ssl.gz-101d014d5dabe2c0 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-man-man7-EVP-KDF-HKDF.7ssl.gz-1765cc2a8a9682bb +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-man-man7-EVP-KDF-KRB5KDF.7ssl.gz-196bb74b3ab5a352 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-man-man7-EVP-KDF-SCRYPT.7ssl.gz-1bf3dd4635f779ef +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...man-man7-EVP-KDF-TLS1-PRF.7ssl.gz-1dab765d034c273e +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-sslrand.1ssl.gz-217e23c7710baee5 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-man-man7-EVP-KDF-SSHKDF.7ssl.gz-2b00c2eb6b3b9e10 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-openssl.1ssl.gz-2d53e404c37ada4b +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-evp.7ssl.gz-2e78e6c6e15a7bb3 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-prime.1ssl.gz-30e28211efeca463 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-ts.1ssl.gz-31b545f1e2c48e8a +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-RAND.7ssl.gz-3f5f7bfb90e80ebd +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man5-config.5ssl.gz-405d93d96f88969f +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-dsaparam.1ssl.gz-41282c83b8f70957 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-enc.1ssl.gz-45f445734a1c7547 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-errstr.1ssl.gz-4e9bd25ddb96dcbf +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-nseq.1ssl.gz-4f900a6a619b779d +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-Ed25519.7ssl.gz-57abdd292bd018fa +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-req.1ssl.gz-57fccbfb2a03040d +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-engine.1ssl.gz-58fb7d68e733b8cc +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-dhparam.1ssl.gz-5cfd039d5d2cbc23 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-pkcs8.1ssl.gz-5f8a671a0fa32cd7 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-licenses-openssl-LICENSE-651b55083af77470 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-srp.1ssl.gz-65735719efe05cc7 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-sslpasswd.1ssl.gz-65c9db6741a409ce +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-asn1parse.1ssl.gz-6ceb0fd6c957cef7 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-pkcs7.1ssl.gz-6f88d08133e3a411 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-crl.1ssl.gz-756d3215fcb45dce +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-doc-openssl-README-75e6abd7e83af940 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-gendsa.1ssl.gz-7607390736dc7e52 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-bin-renew-dummy-cert-7657542d0f9202df +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-RSA-PSS.7ssl.gz-7b0f5037e76d4a59 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-pkeyparam.1ssl.gz-7dc34f2091d5df9f +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-ecparam.1ssl.gz-7f4f4e163ce5f7af +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-speed.1ssl.gz-82ebf54b9e4d7789 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...man-man7-proxy-certificates.7ssl.gz-8333505228626385 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-man-man7-EVP-KDF-PBKDF2.7ssl.gz-8815451eb114cf5c +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-list.1ssl.gz-88daee10954a1294 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-smime.1ssl.gz-8ab2acc7ee159e14 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-pkeyutl.1ssl.gz-8bc6faac5591ad5a +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-ossl-store.7ssl.gz-8bd1451cd7bde956 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-pkcs12.1ssl.gz-9c40ee6d215b1d65 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-rsautl.1ssl.gz-9e8d39452d3462b9 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-sess-id.1ssl.gz-a47429666fcb1158 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-s-server.1ssl.gz-ac156d2dc033416b +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-genpkey.1ssl.gz-b103d553bdb6f1a2 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-pkey.1ssl.gz-b432e7a714fdde13 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-ciphers.1ssl.gz-b5763aa23286b9f3 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-cms.1ssl.gz-b907d67c4088d504 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-bin-openssl-bd2dbf10c7834d86 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-EVP-KDF-SS.7ssl.gz-bdf98dc1b80bf078 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-verify.1ssl.gz-be0f85604424e7d8 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-rehash.1ssl.gz-c1b66f911b283de0 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...man-man7-passphrase-encoding.7ssl.gz-c2410cf80a9010e5 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-doc-openssl-NEWS-c38ca20a7d336103 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-des-modes.7ssl.gz-c4c4bd00eeaed837 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-doc-openssl-FAQ-c4e4bc2587067835 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-ca.1ssl.gz-c5dbbe77d420f8c0 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-ssl.7ssl.gz-c94256b8af98ff76 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-crypto.7ssl.gz-caee55d467057d16 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-spkac.1ssl.gz-cc0cb932a614f791 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-dgst.1ssl.gz-cfb33bda3e5bcb4a +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-ocsp.1ssl.gz-d2afb4ff1e6dd089 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-man-man5-x509v3-config.5ssl.gz-d42aaa2c40fac859 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-x509.7ssl.gz-d7d2b2745d2d410d +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-EVP-KDF-KB.7ssl.gz-d9b6366124a99f6b +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-bio.7ssl.gz-dbc5f9cf014f2888 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-s-client.1ssl.gz-dcd201437b4dbd03 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-version.1ssl.gz-dce030745973af44 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-dsa.1ssl.gz-dd6fd638b12ee4c5 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-s-time.1ssl.gz-e591200a1638a7aa +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-doc-openssl-README.FIPS-e6b8e01e725c5051 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-RAND-DRBG.7ssl.gz-edf02b7bf9d4d298 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-doc-openssl-Makefile.certificate-eec8462583aace83 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-rsa.1ssl.gz-efa17e46cda3f428 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-x509.1ssl.gz-f06d83124616e0cc +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-ec.1ssl.gz-f1ea6f6a5a7e6aa0 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-storeutl.1ssl.gz-f4e1d97825d7f995 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-ct.7ssl.gz-f73e38eb07fa2161 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-crl2pkcs7.1ssl.gz-f9bb38fcc91f96df +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-SM2.7ssl.gz-f9bea0b736dad495 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-scrypt.7ssl.gz-fc886d5137f2cdfe +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-X25519.7ssl.gz-fcf4123d0db3f5d8 +Relationship: SPDXRef-Package-rpm-librepo-4cd2e86c97c4754a CONTAINS SPDXRef-File-usr-share-licenses-librepo-COPYING-314dfe1e241c6b6b +Relationship: SPDXRef-Package-rpm-librepo-4cd2e86c97c4754a CONTAINS SPDXRef-File-usr-lib64-librepo.so.0-88a6717f70af5bc3 +Relationship: SPDXRef-Package-rpm-librepo-4cd2e86c97c4754a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.soap.3.0-4d1af385604efc57 OTHER SPDXRef-File-...io.openliberty.jakarta.soap.3.0-1.0.81.jar-27d53554e2df5be1 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-python-dateutil-509a860043c6af7b OTHER SPDXRef-File-...PKG-INFO-869376688539b0c1 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-webserverPluginutil-5138594310b74d46 OTHER SPDXRef-File-...bin-tools-ws-webserverPluginutil.jar-50f2a2192da7580b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libcap-ng-51cf02126f09a3ef CONTAINS SPDXRef-File-...share-licenses-libcap-ng-COPYING.LIB-0f1f32e8196b5670 +Relationship: SPDXRef-Package-rpm-libcap-ng-51cf02126f09a3ef CONTAINS SPDXRef-File-usr-lib64-libcap-ng.so.0.0.0-75b4fdfee98ab106 +Relationship: SPDXRef-Package-rpm-libcap-ng-51cf02126f09a3ef OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jndi.core-52167c6e9be82da5 OTHER SPDXRef-File-...com.ibm.ws.org.apache.aries.jndi.core-1.1.81.jar-7ac128df1dcb478d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.microprofile.metrics.common-5269865d0e23c8d4 OTHER SPDXRef-File-...com.ibm.ws.microprofile.metrics.common-1.0.81.jar-e4810f72921ec667 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.persistence.3.1-52af0fd25b633d19 OTHER SPDXRef-File-...io.openliberty.jakarta.persistence.3.1-1.0.81.jar-eba7779ce765f3e0 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact.overlay-52e797606b454ca3 OTHER SPDXRef-File-...com.ibm.ws.artifact.overlay-1.0.81.jar-a59c585148f50cc3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.javaee.activity.1.0-539b5585a68d881c OTHER SPDXRef-File-...com.ibm.websphere.javaee.activity.1.0-1.0.81.jar-dfbabb310ca0c677 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.credentials-54204e2affa36dd6 OTHER SPDXRef-File-...com.ibm.ws.security.credentials-1.0.81.jar-ea03d1d65fdc8e87 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-amd64-linux-macros-0129a3e49a5456b7 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-ppcpseries-linux-macros-0171aed9205a5f07 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv3l-linux-macros-02ad4f528e7ceb9e +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-riscv64-linux-macros-0499084d58da627c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-db-stat-0983830ed9a58de2 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Obsoletename-0a002bd80923378b +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-ppc-linux-macros-0a7d23c0f1483674 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-athlon-linux-macros-0bbee84af18c39cf +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-x86-64-linux-macros-0bf0f1284193bf76 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-mips64r6-linux-macros-10fa89e40d44a7e6 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Requirename-11e7c6ce0b01e781 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-tgpg-12f60d796ce29c4a +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-pentium4-linux-macros-178b7cd37f9ace75 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-mipsel-linux-macros-1904d86f9c52f5e1 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Providename-194bb06f4d5ac255 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-rpm.log-19fc6ea01d2683ca +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv7hl-linux-macros-1d1788e5837771b3 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-i686-linux-macros-1d89630752f22eb0 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Basenames-1e8d242de9e8ccbc +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv4b-linux-macros-253cff719d761295 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-alphaev5-linux-macros-2bf033ef8c0a051a +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Installtid-2e88407d08a91510 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-db-dump-309b5968b0c9d3f1 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-sh4a-linux-macros-32f9e830cb9cfdd4 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-rpm-35b0a05eb8dff726 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-ppciseries-linux-macros-35b6c78b766fe4fc +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-db-load-37fce3b95279ce2d +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-sh-linux-macros-3866e3d137f7c797 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-ia32e-linux-macros-397c7883c94f92c8 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-share-licenses-rpm-COPYING-3a005342e17732bb +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-pentium3-linux-macros-3b46e102f6b12368 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm---db.003-3e496f62e4fc12d9 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-s390-linux-macros-3f01a6ad78fa56de +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-rpmdb-3f192d9492039852 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-alphaev56-linux-macros-411b6ebd8b65ece9 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Name-429f333e5847d3f4 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Sigmd5-455e32ded7479296 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-geode-linux-macros-48cb6c98dc681e92 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-db-recover-4a98d4bab1fed412 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Conflictname-4ae4e37472c7390e +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-rpmdb-loadcvt-59f9dd2b0628515d +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-alpha-linux-macros-5b8e9d00407d68bf +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-mips64-linux-macros-5d6752546e995f4e +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-mipsr6el-linux-macros-608ded62e456db06 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-sparc64v-linux-macros-614bf24761e205e0 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv7hnl-linux-macros-627e130e55590397 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-ia64-linux-macros-6468c626c76c5e11 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv5tl-linux-macros-6a0d81d2dc38ea02 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-i486-linux-macros-6d49efe80151e72f +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-ppc64iseries-linux-macros-6d80168f3660ee62 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-rpm2cpio.sh-6de2c6b4d36c3815 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-mips-linux-macros-7280b811ef117214 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-rpmpopt-4.14.3-753d45e8154ab4d0 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Triggername-76ed42315129371d +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-rpm2archive-778fb6512f57b6f5 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-sparc-linux-macros-79f0541e0c8e337c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-armv5tejl-linux-macros-7a8f9d3cde60fc2c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Dirnames-8048d3bd44bebf7c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Group-85e82b7f69e79be1 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-alphaev6-linux-macros-91407ed8b2d0ab78 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-sparc64-linux-macros-91ee56aae9a98efa +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Sha1header-91fc8c66fa9b878e +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-macros-9414fcbf02dea404 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-i386-linux-macros-9599cfd7154b21f7 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-mips64r6el-linux-macros-9d2b4debadbebee4 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-python-macro-helper-9d87a57191c5cd65 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-mipsr6-linux-macros-a111546ffd95efb5 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-alphapca56-linux-macros-a1624ea903793264 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv4l-linux-macros-a3bd73753d2e64cc +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-sh4-linux-macros-a47eed1cfc699d47 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv5tel-linux-macros-a4948e20da6cfc9c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-sparcv9v-linux-macros-a9d4efab8f0fa48a +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-ppc32dy4-linux-macros-ae49a2341dbd5d4b +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-mips64el-linux-macros-aed4971ffd1d2108 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-rpmkeys-b164e73bc5ab2621 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-ppc8560-linux-macros-b3ccc04eb15a526c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-ppc8260-linux-macros-bce90afe326888fb +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-ppc64le-linux-macros-be33ec7be582993e +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-rpm.supp-c026cafcff5ed4d3 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-rpm.daily-cf1868bf28a6d3de +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-ppc64pseries-linux-macros-cf353b9e37e1f754 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-rpmrc-cf5ba301cc07a6f0 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-sh3-linux-macros-d3c65ced064bca1b +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv6l-linux-macros-d4166ccec323f733 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-sparcv8-linux-macros-db4206162a3e9d29 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-ppc64p7-linux-macros-df523be0ee7b6d7f +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-sparcv9-linux-macros-e19bececcea397d7 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-rpm.conf-e2acff19b673c2ae +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-db-upgrade-e37bfb93c36042ce +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-noarch-linux-macros-e4e29d9e3f33b21b +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-i586-linux-macros-e788b5cf0758d53c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-alphaev67-linux-macros-e7dce1b9fc2940fd +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv6hl-linux-macros-e9380b67e53303c3 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-aarch64-linux-macros-eafbcea0513b9a66 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv7l-linux-macros-ecb0fc5793d57175 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-s390x-linux-macros-f1d20d31bcc4e077 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-ppc64-linux-macros-f503067933d7714d +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-db-verify-faa44758f54565f4 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm---db.002-fb895eea6da2d1d3 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm---db.001-fba0623d0a8391d0 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-rpm2cpio-ff6863f05a2b1336 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-m68k-linux-macros-ff9370a17b6a3963 +Relationship: SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.builtin-5463bf749e0971ce OTHER SPDXRef-File-...io.openliberty.security.authentication.internal.builtin-1.0.81.jar-896a0fec6f26324d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.webcontainer.servlet.6.0.internal.factories-54be295232b23485 OTHER SPDXRef-File-...io.openliberty.webcontainer.servlet.6.0.internal.factories-1.0.81.jar-d31c8fbdaee11ac4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.logging.osgi-54f6582cba8dbf38 OTHER SPDXRef-File-...lib-com.ibm.ws.logging.osgi-1.0.81.jar-c1e19a239d94571b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d CONTAINS SPDXRef-File-usr-share-doc-freetype-README-166cb698158e879e +Relationship: SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d CONTAINS SPDXRef-File-...share-licenses-freetype-LICENSE.TXT-3f239787609c008d +Relationship: SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d CONTAINS SPDXRef-File-usr-lib64-libfreetype.so.6.16.1-7c4f273d62d09444 +Relationship: SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d CONTAINS SPDXRef-File-usr-share-licenses-freetype-FTL.TXT-844cb04e50af26cc +Relationship: SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d CONTAINS SPDXRef-File-usr-share-licenses-freetype-GPLv2.TXT-fac998f0094c9c5e +Relationship: SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 CONTAINS SPDXRef-File-usr-share-licenses-dbus-tools-COPYING-d03d68231c1058f3 +Relationship: SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 CONTAINS SPDXRef-File-usr-bin-dbus-uuidgen-d1ce41e14afce8ee +Relationship: SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 CONTAINS SPDXRef-File-...bin-dbus-update-activation-environment-f686ef501f9755b5 +Relationship: SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 CONTAINS SPDXRef-File-usr-bin-dbus-send-fab90d42fa53c741 +Relationship: SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 CONTAINS SPDXRef-File-usr-bin-dbus-monitor-feab5640aefebea5 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.jakarta-57169466f7c5ad89 OTHER SPDXRef-File-...com.ibm.ws.webcontainer.jakarta-1.1.81.jar-a54c566cbcbb484b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.metatype.annotations-57608e27b67eb2a0 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.metatype.annotations-1.0.81.jar-fb92666d08e1aa2c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.cdi.spi-5769548082bfa726 OTHER SPDXRef-File-...ibm-io.openliberty.cdi.spi-1.1.81.jar-75d26c6b1106c10e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jndi.api-577ed84398f4dabd OTHER SPDXRef-File-...com.ibm.ws.org.apache.aries.jndi.api-1.1.81.jar-4b7fe2405e59cbb9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-expat-580d0138d97ae889 CONTAINS SPDXRef-File-usr-bin-xmlwf-3d3c8f387c936adf +Relationship: SPDXRef-Package-rpm-expat-580d0138d97ae889 CONTAINS SPDXRef-File-usr-lib64-libexpat.so.1.6.7-9a1c827816a8e840 +Relationship: SPDXRef-Package-rpm-expat-580d0138d97ae889 CONTAINS SPDXRef-File-usr-share-licenses-expat-COPYING-ad7b37d0a575f4cf +Relationship: SPDXRef-Package-rpm-expat-580d0138d97ae889 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libcom-err-5810f3c8a99f4bcd CONTAINS SPDXRef-File-usr-lib64-libcom-err.so.2.1-5e37c45025c6f81a +Relationship: SPDXRef-Package-rpm-libcom-err-5810f3c8a99f4bcd OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libcom-err-5810f3c8a99f4bcd CONTAINS SPDXRef-File-usr-share-licenses-libcom-err-NOTICE-e0a04622497bf779 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.cdi.jndi.jakarta-5828db872bd83d8d OTHER SPDXRef-File-...com.ibm.ws.cdi.jndi.jakarta-1.0.81.jar-3176ae3a323b3898 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libselinux-594107f6b62dc4ab CONTAINS SPDXRef-File-usr-share-licenses-libselinux-LICENSE-3e2247315b7dfac2 +Relationship: SPDXRef-Package-rpm-libselinux-594107f6b62dc4ab CONTAINS SPDXRef-File-usr-lib64-libselinux.so.1-4c159e60a3275e03 +Relationship: SPDXRef-Package-rpm-libselinux-594107f6b62dc4ab CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-libselinux.conf-cb3db5165b47c6b3 +Relationship: SPDXRef-Package-rpm-libselinux-594107f6b62dc4ab OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-MET-000209debf32d521 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Asuncion-003c680b42232863 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Magadan-0082357688edb68f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Canada-Eastern-00942610af2155b3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Montserrat-00abe2ad80990845 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-MST7MDT-00c366afc971a1a2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Ponape-00d5aa992ab5ac52 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Warsaw-0115ee4c707c898e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Adak-013d914fa07d1ad6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Bahia-015e3518d7d601a5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Katmandu-017738821feb19da +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Ponape-01a39b3d385de6de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Tasmania-01d47de016b4e77c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Baghdad-01d8a8175839bfd6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Alaska-01f4b0d40ab7dc28 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Reykjavik-020a708a593c7df7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Palau-023dc3a4b2d330b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Baku-0286235926410bba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Atka-0289d757a20650e0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Choibalsan-02a98f1ff8b3c8d8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Adelaide-02bb9e230fe5f223 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Belgrade-02e9cbc2469ab58a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Majuro-02f5386f67d7f8cb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...America-Argentina-ComodRivadavia-032b27be534605d1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Australia-NSW-0331e31cff1d9609 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Denver-0334c5fb0613f662 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Singapore-0370498d656047ff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-Tucuman-0385ba7706c3c10c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-Mendoza-0419a537cf8c187a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Tijuana-0423274d67d39fc3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Edmonton-04233e5990e60b9a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Kinshasa-0448c44282669c29 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Singapore-04538cd4160818cd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Bratislava-0481cd006eb762d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Turkey-04a6b174b2d6c975 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Bahia-Banderas-04ad9d22e445b5ff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Antarctica-Troll-04ce07761b67e05c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Eastern-04e89206574110f3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Istanbul-050da865134d1cbd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Nipigon-0527cc317d4edf44 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Almaty-0541772cbe00552b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Magadan-057979f8d766e0c1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Saipan-05b662cc02b5fcf1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Saratov-05eca189f07bbd5f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Brunei-062fdb6b1bcc31ca +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-0-06aae8efaf00524b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Kinshasa-06c05a2e48431dc9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Hebron-06c1311ea01b8b46 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Djibouti-06d8d5e23c6eed45 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Macao-0754bbcb28e990dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Whitehorse-078958a3288ea521 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-zone1970.tab-07a98333bb6ccc05 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Ojinaga-07abaf5c5e6b1ba0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Ensenada-07bf407b147f7056 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Eirunepe-07db564c66623e84 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Gambier-07f41ad2ecaea786 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Ceuta-0804495e1fe0cf1a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-7-081d8cc465c090ff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Anguilla-0863b8d22f369311 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-St-Lucia-087ec5a67db9aa91 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Thunder-Bay-088a2b05c07842f5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Wallis-0891036530ab5e84 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Canary-08b01398d83cf9f3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-EST5EDT-08cb860d1c1ba1db +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Navajo-08e88cfdfff16878 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Malabo-09142a3a8edbaf2a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Sarajevo-0916b3dcb2f76aa2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-ROK-09254b090ed34351 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Khartoum-09672186f1989ec2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Indiana-Marengo-0967658bf23b5164 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Porto-Acre-09d0bb4d9630ea2d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Indian-Reunion-09dda6cc2a053bf7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Sakhalin-09efa9be0f09c3f2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Glace-Bay-09f1365a0b22ab6a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Manaus-0a11a907933bd2a6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Ndjamena-0a46fa509bda5b1f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Qatar-0a4fd2c8fcc88812 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-Antarctica-DumontDUrville-0a802f28eefb2bfd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Denver-0aa31e32ab0246be +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-La-Rioja-0ac3a1161de06d79 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Tiraspol-0ad0e811c4325ff7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Australia-LHI-0ae0b40ff4e7dada +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Ashgabat-0aef82807d7a2bfe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Chicago-0b1794ca87ca0b2e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Iran-0b4429c239b44826 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Africa-Addis-Ababa-0b5737de65bf4a4e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Shiprock-0b708831d48b9ee9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Khandyga-0be875eaf0311f35 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Samoa-0c0cf4da1c455741 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Poland-0c107ebfa2ec04cc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Africa-Dar-es-Salaam-0c4542a2762eb6cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-14-0c579cfcb119922e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Thule-0c748304cdbba179 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Riga-0c7914b9293531b7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Zagreb-0ca1ad9171619b22 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Asia-Ujung-Pandang-0cb0f3890d32c746 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Punta-Arenas-0d21a61b66afbcd6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Simferopol-0d956028838b4d14 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Guadeloupe-0d9dda2c3e68085a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Pitcairn-0dbc38d891d3222f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-South-0df8fb3712e8da70 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Antarctica-McMurdo-0e1c87957cbdd2b6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Skopje-0e277ed9604060a8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Bangui-0e5d3713f22c401d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Ulaanbaatar-0e88b89b45dd0408 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Thule-0e8b8b61513e9bb8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Podgorica-0eabf71968af88b5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Pacific-Bougainville-0f17b5dd7036bfe1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Portugal-0f3cc47a5fd68966 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Sao-Tome-0f90240ee850d6b1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Bahia-0fc48e4982431c66 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Tashkent-0fe2de6373fbb939 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Famagusta-0fece72f94b879c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Rio-Branco-1068f363c55efdd5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Asmara-108e0ddb4821b2eb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Atlantic-St-Helena-1097b76a12a71ab8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Tunis-10b4d7ca6f41bc51 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Ojinaga-10d71eaa2f313ed2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Michigan-10e1f6a2fc6f1fc1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-9-10f0fb4e5732619a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Gambier-1122ee3d3cd41963 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Azores-1147e08d324e17d9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Atlantic-1153dc7a6e58cc8b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Sakhalin-1162960dcdd2dc83 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Baku-119f4f57f1f87f92 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Phoenix-11a2267bb6bb43f6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Arizona-11a739fc43d5c6d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Maseru-11b7fceacfb96136 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Vilnius-11bb9caacd17fdfb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Antarctica-Rothera-12047db722f9bc01 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Anguilla-12291477623e1194 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Nairobi-1270c277f39c64c9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Indian-Mayotte-12d19dab29b9555a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-9-12d6724675fa5be7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Scoresbysund-12e0cda21b20acaf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Algiers-12fca1c5dfb3e0ce +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Indiana-Winamac-13062c229607de32 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Monrovia-13428ab314a81843 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Dawson-Creek-135b0b9d550f37cb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Havana-136ce26a5bb746c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-UCT-137bf97f3363cb22 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Amsterdam-138911b2d7c410c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Libya-13a79918eb3b935e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Vancouver-13e4fda82b5871ed +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Samoa-13f8f6f4672faebe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Manila-144063691ef783d1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-1-144df7ff4407aa96 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Chicago-1466708ee8677185 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Yellowknife-147685d94cbd9b48 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Atlantic-Reykjavik-147b63bcd8916862 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Iqaluit-1485838d7fd16be1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Turkey-14b55f125aa001b7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Pago-Pago-14c508a51e3dcf5d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Midway-14c621c7fa1bef3d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-St-Lucia-14c8407cddb7d5e1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-Ushuaia-14d4b85e90b338c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-St-Barthelemy-14e929ab523610e6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Brunei-1503652a1f47f37e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Central-1509abcf0c62f332 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-St-Vincent-15417edacc7a0308 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-GB-Eire-1565f07ef971ced6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Pacific-15dee03eec155d6a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Minsk-1620241ca1099350 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Araguaina-166ecb38f0934449 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-Mendoza-16b9cb50f4dfab9d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Mexico-BajaSur-16d1d9492191ec9d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Kentucky-Louisville-16d998cf456e7504 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Nouakchott-16fdb74febd26c17 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Baghdad-170689e25e9dd4ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Dakar-1709828541b698d6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Bucharest-17307dff268c109a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Singapore-1745cc4f97c3ebff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-12-1748451f3712b64a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Ust-Nera-1754ef6e12ae3fa4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Istanbul-17575eef3a3291d6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Guernsey-1767270ff8c46a99 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Uzhgorod-178bd0ea370ee3ff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Thimphu-17bf43b1d8538e05 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Paris-17d0bf02966f2df9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Vatican-17da8b75feb3435e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Indiana-Winamac-181493b59bb4433d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Indiana-Vevay-184941de491dde61 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Khandyga-1889556fafd481df +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Anchorage-1889d51e039106d9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Bujumbura-188f01f2c8b22689 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-4-18c133d8eb5f2a9c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Banjul-18dc6cb0929e67bd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Atlantic-Jan-Mayen-18e9526b8eaee251 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-West-18ed295d22ed1cd3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Edmonton-19054ffc33cb2615 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Hovd-191bf3ffb05fc9c4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Kralendijk-192f42122c02433e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Moscow-1933daa93ce44e2c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Paris-19536490aafe1d41 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Sarajevo-19827dc071b2aefc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Indian-Antananarivo-1984cc84b574372e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Boa-Vista-19ad88ce04808460 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Yap-19d7793ecc39a6af +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Dublin-19e52b9324a96c88 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-El-Salvador-19e6626712601854 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Louisville-19ed3f73478ac685 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Athens-19f0f0004784db2f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Australia-LHI-1a2bc9f326778c25 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Santiago-1a4135234908249f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Jersey-1a676ab68e5a8ad8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-Rio-Gallegos-1a9024ffef609999 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Phnom-Penh-1a95c9d2b2804b5b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-tzdata.zi-1a9ae2057bbf8f02 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Marquesas-1ab29fa32ad6dec1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Blantyre-1b3f0812e38b039f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-Cordoba-1b56f5a7079ae723 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Rarotonga-1b6cb2a0023f4405 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Adelaide-1b8d6ecbd34b96ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Zaporozhye-1ba117426930b124 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Sitka-1ba317ba59b5afdf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Irkutsk-1be3069410c02184 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Porto-Novo-1be88c57878d4f15 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Eire-1c08c52afcb4be65 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Campo-Grande-1c0e7b83ab672459 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Indiana-Marengo-1c12dcafbbcaec35 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Bissau-1c221c7a17905aa8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Mahe-1c37c8b18e967809 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Fort-Nelson-1c3d89cd7967c0ea +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-Hobart-1c507cffa0ad09d9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Porto-Acre-1c61690a5d11c684 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Urumqi-1c7a4162b493786e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Canada-Yukon-1cdbd81a676c6558 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Nipigon-1d0b5bc0869a6553 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Stockholm-1d34b7133993b2e9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Chisinau-1d41f19b565068af +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Manila-1d4b672014c59333 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Metlakatla-1d93f6e8d037c847 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Australia-ACT-1dbc106844b1c3c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Monrovia-1dc0ae255bd1a999 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Chungking-1e0aaea19c1cc1be +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Tel-Aviv-1e12d53500fe43de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Pacific-Port-Moresby-1e24569b725b1337 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Malabo-1e57803675767ab6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Gaborone-1e93affc718e7426 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Tripoli-1e9aa26023ad0bca +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Pohnpei-1ec6af00d02c10a6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Luxembourg-1efe0d4ff6d61d35 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Beirut-1f36f4d844cf3c2b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Andorra-1f3825ed4311a1a9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Yap-1f507cc07289bae6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Kuala-Lumpur-1faa2019498ea8e8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Kiritimati-1fb9e4f73350f6fc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Antarctica-Casey-1fdeaeb28ae5a7ea +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Brussels-1fdf69c7ee6c9d45 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Antigua-1fe3bee8a9a0be0e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-9-1fec84bf32e87402 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Argentina-Salta-1fedb3403c63ef8c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Efate-200bf72242205191 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-ACT-201c2b776cd1a9a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Omsk-20301fe9591ece91 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Jujuy-20349837aabb0b4c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-St-Helena-203b57e16808548f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Pacific-Port-Moresby-206077bc713cab18 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-East-Indiana-2074371500bcea40 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-Currie-20a5e65c7102121e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Kinshasa-20ae6e9beb9734c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Bujumbura-20be0341e66ecb55 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Niue-210cf11541d79ac3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Seoul-21890701938195d6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Guernsey-218cd77876dc89dd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Kanton-219067de458d1d62 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-UCT-21a1d29e5e1db8db +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Yekaterinburg-21a7738a0a4101ee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Helsinki-21b7e70b0519d87a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Nicosia-227ac3c5ee34f234 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kashgar-2285e5247d746513 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Jujuy-22b29de1df30daff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Victoria-22d1af21175bae24 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Antarctica-Troll-22d9b6c02588299a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Lord-Howe-22f9a52447763804 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Wallis-230fba9ace3c2b41 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Canada-Mountain-23137ffb4801c106 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Israel-2323fb3a2d256c4f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Karachi-23243538b76889bf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-7-23244af0b5120335 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Lubumbashi-232b91931ea9b187 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-El-Salvador-234b33f759927a9b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Dublin-235532ac5bf57be2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Ljubljana-238c0461d1bde231 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Greenwich-23b95b752e0936ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Anadyr-241a8b8fabdbed9e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Harare-2436f266dc6c612a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Pyongyang-2440bece316519af +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-MET-24640c2cdd47585e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-London-246723dc606355fe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Rarotonga-24997e138e66693d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Montevideo-249e3cbf6e90cef6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Gambier-24a2d8a183fd8f0f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Melbourne-24dee5f709564c23 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Antarctica-McMurdo-250166ac4c11b8e4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Troll-2577657527f82415 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Noumea-257aef7ec3a8dbb2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-North-Dakota-Center-25800cb069d6d1a1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-ROC-25cf014b3c1522dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Ponape-25d1c18134a200c9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-2-25f086c750889259 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Port-of-Spain-25ff1541b58db4c1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Louisville-2608682775c817cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Jersey-26217464fe5261b1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-ROK-262e46b2929816c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Lower-Princes-266bddcc157731a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Faroe-266ce6243af8bc4a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Apia-2685d47955771160 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Malta-268bfe1a478f3146 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Central-26c1fab77e10a8a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Vladivostok-26e000b41ea077c3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-EET-26e9936a5af8d1ff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Regina-27293109a82a497b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Noronha-2761fedb6ceaa6bc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Calcutta-27735bed13e399af +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Tahiti-2785674ce2356037 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Easter-280f212716129455 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Curacao-28108c46e5f22ad6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Arizona-2842ae6c00f723c9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Ujung-Pandang-2867f71841cf22ad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Ulaanbaatar-28bb4ffd64064506 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Virgin-28cc465d9be00d26 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Curacao-28d77943ed7d5f55 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Guatemala-28de39c895c89696 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Africa-Brazzaville-28fbf884163c36ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Kyiv-291f3d5076993b3e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Gibraltar-2920bd2b7999611d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-St-Barthelemy-2927fea5d8da5cbb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Cancun-2944a46f237a2f58 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Saipan-294d1decd61097dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-4-29829823ee5fe4ef +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Jakarta-2991879746649a4c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Glace-Bay-29c5c1e9da22f6f3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-UCT-29f898e4d8fa055f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Mountain-2a564386078f9c21 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Blanc-Sablon-2a5e132532c056ed +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Seoul-2a602ccdc4845dbf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-2a706eb6c59ffe77 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Merida-2aa437bc3c5546b9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Qostanay-2ab4c62dbb0f1cba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Chuuk-2ac4a1f2913a5e6a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-1-2adf31daff893c6e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Bucharest-2aec9f1dafec6c09 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Port-au-Prince-2af0412addb5e7ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Porto-Velho-2b29045b89ff9a8f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Indiana-Winamac-2b31993f187cffd2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-San-Juan-2b4c99ed3cd79f5a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Dublin-2b58bb49f79f51f1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Taipei-2b755866e7d8b336 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Harare-2b838406ac5e4299 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Fort-Wayne-2b85d00f0995079f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Samoa-2b90ad239bc964bb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-10-2b9c68337a5157dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Nauru-2c0e1cd0693a7dba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Santiago-2c452c47894e94b7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Nicosia-2c4d89205bf81989 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Atlantic-Reykjavik-2cc77d80150be7c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Rangoon-2ccced84071ea25b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Hovd-2cdadb3fee17c638 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Indiana-Vevay-2cec56a2016b35b0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Amman-2d6a1e8f88d65c31 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Madrid-2d78764e431384c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Jersey-2d7c7a3d1dd274eb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-St-Johns-2db2f18ced86e58e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Novokuznetsk-2e224340b7c92ba6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-11-2e35d83e5d1a40cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Chungking-2e8b816a94007abd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Eastern-2e92a3d8a5053f80 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Tiraspol-2ebf573548ca15c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Mexico-City-2ef10345a51981ee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Budapest-2ef1a748afe0fdd6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-GMT-0-2f7bbb58ac71d6f7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-12-2fb15230c176976e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Samoa-2fc9a40924f11bb5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Menominee-2fd706135a597bbe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Tegucigalpa-3053441ffc35ead9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Dhaka-30cec014e97ccb83 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Tashkent-3110bf6044c9beeb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Mariehamn-31188bccfc3a0177 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kuala-Lumpur-312f19413e2b2148 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Warsaw-313e03a59459df5b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Hawaii-319339c882f7438b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-NZ-31ce4fc18f21b208 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Amman-32052d70176a708d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Podgorica-326d2aec816a9baf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Havana-327eebc2f63e692e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-Currie-3293382a535dbb0c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Ashkhabad-32c483e27e83a309 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Panama-32cb9340e338ff20 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Ndjamena-32e92432b5621c30 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Antarctica-Syowa-33387c86cedea37c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Chita-333bd5817f89c73f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-MST-3368173408cf4b7a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Noumea-3399b18cf51964e3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Tortola-339e2c7bbd77b500 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-GMT-33e9aa11cd5885f4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-North-33fbb27c28647017 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Wake-344e09fd88454948 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Malta-346e2fe80ca553ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Ensenada-3485fdb16b23df8f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Lima-34fcbcb107e4062e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Brazil-DeNoronha-3543d2358113b157 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Accra-35472a3b4ddade71 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Palau-3608ae6589178a51 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Jamaica-3627ffd003a361d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Guadalcanal-364e6dd86506c8ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Bangkok-36602e19a58016ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Canberra-368d46a647345965 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Dawson-36a3544aad21684d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Brazil-DeNoronha-36a6fbc8af624685 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Rome-37062e3eb6ddbb3f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Famagusta-37070496a660cfa0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Swift-Current-372a787485debc14 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Freetown-372c68bf984fcba9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Chile-EasterIsland-373b403b952c6668 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Yerevan-377ba20d8d2345b2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Moscow-37a1191c2951728c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Dhaka-3803e3b8238dec3e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Yakutsk-3810f48e859beca6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Marquesas-3829d92678b111e3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Resolute-383792b66183304e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-5-3850151e2f177aba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-West-38639a4d80aaafb6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Fakaofo-388329d0b9ca83f4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Navajo-3895d6efb7ac9bac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-8-38a34c169fc5a24d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-PRC-38d0929dcdc91144 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Kanton-38dbe121a0bcf4b1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Juneau-3939a9ace55745a0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Chile-EasterIsland-393f0231a60920e3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Krasnoyarsk-3993d88bd9e85b9e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Kentucky-Monticello-39e8f2c71a7956ad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Chongqing-39ea4bda04179646 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Ljubljana-39fb474a08323b7a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Argentina-Salta-39ff4cc58df91cc1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Menominee-3a4d29594b3a7711 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Danmarkshavn-3a53e075fd72856b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Reunion-3a580ec9f4271474 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Prague-3a761bc83ccc5eac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Makassar-3abea07201f1e5d2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Singapore-3b28f28a9a8551dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Rangoon-3b84fe87e6e0cbae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-6-3b98429817250f83 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-St-Kitts-3ba9ab5bc541c1c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Dominica-3be40fab8b7c674f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Jerusalem-3c7bb0a76ec9dc27 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Anadyr-3c960511fcdd47fa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Buenos-Aires-3c9bff9fcdb145f9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Iceland-3cc51e65e13ba4a6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-MET-3cd59da1990aab21 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Libreville-3cf213f2ebcc5860 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Arizona-3d00fc9e1eac2708 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-8-3d05d78f87852ac1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Tbilisi-3d29edbaed9b8fc8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Guam-3d2e00a47fbd6fd3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Canberra-3d3598da4068b2d7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Jayapura-3d538709bfcd53b7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Mexico-BajaNorte-3d961170a2969258 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Puerto-Rico-3dbdda115e95a0e0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Funafuti-3ddc076efde91965 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Indianapolis-3de1632e3aa1005d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Qyzylorda-3df6d9a21b7f5fe5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Ljubljana-3e06798328ee350b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Hobart-3e764c85c1c157d1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-EST5EDT-3e8566e58fe2c564 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT0-3e877f1fa7e98819 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Chuuk-3e9198a5c6847fa6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Conakry-3ec767167a81b9c8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Niamey-3edb39c3415ad29e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Lindeman-3eec59952581475b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Lord-Howe-3ef337ddb4c3f693 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Hongkong-3f0807c4d3747489 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Araguaina-3f96c593e5ac8a3f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Panama-3fbf0f3bb41b87a8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Hermosillo-3fe7d2ffea943a0e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Port-of-Spain-3ff7b89b740b4db9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-McMurdo-401a1a5046485b0e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Mexico-City-401cd1cc1766be45 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Dushanbe-4053d07a6eb81b72 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Grenada-408c42d802df48df +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Antarctica-South-Pole-40a54feab7b7d1dd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Iceland-40cc8cd95d56fe8c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Lower-Princes-40fbb205cc3f7307 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Nouakchott-410089a062211282 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Atlantic-Faroe-4118b3bccf3ed34e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Warsaw-4128ca431885bf20 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-UTC-4143142a4203541a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Atlantic-Madeira-41686067185fbac9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Karachi-416defe194325a42 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Atka-41b8524eeace248d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Wallis-41be956657fbc419 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Honolulu-41dcdfdcae87de7e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Atka-423040b70699eb8f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Rome-42a510b7d1f55676 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Melbourne-42aec64a52cecb6d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Nauru-42c96f4a558b05cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Managua-42d8771f9e1febfe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Bermuda-43647d92f468e6d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Saigon-438174f383716723 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-10-4383eda2848aad7e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Aleutian-43dbb89d7a63753e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Atlantic-Faroe-4401e2189272667d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Fort-Nelson-4432b7ce601eb4c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Gibraltar-44546d00736caae2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Urumqi-4463d266ec284c81 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Dawson-449124f98ece733e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Busingen-44ae0f2a3f3826ce +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-San-Marino-44d653fc10d35699 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Pontianak-4524f823e222ae31 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Tortola-4546323687b17806 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Tunis-454d2cd86962dec6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Zagreb-4557e54abb2e55cc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Manaus-455d4dd192930f02 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-UTC-4570f6de40469f1d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Guatemala-457971516c5e6bf4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Danmarkshavn-45952689fcaaf592 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Marigot-459baa1d89886fe6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Atlantic-Azores-45c4be6789cc1785 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Riyadh-45e09243aedbad82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-PST8PDT-4602163d7aa7d075 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Atlantic-Azores-4606a90378372651 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Kigali-46258ef6e3aaaf1a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Aruba-464cf9ca03b172a0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Ndjamena-4664f15c5812c699 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Cayenne-46b32dabc1a26b90 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Newfoundland-46d00f14d2b364c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Yap-46d386603ff28a3e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Amman-46e8c3f76ff8a2d2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-PST8PDT-470fc5f124bd67b7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Lusaka-4755a07d29ff3075 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Chihuahua-47776c32c7107e40 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-10-477f5b09a6dc4b34 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Kyiv-47994db90d0f8271 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-GMT-47ad46f3e74adbf8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Zurich-47b3878072e84128 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Ashkhabad-47feb79c1ce72398 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Majuro-48559e907089abfa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Cairo-4862f46b509265fc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Tongatapu-4863c3759bac9c01 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Samara-4881a211c0ab8ebf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Johannesburg-48eb081449ca7ef2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-La-Paz-48ed9d69971de18e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Tunis-499949bdf298590d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Urumqi-499d60b43e850386 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-9-49a01234e6d2846a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Virgin-49bdef6eb959c5c5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Rainy-River-49ccb49b2b022661 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-MST-49cfb0bcf4419a57 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Porto-Novo-49f4c5f1e125038d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Atlantic-Madeira-4a02a63c3228e96c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Kwajalein-4a0806302f3890a0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Juba-4a41097eb172dd6a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Monterrey-4a9320c352e80802 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT0-4aa8ba12db5baa31 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-San-Juan-4abb8574586cff9a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-GMT-0-4ad901179383bdc7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Marigot-4ae71f07667d1bb7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Algiers-4aebc7f59afa0606 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Qatar-4b09ef3c6babd48e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Alaska-4b21c26949e02337 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Banjul-4b34010267742fa8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Oral-4b39a377ae3bf5d2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Detroit-4b54686d88aba994 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Nairobi-4b5ac54d13a2f2be +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Katmandu-4b83d6659489ca34 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Canada-Yukon-4bda1351952f98f4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Guayaquil-4be4541e759d80d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Canada-Eastern-4bf06a131f0e4ef7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Dili-4bfe56e60f9bfcf9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-12-4c69523ed27ecf9a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Baku-4c6dc29155afc906 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Halifax-4c6e2bdd27055093 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Chungking-4ce1cad9a7f5df7a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Belize-4cf1fefeed4539dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Douala-4d038aaf9fdb812e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-EST-4d1b9ae80facc188 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Maceio-4d2fa9df11fbb13d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Creston-4d5bb98c8a3cabdd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Shanghai-4d5f8e4eceaaae24 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Thunder-Bay-4d93c16ae804ebad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Lagos-4da90629b73370e4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Cayman-4e4e948b3323dabb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Goose-Bay-4e8b21ffef0b892e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Pacific-Kiritimati-4edd692e162a9ced +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Canada-Mountain-4ee8b3f81d98161f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kuwait-4f0bb8f685116ba5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Ust-Nera-4f1d22d54d08c488 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Helsinki-4f70d6951bd368aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Mexico-City-4f940af3e5c9e20d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Maldives-4fd87c560c1a04c3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Bishkek-5065310af17cd5e5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Kampala-50826c9cf6c8d4b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Atlantic-Cape-Verde-50ef553952fd6515 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Indian-Antananarivo-511460194a5120c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Tasmania-51448140b3e47c3f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-NZ-514728702c80b2a1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Belem-51556efc948da496 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-10-517d27986ddfd61c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Kampala-518e8d848af181f9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Dushanbe-51aa99aa630646ea +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Tokyo-51b3a71fe124da0c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Regina-51c660e06867c76e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-GB-51d2e9887d931d21 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Zaporozhye-51f5fd6ecf68d958 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Belfast-51fdd53e06649d95 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Shanghai-526f6335b2259104 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posixrules-52ae4f71c6edf4aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tomsk-52c2237f1185a732 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Mazatlan-52c888e362b7af06 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Fort-Wayne-52f2294de5aba540 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Mendoza-52f9aceda80e260d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Truk-53014a5b1bf25db1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Goose-Bay-530550394b90c5b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-HST-535d7a438c39faa6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Volgograd-53818f6ac6aa49ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-14-53dfb2e022ef32aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Prague-5422ddaa6143b23c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Vancouver-543a6f53eb2712f2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Tehran-543f32c1efd57e1e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Brazil-West-5454132613de2eec +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Antarctica-Casey-54718e9967256a52 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Antarctica-Mawson-54905f3430f04f41 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-LHI-5490f829de19ae23 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Africa-Ouagadougou-54a93d5eff67d6c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Asmara-54b0360df67a03ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Australia-Broken-Hill-54baa9ef6dc73dcc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Santarem-550f96d9cccec32b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-St-Johns-551b5f36e5485bf5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Danmarkshavn-5552e86da393911e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Thimbu-55b5bbac87b14a2f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Lower-Princes-55c9bf2f1df80f46 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Mariehamn-55ca287dcea1ca4e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-PST8PDT-55f856f568c39e73 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Rio-Branco-55feb0e8f6274aab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Indianapolis-563968570163fac2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Jakarta-5642744effba1582 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Adak-56888919780bb315 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Casablanca-5689ca090dc73ad8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-Rio-Gallegos-568e5baeda02402f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-14-5697affaba3c768f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Nassau-56aa206dbf9d095a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Campo-Grande-56cdfffead9c1583 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-WET-570d51419e400a21 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Davis-57d3c048a034f2bf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Eire-57daa95a0e7bc272 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-West-57ea9e932b4568ef +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Vladivostok-57efd17c0a58ca08 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Nicosia-580795629bb3205c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Kashgar-580b124d1ceedef4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Coral-Harbour-581cb39a00f59c89 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Atlantic-South-Georgia-58240b54fa5415af +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Wake-5824ec52ea1bd91c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Shiprock-5827fa0db3e7db3f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Tegucigalpa-5832e3b87a40fcba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Brazil-East-58b45f1c430e6197 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Port-au-Prince-58cb01538c337fa4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Tomsk-58d11efa51b24e28 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Thimphu-58e1a336ec8207d5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Cuba-58f3d65572f4eb45 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Antarctica-Vostok-58ff4f29f91a8f26 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Indian-Comoro-591a16a4ccdae862 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Macau-59b16ae3f91e56b4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Berlin-59fa08cef5f4f4f2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-EST-5a0209e81490fe5b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-PRC-5a13e8813c7c1c13 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tehran-5a7fa98750d8c726 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Iran-5a8f58bc671c42ef +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Sofia-5a9bcd63aa05866c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Atlantic-South-Georgia-5ac1887fb704ecc2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Belize-5ade69e6b8c04841 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Midway-5ae5785b4966dfcc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Blantyre-5b855ca6b0b9fa9b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-2-5b907ecab5e48bf3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Kiev-5bc041d608932156 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Bamako-5bc1fdfb65e5378a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Asia-Yekaterinburg-5bfb36bbd0556f32 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-CST6CDT-5c0f414dca0c263d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Niue-5c5394f9a99b260f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Pontianak-5cb16d7c75c34a0b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Montserrat-5cb778c1e7aa7ddc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-3-5ccd04c593322c54 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Antananarivo-5d1d29e1891bc3fd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Faeroe-5d43bf03000a8163 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Phoenix-5d5dfedd582f2bcf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Cordoba-5d6b97aac39d8000 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Mountain-5d731bd4969b475c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Santarem-5d89f6e3931479c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-Catamarca-5d93f225e3326eb9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Cambridge-Bay-5db99e5750e3caae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Indian-Maldives-5dbf504a642cc576 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Ulan-Bator-5dcc5d362b90abca +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Universal-5df1e76fbdf33844 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Indian-Cocos-5e26a7ba9f942258 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Vienna-5e2f37b9b5e79f50 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-0-5e4f5a8f15b312aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Harbin-5e610367147eb744 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Bratislava-5e682cbb6fe86598 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Cambridge-Bay-5e75625a9e91fe36 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Dominica-5ea1122234e58bda +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Anchorage-5ea24487e8643121 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Antarctica-Davis-5eb804051a6161b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-Zulu-5ef12954b9125c00 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Montevideo-5efc090b56574580 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-NZ-CHAT-5f0597ae3dfa60f9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-Cordoba-5f0a542cc4265710 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Catamarca-5f1dd1ffe9560911 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Tarawa-5f4278105172be5b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Damascus-5f752eb1c1d23838 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Brussels-60ca8beba4bb2d3e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Oslo-60f535480d74dc66 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Seoul-60f9a06215973d82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-EST5EDT-6116226833a90880 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Atlantic-Cape-Verde-6137ebbac86afc20 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Ho-Chi-Minh-61408cdbec1c31fe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Kabul-61be725119ff0019 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Kosrae-61ca1be299070bcc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Kiev-61e80adf5fddbbad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Canada-Central-61eeae6ebde29512 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-North-Dakota-Beulah-62104c0a4c4c6d91 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Aruba-621d1c7ed14f6583 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Cayman-621f3a84d37fb3ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Vatican-6232db13d8bd5b57 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Cordoba-625b752d60dc5d7a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Halifax-625c572f8911b4be +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Zulu-627976a30f13eb68 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Uzhgorod-627dc0b215bdf2dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kabul-628f5b3e98429f5a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Buenos-Aires-6297f670770fe380 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-CET-62bfceef606d61f6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Anchorage-62cb06fc6b0a682d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Nairobi-62d02f0fb4bdfb6e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Goose-Bay-6307fa13196ce256 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-San-Juan-6323d4e22deb918b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-GB-635a2e0237a3cbf7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Mendoza-6366605ff76644e5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Metlakatla-63807a1516f5cb9a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Vaduz-6399fe450c11ccf1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Sao-Tome-63a6356698e04fb5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-2-63dcf82bd00e621b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-MST-64062123ef767c78 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Johnston-641c3b8d7b1870ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Lima-6421a1d71b24cd6e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Libreville-642bf1023df0a871 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Europe-Kaliningrad-64353765c5a8f5bf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Apia-643588cb9409b477 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Jayapura-647ed30c16038a8f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-11-649e502fd9f8b908 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Mendoza-64d68116d61b8e7f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Oslo-64d7436737292b26 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Universal-64d78b24d5f3b9f8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Yakutat-6568ad9bed5ae3ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Hermosillo-65860e84b462e67f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-GB-Eire-6590396946380b5e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Africa-Addis-Ababa-659044aa54ff11a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Muscat-65afbbc155b79c17 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Tongatapu-65d83d726e0ab93b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Guyana-6621c6b1e67b467c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Harbin-6661de30a0204d70 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-ROC-666c13058413cc99 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Moscow-666d5bb1665d9b3a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Rarotonga-66ac0ca01c77fb05 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Europe-Kaliningrad-66ac8e4814f93ef7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Mexico-BajaNorte-66ccb5b20a14ad39 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Kentucky-Monticello-67225c702b2b63f4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kathmandu-673f9ee1396b2c62 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Central-67447bde0f9c4073 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Creston-674ec88030ffc5f0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Antarctica-Mawson-67851b4bc7a5dfae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Africa-Dar-es-Salaam-67a1665464eac612 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Eire-67ab35365cd6127a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-GMT-0-67af0d0d503efc49 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Yerevan-67d4fe9c56ad9b58 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Srednekolymsk-67fa0ead71d03404 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Mogadishu-685218501c807e12 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Nicosia-6862972a7f5f6166 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Kathmandu-687ab76255e18557 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-ROK-68db8c6f045205ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Kyiv-6915b4c7a6a81c95 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Kanton-6952af4b47a7d774 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-69739dfdee06b830 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Tijuana-69de8ce0e9257632 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kashgar-69ee2571570d2277 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Freetown-6a09ed84692c1140 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Edmonton-6a65e1c53227ed3f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-La-Rioja-6a8c366800cd7aee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Nicosia-6a9c73bf16c8aaa3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-Greenwich-6abfe5b8c011c3d9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Port-au-Prince-6ac5924c5b2e160a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Timbuktu-6ac8d8433baf23d7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Easter-6aea10e63b21784f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Barnaul-6b01704c60b4d25b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Santarem-6b021e730bae6a29 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Saigon-6b069e554143f1e9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Boise-6b1f171fb535fd79 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Queensland-6b6975887d31a7a4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kuching-6b6f0424cd3addea +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Boa-Vista-6bc18dedb1193307 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Sydney-6c6b0f0b5f374820 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Miquelon-6c763a10ad82213c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Costa-Rica-6c7bf881913e5a6e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Indiana-Starke-6d06fadd70a63341 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Samara-6d38d7ae9a19aa8b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Iran-6d570c99b1995144 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Cayenne-6dc4802cbfb295f3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Buenos-Aires-6e0f51c99af7b957 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-GMT0-6e1e41f4a6ca905e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Hebron-6e44876215173aff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Istanbul-6e732c690e1c0e77 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Mazatlan-6eaa123f1066007e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Athens-6ec7d4ea17c65daf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Guyana-6ecc9b08daddbd75 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Toronto-6ed05552fad28446 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Belize-6f2fa424f2131790 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Bahia-Banderas-6f4b0bcc5dc69ea2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Porto-Acre-6f7224eeb8092123 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Antarctica-Macquarie-6f8f1b173853a284 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Auckland-6f9587474de18f34 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Kerguelen-6f9670d8f1015fb4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Panama-6f9dd849e37bf814 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Noumea-6fb59859fd17c85a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Saskatchewan-6fbc2191935affa2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Mogadishu-6fc60e182c2d9cfc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Africa-Ouagadougou-6fcba9e89391a44b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-Antarctica-DumontDUrville-6ffc9218d4d16457 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Lagos-7056959757e1c598 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Vienna-708e75796a4e7c11 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Skopje-70d334a464e91064 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Jamaica-70ee34e14a9217dd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Simferopol-711fac02f9bc3d2a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Knox-IN-716f9771506b7bf9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Guam-717cb3ecb9a5caa1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Casey-719eb20a39899618 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Douala-71aab6294e7b73e5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-Sydney-71ee42b213d3102e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Whitehorse-71febde24feb1362 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Shanghai-72002c1fab2ac6b3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Costa-Rica-72097263ca4fa3b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-El-Salvador-720cbcce8ec3055c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Metlakatla-722724e488266ec6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Caracas-72553e16e0c29996 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Paris-727aefc051221ba4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Santiago-728866521cf0232f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-New-York-728a0f4a0b50324d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Juneau-729069155a0854ea +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Asmera-72975ac0b11b23ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Kigali-72b8c0d22bfce723 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Douala-72cd9483796db162 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Anadyr-7330033c81cb88ef +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Busingen-73621d80c32671a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Auckland-7363904f9180f056 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Conakry-73a82059b4ccb7f0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Managua-73d73a1ff4d0997b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Andorra-740730165141fd6f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Samoa-741f52f6e2294226 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Argentina-Jujuy-744783083fdd46d4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Midway-74503a3af204f929 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Pacific-Bougainville-745eafdc14f770cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Mexico-General-74640391886f889d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Victoria-747225694891ed1a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Indiana-Tell-City-747c746cce9ee41f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Hermosillo-7495dd6bf9a86b4a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-Darwin-74ac86d6d2e2a308 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Copenhagen-74ad115417e3300b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-US-Indiana-Starke-74ae0be3628f0cb9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Indiana-Knox-74c9534dbe502e9b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dili-74cbc3051f5c33d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Famagusta-74de5e9f4012fc96 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Lisbon-75096177a14b702c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Japan-754580e4e2086e67 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Poland-757026fbe68680e3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Kosrae-758cade5b32b708b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Sao-Tome-759cc5596a953169 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Pontianak-762c830aed047f33 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Mountain-76479f575f33d370 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Ulan-Bator-765d45eb3e4915c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Guam-7660466e2ab29afb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kamchatka-766bfaa69907bad4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Indiana-Vincennes-767be5aab3358683 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Belgrade-76a08d4003980237 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Krasnoyarsk-76ac0f2d0f168ca6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-3-76aca26f926713c2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-GMT0-76eb0da79433643d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Taipei-773968568fa63230 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Juba-774a78be340961d1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Casablanca-774b70dcd677d2bc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Canada-Atlantic-77832710d60503e8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-San-Marino-77ee845c884d8003 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Yancowinna-7801ee8d23711636 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Currie-78053081b06d4ba2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Libya-780a9254d2fc7681 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Atikokan-78556b64d7cfc0bd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-San-Luis-785997dea3730112 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-South-786fbd4623b07b56 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Victoria-788e46dc0878eeb8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Tomsk-78d40efea3283dac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Kwajalein-79bba1373c100e82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Brazil-West-79e5a17cd8eb1f3a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Indianapolis-79f4623a9a093d23 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Lome-7a5982aea5ddb98f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kolkata-7ab5aa8633c6c502 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-San-Marino-7ab964126e69c426 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Astrakhan-7b41217bf4bb92a8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Fiji-7b5e185aa600849f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Ashgabat-7b84a94447e71bb6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dushanbe-7b9c9f6d4968f1c1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Bissau-7bba4604f8a1f416 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-CET-7bc6fba9df3a43e1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Antarctica-Macquarie-7be6a7f67890598e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Omsk-7bf5685c3dff4f5d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Indiana-Vincennes-7c0d719153de5bdb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Ojinaga-7c15d9fd241c93c5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Blantyre-7c2e5d17d2ca288c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Santo-Domingo-7c37049773f60fe5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Funafuti-7c436fa92f3ef6b5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Chatham-7c4888eb36ea237d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Enderbury-7c5a62607aec4366 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-MST7MDT-7c7d86a7ef2747fa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Monterrey-7ca2bd0b44f5d554 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Istanbul-7cc78538eb768ef9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-6-7d2bef599e0f1904 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Indian-Maldives-7daffab09ffbe4ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-St-Thomas-7db9a547a0b01952 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Portugal-7dd7eea79b7bbf9f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Podgorica-7df6422067177ef7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Egypt-7e1d7274f6960a71 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Aqtobe-7e2e60c3fda8c102 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Grand-Turk-7e601a46db28dd6c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Fort-Wayne-7e62e93e18b33008 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Simferopol-7e7b40a65fd43fe4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Aden-7e9c8fddaa45f6dd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Jamaica-7ead5c2695d88379 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Dubai-7ed1ebabd73e1a72 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Tokyo-7ee5ee499f2427ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Iqaluit-7f313e20c6b0c094 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Mbabane-7fb105dba71dfdc4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Kralendijk-7fbfaa1b0bca495b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Chagos-7fe17e4538cb38ca +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Atlantic-Jan-Mayen-7ffbfd137e10ad5c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-St-Lucia-80022d8554ad1c7f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Tallinn-8009b26ed73bd581 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Stockholm-802a0b2c2236a5f1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Ulyanovsk-80674ff3684b239d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Hawaii-807221df948060b2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Moncton-807b283410ef8e15 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Oral-80858a8e11fa804d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Macau-80cd147d8134efe7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Budapest-813fc1b5a61fbea7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Melbourne-8167e8ed6319763b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-Cordoba-816a00b60479885b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Phoenix-81735e1ef3a0be09 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Kwajalein-81b62ed0539c9b52 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Canada-Atlantic-81e6cdf18244c129 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Rainy-River-8209a442d7ca625c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-US-East-Indiana-826f3f150863b0d4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-North-Dakota-Beulah-8274a18e97089120 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Khartoum-828138d63a193c2d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Sofia-8297bbb21a47279e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-Perth-82fbd3b418545009 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-London-8312a657da639b2d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-EET-8345e008a2843d16 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Bratislava-835f25632da51918 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Perth-8371217cf12047c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Mayotte-83a6cabb3df54de7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Calcutta-83b875cb03f1ea70 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Broken-Hill-83fc910e78033f79 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-Ushuaia-8426a38cc390b6d8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Rosario-844edda99a41b2bf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-St-Thomas-84a1ab0c77301728 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Indian-Christmas-84c67ef3ae054dee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Nassau-84f865eff3e7bd0c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Irkutsk-850cd9a46d755e5d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-NSW-856341d08b7eb912 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dacca-85860637ad7f71dd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Chile-Continental-8590f5c6f156abc1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Costa-Rica-85a9893343bb49c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Aqtau-85c65a3136e62ed6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Nome-85ce1771d189646c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Honolulu-8649597e0f5497e1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Porto-Velho-8656598f79436b12 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-Tucuman-8664aee025a91762 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Hongkong-86847aebaf4f1246 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Khandyga-86c3bbd27ecb713e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Jamaica-87298a51e1bc7166 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Algiers-874c040608e723f1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Atlantic-Bermuda-88048cfe5c84a351 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Antarctica-Rothera-88121c1d6d4162c1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Calcutta-8820866a7ca061b0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Dakar-88222fdcb8fcfacb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Lima-884c85eb91e8204e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-5-889b834d65e2e5ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Whitehorse-88c304b67ac75926 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Guyana-88cd4f7f4f5ffb0b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Aqtau-88e23db4d40a2424 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Virgin-88eb52e1cf076e89 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Pacific-890c10148be33e82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Greenwich-892aee4bd2cf479b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Yangon-89632d752e95bbab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Copenhagen-8981c5295df0e0ee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Ceuta-89da3e8ed05c7daa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Sitka-8a2f4647b566d39e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-El-Aaiun-8a5b799dea1999f9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-North-Dakota-New-Salem-8a5d80a683b7abe7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Kathmandu-8a5df7e182b0b617 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Chihuahua-8ab3d5e240b04204 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Saratov-8af843352b418947 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Montreal-8b0f2a7543d30938 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Ulaanbaatar-8b34d5a7d8700043 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tokyo-8b4b32128481b775 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-Zulu-8b985e439b088880 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Stockholm-8baabde4ebd42a26 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Greenwich-8bb80866ad4e6533 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Jamaica-8bcca8da56ecc437 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Kentucky-Louisville-8c0b98513f3ab0a9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Minsk-8c1bfc837e7be8e8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Aden-8c22ea8707f29f8a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Djibouti-8c3a9ada91d5c3ee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-3-8c57f75ac59f678d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Bahia-Banderas-8c6d6295e524cd82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-iso3166.tab-8c7a55f3ff22879d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Guadeloupe-8c7ed0a7500a3946 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Windhoek-8c8489fb6b92d4b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Argentina-Salta-8c9ff1a9c99f2331 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Kentucky-Louisville-8cef8ac1eafd310f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Galapagos-8d1c86f32b44c575 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Scoresbysund-8d21bdb78c7fcce5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Thimphu-8d2726d5fe198daf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Kiev-8d27e4884e7aaab9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Magadan-8d4d9ddd5e6ce9d6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-2-8d4f1cc70f26da4b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Atlantic-Canary-8dca9f956af63d9b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-10-8dd578e3f3c18215 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Luanda-8dd9f212c3d5250e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Bamako-8df4e25281318b19 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-San-Luis-8e116060197b9e5a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Jakarta-8e348b2ff0979487 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Thule-8e423888c82d7879 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-CST6CDT-8e47d03ec8d76a04 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Santa-Isabel-8e8c368fb20e9837 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Norfolk-8ea5aad41de30fe5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Egypt-8ec0d4806cdfeea1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Rothera-8ecd3a98b92fa3c2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Maceio-8edf7ba1c193b263 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Phnom-Penh-8ef08b0e96757f4c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Lome-8efed044c61c6490 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Wake-8f18b6eefc1e6863 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Nauru-8f327c8d15d9c198 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Rome-8f869860d9a7f32f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Anguilla-8fb76ebe7b17c556 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Mbabane-8fbcba5d4035f79c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Matamoros-905af1e8fb2e6084 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-UCT-906dd4cc44e2488b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Tahiti-90922de3e0fff3b2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-ROC-90a2d661c9569338 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Pacific-90c8f9782fd9f216 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Mexico-General-90d7d0d832dfb1f4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...America-North-Dakota-New-Salem-90f509aeb07dd049 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Chile-Continental-910debf509f542a9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-US-East-Indiana-912250e96f3d9099 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-10-9175aa1cdd8b48b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Inuvik-9187aaa5d0bbdb98 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Honolulu-91af410b0888de03 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Nuuk-91d179d1f3dd1c67 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Fort-Nelson-91d4567eee8a326e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Saigon-91da65835aa971a8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Brazil-Acre-91df7805b726ccb5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Pacific-Bougainville-91f364eb044a3bd6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Guatemala-920ea51a6225a645 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Timbuktu-9226033f84f3968c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Zulu-92260da33b6f4f2d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Sakhalin-926955718186fc96 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Antarctica-Davis-92e4439329f1adcc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Mexico-BajaNorte-930fc6a190a03c44 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-NZ-CHAT-932094120e0b183d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-St-Vincent-9369fac9f9031db4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-Universal-937bfef42e0254cd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Efate-938e13c492c907a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Resolute-93bc54e0758f1df9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-UCT-93c1ddf0eea31941 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Maseru-93c61101becf7139 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Toronto-93d0e265395abe4c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-London-93e726a0baf071ea +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Krasnoyarsk-93f3d32c69b1a813 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Maputo-93fdc7d163b77b37 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Montreal-942a4ab1724f982e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-11-9437439d01a58037 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-6-94468bbd5c81e4cc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Cape-Verde-944ad4ea783d13d3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-La-Paz-94971856cad96a01 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Santo-Domingo-94ce4ad4b3a032f0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Godthab-94ce5a62b5ba852f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Barnaul-94e95117b4787394 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Merida-9515da959b577b5e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Bahia-95620767acd9a2b4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Port-of-Spain-9567d512216e91d1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-13-9577d534f0e1fadc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Grenada-95bcdfbf5b9a28ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Detroit-95cc79ce8b8e8f8e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Antigua-95eecab58ad115bb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Tijuana-95feec09e783dd86 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Barnaul-960eb4ef639409d3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Sao-Paulo-96521f0a833d01b3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-North-Dakota-Beulah-9666a449e658c088 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-UTC-96868400dd7d81bd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-8-970f0f2188587d5f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Caracas-9723a0cb53918349 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Cancun-9752014b049cfdcc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-5-97a5056dcfd1a599 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Atlantic-St-Helena-97f94511a525956b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Swift-Current-9804a94ed987d37a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Tallinn-981700920bb6ca4a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Hong-Kong-985c6a52e2aa1cdd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Malabo-987ae299795477c5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Iceland-987d28238ce37b27 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Madrid-98b7daa0b03e2c30 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Montserrat-98efc091d040c84e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-4-99081208c7e387b2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Chita-990c45e6523e1dda +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Oral-9925c98e7916ee1e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Toronto-999f27741626236b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Luanda-99a9485d08e2e8d7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Brisbane-99c31a488b587c2a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Araguaina-9a7b7f518953e7c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Vientiane-9a821800559cfe38 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Pacific-9a9c4db000f39fda +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Atlantic-Bermuda-9aec64eb81acfff5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Antarctica-Palmer-9aee00d327d1d44c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Monaco-9b024aa55f55dea3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Cuiaba-9b1286a34d8bde5f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-0-9b1c00da20caa601 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Samarkand-9b201456461d298d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Atlantic-South-Georgia-9b266b86a5142562 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Vienna-9b491d2d4ccaf792 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Santa-Isabel-9b819ead05d51da7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Samarkand-9b88f48ab96025e6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Africa-Johannesburg-9b91cf0885717a5f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Yellowknife-9c086a2e9d6371cd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Indian-Mauritius-9c0fd727bb572bd8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Busingen-9c17217ee2d884ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Riyadh-9c4111075f32b21a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Sao-Paulo-9c4f9a2c0691d421 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Adelaide-9c7cc86eb922fe81 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Amsterdam-9c8b07319094ada8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Japan-9c93bdc7bb4c2412 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Ust-Nera-9d0d8b49e8368d35 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Zulu-9d1192080c48fe28 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Windhoek-9d16e6859b46eb65 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Yerevan-9d1e020687589b14 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Bangkok-9d32b6974c36f821 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Majuro-9d36ee43c31e7ce4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Los-Angeles-9d67bf17cb85c8ed +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Rangoon-9d6f78257236f210 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Jamaica-9da108fc07051013 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Timbuktu-9e0071b29846eba5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-UTC-9e23415b179e7e80 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Dubai-9e31ee55e21762e7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Chisinau-9e49f761c2286efc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Efate-9e4a3f89aebc1f8e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Pyongyang-9e55df322adb1568 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Cuba-9e8ac6d0f9abd7ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Saratov-9e9562006a94d7d4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Karachi-9ec6977c8ce3c1e2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Monterrey-9ef7eb484729837c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Scoresbysund-9efc60ad3d282460 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Australia-Yancowinna-9f181b4678c0a6e6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-New-York-9f2605a9cf725d57 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Broken-Hill-9f77e3b751f2dc15 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Resolute-9f7d142ccfe42ce8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Fortaleza-9f834af7d550cc95 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Eastern-9f9c532c1881489a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Australia-NSW-9fd6127320584926 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Gaborone-9fdb7bd9aeaa8871 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Singapore-9ff5933e02286c93 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Macao-a02cad65076117aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Berlin-a065c74722873c39 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Chatham-a08485743c80ce59 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Makassar-a0b6c79de3c769b0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Muscat-a10c69bc43ce1fe4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Chicago-a135cd2aea5c7dfb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Ciudad-Juarez-a14a1a8ee880b7fd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-HST-a16f8e0b71f13058 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-11-a1cf6ab26382eefa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Skopje-a1dd47e04244f39a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Bahrain-a1e04af90ec16537 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Australia-ACT-a20ab4c0e0876ea4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tbilisi-a212434f6c04a7c8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Asuncion-a230400091d01caa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Bahrain-a24bc218412d3400 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Antarctica-Palmer-a28f6c7c08a843f0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-GB-a2d3c3e1ab387e77 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Kralendijk-a39389dd818bf2e0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Atyrau-a3bfa479b3971f4d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Tortola-a3c5e9d1f7a6ca14 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-North-a40966ef528107e8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Dawson-Creek-a421442c7af6a65d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Tel-Aviv-a4390f8a80782a0d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Tbilisi-a45329db137c6e5b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Brazil-DeNoronha-a45ffb795c3b1d0c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Fiji-a46a3e7b88955e6b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Indian-Mahe-a4763d0ebde86708 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Chuuk-a490f110773cb7cd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Minsk-a4b717635b2fc2aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-licenses-tzdata-LICENSE-a4ebb53ea1ad14d2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Vatican-a4eea54d85ec3b3b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Easter-a567892ebe04bf2c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Djibouti-a5c0f9a66030b4b3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Tallinn-a5dd9413af91a371 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Kentucky-Monticello-a5f9809dc27ec638 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Pitcairn-a6297fd5a3b25f7c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Bangkok-a65d947460818570 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-6-a662e2cad9177e4b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Jan-Mayen-a67eb7be1b3d26c4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Macao-a724d58e48b6d6e5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Lusaka-a735e3ea1e7b1db5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Boise-a737ce434a5bcdf9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Gaborone-a751bafdaf2f817b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Kirov-a76a9f653922fd15 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Lagos-a788a31364f41eec +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Lome-a78bb7d1dc213075 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-5-a79858945570dc70 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Brazil-East-a7cfbf15307a13af +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Vientiane-a7eb3af5063e741f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Hong-Kong-a7f3e0e1d0b854de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Guernsey-a80784a1889f9e71 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Budapest-a8b21370f2d5b534 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Indiana-Petersburg-a8bfbaa1276152dd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-11-a8df065c5bdc1caf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Helsinki-a8f6505771b1eff7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Recife-a91c809fd9e93bc7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-Sydney-a957118c6a3dfe7a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Caracas-a979b42e6ffe32cc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Atlantic-Stanley-a984459c5e802f4a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Canberra-a9f380d45bc484a8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Galapagos-a9f79e653817938f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Brisbane-aa13dc5da67c3443 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-leap-seconds.list-aa1b5b92d7dbffdd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Yakutsk-aa1ea76866bd9bb1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Riyadh-aa3c1ad832595979 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-Eucla-aa559e2c5bf7cd10 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Atlantic-Canary-aa9d1491644952cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Palmer-aadde2bd5518ac13 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Iqaluit-ab2aa89bb678fb29 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-12-ab38f130300be930 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Cambridge-Bay-ab39d5c4cadd8a6e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-South-ab8e8ff22de7ddd4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Mexico-General-aba4f4115601b339 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Asmera-abd650c63a995cb5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-Eucla-abff752269a5aeb2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...America-Argentina-Buenos-Aires-ac260416c9b812ce +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Lord-Howe-ac271e431624bb14 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Tiraspol-ac7e4623da10a913 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Canada-Central-ac8184fcb6861c60 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Gaza-ac884b9a1aa18cba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-Darwin-aca7be17188e3f7f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Jerusalem-acb56c574e17dcec +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-4-acb8f2c9c3dd924e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Luxembourg-ad07402a6e95abe6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Ho-Chi-Minh-ad07d6993ad6f03b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Istanbul-ad61b18372ade36a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Blanc-Sablon-ad809808b5329a5b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Fakaofo-ad87177ccc40c266 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Ashgabat-ad9d53fee825429a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Indian-Kerguelen-adac339c5fe796ee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Adak-adbfa52b0d4e9aa3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Volgograd-ae1a3d9ce6f1e2ec +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Cancun-ae264860e0414d63 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Makassar-ae392a3ab9c44011 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Tahiti-ae749513dfe213a1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-St-Kitts-ae98e6776e138180 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Nouakchott-aea73a9ee4ee0c42 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Tehran-aeb96463187db6a3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Fakaofo-aee7eb2409ec24ef +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Atikokan-af0bd8db85abebe2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Tripoli-af14c0d49b3c42d8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Gaza-af1571c1f57767fb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Pitcairn-af5f2b2eecd6ba11 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Aruba-aff28a215db18ceb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Macau-aff66468edb2bb11 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Santo-Domingo-b0a2a4533d2a52a3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Tarawa-b0b14641995f3853 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Brazil-Acre-b0bd8ad937b77531 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Truk-b0de0999340923b2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Lisbon-b0f61e1d4fbab911 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-UTC-b1259359b4378936 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Cayenne-b1432f174ee2c70d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Juneau-b1498e5bd967cafa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Qostanay-b161517c36141812 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-St-Vincent-b1ac1004b8e060af +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Knox-IN-b1d3c56b34732dfa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Libya-b25de5ca2cd5a439 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Zurich-b26883232ec71c75 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-UCT-b273e0ce60655708 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-2-b2cd59b4d7c77c3e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Antarctica-Vostok-b333ea710a547821 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Chihuahua-b36a062583b00216 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Louisville-b3700922b8c593f0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-PRC-b3790c52aeaca5bb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-San-Luis-b394ea575daa3e03 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-Greenwich-b395830de260bad4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Aqtobe-b406a7f97bfb14ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Indiana-Indianapolis-b40f5254b641b6fe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Freetown-b4204ba69bbf03ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Eirunepe-b4435c4a16073a0f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Indian-Chagos-b44572a450a0f80b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Matamoros-b457cae4774d2f05 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Rosario-b45817f92d3df27d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Central-b46fbb8e2224b794 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Shiprock-b48ac55188ee6f2c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Martinique-b4d111e044420c4c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-CST6CDT-b4fd9e520e4dd502 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Merida-b5319251f60c5796 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Dawson-b550db08d2ef9c3b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Singapore-b553e03a91486ecf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Auckland-b57477d6e23b2a7d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Muscat-b5c27f3e6f3e4df9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Aqtau-b5d0cccf57108fc6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Curacao-b5e93b27aea825d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Knox-IN-b5f70d422e2a8a13 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Banjul-b61aa7d5282613e0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Montevideo-b65722f47f710302 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Punta-Arenas-b65d0f4755ead389 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Winnipeg-b6712421c0267fd9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Ciudad-Juarez-b68540147460d35b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Lubumbashi-b74f32bae7ed8614 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Atyrau-b75a4245a691ec88 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Aden-b768b9129fda10c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Pangnirtung-b7abeef507f855ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Kamchatka-b7cdd6ead0689e94 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-Hobart-b7ed10eb774e2592 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-Universal-b7f0784a9e3bc300 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Eastern-b80a228730a5438a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Abidjan-b80d09f476625e85 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kuwait-b81639f59cc78feb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Taipei-b81b7678b5daad70 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Barbados-b840afcaf626c81d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Samarkand-b84e3047148d0f86 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Miquelon-b8886359f1c30665 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Sao-Paulo-b8b93d8a429a388b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Noronha-b90775fae20a4731 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Canada-Pacific-b90f9080613fcccf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Portugal-b962c0206734f201 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Tarawa-b97929b57d330b2e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kabul-b9dedb80610152a5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Vladivostok-ba30b5ee4bf3045d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Michigan-ba383ec1c00cddfd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Hovd-ba56764975f0a45e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Pyongyang-ba5989c1b27da58e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Bamako-ba79439521a9c6a5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Cairo-ba8cfcad91664531 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Harare-baec36dfc8704334 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Niamey-bafbb9f89ff1ff82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Yakutat-bb003f47678aa40d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Hawaii-bb0af169c921bf2f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Barbados-bb0d624da24d7af2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Pacific-Guadalcanal-bb0ddea73dc858f1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Eirunepe-bb11da9be14836b9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Harbin-bb1b9fcbea7c3b7d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Bogota-bb34f097c6dd5e52 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Kamchatka-bb66e6d0f67021c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-5-bb7d0183c1099041 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Ashkhabad-bb9d937e46c5a7e0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dhaka-bb9e7ec63b61f276 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Galapagos-bbbe0dc1b0f1b072 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-Catamarca-bc2fde7e466916de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Novokuznetsk-bc6796345ceefe85 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Irkutsk-bc78a06577793c26 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Bogota-bc7b87ef610a71a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Monrovia-bcc624e6afeeb999 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Miquelon-bcd0b3be8d95d5a9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-WET-bcd79e4f281897d7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Atlantic-Stanley-bce2ba69d93a0110 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-WET-bce8c94782109871 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-4-bcff92c6a1511738 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Canada-Pacific-bd0b65e7c53cd28c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Almaty-bd435cb0c4c034ec +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Rankin-Inlet-bd4fa151ba6382b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Monaco-bd5f51b699deae0c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Catamarca-bd6e420cfc281133 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Rio-Branco-bdcef3f8fda1ee95 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Beirut-be269c915ca60248 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Blanc-Sablon-be2aab5fba77f017 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-GMT-0-be5232ef2c6d8c0b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-Mendoza-be561c81cd000e34 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Pago-Pago-be894274d5d625d3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Abidjan-be9602d5270660c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Swift-Current-be992afee149fdb0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Belgrade-bea63c6e3542d1d3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Juba-bea70a295a4361df +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-9-bf0fb8645e02a849 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Indiana-Knox-bf5b940188da1fad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Los-Angeles-bf72a7406560df47 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Baghdad-bf7335c0644060e4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Halifax-bfe7b0706ee007ef +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Denver-c07a184605dde1a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-c07f61f581633097 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Darwin-c0864e0c484054c1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Asia-Yekaterinburg-c0aea23a8c418205 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Mariehamn-c0c7f0920c217d73 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Qyzylorda-c0ce30b5bbe8ff3c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Egypt-c0e23811624c7950 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Indiana-Knox-c11ca4f7c850c9cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Creston-c15a1aff4b4fe84d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Campo-Grande-c1961cf40430f883 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Colombo-c1a2402565bb33c2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-Buenos-Aires-c1a53a0134fb0f5f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-US-Indiana-Starke-c1c983a553f31543 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-11-c2086c656309d5b5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Ciudad-Juarez-c24a96416b2b0ab8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Tegucigalpa-c24ee3269c517a3a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Tirane-c26248af8fc07064 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-GMT0-c298a2e6e73d3817 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-0-c36b2b8f45e2032c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-W-SU-c382a06ea74a8f78 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Bishkek-c406e1204f613950 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Chongqing-c44b6fff862d65cd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Novosibirsk-c4c1aac97f0b68bf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-0-c53c5f53cbbc87b2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Rankin-Inlet-c5cd0b7ff12d409b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Maputo-c5de490d6899f926 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Conakry-c6181ac8d29d4bc9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Chisinau-c69bb6cf22a3aab0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Indiana-Petersburg-c6a6c79b9fba63b0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-North-Dakota-New-Salem-c6d2e6e21b0dc678 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Menominee-c70a9d2c06ed2a7e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-GMT-c739dfbdf01937e8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Almaty-c74a3ffd617ddc78 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-HST-c74d531a1a26ad6d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-Tucuman-c75982e533c61d3c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Manaus-c764be80a800a81e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Dawson-Creek-c76521be78a9512f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Johnston-c77ad49ab8ea7148 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Bahrain-c785a86fa751b8bf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Turkey-c79cf4b76a072618 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Jerusalem-c7b597398bf58186 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Kuwait-c80ac9c0dcd0051d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kuching-c83c541f92943c2d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-2-c843cc9009d01d9a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Qostanay-c855ccd16be31ef2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Uzhgorod-c87fb596ea6f7c81 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Niue-c8b53e5a80e74cc0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Madeira-c8d0ce73fd39384b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Canada-Newfoundland-c8e2dc1c161b2087 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Nipigon-c90f1818114568ef +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Colombo-c92cd497813d08d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Inuvik-c939eebf4f29e143 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-Catamarca-c93c382667dd9b58 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-7-c93d3af8a9dbcb44 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Mazatlan-c93de14541209fac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Novosibirsk-c9541edd9fddb44c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Kigali-ca04255831de384c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-1-ca0a712f99e32df8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Monaco-ca2f56ec2ae54e65 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Ulyanovsk-ca530d84f6d17f4b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-NZ-ca5ac15c579c3e01 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Astrakhan-cac39eebe9577e81 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Zaporozhye-cad0f0a33f2ab0e1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Asia-Ujung-Pandang-cb219c1f2f1411c8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-La-Paz-cb909cfa542a1649 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Nuuk-cb912ed2ad3c38d5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Kosrae-cbcc38e041551cad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Istanbul-cbdebb38eb204d78 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-NZ-CHAT-cc2b7cc555452129 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Paramaribo-cc2e2bc6f081c99e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Pacific-Guadalcanal-cc3f0bf903b6a49a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Havana-cc539447ed2585e9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Cordoba-cc579c096e438e82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Arctic-Longyearbyen-cc95bca5cf84fbf1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Yellowknife-cca72e2778613e9a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Beirut-ccc40b569b11c67e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Indiana-Vevay-ccccc6f2963b38cd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Syowa-cd13ce2bef65a37a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Hongkong-cd4de9de3d862046 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-Perth-cd98e6b68f5ff529 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Canada-Saskatchewan-cda3d702fd9bdbf9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Vancouver-cdb3e92c39b22f33 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Samoa-ce1920ca156b5ac9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Cayman-ce41494a4bd57e62 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Colombo-ce628e3dd1e748c3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-Antarctica-DumontDUrville-ce692e890036e731 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Grenada-ce9caa7dddcafa4c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Dacca-ced2a94eaa29444f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-UTC-cef2b18440be2b49 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-Universal-cef5e0bd76ab90ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Addis-Ababa-cf49509eb2a836a8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Brunei-cf6646e826cbc22a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Guadeloupe-cf67b9610614b2c9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Regina-cf7deb9a927fd49a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Bangui-d03cdb554a4c9b17 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Godthab-d060cd22cb24e8dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Katmandu-d0d3e795b2606ccd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Barbados-d13afce26471f9ee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Indian-Comoro-d16d537fadbc5166 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Antarctica-Syowa-d1a370764ca7856c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Maseru-d1a910246b1d8d19 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Eucla-d1b1c20bab0e7927 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Yancowinna-d22a63c1e24bea8d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Bujumbura-d234e8a159f0f620 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-St-Johns-d239912d3debb20c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-El-Aaiun-d23a562f7a9fe131 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-ComodRivadavia-d2411d71004e83bc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Rankin-Inlet-d2418ce6124a2d95 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Marigot-d27b5432fa844884 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Kirov-d343079f25777e38 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Los-Angeles-d34d60cd03314b84 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Martinique-d358412f7693bca1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Accra-d35b4e25af52b33a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Aleutian-d375c2fcca0252e9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Indian-Mauritius-d399c8e48ad68bbd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Yangon-d39bbe91d9e6f3be +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Brisbane-d3bde231fe10ae84 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-3-d3d718743c9f9599 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Pacific-Kiritimati-d40d6fa3212aca6f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Norfolk-d43d74e42fcb3fa8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Vaduz-d45d61469b2f775b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Porto-Novo-d4860f946bf2cb53 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Marquesas-d4ac91462fa78d5d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Atlantic-Faeroe-d4b2071ac7788553 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Johnston-d4b7e226ec564841 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Vilnius-d4fa6089d240032b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-La-Rioja-d5278a54e24249ff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Kwajalein-d563bbd086791581 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Chita-d5ba06dd27cb7f24 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-8-d5bc5615789db9b3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Africa-Johannesburg-d5d90604412f7250 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kolkata-d5f0081be0bbbe05 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Brussels-d5f20cbb66d835fb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Luxembourg-d635f7e531aa5422 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Antarctica-South-Pole-d64fbf3c032eef89 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Yakutsk-d67004226137393f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Canada-Newfoundland-d6978e7061980e6b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Ouagadougou-d69addbdb7488dda +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Recife-d69f86f677ca2e22 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Pohnpei-d6abab62e8b463e9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...America-Argentina-Rio-Gallegos-d6c1e9b09c944ec8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Athens-d6d18a984d313af6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Prague-d6eaf29e3f3a2c76 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Asmara-d6ef1ce0409c2cc1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-13-d6f735de940b4df4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Sofia-d708aa6a7e50b8e1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Dominica-d723bb79e2c26c18 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Indian-Kerguelen-d74449d9c487518e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-5-d752d147595a1665 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Brazil-Acre-d75ffbce10d4eada +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Dili-d78599e031b8dec5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-St-Barthelemy-d7e82b452fd64f0a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Indiana-Tell-City-d8178d1fa10659e0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Belfast-d81caae6307f7fb5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Casablanca-d86026b8ffeac7a0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Nassau-d87d9e8898812e24 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Maputo-d890512dd0728489 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Detroit-d8b75f27ecb30e39 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Atlantic-Faeroe-d8e626f5c3e9adce +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-St-Thomas-d94511567d1d7619 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Zurich-d99914e5962e535b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Andorra-da2dfd396225f081 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Rainy-River-da30c37c3fbf35e0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Vientiane-daf207336cdea015 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Novosibirsk-db3afa97612c1629 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Enderbury-db4a84238f4ca2a1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Nome-db4e5164f025c851 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Kwajalein-db6256e8e65940cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Lindeman-db80c29270690f39 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Khartoum-db86bdd03106ae64 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Asia-Srednekolymsk-db91d5592f0d6de1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-4-dba0788a1f0e2c70 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Grand-Turk-dc0b29cf00349586 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-9-dcd107f4f4e9b958 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Thimbu-dce2eeed2bd27688 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Indian-Mayotte-dd0f973f64af02d7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Riga-dd4c109f2e01e281 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Palau-dd5e2afe7d72b06d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Brazil-East-dd6e8c14e0ece3c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tel-Aviv-dd7ad1f02aea6454 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Truk-dde8f3f7e3209dd2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Tirane-ddf7ca51bcb03d1a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-3-de019b8653c19713 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-W-SU-de344113da5da2de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Brazil-West-de3548468eef9d16 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Matamoros-de373411e185a1aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Vostok-de3b5f50d4b71b61 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Belfast-dec4d522eb3bebf3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-0-df0d1d88dc23264d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Riga-df210f363d0e0cb6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Rosario-df280260e03d0676 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Yangon-df45b8adcbbb21fb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Indiana-Indianapolis-df47c9ad0519de3c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Arctic-Longyearbyen-df4afe953541bb64 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Boa-Vista-df508f1e010eadce +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Stanley-df5451a770345f6f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Vilnius-df9ee898f3ddfdad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Copenhagen-dfc125df56791e97 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Santa-Isabel-dfdd2d7f707dcaa7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Lindeman-e002ae66a3b29e28 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Nuuk-e0304f2f3eeaaf48 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Bucharest-e05393ea9f0a112e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Qyzylorda-e05b5dbee2a3bf65 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Cairo-e0662aad7fcdf02c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Tasmania-e0674137f1f2c7c8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Ulan-Bator-e0a3bb9460447656 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Argentina-Jujuy-e100893d7d8bcb57 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Queensland-e11361145c781915 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Mauritius-e145e060347d3b6c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Comoro-e15b3d1e1d9066ce +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Thunder-Bay-e15c699568dbae72 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Belem-e17563ff2a43e8d4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Gibraltar-e1b95b8bd4958133 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Porto-Velho-e1d144dde5f5ffab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-12-e1d5cf18af6c09ca +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Vaduz-e21da58e5d2909c5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Glace-Bay-e23c4fd0551f370a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Montreal-e2a50172684722e6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Coral-Harbour-e2bd4642bec00870 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-13-e305cc26d1e97076 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Puerto-Rico-e30ab90edfc9d465 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-Ushuaia-e30e102c9f3e3d94 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Antarctica-South-Pole-e31ce88f7e5ebf83 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Niamey-e33b9c91c0a76edc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-7-e344b37a164e6607 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Israel-e379158171887084 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Indiana-Indianapolis-e39fd5fb01fba60d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-El-Aaiun-e3ee023d147e84c5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Antigua-e44e20525adcfe97 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Moncton-e46c4cdda28861ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Punta-Arenas-e4a51840e51e5569 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Africa-Brazzaville-e4d1940983cd44a5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Tongatapu-e52e1a231f866b2a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-EET-e5cebc84f0f5e7be +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-North-Dakota-Center-e5d5244845ccd7d4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Hebron-e6053ee9b858f2de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-W-SU-e60cdbf81505b08d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Saipan-e62bcf7b8ff96d3c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Hong-Kong-e665ed7aa729b7c9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Amsterdam-e68d94781cbd43d3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-6-e6b47f5f87fa6241 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-1-e713c56aa924f7a1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Norfolk-e719f705636d263c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-7-e74f4f9de1b3706e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Asmera-e76c327509c1b7ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Arctic-Longyearbyen-e78d93cf91d35fe6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-zone.tab-e8055321d356644e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Universal-e83414d8e03daf73 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Astrakhan-e83a71484783e817 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Abidjan-e844c340f31121f9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Grand-Turk-e8596956e725beae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Indian-Reunion-e8879ecfe722a5d9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Fiji-e8c2813f7bf5f76c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Australia-Queensland-e8d347dad156abff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Tripoli-e8d9ac88fb1df47e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Cuba-e918976becca4cd5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Indian-Chagos-e95941e8c711003d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Kaliningrad-e9899d501c3600a9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Argentina-Jujuy-e99d04a4108fc549 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Aleutian-e9a2b36c4daf73ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Kuching-e9c3c540281373c2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Martinique-ea280b928b29765e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Chile-EasterIsland-ea29c7dabde26c3e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Fortaleza-ea2a9b242568dbe9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Pacific-Port-Moresby-ea7bfe22f503b380 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Indiana-Tell-City-ea92544cadea52e3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Chongqing-eaa37810c7504ee2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-CET-eaaa87321f866292 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-St-Kitts-eace2e5e90e967e2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Ulyanovsk-eae3e50c71d6e65d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Pohnpei-eaee9b76002f5175 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-Buenos-Aires-eaf9ebe0294e5a68 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Alaska-eb3ce691a44950d9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Poland-eb465867301e1d95 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Indian-Mahe-eb6cb9925197e241 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Indiana-Marengo-eb8afcac2580f0f3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Windhoek-eba24c8f704c85c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Inuvik-ebd368215f3b2e2e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Godthab-ec1332af1b1eef51 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Mexico-BajaSur-ec1a1f251f085d6f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Catamarca-ec3dc8716b84df1c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Cocos-ec3edb8e2baf30ce +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Indian-Christmas-ec519075f3bdf8d5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-1-ec6982b2a2172134 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Indiana-Vincennes-ecbe3ea60a4b6f75 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Damascus-ecbe429fd08047ed +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Pangnirtung-eccec01f5eb24823 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Phnom-Penh-ece3088ba8a745a9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Yukon-ecff106822079bdb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-leapseconds-ed5ec5c150cdc474 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Malta-ed69e55e541c8c56 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Coral-Harbour-ed904b5eec65d6d4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Lubumbashi-eda0b3c5282e4cc0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Recife-edde3ac40ad7844b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Bogota-ee03fb9442438dfd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Kuala-Lumpur-ee5130b6663a4502 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Mawson-ee6a7dfea9c76691 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Pago-Pago-ee7aa1a64911f8de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Europe-Isle-of-Man-ee8e7c898465e014 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Atikokan-eeaa010b839d2301 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Kwajalein-eeb5db21eebb8bfd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Dacca-ef0d8ee42927ebad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Chile-Continental-efa323dda7cbe0a5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Ceuta-efaf41cb4752e7ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-GMT-0-efc7985082dec0ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-12-efdf00715db4016d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-3-f01fd3905d9b144d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Samara-f08bb013a41d1a90 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Bishkek-f0dc73329256437f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dubai-f10cbcef7a9cf1ed +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Asia-Srednekolymsk-f13d65c4d148c12c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Japan-f15ca447042e77dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Dakar-f1634eb1b5441878 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Indian-Cocos-f1a8e296000c4054 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-EST-f1b5fa151d52ce31 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Jujuy-f1c4fae62f35d8ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Zagreb-f20dc3993e34a535 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Accra-f2b5202ef23964a0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Guayaquil-f2cff911ce94b25b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Nicosia-f2fc78f6b6ab4c77 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Israel-f3accc5b5834bfbd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Bangui-f3b97d30a6671ac9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Sarajevo-f3d7989f8cff3cda +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Isle-of-Man-f3e3659b57d2f535 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Yakutat-f3f04fb3e6c6b611 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Nome-f40ed9b257055cb0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Kolkata-f4100ba843feb3c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Boise-f429c5404e2b47a4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-North-Dakota-Center-f456edf71f63cf67 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Qatar-f4aae74afaf49cc7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Apia-f4d0f752c7086584 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Maceio-f4dff9266e70b80f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Winnipeg-f4f761245b0a0122 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Navajo-f5043da34fb69f6f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Michigan-f54e1c916d9a0431 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Ensenada-f54fab344c589154 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Africa-Dar-es-Salaam-f555b54f497e445f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Mexico-BajaSur-f585bbc1724601ca +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Choibalsan-f58d50c9d240d99f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-New-York-f5ac51c915881bfe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Thimbu-f5b6c0a0b2aa4fac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Kirov-f60de5d7eca277eb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Jayapura-f60f4fc2e81816f9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Libreville-f6273bdbb8823c5f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Guayaquil-f63114445a87743d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-ComodRivadavia-f65780a75c58f840 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Gaza-f67f77f9e03dd3d9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Volgograd-f7404b525877f069 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Lisbon-f76c29648b4b4a61 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Ho-Chi-Minh-f798a26e1a86b16a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-Greenwich-f7b8e018b5f96a8e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Paramaribo-f7bd30322eee62aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-8-f81b7f0667e18573 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Cuiaba-f8420aedd589be6f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-7-f85f5509f20c3435 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Canada-Saskatchewan-f897300ee4e28938 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Oslo-f89cc3d7b95218dd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Novokuznetsk-f8f6e629903c2f82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Europe-Isle-of-Man-f908e7ee3977d1f0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Luanda-f90dd834739e5922 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Winnipeg-f9337571e58918bc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-GB-Eire-f94d7805574631cb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Paramaribo-f956386a9a279b87 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Tirane-f96cc18187a4fc81 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Indiana-Petersburg-f96ef00e52fa5d80 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-MST7MDT-f96ff3e1fc11f3ea +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Pangnirtung-f99ed9f92195ba11 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Asuncion-f9cb4aefd8bc5ea7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Atyrau-fa2ea4fc75514409 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Lusaka-fa353ff05b94c7ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Puerto-Rico-fa5a97068088bf2f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Enderbury-fa9bd3e68836fbf4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Kampala-fa9f06d723857df9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-Zulu-faa87798374b9dfe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Sitka-faa8bf84bfb04362 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT0-fac85ed1531168c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-GMT-0-fac9d61cbd3e774a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Chatham-fad5a1156e5e40a1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Damascus-fad8ad1eafe5d63e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tashkent-fae95515cb95f8ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-6-faedd473c070466d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Bissau-fb1b19edf0d7aa04 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Mogadishu-fb2c9bb793b5d024 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Mountain-fb3d146c3d21d461 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Fortaleza-fb4da518a93eb1c9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Brazzaville-fbb751c2ce6f471b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Antarctica-Macquarie-fc01909904cec67f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Belem-fc4d3ce1fa67a1bb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Cuiaba-fce14edc205037c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-8-fd19f00d6d414d85 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Moncton-fd3e4b30bcdadd08 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Christmas-fd4bb7fb9aa102f0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Noronha-fd943e89303e6bda +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Manila-fdbf117a51bce9de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Madrid-fe119658f548a6ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Omsk-fe17256b26a285c1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Mbabane-fe4585c9f4b6d91a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-North-fe54c8b9bec9b870 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Managua-fe730b4d526c4506 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-1-ff0069181e975bf4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Aqtobe-ff2d8dcb56fdca1c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Berlin-ff3c4c572d1b7fa8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Choibalsan-ff671b208af6cb0f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Funafuti-ffac86c666b9298e +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.joda.time.1.6.2-5a454c453f632e06 OTHER SPDXRef-File-...com.ibm.ws.org.joda.time.1.6.2-1.0.81.jar-f27a7f9ec07699cc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 CONTAINS SPDXRef-File-usr-share-libgpg-error-errorref.txt-7a0d8a55fc820f96 +Relationship: SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 CONTAINS SPDXRef-File-usr-bin-gpg-error-901be8daec8d0325 +Relationship: SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 CONTAINS SPDXRef-File-...share-licenses-libgpg-error-COPYING-b3f84ce5234a5d5a +Relationship: SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 CONTAINS SPDXRef-File-...licenses-libgpg-error-COPYING.LIB-ea3c6828fc87e12f +Relationship: SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 CONTAINS SPDXRef-File-usr-lib64-libgpg-error.so.0.24.2-eebe04898dc1104f +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.config.schemagen-5b76b2736b884d7f OTHER SPDXRef-File-...com.ibm.ws.config.schemagen-1.0.81.jar-fff7598d8c4aab16 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.metadata.context-5ca4d7a2c0d58f0f OTHER SPDXRef-File-...com.ibm.ws.javaee.metadata.context-1.0.81.jar-e54c4be548eb5158 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 CONTAINS SPDXRef-File-root-.bash-logout-20745bd95ce05027 +Relationship: SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 CONTAINS SPDXRef-File-root-.bash-profile-6cb0a62f87e9d043 +Relationship: SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 CONTAINS SPDXRef-File-root-.cshrc-a0519b5a2f52e968 +Relationship: SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 CONTAINS SPDXRef-File-root-.bashrc-f73edd36ace924c5 +Relationship: SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 CONTAINS SPDXRef-File-root-.tcshrc-f8f2924eed0d9ed3 +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.common.ee10-5dc2391a0014e80d OTHER SPDXRef-File-...io.openliberty.org.jboss.resteasy.common.ee10-1.0.81.jar-44e873a0b3006e0e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-00c7678a0465dc8f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---repo.cpython-36.pyc-03422275b1396cca +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-module---init--.py-03eeede8583196dc +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---selector.cpython-36.pyc-047ef222097cadbb +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli---init--.py-05822f7e73948350 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...repolist.cpython-36.opt-1.pyc-0593e160660a364a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-install.py-06a80341b58be448 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...transaction-sr.cpython-36.pyc-07583e92e9cb88e1 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-07b4378a4349c8e3 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-module.py-07c2c79c41fccced +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...transaction.cpython-36.opt-1.pyc-07f09f8ae904b2c4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---lock.cpython-36.pyc-0bc47ff4e566f3bb +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...updateinfo.cpython-36.opt-1.pyc-0ddec09c228ebb1a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---sack.cpython-36.pyc-0e15f18befeaa602 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---module.cpython-36.pyc-0e7f4d20983d3bc5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---check.cpython-36.opt-1.pyc-0e94a4ae6b6d6d8d +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-i18n.py-11042d64e1fc5daa +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnssec.cpython-36.opt-1.pyc-116cd6771bf58e60 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...match-counter.cpython-36.opt-1.pyc-128d62c776a9fa24 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-usr-bin-dnf-3-16175176c3acd9d0 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...cli---pycache---main.cpython-36.pyc-1728d6580654be15 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...history.cpython-36.opt-1.pyc-182a1ad6922b4835 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-commands-mark.py-182a7e144ce5ea52 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---plugin.cpython-36.pyc-1985c1f7111dc797 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1b49c6b81194c68c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...substitutions.cpython-36.pyc-1b59f1abe691c21f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---install.cpython-36.pyc-1bb93db8f38cbdb7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-crypto.py-1bde3289b6ac0bc2 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---query.cpython-36.opt-1.pyc-1dd9c5ffca7cf891 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-1eda49d877373753 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...distrosync.cpython-36.opt-1.pyc-1f5dcc0bdb509660 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-24411cc0288a8eaa +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---deplist.cpython-36.pyc-262830bc6024103d +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-db---init--.py-2787429543e9434f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---dnssec.cpython-36.pyc-2933f8f9b7763a6f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-conf-read.py-29e079893cdf14ac +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---group.cpython-36.pyc-2bded1c754d6c062 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---package.cpython-36.pyc-2c93cf7a05aee956 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...search.cpython-36.opt-1.pyc-2dd4538300ae1af7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-conf-substitutions.py-2e96d67433c81a8a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...rpmtrans.cpython-36.opt-1.pyc-2eb0dde0f0a0264e +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...plugin.cpython-36.opt-1.pyc-2fa70ebc5ce6d099 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...persistor.cpython-36.opt-1.pyc-31166b4a8bcac161 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-315264f5a5c4102f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...reinstall.cpython-36.opt-1.pyc-316d2ad932910939 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-upgrade.py-317e3998338ce4bc +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...option-parser.cpython-36.opt-1.pyc-322c9ca2c77c4ae4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...package.cpython-36.opt-1.pyc-32d28ea693bf5c79 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-34e54a5f6cb733f5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-db-history.py-350416ec80f4e833 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-sack.py-35a13e587abc55e3 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-persistor.py-36ef8ff52871a085 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-group.py-372a4f51245affc7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---distrosync.cpython-36.pyc-37be5ad5c0dceea7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-query.py-37beffbff4a8f559 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...rpm---pycache---error.cpython-36.pyc-384d19217f6f9353 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-clean.py-38a8c3fb28190884 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---callback.cpython-36.pyc-397552d6b0581657 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...option-parser.cpython-36.pyc-3d40e26891565636 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-remove.py-401d4e38ab2c2e4f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...repodict.cpython-36.opt-1.pyc-40b08e4efc1f335a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...downgrade.cpython-36.opt-1.pyc-42d204e56c841b23 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-conf-config.py-431e9bcf6e0aa7e6 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---goal.cpython-36.opt-1.pyc-44227711d41cf706 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-module-module-base.py-447a0c64e148faf5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---clean.cpython-36.pyc-449d32d7f2c02903 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-subject.py-455d7e14d5003d46 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---mark.cpython-36.pyc-45db95b9b14090d4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---misc.cpython-36.opt-1.pyc-45e4d47fdaa09ac5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-repoquery.py-46b1a34cc04bfaf5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---shell.cpython-36.pyc-475ceeeab1eb832b +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...demand.cpython-36.opt-1.pyc-485d5bf28937de75 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-history.py-498d5952bff47324 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-rpm-error.py-4c0281d9b80caf39 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---const.cpython-36.pyc-4c20d40b03d76551 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---repolist.cpython-36.pyc-4d7b7e4ceed53e34 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-rpm-transaction.py-4d844137c07f992c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---remove.cpython-36.pyc-505332668dfff967 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-autoremove.py-5135419935dbc959 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---crypto.cpython-36.pyc-51d3c89522fd68f8 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-callback.py-51e3f5f61a64ac78 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-yum---init--.py-5393d7ae28d7212a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---util.cpython-36.pyc-53cbad5e69ba5176 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-drpm.py-5416c87398c66e95 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-exceptions.py-5466e17bb6d714b9 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-updateinfo.py-54ea780415b7dfa0 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---module-base.cpython-36.pyc-557351f9efaee3ad +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...conf---pycache---config.cpython-36.pyc-55a4cdca0d713a2e +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-rpm-miscutils.py-57cbebdce76c91cb +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...repoquery.cpython-36.opt-1.pyc-57eb9537dffa5bb1 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---group.cpython-36.opt-1.pyc-599535cf45df1f43 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---goal.cpython-36.pyc-599997576b4c27bd +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...callback.cpython-36.opt-1.pyc-59c4decbbf1e166f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-distrosync.py-5afa8f9047a8e2cc +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---lock.cpython-36.opt-1.pyc-5b5e093ce3ca06f7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...progress.cpython-36.opt-1.pyc-5bc95e7947421f24 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-rpm---init--.py-5d5556a6e9691ccd +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-history.py-5e8541bd2b4a4de8 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...cli---pycache---utils.cpython-36.pyc-5ed71843863c8a46 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---logging.cpython-36.pyc-5fdc886fe0031345 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-comps.py-6124f2ce2e687167 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...subject.cpython-36.opt-1.pyc-62e71bf69d8e4b81 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---reinstall.cpython-36.pyc-630a1a8acb7b10d8 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---updateinfo.cpython-36.pyc-63309467643ac91b +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-6370fb055dd402b3 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-demand.py-6413ffa869811762 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-db-group.py-6432680506170247 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...substitutions.cpython-36.opt-1.pyc-6513861e07db070e +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-downgrade.py-6a6eb765c74f4e62 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-aliases.py-6afb6745a44b8a95 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-upgrademinimal.py-6be47d4abbfb5d03 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-shell.py-6bf46fbe5a693307 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf---init--.py-6c5355011fa0f007 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---repoquery.cpython-36.pyc-6e180141c29c3e84 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-cli-cli.py-6f498cdf056f6094 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-option-parser.py-6f8bc26954c5b3ef +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---miscutils.cpython-36.pyc-72dd692fc7df3ed7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-transaction.py-738a20cf4c5f8f96 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli---pycache---cli.cpython-36.pyc-73cd03ccbb9848c4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---alias.cpython-36.pyc-753ff8dad27eabc2 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---connection.cpython-36.pyc-76904ec1f3ece1b5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---alias.cpython-36.opt-1.pyc-76c1db2fdf967bd0 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...output.cpython-36.opt-1.pyc-77b609e075b04b47 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...connection.cpython-36.opt-1.pyc-77c80c9971a7a7ce +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---error.cpython-36.opt-1.pyc-77eef482d75a1cc0 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---subject.cpython-36.pyc-791fbec357f70ef6 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...install.cpython-36.opt-1.pyc-7925ccabf4ef50ba +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-makecache.py-793faf3264cba9d6 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...db---pycache-----init--.cpython-36.pyc-7ad730d1a4e13d30 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...cli---pycache---output.cpython-36.pyc-7bce6b010aaa653f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-commands-swap.py-7c0ff1f7784d886c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---base.cpython-36.opt-1.pyc-7dd1340a6265bf62 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---query.cpython-36.pyc-7edb1f1d9c5cb8a2 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---group.cpython-36.opt-1.pyc-7f174726f1a079a4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...selector.cpython-36.opt-1.pyc-7ff31d284e9c7aad +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-80f3d3dc0bda7ef8 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-term.py-819a8a5ea7c2b28d +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---repodict.cpython-36.pyc-838d50e06408095c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...cli---pycache---demand.cpython-36.pyc-8672375d166d0502 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-89bbb842466bbb02 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---i18n.cpython-36.pyc-8bd8ca7cd4947efe +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---search.cpython-36.pyc-8dabc8107be9bce2 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-package.py-8f52be1825471443 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...transaction-sr.cpython-36.opt-1.pyc-8f91cf46cc23c362 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...makecache.cpython-36.opt-1.pyc-90afa71d25bbf805 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...completion-helper.cpython-36.opt-1.pyc-90f1f87db5ab760c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-goal.py-91146f909fcc21ee +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---transaction.cpython-36.pyc-954075378a857790 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-plugin.py-970d14eba055734a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-reinstall.py-97f1a465ab16c054 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...cli---pycache---aliases.cpython-36.pyc-9816a0fd3fbced6a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9828ecf2aec54cfe +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---makecache.cpython-36.pyc-9ba0c03b6d94e219 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...upgrademinimal.cpython-36.pyc-9d753bbf4831d481 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-dnssec.py-9daa809abbd884b1 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---swap.cpython-36.opt-1.pyc-9db8ed01f5cf1122 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...match-counter.cpython-36.pyc-9f3d662b652f2cbf +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---shell.cpython-36.opt-1.pyc-a0c2afbd30d60f44 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...deplist.cpython-36.opt-1.pyc-a0c445b898769e58 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...db---pycache---history.cpython-36.pyc-a13cb7fd253399e6 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...history.cpython-36.opt-1.pyc-a2c4059fc467287c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---autoremove.cpython-36.pyc-a558111badf2e1fe +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---read.cpython-36.opt-1.pyc-a5f1204c53cd5641 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands---init--.py-a7659c5ffc25c094 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a88541ab38d1f1f5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a8b59012358588df +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---transaction.cpython-36.pyc-a9555597364cf4e2 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-repolist.py-a9b957504581acbd +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-abcbeaa554ba4e28 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-ac11cc1c39799106 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...cli---pycache---term.cpython-36.pyc-ae69fea3ad3a580f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...upgrademinimal.cpython-36.opt-1.pyc-aed128b02c909830 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---clean.cpython-36.opt-1.pyc-af5e4beee9a2d7ae +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...logging.cpython-36.opt-1.pyc-af76629dd006b8be +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b1139e9c9619c90a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...cli---pycache---format.cpython-36.pyc-b27896835f2daf59 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-const.py-b3ca8554ccbb7d90 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-b3f737d8a8f9769a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b54823917cdeaf35 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-util.py-b695c4a34784d8d7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---comps.cpython-36.pyc-b6d63207aaf3ab5a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-match-counter.py-b7062421359d830c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...module.cpython-36.opt-1.pyc-b7af0d9d338128d5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-progress.py-b9986da631339c8c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-ba97889a9069218e +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...miscutils.cpython-36.opt-1.pyc-bb1aa45888575450 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...yum---pycache---misc.cpython-36.pyc-bb35d60e9d4e8a0c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-repodict.py-bb6a43a34d964abe +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-search.py-bd067c8ecf1227bb +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-repo.py-bf77464330f030a9 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-check.py-c0b60e7e87889de4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---swap.cpython-36.pyc-c35b6166b2b25d8c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-c39789defa526a69 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-transaction-sr.py-c45158a768e1933f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---sack.cpython-36.opt-1.pyc-c47164ea9ef90b6e +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---progress.cpython-36.pyc-c7ed56d1bf89719a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---repo.cpython-36.opt-1.pyc-c8b3c387378c411a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-yum-rpmtrans.py-c9f8ccc3a41bdc28 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...history.cpython-36.opt-1.pyc-cab1c4e919461336 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-pycomp.py-ce82cafd0f4ffd21 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-conf---init--.py-cee531368360561d +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...crypto.cpython-36.opt-1.pyc-d0c3ba32f49127dd +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---base.cpython-36.pyc-d3037198d53e2bd0 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-format.py-d3cc77b0e5ef5dba +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---history.cpython-36.pyc-d419def234a54b6b +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d4b1afc98f2a74e4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---upgrade.cpython-36.pyc-d53e04f34c737c20 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-rpm-connection.py-d6193c104bfe9f26 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---pycomp.cpython-36.pyc-d7b7bceaeea66163 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---rpmtrans.cpython-36.pyc-d82813346941f141 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-alias.py-d8ac939e3a19c5d9 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...aliases.cpython-36.opt-1.pyc-d8c18ffce3de4ba9 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...transaction.cpython-36.opt-1.pyc-da247976a74bcc72 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...pycomp.cpython-36.opt-1.pyc-dbb8aceba1d600ca +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-output.py-dbf356f8e33953f2 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---persistor.cpython-36.pyc-dc5339c11d897946 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-deplist.py-dc7b732d53c3a095 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...completion-helper.cpython-36.pyc-ddebd9462e97926e +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---mark.cpython-36.opt-1.pyc-df27432f872e5269 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-df3035db9588b3be +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-module-exceptions.py-df87253c2daa0724 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---check.cpython-36.pyc-e0f29c3b98f326af +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e13c0d69b96e0e27 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---history.cpython-36.pyc-e1b68708ca6cc24a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...db---pycache---group.cpython-36.pyc-e56516076701c03d +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...format.cpython-36.opt-1.pyc-e63d7d796316219c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-yum-misc.py-e898678338845a39 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e938b0b6af22b8af +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---comps.cpython-36.opt-1.pyc-eae723039bfef6b0 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-selector.py-ee7c9fc0a48027cd +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...autoremove.cpython-36.opt-1.pyc-ee911a28dbb859d7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...remove.cpython-36.opt-1.pyc-f0ec1b87a2720391 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---term.cpython-36.opt-1.pyc-f17d9c64af4efa69 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---drpm.cpython-36.opt-1.pyc-f1bf1546b586ac4d +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---const.cpython-36.opt-1.pyc-f23676cc1b7342fe +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...conf---pycache---read.cpython-36.pyc-f264fe260177feb7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-logging.py-f2c55526f4931326 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-utils.py-f4a02f4dd2839cc8 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-base.py-f6e7d6a2e5e6cf8f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-lock.py-f774af1ef07c31ef +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---i18n.cpython-36.opt-1.pyc-f8bb6a0c900f165c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-main.py-f8d45a36c9bc659d +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---drpm.cpython-36.pyc-f94f5ce12d3c86c4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-completion-helper.py-faccc2c17e25511f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...module-base.cpython-36.opt-1.pyc-facd32c2414f35fb +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...upgrade.cpython-36.opt-1.pyc-fbb33fc7c5565f1a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---downgrade.cpython-36.pyc-fe94b1ff07125492 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.ssl-5ec6a973db6a521a OTHER SPDXRef-File-...ol-wlp-lib-com.ibm.ws.ssl-1.5.81.jar-597666d860d03a81 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gdbm-5f248ec8dffe726e CONTAINS SPDXRef-File-usr-bin-gdbm-dump-0fc47f63e96ddf65 +Relationship: SPDXRef-Package-rpm-gdbm-5f248ec8dffe726e CONTAINS SPDXRef-File-usr-bin-gdbmtool-30bfe4b875f52080 +Relationship: SPDXRef-Package-rpm-gdbm-5f248ec8dffe726e CONTAINS SPDXRef-File-usr-bin-gdbm-load-cb419ab4bbd6f08a +Relationship: SPDXRef-Package-rpm-gdbm-5f248ec8dffe726e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.credentials.ssotoken-5f5fa197584cf032 OTHER SPDXRef-File-...com.ibm.ws.security.credentials.ssotoken-1.0.81.jar-1972379e558ae781 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility.webserverPluginutil-5fc7d895c5805927 OTHER SPDXRef-File-...com.ibm.ws.webserver.plugin.utility-1.0.81.jar-0616e8863c89967a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.netty.internal.tls.impl-618277a2b604b791 OTHER SPDXRef-File-...io.openliberty.netty.internal.tls.impl-1.0.81.jar-70833247a6606926 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.config-61e900efa362f9e1 OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.config-1.0.81.jar-d4df66677e16213e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.token.ltpa-622231ba9c844d7f OTHER SPDXRef-File-...com.ibm.ws.security.token.ltpa-1.0.81.jar-8c0b26f973842303 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.el.internal.cdi.jakarta-62e27c792932b3ae OTHER SPDXRef-File-...io.openliberty.el.internal.cdi.jakarta-1.0.81.jar-2f6361eb33adf0ba +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-elfutils-libs-62f17b42f3fcff45 CONTAINS SPDXRef-File-usr-lib64-libasm-0.188.so-00329a2ca370ef08 +Relationship: SPDXRef-Package-rpm-elfutils-libs-62f17b42f3fcff45 CONTAINS SPDXRef-File-...licenses-elfutils-libs-COPYING-GPLV2-0e31a34ab999b66c +Relationship: SPDXRef-Package-rpm-elfutils-libs-62f17b42f3fcff45 CONTAINS SPDXRef-File-usr-lib64-libdw-0.188.so-323035c43657a141 +Relationship: SPDXRef-Package-rpm-elfutils-libs-62f17b42f3fcff45 CONTAINS SPDXRef-File-...licenses-elfutils-libs-COPYING-LGPLV3-48a70c0542973304 +Relationship: SPDXRef-Package-rpm-elfutils-libs-62f17b42f3fcff45 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libuuid-6320b104102d68ba CONTAINS SPDXRef-File-usr-lib64-libuuid.so.1.3.0-79b4f8f2f7be14cd +Relationship: SPDXRef-Package-rpm-libuuid-6320b104102d68ba CONTAINS SPDXRef-File-usr-share-licenses-libuuid-COPYING-9300a569e8de31ed +Relationship: SPDXRef-Package-rpm-libuuid-6320b104102d68ba CONTAINS SPDXRef-File-...share-licenses-libuuid-COPYING.BSD-3-a9d6cd0bebc7ae3a +Relationship: SPDXRef-Package-rpm-libuuid-6320b104102d68ba OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dbus-libs-6491607d041784b9 CONTAINS SPDXRef-File-usr-lib64-libdbus-1.so.3.19.7-b6210e1c04c468ac +Relationship: SPDXRef-Package-rpm-dbus-libs-6491607d041784b9 CONTAINS SPDXRef-File-usr-share-licenses-dbus-libs-COPYING-b7e2cfeae6b2c9da +Relationship: SPDXRef-Package-rpm-dbus-libs-6491607d041784b9 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-decorator-64ad1a0dc4b7f605 OTHER SPDXRef-File-...PKG-INFO-bd28bed913903e91 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel.osgi-65135ef5c209f133 OTHER SPDXRef-File-...com.ibm.ws.logging.hpel.osgi-1.0.81.jar-69155660b1c476a3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.transaction.context.jakarta-655cfebbb0413977 OTHER SPDXRef-File-...com.ibm.ws.transaction.context.jakarta-1.0.81.jar-6f42634e94743d6d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jcache.internal-65a05a3bf42e0221 OTHER SPDXRef-File-...io.openliberty.jcache.internal-1.0.81.jar-50ed96c0669043a9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libgcrypt-65b56d43de84072c CONTAINS SPDXRef-File-usr-lib64-libgcrypt.so.20.2.5-220ef3d54c35f495 +Relationship: SPDXRef-Package-rpm-libgcrypt-65b56d43de84072c CONTAINS SPDXRef-File-etc-gcrypt-random.conf-5f30328f0d2f5a54 +Relationship: SPDXRef-Package-rpm-libgcrypt-65b56d43de84072c CONTAINS SPDXRef-File-usr-lib64-.libgcrypt.so.20.hmac-6092d9df36ada5b0 +Relationship: SPDXRef-Package-rpm-libgcrypt-65b56d43de84072c CONTAINS SPDXRef-File-...share-licenses-libgcrypt-COPYING.LIB-769ee9977bc7dd64 +Relationship: SPDXRef-Package-rpm-libgcrypt-65b56d43de84072c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.security.authentication-6623a069c33c5778 OTHER SPDXRef-File-...com.ibm.websphere.security.authentication-1.0.81.jar-ae6b7e37f8b4c225 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-lib64-libpcap.so.1.9.1-136fa4c57ca16fcb +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-share-man-man7-pcap-filter.7.gz-2e0e60872e34bdcc +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-share-man-man7-pcap-tstamp.7.gz-37bb347d7d9bda82 +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-share-doc-libpcap-README.md-9b6ee4c364c070bd +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-share-doc-libpcap-CHANGES-b140499f342fe180 +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-share-doc-libpcap-CREDITS-e46850b0a3d26a91 +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-share-licenses-libpcap-LICENSE-e4c2e07283d0b7b8 +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-share-man-man7-pcap-linktype.7.gz-fa450d4562216d43 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.endpoint-66ab3ac228472eda OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.endpoint-1.0.81.jar-83238c71f4047c25 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.channelfw-66b968e18db97e3f OTHER SPDXRef-File-...lib-com.ibm.ws.channelfw-1.0.81.jar-df43e1afa895c76e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.config-66ddfec1c99641dc OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.config-1.2.81.jar-d78fc23f82ac0cf7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...telnetlib.cpython-36.opt-1.pyc-000458c29363eed2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-pool.py-0032433f0e5c2159 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...contentmanager.cpython-36.pyc-00a60ce4c06cd018 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-dummy-thread.cpython-36.opt-1.pyc-00be3f674be8c6c8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email--policybase.py-00c67feebe00e0b3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-00c8ef91d429aa29 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nonmultipart.cpython-36.opt-1.pyc-00dd930f20ed5df0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-unicode.py-00df4884f11814bd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---base-events.cpython-36.pyc-00ebc42f7ac74c62 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-renames.cpython-36.pyc-00ef89dbb94a89e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sre-constants.cpython-36.pyc-010854311f8dc557 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dummy-threading.cpython-36.opt-1.pyc-014512e0c66dbd93 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---netrc.cpython-36.opt-1.pyc-016c1c9683508489 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-8.py-017aa5368459759f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---expat.cpython-36.opt-1.pyc-01a1569e75f585c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-scripts.cpython-36.opt-2.pyc-01f437d0d96a41f1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-0203baa8b6f189be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-logging---init--.py-020bb135ff64a7fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-json-decoder.py-02163774d9b1c6db +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-1.cpython-36.pyc-022fc5bfef70c6d7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...gettext.cpython-36.opt-2.pyc-02366ab56a4de059 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-py.cpython-36.opt-2.pyc-024155713c3c9fc5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-long.py-026560f39610ae99 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...message.cpython-36.opt-1.pyc-028f53dd48d11158 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-sys-exc.cpython-36.opt-2.pyc-02a85d7838319cfa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-unixccompiler.py-02ded7963c0d3883 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-xreadlines.cpython-36.pyc-02f00a22db19bdc2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-pgen2-grammar.py-030c6606aba8b084 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-nonzero.py-033b63ea80d8e272 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...keyword.cpython-36.opt-1.pyc-033bcb9f57952e1d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-throw.cpython-36.opt-2.pyc-034664401ee77fb1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---locale.cpython-36.pyc-03487e20442b8e2e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...asynchat.cpython-36.opt-1.pyc-0356b07ec474d67d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fancy-getopt.cpython-36.opt-2.pyc-035e59b22a90d5ad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3---main--.py-0384ebb0f50aeaf1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---wintypes.cpython-36.pyc-03b2d49d6dfce96b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.opt-1.pyc-03dd786257dc5ee0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-0405a39da2708008 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tasks.cpython-36.opt-2.pyc-041bff7b0b3ceebb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes---init--.py-042cba1b9f03682e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-iceland.cpython-36.opt-2.pyc-0431f858e66bef15 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-urllib---init--.py-044c715ab330502e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-queue.py-044e307e912a3a48 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---client.cpython-36.pyc-04855f2d80e4c115 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-urllib-robotparser.py-049e3c44751bd0c3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...minicompat.cpython-36.opt-1.pyc-04ce6bf9c81edba2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---conv.cpython-36.opt-2.pyc-04e1762ee149dd1c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.py-05171172ff5fdfe0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---server.cpython-36.pyc-053126d7053b3394 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...syslog.cpython-36m-x86-64-linux-gnu.so-053acd63a64a34b0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--pyio.py-054b9a7ba5c711c0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-imports2.cpython-36.pyc-055bf9fe3892d30d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-croatian.cpython-36.opt-2.pyc-05833b838df14e2f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0585bf705180ceec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-sysconfig.py-05c7b4d8a4816490 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-mime-base.py-05caae5634d8c3df +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.pyc-05e4485bdbf84981 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...parser.cpython-36.opt-1.pyc-05eda4ade2646a0f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---string.cpython-36.pyc-05f1bbef8dc8b070 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1125.py-05ff9cd3aa921406 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-poplib.py-0622b94a5fd4d8f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---aifc.cpython-36.pyc-0627c92cdb0a5ad9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...feedparser.cpython-36.opt-1.pyc-0634e4c1ae72699e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...locale.cpython-36.opt-1.pyc-063b2aa5c4a48b0d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-2.cpython-36.opt-1.pyc-0650e82714bea79f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp865.cpython-36.pyc-06644093b7658ba7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-buffer.cpython-36.opt-2.pyc-066f413cabf84c35 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-quopri-codec.py-068aa26c5bedf67e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---install.cpython-36.pyc-068b629037ea5a01 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pulldom.cpython-36.opt-1.pyc-06916a116103b2ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-binhex.py-069c936486418cb7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp500.py-06d4de53df74ddc6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-hashlib.py-06e2ab1d9a5b1d85 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---runpy.cpython-36.pyc-06e6fe5d3f31f456 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---socket.cpython-36.pyc-074ccc0ea81ff3d5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---this.cpython-36.opt-1.pyc-0760d8f27edd4aeb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-exitfunc.cpython-36.opt-1.pyc-07633aa7f11caccc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---imp.cpython-36.pyc-077e95e0756c823a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---crypt.cpython-36.opt-1.pyc-07812bdf3518874f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-asyncio-selector-events.py-07e4f66f677ed2b9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pygram.cpython-36.pyc-07ea66df14ff8ba7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dbm---pycache---ndbm.cpython-36.pyc-07eaf989abc978c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...palmos.cpython-36.opt-2.pyc-07f0e21b86c2cf33 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jis-2004.cpython-36.opt-1.pyc-084107cf09d755d1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...inspect.cpython-36.opt-1.pyc-0872c70a19dbde03 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...errors.cpython-36.opt-1.pyc-087d140030f03114 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...reprlib.cpython-36.opt-2.pyc-0884a22cda576df9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-future.py-088e29646ab49c47 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-doctest.py-08a9528d8632e6aa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-asyncio-proactor-events.py-08ab407b779b855e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-kr.cpython-36.opt-1.pyc-08adc15808c19be4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-32-be.cpython-36.opt-2.pyc-08c7d65f1cbd3637 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-11.cpython-36.opt-1.pyc-08f5a36a0d217c6f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-09029d7e4fe8d0cf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-exec.cpython-36.pyc-090736cabc2ae8aa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp860.py-0917b0d945e44de3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---copy.cpython-36.opt-2.pyc-0943e33d2bbb95e4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-scripts.cpython-36.opt-1.pyc-094de77cd137b80f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ntpath.cpython-36.opt-2.pyc-09627abaf5855362 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...audioop.cpython-36m-x86-64-linux-gnu.so-0967a307166ddc24 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp875.cpython-36.opt-2.pyc-09765646b9a84873 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-repr.cpython-36.opt-1.pyc-097c83f792a0c8c2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-popen-forkserver.py-098226301531417f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...raw-unicode-escape.cpython-36.opt-2.pyc-099c377f78cd7888 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...macurl2path.cpython-36.opt-1.pyc-09abbf3704ba4ac3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----base.cpython-36.opt-1.pyc-09bab0e06d5edc54 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-selectors.py-09c539644f97d9cb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-uu-codec.py-09ce51faae9a48f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-dom-xmlbuilder.py-0a085298f62a8f87 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1258.cpython-36.opt-1.pyc-0a2e203fcca778cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---parse.cpython-36.pyc-0a412bd510a94ebd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...events.cpython-36.opt-1.pyc-0a4ea1f37ecb1797 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unicode-internal.cpython-36.opt-1.pyc-0a4fb5930cf584ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---text.cpython-36.opt-2.pyc-0a586fde76cced40 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0a659e1ff826714a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sre-compile.cpython-36.pyc-0a6f3a1e10e2316a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-0a7d6837e84d9c3d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-unittest---init--.py-0a8f0e346ebf5816 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sysconfig.py-0a9171b9b3e0ff1c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cygwinccompiler.cpython-36.opt-1.pyc-0a93f2bb231d8adc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ipaddress.py-0a9612c585191df9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gbk.cpython-36.pyc-0a9c5f4dc4c0d83f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-fancy-getopt.py-0a9e8ec8dbb279a4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-0aa1896e4d7e2488 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---uu.cpython-36.pyc-0aeefa3dd51fc744 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---re.cpython-36.opt-2.pyc-0af55c36aec703cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0b143480894caec4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1253.py-0b578c8fbd67e002 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-repr.cpython-36.opt-2.pyc-0b5bcf4e12fe0198 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-etree---init--.py-0b6019f8ef78e0da +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-getcwdu.cpython-36.opt-1.pyc-0b77f0686f75960c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---trace.cpython-36.opt-2.pyc-0b83de2c7cf53af9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...hex-codec.cpython-36.opt-2.pyc-0bbfb0da9b7d879e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tracemalloc.cpython-36.pyc-0bc35860aecd24ff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-tarfile.py-0bdfacff06d7c160 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---case.cpython-36.opt-1.pyc-0be4bc615292b360 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---connection.cpython-36.pyc-0c111c4e08a739dd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...windows-events.cpython-36.pyc-0c38905fcc819375 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-shelve.py-0c6695e786e8d1bb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-install-egg-info.py-0c6972e2a65e1dc6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...big5hkscs.cpython-36.opt-1.pyc-0c91bcf8968772d2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-io.py-0c9d9239a8cfdd33 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...client.cpython-36.opt-1.pyc-0cb5fe00f5df65f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-core.py-0ccbf8f33a907de0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...parser.cpython-36.opt-1.pyc-0ce396519213b5a6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.opt-2.pyc-0cf64412c5f7aa72 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-dbm-gnu.py-0d1532324ae2fb79 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---chunk.cpython-36.pyc-0d2f5623d09b76bd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---asyncore.cpython-36.pyc-0d49614246a1a82f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fixer-base.cpython-36.opt-1.pyc-0d817f757d1d81b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---nturl2path.cpython-36.pyc-0d90897990f6dcf2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp273.cpython-36.opt-2.pyc-0da3edabcffb3168 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...concurrent-futures-process.py-0de461b43ec7f4ca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-msvc9compiler.py-0defcce09ed5af90 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-bdist-msi.py-0e194f467d303c29 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---csv.cpython-36.opt-1.pyc-0e35f63e6fdd15c2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0e59c2eace6a28ba +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-email-mime-application.py-0e842ae6f8303f8f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ast.cpython-36.opt-1.pyc-0ea8b16a2a30cef1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0eaa7d2d6cd931c2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---oem.cpython-36.opt-1.pyc-0ec5fdf76bf2beea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pgen2---pycache---parse.cpython-36.pyc-0ec908c642253866 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---traceback.cpython-36.pyc-0ecae02d200306b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xmlrpc-server.py-0ef533fe6c831d62 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bz2-codec.cpython-36.opt-2.pyc-0f04c66db679c2cc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-set-literal.cpython-36.opt-2.pyc-0f1d57be89541813 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp860.cpython-36.opt-1.pyc-0f5baef2b1d72e01 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bz2.cpython-36.opt-1.pyc-0f5db09c6302f426 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unicode-escape.cpython-36.opt-1.pyc-0f6095ec907bba0f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdist.cpython-36.opt-1.pyc-0f7a9907affd78f8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-unicode.cpython-36.opt-1.pyc-0f9cd36964aa1cb4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pickle.cpython-36.opt-1.pyc-0fc180b425422e4e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---rlcompleter.cpython-36.pyc-0fc43e4f991d53ca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-macpath.py-0fd44fc0d4d6d390 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0fde465ee16b4a5e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-mbcs.py-0fe511cb3ae06b44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sslproto.cpython-36.opt-1.pyc-0feb70cc39d89987 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-socket.py-0ff8cce2b3d13913 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-bdist-dumb.py-100b1042661218de +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-scripts.cpython-36.opt-1.pyc-1032a808f9730741 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-utf-8-sig.py-103371f92f4b2bba +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-map.cpython-36.pyc-1038d67a40dae1d0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp874.cpython-36.opt-1.pyc-105523802adcfd0d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-105d61f4667fbd2e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...message.cpython-36.opt-1.pyc-1062391a578b2506 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-lib2to3-pytree.py-1096aa56b26b9608 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-tis-620.py-109da836f019dcf7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...decoder.cpython-36.opt-2.pyc-10c8debc35e85eb2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-mac-farsi.py-10ca6257e43e61f5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-email-mime-nonmultipart.py-10edf039724b5ab2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-timeit.py-10fbdbe9d74b6d57 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdb.cpython-36.opt-2.pyc-11042189a871eee7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1140.cpython-36.pyc-11284fe5751e4c34 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-15.cpython-36.opt-2.pyc-115c0986360e8bce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-compat-pickle.cpython-36.pyc-1173da7986d22c1e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-euc-jisx0213.py-117486bb05b63b12 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pickle.py-11748e5644dc6475 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-compat-pickle.cpython-36.opt-2.pyc-11b6f964e6c9e54e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-future.cpython-36.opt-1.pyc-11c3611fab12f6c1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-latin-1.py-11cbb77f70b08fac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---connection.cpython-36.pyc-11d2d9443ed0d2a7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-paren.cpython-36.pyc-11d80520e9fca807 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jp.cpython-36.opt-2.pyc-11e80806884ab512 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-filelist.py-1204071e2909e9ae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multipart.cpython-36.opt-1.pyc-12344b6af28c5768 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cProfile.cpython-36.opt-1.pyc-1237744e1eff2cc1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...validate.cpython-36.opt-2.pyc-124edf12615024fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...filelist.cpython-36.opt-1.pyc-1261131f8e60e18c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-re.py-12710e79b8e766fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---has-key.cpython-36.pyc-128c96367a4ee092 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---this.cpython-36.opt-2.pyc-12a3175d7bfcdf9d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp860.cpython-36.pyc-12f3676a67263acb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gb2312.cpython-36.pyc-130b510042704dd0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cygwinccompiler.cpython-36.pyc-13250819df86afbf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fnmatch.cpython-36.pyc-13314d49907b024f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-133d8ef687f8e7e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pprint.cpython-36.opt-2.pyc-13415533391bd39a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-mac-roman.py-135ba8bacf135817 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...register.cpython-36.opt-1.pyc-135deb21b541851b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp866.py-13780e94901cd261 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-queues.py-139ad237ab09001d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1252.cpython-36.opt-1.pyc-140054c1d99fed84 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-ne.cpython-36.opt-2.pyc-1427307aa73974fe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...events.cpython-36.opt-2.pyc-143ceaab53723c73 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-koi8-r.py-1452210bb3a0434a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp861.cpython-36.opt-2.pyc-1452c53861fd9112 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bootstrap.cpython-36.opt-2.pyc-14a89d427ad41e5c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-threading-local.cpython-36.opt-1.pyc-14c4ee96ce99227f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...asyncio---pycache---log.cpython-36.pyc-14cf2cee855eec84 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-heapq.cpython-36m-x86-64-linux-gnu.so-14e2e25de99b80a2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...btm-matcher.cpython-36.opt-2.pyc-14e8232add708339 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email--parseaddr.py-152120eb5f1135f6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unicode-escape.cpython-36.opt-2.pyc-152925052088b152 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-config.py-1550e45b6cce467c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...modulefinder.cpython-36.pyc-1555e3e6610c0bd7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sslproto.cpython-36.opt-2.pyc-1561f2c6f408c54b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...koi8-u.cpython-36.opt-2.pyc-1588a8c256075234 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...spwd.cpython-36m-x86-64-linux-gnu.so-158fc412af1fb7df +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...resource-sharer.cpython-36.opt-2.pyc-15aacd0abe61885f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-itertools.cpython-36.opt-1.pyc-15f658efd780abef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...test-utils.cpython-36.opt-2.pyc-160c3a4a95d7eb35 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unicode-internal.cpython-36.pyc-16431ff2395ff240 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unix-events.cpython-36.opt-2.pyc-164c859e3be638d1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-165995bed135e467 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-getcwdu.cpython-36.pyc-165e26f389f26f30 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sdist.cpython-36.opt-1.pyc-16786b9a58933d4c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...compileall.cpython-36.opt-1.pyc-16bd3613a9b88d9f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...threading.cpython-36.opt-2.pyc-16cd012f62ba4fd1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-unix-events.py-16d944b1927862ea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...msvc9compiler.cpython-36.opt-2.pyc-16eaf5e40861e096 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-urllib-response.py-170182a58d9eceac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-unittest-signals.py-172e767df57e8fa5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ptcp154.cpython-36.opt-2.pyc-17305d81cd1018d7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...xmlreader.cpython-36.opt-1.pyc-1749b0ef2acde99c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---errors.cpython-36.pyc-174ce5cdd7f822f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-collections-abc.cpython-36.opt-1.pyc-175262bec90dbeae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-headers.cpython-36.opt-1.pyc-17718e3c0172c34d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tis-620.cpython-36.opt-1.pyc-17df460f7a5b6d93 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---case.cpython-36.pyc-17e9a1301235f73c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-bdist-rpm.py-17fae6d3eac01a1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...punycode.cpython-36.opt-2.pyc-18079e9467afe7cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-1831ce8d00923b12 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-subprocess.cpython-36.opt-2.pyc-1856a0442e662483 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...streams.cpython-36.opt-1.pyc-187292eacfb54abb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---handlers.cpython-36.pyc-1880deaa612f609f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-errors.py-1891a00a72874302 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp865.cpython-36.opt-1.pyc-18a4ddb1ef3bcaf4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---robotparser.cpython-36.pyc-18c220c9cea70eed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp861.cpython-36.opt-1.pyc-18c558edbd9f4575 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-tasks.cpython-36.opt-2.pyc-18c7f1382c209dd6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-18c8e685b35b8e9e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-sdist.py-18c9db7412e334d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cProfile.cpython-36.pyc-18cb72f6b88c5239 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...scanner.cpython-36.opt-2.pyc-18d97205f04bd122 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp864.py-18def1083aa057b9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-turkish.cpython-36.opt-2.pyc-18f1c7d7498d3280 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp737.cpython-36.opt-2.pyc-18ffb26b1a6b27e9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-clib.cpython-36.opt-1.pyc-192dcdbe8799786a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-1982eebc0fc159c5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mock.cpython-36.opt-1.pyc-198e76441c8b8927 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---uu-codec.cpython-36.pyc-1995b1caaac5256c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp857.cpython-36.opt-1.pyc-199d59dfe244b373 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sharedctypes.cpython-36.opt-1.pyc-19b7a09704366c4f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email-mime-audio.py-19e538a88dde6d97 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-install-scripts.py-19f5a88a54ab233a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tis-620.cpython-36.pyc-1a084cd12182405f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cmd.cpython-36.pyc-1a30c389d097a20f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---token.cpython-36.opt-2.pyc-1a6455cb3879d790 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-importlib--bootstrap.py-1a645b5dd5a6ff5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dbapi2.cpython-36.pyc-1a666520db10e319 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-ensurepip---init--.py-1a6dea977939785e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-4.cpython-36.pyc-1b08258f820e3207 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1b1232dfc5d46dc7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-headers.cpython-36.opt-2.pyc-1b18f5c81ef35a4c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-iceland.cpython-36.opt-1.pyc-1b72ff621bf51a46 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-metaclass.py-1b815a4715478c08 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-centeuro.cpython-36.pyc-1b9428575c2d6b31 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dylib.cpython-36.opt-1.pyc-1ba241c66b384f03 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-execfile.cpython-36.pyc-1bcaf31096e488b8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...symbol.cpython-36.opt-2.pyc-1bcc6b4b0e5e96c1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mailcap.cpython-36.opt-1.pyc-1bd005cbc3999032 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...macpath.cpython-36.opt-2.pyc-1bd398c9fe778328 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---imp.cpython-36.opt-2.pyc-1be899aa410f4db4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-tokenize.py-1c02e61ea043314e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-3.cpython-36.pyc-1c0b28b95e888fc8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---generator.cpython-36.pyc-1c1c7817bd20bc9f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dylib.cpython-36.opt-2.pyc-1c1d062fc1636daf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...semaphore-tracker.cpython-36.pyc-1c2802a36a54c889 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jisx0213.cpython-36.opt-1.pyc-1c5639d85e4f5150 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-optparse.py-1c76ad647e6c87f1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jisx0213.cpython-36.pyc-1cc042796016db4d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---heap.cpython-36.pyc-1d1a0d7f5299fa69 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...asynchat.cpython-36.opt-2.pyc-1d2396ced0d44d99 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---copy.cpython-36.opt-1.pyc-1d3ff7165c0de39a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-encoded-words.cpython-36.pyc-1d51a0af06f64e0e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pipes.cpython-36.opt-1.pyc-1d569b1c529ecfa9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-events.py-1d8699c2bf3d29fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso2022-kr.py-1de62ba92640e9cf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...streams.cpython-36.opt-2.pyc-1deab74a4407de86 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---doctest.cpython-36.pyc-1dffa4262e07f3ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---enum.cpython-36.opt-1.pyc-1e2773019ce2e3de +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...handlers.cpython-36.opt-2.pyc-1e3219c8a9c5b755 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-1.pyc-1e3872f9404e7cd5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-data.cpython-36.pyc-1e42b50c41f79bd3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...machinery.cpython-36.opt-2.pyc-1e5b03f2fbbc5905 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-cgi.py-1e763187ed9a854b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-gzip.py-1e801a412a675d41 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-compat-pickle.cpython-36.opt-1.pyc-1ec8e676bd95eca0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1254.cpython-36.opt-2.pyc-1ee87f4428916dbf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dylib.cpython-36.pyc-1f05d5366da05a9d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1f3bb5647e55e060 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...socket.cpython-36.opt-2.pyc-1f56a0eb7b26a4a7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...struct.cpython-36.opt-2.pyc-1f58f1e8832dbaac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dom---pycache---pulldom.cpython-36.pyc-1f62cef0ad6ff6a0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-intern.cpython-36.opt-2.pyc-1f6ed588dc47ea2a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tempfile.cpython-36.opt-2.pyc-1f7da75ec427945b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-weakrefset.cpython-36.opt-1.pyc-1f89d2d499295638 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pstats.cpython-36.pyc-2007ab25b1902510 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-unicode.cpython-36.pyc-20113d9d3e82a4ae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-2019a5e0338f3288 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp65001.cpython-36.pyc-20250c3924676733 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-data.cpython-36.opt-1.pyc-205369de55cbc682 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1250.cpython-36.opt-2.pyc-20795cf3170051ba +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1026.cpython-36.opt-1.pyc-2080d5b3e613a89e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...zipfile.cpython-36.opt-2.pyc-20df91aee8f5a93c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iterators.cpython-36.opt-1.pyc-210a829e8f45c7e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-8.cpython-36.opt-1.pyc-211842dc65562bb7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1256.cpython-36.opt-1.pyc-212267b7e57f5d20 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...driver.cpython-36.opt-2.pyc-213cb67db7f46bb0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...upload.cpython-36.opt-1.pyc-213cded80e613321 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...zlib-codec.cpython-36.opt-2.pyc-2151f14d1aa92847 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-getpass.py-21529cfd13defe47 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...koi8-r.cpython-36.opt-2.pyc-216d572f417898be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-216f5cb84751866e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email-feedparser.py-216fb172b8d3c889 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-genericpath.py-2187635b43eb6864 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.opt-2.pyc-2189498162d87848 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-curses.cpython-36m-x86-64-linux-gnu.so-219c6338fee13b1f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shelve.cpython-36.opt-2.pyc-21b7fbd65fcb57a4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-6.cpython-36.opt-1.pyc-220c9530a65b9acf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdist-msi.cpython-36.pyc-221213a46b18751e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---lzma.cpython-36.pyc-221467600935d141 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cgitb.cpython-36.pyc-223c7221d52606ea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...expatreader.cpython-36.opt-2.pyc-22857f76a9ecc5dd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-concurrent-futures--base.py-229a434344f31135 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-getcwdu.py-229fe853c0f0f580 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-filter.cpython-36.opt-2.pyc-22b80a0cd07a82df +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...aliases.cpython-36.opt-1.pyc-22d0f51b50f469e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-latin2.cpython-36.opt-1.pyc-22eabdf7a83ebb75 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...testresult.cpython-36.opt-2.pyc-230468b928c01842 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ssl.cpython-36.opt-1.pyc-230b5d69d5007aa2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---big5.cpython-36.pyc-231b88225f5e976f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-methodattrs.cpython-36.pyc-232e1f51820f57d4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-2.pyc-233fd857b8a70671 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...rlcompleter.cpython-36.opt-1.pyc-235d6546bd6d6e86 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...generator.cpython-36.opt-1.pyc-236acb15330faec3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...connection.cpython-36.opt-2.pyc-236c80ee973c29e8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-email-headerregistry.py-23bda9b4f63ea309 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-enum.py-23c6065ffe6f1ddf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...symtable.cpython-36.opt-2.pyc-23f8aad8654b2fd6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-5.cpython-36.opt-1.pyc-241c5a75a6959398 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...simple-server.cpython-36.opt-2.pyc-243d500c2c992944 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---heapq.cpython-36.opt-2.pyc-24598c66c62387a3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sslproto.cpython-36.pyc-24599da6a0df37ae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-types.cpython-36.opt-2.pyc-246d9e20920843b0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-ws-comma.cpython-36.opt-2.pyc-248090898631148c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp865.cpython-36.opt-2.pyc-24a7420746b938d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...hp-roman8.cpython-36.opt-2.pyc-24ac4a63f86b0b1f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...difflib.cpython-36.opt-2.pyc-24c8a96e414c0ed0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---conv.cpython-36.opt-1.pyc-24d0dbd509770d7e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-parseaddr.cpython-36.opt-2.pyc-24ddde1456f480a1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---difflib.cpython-36.pyc-24f9c88f00ba0947 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-funcattrs.cpython-36.pyc-250c54388f687557 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-2511a664dd30c890 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-reload.cpython-36.opt-1.pyc-25183c5e9d130b11 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-2551da148a76630b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cElementTree.cpython-36.opt-2.pyc-257245dd53019ff7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-imghdr.py-2579789324ac7520 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tarfile.cpython-36.pyc-258e2c824700f319 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-textwrap.py-25a97194295334a1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pipes.cpython-36.pyc-26018d5d51f9ee98 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-email-contentmanager.py-2609a43953eea9d2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-runpy.py-260a9ccdb31657a0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---check.cpython-36.pyc-2661715e01fc2027 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tokenize.cpython-36.opt-1.pyc-2663db19c2c79c34 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-py.cpython-36.opt-1.pyc-266e0cadb97d0cfe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-dummy-thread.cpython-36.pyc-267b3db000c0d2a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-log.py-26876d0d21485603 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bisect.cpython-36m-x86-64-linux-gnu.so-2690072667cfc04e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...request.cpython-36.opt-2.pyc-26b3d60f225b66cf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---log.cpython-36.pyc-26b403633e943525 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-numliterals.cpython-36.opt-1.pyc-26c42ee620325ddf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-26cb38fab61914a4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nonmultipart.cpython-36.pyc-26f4c0e160b437c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-telnetlib.py-26fb4824366dd59f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-metaclass.cpython-36.opt-2.pyc-270552cb5e8cff2a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-2714fd2cfa8713ad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-9.cpython-36.opt-1.pyc-271e2fbd4e1ab04f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ndbm.cpython-36.opt-2.pyc-27523c1db83e7122 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils--msvccompiler.py-275b22f6a0d97d6f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-kz1048.py-2767e28aa81ebe02 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...encoders.cpython-36.opt-2.pyc-2776007c4695fe64 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-urllib-parse.py-277d17ca3e359bd4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-html---init--.py-27a803ec6e32df63 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-2.pyc-27a8717d744c2b3d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...connection.cpython-36.opt-2.pyc-27d6e0f225a19301 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-parser.py-27f591562b6f184e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---xdrlib.cpython-36.pyc-2802a95c17319bb7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ascii.cpython-36.pyc-281af4c9eed0af4d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---colorsys.cpython-36.pyc-28285dbffa8629ef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mime---pycache---base.cpython-36.pyc-28502f4cfef0f9a4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1125.cpython-36.pyc-2852fcf001355b8b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-itertools.py-2875921312f9fd6d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bootstrap-external.cpython-36.opt-1.pyc-288775a41cc7dc8a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...poplib.cpython-36.opt-2.pyc-288bf837caf03c15 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-osx-support.cpython-36.opt-1.pyc-2895d22a3d4c3cd7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-28af62feb25c3bc3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---wave.cpython-36.opt-2.pyc-28b624d07810872c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sndhdr.py-28f417a9b0a98b1e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso8859-13.py-2913d1ae53cf312c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-site-packages-README.txt-292d545864c05a0c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-base-events.py-2948d902a6774165 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---re.cpython-36.opt-1.pyc-2993d287419d68c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-29d87d4eaa3ab29e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-16-be.cpython-36.opt-2.pyc-29d9c212255986d2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp860.cpython-36.opt-2.pyc-29db331e2887b7d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-29decca82df4f799 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...koi8-t.cpython-36.opt-2.pyc-2a05f33c492c2ffe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...copyreg.cpython-36.opt-1.pyc-2a061099a13569c2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-unicode-escape.py-2a1363289944580b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...textpad.cpython-36.opt-1.pyc-2a2c54fe2c5391df +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-2a4966480df0b688 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pyclbr.cpython-36.opt-2.pyc-2a66c09d6c790f06 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...file-util.cpython-36.opt-1.pyc-2a755d6cea6a309a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cmd.cpython-36.pyc-2a78a4584395eb78 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-signal.py-2aa4c12a76cf2e3f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sitebuiltins.cpython-36.opt-2.pyc-2aac4f844be013dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pkgutil.cpython-36.pyc-2b0a31ea577b021c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---enum.cpython-36.opt-2.pyc-2b257fc3a62acd70 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...platform.cpython-36.opt-2.pyc-2b2cd28111ae0c34 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-email-mime-multipart.py-2b3c8c50f0655fce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...decimal.cpython-36.opt-2.pyc-2b4744523e723828 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-spawn.py-2b4d404e8a991e0b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-ws-comma.cpython-36.pyc-2b7bb12c0e6431d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...quopri-codec.cpython-36.pyc-2bc284fe23930016 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...script-helper.cpython-36.opt-2.pyc-2bc7c23acfd81fe0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-wininst.cpython-36.opt-1.pyc-2bfce4f8af7ab87c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2bfdc52c45f181e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-locale.py-2c02490578c2660f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---handlers.cpython-36.pyc-2c28aeeb00245623 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-egg-info.cpython-36.opt-1.pyc-2c2af296ebcbf779 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tasks.cpython-36.opt-1.pyc-2c6db6592877f2db +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-mock.py-2c82be888ec6e0c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-croatian.cpython-36.opt-1.pyc-2c889b5dd97cf65d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---py-compile.cpython-36.pyc-2ca284d2039a0f00 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-Grammar.txt-2d0afa80b0371619 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...expatbuilder.cpython-36.pyc-2d5727a7b26ca391 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-pgen2-tokenize.py-2d64b315de60beb5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp856.cpython-36.pyc-2d7162cdc1e728b9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...random.cpython-36.opt-1.pyc-2d7d983a91d18ab5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...runner.cpython-36.opt-1.pyc-2d8f106fe2a32aa6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sre-constants.cpython-36.opt-1.pyc-2dd0d413488ff3b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...posixpath.cpython-36.opt-2.pyc-2dfe7ffbdfc19c72 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fnmatch.cpython-36.opt-1.pyc-2e26014996cb64bd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp737.cpython-36.opt-1.pyc-2e418b759e64947a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp949.py-2e4d5ed275283cea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---netrc.cpython-36.opt-2.pyc-2e70ce66a5563d6a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...topics.cpython-36.opt-1.pyc-2ea3cd68468fc2be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-bisect.py-2ed2fa67151f07b2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---csv.cpython-36.opt-2.pyc-2ed7c1fdaab5666d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bootlocale.cpython-36.opt-1.pyc-2ee5e41ea11d0ee0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...response.cpython-36.opt-1.pyc-2eff7a310bbd21b9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1006.cpython-36.opt-1.pyc-2f268d5706d34dca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-iterators.py-2f2af03930dc63b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-spawn-win32.cpython-36.pyc-2f43f95aa6088671 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...entities.cpython-36.opt-1.pyc-2f50509d10d1d30c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tabnanny.cpython-36.pyc-2f60d4ec7d06a4b2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...kz1048.cpython-36.opt-2.pyc-2f6f052d96a1e12f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----main--.cpython-36.pyc-2fa76ffa5edff89c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---spawn.cpython-36.pyc-2facf87d098fe3f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp949.cpython-36.opt-2.pyc-2fc89cec411e84d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mbcs.cpython-36.opt-1.pyc-2fd868b965c7080c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...script-helper.cpython-36.pyc-2fec3a8033c7d13b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bisect.cpython-36.opt-2.pyc-2ff4da4dd389fdcd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...raw-unicode-escape.cpython-36.opt-1.pyc-30613024e5c7cc71 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mime---pycache---audio.cpython-36.pyc-30d8020328bdb007 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-romanian.cpython-36.opt-1.pyc-30f783f08099f74e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...msvccompiler.cpython-36.opt-2.pyc-312b0c62d957d776 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jis-2004.cpython-36.opt-2.pyc-3155bbb4c2427683 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.cpython-36.pyc-317c2b43a0b5e1bb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ftplib.py-31a82430a2ee3e49 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mac-roman.cpython-36.pyc-31b4f159ef20fbf9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-bdist.py-31b773b8a43c6cb9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-cmd.py-32096e08e2233cac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---message.cpython-36.pyc-32158e30fff433b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hp-roman8.cpython-36.pyc-323fa28aa9164325 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...asyncore.cpython-36.opt-1.pyc-326d1aa47cb41f32 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...connection.cpython-36.opt-1.pyc-328dbf4c726993e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-32.cpython-36.opt-2.pyc-32ad241d7676b905 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-runner.py-32b2677948a5f488 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-futures.py-32d3a8c3dc845e1f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-btm-utils.py-32e71a602a21bb04 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp866.cpython-36.pyc-331681447d29117c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-lib.cpython-36.opt-2.pyc-333594b67cd2c2e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dep-util.cpython-36.opt-1.pyc-333afb963650bf52 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sqlite3-dbapi2.py-334cbc47c6fb3d08 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-connection.py-338c4c5b106545ba +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp863.py-33a362932c24ad43 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-opcode.cpython-36m-x86-64-linux-gnu.so-3409c0f2ea9fd5ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pty.cpython-36.pyc-341ae30c15ad6c1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...request.cpython-36.opt-1.pyc-346aa1ac8d816d33 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1125.cpython-36.opt-1.pyc-34bc060ac4ebb000 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...binhex.cpython-36.opt-2.pyc-34be0ac8b736e90d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-pgen2-driver.py-34c92731a7dfe1ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...windows-events.cpython-36.opt-1.pyc-34d61aeab9e76ebe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--bootlocale.py-35239f9e9460a643 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-354ee15c23294564 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-collections---init--.py-3553884e04560c1a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---latin-1.cpython-36.pyc-35744ea300b517fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---headers.cpython-36.pyc-358657713e34de1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-2.pyc-35865e243dd89df3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...machinery.cpython-36.opt-1.pyc-358707bd6b5c60d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.opt-2.pyc-35cab891507ef7be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xml-dom-domreg.py-363b33f2a7ce5381 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---stat.cpython-36.pyc-366bc92b84dcab20 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---posixpath.cpython-36.pyc-3689e613484cc57b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-test-support---init--.py-368fef5f6ac8bcd6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pgen.cpython-36.opt-2.pyc-36a2a7b4b3cecc8e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-utf-16-le.py-36a385164ac944e8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-msi.cpython-36.opt-2.pyc-36b9ab18889c248d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...grammar.cpython-36.opt-2.pyc-36c912c29a0bfba8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...framework.cpython-36.opt-2.pyc-36c9aa05cf6f47cc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-lib2to3-main.py-36e99774f5ff51d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-http-cookies.py-370e4c3bbad410fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-PatternGrammar.txt-373a19bd420593ae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---charset.cpython-36.pyc-3768579998bac900 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-raw-input.cpython-36.opt-2.pyc-37878624a079d396 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-dict.cpython-36.opt-1.pyc-378d330f5c7428ce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-378fedc1f8df93dd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...signal.cpython-36.opt-2.pyc-379d23dedafae02a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp857.cpython-36.opt-2.pyc-37b6baacfec8377e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...subprocess.cpython-36.opt-1.pyc-37c49b805ca5ac8b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jisx0213.cpython-36.pyc-37d8693d8a8228dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-32.cpython-36.opt-1.pyc-38692dda682fc101 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-uninstall.cpython-36.opt-1.pyc-387cf54fefafaa73 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-egg-info.cpython-36.pyc-387ff8fda6da001f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...macpath.cpython-36.opt-1.pyc-388343091ed4111e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...profile.cpython-36.opt-2.pyc-3888c4a5e88a4f78 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---imaplib.cpython-36.pyc-3889f043cb0d192d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sre-constants.cpython-36.opt-2.pyc-38aa3ddd0dcd5a3d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-paren.cpython-36.opt-2.pyc-38d36ccda313918a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pathlib.cpython-36.pyc-38fdaab3495f5c40 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1256.py-3936babf07896997 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--phello--.foo.cpython-36.opt-2.pyc-39373982e138ae8a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-394bbd2999551ef9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---application.cpython-36.pyc-3960c6103e3f3d51 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email-mime-image.py-396fd10afdabc26e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---minicompat.cpython-36.pyc-3980dc765c4f376b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-ctypes.cpython-36m-x86-64-linux-gnu.so-3a0addca4fa65722 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-exitfunc.cpython-36.pyc-3a10d8cca48ceaa5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---build.cpython-36.pyc-3a11d566b376cf4a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dump.cpython-36.opt-1.pyc-3a1fd45673cf34ae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-16.cpython-36.opt-1.pyc-3a2605e557baf01d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nturl2path.cpython-36.opt-2.pyc-3a453eb5e33a67b0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---io.cpython-36.pyc-3a6c127baf3e302f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.pyc-3a6ddb57f0a0b0b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1251.cpython-36.pyc-3a7503b5a8b50e31 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---message.cpython-36.pyc-3a7a578ba13dcd1c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base64mime.cpython-36.opt-2.pyc-3a7e52822ea02869 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ast.cpython-36.pyc-3a888321d0c45a28 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-pgen2---init--.py-3ae069d7d31ca215 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp932.cpython-36.opt-1.pyc-3ae3fd11e6ca2dc4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-heap.py-3afb0f6de2fb35f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-check.py-3b2dfa69a7b0f5f2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tty.cpython-36.pyc-3b3890f517d92216 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-reload.py-3b3b470738240b89 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-ensurepip---main--.py-3b5402c85cd24247 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...socket.cpython-36.opt-1.pyc-3b74b5252437c637 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---warnings.cpython-36.pyc-3bcd433a7c622273 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-renames.cpython-36.opt-1.pyc-3bd99f453a719d3e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dump.cpython-36.opt-2.pyc-3c078816498dfbcb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---secrets.cpython-36.pyc-3c247f9a9cd33c7c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-posixpath.py-3c32119e9243b6c8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-renames.py-3c5e1d15cc0f3d76 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-xrange.cpython-36.opt-1.pyc-3c61f1e57ec5a73e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-gdbm.cpython-36m-x86-64-linux-gnu.so-3c6870e48986ad76 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3c92ac010f4a839a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-3ca1068fed2aa8f7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-compileall.py-3cb2cb9ae67b5bd0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-json.cpython-36m-x86-64-linux-gnu.so-3cc090b46925bb76 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...NodeFilter.cpython-36.opt-2.pyc-3cf25ca0c750563a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...msvc9compiler.cpython-36.pyc-3cfa919278611167 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mac-turkish.cpython-36.pyc-3d21720127619fc1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pprint.py-3d30c73246052e8e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---telnetlib.cpython-36.pyc-3d3517d31b221be7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-mac-greek.py-3d4cea5d70d7086d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xml-dom-pulldom.py-3d67c18377455043 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-16.cpython-36.opt-2.pyc-3d68a7bd4f4060c8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...venv-scripts-posix-activate.csh-3d7ae30540e8b7fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-buffer.cpython-36.pyc-3dc269dc4f850528 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...calendar.cpython-36.opt-1.pyc-3dd25d74bf56ac1c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-centeuro.cpython-36.opt-2.pyc-3de6e51c3078523e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-big5hkscs.py-3e52fade3080c429 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-decimal.py-3e5ba83dd51af313 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-3e5f92c635e4cf9d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---unix-events.cpython-36.pyc-3e7044b5409fba94 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-reload.cpython-36.opt-2.pyc-3e739afc4d9961ad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...parser.cpython-36m-x86-64-linux-gnu.so-3ea85947ec598bc6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...proactor-events.cpython-36.opt-1.pyc-3eac7060e6de952a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dir-util.cpython-36.opt-2.pyc-3eb022087680e203 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ipaddress.cpython-36.opt-1.pyc-3ebf907640a18e30 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...operator.cpython-36.opt-1.pyc-3ef3ffdbe1891469 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---spawn.cpython-36.opt-2.pyc-3f442e285663ec1c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-curses-ascii.py-3f9b378806ca425d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...poplib.cpython-36.opt-1.pyc-3fbae515cfc48a2d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-input.py-3fc6cfe9437adeaf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---debug.cpython-36.pyc-3fdc9d1c66bdde44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---johab.cpython-36.pyc-400a367714f27046 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---encoder.cpython-36.pyc-4011448f3b9cedb4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-xml-etree-ElementPath.py-403dda3323428623 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ccompiler.cpython-36.opt-1.pyc-4047f7cbdb49e567 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---btm-utils.cpython-36.pyc-405d198e599efa18 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-README-4067d5cb80c8e0d4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-util.py-4094885fd243cebc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---base64mime.cpython-36.pyc-40b7902e8801df2c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pyexpat.cpython-36m-x86-64-linux-gnu.so-40c4942813e709fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-utils.py-411636a2d3611bdb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ftplib.cpython-36.opt-2.pyc-41256db0f4059f2b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-util.py-41302a79b976d14a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dom---pycache---minidom.cpython-36.pyc-4168b6c252a2f18e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---futures.cpython-36.pyc-418a984c59c4dbdc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---textwrap.cpython-36.pyc-41a857f0d37c74f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---parser.cpython-36.pyc-42001bb6eb4eb071 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-buffer.cpython-36.opt-1.pyc-422a48ec03e89665 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...encoders.cpython-36.opt-1.pyc-427bdbb4e68d9bfc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--sitebuiltins.py-427dda9cb5cc42dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dyld.cpython-36.opt-2.pyc-428481bea0d0c24e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nntplib.cpython-36.opt-2.pyc-42ad008df44b1cfe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...archive-util.cpython-36.opt-2.pyc-42d4f5dbf9aa0b58 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-base-tasks.py-42d7033485ace213 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-430881cff1995c4a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tokenize.cpython-36.pyc-43116e9521e0fac7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ntpath.cpython-36.opt-1.pyc-432e61149674328e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...zlib-codec.cpython-36.opt-1.pyc-4333b65bf836712c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-4334655ae16fbabe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ElementInclude.cpython-36.pyc-433cfc2f1b3f8f30 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-standarderror.cpython-36.opt-1.pyc-434bf55e16a70671 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1026.cpython-36.opt-2.pyc-435b1416a2b79987 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-romanian.cpython-36.opt-2.pyc-435d9016982677fe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base64-codec.cpython-36.pyc-439218b7fc0a01b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-idna.py-43b0b18bb64c0467 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-dummy---init--.py-43c8173616038998 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-shift-jisx0213.py-440126cdee815acf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdist-rpm.cpython-36.pyc-440d2f52abf22848 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-ensurepip--uninstall.py-44438aa1a2acca35 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-contextlib.py-44532df0a4ef9845 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...domreg.cpython-36.opt-2.pyc-448f11b85db849d0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-3.cpython-36.opt-2.pyc-44b2d11f82168b08 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...has-key.cpython-36.opt-1.pyc-44c49154906f49b3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gzip.cpython-36.opt-2.pyc-44cefbddb38c7e1c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-44d5c4d6580bee2c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-codecs-tw.cpython-36m-x86-64-linux-gnu.so-44d8850e5fc3273e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-fixer-base.py-44db598c0bed6318 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---NodeFilter.cpython-36.pyc-44db5ad2250c4dd0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp855.cpython-36.opt-1.pyc-44dc44b00d6172fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...weakref.cpython-36.opt-2.pyc-450f97066c8636f2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---token.cpython-36.opt-2.pyc-451d3c16a1e2f7e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ndbm.cpython-36.opt-1.pyc-4548f1673ef5278a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...koi8-t.cpython-36.opt-1.pyc-455aea9cc76e4e92 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-import.cpython-36.opt-2.pyc-460f636619278cee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ElementInclude.cpython-36.opt-2.pyc-46405f86d68ee460 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-wsgiref-validate.py-464f33c548b4179e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1251.py-467ba5c0890e8eec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cmd.cpython-36.opt-2.pyc-468f15d7618297f6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...warnings.cpython-36.opt-2.pyc-46b19002654e806d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-cygwinccompiler.py-46c1986be11a848c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso8859-11.py-46c82d552ee609a0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...textwrap.cpython-36.opt-2.pyc-46db29fd40da516c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1026.cpython-36.pyc-471785cc98d03aa3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-wsgiref-handlers.py-472a74d54d599393 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-install-headers.py-475a25c6273dd975 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...telnetlib.cpython-36.opt-2.pyc-476f6f433bc114dd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp037.py-47a820d875ad566f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-16-le.cpython-36.pyc-47b6852d8ea772cc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---suite.cpython-36.opt-1.pyc-47c3cbe842e36f1e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-standarderror.cpython-36.opt-2.pyc-47d7971ca4108a36 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-wsgiref-headers.py-47e68f7c6ae95155 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-palmos.py-47ec110ebc1974a4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-zip.cpython-36.opt-1.pyc-47ec6fdace7912d1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...version.cpython-36.opt-2.pyc-480e30ec46faa9e8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-pydoc-data--pydoc.css-4827f5ae6ff5c61e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-ctypes-macholib-dylib.py-4839955a1ad2688f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-fork.cpython-36.opt-2.pyc-48686a648eeb5493 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...quopri.cpython-36.opt-1.pyc-486e874e765380a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-7.cpython-36.pyc-4874a313769308cf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-tracemalloc.py-48800194b3482e1e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---code.cpython-36.opt-2.pyc-488152d771d60729 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ptcp154.cpython-36.pyc-4884511e1b623890 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-isinstance.cpython-36.opt-2.pyc-488d38b5ecb4b22a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-xml-dom-expatbuilder.py-48a5da5165279bc0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---install-lib.cpython-36.pyc-48e0659e4d213cb4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp850.cpython-36.opt-2.pyc-49055063ed5aba5e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...charmap.cpython-36.opt-1.pyc-4907992b0d460a4f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-16.cpython-36.pyc-496be30149f56ad9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-json-encoder.py-49895eb15aa6e135 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...forkserver.cpython-36.opt-1.pyc-49a4afe8d9f13e25 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...statistics.cpython-36.opt-2.pyc-49c2f883f49c76df +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...charset.cpython-36.opt-2.pyc-49c997fab77e5d16 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-basestring.cpython-36.opt-1.pyc-49eefa870209bea8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-exceptions.cpython-36.opt-2.pyc-4a056210788d89bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-ascii.py-4a115e72a894aa49 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...extension.cpython-36.opt-1.pyc-4a214e0bb5487235 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...subprocess.cpython-36.opt-2.pyc-4a67f198a4910808 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sre-parse.cpython-36.opt-2.pyc-4a78ffef0fc30195 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...xdrlib.cpython-36.opt-1.pyc-4a87263abcfe5f07 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...entities.cpython-36.opt-2.pyc-4a8793c5dc0501a6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ctypes---init--.py-4aa08ba1d6f60374 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...math.cpython-36m-x86-64-linux-gnu.so-4acd9d5ae5df23fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nntplib.cpython-36.opt-1.pyc-4ad0c72539e966b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-modulefinder.py-4ae899c7412672b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-4b327a11c084e4af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---symbol.cpython-36.pyc-4b43a393b89479d7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-10.cpython-36.pyc-4b49d54ea8f0e337 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-urllib-error.py-4b60a25b2fa27a43 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---response.cpython-36.pyc-4b6c8dc16e0e164d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-ext.cpython-36.opt-1.pyc-4b72c983ad45fbc0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-centeuro.cpython-36.opt-1.pyc-4b8a6d9b03e147b0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tarfile.cpython-36.opt-1.pyc-4b948fc9ad3d35bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.pyc-4bbab8827434bef5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tty.cpython-36.opt-2.pyc-4bf1bb3c4d77b1c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ast.py-4bf5c962573be648 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-zipfile.py-4c08e738bbfbf6d7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-copy.py-4c2743bb78d1d034 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-types.py-4c282b8aaf207ee8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4c5902d724a70931 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---punycode.cpython-36.pyc-4c5d3bd6a77bf3e4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-asyncio-windows-utils.py-4c67350300d3cb0a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-johab.py-4c6adf346fc72e33 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp037.cpython-36.pyc-4c73902ef0cd5f47 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...genericpath.cpython-36.opt-2.pyc-4c8b0befc49d35fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-strptime.cpython-36.opt-2.pyc-4c9bbc5c30f1f41f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-print.cpython-36.pyc-4ca2e145c923c1e6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-11.cpython-36.opt-2.pyc-4cc667563ce9b325 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...datetime.cpython-36.opt-1.pyc-4cd6c7e5facd50fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp949.cpython-36.opt-1.pyc-4ce005ee3266e39e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...semaphore-tracker.cpython-36.opt-2.pyc-4cefd636bd9c27ea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mimetypes.cpython-36.pyc-4d0bbf59aa83cbea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...functools.cpython-36.opt-1.pyc-4d6c9ecae8012895 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-filecmp.py-4d80643532839b07 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...server.cpython-36.opt-2.pyc-4dc212e9431ffa75 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-urllib.cpython-36.pyc-4de058b825e4af6d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...codecs.cpython-36.opt-1.pyc-4e46c7698fefa9e4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-quopri.py-4e6ba7df977f1505 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-debug.py-4ed346a854cb5176 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-msvccompiler.cpython-36.opt-2.pyc-4ee637a7941178e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-copyreg.py-4f139750e80215be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mailbox.cpython-36.pyc-4f2310576f166603 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-symbol.py-4f269c9a458308e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-operator.cpython-36.pyc-4f30263a85ba357f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...constants.cpython-36.opt-1.pyc-4f460df8caec3d0c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp861.py-4f55761c09cfee69 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...versionpredicate.cpython-36.opt-1.pyc-4f611e230f16b6d0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-16.cpython-36.opt-1.pyc-4f61de9049087ec8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-renames.cpython-36.opt-2.pyc-4f64c23d82c6c084 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.opt-1.pyc-4f840c5842f6cec9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---context.cpython-36.pyc-4f8e984dc2ea1986 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-popen-fork.py-4f972ec61d81033c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...undefined.cpython-36.opt-2.pyc-4fbdfae2332c2e55 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gnu.cpython-36.opt-1.pyc-4fcf22834d315a5f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-arabic.cpython-36.opt-1.pyc-5002a3c1cd286e43 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-compression.cpython-36.opt-1.pyc-502c38358d1b28a2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...message.cpython-36.opt-2.pyc-504ab0e0e9d4a057 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-10.cpython-36.opt-2.pyc-50787c22a903ef91 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-bdist-wininst.py-507ec29a6d6f74e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---aifc.cpython-36.opt-2.pyc-50b5c834fa11426c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----markupbase.cpython-36.pyc-50bc24ca23c28b5f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp861.cpython-36.pyc-50fadb0eb71dbdae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---imghdr.cpython-36.pyc-5108c32a46321458 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-510def62e5c07565 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1006.cpython-36.pyc-5148b403fce01cde +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-tabnanny.py-515bb779113c2033 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-html-entities.py-516f1d3eef04a8b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1125.cpython-36.opt-2.pyc-5189ec492595217d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-51ff74a5e8088111 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gnu.cpython-36.opt-2.pyc-5207067fed339953 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-tuple-params.py-5237d720d028207b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-errors.py-524d78849e0ca834 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1257.cpython-36.pyc-525ee176207c29fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mac-greek.cpython-36.pyc-52745fded86c3882 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...palmos.cpython-36.opt-1.pyc-528ca901d0ad583e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---base.cpython-36.opt-2.pyc-5301b62421266df0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pydoc.cpython-36.pyc-5310b5d050f8e0d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---csv.cpython-36.pyc-532e18d81ca49d9c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-streams.py-534f5fd7a6852def +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-537093e41088f7d9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pathlib.cpython-36.opt-2.pyc-5371677bdbabdae7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----pyio.cpython-36.opt-1.pyc-537bc39c75e8187c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-exec.py-53a069a3613f6e1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...connection.cpython-36.opt-1.pyc-53bc8e7fa31f8d58 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---upload.cpython-36.pyc-53eff3312532da78 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-cProfile.py-540b17d1a43e5e4f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---io.cpython-36.opt-1.pyc-5415b95cba1ba8ad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-3.cpython-36.opt-1.pyc-54abff259268b2ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cgitb.cpython-36.opt-1.pyc-54c2af1c9627fa75 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fancy-getopt.cpython-36.opt-1.pyc-54d2658edb5e0615 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp869.cpython-36.opt-1.pyc-54e099aec6193a14 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-bdb.py-5500cf5165444015 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bz2-codec.cpython-36.pyc-551d4f372f32a161 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...topics.cpython-36.opt-2.pyc-55235221e7011f9d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-profile.py-552c3fc70d804b5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-calendar.py-552cf4908e399e1d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...getopt.cpython-36.opt-1.pyc-553e7fe64b3c2875 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...config.cpython-36.opt-2.pyc-555f5f263c8033eb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dis.cpython-36.opt-1.pyc-555fb0d2cf6b52b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pdb.py-55761d069cd97f29 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fractions.cpython-36.opt-2.pyc-55838c4ebb96fa92 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---enum.cpython-36.pyc-558d68353b035a85 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...resource-sharer.cpython-36.opt-1.pyc-55c600c318c364fc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-semaphore-tracker.py-55d103c53491d584 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.pyc-55dc60e6c4917421 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...futures.cpython-36.opt-2.pyc-55e1149e56234021 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hz.cpython-36.opt-1.pyc-55f0f289bebbb349 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...rot-13.cpython-36.opt-2.pyc-56297d7e19473d69 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---shift-jis.cpython-36.pyc-5649e6f6602f8bef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jis-2004.cpython-36.opt-2.pyc-56671edccf6b2533 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-sharedctypes.py-56990a2578be8b91 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-wsgiref---init--.py-56a1f232a8907635 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...compat.cpython-36.opt-1.pyc-56b160ae49476576 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ssl.py-56fd1a43cd8dba11 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...result.cpython-36.opt-1.pyc-57225a961956d5be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cgitb.cpython-36.opt-2.pyc-5731a19b65de2617 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mmap.cpython-36m-x86-64-linux-gnu.so-573fb38a259e20c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...textpad.cpython-36.opt-2.pyc-576419154bff9910 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-policybase.cpython-36.opt-1.pyc-5767026000f61b09 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---rot-13.cpython-36.pyc-57765b3d9e45cf9e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-pydoc-data-topics.py-577a580b0c9f76bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-578c0c52484b73c0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-platform.py-57a25d1dce76446c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...NodeFilter.cpython-36.opt-1.pyc-57ab035dc05e21af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---chunk.cpython-36.opt-2.pyc-57ad5820ee472f21 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-html-parser.py-57c2f55f5e6d8215 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hashlib.cpython-36.pyc-57c374946fc37916 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-koi8-t.py-57fbbe952a0453e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-sys-exc.cpython-36.opt-1.pyc-5825199974733b6f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---copy.cpython-36.pyc-5830c78927a4eed0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...headers.cpython-36.opt-2.pyc-5852b6715988ae6e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-4.cpython-36.opt-2.pyc-5867565c0ce36dee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-archive-util.py-589423a014139ed7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---panel.cpython-36.opt-1.pyc-590a58492dddba5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...gb2312.cpython-36.opt-1.pyc-590f591886bfd596 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---expatreader.cpython-36.pyc-5933defebccd529d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---antigravity.cpython-36.pyc-5964c555ae0fe27c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ElementPath.cpython-36.opt-2.pyc-5965c2847fcd8a53 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-2.cpython-36.pyc-596e93ff58a2dc80 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-ccompiler.py-5991ba3b3dc4fbe8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...configparser.cpython-36.opt-1.pyc-59952d647636ddda +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---reprlib.cpython-36.pyc-59b61f3623c9317d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-wsgiref-simple-server.py-59cc3079f3e3ae5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-curses-panel.py-59d9b5c6e90153a5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pydoc.py-5a09657abfa45c53 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-15.cpython-36.opt-1.pyc-5a120e239492e44b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pathlib.py-5a4b1e0a332dfa13 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-queues.py-5a664c902551b46c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-5a80dfac812f4265 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...client.cpython-36.opt-2.pyc-5a8dcaeb07488a42 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-filter.py-5a8e76a543f4b002 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ascii.cpython-36.pyc-5aba3b285e341192 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-dbm-dumb.py-5af0e66af85035ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-8-sig.cpython-36.opt-1.pyc-5b2c2ac4ff4357ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-sax-xmlreader.py-5b4710cc5cc5da6e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jis-2004.cpython-36.pyc-5b590a1a9ec979f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5b888df91545e8ac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mimetypes.cpython-36.opt-2.pyc-5b8a32d9d1523b38 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bisect.cpython-36.pyc-5b9e1b23c5ea85c4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp720.cpython-36.opt-1.pyc-5baffcab5c788a25 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-operator.cpython-36.opt-2.pyc-5c03bc22120e8372 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cookies.cpython-36.pyc-5c166b7f0d75ecc2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---code.cpython-36.pyc-5c18cf69e225a99b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---this.cpython-36.pyc-5c2d24b4fdff7d14 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.cpython-36.opt-2.pyc-5c3f11f148a18e65 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-bz2-codec.py-5c48f163602ce34b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pty.cpython-36.opt-2.pyc-5c5c8290c30991a9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sunau.cpython-36.pyc-5c8879eacf4fc22c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---parse.cpython-36.opt-1.pyc-5cb064f39fc90b9f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...result.cpython-36.opt-2.pyc-5cddc62495f27aee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...handlers.cpython-36.opt-1.pyc-5ceb6f85713c3cdc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...decimal.cpython-36.opt-1.pyc-5d029f26c0d98c7c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-codecs-kr.cpython-36m-x86-64-linux-gnu.so-5d23934f2034df27 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5d4b079b51de6bf1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---smtpd.cpython-36.opt-1.pyc-5d7534d0e02e4804 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-zipapp.py-5d78c46fc96adbc5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-xml-etree-ElementInclude.py-5da7692d1af59519 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sched.py-5daed23910f888e9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-32-le.cpython-36.opt-2.pyc-5dcd1e52f8ffe249 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp65001.cpython-36.opt-1.pyc-5df3e59c72f2376c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tarfile.cpython-36.opt-2.pyc-5e39902bc6858b8a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---palmos.cpython-36.pyc-5e49d0ce99fee0ef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multipart.cpython-36.opt-2.pyc-5e5f60f7a77302ad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-utf-16.py-5e67cc1e89eb5e85 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-2.cpython-36.pyc-5e6dc96fea56cf73 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...imaplib.cpython-36.opt-1.pyc-5e739be3a00c132b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp866.cpython-36.opt-1.pyc-5ea9807a4101da3c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-2.py-5ead108d5b38d1d2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-base64-codec.py-5ed776d2c404af42 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...server.cpython-36.opt-1.pyc-5eda238c44bf62c5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dumb.cpython-36.opt-1.pyc-5eeb6eef163fc591 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...decoder.cpython-36.opt-1.pyc-5f017112302a37b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...secrets.cpython-36.opt-1.pyc-5f0a794e71eec41f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---shlex.cpython-36.opt-1.pyc-5f1963f495521757 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-imports.cpython-36.pyc-5f36759d30606375 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cElementTree.cpython-36.pyc-5f3aef64c25374bb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-2.cpython-36.opt-2.pyc-5f3f6d97e96229a3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---profile.cpython-36.pyc-5f6271ef3d0b0178 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-stringprep.py-5f67ec6b05806eb6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1257.py-5f81205338982a8d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...modulefinder.cpython-36.opt-2.pyc-5f84051e792b1d63 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-importlib---init--.py-5f85b6d1e7096ca9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...windows-utils.cpython-36.opt-2.pyc-5fd695a5fdbf9af9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5fe8fafdb95ad64b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sysconfig.cpython-36.opt-1.pyc-60486df9d0ae4301 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cookies.cpython-36.opt-2.pyc-6071197af0f2295d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ctypes-wintypes.py-6078998f6c5559fe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-dumb.cpython-36.opt-1.pyc-6082fc2c0beda77f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...config-3.6m-x86-64-linux-gnu-Makefile-60b0929b7adfbd28 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-mimetypes.py-610a7b38c7a93421 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-future.cpython-36.opt-2.pyc-610bafa742484a7e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-email--encoded-words.py-6123441cacaa3196 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---log.cpython-36.opt-1.pyc-615fb378d5b1d52d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ntpath.py-617a09ddd70bc2b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--markupbase.py-61902fe48286c220 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dep-util.cpython-36.pyc-619f50d74e1387cc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-build-ext.py-61fc513e7cbb0c72 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-policy.py-61ff80d847994f1c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ossaudiodev.cpython-36m-x86-64-linux-gnu.so-6207e66c7857be8e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--osx-support.py-6236080f51102596 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---oem.cpython-36.pyc-62552a9c222a6840 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hz.cpython-36.opt-2.pyc-6259fbdcfe798264 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...encodings-raw-unicode-escape.py-627c252ec9c7604e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---os.cpython-36.opt-2.pyc-6285d9b08d159be3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bootstrap-external.cpython-36.opt-2.pyc-62a91ee634295040 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-spawn-posix.cpython-36.opt-1.pyc-62c07aadffdf1e83 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp875.py-62c4422acea4809f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-code.py-62c8047b75881cec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-62dfca322ab5b7c8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...colorsys.cpython-36.opt-1.pyc-62fd5978df09083f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp720.cpython-36.opt-2.pyc-63345ac34538bf7b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---calendar.cpython-36.pyc-635ba7dee793fd7d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1258.cpython-36.opt-2.pyc-6377c3d22f4f3eb1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...selector-events.cpython-36.opt-2.pyc-637d777265954940 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...plistlib.cpython-36.opt-2.pyc-6380f0bd1961f063 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1006.cpython-36.opt-2.pyc-63b2e7404701e7ad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---queues.cpython-36.pyc-63d3dd4642770d8b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-codeop.py-64078ab4e8821d5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...futures.cpython-36.opt-1.pyc-640befac8cb52f91 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.opt-1.pyc-642684f4a9f7c1ea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-ext.cpython-36.pyc-64279906aa1f2e64 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sched.cpython-36.pyc-6473ce6626135337 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-8-sig.cpython-36.pyc-6479d21f0d09542e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-markupbase.cpython-36.opt-2.pyc-64b59cc440048a76 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-9.py-64df6d1d050ed140 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----endian.cpython-36.pyc-64fc5760a5e80a82 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---quoprimime.cpython-36.pyc-650ee14b50d1368a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-rot-13.py-65309baedaa731d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...venv-scripts-posix-activate.fish-654df972ddbb8835 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-6560370f96feb385 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-gbk.py-657ff27fc1f9c295 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-decimal.cpython-36m-x86-64-linux-gnu.so-659784d80e2bd250 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...email--header-value-parser.py-659810e3746e97e8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...timeit.cpython-36.opt-1.pyc-659b4911aca7072a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-rpm.cpython-36.opt-1.pyc-65d1f55e762e6d42 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ascii.cpython-36.opt-2.pyc-65d9b614821211cb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-macurl2path.py-65eff5ea054b5368 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-scripts.cpython-36.pyc-66045853ee05d586 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---io.cpython-36.opt-2.pyc-66076f8464c5ac46 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...driver.cpython-36.opt-1.pyc-660eb9f8b6e84b1f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-urllib.cpython-36.opt-2.pyc-6634bb2a18e8db68 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ntpath.cpython-36.pyc-6696ac76053b5399 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-apply.cpython-36.opt-2.pyc-6697931afa841ad1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...select.cpython-36m-x86-64-linux-gnu.so-66ba274b153df873 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---statistics.cpython-36.pyc-66bcf77f8e916e23 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-6711792db1cc38dd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-croatian.py-672aae807bd212af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...zipfile.cpython-36.opt-1.pyc-6765e60661020e8a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.opt-2.pyc-67982876f8dea55c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sysconfig.cpython-36.opt-2.pyc-67a11e9412b8432f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---nntplib.cpython-36.pyc-67a46eada0a0ae03 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ipaddress.cpython-36.pyc-67a7a9b26d482f99 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bz2.cpython-36m-x86-64-linux-gnu.so-67d0fe0803bbe75e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---codecs.cpython-36.pyc-67d6660957f8f468 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp720.py-67e85f731f09ac9e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mac-iceland.cpython-36.pyc-682ce4cae6253f0e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils---init--.py-6881a3065ea4ed8b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ctypes--endian.py-688c3d8e5b73a2d2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---operator.cpython-36.pyc-68dac8f86115dd80 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hmac.cpython-36.opt-1.pyc-690147557ea1377c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...headerregistry.cpython-36.pyc-693f37d7fa3b40cf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...filelist.cpython-36.opt-2.pyc-694ac4580b640571 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-8.cpython-36.pyc-695dac83ef7524a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-gettext.py-6992bbd4fb6da725 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-markupbase.cpython-36.opt-1.pyc-69ef5455cda69a0f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sunau.cpython-36.opt-2.pyc-6a050517c1fb8c9b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-loader.py-6a061981abe4bac0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-fileinput.py-6a2f01fe7b7adbbf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-csv.py-6a3a318d41f92fb3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---heap.cpython-36.opt-1.pyc-6a4122c6eec23e6e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---entities.cpython-36.pyc-6ab004e38ed712a0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---machinery.cpython-36.pyc-6aba5bace683d17c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---compileall.cpython-36.pyc-6ae29b5a94775efc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---types.cpython-36.opt-1.pyc-6b04a818e62849c4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1252.py-6b4c0147a000fa32 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-fractions.py-6b68fa744f027b8a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---check.cpython-36.opt-2.pyc-6b7e95c143632a83 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...thread.cpython-36.opt-1.pyc-6babbf59ac9210fc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bcppcompiler.cpython-36.opt-1.pyc-6bd44ffe84f86193 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...client.cpython-36.opt-2.pyc-6bf21217050773f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-file-util.py-6c063ace76f2c225 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...selectors.cpython-36.opt-2.pyc-6c19d9dd16a418f7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-throw.cpython-36.pyc-6c4e05cdfb0eafba +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...xmlbuilder.cpython-36.opt-1.pyc-6c547a4a955d1c8e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---panel.cpython-36.opt-2.pyc-6c674772f88f159a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1251.cpython-36.opt-2.pyc-6c7edd3c54cb6ba0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp037.cpython-36.opt-1.pyc-6c865aa7b69e4032 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-shift-jis-2004.py-6c9134b3cc245fb6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mime---pycache---text.cpython-36.pyc-6c93413ee4191c62 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cmd.cpython-36.opt-2.pyc-6cc1c44bb894cc9b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...test-support-script-helper.py-6cd40ab5f0a00071 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fcntl.cpython-36m-x86-64-linux-gnu.so-6d1cf68354431adb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-7.cpython-36.opt-1.pyc-6d6abac45a0a3eb5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-6db3b6dc9864dcb3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...forkserver.cpython-36.opt-2.pyc-6db6adc68f160eed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...protocols.cpython-36.opt-1.pyc-6db7ca22d8dfa377 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...windows-events.cpython-36.opt-2.pyc-6de0e98ac0963cde +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---panel.cpython-36.pyc-6df2fc2c44718d63 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pkgutil.cpython-36.opt-2.pyc-6e0a909683a88bae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp65001.py-6e1c0899c57f27a0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cElementTree.cpython-36.opt-1.pyc-6e1fa583d04a9e09 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...rlcompleter.cpython-36.opt-2.pyc-6e44cb3abff892f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...json---pycache---tool.cpython-36.pyc-6e4c98889592fdb7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1253.cpython-36.pyc-6e53eba16d83f4c4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-set-literal.cpython-36.opt-1.pyc-6e5df839c002b1ce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...expatbuilder.cpython-36.opt-1.pyc-6e659e01fcea3308 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-kr.cpython-36.opt-1.pyc-6e947e5780a7d1cc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----uninstall.cpython-36.pyc-6eb2f341b81d5415 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-gb2312.py-6ec6e259c6c19627 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---decoder.cpython-36.pyc-6ec994dd0541be7a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...msvccompiler.cpython-36.pyc-6ef68aeb6d3d1556 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pool.cpython-36.opt-2.pyc-6efe01d14676e41f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-uuid.py-6f42e49919bef2fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fnmatch.cpython-36.opt-2.pyc-6fb7818177531c25 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---site.cpython-36.pyc-6fd17c125e105947 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp856.cpython-36.opt-2.pyc-6fe2143b19c8ca65 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ctypes-macholib-README.ctypes-6fe79a7828a7f67e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-forkserver.cpython-36.opt-1.pyc-704a9afc35b4c19a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sysconfig.cpython-36.pyc-70784c85eb69633f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-zip.cpython-36.opt-2.pyc-7079f3fa245ef075 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---streams.cpython-36.pyc-7087fec6e9ffd049 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---smtpd.cpython-36.opt-2.pyc-70a2ded37975c96c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-map.cpython-36.opt-2.pyc-70cb053f991a4b1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-generator.py-70eb949beb52f03c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-nntplib.py-70fe835bedcdc15e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...concurrent-futures---init--.py-71341eae3d843d83 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1140.cpython-36.opt-2.pyc-713af15603d27b8e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---error.cpython-36.pyc-713d7c162dfb7264 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-has-key.cpython-36.pyc-7156dbc2cffb16fc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...getopt.cpython-36.opt-2.pyc-715ebf17bd0993fe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sndhdr.cpython-36.opt-1.pyc-7163ee0a75c82ada +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email---init--.py-718e91499485f0bd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-extension.py-718f58480a9afafb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp869.cpython-36.opt-2.pyc-719a352665e0d6b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp856.py-71a606aeeff86d6d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...extension.cpython-36.opt-2.pyc-71b8bc30b612ea01 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-reduce.cpython-36.opt-1.pyc-71e5aeda9b4f623d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---uuid.cpython-36.pyc-71e8d9fc8db55711 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-log.py-71f6fc187d47ca74 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dummy-threading.cpython-36.pyc-722cf505d6441cc3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-versionpredicate.py-722e9647f512ddab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---lzma.cpython-36.opt-1.pyc-723cdbe2afa10489 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-idioms.cpython-36.opt-2.pyc-724c77a457ed5df3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bootstrap-external.cpython-36.pyc-727817e4f5f0df1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ascii.cpython-36.opt-2.pyc-728d47d8b9d211be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-zip.cpython-36.pyc-72b95e7529823d92 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----future--.cpython-36.pyc-72ba3dfb08bfafed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-xrange.cpython-36.pyc-72ccdf30ddb083d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-testmultiphase.cpython-36m-x86-64-linux-gnu.so-72d56e02352d45b6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sha3.cpython-36m-x86-64-linux-gnu.so-72e1d545dd96bf3c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---symtable.cpython-36.pyc-72fa660a904eba31 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...handlers.cpython-36.opt-2.pyc-7312bde4b63535cc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-throw.py-7326fffbd7d8a317 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-curses---init--.py-732bde4ab613221a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sqlite3.cpython-36m-x86-64-linux-gnu.so-733257dc45681e53 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-collections-abc.py-734d8f6b52b5383e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pgen2---pycache---pgen.cpython-36.pyc-7357b6ce0fa4fac6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---parse.cpython-36.opt-2.pyc-7357f059d392802d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...simple-server.cpython-36.pyc-736f186640fdf2f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dump.cpython-36.pyc-737cae48a9177400 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-1.cpython-36.pyc-738128f6d80959c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.cpython-36.opt-1.pyc-738975737fc635d2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-colorsys.py-74601a6b4140701f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp858.cpython-36.pyc-74ac2a3060da9832 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-itertools-imports.py-74bc15cfd2f19793 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...configparser.cpython-36.opt-2.pyc-74c010a78eb7c28b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sre-compile.py-74c2b1c54ed2ebc2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...register.cpython-36.opt-2.pyc-74c4a6806b5f88b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-standarderror.py-74ef0aafd7968e5e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-arabic.cpython-36.opt-2.pyc-750a6ab12e0cb5b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-3.py-751946916436201e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-7524c3abf5cb39ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...synchronize.cpython-36.opt-1.pyc-7528e9038e1ee8e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-raw-input.py-752b2e3c1d706069 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-757461db2a2d2d92 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gbk.cpython-36.opt-2.pyc-7588df83f2142140 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...btm-utils.cpython-36.opt-1.pyc-75951ec65b5ff5a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-romanian.py-759dffc3f6c05508 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso8859-10.py-75a9a0cfd82f13c0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-long.cpython-36.opt-2.pyc-75a9d3ef453b21d0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-xreadlines.cpython-36.opt-2.pyc-75dc36536cfcd3dd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-centeuro.py-75ff6b95196b1b43 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...textwrap.cpython-36.opt-1.pyc-762b79add18a1915 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-16-be.cpython-36.opt-1.pyc-7636dc4eb23f4af7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...resource.cpython-36m-x86-64-linux-gnu.so-76ad8d297afe2fa8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp874.cpython-36.pyc-770f62d2031711ce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---crypt.cpython-36.opt-2.pyc-77148518d8c5fe44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---encoders.cpython-36.pyc-7725e3f5d9f5450a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-ext.cpython-36.opt-1.pyc-7793d28a301c0ab7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fileinput.cpython-36.opt-1.pyc-779bbc879b920c40 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-crypt.cpython-36m-x86-64-linux-gnu.so-77d00405e28ae9e5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...string.cpython-36.opt-2.pyc-77d10b7772f4bd7f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pprint.cpython-36.opt-1.pyc-77e2912b2b289d32 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-egg-info.cpython-36.opt-2.pyc-78121a41214ad6ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pstats.cpython-36.opt-1.pyc-783a2ba413dcfa82 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-methodattrs.cpython-36.opt-2.pyc-784e588cdafe4da8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-input.cpython-36.opt-2.pyc-784ebe0795bc49b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...uu-codec.cpython-36.opt-2.pyc-7855be196903aa4b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ctypes---pycache---util.cpython-36.pyc-78673e4722d078fc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp949.cpython-36.pyc-7869b13e23715300 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fixer-util.cpython-36.pyc-786a87671868cbcc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-14.cpython-36.opt-1.pyc-7870984773062fbf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---driver.cpython-36.pyc-788385517b66f029 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...gb2312.cpython-36.opt-2.pyc-789f4563c510abf1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-codecs-jp.cpython-36m-x86-64-linux-gnu.so-78a7bb281d7404b2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...rot-13.cpython-36.opt-1.pyc-78be170941135a9c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-croatian.cpython-36.pyc-78c0a933426ac8ef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...stringprep.cpython-36.opt-1.pyc-78c660bdc00bc82c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-punycode.py-78d2472008447794 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-suite.py-78d919b5103b2d08 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp950.cpython-36.pyc-7906fad138e7f712 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...opcode.cpython-36.opt-1.pyc-7934171ab66dfe1e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-numliterals.cpython-36.pyc-793d167b365ea532 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp720.cpython-36.pyc-794352cb650d9a03 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-encoders.py-798b189ab8ae7ff1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-stat.py-79a0ce7cb16b589b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email-mime---init--.py-79ac401330bd3d36 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---glob.cpython-36.pyc-79c28f0bde371046 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...robotparser.cpython-36.opt-1.pyc-79c7e633b4af610e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-dis.py-79cc4184a1550e5d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gbk.cpython-36.opt-1.pyc-79def8e74b55c061 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---base64.cpython-36.pyc-79f264374bf370ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tempfile.cpython-36.opt-1.pyc-7a0245a5f010546d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-raw-input.cpython-36.pyc-7a5a2f626134b0da +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp863.cpython-36.pyc-7a69b35e4199df10 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-importlib-machinery.py-7a6f2662f9a2974e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-oem.py-7a77b5772c975089 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ssl.cpython-36.opt-2.pyc-7a8889b38f3f8099 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-libpython3.so-7a8bc2db5eee3933 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...handlers.cpython-36.opt-1.pyc-7aa19a5b576a30d5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---zipapp.cpython-36.pyc-7ab904bc1e09ff85 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---build.cpython-36.opt-1.pyc-7ac69d5082bcbdb6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---lzma.cpython-36.opt-2.pyc-7ad9367753826e9c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---signal.cpython-36.pyc-7addc8b22f85de1f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-hp-roman8.py-7b063b9efa47dfff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-ssl.cpython-36m-x86-64-linux-gnu.so-7b12f5bd3a9eb6a0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---managers.cpython-36.pyc-7b325c951825872b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jisx0213.cpython-36.opt-2.pyc-7b7688733e9033c2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---testresult.cpython-36.pyc-7b8a63a84ba60d41 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...antigravity.cpython-36.opt-2.pyc-7baf19d02583494a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---filecmp.cpython-36.pyc-7bbb8193a20d1096 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---image.cpython-36.opt-1.pyc-7bd242a2410b0f91 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pygram.cpython-36.opt-2.pyc-7bf8a9426f81c8fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dis.cpython-36.opt-2.pyc-7c234cfc17e204a9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---codeop.cpython-36.pyc-7c5615e5230cda56 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---plistlib.cpython-36.pyc-7ced002fcd1ac0e0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-rpm.cpython-36.opt-2.pyc-7d07f9ffae0b9eed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-sax-saxutils.py-7d0a5b933bc2eca9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-lib2to3-pygram.py-7d5094e345a4215a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tracemalloc.cpython-36.opt-1.pyc-7d639a8d13d950f2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...py-compile.cpython-36.opt-1.pyc-7d80c697e646a9bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mailbox.cpython-36.opt-1.pyc-7d847a75020fccec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---wave.cpython-36.pyc-7d87be9c332caf2e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...aliases.cpython-36.opt-2.pyc-7db55c376bb62509 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mime---pycache---image.cpython-36.pyc-7dbbd4193d852485 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dom---pycache---domreg.cpython-36.pyc-7dda240aac7efee9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-lzma.cpython-36m-x86-64-linux-gnu.so-7e285d5fcc14470b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-7e811b3b14538ce5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---subprocess.cpython-36.pyc-7e8e5df570f69c0f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---popen-fork.cpython-36.pyc-7e8fe4d15df9e731 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-idioms.cpython-36.pyc-7ee6191a4cf9f68c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pygram.cpython-36.opt-1.pyc-7eec1d509b001724 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...smtplib.cpython-36.opt-1.pyc-7ef5365ea420a576 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ccompiler.cpython-36.opt-2.pyc-7f2e802a015d3eda +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-json---init--.py-7f43fe086974199b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---build.cpython-36.opt-2.pyc-7f46ce515c462b06 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-dir-util.py-7f66d64109fbb470 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---koi8-u.cpython-36.pyc-7fad3a41e98965bb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sre-compile.cpython-36.opt-2.pyc-7fbb12dd1e56f2af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---struct.cpython-36.pyc-7fbbc326184994bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-utf-7.py-7fcf8cf9d42dd357 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fancy-getopt.cpython-36.pyc-7fd672a149b0e121 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shutil.cpython-36.opt-2.pyc-7fdd1513b6a58fae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-utf-16-be.py-7ffa9ec3045a0549 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-venv---init--.py-8000c93773906909 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-itertools-imports.cpython-36.opt-2.pyc-8026178ecbd541d0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1253.cpython-36.opt-2.pyc-8035187f133155a3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pytree.cpython-36.opt-2.pyc-80509a8a513885e6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...linecache.cpython-36.opt-2.pyc-80739798bc982348 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xml-dom-minidom.py-808ba63ac0a956a7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...imaplib.cpython-36.opt-2.pyc-8099f92a8f4daa9e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-has-key.py-80e554359f50f476 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dyld.cpython-36.opt-1.pyc-80f30cba5d986974 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ftplib.cpython-36.pyc-81010e542ccb98af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-raw-input.cpython-36.opt-1.pyc-81106415fa99f65e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp875.cpython-36.pyc-811d81b62893a54b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso2022-jp-2004.py-81483d15da581d8c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-tuple-params.cpython-36.opt-1.pyc-814e91f31c5e0784 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----policybase.cpython-36.pyc-8180ac28d73020cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...asyncore.cpython-36.opt-2.pyc-819f61f32bfb64d4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-basestring.cpython-36.opt-2.pyc-81a7c2e1825e17e2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-struct.cpython-36m-x86-64-linux-gnu.so-81c94347e7c1bbeb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...config.cpython-36.opt-2.pyc-81e057b8db977fff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...locale.cpython-36.opt-2.pyc-81e4758c05a3b208 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1140.py-81e4e0ff2eadcc1a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---smtpd.cpython-36.pyc-81f5e5f9c4f0b5a6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp500.cpython-36.opt-2.pyc-81f79925ced511a3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-utf-32-be.py-8253b0839c077bdb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-json-scanner.py-825eac73410c41da +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-pickle.cpython-36m-x86-64-linux-gnu.so-826e4782ceceb14e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...reprlib.cpython-36.opt-1.pyc-8277075c83e88d55 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...linecache.cpython-36.opt-1.pyc-829ddef374238a56 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-pgen.py-82ae5253404a7011 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---token.cpython-36.opt-1.pyc-82c9cee6a7de18bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-except.cpython-36.opt-2.pyc-82cbac9663e80bd2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-ctypes-macholib-framework.py-82dcb34ba82e6f56 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--future--.cpython-36.opt-1.pyc-82e60336daa087c5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-getopt.py-82ee261275faf8a9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---textpad.cpython-36.pyc-83332deb5ec019b8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-834052b96a3ea148 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---queue.cpython-36.opt-1.pyc-83902ee327dc3a0e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...windows-utils.cpython-36.pyc-83ac29f9f092a198 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...quopri-codec.cpython-36.opt-1.pyc-840c0cb7a279676f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-import.cpython-36.pyc-8410a166de247e60 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-aliases.py-8439325b412b6630 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...generator.cpython-36.opt-2.pyc-8450e987ec4572fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...saxutils.cpython-36.opt-1.pyc-845571b15f50a4e5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-sax--exceptions.py-845c9892dbf71eaa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---wave.cpython-36.opt-1.pyc-845fb9308613bcfc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---token.cpython-36.pyc-8461bab02f784100 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-imports2.py-846bf08330cb507e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...argparse.cpython-36.opt-2.pyc-847c4ee6efbc94ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---koi8-t.cpython-36.pyc-84e1faaf7a2db5d0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---johab.cpython-36.opt-1.pyc-84ea933e8f592e93 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-libpython3.6m.so.1.0-851a17b2ed448e0d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp858.cpython-36.opt-2.pyc-851a4a7c310fa8c6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-functools.py-851d9125a873134e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6--threading-local.py-85247986c4b6c27e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-8545b1a9966f10b9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-futures.cpython-36.opt-1.pyc-854b24dfe7e02486 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-tuple-params.cpython-36.pyc-854f9c58d46b11ef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...undefined.cpython-36.opt-1.pyc-855b147b35a33bcb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base64-codec.cpython-36.opt-1.pyc-856c74ef6bf60365 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...socketserver.cpython-36.opt-1.pyc-8571f7ec89fb4b5f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---topics.cpython-36.pyc-8578e33db9816815 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---euc-jp.cpython-36.pyc-85b8e4b9fb32760a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---spawn.cpython-36.pyc-862205e36098e396 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-16-le.cpython-36.opt-1.pyc-8622b4a6aa3cc1f2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pickletools.cpython-36.opt-1.pyc-864cb568eb390105 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...text-file.cpython-36.opt-1.pyc-865af2b51c7894e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-symtable.py-86a1fb71442a4a2c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-raise.py-86b20b05e854ea05 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...array.cpython-36m-x86-64-linux-gnu.so-86b7e0e3572d38a3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.pyc-8701bb01b5564933 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-1.cpython-36.opt-1.pyc-8712dc33e1d7a9f0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-mime-text.py-871616b476c35750 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---macurl2path.cpython-36.pyc-8734d069d83ea1f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cmd.cpython-36.opt-1.pyc-8750d352ed61401c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sysconfig.cpython-36.pyc-875692ddbd17905e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-managers.py-875cb31bbd0a06e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...traceback.cpython-36.opt-2.pyc-8771b3363c4bd035 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6---future--.py-879e861f647b32f0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...synchronize.cpython-36.opt-2.pyc-87aad1cc07071f3b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-header-value-parser.cpython-36.opt-1.pyc-87d3b31fbf6c333e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-include-python3.6m-pyconfig-64.h-87f75a0c69079270 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-message.py-87f8692c7c859f74 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---forkserver.cpython-36.pyc-88a42e183e9b90cf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-3.cpython-36.opt-1.pyc-88a523995ac5b7f0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---log.cpython-36.opt-2.pyc-88ab2903f6e3124f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tabnanny.cpython-36.opt-2.pyc-88b283a2427e651a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pgen.cpython-36.opt-1.pyc-88bd7d7752d1b0f2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...html---pycache---parser.cpython-36.pyc-88ca05da8605d6f7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mbcs.cpython-36.pyc-88cacc5f991dda5b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---base-tasks.cpython-36.pyc-8912b294461281b6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-long.cpython-36.pyc-8912fc739131d83d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso8859-16.py-8925d5418e78ddb4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...subprocess.cpython-36.opt-1.pyc-89a9540e813817f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pkgutil.py-89bf9f8b88c574ce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-text-file.py-89cdb5c8b04d1a02 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.opt-2.pyc-89d94565bef34c99 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...latin-1.cpython-36.opt-2.pyc-8a28db6339490152 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xml---init--.py-8a30aec408d41672 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...warnings.cpython-36.opt-1.pyc-8a3e68c00b4324b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---contextlib.cpython-36.pyc-8a5539864cbd3149 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1253.cpython-36.opt-1.pyc-8a75f422da71d1ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-getcwdu.cpython-36.opt-2.pyc-8a8e267ced8fd4ce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-exceptions.cpython-36.opt-1.pyc-8a9104c40944937b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp869.py-8a96706c678d447e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shutil.cpython-36.opt-1.pyc-8af1e2dd685fadaa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-8b0837b70ec7358d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...policy.cpython-36.opt-1.pyc-8b0dd6a49454e2f7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---thread.cpython-36.pyc-8b1a677a1559fb44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-synchronize.py-8b26e9120ca0fdb0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1256.cpython-36.pyc-8b3eeb5802ef9cba +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-dbm.cpython-36m-x86-64-linux-gnu.so-8b638929cbabdece +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-8b679c40f437d69d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-spawn-win32.cpython-36.opt-2.pyc-8b73fda6f9adc520 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...headerregistry.cpython-36.opt-2.pyc-8b93d97242c0349d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp65001.cpython-36.opt-2.pyc-8bbf279b829ccd71 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sched.cpython-36.opt-1.pyc-8be1c7cf03da0965 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...process.cpython-36.opt-1.pyc-8c20f1d046977771 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...process.cpython-36.opt-2.pyc-8c3b775f0625f65e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-multiprocessing.cpython-36m-x86-64-linux-gnu.so-8c494fdc6a0b36ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---uuid.cpython-36.opt-2.pyc-8c6081c3571e1279 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-raise.cpython-36.opt-1.pyc-8c663cc0b1c4552a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---parse.cpython-36.opt-1.pyc-8ca9f115df44f141 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-sslproto.py-8cc70e5f782b61a2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base64mime.cpython-36.opt-1.pyc-8d0b1c084c89777f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-numliterals.cpython-36.opt-2.pyc-8d83a389494aee01 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6--collections-abc.py-8d89a92d18c37b23 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-futures.cpython-36.opt-2.pyc-8d8cbbc2a1a583fc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-exec.cpython-36.opt-2.pyc-8dc9774b5928c124 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-greek.cpython-36.opt-1.pyc-8dcc8df6ae1e976f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...queues.cpython-36.opt-1.pyc-8de88954cecd1c20 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-elementtree.cpython-36m-x86-64-linux-gnu.so-8dec126c4688208c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...feedparser.cpython-36.opt-2.pyc-8e14ea5893e61b2b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...coroutines.cpython-36.opt-2.pyc-8e214b21bb9885e0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-idioms.cpython-36.opt-1.pyc-8e3f6ab83db8d644 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---patcomp.cpython-36.pyc-8e60a78592aab9ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-imp.py-8e67b1c991fa1447 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-pydecimal.cpython-36.opt-1.pyc-8e843399b10c18a1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-8e89930d4dca01d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---glob.cpython-36.opt-1.pyc-8e9ed599ac80c37d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...string.cpython-36.opt-1.pyc-8ea6b04cd7300cf9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...webbrowser.cpython-36.opt-2.pyc-8eb270940142701a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dis.cpython-36.pyc-8eb32325219fc9a1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...termios.cpython-36m-x86-64-linux-gnu.so-8ee6723ccfb86510 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-dict.py-8f25bad08294bb40 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-subprocess.py-8f26e35c4a9ae2e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pickle.cpython-36.pyc-8f45fdec9c2ad095 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---genericpath.cpython-36.pyc-8f52c844b501c1e5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tool.cpython-36.opt-1.pyc-8f6e83f2e807dba4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-protocols.py-8f85e047b5f229b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-base64.py-8f8f935f1629c374 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...filecmp.cpython-36.opt-1.pyc-8fa938d2778ae322 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp850.py-8fac0fa310bcf7d9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...quoprimime.cpython-36.opt-1.pyc-8fb2b0ca9c987e3e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-xml-etree-cElementTree.py-8fcc1bed246e37af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-ext.cpython-36.opt-2.pyc-8ffd2fc86316d626 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...handler.cpython-36.opt-2.pyc-9038bda4cf0eb295 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-uninstall.cpython-36.opt-2.pyc-9043dc456429b692 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unixccompiler.cpython-36.opt-1.pyc-907da87f887cd274 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---literals.cpython-36.pyc-90c39b209962a52c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email-quoprimime.py-90cb298be75629ff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-7.py-90d2e567fa1611b0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---zipfile.cpython-36.pyc-90ea6c4df28193ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-header-value-parser.cpython-36.opt-2.pyc-90eaf3a87576f65e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...archive-util.cpython-36.opt-1.pyc-90eb08fe47c251d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-90fbeee4b8c7be88 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-7.cpython-36.opt-2.pyc-91092a391be68b32 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...parser.cpython-36.opt-2.pyc-9131c2a7ea24c075 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----bootstrap.cpython-36.pyc-9131ebf4810273c6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1140.cpython-36.opt-1.pyc-91401c2dac19069a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-funcattrs.cpython-36.opt-1.pyc-9172865bd09f7269 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-91adf2474d30a1d7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdist.cpython-36.opt-2.pyc-91c7fa0b7144d7b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp775.cpython-36.opt-2.pyc-91d301b47e050bd8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...domreg.cpython-36.opt-1.pyc-91dd47a4baaf4102 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-asyncio-base-subprocess.py-91e4e763477bb557 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3---init--.py-91ed042cf42e4072 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-imports.py-91f8a9ced650787c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-next.py-9256b12f1e72b0a4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sitebuiltins.cpython-36.opt-1.pyc-92827bbfc50fff36 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pyclbr.cpython-36.opt-1.pyc-92a62cd1116d1d0f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cmath.cpython-36m-x86-64-linux-gnu.so-92ce74d804984e5c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-plistlib.py-92cf809cf7dbf858 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tracemalloc.cpython-36.opt-2.pyc-92cf89656d19878c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pickle.cpython-36.opt-2.pyc-92f096ae58a40215 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-dummy-connection.py-933c6c84efb59409 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp874.py-9351c7a4c77c670e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-next.cpython-36.opt-1.pyc-936a4ac55e92b68b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-imaplib.py-936e69ccbceab213 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-Grammar3.6.8.final.0.pickle-937141d3a06103c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-16.cpython-36.opt-2.pyc-93756152423119d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...client.cpython-36.opt-1.pyc-9382156f3d7d33b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bz2.cpython-36.pyc-938daf1e42ce6965 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.pyc-93c0d386f7bcc5f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...datetime.cpython-36.opt-2.pyc-93d492bf2b9dbebc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-pgen2-literals.py-93d6ddfefa81ebdd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-threading.py-93db38c2556ead09 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-9.cpython-36.opt-2.pyc-93dbf0028ff53b1a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---debug.cpython-36.opt-1.pyc-93f5914d19d9a116 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-http-server.py-941de174aff4a3b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-94230cc6a88b2e37 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...traceback.cpython-36.opt-1.pyc-9441c22585dfb001 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...grp.cpython-36m-x86-64-linux-gnu.so-944b2785ef93a5c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-test-support-testresult.py-944cb5f0133a4fbb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-asyncio-base-futures.py-94895ea88222da7e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...msvc9compiler.cpython-36.opt-1.pyc-94f97e3f915582c0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-weakrefset.cpython-36.opt-2.pyc-9520ad66593f3aac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-execfile.cpython-36.opt-1.pyc-9534904df965f5e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---extension.cpython-36.pyc-95413be07260fe04 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-struct.py-9558fc919a7ab54f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...hp-roman8.cpython-36.opt-1.pyc-9559926516aeb149 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...encodings-unicode-internal.py-9582b18d44ab70a7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...copyreg.cpython-36.opt-2.pyc-9595c661f7189637 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-curses-panel.cpython-36m-x86-64-linux-gnu.so-95c0fe85813a161c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1006.py-9609a4c0633c345e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-32-le.cpython-36.pyc-961709030ceefc5d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-asserts.cpython-36.opt-2.pyc-9625f46dcf612722 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...optparse.cpython-36.opt-2.pyc-9636df361df87719 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...selector-events.cpython-36.pyc-964975e63f1623a2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...server.cpython-36.opt-1.pyc-964c2271a5dbc6e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-pydoc-data---init--.py-967e23f66b3ae8b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...thread.cpython-36.opt-2.pyc-96a0a96c3b1bf369 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bootlocale.cpython-36.opt-2.pyc-96aab7a7a7c4914a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-events.cpython-36.opt-1.pyc-96cee469d6ea8758 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-util.py-970d3fe1072507c8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso2022-jp-3.py-973e716720e10ec2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---multipart.cpython-36.pyc-974199400cd9671d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-7.cpython-36.opt-2.pyc-975d91145c1c3d7c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sunau.cpython-36.opt-1.pyc-976171311ccb1375 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ctypes-macholib-fetch-macholib-9762a508d71641dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---aifc.cpython-36.opt-1.pyc-978b1589337f113b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...numbers.cpython-36.opt-2.pyc-97b0817f42521ed7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...getpass.cpython-36.opt-1.pyc-97ce2ea5f70ff831 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-coroutines.py-97d6455892cb39f1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-kr.cpython-36.opt-2.pyc-97da1f9ea717c844 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---aliases.cpython-36.pyc-97e5f669db3c0c87 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-aifc.py-97e6c2ba605d3c4a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-97fe953b29e4dfde +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ElementInclude.cpython-36.opt-1.pyc-98300b0bcd9dc8a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-dict.cpython-36.opt-2.pyc-98599f060feec627 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-build-clib.py-98686918137b753a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dist.cpython-36.opt-2.pyc-9872bd83c1810c23 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-987ac8edc6924609 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unixccompiler.cpython-36.opt-2.pyc-9888c65ed6e00abf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...argparse.cpython-36.opt-1.pyc-990ec5789df88912 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-9931ffd34cf3038e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-build.py-9932d0b7dec83edc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-future.cpython-36.pyc-993bb8a8747baab2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...statistics.cpython-36.opt-1.pyc-994ccf13e4ebb0b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cgi.cpython-36.pyc-9954779aa8c6a2fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sre-parse.cpython-36.opt-1.pyc-99631b94e0aaeeff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---token.cpython-36.opt-1.pyc-998859b7ddd79eef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-99bedb70f8f49c78 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-isinstance.cpython-36.opt-1.pyc-99d05780dbcaebde +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-venv-scripts-common-activate-99d8ec5e3b63c47f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-ne.py-9a0d721e49f1448b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pyclbr.cpython-36.pyc-9a3c6780ef5ba6c5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base64.cpython-36.opt-1.pyc-9a54c11cc3152aab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---trace.cpython-36.opt-1.pyc-9a802f4d2de33a09 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---getpass.cpython-36.pyc-9ad4d99e407ae6b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1257.cpython-36.opt-1.pyc-9ad68c400374431f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-dict.cpython-36.pyc-9b1cb2d61ab9df2a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-32-le.cpython-36.opt-1.pyc-9b27b83f2d4da338 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-9b2b1c72d59356b8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-dumb.cpython-36.opt-2.pyc-9b43e385b90d4b71 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---euc-kr.cpython-36.pyc-9b5435d0ff40bd55 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---process.cpython-36.pyc-9bb26be1a9367711 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...compat.cpython-36.opt-2.pyc-9bb2ceddfaa23d51 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-charmap.py-9c10f2a1cb1f1e10 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-parse.py-9c19541e06e381e2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp737.py-9c40b6c416355d37 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp855.cpython-36.opt-2.pyc-9c959132c46e966e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-mailcap.py-9caa52ee4a91d3be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-spawn.py-9cc202352a917c6c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-asyncio.cpython-36m-x86-64-linux-gnu.so-9cc3b0306414dbeb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-paren.cpython-36.opt-1.pyc-9cc76678398ea299 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ElementPath.cpython-36.opt-1.pyc-9cca28bbd5b7a742 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jisx0213.cpython-36.opt-1.pyc-9cdebadaac6a98fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp864.cpython-36.pyc-9ce2575f690a610c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pstats.cpython-36.opt-2.pyc-9ce4aa85e981d878 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncore.py-9ce7cf13b7919b45 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---glob.cpython-36.opt-2.pyc-9cecf7dc5bf38940 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...errors.cpython-36.opt-2.pyc-9cf119103c96b829 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---getopt.cpython-36.pyc-9cf820677d9bf582 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.py-9d01a19c893aab44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---core.cpython-36.pyc-9d33cec74d58699e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-9d3aadf49edb8e1e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-8-sig.cpython-36.opt-2.pyc-9d6cbe7c4dd73edb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dbapi2.cpython-36.opt-1.pyc-9d8cbbf6d4fd00e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-9daeb0568d269716 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-15.cpython-36.pyc-9db9ae8bfd74e2a9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-wsgiref-util.py-9dc8046edb72598a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gzip.cpython-36.opt-1.pyc-9dcf3f12ca90434b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...http---pycache---client.cpython-36.pyc-9dd3fae7ad68a537 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xml-sax-handler.py-9de38776c3d5a460 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-numbers.py-9df233d8a5a44e0d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...refactor.cpython-36.opt-2.pyc-9df2f36f0b0339ab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nonmultipart.cpython-36.opt-2.pyc-9e07d2eb280978fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-euc-kr.py-9e08af2794eb9930 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-16.cpython-36.pyc-9e09620fff44e023 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---xmlbuilder.cpython-36.pyc-9e598584e64dca5c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp950.cpython-36.opt-1.pyc-9e6d3449813a2d1f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---big5.cpython-36.opt-2.pyc-9e86386ed99b153a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...response.cpython-36.opt-2.pyc-9e887b76f4cc0d37 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.cpython-36.opt-1.pyc-9eca55df5280a2eb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp864.cpython-36.opt-2.pyc-9f1f1281eed58bd5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp437.cpython-36.opt-1.pyc-9fb53a2f3ddf38f2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bz2-codec.cpython-36.opt-1.pyc-9fbba98eb3d2a6fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...configparser.cpython-36.pyc-9fbc26f6d5c2ec68 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sdist.cpython-36.opt-2.pyc-9fcdb02df11f97c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cookies.cpython-36.opt-1.pyc-9fedcaa3421d2b28 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp775.cpython-36.opt-1.pyc-9ffe9e76676b0ce3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-msvccompiler.cpython-36.pyc-a01438352fab49b0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp866.cpython-36.opt-2.pyc-a01fd20e2873f816 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---compat.cpython-36.pyc-a024e09ed94e6537 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-14.cpython-36.pyc-a02f6cb9111e43b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-build-py.py-a0460ce404f1a1b2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...socketserver.cpython-36.pyc-a07a128e051c54be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-subprocess.cpython-36.pyc-a083b7e634ca52b3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-ne.cpython-36.opt-1.pyc-a08815f9662b1e89 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---keyword.cpython-36.pyc-a09ceb27d4925c67 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---events.cpython-36.pyc-a0a3f2fb7cbcc63f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-curses-textpad.py-a0a3fe6f2a22af09 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...kz1048.cpython-36.opt-1.pyc-a0cece8897011b11 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a0d11256ccac47ab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-set-literal.cpython-36.pyc-a109e810d794b934 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...typing.cpython-36.opt-1.pyc-a118c74b8120ce17 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-shift-jis.py-a151304e48309e21 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-asserts.py-a15b717ebd282fcc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-cyrillic.cpython-36.opt-2.pyc-a1775f82a56d3f8c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdist.cpython-36.pyc-a1f9e6fed222f21f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-a1fbcfc027b39a86 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...errors.cpython-36.opt-1.pyc-a2147fadca5f4954 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-filter.cpython-36.pyc-a2404dfed8eb7f23 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-execfile.cpython-36.opt-2.pyc-a2595f039cc47acd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-roman.cpython-36.opt-2.pyc-a259b57dd86492be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-nturl2path.py-a27fc4173b818da1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---selectors.cpython-36.pyc-a2863a43d09bbcc8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pgen2---pycache---token.cpython-36.pyc-a2bf4df52bed1303 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--phello--.foo.cpython-36.pyc-a2f9287539caa86e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1252.cpython-36.opt-2.pyc-a3013b315e178136 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...opcode.cpython-36.opt-2.pyc-a305f0317b214977 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----parseaddr.cpython-36.pyc-a339dec6837d4a6e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-clib.cpython-36.opt-2.pyc-a33ba6fbd50bcc13 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sre-parse.py-a3b224d784ef0f7d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---expat.cpython-36.opt-2.pyc-a3c363fa2b2308d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-secrets.py-a3cde4aaa8d87cf8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...big5hkscs.cpython-36.opt-2.pyc-a3dd043ab8fc9a20 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-a41be7e9d3c1c206 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--future--.cpython-36.opt-2.pyc-a41ca6d27d308f6d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---re.cpython-36.pyc-a4360b20c12fc74a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-raise.cpython-36.pyc-a44beff10a3e6a4c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-basestring.cpython-36.pyc-a482e8623b57db7b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...application.cpython-36.opt-1.pyc-a49d9755597222e2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...webbrowser.cpython-36.opt-1.pyc-a4d6032399b52d4e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cygwinccompiler.cpython-36.opt-2.pyc-a4ef842abe4ab5fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.cpython-36.pyc-a4f725b7c75e229d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a511d9f21f12d702 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...koi8-u.cpython-36.opt-1.pyc-a5277283e37d29e5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cmd.cpython-36.opt-1.pyc-a5761558af3b3900 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hz.cpython-36.pyc-a576855294bbb8d4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-context.py-a5b34db9fd89ec56 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...versionpredicate.cpython-36.opt-2.pyc-a5fe6499fbd1881e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...selector-events.cpython-36.opt-1.pyc-a61a7fcd9bd87b9b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-types.cpython-36.pyc-a6317a255fb27b86 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---synchronize.cpython-36.pyc-a638b9b8f77a7b31 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---text.cpython-36.opt-1.pyc-a6b544f5a84c7521 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---platform.cpython-36.pyc-a6fced4321659e32 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a7032fb3cc4e26f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---validate.cpython-36.pyc-a736ba22e82827d1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-undefined.py-a73a99b9b26b9f9e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-next.cpython-36.opt-2.pyc-a74245157f5c6aad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp500.cpython-36.opt-1.pyc-a76185c6cd0f08af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-a7662c3a634d10ac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-metaclass.cpython-36.pyc-a769344489ff593a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...getpass.cpython-36.opt-2.pyc-a7af394a2c56edf4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-buffer.py-a7bca3bdf8f15643 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...xdrlib.cpython-36.opt-2.pyc-a7d010d57a66d482 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pgen2---pycache---conv.cpython-36.pyc-a7d5a33f7bd999ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-utf-8.py-a7dde49b6c41e684 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...antigravity.cpython-36.opt-1.pyc-a7e59ac452de53e4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pydoc.cpython-36.opt-1.pyc-a80bf96e7f51f6dd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---locks.cpython-36.opt-2.pyc-a8142f8f159fce54 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---quopri.cpython-36.pyc-a8193883efd62de5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-2.cpython-36.opt-2.pyc-a83eacfebbc7ec7c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...genericpath.cpython-36.opt-1.pyc-a85250ae830bbbe2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...process.cpython-36.opt-1.pyc-a881056bba8576fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp857.cpython-36.pyc-a8ae0e218b03f9aa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jp.cpython-36.opt-1.pyc-a8eedb8080ec08c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-euc-jis-2004.py-a9246c60271e281c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...charset.cpython-36.opt-1.pyc-a96cea6cfa55bff7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...errors.cpython-36.opt-2.pyc-a980f28d141035b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---filelist.cpython-36.pyc-a98368723d571d60 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bisect.cpython-36.opt-1.pyc-a999edc4526ba8b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pdb.cpython-36.opt-1.pyc-a9c4e61933ab1c90 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-refactor.py-a9e297e001dca034 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp857.py-a9f000fcfb657377 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-socket.cpython-36m-x86-64-linux-gnu.so-a9f90be048b37e46 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-operator.py-aa01c4acab93367c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...runner.cpython-36.opt-2.pyc-aa41ae8b5489e375 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-input.cpython-36.opt-1.pyc-aa4d992dd04f72de +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...random.cpython-36.opt-2.pyc-aa9d68c189fc629c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-aaadd09eac070481 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-sqlite3---init--.py-aab24a03ae4a9b94 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---scanner.cpython-36.pyc-aad8eb84e01bf00d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---shlex.cpython-36.opt-2.pyc-ab23a565769556f7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-5.cpython-36.pyc-ab2463f9e699d331 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asynchat.py-ab5ae4878f342cd3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-dbm---init--.py-ab5e1259201b8c9c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-ext.cpython-36.opt-2.pyc-ab6793df05400c9c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-codecs.py-ab7b0ee1892183c2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-socketserver.py-ab99febe5f06b9ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...proactor-events.cpython-36.opt-2.pyc-abf14f55dbcd6b24 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-msvccompiler.cpython-36.opt-1.pyc-ac087815b2384ec8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...calendar.cpython-36.opt-2.pyc-ac1e3b3a9189471e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-turkish.py-ac43304b2aeb06aa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-weakref.py-ac505d18c3fced6a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cookiejar.cpython-36.opt-2.pyc-ac5299b89bbfa99e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-urllib.py-acc8409cd96c02db +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---inspect.cpython-36.pyc-acd75f8510ac0716 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---webbrowser.cpython-36.pyc-acd9a396d4d842f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp037.cpython-36.opt-2.pyc-acfa54de78215799 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---suite.cpython-36.opt-2.pyc-acfbb9d091b18230 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-antigravity.py-ad05c2801549cb49 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ad075b9273a66499 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...share-licenses-python3-libs-LICENSE-ad2aaba3951726a9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-token.py-ad793a9963de4bbe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...latin-1.cpython-36.opt-1.pyc-adf6751d8cb44e15 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp424.cpython-36.opt-1.pyc-ae005c4d48fb6e79 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-reduce.cpython-36.opt-2.pyc-ae03c5a6538300a0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pulldom.cpython-36.opt-2.pyc-ae13d6ef60d51cd5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ElementTree.cpython-36.opt-2.pyc-ae30b0eeabef9887 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...saxutils.cpython-36.opt-2.pyc-ae4415fa1ff2eb90 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-intern.cpython-36.opt-1.pyc-ae4b5bf1e9d26fa9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---chunk.cpython-36.opt-1.pyc-aeb0600dd7ad91ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---config.cpython-36.pyc-aecf31682c448d0e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-aedd9ecfe572c247 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-types.py-af209d9bdfe32545 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-urllib-request.py-af43c3af2e9d7f69 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-build-scripts.py-af4e34d9e3ccc76a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-zlib-codec.py-af4f0b773b6dfac4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-af59d642bc4dfe41 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...struct.cpython-36.opt-1.pyc-af63d7294336a840 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-main.py-af788d0e67700fdc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...managers.cpython-36.opt-1.pyc-af7d9931da633725 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-ctypes-macholib-dyld.py-af9e54826b669e22 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-afbf96b973770ebb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...zlib.cpython-36m-x86-64-linux-gnu.so-afe962c63cb68f6e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---opcode.cpython-36.pyc-aff2aa2074bfa327 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-fork.cpython-36.opt-1.pyc-aff4baab7680e1ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-raise.cpython-36.opt-2.pyc-affad52cb3a4b7c3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...hashlib.cpython-36.opt-1.pyc-b00bed8ce6a4e1b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b01c6b82447c34ca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---trace.cpython-36.pyc-b03240054321a3bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-reduce.py-b04fec266be9e4eb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-multibytecodec.cpython-36m-x86-64-linux-gnu.so-b059bede5b977fd4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...wintypes.cpython-36.opt-1.pyc-b0cdd00286e84023 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sysconfig.cpython-36.opt-1.pyc-b0e55ea3cb813771 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...managers.cpython-36.opt-2.pyc-b0ed08e102b929b3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...contextlib.cpython-36.opt-2.pyc-b0ffa058c9b7b407 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bcppcompiler.cpython-36.opt-2.pyc-b12e56b6f3abc211 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-11.cpython-36.pyc-b13544e10bb49888 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-dom-minicompat.py-b156907c787e40d2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---transports.cpython-36.pyc-b15a4ad67a37b8cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-header-value-parser.cpython-36.pyc-b16712c9dbc5a72a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b180d579c7541fcd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-apply.py-b18c9a51441f8319 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-http-client.py-b1960373aefd7f61 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-operator.cpython-36.opt-1.pyc-b1b73f797074773c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-dist.py-b1c4879dad7c9b1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---zlib-codec.cpython-36.pyc-b1cc75199425683e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...formatter.cpython-36.opt-1.pyc-b1ec48a6df1d65d3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----pydecimal.cpython-36.pyc-b1f355a8bb9a2efc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-euc-jp.py-b1f5ad5ea840e27d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-b2475befcf858602 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...upload.cpython-36.opt-2.pyc-b29186e149c69bfa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-roman.cpython-36.opt-1.pyc-b29bf8883ca79e4c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b2b93edd098f9876 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email-mime-message.py-b2c4a34bcedaab30 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-inspect.py-b2c91e796aa5ee77 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-popen-spawn-win32.py-b2e4b05969461b6b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp855.cpython-36.pyc-b2efdf59c0bc57f8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-compression.cpython-36.pyc-b2f228d38b1b37bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.pyc-b2f7c8db336c67d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---queue.cpython-36.pyc-b31aed4e33c7b066 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...versionpredicate.cpython-36.pyc-b32c6eecfbf7f682 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-sys-exc.cpython-36.pyc-b33aaaf50efcb6ea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp862.cpython-36.pyc-b341314650a687a7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----pyio.cpython-36.opt-2.pyc-b3545a86bf0c9cef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...raw-unicode-escape.cpython-36.pyc-b36204b6cc3be122 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...profile.cpython-36.opt-1.pyc-b383c310acc414ad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b3868ca91bf45220 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-print.cpython-36.opt-2.pyc-b3ee159e67e6da87 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cProfile.cpython-36.opt-2.pyc-b3ffcd93227e909e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---shlex.cpython-36.pyc-b403215fb17e88e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dir-util.cpython-36.pyc-b406bbeaeeafe0d1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp852.py-b40d6a19dc47fd5b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unix-events.cpython-36.opt-1.pyc-b411e25e9fc5df42 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---heap.cpython-36.opt-2.pyc-b438ce8346a6f51a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...koi8-r.cpython-36.opt-1.pyc-b444ed542d8daba1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...posixpath.cpython-36.opt-1.pyc-b45c623a865dc2b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-unicode.cpython-36.opt-2.pyc-b49466550b2bcfe2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dir-util.cpython-36.opt-1.pyc-b4a7403dc8dae727 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-shutil.py-b4baf93cb37e4be5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xdrlib.py-b4d9c07b41ba6f7a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.pyc-b4f88a0e06aefcb7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-encoded-words.cpython-36.opt-1.pyc-b51186919b0129b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sharedctypes.cpython-36.opt-2.pyc-b51a755b1d57a75f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-throw.cpython-36.opt-1.pyc-b55b7ec1228c19fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b56ac2bdf8b4b30f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso8859-14.py-b571a8cc2c3cfcc2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-fnmatch.py-b5926719a37394d5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...zipapp.cpython-36.opt-1.pyc-b5cf15872b6994a1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b601dee80609a284 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b62972ed0d55164b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pool.cpython-36.opt-1.pyc-b63629e5cbdbb027 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing---init--.py-b64176d04f044403 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-13.cpython-36.pyc-b6470b31017cdcca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dumb.cpython-36.opt-2.pyc-b65cd26d7000ded0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-curses-has-key.py-b6a98a91f6215ce7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-asserts.cpython-36.opt-1.pyc-b6b846cc8dbe9431 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b6c26f1b59d0ac2c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-reprlib.py-b6e0eec06143f4a1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-32-be.cpython-36.opt-1.pyc-b6f1cb9025a3e931 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---spawn.cpython-36.opt-1.pyc-b7061aec7ca6ab0d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-import.py-b74240204e725fcf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-sys-exc.py-b7575b30f813ca36 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-arabic.py-b76d8ae4e8cf2575 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----bootlocale.cpython-36.pyc-b7ab44f9b756f79f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b7ad3f47be155e0b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-standarderror.cpython-36.pyc-b7b63c3c63ea7a5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings---init--.py-b7fac0e9dbd3773e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...server.cpython-36.opt-2.pyc-b7ff35df978560a3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----exceptions.cpython-36.pyc-b81a66595739f069 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-datetime.cpython-36m-x86-64-linux-gnu.so-b82f90825ad99861 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-subprocess.py-b848addd2afeccf8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...queues.cpython-36.opt-2.pyc-b86886092ed04763 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---idna.cpython-36.opt-2.pyc-b8835a1e56248217 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-test-utils.py-b88663bcc48ff553 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...context.cpython-36.opt-1.pyc-b89e2f48427dfcc3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...file-util.cpython-36.opt-2.pyc-b8b54fb28b215ca0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---text-file.cpython-36.pyc-b90858d09fecc5cf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-itertools.cpython-36.opt-2.pyc-b913d57537661ba7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---build-py.cpython-36.pyc-b935725573b9aa57 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...macurl2path.cpython-36.opt-2.pyc-b95cd2816b8a4f1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-urllib.cpython-36.opt-1.pyc-b976ba9129e82770 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---framework.cpython-36.pyc-b97e035a1938664b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdist-dumb.cpython-36.pyc-b9938f4db7c9fcb8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-8.cpython-36.opt-1.pyc-b9c5b6a64406d01b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp865.py-b9f1a37deb39a672 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-7.cpython-36.opt-1.pyc-ba0286d9d8933901 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...constants.cpython-36.opt-2.pyc-ba1f836af27fe571 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdb.cpython-36.pyc-ba26190462d72aa6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---os.cpython-36.opt-1.pyc-ba2d65053098516f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-exitfunc.cpython-36.opt-2.pyc-ba3409483eefbda4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-ws-comma.py-ba3c76fe18472106 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-koi8-u.py-ba5e906227fb3717 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---charmap.cpython-36.pyc-ba7d4c0b9c711b5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-token.py-baa8310d71e39288 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-32-be.cpython-36.pyc-baab7a4fdec77630 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---uu.cpython-36.opt-1.pyc-bb10259bf139c25b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---netrc.cpython-36.pyc-bb1108a0fcbb89bd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-header.py-bb2e337fc7bc25d3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-dom---init--.py-bb44c09411fe818c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-asyncio-windows-events.py-bb56fd71715f640b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-1.cpython-36.opt-1.pyc-bb95832565df780c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---big5hkscs.cpython-36.pyc-bbbdded9e22ec658 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-repr.py-bbceae03e4b5e6fe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jis.cpython-36.opt-2.pyc-bbd5e77c39423cb8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---signals.cpython-36.pyc-bbfea4e26d2af868 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-bc26d3b536831a63 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-repr.cpython-36.pyc-bc311e6123f79e3a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...proactor-events.cpython-36.pyc-bc622bc35316a39a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-2004.cpython-36.opt-2.pyc-bc85c377eb5a060f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-cgitb.py-bc94a0c6a6ef855a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp424.py-bc9906886de49c71 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...operator.cpython-36.opt-2.pyc-bcb3fc3ea1255fe7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---debug.cpython-36.opt-2.pyc-bce8c9c4bc25ffdf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ascii.cpython-36.opt-1.pyc-bd041d1851d52876 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...signals.cpython-36.opt-1.pyc-bd529ac6eaa7af6f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unicodedata.cpython-36m-x86-64-linux-gnu.so-bd590998912b6c9e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...loader.cpython-36.opt-1.pyc-bd650b9cacb57c07 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-bd889e2df1447e76 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-py-compile.py-bd99ebc18fe1e1fe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---spawn.cpython-36.opt-2.pyc-bdb708757448c7e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-config.py-bdc5dddeb0550935 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-this.py-bdfc5fbf773523a5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...typing.cpython-36.opt-2.pyc-be03b233286ede83 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-14.cpython-36.opt-2.pyc-be0e6d8b6c6519d4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...literals.cpython-36.opt-1.pyc-be1a3adbffcc425e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-13.cpython-36.opt-1.pyc-be27d42eb6257ac4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...py-compile.cpython-36.opt-2.pyc-be331f23dba635bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6---phello--.foo.py-be5c01ddec805889 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-xrange.cpython-36.opt-2.pyc-be6be097bfad0e72 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1254.cpython-36.pyc-be6c4771cf714db0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--weakrefset.py-be96b4615ca6fb06 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-print.cpython-36.opt-1.pyc-bea9c67f89b81afe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---case.cpython-36.opt-2.pyc-beab5831bf8ec0e8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unicode-internal.cpython-36.opt-2.pyc-beac41b1029c3903 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-clean.py-bec406833ef3b30c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...xmlbuilder.cpython-36.opt-2.pyc-bec5b3fe1f35270d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command---init--.py-bed43f927b1ecb58 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-bee703a389bd1eff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---argparse.cpython-36.pyc-beea762df550e61d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp.cpython-36.opt-2.pyc-bf2b9ea11ce77057 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-13.cpython-36.opt-2.pyc-bf3f5e993ec8528a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-netrc.py-bf40314d7d89feca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-intern.py-bf606240f92753be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp875.cpython-36.opt-1.pyc-bf7b968cd3ca1e1d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...test-utils.cpython-36.opt-1.pyc-bf8b99ef3615ee69 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp858.cpython-36.opt-1.pyc-bf934e353d4adf99 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---register.cpython-36.pyc-bfa8461996e8dd3e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp424.cpython-36.pyc-bfaa1cc5bb788514 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mailbox.cpython-36.opt-2.pyc-bfc1744b1655036f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-site.py-bfc47ea4416c5f3e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---kz1048.cpython-36.pyc-bfe569c74b6141d5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-typing.py-bfee7c1206a991cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-nonzero.cpython-36.opt-2.pyc-c019cc38769d286c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-concurrent---init--.py-c05e34a402626ba4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-latin2.py-c06ff2b06c5e048f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...script-helper.cpython-36.opt-1.pyc-c07c6b63c941b060 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-numliterals.py-c0a17d4a7f964f3b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pstats.py-c0a6c16d8afc10d5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----strptime.cpython-36.pyc-c0c7f04687542c2d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---binhex.cpython-36.pyc-c0f31f46e84192a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ptcp154.cpython-36.opt-1.pyc-c0f93e31b5d2bf7c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---version.cpython-36.pyc-c12b7fb88434e33c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hmac.cpython-36.opt-2.pyc-c1356d180e837488 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-logging-config.py-c13cb7a36918c56a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...reduction.cpython-36.opt-1.pyc-c15492e39fc261f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mbcs.cpython-36.opt-2.pyc-c1575eb64f73d148 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp862.cpython-36.opt-2.pyc-c15cb7da203e7c8d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---undefined.cpython-36.pyc-c18525ddf9d33d34 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-btm-matcher.py-c1935e7d0a30d3ac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-subprocess.cpython-36.opt-1.pyc-c195af47a598f294 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pytree.cpython-36.pyc-c1ac973e815dd8a3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---poplib.cpython-36.pyc-c1b61dc8377b298e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-constants.py-c1c647105da18d44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-difflib.py-c1f665277991ccc5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--pydecimal.py-c1fdc1c439c6c222 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sqlite3-dump.py-c210627074393021 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1254.cpython-36.opt-1.pyc-c23983f38aca1178 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c2561cfa174b5a16 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-set-literal.py-c25b3433cd001ed3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-1.pyc-c263ed9a97c27f4d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-command-template-c27000e35ecdade4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c295ad24803ef7c1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-map.py-c29f0be9bd6a5c8e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...queues.cpython-36.opt-2.pyc-c2a2867a8d5b9b1a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-intern.cpython-36.pyc-c2d2a9cf886f5916 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----base.cpython-36.pyc-c2d9072427a9e8e8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cookiejar.cpython-36.pyc-c2f78ed22b94563c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gb18030.cpython-36.pyc-c30bb13146a55d85 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---saxutils.cpython-36.pyc-c310769e44dcd1bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---process.cpython-36.pyc-c313bc6b5ee8dd89 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso2022-kr.cpython-36.pyc-c3297b74fbe7aaf9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp424.cpython-36.opt-2.pyc-c341efe664fc3def +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---heapq.cpython-36.opt-1.pyc-c34d4e1ac1d11724 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jis.cpython-36.opt-1.pyc-c38a15144f86e829 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-hex-codec.py-c39b0d2966dcb59c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...transports.cpython-36.opt-1.pyc-c3a3eef044341764 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp852.cpython-36.opt-2.pyc-c3acb8dab78eed3d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unicode-escape.cpython-36.pyc-c3f152591a6e5eeb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1258.py-c4292a4626885580 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-install-data.py-c464873185cefd27 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---site.cpython-36.opt-2.pyc-c498599d72c96082 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...codecs.cpython-36.opt-2.pyc-c4a13021bb7decd1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jis-2004.cpython-36.pyc-c4a4378caa5a3c96 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mock.cpython-36.pyc-c4b2554ff35797f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---config.cpython-36.pyc-c4bca7dd640c04e6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-transports.py-c4d4d13d891652d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---runpy.cpython-36.opt-2.pyc-c4dee6574a2bf65c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---clean.cpython-36.opt-2.pyc-c508782d2f680d54 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c52927a4bbacf190 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp850.cpython-36.opt-1.pyc-c597c30a30872953 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...secrets.cpython-36.opt-2.pyc-c5cb0bfcc592bd29 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c5d6765d4f3574e2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ElementTree.cpython-36.pyc-c5f11efb2ba6ee8b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1250.cpython-36.pyc-c5fb949e20f1da7f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...application.cpython-36.opt-2.pyc-c5ffcc60aff2ceff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----pyio.cpython-36.pyc-c6289ab6d1c5fd39 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso2022-jp-ext.py-c62a6c60a5de26fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-tasks.cpython-36.opt-1.pyc-c650dbb5affcb50b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---request.cpython-36.pyc-c676eb81873e4ed4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-c683ca27748c7238 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ElementTree.cpython-36.opt-1.pyc-c6868a1b3bc04313 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----main--.cpython-36.pyc-c68874162263d457 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...reduction.cpython-36.opt-2.pyc-c699229b0a0757a2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...grammar.cpython-36.opt-1.pyc-c6d6ed54283ab1c1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-codecs-iso2022.cpython-36m-x86-64-linux-gnu.so-c6db402aa02d2ea7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-xml-etree-ElementTree.py-c6f8c4db4c4a3ca5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ccompiler.cpython-36.pyc-c71bcae162907c6b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-reload.cpython-36.pyc-c732ca3c3c556974 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pdb.cpython-36.pyc-c7463e9a2d54922b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---numbers.cpython-36.pyc-c746d8ea9ef0525f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-smtpd.py-c755b1de1c727ca0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-funcattrs.py-c7748c274a6a18c6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-c7779a93be400030 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-bz2.py-c77bc96861678ff1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email-base64mime.py-c78220666ae3f64a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...signal.cpython-36.opt-1.pyc-c79968342f25f1b0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-16-le.cpython-36.opt-2.pyc-c7ab20ea312bc4bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1255.cpython-36.pyc-c7fe652dcf1583c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tokenize.cpython-36.opt-2.pyc-c8171c1b63a8f5a1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-lzma.py-c83f4fe641177aba +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c87cf7603aa77d4a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-10.cpython-36.opt-1.pyc-c896c339c6e07991 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-data.cpython-36.opt-2.pyc-c8a08e414c5d0fd1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ssl.cpython-36.pyc-c8d3472c55bcb211 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-spawn-win32.cpython-36.opt-1.pyc-c8e13a78b5a06ed2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-1.cpython-36.opt-2.pyc-c8e8cd4ce2eedf8f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-cyrillic.cpython-36.pyc-c8f10f47d71b5276 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-scripts.cpython-36.opt-2.pyc-c900e1f423a5a00e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-result.py-c9152b00a3454b83 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sndhdr.cpython-36.pyc-c979f13da1f59a1a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-greek.cpython-36.opt-2.pyc-c980952cd786801a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...importlib--bootstrap-external.py-c985b3f458d53630 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...headerregistry.cpython-36.opt-1.pyc-c9863dba914a2809 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---idna.cpython-36.opt-1.pyc-c995e3dde2cc01c6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...encoder.cpython-36.opt-2.pyc-c9a1891bd0292e68 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xmlrpc---init--.py-c9a92994b229b992 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c9b1f7c3e639a441 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...gb18030.cpython-36.opt-1.pyc-ca1de2281a497411 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-random.cpython-36m-x86-64-linux-gnu.so-ca3b31a1f1fe23e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---idna.cpython-36.pyc-ca64f036ba7e8e75 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-reduction.py-ca83d1b2f3a74859 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ca84232d13da64db +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-caaf3e2b3d45246b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-1.py-cab65f19e8062ae2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fixer-util.cpython-36.opt-1.pyc-cac05b352d88fe5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-cad93b6da68af350 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---loader.cpython-36.pyc-caf719b0a5f56314 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...minidom.cpython-36.opt-1.pyc-cb272d9ae023048b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nturl2path.cpython-36.opt-1.pyc-cb7ea1ba5ee9ecc7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---policy.cpython-36.pyc-cb89fe50f6ca0684 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1255.py-cb97b7fdce31bcc8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...transports.cpython-36.opt-2.pyc-cbb2fa4c7c2b75c1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fixer-util.cpython-36.opt-2.pyc-cbba8c2a43b04bdb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...contextlib.cpython-36.opt-1.pyc-cbd11f1e2316f44c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---formatter.cpython-36.pyc-cbea3cdb2339a68f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...header.cpython-36.opt-1.pyc-cbed6bf3ad1dd832 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-statistics.py-cbef0356c6384f0a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-2.pyc-cbef5f5729c40e49 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1250.cpython-36.opt-1.pyc-cc00d788bcb0b963 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...policy.cpython-36.opt-2.pyc-cc0f8feb18baa3bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---copyreg.cpython-36.pyc-cc23b86087d12a10 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---clean.cpython-36.pyc-cc2b6470a10e0796 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-imports.cpython-36.opt-1.pyc-cc4551171a9f6c9c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ipaddress.cpython-36.opt-2.pyc-cc4fdda90adcd7f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tokenize.cpython-36.opt-1.pyc-cc7fd05f167489d4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1258.cpython-36.pyc-cc8180fd947ef563 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---timeit.cpython-36.pyc-ccb0ce3e5f021788 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---image.cpython-36.opt-2.pyc-ccb5af553ea40f43 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-cd0add7c2de3763a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...imghdr.cpython-36.opt-2.pyc-cd33268b2aed5aee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...colorsys.cpython-36.opt-2.pyc-cd33b0a086fb8079 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-logging-handlers.py-cd42d73c28de6431 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-string.py-cd4ba999747aab1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---code.cpython-36.opt-1.pyc-cdda0d5a0e701810 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-xml-parsers---init--.py-cddb82b0a8ea12ae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--phello--.foo.cpython-36.opt-1.pyc-cdf091e7f1d4d9c3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...context.cpython-36.opt-2.pyc-ce2072c59e54c195 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...btm-utils.cpython-36.opt-2.pyc-ce222e4035ce30df +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---build-ext.cpython-36.pyc-ce2848eb1fedee75 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...socketserver.cpython-36.opt-2.pyc-ce332ebeb1ffe674 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-cyrillic.cpython-36.opt-1.pyc-ce383a95b535bcdf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hmac.cpython-36.pyc-ce497702db1bce99 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---oem.cpython-36.opt-2.pyc-ce70799082f621f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp850.cpython-36.pyc-ce9deedf0b66e7c4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mac-farsi.cpython-36.pyc-ceb0fb5b4c01980a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---base.cpython-36.opt-1.pyc-cee6e3850b70ac32 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mac-latin2.cpython-36.pyc-cefaf107f4021fdf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-os.py-cefd00f42764160a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---koi8-r.cpython-36.pyc-cf0c9a7c59b80379 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...encoder.cpython-36.opt-1.pyc-cf53a4f0629620ca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...validate.cpython-36.opt-1.pyc-cf63114f1860ea08 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-http-cookiejar.py-cf6e80d544210195 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ascii.cpython-36.opt-1.pyc-cf796960997236cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---weakref.cpython-36.pyc-cf7a6f629a4cf3a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-big5.py-cf7d8448d7e7c293 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-keyword.py-cf84656467927494 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-exec.cpython-36.opt-1.pyc-cf9d0d605cd04bc3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-cfe8d056b8ff5be9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---error.cpython-36.opt-2.pyc-d009c31216cfe4aa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-unittest---main--.py-d02159ff059cb1ab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-print.py-d02f1efc4a5506c5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.cpython-36.opt-2.pyc-d0318d6e4f25fafd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1251.cpython-36.opt-1.pyc-d034e8054169b152 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp.cpython-36.opt-1.pyc-d03e3be5916ea374 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...hex-codec.cpython-36.opt-1.pyc-d068f0b2be182abc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---constants.cpython-36.pyc-d09a1abe50b9290b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tool.cpython-36.opt-2.pyc-d0db017cb971bb44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---queues.cpython-36.pyc-d1519045b979c759 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-resource-sharer.py-d1811b0cd2355651 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install.cpython-36.opt-1.pyc-d18187d6fed93d33 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-itertools-imports.cpython-36.opt-1.pyc-d1a7379a913b23d9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...semaphore-tracker.cpython-36.opt-1.pyc-d1dd2c28a9195878 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-importlib-abc.py-d20ed7b1ed709533 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-7.cpython-36.pyc-d21253c4e6a6cdb7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d221e000e82bc8b8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...loader.cpython-36.opt-2.pyc-d238f4c7028a9613 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-except.cpython-36.opt-1.pyc-d249ce1f121703ce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-hashlib.cpython-36m-x86-64-linux-gnu.so-d250c8e5093a38ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-venv---main--.py-d251d8d2b8e9b735 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...protocols.cpython-36.opt-2.pyc-d268eacc6db24cac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp852.cpython-36.opt-1.pyc-d2ab0f3f68ca11f6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ElementPath.cpython-36.pyc-d2b80e16568da6fc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...contentmanager.cpython-36.opt-2.pyc-d31d24278d15ba09 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-itertools.cpython-36.pyc-d32ffaeb2c1c9f05 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...symbol.cpython-36.opt-1.pyc-d35dd0d800db4a40 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-operator.py-d365dedd146e5baa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----weakrefset.cpython-36.pyc-d3763885c3a6dc06 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---runner.cpython-36.pyc-d37b69d00f5f5dca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-traceback.py-d388c14d403c7e5c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-3.cpython-36.pyc-d397529e666d01dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fractions.cpython-36.pyc-d3bd44b9e1fc432c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---random.cpython-36.pyc-d3c5e102fb4c59e6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...config.cpython-36.opt-2.pyc-d3d2b8cded7612b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jis-2004.cpython-36.opt-1.pyc-d3e6332273e4f864 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-csv.cpython-36m-x86-64-linux-gnu.so-d3fd3f12d78803e9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-warnings.py-d40bb397f07e6d37 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-romanian.cpython-36.pyc-d42b8803dac84412 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tabnanny.cpython-36.opt-1.pyc-d43631e5bacd6da3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---audio.cpython-36.opt-1.pyc-d45b07dc79aec119 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---clean.cpython-36.opt-1.pyc-d46eb3429c011e18 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sitebuiltins.cpython-36.pyc-d479bbc1119579bb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-endian.cpython-36.opt-1.pyc-d491f989b653f8d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp852.cpython-36.pyc-d4a9c51fd75b9fe2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----main--.cpython-36.pyc-d4c55792a29114f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-parseaddr.cpython-36.opt-1.pyc-d4dc6794c4040e0b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ftplib.cpython-36.opt-1.pyc-d4f00e754a0dad4f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-msi.cpython-36.opt-1.pyc-d508615a7161eb68 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-spawn-posix.cpython-36.opt-2.pyc-d50c849bb9512327 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-imports.cpython-36.opt-2.pyc-d510d04d3f5c30e4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp775.cpython-36.pyc-d566bb6b6d9a5043 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-d56c80f999fc0076 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---test-utils.cpython-36.pyc-d5aa2e945298c1f2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d5adb37c6a63c4ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...hashlib.cpython-36.opt-2.pyc-d5adb3989dfdc0b8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-8.cpython-36.opt-2.pyc-d5c40e91791974e2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-hmac.py-d5f1f8d83f205ecb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-glob.py-d603b5874ea7cc3e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---crypt.cpython-36.pyc-d646e890f7945e35 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d68c0f555bee6e9f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---config.cpython-36.pyc-d6b32c0f2ae99b12 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--strptime.py-d6e287aab24fd302 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base64-codec.cpython-36.opt-2.pyc-d6f865ad8b467f0a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-asserts.cpython-36.pyc-d7264a7fcfdd678f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sre-compile.cpython-36.opt-1.pyc-d7472848f809ef50 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...smtplib.cpython-36.opt-2.pyc-d753247ccc2b6b2a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---protocols.cpython-36.pyc-d765272f8b0c6181 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1250.py-d790a22e560080c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp737.cpython-36.pyc-d792bdd457f4b498 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-utf-32-le.py-d7a065f4ad87559e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...xxlimited.cpython-36m-x86-64-linux-gnu.so-d7cba40be30c30e5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---site.cpython-36.opt-1.pyc-d7e29f4364a02e88 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-charset.py-d7e36ea904f49459 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-has-key.cpython-36.opt-2.pyc-d7e6ebc7a293e4e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...expatreader.cpython-36.opt-1.pyc-d7f810497ed2632c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-metaclass.cpython-36.opt-1.pyc-d8041d5e14920450 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-8.cpython-36.pyc-d845067e63970a60 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-dom-NodeFilter.py-d84fb8132efe5f46 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---smtplib.cpython-36.pyc-d852e3f13746c174 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-tty.py-d85c295cfc1338dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-strptime.cpython-36.opt-1.pyc-d86fd81bb5a49991 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-configparser.py-d8718a58bacb5733 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---subprocess.cpython-36.pyc-d8786bd3bb243352 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-2.cpython-36.opt-1.pyc-d8a1556bab8d030b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-spawn-posix.cpython-36.pyc-d8a38d26f6c8ec23 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-d8a53622cc4f70a2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...modulefinder.cpython-36.opt-1.pyc-d8bf7fb7b1bd2a84 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sre-parse.cpython-36.pyc-d8bfe2fe0fe40c85 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-trace.py-d8caaad719ba9664 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fixer-base.cpython-36.opt-2.pyc-d905d60bd5bd6341 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---big5.cpython-36.opt-1.pyc-d908cbc0646a1194 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-ptcp154.py-d93ac59f22784472 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dummy-threading.cpython-36.opt-2.pyc-d96ba4ad68e36aec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-funcattrs.cpython-36.opt-2.pyc-d983e70c82bd4f38 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mailcap.cpython-36.opt-2.pyc-d9942ea5af7e5b48 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...threading.cpython-36.opt-1.pyc-d9bee8988ba6268f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-dummy-thread.cpython-36.opt-2.pyc-da0041f03f7a1e70 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp932.py-da122815fbcef99c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dep-util.cpython-36.opt-2.pyc-da14ce6f9ad8cbc4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...windows-utils.cpython-36.opt-1.pyc-da26dc7a03d17886 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-lib.cpython-36.opt-1.pyc-da557f455cc0722f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pipes.py-da5cdbfe5f8bb0e5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bootstrap.cpython-36.opt-1.pyc-da5d74d44938430a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mimetypes.cpython-36.opt-1.pyc-da845b42cc8e05b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fileinput.cpython-36.pyc-da8b74a2431a30dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-msvccompiler.py-daa6c4d7ed27eb42 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-long.cpython-36.opt-1.pyc-daa82719c8f16c8b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-sax-expatreader.py-daa92c4f133f6986 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fixer-base.cpython-36.pyc-dabbfb363ca687b2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---check.cpython-36.opt-1.pyc-dae45e9167458d5b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-isinstance.cpython-36.pyc-db06949423d73bd6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...framework.cpython-36.opt-1.pyc-db0d7c2c356be6f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...text-file.cpython-36.opt-2.pyc-db15a9a51a182a30 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--compat-pickle.py-db189bca068d2635 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...patcomp.cpython-36.opt-1.pyc-db7553a9287560b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xmlrpc-client.py-db762ea816e6ce67 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---error.cpython-36.opt-1.pyc-db9f0195c1d3adb6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----base.cpython-36.opt-2.pyc-dba9f2eeda54e6d9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-farsi.cpython-36.opt-1.pyc-dbb1a4256248240c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---typing.cpython-36.pyc-dbbd5c011bd11875 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-iceland.py-dbd4e3991c8f3413 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dbm---pycache---dumb.cpython-36.pyc-dbeab38e244cfd3a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-chunk.py-dbee829555253f80 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---locks.cpython-36.pyc-dbf23393cf82715a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso2022-jp.cpython-36.pyc-dc277dac5ddfe7e0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bcppcompiler.cpython-36.pyc-dc3ee262f54415e0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...msvccompiler.cpython-36.opt-1.pyc-dc47b488a1183fdd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hex-codec.cpython-36.pyc-dc750dc06fca2ca0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-isinstance.py-dc752f1c3446e62e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-sax---init--.py-dc7c6b9aaaa938c4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-lsprof.cpython-36m-x86-64-linux-gnu.so-dc8374dfea5b4a42 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...scanner.cpython-36.opt-1.pyc-dc89d272d0c8c34f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cookiejar.cpython-36.opt-1.pyc-dc9facbf15b93efc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...codeop.cpython-36.opt-2.pyc-dcc340f6c164f764 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...quopri.cpython-36.opt-2.pyc-dcc60d3008bb3c20 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iterators.cpython-36.pyc-dcf6635d6bb31097 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-threading-local.cpython-36.opt-2.pyc-dd04759d7fc7fcc9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso2022-jp-2.py-dd249c741319f054 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---datetime.cpython-36.pyc-dd24f062a27d6591 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---log.cpython-36.opt-2.pyc-dd2bb690439a3dd0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tty.cpython-36.opt-1.pyc-dd42e25cb7520334 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-methodattrs.cpython-36.opt-1.pyc-dd44fb74b235691e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-nonzero.cpython-36.opt-1.pyc-dd5e0f332f803231 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-nonzero.cpython-36.pyc-dd63753a8921b3eb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...plistlib.cpython-36.opt-1.pyc-dd7093cb4dade069 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---runpy.cpython-36.opt-1.pyc-dd7a3fe206fd51d7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---imp.cpython-36.opt-1.pyc-dd9498aab8f20086 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-ddb8816b3ea67359 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-filter.cpython-36.opt-1.pyc-ddbc7cddc07dc21f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp874.cpython-36.opt-2.pyc-ddc09e4353ebcfa7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-codecs-cn.cpython-36m-x86-64-linux-gnu.so-ddd0be7f610b1555 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-ddd2f9040fe85335 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-hmacopenssl.cpython-36m-x86-64-linux-gnu.so-dddda1b9941eae7a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-ddf2dbf8c234ce53 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-smtplib.py-ddf85bfd81411449 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-encoded-words.cpython-36.opt-2.pyc-de060fab1acaf35f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp775.py-de06a79609ecc24b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---parse.cpython-36.opt-2.pyc-de0a33796484276c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---suite.cpython-36.pyc-de10535d02dd41d7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-de15d5cff3a09d38 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...coroutines.cpython-36.opt-1.pyc-de237772a3eb1043 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp437.cpython-36.opt-2.pyc-de263606e9813722 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-version.py-de2bf8c9a121d9c3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---stat.cpython-36.opt-1.pyc-de4f607a86454131 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...email---pycache---utils.cpython-36.pyc-de7285b210fbafc9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-threading-local.cpython-36.pyc-de8324a64df93fb9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp273.cpython-36.opt-1.pyc-deb76eb59a4be0c8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-bcppcompiler.py-defa050ab27b82c5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso2022-jp.py-df5be53a93e9027b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...robotparser.cpython-36.opt-2.pyc-df606fa5ab57ee91 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-pydecimal.cpython-36.opt-2.pyc-df65ebbc3889e3e8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-2.pyc-df6a8ac571445dd2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...doctest.cpython-36.opt-1.pyc-df866f5cf7a3a1a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-idioms.py-dfa2851daa11a349 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-argparse.py-e001122abd387d34 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...functools.cpython-36.opt-2.pyc-e0062e77d286e320 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-collections-abc.cpython-36.pyc-e00ce4fbbfbfc347 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-9.cpython-36.pyc-e07d0e18dcff2373 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp855.py-e08f5d669acbf408 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pty.cpython-36.opt-1.pyc-e097b771965f063a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...punycode.cpython-36.opt-1.pyc-e09f807fbb164866 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-mailbox.py-e09fd04bfc2dc1ab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1254.py-e0a1030b409f60f8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---linecache.cpython-36.pyc-e0a8a5512822ba62 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...signals.cpython-36.opt-2.pyc-e0b177af2f13918a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...http---pycache---server.cpython-36.pyc-e0bd6dffd19ec80f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-events.cpython-36.opt-2.pyc-e0c05b47ad18ee63 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...weakref.cpython-36.opt-1.pyc-e0ce32177a3792a6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cgi.cpython-36.opt-1.pyc-e11d50577bfab21b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---spawn.cpython-36.opt-1.pyc-e13cc669bc51964c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sre-constants.py-e1447512bb65e032 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-itertools-imports.cpython-36.pyc-e1451478ee570b61 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-concurrent-futures-thread.py-e159613eceeb5db2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...formatter.cpython-36.opt-2.pyc-e16dee9d6b2c2bc6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---threading.cpython-36.pyc-e17f50e715621edf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...selectors.cpython-36.opt-1.pyc-e1b385dce4320820 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-e200dece4692c59c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-importlib-util.py-e2037a49509f59b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-e21df61fefea5bef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-dummy-threading.py-e24fce9704f531f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-1.cpython-36.opt-2.pyc-e269f637b78d7b5f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-imports2.cpython-36.opt-1.pyc-e26b135c704776a9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp858.py-e2823fec5a0651ab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---build-clib.cpython-36.pyc-e2914b0c8e64bc85 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-register.py-e294e5aab66d112f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-32.cpython-36.pyc-e2a6678af59a9596 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-forkserver.cpython-36.opt-2.pyc-e2bf634b3027b3b8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-futures.cpython-36.pyc-e3237be203ab82c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-basestring.py-e3486ce7ce638c13 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-3.cpython-36.opt-2.pyc-e3499ae70a1694df +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-tempfile.py-e36c1317dba5574e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ast.cpython-36.opt-2.pyc-e37ba81625bdc91d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-wininst.cpython-36.opt-2.pyc-e381d2f93496b3ea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-imports2.cpython-36.opt-2.pyc-e38eb6115b87c242 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sched.cpython-36.opt-2.pyc-e3909aecf6373496 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp950.cpython-36.opt-2.pyc-e3aaeb450e038b9e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e3cdf232cd6d0f44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...readline.cpython-36m-x86-64-linux-gnu.so-e3f8bd576a4ce957 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e4544562cde4e023 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unixccompiler.cpython-36.pyc-e49aff8eccc058f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sndhdr.cpython-36.opt-2.pyc-e4a84615f4ac9238 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp863.cpython-36.opt-1.pyc-e4bf64c43be37816 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dist.cpython-36.pyc-e4c61bc9d0d50c8d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ctypes-util.py-e4ebdf3391db06aa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...doctest.cpython-36.opt-2.pyc-e50397b3301102c5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---stringprep.cpython-36.pyc-e51da88a90e67100 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...charmap.cpython-36.opt-2.pyc-e524b07c5fbb9170 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.pyc-e55afae9d822ba45 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-ws-comma.cpython-36.opt-1.pyc-e5716948ef167e6b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---grammar.cpython-36.pyc-e5a57622d753e74f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---decimal.cpython-36.pyc-e5ab1b3798d49407 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-6.cpython-36.opt-2.pyc-e5b1de26441127cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-paren.py-e5c3c846bebece2e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-hz.py-e5d1f6d81990d41e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp950.py-e5d90f665090dbc0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-osx-support.cpython-36.pyc-e5de1c0033ffd4bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...simple-server.cpython-36.opt-1.pyc-e5f3f8faa6e2b378 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base64.cpython-36.opt-2.pyc-e5f593d523092f05 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-osx-support.cpython-36.opt-2.pyc-e62265ee81279841 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.pyc-e626eca7cff4204e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-2004.cpython-36.opt-1.pyc-e653386b95413945 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e6b4ab9dad9ed1c3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-compat.py-e6b59d95f2ceebe6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1255.cpython-36.opt-1.pyc-e6baddeb6d287877 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...zipapp.cpython-36.opt-2.pyc-e6c0e1235d6be3d0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mac-arabic.cpython-36.pyc-e6e7838b12b700a2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-map.cpython-36.opt-1.pyc-e6ff881fee8649e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pickletools.cpython-36.pyc-e741ca749462c824 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-4.py-e75b91de8c57ec47 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pprint.cpython-36.pyc-e75d71b9c5a64056 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sdist.cpython-36.pyc-e77218776bc227e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-zip.py-e781174afdf7aadc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pdb.cpython-36.opt-2.pyc-e7ceadecb50b0337 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pickletools.cpython-36.opt-2.pyc-e7debf12d68061ff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---os.cpython-36.pyc-e7f0cdf2dddf6e3f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-e83df8f1804f05ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...literals.cpython-36.opt-2.pyc-e83e65040d1ecf49 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e8497428fa253090 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-ctypes-macholib---init--.py-e84ee162acdaf58f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pathlib.cpython-36.opt-1.pyc-e864b63dde8ba5b6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-except.cpython-36.pyc-e8b2e7ac6e3a26ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---errors.cpython-36.pyc-e90abb835152542f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso8859-15.py-e920633dcf2e3d08 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bz2.cpython-36.opt-2.pyc-e945b5b8f75286e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-heapq.py-e95612c0d54c2b17 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-next.cpython-36.pyc-e9759f768edaf9e4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-test---init--.py-e9b535545651bffc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp864.cpython-36.opt-1.pyc-e9b5a6472cec1335 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...binhex.cpython-36.opt-1.pyc-e9d2adfa4aa5e9d9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----main--.cpython-36.pyc-e9d2e4587cc46a27 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...queues.cpython-36.opt-1.pyc-ea0e85528d79e041 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---uuid.cpython-36.opt-1.pyc-ea4b9ce3264ba332 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---core.cpython-36.opt-2.pyc-ea4e32aa80f73d19 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---reduction.cpython-36.pyc-ea79529c67049c50 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---shelve.cpython-36.pyc-ea7a8db82f4f7ed8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-kr.cpython-36.opt-2.pyc-eaa785dd346813ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...optparse.cpython-36.opt-1.pyc-ead76a791cd35bc6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-forkserver.py-eae6cf988f874064 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-has-key.cpython-36.opt-1.pyc-eae9ba54e653d565 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...platform.cpython-36.opt-1.pyc-eafda0172d30d173 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...keyword.cpython-36.opt-2.pyc-eb08e6dc482f1922 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...message.cpython-36.opt-2.pyc-eb18c3e162dd1759 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...contentmanager.cpython-36.opt-1.pyc-eb31eddefceed172 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp862.cpython-36.opt-1.pyc-eb42b304852968d9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-1.pyc-eb534e8cbde32f26 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1257.cpython-36.opt-2.pyc-eb6235add718a510 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mailcap.cpython-36.pyc-eb6d25dfd8821c9d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---refactor.cpython-36.pyc-eb75187f102973f6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-latin2.cpython-36.opt-2.pyc-ebbf2349f0059770 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---optparse.cpython-36.pyc-ebd33017171aebf9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-ebe8ec569341c7e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-dep-util.py-ebf45bcd27bbc7c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...inspect.cpython-36.opt-2.pyc-ebf968cb7038859a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-ebfd585065d2b956 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...difflib.cpython-36.opt-1.pyc-ec1964b926b87aae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...filecmp.cpython-36.opt-2.pyc-ec2720e7ce58206b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-formatter.py-ec284befe416d6f5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-6.py-ec52004fa7cb7e15 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iterators.cpython-36.opt-2.pyc-ec86418cb51ad278 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp437.py-ed012004b534ab4c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---locks.cpython-36.opt-1.pyc-ed10631affce4457 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---feedparser.cpython-36.pyc-ed1abcf59963a8fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---queue.cpython-36.opt-2.pyc-ed410657d3cb9249 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-compression.cpython-36.opt-2.pyc-ed45ffc6bdbf8648 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-collections-abc.cpython-36.opt-2.pyc-ed76eb9ebd60eadc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dbm---pycache---gnu.cpython-36.pyc-edc2e82da2169c14 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-ne.cpython-36.pyc-edd99f2c91a2a700 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---stat.cpython-36.opt-2.pyc-ee1026349a5d1d76 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-install-lib.py-ee15c2a6b592e445 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-install.py-ee34d993fe0b7e2b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nis.cpython-36m-x86-64-linux-gnu.so-ee542b2b1ae1abc0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp869.cpython-36.pyc-ee66023970d3ee9b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp273.py-ee725f6bc618a16a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...wintypes.cpython-36.opt-2.pyc-ee7be1210d78c2e9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-lib2to3-patcomp.py-ee829611eb3c184c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-methodattrs.py-eea47490228bee9c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pkgutil.cpython-36.opt-1.pyc-eeae2cb31f08cc7b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1256.cpython-36.opt-2.pyc-eec243dd1bf75c18 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-conv.py-eecc12042fafd7c3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-popen-spawn-posix.py-eef0b57ee7ebb5ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-xreadlines.cpython-36.opt-1.pyc-eefd2dedb214913f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-scripts.cpython-36.pyc-ef2c535a1ab2d760 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-uu.py-ef369ac33d126ab4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-webbrowser.py-ef64e4a74481a03c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gettext.cpython-36.pyc-ef8b4c09c5535b2f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1252.cpython-36.pyc-efa2a35957bdc742 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...archive-util.cpython-36.pyc-efa90c06f2117af5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-crypt.py-efbb5c3c6380fc78 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-forkserver.cpython-36.pyc-effb314ef1c79097 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso2022-jp-1.py-f023a8bfff31e7f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-4.cpython-36.opt-1.pyc-f0694945dfeabec6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-f085f362fb8839b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-16-be.cpython-36.pyc-f08ab9348e289b2f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...imghdr.cpython-36.opt-1.pyc-f090a9f1a0b7a130 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp863.cpython-36.opt-2.pyc-f09408d9c857c495 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1255.cpython-36.opt-2.pyc-f097ccc91602d867 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-process.py-f0afa15f7ddb741e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---xmlreader.cpython-36.pyc-f0bbcae11f312ddc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fractions.cpython-36.opt-1.pyc-f0de359990f81f95 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-opcode.py-f0f954dbb2833801 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-apply.cpython-36.opt-1.pyc-f121e2126211c594 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...subprocess.cpython-36.opt-2.pyc-f1453d22cb51839e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...has-key.cpython-36.opt-2.pyc-f150b62adb875b34 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-execfile.py-f16b9af2adb54096 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tempfile.cpython-36.pyc-f1863becf54a2f29 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---expat.cpython-36.pyc-f1a5a6452dd9a39e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-case.py-f1b9f55a23af9ac2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...timeit.cpython-36.opt-2.pyc-f1d364e614be9de0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pickletools.py-f1e5b5edcb6b0a13 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---johab.cpython-36.opt-2.pyc-f21ffa5b241c507c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-headers.cpython-36.pyc-f228277e2274ff95 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio---init--.py-f268af3266a2eb89 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...parser.cpython-36.opt-2.pyc-f268ed1e9d6c5f60 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f26e37a23a8111b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-f27724ad5d30be3f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-reduce.cpython-36.pyc-f28264653a13f9dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-gb18030.py-f284ccbbfd239341 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tasks.cpython-36.pyc-f294925d936bd3bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-fixer-util.py-f2c584c5dbbbf04e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...uu-codec.cpython-36.opt-1.pyc-f2c75385b16f5ab0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...testresult.cpython-36.opt-1.pyc-f2e58e239137c3bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...compileall.cpython-36.opt-2.pyc-f34064ad5be4a6f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-utf-32.py-f3627cff1ffb0925 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fileinput.cpython-36.opt-2.pyc-f38e055353d5127f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-f3a08e520f8fc0e6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---coroutines.cpython-36.pyc-f3a9e7312b01d44d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---audio.cpython-36.opt-2.pyc-f3cc4e9d79c16314 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-turkish.cpython-36.opt-1.pyc-f3d39e56d326ca56 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pyclbr.py-f3dad685c9147987 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---file-util.cpython-36.pyc-f3e042818fe68383 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-random.py-f3fc631ef8241c18 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pydoc.cpython-36.opt-2.pyc-f468ffd5af567995 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---asynchat.cpython-36.pyc-f46942a8c01bfd37 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-cmd.py-f48bb4b80c0fc914 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shelve.cpython-36.opt-1.pyc-f4d3182856f7d8be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...gettext.cpython-36.opt-1.pyc-f4decf54efa66884 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-posixsubprocess.cpython-36m-x86-64-linux-gnu.so-f4f3ae750ecddc97 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1026.py-f51abdec02552398 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...quoprimime.cpython-36.opt-2.pyc-f532c9c7d3fe5916 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-input.cpython-36.pyc-f541424b57c1db2b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-xrange.py-f543372ea8df88d5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-parsers-expat.py-f562f6ab6871314b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...gb18030.cpython-36.opt-2.pyc-f574b7bb1e0afff3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp437.cpython-36.pyc-f5a82b717c380f5e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-dbm-ndbm.py-f5ab756d60283e64 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...numbers.cpython-36.opt-1.pyc-f5b6ea6c3f96d2b8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...binascii.cpython-36m-x86-64-linux-gnu.so-f5f3f80cfb4af64e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gzip.cpython-36.pyc-f5fa52a0496f93ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---log.cpython-36.opt-1.pyc-f5fb490019f1f2e0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jisx0213.cpython-36.opt-2.pyc-f5fb645643001e1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sysconfig.cpython-36.opt-2.pyc-f62e299ae948f85c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...minicompat.cpython-36.opt-2.pyc-f6482f964e6027ef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---result.cpython-36.pyc-f64a13799e05144d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...patcomp.cpython-36.opt-2.pyc-f64a5fca6cc54b53 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-linecache.py-f6739fb7e6fbc714 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-except.py-f685a0464a31538e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pty.py-f69611f56baba1ea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-rlcompleter.py-f6b9181db5b08ca5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---functools.cpython-36.pyc-f6bfe9983871916a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...quopri-codec.cpython-36.opt-2.pyc-f6fdafcfde99e740 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-blake2.cpython-36m-x86-64-linux-gnu.so-f702c8fb3de18e46 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-xreadlines.py-f707fc6e270d2552 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...refactor.cpython-36.opt-1.pyc-f70ae63920793018 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---types.cpython-36.pyc-f728fcdefd675462 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...resource-sharer.cpython-36.pyc-f72b49462f486b0f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-datetime.py-f75ce6b655f1499e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sunau.py-f75f3879c69aa675 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...process.cpython-36.opt-2.pyc-f7dc1f24e0fc53ca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f7e606c2d1ee91e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-apply.cpython-36.pyc-f7ea63984376e3a4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-wave.py-f7fbca4fa03e5c75 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---core.cpython-36.opt-1.pyc-f85140e86efb7b4b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-shlex.py-f8950486a423cb6a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-endian.cpython-36.opt-2.pyc-f89a4d2885d93c3a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pool.cpython-36.pyc-f89ff76fa23ae58e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pipes.cpython-36.opt-2.pyc-f8d169b75916213f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp862.py-f8f6628c3b78806f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-cyrillic.py-f8f762bb1a1c7583 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp273.cpython-36.pyc-f91f86f7e9e22a3d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...header.cpython-36.opt-2.pyc-f98187d60f4455fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sax---pycache---handler.cpython-36.pyc-f9878c5d068978e4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tokenize.cpython-36.opt-2.pyc-f99fc27b327d211e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-farsi.cpython-36.opt-2.pyc-fa0dd431b9f23ca8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---types.cpython-36.opt-2.pyc-fa1996df12fe1fb2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---macpath.cpython-36.pyc-fa2500beeef562ae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sharedctypes.cpython-36.pyc-fa3c2416bfaaac42 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-json-tool.py-fa3c4855ab032823 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dyld.cpython-36.pyc-fa70c931bab109fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-abc.py-fa8b00f29a41f0f5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...codeop.cpython-36.opt-1.pyc-fac8b28cfebff2f6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...headers.cpython-36.opt-1.pyc-fb1554322402e787 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-tuple-params.cpython-36.opt-2.pyc-fb1f9015e7db0ae6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-upload.py-fb5f87c417e5f135 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...xmlreader.cpython-36.opt-2.pyc-fb67b22b5b7de6c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdb.cpython-36.opt-1.pyc-fb832a4bea0ad628 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-codecs-hk.cpython-36m-x86-64-linux-gnu.so-fb9220c8bfd5e1ca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...stringprep.cpython-36.opt-2.pyc-fb9e11e49cd730e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...minidom.cpython-36.opt-2.pyc-fba05059b58e40c1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-5.cpython-36.opt-2.pyc-fba1a1c0e815f6be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-tasks.py-fbbc5e4ecedaea51 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp856.cpython-36.opt-1.pyc-fbe52fa751a3219c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-exitfunc.py-fc3d851fa862b15a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-5.py-fc45820722ef2905 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...btm-matcher.cpython-36.opt-1.pyc-fc6d6df3e0bb5b73 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pytree.cpython-36.opt-1.pyc-fcab62136f526f30 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---header.cpython-36.pyc-fcaf37484233645d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-types.cpython-36.opt-1.pyc-fcef363244b37f04 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...handler.cpython-36.opt-1.pyc-fd06fc4498071636 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...PatternGrammar3.6.8.final.0.pickle-fd10cfbd14dec8f8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tis-620.cpython-36.opt-2.pyc-fd46a7e3a08cd2e5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-1.pyc-fd68f5476c2cfc36 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-fd77032e6e161a29 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-import.cpython-36.opt-1.pyc-fd8aa8fd1faf5045 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dbapi2.cpython-36.opt-2.pyc-fdcfd95e1ef70d11 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-http---init--.py-fdd2b2106b93a9af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--dummy-thread.py-fdf5ef797dbcd00e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tokenize.cpython-36.pyc-fe3b9fe2bbf9e2ab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp500.cpython-36.pyc-fe480023d4588d8b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-6.cpython-36.pyc-fe516fb125ec8c37 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp932.cpython-36.opt-2.pyc-fe619d08e323b4a7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...symtable.cpython-36.opt-1.pyc-fe79c415af2a515f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-wininst.cpython-36.pyc-fe8646beb2b9c33b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---uu.cpython-36.opt-2.pyc-fec546195f19bd2b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-locks.py-fec66c6d67fe9bac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-2004.cpython-36.pyc-fee69e3ed460b8f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---heapq.cpython-36.pyc-fef8299460013208 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mock.cpython-36.opt-2.pyc-ff04aa6a58f249d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-8.cpython-36.opt-2.pyc-ff0c1acdefe2a286 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dist.cpython-36.opt-1.pyc-ff0cbde7a2dac45a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install.cpython-36.opt-2.pyc-ff1a26b6229adad0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--compression.py-ff2ddbaa150c9505 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-policybase.cpython-36.opt-2.pyc-ff44c1105cc5cf07 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---shutil.cpython-36.pyc-ff624ececa18fb94 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---btm-matcher.cpython-36.pyc-ffa172fd1bca28bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp932.cpython-36.pyc-ffab37a5d331869b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...expatbuilder.cpython-36.opt-2.pyc-ffb1ba147f8eda86 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cgi.cpython-36.opt-2.pyc-ffb559ecc69cbba4 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.token-67dbeeeb433ba94a OTHER SPDXRef-File-...com.ibm.ws.security.token-1.0.81.jar-03daa98abac235cc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-requests-69c379e96a25693b OTHER SPDXRef-File-...PKG-INFO-800441630b142ce6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.tx.embeddable.jakarta-6a0218b35e4c54bb OTHER SPDXRef-File-...com.ibm.ws.tx.embeddable.jakarta-1.0.81.jar-e9f2cdc13b4689f8 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v8-6a88cbf3eaed3be1 OTHER SPDXRef-File-...com.ibm.ws.javaee.platform.v8-1.0.81.jar-04a9ec6be4f0400f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.microprofile.config.internal.serverxml-6abea41833808907 OTHER SPDXRef-File-...io.openliberty.microprofile.config.internal.serverxml-1.0.81.jar-eaf87bd3958e5f2a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a CONTAINS SPDXRef-File-usr-bin-brotli-23ef24a434020a35 +Relationship: SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a CONTAINS SPDXRef-File-usr-lib64-libbrotlidec.so.1.0.6-4e0d3f231bee2a1a +Relationship: SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a CONTAINS SPDXRef-File-usr-share-licenses-brotli-LICENSE-65386193ff1c3a9b +Relationship: SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a CONTAINS SPDXRef-File-usr-lib64-libbrotlienc.so.1.0.6-ed007d468a36596b +Relationship: SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a CONTAINS SPDXRef-File-usr-lib64-libbrotlicommon.so.1.0.6-f1d529308b232dfa +Relationship: SPDXRef-Package-rpm-libnghttp2-6b719eae4b2d0223 CONTAINS SPDXRef-File-usr-share-licenses-libnghttp2-COPYING-82799547f1993398 +Relationship: SPDXRef-Package-rpm-libnghttp2-6b719eae4b2d0223 CONTAINS SPDXRef-File-usr-lib64-libnghttp2.so.14.17.0-b870740cb07defb1 +Relationship: SPDXRef-Package-rpm-libnghttp2-6b719eae4b2d0223 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.private.internal-6b73b703db0b4142 OTHER SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.private.internal-1.0.81.jar-9a459551e0eccfb1 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-stat-0983830ed9a58de2 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-dump-309b5968b0c9d3f1 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-dump185-35759986b592c159 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-load-37fce3b95279ce2d +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-recover-4a98d4bab1fed412 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-tuner-4c2bfde9885512ce +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-archive-5d04b942779cf002 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-printlog-82dba6d842794a67 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-log-verify-9ba3ed6b9cb07290 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-replicate-b00eeae663331b27 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-checkpoint-e0402bdf3ce616d5 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-upgrade-e37bfb93c36042ce +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-hotbackup-e6b838ddf7bfa68f +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-deadlock-eee43bdf68f59995 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-verify-faa44758f54565f4 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...idna---pycache---codec.cpython-36.pyc-10c3c749983c2a10 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...site-packages-idna-uts46data.py-137fb2036a30eb3c +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...idna-2.5-py3.6.egg-info-SOURCES.txt-168350ae20ce2e41 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...uts46data.cpython-36.opt-1.pyc-16a93f453b6015a6 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...idna---pycache---compat.cpython-36.pyc-219c1c062014ad3e +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...python3.6-site-packages-idna-compat.py-47a63ff497614214 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...idna---pycache---core.cpython-36.pyc-543ae3229ed5a2af +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...--pycache---intranges.cpython-36.pyc-59476696895ca4f3 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...python3.6-site-packages-idna-codec.py-5956dcaa4bc05026 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...licenses-python3-idna-LICENSE.rst-5969e315fe5bc0dc +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...--pycache---core.cpython-36.opt-1.pyc-6736b19ac8fb6e10 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...--pycache---uts46data.cpython-36.pyc-68d6633e7b9cafa3 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-6b2c16ef0d98162b +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...--pycache---codec.cpython-36.opt-1.pyc-6f68f77b84fd660f +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...--pycache---idnadata.cpython-36.pyc-7802975a6acb28b2 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...python3.6-site-packages-idna-core.py-7868eab39b971be4 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...intranges.cpython-36.opt-1.pyc-792ed7f718ca01ff +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...idna-2.5-py3.6.egg-info-top-level.txt-7e49ae50ecbd5ca0 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...idnadata.cpython-36.opt-1.pyc-825a50ad7aa5a2e6 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...site-packages-idna-intranges.py-8c562e1a9d58cf4b +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...site-packages-idna-idnadata.py-99639ddf43521fbf +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...site-packages-idna---init--.py-b81d853b86b76688 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...idna-2.5-py3.6.egg-info-PKG-INFO-d2899fc2d56f719e +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 OTHER SPDXRef-Package-python-idna-df327da7f0a4a959 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...compat.cpython-36.opt-1.pyc-f0d4efd23146804a +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-f673343fdc230327 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...dependency-links.txt-fd59f52b038d8043 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.dynacache.monitor-6d9200f29816f7ff OTHER SPDXRef-File-...com.ibm.ws.dynacache.monitor-1.0.81.jar-59fff79cff650dc7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.jsonsupport-6dbb9365dfff79bc OTHER SPDXRef-File-...com.ibm.websphere.jsonsupport-1.0.81.jar-73a8961d53249d3e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.session.monitor-6df330efa7adaf70 OTHER SPDXRef-File-...com.ibm.ws.session.monitor-1.0.81.jar-d2cb83b5af171cb9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 CONTAINS SPDXRef-File-...share-licenses-systemd-LICENSE.LGPL2.1-0989646e069c1a21 +Relationship: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 CONTAINS SPDXRef-File-usr-lib64-libudev.so.1.6.11-0db2b037980b7bd0 +Relationship: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 CONTAINS SPDXRef-File-usr-lib64-libnss-systemd.so.2-33785ffd6be6e700 +Relationship: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 CONTAINS SPDXRef-File-usr-lib64-libsystemd.so.0.23.0-c448e97380cca779 +Relationship: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 CONTAINS SPDXRef-File-usr-lib64-libnss-resolve.so.2-d5be9b064c76fa9f +Relationship: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 CONTAINS SPDXRef-File-usr-lib64-libnss-myhostname.so.2-eadaf7adf0562383 +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.jboss.logging35-6f5042d0577c4190 OTHER SPDXRef-File-...io.openliberty.org.jboss.logging35-1.0.81.jar-05e0c7b2da85f719 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libusbx-703f02296551e01f CONTAINS SPDXRef-File-usr-lib64-libusb-1.0.so.0.2.0-680dfded82e3d639 +Relationship: SPDXRef-Package-rpm-libusbx-703f02296551e01f OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libusbx-703f02296551e01f CONTAINS SPDXRef-File-usr-share-licenses-libusbx-COPYING-ff9a81353433763f +Relationship: SPDXRef-Package-python-setuptools-70ad73e984ff17a3 OTHER SPDXRef-File-...setuptools-39.2.0.dist-info-METADATA-2a25a6c384b85697 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.util-7253c13a1b5cf358 OTHER SPDXRef-File-...com.ibm.ws.org.apache.aries.util-1.0.81.jar-ccccbeb428f76166 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-subscription-manager-7276605e595d4096 OTHER SPDXRef-File-...PKG-INFO-d9e8b274b2c0eda7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.microprofile.config.internal.common-7354fb61a26e927e OTHER SPDXRef-File-...io.openliberty.microprofile.config.internal.common-1.0.81.jar-5756037321c9d6c5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.application-748abe5518b3314e OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.application-1.1.81.jar-2ced5dfcfb5b2dcc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---connection.cpython-36.pyc-014c8c615c1a2369 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-packages-backports---init--.py-01edf366734c6204 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util---init--.py-02267dabdc6d35af +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-contrib-ntlmpool.py-0b903a7d57fadfca +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-poolmanager.py-0bb8ea5c22c6b1d7 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...connection.cpython-36.opt-1.pyc-11ddad0a4e9803ef +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---response.cpython-36.pyc-181c842ac6751007 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---six.cpython-36.opt-1.pyc-19f6d698a9b3b961 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---wait.cpython-36.opt-1.pyc-1ab2abfca343e04e +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-25d9da5db3b5c53e +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---makefile.cpython-36.pyc-28a18292451847ad +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...makefile.cpython-36.opt-1.pyc-2be9a3acee613ee1 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-retry.py-2fa73c332acc98a3 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-response.py-304b130e478a2dd7 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...ntlmpool.cpython-36.opt-1.pyc-313bba81af9088fe +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-31f7a4b60f809010 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-32ea67152502e1e7 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---request.cpython-36.pyc-3817cf66058539ad +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---six.cpython-36.pyc-397819a76dd784a5 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---queue.cpython-36.opt-1.pyc-3a0a3da86ae89392 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-usr-lib-python3.6-site-packages-six.py-3dd7b2cfe1100d24 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---retry.cpython-36.opt-1.pyc-3f16a51fdc5ae681 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...filepost.cpython-36.opt-1.pyc-4416c3a817e5b151 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-453a4258ac22674b +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-1.24.2-py3.6.egg-info-PKG-INFO-4731163b373c6e55 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...request.cpython-36.opt-1.pyc-48d4569ac1ca4001 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...connection.cpython-36.opt-1.pyc-495f88c81cd867c8 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...securetransport.cpython-36.pyc-4d346e40f0429137 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...top-level.txt-4dea0b623aa55407 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-util-connection.py-4e4536c8b7a0aec9 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---request.cpython-36.pyc-5462ed366e4a00e1 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...pyopenssl.cpython-36.opt-1.pyc-57129258403fbc14 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---pyopenssl.cpython-36.pyc-58cc00ba0e6b46b0 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...securetransport.cpython-36.opt-1.pyc-58f2fc032ffa0fe6 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-5dce59fadf529d26 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...-appengine-environ.cpython-36.opt-1.pyc-5e501a9a6a9fc28f +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...-appengine-environ.cpython-36.pyc-5f2a9c0d61412433 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...appengine.cpython-36.opt-1.pyc-6494d51b7bfbd0f6 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...requires.txt-6541fc354c5775c8 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...ssl-match-hostname.cpython-36.opt-1.pyc-667efab3379c8f98 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...util---pycache---queue.cpython-36.pyc-6828db9d42a73817 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...SOURCES.txt-68321575d6cc1a16 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...timeout.cpython-36.opt-1.pyc-68690eccf6899cf7 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-68a8eac98dd26e65 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-6a569ba60aa8046a +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...contrib--securetransport---init--.py-6dc0c77c225bafed +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3---init--.py-6e95091b1a74d0fb +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-wait.py-729bf9a94015367d +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---connection.cpython-36.pyc-7c835a34b96c186f +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-800f7d59225ae2af +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-8106720db85c9ea2 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-contrib---init--.py-835c5cc130729dc7 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...fields.cpython-36.opt-1.pyc-849476945284f5b6 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---ntlmpool.cpython-36.pyc-892c0f134e8d49ca +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---poolmanager.cpython-36.pyc-8a30563b0e2435c5 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-timeout.py-8b362937880f2a4e +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...contrib--securetransport-bindings.py-8bc8ea7d431a0002 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---low-level.cpython-36.pyc-8c4efcb365714e17 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...contrib--securetransport-low-level.py-8d30db1858480ffa +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-exceptions.py-8e2b419d68e43120 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 OTHER SPDXRef-Package-python-urllib3-8ede639981c11081 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-response.py-927503beebedcda5 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-connectionpool.py-9317658d5b2ffb6a +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...util---pycache---ssl-.cpython-36.pyc-9352d1974afbcd3c +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-contrib-pyopenssl.py-95621e83ea6a51ee +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...response.cpython-36.opt-1.pyc-99f6f039947476f3 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-contrib-securetransport.py-a0acee4743b80f31 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a67e2e376c2a47ae +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---url.cpython-36.opt-1.pyc-a82eb069bae80e10 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---timeout.cpython-36.pyc-aaeb9c791681cd1a +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---appengine.cpython-36.pyc-aef7de65f552e28d +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---socks.cpython-36.opt-1.pyc-af2de359b6303b7e +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-contrib--appengine-environ.py-b35ef51c10f79da5 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---ssl-.cpython-36.opt-1.pyc-b5645bb10d56e762 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...-collections.cpython-36.opt-1.pyc-b5b147530221a2e9 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...dependency-links.txt-b7a4cfb1cf3a3b0e +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...low-level.cpython-36.opt-1.pyc-bb147f6e9219e293 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...-collections.cpython-36.pyc-bce1262bbbf10c4e +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...response.cpython-36.opt-1.pyc-bd2fae1ca6044a19 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---fields.cpython-36.pyc-c222f6e37bb53c31 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...connectionpool.cpython-36.opt-1.pyc-c362cf719443706c +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...request.cpython-36.opt-1.pyc-c3d21daa24c951c1 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c48251d3bbcd2181 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-packages---init--.py-c5b9d6441926a6fb +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...util---pycache---retry.cpython-36.pyc-c8669f0a1b682be4 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...util---pycache---wait.cpython-36.pyc-c8c31d86e50687b3 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---filepost.cpython-36.pyc-c92077418e47a6d4 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---response.cpython-36.pyc-ca67d03dd800e085 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-contrib-socks.py-caaac9b3160c465f +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---socks.cpython-36.pyc-cd2f2357b8eb9267 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...licenses-python3-urllib3-LICENSE.txt-cefc386016f03f5d +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-request.py-cf60990b84de5105 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-filepost.py-d1321068bc21254f +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-ssl-.py-d2d0f058fe01887b +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...util---pycache---url.cpython-36.pyc-d5bdaa712b669b37 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-packages-ssl-match-hostname.py-d5ea983e3423d32c +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-contrib-appengine.py-d6e6e53a4e56509c +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-fields.py-dace5cb0cad0e0ce +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-queue.py-db8d21a104831045 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...bindings.cpython-36.opt-1.pyc-dfc7b1e905ceb7d1 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-dfc81911117e9a39 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3--collections.py-dfe560765f37456e +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-request.py-e7165c770f79b6f0 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ea2888088990b4bd +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...connectionpool.cpython-36.pyc-ea95ab5bff9c6edc +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-eb50c11fdf02196a +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-connection.py-ec54e8f24dccd219 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---bindings.cpython-36.pyc-ed041a04fcc62f3f +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-url.py-f4fe625f2fae7936 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...poolmanager.cpython-36.opt-1.pyc-f83d6f2660215dbb +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...ssl-match-hostname.cpython-36.pyc-f997e72ff1073983 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-packages-backports-makefile.py-fb8e46c4274bf84e +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.classloading-75c7e061c7ba2305 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.classloading-1.4.81.jar-c421757311bdb945 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libverto-75c996841840f97a CONTAINS SPDXRef-File-usr-lib64-libverto.so.1.0.0-3a7163f90f9f5919 +Relationship: SPDXRef-Package-rpm-libverto-75c996841840f97a CONTAINS SPDXRef-File-usr-share-licenses-libverto-COPYING-8babef6f55bd5568 +Relationship: SPDXRef-Package-rpm-libverto-75c996841840f97a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.rls.jdbc.jakarta-75e3781a87aab322 OTHER SPDXRef-File-...com.ibm.rls.jdbc.jakarta-1.0.81.jar-5538796d2660d732 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-bdist-wininst.py-01c5e7f0bc962cfc +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...saveopts.cpython-36.opt-1.pyc-031fff9688bf595d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-wheel.py-04b4752a1d746162 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-063e70a24c4fb099 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---setopt.cpython-36.pyc-068ca03dc96ba7bd +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---py31compat.cpython-36.pyc-09b7a1151b315873 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---py36compat.cpython-36.pyc-0be4266156ef6b45 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---dist.cpython-36.pyc-0c83aeaa30d6ba42 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----about--.cpython-36.pyc-0cede162ca8e5e02 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-bdist-rpm.py-0d854bb8cf714161 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---site-patch.cpython-36.pyc-0eff47e5ce77064b +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...specifiers.cpython-36.opt-1.pyc-0f1829c57b3cb260 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...dependency-links.txt-14fe012b4cd3807d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---build-meta.cpython-36.pyc-15d91e9377d2337d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...bdist-egg.cpython-36.opt-1.pyc-18490b4629d7192e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...monkey.cpython-36.opt-1.pyc-1856a3f1eb2eb866 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...launch.cpython-36.opt-1.pyc-1a15f6c843b5450b +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...unicode-utils.cpython-36.opt-1.pyc-1a2372817271dd4c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-glob.py-1aa6201e77bc7244 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...easy-install.cpython-36.opt-1.pyc-1c51cd382ff24c8d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...depends.cpython-36.opt-1.pyc-1d92ce43171f6543 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pkg-resources--vendor-pyparsing.py-1ed0c1347dcba0ea +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-namespaces.py-1fb67e475f11f762 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-unicode-utils.py-207e23fd28d96eb8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...dist-info.cpython-36.opt-1.pyc-214e3d411bf071e0 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...requirements.cpython-36.pyc-21e8fa6b2562a43f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...sandbox.cpython-36.opt-1.pyc-22062d31a229ee12 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2275d9b12f95ab80 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-extern---init--.py-242cea71a8c8fb3b +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---install.cpython-36.pyc-24d9ccb3c0c29ff0 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---sandbox.cpython-36.pyc-25385efd89c6dd5d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-patch.cpython-36.opt-1.pyc-25ccdda4735656e3 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---py27compat.cpython-36.pyc-25dd341123d92fce +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---build-clib.cpython-36.pyc-2643643781363bf6 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---glibc.cpython-36.pyc-29e2af87460976b0 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-39.2.0.dist-info-METADATA-2a25a6c384b85697 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-alias.py-2b2177a4e012a396 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache----structures.cpython-36.pyc-2b44f119b05667a6 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...install-egg-info.cpython-36.opt-1.pyc-2bc4db77a86747f9 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---sdist.cpython-36.opt-1.pyc-2bd1098d9a5f7a2a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor---pycache---six.cpython-36.pyc-2beddbb6b479eedd +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-sandbox.py-2c76bd9f279009bf +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...py27compat.cpython-36.opt-1.pyc-2f756eb99a21ed03 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor---pycache---six.cpython-36.pyc-2fd17c1525fbfe07 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-compat.cpython-36.opt-1.pyc-30511abd7c1ff577 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.pyc-306502d8e4e17a47 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-py33compat.py-3280f492baa90485 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---depends.cpython-36.pyc-329b4469090b5a23 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-install-scripts.py-33921b1fb561c3ba +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---py31compat.cpython-36.pyc-34314531462dd898 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-35d44b125d4dd88e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---bdist-egg.cpython-36.pyc-36ea23ae56d1f78a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-build-ext.py-3703845066e40f6c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools--vendor-pyparsing.py-3870856a39832a2a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---alias.cpython-36.pyc-39063dd02484774f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...build-meta.cpython-36.opt-1.pyc-39186fc1337e108d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...extension.cpython-36.opt-1.pyc-396c38c29316d5e1 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---namespaces.cpython-36.pyc-3d1e2b11a927ea17 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...package-index.cpython-36.pyc-3e7699d6145e2ffb +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...DESCRIPTION.rst-3e7b3f6ee0a01014 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---extension.cpython-36.pyc-3ef3ea1b80dee5a7 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3f30abb107278a66 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-3f7706915bf470d7 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---egg-info.cpython-36.pyc-3f7ca3c9f62d282d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...py31compat.cpython-36.opt-1.pyc-406dfe0e644c75c7 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pkg-resources-py31compat.py-41393cfb9d5e5d9c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-41a9d75a8cf865fd +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...archive-util.cpython-36.pyc-4208ed9c309e37d6 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...dep-util.cpython-36.opt-1.pyc-4248eca29b9bbb3a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---lib2to3-ex.cpython-36.pyc-42b3d3722c6d4113 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-easy-install.py-42f389ec35f3ea32 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging--structures.py-45b8d139a49b0fd5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-45ecf0686d88ade4 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging--compat.py-4757fb8c9cb02aa9 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setopt.cpython-36.opt-1.pyc-47eb939df05349df +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.pyc-4850a291da5c5b7d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-compat.cpython-36.opt-1.pyc-48b6c5909c29a2ba +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-48e41a74932617ab +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-ssl-support.py-4fd689abdb8b052d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---glob.cpython-36.pyc-5049b2a9597c6b4b +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-version.py-51c4b0280afb78a2 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-requirements.py-51f697fcc3743ac8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---specifiers.cpython-36.pyc-524b2af929d3fb89 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-py36compat.py-52738668879b36ee +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-script.tmpl-53363999b650fce6 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5759be629813113a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...easy-install.cpython-36.opt-1.pyc-59e55f61ba8524cd +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-dep-util.py-5abe4089bf7ffdb1 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pkg-resources---init--.py-5b3d2cb76ee0e91e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...requirements.cpython-36.pyc-5b5e9bcd8e87de29 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---build-ext.cpython-36.pyc-5c0b90e6e35304b8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command---init--.py-5dbbec1dddd97a66 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---py33compat.cpython-36.pyc-5df8687ed5486689 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5e8a13d5fbbe6a62 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---saveopts.cpython-36.pyc-5f5fe5791a17c103 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-depends.py-5fede8f015baecc4 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-structures.cpython-36.opt-1.pyc-6128aad193f7faca +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...requirements.cpython-36.opt-1.pyc-614e69e60e258007 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools--vendor---init--.py-61edf1bb8c213a01 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---wheel.cpython-36.pyc-6339043bd7ffca89 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---dep-util.cpython-36.pyc-64a1e0f35b2313ce +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...py31compat.cpython-36.opt-1.pyc-65070c5d3f50db99 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---ssl-support.cpython-36.pyc-67db056ce9cbbb16 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-register.py-68310a952c36c597 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...namespaces.cpython-36.opt-1.pyc-6a63f687534f8d31 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools--vendor-six.py-6add234b33337f12 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---pyparsing.cpython-36.pyc-6b21ae47e937c43e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache----compat.cpython-36.pyc-6b850215a370f707 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-pep425tags.py-6b9493eb0bc0137c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...bdist-wininst.cpython-36.pyc-6e5b90308de926bd +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-6ec4dc729c1f7a32 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---test.cpython-36.pyc-7000dbcd7430b0d8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd OTHER SPDXRef-Package-python-setuptools-70ad73e984ff17a3 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-dist.py-710aaafe8d63d136 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---sdist.cpython-36.pyc-72a94aa4f38de346 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--about--.cpython-36.opt-1.pyc-7314dbf5dca99e34 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---markers.cpython-36.pyc-7387a4232e87f592 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...install-lib.cpython-36.opt-1.pyc-739d1345127b484f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-lib2to3-ex.py-755649c78846b274 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-757a776f5ef95e92 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pyparsing.cpython-36.opt-1.pyc-760816225615e007 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...metadata.json-7610bf23d0a1df03 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...package-index.cpython-36.opt-1.pyc-78726b82d803c42f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-specifiers.py-7940b867bf216d93 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-7bd0561def8d514c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pkg-resources--vendor---init--.py-7c8d8fc19abfa393 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging---about--.py-7e5576ab3932eff9 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-package-index.py-7ec9de6d102fd649 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---glibc.cpython-36.opt-1.pyc-7f115e7447e14a24 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-structures.cpython-36.opt-1.pyc-8486396cec099c6f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...build-clib.cpython-36.opt-1.pyc-8522bdd03e9d5815 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---six.cpython-36.opt-1.pyc-88b9108aa3bb0bc5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-88fec597c2d06493 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-markers.py-89546a514b2e7a66 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-launch.py-8999122ec2cd656c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-8a14b00aa1fa5899 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---markers.cpython-36.pyc-8a7511b42c58cf5a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...entry-points.txt-8c482f773e30b202 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-install-lib.py-8df91e571a110dc1 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...easy-install.cpython-36.pyc-8e76f5ec539afb01 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---pyparsing.cpython-36.pyc-8f9685e6501bccd1 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---py36compat.cpython-36.pyc-94796c94efdc5e5f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-9525571a5efa957c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...requirements.cpython-36.opt-1.pyc-957f05abd56c590d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...top-level.txt-95a8ec1d16083751 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---dist.cpython-36.opt-1.pyc-97403fb2cdcf418c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----about--.cpython-36.pyc-97a80f94464abbf8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...py36compat.cpython-36.opt-1.pyc-97cdb22e5cbee9e0 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-extension.py-9abef593e0116135 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---appdirs.cpython-36.pyc-9d0b181b3e35fd6e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---test.cpython-36.opt-1.pyc-9e9aa9f80b526797 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---monkey.cpython-36.pyc-9f1fabd0665e1036 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...appdirs.cpython-36.opt-1.pyc-9fa7d5f43be9ff43 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9fb93b5a8e5d5718 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pyparsing.cpython-36.opt-1.pyc-9ffc34e224f9cc2e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---rotate.cpython-36.pyc-a0f8d7312924ab70 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...install.cpython-36.opt-1.pyc-a1b8a5603f14c857 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-39.2.0.dist-info-WHEEL-a20d6b80cae28f3e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-archive-util.py-a3fe3b7d533312f3 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...bdist-wininst.cpython-36.opt-1.pyc-a409d9dea637b2b7 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...register.cpython-36.opt-1.pyc-a4307b15c640b3bf +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...build-ext.cpython-36.opt-1.pyc-a466e115febd5ac8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---wheel.cpython-36.opt-1.pyc-a46cb6a2b07397cf +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...windows-support.cpython-36.pyc-a56d0f0e55835e19 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...markers.cpython-36.opt-1.pyc-a7551b5bb3538926 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---develop.cpython-36.pyc-a85ec7e91b919622 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---version.cpython-36.pyc-abafa25e1b22da10 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache----compat.cpython-36.pyc-abed07f78efa82d2 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-monkey.py-ace93678954727d5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...easy-install.cpython-36.pyc-ada4ee8b5eb73166 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...egg-info.cpython-36.opt-1.pyc-af6d8df4e6c95eee +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-test.py-af7f0a12c22b2e0a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---msvc.cpython-36.pyc-afbbbb4979e51a14 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b09374768d34c840 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...specifiers.cpython-36.opt-1.pyc-b0ccaba183052078 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-b1507c4f4f359d0f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---upload-docs.cpython-36.pyc-b1b23f5ad8646652 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-py31compat.py-b250d8ffcfffe034 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-py27compat.py-b3013b87cf63df68 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-build-clib.py-b4c878d9b7e7daf4 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...LICENSE.txt-b5a02f76151a197f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-markers.py-b6293737b4d065ea +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...install-egg-info.cpython-36.pyc-b6c29d924518d783 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-version.py-b6fe6bb04a9a41d5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...install-scripts.cpython-36.pyc-b72278cc990d5b7a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-msvc.py-b82883d5a37fb26b +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging---init--.py-ba298ee74a740146 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-upload.py-bbdae0fc7c385fdb +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...archive-util.cpython-36.opt-1.pyc-bc103eee57f1df34 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---upload.cpython-36.pyc-be81d050eaf81cf2 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-39.2.0.dist-info-INSTALLER-be96468f8c8bc395 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-utils.py-c1a4983606b55d39 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---bdist-rpm.cpython-36.pyc-c1d0172ed333e9fb +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging--compat.py-c2a8d58dc8aea80c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pkg-resources-extern---init--.py-c2f0b9ff97cdbaed +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-dist-info.py-c3f63b9301021b50 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-setopt.py-c551de5364d2559a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools---init--.py-c5a4bb2af7efe9d2 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...windows-support.cpython-36.opt-1.pyc-c5ce1249af33b34d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...rotate.cpython-36.opt-1.pyc-c717c2f43a6a3911 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-site-patch.py-c73aeebc10b99328 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...upload-docs.cpython-36.opt-1.pyc-c82453389888a221 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---launch.cpython-36.pyc-c8c02dc0b3921646 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-glibc.py-c9079f8a7d643294 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...platform-python-setuptools-LICENSE-c93c535151e969e3 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...upload.cpython-36.opt-1.pyc-c9bcd450bf7bf366 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging--structures.py-cabb727bc033321c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging---init--.py-cb295c2a0febdbe4 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-egg-info.py-cbf6ce2212866df7 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---build-py.cpython-36.pyc-cc47b608c2c1e78f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---version.cpython-36.pyc-cc67b9d66407028e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-sdist.py-ce165968df4439e8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pkg-resources--vendor-appdirs.py-cf1746f589bdffc5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...install-scripts.cpython-36.opt-1.pyc-cf8dfc4296e79475 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---config.cpython-36.pyc-cf909a4cb9342d04 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-script--dev-.tmpl-cfc909e564a65fe3 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d1f4bee5a31001bb +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...bdist-rpm.cpython-36.opt-1.pyc-d448b53e63fc0a9f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...build-py.cpython-36.opt-1.pyc-d488d86d8b96e2cb +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d5de2286697cfcd2 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pkg-resources--vendor-six.py-d6dc6b9217bfba35 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---install-lib.cpython-36.pyc-d83159b7d1b54270 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d9c49a5a0c299888 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-39.2.0.dist-info-zip-safe-da00492d0450490d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-dadf5e4dbdd1f92c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...unicode-utils.cpython-36.pyc-db3ed331e804d57d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...py33compat.cpython-36.opt-1.pyc-db55caa0581ac55a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-py36compat.py-db5c6c2d8ce9bad3 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-requirements.py-dc6c16bfc172c205 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-specifiers.py-de8f1b1620fc45b5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...py36compat.cpython-36.opt-1.pyc-dead9ac7585fe549 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...markers.cpython-36.opt-1.pyc-e03e70277105ce47 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-develop.py-e04a20582440d037 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache----structures.cpython-36.pyc-e0b06338884cf984 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-upload-docs.py-e1b4b57d71940825 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-build-py.py-e336f581428f49f3 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---dist-info.cpython-36.pyc-e46cd84ed99866d5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...ssl-support.cpython-36.opt-1.pyc-e4c41f623f614d5e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---six.cpython-36.opt-1.pyc-e646091bc7cd44f0 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-install.py-e86d98b7f1ef5eb4 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-easy-install.py-eb7b9d5c4ccd0dfb +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-bdist-egg.py-ed921f5043e1a4a2 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---pep425tags.cpython-36.pyc-eeaedcbfb7234938 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---glob.cpython-36.opt-1.pyc-eeb03bb8ddfbc85b +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---specifiers.cpython-36.pyc-ef934e3e921f2ac4 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---version.cpython-36.pyc-f0c51154c06f5a30 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...develop.cpython-36.opt-1.pyc-f0e16d008a871902 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-version.py-f25b6fdcce76fd18 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-saveopts.py-f343a27f9bb163d5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---alias.cpython-36.opt-1.pyc-f432db200a6865a7 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-39.2.0.dist-info-RECORD-f4c2df7bbbe4ae48 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging---about--.py-f4f2a4432fa82a19 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---register.cpython-36.pyc-f53666f10a961a4d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-install-egg-info.py-f6bc7239c46835a1 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pep425tags.cpython-36.opt-1.pyc-f6f955bd182e4af8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-config.py-f7313d5d1b853cb5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f8282c467e8dcc04 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...command-launcher-manifest.xml-fa36a58e016fdd87 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-build-meta.py-fc04745fa4e287e1 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--about--.cpython-36.opt-1.pyc-fc5230ffa4f95ec8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools--vendor-packaging-utils.py-fd04a072afe206fb +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...lib2to3-ex.cpython-36.opt-1.pyc-fdc50ad497d18a47 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-rotate.py-ff2e4b2b36032308 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-windows-support.py-ff6433a2d0595f98 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---msvc.cpython-36.opt-1.pyc-ffcc6c330d926349 +Relationship: SPDXRef-Package-java-archive-io.openliberty.io.netty.ssl-77a0ac5be06a4317 OTHER SPDXRef-File-...io.openliberty.io.netty.ssl-1.0.81.jar-79ec4d9a028f1cf0 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.interceptor.2.1-78069b28c25a1408 OTHER SPDXRef-File-...io.openliberty.jakarta.interceptor.2.1-1.0.81.jar-0f6a5248af8c6df3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.repository.parsers-7936172742d614b5 OTHER SPDXRef-File-...com.ibm.ws.repository.parsers-1.0.81.jar-7c7a78f9a07e021b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jmx.api-7978c68156986b68 OTHER SPDXRef-File-...com.ibm.ws.org.apache.aries.jmx.api-1.0.81.jar-5e7d77ec0d4786f1 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.restfulWS30.jsonb20provider-79b622081ee5a476 OTHER SPDXRef-File-...io.openliberty.restfulWS30.jsonb20provider-1.0.81.jar-fdd076c2cb0f0254 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---general.cpython-36.pyc-06282da5f0398ccf +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-080c666f693cedaf +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies.cpython-36.pyc-0ac76676ef1989d7 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies-validation-alg-lists.py-0cc067d410ef6e43 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---java.cpython-36.pyc-1004c9c8948a4c93 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-12ed90316722ad3c +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies-validation-scope.py-17ffaa27f9c2d5df +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1af56c3b0c412a7a +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1d17b31324dd368b +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---krb5.cpython-36.opt-1.pyc-1f757904ada9346c +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-openssl.py-3100f596ad343dad +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-cryptopolicies-alg-lists.py-31848d1869680cb1 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---nss.cpython-36.opt-1.pyc-347260bbd90e4e13 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---java.cpython-36.opt-1.pyc-3849828b7d81ce41 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---scope.cpython-36.opt-1.pyc-3980da1db80e1709 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...configgenerator.cpython-36.opt-1.pyc-434bff073b01f224 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---libreswan.cpython-36.pyc-45194389d2140db1 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---krb5.cpython-36.pyc-561a24031375c987 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---bind.cpython-36.pyc-56fbcba52c23f221 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...gnutls.cpython-36.opt-1.pyc-78102a3f6b86e179 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-cryptopolicies---init--.py-7b737d3badecd828 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...general.cpython-36.opt-1.pyc-7c736fdcfe459f90 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---openssh.cpython-36.pyc-7dd5fc72d5b82468 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...build-crypto-policies.cpython-36.opt-1.pyc-7f473f78a6e4a0b7 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...policygenerators-configgenerator.py-83ead8e5282678bb +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...build-crypto-policies.cpython-36.pyc-887cc52667a566a0 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...libssh.cpython-36.opt-1.pyc-8a69c6e890e5f224 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---nss.cpython-36.pyc-8bd739c59f631a18 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-usr-bin-fips-finish-install-8d969bae039eecce +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-update-crypto-policies.py-8dcb318ef2f3c0e8 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...configgenerator.cpython-36.pyc-934ba161c127a9fe +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-gnutls.py-96217e5e1e9a00cd +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---alg-lists.cpython-36.pyc-9888708c54e158e6 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies-cryptopolicies.py-99cc9b97a4c1f508 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-build-crypto-policies.py-9d37b396750383e5 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a383da6208c8e6c2 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---libssh.cpython-36.pyc-a600ac7b52f2bc78 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-krb5.py-a975ee3afb0b3d7f +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...alg-lists.cpython-36.opt-1.pyc-ad41eec24e66b748 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators---init--.py-adbd2da8d9cc19ad +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---scope.cpython-36.pyc-ae595fa5ef6393f9 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies-validation---init--.py-b09489edf8e14aa3 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...openssh.cpython-36.opt-1.pyc-b2de5591b9dcc64c +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---alg-lists.cpython-36.pyc-b33e8eaa97ddee31 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b36959984b232d12 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---openssl.cpython-36.pyc-b57fa93af26c8280 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---rules.cpython-36.opt-1.pyc-bab9321ba297f98e +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies.cpython-36.opt-1.pyc-c592f9fc78ec3ca0 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...openssl.cpython-36.opt-1.pyc-c59ec02ce9b08a3f +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...libreswan.cpython-36.opt-1.pyc-c703492749d08b6d +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-libreswan.py-c749c622048e5642 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-java.py-d4ed8e278eb0e2d9 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-openssh.py-d9c14c8d753e22a5 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies-validation-rules.py-da8ef223f187d10d +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-bind.py-dadc44b4d8da59c9 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-libssh.py-db4cb51ce64c645b +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-nss.py-de0d63a443328f52 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...update-crypto-policies.cpython-36.pyc-df8668f1a87096ad +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---rules.cpython-36.pyc-eb7278e003ad755f +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies-validation-general.py-ede17ec118c1352e +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-usr-bin-update-crypto-policies-f2176860a09dd330 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...alg-lists.cpython-36.opt-1.pyc-f370bee54b8111c3 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---bind.cpython-36.opt-1.pyc-f840df645a88e875 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-usr-bin-fips-mode-setup-f8f6febfa034e893 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...update-crypto-policies.cpython-36.opt-1.pyc-fa0ac0fa4cdc142a +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---gnutls.cpython-36.pyc-ffa6421733a4b64d +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...login.cpython-36m-x86-64-linux-gnu.so-0c10436627d1f534 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...test-journal.cpython-36.pyc-0c8bb0bc4c3a94b4 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...test-login.cpython-36.opt-1.pyc-1e42e86cada3746d +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-24105631a93ff688 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...systemd-test-test-journal.py-25ef83b25cbe8473 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...-reader.cpython-36m-x86-64-linux-gnu.so-297daec878fc5d62 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-333b5b442d370332 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...--pycache---journal.cpython-36.pyc-3797a65777b162b5 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...--pycache---test-login.cpython-36.pyc-3c925badfccce117 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...test-journal.cpython-36.opt-1.pyc-5952e41acf588361 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...systemd-test-test-daemon.py-59a8db29407b77ac +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...--pycache---daemon.cpython-36.pyc-63d31ba6715b03b8 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...site-packages-systemd-daemon.py-74bb220df3378134 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...daemon.cpython-36.opt-1.pyc-7c21c169f39c4cf3 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 OTHER SPDXRef-Package-python-systemd-python-7d3d321f514748f5 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...systemd-test-test-login.py-8109fa06d1cbe382 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...test-daemon.cpython-36.opt-1.pyc-95c8d24d38911a0c +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...id128.cpython-36m-x86-64-linux-gnu.so-95d91c07ef7ee17b +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...-daemon.cpython-36m-x86-64-linux-gnu.so-9fb20285e6c23f2a +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...systemd-python-234-py3.6.egg-info-bf1d1b655be7d33d +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...--pycache---test-daemon.cpython-36.pyc-c21a64f9f731a18d +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...site-packages-systemd---init--.py-e8a1a47eabe519ec +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...site-packages-systemd-journal.py-ee6f43a8668bc749 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...-journal.cpython-36m-x86-64-linux-gnu.so-f0197f6bc3fa3349 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...licenses-python3-systemd-LICENSE.txt-f348287d137e3139 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...journal.cpython-36.opt-1.pyc-f6e46166dbd5d354 +Relationship: SPDXRef-Package-rpm-subscription-manager-rhsm-certificates-7c18b7dbf0061f93 CONTAINS SPDXRef-File-etc-rhsm-ca-redhat-uep.pem-16429a5a5c7f5b74 +Relationship: SPDXRef-Package-rpm-subscription-manager-rhsm-certificates-7c18b7dbf0061f93 CONTAINS SPDXRef-File-...ca-redhat-entitlement-authority.pem-3595f63cb19ab7cc +Relationship: SPDXRef-Package-rpm-subscription-manager-rhsm-certificates-7c18b7dbf0061f93 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact.bundle-7ca57299f4ce7827 OTHER SPDXRef-File-...com.ibm.ws.artifact.bundle-1.0.81.jar-0982cf16138a6eaa +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.restfulWS.3.1-7ccdfa2119281541 OTHER SPDXRef-File-...io.openliberty.jakarta.restfulWS.3.1-1.0.81.jar-bfd622da86425be6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.credentials.wscred-7d2973745a28b886 OTHER SPDXRef-File-...com.ibm.ws.security.credentials.wscred-1.0.81.jar-36868e365448ff66 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-systemd-python-7d3d321f514748f5 OTHER SPDXRef-File-...systemd-python-234-py3.6.egg-info-bf1d1b655be7d33d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd.ejb-7dcf65ebe120bcf4 OTHER SPDXRef-File-...com.ibm.ws.javaee.dd.ejb-1.1.81.jar-764a3090e8e80c10 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-usr-share-appdata-dejavu.metainfo.xml-17e8279fea1d8d35 +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-usr-share-doc-dejavu-fonts-common-NEWS-212697fb7bb1cb18 +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-...doc-dejavu-fonts-common-status.txt.bz2-2d1afaa42e4ac5b6 +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-usr-share-doc-dejavu-fonts-common-BUGS-348d3071955dd979 +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-...share-doc-dejavu-fonts-common-AUTHORS-7b7879e4d3623757 +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-...share-doc-dejavu-fonts-common-LICENSE-94c6ad568bd95d10 +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-...share-doc-dejavu-fonts-common-README-ba48cce40b2f07f6 +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-...doc-dejavu-fonts-common-unicover.txt-f0729876bcc5e656 +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.xmlWS.4.0-7e12bdbf180c8b67 OTHER SPDXRef-File-...io.openliberty.jakarta.xmlWS.4.0-1.0.81.jar-6f22fe1b15536d02 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...--pycache---six.cpython-36.opt-1.pyc-19f6d698a9b3b961 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...six-1.11.0.dist-info-WHEEL-2a0952a3d177f8b0 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...--pycache---six.cpython-36.pyc-397819a76dd784a5 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-usr-lib-python3.6-site-packages-six.py-3dd7b2cfe1100d24 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-usr-share-licenses-python3-six-LICENSE-5db3cc28b6f7cd43 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...six-1.11.0.dist-info-RECORD-620d2cb46f556c95 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...six-1.11.0.dist-info-INSTALLER-81e44b435428b1fa +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...six-1.11.0.dist-info-METADATA-8762652a2c9d4459 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...six-1.11.0.dist-info-metadata.json-994f66f4e5fca615 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...six-1.11.0.dist-info-DESCRIPTION.rst-d26a92ac05c8d2c0 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...six-1.11.0.dist-info-top-level.txt-e266b79b516ae32c +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea OTHER SPDXRef-Package-python-six-e4e7ee91fea80cd9 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.feature.featurelist-7eec3f00c5332c79 OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-featurelist.jar-4c721027cdcb4451 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-usr-lib64-libnl-nf-3.so.200.26.0-2425b6d6b605f038 +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-usr-lib64-libnl-genl-3.so.200.26.0-4e7d061a5a5a181a +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-usr-lib64-libnl-3.so.200.26.0-55e59b1e8dc8b290 +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-usr-lib64-libnl-xfrm-3.so.200.26.0-950333b5d611211b +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-usr-lib64-libnl-route-3.so.200.26.0-9f0a90493b3899b5 +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-etc-libnl-pktloc-de85d4fb5d3c1678 +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-usr-lib64-libnl-idiag-3.so.200.26.0-dfebde06cf412245 +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-etc-libnl-classid-e662cd7ecdb55d7e +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.runtime.jakarta-7ff3c6a91e9abb3c OTHER SPDXRef-File-...com.ibm.ws.webserver.plugin.runtime.jakarta-1.0.81.jar-8b58fd7c62646596 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v7.jndi-8041251ba24ed52a OTHER SPDXRef-File-...com.ibm.ws.javaee.platform.v7.jndi-1.0.81.jar-1969be499675deac +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-elfutils-default-yama-scope-8056e0aae345bdf9 CONTAINS SPDXRef-File-...sysctl.d-10-default-yama-scope.conf-0587b7a6fa24498d +Relationship: SPDXRef-Package-rpm-elfutils-default-yama-scope-8056e0aae345bdf9 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libtirpc-8061da9a912f4b51 CONTAINS SPDXRef-File-etc-bindresvport.blacklist-405c1878215d01e0 +Relationship: SPDXRef-Package-rpm-libtirpc-8061da9a912f4b51 CONTAINS SPDXRef-File-etc-netconfig-bdf9caf37ce103ca +Relationship: SPDXRef-Package-rpm-libtirpc-8061da9a912f4b51 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libtirpc-8061da9a912f4b51 CONTAINS SPDXRef-File-usr-lib64-libtirpc.so.3.0.0-f39ef9386a75a676 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.io-810c3481a6caaad2 OTHER SPDXRef-File-...com.ibm.ws.org.apache.commons.io-1.0.81.jar-499b323d163e6d08 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.cmdline-81359e29cf6d4224 OTHER SPDXRef-File-...com.ibm.ws.kernel.cmdline-1.0.81.jar-84cfc54d80dbb8fd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.jndi.url.contexts-82055f4f911ddd86 OTHER SPDXRef-File-...com.ibm.ws.jndi.url.contexts-1.0.81.jar-f374774c6f46170b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.kerberos.auth-8307eb5847190739 OTHER SPDXRef-File-...com.ibm.ws.security.kerberos.auth-1.0.81.jar-7f9e26148f78528b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnetfilter-conntrack-830c21345b7e5867 CONTAINS SPDXRef-File-...lib64-libnetfilter-conntrack.so.3.6.0-840bc9deb414f17f +Relationship: SPDXRef-Package-rpm-libnetfilter-conntrack-830c21345b7e5867 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnetfilter-conntrack-830c21345b7e5867 CONTAINS SPDXRef-File-...libnetfilter-conntrack-COPYING-ee0323e77b3a853e +Relationship: SPDXRef-Package-rpm-libunistring-831f91ebad44f2ec CONTAINS SPDXRef-File-...licenses-libunistring-COPYING.LIB-0aaaf2d5e89adfa9 +Relationship: SPDXRef-Package-rpm-libunistring-831f91ebad44f2ec CONTAINS SPDXRef-File-usr-lib64-libunistring.so.2.1.0-cbe392533bc6cfd8 +Relationship: SPDXRef-Package-rpm-libunistring-831f91ebad44f2ec OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libunistring-831f91ebad44f2ec CONTAINS SPDXRef-File-...share-licenses-libunistring-COPYING-f97b584506063ae3 +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.angus.activation-83344f32bf0da0b4 OTHER SPDXRef-File-...io.openliberty.org.eclipse.angus.activation-1.0.81.jar-714344ab9ba7af12 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.restfulWS.internal.ssl-83e65ff9b0b27acb OTHER SPDXRef-File-...io.openliberty.restfulWS.internal.ssl-1.0.81.jar-867bd14a668f0553 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf CONTAINS SPDXRef-File-usr-lib64-libgmp.so.10.3.2-1899997b9f57f364 +Relationship: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf CONTAINS SPDXRef-File-...lib64-fipscheck-libgmp.so.10.3.2.hmac-54cb231af4e39120 +Relationship: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf CONTAINS SPDXRef-File-usr-share-licenses-gmp-COPYINGv3-7e9e1bf0e86073a3 +Relationship: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf CONTAINS SPDXRef-File-...share-licenses-gmp-COPYING.LESSERv3-8883c65e02c6768e +Relationship: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf CONTAINS SPDXRef-File-usr-share-licenses-gmp-COPYING-c49f8de17f10b633 +Relationship: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf CONTAINS SPDXRef-File-usr-share-licenses-gmp-COPYINGv2-df1b3b1da0ca29dd +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.filemonitor-87273f3743c0754c OTHER SPDXRef-File-...com.ibm.ws.kernel.filemonitor-1.0.81.jar-3f098f8b03ee629e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.yasson.3.0-882143b6eaf54e26 OTHER SPDXRef-File-...io.openliberty.org.eclipse.yasson.3.0-1.0.81.jar-88a673dfbb6a6a14 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-keyutils-libs-885dca71d492333b CONTAINS SPDXRef-File-usr-lib64-libkeyutils.so.1.6-03b3f1eeafa779d2 +Relationship: SPDXRef-Package-rpm-keyutils-libs-885dca71d492333b CONTAINS SPDXRef-File-...licenses-keyutils-libs-LICENCE.LGPL-b73164a895e10f80 +Relationship: SPDXRef-Package-rpm-keyutils-libs-885dca71d492333b OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.ready.service-886a7e9cecc0f6d5 OTHER SPDXRef-File-...com.ibm.ws.security.ready.service-1.0.81.jar-218557d4e69f80ad +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.feature-892614febcd1ae20 OTHER SPDXRef-File-...com.ibm.ws.kernel.feature-1.0.81.jar-6f462ab14f382e67 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.transaction-8a165dac8620c5e9 OTHER SPDXRef-File-...io.openliberty.transaction-1.1.81.jar-25c287b5ad4b9d21 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.checkpoint-8a542215f307aab5 OTHER SPDXRef-File-...io.openliberty.checkpoint-1.0.81.jar-b4528c44eac1a589 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 CONTAINS SPDXRef-File-...share-licenses-platform-python-LICENSE-0afb474413d35ee9 +Relationship: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 CONTAINS SPDXRef-File-usr-libexec-platform-python3.6-1f9aa3174ddc7a7f +Relationship: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 CONTAINS SPDXRef-File-usr-bin-pyvenv-3.6-5e7590a0dfe7a76a +Relationship: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 CONTAINS SPDXRef-File-usr-bin-pydoc3.6-a72e09cc63751932 +Relationship: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 CONTAINS SPDXRef-File-usr-libexec-platform-python3.6m-b0dda77b764f2159 +Relationship: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 CONTAINS SPDXRef-File-usr-libexec-no-python-e34fc456a28a2b81 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.javaeedd-8aaadc0ff19db6ad OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.javaeedd-1.7.81.jar-d16bc499155f81c6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-usermode-8ab8e85f37f04064 CONTAINS SPDXRef-File-etc-security-console.apps-config-util-06ffec58708307c0 +Relationship: SPDXRef-Package-rpm-usermode-8ab8e85f37f04064 CONTAINS SPDXRef-File-...locale-en-GB-LC-MESSAGES-usermode.mo-5a408c76245d264a +Relationship: SPDXRef-Package-rpm-usermode-8ab8e85f37f04064 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-usermode-8ab8e85f37f04064 CONTAINS SPDXRef-File-usr-bin-consolehelper-f0cf2a189ff3bb74 +Relationship: SPDXRef-Package-rpm-usermode-8ab8e85f37f04064 CONTAINS SPDXRef-File-usr-sbin-userhelper-f22001a49ea90934 +Relationship: SPDXRef-Package-rpm-libsolv-8b6446e1aef0cb45 CONTAINS SPDXRef-File-usr-lib64-libsolvext.so.1-4d080f6408830d5d +Relationship: SPDXRef-Package-rpm-libsolv-8b6446e1aef0cb45 CONTAINS SPDXRef-File-usr-share-doc-libsolv-README-b64cbfa4f5e5c06e +Relationship: SPDXRef-Package-rpm-libsolv-8b6446e1aef0cb45 CONTAINS SPDXRef-File-usr-share-licenses-libsolv-LICENSE.BSD-b8e78439d99ed502 +Relationship: SPDXRef-Package-rpm-libsolv-8b6446e1aef0cb45 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libsolv-8b6446e1aef0cb45 CONTAINS SPDXRef-File-usr-lib64-libsolv.so.1-df84155aa89b6cfd +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.install.featureUtility.featureutil-8baec303d4720fdf OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-featureUtility.jar-92a26802a6d3517b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libssh-8cb077ad4f6fdfd4 CONTAINS SPDXRef-File-usr-share-licenses-libssh-COPYING-8f53894d6cee6bd1 +Relationship: SPDXRef-Package-rpm-libssh-8cb077ad4f6fdfd4 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libssh-8cb077ad4f6fdfd4 CONTAINS SPDXRef-File-usr-lib64-libssh.so.4.8.7-e74b3b6fed85c878 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.channel.ssl-8d1607111dc76bf7 OTHER SPDXRef-File-...lib-com.ibm.ws.channel.ssl-1.0.81.jar-4583b55abcf194ed +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.rest.handler-8d1aec4aea85fc8e OTHER SPDXRef-File-...com.ibm.websphere.rest.handler-1.0.81.jar-e2c6105bbb674308 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...product-id.cpython-36.opt-1.pyc-05dd831de5858d89 +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...dnf-plugins-product-id.py-1c96678d7341250f +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...upload-profile.cpython-36.pyc-285dee68c6fc3fa8 +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...dnf-plugins-upload-profile.py-575a87656dc3face +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...--pycache---product-id.cpython-36.pyc-5cf82b1ddd36dd92 +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-usr-lib64-libdnf-plugins-product-id.so-6bc92bb3c8954ee5 +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...subscription-manager.cpython-36.pyc-6daf6bfea71f2661 +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...dnf-plugins-subscription-manager.py-74a655d94fe63010 +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...upload-profile.cpython-36.opt-1.pyc-e373c8c611ec4ae2 +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...subscription-manager.cpython-36.opt-1.pyc-e46c6db1cd165a49 +Relationship: SPDXRef-Package-java-archive-io.openliberty.microprofile.health.3.1.internal.jakarta-8dbab8314d5b8152 OTHER SPDXRef-File-...io.openliberty.microprofile.health.3.1.internal.jakarta-1.0.81.jar-74e186d2a2c2a8a0 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.logging-8dc23917d07e91e9 OTHER SPDXRef-File-...com.ibm.ws.org.jboss.logging-1.0.81.jar-3a155ad9afd00976 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.wsoc.ssl.internal-8e0e00ee38279d62 OTHER SPDXRef-File-...io.openliberty.wsoc.ssl.internal-1.0.81.jar-ca2172ab26960f71 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-urllib3-8ede639981c11081 OTHER SPDXRef-File-...urllib3-1.24.2-py3.6.egg-info-PKG-INFO-4731163b373c6e55 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.mp.jwt.proxy-8f00f2ec2e3f6b5b OTHER SPDXRef-File-...com.ibm.ws.security.mp.jwt.proxy-1.0.81.jar-fefb10301ec0392d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0a85a9fadd0431bc +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...site-packages-hawkey--hawkey.so-0cccbb25cf7ece8f +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-57402724ee7c8a07 +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...site-packages-hawkey---init--.py-715cba7d67cd2ba1 +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-732a58a88b2ff484 +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-86d82e0098b045b0 +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...hawkey-test--hawkey-test.so-b4c826f17e36b169 +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...site-packages-hawkey-test---init--.py-d402b2db36795682 +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader.auditreader-8f344506f25c58af OTHER SPDXRef-File-...com.ibm.ws.security.audit.reader-1.0.81.jar-30697d64d9c46b5e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.transaction.jakarta-8fb81778b3027ede OTHER SPDXRef-File-...com.ibm.ws.transaction.jakarta-1.0.81.jar-0c7e30cceec59763 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.slf4j.jdk14-90998235881dddab OTHER SPDXRef-File-...com.ibm.ws.org.slf4j.jdk14-1.0.81.jar-eee7c7b7c3548f85 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libassuan-9166c1f313ff431e CONTAINS SPDXRef-File-usr-lib64-libassuan.so.0.8.1-81e6e3a717179fa4 +Relationship: SPDXRef-Package-rpm-libassuan-9166c1f313ff431e CONTAINS SPDXRef-File-...share-licenses-libassuan-COPYING.LIB-835f625ffadbdc80 +Relationship: SPDXRef-Package-rpm-libassuan-9166c1f313ff431e CONTAINS SPDXRef-File-usr-share-licenses-libassuan-COPYING-873fc7c4ce1d7eaa +Relationship: SPDXRef-Package-rpm-libassuan-9166c1f313ff431e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.context-922a1685924c2e6b OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.context-1.0.81.jar-13b2f4b84e4ab3f7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-gettime.awk-08a15cbc1bc2bf65 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-readfile.so-0f91658ccbd6a65e +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-have-mpfr.awk-10f61487aa4521a2 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-etc-profile.d-gawk.csh-1266f3467c6bae09 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-licenses-gawk-LICENSE.BSD-12ebb69e5e86d7f4 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-walkarray.awk-1373a93451f765df +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-ord.awk-1430150663429a70 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-shellquote.awk-184e9700110d06c5 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-zerofile.awk-1915efe071a896f5 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-filefuncs.so-1f4fe69ff6f2d839 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-quicksort.awk-21019387d1860cf6 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-processarray.awk-257444d49f5b5db1 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-licenses-gawk-COPYING-2af9cae2bd34e3d6 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-getopt.awk-2b1fdc1077dcc342 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-readfile.awk-2e5d249532999902 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-round.awk-3164d60fd0a331a5 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-revoutput.so-337e61571be315d7 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-fork.so-433fd37021fd394e +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-libexec-awk-pwcat-4347f7e43eaa69a3 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-ftrans.awk-44114a83b5979810 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-etc-profile.d-gawk.sh-4ed9805d3069a9f0 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-rwarray.so-511269d7664d00cf +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-group.awk-5771879b57c7ef44 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-inplace.so-5b3e463a12052aa4 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-inplace.awk-741b54c4e3e69390 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-intdiv0.awk-8a9fbdd38aacd07f +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-passwd.awk-9e3c177fad7092d8 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-ctime.awk-ab74e7127b4f63d0 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-fnmatch.so-afc8ffb5c6835149 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-time.so-b137a8ca5032eb80 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-libintl.awk-b2db0632380ebe40 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-readable.awk-b70069a3e665b138 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-licenses-gawk-LICENSE.LGPLv2-b895a937ec301d0b +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-rewind.awk-b8c57b670106503b +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-join.awk-c7dbc647a58dabc4 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-bin-gawk-ccf8149a99c484d8 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-bits2str.awk-d88ffa74f0eff1d1 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-ordchr.so-ddad3f739bf562ea +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-libexec-awk-grcat-df55418deebcbbbf +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-noassign.awk-e0733a78555e7645 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-cliff-rand.awk-e22d35c56b593ef6 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-intdiv.so-e919f9a093a171e9 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-readdir.so-e91b9b9aa807282e +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-strtonum.awk-f0548bc6bc6e499a +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-licenses-gawk-LICENSE.GPLv2-f0bd1cf4dcfe5398 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-revtwoway.so-f343f4c17452b404 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-assert.awk-f91c6ed6a45a0255 +Relationship: SPDXRef-Package-python-crit-93303bae4b0d7b38 OTHER SPDXRef-File-...crit-3.18-py3.6.egg-info-PKG-INFO-c2616591addfe5cd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.namespace.service-933eff1b00233d81 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.namespace.service-1.0.81.jar-c3524ae3f0bb574d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dbus-glib-93aad31cdc4b7d7c CONTAINS SPDXRef-File-usr-lib64-libdbus-glib-1.so.2.3.4-017d3f1b219e5313 +Relationship: SPDXRef-Package-rpm-dbus-glib-93aad31cdc4b7d7c CONTAINS SPDXRef-File-usr-bin-dbus-binding-tool-41c76be09a3e351c +Relationship: SPDXRef-Package-rpm-dbus-glib-93aad31cdc4b7d7c CONTAINS SPDXRef-File-usr-share-licenses-dbus-glib-COPYING-51c1cb7f52e0c249 +Relationship: SPDXRef-Package-rpm-dbus-glib-93aad31cdc4b7d7c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen-94107ffafc593492 OTHER SPDXRef-File-...com.ibm.ws.config.server.schemagen-1.0.81.jar-03932bf40ecb0eb7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact.equinox.module-95cb364cc6fdeb96 OTHER SPDXRef-File-...com.ibm.ws.artifact.equinox.module-1.0.81.jar-32f241197a65e965 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libseccomp-9637380e6a0d0e55 CONTAINS SPDXRef-File-usr-lib64-libseccomp.so.2.5.2-37fbde766f7b4a09 +Relationship: SPDXRef-Package-rpm-libseccomp-9637380e6a0d0e55 CONTAINS SPDXRef-File-usr-share-licenses-libseccomp-LICENSE-a6bcf740b8b25082 +Relationship: SPDXRef-Package-rpm-libseccomp-9637380e6a0d0e55 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-gzip-06f34d6435b7d12e +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-share-licenses-gzip-fdl-1.3.txt-10717af3075e8dac +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zgrep-10ed544e03c1bcb1 +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zless-1f190d5d92ce93f4 +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zforce-3346e80100b79bf4 +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zdiff-4b3640ff665ea58d +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-etc-profile.d-colorzgrep.sh-59cbe5208d0b48cd +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zcmp-5a44d19348a1d47e +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zmore-6c71d895d8b23f6f +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-share-licenses-gzip-COPYING-6fce93e7a41cd8e9 +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zfgrep-7144d81e60b4344b +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zegrep-88685e006381f799 +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-gzexe-b57fa495b2db7dc3 +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-znew-b5d7fca1d959f9ec +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zcat-be2b8596ff764e1b +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-etc-profile.d-colorzgrep.csh-c4a6f677e5533a33 +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-gunzip-fb01a37017cc5581 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.event-9764d1dd8f849ae9 OTHER SPDXRef-File-...ol-wlp-lib-com.ibm.ws.event-1.0.81.jar-1667fd4b324baaa0 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.jsonb.service-9834690d13a040c2 OTHER SPDXRef-File-...com.ibm.ws.jsonb.service-1.0.81.jar-2f0df6f3e2cc539a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-org.eclipse.osgi-98c62e474bd18238 OTHER SPDXRef-File-...wlp-lib-org.eclipse.osgi-3.18.300.jar-3fa98d9efa9af05e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.utility.securityutil-98d95b7cb8d7f646 OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-securityutil.jar-d47265613f76c274 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact.file-98f364289079cd2b OTHER SPDXRef-File-...com.ibm.ws.artifact.file-1.0.81.jar-b2cdc51fea663cd3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.security.jaas.internal.common-99399c598d276da1 OTHER SPDXRef-File-...io.openliberty.security.jaas.internal.common-1.0.81.jar-d850e02edc56f08f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.wab.jakarta-99f6997896fda028 OTHER SPDXRef-File-...com.ibm.ws.app.manager.wab.jakarta-1.0.81.jar-f6e84fa2d4205419 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-dbus-python-9a2539d64666884c OTHER SPDXRef-File-...PKG-INFO-7a7b9cef2a4515d9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-PySocks-9a572bb052f6e9e4 OTHER SPDXRef-File-...PySocks-1.6.8-py3.6.egg-info-PKG-INFO-8b161028d1df54f7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.authorization.builtin-9a610721379b7e83 OTHER SPDXRef-File-...com.ibm.ws.security.authorization.builtin-1.0.81.jar-53541811010d5d82 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-serverSchemagen-9b02db7a319b708c OTHER SPDXRef-File-...com.ibm.ws.config.server.schemagen-1.0.81.jar-03932bf40ecb0eb7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 CONTAINS SPDXRef-File-etc-dbus-1-system.conf-3243a3319d33a9c3 +Relationship: SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 CONTAINS SPDXRef-File-etc-dbus-1-session.conf-44c8f8cbf4737db1 +Relationship: SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 CONTAINS SPDXRef-File-usr-share-dbus-1-session.conf-4b66d7377a4595a5 +Relationship: SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 CONTAINS SPDXRef-File-usr-lib-sysusers.d-dbus.conf-6f36638e025d0b1d +Relationship: SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 CONTAINS SPDXRef-File-usr-share-dbus-1-system.conf-7c250a6c32657e70 +Relationship: SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.anno-9b254ddbce79a975 OTHER SPDXRef-File-...ol-wlp-lib-com.ibm.ws.anno-1.1.81.jar-0955563bba5dace9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-65-fonts-persian.conf-016594a31cc81ab6 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-scan.1.gz-068073dc3a769c71 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-60-latin.conf-0939a55bd44e2390 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-10-unhinted.conf-0a143f82975232e6 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-cache-64-0b13f3e18cfd3249 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-11-lcdfilter-default.conf-128a9adad30fe5d5 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...doc-fontconfig-fontconfig-user.html-14c1cb398678c2a4 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-doc-fontconfig-AUTHORS-1ce8db0073822ab8 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-69-unifont.conf-21e995f228891de2 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-20-unhint-small-vera.conf-2229f74d3965bb92 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-51-local.conf-240d77f0a243f3ed +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-65-nonlatin.conf-2c761a67a43515ae +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...doc-fontconfig-fontconfig-user.txt-3985533ea47ce64c +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-sub-pixel-bgr.conf-3c875c213e7e28ac +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-cache-45e1370509e37260 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-49-sansserif.conf-47fe978d4ff84707 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-doc-fontconfig-README-4df10b06fdadb1f7 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-70-no-bitmaps.conf-50775690e31f87b7 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-sub-pixel-rgb.conf-5b6fcf3fd529ad78 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-11-lcdfilter-light.conf-5ec8259e64366658 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-lib64-libfontconfig.so.1.12.0-5f288ae5f818ef3f +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-conflist.1.gz-5f65c9ad6bfde265 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-scan-664196b1474edff7 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-sub-pixel-vbgr.conf-6a425c075f71bf0a +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-cat.1.gz-6d4550c9e8ad2366 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-60-generic.conf-6f367f5fd3e6c7d6 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-hinting-slight.conf-755568bbb96cc759 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-conflist-87489a904cbaf170 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-etc-fonts-fonts.conf-8e59c78284664d67 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-no-sub-pixel.conf-9117d4da3793e56e +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-40-nonlatin.conf-9524683e2a7ad0e5 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-hinting-none.conf-978db3c104c6381d +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-65-khmer.conf-9980d7aeecacd4cc +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-cat-9bac35ace24999f8 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-pattern-9bc515d2c84af8f4 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-list-9e987c5cde6fc5d4 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-xml-fontconfig-fonts.dtd-9f03c0e178ff762a +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-match-9f650f46f435e2a6 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-hinting-full.conf-a28b50cbb64c6373 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-45-generic.conf-a485f97d1f252997 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-10-autohint.conf-a72910a255b21d6c +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-90-synthetic.conf-ad4861d60c32c08f +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-sub-pixel-vrgb.conf-aebc2d8b8639a8da +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-match.1.gz-b05a32901284c2b1 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-45-latin.conf-b2d5db3c81a50037 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-scale-bitmap-fonts.conf-bbcfc32a1eb7e26d +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-cache.1.gz-bdca42b293ea35a2 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-validate.1.gz-be02b7ff0bb1cacb +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-80-delicious.conf-be742a98b07c7196 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-50-user.conf-c329acc0ab92a5e7 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-70-yes-bitmaps.conf-c9a1af80cc4a540a +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-11-lcdfilter-legacy.conf-d3aee102dd226900 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-hinting-medium.conf-d4bd022fe7ce3c8a +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-query.1.gz-d8ba7fbe8babdcb5 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-pattern.1.gz-dcd911bf4cde60c4 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-25-unhint-nonlatin.conf-e01b74c0b724899e +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man5-fonts-conf.5.gz-e2f8f6d300bafbd4 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-30-metric-aliases.conf-e4d4e64106df6dde +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-query-ea3b26791dfb86d6 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-list.1.gz-ef1ffb79dd3e768e +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-validate-f358adee20bc97f9 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-licenses-fontconfig-COPYING-f5a9c6adfb07d43d +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-etc-fonts-conf.d-README-fd67fb715fb7558c +Relationship: SPDXRef-Package-rpm-libmodulemd-9c9ffed1c422836c CONTAINS SPDXRef-File-usr-lib64-libmodulemd.so.2.13.0-2451e16dc8f4a035 +Relationship: SPDXRef-Package-rpm-libmodulemd-9c9ffed1c422836c CONTAINS SPDXRef-File-...girepository-1.0-Modulemd-2.0.typelib-7dd8603e9e37430a +Relationship: SPDXRef-Package-rpm-libmodulemd-9c9ffed1c422836c CONTAINS SPDXRef-File-usr-bin-modulemd-validator-d9ef2fee55f31fe9 +Relationship: SPDXRef-Package-rpm-libmodulemd-9c9ffed1c422836c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libmodulemd-9c9ffed1c422836c CONTAINS SPDXRef-File-usr-share-licenses-libmodulemd-COPYING-f0f30c22fec63858 +Relationship: SPDXRef-Package-rpm-npth-9ce2662d05a994e8 CONTAINS SPDXRef-File-usr-share-licenses-npth-COPYING.LIB-546832545ae59d9e +Relationship: SPDXRef-Package-rpm-npth-9ce2662d05a994e8 CONTAINS SPDXRef-File-usr-lib64-libnpth.so.0.1.1-b61444a39103cffd +Relationship: SPDXRef-Package-rpm-npth-9ce2662d05a994e8 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-crit-9d9ae1c0b26b6359 OTHER SPDXRef-File-...crit-3.18-py3.6.egg-info-PKG-INFO-4820f3c33a6f53c6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.jsonb.3.0-9dd0dc9b16e624f7 OTHER SPDXRef-File-...io.openliberty.jakarta.jsonb.3.0-1.0.81.jar-6416f8e14fec8e90 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---euctwfreq.cpython-36.pyc-01ec29ed6b7dc91f +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---chardetect.cpython-36.pyc-021306676da3ac2b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---cp949prober.cpython-36.pyc-036a0b06dc05cb5d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...charsetprober.cpython-36.pyc-0cf46994b9835531 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langhebrewmodel.cpython-36.pyc-0cff3d20f6be00be +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...utf8prober.cpython-36.opt-1.pyc-0df7a3f12e4fddaa +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...latin1prober.cpython-36.pyc-0fdc25fe63fb0e8f +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-euckrfreq.py-117b36287525800d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---jpcntx.cpython-36.pyc-12ba9770429e33cb +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---enums.cpython-36.opt-1.pyc-14caf48a1f99f4b1 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-cp949prober.py-14ecbdf95218eeca +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...mbcsgroupprober.cpython-36.opt-1.pyc-17d702cacac850c0 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-langhungarianmodel.py-18073081b68a426e +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-langhebrewmodel.py-1910e46ebc396a3f +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1d4ed8f2bd640cf7 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...gb2312prober.cpython-36.opt-1.pyc-1da7123b5113e842 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-latin1prober.py-1edc209670cd00a4 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---escsm.cpython-36.pyc-23add3b075a622a0 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-euckrprober.py-23f0db76aab5b05d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...escprober.cpython-36.opt-1.pyc-246c61b273b3150b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-langcyrillicmodel.py-2af0335aa3d37b56 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---euctwprober.cpython-36.pyc-2f2ec5bec4a67ce5 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...mbcsgroupprober.cpython-36.pyc-3395ba24a146b8d6 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...dependency-links.txt-34208653ef4c7e36 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...euctwfreq.cpython-36.opt-1.pyc-35c4bda7afbc4bf2 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...share-licenses-python3-chardet-LICENSE-3616888ab83fbf26 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...universaldetector.cpython-36.pyc-36367aed0dd54928 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...sbcharsetprober.cpython-36.opt-1.pyc-3af0d10fdecb79ae +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langbulgarianmodel.cpython-36.opt-1.pyc-3c3cad204266878d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-cli---init--.py-3f2d107ac70bad08 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...hebrewprober.cpython-36.opt-1.pyc-420875c2d006ba8d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-eucjpprober.py-48833a787df52f17 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langthaimodel.cpython-36.pyc-489587cfc2f465af +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...sbcharsetprober.cpython-36.pyc-4b7b3d6f50cb5a77 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...jpcntx.cpython-36.opt-1.pyc-4ef1c74e47f92fc5 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...compat.cpython-36.opt-1.pyc-51227cd82c255ecd +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-cli-chardetect.py-52b805fe7364f955 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---euckrfreq.cpython-36.pyc-548987825caab329 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---version.cpython-36.pyc-54d69ae0d3490211 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---gb2312freq.cpython-36.pyc-553cda828fdb4838 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...codingstatemachine.cpython-36.opt-1.pyc-55c35a28c3ee2159 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-codingstatemachine.py-568f3507c4831e9b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-59bc3c44c60fe58d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langturkishmodel.cpython-36.opt-1.pyc-5ae01334eadf7aea +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...entry-points.txt-5b09e5e7a661613f +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---sjisprober.cpython-36.pyc-5c66e54d0b9ebb0c +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-langthaimodel.py-5ec2d1d9b7c66d69 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---big5freq.cpython-36.pyc-5fc062249ff0ac1b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardistribution.cpython-36.opt-1.pyc-61b102bcc639c94b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...sjisprober.cpython-36.opt-1.pyc-64dcd5d6aba17bf0 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...euckrfreq.cpython-36.opt-1.pyc-6c9334caefcc9279 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langthaimodel.cpython-36.opt-1.pyc-6cab9377f73f5cb9 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-sbcsgroupprober.py-6e9572a23062eaae +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-escprober.py-735974d53e13832a +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-euctwfreq.py-7836f65cc043a2f8 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-big5freq.py-785b984e7f856e1d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langgreekmodel.cpython-36.pyc-7880d6776d906dd0 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---compat.cpython-36.pyc-7976c9c7869e0fef +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-langbulgarianmodel.py-7a8a63ca4f8a6838 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...universaldetector.cpython-36.opt-1.pyc-7effd3b8f9fe4e2b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...gb2312freq.cpython-36.opt-1.pyc-7fc82cd97f76ce1e +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---jisfreq.cpython-36.pyc-8084f996e6504216 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-sbcharsetprober.py-842683127bc2fa68 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---utf8prober.cpython-36.pyc-896f11f4c393377a +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...eucjpprober.cpython-36.opt-1.pyc-8c9f3f3c1c795b35 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...jisfreq.cpython-36.opt-1.pyc-8e84eafda54c21f6 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langturkishmodel.cpython-36.pyc-92411396dbff78ef +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-jisfreq.py-92478905f1bfa757 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...SOURCES.txt-93cff17b12ad307e +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-3.0.4-py3.6.egg-info-PKG-INFO-944ffd667cc9db41 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...cp949prober.cpython-36.opt-1.pyc-997094c4ea4db302 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---mbcssm.cpython-36.pyc-9975631a8b88776a +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-chardistribution.py-9af06b5487ec8414 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...sbcsgroupprober.cpython-36.opt-1.pyc-9c6398ab3688d09a +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...euckrprober.cpython-36.opt-1.pyc-9c9187b485f11e81 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-jpcntx.py-9ce8763aa56e3a0a +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langcyrillicmodel.cpython-36.opt-1.pyc-9e0e73402d269897 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-charsetprober.py-9eccef2b20601d1d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---eucjpprober.cpython-36.pyc-a054dc26ea0ece40 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...charsetgroupprober.cpython-36.pyc-a34378488fbb1c6f +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a3e27755e22c8c6b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a4db67ac49b75764 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langcyrillicmodel.cpython-36.pyc-ad1332265a008256 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langbulgarianmodel.cpython-36.pyc-ad14a1628de3ac96 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---enums.cpython-36.pyc-adad0f344df891ca +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardetect.cpython-36.opt-1.pyc-b0f2949cdb9efa6b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b1d6823ef3c8ab3a +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet---init--.py-b233a87ee2864281 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...gb2312prober.cpython-36.pyc-b4dfd5cf66ce8ba3 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...charsetgroupprober.cpython-36.opt-1.pyc-b58dee54b498fefd +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-escsm.py-b748feed553f81f4 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-version.py-b88482637a98a3b2 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...mbcharsetprober.cpython-36.opt-1.pyc-b8a38f7167e22e44 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-hebrewprober.py-b8b21a721b4afba9 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-enums.py-bd3955311fc5f4f4 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-sjisprober.py-bda4de4f382e401c +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---escprober.cpython-36.pyc-c114164f79d01fd4 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langhungarianmodel.cpython-36.pyc-c1fee2ad84e5e557 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-charsetgroupprober.py-c2ac137fbbbf4827 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langhebrewmodel.cpython-36.opt-1.pyc-c5a1314a69aa0a47 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---euckrprober.cpython-36.pyc-c946f7dfdc923455 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...mbcharsetprober.cpython-36.pyc-caf247091c838d96 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...top-level.txt-cb4c5d137c1d7af6 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-gb2312prober.py-cb6d1eb9bd047000 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...mbcssm.cpython-36.opt-1.pyc-cca7615f470c9c4e +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-universaldetector.py-ce856d8f42868c6c +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-langturkishmodel.py-cf6a24a0d5dfd507 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...euctwprober.cpython-36.opt-1.pyc-d43d4fd63188f808 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...codingstatemachine.cpython-36.pyc-d46531d8ea3bbe8d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-usr-bin-chardetect-d6e390daf0ddc264 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-mbcharsetprober.py-d7758d23b20b448f +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-big5prober.py-d7b24a180a3dcb41 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-utf8prober.py-d7b4ea1ade196b51 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...hebrewprober.cpython-36.pyc-d886077e0ebd8313 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langhungarianmodel.cpython-36.opt-1.pyc-d9bf6f3addf3fd45 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...big5prober.cpython-36.opt-1.pyc-dbc1f1059b2f9296 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---escsm.cpython-36.opt-1.pyc-dd62f93107b82041 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---big5prober.cpython-36.pyc-de2efe71ef2b5179 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-compat.py-df58ff3dfbebeba8 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...charsetprober.cpython-36.opt-1.pyc-e2c3a2635db75f0c +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-mbcsgroupprober.py-e34e84952974b9d2 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardistribution.cpython-36.pyc-e5d45547f87068be +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...latin1prober.cpython-36.opt-1.pyc-ec145475e303db5d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langgreekmodel.cpython-36.opt-1.pyc-f2142b82c6cb5b8e +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-mbcssm.py-f3d53240b96685d1 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-langgreekmodel.py-f5c0a0517b485775 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-gb2312freq.py-f79fc118407a4044 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...big5freq.cpython-36.opt-1.pyc-f8c662d8371ca277 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-euctwprober.py-f9504d477e9fa2d1 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...sbcsgroupprober.cpython-36.pyc-fed766634c35c156 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa OTHER SPDXRef-Package-python-chardet-ff941a34dc8ad898 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.transport.http-9ecc2b0be781ef45 OTHER SPDXRef-File-...com.ibm.ws.transport.http-1.0.81.jar-2418357cc9cb45a3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-usr-share-cracklib-cracklib.magic-07b3c000f80881ce +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-usr-sbin-cracklib-packer-30a254ccb5506d00 +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-usr-sbin-cracklib-check-44fb50efdc6e3f98 +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-usr-sbin-cracklib-format-5c9ba3451440e818 +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-...share-licenses-cracklib-COPYING.LIB-a225e1610abf435e +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-usr-sbin-create-cracklib-dict-a3d3c852c66c8daa +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-usr-sbin-cracklib-unpacker-af6a1a3ebb75f441 +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-usr-lib64-libcrack.so.2.9.0-e16c1ec46c8d019b +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...bitstream.cpython-36.opt-1.pyc-05ba05489294a279 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-m2cryptossl.py-08c311aa8596c8df +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---ourjson.cpython-36.pyc-0936052f1564141b +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---certificate.cpython-36.pyc-0a324636ddbf7d7b +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...huffman.cpython-36.opt-1.pyc-0c609c4a1ece42b2 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...logutil.cpython-36.opt-1.pyc-0c6c3e0c350392c8 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-pathtree.py-0cf57ed033cfd574 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---https.cpython-36.opt-1.pyc-17d1d302d17d254b +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-logutil.py-2a10b36747e053f4 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm---init--.py-2ca38ae01e5c8f4c +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-profile.py-32c453b713b47926 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-m2cryptohttp.py-36975be258600118 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-38e1bb4a31f86fef +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...certificate.cpython-36.opt-1.pyc-3af58bbad1e70c5b +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---bitstream.cpython-36.pyc-3dd45cbc0c2096bb +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-connection.py-3f1cc26b529013af +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...rhsm---pycache---utils.cpython-36.pyc-44c17ab5e35115a5 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---huffman.cpython-36.pyc-4c814923c83a7231 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...m2cryptohttp.cpython-36.pyc-59178187bcde1cc7 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5fcc3a466c4cbaa1 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...python3.6-site-packages-rhsm-utils.py-648308bac9b094d4 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---logutil.cpython-36.pyc-6e9dc51ac5c94353 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---pathtree.cpython-36.pyc-7a11b66f448a55bc +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...ourjson.cpython-36.opt-1.pyc-832d0162dc2d027f +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---connection.cpython-36.pyc-84a17137488311f8 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...certificate2.cpython-36.opt-1.pyc-993235f0ed0a1c75 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...rhsm---pycache---https.cpython-36.pyc-99886d4947b8a20f +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-bitstream.py-a4765f588f5d7897 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-certificate.py-a4e189ddac998dc9 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---m2cryptossl.cpython-36.pyc-a69ff3ac0ae372a5 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-certificate2.py-ab1552628de260a5 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-acb27124d1b5e395 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...python3.6-site-packages-rhsm-config.py-afacaf102033d30e +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...rhsm---pycache---config.cpython-36.pyc-b5e89e39c7d75ff5 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...python3.6-site-packages-rhsm-https.py-b8ee76de7a811176 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...-certificate.cpython-36m-x86-64-linux-gnu.so-bd2007c0144efb98 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...m2cryptossl.cpython-36.opt-1.pyc-be40d8853534eb68 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-ourjson.py-c8b160808df8a8e3 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---profile.cpython-36.pyc-ca61ad942ed21c38 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...connection.cpython-36.opt-1.pyc-cc549009937e0af3 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...profile.cpython-36.opt-1.pyc-ecf011d2fdd6a7e5 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...pathtree.cpython-36.opt-1.pyc-ef73d7ae28d3ba69 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...certificate2.cpython-36.pyc-f267e771ee91fda9 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...m2cryptohttp.cpython-36.opt-1.pyc-f3ce615434e55ac5 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-huffman.py-f5c0a5ad07e2b730 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f9af71a26830833d +Relationship: SPDXRef-Package-python-python-dmidecode-9f1510382966a14d OTHER SPDXRef-File-...python-dmidecode-3.12.2-py3.6.egg-info-48a8a1d3752813a7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.basics-9f1f28ba07ffddec OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.basics-1.4.81.jar-00605df85686e2c5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.xmlBinding.4.0-9f8511fbe5569dad OTHER SPDXRef-File-...io.openliberty.jakarta.xmlBinding.4.0-1.0.81.jar-81a52a01a936b593 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg---pycache---util.cpython-36.pyc-006323b9c10a6675 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg---pycache---gpgme.cpython-36.pyc-009f9314e3f5f94d +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-010be6e638bc766a +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-constants-sigsum.py-0546504b1c11cdc4 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---pk.cpython-36.opt-1.pyc-057c9b6695ba5158 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-058fe2df355d8003 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...python3.6-site-packages-gpg-version.py-086e09896c711c32 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-constants-keysign.py-097bb99af31d4f10 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-constants-status.py-0c56ce162cadf1e1 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-sig-mode.py-0e59fbe30d7db75d +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...-gpgme.cpython-36m-x86-64-linux-gnu.so-0fb42b583610e8e7 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...create.cpython-36.opt-1.pyc-1016f72f3d3568d0 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...python3.6-site-packages-gpg-results.py-142df2fa7990e6c6 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-167327a68733a5a8 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d OTHER SPDXRef-Package-python-gpg-176c74855eaee639 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...validity.cpython-36.opt-1.pyc-1b9dae516173509f +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-tofu---init--.py-1f0aef71d771e992 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-sig---init--.py-23a43b1aa1887dda +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---core.cpython-36.opt-1.pyc-24879659fcb09933 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...results.cpython-36.opt-1.pyc-24f5d24afb8202e3 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---notation.cpython-36.pyc-27adffe15bacccc6 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...sigsum.cpython-36.opt-1.pyc-2cfbf0eafb825904 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---md.cpython-36.pyc-2e996ac0575e59de +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---status.cpython-36.pyc-2f505bf727ce5785 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-keylist---init--.py-312085910975516b +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---gpgme.cpython-36.opt-1.pyc-3e074d757fd07303 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---event.cpython-36.opt-1.pyc-43a00089c59d0a5d +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---import-type.cpython-36.pyc-43ee3fb4d4dade4a +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-46df96ad39cd366c +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---mode.cpython-36.pyc-4d51436ee9789481 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...protocol.cpython-36.opt-1.pyc-529e1c2ed8f954d5 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-data---init--.py-547aa19715941390 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-tofu-policy.py-56cc8f0d32e9627c +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg---pycache---version.cpython-36.pyc-56d246cd4bfac3bd +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---md.cpython-36.opt-1.pyc-63a632a26016d43a +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-sig-notation.py-64017266c2d25e54 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-660b9c4a1d1cddb4 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---keysign.cpython-36.pyc-668409ebf746e911 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-protocol.py-686f5683f74a1b2f +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg---pycache---core.cpython-36.pyc-693c7390167184b5 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---mode.cpython-36.opt-1.pyc-6ad5aa4142791521 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-78c680e3933ebe01 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...sig---pycache---mode.cpython-36.pyc-81479874552ee83e +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-constants-pk.py-82ecf9c7c90cb292 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-8675a0b2164add55 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---callbacks.cpython-36.pyc-87d3f4586a48ab25 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...import-type.cpython-36.opt-1.pyc-87f9ddc2aeaaf9b4 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-8a03cbb86f6477e3 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...errors.cpython-36.opt-1.pyc-8a5a4d5f7121ddfc +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-8a7ae778ffac5971 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-8b3adb7cbf896bb7 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...python3.6-site-packages-gpg-util.py-94daa32cccbc488a +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...keysign.cpython-36.opt-1.pyc-95862abcc30e4edb +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...python3.6-site-packages-gpg-errors.py-a399ab8b16cb5327 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...python3.6-site-packages-gpg-gpgme.py-a59309da917b1c80 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...policy.cpython-36.opt-1.pyc-a873b1f413ba6502 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ae3bd0c36f9be65d +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---create.cpython-36.pyc-aed88758b062dddc +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-constants-create.py-b4e61a8720c7daaf +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants---init--.py-b52d57b21175bf58 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg---pycache---results.cpython-36.pyc-b55a38f9745c5abe +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...status.cpython-36.opt-1.pyc-b8b7f3280c874b9f +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-keylist-mode.py-bc34c229b5ce82ef +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---pk.cpython-36.pyc-bc8b09f4247a1b4f +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...tofu---pycache---policy.cpython-36.pyc-bd017b73cbc27fe8 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-import-type.py-bd4b678ac3d8143b +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-validity.py-c1468068592f70f3 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg---init--.py-c3d733d6f371e99a +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg---pycache---errors.cpython-36.pyc-c641bcea594d9ab5 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...callbacks.cpython-36.opt-1.pyc-c78968ac91f3ebb1 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---mode.cpython-36.opt-1.pyc-c7cec218ab910c4b +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---protocol.cpython-36.pyc-c94efeafd048aa94 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...encoding.cpython-36.opt-1.pyc-d4fde4949f0e0e03 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d7dee6bf1a6bc7f3 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...python3.6-site-packages-gpg-core.py-d87c22c6ae6c74bd +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d8d3d7017758f9ca +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-1.13.1-py3.6.egg-info-da7717d7cf43e5e6 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...notation.cpython-36.opt-1.pyc-db0c429f4bc96837 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-callbacks.py-e65cbced916bd891 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-constants-md.py-e7120909c9c1cc8b +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-eb2f82046aa36632 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-data-encoding.py-ebea7cbad3e1afa0 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-constants-event.py-f4771a9d5d811f44 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---sigsum.cpython-36.pyc-f4922ec0737a8c60 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---encoding.cpython-36.pyc-f6a4fd42fcbc6406 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---validity.cpython-36.pyc-f76f8c655af030a3 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---event.cpython-36.pyc-fa1c25f890d7ca81 +Relationship: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.monitor.internal-a00da8d5e98c46b3 OTHER SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.monitor.internal-1.0.81.jar-791dac2205f89200 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gdbm-libs-a01746ed3caeb940 CONTAINS SPDXRef-File-usr-share-licenses-gdbm-libs-COPYING-3da27d23b4dbf44b +Relationship: SPDXRef-Package-rpm-gdbm-libs-a01746ed3caeb940 CONTAINS SPDXRef-File-usr-lib64-libgdbm.so.6.0.0-5ff81c04ddf8f15b +Relationship: SPDXRef-Package-rpm-gdbm-libs-a01746ed3caeb940 CONTAINS SPDXRef-File-usr-lib64-libgdbm-compat.so.4.0.0-958e504d250f6ce7 +Relationship: SPDXRef-Package-rpm-gdbm-libs-a01746ed3caeb940 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.archive-a0bf24de56dfbcf3 OTHER SPDXRef-File-...com.ibm.ws.kernel.boot.archive-1.0.81.jar-88cc1e1259942caf +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.activation.2.1-a0e0435368e50251 OTHER SPDXRef-File-...io.openliberty.jakarta.activation.2.1-1.0.81.jar-7e4ddb9dfbc08d12 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.collector.manager-a105a18389d8c866 OTHER SPDXRef-File-...com.ibm.ws.collector.manager-1.0.81.jar-0dffa7576ee4c7e8 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 CONTAINS SPDXRef-File-...share-licenses-gnutls-COPYING.LESSER-50a7702dcd35cc6f +Relationship: SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 CONTAINS SPDXRef-File-usr-lib64-libgnutls.so.30.28.2-5bad2a698fea7652 +Relationship: SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 CONTAINS SPDXRef-File-usr-share-licenses-gnutls-LICENSE-93d7049a14bc07ea +Relationship: SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 CONTAINS SPDXRef-File-usr-lib64-.libgnutls.so.30.28.2.hmac-a636f094e6365f89 +Relationship: SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 CONTAINS SPDXRef-File-usr-share-licenses-gnutls-COPYING-ae8e616d685e7187 +Relationship: SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-bin-gsettings-013e656dcfcac800 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-bin-gio-03aae959a4a7002b +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-lib64-libgthread-2.0.so.0.5600.4-108c4a7209cc9898 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-lib64-libgio-2.0.so.0.5600.4-16accb16969b5172 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-bin-gio-querymodules-64-18d81c4c967d50c5 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-...completions-gapplication-41c7e8b4f1ae563b +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-bin-glib-compile-schemas-42ee867c7551575b +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-...bash-completion-completions-gdbus-51ecee8f3b4de042 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-lib64-libgobject-2.0.so.0.5600.4-6f35ae6103bcaf83 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-lib64-libgmodule-2.0.so.0.5600.4-783079b2953be1ca +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-...locale-en-GB-LC-MESSAGES-glib20.mo-87f6373b20ca3eec +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-bin-gdbus-8ab18f0efb7e01ff +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-...locale-en-CA-LC-MESSAGES-glib20.mo-9a8424607ee14d24 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-lib64-libglib-2.0.so.0.5600.4-e3821fcda866e7c6 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-...bash-completion-completions-gsettings-e9f9c8acbde8abd8 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-share-licenses-glib2-COPYING-f01954096e9d888e +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-bin-gapplication-fc933c4ddc7dc091 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.javaee.jcache.1.1.core.jakarta-a1abca5528994e35 OTHER SPDXRef-File-...com.ibm.websphere.javaee.jcache.1.1.core.jakarta-1.0.81.jar-7321e500575d8af3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.region-a2e99083c724d408 OTHER SPDXRef-File-...com.ibm.ws.org.eclipse.equinox.region-1.0.81.jar-c9e9c9d13566294f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.authorization-a3796fae4626fb20 OTHER SPDXRef-File-...com.ibm.ws.security.authorization-1.0.81.jar-4fa0f72a4d54b694 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...python3.6-site-packages-rpm--rpmb.so-03d081fa7402fb6c +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...site-packages-rpm-transaction.py-12644e8588f79c53 +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...transaction.cpython-36.opt-1.pyc-14d87bb59e07b5e7 +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...site-packages-rpm---init--.py-1e2144e761f14abe +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...--pycache---transaction.cpython-36.pyc-1faf9dc9e4650d0b +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...-rpm.cpython-36m-x86-64-linux-gnu.so-2e3be79a136d31d4 +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...-rpms.cpython-36m-x86-64-linux-gnu.so-396fdbcd74cdfcfa +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...python3.6-site-packages-rpm--rpms.so-4bf790f8500ff406 +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...rpm-4.14.3-py3.6.egg-info-8792eff33893e83c +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 OTHER SPDXRef-Package-python-rpm-a5c78e59349331b5 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b5c83f15c392af76 +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d6c0bb56f2bf99d7 +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...-rpmb.cpython-36m-x86-64-linux-gnu.so-ef1aa2ba5dbe1e2e +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...python3.6-site-packages-rpm--rpm.so-fb5c16a8dd3e1c0d +Relationship: SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 CONTAINS SPDXRef-File-usr-share-licenses-dmidecode-LICENSE-24d84dde8e782a20 +Relationship: SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 CONTAINS SPDXRef-File-usr-sbin-vpddecode-2825a01200dd5222 +Relationship: SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 CONTAINS SPDXRef-File-usr-sbin-ownership-3d7f9425a773e02b +Relationship: SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 CONTAINS SPDXRef-File-usr-sbin-biosdecode-a5c23a6ff80c8f15 +Relationship: SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 CONTAINS SPDXRef-File-usr-sbin-dmidecode-c9214f440da5bc4f +Relationship: SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.apache.commons.codec-a44140855947d054 OTHER SPDXRef-File-...io.openliberty.org.apache.commons.codec-1.15.81.jar-15b2c566b3b30f40 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-librhsm-a49d331240abf19b CONTAINS SPDXRef-File-usr-lib64-librhsm.so.0-6911efcc5dc2efdc +Relationship: SPDXRef-Package-rpm-librhsm-a49d331240abf19b OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-librhsm-a49d331240abf19b CONTAINS SPDXRef-File-usr-share-licenses-librhsm-COPYING-e20b4ca22f004cd1 +Relationship: SPDXRef-Package-rpm-glibc-minimal-langpack-a4d2f9b09ae44069 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libcomps-a4decf888fcc52e4 CONTAINS SPDXRef-File-usr-share-licenses-libcomps-COPYING-08b078b961c3e048 +Relationship: SPDXRef-Package-rpm-libcomps-a4decf888fcc52e4 CONTAINS SPDXRef-File-usr-lib64-libcomps.so.0-a4e1dd52875ac0fe +Relationship: SPDXRef-Package-rpm-libcomps-a4decf888fcc52e4 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dbus---pycache---types.cpython-36.pyc-0441077c0be5b569 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---glib.cpython-36.pyc-073bf10418187009 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache----compat.cpython-36.pyc-0a986677b22d0252 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus---init--.py-0cb76e8e6115c452 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...share-licenses-python3-dbus-COPYING-0d4ca85d14f4854a +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-exceptions.py-12d03fb4782bee36 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-connection.py-1a1dae64eb98bc88 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-1d0bd9b609d28c97 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2a726ff5eebc3cfe +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...server.cpython-36.opt-1.pyc-2ca93309455ffbbf +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...-expat-introspect-parser.cpython-36.opt-1.pyc-325431f79329a3f2 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-gi-service.py-475347b057b0c7e3 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dbus---pycache---bus.cpython-36.pyc-4958fd0d11cbc945 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...-expat-introspect-parser.cpython-36.pyc-53efe168e7a9bc85 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---glib.cpython-36.opt-1.pyc-5521343e22e8f000 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache----dbus.cpython-36.opt-1.pyc-557d39414ac22cf6 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...python3.6-site-packages-dbus-bus.py-5bde95bf22410c99 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dependency-links.txt-5e0d5e09fa6e94ad +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...SOURCES.txt-6302d665915fb284 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...gi-service.cpython-36.opt-1.pyc-647df989897a0362 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-lowlevel.py-6ff69df20019f4f9 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...PKG-INFO-7a7b9cef2a4515d9 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dbus---pycache----dbus.cpython-36.pyc-7e363825c85cebe4 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...lowlevel.cpython-36.opt-1.pyc-7f30c7fa04ce6795 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...python3.6-site-packages-dbus-glib.py-8136d2fcb1e41460 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...service.cpython-36.opt-1.pyc-847673b3ee7d6959 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus--compat.py-8da49a558aeeacbe +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-95e33392061c80b9 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages--dbus-bindings.so-9713811758c46231 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 OTHER SPDXRef-Package-python-dbus-python-9a2539d64666884c +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...python3.6-site-packages-dbus-server.py-9ada2482ffe7897a +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9dd8ab68ae021173 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages--dbus-glib-bindings.so-9eaf3ff26456fd27 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...proxies.cpython-36.opt-1.pyc-a00dae9dafe26e9c +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---connection.cpython-36.pyc-a5d48132499aef4d +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dbus--expat-introspect-parser.py-a7e059f8050b04db +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---bus.cpython-36.opt-1.pyc-ad1f9af472e35ebf +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---glib.cpython-36.opt-1.pyc-ad8366a3c1ea6681 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-af0116cde64da19f +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-decorators.py-af076c8ebcd08032 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...-compat.cpython-36.opt-1.pyc-b23e56ede00547aa +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-proxies.py-b5ea491d65f20dc8 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---types.cpython-36.opt-1.pyc-b7d621791737748f +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dbus---pycache---server.cpython-36.pyc-b847465e3d3c5142 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...python3.6-site-packages-dbus-types.py-bbdf441e88f4df12 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---lowlevel.cpython-36.pyc-c41da0382a704773 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---decorators.cpython-36.pyc-d6ef60a2f13845e7 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...python3.6-site-packages-dbus--dbus.py-d6f5077e0458390d +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---service.cpython-36.pyc-d9d55e0c06b8406a +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-de94f03f7d461a0e +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---proxies.cpython-36.pyc-e1ceb9bef3292147 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-service.py-e4813acf4686447f +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...top-level.txt-e58da4bfa855c077 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-mainloop-glib.py-eb2d0ab7041f3b56 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...connection.cpython-36.opt-1.pyc-f3afc782bf553906 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dbus---pycache---glib.cpython-36.pyc-f96efced44ce6b2a +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dbus-mainloop---init--.py-fa358622cf429120 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...decorators.cpython-36.opt-1.pyc-fade188fc6255d69 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---gi-service.cpython-36.pyc-ffc9287080b7b73e +Relationship: SPDXRef-Package-python-rpm-a5c78e59349331b5 OTHER SPDXRef-File-...rpm-4.14.3-py3.6.egg-info-8792eff33893e83c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.io.smallrye.config.jakarta-a6c64dde369a4bd1 OTHER SPDXRef-File-...io.openliberty.io.smallrye.config.jakarta-1.0.81.jar-03f846e4d48fbd7d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-jansson-a6e466f321d3c5ff CONTAINS SPDXRef-File-usr-lib64-libjansson.so.4.14.0-49b29d0e6f8499a0 +Relationship: SPDXRef-Package-rpm-jansson-a6e466f321d3c5ff CONTAINS SPDXRef-File-usr-share-doc-jansson-LICENSE-4ab711e8fe621d69 +Relationship: SPDXRef-Package-rpm-jansson-a6e466f321d3c5ff CONTAINS SPDXRef-File-usr-share-doc-jansson-CHANGES-9656507ea58788b5 +Relationship: SPDXRef-Package-rpm-jansson-a6e466f321d3c5ff OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-file-libs-a73849bc58ff0d0c CONTAINS SPDXRef-File-usr-share-licenses-file-libs-COPYING-3459d60d81a56cb7 +Relationship: SPDXRef-Package-rpm-file-libs-a73849bc58ff0d0c CONTAINS SPDXRef-File-usr-lib64-libmagic.so.1.0.0-5ebcf188c0e92ed7 +Relationship: SPDXRef-Package-rpm-file-libs-a73849bc58ff0d0c CONTAINS SPDXRef-File-usr-share-misc-magic-b76d9d9e31ebadce +Relationship: SPDXRef-Package-rpm-file-libs-a73849bc58ff0d0c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-file-libs-a73849bc58ff0d0c CONTAINS SPDXRef-File-usr-share-misc-magic.mgc-ea408c7b5912acaf +Relationship: SPDXRef-Package-rpm-audit-libs-a8759a9d0a3b60da CONTAINS SPDXRef-File-etc-libaudit.conf-0ef20fca5a22065c +Relationship: SPDXRef-Package-rpm-audit-libs-a8759a9d0a3b60da CONTAINS SPDXRef-File-usr-lib64-libauparse.so.0.0.0-1246382363eb489d +Relationship: SPDXRef-Package-rpm-audit-libs-a8759a9d0a3b60da CONTAINS SPDXRef-File-...share-licenses-audit-libs-lgpl-2.1.txt-6e91cec0e26f7fb6 +Relationship: SPDXRef-Package-rpm-audit-libs-a8759a9d0a3b60da OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-audit-libs-a8759a9d0a3b60da CONTAINS SPDXRef-File-usr-lib64-libaudit.so.1.0.0-fa101d079f1e5239 +Relationship: SPDXRef-Package-rpm-cryptsetup-libs-a97447baebc7eca3 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-cryptsetup.conf-2eed818b41d9a1c8 +Relationship: SPDXRef-Package-rpm-cryptsetup-libs-a97447baebc7eca3 CONTAINS SPDXRef-File-...share-licenses-cryptsetup-libs-COPYING-bec3a053183070e4 +Relationship: SPDXRef-Package-rpm-cryptsetup-libs-a97447baebc7eca3 CONTAINS SPDXRef-File-...licenses-cryptsetup-libs-COPYING.LGPL-c4ec8307d91dc10d +Relationship: SPDXRef-Package-rpm-cryptsetup-libs-a97447baebc7eca3 CONTAINS SPDXRef-File-usr-lib64-libcryptsetup.so.12.6.0-cb2e4894d41bc322 +Relationship: SPDXRef-Package-rpm-cryptsetup-libs-a97447baebc7eca3 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.jsonp.2.1-a9f126779846a343 OTHER SPDXRef-File-...io.openliberty.jakarta.jsonp.2.1-1.0.81.jar-6294411e0a5e34c9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.internal-aa29e6c851679007 OTHER SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.internal-1.0.81.jar-6434924c5b8d99fe +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.public.internal-ab489b83add53d04 OTHER SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.public.internal-1.0.81.jar-27702236041b1855 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-binarylogviewer-ad2bec3dc6b298dd OTHER SPDXRef-File-...wlp-bin-tools-ws-binarylogviewer.jar-6b8a1c0c8ae07228 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.javaee.jsonp.1.0-ad3879053f00036f OTHER SPDXRef-File-...com.ibm.websphere.javaee.jsonp.1.0-1.0.81.jar-e0ec2b7af27e6287 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.filter-ad8eaf70eb144d78 OTHER SPDXRef-File-...io.openliberty.security.authentication.internal.filter-1.0.81.jar-b7d60e1bce2dd3f4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.distributedMap-ade50b3b5247ec64 OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.distributedMap-2.0.81.jar-faf2e170c3ad3f4c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libzstd-ae3b0f6ebfec6dfc CONTAINS SPDXRef-File-usr-lib64-libzstd.so.1.4.4-0a800f0500000ff2 +Relationship: SPDXRef-Package-rpm-libzstd-ae3b0f6ebfec6dfc CONTAINS SPDXRef-File-usr-share-licenses-libzstd-LICENSE-37124f71f1346822 +Relationship: SPDXRef-Package-rpm-libzstd-ae3b0f6ebfec6dfc CONTAINS SPDXRef-File-usr-share-licenses-libzstd-COPYING-be00669b48fb5d12 +Relationship: SPDXRef-Package-rpm-libzstd-ae3b0f6ebfec6dfc OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.repository.resolver-ae97e246e90df2d3 OTHER SPDXRef-File-...com.ibm.ws.repository.resolver-1.0.81.jar-b178255111028459 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-productutil-af521fee7557a77b OTHER SPDXRef-File-...com.ibm.ws.product.utility-1.0.81.jar-61ccc7854aca503d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-...licenses-device-mapper-COPYING.LIB-37b2524242e455fe +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-...lib-udev-rules.d-95-dm-notify.rules-6d3596fbec794f95 +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-usr-lib-udev-rules.d-13-dm-disk.rules-80e9d9d6722a9dad +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-usr-sbin-dmfilemapd-9aa799f0659cde86 +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-usr-sbin-dmsetup-9bf778f24c5ba40e +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-...share-licenses-device-mapper-COPYING-a3d1ce96fc761366 +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-usr-sbin-blkdeactivate-aa86b3251a52a033 +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-usr-lib-udev-rules.d-10-dm.rules-ce438bd662f8eecf +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.cdi.internal.jakarta-b074d85e1d289f1c OTHER SPDXRef-File-...com.ibm.ws.cdi.internal.jakarta-1.0.81.jar-5154d278b0325d24 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta-b09eadc72583ddc7 OTHER SPDXRef-File-...com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta-1.0.81.jar-ecfd17b0ea10f69f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gdb-gdbserver-b09f80b040ee2d01 CONTAINS SPDXRef-File-usr-lib64-libinproctrace.so-3ea6d7eef0a84230 +Relationship: SPDXRef-Package-rpm-gdb-gdbserver-b09f80b040ee2d01 CONTAINS SPDXRef-File-usr-bin-gdbserver-8d21c3fb379aee6e +Relationship: SPDXRef-Package-rpm-gdb-gdbserver-b09f80b040ee2d01 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-vim-minimal-b0b67d2d41e3e7c7 CONTAINS SPDXRef-File-usr-bin-vi-1e293eaa12aef215 +Relationship: SPDXRef-Package-rpm-vim-minimal-b0b67d2d41e3e7c7 CONTAINS SPDXRef-File-etc-virc-5e8e0527a1b4ef7b +Relationship: SPDXRef-Package-rpm-vim-minimal-b0b67d2d41e3e7c7 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader-b0f068fb82bfd1a3 OTHER SPDXRef-File-...com.ibm.ws.security.audit.reader-1.0.81.jar-30697d64d9c46b5e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.io.netty-b10b2643bdb5f826 OTHER SPDXRef-File-...lib-io.openliberty.io.netty-1.0.81.jar-24b54418e6323c7b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 OTHER SPDXRef-Package-python-PyGObject-026a55989515496e +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi-repository---init--.py-08f744cdc82957ba +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi---pycache-----init--.cpython-36.pyc-0d3930eb6551b17d +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-ossighelper.cpython-36.opt-1.pyc-1419cc6907be8857 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1d24790747007727 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...pygobject-3.28.3-py3.6.egg-info-1d5f71a5d0b43e6f +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Gdk.cpython-36.pyc-24a19287eb690a8f +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---pygtkcompat.cpython-36.pyc-2700436d18aa43c5 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...module.cpython-36.opt-1.pyc-30252ce4bf0dbd4d +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...python3.6-site-packages-gi-module.py-30935a7046ec1e66 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Gtk.cpython-36.opt-1.pyc-32e1b7896cb81752 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides-Gtk.py-38260fa4703685a0 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...pygtkcompat.cpython-36.opt-1.pyc-392f8a72f8d62552 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi---pycache----option.cpython-36.pyc-3a4c893b11baa36a +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---types.cpython-36.opt-1.pyc-3c64a70b08cf5c2d +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...python3.6-site-packages-gi--error.py-3f7bf8049452598b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-option.cpython-36.opt-1.pyc-44c36c23b2f13e67 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...GIMarshallingTests.cpython-36.pyc-45eabaa5ad5d950b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi---pycache----error.cpython-36.pyc-48d55611062ec6f5 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides-Pango.py-4a802b75426e372c +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-502495156c470092 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---pygtkcompat.cpython-36.pyc-506dd9bdd5b7173d +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi--signalhelper.py-53b3d080702ae2f0 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...keysyms.cpython-36.opt-1.pyc-54a79976851c5c46 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-pygtkcompat.py-5bcce6bcaa91f4f5 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...python3.6-site-packages-gi-types.py-5fdfd2376af5d92e +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-pygtkcompat---init--.py-64c4475f98aded71 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-error.cpython-36.opt-1.pyc-656ac6a3f5e64ada +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Gio.cpython-36.pyc-6f76b19384748f68 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...pygtkcompat.cpython-36.opt-1.pyc-701e4522cc14990c +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache----constants.cpython-36.pyc-71825a1ff0e7861a +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides-GLib.py-719484b8576568ef +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---GLib.cpython-36.opt-1.pyc-7204102418c03aec +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi--propertyhelper.py-72897f3152673167 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi--ossighelper.py-72ab285a8e0a5070 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---docstring.cpython-36.pyc-76342b2280062e7a +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides---init--.py-7bee3df00f17b653 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi--constants.py-8226255dca65c16b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...GIMarshallingTests.cpython-36.opt-1.pyc-852b08ded866e621 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...docstring.cpython-36.opt-1.pyc-877891c9edd45e50 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-constants.cpython-36.opt-1.pyc-87c88c22b0ea831b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides-Gdk.py-8979ff1a446a8872 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-8a946590ec419f3b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Pango.cpython-36.pyc-8c2be6045c695ceb +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Gdk.cpython-36.opt-1.pyc-8dbafcabb1605bfb +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides-Gio.py-9182aa0368982269 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi-overrides-GIMarshallingTests.py-9325bca5bca008f0 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-95490423f0e8362e +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...python3.6-site-packages-gi--option.py-9648d54b9889e245 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...importer.cpython-36.opt-1.pyc-96a74b3602a48def +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-991a943cc552a54c +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Gio.cpython-36.opt-1.pyc-9a36088d0e5345bb +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi--gi.cpython-36m-x86-64-linux-gnu.so-a3d3e88ec83b7e96 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a48bc122290710a1 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---keysyms.cpython-36.pyc-a6b6fce7acfc37f0 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...python3.6-site-packages-gi-importer.py-aca621f2980e97cc +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-propertyhelper.cpython-36.pyc-bc86d05c758d0d0b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-bfa0723d249dc339 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi---pycache---module.cpython-36.pyc-c014e57b0363e3a2 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...generictreemodel.cpython-36.pyc-c1289a1e19b8803e +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---GLib.cpython-36.pyc-c32af2c3793e4da3 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-ossighelper.cpython-36.pyc-c62121e22cac93a0 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi---pycache---importer.cpython-36.pyc-c7798c3b620348e6 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Gtk.cpython-36.pyc-c872bba1932daff5 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Pango.cpython-36.opt-1.pyc-c89cf57abf393eb5 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi---pycache---types.cpython-36.pyc-cb2d375bd766f51a +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides-GObject.py-cc08ac9cf7589868 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---GObject.cpython-36.pyc-cc3cc2f678fd384b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...licenses-python3-gobject-base-COPYING-cee0c632d76d1b00 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides-keysyms.py-cf92e44a71621f62 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-docstring.py-d18938519e168eec +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...GObject.cpython-36.opt-1.pyc-d3bc2519aaefab29 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...generictreemodel.cpython-36.opt-1.pyc-d769729b234ec73f +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...python3.6-site-packages-gi---init--.py-da6015be81246769 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...pygtkcompat-generictreemodel.py-eb709269a8cf9cbf +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-signalhelper.cpython-36.opt-1.pyc-f08dc062e0adcf7c +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-propertyhelper.cpython-36.opt-1.pyc-f629911f346aad0b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...pygtkcompat-pygtkcompat.py-f6e50818fe4e2437 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-signalhelper.cpython-36.pyc-f83ecdf22f060f92 +Relationship: SPDXRef-Package-python-iniparse-b1ac8ab06cf60d46 OTHER SPDXRef-File-...iniparse-0.4-py3.6.egg-info-PKG-INFO-5f333130ccbc4458 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.app.manager-b2135968a1d4f442 OTHER SPDXRef-File-...lib-com.ibm.ws.app.manager-1.1.81.jar-a2c6abb966c1213b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 CONTAINS SPDXRef-File-usr-lib64-libgpgme.so.11.22.1-9288129581acc3da +Relationship: SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 CONTAINS SPDXRef-File-...share-licenses-gpgme-COPYING.LESSER-aee333a719c63551 +Relationship: SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 CONTAINS SPDXRef-File-usr-share-licenses-gpgme-COPYING-c6143780d3b875f7 +Relationship: SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 CONTAINS SPDXRef-File-usr-bin-gpgme-json-d26572c526407a05 +Relationship: SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 CONTAINS SPDXRef-File-usr-share-licenses-gpgme-LICENSES-e53f45b6f8796abf +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.registry.basic-b27fa9bc88ae39a8 OTHER SPDXRef-File-...com.ibm.ws.security.registry.basic-1.0.81.jar-55db95d181ccd6ac +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-productutil-b3b1a307ad9a854d OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-productutil.jar-ed699c86ff9a98ec +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.repository.liberty-b3fcdb956d882ddd OTHER SPDXRef-File-...com.ibm.ws.repository.liberty-1.0.81.jar-caae228d9c07ff34 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.event-b4eae56772edbbe1 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.event-1.0.81.jar-d83d5f46cae30c59 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libssh-config-b52f1724c9af9daa CONTAINS SPDXRef-File-etc-libssh-libssh-client.config-31e32e16fdea192f +Relationship: SPDXRef-Package-rpm-libssh-config-b52f1724c9af9daa OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libssh-config-b52f1724c9af9daa CONTAINS SPDXRef-File-etc-libssh-libssh-server.config-f97a5eb4e503b165 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-launch-b56eff31af2b3397 OTHER SPDXRef-File-opt-ol-wlp-lib-ws-launch.jar-d46337f79f64e601 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.org.reactivestreams.reactive-streams.1.0-b58b9bc35a4e1a74 OTHER SPDXRef-File-...com.ibm.websphere.org.reactivestreams.reactive-streams.1.0-1.1.81.jar-bdb04312bd1a7d12 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-jrt-fs-b5a4068828245f9c OTHER SPDXRef-File-opt-java-openjdk-lib-jrt-fs.jar-096fcaf7da0ab64c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-systemd-pam-b5bc31dd627a1038 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-systemd-pam-b5bc31dd627a1038 CONTAINS SPDXRef-File-usr-lib64-security-pam-systemd.so-fb867478ee7279dd +Relationship: SPDXRef-Package-java-archive-io.openliberty.transaction.internal.cdi20.jakarta-b5fc44809a53b473 OTHER SPDXRef-File-...io.openliberty.transaction.internal.cdi20.jakarta-1.0.81.jar-5ec26bbd6f6c6c6b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.annotation.2.1-b6edbcb5e9053be2 OTHER SPDXRef-File-...io.openliberty.jakarta.annotation.2.1-1.0.81.jar-29c86f9b5c7b30e0 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libmnl-b714cde5e9c0a3f9 CONTAINS SPDXRef-File-usr-share-licenses-libmnl-COPYING-0567d87d9293d094 +Relationship: SPDXRef-Package-rpm-libmnl-b714cde5e9c0a3f9 CONTAINS SPDXRef-File-usr-share-doc-libmnl-README-3613fb6e9971cf98 +Relationship: SPDXRef-Package-rpm-libmnl-b714cde5e9c0a3f9 CONTAINS SPDXRef-File-usr-lib64-libmnl.so.0.2.0-3ab98c003875068a +Relationship: SPDXRef-Package-rpm-libmnl-b714cde5e9c0a3f9 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact-b7b24dc61fcbabde OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.artifact-1.0.81.jar-a142ab488a8d452b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.module-b83da2c1a8fe06d1 OTHER SPDXRef-File-...com.ibm.ws.app.manager.module-1.0.81.jar-939b6904aa1353b3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.felix.scr-b877b2749da70824 OTHER SPDXRef-File-...com.ibm.ws.org.apache.felix.scr-1.0.81.jar-60f3a296227d451a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib-udev-rules.d-60-tpm-udev.rules-162951a761239d8e +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib64-libtss2-tcti-device.so.0.0.0-1ae6e1f7602c626a +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib64-libtss2-mu.so.0.0.0-1d34ae6d4d2bb35c +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib64-libtss2-rc.so.0.0.0-3ab17b6f5e1d10a5 +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib64-libtss2-sys.so.0.0.0-4f6ad189b060b89b +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib64-libtss2-tcti-mssim.so.0.0.0-6c66315b7971aeb0 +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib64-libtss2-tctildr.so.0.0.0-c19c62089caa5fca +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib64-libtss2-esys.so.0.0.0-e67737a6033c3746 +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-share-licenses-tpm2-tss-LICENSE-ff39a3bb7f481309 +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d OTHER SPDXRef-Package-python-libcomps-08b412214951d9e5 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...dependency-links.txt-211bdaaad35cd8be +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2710be33ee8a249b +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4d95708de22d0f53 +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...top-level.txt-551e8cb471cc247b +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...site-packages-libcomps---init--.py-8cf67f3548dd05ea +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...PKG-INFO-c60bef20b2e47cf0 +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...SOURCES.txt-dfeb7dc8a22e77be +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...site-packages-libcomps--libpycomps.so-e9eed799c4e41c3b +Relationship: SPDXRef-Package-java-archive-io.openliberty.restfulWS.mpMetrics.filter-b921929bb8e9c339 OTHER SPDXRef-File-...io.openliberty.restfulWS.mpMetrics.filter-1.0.81.jar-7d43960d8a09e9aa +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-langpacks-en-b921e0dabe7fe84e CONTAINS SPDXRef-File-...org.fedoraproject.LangPack-en.metainfo.xml-bf9a80417c82a0ba +Relationship: SPDXRef-Package-rpm-langpacks-en-b921e0dabe7fe84e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-yum-b9a4eb0f7c61e467 CONTAINS SPDXRef-File-etc-dnf-protected.d-yum.conf-0187943b2e5f307a +Relationship: SPDXRef-Package-rpm-yum-b9a4eb0f7c61e467 CONTAINS SPDXRef-File-usr-bin-dnf-3-16175176c3acd9d0 +Relationship: SPDXRef-Package-rpm-yum-b9a4eb0f7c61e467 CONTAINS SPDXRef-File-etc-dnf-dnf.conf-5415cd13736cacdc +Relationship: SPDXRef-Package-rpm-yum-b9a4eb0f7c61e467 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.injection.jakarta-b9aa8a8ead0ffdfa OTHER SPDXRef-File-...com.ibm.ws.injection.jakarta-1.0.81.jar-64310fabe5169329 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.classloading.configuration-bbede9faa7a4ef54 OTHER SPDXRef-File-...com.ibm.ws.classloading.configuration-1.0.81.jar-43220197fe5d6cd2 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.http.plugin.merge-bc7d4d738b60c216 OTHER SPDXRef-File-...com.ibm.ws.http.plugin.merge-1.0.81.jar-753d1d333a39618f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-xfixes-4.0.typelib-01f88093deb9ae8c +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-DBus-1.0.typelib-1bebea4cb0e61bc4 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-GModule-2.0.typelib-28fe89c5d76b0fda +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-libxml2-2.0.typelib-59280c0eb5a8dd2b +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-xrandr-1.3.typelib-5d4dc0866ec20a77 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-cairo-1.0.typelib-61836658d0745006 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...lib64-girepository-1.0-GL-1.0.typelib-646a52d9b53ea1ed +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...lib64-girepository-1.0-xft-2.0.typelib-75d02293523d704d +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...lib64-girepository-1.0-Gio-2.0.typelib-79adba79459aac24 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-freetype2-2.0.typelib-7e415f1a5f78e39f +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...GIRepository-2.0.typelib-8a8f617a2477a505 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...licenses-gobject-introspection-COPYING-9c3fb9c489228424 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-xlib-2.0.typelib-a5157e3576a31a85 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-GObject-2.0.typelib-a5cb41ac71e52c68 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-DBusGLib-1.0.typelib-b6daa90daf0418fe +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-usr-lib64-libgirepository-1.0.so.1.0.0-bcb171dd709b6ebe +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...fontconfig-2.0.typelib-c51918866a709546 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-GLib-2.0.typelib-cdfadcac60999734 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-win32-1.0.typelib-ff08a8ba9ffd2b79 +Relationship: SPDXRef-Package-rpm-libcurl-be0041c760e1b43f CONTAINS SPDXRef-File-usr-share-licenses-libcurl-COPYING-08a1d1a91d48c03d +Relationship: SPDXRef-Package-rpm-libcurl-be0041c760e1b43f OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libcurl-be0041c760e1b43f CONTAINS SPDXRef-File-usr-lib64-libcurl.so.4.5.0-f6319e635e085bad +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.server.ee10-be66d3c87069f1f6 OTHER SPDXRef-File-...io.openliberty.org.jboss.resteasy.server.ee10-1.0.81.jar-2f0c2fc0af19d358 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.slf4j.api-bf59116b0f585960 OTHER SPDXRef-File-...com.ibm.ws.org.slf4j.api-1.0.81.jar-892b65e425346a86 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd-bf6dfa85944c5918 OTHER SPDXRef-File-...lib-com.ibm.ws.javaee.dd-1.0.81.jar-d640a9ed9d369834 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-column-0151eb4ffb2838fc +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-namei-02a28998b737030d +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-swapon-033ac11209c8080f +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-nologin-03ac757b944026bd +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-lscpu-03f0c0b2da6f97c0 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-pivot-root-044aa0992967cad0 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-rtcwake-0572c707bcf108ce +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...licenses-util-linux-COPYING.BSD-3-060a755da54e559d +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-rename-070abff6a1e619d0 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-setterm-08063f4ff4442c92 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-kill-0a6dce09e397dd4a +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-cal-0ba8029737b4bc05 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-fsfreeze-0f58d1dfdfbeb412 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-dmesg-0f7031e436f0168f +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-pivot-root-0f7971a159b75136 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-colcrt-0fb8b96448b70908 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-ldattach-107697624a4be73c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-agetty-112cebe4e1dc89e5 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-wall-17413ae09c697fde +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-findfs-181697daf2d23e54 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-wipefs-197a4168542157a4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-swapon-1ad224cfca362ab1 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-isosize-1c7f906bf5efb946 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-colrm-1d310e1701246d60 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-script-1e8d831fdaaf366a +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-mkswap-1efa1a7a07e87a21 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-renice-1fae36cba99a6c69 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-flock-20de0265d9ee6bec +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-blkzone-259b604f5327a25b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-uuidparse-25cfadc72252baa2 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-etc-pam.d-su-l-26fe759d840dee6a +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-lib-udev-rules.d-60-raw.rules-27021ff96152c0ee +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-cal-2852b38da693aa65 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-taskset-28be5ff07210a8b8 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-lsblk-28ca6dc9d4da6c85 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-rev-29f9c01eab75843a +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-dmesg-2b377c93f58288fd +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-hexdump-2f1932acbdc2a337 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-etc-pam.d-runuser-l-2fa9493d98dc27d7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-setpriv-30958e193354fdde +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-su-30fbc07000cf1543 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-ipcs-3288c42649695af9 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-isosize-32d67f523f7cb5a9 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-whereis-340b0a956199b919 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-more-346b462a8f0c914d +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...completions-scriptreplay-3495569413d6d469 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-prlimit-3553163f1e1cf4b7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-lslocks-36aa5a43e76c589b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-col-3982383c75bdbb11 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-fsck.minix-3a841f1e7aa1bdc1 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-mkfs-3c08e35f2aa818b2 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-cfdisk-3db23fe184ad3cf4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-utmpdump-3dbfd5ebf103b777 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-fsck-40c85f07e8bfae86 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-addpart-42a73d91dcf5a53f +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-rename-43392add584bbfd4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-setterm-4412aa0fef05e2b5 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...completions-fsck.cramfs-481da53eaf8d20d2 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-losetup-49aac265a149e3ab +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-findfs-4b2624fafeccacd1 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-chrt-4bf45dee53cf37a1 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-swapoff-4bf8755ffc071e6b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-etc-adjtime-4ed0ab6e822df583 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-last-4fd8de0c6f5e6405 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-mount-50b059aaba1de796 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-fdisk-52f8cb702e31efd8 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-renice-54b02297e6a2456a +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-mkfs.minix-56be8d5c05fe13bb +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-more-5780c124c1d6624a +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-ipcs-57b3a454ab9f1a0a +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-swaplabel-5868135abd7ab36d +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-uuidgen-591b2becb413549c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-unshare-5a0461df5bc958fb +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-last-5a98fd9f5363dfed +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-umount-5aea5226ee5fd5d8 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-lsmem-5d2f5c55111f293e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-chcpu-5d45f654f0278ad8 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-sfdisk-5e02da231537b556 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-mcookie-5ec66cca7c95f4f9 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-blkzone-5f33c245bbb53a4d +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-rev-5f5b1442375b7f83 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-ldattach-60836ff1c9ea17a7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-setsid-609b24b70007e15e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-mountpoint-60d73a132d70817f +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-ipcrm-60e25949684d020b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-partx-6105797b34696fd6 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-fsck-62bda2762ffcf742 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...completions-readprofile-647a5e93a4a6d1ed +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-blkid-6487755e02cf2a6c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-uuidgen-66064aac965af476 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-whereis-668c4ccd9025d12f +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-mesg-66a9d3a557f8fc34 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-fsck.cramfs-6735ebd2d754f820 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-fdisk-6b2b3ff70df7fcbc +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-fsfreeze-6b54a400cffd3794 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-write-6cd2fe28886811a4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-lib-systemd-system-fstrim.timer-6ece0c810adc1c2b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-sulogin-6ee94c4694ebcb0d +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-column-6f562d86e906c4b3 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-addpart-6f6555e8dfd27c6b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-etc-pam.d-runuser-6f6b006da29629cd +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-scriptreplay-70c3702a776423c4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-nsenter-74e34397f2efed8c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-eject-7547d67de4f69dc4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-setpriv-7600f093c229e3ce +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-chrt-77459fde93cc87b5 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-taskset-784e8106bef7db6b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-hwclock-7851780290f5206b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-partx-78868d9be079f88e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-etc-pam.d-remote-7b5e7d32cf09e008 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-swaplabel-7c448e00f4028724 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-fincore-7ee9158014cd30f0 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-zramctl-8199e7439b4ac4d9 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-mcookie-81f2ffbfa2fc0d45 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...licenses-util-linux-COPYING.GPLv2-823983abf08c357f +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-blkdiscard-83dfc2de62395006 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-rtcwake-840b523e87c03fc5 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-lsns-859c0e31fe4d5956 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-rfkill-859d3540564702e9 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-fstrim-873db4bbfae54631 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-chmem-8ca3d461256c79ca +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-setarch-9067e5b8f29dca3e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-fallocate-915daa07c316065f +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-mkfs-91722e570b578747 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-resizepart-940d83463e0238af +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-chmem-947d40733436a708 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-getopt-94d68091bfec53de +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-lslogins-977d6948ffd5d218 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-resizepart-98bd78f17c3b198e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-ionice-98f52df29925a2ae +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-flock-99181d8d187ab597 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-ipcmk-995355ef666d81e8 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-lsipc-9b5bbd32ae4bf16c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-ipcrm-9bd3109355f40501 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-swapoff-9c9926344b7ffeef +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-losetup-9cccb7602611be56 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-raw-9d7530a13080c3cb +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-ctrlaltdel-9d9780b99ab2944e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-ul-9e6d9734e9732b42 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-eject-9f6eda36d568d6f2 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-sfdisk-a015a59ee7fe55c3 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-namei-a03176721663d4ef +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-unshare-a1915de01860ac22 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-findmnt-a3357bf98e79859c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-login-a5820c55a0acf341 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-ipcmk-a599f9c7867d5013 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-fstrim-a5cb1dd627e53633 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-wall-a5fb1370842c469d +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-lsblk-a613fbb0fb1b75f0 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-hwclock-aa928fed8ce1861e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-fallocate-ade54647f9a37905 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-delpart-af8f75195c9a0fb3 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-logger-b0b08627102a01b7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...licenses-util-linux-COPYING.LGPLv2.1-b12dab56f2c4b278 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-setarch-b2ea50b45a902402 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-ionice-b5f1240d76066374 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-fsck.minix-b69872cb9dd036c1 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-look-b698a3ef25836dc7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-blockdev-b6e3a4ad205ca263 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-mesg-b6eed2a89ed498a1 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-fdformat-b74153f64fadf3f7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-hexdump-b8196b81f13837c4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-lscpu-bb3ae1fbb8b7e6c7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-su-bc68697fda446d5b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-licenses-util-linux-COPYING.ISC-bcec15e77221b3df +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-mkswap-bfe51e7cf5130a72 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-lsipc-c5b3b8743182b91e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-prlimit-c61c618011e56de7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-cfdisk-c65d3eeb78b83463 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...completions-mkfs.cramfs-c67ce8f72a6a0142 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-ctrlaltdel-c749c3e507136791 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-licenses-util-linux-COPYING.UCB-c80a10fac29eb44e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-etc-pam.d-su-c8a5c816f064afb4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-colcrt-c8ea70a4dc80234c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-wdctl-c902730044ac1a2c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-runuser-c9650eaaf887fad3 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-fdformat-c9e5aca7ff3c7924 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-delpart-cb46c71515f19452 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-colrm-cb8608a95c9a66b5 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-fincore-d024d61a48b1bd97 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-mkfs.cramfs-d1897f06e8b71dd4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-blockdev-d24e432f3d090856 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-blkdiscard-d4b91db236adf9ca +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-look-d7d4ff8bc3a7d3b6 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-lib-systemd-system-fstrim.service-d7e1e208fccf0fc5 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-getopt-da8dba53247ee783 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-lslocks-dce2decadcc007be +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-lsmem-de6c82a5fde8dcda +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-ul-df5d691e77bb9704 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-mkfs.minix-e0ea5186eb5d5eae +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-uuidparse-e16a061d1a02f583 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-lslogins-e5324a207a67117e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-setsid-e67bb29eb0634edc +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-readprofile-e8693201d892cc2e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-wipefs-e887fb34d8808a47 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-switch-root-ea31943e7e27398c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-wdctl-eac394b4c5871511 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-zramctl-eb69510bf1db58d3 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-lsns-ebdd6e63a5a5f598 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-col-ef8c3e760c0de377 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-rfkill-effcc8364debbad7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-utmpdump-f161bb18cb40c3de +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-raw-f27956c90fc3c92b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-blkid-f2a427905b520cff +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-etc-pam.d-login-f31db323edd73e9e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-mountpoint-f335290dafe737ae +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-write-f61682145fda874c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-script-f792c5f19f362d42 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-findmnt-f794499269e45fda +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-nsenter-fcc1ee9365e772ef +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-chcpu-fd423957f82b59f6 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-logger-fe9aacca01b178d2 +Relationship: SPDXRef-Package-java-archive-io.openliberty.netty.internal-bf9bec02f2693337 OTHER SPDXRef-File-...io.openliberty.netty.internal-1.0.81.jar-137a843309eb2c1d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.security.impl-c0196b7635519e5b OTHER SPDXRef-File-...com.ibm.websphere.security.impl-1.0.81.jar-b125d98c471afcf2 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-zlib-c03c984064097e8d CONTAINS SPDXRef-File-usr-share-licenses-zlib-README-40d4951b973bd41a +Relationship: SPDXRef-Package-rpm-zlib-c03c984064097e8d CONTAINS SPDXRef-File-usr-lib64-libz.so.1.2.11-51932d6e34adcaff +Relationship: SPDXRef-Package-rpm-zlib-c03c984064097e8d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.component.annotations-c04b9599d1184dc9 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.component.annotations-1.0.81.jar-9ab69e6b3654a243 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-device-mapper-libs-c05ce4d7f437decf CONTAINS SPDXRef-File-...licenses-device-mapper-libs-COPYING-c5e5155c78392c9a +Relationship: SPDXRef-Package-rpm-device-mapper-libs-c05ce4d7f437decf OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-device-mapper-libs-c05ce4d7f437decf CONTAINS SPDXRef-File-...device-mapper-libs-COPYING.LIB-e49e596eeda4f478 +Relationship: SPDXRef-Package-rpm-device-mapper-libs-c05ce4d7f437decf CONTAINS SPDXRef-File-usr-lib64-libdevmapper.so.1.02-ee27af79a82201e3 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility.webserverPluginutil-c06c8f49c4752a37 OTHER SPDXRef-File-...bin-tools-ws-webserverPluginutil.jar-50f2a2192da7580b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 CONTAINS SPDXRef-File-...share-licenses-libgcc-COPYING.RUNTIME-0815da2e94d3741e +Relationship: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 CONTAINS SPDXRef-File-usr-share-licenses-libgcc-COPYING-2254c6e368622d0a +Relationship: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 CONTAINS SPDXRef-File-usr-share-licenses-libgcc-COPYING3.LIB-367fef6219975bdc +Relationship: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 CONTAINS SPDXRef-File-usr-share-licenses-libgcc-COPYING.LIB-6acc8769ccebe8ce +Relationship: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 CONTAINS SPDXRef-File-usr-share-licenses-libgcc-COPYING3-6fe322cd37f28f60 +Relationship: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 CONTAINS SPDXRef-File-usr-lib64-libgcc-s-8-20210514.so.1-c14e75cb80e20c1a +Relationship: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.rest.handler.jakarta-c0f39d8ab2cc8940 OTHER SPDXRef-File-...com.ibm.ws.rest.handler.jakarta-1.0.81.jar-32c50a3816bc7463 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.runtime.update-c1298107964cccd5 OTHER SPDXRef-File-...com.ibm.ws.runtime.update-1.0.81.jar-42bccd5d4a8e2d5d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.interfaces-c16434037d8f3889 OTHER SPDXRef-File-...io.openliberty.cdi.4.0.interfaces-1.0.81.jar-6393cff2f998def7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.recoverylog-c1e8dd8d006d5bfd OTHER SPDXRef-File-...lib-com.ibm.ws.recoverylog-1.0.81.jar-95e343ce57f526a2 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-server-c24a2dabb7438137 OTHER SPDXRef-File-opt-ol-wlp-bin-tools-ws-server.jar-9a239fa39b4fd6f4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests---init--.py-103baf4281f1f7f2 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---structures.cpython-36.pyc-19dc6001b089a5e6 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---adapters.cpython-36.pyc-1fa52738902ac8e1 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-structures.py-23542046f2e11dd9 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---help.cpython-36.opt-1.pyc-24d38609e806d60a +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-help.py-26056549dfa9763f +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...status-codes.cpython-36.pyc-3042e71b05ea2857 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-api.py-334b45d5a91d61eb +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---certs.cpython-36.pyc-399bcbb9077a8469 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---packages.cpython-36.pyc-3bb203cf0b154965 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---models.cpython-36.pyc-3c7cc8cd3e3aa352 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...dependency-links.txt-3e6e46be29490151 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-hooks.py-43393de073c9ef9c +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...-internal-utils.cpython-36.pyc-49691aa0896fd585 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-497e624491b24cf9 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...licenses-python3-requests-LICENSE-4e730620a8625e87 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-51e0d059c88d6d78 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...not-zip-safe-555c50a9a914ca66 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---api.cpython-36.pyc-5e553732bf78bc37 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-621f91c07a4c871b +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-sessions.py-691a8050eb317b1f +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 OTHER SPDXRef-Package-python-requests-69c379e96a25693b +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---api.cpython-36.opt-1.pyc-6c5b9a3788bfa65d +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-packages.py-720121ab3860f581 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---sessions.cpython-36.pyc-7bab152c5c102c46 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...PKG-INFO-800441630b142ce6 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---certs.cpython-36.opt-1.pyc-8350081436c0e7b0 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--version--.cpython-36.opt-1.pyc-8485a437f300d785 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-certs.py-861f957628c434ea +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-compat.py-8a62885b205eb10b +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...requires.txt-8daaa7e7679cdbe4 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...cookies.cpython-36.opt-1.pyc-976dc8ee05ad13da +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-9873cb24c1403865 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests---version--.py-9954b72fc7e766a3 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---auth.cpython-36.opt-1.pyc-99b8974258be9cf7 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...sessions.cpython-36.opt-1.pyc-9d02720bc1b62bb0 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---hooks.cpython-36.opt-1.pyc-9d9ff7c6ed1d34dc +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...status-codes.cpython-36.opt-1.pyc-acffa332919158ef +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-bf4b6c8a3f5f32cc +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-auth.py-c20b0c9cf54c7928 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...adapters.cpython-36.opt-1.pyc-c26e1a235f4df88d +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-models.py-c296cb05da1d9a00 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...top-level.txt-c8655973f7893a80 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---hooks.cpython-36.pyc-cc1595cd024f0dd0 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---help.cpython-36.pyc-cd48581c97bc1c2d +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...-internal-utils.cpython-36.opt-1.pyc-ce164cc4431b8b65 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...compat.cpython-36.opt-1.pyc-d0038fd788b945d8 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...SOURCES.txt-d0ab41071d72ef91 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-utils.py-d437bf78b7df01bb +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-adapters.py-d5254ff5f86f0ce3 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...structures.cpython-36.opt-1.pyc-d7b049ac3e8c7530 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...requests--internal-utils.py-dc2259ba1e4c9127 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-status-codes.py-dd530938f5685da7 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---compat.cpython-36.pyc-ddc9819200a30bba +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.pyc-deb553c0dfe4a890 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache-----version--.cpython-36.pyc-e2957adc2add610e +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---auth.cpython-36.pyc-e360426b7623b852 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-exceptions.py-eb76c3800314c510 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-cookies.py-ed6ba72091c2026f +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...models.cpython-36.opt-1.pyc-f0663522e62f8e15 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...packages.cpython-36.opt-1.pyc-f37406686bedda01 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---cookies.cpython-36.pyc-f971f81d5553c456 +Relationship: SPDXRef-Package-python-syspurpose-c2c79d0712654121 OTHER SPDXRef-File-...PKG-INFO-26f5dca0b03dd114 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel.binarylogviewer-c2f211fa6a49c56b OTHER SPDXRef-File-...wlp-bin-tools-ws-binarylogviewer.jar-6b8a1c0c8ae07228 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-03d3fe8c77f50fd3 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-plugins-system-upgrade.py-054025bc184fdbe9 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---reposync.cpython-36.pyc-08f7dd0a7125b30b +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...reposync.cpython-36.opt-1.pyc-117ff75138b4ed82 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-repograph.py-168c2db14e9d296c +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...changelog.cpython-36.opt-1.pyc-18f74be3a57809ac +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...system-dnf-system-upgrade.service-1edad3b5be6116a8 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---repodiff.cpython-36.pyc-27afce78dfe699a2 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...system-upgrade.cpython-36.pyc-2b961109804441f4 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...repodiff.cpython-36.opt-1.pyc-33bf606073528454 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-plugins-repomanage.py-34d4d3750138041c +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...generate-completion-cache.cpython-36.pyc-359cf7d5666d362d +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...needs-restarting.cpython-36.pyc-374d0b7aa5503484 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---changelog.cpython-36.pyc-3ea284e5df71390d +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---copr.cpython-36.pyc-3edd7203c15dffda +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-4ca67d14e7e85c91 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-download.py-54a8e2b04d83cfe1 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-plugins-repoclosure.py-5602da6012595251 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-copr.py-56ff46dbfd2e5613 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnfpluginscore---init--.py-5cab0afd5e2854ed +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...debuginfo-install.cpython-36.opt-1.pyc-5cb963fc78abd3ff +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...needs-restarting.cpython-36.opt-1.pyc-662c9929ad56c525 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...download.cpython-36.opt-1.pyc-667d5a89969f538f +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-changelog.py-69709b3c978e7ba7 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---repograph.cpython-36.pyc-7432fd592f2081e7 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...groups-manager.cpython-36.opt-1.pyc-7ea036bfd84efa7d +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...python3-dnf-plugins-core-COPYING-7ff4007a367a4aa4 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...repomanage.cpython-36.opt-1.pyc-809824dd7d330a30 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-builddep.py-8182d904fabf2296 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-debug.py-82c0252439103f56 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---builddep.cpython-36.pyc-8597d5681bf439ba +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---debug.cpython-36.opt-1.pyc-885d8924c0914807 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...repoclosure.cpython-36.opt-1.pyc-891a8434ba383360 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-var-cache-dnf-packages.db-8df50c35e25349ef +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-repodiff.py-8fad5bd22d8f5bb0 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---debug.cpython-36.pyc-9027acb34e40b097 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-reposync.py-a2b94040bb2fa621 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-plugins-config-manager.py-b71e8709bb6f931c +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...debuginfo-install.cpython-36.pyc-c08deeaa98d5747a +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...groups-manager.cpython-36.pyc-c1b750efef5027b0 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-plugins-debuginfo-install.py-c380efe423dcaac0 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-plugins-needs-restarting.py-c3e7b3fc5be2ec9d +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---copr.cpython-36.opt-1.pyc-c6e554301508f73c +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---repomanage.cpython-36.pyc-cb3c8650a3731d28 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-etc-dnf-plugins-copr.conf-d2a260212379547c +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...config-manager.cpython-36.pyc-db9cb27fd80f09e2 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...builddep.cpython-36.opt-1.pyc-e394aca5ebc82cbb +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...generate-completion-cache.py-e9640ecc53ef1715 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...system-upgrade.cpython-36.opt-1.pyc-ead57863ff1055db +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...config-manager.cpython-36.opt-1.pyc-eafab434f140b254 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-system-upgrade-cleanup.service-ed5c05c7a540501e +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-plugins-groups-manager.py-f1ae2d9359db4712 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-etc-dnf-plugins-debuginfo-install.conf-f1df741709ca019e +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---repoclosure.cpython-36.pyc-fa76c4b1b9eef291 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---download.cpython-36.pyc-facbc5ef6ba14a4b +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...repograph.cpython-36.opt-1.pyc-fb7ccac3c37abd4a +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...generate-completion-cache.cpython-36.opt-1.pyc-fbc3c8b227ea1f87 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.hpel-c429f58b8034c2cc OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.hpel-2.0.81.jar-db4651692d448f54 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.thirdparty-c560a9497a9dc8cb OTHER SPDXRef-File-...io.openliberty.cdi.4.0.thirdparty-1.0.81.jar-36082487486261fe +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-sbin-cracklib-packer-30a254ccb5506d00 +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-sbin-cracklib-format-5c9ba3451440e818 +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-share-cracklib-pw-dict.pwd-6fefb2799b190e56 +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-share-cracklib-pw-dict.pwi-7e5103942b133fe1 +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-share-cracklib-pw-dict.hwm-9fc982e75a44303b +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-share-cracklib-cracklib-small.pwi-a251949a8ba39e31 +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-share-cracklib-cracklib-small.pwd-aef83d5715318e32 +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-share-cracklib-cracklib-small.hwm-ba259b112cc6fdcf +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-readline-c5d42f4c234235ee CONTAINS SPDXRef-File-usr-lib64-libreadline.so.7.0-57f1940fa0d79773 +Relationship: SPDXRef-Package-rpm-readline-c5d42f4c234235ee CONTAINS SPDXRef-File-usr-share-licenses-readline-USAGE-d920170b5d9e5907 +Relationship: SPDXRef-Package-rpm-readline-c5d42f4c234235ee OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-readline-c5d42f4c234235ee CONTAINS SPDXRef-File-usr-share-licenses-readline-COPYING-e1a7a6136ffde8bd +Relationship: SPDXRef-Package-rpm-readline-c5d42f4c234235ee CONTAINS SPDXRef-File-usr-lib64-libhistory.so.7.0-ec352d20a1ffe247 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader.auditreader-c61c4f9d07369217 OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-auditreader.jar-dac94bd442e85e0b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.monitor-c6fe46100ac575fb OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.monitor-1.0.81.jar-09ec11a080b99478 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.jandex-c79f42367d823002 OTHER SPDXRef-File-...com.ibm.ws.org.jboss.jandex-1.0.81.jar-fb1771b5193ae197 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-deny.so-00e5913a07655ba7 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-console.perms-043e8634a0965656 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-libpam-misc.so.0.82.1-0db726a9969c81ec +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-limits.conf-10126cd3ee8b5dd2 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-pwhistory.conf-1071f06d7e3b0a7c +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-namespace.conf-188f8fd7f08df7cd +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-...lib64-security-pam-filter-upperLOWER-22110c00c13cb26f +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-pam.d-system-auth-28c3b67509a115a1 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-permit.so-2a9680a57044a433 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-group.conf-32e6e0ce38bfb61e +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-keyinit.so-32f8a7096c7faaa7 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-pam.d-postlogin-358f093208a17aec +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-listfile.so-3628bdf0a29a6653 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-pam.d-smartcard-auth-3975d6f6d6f30a67 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-sbin-pwhistory-helper-43fc92df59e31231 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-pam.d-config-util-44a1b1d83b2dc66a +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-faillock.conf-46ab6fb3e4330c07 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-access.conf-483f4355e19fef17 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-opasswd-4ea39fc2dc18f4f1 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-sbin-pam-console-apply-50421397d10ac33b +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-ftp.so-53580c4c4f7aba80 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-timestamp.so-59bb3f54e43771f6 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-motd.so-5ac09dc80b53be2e +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-shells.so-5bc7ea2d216e4cdb +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-filter.so-5bddb4a93a1a2ffb +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-sbin-unix-update-5c61705ca8597ede +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-tty-audit.so-5f9917408b8c3fb8 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-sbin-unix-chkpwd-61f482f1e76008ce +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-cracklib.so-64005b7deee04f19 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-mkhomedir.so-6527bf955d2e1ecd +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-userdb.so-68e2b6b0aab4291e +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-limits.so-6df41fd69b0ef4d5 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-chroot.conf-6f592c2e4aa427f0 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-debug.so-70d203bf1aeb8d3a +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-env.so-73d395c297e22df7 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-wheel.so-74044d0fe410f3d7 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-namespace.init-7972ad94002ec0d5 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-pam.d-other-7bfc13e464be593b +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-xauth.so-7d8676abf64f8298 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-warn.so-82e42e4d3d21523b +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-rhosts.so-839c4ed204d9c47b +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-access.so-87823db11acd6602 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-stress.so-8984a8f34c1a6e5f +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-localuser.so-8be941c227ec764a +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-console.handlers-8cddc3102cb9ca9a +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-lastlog.so-90095ff7cc7b3232 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-echo.so-90645347a2fa1074 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-securetty.so-90e76874e098b219 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-...locale-en-GB-LC-MESSAGES-Linux-PAM.mo-9275c31734f7d705 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-share-licenses-pam-gpl-2.0.txt-958d782a021aba03 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-usertype.so-965cc6407a44d0ac +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-nologin.so-968e8e0f92136fb8 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-sbin-mkhomedir-helper-9c25bbf0eae65fc5 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-pam.conf-a30f196ff0d68ec9 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-libpam.so.0.84.2-a513b77a9d5ba81f +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-rootok.so-a6187098c7283231 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-loginuid.so-ace18675f7488ca2 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-exec.so-adcbda368a953d35 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-pwhistory.so-bd22fc79d6f23314 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-sepermit.so-c019470aeed8f918 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-time.conf-c0625510190528e9 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-libpamc.so.0.82.1-c0ad484d57d20408 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-umask.so-c1c790756ac251a6 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-chroot.so-c71e371b3ee1940c +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-succeed-if.so-c806778baa7a5951 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-console.so-cd85ddf22c9349c3 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-postgresok.so-cf2304a2eb474695 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-sepermit.conf-d23184be304121e7 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-time.so-d8dc945ff6e14c16 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-pam.d-fingerprint-auth-dadc09b3c82832f6 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-faildelay.so-dc4aadd1706c255b +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-share-licenses-pam-Copyright-e0ead8bec01d7231 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-sbin-faillock-e11d94a700e3be29 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-pam.d-password-auth-e4b04599401de0b2 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-selinux.so-ebe9e36c22a0438f +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-pam-env.conf-ee927e4398f8442d +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-unix.so-f24672afcd9ce839 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-sbin-pam-timestamp-check-f3328110d5a8f2f1 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-namespace.so-f4a0d51dcbeefb13 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-faillock.so-f4b6fa503861cd0f +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-issue.so-f5c5ec502ac86160 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-mail.so-f7858403c0d56667 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-group.so-f7a6d9d9f46b3704 +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.persistence.api.3.1-ca362583b374a441 OTHER SPDXRef-File-...io.openliberty.jakarta.persistence.api.3.1-1.0.81.jar-ae41084a4f7616f3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.utility.securityutil-ca8b9d721e9a1e1d OTHER SPDXRef-File-...com.ibm.ws.security.utility-1.0.81.jar-e732363ee439e80e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.security.admin-cac3f63abeadad89 OTHER SPDXRef-File-...com.ibm.ws.webcontainer.security.admin-1.0.81.jar-282b6fc3ab9aba1c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.coordinator-cae4dfa1a0a38c81 OTHER SPDXRef-File-...com.ibm.ws.org.eclipse.equinox.coordinator-1.0.81.jar-fa52a88314f6d4b7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-protobuf-c-caf48a448cb494cc CONTAINS SPDXRef-File-usr-share-doc-protobuf-c-TODO-3ead4bb5e64b21be +Relationship: SPDXRef-Package-rpm-protobuf-c-caf48a448cb494cc CONTAINS SPDXRef-File-usr-share-doc-protobuf-c-ChangeLog-832626f9174eea4f +Relationship: SPDXRef-Package-rpm-protobuf-c-caf48a448cb494cc CONTAINS SPDXRef-File-usr-lib64-libprotobuf-c.so.1.0.0-8467b5514cd3b16f +Relationship: SPDXRef-Package-rpm-protobuf-c-caf48a448cb494cc CONTAINS SPDXRef-File-usr-share-doc-protobuf-c-LICENSE-be15fe4e5026a818 +Relationship: SPDXRef-Package-rpm-protobuf-c-caf48a448cb494cc OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.crypto.certificate.creator.selfsigned-cb1e6649f2a5d34a OTHER SPDXRef-File-...com.ibm.ws.crypto.certificate.creator.selfsigned-1.0.81.jar-dd550de26b46bed4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...pki-ca-trust-extracted-java-cacerts-086386e3e9bb80b0 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-etc-pki-ca-trust-extracted-java-README-0bb6f1c96969abef +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-usr-bin-update-ca-trust-0c25b618daa533c4 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-etc-pki-ca-trust-extracted-pem-README-1d2ecb57de6d58ee +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...ca-bundle.legacy.default.crt-2366fa373c9550b5 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...extracted-pem-email-ca-bundle.pem-2de4791551b51b77 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...extracted-pem-tls-ca-bundle.pem-74339ef2e9a3f27c +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...ca-trust-extracted-edk2-cacerts.bin-79568197b9801373 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-etc-pki-ca-trust-extracted-README-80ed41260332a1ea +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-etc-pki-ca-trust-ca-legacy.conf-941143020d563d10 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-etc-pki-ca-trust-README-96ecf6ead68d0c25 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...extracted-openssl-ca-bundle.trust.crt-9e1cd1d76d37f0f7 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...ca-bundle.trust.p11-kit-ab5fa56a58a54116 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-usr-share-pki-ca-trust-source-README-c5df098e511c8911 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...ca-bundle.legacy.disable.crt-c8ab04ad02c2908d +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-etc-pki-ca-trust-extracted-edk2-README-d28ed8243b83d2ba +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...extracted-pem-objsign-ca-bundle.pem-dd080ef41e7e5f71 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-usr-bin-ca-legacy-ecd8ff85d3189ae4 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-etc-pki-ca-trust-source-README-ef036ffb48058105 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...pki-ca-trust-extracted-openssl-README-f9bf72482ca4bf28 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-server-cba6c2753995ba98 OTHER SPDXRef-File-...lib-com.ibm.ws.kernel.boot-1.0.81.jar-d95b1236acd055fd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.threading-cbfaa03416eb5740 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.threading-1.1.81.jar-88cd16be02d351c5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.core-cc10e4e4ad879773 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.core-1.2.81.jar-8e6f85f3eca08889 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.tx.jta.extensions.jakarta-cc2e0c21ecbb7fd1 OTHER SPDXRef-File-...com.ibm.ws.tx.jta.extensions.jakarta-1.0.81.jar-bb4017814aaf6c4e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-chkconfig-cc7797317bf6a1e2 CONTAINS SPDXRef-File-usr-sbin-chkconfig-09c7a81dac1cff44 +Relationship: SPDXRef-Package-rpm-chkconfig-cc7797317bf6a1e2 CONTAINS SPDXRef-File-...locale-en-GB-LC-MESSAGES-chkconfig.mo-1a162369497c3492 +Relationship: SPDXRef-Package-rpm-chkconfig-cc7797317bf6a1e2 CONTAINS SPDXRef-File-usr-sbin-alternatives-6d125db4bb60a9dc +Relationship: SPDXRef-Package-rpm-chkconfig-cc7797317bf6a1e2 CONTAINS SPDXRef-File-usr-share-licenses-chkconfig-COPYING-9f15a49442943a45 +Relationship: SPDXRef-Package-rpm-chkconfig-cc7797317bf6a1e2 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.json-cc9cae007144d249 OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.json-1.0.81.jar-dab5ce270ff355ae +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.cdi.transaction.jakarta-cca3ac184a383b1a OTHER SPDXRef-File-...com.ibm.ws.cdi.transaction.jakarta-1.0.81.jar-e9eb18fdb5da6e9e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libdb-cdeffe58cdcf475e CONTAINS SPDXRef-File-usr-lib64-libdb-5.3.so-37019ffd38bbe2c0 +Relationship: SPDXRef-Package-rpm-libdb-cdeffe58cdcf475e CONTAINS SPDXRef-File-usr-share-licenses-libdb-LICENSE-4b72e538c28ae765 +Relationship: SPDXRef-Package-rpm-libdb-cdeffe58cdcf475e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libdb-cdeffe58cdcf475e CONTAINS SPDXRef-File-usr-share-licenses-libdb-lgpl-2.1.txt-ef3268d7b2eea0b0 +Relationship: SPDXRef-Package-rpm-libtasn1-ce90f646db4cd13d CONTAINS SPDXRef-File-usr-lib64-libtasn1.so.6.5.5-81040f537b17d369 +Relationship: SPDXRef-Package-rpm-libtasn1-ce90f646db4cd13d CONTAINS SPDXRef-File-usr-share-licenses-libtasn1-COPYING-a01cd30f476e1b50 +Relationship: SPDXRef-Package-rpm-libtasn1-ce90f646db4cd13d CONTAINS SPDXRef-File-...share-licenses-libtasn1-COPYING.LIB-baab74cf8584e16d +Relationship: SPDXRef-Package-rpm-libtasn1-ce90f646db4cd13d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.classloader.context-cef214e61d25941e OTHER SPDXRef-File-...com.ibm.ws.classloader.context-1.0.81.jar-fb5d2f4623401edb +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.json4j-cfae675b723f2735 OTHER SPDXRef-File-...ol-wlp-lib-com.ibm.json4j-1.0.81.jar-9d86d72954b6bd05 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libsmartcols-cfc1b4c97bd0b1f9 CONTAINS SPDXRef-File-...share-licenses-libsmartcols-COPYING-2f004eaa79c7fc12 +Relationship: SPDXRef-Package-rpm-libsmartcols-cfc1b4c97bd0b1f9 CONTAINS SPDXRef-File-...licenses-libsmartcols-COPYING.LGPLv2.1-41a962b3605e7b6d +Relationship: SPDXRef-Package-rpm-libsmartcols-cfc1b4c97bd0b1f9 CONTAINS SPDXRef-File-usr-lib64-libsmartcols.so.1.1.0-61fc215af7cfea5a +Relationship: SPDXRef-Package-rpm-libsmartcols-cfc1b4c97bd0b1f9 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jmx.core.whiteboard-d024df8930f6e14c OTHER SPDXRef-File-...com.ibm.ws.org.apache.aries.jmx.core.whiteboard-1.0.81.jar-7aaba9559fc7e14e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnfnetlink-d0dd7b9ce7180a33 CONTAINS SPDXRef-File-usr-share-doc-libnfnetlink-README-05012c2130998b1b +Relationship: SPDXRef-Package-rpm-libnfnetlink-d0dd7b9ce7180a33 CONTAINS SPDXRef-File-usr-lib64-libnfnetlink.so.0.2.0-2ce876764332ca25 +Relationship: SPDXRef-Package-rpm-libnfnetlink-d0dd7b9ce7180a33 CONTAINS SPDXRef-File-...share-licenses-libnfnetlink-COPYING-c594affcf4e382a3 +Relationship: SPDXRef-Package-rpm-libnfnetlink-d0dd7b9ce7180a33 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.adaptable.module-d193330201a8bc44 OTHER SPDXRef-File-...com.ibm.ws.adaptable.module-1.0.81.jar-f08a5a4060540b5f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.expressionLanguage.5.0-d237df2857b8cf70 OTHER SPDXRef-File-...io.openliberty.jakarta.expressionLanguage.5.0-1.0.81.jar-eeab502ee7013eff +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...conf.avail-57-dejavu-sans.conf-4474dc1985af1290 +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...fonts-dejavu-DejaVuSans-Oblique.ttf-4eb60c0b65f373fe +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...dejavu-DejaVuSansCondensed-Oblique.ttf-51f6ce074236e223 +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...DejaVuSansCondensed-BoldOblique.ttf-541c04277b575faa +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-usr-share-fonts-dejavu-DejaVuSans.ttf-715c7e6cffbd9e0b +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...fonts-dejavu-DejaVuSans-ExtraLight.ttf-84f0d3033eaad11a +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...20-unhint-small-dejavu-sans.conf-9d3636a5938a4ea9 +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...share-fonts-dejavu-DejaVuSans-Bold.ttf-acec86fc66246420 +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...dejavu-DejaVuSans-BoldOblique.ttf-c0afdc59bb070502 +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...dejavu-DejaVuSansCondensed-Bold.ttf-d89882d1dffe22ae +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...fonts-dejavu-DejaVuSansCondensed.ttf-e329709be25c634c +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...share-appdata-dejavu-sans.metainfo.xml-fc43020972e78acd +Relationship: SPDXRef-Package-rpm-libarchive-d2fcf670d209798e CONTAINS SPDXRef-File-usr-lib64-libarchive.so.13.3.3-5decaba694c6a7a3 +Relationship: SPDXRef-Package-rpm-libarchive-d2fcf670d209798e CONTAINS SPDXRef-File-usr-share-licenses-libarchive-COPYING-da0c301351d5b2ad +Relationship: SPDXRef-Package-rpm-libarchive-d2fcf670d209798e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libyaml-d3d578fd9d7e0485 CONTAINS SPDXRef-File-usr-lib64-libyaml-0.so.2.0.5-5037ddf99a79f5ca +Relationship: SPDXRef-Package-rpm-libyaml-d3d578fd9d7e0485 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libyaml-d3d578fd9d7e0485 CONTAINS SPDXRef-File-usr-share-licenses-libyaml-LICENSE-f0f43ebf288ce518 +Relationship: SPDXRef-Package-rpm-rpm-libs-d493d01c7fe718f9 CONTAINS SPDXRef-File-usr-lib64-librpmio.so.8.2.0-8157c60607216bdf +Relationship: SPDXRef-Package-rpm-rpm-libs-d493d01c7fe718f9 CONTAINS SPDXRef-File-usr-lib64-librpm.so.8.2.0-cfdf6db416ac4262 +Relationship: SPDXRef-Package-rpm-rpm-libs-d493d01c7fe718f9 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.token.s4u2-d4ce9269292633b7 OTHER SPDXRef-File-...com.ibm.ws.security.token.s4u2-1.0.81.jar-8c8a1f4be4fc788a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-passwd-d530074a47793db2 CONTAINS SPDXRef-File-usr-bin-passwd-1cd78e2d3dab3466 +Relationship: SPDXRef-Package-rpm-passwd-d530074a47793db2 CONTAINS SPDXRef-File-etc-pam.d-passwd-541957eabc00bbdb +Relationship: SPDXRef-Package-rpm-passwd-d530074a47793db2 CONTAINS SPDXRef-File-usr-share-licenses-passwd-COPYING-a295bdc63bb09db3 +Relationship: SPDXRef-Package-rpm-passwd-d530074a47793db2 CONTAINS SPDXRef-File-...locale-en-GB-LC-MESSAGES-passwd.mo-d87806068c537ccf +Relationship: SPDXRef-Package-rpm-passwd-d530074a47793db2 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.security.sso.internal-d6187fd248cce2ce OTHER SPDXRef-File-...io.openliberty.security.sso.internal-1.0.81.jar-39e55c2b44fa7ce2 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.fileupload.jakarta-d64e9df37e550aa3 OTHER SPDXRef-File-...com.ibm.ws.org.apache.commons.fileupload.jakarta-1.0.81.jar-f5be64dd99a12b13 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.logging-d6690f2ff1085822 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.logging-1.1.81.jar-361f629061009b52 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.wsbytebuffer-d6d7aedfbda2c7a6 OTHER SPDXRef-File-...lib-com.ibm.ws.wsbytebuffer-1.0.81.jar-802c4b1e8193136b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libattr-d77f66c9b8b51965 CONTAINS SPDXRef-File-usr-lib64-libattr.so.1.1.2448-7fceac1eb0d89f52 +Relationship: SPDXRef-Package-rpm-libattr-d77f66c9b8b51965 CONTAINS SPDXRef-File-etc-xattr.conf-bbf6f2936807a965 +Relationship: SPDXRef-Package-rpm-libattr-d77f66c9b8b51965 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-sbin-getcap-02c9adff932e7ba7 +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-lib64-libpsx.so.2.48-04e2149fee5a9c83 +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-sbin-setcap-38a06c75fd582191 +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-sbin-getpcaps-4058609c2022fae5 +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-sbin-capsh-a685d3cb1164f864 +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-lib64-security-pam-cap.so-aa9f3a65b0d59615 +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-share-licenses-libcap-License-b5f4d9eda66a2fdd +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-lib64-libcap.so.2.48-dca963abeacb99d5 +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.runtime.interfaces-d8f7c7f67ed53663 OTHER SPDXRef-File-...com.ibm.ws.webserver.plugin.runtime.interfaces-1.0.81.jar-61b4bf074cc63805 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.httptransport-d8fb12885ef56ff7 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.httptransport-4.2.81.jar-015bc3e9670e677a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libpng-d91e6e2416007afb CONTAINS SPDXRef-File-usr-lib64-libpng16.so.16.34.0-0873f4ad6c406ec1 +Relationship: SPDXRef-Package-rpm-libpng-d91e6e2416007afb CONTAINS SPDXRef-File-usr-share-man-man5-png.5.gz-1c082c7e345c0cd9 +Relationship: SPDXRef-Package-rpm-libpng-d91e6e2416007afb CONTAINS SPDXRef-File-usr-share-licenses-libpng-LICENSE-8eb176a3aee2920e +Relationship: SPDXRef-Package-rpm-libpng-d91e6e2416007afb OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.kernel.service-d939ed5bedb62843 OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.kernel.service-1.1.81.jar-bf23c2abe81e7ad7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-binary-java-d9e23e0b1de302e4 OTHER SPDXRef-File-opt-java-openjdk-bin-java-9aa898fbd0b3e993 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v7-da0ec5e73a05a42c OTHER SPDXRef-File-...com.ibm.ws.javaee.platform.v7-1.0.81.jar-caded2919b31b48a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-featurelist-db745e443214a1e2 OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-featurelist.jar-4c721027cdcb4451 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.metatype-dba6e3c5aebc2417 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.metatype-1.1.81.jar-0f7f6bedce5e8750 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.webcontainer.servlet.6.0.internal-dbeb836c22275336 OTHER SPDXRef-File-...io.openliberty.webcontainer.servlet.6.0.internal-1.0.81.jar-38b72e8f08282bdb +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-dd-05f9b9b2c9519bb8 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-shuf-08e2035826b6be8a +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-mktemp-0f0af3c607475367 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-chcon-16fe8720c443b6ae +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-chown-1787a3ad14a9330f +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-truncate-195a2e61d0eb0eab +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-expr-1ca0551b969d1b12 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-readlink-1e50830c82baf114 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-factor-1f1905a717803039 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-b2sum-1ff010ac94b35573 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-split-22027b26a486d831 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-cp-2332a40d37410d35 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-od-236f3d245b1416e3 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sha224sum-238d6f941c60a430 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-basename-25411a7a4026c6d8 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-printenv-318c0192064b0d77 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-comm-38ea875ccd8489e1 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-rmdir-3ab9a59fb1b2cc3c +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-fold-3cb198d50f1e5a0b +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-unexpand-427c3d371505ce07 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-tsort-4325d9fd20a617e8 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-echo-4355567056fd4dfc +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-numfmt-4574fc253a7e3b27 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-ls-45acbaeafa7483b2 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-nl-465b691c25595e4f +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sync-47ff3f787fbace1c +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-du-4897d0f00b625ce6 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-sbin-chroot-49ccacce511dbb56 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-mknod-4b2314978fecf976 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-coreutils-4e66195c80e76d94 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-date-53713e3f5331fdb1 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin---5d50a5c7733a5443 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-env-60488a7730f12e31 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sha1sum-62047354d50f8cfa +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-join-62a518d6985e2090 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-vdir-676177514717507e +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-base32-6b094c42bb45261b +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-dir-6b6dd0f9f77cb524 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-who-6d4928d4d2d5ad9d +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-head-6d5648ad903746e4 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-true-6eae799d1ca0173d +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-mkfifo-6ec5c1bd07d07e5c +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-test-6f0f7a126883399a +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-hostid-700af32eae66742a +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-tr-715604516e76aeab +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-realpath-762610ce02febbb4 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-md5sum-76c4d79d89ac1a27 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-chgrp-7ad81929fdf95bcb +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-pathchk-7ff26038ed0cf74d +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sha384sum-803f165ab6396d0a +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-expand-8057aea9011ad58e +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-uniq-818d44b9e94fe725 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-uname-84e53df46b5a1375 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-base64-8650ff0e272bcd68 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-pr-866203e429d4243f +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-yes-882cba3c3703702e +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sha256sum-88bb9228526be95c +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-tee-895c5829d1157a32 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-rm-8c1484caa71064f7 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sort-8ede684d0d34f802 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-whoami-8f37af6cd04cbf66 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-cat-91170b79ac19796f +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-pinky-9632538ee6a35e39 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-tac-98cf606b1f230f38 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-install-99bb7aabd6e12173 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-unlink-9aea3e58dd1b1a13 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-nohup-9ebe7583f5c021e1 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-paste-9f568728818a5ba6 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-stty-9fe4a4cf929a4710 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-wc-a09ac9cd19ae1062 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-logname-a284cbfd2521da6f +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-cksum-a56e605bada7d4e4 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-dirname-a7b100debaeadb2e +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-link-ac9a2302a076862c +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-touch-b0c54409730dae57 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-ln-b6a6b77fb4a18dd8 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sum-b6c683a42386dbf4 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-dircolors-b79550bde7c2d093 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-shred-c0cef5e6ca300d0e +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-tty-c4f9a1872c9dad07 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-cut-c53581bf8686266a +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-chmod-c7be14c5570f6999 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sha512sum-c7d806f83ead0503 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-mv-cd9ae67ae8663eb4 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-users-d51072ffe70e5227 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-runcon-d58684550c2b31cb +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-nproc-d7038d804df947b9 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-libexec-coreutils-libstdbuf.so-d9115f3032342a46 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-arch-d98ca7ef721130c0 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sleep-d9e8d65f67fb5c6e +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-nice-dba8b2ded58211a0 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-fmt-e1e473e89be5f240 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-ptx-e3180520209a6f06 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-stdbuf-e46e301e8d38d4c9 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-timeout-e48683b79b81b0b2 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-printf-e76e52b963f7cde4 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-tail-e9b3a3f11c2f8989 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-pwd-ea806065cab44fd1 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-mkdir-eba5192a4985f7f6 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-df-f7312bdcc796fb5a +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-stat-f82d167f47eb9065 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-id-f8cb6de5c9aa2782 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-groups-fa279371f3022794 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-false-fc6eebb70e0daf0f +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-csplit-fd73a92f0d4d0cf4 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-seq-fdf9f500f7d1e42d +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-...licenses-coreutils-single-COPYING-fed2b2c6919dd923 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact.loose-dcb472bff679f387 OTHER SPDXRef-File-...com.ibm.ws.artifact.loose-1.0.81.jar-40c9afa825d7cd32 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-kmod-libs-dce662a72db32ee1 CONTAINS SPDXRef-File-usr-lib64-libkmod.so.2.3.3-6193f781697e9ec6 +Relationship: SPDXRef-Package-rpm-kmod-libs-dce662a72db32ee1 CONTAINS SPDXRef-File-usr-share-licenses-kmod-libs-COPYING-cf851846017e82f2 +Relationship: SPDXRef-Package-rpm-kmod-libs-dce662a72db32ee1 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.health.4.0-de255c121c78305a OTHER SPDXRef-File-...io.openliberty.org.eclipse.microprofile.health.4.0-1.0.81.jar-f658f4c9a08996b5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.transaction.2.0-de6a4493c1f4ec7b OTHER SPDXRef-File-...io.openliberty.jakarta.transaction.2.0-1.0.81.jar-dfdf7b3124803b64 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.timer-de9e29e7df6d7ef9 OTHER SPDXRef-File-...ol-wlp-lib-com.ibm.ws.timer-1.0.81.jar-6c0fba7301d80ca9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-securityutil-df187fb4fe4c3522 OTHER SPDXRef-File-...com.ibm.ws.security.utility-1.0.81.jar-e732363ee439e80e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-idna-df327da7f0a4a959 OTHER SPDXRef-File-...idna-2.5-py3.6.egg-info-PKG-INFO-d2899fc2d56f719e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security-df4334c69aab9582 OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.security-1.0.81.jar-e61ce55d7adc91f7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-bootstrap-agent-df89313d7d4ebec4 OTHER SPDXRef-File-opt-ol-wlp-lib-bootstrap-agent.jar-b2c0aa2b346923b4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ima-evm-utils-dfd6cbe7443a229f CONTAINS SPDXRef-File-...share-licenses-ima-evm-utils-COPYING-5ec0b2e0e8c79e44 +Relationship: SPDXRef-Package-rpm-ima-evm-utils-dfd6cbe7443a229f CONTAINS SPDXRef-File-usr-bin-evmctl-8187e18523fad015 +Relationship: SPDXRef-Package-rpm-ima-evm-utils-dfd6cbe7443a229f OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ima-evm-utils-dfd6cbe7443a229f CONTAINS SPDXRef-File-usr-lib64-libimaevm.so.2.0.0-e6196edfc93d483f +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.eba.wab.integrator-e0f862f96f48f23e OTHER SPDXRef-File-...com.ibm.ws.eba.wab.integrator-1.0.81.jar-b38dc8096af5f2f2 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.monitor-e1a15f5cd55c4cbd OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.monitor-1.1.81.jar-cbb12be1c28f0a7d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.management.security-e1a35fbc676a3bb4 OTHER SPDXRef-File-...com.ibm.ws.management.security-1.0.81.jar-3fb3c0f680c08baa +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.metatype-e23255d2a858b2a3 OTHER SPDXRef-File-...com.ibm.ws.org.eclipse.equinox.metatype-1.0.81.jar-2ae9fe0fefeb5634 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-usr-lib64-.libcrypto.so.1.1.1k.hmac-084024821f89e983 +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-usr-lib64-.libssl.so.1.1.1k.hmac-08bd6b7f68a82faa +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-usr-lib64-libcrypto.so.1.1.1k-2313000baaf2d3f9 +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-usr-lib64-engines-1.1-capi.so-5076d229e861461e +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-usr-lib64-libssl.so.1.1.1k-5631740cb75108b5 +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-etc-pki-tls-openssl.cnf-7a7377c66d7f25a4 +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-usr-lib64-engines-1.1-padlock.so-88bacab0d5f2bfde +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-etc-pki-tls-ct-log-list.cnf-8fbba57cc0ef9365 +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-usr-lib64-engines-1.1-afalg.so-a34191bfb7b1991f +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-...share-licenses-openssl-libs-LICENSE-bf37d205b33febd4 +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact.url-e2baf4271fb4cdcb OTHER SPDXRef-File-...lib-com.ibm.ws.artifact.url-1.0.81.jar-94e72c018599974c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.metatype-e2bb1263effc3a69 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.metatype-1.0.81.jar-0ce64112c9304df6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpgv-01bda67dd8f9b423 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.be.txt-025d29736299ea4b +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.hu.txt-078f6e3e0700f6c6 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.sv.txt-098d5f59f560320a +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.ru.txt-0ea32e037ef95b92 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-lib-systemd-user-gpg-agent.service-1224a0120f462823 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-libexec-dirmngr-ldap-14a0a3f9fcdb8f73 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-libexec-gpg-preset-passphrase-15b764792cb9d0a1 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpg-wks-server-1899695bd68127ab +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-libexec-gpg-protect-tool-1a358d25ad4f1328 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpgconf-24cd0f11ee72ff7e +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.ca.txt-3708e1f6c04cf5d1 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.txt-37b54befc1be3802 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.el.txt-446bfb105d1dc7a5 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.ja.txt-4583aec7d7faded8 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-libexec-scdaemon-46695b70b6cf7ccf +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-lib-systemd-user-gpg-agent.socket-4982709a39849fb0 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.cs.txt-4aeafd58863e19ab +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpg-connect-agent-4bcacd9cf972bfc9 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-lib-systemd-user-dirmngr.socket-500c8ec87369a5b8 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpgparsemail-519046b8f9193063 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-watchgnupg-52453ca259438ad6 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.de.txt-54d81c390bc25451 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpg-zip-552c13ca996257ef +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-...systemd-user-gpg-agent-browser.socket-5b8cf2e32b168d0a +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-sbin-g13-syshelp-63bca89e606f2ef1 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.da.txt-65f7b7c4bfd3d6a8 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.ro.txt-6969421d4c2c897f +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-libexec-gpg-check-pattern-6a8855dbb1c51ef3 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpgsplit-6df406738099b6cd +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.nb.txt-72a06a96b275bd8c +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.et.txt-775023be180b8e7b +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-licenses-gnupg2-COPYING-7789de3156cab373 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.pt.txt-77cdfdf2d060ab51 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.id.txt-77df6b15e7316aa5 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-dirmngr-85ed1bf6225dce74 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.sk.txt-95023049180bccc2 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-sbin-addgnupghome-95d62c800eca5c03 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.tr.txt-96756a67a9f72923 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-...systemd-user-gpg-agent-extra.socket-a57da2f4b43273ab +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-libexec-gpg-wks-client-aa56150aaa78286d +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.pl.txt-ab0bd7f409de934f +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.eo.txt-adfa5d45663496fc +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-dirmngr-client-b517ff400bdfe5b3 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-g13-b853cdbd34c603ec +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-...lib-systemd-user-gpg-agent-ssh.socket-be1a05434219e72b +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.zh-TW.txt-d0ec5af3603924fc +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.es.txt-d2c077a6492a5752 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-sbin-applygnupgdefaults-d305fe8d07d0f600 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.it.txt-d37f64171ca956a7 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.fr.txt-d448935108c4548f +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.zh-CN.txt-d5810c8b3ace4f38 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.gl.txt-d8ed03e48f0f3f7e +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-lib-systemd-user-dirmngr.service-e8137eed05f36fac +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.fi.txt-e8d6c8aa94c72894 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.pt-BR.txt-eb17c631f010cbec +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-distsigkey.gpg-ebbac8997b1c4bd8 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-...share-gnupg-sks-keyservers.netCA.pem-fb48183f47c81a54 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpg-fdf0a57b39a3a17a +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpg-agent-ff38d93d254ce4c3 +Relationship: SPDXRef-Package-java-archive-ws-server-e4dbd36ed2832fe2 OTHER SPDXRef-File-...lib-com.ibm.ws.kernel.boot-1.0.81.jar-d95b1236acd055fd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-six-e4e7ee91fea80cd9 OTHER SPDXRef-File-...six-1.11.0.dist-info-METADATA-8762652a2c9d4459 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.cm-e580e9d14c9a9896 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.cm-1.1.81.jar-d05f79a88e8f768e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnftnl-e5ed9cb81779a0d2 CONTAINS SPDXRef-File-usr-share-doc-libnftnl-COPYING-b55311e627103956 +Relationship: SPDXRef-Package-rpm-libnftnl-e5ed9cb81779a0d2 CONTAINS SPDXRef-File-usr-lib64-libnftnl.so.11.2.0-dcff648f0ec23380 +Relationship: SPDXRef-Package-rpm-libnftnl-e5ed9cb81779a0d2 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.config.3.0-e6925c5839937e85 OTHER SPDXRef-File-...io.openliberty.org.eclipse.microprofile.config.3.0-1.0.81.jar-3efbf5011ae43394 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.connectors.2.1-e76868f2573e0ea9 OTHER SPDXRef-File-...io.openliberty.jakarta.connectors.2.1-1.0.81.jar-023b7d626ae3d945 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jaxrs30-e775cebf7062ff5c OTHER SPDXRef-File-...ibm-io.openliberty.jaxrs30-1.0.81.jar-95dfcb4f6e420701 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.cdi.ee10-e78953ee8df3990f OTHER SPDXRef-File-...io.openliberty.org.jboss.resteasy.cdi.ee10-1.0.81.jar-2665f82bf39cedf8 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.java2sec-e8286830825febc9 OTHER SPDXRef-File-...com.ibm.ws.security.java2sec-1.0.81.jar-c7a49a8e3c87ab3c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 CONTAINS SPDXRef-File-...bash-completion-completions-p11-kit-5186ae069aab5e63 +Relationship: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 CONTAINS SPDXRef-File-...locale-en-GB-LC-MESSAGES-p11-kit.mo-831b3a4da9a880c6 +Relationship: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 CONTAINS SPDXRef-File-usr-libexec-p11-kit-p11-kit-remote-bacfcdb6a40947d4 +Relationship: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 CONTAINS SPDXRef-File-usr-lib64-libp11-kit.so.0.3.0-db20a3f7cd7eed74 +Relationship: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 CONTAINS SPDXRef-File-usr-share-licenses-p11-kit-COPYING-e5c66c8ca710cb17 +Relationship: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 CONTAINS SPDXRef-File-usr-bin-p11-kit-e60d47020480b040 +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 CONTAINS SPDXRef-File-usr-share-info-dir.old-22645fda9aaa5181 +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 CONTAINS SPDXRef-File-usr-share-licenses-info-COPYING-4fc071846ccf8f09 +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 CONTAINS SPDXRef-File-usr-share-info-dir-60ee52a9659bb512 +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 CONTAINS SPDXRef-File-usr-sbin-install-info-7021998d7eaddeb9 +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 CONTAINS SPDXRef-File-usr-lib-rpm-macros.d-macros.info-78dc00ffd65e7db6 +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 CONTAINS SPDXRef-File-usr-bin-info-efee99e7ff1a6ae5 +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 CONTAINS SPDXRef-File-usr-sbin-fix-info-dir-f76397cfe121f349 +Relationship: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 CONTAINS SPDXRef-File-usr-lib64-libip6tc.so.0.1.0-089d553126f0404d +Relationship: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 CONTAINS SPDXRef-File-usr-lib64-libiptc.so.0.0.0-0e78b29a8e248258 +Relationship: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 CONTAINS SPDXRef-File-usr-lib64-libip6tc.so.2.0.0-1dccb800ab8e7196 +Relationship: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 CONTAINS SPDXRef-File-usr-lib64-libip4tc.so.2.0.0-5b7cda72ed734d0c +Relationship: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 CONTAINS SPDXRef-File-usr-lib64-libxtables.so.12.2.0-62c47b82c901c8a4 +Relationship: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 CONTAINS SPDXRef-File-usr-lib64-libip4tc.so.0.1.0-a35f6c5e272ae6a4 +Relationship: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.service-eaf511615c27e802 OTHER SPDXRef-File-...com.ibm.ws.kernel.service-1.3.81.jar-b6b931108d3c289c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnsl2-ec79fbc521155d21 CONTAINS SPDXRef-File-usr-share-licenses-libnsl2-COPYING-b4c33fc0f483d181 +Relationship: SPDXRef-Package-rpm-libnsl2-ec79fbc521155d21 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnsl2-ec79fbc521155d21 CONTAINS SPDXRef-File-usr-lib64-libnsl.so.2.0.0-e655338bf8ec0f08 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.servlet.3.1.jakarta-ecc39995894e0901 OTHER SPDXRef-File-...com.ibm.ws.webcontainer.servlet.3.1.jakarta-1.0.81.jar-39a4dbf51a0557bc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-...locale-en-US-LC-MESSAGES-mit-krb5.mo-3f4c6669e92f25c9 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-libkdb5.so.10.0-41901b776dba1616 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-libkrad.so.0.0-7a277395db789653 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-krb5-plugins-tls-k5tls.so-7b2dbc2f9413ebc6 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-libgssapi-krb5.so.2.2-7f052cb37d632add +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-libkrb5support.so.0.1-b2aaf38478c3e571 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-libkrb5.so.3.3-b3579c1cb88fdfc3 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-share-licenses-krb5-libs-LICENSE-b36fdf5277da3e35 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-libgssrpc.so.4.2-bfcf362178edf7aa +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-libk5crypto.so.3.1-c67bd535442fe9d0 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-...lib64-krb5-plugins-preauth-spake.so-c86702582253b66b +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-...share-crypto-policies-DEFAULT-krb5.txt-d6b290fd2cfa04cd +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-etc-krb5.conf-e08585469b0e61f5 +Relationship: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.services.fragment-edeab00c7cfe155f OTHER SPDXRef-File-...io.openliberty.cdi.4.0.internal.services.fragment-1.0.81.jar-fc1b6e08bf9fbcff +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.servlet.4.0.jakarta-ee075dcb42a7385a OTHER SPDXRef-File-...com.ibm.ws.webcontainer.servlet.4.0.jakarta-1.0.81.jar-2b9191ad3daace5a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.context-ee9fcf16b4c39d41 OTHER SPDXRef-File-...com.ibm.ws.security.context-1.0.81.jar-f4f8bde80c8c49cc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.thirdparty.equinox-f00552568d914797 OTHER SPDXRef-File-...com.ibm.wsspi.thirdparty.equinox-1.3.81.jar-f787b00868727742 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gpg-pubkey-f11cf456670bc682 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...entry-points.txt-093084c6b1da5e44 +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...pyinotify.cpython-36.opt-1.pyc-1c630e002b98378b +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 OTHER SPDXRef-Package-python-pyinotify-2cc0497e30b46d84 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...top-level.txt-45b1b0808b2235e2 +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...python3.6-site-packages-pyinotify.py-4d85ba64a4cf5e3f +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...dependency-links.txt-58f8360c81712d54 +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...--pycache---pyinotify.cpython-36.pyc-59098d108c6a6e3f +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...share-licenses-python3-inotify-COPYING-96a145b0de26d8c8 +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-usr-bin-pyinotify-b422e9b17baa5577 +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...PKG-INFO-bf244285e2e636bf +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...SOURCES.txt-fe8a299ef2e9c9c8 +Relationship: SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f CONTAINS SPDXRef-File-...share-man-ru-man5-semanage.conf.5.gz-512e0fcb47511046 +Relationship: SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f CONTAINS SPDXRef-File-usr-share-licenses-libsemanage-COPYING-8125a3ce8fdb1aa7 +Relationship: SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f CONTAINS SPDXRef-File-etc-selinux-semanage.conf-94ebbbbebf9a3cd7 +Relationship: SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f CONTAINS SPDXRef-File-usr-lib64-libsemanage.so.1-d167d0fbef027dc2 +Relationship: SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f CONTAINS SPDXRef-File-usr-share-man-man5-semanage.conf.5.gz-d179f9aacdd95fc4 +Relationship: SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-fontpackages-filesystem-f296bbcdecba4614 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.endpoint-f29f09d31d83d248 OTHER SPDXRef-File-...lib-io.openliberty.endpoint-1.0.81.jar-6e522216f6cd5d1e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libncurses.so.6.1-0aae8e6195124e9f +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libtic.so.6.1-0f343f181e99fdfd +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libtinfo.so.6.1-3cd192028d2a0392 +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libform.so.6.1-3d1f69182dc01243 +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libmenu.so.6.1-57fa1e003baafada +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libncursesw.so.6.1-6edcde95db46ed40 +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libpanelw.so.6.1-930ed1b769034773 +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libmenuw.so.6.1-d8a60710014b77f4 +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libpanel.so.6.1-dd875c471ad6e188 +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libformw.so.6.1-e1c6b379a1a891a0 +Relationship: SPDXRef-Package-rpm-libdnf-f386d34765ff5f46 CONTAINS SPDXRef-File-usr-share-licenses-libdnf-COPYING-5165a23ed804ca7b +Relationship: SPDXRef-Package-rpm-libdnf-f386d34765ff5f46 CONTAINS SPDXRef-File-usr-lib64-libdnf-plugins-README-852a5bf38a3c880d +Relationship: SPDXRef-Package-rpm-libdnf-f386d34765ff5f46 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libdnf-f386d34765ff5f46 CONTAINS SPDXRef-File-usr-lib64-libdnf.so.2-ec311eba8f23c49c +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.version-f3a507f45bcb3758 OTHER SPDXRef-File-...com.ibm.ws.javaee.version-1.0.81.jar-f311d0b09f6cbe10 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-profile.d-lang.csh-0187bc6ea2b5ac9c +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-shells-02d9af0b38cd98e2 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-ethertypes-03fcab9483d4a32b +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-csh.cshrc-09f80283e76590cb +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-group-126b5168e4d9fd8b +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-subuid-161015d5ebfe405f +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-subgid-1fb40ae1ef6f69b8 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-hosts-313360aadb479c12 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-dnf-protected.d-setup.conf-3a4253edbba81e76 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-host.conf-4868ec58da1c90fb +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-services-4af93d739636ab4e +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-profile-5a7d895563e2a4b4 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-exports-626f02fbaf5d9f4f +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-printcap-798f42720575d83a +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-environment-8ef58ba6d912c968 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-passwd-90de2d8634cc64c7 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-filesystems-910b481e67e71ac7 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-aliases-9e22cbe417ad2ab4 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-networks-afa1e4a0d8a9e142 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-usr-share-licenses-setup-COPYING-b1697b974ab84c60 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-protocols-b60ff1f0bea24ce5 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-shadow-bd97c6978c250f04 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-csh.login-be19e5f9f668bde2 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-inputrc-bf07b00e4f485257 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-profile.d-sh.local-bfb9288815fc2000 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-gshadow-c42f3b0bb60d8196 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-profile.d-lang.sh-cbde1e30082ef996 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-motd-ce9469b8cab5279c +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-profile.d-csh.local-d7f2266219ea533b +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-bashrc-ece2de793a0c1a36 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---azure.cpython-36.opt-1.pyc-04b672c445b7eb21 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...cloud-what-fact-collector.py-059c321df3a32280 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---aws.cpython-36.opt-1.pyc-0f1983210d754872 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...site-packages-cloud-what-setup.py-19ffdae447de5c09 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---azure.cpython-36.pyc-1c49876508fb3494 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---gcp.cpython-36.pyc-258633bf365032e1 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...cloud-what-providers-aws.py-2816a0279321cd93 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...cloud-what-providers---init--.py-3d5a1e43ca982c18 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...-base-provider.cpython-36.pyc-4d824cadc75b614d +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...cloud-what--base-provider.py-5c5dde0cf2aed132 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5efbf95f6d4724ac +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-60f149ffaa24de75 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---setup.cpython-36.opt-1.pyc-6c15b595776fc446 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---gcp.cpython-36.opt-1.pyc-73c4981fb9543158 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...cloud-what-providers-azure.py-7f3d7437ef85c772 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...-base-provider.cpython-36.opt-1.pyc-93a176e56b27a9e4 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...cloud-what-providers-gcp.py-9ccf5794bf1a7399 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---aws.cpython-36.pyc-badde5b1374a4d0d +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---provider.cpython-36.pyc-c71b63f1b4893c4d +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---setup.cpython-36.pyc-cf1f8d334eaa87d1 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d3925189185938c0 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...site-packages-cloud-what---init--.py-d4db3db5ae02e54d +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...fact-collector.cpython-36.pyc-d972fc8847e76682 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...provider.cpython-36.opt-1.pyc-db1e5098450b6a49 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-f2bd2b115dc7d334 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...fact-collector.cpython-36.opt-1.pyc-fa67a2c2ed7a3737 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...site-packages-cloud-what-provider.py-fbc5c1025ff902e4 +Relationship: SPDXRef-Package-java-archive-ws-auditreader-f510d73363ff9447 OTHER SPDXRef-File-...com.ibm.ws.security.audit.reader-1.0.81.jar-30697d64d9c46b5e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnet-f53795cb57509559 CONTAINS SPDXRef-File-usr-share-doc-libnet-README-0b3f832626119b0c +Relationship: SPDXRef-Package-rpm-libnet-f53795cb57509559 CONTAINS SPDXRef-File-usr-share-doc-libnet-CONTRIB-1cf554a08647a884 +Relationship: SPDXRef-Package-rpm-libnet-f53795cb57509559 CONTAINS SPDXRef-File-usr-share-doc-libnet-COPYING-6ee8d8e4426e35fe +Relationship: SPDXRef-Package-rpm-libnet-f53795cb57509559 CONTAINS SPDXRef-File-usr-lib64-libnet.so.1.7.0-9687d900dcb3f0f7 +Relationship: SPDXRef-Package-rpm-libnet-f53795cb57509559 CONTAINS SPDXRef-File-usr-share-doc-libnet-CHANGELOG-b012ddf73e4a28d9 +Relationship: SPDXRef-Package-rpm-libnet-f53795cb57509559 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.utility-f53bcf3b45eef75f OTHER SPDXRef-File-...com.ibm.ws.security.utility-1.0.81.jar-e732363ee439e80e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.logging-f5f0aa8c366d2ac0 OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.logging-1.0.81.jar-84621c5e78ab4598 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.tx.jta.jakarta-f61867c065c3c5fe OTHER SPDXRef-File-...lib-com.ibm.tx.jta.jakarta-1.0.81.jar-929222e05121a521 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.serialization-f64d70a534b67721 OTHER SPDXRef-File-...com.ibm.ws.serialization-1.0.81.jar-c1244b1cc9f607e9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.web-f67ab33a049816c4 OTHER SPDXRef-File-...io.openliberty.cdi.4.0.internal.web-1.0.81.jar-ae594f61545ed4c5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-gnutls.config-00d41282c039e6a8 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-LEGACY-bind.txt-034d8ada8c368cae +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...policies-modules-NO-CAMELLIA.pmod-05cb030413e7d0e9 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-EMPTY-java.txt-05ddf5239c9dc576 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-EMPTY-gnutls.txt-060406ab506e02eb +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-opensslcnf.config-06de8a105e140f2a +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-java.config-077afe5bfa1ce8d5 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-EMPTY-bind.txt-07a575d3a9934013 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-DEFAULT-bind.txt-0cdc9ea98bbd2896 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-opensshserver.config-0ce74952d083e1df +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-krb5.config-0d9d9f8b3878e1fc +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FUTURE-openssh.txt-14f19ad4d282d335 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-opensslcnf.config-15cb1cffd1004d52 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-nss.config-18140d9a745968db +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-openssh.config-1b640f3502c79778 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-policies-DEFAULT.pol-1c80323d610449f8 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-bind.config-1fa70fc9d8f807be +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-etc-crypto-policies-config-2023d233a19ba276 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...policies-modules-ECDHE-ONLY.pmod-2a004eb9054a1d6c +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-nss.config-2d4375d8043994dd +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-opensslcnf.config-2fd9dfb1d605fd82 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-usr-share-crypto-policies-FIPS-nss.txt-32bb273f37c5dce3 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-DEFAULT-nss.txt-36ce92bc8b65a6d5 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...FUTURE-opensshserver.txt-373174adedd701a8 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-EMPTY-krb5.txt-37a804988f11b614 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-libssh.config-3887547c7daa62f3 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FIPS-openssh.txt-388a4884f2ec2297 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...policies-modules-OSPP.pmod-3a2b32a189ee6706 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-gnutls.config-3dbd0a80dd01bafb +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-policies-FIPS.pol-3e1d24f4b1b8cb54 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FUTURE-gnutls.txt-3eb07f0b14f46d8f +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-EMPTY-libssh.txt-3f608bf9d6b95e5b +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...policies-modules-AD-SUPPORT.pmod-4126a538a2e68d05 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-LEGACY-nss.txt-464f71da0d9e9823 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FUTURE-java.txt-46a14c04ff37b6e1 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-krb5.config-4947eb9ebaebd789 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-libreswan.config-4ba1ebbfa107e92d +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-java.config-4e46ff2eece86b69 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-DEFAULT-gnutls.txt-4ed81240a0256911 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-bind.config-4ef790b274d901cd +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-openssh.config-4fc5ec119fb25df9 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-policies-LEGACY.pol-512deec5f01186fd +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-DEFAULT-java.txt-52f135410a8fb00c +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-LEGACY-opensslcnf.txt-5546bc355b95d6cf +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-opensshserver.config-55ddfe487693493b +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-default-config-58a363c11dc7b0af +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-policies-EMPTY.pol-59c4e118c8ebbdf3 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FIPS-bind.txt-60761712558c6541 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-EMPTY-openssh.txt-625f0811c40879d9 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-nss.config-6288a2c337b26e22 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-DEFAULT-openssl.txt-69a01dcddb25be7c +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-EMPTY-opensslcnf.txt-6ec5536f089d3fda +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-COPYING.LESSER-6f985d0e502f9b76 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-etc-crypto-policies-state-CURRENT.pol-6ffd2ba288fe5ebf +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-libreswan.config-70225bebe9311558 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-LEGACY-gnutls.txt-71ebabcf1397433b +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-reload-cmds.sh-7336478926a86d5e +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-EMPTY-nss.txt-79dd90ea75c4e967 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-LEGACY-libreswan.txt-7c5d756c782c5fc4 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-opensslcnf.config-7d8ec13905994220 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-krb5.config-7ec78608c9e249ae +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FUTURE-opensslcnf.txt-822335635f34bd0b +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FIPS-openssl.txt-8360ca87ef3c90aa +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FIPS-opensshserver.txt-84357976b52479bb +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-openssh.config-86cfd3270f8186e5 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-DEFAULT-libreswan.txt-880f7f8a3a33a064 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FUTURE-nss.txt-8a5cf6cc360a04dd +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-policies-FUTURE.pol-8e19949a286d114d +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-gnutls.config-8eb8c2a422cc8171 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-openssh.config-8f74cfe195f82837 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-etc-crypto-policies-state-current-8fca46800dea9d86 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-opensshserver.config-9680180e24a509b9 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-krb5.config-9845f9ab6cb2daff +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-openssl.config-9b28a0bdb753ba76 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-LEGACY-openssh.txt-9c55ae11ea9b8e66 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FUTURE-bind.txt-9ee7d28eb60992f1 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FIPS-libssh.txt-a069543ecd45a1f6 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...DEFAULT-opensshserver.txt-a5d99fa248b62ef2 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-gnutls.config-a69d908cc5d0bff5 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-bind.config-a8397b2c83999f6f +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FUTURE-openssl.txt-b496120634f40348 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-DEFAULT-openssh.txt-b5fbd9a86079aeba +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FIPS-java.txt-be786f14bc65129e +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-java.config-c10f535734511b04 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-nss.config-c525294e8d49bb81 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FUTURE-libssh.txt-c589d2f32d9e822a +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FIPS-gnutls.txt-c69ab7663a1a3a0b +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-LEGACY-openssl.txt-cc73448fa988e95c +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...policies-modules-NO-SHA1.pmod-ccc101911cc2e3f0 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...EMPTY-opensshserver.txt-ccd8e8040b3aaa9e +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-libssh.config-d157fc4fa7324605 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-EMPTY-openssl.txt-d56eaf0891b08172 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-DEFAULT-krb5.txt-d6b290fd2cfa04cd +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-openssl.config-d75669bbfd7f99ba +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-java.config-d8719147b6288df1 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-DEFAULT-opensslcnf.txt-dc2fbe4908ea1a9e +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-LEGACY-libssh.txt-ddc60b77d93cfc9c +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-bind.config-e0a56aafc6a74691 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-libreswan.config-e1b268d981488933 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-opensshserver.config-e2c85fb27ef1e37f +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...LEGACY-opensshserver.txt-e56563b020042f2d +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FIPS-libreswan.txt-e5e8994ba6add4a7 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-libreswan.config-e65788c8a188872e +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FUTURE-krb5.txt-e74cc380240cd2aa +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-LEGACY-java.txt-f4d4cee6210df460 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-LEGACY-krb5.txt-f6f6de897dd507ce +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FUTURE-libreswan.txt-f71391c2ab23d794 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-EMPTY-libreswan.txt-f887fbfad8a81b67 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FIPS-krb5.txt-f9783e10324e53a5 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-libssh.config-f984898a31daa7a1 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-libssh.config-f9b48db8e1c14592 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-openssl.config-faa27545967db140 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FIPS-opensslcnf.txt-faf9f9f2ccc08fe9 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-openssl.config-fb984036c7bd3e21 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-DEFAULT-libssh.txt-fdeadfaf140b67f7 +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-bin-dbus-cleanup-sockets-1b0ed22a7a0487cf +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-...dbus-1-dbus-daemon-launch-helper-5863faf90c99be6d +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-bin-dbus-daemon-5fa75d17886df743 +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-share-licenses-dbus-daemon-COPYING-650d3eb15814efbd +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-bin-dbus-test-tool-6c0ab134ab5fb082 +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-lib-systemd-user-dbus.socket-aada9b0f53723150 +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-lib-systemd-system-dbus.socket-c116c7c34ec110ed +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-lib-systemd-system-dbus.service-c74695f3debdbf81 +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-dbus.conf-d7168470fa567c65 +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-bin-dbus-run-session-d8e9e023831ad290 +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-lib-systemd-user-dbus.service-f20257ef9246b0eb +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-UTF-32.so-02b6b936c2ebacea +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libutil-2.28.so-14604828ae84b1c7 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-librt-2.28.so-166d2681a2aaf47a +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libm-2.28.so-24bb340519ffb940 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-UTF-16.so-24f07e0b0fe72e57 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libdl-2.28.so-3caae6eda12c8a53 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libnss-dns-2.28.so-41ce653f5ef31968 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-...libexec-getconf-POSIX-V7-LP64-OFF64-43024eaee2d9cd1e +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libresolv-2.28.so-46d22700607cd625 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-CP1252.so-4b52f65c9a85f387 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-UTF-7.so-6e4369b347788539 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libpthread-2.28.so-70feb92e73b56b2e +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libanl-2.28.so-7f4a06cca86fac08 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-ANSI-X3.110.so-7fff974fab11676f +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-ld-2.28.so-899b84a654a23ae4 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libc-2.28.so-8a0216ba1339ecc1 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libthread-db-1.0.so-960d931eb58ce757 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-etc-ld.so.conf-9d4d2315b8159d40 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-sbin-iconvconfig-a1f3cfb0bf0faa13 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-share-licenses-glibc-COPYING-a30e0b6e02b9527a +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-etc-ld.so.cache-a3a49bcf68803b4a +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-UNICODE.so-a4eb3960005c3c1a +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-etc-rpc-a6dec8bf69c4b476 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-audit-sotruss-lib.so-a781e72b447d9590 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-gconv-modules-ab74bb86da2b760f +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-ISO8859-1.so-b6ae37f627f28c6e +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libmvec-2.28.so-b7fba42a357d605f +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-etc-nsswitch.conf-c23113a191f1b1d8 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-gconv-modules.cache-c86440fc1aeb5b4f +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-share-licenses-glibc-COPYING.LIB-cf3f34cec7a83caf +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-libexec-getconf-XBS5-LP64-OFF64-d20abff376e0f337 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libSegFault.so-d418374ee72bcf95 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libmemusage.so-d803b9467e850822 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libnss-files-2.28.so-d83d87f4af9a1559 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libpcprofile.so-d8a0502a08dc3460 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-sbin-ldconfig-e01d507d6a915ec9 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libnss-compat-2.28.so-e4d96cebebb6d32e +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-...libexec-getconf-POSIX-V6-LP64-OFF64-ef810a1d0ae96183 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-ISO8859-15.so-f2136decf7325108 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libBrokenLocale-2.28.so-f40f77d58ff4b49f +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-var-cache-ldconfig-aux-cache-fa12b0fd3a460fab +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-share-licenses-glibc-LICENSES-fd4e99dd9b2a9828 +Relationship: SPDXRef-Package-rpm-rpm-build-libs-f8e876f78b1b0978 CONTAINS SPDXRef-File-usr-lib64-librpmbuild.so.8.2.0-0cbd8132fba619ea +Relationship: SPDXRef-Package-rpm-rpm-build-libs-f8e876f78b1b0978 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-rpm-build-libs-f8e876f78b1b0978 CONTAINS SPDXRef-File-usr-lib64-librpmsign.so.8.2.0-f441e4f8cb1c595a +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.request.probes-f9d7dc75bc346030 OTHER SPDXRef-File-...com.ibm.ws.request.probes-1.0.81.jar-7bd44141116226e2 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.2.x.monitor.jakarta-faa672b91802dbce OTHER SPDXRef-File-...com.ibm.ws.jaxrs.2.x.monitor.jakarta-1.0.81.jar-f93a38504e2a0d0a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-lz4-libs-fab834f3c05b83f6 CONTAINS SPDXRef-File-usr-lib64-liblz4.so.1.8.3-6538e09e53fe38c6 +Relationship: SPDXRef-Package-rpm-lz4-libs-fab834f3c05b83f6 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libpsl-fac4c11e752b3ddd CONTAINS SPDXRef-File-usr-share-licenses-libpsl-COPYING-44c907be9a26eeef +Relationship: SPDXRef-Package-rpm-libpsl-fac4c11e752b3ddd CONTAINS SPDXRef-File-usr-lib64-libpsl.so.5.3.1-5355b2c50198f794 +Relationship: SPDXRef-Package-rpm-libpsl-fac4c11e752b3ddd OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.io.micrometer-fb2cb7cf2d6ef540 OTHER SPDXRef-File-...io.openliberty.io.micrometer-1.0.81.jar-253f658bf8d5ef42 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-tar-fb2eb771609ce85a CONTAINS SPDXRef-File-usr-share-licenses-tar-COPYING-a0248b7b9ad2f646 +Relationship: SPDXRef-Package-rpm-tar-fb2eb771609ce85a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-tar-fb2eb771609ce85a CONTAINS SPDXRef-File-usr-bin-tar-fa580debc9d7492c +Relationship: SPDXRef-Package-rpm-json-glib-fb5800e4b9214ebd CONTAINS SPDXRef-File-...en-GB-LC-MESSAGES-json-glib-1.0.mo-0a062e0adc7ba9c7 +Relationship: SPDXRef-Package-rpm-json-glib-fb5800e4b9214ebd CONTAINS SPDXRef-File-...girepository-1.0-Json-1.0.typelib-71dce22bc827cd88 +Relationship: SPDXRef-Package-rpm-json-glib-fb5800e4b9214ebd CONTAINS SPDXRef-File-usr-lib64-libjson-glib-1.0.so.0.400.4-957ae7df7a8165cc +Relationship: SPDXRef-Package-rpm-json-glib-fb5800e4b9214ebd CONTAINS SPDXRef-File-usr-share-licenses-json-glib-COPYING-a87f1884f6ee71fe +Relationship: SPDXRef-Package-rpm-json-glib-fb5800e4b9214ebd OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.jboss.weld5.se-fbad8c9ad57d9307 OTHER SPDXRef-File-...io.openliberty.org.jboss.weld5.se-1.0.81.jar-4d74162fb0fed5ce +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.metrics.5.0-fcb825d727397a08 OTHER SPDXRef-File-...io.openliberty.org.eclipse.microprofile.metrics.5.0-1.0.81.jar-448ff8e3a12316ae +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gpg-pubkey-fd1087723a227e81 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libxml2-fda5b57dbb69e8e7 CONTAINS SPDXRef-File-usr-lib64-libxml2.so.2.9.7-43b74e13e28c79a2 +Relationship: SPDXRef-Package-rpm-libxml2-fda5b57dbb69e8e7 CONTAINS SPDXRef-File-usr-share-licenses-libxml2-Copyright-79d097ee18d64582 +Relationship: SPDXRef-Package-rpm-libxml2-fda5b57dbb69e8e7 CONTAINS SPDXRef-File-usr-bin-xmllint-a213f35a75ac05ac +Relationship: SPDXRef-Package-rpm-libxml2-fda5b57dbb69e8e7 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libxml2-fda5b57dbb69e8e7 CONTAINS SPDXRef-File-usr-bin-xmlcatalog-f2a74834d35f0919 +Relationship: SPDXRef-Package-rpm-sed-fe812e7e94487ede CONTAINS SPDXRef-File-usr-bin-sed-1d81a12e3b9399c3 +Relationship: SPDXRef-Package-rpm-sed-fe812e7e94487ede CONTAINS SPDXRef-File-usr-share-licenses-sed-COPYING-bb9753ca8d21083c +Relationship: SPDXRef-Package-rpm-sed-fe812e7e94487ede OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.filemonitor-ff50a675f87deefb OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.filemonitor-1.0.81.jar-dda1699e6f79dc00 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-chardet-ff941a34dc8ad898 OTHER SPDXRef-File-...chardet-3.0.4-py3.6.egg-info-PKG-INFO-944ffd667cc9db41 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-dotnet-Apache-Commons-Daemon-Service-Runner-108b9d9123e75ddd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-PyGObject-026a55989515496e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-PySocks-9a572bb052f6e9e4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-acl-45fd7a3cd138b877 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-audit-libs-a8759a9d0a3b60da +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-basesystem-423a8fdad2b882bb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-bash-044e31d699b18d1a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-boot-proxy-1aba7eb0d811ebb9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-bootstrap-agent-df89313d7d4ebec4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-bzip2-libs-17acab8822026709 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-chardet-ff941a34dc8ad898 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-chkconfig-cc7797317bf6a1e2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.json4j-cfae675b723f2735 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.rls.jdbc.jakarta-75e3781a87aab322 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.tx.jta.jakarta-f61867c065c3c5fe +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.tx.util.jakarta-22a2d52242f0b82a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.basics-9f1f28ba07ffddec +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.config-66ddfec1c99641dc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.distributedMap-ade50b3b5247ec64 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.endpoint-66ab3ac228472eda +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.hpel-c429f58b8034c2cc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.json-cc9cae007144d249 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.kernel.service-d939ed5bedb62843 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.monitor-e1a15f5cd55c4cbd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.security.spnego-4ae53050e4fe0d56 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.sessionstats-2a94d6299aad479a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.ssl-1b9b8e246bb01d2c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.anno-3fb825ea1e85acd7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.application-748abe5518b3314e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.artifact-2173cd741b62f5a5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.classloading-75c7e061c7ba2305 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.containerServices-32bf4b13c197596c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.httptransport-d8fb12885ef56ff7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.javaeedd-8aaadc0ff19db6ad +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.embeddable-3b8d907fb16b2e94 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.filemonitor-ff50a675f87deefb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.metatype-e2bb1263effc3a69 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.service-421932a8e40184c4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.logging-d6690f2ff1085822 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.ssl-3a6d9f1416bf3550 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.threading-cbfaa03416eb5740 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.transaction-40203f0f030d57c8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.javaee.activity.1.0-539b5585a68d881c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.javaee.jcache.1.1.core.jakarta-a1abca5528994e35 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.javaee.jsonp.1.0-ad3879053f00036f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.jsonsupport-6dbb9365dfff79bc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.org.reactivestreams.reactive-streams.1.0-b58b9bc35a4e1a74 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.rest.handler-8d1aec4aea85fc8e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.security-2d6fc057b2b6172c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.security.authentication-6623a069c33c5778 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.security.impl-c0196b7635519e5b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.adaptable.module-d193330201a8bc44 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.anno-9b254ddbce79a975 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.app.manager-b2135968a1d4f442 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.app.manager.lifecycle-34c625553449efde +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.app.manager.module-b83da2c1a8fe06d1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.app.manager.ready-098086dd3d8df3a3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.app.manager.wab.jakarta-99f6997896fda028 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.app.manager.war.jakarta-2c425a89cc925a53 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact-b7b24dc61fcbabde +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact.bundle-7ca57299f4ce7827 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact.equinox.module-95cb364cc6fdeb96 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact.file-98f364289079cd2b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact.loose-dcb472bff679f387 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact.overlay-52e797606b454ca3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact.url-e2baf4271fb4cdcb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact.zip-327efb05b0ed769a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.cdi.interfaces.jakarta-04ae30f55385e266 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.cdi.internal.jakarta-b074d85e1d289f1c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.cdi.jndi.jakarta-5828db872bd83d8d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.cdi.transaction.jakarta-cca3ac184a383b1a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.cdi.web.jakarta-11311d79d2229e78 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.cdi.weld.jakarta-3fb2f035da57ce2b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.channel.ssl-8d1607111dc76bf7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.channelfw-66b968e18db97e3f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.classloader.context-cef214e61d25941e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.classloading-450cd0896f16afba +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.classloading.configuration-bbede9faa7a4ef54 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.collector.manager-a105a18389d8c866 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.config-61e900efa362f9e1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.config.schemagen-5b76b2736b884d7f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.config.schemagen.schemagen-1e60349c3d000cd5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen-94107ffafc593492 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen.serverschemagen-216aa4500d7ed9bf +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen.serverschemagen-1fed813f3c643120 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.container.service-260b772a916e1f2e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.context-922a1685924c2e6b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.crypto.certificate.creator.selfsigned-cb1e6649f2a5d34a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.crypto.certificateutil-12307a2b3786915d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.crypto.ltpakeyutil-4b995684ce6a3be1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.crypto.passwordutil-459d93e4c1fee5fc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.diagnostics-3ce69f18c6c57288 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.dynacache.monitor-6d9200f29816f7ff +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.dynamic.bundle-08d6cd9d800f0b92 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.eba.wab.integrator-e0f862f96f48f23e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.event-9764d1dd8f849ae9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.http.plugin.merge-bc7d4d738b60c216 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.injection.jakarta-b9aa8a8ead0ffdfa +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.install-0ae3e531f18a4587 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.install.featureUtility-4071c9e1c073c1e5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.install.featureUtility.featureutil-8baec303d4720fdf +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.install.map-48c15cc676df1319 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd-bf6dfa85944c5918 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd.common-16857c35ba5e7e3a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd.ejb-7dcf65ebe120bcf4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.ddmodel-0e8d48788588149a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.metadata.context-5ca4d7a2c0d58f0f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.defaultresource-007af3d81d7f48a8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v7-da0ec5e73a05a42c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v7.jndi-8041251ba24ed52a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v8-6a88cbf3eaed3be1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.version-f3a507f45bcb3758 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.2.x.config-09182df796a8cd3c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.2.x.monitor.jakarta-faa672b91802dbce +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta-b09eadc72583ddc7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.jmx-191229ab7f2a419b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.jndi-104523a570fd0157 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.jndi.url.contexts-82055f4f911ddd86 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.jsonb.service-9834690d13a040c2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot-38c971b780108cd4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.archive-a0bf24de56dfbcf3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-launch-b56eff31af2b3397 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-server-05c89cd1d469dd04 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-server-cba6c2753995ba98 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.cmdline-81359e29cf6d4224 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.equinox.module-3c7f2e9024265206 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.feature-892614febcd1ae20 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.feature.featurelist-7eec3f00c5332c79 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.filemonitor-87273f3743c0754c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.instrument.check-04ae0a0c5ffc5c19 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.instrument.check-4a71efdb15f8f29b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.metatype.helper-22148fb06e54b25c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.service-eaf511615c27e802 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.logging-f5f0aa8c366d2ac0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel-0ab750de1add5f0e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel.binarylogviewer-c2f211fa6a49c56b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel.osgi-65135ef5c209f133 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.logging.osgi-54f6582cba8dbf38 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.managedobject-1981498e7cecd9ca +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.management.security-e1a35fbc676a3bb4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.microprofile.metrics.common-5269865d0e23c8d4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.monitor-c6fe46100ac575fb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jmx.api-7978c68156986b68 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jmx.core.whiteboard-d024df8930f6e14c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jndi.api-577ed84398f4dabd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jndi.core-52167c6e9be82da5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.util-7253c13a1b5cf358 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.fileupload.jakarta-d64e9df37e550aa3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.io-810c3481a6caaad2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.lang3-052888805a0ba73d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.felix.scr-b877b2749da70824 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.httpcomponents-0838e8dbedcbabcb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.coordinator-cae4dfa1a0a38c81 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.metatype-e23255d2a858b2a3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.region-a2e99083c724d408 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.glassfish.json.1.0-200bede0300ec3f9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.jandex-c79f42367d823002 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.jdeparser.1.0.0-1aa60d6e4bfef0f5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.logging-8dc23917d07e91e9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.joda.time.1.6.2-5a454c453f632e06 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.objectweb.asm-27b96bbbf02de19c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.slf4j.api-bf59116b0f585960 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.slf4j.jdk14-90998235881dddab +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.product.utility-0a677035ad8b6950 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.product.utility.productutil-2bb22c41f2f6d52f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.product.utility.productutil-42ba1f36b46a3a6a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.recoverylog-c1e8dd8d006d5bfd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.repository-052eacb4e345a6af +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.repository.liberty-b3fcdb956d882ddd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.repository.parsers-7936172742d614b5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.repository.resolver-ae97e246e90df2d3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.request.probes-f9d7dc75bc346030 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.resource-463ae47b7545e2c0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.rest.handler.jakarta-c0f39d8ab2cc8940 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.runtime.update-c1298107964cccd5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security-df4334c69aab9582 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader-b0f068fb82bfd1a3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader.auditreader-c61c4f9d07369217 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader.auditreader-8f344506f25c58af +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.authentication-3a8a7a13c07386b2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.authorization-a3796fae4626fb20 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.authorization.builtin-9a610721379b7e83 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.context-ee9fcf16b4c39d41 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.credentials-54204e2affa36dd6 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.credentials.ssotoken-5f5fa197584cf032 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.credentials.wscred-7d2973745a28b886 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.java2sec-e8286830825febc9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.kerberos.auth-8307eb5847190739 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.mp.jwt.proxy-8f00f2ec2e3f6b5b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.quickstart-2bd4ccbf2bffd031 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.ready.service-886a7e9cecc0f6d5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.registry-09a30f3c6fafe647 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.registry.basic-b27fa9bc88ae39a8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.token-67dbeeeb433ba94a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.token.ltpa-622231ba9c844d7f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.token.s4u2-d4ce9269292633b7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.utility-f53bcf3b45eef75f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.utility.securityutil-98d95b7cb8d7f646 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.utility.securityutil-ca8b9d721e9a1e1d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.serialization-f64d70a534b67721 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.session.jakarta-27113c1d16fd556f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.session.monitor-6df330efa7adaf70 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.ssl-5ec6a973db6a521a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.threading-04a82de306980599 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.timer-de9e29e7df6d7ef9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.transaction.context.jakarta-655cfebbb0413977 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.transaction.jakarta-8fb81778b3027ede +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.transport.http-9ecc2b0be781ef45 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.tx.embeddable.jakarta-6a0218b35e4c54bb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.tx.jta.extensions.jakarta-cc2e0c21ecbb7fd1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.cors.jakarta-19e84b0297f47f72 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.jakarta-57169466f7c5ad89 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.monitor.jakarta-42a0bfb4d82d0246 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.security.admin-cac3f63abeadad89 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.security.feature-4219f8419578111a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.servlet.3.1.jakarta-ecc39995894e0901 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.servlet.4.0.jakarta-ee075dcb42a7385a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.runtime.interfaces-d8f7c7f67ed53663 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.runtime.jakarta-7ff3c6a91e9abb3c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility-00312ca50eae702c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility.webserverPluginutil-c06c8f49c4752a37 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility.webserverPluginutil-5fc7d895c5805927 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.wsbytebuffer-d6d7aedfbda2c7a6 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.core-cc10e4e4ad879773 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.namespace.service-933eff1b00233d81 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.cm-e580e9d14c9a9896 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.component-3f51d271514f2837 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.component.annotations-c04b9599d1184dc9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.coordinator-3c4d4100ae462734 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.event-b4eae56772edbbe1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.log-01f1ee8c9ddfe34c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.metatype-dba6e3c5aebc2417 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.metatype.annotations-57608e27b67eb2a0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.thirdparty.equinox-f00552568d914797 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-crit-9d9ae1c0b26b6359 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-crit-93303bae4b0d7b38 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-cryptsetup-libs-a97447baebc7eca3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-curl-2ac75dd8cdd82d1d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dbus-1cb6510238ba5dd8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dbus-glib-93aad31cdc4b7d7c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dbus-libs-6491607d041784b9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-dbus-python-9a2539d64666884c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-decorator-64ad1a0dc4b7f605 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-device-mapper-libs-c05ce4d7f437decf +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dnf-4418429efe47422c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dnf-data-33e095fce1938853 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-elfutils-default-yama-scope-8056e0aae345bdf9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-elfutils-libelf-1490683b1177d120 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-elfutils-libs-62f17b42f3fcff45 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-ethtool-47e0eb55544e9981 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-expat-580d0138d97ae889 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-file-libs-a73849bc58ff0d0c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-filesystem-179398b43587ad72 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-findutils-0c5e4ad061cf8e7d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-fontpackages-filesystem-f296bbcdecba4614 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gawk-92ce7936acd8b933 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gdb-gdbserver-b09f80b040ee2d01 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gdbm-5f248ec8dffe726e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gdbm-libs-a01746ed3caeb940 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-glib2-a1907d769a35de0a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-glibc-f7093d600015666c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-glibc-minimal-langpack-a4d2f9b09ae44069 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-gpg-176c74855eaee639 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gpg-pubkey-fd1087723a227e81 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gpg-pubkey-f11cf456670bc682 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-grep-0328ffc80d53f10e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-guide-getting-started-0470a2ffe7a4f194 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gzip-96776ea0534048fb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-idna-df327da7f0a4a959 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-ima-evm-utils-dfd6cbe7443a229f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-info-e9f510b787e0ecc0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-iniparse-b1ac8ab06cf60d46 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.accesslists.internal-348779c8b4c0f3c7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.interfaces-c16434037d8f3889 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.services.fragment-edeab00c7cfe155f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.web-f67ab33a049816c4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.weld-48ed937a7e69e891 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.thirdparty-c560a9497a9dc8cb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.cdi.spi-5769548082bfa726 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.checkpoint-8a542215f307aab5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.dynacache.internal-3679127cfbf6d051 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.el.internal.cdi.jakarta-62e27c792932b3ae +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.endpoint-f29f09d31d83d248 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.io.micrometer-fb2cb7cf2d6ef540 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.io.netty-b10b2643bdb5f826 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.io.netty.ssl-77a0ac5be06a4317 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.io.smallrye.common.jakarta-1f8abfb0200823fe +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.io.smallrye.config.jakarta-a6c64dde369a4bd1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.io.smallrye.metrics-1981bbe28a0d2bf1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.activation.2.1-a0e0435368e50251 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.annotation.2.1-b6edbcb5e9053be2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.cdi.4.0-00400792c1da6a4a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.connectors.2.1-e76868f2573e0ea9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.enterpriseBeans.4.0-2e6d7754bdcf7906 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.expressionLanguage.5.0-d237df2857b8cf70 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.interceptor.2.1-78069b28c25a1408 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.jsonb.3.0-9dd0dc9b16e624f7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.jsonp.2.1-a9f126779846a343 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.mail.2.1-2ab37d9ff119e432 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.pages.3.1-128193a06618afaf +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.persistence.3.1-52af0fd25b633d19 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.persistence.api.3.1-ca362583b374a441 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.restfulWS.3.1-7ccdfa2119281541 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.servlet.6.0-4b40cefce58f0cac +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.soap.3.0-4d1af385604efc57 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.transaction.2.0-de6a4493c1f4ec7b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.validation.3.0-27e05000e02b06ac +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.xmlBinding.4.0-9f8511fbe5569dad +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.xmlWS.4.0-7e12bdbf180c8b67 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakartaee.platform.v10-20733c6463dd687a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakartaee.platform.v9-4281e9510ade84e9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.java11.internal-38ddfeb1154186b8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jaxrs30-e775cebf7062ff5c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jcache.internal-65a05a3bf42e0221 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.microprofile.config.internal.common-7354fb61a26e927e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.microprofile.config.internal.serverxml-6abea41833808907 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.microprofile.health.3.1.internal.jakarta-8dbab8314d5b8152 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.internal-aa29e6c851679007 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.monitor.internal-a00da8d5e98c46b3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.private.internal-6b73b703db0b4142 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.public.internal-ab489b83add53d04 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.netty.internal-bf9bec02f2693337 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.netty.internal.tls.impl-618277a2b604b791 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.apache.commons.codec-a44140855947d054 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.apache.commons.logging-31c3e284ec109962 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.eclipse.angus.activation-83344f32bf0da0b4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.config.3.0-e6925c5839937e85 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.health.4.0-de255c121c78305a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.metrics.5.0-fcb825d727397a08 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.eclipse.parsson.1.1-1bb0c08cba48bbd4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.eclipse.persistence-3.1-012f8ad4fa8efe92 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.eclipse.yasson.3.0-882143b6eaf54e26 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.glassfish.hk2.osgi-resource-locator-2dd36d13eb338803 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.jboss.classfilewriter.1.3-2400266da2e70a6d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.jboss.logging35-6f5042d0577c4190 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.cdi.ee10-e78953ee8df3990f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.common.ee10-5dc2391a0014e80d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.server.ee10-be66d3c87069f1f6 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.jboss.weld5-42d3117b8c69897a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.jboss.weld5.se-fbad8c9ad57d9307 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.restfulWS.internal.ssl-83e65ff9b0b27acb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.restfulWS.mpMetrics.filter-b921929bb8e9c339 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.restfulWS30.jsonb20provider-79b622081ee5a476 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.security-338956fc7ac5ebb9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.builtin-5463bf749e0971ce +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.filter-ad8eaf70eb144d78 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.tai-13af1a248263e9c5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.security.jaas.internal.common-99399c598d276da1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.security.sso.internal-d6187fd248cce2ce +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.session.6.0.internal-1c350314002feaf1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.transaction-8a165dac8620c5e9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.transaction.internal.cdi20.jakarta-b5fc44809a53b473 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.webcontainer.security.internal-3d1dbec5aaae7993 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.webcontainer.servlet.6.0.internal-dbeb836c22275336 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.webcontainer.servlet.6.0.internal.factories-54be295232b23485 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.wsoc.ssl.internal-8e0e00ee38279d62 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-iptables-48db2896eea2df43 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-jansson-a6e466f321d3c5ff +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-binary-java-d9e23e0b1de302e4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-jrt-fs-b5a4068828245f9c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-json-c-399cffcbd42f5af6 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-json-glib-fb5800e4b9214ebd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-keyutils-libs-885dca71d492333b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-kmod-libs-dce662a72db32ee1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-langpacks-en-b921e0dabe7fe84e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libacl-1e60fab75e8d074c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libarchive-d2fcf670d209798e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libassuan-9166c1f313ff431e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libattr-d77f66c9b8b51965 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libblkid-2984dcc387f1f22a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libcap-d894483b6c7ea20c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libcap-ng-51cf02126f09a3ef +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libcom-err-5810f3c8a99f4bcd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-libcomps-08b412214951d9e5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libcomps-a4decf888fcc52e4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libcurl-be0041c760e1b43f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libdb-cdeffe58cdcf475e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libdnf-f386d34765ff5f46 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libfdisk-14aa4da39dcdd70b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libffi-28487ffb13452c88 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libgcrypt-65b56d43de84072c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libidn2-2ad5f614b681561b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libmnl-b714cde5e9c0a3f9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libmodulemd-9c9ffed1c422836c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libmount-070a612d83e6848e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libnet-f53795cb57509559 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libnetfilter-conntrack-830c21345b7e5867 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libnfnetlink-d0dd7b9ce7180a33 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libnftnl-e5ed9cb81779a0d2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libnghttp2-6b719eae4b2d0223 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libnsl2-ec79fbc521155d21 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libpcap-66241757d50be997 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libpng-d91e6e2416007afb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libpsl-fac4c11e752b3ddd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-librepo-4cd2e86c97c4754a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libreport-filesystem-279179905ddc5197 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-librhsm-a49d331240abf19b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libseccomp-9637380e6a0d0e55 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libselinux-594107f6b62dc4ab +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libsepol-26ec304cd5fb1c60 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libsigsegv-27b4d892ad295940 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libsmartcols-cfc1b4c97bd0b1f9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libsolv-8b6446e1aef0cb45 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libssh-8cb077ad4f6fdfd4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libssh-config-b52f1724c9af9daa +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libstdc---185db1d2fd55071b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libtasn1-ce90f646db4cd13d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libtirpc-8061da9a912f4b51 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libunistring-831f91ebad44f2ec +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libusbx-703f02296551e01f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libuser-278d0e03d58177c9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libutempter-3b10d50d8648cfcf +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libuuid-6320b104102d68ba +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libverto-75c996841840f97a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libxml2-fda5b57dbb69e8e7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libyaml-d3d578fd9d7e0485 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libzstd-ae3b0f6ebfec6dfc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-lua-libs-1f0da6c7eb5408a0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-lz4-libs-fab834f3c05b83f6 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-mpfr-1a8596f0e80a7465 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-nettle-446fa052fc193975 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-npth-9ce2662d05a994e8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-org.eclipse.osgi-98c62e474bd18238 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-pam-c80e5763b488aaab +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-passwd-d530074a47793db2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-pcre-39055d7c30264ebc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-pcre2-3da25cce088d6f35 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-platform-python-8a561c12847b8113 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-popt-0b3935dae763295c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-protobuf-c-caf48a448cb494cc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-publicsuffix-list-dafsa-214d24ff5f54adcf +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-pyinotify-2cc0497e30b46d84 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-python-dateutil-509a860043c6af7b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-python-dmidecode-9f1510382966a14d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-librepo-0b6f4113629057b0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-pip-wheel-468c6d9b2ca975d4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-rpm-a39252013797a252 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-setuptools-wheel-33a76a121de2018e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-readline-c5d42f4c234235ee +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-requests-69c379e96a25693b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-rpm-a5c78e59349331b5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-rpm-544fe79948a81a2a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-rpm-build-libs-f8e876f78b1b0978 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-rpm-libs-d493d01c7fe718f9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-sed-fe812e7e94487ede +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-setup-f479bfae76b76a21 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-setuptools-70ad73e984ff17a3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-six-e4e7ee91fea80cd9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-sqlite-libs-3c14677b35b16020 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-subscription-manager-7276605e595d4096 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-subscription-manager-rhsm-certificates-7c18b7dbf0061f93 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-syspurpose-c2c79d0712654121 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-systemd-04d6184674b39275 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-systemd-pam-b5bc31dd627a1038 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-systemd-python-7d3d321f514748f5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-tar-fb2eb771609ce85a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-urllib3-8ede639981c11081 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-usermode-8ab8e85f37f04064 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-util-linux-bf827b267d474173 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-vim-minimal-b0b67d2d41e3e7c7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-virt-what-3a5a55ee259fe7fc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-which-2a569468adbfddc1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-auditreader-2cb4d0d746cdae86 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-auditreader-f510d73363ff9447 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-binarylogviewer-ad2bec3dc6b298dd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-featureUtility-1c587851fc967577 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-featurelist-db745e443214a1e2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-javaagent-286db1a1f1423963 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-launch-22d346fb8340a3c1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-productutil-b3b1a307ad9a854d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-productutil-af521fee7557a77b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-schemagen-2643abaf60e0638d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-securityutil-248c284f10d70274 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-securityutil-df187fb4fe4c3522 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-server-c24a2dabb7438137 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-server-e4dbd36ed2832fe2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-serverSchemagen-03f4a941773d92c5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-serverSchemagen-9b02db7a319b708c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-webserverPluginutil-5138594310b74d46 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-webserverPluginutil-1733bf66d2879f15 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-xz-libs-284770d9f31d73af +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-yum-b9a4eb0f7c61e467 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-zlib-c03c984064097e8d +Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties diff --git a/dev/crate/alter_table b/dev/crate/alter_table new file mode 100755 index 0000000..7a67685 --- /dev/null +++ b/dev/crate/alter_table @@ -0,0 +1 @@ +ALTER TABLE iss SET ("blocks.read_only_allow_delete" = FALSE) diff --git a/dev/crate/catalog-info.yaml b/dev/crate/catalog-info.yaml new file mode 100644 index 0000000..8871127 --- /dev/null +++ b/dev/crate/catalog-info.yaml @@ -0,0 +1,10 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-crate + title: Crate (dev) +spec: + type: service + lifecycle: production + owner: allarddcs + subcomponentOf: component:default/DEV-cluster diff --git a/dev/crate/controler.yaml b/dev/crate/controler.yaml new file mode 100755 index 0000000..8471bb5 --- /dev/null +++ b/dev/crate/controler.yaml @@ -0,0 +1,97 @@ +kind: StatefulSet +apiVersion: "apps/v1" +metadata: + # This is the name used as a prefix for all pods in the set. + name: crate +spec: + serviceName: "crate-set" + # Our cluster has three nodes. + replicas: 3 + selector: + matchLabels: + # The pods in this cluster have the `app:crate` app label. + app: crate + template: + metadata: + labels: + app: crate + spec: + # InitContainers run before the main containers of a pod are + # started, and they must terminate before the primary containers + # are initialized. Here, we use one to set the correct memory + # map limit. + initContainers: + - name: init-sysctl + image: busybox + imagePullPolicy: IfNotPresent + command: ["sysctl", "-w", "vm.max_map_count=262144"] + securityContext: + privileged: true + # This final section is the core of the StatefulSet configuration. + # It defines the container to run in each pod. + containers: + - name: crate + # Use the CrateDB 5.1.1 Docker image. + image: crate:5.1.1 + # Pass in configuration to CrateDB via command-line options. + # We are setting the name of the node's explicitly, which is + # needed to determine the initial master nodes. These are set to + # the name of the pod. + # We are using the SRV records provided by Kubernetes to discover + # nodes within the cluster. + args: + - -Cnode.name=${POD_NAME} + - -Ccluster.name=${CLUSTER_NAME} + - -Ccluster.initial_master_nodes=crate-0,crate-1,crate-2 + - -Cdiscovery.seed_providers=srv + - -Cdiscovery.srv.query=_crate-internal._tcp.crate-internal-service.${NAMESPACE}.svc.cluster.local + - -Cgateway.recover_after_data_nodes=2 + - -Cgateway.expected_data_nodes=${EXPECTED_NODES} + - -Cpath.data=/data + volumeMounts: + # Mount the `/data` directory as a volume named `data`. + - mountPath: /data + name: data + resources: + limits: + # How much memory each pod gets. + memory: 512Mi + ports: + # Port 4300 for inter-node communication. + - containerPort: 4300 + name: crate-internal + # Port 4200 for HTTP clients. + - containerPort: 4200 + name: crate-web + # Port 5432 for PostgreSQL wire protocol clients. + - containerPort: 5432 + name: postgres + # Environment variables passed through to the container. + env: + # This is variable is detected by CrateDB. + - name: CRATE_HEAP_SIZE + value: "256m" + # The rest of these variables are used in the command-line + # options. + - name: EXPECTED_NODES + value: "3" + - name: CLUSTER_NAME + value: "my-crate" + - name: POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + volumeClaimTemplates: + # Use persistent storage. + - metadata: + name: data + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi diff --git a/dev/crate/crate-storage.yaml b/dev/crate/crate-storage.yaml new file mode 100755 index 0000000..1b5c979 --- /dev/null +++ b/dev/crate/crate-storage.yaml @@ -0,0 +1,98 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: crate-pv-0 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/crate/crate-0 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: crate-pv-1 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/crate/crate-1 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: crate-pv-2 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/crate/crate-2 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: data-crate-0 +spec: + storageClassName: "" + volumeName: crate-pv-0 + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: data-crate-1 +spec: + storageClassName: "" + volumeName: crate-pv-1 + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: data-crate-2 +spec: + storageClassName: "" + volumeName: crate-pv-2 + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi diff --git a/dev/crate/create-table b/dev/crate/create-table new file mode 100755 index 0000000..6bab578 --- /dev/null +++ b/dev/crate/create-table @@ -0,0 +1,4 @@ +CREATE TABLE iss ( + timestamp TIMESTAMP GENERATED ALWAYS AS CURRENT_TIMESTAMP, + position GEO_POINT + ); diff --git a/dev/crate/external-service.yaml b/dev/crate/external-service.yaml new file mode 100755 index 0000000..5a35135 --- /dev/null +++ b/dev/crate/external-service.yaml @@ -0,0 +1,19 @@ +kind: Service +apiVersion: v1 +metadata: + name: crate-external-service + labels: + app: crate +spec: + # Create an externally reachable load balancer. + type: LoadBalancer + ports: + # Port 4200 for HTTP clients. + - port: 4200 + name: crate-web + # Port 5432 for PostgreSQL wire protocol clients. + - port: 5432 + name: postgres + selector: + # Apply this to all nodes with the `app:crate` label. + app: crate diff --git a/dev/crate/ingressroute-tls.yaml b/dev/crate/ingressroute-tls.yaml new file mode 100755 index 0000000..0dc515d --- /dev/null +++ b/dev/crate/ingressroute-tls.yaml @@ -0,0 +1,15 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: cratedb-tls +spec: + entryPoints: + - websecure + routes: + - match: Host(`cratedb.alldcs.nl`) + kind: Rule + services: + - name: crate-ui + port: 4200 + tls: + certResolver: letsencrypt diff --git a/dev/crate/internal-service.yaml b/dev/crate/internal-service.yaml new file mode 100755 index 0000000..3d9afed --- /dev/null +++ b/dev/crate/internal-service.yaml @@ -0,0 +1,36 @@ +kind: Service +apiVersion: v1 +metadata: + name: crate-internal-service + labels: + app: crate +spec: + # A static IP address is assigned to this service. This IP address is + # only reachable from within the Kubernetes cluster. + type: ClusterIP + ports: + # Port 4300 for inter-node communication. + - port: 4300 + name: crate-internal + selector: + # Apply this to all nodes with the `app:crate` label. + app: crate +--- +kind: Service +apiVersion: v1 +metadata: + name: crate-ui + labels: + app: crate +spec: + # A static IP address is assigned to this service. This IP address is + # only reachable from within the Kubernetes cluster. + type: ClusterIP + ports: + # Port 4300 for inter-node communication. + - port: 4200 + name: crate-web + selector: + # Apply this to all nodes with the `app:crate` label. + app: crate + diff --git a/dev/crate/iss.sh b/dev/crate/iss.sh new file mode 100755 index 0000000..2b31896 --- /dev/null +++ b/dev/crate/iss.sh @@ -0,0 +1,20 @@ +# Exit immediately if a pipeline returns a non-zero status +set -e + +position () { + curl -s http://api.open-notify.org/iss-now.json | + jq -r '[.iss_position.longitude, .iss_position.latitude] | @tsv'; +} + +wkt_position () { + echo "POINT ($(position | expand -t 1))"; +} + +while true; do + crash --hosts 192.168.40.81:4200 \ + --command "INSERT INTO iss (position) VALUES ('$(wkt_position)')" + echo 'Sleeping for 1 seconds...' + sleep 10 +done + + diff --git a/dev/crate/select b/dev/crate/select new file mode 100755 index 0000000..44ae078 --- /dev/null +++ b/dev/crate/select @@ -0,0 +1 @@ +SELECT "timestamp", "position" FROM "doc"."iss" LIMIT 1000; diff --git a/dev/defectdojo/catalog-info.yaml b/dev/defectdojo/catalog-info.yaml new file mode 100644 index 0000000..38a1679 --- /dev/null +++ b/dev/defectdojo/catalog-info.yaml @@ -0,0 +1,16 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-defectdojo + title: Defectdojo (dev) + annotations: + backstage.io/kubernetes-label-selector: "app=defectdojo" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/defectdojo + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: allarddcs + subcomponentOf: component:default/DEV-cluster diff --git a/dev/defectdojo/helm/README.md b/dev/defectdojo/helm/README.md new file mode 100755 index 0000000..e8c8e36 --- /dev/null +++ b/dev/defectdojo/helm/README.md @@ -0,0 +1,42 @@ +#Installatie + +https://epam.github.io/edp-install/operator-guide/install-defectdojo/ + + +kubectl create namespace defectdojo + +helm repo add defectdojo 'https://raw.githubusercontent.com/DefectDojo/django-DefectDojo/helm-charts' +helm repo update + +Create PostgreSQL admin secret: + + +kubectl -n defectdojo create secret generic defectdojo-postgresql-specific \ +--from-literal=postgresql-password=defectdojodefect \ +--from-literal=postgresql-postgres-password=defectdojodefect + +Create Rabbitmq admin secret: + + +kubectl -n defectdojo create secret generic defectdojo-rabbitmq-specific \ +--from-literal=rabbitmq-password=defectdojo \ +--from-literal=rabbitmq-erlang-cookie=defectdojodefectdojodefectdojojo + +Create DefectDojo admin secret: + + +kubectl -n defectdojo create secret generic defectdojo \ +--from-literal=DD_ADMIN_PASSWORD=defectdojodefectdojojo \ +--from-literal=DD_SECRET_KEY=defectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefecdojojo \ +--from-literal=DD_CREDENTIAL_AES_256_KEY=defectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefecdojojo \ +--from-literal=METRICS_HTTP_AUTH_PASSWORD=defectdojodefectdojodefectdojojo + +Install DefectDojo v.2.22.4 using defectdojo/defectdojo Helm chart v.1.6.69: + + +helm upgrade --install \ +defectdojo \ +--version 1.6.69 \ +defectdojo/defectdojo \ +--namespace defectdojo \ +--values values.yaml diff --git a/dev/defectdojo/helm/defectdojo-helm.yaml b/dev/defectdojo/helm/defectdojo-helm.yaml new file mode 100644 index 0000000..98e0bcd --- /dev/null +++ b/dev/defectdojo/helm/defectdojo-helm.yaml @@ -0,0 +1,1060 @@ +--- +# Source: defectdojo/charts/rabbitmq/templates/serviceaccount.yaml +apiVersion: v1 +kind: ServiceAccount +metadata: + name: defectdojo-rabbitmq + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +automountServiceAccountToken: true +secrets: + - name: defectdojo-rabbitmq +--- +# Source: defectdojo/charts/rabbitmq/templates/config-secret.yaml +apiVersion: v1 +kind: Secret +metadata: + name: defectdojo-rabbitmq-config + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +type: Opaque +data: + rabbitmq.conf: |- + IyMgVXNlcm5hbWUgYW5kIHBhc3N3b3JkCiMjCmRlZmF1bHRfdXNlciA9IHVzZXIKIyMgQ2x1c3RlcmluZwojIwpjbHVzdGVyX2Zvcm1hdGlvbi5wZWVyX2Rpc2NvdmVyeV9iYWNrZW5kICA9IHJhYmJpdF9wZWVyX2Rpc2NvdmVyeV9rOHMKY2x1c3Rlcl9mb3JtYXRpb24uazhzLmhvc3QgPSBrdWJlcm5ldGVzLmRlZmF1bHQKY2x1c3Rlcl9mb3JtYXRpb24ubm9kZV9jbGVhbnVwLmludGVydmFsID0gMTAKY2x1c3Rlcl9mb3JtYXRpb24ubm9kZV9jbGVhbnVwLm9ubHlfbG9nX3dhcm5pbmcgPSB0cnVlCmNsdXN0ZXJfcGFydGl0aW9uX2hhbmRsaW5nID0gYXV0b2hlYWwKIyBxdWV1ZSBtYXN0ZXIgbG9jYXRvcgpxdWV1ZV9tYXN0ZXJfbG9jYXRvciA9IG1pbi1tYXN0ZXJzCiMgZW5hYmxlIGd1ZXN0IHVzZXIKbG9vcGJhY2tfdXNlcnMuZ3Vlc3QgPSBmYWxzZQojZGVmYXVsdF92aG9zdCA9IGRlZmVjdGRvam8tdmhvc3QKI2Rpc2tfZnJlZV9saW1pdC5hYnNvbHV0ZSA9IDUwTUIKIyMgTWVtb3J5IFRocmVzaG9sZAojIwp0b3RhbF9tZW1vcnlfYXZhaWxhYmxlX292ZXJyaWRlX3ZhbHVlID0gNTM2ODcwOTEyCnZtX21lbW9yeV9oaWdoX3dhdGVybWFyay5yZWxhdGl2ZSA9IDAuNQ== +--- +# Source: defectdojo/templates/configmap.yaml +apiVersion: v1 +kind: ConfigMap +metadata: + name: defectdojo + labels: + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +data: + DD_ADMIN_USER: admin + DD_ADMIN_MAIL: admin@defectdojo.local + DD_ADMIN_FIRST_NAME: Admin + DD_ADMIN_LAST_NAME: User + DD_ALLOWED_HOSTS: defectdojo.default.minikube.local + DD_SITE_URL: http://localhost:8080 + DD_CELERY_BROKER_SCHEME: amqp + DD_CELERY_BROKER_USER: 'user' + DD_CELERY_BROKER_HOST: defectdojo-rabbitmq + DD_CELERY_BROKER_PORT: '5672' + DD_CELERY_BROKER_PARAMS: '' + DD_CELERY_BROKER_PATH: '//' + DD_CELERY_LOG_LEVEL: INFO + DD_CELERY_WORKER_POOL_TYPE: solo + DD_CELERY_WORKER_AUTOSCALE_MIN: '' + DD_CELERY_WORKER_AUTOSCALE_MAX: '' + DD_CELERY_WORKER_CONCURRENCY: '' + DD_CELERY_WORKER_PREFETCH_MULTIPLIER: '' + DD_DATABASE_ENGINE: django.db.backends.postgresql + DD_DATABASE_HOST: defectdojo-postgresql + DD_DATABASE_PORT: '5432' + DD_DATABASE_USER: defectdojo + DD_DATABASE_NAME: defectdojo + DD_INITIALIZE: 'true' + DD_UWSGI_ENDPOINT: /run/defectdojo/uwsgi.sock + DD_UWSGI_HOST: localhost + DD_UWSGI_PASS: unix:///run/defectdojo/uwsgi.sock + DD_UWSGI_NUM_OF_PROCESSES: '2' + DD_UWSGI_NUM_OF_THREADS: '2' + DD_DJANGO_METRICS_ENABLED: 'false' + NGINX_METRICS_ENABLED: 'false' + METRICS_HTTP_AUTH_USER: monitoring +--- +# Source: defectdojo/charts/rabbitmq/templates/role.yaml +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: defectdojo-rabbitmq-endpoint-reader + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +rules: + - apiGroups: [""] + resources: ["endpoints"] + verbs: ["get"] + - apiGroups: [""] + resources: ["events"] + verbs: ["create"] +--- +# Source: defectdojo/charts/rabbitmq/templates/rolebinding.yaml +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: defectdojo-rabbitmq-endpoint-reader + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +subjects: + - kind: ServiceAccount + name: defectdojo-rabbitmq +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: defectdojo-rabbitmq-endpoint-reader +--- +# Source: defectdojo/charts/postgresql/templates/primary/svc-headless.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-postgresql-hl + namespace: "defectdojo" + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + # Use this annotation in addition to the actual publishNotReadyAddresses + # field below because the annotation will stop being respected soon but the + # field is broken in some versions of Kubernetes: + # https://github.com/kubernetes/kubernetes/issues/58662 + service.alpha.kubernetes.io/tolerate-unready-endpoints: "true" +spec: + type: ClusterIP + clusterIP: None + # We want all pods in the StatefulSet to have their addresses published for + # the sake of the other Postgresql pods even before they're ready, since they + # have to be able to talk to each other in order to become ready. + publishNotReadyAddresses: true + ports: + - name: tcp-postgresql + port: 5432 + targetPort: tcp-postgresql + selector: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary +--- +# Source: defectdojo/charts/postgresql/templates/primary/svc.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-postgresql + namespace: "defectdojo" + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + annotations: +spec: + type: ClusterIP + sessionAffinity: None + ports: + - name: tcp-postgresql + port: 5432 + targetPort: tcp-postgresql + nodePort: null + selector: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary +--- +# Source: defectdojo/charts/rabbitmq/templates/svc-headless.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-rabbitmq-headless + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +spec: + clusterIP: None + ports: + - name: epmd + port: 4369 + targetPort: epmd + - name: amqp + port: 5672 + targetPort: amqp + - name: dist + port: 25672 + targetPort: dist + - name: http-stats + port: 15672 + targetPort: stats + selector: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + publishNotReadyAddresses: true +--- +# Source: defectdojo/charts/rabbitmq/templates/svc.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-rabbitmq + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +spec: + type: ClusterIP + sessionAffinity: None + ports: + - name: amqp + port: 5672 + targetPort: amqp + nodePort: null + - name: epmd + port: 4369 + targetPort: epmd + nodePort: null + - name: dist + port: 25672 + targetPort: dist + nodePort: null + - name: http-stats + port: 15672 + targetPort: stats + nodePort: null + selector: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo +--- +# Source: defectdojo/templates/django-service.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-django + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + selector: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + ports: + - name: http + protocol: TCP + port: 80 + targetPort: http +--- +# Source: defectdojo/templates/celery-beat-deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: defectdojo-celery-beat + labels: + defectdojo.org/component: celery + defectdojo.org/subcomponent: beat + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + replicas: 1 + selector: + matchLabels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + volumes: + - name: run + emptyDir: {} + containers: + - command: + - /entrypoint-celery-beat.sh + name: celery + image: "allardkrings/defectdojo-django:1.0" + imagePullPolicy: IfNotPresent + securityContext: + runAsUser: 1001 + volumeMounts: + - name: run + mountPath: /run/defectdojo + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo-extrasecrets + optional: true + env: + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + resources: + limits: + cpu: 2000m + memory: 256Mi + requests: + cpu: 100m + memory: 128Mi +--- +# Source: defectdojo/templates/celery-worker-deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: defectdojo-celery-worker + labels: + defectdojo.org/component: celery + defectdojo.org/subcomponent: worker + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + replicas: 1 + selector: + matchLabels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + volumes: + containers: + - name: celery + image: "allardkrings/defectdojo-django:1.0" + imagePullPolicy: IfNotPresent + securityContext: + runAsUser: 1001 + command: ['/entrypoint-celery-worker.sh'] + volumeMounts: + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo-extrasecrets + optional: true + env: + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + resources: + limits: + cpu: 2000m + memory: 512Mi + requests: + cpu: 100m + memory: 128Mi +--- +# Source: defectdojo/templates/django-deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: defectdojo-django + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + replicas: 1 + selector: + matchLabels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + securityContext: + fsGroup: 1001 + volumes: + - name: run + emptyDir: {} + - name: media + emptyDir: {} + containers: + - name: uwsgi + image: 'allardkrings/defectdojo-django:1.0' + imagePullPolicy: IfNotPresent + securityContext: + runAsUser: 1001 + volumeMounts: + - name: run + mountPath: /run/defectdojo + - name: media + mountPath: "/app/media" + ports: + - name: http-uwsgi + protocol: TCP + containerPort: 8081 + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo-extrasecrets + optional: true + env: + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + - name: DD_CREDENTIAL_AES_256_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_CREDENTIAL_AES_256_KEY + - name: DD_SESSION_COOKIE_SECURE + value: "True" + - name: DD_CSRF_COOKIE_SECURE + value: "True" + livenessProbe: + httpGet: + path: /login?force_login_form&next=/ + port: http-uwsgi + httpHeaders: + - name: Host + value: defectdojo.default.minikube.local + failureThreshold: 6 + initialDelaySeconds: 120 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + resources: + limits: + cpu: 2000m + memory: 512Mi + requests: + cpu: 100m + memory: 256Mi + - name: nginx + image: 'allardkrings/defectdojo-nginx:1.0' + imagePullPolicy: IfNotPresent + securityContext: + runAsUser: 1001 + volumeMounts: + - name: run + mountPath: /run/defectdojo + - name: media + mountPath: /usr/share/nginx/html/media + ports: + - name: http + protocol: TCP + containerPort: 8080 + envFrom: + - configMapRef: + name: defectdojo + env: + - name: METRICS_HTTP_AUTH_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo + key: METRICS_HTTP_AUTH_PASSWORD + - name: USE_TLS + value: 'false' + - name: GENERATE_TLS_CERTIFICATE + value: 'false' + livenessProbe: + httpGet: + path: /nginx_health + port: http + httpHeaders: + - name: Host + value: defectdojo.default.minikube.local + initialDelaySeconds: 10 + periodSeconds: 10 + failureThreshold: 6 + readinessProbe: + httpGet: + path: /uwsgi_health + port: http + httpHeaders: + - name: Host + value: defectdojo.default.minikube.local + failureThreshold: 6 + initialDelaySeconds: 120 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + resources: + limits: + cpu: 2000m + memory: 256Mi + requests: + cpu: 100m + memory: 128Mi +--- +# Source: defectdojo/charts/postgresql/templates/primary/statefulset.yaml +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: defectdojo-postgresql + namespace: "defectdojo" + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + annotations: +spec: + replicas: 1 + serviceName: defectdojo-postgresql-hl + updateStrategy: + rollingUpdate: {} + type: RollingUpdate + selector: + matchLabels: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary + template: + metadata: + name: defectdojo-postgresql + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + annotations: + spec: + serviceAccountName: default + affinity: + podAffinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchLabels: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary + namespaces: + - "defectdojo" + topologyKey: kubernetes.io/hostname + weight: 1 + nodeAffinity: + securityContext: + fsGroup: 1001 + hostNetwork: false + hostIPC: false + initContainers: + containers: + - name: postgresql + image: docker.io/bitnami/postgresql:11.16.0-debian-11-r9 + imagePullPolicy: "IfNotPresent" + securityContext: + runAsUser: 1001 + env: + - name: BITNAMI_DEBUG + value: "false" + - name: POSTGRESQL_PORT_NUMBER + value: "5432" + - name: POSTGRESQL_VOLUME_DIR + value: "/bitnami/postgresql" + - name: PGDATA + value: "/bitnami/postgresql/data" + # Authentication + - name: POSTGRES_USER + value: "defectdojo" + - name: POSTGRES_POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-postgres-password + - name: POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: POSTGRES_DB + value: "defectdojo" + # Replication + # Initdb + # Standby + # LDAP + - name: POSTGRESQL_ENABLE_LDAP + value: "no" + # TLS + - name: POSTGRESQL_ENABLE_TLS + value: "no" + # Audit + - name: POSTGRESQL_LOG_HOSTNAME + value: "false" + - name: POSTGRESQL_LOG_CONNECTIONS + value: "false" + - name: POSTGRESQL_LOG_DISCONNECTIONS + value: "false" + - name: POSTGRESQL_PGAUDIT_LOG_CATALOG + value: "off" + # Others + - name: POSTGRESQL_CLIENT_MIN_MESSAGES + value: "error" + - name: POSTGRESQL_SHARED_PRELOAD_LIBRARIES + value: "pgaudit" + ports: + - name: tcp-postgresql + containerPort: 5432 + livenessProbe: + failureThreshold: 6 + initialDelaySeconds: 30 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + exec: + command: + - /bin/sh + - -c + - exec pg_isready -U "defectdojo" -d "dbname=defectdojo" -h 127.0.0.1 -p 5432 + readinessProbe: + failureThreshold: 6 + initialDelaySeconds: 5 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + exec: + command: + - /bin/sh + - -c + - -e + - | + exec pg_isready -U "defectdojo" -d "dbname=defectdojo" -h 127.0.0.1 -p 5432 + [ -f /opt/bitnami/postgresql/tmp/.initialized ] || [ -f /bitnami/postgresql/.initialized ] + resources: + limits: {} + requests: + cpu: 250m + memory: 256Mi + volumeMounts: + - name: dshm + mountPath: /dev/shm + - name: data + mountPath: /bitnami/postgresql + volumes: + - name: dshm + emptyDir: + medium: Memory + volumeClaimTemplates: + - metadata: + name: data + spec: + accessModes: + - "ReadWriteOnce" + resources: + requests: + storage: "8Gi" +--- +# Source: defectdojo/charts/rabbitmq/templates/statefulset.yaml +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: defectdojo-rabbitmq + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +spec: + serviceName: defectdojo-rabbitmq-headless + podManagementPolicy: OrderedReady + replicas: 1 + updateStrategy: + type: RollingUpdate + selector: + matchLabels: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + annotations: + checksum/config: 208929eee544dead36ca3c947884b65e8ffb3c4e72fbf6721922c651640ffe3c + spec: + serviceAccountName: defectdojo-rabbitmq + affinity: + podAffinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchLabels: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + namespaces: + - "defectdojo" + topologyKey: kubernetes.io/hostname + weight: 1 + nodeAffinity: + securityContext: + fsGroup: 1001 + terminationGracePeriodSeconds: 120 + initContainers: + containers: + - name: rabbitmq + image: docker.io/bitnami/rabbitmq:3.11.5-debian-11-r2 + imagePullPolicy: "IfNotPresent" + securityContext: + runAsNonRoot: true + runAsUser: 1001 + lifecycle: + preStop: + exec: + command: + - /bin/bash + - -ec + - | + if [[ -f /opt/bitnami/scripts/rabbitmq/nodeshutdown.sh ]]; then + /opt/bitnami/scripts/rabbitmq/nodeshutdown.sh -t "120" -d "false" + else + rabbitmqctl stop_app + fi + env: + - name: BITNAMI_DEBUG + value: "false" + - name: MY_POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: MY_POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: MY_POD_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: K8S_SERVICE_NAME + value: defectdojo-rabbitmq-headless + - name: K8S_ADDRESS_TYPE + value: hostname + - name: RABBITMQ_FORCE_BOOT + value: "no" + - name: RABBITMQ_NODE_NAME + value: "rabbit@$(MY_POD_NAME).$(K8S_SERVICE_NAME).$(MY_POD_NAMESPACE).svc.cluster.local" + - name: K8S_HOSTNAME_SUFFIX + value: ".$(K8S_SERVICE_NAME).$(MY_POD_NAMESPACE).svc.cluster.local" + - name: RABBITMQ_MNESIA_DIR + value: "/bitnami/rabbitmq/mnesia/$(RABBITMQ_NODE_NAME)" + - name: RABBITMQ_LDAP_ENABLE + value: "no" + - name: RABBITMQ_LOGS + value: "-" + - name: RABBITMQ_ULIMIT_NOFILES + value: "65536" + - name: RABBITMQ_USE_LONGNAME + value: "true" + - name: RABBITMQ_ERL_COOKIE + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-erlang-cookie + - name: RABBITMQ_LOAD_DEFINITIONS + value: "no" + - name: RABBITMQ_DEFINITIONS_FILE + value: "/app/load_definition.json" + - name: RABBITMQ_SECURE_PASSWORD + value: "yes" + - name: RABBITMQ_USERNAME + value: "user" + - name: RABBITMQ_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: RABBITMQ_PLUGINS + value: "rabbitmq_management, rabbitmq_peer_discovery_k8s, rabbitmq_auth_backend_ldap" + envFrom: + ports: + - name: amqp + containerPort: 5672 + - name: dist + containerPort: 25672 + - name: stats + containerPort: 15672 + - name: epmd + containerPort: 4369 + livenessProbe: + failureThreshold: 6 + initialDelaySeconds: 120 + periodSeconds: 30 + successThreshold: 1 + timeoutSeconds: 20 + exec: + command: + - /bin/bash + - -ec + - rabbitmq-diagnostics -q ping + readinessProbe: + failureThreshold: 3 + initialDelaySeconds: 10 + periodSeconds: 30 + successThreshold: 1 + timeoutSeconds: 20 + exec: + command: + - /bin/bash + - -ec + - rabbitmq-diagnostics -q check_running && rabbitmq-diagnostics -q check_local_alarms + resources: + limits: + cpu: 500m + memory: 512Mi + requests: + cpu: 100m + memory: 128Mi + volumeMounts: + - name: configuration + mountPath: /bitnami/rabbitmq/conf + - name: data + mountPath: /bitnami/rabbitmq/mnesia + volumes: + - name: configuration + secret: + secretName: defectdojo-rabbitmq-config + items: + - key: rabbitmq.conf + path: rabbitmq.conf + volumeClaimTemplates: + - metadata: + name: data + labels: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + spec: + accessModes: + - "ReadWriteOnce" + resources: + requests: + storage: "8Gi" +--- +# Source: defectdojo/templates/django-ingress.yaml +apiVersion: networking.k8s.io/v1beta1 +kind: Ingress +metadata: + name: defectdojo + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + tls: + - hosts: + - defectdojo.default.minikube.local + secretName: defectdojo-tls + rules: + - host: defectdojo.default.minikube.local + http: + paths: + - path: / + backend: + serviceName: defectdojo-django + servicePort: http +--- +# Source: defectdojo/templates/sa.yaml +kind: ServiceAccount +apiVersion: v1 +metadata: + name: defectdojo + labels: + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 + annotations: + helm.sh/resource-policy: keep + helm.sh/hook: "pre-install" + helm.sh/hook-delete-policy: "before-hook-creation" +--- +# Source: defectdojo/templates/tests/unit-tests.yaml +apiVersion: v1 +kind: Pod +metadata: + name: defectdojo-unit-tests + labels: + app.kubernetes.io/name: defectdojo + helm.sh/chart: defectdojo-1.6.112 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + annotations: + helm.sh/hook: test-success +spec: + serviceAccountName: defectdojo + containers: + - name: unit-tests + image: 'allardkrings/defectdojo-django:1.0' + imagePullPolicy: IfNotPresent + securityContext: + runAsUser: 1001 + command: ['/entrypoint-unit-tests.sh'] + envFrom: + - configMapRef: + name: defectdojo + env: + - name: DD_DATABASE_USER + value: defectdojo + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + # Use broker chart secret + # name: defectdojo-rabbitmq + # Use secret handled outside of the chart + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_DEBUG + value: 'True' + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + - name: DD_CREDENTIAL_AES_256_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_CREDENTIAL_AES_256_KEY + resources: + limits: + cpu: 500m + memory: 512Mi + requests: + cpu: 100m + memory: 128Mi + restartPolicy: Never +--- +# Source: defectdojo/templates/initializer-job.yaml +apiVersion: batch/v1 +kind: Job +metadata: + name: defectdojo-initializer-2024-05-19-12-59 + labels: + defectdojo.org/component: initializer + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 + annotations: + helm.sh/hook: post-install,post-upgrade +spec: + ttlSecondsAfterFinished: 60 + template: + metadata: + labels: + defectdojo.org/component: initializer + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + volumes: + containers: + - name: initializer + image: "allardkrings/defectdojo-django:1.0" + imagePullPolicy: IfNotPresent + securityContext: + runAsUser: 1001 + volumeMounts: + command: + - /entrypoint-initializer.sh + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo + env: + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + resources: + limits: + cpu: 2000m + memory: 512Mi + requests: + cpu: 100m + memory: 256Mi + restartPolicy: Never + backoffLimit: 1 diff --git a/dev/defectdojo/helm/defectdojo-secret.sh b/dev/defectdojo/helm/defectdojo-secret.sh new file mode 100755 index 0000000..6c2a236 --- /dev/null +++ b/dev/defectdojo/helm/defectdojo-secret.sh @@ -0,0 +1,5 @@ +microk8s kubectl -n defectdojo create secret generic defectdojo \ +--from-literal=DD_ADMIN_PASSWORD=defectdojodefectdojojo \ +--from-literal=DD_SECRET_KEY=defectdodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojo \ +--from-literal=DD_CREDENTIAL_AES_256_KEY=defectdodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojo \ +--from-literal=METRICS_HTTP_AUTH_PASSWORD=defectdojodefectdojodefectdojojo -n defectdojo diff --git a/dev/defectdojo/helm/ingressroute-http.yaml b/dev/defectdojo/helm/ingressroute-http.yaml new file mode 100755 index 0000000..7a5f0a7 --- /dev/null +++ b/dev/defectdojo/helm/ingressroute-http.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: defectdojo-http + namespace: defectdojo +spec: + entryPoints: + - web + routes: + - match: Host(`defectdojo-dev.allarddcs.nl`) + kind: Rule + services: + - name: defectdojo-django + port: 80 diff --git a/dev/defectdojo/helm/ingressroute-tls.yaml b/dev/defectdojo/helm/ingressroute-tls.yaml new file mode 100755 index 0000000..e90cd99 --- /dev/null +++ b/dev/defectdojo/helm/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: defectdojo-tls + namespace: defectdojo +spec: + entryPoints: + - websecure + routes: + - match: Host(`defectdojo-dev.allarddcs.nl`) + kind: Rule + services: + - name: defectdojo-django + port: 80 + tls: + certResolver: letsencrypt diff --git a/dev/defectdojo/helm/persistent-volumes.yaml b/dev/defectdojo/helm/persistent-volumes.yaml new file mode 100755 index 0000000..d727ade --- /dev/null +++ b/dev/defectdojo/helm/persistent-volumes.yaml @@ -0,0 +1,68 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: defectdojo-postgres-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/defectdojo/postgres + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: data-defectdojo-postgresql-0 + namespace: defectdojo +spec: + storageClassName: "" + volumeName: defectdojo-postgres-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: defectdojo-rabbitmq-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/defectdojo/rabbitmq + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: data-defectdojo-rabbitmq-0 + namespace: defectdojo +spec: + storageClassName: "" + volumeName: defectdojo-rabbitmq-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/dev/defectdojo/helm/postgres-secret.sh b/dev/defectdojo/helm/postgres-secret.sh new file mode 100755 index 0000000..85e04b2 --- /dev/null +++ b/dev/defectdojo/helm/postgres-secret.sh @@ -0,0 +1,3 @@ +microk8s kubectl -n defectdojo create secret generic defectdojo-postgresql-specific \ +--from-literal=postgresql-password=defectdojo \ +--from-literal=postgresql-postgres-password=defectdojo -n defectdojo diff --git a/dev/defectdojo/helm/rabbitmq-secret.sh b/dev/defectdojo/helm/rabbitmq-secret.sh new file mode 100755 index 0000000..e0a809c --- /dev/null +++ b/dev/defectdojo/helm/rabbitmq-secret.sh @@ -0,0 +1,3 @@ +microk8s kubectl -n defectdojo create secret generic defectdojo-rabbitmq-specific \ +--from-literal=rabbitmq-password=mqrabbitmq \ +--from-literal=rabbitmq-erlang-cookie=rabbitmqrabbitmqrabbitmqrabbitmq -n defectdojo diff --git a/dev/defectdojo/helm/values-complete.yaml b/dev/defectdojo/helm/values-complete.yaml new file mode 100755 index 0000000..321eadb --- /dev/null +++ b/dev/defectdojo/helm/values-complete.yaml @@ -0,0 +1,552 @@ +--- +# Global settings +# create defectdojo specific secret +createSecret: false +# create rabbitmq secret in defectdojo chart, outside of rabbitmq chart +createRabbitMqSecret: false +# create redis secret in defectdojo chart, outside of redis chart +createRedisSecret: false +# create mysql secret in defectdojo chart, outside of mysql chart +createMysqlSecret: false +# create postgresql secret in defectdojo chart, outside of postgresql chart +createPostgresqlSecret: false +# create postgresql-ha secret in defectdojo chart, outside of postgresql-ha chart +createPostgresqlHaSecret: false +# create postgresql-ha-pgpool secret in defectdojo chart, outside of postgresql-ha chart +createPostgresqlHaPgpoolSecret: false +# Track configuration (trackConfig): will automatically respin application pods in case of config changes detection +# can be: +# - disabled, default +# - enabled, enables tracking configuration changes based on SHA256 +# trackConfig: disabled + +# Enables application network policy +# For more info follow https://kubernetes.io/docs/concepts/services-networking/network-policies/ +networkPolicy: + enabled: false + # if additional labels need to be allowed (e.g. prometheus scraper) + ingressExtend: [] + # ingressExtend: + # - podSelector: + # matchLabels: + # app.kubernetes.io/instance: defectdojo-prometheus + egress: [] + # egress: + # - to: + # - ipBlock: + # cidr: 10.0.0.0/24 + # ports: + # - protocol: TCP + # port: 443 + +# Configuration value to select database type +# Option to use "postgresql" or "mysql" database type, by default "mysql" is chosen +# Set the "enable" field to true of the database type you select (if you want to use internal database) and false of the one you don't select +database: postgresql +# Primary hostname of instance +host: defectdojo.default.minikube.local + +# The full URL to your defectdojo instance, depends on the domain where DD is deployed, it also affects links in Jira +# site_url: 'https://' + +# optional list of alternative hostnames to use that gets appended to +# DD_ALLOWED_HOSTS. This is necessary when your local hostname does not match +# the global hostname. +# alternativeHosts: +# - defectdojo.example.com +imagePullPolicy: Always +# Where to pull the defectDojo images from. Defaults to "defectdojo/*" repositories on hub.docker.com +repositoryPrefix: defectdojo +# When using a private registry, name of the secret that holds the registry secret (eg deploy token from gitlab-ci project) +# Create secrets as: kubectl create secret docker-registry defectdojoregistrykey --docker-username=registry_username --docker-password=registry_password --docker-server='https://index.docker.io/v1/' +# imagePullSecrets: defectdojoregistrykey +tag: latest + +# Additional labels to add to the pods: +# podLabels: +# key: value +podLabels: {} + +# Allow overriding of revisionHistoryLimit across all deployments. +# revisionHistoryLimit: 10 + +securityContext: + enabled: true + djangoSecurityContext: + # django dockerfile sets USER=1001 + runAsUser: 1001 + nginxSecurityContext: + # nginx dockerfile sets USER=1001 + runAsUser: 1001 + +tests: + unitTests: + resources: + requests: + cpu: 100m + memory: 128Mi + limits: + cpu: 500m + memory: 512Mi + +admin: + user: admin + password: + firstName: Administrator + lastName: User + mail: admin@defectdojo.local + secretKey: + credentialAes256Key: + metricsHttpAuthPassword: + +monitoring: + enabled: false + # Add the nginx prometheus exporter sidecar + prometheus: + enabled: false + image: nginx/nginx-prometheus-exporter:0.11.0 + imagePullPolicy: IfNotPresent + +annotations: {} + +# Components +celery: + broker: rabbitmq + # To use an external celery broker, set the hostname here + brokerHost: "" + logLevel: INFO + beat: + annotations: {} + affinity: {} + nodeSelector: {} + replicas: 1 + resources: + requests: + cpu: 100m + memory: 128Mi + limits: + cpu: 2000m + memory: 256Mi + tolerations: [] + worker: + annotations: {} + affinity: {} + logLevel: INFO + nodeSelector: {} + replicas: 1 + resources: + requests: + cpu: 100m + memory: 128Mi + limits: + cpu: 2000m + memory: 512Mi + tolerations: [] + app_settings: + pool_type: solo + # Performance improved celery worker config when needing to deal with a lot of findings (e.g deduplication ops) + # Comment out the "solo" line, and uncomment the following lines. + # pool_type: prefork + # autoscale_min: 2 + # autoscale_max: 8 + # concurrency: 8 + # prefetch_multiplier: 128 + + # A list of extra volumes to mount. This + # is useful for bringing in extra data that can be referenced by other configurations + # at a well known path, such as local_settings. The + # value of this should be a list of objects. + # + # Example: + # + # ```yaml + # extraVolumes: + # - type: configMap + # name: local_settings + # path: /app/dojo/settings/local_settings.py + # subPath: local_settings.py + # - type: hostPath + # name: host_directory + # path: /tmp + # hostPath: /tmp + # ``` + # + # Each object supports the following keys: + # + # - `type` - Type of the volume, must be one of "configMap", "secret", "hostPath". Case sensitive. + # Even is supported we are highly recommending to avoid hostPath for security reasons (usually blocked by PSP) + # - `name` - Name of the configMap or secret to be mounted. This also controls + # the path that it is mounted to. The volume will be mounted to `/consul/userconfig/`. + # - `path` - defines where file should be exposed + # - `subPath` - extracts only particular file from secret or configMap + # - `pathType` - only for hostPath, can be one of the "DirectoryOrCreate", "Directory" (default), "FileOrCreate", + # "File", "Socket", "CharDevice", "BlockDevice" + # - `hostPath` - only for hostPath, file or directory from local host + # @type: array + extraVolumes: [] + +django: + annotations: {} + service: + annotations: {} + affinity: {} + ingress: + enabled: true + ingressClassName: "" + activateTLS: true + secretName: defectdojo-tls + annotations: {} + # Restricts the type of ingress controller that can interact with our chart (nginx, traefik, ...) + # kubernetes.io/ingress.class: nginx + # Depending on the size and complexity of your scans, you might want to increase the default ingress timeouts if you see repeated 504 Gateway Timeouts + # nginx.ingress.kubernetes.io/proxy-read-timeout: "1800" + # nginx.ingress.kubernetes.io/proxy-send-timeout: "1800" + nginx: + tls: + enabled: false + generateCertificate: false + resources: + requests: + cpu: 100m + memory: 128Mi + limits: + cpu: 2000m + memory: 256Mi + nodeSelector: {} + replicas: 1 + tolerations: [] + uwsgi: + livenessProbe: + # Enable liveness checks on uwsgi container. Those values are use on nginx readiness checks as well. + enabled: true + failureThreshold: 6 + initialDelaySeconds: 120 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + resources: + requests: + cpu: 100m + memory: 256Mi + limits: + cpu: 2000m + memory: 512Mi + app_settings: + processes: 2 + threads: 2 + enable_debug: false # this also requires DD_DEBUG to be set to True + certificates: + # includes additional CA certificate as volume, it refrences REQUESTS_CA_BUNDLE env varible + # to create configMap `kubectl create cm defectdojo-ca-certs --from-file=ca.crt` + # NOTE: it reflects REQUESTS_CA_BUNDLE for celery workers, beats as well + enabled: false + configName: defectdojo-ca-certs + certMountPath: /certs/ + certFileName: ca.crt + + # A list of extra volumes to mount. This + # is useful for bringing in extra data that can be referenced by other configurations + # at a well known path, such as local_settings. The + # value of this should be a list of objects. + # + # Example: + # + # ```yaml + # extraVolumes: + # - type: configMap + # name: local_settings + # path: /app/dojo/settings/local_settings.py + # container: uwsgi + # subPath: local_settings.py + # - type: hostPath + # name: host_directory + # path: /app/dojo/settings/ + # hostPath: /var/run + # container: uwsgi + # ``` + # + # Each object supports the following keys: + # + # - `type` - Type of the volume, must be one of "configMap", "secret", "hostPath". Case sensitive. + # Even is supported we are highly recommending to avoid hostPath for security reasons (usually blocked by PSP) + # - `name` - Name of the configMap or secret to be mounted. This also controls + # the path that it is mounted to. The volume will be mounted to `/consul/userconfig/`. + # - `path` - defines where file should be exposed + # - `container` - defines where volume needs to be mounted, must be uwsgi or nginx + # - `subPath` - extracts only particular file from secret or configMap + # - `pathType` - only for hostPath, can be one of the "DirectoryOrCreate", "Directory" (default), "FileOrCreate", + # "File", "Socket", "CharDevice", "BlockDevice" + # - `hostPath` - only for hostPath, file or directory from local host + # @type: array + extraVolumes: [] + + # This feature needs more preparation before can be enabled, please visit KUBERNETES.md#media-persistent-volume + mediaPersistentVolume: + enabled: true + fsGroup: 1001 + # any name + name: media + # could be emptyDir (not for production) or pvc + type: emptyDir + # in case if pvc specified, should point to the already existing pvc + persistentVolumeClaim: + # set to true to create a new pvc and if django.mediaPersistentVolume.type is set to pvc + create: false + name: + size: 5Gi + accessModes: + - ReadWriteMany # check KUBERNETES.md doc first for option to choose + storageClassName: + +initializer: + run: true + jobAnnotations: { + helm.sh/hook: "post-install,post-upgrade" + } + annotations: {} + keepSeconds: 60 + affinity: {} + nodeSelector: {} + resources: + requests: + cpu: 100m + memory: 256Mi + limits: + cpu: 2000m + memory: 512Mi + + # A list of extra volumes to mount. This + # is useful for bringing in extra data that can be referenced by other configurations + # at a well known path, such as local_settings. The + # value of this should be a list of objects. + # + # Example: + # + # ```yaml + # extraVolumes: + # - type: configMap + # name: local_settings + # path: /app/dojo/settings/local_settings.py + # subPath: local_settings.py + # - type: hostPath + # name: host_directory + # path: /tmp + # hostPath: /tmp + # ``` + # + # Each object supports the following keys: + # + # - `type` - Type of the volume, must be one of "configMap", "secret", "hostPath". Case sensitive. + # Even is supported we are highly recommending to avoid hostPath for security reasons (usually blocked by PSP) + # - `name` - Name of the configMap or secret to be mounted. This also controls + # the path that it is mounted to. The volume will be mounted to `/consul/userconfig/`. + # - `path` - defines where file should be exposed + # - `subPath` - extracts only particular file from secret or configMap + # - `pathType` - only for hostPath, can be one of the "DirectoryOrCreate", "Directory" (default), "FileOrCreate", + # "File", "Socket", "CharDevice", "BlockDevice" + # - `hostPath` - only for hostPath, file or directory from local host + # @type: array + extraVolumes: [] + +mysql: + enabled: false + auth: + username: defectdojo + password: "" + rootPassword: "" + database: defectdojo + existingSecret: defectdojo-mysql-specific + secretKey: mysql-password + primary: + service: + ports: + mysql: 3306 + # To use an external mySQL instance, set enabled to false and uncomment + # the line below / add external address: + # mysqlServer: "127.0.0.1" + +postgresql: +# enabled: true + enabled: false + image: + tag: 11.16.0-debian-11-r9 + auth: + username: defectdojo + password: "" + database: defectdojo + existingSecret: defectdojo-postgresql-specific + secretKeys: + adminPasswordKey: postgresql-postgres-password + userPasswordKey: postgresql-password + replicationPasswordKey: postgresql-replication-password + architecture: standalone + primary: + name: primary + persistence: + enabled: true + service: + ports: + postgresql: 5432 + podSecurityContext: + # Default is true for K8s. Enabled needs to false for OpenShift restricted SCC and true for anyuid SCC + enabled: true + # fsGroup specification below is not applied if enabled=false. enabled=false is the required setting for OpenShift "restricted SCC" to work successfully. + fsGroup: 1001 + containerSecurityContext: + # Default is true for K8s. Enabled needs to false for OpenShift restricted SCC and true for anyuid SCC + enabled: true + # runAsUser specification below is not applied if enabled=false. enabled=false is the required setting for OpenShift "restricted SCC" to work successfully. + runAsUser: 1001 + affinity: {} + nodeSelector: {} + volumePermissions: + enabled: false + # if using restricted SCC set runAsUser: "auto" and if running under anyuid SCC - runAsUser needs to match the line above + containerSecurityContext: + runAsUser: 1001 + shmVolume: + chmod: + enabled: false + + # To use an external PostgreSQL instance, set enabled to false and uncomment + # the line below: + # postgresServer: "127.0.0.1" + +postgresqlha: + enabled: false + global: + pgpool: + existingSecret: defectdojo-postgresql-ha-pgpool + serviceAccount: + create: true + postgresql: + replicaCount: 3 + username: defectdojo + password: "" + repmgrPassword: "" + database: defectdojo + existingSecret: defectdojo-postgresql-ha-specific + securityContext: + enabled: true + fsGroup: 1001 + containerSecurityContext: + enabled: true + runAsUser: 1001 + pgpool: + replicaCount: 3 + adminPassword: "" + securityContext: + enabled: true + fsGroup: 1001 + volumePermissions: + enabled: true + securityContext: + runAsUser: 1001 + persistence: + enabled: true + service: + ports: + postgresql: 5432 + +# Google CloudSQL support in GKE via gce-proxy +cloudsql: + # To use CloudSQL in GKE set 'enable: true' + enabled: false + # By default, the proxy has verbose logging. Set this to false to make it less verbose + verbose: true + image: + # set repo and image tag of gce-proxy + repository: gcr.io/cloudsql-docker/gce-proxy + tag: 1.33.14 + pullPolicy: IfNotPresent + # set CloudSQL instance: 'project:zone:instancename' + instance: "" + # use IAM database authentication + enable_iam_login: false + # whether to use a private IP to connect to the database + use_private_ip: false + +# Settings to make running the chart on GKE simpler +gke: + # Set to true to configure the Ingress to use the GKE provided ingress controller + useGKEIngress: false + # Set to true to have GKE automatically provision a TLS certificate for the host specified + # Requires useGKEIngress to be set to true + # When using this option, be sure to set django.ingress.activateTLS to false + useManagedCertificate: false + # Workload Identity allows the K8s service account to assume the IAM access of a GCP service account to interact with other GCP services + workloadIdentityEmail: "" + +rabbitmq: + enabled: true + replicaCount: 1 + auth: + password: "" + erlangCookie: "" + existingPasswordSecret: defectdojo-rabbitmq-specific + secretPasswordKey: "" + existingErlangSecret: defectdojo-rabbitmq-specific + memoryHighWatermark: + enabled: true + type: relative + value: 0.5 + affinity: {} + nodeSelector: {} + resources: + requests: + cpu: 100m + memory: 128Mi + limits: + cpu: 500m + memory: 512Mi + podSecurityContext: + enabled: true + fsGroup: 1001 + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + +# For more advance options check the bitnami chart documentation: https://github.com/bitnami/charts/tree/master/bitnami/redis +redis: + enabled: false + scheme: "redis" + transportEncryption: + enabled: false + params: '' + auth: + existingSecret: defectdojo-redis-specific + existingSecretPasswordKey: redis-password + password: "" + architecture: standalone + # To use an external Redis instance, set enabled to false and uncomment + # the line below: + # redisServer: myrediscluster + # To use a different port for Redis (default: 6379) add a port number and uncomment the lines below: + # master: + # service: + # ports: + # redis: xxxx + +# To add extra variables not predefined by helm config it is possible to define in extraConfigs block, e.g. below: +# NOTE Do not store any kind of sensitive information inside of it +# extraConfigs: +# DD_SOCIAL_AUTH_AUTH0_OAUTH2_ENABLED: 'true' +# DD_SOCIAL_AUTH_AUTH0_KEY: 'dev' +# DD_SOCIAL_AUTH_AUTH0_DOMAIN: 'xxxxx' + +# Extra secrets can be created inside of extraSecrets block: +# NOTE This is just an exmaple, do not store sensitive data in plain text form, better inject it during the deployment/upgrade by --set extraSecrets.secret=someSecret +# extraSecrets: +# DD_SOCIAL_AUTH_AUTH0_SECRET: 'xxx' +extraConfigs: {} + +# To add (or override) extra variables which need to be pulled from another configMap, you can +# use extraEnv. For example: +# extraEnv: +# - name: DD_DATABASE_HOST +# valueFrom: +# configMapKeyRef: +# name: my-other-postgres-configmap +# key: cluster_endpoint + diff --git a/dev/defectdojo/helm/values.yaml b/dev/defectdojo/helm/values.yaml new file mode 100755 index 0000000..34dde96 --- /dev/null +++ b/dev/defectdojo/helm/values.yaml @@ -0,0 +1,36 @@ +tag: 2.22.4 +fullnameOverride: defectdojo +host: defectdojo.alldcs.nl +site_url: https://defectdojo.alldcs.nl +alternativeHosts: + - defectdojo-django.defectdojo +celery: + beat: + nodeSelector: + kubernetes.io/arch: amd64 + worker: + nodeSelector: + kubernetes.io/arch: amd64 +initializer: + # should be false after initial installation was performed + run: true + nodeSelector: + kubernetes.io/arch: amd64 +django: + ingress: + enabled: true # change to 'false' for OpenShift + activateTLS: false + uwsgi: + livenessProbe: + # Enable liveness checks on uwsgi container. Those values are use on nginx readiness checks as well. + # default value is 120, so in our case 20 is just fine + initialDelaySeconds: 20 + nodeSelector: + kubernetes.io/arch: amd64 +rabbitmq: + nodeSelector: + kubernetes.io/arch: amd64 +postgresql: + primary: + nodeSelector: + kubernetes.io/arch: amd64 diff --git a/dev/defectdojo/installeren_met_yaml b/dev/defectdojo/installeren_met_yaml new file mode 100644 index 0000000..e69de29 diff --git a/dev/defectdojo/yaml/README.md b/dev/defectdojo/yaml/README.md new file mode 100644 index 0000000..4b11cb6 --- /dev/null +++ b/dev/defectdojo/yaml/README.md @@ -0,0 +1,16 @@ +user : admin +password: Defectdojo01@ + + +====== + +migratie + +- inloggen in de uwsgi container en dan: +- python manage.py migrate + + +toevoegen environment: + +https://defectdojo-dev.allarddcs.nl/admin/dojo/development_environment/ + diff --git a/dev/defectdojo/yaml/admin-password.txt b/dev/defectdojo/yaml/admin-password.txt new file mode 100644 index 0000000..3679aa3 --- /dev/null +++ b/dev/defectdojo/yaml/admin-password.txt @@ -0,0 +1 @@ +Hh7ViTz1cVj8PV4faGVO9A diff --git a/dev/defectdojo/yaml/defectdojo-helm.yaml b/dev/defectdojo/yaml/defectdojo-helm.yaml new file mode 100644 index 0000000..9d99811 --- /dev/null +++ b/dev/defectdojo/yaml/defectdojo-helm.yaml @@ -0,0 +1,1075 @@ +--- +# Source: defectdojo/charts/rabbitmq/templates/serviceaccount.yaml +apiVersion: v1 +kind: ServiceAccount +metadata: + name: defectdojo-rabbitmq + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +automountServiceAccountToken: true +secrets: + - name: defectdojo-rabbitmq +--- +# Source: defectdojo/charts/rabbitmq/templates/config-secret.yaml +apiVersion: v1 +kind: Secret +metadata: + name: defectdojo-rabbitmq-config + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +type: Opaque +data: + rabbitmq.conf: |- + IyMgVXNlcm5hbWUgYW5kIHBhc3N3b3JkCiMjCmRlZmF1bHRfdXNlciA9IHVzZXIKIyMgQ2x1c3RlcmluZwojIwpjbHVzdGVyX2Zvcm1hdGlvbi5wZWVyX2Rpc2NvdmVyeV9iYWNrZW5kICA9IHJhYmJpdF9wZWVyX2Rpc2NvdmVyeV9rOHMKY2x1c3Rlcl9mb3JtYXRpb24uazhzLmhvc3QgPSBrdWJlcm5ldGVzLmRlZmF1bHQKY2x1c3Rlcl9mb3JtYXRpb24ubm9kZV9jbGVhbnVwLmludGVydmFsID0gMTAKY2x1c3Rlcl9mb3JtYXRpb24ubm9kZV9jbGVhbnVwLm9ubHlfbG9nX3dhcm5pbmcgPSB0cnVlCmNsdXN0ZXJfcGFydGl0aW9uX2hhbmRsaW5nID0gYXV0b2hlYWwKIyBxdWV1ZSBtYXN0ZXIgbG9jYXRvcgpxdWV1ZV9tYXN0ZXJfbG9jYXRvciA9IG1pbi1tYXN0ZXJzCiMgZW5hYmxlIGd1ZXN0IHVzZXIKbG9vcGJhY2tfdXNlcnMuZ3Vlc3QgPSBmYWxzZQojZGVmYXVsdF92aG9zdCA9IGRlZmVjdGRvam8tdmhvc3QKI2Rpc2tfZnJlZV9saW1pdC5hYnNvbHV0ZSA9IDUwTUIKIyMgTWVtb3J5IFRocmVzaG9sZAojIwp0b3RhbF9tZW1vcnlfYXZhaWxhYmxlX292ZXJyaWRlX3ZhbHVlID0gNTM2ODcwOTEyCnZtX21lbW9yeV9oaWdoX3dhdGVybWFyay5yZWxhdGl2ZSA9IDAuNQ== +--- +# Source: defectdojo/templates/configmap.yaml +apiVersion: v1 +kind: ConfigMap +metadata: + name: defectdojo + labels: + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +data: + DD_ADMIN_USER: admin + DD_ADMIN_MAIL: admin@defectdojo.local + DD_ADMIN_FIRST_NAME: Admin + DD_ADMIN_LAST_NAME: User + DD_ALLOWED_HOSTS: defectdojo.alldcs.nl,defectdojo-django.defectdojo + DD_SITE_URL: https://defectdojo.alldcs.nl + DD_CELERY_BROKER_SCHEME: amqp + DD_CELERY_BROKER_USER: 'user' + DD_CELERY_BROKER_HOST: defectdojo-rabbitmq + DD_CELERY_BROKER_PORT: '5672' + DD_CELERY_BROKER_PARAMS: '' + DD_CELERY_BROKER_PATH: '//' + DD_CELERY_LOG_LEVEL: INFO + DD_CELERY_WORKER_POOL_TYPE: solo + DD_CELERY_WORKER_AUTOSCALE_MIN: '' + DD_CELERY_WORKER_AUTOSCALE_MAX: '' + DD_CELERY_WORKER_CONCURRENCY: '' + DD_CELERY_WORKER_PREFETCH_MULTIPLIER: '' + DD_DATABASE_ENGINE: django.db.backends.postgresql + DD_DATABASE_HOST: defectdojo-postgresql + DD_DATABASE_PORT: '5432' + DD_DATABASE_USER: defectdojo + DD_DATABASE_NAME: defectdojo + DD_INITIALIZE: 'true' + DD_UWSGI_ENDPOINT: /run/defectdojo/uwsgi.sock + DD_UWSGI_HOST: localhost + DD_UWSGI_PASS: unix:///run/defectdojo/uwsgi.sock + DD_UWSGI_NUM_OF_PROCESSES: '2' + DD_UWSGI_NUM_OF_THREADS: '2' + DD_DJANGO_METRICS_ENABLED: 'false' + NGINX_METRICS_ENABLED: 'false' + METRICS_HTTP_AUTH_USER: monitoring +--- +# Source: defectdojo/charts/rabbitmq/templates/role.yaml +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: defectdojo-rabbitmq-endpoint-reader + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +rules: + - apiGroups: [""] + resources: ["endpoints"] + verbs: ["get"] + - apiGroups: [""] + resources: ["events"] + verbs: ["create"] +--- +# Source: defectdojo/charts/rabbitmq/templates/rolebinding.yaml +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: defectdojo-rabbitmq-endpoint-reader + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +subjects: + - kind: ServiceAccount + name: defectdojo-rabbitmq +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: defectdojo-rabbitmq-endpoint-reader +--- +# Source: defectdojo/charts/postgresql/templates/primary/svc-headless.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-postgresql-hl + namespace: "defectdojo" + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + # Use this annotation in addition to the actual publishNotReadyAddresses + # field below because the annotation will stop being respected soon but the + # field is broken in some versions of Kubernetes: + # https://github.com/kubernetes/kubernetes/issues/58662 + service.alpha.kubernetes.io/tolerate-unready-endpoints: "true" +spec: + type: ClusterIP + clusterIP: None + # We want all pods in the StatefulSet to have their addresses published for + # the sake of the other Postgresql pods even before they're ready, since they + # have to be able to talk to each other in order to become ready. + publishNotReadyAddresses: true + ports: + - name: tcp-postgresql + port: 5432 + targetPort: tcp-postgresql + selector: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary +--- +# Source: defectdojo/charts/postgresql/templates/primary/svc.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-postgresql + namespace: "defectdojo" + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + annotations: +spec: + type: ClusterIP + sessionAffinity: None + ports: + - name: tcp-postgresql + port: 5432 + targetPort: tcp-postgresql + nodePort: null + selector: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary +--- +# Source: defectdojo/charts/rabbitmq/templates/svc-headless.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-rabbitmq-headless + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +spec: + clusterIP: None + ports: + - name: epmd + port: 4369 + targetPort: epmd + - name: amqp + port: 5672 + targetPort: amqp + - name: dist + port: 25672 + targetPort: dist + - name: http-stats + port: 15672 + targetPort: stats + selector: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + publishNotReadyAddresses: true +--- +# Source: defectdojo/charts/rabbitmq/templates/svc.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-rabbitmq + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +spec: + type: ClusterIP + sessionAffinity: None + ports: + - name: amqp + port: 5672 + targetPort: amqp + nodePort: null + - name: epmd + port: 4369 + targetPort: epmd + nodePort: null + - name: dist + port: 25672 + targetPort: dist + nodePort: null + - name: http-stats + port: 15672 + targetPort: stats + nodePort: null + selector: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo +--- +# Source: defectdojo/templates/django-service.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-django + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + selector: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + ports: + - name: http + protocol: TCP + port: 80 + targetPort: http +--- +# Source: defectdojo/templates/celery-beat-deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: defectdojo-celery-beat + labels: + defectdojo.org/component: celery + defectdojo.org/subcomponent: beat + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + replicas: 1 + selector: + matchLabels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + volumes: + - name: run + emptyDir: {} + containers: + - command: + - /entrypoint-celery-beat.sh + name: celery + image: "defectdojo/defectdojo-django:2.22.4" + imagePullPolicy: Always + securityContext: + runAsUser: 1001 + volumeMounts: + - name: run + mountPath: /run/defectdojo + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo-extrasecrets + optional: true + env: + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + resources: + limits: + cpu: 2000m + memory: 256Mi + requests: + cpu: 100m + memory: 128Mi + nodeSelector: + kubernetes.io/arch: amd64 +--- +# Source: defectdojo/templates/celery-worker-deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: defectdojo-celery-worker + labels: + defectdojo.org/component: celery + defectdojo.org/subcomponent: worker + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + replicas: 1 + selector: + matchLabels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + volumes: + containers: + - name: celery + image: "defectdojo/defectdojo-django:2.22.4" + imagePullPolicy: Always + securityContext: + runAsUser: 1001 + command: ['/entrypoint-celery-worker.sh'] + volumeMounts: + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo-extrasecrets + optional: true + env: + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + resources: + limits: + cpu: 2000m + memory: 512Mi + requests: + cpu: 100m + memory: 128Mi + nodeSelector: + kubernetes.io/arch: amd64 +--- +# Source: defectdojo/templates/django-deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: defectdojo-django + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + replicas: 1 + selector: + matchLabels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + securityContext: + fsGroup: 1001 + volumes: + - name: run + emptyDir: {} + - name: media + emptyDir: {} + containers: + - name: uwsgi + image: 'harbor-dev.alldcs.nl/allard/defectdojo:1.0' + imagePullPolicy: Always + securityContext: + runAsUser: 1001 + volumeMounts: + - name: run + mountPath: /run/defectdojo + - name: media + mountPath: "/app/media" + ports: + - name: http-uwsgi + protocol: TCP + containerPort: 8081 + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo-extrasecrets + optional: true + env: + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + - name: DD_CREDENTIAL_AES_256_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_CREDENTIAL_AES_256_KEY + - name: DD_SESSION_COOKIE_SECURE + value: "False" + - name: DD_CSRF_COOKIE_SECURE + value: "False" + livenessProbe: + httpGet: + path: /login?force_login_form&next=/ + port: http-uwsgi + httpHeaders: + - name: Host + value: defectdojo.alldcs.nl + failureThreshold: 6 + initialDelaySeconds: 20 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + resources: + limits: + cpu: 2000m + memory: 512Mi + requests: + cpu: 100m + memory: 256Mi + - name: nginx + image: 'defectdojo/defectdojo-nginx:2.22.4' + imagePullPolicy: Always + securityContext: + runAsUser: 1001 + volumeMounts: + - name: run + mountPath: /run/defectdojo + - name: media + mountPath: /usr/share/nginx/html/media + ports: + - name: http + protocol: TCP + containerPort: 8080 + envFrom: + - configMapRef: + name: defectdojo + env: + - name: METRICS_HTTP_AUTH_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo + key: METRICS_HTTP_AUTH_PASSWORD + - name: USE_TLS + value: 'false' + - name: GENERATE_TLS_CERTIFICATE + value: 'false' + livenessProbe: + httpGet: + path: /nginx_health + port: http + httpHeaders: + - name: Host + value: defectdojo.alldcs.nl + initialDelaySeconds: 10 + periodSeconds: 10 + failureThreshold: 6 + readinessProbe: + httpGet: + path: /uwsgi_health + port: http + httpHeaders: + - name: Host + value: defectdojo.alldcs.nl + failureThreshold: 6 + initialDelaySeconds: 20 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + resources: + limits: + cpu: 2000m + memory: 256Mi + requests: + cpu: 100m + memory: 128Mi + nodeSelector: + kubernetes.io/arch: amd64 +--- +# Source: defectdojo/charts/postgresql/templates/primary/statefulset.yaml +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: defectdojo-postgresql + namespace: "defectdojo" + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + annotations: +spec: + replicas: 1 + serviceName: defectdojo-postgresql-hl + updateStrategy: + rollingUpdate: {} + type: RollingUpdate + selector: + matchLabels: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary + template: + metadata: + name: defectdojo-postgresql + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + annotations: + spec: + serviceAccountName: default + + affinity: + podAffinity: + + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchLabels: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary + namespaces: + - "defectdojo" + topologyKey: kubernetes.io/hostname + weight: 1 + nodeAffinity: + + nodeSelector: + kubernetes.io/arch: amd64 + securityContext: + fsGroup: 1001 + hostNetwork: false + hostIPC: false + initContainers: + containers: + - name: postgresql + image: docker.io/bitnami/postgresql:11.16.0-debian-11-r9 + imagePullPolicy: "IfNotPresent" + securityContext: + runAsUser: 1001 + env: + - name: BITNAMI_DEBUG + value: "false" + - name: POSTGRESQL_PORT_NUMBER + value: "5432" + - name: POSTGRESQL_VOLUME_DIR + value: "/bitnami/postgresql" + - name: PGDATA + value: "/bitnami/postgresql/data" + # Authentication + - name: POSTGRES_USER + value: "defectdojo" + - name: POSTGRES_POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-postgres-password + - name: POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: POSTGRES_DB + value: "defectdojo" + # Replication + # Initdb + # Standby + # LDAP + - name: POSTGRESQL_ENABLE_LDAP + value: "no" + # TLS + - name: POSTGRESQL_ENABLE_TLS + value: "no" + # Audit + - name: POSTGRESQL_LOG_HOSTNAME + value: "false" + - name: POSTGRESQL_LOG_CONNECTIONS + value: "false" + - name: POSTGRESQL_LOG_DISCONNECTIONS + value: "false" + - name: POSTGRESQL_PGAUDIT_LOG_CATALOG + value: "off" + # Others + - name: POSTGRESQL_CLIENT_MIN_MESSAGES + value: "error" + - name: POSTGRESQL_SHARED_PRELOAD_LIBRARIES + value: "pgaudit" + ports: + - name: tcp-postgresql + containerPort: 5432 + livenessProbe: + failureThreshold: 6 + initialDelaySeconds: 30 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + exec: + command: + - /bin/sh + - -c + - exec pg_isready -U "defectdojo" -d "dbname=defectdojo" -h 127.0.0.1 -p 5432 + readinessProbe: + failureThreshold: 6 + initialDelaySeconds: 5 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + exec: + command: + - /bin/sh + - -c + - -e + + - | + exec pg_isready -U "defectdojo" -d "dbname=defectdojo" -h 127.0.0.1 -p 5432 + [ -f /opt/bitnami/postgresql/tmp/.initialized ] || [ -f /bitnami/postgresql/.initialized ] + resources: + limits: {} + requests: + cpu: 250m + memory: 256Mi + volumeMounts: + - name: dshm + mountPath: /dev/shm + - name: data + mountPath: /bitnami/postgresql + volumes: + - name: dshm + emptyDir: + medium: Memory + volumeClaimTemplates: + - metadata: + name: data + spec: + accessModes: + - "ReadWriteOnce" + resources: + requests: + storage: "8Gi" +--- +# Source: defectdojo/charts/rabbitmq/templates/statefulset.yaml +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: defectdojo-rabbitmq + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +spec: + serviceName: defectdojo-rabbitmq-headless + podManagementPolicy: OrderedReady + replicas: 1 + updateStrategy: + type: RollingUpdate + selector: + matchLabels: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + annotations: + checksum/config: 208929eee544dead36ca3c947884b65e8ffb3c4e72fbf6721922c651640ffe3c + spec: + + serviceAccountName: defectdojo-rabbitmq + affinity: + podAffinity: + + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchLabels: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + namespaces: + - "defectdojo" + topologyKey: kubernetes.io/hostname + weight: 1 + nodeAffinity: + + nodeSelector: + kubernetes.io/arch: amd64 + securityContext: + fsGroup: 1001 + terminationGracePeriodSeconds: 120 + initContainers: + containers: + - name: rabbitmq + image: docker.io/bitnami/rabbitmq:3.11.5-debian-11-r2 + imagePullPolicy: "IfNotPresent" + securityContext: + runAsNonRoot: true + runAsUser: 1001 + lifecycle: + preStop: + exec: + command: + - /bin/bash + - -ec + - | + if [[ -f /opt/bitnami/scripts/rabbitmq/nodeshutdown.sh ]]; then + /opt/bitnami/scripts/rabbitmq/nodeshutdown.sh -t "120" -d "false" + else + rabbitmqctl stop_app + fi + env: + - name: BITNAMI_DEBUG + value: "false" + - name: MY_POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: MY_POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: MY_POD_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: K8S_SERVICE_NAME + value: defectdojo-rabbitmq-headless + - name: K8S_ADDRESS_TYPE + value: hostname + - name: RABBITMQ_FORCE_BOOT + value: "no" + - name: RABBITMQ_NODE_NAME + value: "rabbit@$(MY_POD_NAME).$(K8S_SERVICE_NAME).$(MY_POD_NAMESPACE).svc.cluster.local" + - name: K8S_HOSTNAME_SUFFIX + value: ".$(K8S_SERVICE_NAME).$(MY_POD_NAMESPACE).svc.cluster.local" + - name: RABBITMQ_MNESIA_DIR + value: "/bitnami/rabbitmq/mnesia/$(RABBITMQ_NODE_NAME)" + - name: RABBITMQ_LDAP_ENABLE + value: "no" + - name: RABBITMQ_LOGS + value: "-" + - name: RABBITMQ_ULIMIT_NOFILES + value: "65536" + - name: RABBITMQ_USE_LONGNAME + value: "true" + - name: RABBITMQ_ERL_COOKIE + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-erlang-cookie + - name: RABBITMQ_LOAD_DEFINITIONS + value: "no" + - name: RABBITMQ_DEFINITIONS_FILE + value: "/app/load_definition.json" + - name: RABBITMQ_SECURE_PASSWORD + value: "yes" + - name: RABBITMQ_USERNAME + value: "user" + - name: RABBITMQ_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: RABBITMQ_PLUGINS + value: "rabbitmq_management, rabbitmq_peer_discovery_k8s, rabbitmq_auth_backend_ldap" + envFrom: + ports: + - name: amqp + containerPort: 5672 + - name: dist + containerPort: 25672 + - name: stats + containerPort: 15672 + - name: epmd + containerPort: 4369 + livenessProbe: + failureThreshold: 6 + initialDelaySeconds: 120 + periodSeconds: 30 + successThreshold: 1 + timeoutSeconds: 20 + exec: + command: + - /bin/bash + - -ec + - rabbitmq-diagnostics -q ping + readinessProbe: + failureThreshold: 3 + initialDelaySeconds: 10 + periodSeconds: 30 + successThreshold: 1 + timeoutSeconds: 20 + exec: + command: + - /bin/bash + - -ec + - rabbitmq-diagnostics -q check_running && rabbitmq-diagnostics -q check_local_alarms + resources: + limits: + cpu: 500m + memory: 512Mi + requests: + cpu: 100m + memory: 128Mi + volumeMounts: + - name: configuration + mountPath: /bitnami/rabbitmq/conf + - name: data + mountPath: /bitnami/rabbitmq/mnesia + volumes: + - name: configuration + secret: + secretName: defectdojo-rabbitmq-config + items: + - key: rabbitmq.conf + path: rabbitmq.conf + volumeClaimTemplates: + - metadata: + name: data + labels: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + spec: + accessModes: + - "ReadWriteOnce" + resources: + requests: + storage: "8Gi" +--- +# Source: defectdojo/templates/django-ingress.yaml +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: defectdojo + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + rules: + - host: defectdojo.alldcs.nl + http: + paths: + - path: / + backend: + serviceName: defectdojo-django + servicePort: http +--- +# Source: defectdojo/templates/sa.yaml +kind: ServiceAccount +apiVersion: v1 +metadata: + name: defectdojo + labels: + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 + annotations: + helm.sh/resource-policy: keep + helm.sh/hook: "pre-install" + helm.sh/hook-delete-policy: "before-hook-creation" +--- +# Source: defectdojo/templates/tests/unit-tests.yaml +apiVersion: v1 +kind: Pod +metadata: + name: defectdojo-unit-tests + labels: + app.kubernetes.io/name: defectdojo + helm.sh/chart: defectdojo-1.6.112 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + annotations: + helm.sh/hook: test-success +spec: + serviceAccountName: defectdojo + containers: + - name: unit-tests + image: 'defectdojo/defectdojo-django:2.22.4' + imagePullPolicy: Always + securityContext: + runAsUser: 1001 + command: ['/entrypoint-unit-tests.sh'] + envFrom: + - configMapRef: + name: defectdojo + env: + - name: DD_DATABASE_USER + value: defectdojo + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + # Use broker chart secret + # name: defectdojo-rabbitmq + # Use secret handled outside of the chart + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_DEBUG + value: 'True' + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + - name: DD_CREDENTIAL_AES_256_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_CREDENTIAL_AES_256_KEY + resources: + limits: + cpu: 500m + memory: 512Mi + requests: + cpu: 100m + memory: 128Mi + restartPolicy: Never +--- +# Source: defectdojo/templates/initializer-job.yaml +apiVersion: batch/v1 +kind: Job +metadata: + name: defectdojo-initializer-2024-05-16-11-17 + labels: + defectdojo.org/component: initializer + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 + annotations: + helm.sh/hook: post-install,post-upgrade +spec: + ttlSecondsAfterFinished: 60 + template: + metadata: + labels: + defectdojo.org/component: initializer + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + volumes: + containers: + - name: initializer + image: "defectdojo/defectdojo-django:2.22.4" + imagePullPolicy: Always + securityContext: + runAsUser: 1001 + volumeMounts: + command: + - /entrypoint-initializer.sh + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo + env: + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + resources: + limits: + cpu: 2000m + memory: 512Mi + requests: + cpu: 100m + memory: 256Mi + restartPolicy: Never + nodeSelector: + kubernetes.io/arch: amd64 + backoffLimit: 1 diff --git a/dev/defectdojo/yaml/defectdojo-with-initializer.yaml b/dev/defectdojo/yaml/defectdojo-with-initializer.yaml new file mode 100644 index 0000000..4c76436 --- /dev/null +++ b/dev/defectdojo/yaml/defectdojo-with-initializer.yaml @@ -0,0 +1,473 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: nginx + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: nginx + spec: + containers: + - env: + - name: NGINX_METRICS_ENABLED + value: "false" + - name: DD_UWSGI_HOST + value: "uwsgi.defectdojo" + - name: HTTP_AUTH_PASSWORD + value: "Defectdojo01@" + image: allardkrings/defectdojo-nginx:1.0 + imagePullPolicy: IfNotPresent + name: nginx + ports: + - containerPort: 8080 + - containerPort: 8443 + resources: {} + volumeMounts: + - mountPath: /usr/share/nginx/html/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: defectdojo-media-pvc + namespace: defectdojo +spec: + storageClassName: "" + volumeName: defectdojo-media-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 2Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: defectdojo-media-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/defectdojo/media + readOnly: false +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: nginx + name: nginx + namespace: defectdojo +spec: + ports: + - name: "8080" + port: 8080 + targetPort: 8080 + - name: "8443" + port: 8443 + targetPort: 8443 + selector: + io.kompose.service: nginx +status: + loadBalancer: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: uwsgi + name: uwsgi + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: uwsgi + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: uwsgi + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-uwsgi.sh + env: + - name: DD_ALLOWED_HOSTS + value: '*' + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_DEBUG + value: "False" + - name: DD_DJANGO_METRICS_ENABLED + value: "False" + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + image: allardkrings/defectdojo-django:1.0 + imagePullPolicy: IfNotPresent + name: uwsgi + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: uwsgi-claim0 + - mountPath: /app/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: uwsgi-claim0 + persistentVolumeClaim: + claimName: uwsgi-claim0 + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + creationTimestamp: null + labels: + io.kompose.service: uwsgi-claim0 + name: uwsgi-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +status: {} +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: uwsgi + name: uwsgi + namespace: defectdojo +spec: + ports: + - name: "3031" + port: 3031 + targetPort: 3031 + selector: + io.kompose.service: uwsgi +status: + loadBalancer: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: initializer + name: initializer + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: initializer + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: initializer + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -- + - /entrypoint-initializer.sh + env: + - name: DD_ADMIN_FIRST_NAME + value: Admin + - name: DD_ADMIN_LAST_NAME + value: User + - name: DD_ADMIN_MAIL + value: admin@defectdojo.local + - name: DD_ADMIN_USER + value: admin + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_INITIALIZE + value: "true" + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + image: allardkrings/defectdojo-django:1.0 + imagePullPolicy: IfNotPresent + name: initializer + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: initializer-claim0 + restartPolicy: Always + volumes: + - name: initializer-claim0 + persistentVolumeClaim: + claimName: initializer-claim0 +status: {} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + labels: + io.kompose.service: initializer-claim0 + name: initializer-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +status: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: celeryworker + name: celeryworker + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: celeryworker + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: celeryworker + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-celery-worker.sh + env: + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + image: allardkrings/defectdojo-django:1.0 + imagePullPolicy: IfNotPresent + name: celeryworker + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: celeryworker-claim0 + - mountPath: /app/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: celeryworker-claim0 + persistentVolumeClaim: + claimName: celeryworker-claim0 + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +status: {} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + creationTimestamp: null + labels: + io.kompose.service: celeryworker-claim0 + name: celeryworker-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +status: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: celerybeat + name: celerybeat + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: celerybeat + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: celerybeat + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-celery-beat.sh + env: + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + image: allardkrings/defectdojo-django:1.0 + imagePullPolicy: IfNotPresent + name: celerybeat + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: celerybeat-claim0 + restartPolicy: Always + volumes: + - name: celerybeat-claim0 + persistentVolumeClaim: + claimName: celerybeat-claim0 +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + labels: + io.kompose.service: celerybeat-claim0 + name: celerybeat-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: redis + name: redis + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: redis + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: redis + spec: + containers: + - image: redis:7.2.4-alpine@sha256:a40e29800d387e3cf9431902e1e7a362e4d819233d68ae39380532c3310091ac + name: redis + resources: {} +# volumeMounts: +# - mountPath: /data +# name: defectdojo-redis + restartPolicy: Always +# volumes: +# - name: defectdojo-redis +# persistentVolumeClaim: +# claimName: defectdojo-redis-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: defectdojo-redis-pvc + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: defectdojo-redis-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/defectdojo/redis + readOnly: false +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: redis + name: redis + namespace: defectdojo +spec: + ports: + - name: "6379" + port: 6379 + targetPort: 6379 + selector: + io.kompose.service: redis +status: + loadBalancer: {} + diff --git a/dev/defectdojo/yaml/defectdojo.bak b/dev/defectdojo/yaml/defectdojo.bak new file mode 100644 index 0000000..cf8dd45 --- /dev/null +++ b/dev/defectdojo/yaml/defectdojo.bak @@ -0,0 +1,402 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: nginx + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: nginx + spec: + containers: + - env: + - name: NGINX_METRICS_ENABLED + value: "false" + - name: DD_UWSGI_HOST + value: "uwsgi.defectdojo" + - name: HTTP_AUTH_PASSWORD + value: "Defectdojo01@" + image: defectdojo/defectdojo-nginx + imagePullPolicy: IfNotPresent + name: nginx + ports: + - containerPort: 8080 + - containerPort: 8443 + resources: {} + volumeMounts: + - mountPath: /usr/share/nginx/html/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: defectdojo-media-pvc + namespace: defectdojo +spec: + storageClassName: "" + volumeName: defectdojo-media-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 2Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: defectdojo-media-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/defectdojo/media + readOnly: false +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: nginx + name: nginx + namespace: defectdojo +spec: + ports: + - name: "8080" + port: 8080 + targetPort: 8080 + - name: "8443" + port: 8443 + targetPort: 8443 + selector: + io.kompose.service: nginx +status: + loadBalancer: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: uwsgi + name: uwsgi + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: uwsgi + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: uwsgi + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-uwsgi.sh + env: + - name: DD_ALLOWED_HOSTS + value: '*' + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_DEBUG + value: "False" + - name: DD_DJANGO_METRICS_ENABLED + value: "False" + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + image: defectdojo/defectdojo-django + imagePullPolicy: IfNotPresent + name: uwsgi + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: uwsgi-claim0 + - mountPath: /app/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: uwsgi-claim0 + persistentVolumeClaim: + claimName: uwsgi-claim0 + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + creationTimestamp: null + labels: + io.kompose.service: uwsgi-claim0 + name: uwsgi-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +status: {} +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: uwsgi + name: uwsgi + namespace: defectdojo +spec: + ports: + - name: "3031" + port: 3031 + targetPort: 3031 + selector: + io.kompose.service: uwsgi +status: + loadBalancer: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: celeryworker + name: celeryworker + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: celeryworker + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: celeryworker + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-celery-worker.sh + env: + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + image: allardkrings/defectdojo-django:1.0 + imagePullPolicy: IfNotPresent + name: celeryworker + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: celeryworker-claim0 + - mountPath: /app/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: celeryworker-claim0 + persistentVolumeClaim: + claimName: celeryworker-claim0 + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +status: {} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + creationTimestamp: null + labels: + io.kompose.service: celeryworker-claim0 + name: celeryworker-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +status: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: celerybeat + name: celerybeat + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: celerybeat + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: celerybeat + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-celery-beat.sh + env: + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + image: allardkrings/defectdojo-django:1.0 + imagePullPolicy: IfNotPresent + name: celerybeat + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: celerybeat-claim0 + restartPolicy: Always + volumes: + - name: celerybeat-claim0 + persistentVolumeClaim: + claimName: celerybeat-claim0 +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + labels: + io.kompose.service: celerybeat-claim0 + name: celerybeat-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: redis + name: redis + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: redis + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: redis + spec: + containers: + - image: redis:7.2.4-alpine@sha256:a40e29800d387e3cf9431902e1e7a362e4d819233d68ae39380532c3310091ac + name: redis + resources: {} +# volumeMounts: +# - mountPath: /data +# name: defectdojo-redis + restartPolicy: Always +# volumes: +# - name: defectdojo-redis +# persistentVolumeClaim: +# claimName: defectdojo-redis-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: defectdojo-redis-pvc + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: defectdojo-redis-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/defectdojo/redis + readOnly: false +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: redis + name: redis + namespace: defectdojo +spec: + ports: + - name: "6379" + port: 6379 + targetPort: 6379 + selector: + io.kompose.service: redis +status: + loadBalancer: {} + diff --git a/dev/defectdojo/yaml/defectdojo.yaml b/dev/defectdojo/yaml/defectdojo.yaml new file mode 100644 index 0000000..c42c0b4 --- /dev/null +++ b/dev/defectdojo/yaml/defectdojo.yaml @@ -0,0 +1,410 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: nginx + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: nginx + spec: + containers: + - env: + - name: NGINX_METRICS_ENABLED + value: "false" + - name: DD_UWSGI_HOST + value: "uwsgi.defectdojo" + - name: HTTP_AUTH_PASSWORD + value: "Defectdojo01@" + image: defectdojo/defectdojo-nginx + imagePullPolicy: IfNotPresent + name: nginx + ports: + - containerPort: 8080 + - containerPort: 8443 + resources: {} + volumeMounts: + - mountPath: /usr/share/nginx/html/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: defectdojo-media-pvc + namespace: defectdojo +spec: + storageClassName: "" + volumeName: defectdojo-media-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 2Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: defectdojo-media-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/defectdojo/media + readOnly: false +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: nginx + name: nginx + namespace: defectdojo +spec: + ports: + - name: "8080" + port: 8080 + targetPort: 8080 + - name: "8443" + port: 8443 + targetPort: 8443 + selector: + io.kompose.service: nginx +status: + loadBalancer: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: uwsgi + name: uwsgi + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: uwsgi + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: uwsgi + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-uwsgi.sh + env: + - name: DD_ALLOWED_HOSTS + value: '*' + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_DEBUG + value: "False" + - name: DD_DJANGO_METRICS_ENABLED + value: "False" + - name: DD_ASYNC_FINDING_IMPORT + value: "False" + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + - name: DD_ENABLE_AUDITLOG + value: "False" + image: defectdojo/defectdojo-django + imagePullPolicy: IfNotPresent + name: uwsgi + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: uwsgi-claim0 + - mountPath: /app/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: uwsgi-claim0 + persistentVolumeClaim: + claimName: uwsgi-claim0 + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + creationTimestamp: null + labels: + io.kompose.service: uwsgi-claim0 + name: uwsgi-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +status: {} +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: uwsgi + name: uwsgi + namespace: defectdojo +spec: + ports: + - name: "3031" + port: 3031 + targetPort: 3031 + selector: + io.kompose.service: uwsgi +status: + loadBalancer: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: celeryworker + name: celeryworker + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: celeryworker + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: celeryworker + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-celery-worker.sh + env: + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + - name: DD_ENABLE_AUDITLOG + value: "False" + image: defectdojo/defectdojo-django + imagePullPolicy: IfNotPresent + name: celeryworker + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: celeryworker-claim0 + - mountPath: /app/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: celeryworker-claim0 + persistentVolumeClaim: + claimName: celeryworker-claim0 + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +status: {} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + creationTimestamp: null + labels: + io.kompose.service: celeryworker-claim0 + name: celeryworker-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +status: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: celerybeat + name: celerybeat + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: celerybeat + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: celerybeat + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-celery-beat.sh + env: + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + - name: DD_ENABLE_AUDITLOG + value: "False" + image: defectdojo/defectdojo-django + imagePullPolicy: IfNotPresent + name: celerybeat + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: celerybeat-claim0 + restartPolicy: Always + volumes: + - name: celerybeat-claim0 + persistentVolumeClaim: + claimName: celerybeat-claim0 +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + labels: + io.kompose.service: celerybeat-claim0 + name: celerybeat-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: redis + name: redis + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: redis + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: redis + spec: + containers: + - image: redis:7.2.4-alpine@sha256:a40e29800d387e3cf9431902e1e7a362e4d819233d68ae39380532c3310091ac + name: redis + resources: {} +# volumeMounts: +# - mountPath: /data +# name: defectdojo-redis + restartPolicy: Always +# volumes: +# - name: defectdojo-redis +# persistentVolumeClaim: +# claimName: defectdojo-redis-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: defectdojo-redis-pvc + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: defectdojo-redis-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/defectdojo/redis + readOnly: false +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: redis + name: redis + namespace: defectdojo +spec: + ports: + - name: "6379" + port: 6379 + targetPort: 6379 + selector: + io.kompose.service: redis +status: + loadBalancer: {} + diff --git a/dev/defectdojo/yaml/dt-report.json b/dev/defectdojo/yaml/dt-report.json new file mode 100644 index 0000000..0ebb72f --- /dev/null +++ b/dev/defectdojo/yaml/dt-report.json @@ -0,0 +1,27 @@ +Dependency-Track
\ No newline at end of file diff --git a/dev/defectdojo/yaml/ingressroute-http.yml b/dev/defectdojo/yaml/ingressroute-http.yml new file mode 100755 index 0000000..ec48c15 --- /dev/null +++ b/dev/defectdojo/yaml/ingressroute-http.yml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: defectdojo-http + namespace: defectdojo +spec: + entryPoints: + - web + routes: + - match: Host(`defectdojo-dev.allarddcs.nl`) + kind: Rule + services: + - name: nginx + port: 8080 diff --git a/dev/defectdojo/yaml/ingressroute-tls.yml b/dev/defectdojo/yaml/ingressroute-tls.yml new file mode 100755 index 0000000..6bc5144 --- /dev/null +++ b/dev/defectdojo/yaml/ingressroute-tls.yml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: defectdojo-tls + namespace: defectdojo +spec: + entryPoints: + - websecure + routes: + - match: Host(`defectdojo-dev.allarddcs.nl`) + kind: Rule + services: + - name: nginx + port: 8080 + tls: + certResolver: letsencrypt diff --git a/dev/defectdojo/yaml/restart.sh b/dev/defectdojo/yaml/restart.sh new file mode 100755 index 0000000..92e82b8 --- /dev/null +++ b/dev/defectdojo/yaml/restart.sh @@ -0,0 +1,5 @@ +microk8s kubectl rollout restart deployment -n defectdojo uwsgi +microk8s kubectl rollout restart deployment -n defectdojo celerybeat +microk8s kubectl rollout restart deployment -n defectdojo celeryworker +microk8s kubectl rollout restart deployment -n defectdojo celeryworker-high +microk8s kubectl rollout restart deployment -n defectdojo celeryworker-low diff --git a/dev/deptrack/README.md b/dev/deptrack/README.md new file mode 100755 index 0000000..1d57a5f --- /dev/null +++ b/dev/deptrack/README.md @@ -0,0 +1,34 @@ +#Installatie +kubectl apply -f deptrack.yaml + +Opletten dat de API-URL klopt met VIMEXX DNS in stellingen: deptracka.alldcs.nl +Dit kun je controleren door te "pingen". +In de yaml moet de setting staan: + + - name: API_BASE_URL + value: 'https://deptracka-dev.alldcs.nl' + +#configuratie tekton: + +- ga naar deptrackmenu -> configuration -> access-management -> teams +- kijk bij team "automation" en kopieer de api-key +- vul die in in de pipelinerun en in de gitea-trigger-template +- Je moet ook een project aanmaken met de juiste versie + +#integratie met defectdojo + +- haal de api key v2 op in defectdojo (menu rechtsboven bij symbool poppetje); +- vul die in bij deptrack bij integrations -> defectdojo +- je moet ook properties aanmaken: + +Attribute Value +Group Name integrations +Property Name defectdojo.engagementId +Property Value The CI/CD engagement ID to upload findings to, noted in Step 3 s +Property Type STRING + +Zie ook: https://docs.dependencytrack.org/integrations/defectdojo/ + +#ingressroutes + +werkt met TCP-route op tls en http diff --git a/dev/deptrack/catalog-info.yaml b/dev/deptrack/catalog-info.yaml new file mode 100644 index 0000000..cdbb3d8 --- /dev/null +++ b/dev/deptrack/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-deptrack + title: Deptrack (dev) + description: Dependency Track instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=deptrack-frontend" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/deptrackback + title: deptrack-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/deptrack/deptrack.old b/dev/deptrack/deptrack.old new file mode 100644 index 0000000..af2e2d7 --- /dev/null +++ b/dev/deptrack/deptrack.old @@ -0,0 +1,252 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: deptrack +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: deptrack-apiserver + namespace: deptrack + labels: + app: deptrack-apiserver +spec: + replicas: 1 + selector: + matchLabels: + app: deptrack-apiserver + template: + metadata: + labels: + app: deptrack-apiserver + spec: + containers: + - name: deptrack-apiserver + image: dependencytrack/apiserver + ports: + - containerPort: 8080 + env: + - name: ALPINE_DATABASE_MODE + value: 'external' + - name: ALPINE_DATABASE_URL + value: 'jdbc:postgresql://postgres13.postgres:5432/deptrack' +# value: 'jdbc:postgresql://192.168.2.233:5432/deptrack' + - name: ALPINE_DATABASE_DRIVER + value: 'org.postgresql.Driver' + - name: ALPINE_DATABASE_USERNAME + value: 'deptrack' + - name: ALPINE_DATABASE_PASSWORD + value: 'deptrack' + - name: ALPINE_DATABASE_POOL_ENABLED + value: 'true' + - name: ALPINE_DATABASE_POOL_MAX_SIZE + value: '20' + - name: ALPINE_DATABASE_POOL_MIN_IDLE + value: '10' + - name: ALPINE_DATABASE_POOL_IDLE_TIMEOUT + value: '300000' + - name: ALPINE_DATABASE_POOL_MAX_LIFETIME + value: '600000' + volumeMounts: + - mountPath: /data + name: data + volumes: + - name: data + persistentVolumeClaim: + claimName: deptrack-data-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: deptrack-apiserver + namespace: deptrack + labels: + name: deptrack-apiserver +spec: + type: ClusterIP + ports: + - port: 8080 + name: deptrack-apiserver + selector: + app: deptrack-apiserver +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: deptrack-frontend + namespace: deptrack + labels: + app: deptrack-frontend +spec: + replicas: 1 + selector: + matchLabels: + app: deptrack-frontend + template: + metadata: + labels: + app: deptrack-frontend + spec: + containers: + - name: deptrack-frontend + image: dependencytrack/frontend + ports: + - containerPort: 8080 + env: + - name: API_BASE_URL + value: 'https://deptracka-dev.allarddcs.nl' + volumeMounts: + - mountPath: /app/static/config.json + name: config + volumes: + - name: config + persistentVolumeClaim: + claimName: deptrack-config-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: deptrack-frontend + namespace: deptrack + labels: + name: deptrack-frontend +spec: + type: ClusterIP + ports: + - port: 8080 + name: deptrack-frontend + selector: + app: deptrack-frontend +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptrackf-http + namespace: deptrack +spec: + entryPoints: + - web + routes: + - match: Host(`deptrackf-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-frontend + port: 8080 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptracka-http + namespace: deptrack +spec: + entryPoints: + - web + routes: + - match: Host(`deptracka-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-apiserver + port: 8080 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptrackf-tls + namespace: deptrack +spec: + entryPoints: + - websecure + routes: + - match: Host(`deptrackf-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-frontend + port: 8080 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptracka-tls + namespace: deptrack +spec: + entryPoints: + - websecure + routes: + - match: Host(`deptracka-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-apiserver + port: 8080 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: deptrack-data-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/deptrack/data + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: deptrack-data-pvc + namespace: deptrack +spec: + storageClassName: "" + volumeName: deptrack-data-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: deptrack-config-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/deptrack/config + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: deptrack-config-pvc + namespace: deptrack +spec: + storageClassName: "" + volumeName: deptrack-config-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/dev/deptrack/deptrack.yaml b/dev/deptrack/deptrack.yaml new file mode 100644 index 0000000..454c853 --- /dev/null +++ b/dev/deptrack/deptrack.yaml @@ -0,0 +1,292 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: deptrack +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: deptrack-apiserver + namespace: deptrack + labels: + app: deptrack-apiserver +spec: + replicas: 1 + selector: + matchLabels: + app: deptrack-apiserver + template: + metadata: + labels: + app: deptrack-apiserver + spec: + initContainers: + - name: init-deptrack + image: dependencytrack/apiserver + command: + - sh + - -c + - | + if [ ! -d /data/.dependency-track ] || [ -z "$(ls -A /data/.dependency-track)" ]; then + echo "Seeding /data/.dependency-track from container image..." + mkdir -p /data/.dependency-track + cp -r /opt/dependency-track/.dependency-track/* /data/.dependency-track/ + echo "Seeding complete." + else + echo "/data/.dependency-track already populated, skipping." + fi + volumeMounts: + - name: data + mountPath: /data + containers: + - name: deptrack-apiserver + image: dependencytrack/apiserver + ports: + - containerPort: 8080 + env: + - name: ALPINE_DATABASE_MODE + value: 'external' + - name: ALPINE_DATABASE_URL + value: 'jdbc:postgresql://postgres13.postgres:5432/deptrack' + - name: ALPINE_DATABASE_DRIVER + value: 'org.postgresql.Driver' + - name: ALPINE_DATABASE_USERNAME + value: 'deptrack' + - name: ALPINE_DATABASE_PASSWORD + value: 'deptrack' + - name: ALPINE_DATABASE_POOL_ENABLED + value: 'true' + - name: ALPINE_DATABASE_POOL_MAX_SIZE + value: '20' + - name: ALPINE_DATABASE_POOL_MIN_IDLE + value: '10' + - name: ALPINE_DATABASE_POOL_IDLE_TIMEOUT + value: '300000' + - name: ALPINE_DATABASE_POOL_MAX_LIFETIME + value: '600000' + volumeMounts: + - mountPath: /data + name: data + volumes: + - name: data + persistentVolumeClaim: + claimName: deptrack-data-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: deptrack-apiserver + namespace: deptrack + labels: + name: deptrack-apiserver +spec: + type: ClusterIP + ports: + - port: 8080 + name: deptrack-apiserver + selector: + app: deptrack-apiserver +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: deptrack-frontend + namespace: deptrack + labels: + app: deptrack-frontend +spec: + replicas: 1 + selector: + matchLabels: + app: deptrack-frontend + template: + metadata: + labels: + app: deptrack-frontend + spec: + initContainers: + - name: init-frontend-config + image: dependencytrack/frontend + command: + - sh + - -c + - | + echo "Init container starting..." + # Make sure temporary mount exists + mkdir -p /mnt/config + + # Copy config.json from image to PVC if it doesn't exist + if [ ! -f /mnt/config/config.json ]; then + echo "Seeding config.json from container image..." + cp /opt/owasp/dependency-track-frontend/static/config.json /mnt/config/config.json + echo "Seeding complete." + else + echo "config.json already exists on PVC, skipping." + fi + volumeMounts: + - name: config + mountPath: /mnt/config + containers: + - name: deptrack-frontend + image: dependencytrack/frontend + ports: + - containerPort: 8080 + env: + - name: API_BASE_URL + value: 'https://deptracka-dev.allarddcs.nl' + volumeMounts: + - name: config + mountPath: /opt/owasp/dependency-track-frontend/static/config.json + subPath: config.json + volumes: + - name: config + persistentVolumeClaim: + claimName: deptrack-config-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: deptrack-frontend + namespace: deptrack + labels: + name: deptrack-frontend +spec: + type: ClusterIP + ports: + - port: 8080 + name: deptrack-frontend + selector: + app: deptrack-frontend +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptrackf-http + namespace: deptrack +spec: + entryPoints: + - web + routes: + - match: Host(`deptrackf-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-frontend + port: 8080 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptracka-http + namespace: deptrack +spec: + entryPoints: + - web + routes: + - match: Host(`deptracka-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-apiserver + port: 8080 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptrackf-tls + namespace: deptrack +spec: + entryPoints: + - websecure + routes: + - match: Host(`deptrackf-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-frontend + port: 8080 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptracka-tls + namespace: deptrack +spec: + entryPoints: + - websecure + routes: + - match: Host(`deptracka-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-apiserver + port: 8080 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: deptrack-data-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/deptrack/data + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: deptrack-data-pvc + namespace: deptrack +spec: + storageClassName: "" + volumeName: deptrack-data-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: deptrack-config-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/deptrack/config + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: deptrack-config-pvc + namespace: deptrack +spec: + storageClassName: "" + volumeName: deptrack-config-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/dev/dnsutils/catalog-info.yaml b/dev/dnsutils/catalog-info.yaml new file mode 100644 index 0000000..00b4bfe --- /dev/null +++ b/dev/dnsutils/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-dnsutils + title: DNSUtils (dev) + description: DNSUtils instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=dnsutils" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/dnsutils + title: dnsutils-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/dnsutils/dnsutils.yaml b/dev/dnsutils/dnsutils.yaml new file mode 100755 index 0000000..ee6f6f7 --- /dev/null +++ b/dev/dnsutils/dnsutils.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: dnsutils +--- +apiVersion: v1 +kind: Pod +metadata: + name: dnsutils + namespace: dnsutils +spec: + containers: + - name: dnsutils + image: registry.k8s.io/e2e-test-images/jessie-dnsutils:1.3 + command: + - sleep + - "infinity" + imagePullPolicy: IfNotPresent + restartPolicy: Always diff --git a/dev/drupal/catalog-info.yaml b/dev/drupal/catalog-info.yaml new file mode 100644 index 0000000..7225304 --- /dev/null +++ b/dev/drupal/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-drupal + title: Drupal (dev) + description: Drupal instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=drupal" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/drupal + title: drupal-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/drupal/drupal.yaml b/dev/drupal/drupal.yaml new file mode 100644 index 0000000..5b3038b --- /dev/null +++ b/dev/drupal/drupal.yaml @@ -0,0 +1,133 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: drupal + namespace: drupal + labels: + app: drupal +spec: + replicas: 1 + selector: + matchLabels: + app: drupal + template: + metadata: + labels: + app: drupal + spec: + initContainers: + - name: init-sites-volume + image: drupal + command: ['/bin/bash', '-c'] + args: ['chown www-data:www-data /var/www/html/sites -R'] + volumeMounts: + - name: drupal-data + mountPath: /var/www/html/sites + subPath: sites + containers: + - name: drupal + image: drupal + imagePullPolicy: Always + ports: + - containerPort: 80 + volumeMounts: + - name: drupal-data + mountPath: /var/www/html/modules + subPath: modules + - name: drupal-data + mountPath: /var/www/html/profiles + subPath: profiles + - name: drupal-data + mountPath: /var/www/html/themes + subPath: themes + - name: drupal-data + mountPath: /var/www/html/sites + subPath: sites + volumes: + - name: drupal-data + persistentVolumeClaim: + claimName: drupal-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: drupal + namespace: drupal + labels: + app: drupal +spec: + sessionAffinity: None + ports: + - protocol: TCP + port: 80 + selector: + app: drupal + type: LoadBalancer +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: drupal-tls + namespace: drupal +spec: + entryPoints: + - websecure + routes: + - match: Host(`drupal-dev.alldcs.nl`) + kind: Rule + services: + - name: drupal + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: drupal-http + namespace: drupal +spec: + entryPoints: + - web + routes: + - match: Host(`drupal-dev.alldcs.nl`) + kind: Rule + services: + - name: drupal + port: 80 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: drupal-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/drupal/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: drupal-pvc + namespace: drupal +spec: + storageClassName: "" + volumeName: drupal-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + diff --git a/dev/elasticsearch-kibana/README.md b/dev/elasticsearch-kibana/README.md new file mode 100755 index 0000000..6f02fff --- /dev/null +++ b/dev/elasticsearch-kibana/README.md @@ -0,0 +1,27 @@ +CRD's INSTALLEREN: + +Handleiding komt van: + +www.elastic.co/guide/en/cloud-on-k8s/current/k8s-quickstart.html + +Installeren CRD's + +kubectl create -f https://download.elastic.co/downloads/eck/2.5.0/crds.yaml + +customresourcedefinition.apiextensions.k8s.io/agents.agent.k8s.elastic.co created +customresourcedefinition.apiextensions.k8s.io/apmservers.apm.k8s.elastic.co created +customresourcedefinition.apiextensions.k8s.io/beats.beat.k8s.elastic.co created +customresourcedefinition.apiextensions.k8s.io/elasticmapsservers.maps.k8s.elastic.co created +customresourcedefinition.apiextensions.k8s.io/elasticsearchautoscalers.autoscaling.k8s.elastic.co created +customresourcedefinition.apiextensions.k8s.io/elasticsearches.elasticsearch.k8s.elastic.co created +customresourcedefinition.apiextensions.k8s.io/enterprisesearches.enterprisesearch.k8s.elastic.co created +customresourcedefinition.apiextensions.k8s.io/kibanas.kibana.k8s.elastic.co created + + +Ik heb een loadbancer toegevoerd )kibana-lb.yaml , die werkt vanaf buiten niet (relative url?) maar wel op de nodeport. + +USER/PASSWORD: + +user: elastic +password: +kubectl get secret quickstart-es-elastic-user -o=jsonpath='{.data.elastic}' | base64 --decode; echo diff --git a/dev/elasticsearch-kibana/agent/elastic-agent-managed-kubernetes.yaml b/dev/elasticsearch-kibana/agent/elastic-agent-managed-kubernetes.yaml new file mode 100755 index 0000000..b2e3c01 --- /dev/null +++ b/dev/elasticsearch-kibana/agent/elastic-agent-managed-kubernetes.yaml @@ -0,0 +1,268 @@ +# For more information refer to https://www.elastic.co/guide/en/fleet/current/running-on-kubernetes-managed-by-fleet.html +apiVersion: apps/v1 +kind: DaemonSet +metadata: + name: elastic-agent + namespace: kube-system + labels: + app: elastic-agent +spec: + selector: + matchLabels: + app: elastic-agent + template: + metadata: + labels: + app: elastic-agent + spec: + # Tolerations are needed to run Elastic Agent on Kubernetes control-plane nodes. + # Agents running on control-plane nodes collect metrics from the control plane components (scheduler, controller manager) of Kubernetes + tolerations: + - key: node-role.kubernetes.io/control-plane + effect: NoSchedule + - key: node-role.kubernetes.io/master + effect: NoSchedule + serviceAccountName: elastic-agent + hostNetwork: true + # 'hostPID: true' enables the Elastic Security integration to observe all process exec events on the host. + # Sharing the host process ID namespace gives visibility of all processes running on the same host. + hostPID: true + dnsPolicy: ClusterFirstWithHostNet + containers: + - name: elastic-agent + image: docker.elastic.co/beats/elastic-agent:8.5.3 + env: + # Set to 1 for enrollment into Fleet server. If not set, Elastic Agent is run in standalone mode + - name: FLEET_ENROLL + value: "1" + # Set to true to communicate with Fleet with either insecure HTTP or unverified HTTPS + - name: FLEET_INSECURE + value: "true" + # Fleet Server URL to enroll the Elastic Agent into + # FLEET_URL can be found in Kibana, go to Management > Fleet > Settings + - name: FLEET_URL + value: "https://fleet-server:8220" + # Elasticsearch API key used to enroll Elastic Agents in Fleet (https://www.elastic.co/guide/en/fleet/current/fleet-enrollment-tokens.html#fleet-enrollment-tokens) + # If FLEET_ENROLLMENT_TOKEN is empty then KIBANA_HOST, KIBANA_FLEET_USERNAME, KIBANA_FLEET_PASSWORD are needed + - name: FLEET_ENROLLMENT_TOKEN + value: "token-id" + - name: KIBANA_HOST + value: "http://kibana:5601" + # The basic authentication username used to connect to Kibana and retrieve a service_token to enable Fleet + - name: KIBANA_FLEET_USERNAME + value: "elastic" + # The basic authentication password used to connect to Kibana and retrieve a service_token to enable Fleet + - name: KIBANA_FLEET_PASSWORD + value: "changeme" + - name: NODE_NAME + valueFrom: + fieldRef: + fieldPath: spec.nodeName + - name: POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + securityContext: + runAsUser: 0 + resources: + limits: + memory: 500Mi + requests: + cpu: 100m + memory: 200Mi + volumeMounts: + - name: proc + mountPath: /hostfs/proc + readOnly: true + - name: cgroup + mountPath: /hostfs/sys/fs/cgroup + readOnly: true + - name: varlibdockercontainers + mountPath: /var/lib/docker/containers + readOnly: true + - name: varlog + mountPath: /var/log + readOnly: true + - name: etc-full + mountPath: /hostfs/etc + readOnly: true + - name: var-lib + mountPath: /hostfs/var/lib + readOnly: true + - name: etc-mid + mountPath: /etc/machine-id + readOnly: true + volumes: + - name: proc + hostPath: + path: /proc + - name: cgroup + hostPath: + path: /sys/fs/cgroup + - name: varlibdockercontainers + hostPath: + path: /var/lib/docker/containers + - name: varlog + hostPath: + path: /var/log + # The following volumes are needed for Cloud Security Posture integration (cloudbeat) + # If you are not using this integration, then these volumes and the corresponding + # mounts can be removed. + - name: etc-full + hostPath: + path: /etc + - name: var-lib + hostPath: + path: /var/lib + # Mount /etc/machine-id from the host to determine host ID + # Needed for Elastic Security integration + - name: etc-mid + hostPath: + path: /etc/machine-id + type: File +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: elastic-agent +subjects: + - kind: ServiceAccount + name: elastic-agent + namespace: kube-system +roleRef: + kind: ClusterRole + name: elastic-agent + apiGroup: rbac.authorization.k8s.io +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + namespace: kube-system + name: elastic-agent +subjects: + - kind: ServiceAccount + name: elastic-agent + namespace: kube-system +roleRef: + kind: Role + name: elastic-agent + apiGroup: rbac.authorization.k8s.io +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: elastic-agent-kubeadm-config + namespace: kube-system +subjects: + - kind: ServiceAccount + name: elastic-agent + namespace: kube-system +roleRef: + kind: Role + name: elastic-agent-kubeadm-config + apiGroup: rbac.authorization.k8s.io +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: elastic-agent + labels: + k8s-app: elastic-agent +rules: + - apiGroups: [""] + resources: + - nodes + - namespaces + - events + - pods + - services + - configmaps + # Needed for cloudbeat + - serviceaccounts + - persistentvolumes + - persistentvolumeclaims + verbs: ["get", "list", "watch"] + # Enable this rule only if planing to use kubernetes_secrets provider + #- apiGroups: [""] + # resources: + # - secrets + # verbs: ["get"] + - apiGroups: ["extensions"] + resources: + - replicasets + verbs: ["get", "list", "watch"] + - apiGroups: ["apps"] + resources: + - statefulsets + - deployments + - replicasets + - daemonsets + verbs: ["get", "list", "watch"] + - apiGroups: + - "" + resources: + - nodes/stats + verbs: + - get + - apiGroups: [ "batch" ] + resources: + - jobs + - cronjobs + verbs: [ "get", "list", "watch" ] + # Needed for apiserver + - nonResourceURLs: + - "/metrics" + verbs: + - get + # Needed for cloudbeat + - apiGroups: ["rbac.authorization.k8s.io"] + resources: + - clusterrolebindings + - clusterroles + - rolebindings + - roles + verbs: ["get", "list", "watch"] + # Needed for cloudbeat + - apiGroups: ["policy"] + resources: + - podsecuritypolicies + verbs: ["get", "list", "watch"] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: elastic-agent + # Should be the namespace where elastic-agent is running + namespace: kube-system + labels: + k8s-app: elastic-agent +rules: + - apiGroups: + - coordination.k8s.io + resources: + - leases + verbs: ["get", "create", "update"] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: elastic-agent-kubeadm-config + namespace: kube-system + labels: + k8s-app: elastic-agent +rules: + - apiGroups: [""] + resources: + - configmaps + resourceNames: + - kubeadm-config + verbs: ["get"] +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: elastic-agent + namespace: kube-system + labels: + k8s-app: elastic-agent +--- diff --git a/dev/elasticsearch-kibana/catalog-info.yaml b/dev/elasticsearch-kibana/catalog-info.yaml new file mode 100644 index 0000000..11d528b --- /dev/null +++ b/dev/elasticsearch-kibana/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-elasticsearch-kibana + title: Elasticsearch-kibana (dev) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/dev/elasticsearch-kibana/elasticsearch.yaml b/dev/elasticsearch-kibana/elasticsearch.yaml new file mode 100755 index 0000000..38bf1cd --- /dev/null +++ b/dev/elasticsearch-kibana/elasticsearch.yaml @@ -0,0 +1,11 @@ +apiVersion: elasticsearch.k8s.elastic.co/v1 +kind: Elasticsearch +metadata: + name: quickstart +spec: + version: 8.5.3 + nodeSets: + - name: default + count: 1 + config: + node.store.allow_mmap: false diff --git a/dev/elasticsearch-kibana/ingressroute-http.yml b/dev/elasticsearch-kibana/ingressroute-http.yml new file mode 100755 index 0000000..9256855 --- /dev/null +++ b/dev/elasticsearch-kibana/ingressroute-http.yml @@ -0,0 +1,31 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: quickstart-http-dialdcs +spec: + entryPoints: + - web + routes: + - match: Host("elastic.dialdcs.com") + kind: Rule + middlewares: + - name: redirect-to-https + services: + - name: quickstart-kb-http + port: 5601 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: quickstart-http-alldcs +spec: + entryPoints: + - web + routes: + - match: Host("elastic.alldcs.nl") + kind: Rule + middlewares: + - name: redirect-to-https + services: + - name: quickstart-kb-http + port: 5601 diff --git a/dev/elasticsearch-kibana/ingressroute-tls.yml b/dev/elasticsearch-kibana/ingressroute-tls.yml new file mode 100755 index 0000000..ce7dfb3 --- /dev/null +++ b/dev/elasticsearch-kibana/ingressroute-tls.yml @@ -0,0 +1,35 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: quickstart-tls-dialdcs +spec: + entryPoints: + - websecure + routes: + - match: Host(`elastic.dialdcs.com`) + kind: Rule + services: + - name: quickstart-kb-http + port: 5601 + middlewares: + - name: kibana-replace-url + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: quickstart-tls-alldcs +spec: + entryPoints: + - websecure + routes: + - match: Host(`elastic.alldcs.nl`) + kind: Rule + services: + - name: quickstart-kb-http + port: 5601 + middlewares: + - name: kibana-replace-url + tls: + certResolver: letsencrypt diff --git a/dev/elasticsearch-kibana/kibana-lb.yaml b/dev/elasticsearch-kibana/kibana-lb.yaml new file mode 100755 index 0000000..429094f --- /dev/null +++ b/dev/elasticsearch-kibana/kibana-lb.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: Service +metadata: + name: kibana-lb + namespace: default + labels: + common.k8s.elastic.co/type: kibana + kibana.k8s.elastic.co/name: quickstart +spec: + type: LoadBalancer + selector: + common.k8s.elastic.co/type: kibana + kibana.k8s.elastic.co/name: quickstart + ports: + - port: 8080 + protocol: "TCP" + name: "http" + targetPort: 5601 diff --git a/dev/elasticsearch-kibana/kibana-replace-url.yaml b/dev/elasticsearch-kibana/kibana-replace-url.yaml new file mode 100755 index 0000000..5ec38ac --- /dev/null +++ b/dev/elasticsearch-kibana/kibana-replace-url.yaml @@ -0,0 +1,8 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: Middleware +metadata: + name: kibana-replace-url +spec: + redirectRegex: + regex: "^https://elastic.dialdcs.com\\.(.*)" + replacement: "https://${1}" diff --git a/dev/elasticsearch-kibana/kibana.yaml b/dev/elasticsearch-kibana/kibana.yaml new file mode 100755 index 0000000..f860f12 --- /dev/null +++ b/dev/elasticsearch-kibana/kibana.yaml @@ -0,0 +1,16 @@ +apiVersion: kibana.k8s.elastic.co/v1 +kind: Kibana +metadata: + name: quickstart +spec: + version: 8.5.3 + http: + service: + spec: + type: LoadBalancer + tls: + selfSignedCertificate: + disabled: true + count: 1 + elasticsearchRef: + name: quickstart diff --git a/dev/gitea/catalog-info.yaml b/dev/gitea/catalog-info.yaml new file mode 100644 index 0000000..1ed29a2 --- /dev/null +++ b/dev/gitea/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-gitea + title: Gitea (dev) + description: Gitea instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=gitea" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/gitea + title: gitea-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/gitea/dev/README.md b/dev/gitea/dev/README.md new file mode 100755 index 0000000..c977865 --- /dev/null +++ b/dev/gitea/dev/README.md @@ -0,0 +1,38 @@ +#Installatie via Helm: + +helm repo add bitnami https://charts.bitnami +kubectl apply -f gitea-pvc.yaml +kubectl apply -f ingressrouteTCP-http.yaml +kubectl apply -f ingressrouteTCP-tls.yaml +kubectl apply -f ingressrouteTCP-ssh.yaml +helm install gitea bitnami/gitea -f values.yaml -n gitea + +- er wordt via cert-manager een certificaat aangemaakt: + + +gitea.alldcs.nl-tls kubernetes.io/tls +gitea-externaldb Opaque +gitea Opaque +sh.helm.release.v1.gitea.v1 helm.sh/release.v1 + +#repository koppelen: + +https://gitea.alldcs.nl/allard/kubernetes DUS ZONDER .git! +user: allard +password: Gitea01@ +project: default + + +#webhook definieren bij je repository: + +http://el-gitea-listener.default.svc.cluster.local:8080 +http://192.168.2.170:31234 + +en in app.ini: + +[webhook] +ALLOWED_HOST_LIST=el-gitea-listener.default.svc.cluster.local +#dus zonder http:// en :8080 + + + diff --git a/dev/gitea/dev/gitea-pvc.yaml b/dev/gitea/dev/gitea-pvc.yaml new file mode 100755 index 0000000..f1ecfee --- /dev/null +++ b/dev/gitea/dev/gitea-pvc.yaml @@ -0,0 +1,33 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: gitea-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/gitea-helm + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: gitea-pvc + namespace: gitea +spec: + storageClassName: "" + volumeName: gitea-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi diff --git a/dev/gitea/dev/ingressroute-http.yaml b/dev/gitea/dev/ingressroute-http.yaml new file mode 100755 index 0000000..d02898a --- /dev/null +++ b/dev/gitea/dev/ingressroute-http.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: gitea-http + namespace: gitea +spec: + entryPoints: + - web + routes: + - match: Host(`gitea-dev.allarddcs.nl`) + kind: Rule + services: + - name: gitea + port: 3000 diff --git a/dev/gitea/dev/ingressroute-tls.yaml b/dev/gitea/dev/ingressroute-tls.yaml new file mode 100755 index 0000000..964b1b7 --- /dev/null +++ b/dev/gitea/dev/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: gitea-tls + namespace: gitea +spec: + entryPoints: + - websecure + routes: + - match: Host(`gitea-dev.allarddcs.nl`) + kind: Rule + services: + - name: gitea + port: 3000 + tls: + secretName: gitea-dev.allarddcs.nl-tls diff --git a/dev/gitea/dev/ingressrouteTCP-http.yaml b/dev/gitea/dev/ingressrouteTCP-http.yaml new file mode 100755 index 0000000..46a9380 --- /dev/null +++ b/dev/gitea/dev/ingressrouteTCP-http.yaml @@ -0,0 +1,13 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: gitea-tcp-http + namespace: gitea +spec: + entryPoints: + - web + routes: + - match: HostSNI(`gitea-dev.allarddcs.nl`) + services: + - name: gitea + port: 3000 diff --git a/dev/gitea/dev/ingressrouteTCP-ssh.yaml b/dev/gitea/dev/ingressrouteTCP-ssh.yaml new file mode 100755 index 0000000..9fd37e3 --- /dev/null +++ b/dev/gitea/dev/ingressrouteTCP-ssh.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: gitea-ssh + namespace: gitea +spec: + entryPoints: + - gitea-ssh + routes: + - match: HostSNI(`gitea-dev.allarddcs.nl`) + services: + - name: gitea + port: 22 + diff --git a/dev/gitea/dev/ingressrouteTCP-tls.yaml b/dev/gitea/dev/ingressrouteTCP-tls.yaml new file mode 100755 index 0000000..95c9138 --- /dev/null +++ b/dev/gitea/dev/ingressrouteTCP-tls.yaml @@ -0,0 +1,15 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: gitea-tcp-https + namespace: gitea +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`gitea-dev.allarddcs.nl`) + services: + - name: gitea + port: 3000 + tls: + passthrough: true diff --git a/dev/gitea/dev/values.yaml b/dev/gitea/dev/values.yaml new file mode 100755 index 0000000..0d5d006 --- /dev/null +++ b/dev/gitea/dev/values.yaml @@ -0,0 +1,677 @@ +# @section Global parameters +## Global Docker image parameters +## Please, note that this will override the image parameters, including dependencies, configured to use the global value +## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass +## + +## @param global.imageRegistry Global Docker image registry +## @param global.imagePullSecrets Global Docker registry secret names as an array +## @param global.storageClass Global StorageClass for Persistent Volume(s) +## +global: + imageRegistry: "" + ## E.g. + ## imagePullSecrets: + ## - myRegistryKeySecretName + ## + imagePullSecrets: [] + storageClass: "" + +## @section Common parameters +## + +## @param kubeVersion Force target Kubernetes version (using Helm capabilities if not set) +## +kubeVersion: "" +## @param nameOverride String to partially override gitea.fullname template (will maintain the release name) +## +nameOverride: "" +## @param fullnameOverride String to fully override gitea.fullname template +## +fullnameOverride: "" +## @param namespaceOverride String to fully override common.names.namespace +## +namespaceOverride: "" +## @param commonAnnotations Common annotations to add to all Gitea resources (sub-charts are not considered). Evaluated as a template +## +commonAnnotations: {} +## @param commonLabels Common labels to add to all Gitea resources (sub-charts are not considered). Evaluated as a template +## +commonLabels: {} + +## @param extraDeploy Array of extra objects to deploy with the release (evaluated as a template). +## +extraDeploy: [] + +## @section Gitea parameters +## + +## Bitnami Gitea image version +## ref: https://hub.docker.com/r/bitnami/gitea/tags/ +## @param image.registry Gitea image registry +## @param image.repository Gitea Image name +## @param image.tag Gitea Image tag +## @param image.digest Gitea image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag +## @param image.pullPolicy Gitea image pull policy +## @param image.pullSecrets Specify docker-registry secret names as an array +## @param image.debug Specify if debug logs should be enabled +## +image: + registry: docker.io + repository: bitnami/gitea +# tag: 1.19.3-debian-11-r1 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Set to true if you would like to see extra information on logs + ## + debug: false +## @param replicaCount Number of Gitea Pods to run (requires ReadWriteMany PVC support) +## +replicaCount: 1 +## @param adminUsername User of the application +## ref: https://github.com/bitnami/containers/tree/main/bitnami/gitea#configuration +## +adminUsername: admin +## @param adminPassword Application password +## Defaults to a random 10-character alphanumeric string if not set +## ref: https://github.com/bitnami/containers/tree/main/bitnami/gitea#configuration +## +adminPassword: "Gitea01@" +## @param adminEmail Admin email +## ref: https://github.com/bitnami/containers/tree/main/bitnami/gitea#configuration +## +adminEmail: admin@allarddcs.nl +## @param appName Gitea application name +## ref: https://github.com/bitnami/containers/tree/main/bitnami/gitea#configuration +## +appName: gitea +## @param runMode Gitea application host +## ref: https://github.com/bitnami/containers/tree/main/bitnami/gitea#configuration +## +runMode: prod +## @param exposeSSH Make the SSH server accesible +## +exposeSSH: true +## @param rootURL UI Root URL (for link generation) +## +rootURL: "" +## @param command Override default container command (useful when using custom images) +## +command: [] +## @param args Override default container args (useful when using custom images) +## +args: [] +## @param updateStrategy.type Update strategy - only really applicable for deployments with RWO PVs attached +## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the +## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will +## terminate the single previous pod, so that the new, incoming pod can attach to the PV +## +updateStrategy: + type: RollingUpdate +## @param priorityClassName Gitea pods' priorityClassName +## +priorityClassName: "" +## @param schedulerName Name of the k8s scheduler (other than default) +## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ +## +schedulerName: "" +## @param topologySpreadConstraints Topology Spread Constraints for pod assignment +## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ +## The value is evaluated as a template +## +topologySpreadConstraints: [] +## @param hostAliases [array] Add deployment host aliases +## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ +## +hostAliases: [] +## @param extraEnvVars Extra environment variables +## For example: +## +extraEnvVars: [] +# - name: BEARER_AUTH +# value: true +## @param extraEnvVarsCM ConfigMap containing extra env vars +## +extraEnvVarsCM: "" +## @param extraEnvVarsSecret Secret containing extra env vars (in case of sensitive data) +## +extraEnvVarsSecret: "" +## @param extraVolumes Array of extra volumes to be added to the deployment (evaluated as template). Requires setting `extraVolumeMounts` +## +extraVolumes: [] +## @param extraVolumeMounts Array of extra volume mounts to be added to the container (evaluated as template). Normally used with `extraVolumes`. +## +extraVolumeMounts: [] +## @param initContainers Add additional init containers to the pod (evaluated as a template) +## +initContainers: [] +## @param sidecars Attach additional containers to the pod (evaluated as a template) +## +sidecars: [] +## @param tolerations Tolerations for pod assignment +## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ +## +tolerations: [] +## @param existingSecret Name of a secret with the application password +## +existingSecret: "" +## @param existingSecretKey Key inside the existing secret containing the password +## +existingSecretKey: "admin-password" +## SMTP mail delivery configuration +## ref: https://github.com/bitnami/containers/tree/main/bitnami/gitea/#smtp-configuration +## @param smtpHost SMTP host +## @param smtpPort SMTP port +## @param smtpUser SMTP user +## @param smtpPassword SMTP password +## +smtpHost: "" +smtpPort: "" +smtpUser: "" +smtpPassword: "" +## @param smtpExistingSecret The name of an existing secret with SMTP credentials +## NOTE: Must contain key `smtp-password` +## NOTE: When it's set, the `smtpPassword` parameter is ignored +## +smtpExistingSecret: "" +## @param containerPorts [object] Container ports +## +containerPorts: + http: 3000 + ssh: 2222 +## Enable persistence using Persistent Volume Claims +## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/ +## +persistence: + ## @param persistence.enabled Enable persistence using PVC + ## + enabled: true + ## @param persistence.storageClass PVC Storage Class for Gitea volume + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + storageClass: "" + ## @param persistence.accessModes PVC Access Mode for Gitea volume + ## Requires persistence.enabled: true + ## If defined, PVC must be created manually before volume will be bound + ## + accessModes: + - ReadWriteOnce + ## @param persistence.size PVC Storage Request for Gitea volume + ## + size: 2Gi + ## @param persistence.dataSource Custom PVC data source + ## + dataSource: {} + ## @param persistence.existingClaim A manually managed Persistent Volume Claim + ## Requires persistence.enabled: true + ## If defined, PVC must be created manually before volume will be bound + ## + existingClaim: "gitea-pvc" + ## @param persistence.hostPath If defined, the gitea-data volume will mount to the specified hostPath. + ## Requires persistence.enabled: true + ## Requires persistence.existingClaim: nil|false + ## Default: nil. + ## + hostPath: "" + ## @param persistence.annotations Persistent Volume Claim annotations + ## + annotations: {} + ## @param persistence.selector Selector to match an existing Persistent Volume for Gitea data PVC + ## If set, the PVC can't have a PV dynamically provisioned for it + ## E.g. + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + +## @param podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` +## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity +## +podAffinityPreset: "" +## @param podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` +## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity +## +podAntiAffinityPreset: soft +## Node affinity preset +## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity +## @param nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` +## @param nodeAffinityPreset.key Node label key to match Ignored if `affinity` is set. +## @param nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set. +## +nodeAffinityPreset: + type: "" + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] +## @param affinity Affinity for pod assignment +## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity +## Note: podAffinityPreset, podAntiAffinityPreset, and nodeAffinityPreset will be ignored when it's set +## +affinity: {} +## @param nodeSelector Node labels for pod assignment. Evaluated as a template. +## ref: https://kubernetes.io/docs/user-guide/node-selection/ +## +nodeSelector: {} +## Gitea container's resource requests and limits +## ref: http://kubernetes.io/docs/user-guide/compute-resources/ +## @param resources.requests [object] The requested resources for the init container +## @param resources.limits The resources limits for the init container +## +resources: + limits: {} + requests: {} +## Configure Pods Security Context +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod +## @param podSecurityContext.enabled Enable Gitea pods' Security Context +## @param podSecurityContext.fsGroup Gitea pods' group ID +## +podSecurityContext: + enabled: true + fsGroup: 1001 +## Configure Container Security Context (only main container) +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container +## @param containerSecurityContext.enabled Enable Gitea containers' Security Context +## @param containerSecurityContext.runAsUser Gitea containers' Security Context +## @param containerSecurityContext.runAsNonRoot Set Controller container's Security Context runAsNonRoot +## +containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true +## Configure extra options for startup probe +## Gitea core exposes / to unauthenticated requests, making it a good +## default startup and readiness path. However, that may not always be the +## case. For example, if the image value is overridden to an image containing a +## module that alters that route, or an image that does not auto-install Gitea. +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes +## @param startupProbe.enabled Enable startupProbe +## @param startupProbe.path Request path for startupProbe +## @param startupProbe.initialDelaySeconds Initial delay seconds for startupProbe +## @param startupProbe.periodSeconds Period seconds for startupProbe +## @param startupProbe.timeoutSeconds Timeout seconds for startupProbe +## @param startupProbe.failureThreshold Failure threshold for startupProbe +## @param startupProbe.successThreshold Success threshold for startupProbe +## +startupProbe: + enabled: false + path: / + initialDelaySeconds: 600 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 5 + successThreshold: 1 +## Configure extra options for liveness probe +## Gitea core exposes / to unauthenticated requests, making it a good +## default liveness and readiness path. However, that may not always be the +## case. For example, if the image value is overridden to an image containing a +## module that alters that route, or an image that does not auto-install Gitea. +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes +## @param livenessProbe.enabled Enable livenessProbe +## @param livenessProbe.path Request path for livenessProbe +## @param livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe +## @param livenessProbe.periodSeconds Period seconds for livenessProbe +## @param livenessProbe.timeoutSeconds Timeout seconds for livenessProbe +## @param livenessProbe.failureThreshold Failure threshold for livenessProbe +## @param livenessProbe.successThreshold Success threshold for livenessProbe +## +livenessProbe: + enabled: true + path: / + initialDelaySeconds: 600 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 5 + successThreshold: 1 +## Configure extra options for readiness probe +## Gitea core exposes / to unauthenticated requests, making it a good +## default liveness and readiness path. However, that may not always be the +## case. For example, if the image value is overridden to an image containing a +## module that alters that route, or an image that does not auto-install Gitea. +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes +## @param readinessProbe.enabled Enable readinessProbe +## @param readinessProbe.path Request path for readinessProbe +## @param readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe +## @param readinessProbe.periodSeconds Period seconds for readinessProbe +## @param readinessProbe.timeoutSeconds Timeout seconds for readinessProbe +## @param readinessProbe.failureThreshold Failure threshold for readinessProbe +## @param readinessProbe.successThreshold Success threshold for readinessProbe +## +readinessProbe: + enabled: true + path: / + initialDelaySeconds: 30 + periodSeconds: 5 + timeoutSeconds: 1 + failureThreshold: 5 + successThreshold: 1 +## @param customStartupProbe Override default startup probe +## +customStartupProbe: {} +## @param customLivenessProbe Override default liveness probe +## +customLivenessProbe: {} +## @param customReadinessProbe Override default readiness probe +## +customReadinessProbe: {} +## @param lifecycleHooks LifecycleHook to set additional configuration at startup Evaluated as a template +## +lifecycleHooks: {} +## @param podAnnotations Pod annotations +## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ +## +podAnnotations: {} +## @param podLabels Add additional labels to the pod (evaluated as a template) +## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ +## +podLabels: {} + +## @section Traffic Exposure Parameters +## + +## Kubernetes configuration. For minikube, set this to NodePort, elsewhere use LoadBalancer +## +service: + ## @param service.type Kubernetes Service type + ## + type: ClusterIP +# type: ClusterIP + ## @param service.ports.http Service HTTP port + ## @param service.ports.ssh Service SSH port + ## + ports: + http: 3000 + ssh: 22 + ## @param service.loadBalancerSourceRanges Restricts access for LoadBalancer (only with `service.type: LoadBalancer`) + ## e.g: + ## loadBalancerSourceRanges: + ## - 0.0.0.0/0 + ## + loadBalancerSourceRanges: [] + ## @param service.loadBalancerIP loadBalancerIP for the Gitea Service (optional, cloud specific) + ## ref: https://kubernetes.io/docs/user-guide/services/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param service.nodePorts [object] Kubernetes node port + ## nodePorts: + ## http: + ## https: + ## + nodePorts: + http: "" + ssh: "" + ## @param service.externalTrafficPolicy Enable client source IP preservation + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param service.clusterIP Gitea service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param service.annotations Additional custom annotations for Gitea service + ## + annotations: {} + ## @param service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} +## Configure the ingress resource that allows you to access the +## Gitea installation. Set up the URL +## ref: https://kubernetes.io/docs/user-guide/ingress/ +## +ingress: + ## @param ingress.enabled Enable ingress controller resource + ## + enabled: true + + ## @param ingress.pathType Ingress Path type + ## + pathType: ImplementationSpecific + ## @param ingress.apiVersion Override API Version (automatically detected if not set) + ## + apiVersion: "" + ## @param ingress.ingressClassName IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+) + ## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster . + ## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/ + ## + ingressClassName: "traefik" + ## @param ingress.hostname Default host for the ingress resource + ## + hostname: "gitea-dev.allarddcs.nl" + ## @param ingress.path The Path to Gitea. You may need to set this to '/*' in order to use this + ## with ALB ingress controllers. + ## + path: / + ## @param ingress.annotations Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations. + ## For a full list of possible ingress annotations, please see + ## ref: https://github.com/kubernetes/ingress-nginx/blob/master/docs/user-guide/nginx-configuration/annotations.md + ## Use this parameter to set the required annotations for cert-manager, see + ## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations + ## + ## e.g: + ## annotations: + ## kubernetes.io/ingress.class: nginx + ## cert-manager.io/cluster-issuer: cluster-issuer-name + ## + annotations: + ingress.kubernetes.io/ssl-redirect: 'true' + ingress.kubernetes.io/proxy-body-size: '0' + nginx.ingress.kubernetes.io/ssl-redirect: 'true' + nginx.ingress.kubernetes.io/proxy-body-size: '0' + cert-manager.io/cluster-issuer: 'letsencrypt' + + ## @param ingress.tls Enable TLS configuration for the hostname defined at ingress.hostname parameter + ## TLS certificates will be retrieved from a TLS secret with name: {{- printf "%s-tls" .Values.ingress.hostname }} + ## You can use the ingress.secrets parameter to create this TLS secret or relay on cert-manager to create it + ## + tls: true + ## @param ingress.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm + ## + selfSigned: false + ## @param ingress.extraHosts The list of additional hostnames to be covered with this ingress record. + ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array + ## extraHosts: + ## - name: gitea.local + ## path: / + ## + extraHosts: [] + ## @param ingress.extraPaths Any additional arbitrary paths that may need to be added to the ingress under the main host. + ## For example: The ALB ingress controller requires a special rule for handling SSL redirection. + ## extraPaths: + ## - path: /* + ## backend: + ## serviceName: ssl-redirect + ## servicePort: use-annotation + ## + extraPaths: [] + ## @param ingress.extraTls The tls configuration for additional hostnames to be covered with this ingress record. + ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls + ## extraTls: + ## - hosts: + ## - gitea.local + ## secretName: gitea.local-tls + ## + extraTls: [] + ## @param ingress.secrets If you're providing your own certificates, please use this to add the certificates as secrets + ## key and certificate should start with -----BEGIN CERTIFICATE----- or + ## -----BEGIN RSA PRIVATE KEY----- + ## + ## name should line up with a tlsSecret set further up + ## If you're using cert-manager, this is unneeded, as it will create the secret for you if it is not set + ## + ## It is also possible to create and manage the certificates outside of this helm chart + ## Please see README.md for more information + ## Example: + ## - name: gitea.local-tls + ## key: + ## certificate: + ## + secrets: [] + ## @param ingress.extraRules Additional rules to be covered with this ingress record + ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-rules + ## e.g: + ## extraRules: + ## - host: example.local + ## http: + ## path: / + ## backend: + ## service: + ## name: example-svc + ## port: + ## name: http + ## + extraRules: [] + +## @section Other Parameters +## + +## Service account for Gitea to use. +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ +## +serviceAccount: + ## @param serviceAccount.create Enable creation of ServiceAccount for Gitea pod + ## + create: true + ## @param serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param serviceAccount.automountServiceAccountToken Allows auto mount of ServiceAccountToken on the serviceAccount created + ## Can be set to false if pods using this serviceAccount do not need to use K8s API + ## + automountServiceAccountToken: true + ## @param serviceAccount.annotations Additional custom annotations for the ServiceAccount + ## + annotations: {} + +## @section Database parameters +## + +## PostgreSQL chart configuration +## ref: https://github.com/bitnami/charts/blob/main/bitnami/postgresql/values.yaml +## @param postgresql.enabled Switch to enable or disable the PostgreSQL helm chart +## @param postgresql.auth.username Name for a custom user to create +## @param postgresql.auth.password Password for the custom user to create +## @param postgresql.auth.database Name for a custom database to create +## @param postgresql.auth.existingSecret Name of existing secret to use for PostgreSQL credentials +## @param postgresql.architecture PostgreSQL architecture (`standalone` or `replication`) +## @param postgresql.service.ports.postgresql PostgreSQL service port +## +postgresql: + enabled: false + auth: + username: bn_gitea + password: "" + database: bitnami_gitea + existingSecret: "" + architecture: standalone + service: + ports: + postgresql: 5432 + +## External PostgreSQL configuration +## All of these values are only used when postgresql.enabled is set to false +## @param externalDatabase.host Database host +## @param externalDatabase.port Database port number +## @param externalDatabase.user Non-root username for JupyterHub +## @param externalDatabase.password Password for the non-root username for JupyterHub +## @param externalDatabase.database JupyterHub database name +## @param externalDatabase.existingSecret Name of an existing secret resource containing the database credentials +## @param externalDatabase.existingSecretPasswordKey Name of an existing secret key containing the database credentials +## +externalDatabase: + host: "postgres14.postgres.svc.cluster.local" + port: 5432 + user: gitea + database: gitea + password: "gitea" +# existingSecret: "" +# existingSecretPasswordKey: "POSTGRES_PASSWORD" + +## @section Volume Permissions parameters +## + +## Init containers parameters: +## volumePermissions: Change the owner and group of the persistent volume mountpoint to runAsUser:fsGroup values from the securityContext section. +## +volumePermissions: + ## @param volumePermissions.enabled Enable init container that changes volume permissions in the data directory (for cases where the default k8s `runAsUser` and `fsUser` values do not work) + ## + enabled: false + ## @param volumePermissions.image.registry Init container volume-permissions image registry + ## @param volumePermissions.image.repository Init container volume-permissions image name + ## @param volumePermissions.image.tag Init container volume-permissions image tag + ## @param volumePermissions.image.digest Init container volume-permissions image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param volumePermissions.image.pullPolicy Init container volume-permissions image pull policy + ## @param volumePermissions.image.pullSecrets Specify docker-registry secret names as an array + ## + image: + registry: docker.io + repository: bitnami/os-shell +# tag: 11-debian-11-r113 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Init containers' resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## We usually recommend not to specify default resources and to leave this as a conscious + ## choice for the user. This also increases chances charts run on environments with little + ## resources, such as Minikube. If you do want to specify resources, uncomment the following + ## lines, adjust them as necessary, and remove the curly braces after 'resources:'. + ## @param volumePermissions.resources.limits The resources limits for the container + ## @param volumePermissions.resources.requests The requested resources for the container + ## + resources: + ## Example: + ## limits: + ## cpu: 100m + ## memory: 128Mi + ## + limits: {} + ## Examples: + ## requests: + ## cpu: 100m + ## memory: 128Mi + ## + requests: {} diff --git a/dev/gitea/handmatig/gitea.yaml b/dev/gitea/handmatig/gitea.yaml new file mode 100644 index 0000000..af894ab --- /dev/null +++ b/dev/gitea/handmatig/gitea.yaml @@ -0,0 +1,119 @@ +apiVersion: v1 +kind: Service +metadata: + name: gitea + namespace: "gitea" + labels: + app.kubernetes.io/instance: gitea + app.kubernetes.io/name: gitea +spec: + type: ClusterIP + sessionAffinity: None + ports: + - name: http + port: 3000 + targetPort: http + nodePort: null + - name: ssh + port: 2222 + targetPort: ssh + nodePort: null + selector: + app.kubernetes.io/instance: gitea + app.kubernetes.io/name: gitea +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: gitea + namespace: "gitea" +spec: + selector: + matchLabels: + app.kubernetes.io/name: gitea + replicas: 1 + template: + metadata: + labels: + app.kubernetes.io/instance: gitea + app.kubernetes.io/name: gitea + spec: + containers: + - name: gitea + image: gitea/gitea + env: + - name: GITEA__database__DB_TYPE + value: postgres + - name: GITEA__database__HOST + value: postgres14.postgres:5432 + - name: GITEA__database__NAME + value: gitea + - name: GITEA__database__USER + value: gitea + - name: GITEA__database__PASSWD + value: gitea + ports: + - name: http + containerPort: 3000 + - name: ssh + containerPort: 2222 + volumeMounts: + - name: gitea-data + mountPath: /data + volumes: + - name: gitea-data + persistentVolumeClaim: + claimName: gitea-pvc +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: gitea-tls + namespace: gitea +spec: + entryPoints: + - websecure + routes: + - match: Host(`gitea-dev.allarddcs.nl`) + kind: Rule + services: + - name: gitea + port: 3000 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: gitea-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/gitea + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: gitea-pvc + namespace: gitea +spec: + storageClassName: "" + volumeName: gitea-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi + + diff --git a/dev/gitea/tekton-triggers/README.md b/dev/gitea/tekton-triggers/README.md new file mode 100644 index 0000000..66613e3 --- /dev/null +++ b/dev/gitea/tekton-triggers/README.md @@ -0,0 +1,15 @@ +#eventlistener voor gitea installeren: + + serviceaccount tekton-robot aanmaken: + +kubectl apply -f rbac.yaml + +kubectl apply -f gitea-binding.yaml + +kubectl apply -f gitea-listener.yaml + +kubectl apply -f gitea-pipeline-template.yaml + + webhook aanmaken in gitea: + +http://el-gitea-listener.default:8080 diff --git a/dev/gitea/tekton-triggers/gitea-binding.yaml b/dev/gitea/tekton-triggers/gitea-binding.yaml new file mode 100755 index 0000000..a099997 --- /dev/null +++ b/dev/gitea/tekton-triggers/gitea-binding.yaml @@ -0,0 +1,13 @@ +apiVersion: triggers.tekton.dev/v1beta1 +kind: TriggerBinding +metadata: + name: gitea-binding +spec: + params: + - name: repo-url + value: $(body.repository.clone_url) + - name: git-revision +# value: $(body.repository.description) + value: $(extensions.image-tag) + - name: image-reference + value: harbor-dev.allarddcs.nl/$(body.repository.full_name):$(extensions.image-tag) diff --git a/dev/gitea/tekton-triggers/gitea-listener.yaml b/dev/gitea/tekton-triggers/gitea-listener.yaml new file mode 100755 index 0000000..f827a61 --- /dev/null +++ b/dev/gitea/tekton-triggers/gitea-listener.yaml @@ -0,0 +1,34 @@ +apiVersion: triggers.tekton.dev/v1beta1 +kind: EventListener +metadata: + name: gitea-listener +spec: + namespaceSelector: {} + resources: {} + serviceAccountName: tekton-robot + triggers: + - bindings: + - kind: TriggerBinding + ref: gitea-binding + interceptors: + - params: + - name: overlays + value: +# - key: image-tag +# expression: '''harbor-dev.alldcs.nl''' + - key: image-name + expression: '[''harbor-dev.allarddcs.nl'',body.repository.full_name].join(''/'')' + - key: registry + expression: body.repository.description.split('/')[0] + - key: repository + expression: body.repository.description.split('/')[1] + - key: version + expression: body.repository.description.split('/')[2] + - key: image-tag + expression: body.ref.split('/')[2] + ref: + kind: ClusterInterceptor + name: cel + name: gitea-trigger + template: + ref: gitea-pipeline-template diff --git a/dev/gitea/tekton-triggers/gitea-pipeline-template.yaml b/dev/gitea/tekton-triggers/gitea-pipeline-template.yaml new file mode 100755 index 0000000..82eaf53 --- /dev/null +++ b/dev/gitea/tekton-triggers/gitea-pipeline-template.yaml @@ -0,0 +1,79 @@ +apiVersion: triggers.tekton.dev/v1beta1 +kind: TriggerTemplate +metadata: + name: gitea-pipeline-template +spec: + params: + - name: git-revision + description: The git revision (SHA) + default: master + - description: The git repository url + name: repo-url + - name: sonar-project-key + default: olproperties + description: sonar project key + - name: source-to-scan + description: location of th source that sonarqube should scan + default: ./src + - name: image-reference + description: imagename + - name: deptrack-apiKey + description: key to upload sbom to dependency-track + default: odt_UPC8l0R9vzQILZIphSoK15J4u4Ns3HEy + - name: deptrack-projectName + description: projectname in dependency-track + default: olproperties + - name: deptrack-projectVersion + description: projectversion in dependency-track + default: "1.1" + resourcetemplates: + - apiVersion: tekton.dev/v1beta1 + kind: PipelineRun + metadata: + generateName: openliberty-pipeline-run- + spec: + params: + - name: repo-url + value: $(tt.params.repo-url) + - name: image-reference + value: $(tt.params.image-reference) + - name: git-revision + value: $(tt.params.git-revision) + - name: sonar-project-key + value: $(tt.params.sonar-project-key) + - name: source-to-scan + value: $(tt.params.source-to-scan) + - name: deptrack-apiKey + value: $(tt.params.deptrack-apiKey) + - name: deptrack-projectName + value: $(tt.params.deptrack-projectName) + - name: deptrack-projectVersion + value: $(tt.params.deptrack-projectVersion) + pipelineRef: + name: openliberty-pipeline + workspaces: + - name: shared-data + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + - name: maven-settings + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + - configmap: + name: sonar-properties + name: sonar-settings + - name: registry-credentials + secret: + items: + - key: .dockerconfigjson + path: config.json + secretName: registry-credentials diff --git a/dev/gitea/tekton-triggers/gitea-trigger.yaml b/dev/gitea/tekton-triggers/gitea-trigger.yaml new file mode 100644 index 0000000..360e415 --- /dev/null +++ b/dev/gitea/tekton-triggers/gitea-trigger.yaml @@ -0,0 +1,202 @@ +apiVersion: triggers.tekton.dev/v1beta1 +kind: EventListener +metadata: + name: gitea-listener +spec: + namespaceSelector: {} + resources: {} + serviceAccountName: tekton-robot + triggers: + - bindings: + - kind: TriggerBinding + ref: gitea-binding + interceptors: + - params: + - name: overlays + value: + - key: version + expression: body.ref.split('/')[2] + ref: + kind: ClusterInterceptor + name: cel + name: gitea-trigger + template: + ref: gitea-pipeline-template +--- +apiVersion: triggers.tekton.dev/v1beta1 +kind: TriggerBinding +metadata: + name: gitea-binding +spec: + params: + - name: repo-url + value: $(body.repository.clone_url) + - name: git-revision + value: $(extensions.version) + - name: image-reference + value: harbor-dev.allarddcs.nl/$(body.repository.full_name):$(extensions.version) +# value: harbor-dev.allarddcs.nl/$(body.repository.full_name) +--- +apiVersion: triggers.tekton.dev/v1beta1 +kind: TriggerTemplate +metadata: + name: gitea-pipeline-template +spec: + params: + - name: git-revision + description: The git revision + #geen default waarde, komt uit trigger-binding. + - name: repo-url + description: The git repository url + #geen default waarde, komt uit trigger-binding. + - name: maven-mirror-url + description: url van de nexus-server die als proxy dient voor java-libraries + default: 'http://nexus.nexus.svc.cluster.local:8081/repository/maven-public/' + - name: sonar-host-url + description: url van de sonarqube-server + default: "https://sonarqube-dev.allarddcs.nl" + - name: sonar-organization + description: Organisatienaam in sonar waar vulnerabilities onder vallen + default: "allarddcs" + - name: sonar-token + description: authenticatiemiddel voor sonar (komt uit sonar) + default: sqp_214ee7c92e1b82b0d43dd9b1d9462eac8f50434c + - name: sonar-project-key + default: olproperties + description: sonar project key + - name: source-to-scan + description: location of the source that sonarqube should scan + default: ./src + #- name: image-reference + #description: imagename + #geen default waarde, komt uit trigger-binding. + - name: image + description: image + - name: registry + default: harbor-dev.allarddcs.nl + - name: project + default: allard + - name: image-name + default: olproperties + - name: cosign-image-url + default: + - name: tlsverify + description: wel of geen tls gebruiken bij push + default: "true" + - name: deptrack-url + description: url of deptrack api-server + default: https://deptracka-dev.allarddcs.nl + - name: deptrack-apiKey + description: key to upload sbom to dependency-track + default: odt_BRpq4el8T0XqdeunYMnefniaS0n8Yxd8 + - name: deptrack-projectName + description: projectname in dependency-track + default: olproperties + - name: deptrack-projectVersion + description: projectversion in dependency-track + default: "1.1" + resourcetemplates: + - apiVersion: tekton.dev/v1beta1 + kind: PipelineRun + metadata: + generateName: openliberty-pipeline-run- + spec: + params: + - name: repo-url + value: $(tt.params.repo-url) + - name: git-revision + value: $(tt.params.git-revision) + - name: maven-mirror-url + value: $(tt.params.maven-mirror-url) + - name: sonar-host-url + value: $(tt.params.sonar-host-url) + - name: sonar-organization + value: $(tt.params.sonar-organization) + - name: sonar-token + value: $(tt.params.sonar-token) + - name: sonar-project-key + value: $(tt.params.sonar-project-key) + - name: source-to-scan + value: $(tt.params.source-to-scan) +# - name: image-reference +# value: $(tt.params.image-reference) +# - name: image +# value: $(tt.params.registry)/$(tt.params.project)/$(tt.params.image-name):$(tt.params.git-revision) + - name: registry + value: $(tt.params.registry) + - name: project + value: $(tt.params.project) + - name: image-name + value: $(tt.params.image-name) + - name: cosign-image-url + value: $(tt.params.cosign-image-url) + - name: deptrack-url + value: $(tt.params.deptrack-url) + - name: tlsverify + value: $(tt.params.tlsverify) + - name: deptrack-apiKey + value: $(tt.params.deptrack-apiKey) + - name: deptrack-projectName + value: $(tt.params.deptrack-projectName) + - name: deptrack-projectVersion + value: $(tt.params.deptrack-projectVersion) + pipelineRef: + name: openliberty-pipeline + workspaces: + - name: shared-data + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + - name: maven-settings + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + - configmap: + name: sonar-properties + name: sonar-settings + - name: registry-credentials + secret: + items: + - key: .dockerconfigjson + path: config.json + secretName: registry-credentials +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: tekton-robot +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: triggers-example-eventlistener-binding +subjects: +- kind: ServiceAccount + name: tekton-robot +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-triggers-eventlistener-roles +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: triggers-example-eventlistener-clusterbinding +subjects: +- kind: ServiceAccount + name: tekton-robot + namespace: default +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-triggers-eventlistener-clusterroles +--- + diff --git a/dev/gitea/tekton-triggers/rbac.yaml b/dev/gitea/tekton-triggers/rbac.yaml new file mode 100644 index 0000000..7d861b4 --- /dev/null +++ b/dev/gitea/tekton-triggers/rbac.yaml @@ -0,0 +1,29 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: tekton-robot +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: triggers-example-eventlistener-binding +subjects: +- kind: ServiceAccount + name: tekton-robot +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-triggers-eventlistener-roles +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: triggers-example-eventlistener-clusterbinding +subjects: +- kind: ServiceAccount + name: tekton-robot + namespace: default +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-triggers-eventlistener-clusterroles diff --git a/dev/grafana/README.md b/dev/grafana/README.md new file mode 100755 index 0000000..3069371 --- /dev/null +++ b/dev/grafana/README.md @@ -0,0 +1,5 @@ +1) enable microk8s built-in observability +2) apply ingressroute-tls (in namespace observability) +3) log in with + - user : admin + - password : prom-operator diff --git a/dev/grafana/catalog-info.yaml b/dev/grafana/catalog-info.yaml new file mode 100644 index 0000000..1a3a842 --- /dev/null +++ b/dev/grafana/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-grafana + title: Drupal (dev) + description: Grafana instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=grafana" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/grafana + title: grafana-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/grafana/ingressroute-tls.yaml b/dev/grafana/ingressroute-tls.yaml new file mode 100755 index 0000000..e10be85 --- /dev/null +++ b/dev/grafana/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: grafana-tls + namespace: observability +spec: + entryPoints: + - websecure + routes: + - match: Host(`grafana-dev.allarddcs.nl`) + kind: Rule + services: + - name: kube-prom-stack-grafana + port: 80 + tls: + certResolver: letsencrypt diff --git a/dev/harbor/README.md b/dev/harbor/README.md new file mode 100644 index 0000000..b4b3345 --- /dev/null +++ b/dev/harbor/README.md @@ -0,0 +1,73 @@ +#als je niet kunt inloggen omdat redis gecrashed is: +op de LP ga naar redis directory en dan: + +sudo redis-check-aof --fix appendonly.aof.1.incr.aof + +#Opmerkingen: + +De goharbor-versie is alleen beschikbaar voor AMD-processorarchitectuur. +Je moet dus de bitnami-versie gebruiken. + +#installatie: + +kubectl create ns harbor +helm install harbor bitnami/harbor -n harbor -f values.yaml + +De bitnami helm chart maakt zelf een certificaat aan via cert-manager en letsencrypt. +De bitnami helm chart maakt zelf een ingress aan en een certificaat aan. +Je hoeft dus geen certificaat of ingressroutes te definieren. + +#trivy + +In eerste instantie is de status "unhealthy" + +#Tekton + +In de tekton-pipeline wordt het secret "registry-credentials" gemount om de repositories te kunnen +gebruiken. + +#Met Docker naar HARBOR VIA HTTP +================================ +nano /etc/docker/daemon.json: + +{ + "insecure-registries" : ["localhost:32000","harbor.allarddcs.nl"] +} + +systemctl restart docker + + + + + + + + + + +=========================================================== +1. Enable Microk8s to access Harbor-instance: + +Create certs directory: + +sudo mkdir -p /var/snap/microk8s/current/args/certs.d/harbor.alldcs.nl + +copy the certificate from Harbor: + +sudo cp ca.crt /var/snap/microk8s/current/args/certs.d/harbor.alldcs.nl + +2. Edit /var/snap/microk8s/current/args/containerd-template.toml + + [plugins."io.containerd.grpc.v1.cri".registry.configs."harbor.alldcs.nl".tls] + insecure_skip_verify = true + + +Password opvragen: +================== + +echo "Password: $(kubectl -n default get secret harbor-core-envvars -n harbor +-o jsonpath="{.data.HARBOR_ADMIN_PASSWORD}" | base64 -d)" + + + + diff --git a/dev/harbor/catalog-info.yaml b/dev/harbor/catalog-info.yaml new file mode 100644 index 0000000..643a90d --- /dev/null +++ b/dev/harbor/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-harbor + title: Harbor (dev) + description: Harbor instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=harbor" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/harbor + title: harbor-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/harbor/create-registry-credentials.sh b/dev/harbor/create-registry-credentials.sh new file mode 100755 index 0000000..89fd9bd --- /dev/null +++ b/dev/harbor/create-registry-credentials.sh @@ -0,0 +1,4 @@ +cd ~/ +microk8s kubectl delete secret registry-credentials +microk8s kubectl create secret generic registry-credentials --from-file=.dockerconfigjson=/home/ubuntu/.docker/config.json --type=kubernetes.io/dockerconfigjson + diff --git a/dev/harbor/harbor-pv.yaml b/dev/harbor/harbor-pv.yaml new file mode 100755 index 0000000..b09f75b --- /dev/null +++ b/dev/harbor/harbor-pv.yaml @@ -0,0 +1,95 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: harbor-registry-pv +spec: + storageClassName: "" + capacity: + storage: 15Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/harbor/registry + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: harbor-jobsvc-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/harbor/jobsvc + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: harbor-jobsvc-scandata-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/harbor/scandata + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: harbor-trivy-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/harbor/trivy + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: harbor-redis-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/harbor/redis + readOnly: false + diff --git a/dev/harbor/harbor-pvc.yaml b/dev/harbor/harbor-pvc.yaml new file mode 100755 index 0000000..0e51cce --- /dev/null +++ b/dev/harbor/harbor-pvc.yaml @@ -0,0 +1,74 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: harbor-registry-pvc + namespace: harbor +spec: + storageClassName: "" + volumeName: harbor-registry-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 15Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: harbor-jobsvc-pvc + namespace: harbor +spec: + storageClassName: "" + volumeName: harbor-jobsvc-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: harbor-jobsvc-scandata-pvc + namespace: harbor +spec: + storageClassName: "" + volumeName: harbor-jobsvc-scandata-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: data-harbor-trivy-0 + namespace: harbor +spec: + storageClassName: "" + volumeName: harbor-trivy-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: redis-data-harbor-redis-master-0 + namespace: harbor +spec: + storageClassName: "" + volumeName: harbor-redis-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi diff --git a/dev/harbor/values.yaml b/dev/harbor/values.yaml new file mode 100644 index 0000000..92f71af --- /dev/null +++ b/dev/harbor/values.yaml @@ -0,0 +1,3655 @@ +## @section Global parameters +## Global Docker image parameters +## Please, note that this will override the image parameters, including dependencies, configured to use the global value +## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass +## + +## @param global.imageRegistry Global Docker image registry +## @param global.imagePullSecrets Global Docker registry secret names as an array +## @param global.storageClass Global StorageClass for Persistent Volume(s) +## +global: + imageRegistry: "" + ## E.g. + ## imagePullSecrets: + ## - myRegistryKeySecretName + ## + imagePullSecrets: [] + storageClass: "" + +## @section Common Parameters +## + +## @param nameOverride String to partially override common.names.fullname template (will maintain the release name) +## +nameOverride: "" +## @param fullnameOverride String to fully override common.names.fullname template with a string +## +fullnameOverride: "" +## @param kubeVersion Force target Kubernetes version (using Helm capabilities if not set) +## +kubeVersion: "" +## @param clusterDomain Kubernetes Cluster Domain +## +clusterDomain: cluster.local +## @param commonAnnotations Annotations to add to all deployed objects +## +commonAnnotations: {} +## @param commonLabels Labels to add to all deployed objects +## +commonLabels: {} +## @param extraDeploy Array of extra objects to deploy with the release (evaluated as a template). +## +extraDeploy: [] +## Enable diagnostic mode in the deployment(s)/statefulset(s) +## +diagnosticMode: + ## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden) + ## + enabled: false + ## @param diagnosticMode.command Command to override all containers in the the deployment(s)/statefulset(s) + ## + command: + - sleep + ## @param diagnosticMode.args Args to override all containers in the the deployment(s)/statefulset(s) + ## + args: + - infinity + +## @section Harbor common parameters +## + +## @param adminPassword The initial password of Harbor admin. Change it from portal after launching Harbor +## +adminPassword: "Harbor01@" +## @param externalURL The external URL for Harbor Core service +## It is used to +## 1) populate the docker/helm commands showed on portal +## 2) populate the token service URL returned to docker/notary client +## +## Format: protocol://domain[:port]. Usually: +## 1) if "exposureType" is "ingress", the "domain" should be +## the value of "ingress.hostname" +## 2) if "exposureType" is "proxy" and "service.type" is "ClusterIP", +## the "domain" should be the value of "service.clusterIP" +## 3) if "exposureType" is "proxy" and "service.type" is "NodePort", +## the "domain" should be the IP address of k8s node +## 4) if "exposureType" is "proxy" and "service.type" is "LoadBalancer", +## the "domain" should be the LoadBalancer IP +## +externalURL: https://harbor-dev.allarddcs.nl +## Note: If Harbor is exposed via Ingress, the NGINX server will not be used +## @param proxy.httpProxy The URL of the HTTP proxy server +## @param proxy.httpsProxy The URL of the HTTPS proxy server +## @param proxy.noProxy The URLs that the proxy settings not apply to +## @param proxy.components The component list that the proxy settings apply to +## +proxy: + httpProxy: "" + httpsProxy: "" + noProxy: 127.0.0.1,localhost,.local,.internal + components: + - core + - jobservice + - trivy +## @param logLevel The log level used for Harbor services. Allowed values are [ fatal \| error \| warn \| info \| debug \| trace ] +## +logLevel: debug +## TLS settings +## Note: TLS cert files need to provided in each components in advance. +## +internalTLS: + ## @param internalTLS.enabled Use TLS in all the supported containers: chartmuseum, core, jobservice, portal, registry and trivy + ## + enabled: false + ## @param internalTLS.caBundleSecret Name of an existing secret with a custom CA that will be injected into the trust store for chartmuseum, core, jobservice, registry, trivy components + ## The secret must contain the key "ca.crt" + ## + caBundleSecret: "" +## IP family parameters +## +ipFamily: + ## @param ipFamily.ipv6.enabled Enable listening on IPv6 ([::]) for NGINX-based components (NGINX,portal) + ## Note: enabling IPv6 will cause NGINX to crash on start on systems with IPv6 disabled (`ipv6.disable` kernel flag) + ## + ipv6: + enabled: false + ## @param ipFamily.ipv4.enabled Enable listening on IPv4 for NGINX-based components (NGINX,portal) + ## + ipv4: + enabled: true + +## @section Traffic Exposure Parameters +## + +## @param exposureType The way to expose Harbor. Allowed values are [ ingress \| proxy ] +## Use "proxy" to use a deploy NGINX proxy in front of Harbor services +## Use "ingress" to use an Ingress Controller as proxy +## +exposureType: ingress +#exposureType: proxy + +## Service parameters +## +service: + ## @param service.type NGINX proxy service type + ## + type: ClusterIP + ## @param service.ports.http NGINX proxy service HTTP port + ## @param service.ports.https NGINX proxy service HTTPS port + ## @param service.ports.notary Notary service port + ## + ports: + http: 80 + https: 443 + ## Node ports to expose + ## @param service.nodePorts.http Node port for HTTP + ## @param service.nodePorts.https Node port for HTTPS + ## @param service.nodePorts.notary Node port for Notary + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + http: "" + https: "" + notary: "" + ## @param service.sessionAffinity Control where client requests go, to the same pod or round-robin + ## Values: ClientIP or None + ## ref: https://kubernetes.io/docs/user-guide/services/ + ## + sessionAffinity: None + ## @param service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## @param service.clusterIP NGINX proxy service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param service.loadBalancerIP NGINX proxy service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param service.loadBalancerSourceRanges NGINX proxy service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param service.externalTrafficPolicy NGINX proxy service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param service.annotations Additional custom annotations for NGINX proxy service + ## + annotations: {} + ## @param service.extraPorts Extra port to expose on NGINX proxy service + ## + extraPorts: [] + +ingress: + ## Configure the ingress resource that allows you to access Harbor Core + ## ref: https://kubernetes.io/docs/user-guide/ingress/ + ## + core: + ## @param ingress.core.ingressClassName IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+) + ## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster . + ## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/ + ## + ingressClassName: "traefik" + ## @param ingress.core.pathType Ingress path type + ## + pathType: ImplementationSpecific + ## @param ingress.core.apiVersion Force Ingress API version (automatically detected if not set) + ## + apiVersion: "" + ## @param ingress.core.controller The ingress controller type. Currently supports `default`, `gce` and `ncp` + ## leave as `default` for most ingress controllers. + ## set to `gce` if using the GCE ingress controller + ## set to `ncp` if using the NCP (NSX-T Container Plugin) ingress controller + ## + controller: default + ## @param ingress.core.hostname Default host for the ingress record + ## + hostname: harbor-dev.allarddcs.nl + ## @param ingress.core.annotations [object] Additional annotations for the Ingress resource. + ## To enable certificate autogeneration, place here your cert-manager annotations. + ## Use this parameter to set the required annotations for cert-manager, see + ## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations + ## e.g: + ## annotations: + ## kubernetes.io/ingress.class: nginx + ## cert-manager.io/cluster-issuer: letsencrypt + ## + annotations: + ingress.kubernetes.io/ssl-redirect: 'true' + ingress.kubernetes.io/proxy-body-size: '0' + nginx.ingress.kubernetes.io/ssl-redirect: 'true' + nginx.ingress.kubernetes.io/proxy-body-size: '0' + cert-manager.io/cluster-issuer: 'letsencrypt' + ## @param ingress.core.tls Enable TLS configuration for the host defined at `ingress.core.hostname` parameter + ## TLS certificates will be retrieved from a TLS secret with name: `{{- printf "%s-tls" .Values.ingress.core.hostname }}` + ## You can: + + ## - Use the `ingress.core.secrets` parameter to create this TLS secret + ## - Rely on cert-manager to create it by setting the corresponding annotations + ## - Rely on Helm to create self-signed certificates by setting `ingress.core.selfSigned=true` + ## + tls: true + ## @param ingress.core.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm + ## + selfSigned: false + ## @param ingress.core.extraHosts An array with additional hostname(s) to be covered with the ingress record + ## e.g: + ## extraHosts: + ## - name: core.harbor.domain + ## path: / + ## + extraHosts: [] + ## @param ingress.core.extraPaths An array with additional arbitrary paths that may need to be added to the ingress under the main host + ## e.g: + ## extraPaths: + ## - path: /* + ## backend: + ## serviceName: ssl-redirect + ## servicePort: use-annotation + ## + extraPaths: [] + ## @param ingress.core.extraTls TLS configuration for additional hostname(s) to be covered with this ingress record + ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls + ## e.g: + ## extraTls: + ## - hosts: + ## - core.harbor.domain + ## secretName: core.harbor.domain-tls + ## + extraTls: [] + ## @param ingress.core.secrets Custom TLS certificates as secrets + ## NOTE: 'key' and 'certificate' are expected in PEM format + ## NOTE: 'name' should line up with a 'secretName' set further up + ## If it is not set and you're using cert-manager, this is unneeded, as it will create a secret for you with valid certificates + ## If it is not set and you're NOT using cert-manager either, self-signed certificates will be created valid for 365 days + ## It is also possible to create and manage the certificates outside of this helm chart + ## Please see README.md for more information + ## e.g: + ## secrets: + ## - name: core.harbor.domain-tls + ## key: |- + ## -----BEGIN RSA PRIVATE KEY----- + ## ... + ## -----END RSA PRIVATE KEY----- + ## certificate: |- + ## -----BEGIN CERTIFICATE----- + ## ... + ## -----END CERTIFICATE----- + ## + secrets: [] + ## @param ingress.core.extraRules Additional rules to be covered with this ingress record + ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-rules + ## e.g: + ## extraRules: + ## - host: example.local + ## http: + ## path: / + ## backend: + ## service: + ## name: example-svc + ## port: + ## name: http + ## + extraRules: [] + ## Configure the ingress resource that allows you to access Notary + ## ref: https://kubernetes.io/docs/user-guide/ingress/ + ## +## @section Persistence Parameters +## + +## The persistence is enabled by default and a default StorageClass +## is needed in the k8s cluster to provision volumes dynamically. +## Specify another StorageClass in the "storageClass" or set "existingClaim" +## if you have already existing persistent volumes to use +## +## For storing images and charts, you can also use "azure", "gcs", "s3", +## "swift" or "oss". Set it in the "imageChartStorage" section +## +persistence: + ## @param persistence.enabled Enable the data persistence or not + ## + enabled: true + ## Resource Policy + ## @param persistence.resourcePolicy Setting it to `keep` to avoid removing PVCs during a helm delete operation. Leaving it empty will delete PVCs after the chart deleted + ## + resourcePolicy: '' + persistentVolumeClaim: + ## @param persistence.persistentVolumeClaim.registry.existingClaim Name of an existing PVC to use + ## @param persistence.persistentVolumeClaim.registry.storageClass PVC Storage Class for Harbor Registry data volume + ## Note: The default StorageClass will be used if not defined. Set it to `-` to disable dynamic provisioning + ## @param persistence.persistentVolumeClaim.registry.subPath The sub path used in the volume + ## @param persistence.persistentVolumeClaim.registry.accessModes The access mode of the volume + ## @param persistence.persistentVolumeClaim.registry.size The size of the volume + ## @param persistence.persistentVolumeClaim.registry.annotations Annotations for the PVC + ## @param persistence.persistentVolumeClaim.registry.selector Selector to match an existing Persistent Volume + ## + registry: + existingClaim: "harbor-registry-pvc" + storageClass: "" + subPath: "" + accessModes: + - ReadWriteOnce + size: 5Gi + annotations: {} + selector: {} + ## @param persistence.persistentVolumeClaim.jobservice.existingClaim Name of an existing PVC to use + ## @param persistence.persistentVolumeClaim.jobservice.storageClass PVC Storage Class for Harbor Jobservice data volume + ## Note: The default StorageClass will be used if not defined. Set it to `-` to disable dynamic provisioning + ## @param persistence.persistentVolumeClaim.jobservice.subPath The sub path used in the volume + ## @param persistence.persistentVolumeClaim.jobservice.accessModes The access mode of the volume + ## @param persistence.persistentVolumeClaim.jobservice.size The size of the volume + ## @param persistence.persistentVolumeClaim.jobservice.annotations Annotations for the PVC + ## @param persistence.persistentVolumeClaim.jobservice.selector Selector to match an existing Persistent Volume + ## + jobservice: + existingClaim: "harbor-jobsvc-pvc" + storageClass: "" + subPath: "" + accessModes: + - ReadWriteOnce + size: 1Gi + annotations: {} + selector: {} + ## @param persistence.persistentVolumeClaim.jobservice.scanData.existingClaim Name of an existing PVC to use + ## @param persistence.persistentVolumeClaim.jobservice.scanData.storageClass PVC Storage Class for Harbor Jobservice scan data volume + ## Note: The default StorageClass will be used if not defined. Set it to `-` to disable dynamic provisioning + ## @param persistence.persistentVolumeClaim.jobservice.scanData.subPath The sub path used in the volume + ## @param persistence.persistentVolumeClaim.jobservice.scanData.accessModes The access mode of the volume + ## @param persistence.persistentVolumeClaim.jobservice.scanData.size The size of the volume + ## @param persistence.persistentVolumeClaim.jobservice.scanData.annotations Annotations for the PVC + ## @param persistence.persistentVolumeClaim.jobservice.scanData.selector Selector to match an existing Persistent Volume + ## + scanData: + existingClaim: "harbor-jobsvc-scandata-pvc" + storageClass: "" + subPath: "" + accessModes: + - ReadWriteOnce + size: 1Gi + annotations: {} + selector: {} + ## @param persistence.persistentVolumeClaim.chartmuseum.existingClaim Name of an existing PVC to use + ## @param persistence.persistentVolumeClaim.chartmuseum.storageClass PVC Storage Class for Chartmuseum data volume + ## Note: The default StorageClass will be used if not defined. Set it to `-` to disable dynamic provisioning + ## @param persistence.persistentVolumeClaim.chartmuseum.subPath The sub path used in the volume + ## @param persistence.persistentVolumeClaim.chartmuseum.accessModes The access mode of the volume + ## @param persistence.persistentVolumeClaim.chartmuseum.size The size of the volume + ## @param persistence.persistentVolumeClaim.chartmuseum.annotations Annotations for the PVC + ## @param persistence.persistentVolumeClaim.chartmuseum.selector Selector to match an existing Persistent Volume + ## + chartmuseum: + existingClaim: "" + storageClass: "" + subPath: "chartmuseum" + accessModes: + - ReadWriteOnce + size: 5Gi + annotations: {} + selector: {} + ## @param persistence.persistentVolumeClaim.trivy.storageClass PVC Storage Class for Trivy data volume + ## Note: The default StorageClass will be used if not defined. Set it to `-` to disable dynamic provisioning + ## @param persistence.persistentVolumeClaim.trivy.accessModes The access mode of the volume + ## @param persistence.persistentVolumeClaim.trivy.size The size of the volume + ## @param persistence.persistentVolumeClaim.trivy.annotations Annotations for the PVC + ## @param persistence.persistentVolumeClaim.trivy.selector Selector to match an existing Persistent Volume + ## + trivy: + storageClass: "" + accessModes: + - ReadWriteOnce + size: 1Gi + annotations: {} + selector: {} + ## Define which storage backend is used for registry and chartmuseum to store + ## images and charts. + ## ref: https://github.com/docker/distribution/blob/master/docs/configuration.md#storage + ## + imageChartStorage: + ## @param persistence.imageChartStorage.caBundleSecret Specify the `caBundleSecret` if the storage service uses a self-signed certificate. The secret must contain keys named `ca.crt` which will be injected into the trust store of registry's and chartmuseum's containers. + ## + caBundleSecret: "" + ## @param persistence.imageChartStorage.disableredirect The configuration for managing redirects from content backends. For backends which do not supported it (such as using MinIO® for `s3` storage type), please set it to `true` to disable redirects. Refer to the [guide](https://github.com/docker/distribution/blob/master/docs/configuration.md#redirect) for more information about the detail + ## + disableredirect: false + ## @param persistence.imageChartStorage.type The type of storage for images and charts: `filesystem`, `azure`, `gcs`, `s3`, `swift` or `oss`. The type must be `filesystem` if you want to use persistent volumes for registry and chartmuseum. Refer to the [guide](https://github.com/docker/distribution/blob/master/docs/configuration.md#storage) for more information about the detail + ## + type: filesystem + ## Images/charts storage parameters when type is "filesystem" + ## @param persistence.imageChartStorage.filesystem.rootdirectory Filesystem storage type setting: Storage root directory + ## @param persistence.imageChartStorage.filesystem.maxthreads Filesystem storage type setting: Maximum threads directory + ## + filesystem: + rootdirectory: /storage + maxthreads: "" + +## @section Tracing parameters +## + +## Tracing parameters: +## tracing: Configure tracing for Harbor, only one of tracing.jeager.enabled and tracing.otel.enabled should be set +## +tracing: + ## @param tracing.enabled Enable tracing + ## + enabled: false + ## @param tracing.sampleRate Tracing sample rate from 0 to 1 + ## + sampleRate: 1 + ## @param tracing.namespace Used to differentiate traces between different harbor services + ## + namespace: "" + ## @param tracing.attributes A key value dict containing user defined attributes used to initialize the trace provider + ## e.g: + ## attributes: + ## application: harbor + ## + attributes: {} + +## @section Volume Permissions parameters +## + +## Init containers parameters: +## volumePermissions: Change the owner and group of the persistent volume(s) mountpoint(s) to 'runAsUser:fsGroup' on each node +## +volumePermissions: + ## @param volumePermissions.enabled Enable init container that changes the owner and group of the persistent volume + ## + enabled: false + ## @param volumePermissions.image.registry Init container volume-permissions image registry + ## @param volumePermissions.image.repository Init container volume-permissions image repository + ## @param volumePermissions.image.tag Init container volume-permissions image tag (immutable tags are recommended) + ## @param volumePermissions.image.digest Init container volume-permissions image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param volumePermissions.image.pullPolicy Init container volume-permissions image pull policy + ## @param volumePermissions.image.pullSecrets Init container volume-permissions image pull secrets + ## + image: + registry: docker.io + repository: bitnamilegacy/os-shell + tag: 12-debian-12-r39 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## Example: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Init container resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param volumePermissions.resources.limits Init container volume-permissions resource limits + ## @param volumePermissions.resources.requests Init container volume-permissions resource requests + ## + resources: + limits: {} + requests: {} + ## Init container' Security Context + ## Note: the chown of the data folder is done to containerSecurityContext.runAsUser + ## and not the below volumePermissions.containerSecurityContext.runAsUser + ## @param volumePermissions.containerSecurityContext.enabled Enable init container Security Context + ## @param volumePermissions.containerSecurityContext.runAsUser User ID for the init container + ## + containerSecurityContext: + enabled: true + runAsUser: 0 + +## @section NGINX Parameters +## + +nginx: + ## Bitnami NGINX image + ## ref: https://hub.docker.com/r/bitnami/nginx/tags/ + ## @param nginx.image.registry NGINX image registry + ## @param nginx.image.repository NGINX image repository + ## @param nginx.image.tag NGINX image tag (immutable tags are recommended) + ## @param nginx.image.digest NGINX image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param nginx.image.pullPolicy NGINX image pull policy + ## @param nginx.image.pullSecrets NGINX image pull secrets + ## @param nginx.image.debug Enable NGINX image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/nginx + tag: 1.27.4-debian-12-r4 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## TLS parameters + ## + tls: + ## @param nginx.tls.enabled Enable TLS termination + ## + enabled: false + ## @param nginx.tls.existingSecret Existing secret name containing your own TLS certificates. + ## The secret must contain the keys: + ## `tls.crt` - the certificate (required), + ## `tls.key` - the private key (required), + ## `ca.crt` - CA certificate (optional) + ## Self-signed TLS certificates will be used otherwise. + ## + existingSecret: "" + ## @param nginx.tls.commonName The common name used to generate the self-signed TLS certificates + ## + commonName: harbor-dev.allarddcs.nl + ## @param nginx.behindReverseProxy If NGINX is behind another reverse proxy, set to true + ## if the reverse proxy already provides the 'X-Forwarded-Proto' header field. + ## This is, for example, the case for the OpenShift HAProxy router. + ## + behindReverseProxy: true + ## @param nginx.command Override default container command (useful when using custom images) + ## + command: [] + ## @param nginx.args Override default container args (useful when using custom images) + ## + args: [] + ## @param nginx.extraEnvVars Array with extra environment variables to add NGINX pods + ## + extraEnvVars: [] + ## @param nginx.extraEnvVarsCM ConfigMap containing extra environment variables for NGINX pods + ## + extraEnvVarsCM: "" + ## @param nginx.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for NGINX pods + ## + extraEnvVarsSecret: "" + ## @param nginx.containerPorts.http NGINX HTTP container port + ## @param nginx.containerPorts.https NGINX HTTPS container port + ## @param nginx.containerPorts.notary NGINX container port where Notary svc is exposed + ## + containerPorts: + http: 8080 + https: 8443 + notary: 4443 + ## @param nginx.replicaCount Number of NGINX replicas + ## + replicaCount: 1 + ## Configure extra options for NGINX containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param nginx.livenessProbe.enabled Enable livenessProbe on NGINX containers + ## @param nginx.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param nginx.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param nginx.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param nginx.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param nginx.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param nginx.readinessProbe.enabled Enable readinessProbe on NGINX containers + ## @param nginx.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param nginx.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param nginx.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param nginx.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param nginx.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param nginx.startupProbe.enabled Enable startupProbe on NGINX containers + ## @param nginx.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param nginx.startupProbe.periodSeconds Period seconds for startupProbe + ## @param nginx.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param nginx.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param nginx.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param nginx.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param nginx.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param nginx.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## NGINX resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param nginx.resources.limits The resources limits for the NGINX containers + ## @param nginx.resources.requests The requested resources for the NGINX containers + ## + resources: + limits: {} + requests: {} + ## Configure NGINX pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param nginx.podSecurityContext.enabled Enabled NGINX pods' Security Context + ## @param nginx.podSecurityContext.fsGroup Set NGINX pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure NGINX containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param nginx.containerSecurityContext.enabled Enabled NGINX containers' Security Context + ## @param nginx.containerSecurityContext.runAsUser Set NGINX containers' Security Context runAsUser + ## @param nginx.containerSecurityContext.runAsNonRoot Set NGINX containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param nginx.updateStrategy.type NGINX deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param nginx.lifecycleHooks LifecycleHook for the NGINX container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param nginx.hostAliases NGINX pods host aliases + ## + hostAliases: [] + ## @param nginx.podLabels Add additional labels to the NGINX pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param nginx.podAnnotations Annotations to add to the NGINX pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param nginx.podAffinityPreset NGINX Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param nginx.podAntiAffinityPreset NGINX Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## Allowed values: soft, hard + ## + nodeAffinityPreset: + ## @param nginx.nodeAffinityPreset.type NGINX Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param nginx.nodeAffinityPreset.key NGINX Node label key to match Ignored if `affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param nginx.nodeAffinityPreset.values NGINX Node label values to match. Ignored if `affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param nginx.affinity NGINX Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: podAffinityPreset, podAntiAffinityPreset, and nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param nginx.nodeSelector NGINX Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param nginx.tolerations NGINX Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param nginx.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param nginx.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param nginx.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param nginx.sidecars Add additional sidecar containers to the NGINX pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param nginx.initContainers Add additional init containers to the NGINX pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param nginx.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the NGINX pods + ## + extraVolumeMounts: [] + ## @param nginx.extraVolumes Optionally specify extra list of additional volumes for the NGINX pods + ## + extraVolumes: [] + +## @section Harbor Portal Parameters +## + +portal: + ## Bitnami Harbor Portal image + ## ref: https://hub.docker.com/r/bitnami/harbor-portal/tags/ + ## @param portal.image.registry Harbor Portal image registry + ## @param portal.image.repository Harbor Portal image repository + ## @param portal.image.tag Harbor Portal image tag (immutable tags are recommended) + ## @param portal.image.digest Harbor Portal image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param portal.image.pullPolicy Harbor Portal image pull policy + ## @param portal.image.pullSecrets Harbor Portal image pull secrets + ## @param portal.image.debug Enable Harbor Portal image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-portal + tag: 2.12.2-debian-12-r4 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## Use TLS in the container + ## + tls: + ## @param portal.tls.existingSecret Name of an existing secret with the certificates for internal TLS access + ## Requires `internalTLS.enabled` to be set to `true`` + ## Self-signed TLS certificates will be used otherwise + ## + existingSecret: "" + ## @param portal.command Override default container command (useful when using custom images) + ## + command: [] + ## @param portal.args Override default container args (useful when using custom images) + ## + args: [] + ## @param portal.extraEnvVars Array with extra environment variables to add Harbor Portal pods + ## + extraEnvVars: [] + ## @param portal.extraEnvVarsCM ConfigMap containing extra environment variables for Harbor Portal pods + ## + extraEnvVarsCM: "" + ## @param portal.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Harbor Portal pods + ## + extraEnvVarsSecret: "" + ## @param portal.containerPorts.http Harbor Portal HTTP container port + ## @param portal.containerPorts.https Harbor Portal HTTPS container port + ## + containerPorts: + http: 8080 + https: 8443 + ## @param portal.replicaCount Number of Harbor Portal replicas + ## + replicaCount: 1 + ## Configure extra options for Harbor Portal containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param portal.livenessProbe.enabled Enable livenessProbe on Harbor Portal containers + ## @param portal.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param portal.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param portal.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param portal.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param portal.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param portal.readinessProbe.enabled Enable readinessProbe on Harbor Portal containers + ## @param portal.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param portal.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param portal.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param portal.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param portal.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param portal.startupProbe.enabled Enable startupProbe on Harbor Portal containers + ## @param portal.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param portal.startupProbe.periodSeconds Period seconds for startupProbe + ## @param portal.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param portal.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param portal.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param portal.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param portal.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param portal.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Portal resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param portal.resources.limits The resources limits for the Harbor Portal containers + ## @param portal.resources.requests The requested resources for the Harbor Portal containers + ## + resources: + limits: {} + requests: {} + ## Configure Harbor Portal pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param portal.podSecurityContext.enabled Enabled Harbor Portal pods' Security Context + ## @param portal.podSecurityContext.fsGroup Set Harbor Portal pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Harbor Portal containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param portal.containerSecurityContext.enabled Enabled Harbor Portal containers' Security Context + ## @param portal.containerSecurityContext.runAsUser Set Harbor Portal containers' Security Context runAsUser + ## @param portal.containerSecurityContext.runAsNonRoot Set Harbor Portal containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param portal.updateStrategy.type Harbor Portal deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param portal.lifecycleHooks LifecycleHook for the Harbor Portal container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param portal.hostAliases Harbor Portal pods host aliases + ## + hostAliases: [] + ## @param portal.podLabels Add additional labels to the Harbor Portal pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param portal.podAnnotations Annotations to add to the Harbor Portal pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param portal.podAffinityPreset Harbor Portal Pod affinity preset. Ignored if `portal.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param portal.podAntiAffinityPreset Harbor Portal Pod anti-affinity preset. Ignored if `portal.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param portal.nodeAffinityPreset.type Harbor Portal Node affinity preset type. Ignored if `portal.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param portal.nodeAffinityPreset.key Harbor Portal Node label key to match Ignored if `portal.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param portal.nodeAffinityPreset.values Harbor Portal Node label values to match. Ignored if `portal.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param portal.affinity Harbor Portal Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: portal.podAffinityPreset, portal.podAntiAffinityPreset, and portal.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param portal.nodeSelector Harbor Portal Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param portal.tolerations Harbor Portal Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param portal.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param portal.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param portal.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param portal.sidecars Add additional sidecar containers to the Harbor Portal pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param portal.initContainers Add additional init containers to the Harbor Portal pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param portal.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Harbor Portal pods + ## + extraVolumeMounts: [] + ## @param portal.extraVolumes Optionally specify extra list of additional volumes for the Harbor Portal pods + ## + extraVolumes: [] + ## @param portal.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Harbor Portal service configuration + ## + service: + ## @param portal.service.ports.http Harbor Portal HTTP service port + ## @param portal.service.ports.https Harbor Portal HTTPS service port + ## + ports: + http: 80 + https: 443 + +## @section Harbor Core Parameters +## + +core: + ## Bitnami Harbor Core image + ## ref: https://hub.docker.com/r/bitnami/harbor-core/tags/ + ## @param core.image.registry Harbor Core image registry + ## @param core.image.repository Harbor Core image repository + ## @param core.image.tag Harbor Core image tag (immutable tags are recommended) + ## @param core.image.digest Harbor Core image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param core.image.pullPolicy Harbor Core image pull policy + ## @param core.image.pullSecrets Harbor Core image pull secrets + ## @param core.image.debug Enable Harbor Core image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-core + tag: 2.12.2-debian-12-r7 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + + ## @param core.sessionLifetime Explicitly set a session timeout (in seconds) overriding the backend default. + ## + sessionLifetime: "" + ## @param core.uaaSecret If using external UAA auth which has a self signed cert, you can provide a pre-created secret containing it under the key `ca.crt`. + ## + uaaSecret: "" + ## @param core.secretKey The key used for encryption. Must be a string of 16 chars + ## e.g: + ## secretKey: "not-a-secure-string" + ## + secretKey: "" + ## @param core.secret Secret used when the core server communicates with other components. If a secret key is not specified, Helm will generate one. Must be a string of 16 chars. + ## + secret: "" + ## @param core.tokenKey Key of the certificate used for token encryption/decryption. + ## + tokenKey: "" + ## @param core.tokenCert Certificate used for token encryption/decryption. + ## + tokenCert: "" + ## @param core.secretName Fill the name of a kubernetes secret if you want to use your own TLS certificate and private key for token encryption/decryption. The secret must contain two keys named: `tls.crt` - the certificate and `tls.key` - the private key. The default key pair will be used if it isn't set + ## + secretName: "" + ## @param core.existingSecret Existing secret for core + ## The secret must contain the keys: + ## `secret` (required), + ## `secretKey` (required), + ## + existingSecret: "" + ## @param core.existingEnvVarsSecret Existing secret for core envvars + ## The secret must contain the keys: + ## `CSRF_KEY` (required), + ## `HARBOR_ADMIN_PASSWORD` (required), + ## `POSTGRESQL_PASSWORD` (required), + ## `REGISTRY_CREDENTIAL_USERNAME` (required), + ## `REGISTRY_CREDENTIAL_PASSWORD` (required), + ## `_REDIS_URL_CORE` (optional), + ## `_REDIS_URL_REG` (optional), + ## + ## If you do not know how to start, let the chart generate a full secret for you before defining an existingEnvVarsSecret + ## Notes: + ## As a EnvVars secret, this secret also store redis config urls + ## The HARBOR_ADMIN_PASSWORD is only required at initial deployment, once the password is set in database, it is not used anymore + ## + existingEnvVarsSecret: "" + ## @param core.csrfKey The CSRF key. Will be generated automatically if it isn't specified + ## + csrfKey: "" + ## Use TLS in the container + ## + tls: + ## @param core.tls.existingSecret Name of an existing secret with the certificates for internal TLS access + ## Requires `internalTLS.enabled` to be set to `true`` + ## Self-signed TLS certificates will be used otherwise + ## + existingSecret: "" + ## @param core.command Override default container command (useful when using custom images) + ## + command: [] + ## @param core.args Override default container args (useful when using custom images) + ## + args: [] + ## @param core.extraEnvVars Array with extra environment variables to add Harbor Core pods + ## + extraEnvVars: [] + ## @param core.extraEnvVarsCM ConfigMap containing extra environment variables for Harbor Core pods + ## + extraEnvVarsCM: "" + ## @param core.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Harbor Core pods + ## + extraEnvVarsSecret: "" + ## @param core.configOverwriteJson String containing a JSON with configuration overrides + ## Source: https://goharbor.io/docs/latest/install-config/configure-user-settings-cli/#harbor-user-settings + ## + configOverwriteJson: "" + ## @param core.configOverwriteJsonSecret Secret containing the JSON configuration overrides + ## Source: https://goharbor.io/docs/latest/install-config/configure-user-settings-cli/#harbor-user-settings + ## + configOverwriteJsonSecret: "" + ## @param core.containerPorts.http Harbor Core HTTP container port + ## @param core.containerPorts.https Harbor Core HTTPS container port + ## @param core.containerPorts.metrics Harbor Core metrics container port + ## + containerPorts: + http: 8080 + https: 8443 + metrics: 8001 + ## @param core.replicaCount Number of Harbor Core replicas + ## + replicaCount: 1 + ## Configure extra options for Harbor Core containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param core.livenessProbe.enabled Enable livenessProbe on Harbor Core containers + ## @param core.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param core.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param core.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param core.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param core.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param core.readinessProbe.enabled Enable readinessProbe on Harbor Core containers + ## @param core.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param core.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param core.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param core.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param core.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param core.startupProbe.enabled Enable startupProbe on Harbor Core containers + ## @param core.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param core.startupProbe.periodSeconds Period seconds for startupProbe + ## @param core.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param core.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param core.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param core.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param core.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param core.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Core resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param core.resources.limits The resources limits for the Harbor Core containers + ## @param core.resources.requests The requested resources for the Harbor Core containers + ## + resources: + limits: {} + requests: {} + ## Configure Harbor Core pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param core.podSecurityContext.enabled Enabled Harbor Core pods' Security Context + ## @param core.podSecurityContext.fsGroup Set Harbor Core pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Harbor Core containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param core.containerSecurityContext.enabled Enabled Harbor Core containers' Security Context + ## @param core.containerSecurityContext.runAsUser Set Harbor Core containers' Security Context runAsUser + ## @param core.containerSecurityContext.runAsNonRoot Set Harbor Core containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param core.updateStrategy.type Harbor Core deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param core.lifecycleHooks LifecycleHook for the Harbor Core container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param core.hostAliases Harbor Core pods host aliases + ## + hostAliases: [] + ## @param core.podLabels Add additional labels to the Harbor Core pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param core.podAnnotations Annotations to add to the Harbor Core pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param core.podAffinityPreset Harbor Core Pod affinity preset. Ignored if `core.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param core.podAntiAffinityPreset Harbor Core Pod anti-affinity preset. Ignored if `core.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param core.nodeAffinityPreset.type Harbor Core Node affinity preset type. Ignored if `core.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param core.nodeAffinityPreset.key Harbor Core Node label key to match Ignored if `core.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param core.nodeAffinityPreset.values Harbor Core Node label values to match. Ignored if `core.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param core.affinity Harbor Core Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: core.podAffinityPreset, core.podAntiAffinityPreset, and core.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param core.nodeSelector Harbor Core Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param core.tolerations Harbor Core Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param core.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param core.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param core.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param core.sidecars Add additional sidecar containers to the Harbor Core pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param core.initContainers Add additional init containers to the Harbor Core pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param core.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Harbor Core pods + ## + extraVolumeMounts: [] + ## @param core.extraVolumes Optionally specify extra list of additional volumes for the Harbor Core pods + ## + extraVolumes: [] + ## @param core.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Harbor Core service configuration + ## + service: + ## @param core.service.ports.http Harbor Core HTTP service port + ## @param core.service.ports.https Harbor Core HTTPS service port + ## @param core.service.ports.metrics Harbor Core metrics service port + ## + ports: + http: 80 + https: 443 + metrics: 8001 + +## @section Harbor Jobservice Parameters +## + +jobservice: + ## Bitnami Harbor Jobservice image + ## ref: https://hub.docker.com/r/bitnami/harbor-jobservice/tags/ + ## @param jobservice.image.registry Harbor Jobservice image registry + ## @param jobservice.image.repository Harbor Jobservice image repository + ## @param jobservice.image.tag Harbor Jobservice image tag (immutable tags are recommended) + ## @param jobservice.image.digest Harbor Jobservice image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param jobservice.image.pullPolicy Harbor Jobservice image pull policy + ## @param jobservice.image.pullSecrets Harbor Jobservice image pull secrets + ## @param jobservice.image.debug Enable Harbor Jobservice image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-jobservice + tag: 2.12.2-debian-12-r7 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param jobservice.maxJobWorkers The max job workers + ## + maxJobWorkers: 10 + ## @param jobservice.redisNamespace Redis namespace for jobservice + ## + redisNamespace: harbor_job_service_namespace + ## @param jobservice.jobLogger The logger for jobs: `file`, `database` or `stdout` + ## + jobLogger: file + ## @param jobservice.secret Secret used when the job service communicates with other components. If a secret key is not specified, Helm will generate one. Must be a string of 16 chars. + ## If a secret key is not specified, Helm will generate one. + ## Must be a string of 16 chars. + ## + secret: "" + ## @param jobservice.existingSecret Existing secret for jobservice + ## The secret must contain the keys: + ## `secret` (required), + ## + existingSecret: "" + ## Use TLS in the container + ## + tls: + ## @param jobservice.tls.existingSecret Name of an existing secret with the certificates for internal TLS access + ## Requires `internalTLS.enabled` to be set to `true`` + ## Self-signed TLS certificates will be used otherwise + ## + existingSecret: "" + ## @param jobservice.command Override default container command (useful when using custom images) + ## + command: [] + ## @param jobservice.args Override default container args (useful when using custom images) + ## + args: [] + ## @param jobservice.extraEnvVars Array with extra environment variables to add Harbor Jobservice pods + ## + extraEnvVars: [] + ## @param jobservice.extraEnvVarsCM ConfigMap containing extra environment variables for Harbor Jobservice pods + ## + extraEnvVarsCM: "" + ## @param jobservice.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Harbor Jobservice pods + ## + extraEnvVarsSecret: "" + ## @param jobservice.containerPorts.http Harbor Jobservice HTTP container port + ## @param jobservice.containerPorts.https Harbor Jobservice HTTPS container port + ## @param jobservice.containerPorts.metrics Harbor Jobservice metrics container port + ## + containerPorts: + http: 8080 + https: 8443 + metrics: 8001 + ## @param jobservice.replicaCount Number of Harbor Jobservice replicas + ## + replicaCount: 1 + ## Configure extra options for Harbor Jobservice containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param jobservice.livenessProbe.enabled Enable livenessProbe on Harbor Jobservice containers + ## @param jobservice.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param jobservice.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param jobservice.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param jobservice.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param jobservice.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param jobservice.readinessProbe.enabled Enable readinessProbe on Harbor Jobservice containers + ## @param jobservice.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param jobservice.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param jobservice.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param jobservice.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param jobservice.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param jobservice.startupProbe.enabled Enable startupProbe on Harbor Jobservice containers + ## @param jobservice.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param jobservice.startupProbe.periodSeconds Period seconds for startupProbe + ## @param jobservice.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param jobservice.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param jobservice.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param jobservice.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param jobservice.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param jobservice.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Jobservice resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param jobservice.resources.limits The resources limits for the Harbor Jobservice containers + ## @param jobservice.resources.requests The requested resources for the Harbor Jobservice containers + ## + resources: + limits: {} + requests: {} + ## Configure Harbor Jobservice pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param jobservice.podSecurityContext.enabled Enabled Harbor Jobservice pods' Security Context + ## @param jobservice.podSecurityContext.fsGroup Set Harbor Jobservice pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Harbor Jobservice containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param jobservice.containerSecurityContext.enabled Enabled Harbor Jobservice containers' Security Context + ## @param jobservice.containerSecurityContext.runAsUser Set Harbor Jobservice containers' Security Context runAsUser + ## @param jobservice.containerSecurityContext.runAsNonRoot Set Harbor Jobservice containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param jobservice.updateStrategy.type Harbor Jobservice deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param jobservice.lifecycleHooks LifecycleHook for the Harbor Jobservice container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param jobservice.hostAliases Harbor Jobservice pods host aliases + ## + hostAliases: [] + ## @param jobservice.podLabels Add additional labels to the Harbor Jobservice pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param jobservice.podAnnotations Annotations to add to the Harbor Jobservice pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param jobservice.podAffinityPreset Harbor Jobservice Pod affinity preset. Ignored if `jobservice.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param jobservice.podAntiAffinityPreset Harbor Jobservice Pod anti-affinity preset. Ignored if `jobservice.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param jobservice.nodeAffinityPreset.type Harbor Jobservice Node affinity preset type. Ignored if `jobservice.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param jobservice.nodeAffinityPreset.key Harbor Jobservice Node label key to match Ignored if `jobservice.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param jobservice.nodeAffinityPreset.values Harbor Jobservice Node label values to match. Ignored if `jobservice.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param jobservice.affinity Harbor Jobservice Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: jobservice.podAffinityPreset, jobservice.podAntiAffinityPreset, and jobservice.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param jobservice.nodeSelector Harbor Jobservice Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param jobservice.tolerations Harbor Jobservice Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param jobservice.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param jobservice.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param jobservice.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param jobservice.sidecars Add additional sidecar containers to the Harbor Jobservice pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param jobservice.initContainers Add additional init containers to the Harbor Jobservice pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param jobservice.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Harbor Jobservice pods + ## + extraVolumeMounts: [] + ## @param jobservice.extraVolumes Optionally specify extra list of additional volumes for the Harbor Jobservice pods + ## + extraVolumes: [] + ## @param jobservice.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Harbor Jobservice service configuration + ## + service: + ## @param jobservice.service.ports.http Harbor Jobservice HTTP service port + ## @param jobservice.service.ports.https Harbor Jobservice HTTPS service port + ## @param jobservice.service.ports.metrics Harbor Jobservice HTTPS service port + ## + ports: + http: 80 + https: 443 + metrics: 8001 + +## @section Harbor Registry Parameters +## + +## Registry Parameters +## +registry: + ## @param registry.secret Secret is used to secure the upload state from client and registry storage backend. See: + ## and registry storage backend. + ## See: https://github.com/docker/distribution/blob/master/docs/configuration.md#http + ## If a secret key is not specified, Helm will generate one. + ## Must be a string of 16 chars. + ## + secret: "" + ## @param registry.existingSecret Existing secret for registry + ## The secret must contain the keys: + ## `REGISTRY_HTPASSWD` (required), + ## `REGISTRY_HTTP_SECRET` (required), + ## `REGISTRY_REDIS_PASSWORD` (optional), + ## + existingSecret: "" + ## @param registry.relativeurls Make the registry return relative URLs in Location headers. The client is responsible for resolving the correct URL. + ## + relativeurls: false + ## @param registry.credentials.username The username for accessing the registry instance, which is hosted by htpasswd auth mode. More details see [official docs](https://github.com/docker/distribution/blob/master/docs/configuration.md#htpasswd) + ## @param registry.credentials.password The password for accessing the registry instance, which is hosted by htpasswd auth mode. More details see [official docs](https://github.com/docker/distribution/blob/master/docs/configuration.md#htpasswd). It is suggested you update this value before installation. + ## @param registry.credentials.htpasswd The content of htpasswd file based on the value of `registry.credentials.username` `registry.credentials.password`. Currently `helm` does not support bcrypt in the template script, if the credential is updated you need to manually generated by calling + ## + credentials: + username: 'harbor_registry_user' + password: 'harbor_registry_password' + ## If you update the username or password of registry, make sure use cli tool htpasswd to generate the bcrypt hash + ## e.g. "htpasswd -nbBC10 $username $password" + ## + htpasswd: 'harbor_registry_user:$2y$10$9L4Tc0DJbFFMB6RdSCunrOpTHdwhid4ktBJmLD00bYgqkkGOvll3m' + middleware: + ## @param registry.middleware.enabled Middleware is used to add support for a CDN between backend storage and `docker pull` recipient. See + ## + enabled: false + ## @param registry.middleware.type CDN type for the middleware + ## + type: cloudFront + ## @param registry.middleware.cloudFront.baseurl CloudFront CDN settings: Base URL + ## @param registry.middleware.cloudFront.keypairid CloudFront CDN settings: Keypair ID + ## @param registry.middleware.cloudFront.duration CloudFront CDN settings: Duration + ## @param registry.middleware.cloudFront.ipfilteredby CloudFront CDN settings: IP filters + ## @param registry.middleware.cloudFront.privateKeySecret CloudFront CDN settings: Secret name with the private key + ## + cloudFront: + baseurl: example.cloudfront.net + keypairid: KEYPAIRID + duration: 3000s + ipfilteredby: none + ## The secret key that should be present is CLOUDFRONT_KEY_DATA, which should be the encoded private key + ## that allows access to CloudFront + ## + privateKeySecret: 'my-secret' + ## Use TLS in the container + ## + tls: + ## @param registry.tls.existingSecret Name of an existing secret with the certificates for internal TLS access + ## Requires `internalTLS.enabled` to be set to `true`` + ## Self-signed TLS certificates will be used otherwise + ## + existingSecret: "" + ## @param registry.replicaCount Number of Harbor Registry replicas + ## + replicaCount: 1 + ## Configure Harbor Registry pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param registry.podSecurityContext.enabled Enabled Harbor Registry pods' Security Context + ## @param registry.podSecurityContext.fsGroup Set Harbor Registry pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## @param registry.updateStrategy.type Harbor Registry deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param registry.hostAliases Harbor Registry pods host aliases + ## + hostAliases: [] + ## @param registry.podLabels Add additional labels to the Harbor Registry pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param registry.podAnnotations Annotations to add to the Harbor Registry pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param registry.podAffinityPreset Harbor Registry Pod affinity preset. Ignored if `registry.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param registry.podAntiAffinityPreset Harbor Registry Pod anti-affinity preset. Ignored if `registry.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param registry.nodeAffinityPreset.type Harbor Registry Node affinity preset type. Ignored if `registry.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param registry.nodeAffinityPreset.key Harbor Registry Node label key to match Ignored if `registry.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param registry.nodeAffinityPreset.values Harbor Registry Node label values to match. Ignored if `registry.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param registry.affinity Harbor Registry Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: registry.podAffinityPreset, registry.podAntiAffinityPreset, and registry.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param registry.nodeSelector Harbor Registry Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param registry.tolerations Harbor Registry Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param registry.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param registry.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param registry.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param registry.sidecars Add additional sidecar containers to the Harbor Registry pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param registry.initContainers Add additional init containers to the Harbor Registry pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param registry.extraVolumes Optionally specify extra list of additional volumes for the Harbor Registry pods + ## + extraVolumes: [] + ## @param registry.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Harbor Registry main container parameters + ## + server: + readTimeout: 900 # Set higher if needed + writeTimeout: 900 # Set higher if needed + maxLayerUploadTimeout: 600 + ## Bitnami Harbor Registry image + ## ref: https://hub.docker.com/r/bitnami/harbor-registry/tags/ + ## @param registry.server.image.registry Harbor Registry image registry + ## @param registry.server.image.repository Harbor Registry image repository + ## @param registry.server.image.tag Harbor Registry image tag (immutable tags are recommended) + ## @param registry.server.image.digest Harbor Registry image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param registry.server.image.pullPolicy Harbor Registry image pull policy + ## @param registry.server.image.pullSecrets Harbor Registry image pull secrets + ## @param registry.server.image.debug Enable Harbor Registry image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-registry + tag: 2.12.2-debian-12-r7 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param registry.server.command Override default container command (useful when using custom images) + ## + command: [] + ## @param registry.server.args Override default container args (useful when using custom images) + ## + args: [] + ## @param registry.server.extraEnvVars Array with extra environment variables to add Harbor Registry main containers + ## + extraEnvVars: [] + ## @param registry.server.extraEnvVarsCM ConfigMap containing extra environment variables for Harbor Registry main containers + ## + extraEnvVarsCM: "" + ## @param registry.server.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Harbor Registry main containers + ## + extraEnvVarsSecret: "" + ## @param registry.server.containerPorts.http Harbor Registry HTTP container port + ## @param registry.server.containerPorts.https Harbor Registry HTTPS container port + ## @param registry.server.containerPorts.debug Harbor Registry debug container port + ## @param registry.server.containerPorts.metrics Harbor Registry metrics container port + ## + containerPorts: + http: 5000 + https: 5443 + debug: 5001 + metrics: 8001 + ## Configure extra options for Harbor Registry main containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param registry.server.livenessProbe.enabled Enable livenessProbe on Harbor Registry main containers + ## @param registry.server.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param registry.server.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param registry.server.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param registry.server.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param registry.server.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param registry.server.readinessProbe.enabled Enable readinessProbe on Harbor Registry main containers + ## @param registry.server.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param registry.server.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param registry.server.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param registry.server.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param registry.server.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param registry.server.startupProbe.enabled Enable startupProbe on Harbor Registry main containers + ## @param registry.server.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param registry.server.startupProbe.periodSeconds Period seconds for startupProbe + ## @param registry.server.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param registry.server.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param registry.server.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param registry.server.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param registry.server.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param registry.server.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Registry main resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param registry.server.resources.limits The resources limits for the Harbor Registry main containers + ## @param registry.server.resources.requests The requested resources for the Harbor Registry main containers + ## + resources: + limits: {} + requests: {} + ## Configure Harbor Registry main containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param registry.server.containerSecurityContext.enabled Enabled Harbor Registry main containers' Security Context + ## @param registry.server.containerSecurityContext.runAsUser Set Harbor Registry main containers' Security Context runAsUser + ## @param registry.server.containerSecurityContext.runAsNonRoot Set Harbor Registry main containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param registry.server.lifecycleHooks LifecycleHook for the Harbor Registry main container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param registry.server.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Harbor Registry main pods + ## + extraVolumeMounts: [] + ## Harbor Registry service configuration + ## + service: + ## @param registry.server.service.ports.http Harbor Registry HTTP service port + ## @param registry.server.service.ports.https Harbor Registry HTTPS service port + ## @param registry.server.service.ports.metrics Harbor Registry metrics service port + ## + ports: + http: 5000 + https: 5443 + metrics: 8001 + ## Harbor Registryctl parameters + ## + controller: + ## Bitnami Harbor Registryctl image + ## ref: https://hub.docker.com/r/bitnami/harbor-registryctl/tags/ + ## @param registry.controller.image.registry Harbor Registryctl image registry + ## @param registry.controller.image.repository Harbor Registryctl image repository + ## @param registry.controller.image.tag Harbor Registryctl image tag (immutable tags are recommended) + ## @param registry.controller.image.digest Harbor Registryctl image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param registry.controller.image.pullPolicy Harbor Registryctl image pull policy + ## @param registry.controller.image.pullSecrets Harbor Registryctl image pull secrets + ## @param registry.controller.image.debug Enable Harbor Registryctl image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-registryctl + tag: 2.12.2-debian-12-r7 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param registry.controller.command Override default container command (useful when using custom images) + ## + command: [] + ## @param registry.controller.args Override default container args (useful when using custom images) + ## + args: [] + ## @param registry.controller.extraEnvVars Array with extra environment variables to add Harbor Registryctl containers + ## + extraEnvVars: [] + ## @param registry.controller.extraEnvVarsCM ConfigMap containing extra environment variables for Harbor Registryctl containers + ## + extraEnvVarsCM: "" + ## @param registry.controller.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Harbor Registryctl containers + ## + extraEnvVarsSecret: "" + ## @param registry.controller.containerPorts.http Harbor Registryctl HTTP container port + ## @param registry.controller.containerPorts.https Harbor Registryctl HTTPS container port + ## + containerPorts: + http: 8080 + https: 8443 + ## Configure extra options for Harbor Registryctl containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param registry.controller.livenessProbe.enabled Enable livenessProbe on Harbor Registryctl containers + ## @param registry.controller.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param registry.controller.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param registry.controller.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param registry.controller.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param registry.controller.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param registry.controller.readinessProbe.enabled Enable readinessProbe on Harbor Registryctl containers + ## @param registry.controller.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param registry.controller.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param registry.controller.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param registry.controller.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param registry.controller.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param registry.controller.startupProbe.enabled Enable startupProbe on Harbor Registryctl containers + ## @param registry.controller.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param registry.controller.startupProbe.periodSeconds Period seconds for startupProbe + ## @param registry.controller.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param registry.controller.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param registry.controller.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param registry.controller.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param registry.controller.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param registry.controller.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Registryctl resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param registry.controller.resources.limits The resources limits for the Harbor Registryctl containers + ## @param registry.controller.resources.requests The requested resources for the Harbor Registryctl containers + ## + resources: + limits: {} + requests: {} + ## Configure Harbor Registryctl containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param registry.controller.containerSecurityContext.enabled Enabled Harbor Registryctl containers' Security Context + ## @param registry.controller.containerSecurityContext.runAsUser Set Harbor Registryctl containers' Security Context runAsUser + ## @param registry.controller.containerSecurityContext.runAsNonRoot Set Harbor Registryctl containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param registry.controller.lifecycleHooks LifecycleHook for the Harbor Registryctl container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param registry.controller.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Harbor Registryctl pods + ## + extraVolumeMounts: [] + ## Harbor Registryctl service configuration + ## + service: + ## @param registry.controller.service.ports.http Harbor Registryctl HTTP service port + ## @param registry.controller.service.ports.https Harbor Registryctl HTTPS service port + ## + ports: + http: 8080 + https: 8443 + +## @section ChartMuseum Parameters +## + +chartmuseum: + ## Bitnami ChartMuseum image + ## ref: https://hub.docker.com/r/bitnami/chartmuseum/tags/ + ## @param chartmuseum.image.registry ChartMuseum image registry + ## @param chartmuseum.image.repository ChartMuseum image repository + ## @param chartmuseum.image.tag ChartMuseum image tag (immutable tags are recommended) + ## @param chartmuseum.image.digest ChartMuseum image image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param chartmuseum.image.pullPolicy ChartMuseum image pull policy + ## @param chartmuseum.image.pullSecrets ChartMuseum image pull secrets + ## @param chartmuseum.image.debug Enable ChartMuseum image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/chartmuseum +# tag: 0.15.0-debian-11-r99 + tag: latest + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param chartmuseum.enabled Enable ChartMuseum + ## + enabled: false + ## @param chartmuseum.useRedisCache Specify if ChartMuseum will use redis cache + ## + useRedisCache: false + ## Set the absolute URL to access the chartmuseum repository and the endpoint where it will be available. + ## @param chartmuseum.absoluteUrl Specify an absolute URL for ChartMuseum registry + ## @param chartmuseum.chartRepoName Specify the endpoint for the chartmuseum registry. Only applicable if `chartmuseum.absoluteUrl` is `true` + ## + absoluteUrl: false + chartRepoName: 'chartsRepo' + ## @param chartmuseum.depth Support for multitenancy. More info [here](https://chartmuseum.com/docs/#multitenancy) + ## + depth: 1 + ## @param chartmuseum.logJson Print logs on JSON format + ## + logJson: false + ## @param chartmuseum.disableMetrics Disable prometheus metrics exposure + ## + disableMetrics: false + ## @param chartmuseum.disableApi Disable all the routes prefixed with `/api` + ## + disableApi: false + ## @param chartmuseum.disableStatefiles Disable use of index-cache.yaml + ## + disableStatefiles: false + ## @param chartmuseum.allowOverwrite Allow chart versions to be re-uploaded without force querystring + ## + allowOverwrite: true + ## @param chartmuseum.anonymousGet Allow anonymous GET operations + ## + anonymousGet: false + ## Optional parameters for ChartMuseum not used by default. + ## ref: https://chartmuseum.com/docs/#other-cli-options + ## @param chartmuseum.contextPath Set the base context path for ChartMuseum + ## @param chartmuseum.indexLimit Limit the number of parallels indexes for ChartMuseum + ## @param chartmuseum.chartPostFormFieldName Form field which will be queried for the chart file content + ## @param chartmuseum.provPostFormFieldName Form field which will be queried for the provenance file content + ## @param chartmuseum.maxStorageObjects Maximum storage objects + ## @param chartmuseum.maxUploadSize Maximum upload size + ## @param chartmuseum.storageTimestampTolerance Timestamp tolerance size + ## + contextPath: "" + indexLimit: "" + chartPostFormFieldName: "" + provPostFormFieldName: "" + maxStorageObjects: "" + maxUploadSize: "" + storageTimestampTolerance: "1s" + ## Use TLS in the container + ## + tls: + ## @param chartmuseum.tls.existingSecret Name of an existing secret with the certificates for internal TLS access + ## Requires `internalTLS.enabled` to be set to `true`` + ## Self-signed TLS certificates will be used otherwise + ## + existingSecret: "" + ## @param chartmuseum.command Override default container command (useful when using custom images) + ## + command: [] + ## @param chartmuseum.args Override default container args (useful when using custom images) + ## + args: [] + ## @param chartmuseum.extraEnvVars Array with extra environment variables to add Chartmuseum pods + ## + extraEnvVars: [] + ## @param chartmuseum.extraEnvVarsCM ConfigMap containing extra environment variables for Chartmuseum pods + ## + extraEnvVarsCM: "" + ## @param chartmuseum.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Chartmuseum pods + ## + extraEnvVarsSecret: "" + ## @param chartmuseum.containerPorts.http Chartmuseum HTTP container port + ## @param chartmuseum.containerPorts.https Chartmuseum HTTPS container port + ## + containerPorts: + http: 9999 + https: 9443 + ## @param chartmuseum.replicaCount Number of Chartmuseum replicas + ## + replicaCount: 1 + ## Configure extra options for Chartmuseum containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param chartmuseum.livenessProbe.enabled Enable livenessProbe on Chartmuseum containers + ## @param chartmuseum.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param chartmuseum.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param chartmuseum.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param chartmuseum.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param chartmuseum.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param chartmuseum.readinessProbe.enabled Enable readinessProbe on Chartmuseum containers + ## @param chartmuseum.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param chartmuseum.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param chartmuseum.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param chartmuseum.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param chartmuseum.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param chartmuseum.startupProbe.enabled Enable startupProbe on Chartmuseum containers + ## @param chartmuseum.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param chartmuseum.startupProbe.periodSeconds Period seconds for startupProbe + ## @param chartmuseum.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param chartmuseum.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param chartmuseum.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param chartmuseum.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param chartmuseum.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param chartmuseum.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Chartmuseum resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param chartmuseum.resources.limits The resources limits for the Chartmuseum containers + ## @param chartmuseum.resources.requests The requested resources for the Chartmuseum containers + ## + resources: + limits: {} + requests: {} + ## Configure Chartmuseum pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param chartmuseum.podSecurityContext.enabled Enabled Chartmuseum pods' Security Context + ## @param chartmuseum.podSecurityContext.fsGroup Set Chartmuseum pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Chartmuseum containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param chartmuseum.containerSecurityContext.enabled Enabled Chartmuseum containers' Security Context + ## @param chartmuseum.containerSecurityContext.runAsUser Set Chartmuseum containers' Security Context runAsUser + ## @param chartmuseum.containerSecurityContext.runAsNonRoot Set Chartmuseum containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param chartmuseum.updateStrategy.type Chartmuseum deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param chartmuseum.lifecycleHooks LifecycleHook for the Chartmuseum container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param chartmuseum.hostAliases Chartmuseum pods host aliases + ## + hostAliases: [] + ## @param chartmuseum.podLabels Add additional labels to the Chartmuseum pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param chartmuseum.podAnnotations Annotations to add to the Chartmuseum pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param chartmuseum.podAffinityPreset Chartmuseum Pod affinity preset. Ignored if `chartmuseum.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param chartmuseum.podAntiAffinityPreset Chartmuseum Pod anti-affinity preset. Ignored if `chartmuseum.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param chartmuseum.nodeAffinityPreset.type Chartmuseum Node affinity preset type. Ignored if `chartmuseum.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param chartmuseum.nodeAffinityPreset.key Chartmuseum Node label key to match Ignored if `chartmuseum.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param chartmuseum.nodeAffinityPreset.values Chartmuseum Node label values to match. Ignored if `chartmuseum.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param chartmuseum.affinity Chartmuseum Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: chartmuseum.podAffinityPreset, chartmuseum.podAntiAffinityPreset, and chartmuseum.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param chartmuseum.nodeSelector Chartmuseum Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param chartmuseum.tolerations Chartmuseum Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param chartmuseum.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param chartmuseum.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param chartmuseum.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param chartmuseum.sidecars Add additional sidecar containers to the Chartmuseum pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param chartmuseum.initContainers Add additional init containers to the Chartmuseum pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param chartmuseum.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Chartmuseum pods + ## + extraVolumeMounts: [] + ## @param chartmuseum.extraVolumes Optionally specify extra list of additional volumes for the Chartmuseum pods + ## + extraVolumes: [] + ## @param chartmuseum.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Chartmuseum service configuration + ## + service: + ## @param chartmuseum.service.ports.http Chartmuseum HTTP service port + ## @param chartmuseum.service.ports.https Chartmuseum HTTPS service port + ## + ports: + http: 80 + https: 443 + +## @section Notary Parameters +## + +## Notary Parameters +## +notary: + ## @param notary.enabled Enable Notary + ## + enabled: false + ## @param notary.secretName Fill the name of a kubernetes secret if you want to use your own TLS certificate authority, certificate and private key for notary communications. The secret must contain keys named `notary-signer-ca.crt`, `notary-signer.key` and `notary-signer.crt` that contain the CA, certificate and private key. They will be generated if not set. + ## TLS certificate authority, certificate and private key for notary + ## communications. + ## The secret must contain keys named ca.crt, tls.crt and tls.key that + ## contain the CA, certificate and private key. + ## They will be generated if not set. + ## + secretName: "" + server: + ## Bitnami Harbor Notary Server image + ## ref: https://hub.docker.com/r/bitnami/harbor-notary-server/tags/ + ## @param notary.server.image.registry Harbor Notary Server image registry + ## @param notary.server.image.repository Harbor Notary Server image repository + ## @param notary.server.image.tag Harbor Notary Server image tag (immutable tags are recommended) + ## @param notary.server.image.digest Notary Server image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param notary.server.image.pullPolicy Harbor Notary Server image pull policy + ## @param notary.server.image.pullSecrets Harbor Notary Server image pull secrets + ## @param notary.server.image.debug Enable Harbor Notary Server image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-notary-server + # tag: 2.8.1-debian-11-r0 + tag: latest + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param notary.server.command Override default container command (useful when using custom images) + ## + command: [] + ## @param notary.server.args Override default container args (useful when using custom images) + ## + args: [] + ## @param notary.server.extraEnvVars Array with extra environment variables to add Harbor Notary Server pods + ## + extraEnvVars: [] + ## @param notary.server.extraEnvVarsCM ConfigMap containing extra environment variables for Harbor Notary Server pods + ## + extraEnvVarsCM: "" + ## @param notary.server.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Harbor Notary Server pods + ## + extraEnvVarsSecret: "" + ## @param notary.server.containerPorts.server Harbor Notary Server container port + ## + containerPorts: + server: 4443 + ## @param notary.server.replicaCount Number of Harbor Notary Server replicas + ## + replicaCount: 1 + ## Configure extra options for Harbor Notary Server containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param notary.server.livenessProbe.enabled Enable livenessProbe on Harbor Notary Server containers + ## @param notary.server.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param notary.server.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param notary.server.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param notary.server.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param notary.server.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param notary.server.readinessProbe.enabled Enable readinessProbe on Harbor Notary Server containers + ## @param notary.server.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param notary.server.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param notary.server.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param notary.server.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param notary.server.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param notary.server.startupProbe.enabled Enable startupProbe on Harbor Notary Server containers + ## @param notary.server.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param notary.server.startupProbe.periodSeconds Period seconds for startupProbe + ## @param notary.server.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param notary.server.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param notary.server.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param notary.server.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param notary.server.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param notary.server.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Notary Server resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param notary.server.resources.limits The resources limits for the Harbor Notary Server containers + ## @param notary.server.resources.requests The requested resources for the Harbor Notary Server containers + ## + resources: + limits: {} + requests: {} + ## Configure Harbor Notary Server pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param notary.server.podSecurityContext.enabled Enabled Harbor Notary Server pods' Security Context + ## @param notary.server.podSecurityContext.fsGroup Set Harbor Notary Server pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Harbor Notary Server containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param notary.server.containerSecurityContext.enabled Enabled Harbor Notary Server containers' Security Context + ## @param notary.server.containerSecurityContext.runAsUser Set Harbor Notary Server containers' Security Context runAsUser + ## @param notary.server.containerSecurityContext.runAsNonRoot Set Harbor Notary Server containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param notary.server.updateStrategy.type Harbor Notary Server deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param notary.server.lifecycleHooks LifecycleHook for the Harbor Notary Server container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param notary.server.hostAliases Harbor Notary Server pods host aliases + ## + hostAliases: [] + ## @param notary.server.podLabels Add additional labels to the Harbor Notary Server pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param notary.server.podAnnotations Annotations to add to the Harbor Notary Server pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param notary.server.podAffinityPreset Harbor Notary Server Pod affinity preset. Ignored if `notary.server.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param notary.server.podAntiAffinityPreset Harbor Notary Server Pod anti-affinity preset. Ignored if `notary.server.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param notary.server.nodeAffinityPreset.type Harbor Notary Server Node affinity preset type. Ignored if `notary.server.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param notary.server.nodeAffinityPreset.key Harbor Notary Server Node label key to match Ignored if `notary.server.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param notary.server.nodeAffinityPreset.values Harbor Notary Server Node label values to match. Ignored if `notary.server.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param notary.server.affinity Harbor Notary Server Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: notary.server.podAffinityPreset, notary.server.podAntiAffinityPreset, and notary.server.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param notary.server.nodeSelector Harbor Notary Server Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param notary.server.tolerations Harbor Notary Server Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param notary.server.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param notary.server.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param notary.server.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param notary.server.sidecars Add additional sidecar containers to the Harbor Notary Server pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param notary.server.initContainers Add additional init containers to the Harbor Notary Server pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param notary.server.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Harbor Notary Server pods + ## + extraVolumeMounts: [] + ## @param notary.server.extraVolumes Optionally specify extra list of additional volumes for the Harbor Notary Server pods + ## + extraVolumes: [] + ## @param notary.server.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + signer: + ## Bitnami Harbor Notary Signer image + ## ref: https://hub.docker.com/r/bitnami/harbor-notary-signer/tags/ + ## @param notary.signer.image.registry Harbor Notary Signer image registry + ## @param notary.signer.image.repository Harbor Notary Signer image repository + ## @param notary.signer.image.tag Harbor Notary Signer image tag (immutable tags are recommended) + ## @param notary.signer.image.digest Harbor Notary Signer image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param notary.signer.image.pullPolicy Harbor Notary Signer image pull policy + ## @param notary.signer.image.pullSecrets Harbor Notary Signer image pull secrets + ## @param notary.signer.image.debug Enable Harbor Notary Signer image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-notary-signer + # tag: 2.8.1-debian-11-r0 + tag: latest + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param notary.signer.command Override default container command (useful when using custom images) + ## + command: [] + ## @param notary.signer.args Override default container args (useful when using custom images) + ## + args: [] + ## @param notary.signer.extraEnvVars Array with extra environment variables to add Harbor Notary Signer pods + ## + extraEnvVars: [] + ## @param notary.signer.extraEnvVarsCM ConfigMap containing extra environment variables for Harbor Notary Signer pods + ## + extraEnvVarsCM: "" + ## @param notary.signer.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Harbor Notary Signer pods + ## + extraEnvVarsSecret: "" + ## @param notary.signer.containerPorts.signer Harbor Notary Signer container port + ## + containerPorts: + signer: 7899 + ## @param notary.signer.replicaCount Number of Harbor Notary Signer replicas + ## + replicaCount: 1 + ## Configure extra options for Harbor Notary Signer containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param notary.signer.livenessProbe.enabled Enable livenessProbe on Harbor Notary Signer containers + ## @param notary.signer.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param notary.signer.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param notary.signer.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param notary.signer.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param notary.signer.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param notary.signer.readinessProbe.enabled Enable readinessProbe on Harbor Notary Signer containers + ## @param notary.signer.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param notary.signer.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param notary.signer.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param notary.signer.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param notary.signer.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param notary.signer.startupProbe.enabled Enable startupProbe on Harbor Notary Signer containers + ## @param notary.signer.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param notary.signer.startupProbe.periodSeconds Period seconds for startupProbe + ## @param notary.signer.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param notary.signer.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param notary.signer.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param notary.signer.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param notary.signer.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param notary.signer.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Notary Signer resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param notary.signer.resources.limits The resources limits for the Harbor Notary Signer containers + ## @param notary.signer.resources.requests The requested resources for the Harbor Notary Signer containers + ## + resources: + limits: {} + requests: {} + ## Configure Harbor Notary Signer pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param notary.signer.podSecurityContext.enabled Enabled Harbor Notary Signer pods' Security Context + ## @param notary.signer.podSecurityContext.fsGroup Set Harbor Notary Signer pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Harbor Notary Signer containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param notary.signer.containerSecurityContext.enabled Enabled Harbor Notary Signer containers' Security Context + ## @param notary.signer.containerSecurityContext.runAsUser Set Harbor Notary Signer containers' Security Context runAsUser + ## @param notary.signer.containerSecurityContext.runAsNonRoot Set Harbor Notary Signer containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param notary.signer.updateStrategy.type Harbor Notary Signer deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param notary.signer.lifecycleHooks LifecycleHook for the Harbor Notary Signer container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param notary.signer.hostAliases Harbor Notary Signer pods host aliases + ## + hostAliases: [] + ## @param notary.signer.podLabels Add additional labels to the Harbor Notary Signer pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param notary.signer.podAnnotations Annotations to add to the Harbor Notary Signer pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param notary.signer.podAffinityPreset Harbor Notary Signer Pod affinity preset. Ignored if `notary.signer.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param notary.signer.podAntiAffinityPreset Harbor Notary Signer Pod anti-affinity preset. Ignored if `notary.signer.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param notary.signer.nodeAffinityPreset.type Harbor Notary Signer Node affinity preset type. Ignored if `notary.signer.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param notary.signer.nodeAffinityPreset.key Harbor Notary Signer Node label key to match Ignored if `notary.signer.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param notary.signer.nodeAffinityPreset.values Harbor Notary Signer Node label values to match. Ignored if `notary.signer.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param notary.signer.affinity Harbor Notary Signer Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: notary.signer.podAffinityPreset, notary.signer.podAntiAffinityPreset, and notary.signer.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param notary.signer.nodeSelector Harbor Notary Signer Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param notary.signer.tolerations Harbor Notary Signer Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param notary.signer.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param notary.signer.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param notary.signer.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param notary.signer.sidecars Add additional sidecar containers to the Harbor Notary Signer pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param notary.signer.initContainers Add additional init containers to the Harbor Notary Signer pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param notary.signer.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Harbor Notary Signer pods + ## + extraVolumeMounts: [] + ## @param notary.signer.extraVolumes Optionally specify extra list of additional volumes for the Harbor Notary Signer pods + ## + extraVolumes: [] + ## @param notary.signer.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Harbor Notary service configuration + ## + service: + ## @param notary.service.ports.server Harbor Notary server service port + ## @param notary.service.ports.signer Harbor Notary signer service port + ## + ports: + server: 4443 + signer: 7899 + +## @section Harbor Adapter Trivy Parameters +## + +trivy: + ## Bitnami Harbor Adapter Trivy image + ## ref: https://hub.docker.com/r/bitnami/harbor-adapter-trivy/tags/ + ## @param trivy.image.registry Harbor Adapter Trivy image registry + ## @param trivy.image.repository Harbor Adapter Trivy image repository + ## @param trivy.image.tag Harbor Adapter Trivy image tag (immutable tags are recommended) + ## @param trivy.image.digest Harbor Adapter Trivy image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param trivy.image.pullPolicy Harbor Adapter Trivy image pull policy + ## @param trivy.image.pullSecrets Harbor Adapter Trivy image pull secrets + ## @param trivy.image.debug Enable Harbor Adapter Trivy image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-adapter-trivy + tag: 2.12.2-debian-12-r6 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param trivy.enabled Enable Trivy + ## + enabled: true + ## @param trivy.debugMode The flag to enable Trivy debug mode + ## + debugMode: false + ## @param trivy.vulnType Comma-separated list of vulnerability types. Possible values `os` and `library`. + ## + vulnType: 'os,library' + ## @param trivy.severity Comma-separated list of severities to be checked + ## + severity: 'UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL' + ## @param trivy.ignoreUnfixed The flag to display only fixed vulnerabilities + ## + ignoreUnfixed: false + ## @param trivy.insecure The flag to skip verifying registry certificate + ## + insecure: true + ## @param trivy.gitHubToken The GitHub access token to download Trivy DB + ## + ## Trivy DB contains vulnerability information from NVD, Red Hat, and many other upstream vulnerability databases. + ## It is downloaded by Trivy from the GitHub release page https://github.com/aquasecurity/trivy-db/releases and cached + ## in the local file system (`/home/scanner/.cache/trivy/db/trivy.db`). In addition, the database contains the update + ## timestamp so Trivy can detect whether it should download a newer version from the Internet or use the cached one. + ## Currently, the database is updated every 12 hours and published as a new release to GitHub. + ## + ## Anonymous downloads from GitHub are subject to the limit of 60 requests per hour. Normally such rate limit is enough + ## for production operations. If, for any reason, it's not enough, you could increase the rate limit to 5000 + ## requests per hour by specifying the GitHub access token. For more details on GitHub rate limiting please consult + ## https://developer.github.com/v3/#rate-limiting + ## + ## You can create a GitHub token by following the instructions in + ## https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line + ## + gitHubToken: "" + ## @param trivy.skipUpdate The flag to disable Trivy DB downloads from GitHub + ## You might want to set the value of this flag to `true` in test or CI/CD environments to avoid GitHub rate limiting issues. + ## If the value is set to `true` you have to manually download the `trivy.db` file and mount it in the + ## `/home/scanner/.cache/trivy/db/trivy.db` path. + ## + skipUpdate: false + ## @param trivy.cacheDir Directory to store the cache + ## + cacheDir: '/bitnami/harbor-adapter-trivy/.cache' + ## Use TLS in the container + ## + tls: + ## @param trivy.tls.existingSecret Name of an existing secret with the certificates for internal TLS access + ## Requires `internalTLS.enabled` to be set to `true`` + ## Self-signed TLS certificates will be used otherwise + ## + existingSecret: "" + ## @param trivy.command Override default container command (useful when using custom images) + ## + command: [] + ## @param trivy.args Override default container args (useful when using custom images) + ## + args: [] + ## @param trivy.extraEnvVars Array with extra environment variables to add Trivy pods + ## + extraEnvVars: [] + ## @param trivy.extraEnvVarsCM ConfigMap containing extra environment variables for Trivy pods + ## + extraEnvVarsCM: "" + ## @param trivy.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Trivy pods + ## + extraEnvVarsSecret: "" + ## @param trivy.containerPorts.http Trivy HTTP container port + ## @param trivy.containerPorts.https Trivy HTTPS container port + ## + containerPorts: + http: 8080 + https: 8443 + ## @param trivy.replicaCount Number of Trivy replicas + ## + replicaCount: 1 + ## Configure extra options for Trivy containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param trivy.livenessProbe.enabled Enable livenessProbe on Trivy containers + ## @param trivy.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param trivy.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param trivy.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param trivy.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param trivy.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param trivy.readinessProbe.enabled Enable readinessProbe on Trivy containers + ## @param trivy.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param trivy.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param trivy.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param trivy.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param trivy.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param trivy.startupProbe.enabled Enable startupProbe on Trivy containers + ## @param trivy.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param trivy.startupProbe.periodSeconds Period seconds for startupProbe + ## @param trivy.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param trivy.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param trivy.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param trivy.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param trivy.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param trivy.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Trivy resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param trivy.resources.limits [object] The resources limits for the Trivy containers + ## @param trivy.resources.requests [object] The requested resources for the Trivy containers + ## + resources: + requests: + cpu: 200m + memory: 512Mi + limits: + cpu: 1 + memory: 1Gi + ## Configure Trivy pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param trivy.podSecurityContext.enabled Enabled Trivy pods' Security Context + ## @param trivy.podSecurityContext.fsGroup Set Trivy pod's Security Context fsGroup + ## + podSecurityContext: + enabled: false + fsGroup: 1001 + ## Configure Trivy containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param trivy.containerSecurityContext.enabled Enabled Trivy containers' Security Context + ## @param trivy.containerSecurityContext.runAsUser Set Trivy containers' Security Context runAsUser + ## @param trivy.containerSecurityContext.runAsNonRoot Set Trivy containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: false + runAsUser: 1001 + runAsNonRoot: true + ## @param trivy.updateStrategy.type Trivy deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param trivy.lifecycleHooks LifecycleHook for the Trivy container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param trivy.hostAliases Trivy pods host aliases + ## + hostAliases: [] + ## @param trivy.podLabels Add additional labels to the Trivy pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param trivy.podAnnotations Annotations to add to the Trivy pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param trivy.podAffinityPreset Trivy Pod affinity preset. Ignored if `trivy.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param trivy.podAntiAffinityPreset Trivy Pod anti-affinity preset. Ignored if `trivy.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param trivy.nodeAffinityPreset.type Trivy Node affinity preset type. Ignored if `trivy.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param trivy.nodeAffinityPreset.key Trivy Node label key to match Ignored if `trivy.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param trivy.nodeAffinityPreset.values Trivy Node label values to match. Ignored if `trivy.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param trivy.affinity Trivy Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: trivy.podAffinityPreset, trivy.podAntiAffinityPreset, and trivy.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param trivy.nodeSelector Trivy Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param trivy.tolerations Trivy Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param trivy.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param trivy.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param trivy.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param trivy.sidecars Add additional sidecar containers to the Trivy pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param trivy.initContainers Add additional init containers to the Trivy pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param trivy.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Trivy pods + ## + extraVolumeMounts: [] + ## @param trivy.extraVolumes Optionally specify extra list of additional volumes for the Trivy pods + ## + extraVolumes: [] + ## @param trivy.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Trivy service configuration + ## + service: + ## @param trivy.service.ports.http Trivy HTTP service port + ## @param trivy.service.ports.https Trivy HTTPS service port + ## + ports: + http: 8080 + https: 8443 + +## @section Harbor Exporter Parameters +## + +exporter: + ## Bitnami Harbor Exporter image + ## ref: https://hub.docker.com/r/bitnami/harbor-exporter/tags/ + ## @param exporter.image.registry Harbor Exporter image registry + ## @param exporter.image.repository Harbor Exporter image repository + ## @param exporter.image.tag Harbor Exporter image tag + ## @param exporter.image.digest Harbor Exporter image image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param exporter.image.pullPolicy Harbor exporter image pull policy + ## @param exporter.image.pullSecrets Specify docker-registry secret names as an array + ## @param exporter.image.debug Specify if debug logs should be enabled + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-exporter + tag: 2.12.2-debian-12-r7 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param exporter.command Override default container command (useful when using custom images) + ## + command: [] + ## @param exporter.args Override default container args (useful when using custom images) + ## + args: [] + ## @param exporter.extraEnvVars Array containing extra env vars + ## For example: + ## - name: HARBOR_DATABASE_SSLMODE + ## value: verify-ca + ## + extraEnvVars: [] + ## @param exporter.extraEnvVarsCM ConfigMap containing extra env vars + ## + extraEnvVarsCM: "" + ## @param exporter.extraEnvVarsSecret Secret containing extra env vars (in case of sensitive data) + ## + extraEnvVarsSecret: "" + ## @param exporter.containerPorts.metrics Harbor Exporter HTTP container port + ## + containerPorts: + metrics: 8001 + ## @param exporter.replicaCount The replica count + ## + replicaCount: 1 + ## Harbor Exporter containers' liveness probe + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#container-probes + ## @param exporter.livenessProbe.enabled Enable livenessProbe + ## @param exporter.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param exporter.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param exporter.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param exporter.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param exporter.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## Harbor Exporter containers' readiness probe + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#container-probes + ## @param exporter.readinessProbe.enabled Enable readinessProbe + ## @param exporter.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param exporter.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param exporter.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param exporter.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param exporter.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param exporter.startupProbe.enabled Enable startupProbe on Harbor Exporter containers + ## @param exporter.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param exporter.startupProbe.periodSeconds Period seconds for startupProbe + ## @param exporter.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param exporter.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param exporter.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param exporter.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param exporter.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param exporter.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Exporter resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param exporter.resources.limits The resources limits for the Harbor Exporter containers + ## @param exporter.resources.requests The requested resources for the Harbor Exporter containers + ## + resources: + limits: {} + requests: {} + ## Configure Exporter pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param exporter.podSecurityContext.enabled Enabled Exporter pods' Security Context + ## @param exporter.podSecurityContext.fsGroup Set Exporter pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Exporter containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param exporter.containerSecurityContext.enabled Enabled Exporter containers' Security Context + ## @param exporter.containerSecurityContext.runAsUser Set Exporter containers' Security Context runAsUser + ## @param exporter.containerSecurityContext.runAsNonRoot Set Exporter containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param exporter.updateStrategy.type The update strategy for deployments with persistent volumes: RollingUpdate or Recreate. Set it as Recreate when RWM for volumes isn't supported + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param exporter.lifecycleHooks LifecycleHook to set additional configuration at startup, e.g. LDAP settings via REST API. Evaluated as a template + ## + lifecycleHooks: {} + ## @param exporter.hostAliases Exporter pods host aliases + ## + hostAliases: [] + ## @param exporter.podLabels Add additional labels to the pod (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param exporter.podAnnotations Annotations to add to the exporter pod + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param exporter.podAffinityPreset Harbor Exporter Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param exporter.podAntiAffinityPreset Harbor Exporter Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param exporter.nodeAffinityPreset.type Harbor Exporter Node affinity preset type. Ignored if `exporter.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param exporter.nodeAffinityPreset.key Harbor Exporter Node label key to match Ignored if `exporter.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param exporter.nodeAffinityPreset.values Harbor Exporter Node label values to match. Ignored if `exporter.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param exporter.affinity Harbor Exporter Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: `exporter.podAffinityPreset`, `exporter.podAntiAffinityPreset`, and `exporter.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param exporter.priorityClassName Exporter pods Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param exporter.schedulerName Name of the k8s scheduler (other than default) + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param exporter.serviceAccountName Name of the serviceAccountName for Harbor Exporter pods + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + serviceAccountName: "" + ## @param exporter.nodeSelector Harbor Exporter Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param exporter.tolerations Harbor Exporter Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param exporter.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param exporter.initContainers Add additional init containers to the pod (evaluated as a template) + ## + initContainers: [] + ## @param exporter.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Chartmuseum pods + ## + extraVolumeMounts: [] + ## @param exporter.extraVolumes Optionally specify extra list of additional volumes for the Chartmuseum pods + ## + extraVolumes: [] + ## @param exporter.sidecars Attach additional containers to the pod (evaluated as a template) + ## + sidecars: [] + ## @param exporter.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Exporter service configuration + ## + service: + ## @param exporter.service.ports.metrics Exporter HTTP service port + ## + ports: + metrics: 8001 + +## @section PostgreSQL Parameters +## + +## PostgreSQL chart configuration +## ref: https://github.com/bitnami/charts/blob/main/bitnami/postgresql/values.yaml +## @param postgresql.enabled Switch to enable or disable the PostgreSQL helm chart +## @param postgresql.auth.enablePostgresUser Assign a password to the "postgres" admin user. Otherwise, remote access will be blocked for this user +## @param postgresql.auth.postgresPassword Password for the "postgres" admin user +## @param postgresql.auth.existingSecret Name of existing secret to use for PostgreSQL credentials +## @param postgresql.architecture PostgreSQL architecture (`standalone` or `replication`) +## @param postgresql.primary.extendedConfiguration Extended PostgreSQL Primary configuration (appended to main or default configuration) +## @param postgresql.primary.initdb.scripts [object] Initdb scripts to create Harbor databases +## +postgresql: + enabled: false + ## Override PostgreSQL default image as 14.x is not supported https://goharbor.io/docs/2.4.0/install-config/ + ## ref: https://github.com/bitnami/containers/tree/main/bitnami/postgresql + ## @param postgresql.image.registry PostgreSQL image registry + ## @param postgresql.image.repository PostgreSQL image repository + ## @param postgresql.image.tag PostgreSQL image tag (immutable tags are recommended) + ## @param postgresql.image.digest PostgreSQL image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## + image: + registry: docker.io + repository: bitnamilegacy/postgresql + # tag: 13.15.0-debian-12-r2 + tag: 14.16.0-debian-12-r4 + digest: "" + auth: + enablePostgresUser: true + postgresPassword: harbor + existingSecret: "" + architecture: standalone + primary: + extendedConfiguration: | + max_connections = 1024 + initdb: + scripts: + initial-notaryserver.sql: | + CREATE DATABASE notaryserver; + CREATE USER server; + alter user server with encrypted password 'password'; + GRANT ALL PRIVILEGES ON DATABASE notaryserver TO server; + initial-notarysigner.sql: | + CREATE DATABASE notarysigner; + CREATE USER signer; + alter user signer with encrypted password 'password'; + GRANT ALL PRIVILEGES ON DATABASE notarysigner TO signer; + initial-registry.sql: | + CREATE DATABASE registry ENCODING 'UTF8'; + \c registry; + CREATE TABLE schema_migrations(version bigint not null primary key, dirty boolean not null); +## External PostgreSQL configuration +## All of these values are only used when postgresql.enabled is set to false +## @param externalDatabase.host Database host +## @param externalDatabase.port Database port number +## @param externalDatabase.user Non-root username for Harbor +## @param externalDatabase.password Password for the non-root username for Harbor +## @param externalDatabase.sslmode External database ssl mode +## @param externalDatabase.coreDatabase External database name for core +## @param externalDatabase.notaryServerDatabase External database name for notary server +## @param externalDatabase.notaryServerUsername External database username for notary server +## @param externalDatabase.notaryServerPassword External database password for notary server +## @param externalDatabase.notarySignerDatabase External database name for notary signer +## @param externalDatabase.notarySignerUsername External database username for notary signer +## @param externalDatabase.notarySignerPassword External database password for notary signer +## +externalDatabase: + host: postgres13.postgres.svc.cluster.local +# host: 192.168.2.235 + port: 5432 + user: harbor + password: "harbor" + sslmode: disable + coreDatabase: "harbor" + notaryServerDatabase: "harbor" + notaryServerUsername: "harbor" + notaryServerPassword: "harbor" + notarySignerDatabase: "harbor" + notarySignerUsername: "harbor" + notarySignerPassword: "harbor" + +## @section Redis® parameters +## + +## Redis® chart configuration +## ref: https://github.com/bitnami/charts/blob/main/bitnami/redis/values.yaml +## @param redis.enabled Switch to enable or disable the Redis® helm +## @param redis.auth.enabled Enable password authentication +## @param redis.auth.password Redis® password +## @param redis.auth.existingSecret The name of an existing secret with Redis® credentials +## @param redis.architecture Redis® architecture. Allowed values: `standalone` or `replication` +## @param redis.sentinel.enabled Use Redis® Sentinel on Redis® pods. +## @param redis.sentinel.masterSet Master set name +## @param redis.sentinel.service.ports.sentinel Redis® service port for Redis® Sentinel +## +redis: + enabled: false + storageClass: "" + auth: + enabled: true + ## Redis® password (both master and slave). Defaults to a random 10-character alphanumeric string if not set and auth.enabled is true. + ## It should always be set using the password value or in the existingSecret to avoid issues + ## with Harbor. + ## The password value is ignored if existingSecret is set + ## + password: "Redis01" + existingSecret: "" + architecture: standalone + sentinel: + enabled: false + masterSet: mymaster + service: + ports: + sentinel: 26379 + +## External Redis® configuration +## All of these values are only used when redis.enabled is set to false +## @param externalRedis.host Redis® host +## @param externalRedis.port Redis® port number +## @param externalRedis.password Redis® password +## @param externalRedis.coreDatabaseIndex Index for core database +## @param externalRedis.jobserviceDatabaseIndex Index for jobservice database +## @param externalRedis.registryDatabaseIndex Index for registry database +## @param externalRedis.chartmuseumDatabaseIndex Index for chartmuseum database +## @param externalRedis.trivyAdapterDatabaseIndex Index for chartmuseum database +## +externalRedis: + host: 192.168.2.182 +# host: 192.168.2.221 + port: 6379 + password: "Redis01@" + coreDatabaseIndex: '0' + jobserviceDatabaseIndex: '1' + registryDatabaseIndex: '2' + chartmuseumDatabaseIndex: '3' + trivyAdapterDatabaseIndex: '5' + ## Redis® sentinel configuration + ## @param externalRedis.sentinel.enabled If external redis with sentinal is used, set it to `true` + ## @param externalRedis.sentinel.masterSet Name of sentinel masterSet if sentinel is used + ## @param externalRedis.sentinel.hosts Sentinel hosts and ports in the format + ## + sentinel: + enabled: false + masterSet: 'mymaster' + hosts: "" + +## @section Harbor metrics parameters +## +metrics: + ## @param metrics.enabled Whether or not to enable metrics for different + ## + enabled: false + ## @param metrics.path Path where metrics are exposed + ## + path: /metrics + ## Prometheus Operator ServiceMonitor configuration + ## + serviceMonitor: + ## @param metrics.serviceMonitor.enabled if `true`, creates a Prometheus Operator ServiceMonitor (requires `metrics.enabled` to be `true`) + ## + enabled: false + ## @param metrics.serviceMonitor.namespace Namespace in which Prometheus is running + ## + namespace: "" + ## @param metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: "" + ## @param metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: "" + ## @param metrics.serviceMonitor.labels Additional labels that can be used so ServiceMonitor will be discovered by Prometheus + ## + labels: {} + ## @param metrics.serviceMonitor.selector Prometheus instance selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + selector: {} + ## @param metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## + relabelings: [] + ## @param metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## + metricRelabelings: [] + ## @param metrics.serviceMonitor.honorLabels Specify honorLabels parameter to add the scrape endpoint + ## + honorLabels: false + ## @param metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" diff --git a/dev/hercules/catalog-info.yaml b/dev/hercules/catalog-info.yaml new file mode 100644 index 0000000..a18872a --- /dev/null +++ b/dev/hercules/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-hercules + title: Hercules (dev) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/dev/hercules/hercules-pv.yaml b/dev/hercules/hercules-pv.yaml new file mode 100755 index 0000000..a92ac1a --- /dev/null +++ b/dev/hercules/hercules-pv.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: hercules-pv + labels: + type: local +spec: + storageClassName: manual + capacity: + storage: 30Gi + accessModes: + - ReadWriteOnce + hostPath: + path: "/share" diff --git a/dev/hercules/hercules-pvc.yaml b/dev/hercules/hercules-pvc.yaml new file mode 100755 index 0000000..1a51c6d --- /dev/null +++ b/dev/hercules/hercules-pvc.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: hercules-pvc +spec: + storageClassName: manual + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 30Gi diff --git a/dev/hercules/hercules-test.yaml b/dev/hercules/hercules-test.yaml new file mode 100755 index 0000000..86b1317 --- /dev/null +++ b/dev/hercules/hercules-test.yaml @@ -0,0 +1,19 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: hercules + labels: + app: hercules +spec: + replicas: 1 + selector: + matchLabels: + app: hercules + template: + metadata: + labels: + app: hercules + spec: + containers: + - name: hercules + image: core.harbor.alldcs.nl/test/hercules diff --git a/dev/hercules/hercules.yaml b/dev/hercules/hercules.yaml new file mode 100755 index 0000000..1d84933 --- /dev/null +++ b/dev/hercules/hercules.yaml @@ -0,0 +1,60 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: hercules + labels: + app: hercules +spec: + replicas: 1 + selector: + matchLabels: + app: hercules + template: + metadata: + labels: + app: hercules + spec: + containers: + - name: hercules + image: core.harbor.alldcs.nl/test/hercules + securityContext: + privileged: true + capabilities: + add: ["NET_ADMIN","NET_RAW"] + ports: + - containerPort: 22 + name: hercules-ssh + - containerPort: 80 + name: hercules + - containerPort: 3270 + name: terminal + - containerPort: 3390 + name: network + volumeMounts: + - mountPath: /share + name: hercules + - mountPath: /mnt + name: mnt + subPath: hercules + volumes: + - name: hercules + persistentVolumeClaim: + claimName: hercules-pvc + - name: mnt + persistentVolumeClaim: + claimName: mnt + nodeSelector: + hercules: hercules1 +--- +apiVersion: v1 +kind: Service +metadata: + name: hercules +spec: + ports: + - name: http + targetPort: 80 + port: 80 + selector: + app: hercules + type: NodePort diff --git a/dev/itop/README.md b/dev/itop/README.md new file mode 100755 index 0000000..8438547 --- /dev/null +++ b/dev/itop/README.md @@ -0,0 +1,4 @@ +sudo microk8s kubectl exec itop-66c56dd4bd-bb2t6 -- chown www-data:www-data /var/www/html/conf + exec my-itop /install-toolkit.sh + exec my-itop conf-w + exec my-itop conf-ro diff --git a/dev/itop/catalog-info.yaml b/dev/itop/catalog-info.yaml new file mode 100644 index 0000000..086088c --- /dev/null +++ b/dev/itop/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-itop + title: Itop (dev) + description: Harbor instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=itop" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/itop + title: itop-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/itop/itop-integrations/Dockerfile b/dev/itop/itop-integrations/Dockerfile new file mode 100755 index 0000000..849b478 --- /dev/null +++ b/dev/itop/itop-integrations/Dockerfile @@ -0,0 +1,3 @@ +FROM ubuntu +RUN apt update && apt upgrade -y +RUN apt install wget -y diff --git a/dev/itop/itop-integrations/add-person.sh b/dev/itop/itop-integrations/add-person.sh new file mode 100755 index 0000000..e093ab0 --- /dev/null +++ b/dev/itop/itop-integrations/add-person.sh @@ -0,0 +1,2 @@ +php webservices/import.php --auth_user=login --auth_pwd=password --csvfile="location.csv" + --charset="UTF-8" --no_localize=1 --class="Location" --reconcialiationkeys="name,org_id->name" diff --git a/dev/itop/itop-integrations/apifunction.php b/dev/itop/itop-integrations/apifunction.php new file mode 100755 index 0000000..574d51d --- /dev/null +++ b/dev/itop/itop-integrations/apifunction.php @@ -0,0 +1,135 @@ +itopApi = array( + + "url" => "http://itop.alldcs.nl", + + "user" => "allard", + + "pass" => "Itop01@" + + ); + + + } + + + // Get details function + + + public function get($class,$key) { + + + $params['operation'] = 'core/get'; + + $params['class'] = $class; + + $params['key'] = $key; + + + $execute = $this->execute($params); + + RETURN $execute; + + + + } + + + + + // Apply stimulus to an object + + + + public function stimulus($param,$fields) { + + + $params['operation'] = 'core/apply_stimulus'; + + $params['comment'] = $param['comment']; + + $params['stimulus'] = $param['stimulus']; + + $params['class'] = $param['class']; + + $params['key'] = $param['key']; + + $params['fields'] = $fields; + + + $execute = $this->execute($params); + + + RETURN $execute; + + + } + + + // Hit data to itop server + + private function execute($params) { + + + $param['auth_user'] = $this->itopApi['user']; + + $param['auth_pwd'] = $this->itopApi['pass']; + + $param['json_data'] = json_encode($params); + + + $ch = curl_init(); + + curl_setopt($ch, CURLOPT_URL, $this->itopApi['url']); + + curl_setopt($ch, CURLOPT_POST, count($param)); + + curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($param)); + + curl_setopt($ch, CURLOPT_HEADER, false); + + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + + $result = json_decode(curl_exec($ch),true); + + curl_close($ch); + + + RETURN $result; // Returning data on array format + + } + + + // Testing purpose function + + + public function test() { + + + + echo $this->itopApi['url']; + + + + } + + + +} + + + + + +?> diff --git a/dev/itop/itop-integrations/change.json b/dev/itop/itop-integrations/change.json new file mode 100755 index 0000000..4230b3d --- /dev/null +++ b/dev/itop/itop-integrations/change.json @@ -0,0 +1,12 @@ +{ + "operation":"core/create", + "comment":"Synchronization from blah...", + "class":"RoutineChange", + "fields": + { + "org_id":"SELECT Organization WHERE name = 'ALLDCS'", + "caller_id":{"name":"Krings","first_name":"Allard"}, + "title":"container", + "description":"container gebouwd" + } +} diff --git a/dev/itop/itop-integrations/create-change.sh b/dev/itop/itop-integrations/create-change.sh new file mode 100755 index 0000000..abd076e --- /dev/null +++ b/dev/itop/itop-integrations/create-change.sh @@ -0,0 +1,28 @@ +#!/bin/bash +################################################################################## +# # +# Example script for creating a UserRequest ticket via the REST/JSON webservices # +# # +################################################################################## + +# iTop location and credentials, change them to suit your iTop installation +ITOP_URL="https://itop.alldcs.nl" +ITOP_USER="tekton" +ITOP_PWD="Itop01@@@" +ORGANIZATION="0002" +TITLE="Change registration" +DESCRIPTION="Container created" +CALLER="0001" +COMMENT="commentaar" +CHANGE="RoutineChange" +# Let's create the ticket via the REST/JSON API +JSON_DATA='{"operation":"core/create", "class":"'"${CHANGE}"'", "fields": {"org_id":"'"${ORGANIZATION}"'", "title":"'"$TITLE"'", "description":"'"$DESCRIPTION"'"}, "caller": "'"$CALLER"'", "comment": "'"$COMMENT"'"}' +RESULT=`wget -q --post-data='auth_user='"${ITOP_USER}"'&auth_pwd='"${ITOP_PWD}"'&json_data='"${JSON_DATA}" --no-check-certificate -O - "${ITOP_URL}/webservices/rest.php?version=1.0"` +PATTERN='"key":"([0-9])+"' +if [[ $RESULT =~ $PATTERN ]]; then + echo "Change created successfully" + else + echo "ERROR: failed to create change" + echo $RESULT + exit 1 +fi diff --git a/dev/itop/itop-integrations/curl.sh b/dev/itop/itop-integrations/curl.sh new file mode 100755 index 0000000..a9a2fb7 --- /dev/null +++ b/dev/itop/itop-integrations/curl.sh @@ -0,0 +1 @@ +curl -X POST -F 'version=1.3' -F 'auth_user=allard' -F 'auth_pwd=Itop01@@@' http://itop.alldcs.nl/webservices/rest.php -F 'json_data=@./change.json' diff --git a/dev/itop/itop-integrations/itop-integrations/Dockerfile b/dev/itop/itop-integrations/itop-integrations/Dockerfile new file mode 100755 index 0000000..849b478 --- /dev/null +++ b/dev/itop/itop-integrations/itop-integrations/Dockerfile @@ -0,0 +1,3 @@ +FROM ubuntu +RUN apt update && apt upgrade -y +RUN apt install wget -y diff --git a/dev/itop/itop-integrations/itop-integrations/add-person.sh b/dev/itop/itop-integrations/itop-integrations/add-person.sh new file mode 100755 index 0000000..e093ab0 --- /dev/null +++ b/dev/itop/itop-integrations/itop-integrations/add-person.sh @@ -0,0 +1,2 @@ +php webservices/import.php --auth_user=login --auth_pwd=password --csvfile="location.csv" + --charset="UTF-8" --no_localize=1 --class="Location" --reconcialiationkeys="name,org_id->name" diff --git a/dev/itop/itop-integrations/itop-integrations/apifunction.php b/dev/itop/itop-integrations/itop-integrations/apifunction.php new file mode 100755 index 0000000..574d51d --- /dev/null +++ b/dev/itop/itop-integrations/itop-integrations/apifunction.php @@ -0,0 +1,135 @@ +itopApi = array( + + "url" => "http://itop.alldcs.nl", + + "user" => "allard", + + "pass" => "Itop01@" + + ); + + + } + + + // Get details function + + + public function get($class,$key) { + + + $params['operation'] = 'core/get'; + + $params['class'] = $class; + + $params['key'] = $key; + + + $execute = $this->execute($params); + + RETURN $execute; + + + + } + + + + + // Apply stimulus to an object + + + + public function stimulus($param,$fields) { + + + $params['operation'] = 'core/apply_stimulus'; + + $params['comment'] = $param['comment']; + + $params['stimulus'] = $param['stimulus']; + + $params['class'] = $param['class']; + + $params['key'] = $param['key']; + + $params['fields'] = $fields; + + + $execute = $this->execute($params); + + + RETURN $execute; + + + } + + + // Hit data to itop server + + private function execute($params) { + + + $param['auth_user'] = $this->itopApi['user']; + + $param['auth_pwd'] = $this->itopApi['pass']; + + $param['json_data'] = json_encode($params); + + + $ch = curl_init(); + + curl_setopt($ch, CURLOPT_URL, $this->itopApi['url']); + + curl_setopt($ch, CURLOPT_POST, count($param)); + + curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($param)); + + curl_setopt($ch, CURLOPT_HEADER, false); + + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + + $result = json_decode(curl_exec($ch),true); + + curl_close($ch); + + + RETURN $result; // Returning data on array format + + } + + + // Testing purpose function + + + public function test() { + + + + echo $this->itopApi['url']; + + + + } + + + +} + + + + + +?> diff --git a/dev/itop/itop-integrations/itop-integrations/change.json b/dev/itop/itop-integrations/itop-integrations/change.json new file mode 100755 index 0000000..4230b3d --- /dev/null +++ b/dev/itop/itop-integrations/itop-integrations/change.json @@ -0,0 +1,12 @@ +{ + "operation":"core/create", + "comment":"Synchronization from blah...", + "class":"RoutineChange", + "fields": + { + "org_id":"SELECT Organization WHERE name = 'ALLDCS'", + "caller_id":{"name":"Krings","first_name":"Allard"}, + "title":"container", + "description":"container gebouwd" + } +} diff --git a/dev/itop/itop-integrations/itop-integrations/create-change.sh b/dev/itop/itop-integrations/itop-integrations/create-change.sh new file mode 100755 index 0000000..db8e471 --- /dev/null +++ b/dev/itop/itop-integrations/itop-integrations/create-change.sh @@ -0,0 +1,27 @@ +#!/bin/bash +################################################################################## +# # +# Example script for creating a UserRequest ticket via the REST/JSON webservices # +# # +################################################################################## + +# iTop location and credentials, change them to suit your iTop installation +ITOP_URL="https://itop.alldcs.nl" +ITOP_USER="allard" +ITOP_PWD="Itop01@@@" +ORGANIZATION="0001" +TITLE="UserRequest" +DESCRIPTION="Container created" +CALLER="0001" +COMMENT="commentaar" +CHANGE="RoutineChange" +# Let's create the ticket via the REST/JSON API +JSON_DATA='{"operation":"core/create", "class":"'"${CHANGE}"'", "fields": {"org_id":"'"${ORGANIZATION}"'", "title":"'"$TITLE"'", "description":"'"$DESCRIPTION"'"}, "caller": "'"$CALLER"'", "comment": "'"$COMMENT"'"}' +RESULT=`wget -q --post-data='auth_user='"${ITOP_USER}"'&auth_pwd='"${ITOP_PWD}"'&json_data='"${JSON_DATA}" --no-check-certificate -O - "${ITOP_URL}/webservices/rest.php?version=1.0"` +#PATTERN='"key":"([0-9])+"' +#if [[ $RESULT =~ $PATTERN ]]; then +# echo "Change created successfully" +# else +# echo "ERROR: failed to create change" +# echo $RESULT +#fi diff --git a/dev/itop/itop-integrations/itop-integrations/curl.sh b/dev/itop/itop-integrations/itop-integrations/curl.sh new file mode 100755 index 0000000..a9a2fb7 --- /dev/null +++ b/dev/itop/itop-integrations/itop-integrations/curl.sh @@ -0,0 +1 @@ +curl -X POST -F 'version=1.3' -F 'auth_user=allard' -F 'auth_pwd=Itop01@@@' http://itop.alldcs.nl/webservices/rest.php -F 'json_data=@./change.json' diff --git a/dev/itop/itop-integrations/itop-integrations/my-json-operation.json b/dev/itop/itop-integrations/itop-integrations/my-json-operation.json new file mode 100755 index 0000000..5f313e9 --- /dev/null +++ b/dev/itop/itop-integrations/itop-integrations/my-json-operation.json @@ -0,0 +1,13 @@ +{ + "operation":"core/create", + "comment":"Synchronization from blah...", + "class":"UserRequest", + "output_fields":"id, friendlyname", + "fields": + { + "org_id":"SELECT Organization WHERE name = 'ALLDCS'", + "caller_id":{"name":"Krings","first_name":"Allard"}, + "title":"issue blah", + "description":"something happened" + } +} diff --git a/dev/itop/itop-integrations/itop-integrations/person.csv b/dev/itop/itop-integrations/itop-integrations/person.csv new file mode 100755 index 0000000..863985b --- /dev/null +++ b/dev/itop/itop-integrations/itop-integrations/person.csv @@ -0,0 +1,3 @@ +Last Name,Status,Organization->Name,Email,Phone,Notification,Function,First Name +"Monet","Active","Demo","monet@demo.com","","yes","","Claude" +"Flaubert","Active","IT Department","flaubert@it.com","","yes","","Gustave" diff --git a/dev/itop/itop-integrations/itop-integrations/test-json.sh b/dev/itop/itop-integrations/itop-integrations/test-json.sh new file mode 100755 index 0000000..e979934 --- /dev/null +++ b/dev/itop/itop-integrations/itop-integrations/test-json.sh @@ -0,0 +1,65 @@ +#!/bin/bash +################################################################################## +# # +# Example script for creating a UserRequest ticket via the REST/JSON webservices # +# # +################################################################################## + +# iTop location and credentials, change them to suit your iTop installation +ITOP_URL="https://itop.alldcs.nl" +ITOP_USER="allard" +ITOP_PWD="Itop01@@@" + + +# Parameters checking, see below for default values +if [ "$1" == "" ]; then + echo "Missing parameter 1: host" + exit -1 +else + HOST="$1" +fi + +if [ "$2" == "" ]; then + echo "Missing parameter 2: Service" + exit -1 +else + SERVICE="$2" +fi + +if [ "$3" == "" ]; then + echo "Missing parameter 3: Service Status" + exit -1 +else + SERVICE_STATUS="$3" +fi + +if [ "$4" == "" ]; then + echo "Missing parameter 4: Service State Type" + exit -1 +else + SERVICE_STATUS_TYPE="$4" +fi + +# Default values, adapt them to your configuration +TICKET_CLASS="UserRequest" +ORGANIZATION="SELECT Organization JOIN FunctionalCI AS CI ON CI.org_id=Organization.id WHERE CI.name='"${HOST}"'" +TITLE="Service Down on $1" +DESCRIPTION="The service $SERVICE is in state $SERVICE_STATUS on $HOST" + +# Let's create the ticket via the REST/JSON API +if [[ ( "$SERVICE_STATUS" != "OK" ) && ( "$SERVICE_STATUS" != "UP" ) && ( "$SERVICE_STATUS_TYPE" == "HARD" ) ]]; then + CIS_LIST='[{"functionalci_id":"SELECT FunctionalCI WHERE name=\"'"$1"'\"", "impact_code": "manual"}]' + JSON_DATA='{"operation":"core/create", "class":"'"${TICKET_CLASS}"'", "fields": {"functionalcis_list":'"${CIS_LIST}"', "org_id":"'"${ORGANIZATION}"'", "title":"'"$TITLE"'", "description":"'"$DESCRIPTION"'"}, "comment": "Created by the Monitoring", "output_fields": "id"}' + + RESULT=`wget -q --post-data='auth_user='"${ITOP_USER}"'&auth_pwd='"${ITOP_PWD}"'&json_data='"${JSON_DATA}" --no-check-certificate -O - "${ITOP_URL}/webservices/rest.php?version=1.0"` + + PATTERN='"key":"([0-9])+"' + if [[ $RESULT =~ $PATTERN ]]; then + echo "Ticket created successfully" + else + echo "ERROR: failed to create ticket" + echo $RESULT + fi +else + echo "Service State Type != HARD, doing nothing" +fi diff --git a/dev/itop/itop-integrations/itop-integrations/test.sh b/dev/itop/itop-integrations/itop-integrations/test.sh new file mode 100755 index 0000000..e1e9d60 --- /dev/null +++ b/dev/itop/itop-integrations/itop-integrations/test.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +HTTP POST itop.alldcs.nl/webservices/rest.php?version=1.3 +auth_user=Itop_admin +auth_pwd=Itop01@ +json_data= +{ + "operation": "list_operations" +} diff --git a/dev/itop/itop-integrations/itop-integrations/tester.php b/dev/itop/itop-integrations/itop-integrations/tester.php new file mode 100755 index 0000000..8cdd310 --- /dev/null +++ b/dev/itop/itop-integrations/itop-integrations/tester.php @@ -0,0 +1,73 @@ +get("Incident","1620"); + + echo "
";
+
+	print_r($api);
+
+	echo "
"; + + **/ + + +/** ASSIGN (Stimulus) Function Test **/ + + /* $param['comment'] = "Assigned from API"; + + $param['stimulus'] = "ev_assign"; + + $param['class'] = "Incident"; + + $param['key'] = "1620"; + + $fields['team_id'] = "39"; + + $fields['agent_id'] = "3"; + + $api = $itopApi->stimulus($param,$fields); + + echo "
";
+
+	print_r($api);
+
+	echo "
"; */ + + +/** RESOLVE (Stimulus) Function Test **/ + + + + /* $param['comment'] = "Resolved from API"; + + $param['stimulus'] = "ev_resolve"; + + $param['class'] = "Incident"; + + $param['key'] = "1653"; + + $fields['solution'] = "PC Sudah terinstall iReap"; + + + $api = $itopApi->stimulus($param,$fields); + + + echo "
";
+
+	print_r($api);
+
+	echo "
"; */ + + + +?> diff --git a/dev/itop/itop-integrations/my-json-operation.json b/dev/itop/itop-integrations/my-json-operation.json new file mode 100755 index 0000000..5f313e9 --- /dev/null +++ b/dev/itop/itop-integrations/my-json-operation.json @@ -0,0 +1,13 @@ +{ + "operation":"core/create", + "comment":"Synchronization from blah...", + "class":"UserRequest", + "output_fields":"id, friendlyname", + "fields": + { + "org_id":"SELECT Organization WHERE name = 'ALLDCS'", + "caller_id":{"name":"Krings","first_name":"Allard"}, + "title":"issue blah", + "description":"something happened" + } +} diff --git a/dev/itop/itop-integrations/person.csv b/dev/itop/itop-integrations/person.csv new file mode 100755 index 0000000..863985b --- /dev/null +++ b/dev/itop/itop-integrations/person.csv @@ -0,0 +1,3 @@ +Last Name,Status,Organization->Name,Email,Phone,Notification,Function,First Name +"Monet","Active","Demo","monet@demo.com","","yes","","Claude" +"Flaubert","Active","IT Department","flaubert@it.com","","yes","","Gustave" diff --git a/dev/itop/itop-integrations/test-json.sh b/dev/itop/itop-integrations/test-json.sh new file mode 100755 index 0000000..e979934 --- /dev/null +++ b/dev/itop/itop-integrations/test-json.sh @@ -0,0 +1,65 @@ +#!/bin/bash +################################################################################## +# # +# Example script for creating a UserRequest ticket via the REST/JSON webservices # +# # +################################################################################## + +# iTop location and credentials, change them to suit your iTop installation +ITOP_URL="https://itop.alldcs.nl" +ITOP_USER="allard" +ITOP_PWD="Itop01@@@" + + +# Parameters checking, see below for default values +if [ "$1" == "" ]; then + echo "Missing parameter 1: host" + exit -1 +else + HOST="$1" +fi + +if [ "$2" == "" ]; then + echo "Missing parameter 2: Service" + exit -1 +else + SERVICE="$2" +fi + +if [ "$3" == "" ]; then + echo "Missing parameter 3: Service Status" + exit -1 +else + SERVICE_STATUS="$3" +fi + +if [ "$4" == "" ]; then + echo "Missing parameter 4: Service State Type" + exit -1 +else + SERVICE_STATUS_TYPE="$4" +fi + +# Default values, adapt them to your configuration +TICKET_CLASS="UserRequest" +ORGANIZATION="SELECT Organization JOIN FunctionalCI AS CI ON CI.org_id=Organization.id WHERE CI.name='"${HOST}"'" +TITLE="Service Down on $1" +DESCRIPTION="The service $SERVICE is in state $SERVICE_STATUS on $HOST" + +# Let's create the ticket via the REST/JSON API +if [[ ( "$SERVICE_STATUS" != "OK" ) && ( "$SERVICE_STATUS" != "UP" ) && ( "$SERVICE_STATUS_TYPE" == "HARD" ) ]]; then + CIS_LIST='[{"functionalci_id":"SELECT FunctionalCI WHERE name=\"'"$1"'\"", "impact_code": "manual"}]' + JSON_DATA='{"operation":"core/create", "class":"'"${TICKET_CLASS}"'", "fields": {"functionalcis_list":'"${CIS_LIST}"', "org_id":"'"${ORGANIZATION}"'", "title":"'"$TITLE"'", "description":"'"$DESCRIPTION"'"}, "comment": "Created by the Monitoring", "output_fields": "id"}' + + RESULT=`wget -q --post-data='auth_user='"${ITOP_USER}"'&auth_pwd='"${ITOP_PWD}"'&json_data='"${JSON_DATA}" --no-check-certificate -O - "${ITOP_URL}/webservices/rest.php?version=1.0"` + + PATTERN='"key":"([0-9])+"' + if [[ $RESULT =~ $PATTERN ]]; then + echo "Ticket created successfully" + else + echo "ERROR: failed to create ticket" + echo $RESULT + fi +else + echo "Service State Type != HARD, doing nothing" +fi diff --git a/dev/itop/itop-integrations/test.sh b/dev/itop/itop-integrations/test.sh new file mode 100755 index 0000000..e1e9d60 --- /dev/null +++ b/dev/itop/itop-integrations/test.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +HTTP POST itop.alldcs.nl/webservices/rest.php?version=1.3 +auth_user=Itop_admin +auth_pwd=Itop01@ +json_data= +{ + "operation": "list_operations" +} diff --git a/dev/itop/itop-integrations/tester.php b/dev/itop/itop-integrations/tester.php new file mode 100755 index 0000000..8cdd310 --- /dev/null +++ b/dev/itop/itop-integrations/tester.php @@ -0,0 +1,73 @@ +get("Incident","1620"); + + echo "
";
+
+	print_r($api);
+
+	echo "
"; + + **/ + + +/** ASSIGN (Stimulus) Function Test **/ + + /* $param['comment'] = "Assigned from API"; + + $param['stimulus'] = "ev_assign"; + + $param['class'] = "Incident"; + + $param['key'] = "1620"; + + $fields['team_id'] = "39"; + + $fields['agent_id'] = "3"; + + $api = $itopApi->stimulus($param,$fields); + + echo "
";
+
+	print_r($api);
+
+	echo "
"; */ + + +/** RESOLVE (Stimulus) Function Test **/ + + + + /* $param['comment'] = "Resolved from API"; + + $param['stimulus'] = "ev_resolve"; + + $param['class'] = "Incident"; + + $param['key'] = "1653"; + + $fields['solution'] = "PC Sudah terinstall iReap"; + + + $api = $itopApi->stimulus($param,$fields); + + + echo "
";
+
+	print_r($api);
+
+	echo "
"; */ + + + +?> diff --git a/dev/itop/itop.yaml b/dev/itop/itop.yaml new file mode 100755 index 0000000..f012ba7 --- /dev/null +++ b/dev/itop/itop.yaml @@ -0,0 +1,118 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: itop-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/itop/ + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: itop-pvc + namespace: itop +spec: + storageClassName: "" + volumeName: itop-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: itop + namespace: itop + labels: + app: itop +spec: + replicas: 1 + selector: + matchLabels: + app: itop + template: + metadata: + labels: + app: itop + spec: + containers: + - name: itop + image: allardkrings/itop:external + env: + - name: ITOP_DB_HOST + value: mariadb.mariadb + - name: ITOP_DB_NAME + value: itop + - name: ITOP_DB_USER + value: itop + - name: ITOP_DB_PASS + value: itop + volumeMounts: + - mountPath: /var/www/html/conf + name: itop + subPath: conf + volumes: + - name: itop + persistentVolumeClaim: + claimName: itop-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: itop + namespace: itop +spec: + selector: + app.kubernetes.io/name: itop + ports: + - protocol: TCP + port: 80 + targetPort: 80 + selector: + app: itop +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: itop-http + namespace: itop +spec: + entryPoints: + - web + routes: + - match: Host(`itop-dev.allarddcs.nl`) + kind: Rule + services: + - name: itop + port: 80 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: itop-tls + namespace: itop +spec: + entryPoints: + - websecure + routes: + - match: Host(`itop-dev.allarddcs.nl`) + kind: Rule + services: + - name: itop + port: 80 + tls: + certResolver: letsencrypt diff --git a/dev/itop/test.sh b/dev/itop/test.sh new file mode 100755 index 0000000..e1e9d60 --- /dev/null +++ b/dev/itop/test.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +HTTP POST itop.alldcs.nl/webservices/rest.php?version=1.3 +auth_user=Itop_admin +auth_pwd=Itop01@ +json_data= +{ + "operation": "list_operations" +} diff --git a/dev/kafka/README.md b/dev/kafka/README.md new file mode 100755 index 0000000..4ab4f4c --- /dev/null +++ b/dev/kafka/README.md @@ -0,0 +1,3 @@ +nodeport installeren en dan met scriptjes Topics en Messages maken. + +Vergeet niet de nodeport in de scriptjes aan te passen! diff --git a/dev/kafka/catalog-info.yaml b/dev/kafka/catalog-info.yaml new file mode 100644 index 0000000..cb3cc6a --- /dev/null +++ b/dev/kafka/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-kafka + title: Kafka (dev) + description: Kafka instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=kafka" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/kafka + title: itop-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/kafka/create-message.sh b/dev/kafka/create-message.sh new file mode 100755 index 0000000..4da7f04 --- /dev/null +++ b/dev/kafka/create-message.sh @@ -0,0 +1,4 @@ +#!/bin/bash +echo $2 >> message +kcat -b 192.168.40.83:9092 -t $1 message -P +rm message diff --git a/dev/kafka/create-topic.sh b/dev/kafka/create-topic.sh new file mode 100755 index 0000000..e484bea --- /dev/null +++ b/dev/kafka/create-topic.sh @@ -0,0 +1,2 @@ +#!/bin/bash +kcat -b 192.168.40.83:9092 -t $1 -P diff --git a/dev/kafka/hallo b/dev/kafka/hallo new file mode 100755 index 0000000..efa7d21 --- /dev/null +++ b/dev/kafka/hallo @@ -0,0 +1 @@ +hallo hier ben ik! diff --git a/dev/kafka/helm/values.yaml b/dev/kafka/helm/values.yaml new file mode 100755 index 0000000..f2b38dc --- /dev/null +++ b/dev/kafka/helm/values.yaml @@ -0,0 +1,2401 @@ +# Copyright VMware, Inc. +# SPDX-License-Identifier: APACHE-2.0 + +## @section Global parameters +## Global Docker image parameters +## Please, note that this will override the image parameters, including dependencies, configured to use the global value +## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass +## + +## @param global.imageRegistry Global Docker image registry +## @param global.imagePullSecrets Global Docker registry secret names as an array +## @param global.storageClass Global StorageClass for Persistent Volume(s) +## +global: + imageRegistry: "" + ## E.g. + ## imagePullSecrets: + ## - myRegistryKeySecretName + ## + imagePullSecrets: [] + storageClass: "" + +## @section Common parameters +## + +## @param kubeVersion Override Kubernetes version +## +kubeVersion: "" +## @param nameOverride String to partially override common.names.fullname +## +nameOverride: "" +## @param fullnameOverride String to fully override common.names.fullname +## +fullnameOverride: "" +## @param clusterDomain Default Kubernetes cluster domain +## +clusterDomain: cluster.local +## @param commonLabels Labels to add to all deployed objects +## +commonLabels: {} +## @param commonAnnotations Annotations to add to all deployed objects +## +commonAnnotations: {} +## @param extraDeploy Array of extra objects to deploy with the release +## +extraDeploy: [] +## @param serviceBindings.enabled Create secret for service binding (Experimental) +## Ref: https://servicebinding.io/service-provider/ +## +serviceBindings: + enabled: false +## Enable diagnostic mode in the statefulset +## +diagnosticMode: + ## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden) + ## + enabled: false + ## @param diagnosticMode.command Command to override all containers in the statefulset + ## + command: + - sleep + ## @param diagnosticMode.args Args to override all containers in the statefulset + ## + args: + - infinity + +## @section Kafka parameters +## + +## Bitnami Kafka image version +## ref: https://hub.docker.com/r/bitnami/kafka/tags/ +## @param image.registry [default: REGISTRY_NAME] Kafka image registry +## @param image.repository [default: REPOSITORY_NAME/kafka] Kafka image repository +## @skip image.tag Kafka image tag (immutable tags are recommended) +## @param image.digest Kafka image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag +## @param image.pullPolicy Kafka image pull policy +## @param image.pullSecrets Specify docker-registry secret names as an array +## @param image.debug Specify if debug values should be set +## +image: + registry: docker.io + repository: bitnami/kafka + tag: 3.6.1-debian-11-r0 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Set to true if you would like to see extra information on logs + ## + debug: false +## @param extraInit Additional content for the kafka init script, rendered as a template. +## +extraInit: "" +## @param config Configuration file for Kafka, rendered as a template. Auto-generated based on chart values when not specified. +## @param existingConfigmap ConfigMap with Kafka Configuration +## NOTE: This will override the configuration based on values, please act carefully +## If both are set, the existingConfigMap will be used. +## +config: "" +existingConfigmap: "" +## @param extraConfig Additional configuration to be appended at the end of the generated Kafka configuration file. +## +extraConfig: "" +## @param secretConfig Additional configuration to be appended at the end of the generated Kafka configuration file. +## This value will be stored in a secret. +## +secretConfig: "" +## @param existingSecretConfig Secret with additonal configuration that will be appended to the end of the generated Kafka configuration file +## The key for the configuration should be: server-secret.properties +## NOTE: This will override secretConfig value +## +existingSecretConfig: "" +## @param log4j An optional log4j.properties file to overwrite the default of the Kafka brokers +## An optional log4j.properties file to overwrite the default of the Kafka brokers +## ref: https://github.com/apache/kafka/blob/trunk/config/log4j.properties +## +log4j: "" +## @param existingLog4jConfigMap The name of an existing ConfigMap containing a log4j.properties file +## The name of an existing ConfigMap containing a log4j.properties file +## NOTE: this will override `log4j` +## +existingLog4jConfigMap: "" +## @param heapOpts Kafka Java Heap size +## +heapOpts: -Xmx1024m -Xms1024m +## @param interBrokerProtocolVersion Override the setting 'inter.broker.protocol.version' during the ZK migration. +## Ref. https://docs.confluent.io/platform/current/installation/migrate-zk-kraft.html +## +interBrokerProtocolVersion: "" +## Kafka listeners configuration +## +listeners: + ## @param listeners.client.name Name for the Kafka client listener + ## @param listeners.client.containerPort Port for the Kafka client listener + ## @param listeners.client.protocol Security protocol for the Kafka client listener. Allowed values are 'PLAINTEXT', 'SASL_PLAINTEXT', 'SASL_SSL' and 'SSL' + ## @param listeners.client.sslClientAuth Optional. If SASL_SSL is enabled, configure mTLS TLS authentication type. If SSL protocol is enabled, overrides tls.authType for this listener. Allowed values are 'none', 'requested' and 'required' + client: + containerPort: 9092 + protocol: SASL_PLAINTEXT + name: CLIENT + sslClientAuth: "" + ## @param listeners.controller.name Name for the Kafka controller listener + ## @param listeners.controller.containerPort Port for the Kafka controller listener + ## @param listeners.controller.protocol Security protocol for the Kafka controller listener. Allowed values are 'PLAINTEXT', 'SASL_PLAINTEXT', 'SASL_SSL' and 'SSL' + ## @param listeners.controller.sslClientAuth Optional. If SASL_SSL is enabled, configure mTLS TLS authentication type. If SSL protocol is enabled, overrides tls.authType for this listener. Allowed values are 'none', 'requested' and 'required' + ## Ref: https://cwiki.apache.org/confluence/display/KAFKA/KIP-684+-+Support+mutual+TLS+authentication+on+SASL_SSL+listeners + controller: + name: CONTROLLER + containerPort: 9093 + protocol: SASL_PLAINTEXT + sslClientAuth: "" + ## @param listeners.interbroker.name Name for the Kafka inter-broker listener + ## @param listeners.interbroker.containerPort Port for the Kafka inter-broker listener + ## @param listeners.interbroker.protocol Security protocol for the Kafka inter-broker listener. Allowed values are 'PLAINTEXT', 'SASL_PLAINTEXT', 'SASL_SSL' and 'SSL' + ## @param listeners.interbroker.sslClientAuth Optional. If SASL_SSL is enabled, configure mTLS TLS authentication type. If SSL protocol is enabled, overrides tls.authType for this listener. Allowed values are 'none', 'requested' and 'required' + interbroker: + containerPort: 9094 + protocol: SASL_PLAINTEXT + name: INTERNAL + sslClientAuth: "" + ## @param listeners.external.containerPort Port for the Kafka external listener + ## @param listeners.external.protocol Security protocol for the Kafka external listener. . Allowed values are 'PLAINTEXT', 'SASL_PLAINTEXT', 'SASL_SSL' and 'SSL' + ## @param listeners.external.name Name for the Kafka external listener + ## @param listeners.external.sslClientAuth Optional. If SASL_SSL is enabled, configure mTLS TLS authentication type. If SSL protocol is enabled, overrides tls.sslClientAuth for this listener. Allowed values are 'none', 'requested' and 'required' + external: + containerPort: 9095 + protocol: SASL_PLAINTEXT + name: EXTERNAL + sslClientAuth: "" + ## @param listeners.extraListeners Array of listener objects to be appended to already existing listeners + ## E.g. + ## extraListeners: + ## - name: CUSTOM + ## containerPort: 9097 + ## protocol: SASL_PLAINTEXT + ## sslClientAuth: "" + ## + extraListeners: [] + ## NOTE: If set, below values will override configuration set using the above values (extraListeners.*, controller.*, interbroker.*, client.* and external.*) + ## @param listeners.overrideListeners Overrides the Kafka 'listeners' configuration setting. + ## @param listeners.advertisedListeners Overrides the Kafka 'advertised.listener' configuration setting. + ## @param listeners.securityProtocolMap Overrides the Kafka 'security.protocol.map' configuration setting. + overrideListeners: "" + advertisedListeners: "" + securityProtocolMap: "" + +## @section Kafka SASL parameters +## Kafka SASL settings for authentication, required if SASL_PLAINTEXT or SASL_SSL listeners are configured +## +sasl: + ## @param sasl.enabledMechanisms Comma-separated list of allowed SASL mechanisms when SASL listeners are configured. Allowed types: `PLAIN`, `SCRAM-SHA-256`, `SCRAM-SHA-512`, `OAUTHBEARER` + ## NOTE: At the moment, Kafka Raft mode does not support SCRAM, that is why only PLAIN is configured. + ## + enabledMechanisms: PLAIN,SCRAM-SHA-256,SCRAM-SHA-512 + ## @param sasl.interBrokerMechanism SASL mechanism for inter broker communication. + ## + interBrokerMechanism: PLAIN + ## @param sasl.controllerMechanism SASL mechanism for controller communications. + ## + controllerMechanism: PLAIN + ## Settings for oauthbearer mechanism + ## @param sasl.oauthbearer.tokenEndpointUrl The URL for the OAuth/OIDC identity provider + ## @param sasl.oauthbearer.jwksEndpointUrl The OAuth/OIDC provider URL from which the provider's JWKS (JSON Web Key Set) can be retrieved + ## @param sasl.oauthbearer.expectedAudience The comma-delimited setting for the broker to use to verify that the JWT was issued for one of the expected audiences + ## @param sasl.oauthbearer.subClaimName The OAuth claim name for the subject. + ## + oauthbearer: + tokenEndpointUrl: "" + jwksEndpointUrl: "" + expectedAudience: "" + subClaimName: "sub" + ## Credentials for inter-broker communications. + ## @param sasl.interbroker.user Username for inter-broker communications when SASL is enabled + ## @param sasl.interbroker.password Password for inter-broker communications when SASL is enabled. If not set and SASL is enabled for the controller listener, a random password will be generated. + ## @param sasl.interbroker.clientId Client ID for inter-broker communications when SASL is enabled with mechanism OAUTHBEARER + ## @param sasl.interbroker.clientSecret Client Secret for inter-broker communications when SASL is enabled with mechanism OAUTHBEARER. If not set and SASL is enabled for the controller listener, a random secret will be generated. + ## + interbroker: + user: inter_broker_user + password: "" + clientId: inter_broker_client + clientSecret: "" + ## Credentials for controller communications. + ## @param sasl.controller.user Username for controller communications when SASL is enabled + ## @param sasl.controller.password Password for controller communications when SASL is enabled. If not set and SASL is enabled for the inter-broker listener, a random password will be generated. + ## @param sasl.controller.clientId Client ID for controller communications when SASL is enabled with mechanism OAUTHBEARER + ## @param sasl.controller.clientSecret Client Secret for controller communications when SASL is enabled with mechanism OAUTHBEARER. If not set and SASL is enabled for the inter-broker listener, a random secret will be generated. + ## + controller: + user: controller_user + password: "" + clientId: controller_broker_client + clientSecret: "" + ## Credentials for client communications. + ## @param sasl.client.users Comma-separated list of usernames for client communications when SASL is enabled + ## @param sasl.client.passwords Comma-separated list of passwords for client communications when SASL is enabled, must match the number of client.users + ## + client: + users: + - user1 + passwords: "" + ## Credentials for Zookeeper communications. + ## @param sasl.zookeeper.user Username for zookeeper communications when SASL is enabled. + ## @param sasl.zookeeper.password Password for zookeeper communications when SASL is enabled. + ## + zookeeper: + user: "" + password: "" + ## @param sasl.existingSecret Name of the existing secret containing credentials for clientUsers, interBrokerUser, controllerUser and zookeeperUser + ## Create this secret running the command below where SECRET_NAME is the name of the secret you want to create: + ## kubectl create secret generic SECRET_NAME --from-literal=client-passwords=CLIENT_PASSWORD1,CLIENT_PASSWORD2 --from-literal=inter-broker-password=INTER_BROKER_PASSWORD --from-literal=inter-broker-client-secret=INTER_BROKER_CLIENT_SECRET --from-literal=controller-password=CONTROLLER_PASSWORD --from-literal=controller-client-secret=CONTROLLER_CLIENT_SECRET --from-literal=zookeeper-password=ZOOKEEPER_PASSWORD + ## The client secrets are only required when using oauthbearer as sasl mechanism. + ## Client, interbroker and controller passwords are only required if the sasl mechanism includes something other than oauthbearer. + ## + existingSecret: "" + +## @section Kafka TLS parameters +## Kafka TLS settings, required if SSL or SASL_SSL listeners are configured +## +tls: + ## @param tls.type Format to use for TLS certificates. Allowed types: `JKS` and `PEM` + ## + type: JKS + ## @param tls.pemChainIncluded Flag to denote that the Certificate Authority (CA) certificates are bundled with the endpoint cert. + ## Certificates must be in proper order, where the top certificate is the leaf and the bottom certificate is the top-most intermediate CA. + ## + pemChainIncluded: false + ## @param tls.existingSecret Name of the existing secret containing the TLS certificates for the Kafka nodes. + ## When using 'jks' format for certificates, each secret should contain a truststore and a keystore. + ## Create these secrets following the steps below: + ## 1) Generate your truststore and keystore files. Helpful script: https://raw.githubusercontent.com/confluentinc/confluent-platform-security-tools/master/kafka-generate-ssl.sh + ## 2) Rename your truststore to `kafka.truststore.jks`. + ## 3) Rename your keystores to `kafka--X.keystore.jks` where X is the replica number of the . + ## 4) Run the command below one time per broker to create its associated secret (SECRET_NAME_X is the name of the secret you want to create): + ## kubectl create secret generic SECRET_NAME_0 --from-file=kafka.truststore.jks=./kafka.truststore.jks \ + ## --from-file=kafka-controller-0.keystore.jks=./kafka-controller-0.keystore.jks --from-file=kafka-broker-0.keystore.jks=./kafka-broker-0.keystore.jks ... + ## + ## NOTE: Alternatively, a single keystore can be provided for all nodes under the key 'kafka.keystore.jks', this keystore will be used by all nodes unless overridden by the 'kafka--X.keystore.jks' file + ## + ## When using 'pem' format for certificates, each secret should contain a public CA certificate, a public certificate and one private key. + ## Create these secrets following the steps below: + ## 1) Create a certificate key and signing request per Kafka broker, and sign the signing request with your CA + ## 2) Rename your CA file to `kafka.ca.crt`. + ## 3) Rename your certificates to `kafka-X.tls.crt` where X is the ID of each Kafka broker. + ## 3) Rename your keys to `kafka-X.tls.key` where X is the ID of each Kafka broker. + ## 4) Run the command below one time per broker to create its associated secret (SECRET_NAME_X is the name of the secret you want to create): + ## kubectl create secret generic SECRET_NAME_0 --from-file=kafka-ca.crt=./kafka-ca.crt --from-file=kafka-controller-0.crt=./kafka-controller-0.crt --from-file=kafka-controller-0.key=./kafka-controller-0.key \ + ## --from-file=kafka-broker-0.crt=./kafka-broker-0.crt --from-file=kafka-broker-0.key=./kafka-broker-0.key ... + ## + ## NOTE: Alternatively, a single key and certificate can be provided for all nodes under the keys 'kafka.crt' and 'kafka.key'. These certificates will be used by all nodes unless overridden by the 'kafka--X.key' and 'kafka--X.crt' files + ## NOTE: Alternatively, a single key and certificate can be provided for all nodes under the keys 'tls.crt' and 'tls.key'. These certificates will be used by all nodes unless overridden by the 'kafka--X.key' and 'kafka--X.crt' files + ## + existingSecret: "" + ## @param tls.autoGenerated Generate automatically self-signed TLS certificates for Kafka brokers. Currently only supported if `tls.type` is `PEM` + ## Note: ignored when using 'jks' format or `tls.existingSecret` is not empty + ## + autoGenerated: false + ## @param tls.passwordsSecret Name of the secret containing the password to access the JKS files or PEM key when they are password-protected. (`key`: `password`) + ## + passwordsSecret: "" + ## @param tls.passwordsSecretKeystoreKey The secret key from the tls.passwordsSecret containing the password for the Keystore. + ## + passwordsSecretKeystoreKey: keystore-password + ## @param tls.passwordsSecretTruststoreKey The secret key from the tls.passwordsSecret containing the password for the Truststore. + ## + passwordsSecretTruststoreKey: truststore-password + ## @param tls.passwordsSecretPemPasswordKey The secret key from the tls.passwordsSecret containing the password for the PEM key inside 'tls.passwordsSecret'. + ## + passwordsSecretPemPasswordKey: "" + ## @param tls.keystorePassword Password to access the JKS keystore when it is password-protected. Ignored when 'tls.passwordsSecret' is provided. + ## When using tls.type=PEM, the generated keystore will use this password or randomly generate one. + ## + keystorePassword: "" + ## @param tls.truststorePassword Password to access the JKS truststore when it is password-protected. Ignored when 'tls.passwordsSecret' is provided. + ## When using tls.type=PEM, the generated keystore will use this password or randomly generate one. + ## + truststorePassword: "" + ## @param tls.keyPassword Password to access the PEM key when it is password-protected. + ## Note: ignored when using 'tls.passwordsSecret' + ## + keyPassword: "" + ## @param tls.jksKeystoreKey The secret key from the `tls.existingSecret` containing the keystore + ## Note: ignored when using 'pem' format for certificates. + ## + jksKeystoreKey: "" + ## @param tls.jksTruststoreSecret Name of the existing secret containing your truststore if truststore not existing or different from the one in the `tls.existingSecret` + ## Note: ignored when using 'pem' format for certificates. + ## + jksTruststoreSecret: "" + ## @param tls.jksTruststoreKey The secret key from the `tls.existingSecret` or `tls.jksTruststoreSecret` containing the truststore + ## Note: ignored when using 'pem' format for certificates. + ## + jksTruststoreKey: "" + ## @param tls.endpointIdentificationAlgorithm The endpoint identification algorithm to validate server hostname using server certificate + ## Disable server host name verification by setting it to an empty string. + ## ref: https://docs.confluent.io/current/kafka/authentication_ssl.html#optional-settings + ## + endpointIdentificationAlgorithm: https + ## @param tls.sslClientAuth Sets the default value for the ssl.client.auth Kafka setting. + ## ref: https://docs.confluent.io/current/kafka/authentication_ssl.html#optional-settings + ## + sslClientAuth: "required" + ## Zookeeper TLS connection configuration for Kafka + ## + zookeeper: + ## @param tls.zookeeper.enabled Enable TLS for Zookeeper client connections. + ## + enabled: false + ## @param tls.zookeeper.verifyHostname Hostname validation. + ## + verifyHostname: true + ## @param tls.zookeeper.existingSecret Name of the existing secret containing the TLS certificates for ZooKeeper client communications. + ## + existingSecret: "" + ## @param tls.zookeeper.existingSecretKeystoreKey The secret key from the tls.zookeeper.existingSecret containing the Keystore. + ## + existingSecretKeystoreKey: zookeeper.keystore.jks + ## @param tls.zookeeper.existingSecretTruststoreKey The secret key from the tls.zookeeper.existingSecret containing the Truststore. + ## + existingSecretTruststoreKey: zookeeper.truststore.jks + ## @param tls.zookeeper.passwordsSecret Existing secret containing Keystore and Truststore passwords. + ## + passwordsSecret: "" + ## @param tls.zookeeper.passwordsSecretKeystoreKey The secret key from the tls.zookeeper.passwordsSecret containing the password for the Keystore. + ## If no keystore password is included in the passwords secret, set this value to an empty string. + ## + passwordsSecretKeystoreKey: keystore-password + ## @param tls.zookeeper.passwordsSecretTruststoreKey The secret key from the tls.zookeeper.passwordsSecret containing the password for the Truststore. + ## If no truststore password is included in the passwords secret, set this value to an empty string. + ## + passwordsSecretTruststoreKey: truststore-password + ## @param tls.zookeeper.keystorePassword Password to access the JKS keystore when it is password-protected. Ignored when 'tls.passwordsSecret' is provided. + ## When using tls.type=PEM, the generated keystore will use this password or randomly generate one. + ## + keystorePassword: "" + ## @param tls.zookeeper.truststorePassword Password to access the JKS truststore when it is password-protected. Ignored when 'tls.passwordsSecret' is provided. + ## When using tls.type=PEM, the generated keystore will use this password or randomly generate one. + ## + truststorePassword: "" + +## @param extraEnvVars Extra environment variables to add to Kafka pods +## ref: https://github.com/bitnami/containers/tree/main/bitnami/kafka#configuration +## e.g: +## extraEnvVars: +## - name: KAFKA_CFG_BACKGROUND_THREADS +## value: "10" +## +extraEnvVars: [] +## @param extraEnvVarsCM ConfigMap with extra environment variables +## +extraEnvVarsCM: "" +## @param extraEnvVarsSecret Secret with extra environment variables +## +extraEnvVarsSecret: "" +## @param extraVolumes Optionally specify extra list of additional volumes for the Kafka pod(s) +## e.g: +## extraVolumes: +## - name: kafka-jaas +## secret: +## secretName: kafka-jaas +## +extraVolumes: [] +## @param extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Kafka container(s) +## extraVolumeMounts: +## - name: kafka-jaas +## mountPath: /bitnami/kafka/config/kafka_jaas.conf +## subPath: kafka_jaas.conf +## +extraVolumeMounts: [] +## @param sidecars Add additional sidecar containers to the Kafka pod(s) +## e.g: +## sidecars: +## - name: your-image-name +## image: your-image +## imagePullPolicy: Always +## ports: +## - name: portname +## containerPort: 1234 +## +sidecars: [] +## @param initContainers Add additional Add init containers to the Kafka pod(s) +## e.g: +## initContainers: +## - name: your-image-name +## image: your-image +## imagePullPolicy: Always +## ports: +## - name: portname +## containerPort: 1234 +## +initContainers: [] + +## @section Controller-eligible statefulset parameters +## +controller: + ## @param controller.replicaCount Number of Kafka controller-eligible nodes + ## Ignore this section if running in Zookeeper mode. + ## + replicaCount: 3 + ## @param controller.controllerOnly If set to true, controller nodes will be deployed as dedicated controllers, instead of controller+broker processes. + ## + controllerOnly: false + ## @param controller.minId Minimal node.id values for controller-eligible nodes. Do not change after first initialization. + ## Broker-only id increment their ID starting at this minimal value. + ## We recommend setting this this value high enough, as IDs under this value will be used by controller-elegible nodes + ## + minId: 0 + ## @param controller.zookeeperMigrationMode Set to true to deploy cluster controller quorum + ## This allows configuring both kraft and zookeeper modes simultaneously in order to perform the migration of the Kafka metadata. + ## Ref. https://docs.confluent.io/platform/current/installation/migrate-zk-kraft.html + ## + zookeeperMigrationMode: false + ## @param controller.config Configuration file for Kafka controller-eligible nodes, rendered as a template. Auto-generated based on chart values when not specified. + ## @param controller.existingConfigmap ConfigMap with Kafka Configuration for controller-eligible nodes. + ## NOTE: This will override the configuration based on values, please act carefully + ## If both are set, the existingConfigMap will be used. + ## + config: "" + existingConfigmap: "" + ## @param controller.extraConfig Additional configuration to be appended at the end of the generated Kafka controller-eligible nodes configuration file. + ## + extraConfig: "" + ## @param controller.secretConfig Additional configuration to be appended at the end of the generated Kafka controller-eligible nodes configuration file. + ## This value will be stored in a secret. + ## + secretConfig: "" + ## @param controller.existingSecretConfig Secret with additonal configuration that will be appended to the end of the generated Kafka controller-eligible nodes configuration file + ## The key for the configuration should be: server-secret.properties + ## NOTE: This will override controller.secretConfig value + ## + existingSecretConfig: "" + ## @param controller.heapOpts Kafka Java Heap size for controller-eligible nodes + ## + heapOpts: -Xmx1024m -Xms1024m + ## @param controller.command Override Kafka container command + ## + command: [] + ## @param controller.args Override Kafka container arguments + ## + args: [] + ## @param controller.extraEnvVars Extra environment variables to add to Kafka pods + ## ref: https://github.com/bitnami/containers/tree/main/bitnami/kafka#configuration + ## e.g: + ## extraEnvVars: + ## - name: KAFKA_CFG_BACKGROUND_THREADS + ## value: "10" + ## + extraEnvVars: [] + ## @param controller.extraEnvVarsCM ConfigMap with extra environment variables + ## + extraEnvVarsCM: "" + ## @param controller.extraEnvVarsSecret Secret with extra environment variables + ## + extraEnvVarsSecret: "" + ## @param controller.extraContainerPorts Kafka controller-eligible extra containerPorts. + ## + extraContainerPorts: [] + ## Configure extra options for Kafka containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param controller.livenessProbe.enabled Enable livenessProbe on Kafka containers + ## @param controller.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param controller.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param controller.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param controller.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param controller.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + timeoutSeconds: 5 + failureThreshold: 3 + periodSeconds: 10 + successThreshold: 1 + ## @param controller.readinessProbe.enabled Enable readinessProbe on Kafka containers + ## @param controller.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param controller.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param controller.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param controller.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param controller.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 5 + failureThreshold: 6 + timeoutSeconds: 5 + periodSeconds: 10 + successThreshold: 1 + ## @param controller.startupProbe.enabled Enable startupProbe on Kafka containers + ## @param controller.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param controller.startupProbe.periodSeconds Period seconds for startupProbe + ## @param controller.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param controller.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param controller.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param controller.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param controller.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param controller.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param controller.lifecycleHooks lifecycleHooks for the Kafka container to automate configuration before or after startup + ## + lifecycleHooks: {} + ## Kafka init container resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param controller.initContainerResources.limits The resources limits for the init container + ## @param controller.initContainerResources.requests The requested resources for the init container + ## + initContainerResources: + limits: {} + requests: {} + ## Kafka resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param controller.resources.limits The resources limits for the container + ## @param controller.resources.requests The requested resources for the container + ## + resources: + limits: {} + requests: {} + ## Kafka pods' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param controller.podSecurityContext.enabled Enable security context for the pods + ## @param controller.podSecurityContext.fsGroup Set Kafka pod's Security Context fsGroup + ## @param controller.podSecurityContext.seccompProfile.type Set Kafka pods's Security Context seccomp profile + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + seccompProfile: + type: "RuntimeDefault" + ## Kafka containers' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param controller.containerSecurityContext.enabled Enable Kafka containers' Security Context + ## @param controller.containerSecurityContext.runAsUser Set Kafka containers' Security Context runAsUser + ## @param controller.containerSecurityContext.runAsNonRoot Set Kafka containers' Security Context runAsNonRoot + ## @param controller.containerSecurityContext.allowPrivilegeEscalation Force the child process to be run as non-privileged + ## @param controller.containerSecurityContext.readOnlyRootFilesystem Allows the pod to mount the RootFS as ReadOnly only + ## @param controller.containerSecurityContext.capabilities.drop Set Kafka containers' server Security Context capabilities to be dropped + ## e.g: + ## containerSecurityContext: + ## enabled: true + ## capabilities: + ## drop: ["NET_RAW"] + ## readOnlyRootFilesystem: true + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + capabilities: + drop: ["ALL"] + ## @param controller.hostAliases Kafka pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param controller.hostNetwork Specify if host network should be enabled for Kafka pods + ## + hostNetwork: false + ## @param controller.hostIPC Specify if host IPC should be enabled for Kafka pods + ## + hostIPC: false + ## @param controller.podLabels Extra labels for Kafka pods + ## Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param controller.podAnnotations Extra annotations for Kafka pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param controller.podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param controller.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param controller.nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param controller.nodeAffinityPreset.key Node label key to match Ignored if `affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param controller.nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param controller.affinity Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: podAffinityPreset, podAntiAffinityPreset, and nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param controller.nodeSelector Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param controller.tolerations Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param controller.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param controller.terminationGracePeriodSeconds Seconds the pod needs to gracefully terminate + ## ref: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#hook-handler-execution + ## + terminationGracePeriodSeconds: "" + ## @param controller.podManagementPolicy StatefulSet controller supports relax its ordering guarantees while preserving its uniqueness and identity guarantees. There are two valid pod management policies: OrderedReady and Parallel + ## ref: https://kubernetes.io/docs/tutorials/stateful-application/basic-stateful-set/#pod-management-policy + ## + podManagementPolicy: Parallel + ## @param controller.minReadySeconds How many seconds a pod needs to be ready before killing the next, during update + ## + minReadySeconds: 0 + ## @param controller.priorityClassName Name of the existing priority class to be used by kafka pods + ## Ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ + ## + priorityClassName: "" + ## @param controller.runtimeClassName Name of the runtime class to be used by pod(s) + ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/ + ## + runtimeClassName: "" + ## @param controller.enableServiceLinks Whether information about services should be injected into pod's environment variable + ## The environment variables injected by service links are not used, but can lead to slow kafka boot times or slow running of the scripts when there are many services in the current namespace. + ## If you experience slow pod startups or slow running of the scripts you probably want to set this to `false`. + ## + enableServiceLinks: true + ## @param controller.schedulerName Name of the k8s scheduler (other than default) + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param controller.updateStrategy.type Kafka statefulset strategy type + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + type: RollingUpdate + ## @param controller.extraVolumes Optionally specify extra list of additional volumes for the Kafka pod(s) + ## e.g: + ## extraVolumes: + ## - name: kafka-jaas + ## secret: + ## secretName: kafka-jaas + ## + extraVolumes: [] + ## @param controller.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Kafka container(s) + ## extraVolumeMounts: + ## - name: kafka-jaas + ## mountPath: /bitnami/kafka/config/kafka_jaas.conf + ## subPath: kafka_jaas.conf + ## + extraVolumeMounts: [] + ## @param controller.sidecars Add additional sidecar containers to the Kafka pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param controller.initContainers Add additional Add init containers to the Kafka pod(s) + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## Kafka Pod Disruption Budget + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/disruptions/ + ## @param controller.pdb.create Deploy a pdb object for the Kafka pod + ## @param controller.pdb.minAvailable Maximum number/percentage of unavailable Kafka replicas + ## @param controller.pdb.maxUnavailable Maximum number/percentage of unavailable Kafka replicas + ## + pdb: + create: false + minAvailable: "" + maxUnavailable: 1 + ## Enable persistence using Persistent Volume Claims + ## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/ + ## + persistence: + ## @param controller.persistence.enabled Enable Kafka data persistence using PVC, note that ZooKeeper persistence is unaffected + ## + enabled: true + ## @param controller.persistence.existingClaim A manually managed Persistent Volume and Claim + ## If defined, PVC must be created manually before volume will be bound + ## The value is evaluated as a template + ## + existingClaim: "" + ## @param controller.persistence.storageClass PVC Storage Class for Kafka data volume + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. + ## + storageClass: "" + ## @param controller.persistence.accessModes Persistent Volume Access Modes + ## + accessModes: + - ReadWriteOnce + ## @param controller.persistence.size PVC Storage Request for Kafka data volume + ## + size: 8Gi + ## @param controller.persistence.annotations Annotations for the PVC + ## + annotations: {} + ## @param controller.persistence.labels Labels for the PVC + ## + labels: {} + ## @param controller.persistence.selector Selector to match an existing Persistent Volume for Kafka data PVC. If set, the PVC can't have a PV dynamically provisioned for it + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + ## @param controller.persistence.mountPath Mount path of the Kafka data volume + ## + mountPath: /bitnami/kafka + ## Log Persistence parameters + ## + logPersistence: + ## @param controller.logPersistence.enabled Enable Kafka logs persistence using PVC, note that ZooKeeper persistence is unaffected + ## + enabled: false + ## @param controller.logPersistence.existingClaim A manually managed Persistent Volume and Claim + ## If defined, PVC must be created manually before volume will be bound + ## The value is evaluated as a template + ## + existingClaim: "" + ## @param controller.logPersistence.storageClass PVC Storage Class for Kafka logs volume + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. + ## + storageClass: "" + ## @param controller.logPersistence.accessModes Persistent Volume Access Modes + ## + accessModes: + - ReadWriteOnce + ## @param controller.logPersistence.size PVC Storage Request for Kafka logs volume + ## + size: 8Gi + ## @param controller.logPersistence.annotations Annotations for the PVC + ## + annotations: {} + ## @param controller.logPersistence.selector Selector to match an existing Persistent Volume for Kafka log data PVC. If set, the PVC can't have a PV dynamically provisioned for it + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + ## @param controller.logPersistence.mountPath Mount path of the Kafka logs volume + ## + mountPath: /opt/bitnami/kafka/logs + +## @section Broker-only statefulset parameters +## +broker: + ## @param broker.replicaCount Number of Kafka broker-only nodes + ## + replicaCount: 0 + ## @param broker.minId Minimal node.id values for broker-only nodes. Do not change after first initialization. + ## Broker-only id increment their ID starting at this minimal value. + ## We recommend setting this this value high enough, as IDs under this value will be used by controller-eligible nodes + ## + ## + minId: 100 + ## @param broker.zookeeperMigrationMode Set to true to deploy cluster controller quorum + ## This allows configuring both kraft and zookeeper modes simultaneously in order to perform the migration of the Kafka metadata. + ## Ref. https://docs.confluent.io/platform/current/installation/migrate-zk-kraft.html + ## + zookeeperMigrationMode: false + ## @param broker.config Configuration file for Kafka broker-only nodes, rendered as a template. Auto-generated based on chart values when not specified. + ## @param broker.existingConfigmap ConfigMap with Kafka Configuration for broker-only nodes. + ## NOTE: This will override the configuration based on values, please act carefully + ## If both are set, the existingConfigMap will be used. + ## + config: "" + existingConfigmap: "" + ## @param broker.extraConfig Additional configuration to be appended at the end of the generated Kafka broker-only nodes configuration file. + ## + extraConfig: "" + ## @param broker.secretConfig Additional configuration to be appended at the end of the generated Kafka broker-only nodes configuration file. + ## This value will be stored in a secret. + ## + secretConfig: "" + ## @param broker.existingSecretConfig Secret with additonal configuration that will be appended to the end of the generated Kafka broker-only nodes configuration file + ## The key for the configuration should be: server-secret.properties + ## NOTE: This will override broker.secretConfig value + ## + existingSecretConfig: "" + ## @param broker.heapOpts Kafka Java Heap size for broker-only nodes + ## + heapOpts: -Xmx1024m -Xms1024m + ## @param broker.command Override Kafka container command + ## + command: [] + ## @param broker.args Override Kafka container arguments + ## + args: [] + ## @param broker.extraEnvVars Extra environment variables to add to Kafka pods + ## ref: https://github.com/bitnami/containers/tree/main/bitnami/kafka#configuration + ## e.g: + ## extraEnvVars: + ## - name: KAFKA_CFG_BACKGROUND_THREADS + ## value: "10" + ## + extraEnvVars: [] + ## @param broker.extraEnvVarsCM ConfigMap with extra environment variables + ## + extraEnvVarsCM: "" + ## @param broker.extraEnvVarsSecret Secret with extra environment variables + ## + extraEnvVarsSecret: "" + ## @param broker.extraContainerPorts Kafka broker-only extra containerPorts. + ## + extraContainerPorts: [] + ## Configure extra options for Kafka containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param broker.livenessProbe.enabled Enable livenessProbe on Kafka containers + ## @param broker.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param broker.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param broker.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param broker.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param broker.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + timeoutSeconds: 5 + failureThreshold: 3 + periodSeconds: 10 + successThreshold: 1 + ## @param broker.readinessProbe.enabled Enable readinessProbe on Kafka containers + ## @param broker.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param broker.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param broker.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param broker.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param broker.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 5 + failureThreshold: 6 + timeoutSeconds: 5 + periodSeconds: 10 + successThreshold: 1 + ## @param broker.startupProbe.enabled Enable startupProbe on Kafka containers + ## @param broker.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param broker.startupProbe.periodSeconds Period seconds for startupProbe + ## @param broker.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param broker.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param broker.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param broker.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param broker.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param broker.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param broker.lifecycleHooks lifecycleHooks for the Kafka container to automate configuration before or after startup + ## + lifecycleHooks: {} + ## Kafka init container resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param broker.initContainerResources.limits The resources limits for the container + ## @param broker.initContainerResources.requests The requested resources for the container + ## + initContainerResources: + limits: {} + requests: {} + ## Kafka resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param broker.resources.limits The resources limits for the container + ## @param broker.resources.requests The requested resources for the container + ## + resources: + limits: {} + requests: {} + ## Kafka pods' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param broker.podSecurityContext.enabled Enable security context for the pods + ## @param broker.podSecurityContext.fsGroup Set Kafka pod's Security Context fsGroup + ## @param broker.podSecurityContext.seccompProfile.type Set Kafka pod's Security Context seccomp profile + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + seccompProfile: + type: "RuntimeDefault" + ## Kafka containers' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param broker.containerSecurityContext.enabled Enable Kafka containers' Security Context + ## @param broker.containerSecurityContext.runAsUser Set Kafka containers' Security Context runAsUser + ## @param broker.containerSecurityContext.runAsNonRoot Set Kafka containers' Security Context runAsNonRoot + ## @param broker.containerSecurityContext.allowPrivilegeEscalation Force the child process to be run as non-privileged + ## @param broker.containerSecurityContext.readOnlyRootFilesystem Allows the pod to mount the RootFS as ReadOnly only + ## @param broker.containerSecurityContext.capabilities.drop Set Kafka containers' server Security Context capabilities to be dropped + ## e.g: + ## containerSecurityContext: + ## enabled: true + ## capabilities: + ## drop: ["NET_RAW"] + ## readOnlyRootFilesystem: true + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + capabilities: + drop: ["ALL"] + ## @param broker.hostAliases Kafka pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param broker.hostNetwork Specify if host network should be enabled for Kafka pods + ## + hostNetwork: false + ## @param broker.hostIPC Specify if host IPC should be enabled for Kafka pods + ## + hostIPC: false + ## @param broker.podLabels Extra labels for Kafka pods + ## Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param broker.podAnnotations Extra annotations for Kafka pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param broker.podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param broker.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param broker.nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param broker.nodeAffinityPreset.key Node label key to match Ignored if `affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param broker.nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param broker.affinity Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: podAffinityPreset, podAntiAffinityPreset, and nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param broker.nodeSelector Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param broker.tolerations Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param broker.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param broker.terminationGracePeriodSeconds Seconds the pod needs to gracefully terminate + ## ref: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#hook-handler-execution + ## + terminationGracePeriodSeconds: "" + ## @param broker.podManagementPolicy StatefulSet controller supports relax its ordering guarantees while preserving its uniqueness and identity guarantees. There are two valid pod management policies: OrderedReady and Parallel + ## ref: https://kubernetes.io/docs/tutorials/stateful-application/basic-stateful-set/#pod-management-policy + ## + podManagementPolicy: Parallel + ## @param broker.minReadySeconds How many seconds a pod needs to be ready before killing the next, during update + ## + minReadySeconds: 0 + ## @param broker.priorityClassName Name of the existing priority class to be used by kafka pods + ## Ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ + ## + priorityClassName: "" + ## @param broker.runtimeClassName Name of the runtime class to be used by pod(s) + ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/ + ## + runtimeClassName: "" + ## @param broker.enableServiceLinks Whether information about services should be injected into pod's environment variable + ## The environment variables injected by service links are not used, but can lead to slow kafka boot times or slow running of the scripts when there are many services in the current namespace. + ## If you experience slow pod startups or slow running of the scripts you probably want to set this to `false`. + ## + enableServiceLinks: true + ## @param broker.schedulerName Name of the k8s scheduler (other than default) + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param broker.updateStrategy.type Kafka statefulset strategy type + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + type: RollingUpdate + ## @param broker.extraVolumes Optionally specify extra list of additional volumes for the Kafka pod(s) + ## e.g: + ## extraVolumes: + ## - name: kafka-jaas + ## secret: + ## secretName: kafka-jaas + ## + extraVolumes: [] + ## @param broker.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Kafka container(s) + ## extraVolumeMounts: + ## - name: kafka-jaas + ## mountPath: /bitnami/kafka/config/kafka_jaas.conf + ## subPath: kafka_jaas.conf + ## + extraVolumeMounts: [] + ## @param broker.sidecars Add additional sidecar containers to the Kafka pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param broker.initContainers Add additional Add init containers to the Kafka pod(s) + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## Kafka Pod Disruption Budget + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/disruptions/ + ## @param broker.pdb.create Deploy a pdb object for the Kafka pod + ## @param broker.pdb.minAvailable Maximum number/percentage of unavailable Kafka replicas + ## @param broker.pdb.maxUnavailable Maximum number/percentage of unavailable Kafka replicas + ## + pdb: + create: false + minAvailable: "" + maxUnavailable: 1 + ## Enable persistence using Persistent Volume Claims + ## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/ + ## + persistence: + ## @param broker.persistence.enabled Enable Kafka data persistence using PVC, note that ZooKeeper persistence is unaffected + ## + enabled: true + ## @param broker.persistence.existingClaim A manually managed Persistent Volume and Claim + ## If defined, PVC must be created manually before volume will be bound + ## The value is evaluated as a template + ## + existingClaim: "" + ## @param broker.persistence.storageClass PVC Storage Class for Kafka data volume + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. + ## + storageClass: "" + ## @param broker.persistence.accessModes Persistent Volume Access Modes + ## + accessModes: + - ReadWriteOnce + ## @param broker.persistence.size PVC Storage Request for Kafka data volume + ## + size: 8Gi + ## @param broker.persistence.annotations Annotations for the PVC + ## + annotations: {} + ## @param broker.persistence.labels Labels for the PVC + ## + labels: {} + ## @param broker.persistence.selector Selector to match an existing Persistent Volume for Kafka data PVC. If set, the PVC can't have a PV dynamically provisioned for it + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + ## @param broker.persistence.mountPath Mount path of the Kafka data volume + ## + mountPath: /bitnami/kafka + ## Log Persistence parameters + ## + logPersistence: + ## @param broker.logPersistence.enabled Enable Kafka logs persistence using PVC, note that ZooKeeper persistence is unaffected + ## + enabled: false + ## @param broker.logPersistence.existingClaim A manually managed Persistent Volume and Claim + ## If defined, PVC must be created manually before volume will be bound + ## The value is evaluated as a template + ## + existingClaim: "" + ## @param broker.logPersistence.storageClass PVC Storage Class for Kafka logs volume + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. + ## + storageClass: "" + ## @param broker.logPersistence.accessModes Persistent Volume Access Modes + ## + accessModes: + - ReadWriteOnce + ## @param broker.logPersistence.size PVC Storage Request for Kafka logs volume + ## + size: 8Gi + ## @param broker.logPersistence.annotations Annotations for the PVC + ## + annotations: {} + ## @param broker.logPersistence.selector Selector to match an existing Persistent Volume for Kafka log data PVC. If set, the PVC can't have a PV dynamically provisioned for it + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + ## @param broker.logPersistence.mountPath Mount path of the Kafka logs volume + ## + mountPath: /opt/bitnami/kafka/logs + + +## @section Traffic Exposure parameters +## + +## Service parameters +## +service: + ## @param service.type Kubernetes Service type + ## + type: ClusterIP + ## @param service.ports.client Kafka svc port for client connections + ## @param service.ports.controller Kafka svc port for controller connections. It is used if "kraft.enabled: true" + ## @param service.ports.interbroker Kafka svc port for inter-broker connections + ## @param service.ports.external Kafka svc port for external connections + ## + ports: + client: 9092 + controller: 9093 + interbroker: 9094 + external: 9095 + ## @param service.extraPorts Extra ports to expose in the Kafka service (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param service.nodePorts.client Node port for the Kafka client connections + ## @param service.nodePorts.external Node port for the Kafka external connections + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + client: "" + external: "" + ## @param service.sessionAffinity Control where client requests go, to the same pod or round-robin + ## Values: ClientIP or None + ## ref: https://kubernetes.io/docs/user-guide/services/ + ## + sessionAffinity: None + ## @param service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## @param service.clusterIP Kafka service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param service.loadBalancerIP Kafka service Load Balancer IP + ## ref: https://kubernetes.io/docs/user-guide/services/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param service.loadBalancerSourceRanges Kafka service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param service.externalTrafficPolicy Kafka service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param service.annotations Additional custom annotations for Kafka service + ## + annotations: {} + ## Headless service properties + ## + headless: + controller: + ## @param service.headless.controller.annotations Annotations for the controller-eligible headless service. + ## + annotations: {} + ## @param service.headless.controller.labels Labels for the controller-eligible headless service. + ## + labels: {} + broker: + ## @param service.headless.broker.annotations Annotations for the broker-only headless service. + ## + annotations: {} + ## @param service.headless.broker.labels Labels for the broker-only headless service. + ## + labels: {} +## External Access to Kafka brokers configuration +## +externalAccess: + ## @param externalAccess.enabled Enable Kubernetes external cluster access to Kafka brokers + ## + enabled: false + ## External IPs auto-discovery configuration + ## An init container is used to auto-detect LB IPs or node ports by querying the K8s API + ## Note: RBAC might be required + ## + autoDiscovery: + ## @param externalAccess.autoDiscovery.enabled Enable using an init container to auto-detect external IPs/ports by querying the K8s API + ## + enabled: false + ## Bitnami Kubectl image + ## ref: https://hub.docker.com/r/bitnami/kubectl/tags/ + ## @param externalAccess.autoDiscovery.image.registry [default: REGISTRY_NAME] Init container auto-discovery image registry + ## @param externalAccess.autoDiscovery.image.repository [default: REPOSITORY_NAME/kubectl] Init container auto-discovery image repository + ## @skip externalAccess.autoDiscovery.image.tag Init container auto-discovery image tag (immutable tags are recommended) + ## @param externalAccess.autoDiscovery.image.digest Kubectl image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param externalAccess.autoDiscovery.image.pullPolicy Init container auto-discovery image pull policy + ## @param externalAccess.autoDiscovery.image.pullSecrets Init container auto-discovery image pull secrets + ## + image: + registry: docker.io + repository: bitnami/kubectl + tag: 1.28.4-debian-11-r2 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets (secrets must be manually created in the namespace) + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Init Container resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param externalAccess.autoDiscovery.resources.limits The resources limits for the auto-discovery init container + ## @param externalAccess.autoDiscovery.resources.requests The requested resources for the auto-discovery init container + ## + resources: + limits: {} + requests: {} + ## Service settings + controller: + ## @param externalAccess.controller.forceExpose If set to true, force exposing controller-eligible nodes although they are configured as controller-only nodes + ## + forceExpose: false + ## Parameters to configure K8s service(s) used to externally access Kafka brokers + ## Note: A new service per broker will be created + ## + service: + ## @param externalAccess.controller.service.type Kubernetes Service type for external access. It can be NodePort, LoadBalancer or ClusterIP + ## + type: LoadBalancer + ## @param externalAccess.controller.service.ports.external Kafka port used for external access when service type is LoadBalancer + ## + ports: + external: 9094 + ## @param externalAccess.controller.service.loadBalancerIPs Array of load balancer IPs for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## loadBalancerIPs: + ## - X.X.X.X + ## - Y.Y.Y.Y + ## + loadBalancerIPs: [] + ## @param externalAccess.controller.service.loadBalancerNames Array of load balancer Names for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## loadBalancerNames: + ## - broker1.external.example.com + ## - broker2.external.example.com + ## + loadBalancerNames: [] + ## @param externalAccess.controller.service.loadBalancerAnnotations Array of load balancer annotations for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## loadBalancerAnnotations: + ## - external-dns.alpha.kubernetes.io/hostname: broker1.external.example.com. + ## - external-dns.alpha.kubernetes.io/hostname: broker2.external.example.com. + ## + loadBalancerAnnotations: [] + ## @param externalAccess.controller.service.loadBalancerSourceRanges Address(es) that are allowed when service is LoadBalancer + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param externalAccess.controller.service.nodePorts Array of node ports used for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## nodePorts: + ## - 30001 + ## - 30002 + ## + nodePorts: [] + ## @param externalAccess.controller.service.externalIPs Use distinct service host IPs to configure Kafka external listener when service type is NodePort. Length must be the same as replicaCount + ## e.g: + ## externalIPs: + ## - X.X.X.X + ## - Y.Y.Y.Y + ## + externalIPs: [] + ## @param externalAccess.controller.service.useHostIPs Use service host IPs to configure Kafka external listener when service type is NodePort + ## + useHostIPs: false + ## @param externalAccess.controller.service.usePodIPs using the MY_POD_IP address for external access. + ## + usePodIPs: false + ## @param externalAccess.controller.service.domain Domain or external ip used to configure Kafka external listener when service type is NodePort or ClusterIP + ## NodePort: If not specified, the container will try to get the kubernetes node external IP + ## ClusterIP: Must be specified, ingress IP or domain where tcp for external ports is configured + ## + domain: "" + ## @param externalAccess.controller.service.publishNotReadyAddresses Indicates that any agent which deals with endpoints for this Service should disregard any indications of ready/not-ready + ## ref: https://kubernetes.io/docs/reference/kubernetes-api/service-resources/service-v1/ + ## + publishNotReadyAddresses: false + ## @param externalAccess.controller.service.labels Service labels for external access + ## + labels: {} + ## @param externalAccess.controller.service.annotations Service annotations for external access + ## + annotations: {} + ## @param externalAccess.controller.service.extraPorts Extra ports to expose in the Kafka external service + ## + extraPorts: [] + broker: + ## Parameters to configure K8s service(s) used to externally access Kafka brokers + ## Note: A new service per broker will be created + ## + service: + ## @param externalAccess.broker.service.type Kubernetes Service type for external access. It can be NodePort, LoadBalancer or ClusterIP + ## + type: LoadBalancer + ## @param externalAccess.broker.service.ports.external Kafka port used for external access when service type is LoadBalancer + ## + ports: + external: 9094 + ## @param externalAccess.broker.service.loadBalancerIPs Array of load balancer IPs for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## loadBalancerIPs: + ## - X.X.X.X + ## - Y.Y.Y.Y + ## + loadBalancerIPs: [] + ## @param externalAccess.broker.service.loadBalancerNames Array of load balancer Names for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## loadBalancerNames: + ## - broker1.external.example.com + ## - broker2.external.example.com + ## + loadBalancerNames: [] + ## @param externalAccess.broker.service.loadBalancerAnnotations Array of load balancer annotations for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## loadBalancerAnnotations: + ## - external-dns.alpha.kubernetes.io/hostname: broker1.external.example.com. + ## - external-dns.alpha.kubernetes.io/hostname: broker2.external.example.com. + ## + loadBalancerAnnotations: [] + ## @param externalAccess.broker.service.loadBalancerSourceRanges Address(es) that are allowed when service is LoadBalancer + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param externalAccess.broker.service.nodePorts Array of node ports used for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## nodePorts: + ## - 30001 + ## - 30002 + ## + nodePorts: [] + ## @param externalAccess.broker.service.externalIPs Use distinct service host IPs to configure Kafka external listener when service type is NodePort. Length must be the same as replicaCount + ## e.g: + ## externalIPs: + ## - X.X.X.X + ## - Y.Y.Y.Y + ## + externalIPs: [] + ## @param externalAccess.broker.service.useHostIPs Use service host IPs to configure Kafka external listener when service type is NodePort + ## + useHostIPs: false + ## @param externalAccess.broker.service.usePodIPs using the MY_POD_IP address for external access. + ## + usePodIPs: false + ## @param externalAccess.broker.service.domain Domain or external ip used to configure Kafka external listener when service type is NodePort or ClusterIP + ## NodePort: If not specified, the container will try to get the kubernetes node external IP + ## ClusterIP: Must be specified, ingress IP or domain where tcp for external ports is configured + ## + domain: "" + ## @param externalAccess.broker.service.publishNotReadyAddresses Indicates that any agent which deals with endpoints for this Service should disregard any indications of ready/not-ready + ## ref: https://kubernetes.io/docs/reference/kubernetes-api/service-resources/service-v1/ + ## + publishNotReadyAddresses: false + ## @param externalAccess.broker.service.labels Service labels for external access + ## + labels: {} + ## @param externalAccess.broker.service.annotations Service annotations for external access + ## + annotations: {} + ## @param externalAccess.broker.service.extraPorts Extra ports to expose in the Kafka external service + ## + extraPorts: [] +## Network policies +## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/ +## +networkPolicy: + ## @param networkPolicy.enabled Specifies whether a NetworkPolicy should be created + ## + enabled: false + ## @param networkPolicy.allowExternal Don't require client label for connections + ## When set to false, only pods with the correct client label will have network access to the port Kafka is + ## listening on. When true, zookeeper accept connections from any source (with the correct destination port). + ## + allowExternal: true + ## @param networkPolicy.explicitNamespacesSelector A Kubernetes LabelSelector to explicitly select namespaces from which traffic could be allowed + ## If explicitNamespacesSelector is missing or set to {}, only client Pods that are in the networkPolicy's namespace + ## and that match other criteria, the ones that have the good label, can reach the kafka. + ## But sometimes, we want the kafka to be accessible to clients from other namespaces, in this case, we can use this + ## LabelSelector to select these namespaces, note that the networkPolicy's namespace should also be explicitly added. + ## + ## e.g: + ## explicitNamespacesSelector: + ## matchLabels: + ## role: frontend + ## matchExpressions: + ## - {key: role, operator: In, values: [frontend]} + ## + explicitNamespacesSelector: {} + ## @param networkPolicy.externalAccess.from customize the from section for External Access on tcp-external port + ## e.g: + ## - ipBlock: + ## cidr: 172.9.0.0/16 + ## except: + ## - 172.9.1.0/24 + ## + externalAccess: + from: [] + ## @param networkPolicy.egressRules.customRules [object] Custom network policy rule + ## + egressRules: + ## Additional custom egress rules + ## e.g: + ## customRules: + ## - to: + ## - namespaceSelector: + ## matchLabels: + ## label: example + ## + customRules: [] + +## @section Volume Permissions parameters +## + +## Init containers parameters: +## volumePermissions: Change the owner and group of the persistent volume(s) mountpoint(s) to 'runAsUser:fsGroup' on each node +## +volumePermissions: + ## @param volumePermissions.enabled Enable init container that changes the owner and group of the persistent volume + ## + enabled: false + ## @param volumePermissions.image.registry [default: REGISTRY_NAME] Init container volume-permissions image registry + ## @param volumePermissions.image.repository [default: REPOSITORY_NAME/os-shell] Init container volume-permissions image repository + ## @skip volumePermissions.image.tag Init container volume-permissions image tag (immutable tags are recommended) + ## @param volumePermissions.image.digest Init container volume-permissions image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param volumePermissions.image.pullPolicy Init container volume-permissions image pull policy + ## @param volumePermissions.image.pullSecrets Init container volume-permissions image pull secrets + ## + image: + registry: docker.io + repository: bitnami/os-shell + tag: 11-debian-11-r92 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## Example: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Init container resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param volumePermissions.resources.limits Init container volume-permissions resource limits + ## @param volumePermissions.resources.requests Init container volume-permissions resource requests + ## + resources: + limits: {} + requests: {} + ## Init container' Security Context + ## Note: the chown of the data folder is done to containerSecurityContext.runAsUser + ## and not the below volumePermissions.containerSecurityContext.runAsUser + ## @param volumePermissions.containerSecurityContext.runAsUser User ID for the init container + ## + containerSecurityContext: + runAsUser: 0 + +## @section Other Parameters +## + +## ServiceAccount for Kafka +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ +## +serviceAccount: + ## @param serviceAccount.create Enable creation of ServiceAccount for Kafka pods + ## + create: true + ## @param serviceAccount.name The name of the service account to use. If not set and `create` is `true`, a name is generated + ## If not set and create is true, a name is generated using the kafka.serviceAccountName template + ## + name: "" + ## @param serviceAccount.automountServiceAccountToken Allows auto mount of ServiceAccountToken on the serviceAccount created + ## Can be set to false if pods using this serviceAccount do not need to use K8s API + ## + automountServiceAccountToken: true + ## @param serviceAccount.annotations Additional custom annotations for the ServiceAccount + ## + annotations: {} +## Role Based Access Control +## ref: https://kubernetes.io/docs/admin/authorization/rbac/ +## +rbac: + ## @param rbac.create Whether to create & use RBAC resources or not + ## binding Kafka ServiceAccount to a role + ## that allows Kafka pods querying the K8s API + ## + create: false + +## @section Metrics parameters +## + +## Prometheus Exporters / Metrics +## +metrics: + ## Prometheus Kafka exporter: exposes complimentary metrics to JMX exporter + ## + kafka: + ## @param metrics.kafka.enabled Whether or not to create a standalone Kafka exporter to expose Kafka metrics + ## + enabled: false + ## Bitnami Kafka exporter image + ## ref: https://hub.docker.com/r/bitnami/kafka-exporter/tags/ + ## @param metrics.kafka.image.registry [default: REGISTRY_NAME] Kafka exporter image registry + ## @param metrics.kafka.image.repository [default: REPOSITORY_NAME/kafka-exporter] Kafka exporter image repository + ## @skip metrics.kafka.image.tag Kafka exporter image tag (immutable tags are recommended) + ## @param metrics.kafka.image.digest Kafka exporter image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param metrics.kafka.image.pullPolicy Kafka exporter image pull policy + ## @param metrics.kafka.image.pullSecrets Specify docker-registry secret names as an array + ## + image: + registry: docker.io + repository: bitnami/kafka-exporter + tag: 1.7.0-debian-11-r134 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets (secrets must be manually created in the namespace) + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + + ## @param metrics.kafka.certificatesSecret Name of the existing secret containing the optional certificate and key files + ## for Kafka exporter client authentication + ## + certificatesSecret: "" + ## @param metrics.kafka.tlsCert The secret key from the certificatesSecret if 'client-cert' key different from the default (cert-file) + ## + tlsCert: cert-file + ## @param metrics.kafka.tlsKey The secret key from the certificatesSecret if 'client-key' key different from the default (key-file) + ## + tlsKey: key-file + ## @param metrics.kafka.tlsCaSecret Name of the existing secret containing the optional ca certificate for Kafka exporter client authentication + ## + tlsCaSecret: "" + ## @param metrics.kafka.tlsCaCert The secret key from the certificatesSecret or tlsCaSecret if 'ca-cert' key different from the default (ca-file) + ## + tlsCaCert: ca-file + ## @param metrics.kafka.extraFlags Extra flags to be passed to Kafka exporter + ## e.g: + ## extraFlags: + ## tls.insecure-skip-tls-verify: "" + ## web.telemetry-path: "/metrics" + ## + extraFlags: {} + ## @param metrics.kafka.command Override Kafka exporter container command + ## + command: [] + ## @param metrics.kafka.args Override Kafka exporter container arguments + ## + args: [] + ## @param metrics.kafka.containerPorts.metrics Kafka exporter metrics container port + ## + containerPorts: + metrics: 9308 + ## Kafka exporter resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param metrics.kafka.resources.limits The resources limits for the container + ## @param metrics.kafka.resources.requests The requested resources for the container + ## + resources: + limits: {} + requests: {} + ## Kafka exporter pods' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param metrics.kafka.podSecurityContext.enabled Enable security context for the pods + ## @param metrics.kafka.podSecurityContext.fsGroup Set Kafka exporter pod's Security Context fsGroup + ## @param metrics.kafka.podSecurityContext.seccompProfile.type Set Kafka exporter pod's Security Context seccomp profile + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + seccompProfile: + type: "RuntimeDefault" + ## Kafka exporter containers' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param metrics.kafka.containerSecurityContext.enabled Enable Kafka exporter containers' Security Context + ## @param metrics.kafka.containerSecurityContext.runAsUser Set Kafka exporter containers' Security Context runAsUser + ## @param metrics.kafka.containerSecurityContext.runAsNonRoot Set Kafka exporter containers' Security Context runAsNonRoot + ## @param metrics.kafka.containerSecurityContext.allowPrivilegeEscalation Set Kafka exporter containers' Security Context allowPrivilegeEscalation + ## @param metrics.kafka.containerSecurityContext.readOnlyRootFilesystem Set Kafka exporter containers' Security Context readOnlyRootFilesystem + ## @param metrics.kafka.containerSecurityContext.capabilities.drop Set Kafka exporter containers' Security Context capabilities to be dropped + ## e.g: + ## containerSecurityContext: + ## enabled: true + ## capabilities: + ## drop: ["NET_RAW"] + ## readOnlyRootFilesystem: true + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + capabilities: + drop: ["ALL"] + ## @param metrics.kafka.hostAliases Kafka exporter pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param metrics.kafka.podLabels Extra labels for Kafka exporter pods + ## Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param metrics.kafka.podAnnotations Extra annotations for Kafka exporter pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param metrics.kafka.podAffinityPreset Pod affinity preset. Ignored if `metrics.kafka.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param metrics.kafka.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `metrics.kafka.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node metrics.kafka.affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param metrics.kafka.nodeAffinityPreset.type Node affinity preset type. Ignored if `metrics.kafka.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param metrics.kafka.nodeAffinityPreset.key Node label key to match Ignored if `metrics.kafka.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param metrics.kafka.nodeAffinityPreset.values Node label values to match. Ignored if `metrics.kafka.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param metrics.kafka.affinity Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: metrics.kafka.podAffinityPreset, metrics.kafka.podAntiAffinityPreset, and metrics.kafka.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param metrics.kafka.nodeSelector Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param metrics.kafka.tolerations Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param metrics.kafka.schedulerName Name of the k8s scheduler (other than default) for Kafka exporter + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param metrics.kafka.enableServiceLinks Whether information about services should be injected into pod's environment variable + ## The environment variables injected by service links are not used, but can lead to slow kafka boot times or slow running of the scripts when there are many services in the current namespace. + ## If you experience slow pod startups or slow running of the scripts you probably want to set this to `false`. + ## + enableServiceLinks: true + ## @param metrics.kafka.priorityClassName Kafka exporter pods' priorityClassName + ## + priorityClassName: "" + ## @param metrics.kafka.topologySpreadConstraints Topology Spread Constraints for pod assignment + ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## The value is evaluated as a template + ## + topologySpreadConstraints: [] + ## @param metrics.kafka.extraVolumes Optionally specify extra list of additional volumes for the Kafka exporter pod(s) + ## e.g: + ## extraVolumes: + ## - name: kafka-jaas + ## secret: + ## secretName: kafka-jaas + ## + extraVolumes: [] + ## @param metrics.kafka.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Kafka exporter container(s) + ## extraVolumeMounts: + ## - name: kafka-jaas + ## mountPath: /bitnami/kafka/config/kafka_jaas.conf + ## subPath: kafka_jaas.conf + ## + extraVolumeMounts: [] + ## @param metrics.kafka.sidecars Add additional sidecar containers to the Kafka exporter pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param metrics.kafka.initContainers Add init containers to the Kafka exporter pods + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## Kafka exporter service configuration + ## + service: + ## @param metrics.kafka.service.ports.metrics Kafka exporter metrics service port + ## + ports: + metrics: 9308 + ## @param metrics.kafka.service.clusterIP Static clusterIP or None for headless services + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#choosing-your-own-ip-address + ## + clusterIP: "" + ## @param metrics.kafka.service.sessionAffinity Control where client requests go, to the same pod or round-robin + ## Values: ClientIP or None + ## ref: https://kubernetes.io/docs/user-guide/services/ + ## + sessionAffinity: None + ## @param metrics.kafka.service.annotations [object] Annotations for the Kafka exporter service + ## + annotations: + prometheus.io/scrape: "true" + prometheus.io/port: "{{ .Values.metrics.kafka.service.ports.metrics }}" + prometheus.io/path: "/metrics" + ## Kafka exporter pods ServiceAccount + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ## + serviceAccount: + ## @param metrics.kafka.serviceAccount.create Enable creation of ServiceAccount for Kafka exporter pods + ## + create: true + ## @param metrics.kafka.serviceAccount.name The name of the service account to use. If not set and `create` is `true`, a name is generated + ## If not set and create is true, a name is generated using the kafka.metrics.kafka.serviceAccountName template + ## + name: "" + ## @param metrics.kafka.serviceAccount.automountServiceAccountToken Allows auto mount of ServiceAccountToken on the serviceAccount created + ## Can be set to false if pods using this serviceAccount do not need to use K8s API + ## + automountServiceAccountToken: true + ## Prometheus JMX exporter: exposes the majority of Kafka metrics + ## + jmx: + ## @param metrics.jmx.enabled Whether or not to expose JMX metrics to Prometheus + ## + enabled: false + ## @param metrics.jmx.kafkaJmxPort JMX port where the exporter will collect metrics, exposed in the Kafka container. + ## + kafkaJmxPort: 5555 + ## Bitnami JMX exporter image + ## ref: https://hub.docker.com/r/bitnami/jmx-exporter/tags/ + ## @param metrics.jmx.image.registry [default: REGISTRY_NAME] JMX exporter image registry + ## @param metrics.jmx.image.repository [default: REPOSITORY_NAME/jmx-exporter] JMX exporter image repository + ## @skip metrics.jmx.image.tag JMX exporter image tag (immutable tags are recommended) + ## @param metrics.jmx.image.digest JMX exporter image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param metrics.jmx.image.pullPolicy JMX exporter image pull policy + ## @param metrics.jmx.image.pullSecrets Specify docker-registry secret names as an array + ## + image: + registry: docker.io + repository: bitnami/jmx-exporter + tag: 0.20.0-debian-11-r1 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets (secrets must be manually created in the namespace) + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Prometheus JMX exporter containers' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param metrics.jmx.containerSecurityContext.enabled Enable Prometheus JMX exporter containers' Security Context + ## @param metrics.jmx.containerSecurityContext.runAsUser Set Prometheus JMX exporter containers' Security Context runAsUser + ## @param metrics.jmx.containerSecurityContext.runAsNonRoot Set Prometheus JMX exporter containers' Security Context runAsNonRoot + ## @param metrics.jmx.containerSecurityContext.allowPrivilegeEscalation Set Prometheus JMX exporter containers' Security Context allowPrivilegeEscalation + ## @param metrics.jmx.containerSecurityContext.readOnlyRootFilesystem Set Prometheus JMX exporter containers' Security Context readOnlyRootFilesystem + ## @param metrics.jmx.containerSecurityContext.capabilities.drop Set Prometheus JMX exporter containers' Security Context capabilities to be dropped + ## e.g: + ## containerSecurityContext: + ## enabled: true + ## capabilities: + ## drop: ["NET_RAW"] + ## readOnlyRootFilesystem: true + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + capabilities: + drop: ["ALL"] + ## @param metrics.jmx.containerPorts.metrics Prometheus JMX exporter metrics container port + ## + containerPorts: + metrics: 5556 + ## Prometheus JMX exporter resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param metrics.jmx.resources.limits The resources limits for the JMX exporter container + ## @param metrics.jmx.resources.requests The requested resources for the JMX exporter container + ## + resources: + limits: {} + requests: {} + ## Prometheus JMX exporter service configuration + ## + service: + ## @param metrics.jmx.service.ports.metrics Prometheus JMX exporter metrics service port + ## + ports: + metrics: 5556 + ## @param metrics.jmx.service.clusterIP Static clusterIP or None for headless services + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#choosing-your-own-ip-address + ## + clusterIP: "" + ## @param metrics.jmx.service.sessionAffinity Control where client requests go, to the same pod or round-robin + ## Values: ClientIP or None + ## ref: https://kubernetes.io/docs/user-guide/services/ + ## + sessionAffinity: None + ## @param metrics.jmx.service.annotations [object] Annotations for the Prometheus JMX exporter service + ## + annotations: + prometheus.io/scrape: "true" + prometheus.io/port: "{{ .Values.metrics.jmx.service.ports.metrics }}" + prometheus.io/path: "/" + ## @param metrics.jmx.whitelistObjectNames Allows setting which JMX objects you want to expose to via JMX stats to JMX exporter + ## Only whitelisted values will be exposed via JMX exporter. They must also be exposed via Rules. To expose all metrics + ## (warning its crazy excessive and they aren't formatted in a prometheus style) (1) `whitelistObjectNames: []` + ## (2) commented out above `overrideConfig`. + ## + whitelistObjectNames: + - kafka.controller:* + - kafka.server:* + - java.lang:* + - kafka.network:* + - kafka.log:* + ## @param metrics.jmx.config [string] Configuration file for JMX exporter + ## Specify content for jmx-kafka-prometheus.yml. Evaluated as a template + ## + ## Credits to the incubator/kafka chart for the JMX configuration. + ## https://github.com/helm/charts/tree/master/incubator/kafka + ## + config: |- + jmxUrl: service:jmx:rmi:///jndi/rmi://127.0.0.1:{{ .Values.metrics.jmx.kafkaJmxPort }}/jmxrmi + lowercaseOutputName: true + lowercaseOutputLabelNames: true + ssl: false + {{- if .Values.metrics.jmx.whitelistObjectNames }} + whitelistObjectNames: ["{{ join "\",\"" .Values.metrics.jmx.whitelistObjectNames }}"] + {{- end }} + ## @param metrics.jmx.existingConfigmap Name of existing ConfigMap with JMX exporter configuration + ## NOTE: This will override metrics.jmx.config + ## + existingConfigmap: "" + ## @param metrics.jmx.extraRules Add extra rules to JMX exporter configuration + ## e.g: + ## extraRules: |- + ## - pattern: kafka.server<>(connection-count) + ## name: kafka_server_socket_server_metrics_$3 + ## labels: + ## listener: $1 + ## + extraRules: "" + ## Prometheus Operator ServiceMonitor configuration + ## + serviceMonitor: + ## @param metrics.serviceMonitor.enabled if `true`, creates a Prometheus Operator ServiceMonitor (requires `metrics.kafka.enabled` or `metrics.jmx.enabled` to be `true`) + ## + enabled: false + ## @param metrics.serviceMonitor.namespace Namespace in which Prometheus is running + ## + namespace: "" + ## @param metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: "" + ## @param metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: "" + ## @param metrics.serviceMonitor.labels Additional labels that can be used so ServiceMonitor will be discovered by Prometheus + ## + labels: {} + ## @param metrics.serviceMonitor.selector Prometheus instance selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + selector: {} + ## @param metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## + relabelings: [] + ## @param metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## + metricRelabelings: [] + ## @param metrics.serviceMonitor.honorLabels Specify honorLabels parameter to add the scrape endpoint + ## + honorLabels: false + ## @param metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" + + prometheusRule: + ## @param metrics.prometheusRule.enabled if `true`, creates a Prometheus Operator PrometheusRule (requires `metrics.kafka.enabled` or `metrics.jmx.enabled` to be `true`) + ## + enabled: false + ## @param metrics.prometheusRule.namespace Namespace in which Prometheus is running + ## + namespace: "" + ## @param metrics.prometheusRule.labels Additional labels that can be used so PrometheusRule will be discovered by Prometheus + ## + labels: {} + ## @param metrics.prometheusRule.groups Prometheus Rule Groups for Kafka + ## + groups: [] + +## @section Kafka provisioning parameters +## + +## Kafka provisioning +## +provisioning: + ## @param provisioning.enabled Enable kafka provisioning Job + ## + enabled: false + ## @param provisioning.numPartitions Default number of partitions for topics when unspecified + ## + numPartitions: 1 + ## @param provisioning.replicationFactor Default replication factor for topics when unspecified + ## + replicationFactor: 1 + ## @param provisioning.topics Kafka topics to provision + ## - name: topic-name + ## partitions: 1 + ## replicationFactor: 1 + ## ## https://kafka.apache.org/documentation/#topicconfigs + ## config: + ## max.message.bytes: 64000 + ## flush.messages: 1 + ## + topics: [] + ## @param provisioning.nodeSelector Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param provisioning.tolerations Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param provisioning.extraProvisioningCommands Extra commands to run to provision cluster resources + ## - echo "Allow user to consume from any topic" + ## - >- + ## /opt/bitnami/kafka/bin/kafka-acls.sh + ## --bootstrap-server $KAFKA_SERVICE + ## --command-config $CLIENT_CONF + ## --add + ## --allow-principal User:user + ## --consumer --topic '*' + ## - "/opt/bitnami/kafka/bin/kafka-acls.sh + ## --bootstrap-server $KAFKA_SERVICE + ## --command-config $CLIENT_CONF + ## --list" + ## + extraProvisioningCommands: [] + ## @param provisioning.parallel Number of provisioning commands to run at the same time + ## + parallel: 1 + ## @param provisioning.preScript Extra bash script to run before topic provisioning. $CLIENT_CONF is path to properties file with most needed configurations + ## + preScript: "" + ## @param provisioning.postScript Extra bash script to run after topic provisioning. $CLIENT_CONF is path to properties file with most needed configurations + ## + postScript: "" + ## Auth Configuration for kafka provisioning Job + ## + auth: + ## TLS configuration for kafka provisioning Job + ## + tls: + ## @param provisioning.auth.tls.type Format to use for TLS certificates. Allowed types: `JKS` and `PEM`. + ## Note: ignored if auth.tls.client.protocol different from one of these values: "SSL" "SASL_SSL" + ## + type: jks + ## @param provisioning.auth.tls.certificatesSecret Existing secret containing the TLS certificates for the Kafka provisioning Job. + ## When using 'jks' format for certificates, the secret should contain a truststore and a keystore. + ## When using 'pem' format for certificates, the secret should contain one of the following: + ## 1. A public CA certificate, a public certificate and one private key. + ## 2. A truststore and a keystore in PEM format + ## If caCert is set, option 1 will be taken, otherwise option 2. + ## + certificatesSecret: "" + ## @param provisioning.auth.tls.cert The secret key from the certificatesSecret if 'cert' key different from the default (tls.crt) + ## + cert: tls.crt + ## @param provisioning.auth.tls.key The secret key from the certificatesSecret if 'key' key different from the default (tls.key) + ## + key: tls.key + ## @param provisioning.auth.tls.caCert The secret key from the certificatesSecret if 'caCert' key different from the default (ca.crt) + ## + caCert: ca.crt + ## @param provisioning.auth.tls.keystore The secret key from the certificatesSecret if 'keystore' key different from the default (keystore.jks) + ## + keystore: keystore.jks + ## @param provisioning.auth.tls.truststore The secret key from the certificatesSecret if 'truststore' key different from the default (truststore.jks) + ## + truststore: truststore.jks + ## @param provisioning.auth.tls.passwordsSecret Name of the secret containing passwords to access the JKS files or PEM key when they are password-protected. + ## It should contain two keys called "keystore-password" and "truststore-password", or "key-password" if using a password-protected PEM key. + ## + passwordsSecret: "" + ## @param provisioning.auth.tls.keyPasswordSecretKey The secret key from the passwordsSecret if 'keyPasswordSecretKey' key different from the default (key-password) + ## Note: must not be used if `passwordsSecret` is not defined. + ## + keyPasswordSecretKey: key-password + ## @param provisioning.auth.tls.keystorePasswordSecretKey The secret key from the passwordsSecret if 'keystorePasswordSecretKey' key different from the default (keystore-password) + ## Note: must not be used if `passwordsSecret` is not defined. + ## + keystorePasswordSecretKey: keystore-password + ## @param provisioning.auth.tls.truststorePasswordSecretKey The secret key from the passwordsSecret if 'truststorePasswordSecretKey' key different from the default (truststore-password) + ## Note: must not be used if `passwordsSecret` is not defined. + ## + truststorePasswordSecretKey: truststore-password + ## @param provisioning.auth.tls.keyPassword Password to access the password-protected PEM key if necessary. Ignored if 'passwordsSecret' is provided. + ## + keyPassword: "" + ## @param provisioning.auth.tls.keystorePassword Password to access the JKS keystore. Ignored if 'passwordsSecret' is provided. + ## + keystorePassword: "" + ## @param provisioning.auth.tls.truststorePassword Password to access the JKS truststore. Ignored if 'passwordsSecret' is provided. + ## + truststorePassword: "" + ## @param provisioning.command Override provisioning container command + ## + command: [] + ## @param provisioning.args Override provisioning container arguments + ## + args: [] + ## @param provisioning.extraEnvVars Extra environment variables to add to the provisioning pod + ## e.g: + ## extraEnvVars: + ## - name: KAFKA_CFG_BACKGROUND_THREADS + ## value: "10" + ## + extraEnvVars: [] + ## @param provisioning.extraEnvVarsCM ConfigMap with extra environment variables + ## + extraEnvVarsCM: "" + ## @param provisioning.extraEnvVarsSecret Secret with extra environment variables + ## + extraEnvVarsSecret: "" + ## @param provisioning.podAnnotations Extra annotations for Kafka provisioning pods + ## + podAnnotations: {} + ## @param provisioning.podLabels Extra labels for Kafka provisioning pods + ## Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## Kafka provisioning pods ServiceAccount + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ## + serviceAccount: + ## @param provisioning.serviceAccount.create Enable creation of ServiceAccount for Kafka provisioning pods + ## + create: false + ## @param provisioning.serviceAccount.name The name of the service account to use. If not set and `create` is `true`, a name is generated + ## If not set and create is true, a name is generated using the provisioning.serviceAccount.name template + ## + name: "" + ## @param provisioning.serviceAccount.automountServiceAccountToken Allows auto mount of ServiceAccountToken on the serviceAccount created + ## Can be set to false if pods using this serviceAccount do not need to use K8s API + ## + automountServiceAccountToken: true + ## Kafka provisioning resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param provisioning.resources.limits The resources limits for the Kafka provisioning container + ## @param provisioning.resources.requests The requested resources for the Kafka provisioning container + ## + resources: + limits: {} + requests: {} + ## Kafka provisioning pods' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param provisioning.podSecurityContext.enabled Enable security context for the pods + ## @param provisioning.podSecurityContext.fsGroup Set Kafka provisioning pod's Security Context fsGroup + ## @param provisioning.podSecurityContext.seccompProfile.type Set Kafka provisioning pod's Security Context seccomp profile + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + seccompProfile: + type: "RuntimeDefault" + ## Kafka provisioning containers' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param provisioning.containerSecurityContext.enabled Enable Kafka provisioning containers' Security Context + ## @param provisioning.containerSecurityContext.runAsUser Set Kafka provisioning containers' Security Context runAsUser + ## @param provisioning.containerSecurityContext.runAsNonRoot Set Kafka provisioning containers' Security Context runAsNonRoot + ## @param provisioning.containerSecurityContext.allowPrivilegeEscalation Set Kafka provisioning containers' Security Context allowPrivilegeEscalation + ## @param provisioning.containerSecurityContext.readOnlyRootFilesystem Set Kafka provisioning containers' Security Context readOnlyRootFilesystem + ## @param provisioning.containerSecurityContext.capabilities.drop Set Kafka provisioning containers' Security Context capabilities to be dropped + ## e.g: + ## containerSecurityContext: + ## enabled: true + ## capabilities: + ## drop: ["NET_RAW"] + ## readOnlyRootFilesystem: true + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + capabilities: + drop: ["ALL"] + ## @param provisioning.schedulerName Name of the k8s scheduler (other than default) for kafka provisioning + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param provisioning.enableServiceLinks Whether information about services should be injected into pod's environment variable + ## The environment variables injected by service links are not used, but can lead to slow kafka boot times or slow running of the scripts when there are many services in the current namespace. + ## If you experience slow pod startups or slow running of the scripts you probably want to set this to `false`. + ## + enableServiceLinks: true + ## @param provisioning.extraVolumes Optionally specify extra list of additional volumes for the Kafka provisioning pod(s) + ## e.g: + ## extraVolumes: + ## - name: kafka-jaas + ## secret: + ## secretName: kafka-jaas + ## + extraVolumes: [] + ## @param provisioning.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Kafka provisioning container(s) + ## extraVolumeMounts: + ## - name: kafka-jaas + ## mountPath: /bitnami/kafka/config/kafka_jaas.conf + ## subPath: kafka_jaas.conf + ## + extraVolumeMounts: [] + ## @param provisioning.sidecars Add additional sidecar containers to the Kafka provisioning pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param provisioning.initContainers Add additional Add init containers to the Kafka provisioning pod(s) + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param provisioning.waitForKafka If true use an init container to wait until kafka is ready before starting provisioning + ## + waitForKafka: true + +## @section KRaft chart parameters + +## KRaft configuration +## Kafka mode without Zookeeper. Kafka nodes can work as controllers in this mode. +## +kraft: + ## @param kraft.enabled Switch to enable or disable the KRaft mode for Kafka + ## + enabled: true + ## @param kraft.existingClusterIdSecret Name of the secret containing the cluster ID for the Kafka KRaft cluster. This is incompatible with the clusterId parameter. If both are set, the existingClusterIdSecret will be used + existingClusterIdSecret: "" + ## @param kraft.clusterId Kafka Kraft cluster ID. If not set, a random cluster ID will be generated the first time Kraft is initialized. + ## NOTE: Already initialized Kafka nodes will use cluster ID stored in their persisted storage. + ## If reusing existing PVCs or migrating from Zookeeper mode, make sure the cluster ID is set matching the stored cluster ID, otherwise new nodes will fail to join the cluster. + ## In case the cluster ID stored in the secret does not match the value stored in /bitnami/kafka/data/meta.properties, remove the secret and upgrade the chart setting the correct value. + ## + clusterId: "" + ## @param kraft.controllerQuorumVoters Override the Kafka controller quorum voters of the Kafka Kraft cluster. If not set, it will be automatically configured to use all controller-elegible nodes. + ## + controllerQuorumVoters: "" + +## @section ZooKeeper chart parameters +## +## @param zookeeperChrootPath Path which puts data under some path in the global ZooKeeper namespace +## ref: https://kafka.apache.org/documentation/#brokerconfigs_zookeeper.connect +## +zookeeperChrootPath: "" +## ZooKeeper chart configuration +## https://github.com/bitnami/charts/blob/main/bitnami/zookeeper/values.yaml +## +zookeeper: + ## @param zookeeper.enabled Switch to enable or disable the ZooKeeper helm chart. Must be false if you use KRaft mode. + ## + enabled: false + ## @param zookeeper.replicaCount Number of ZooKeeper nodes + ## + replicaCount: 1 + ## ZooKeeper authentication + ## + auth: + client: + ## @param zookeeper.auth.client.enabled Enable ZooKeeper auth + ## + enabled: false + ## @param zookeeper.auth.client.clientUser User that will use ZooKeeper client (zkCli.sh) to authenticate. Must exist in the serverUsers comma-separated list. + ## + clientUser: "" + ## @param zookeeper.auth.client.clientPassword Password that will use ZooKeeper client (zkCli.sh) to authenticate. Must exist in the serverPasswords comma-separated list. + ## + clientPassword: "" + ## @param zookeeper.auth.client.serverUsers Comma, semicolon or whitespace separated list of user to be created. Specify them as a string, for example: "user1,user2,admin" + ## + serverUsers: "" + ## @param zookeeper.auth.client.serverPasswords Comma, semicolon or whitespace separated list of passwords to assign to users when created. Specify them as a string, for example: "pass4user1, pass4user2, pass4admin" + ## + serverPasswords: "" + ## ZooKeeper Persistence parameters + ## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/ + ## @param zookeeper.persistence.enabled Enable persistence on ZooKeeper using PVC(s) + ## @param zookeeper.persistence.storageClass Persistent Volume storage class + ## @param zookeeper.persistence.accessModes Persistent Volume access modes + ## @param zookeeper.persistence.size Persistent Volume size + ## + persistence: + enabled: true + storageClass: "" + accessModes: + - ReadWriteOnce + size: 8Gi + +## External Zookeeper Configuration +## +externalZookeeper: + ## @param externalZookeeper.servers List of external zookeeper servers to use. Typically used in combination with 'zookeeperChrootPath'. Must be empty if you use KRaft mode. + ## + servers: [] + diff --git a/dev/kafka/ingressroute-tls.yml b/dev/kafka/ingressroute-tls.yml new file mode 100755 index 0000000..900f92c --- /dev/null +++ b/dev/kafka/ingressroute-tls.yml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: kafka-tls + namespace: kafka +spec: + entryPoints: + - websecure + routes: + - match: Host(`kafka-ui-prod.allarddcs.nl`) + kind: Rule + services: + - name: kafka-ui + port: 8080 + tls: + certResolver: letsencrypt diff --git a/dev/kafka/kafka-loadbalancer.yaml b/dev/kafka/kafka-loadbalancer.yaml new file mode 100755 index 0000000..e3535ac --- /dev/null +++ b/dev/kafka/kafka-loadbalancer.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: kafka-loadbalancer +spec: + ports: + - port: 9092 + name: kafka-port + protocol: TCP + selector: + app: kafka + type: LoadBalancer diff --git a/dev/kafka/kafka-nodeport.yaml b/dev/kafka/kafka-nodeport.yaml new file mode 100755 index 0000000..a8ec4d9 --- /dev/null +++ b/dev/kafka/kafka-nodeport.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: kafka-nodeport + labels: + app: kafka +spec: + ports: + - port: 9092 + selector: + app: kafka + type: NodePort diff --git a/dev/kafka/kafka-port-forward.sh b/dev/kafka/kafka-port-forward.sh new file mode 100755 index 0000000..962050f --- /dev/null +++ b/dev/kafka/kafka-port-forward.sh @@ -0,0 +1 @@ +kubectl port-forward svc/kafka-service 9092 diff --git a/dev/kafka/kafka-pv.yaml b/dev/kafka/kafka-pv.yaml new file mode 100755 index 0000000..dde3a40 --- /dev/null +++ b/dev/kafka/kafka-pv.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: kafka-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.28 + path: /mnt/nfs_share/kafka + readOnly: false + diff --git a/dev/kafka/kafka-pvc.yaml b/dev/kafka/kafka-pvc.yaml new file mode 100755 index 0000000..d7cac86 --- /dev/null +++ b/dev/kafka/kafka-pvc.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: kafka-pvc +spec: + storageClassName: "" + volumeName: kafka-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + + + + diff --git a/dev/kafka/kafka-ui-np.yaml b/dev/kafka/kafka-ui-np.yaml new file mode 100755 index 0000000..ba4ed11 --- /dev/null +++ b/dev/kafka/kafka-ui-np.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: Service +metadata: + name: kafka-ui + labels: + name: kafka-ui +spec: + type: NodePort + ports: + - port: 8080 + nodePort: 31890 + name: http + selector: + app: kafka-ui diff --git a/dev/kafka/kafka-ui.yaml b/dev/kafka/kafka-ui.yaml new file mode 100755 index 0000000..68341c1 --- /dev/null +++ b/dev/kafka/kafka-ui.yaml @@ -0,0 +1,26 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: kafka-ui + labels: + app: kafka-ui +spec: + replicas: 1 + selector: + matchLabels: + app: kafka-ui + template: + metadata: + labels: + app: kafka-ui + spec: + containers: + - name: kafka-ui + image: provectuslabs/kafka-ui + ports: + - containerPort: 8080 + env: + - name: KAFKA_CLUSTERS_0_NAME + value: "kafka-service" + - name: KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS + value: "kafka-service:9092" diff --git a/dev/kafka/kafka.yaml b/dev/kafka/kafka.yaml new file mode 100755 index 0000000..d43c6a6 --- /dev/null +++ b/dev/kafka/kafka.yaml @@ -0,0 +1,103 @@ +apiVersion: v1 +kind: Service +metadata: + name: kafka-service + labels: + app: kafka +spec: + ports: + - port: 9092 + selector: + app: kafka +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: kafka-deployment +spec: + replicas: 1 + selector: + matchLabels: + app: kafka + template: + metadata: + labels: + app: kafka + spec: + containers: + - name: kafka + image: ubuntu/kafka:edge + env: + - name: ZOOKEEPER_HOST + value: zookeeper-service + args: ["/etc/kafka/server.properties", "--override", "advertised.listeners=PLAINTEXT://kafka-service:9092"] + ports: + - containerPort: 9092 + name: kafka + protocol: TCP + volumeMounts: + - mountPath: /var/lib/kafka/data + name: kafka-data + subPath: kafka/data + volumes: + - name: kafka-data + persistentVolumeClaim: + claimName: kafka-pvc +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: kafka-ui + labels: + app: kafka-ui +spec: + replicas: 1 + selector: + matchLabels: + app: kafka-ui + template: + metadata: + labels: + app: kafka-ui + spec: + containers: + - name: kafka-ui + image: provectuslabs/kafka-ui + ports: + - containerPort: 8080 + env: + - name: KAFKA_CLUSTERS_0_NAME + value: "kafka-service" + - name: KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS + value: "kafka-service:9092" +--- +apiVersion: v1 +kind: Service +metadata: + name: kafka-ui + labels: + name: kafka-ui +spec: + type: NodePort + ports: + - port: 8080 + nodePort: 31890 + name: http + selector: + app: kafka-ui +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: kafka-ui-tls-allarddcs +spec: + entryPoints: + - websecure + routes: + - match: Host(`kafka-prod.allarddcs.nl`) + kind: Rule + services: + - name: kafka-ui + port: 8080 + tls: + certResolver: letsencrypt diff --git a/dev/kafka/kafka2.yaml b/dev/kafka/kafka2.yaml new file mode 100755 index 0000000..1e6f706 --- /dev/null +++ b/dev/kafka/kafka2.yaml @@ -0,0 +1,47 @@ +apiVersion: v1 +kind: Service +metadata: + labels: + app: kafka-broker + name: kafka-service + namespace: kafka +spec: + ports: + - port: 9092 + selector: + app: kafka-broker +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app: kafka-broker + name: kafka-broker + namespace: kafka +spec: + replicas: 1 + selector: + matchLabels: + app: kafka-broker + template: + metadata: + labels: + app: kafka-broker + spec: + hostname: kafka-broker + containers: + - env: + - name: KAFKA_BROKER_ID + value: "1" + - name: KAFKA_ZOOKEEPER_CONNECT + value: :2181 + - name: KAFKA_LISTENERS + value: PLAINTEXT://:9092 + - name: KAFKA_ADVERTISED_LISTENERS + value: PLAINTEXT://kafka-broker:9092 +# image: wurstmeister/kafka + image: ubuntu/kafka:edge + imagePullPolicy: IfNotPresent + name: kafka-broker + ports: + - containerPort: 9092 diff --git a/dev/kafka/patch-nodeport.sh b/dev/kafka/patch-nodeport.sh new file mode 100755 index 0000000..aa9d0af --- /dev/null +++ b/dev/kafka/patch-nodeport.sh @@ -0,0 +1 @@ +kubectl patch svc nodeport -p '{"spec":{"externalTrafficPolicy":"Cluster"}}' diff --git a/dev/kafka/readmessage.sh b/dev/kafka/readmessage.sh new file mode 100755 index 0000000..3f06a41 --- /dev/null +++ b/dev/kafka/readmessage.sh @@ -0,0 +1,3 @@ +#!/bin/bash +kcat -q -C -b 192.168.40.83 -t $1 +exit diff --git a/dev/kafka/zookeeper.yaml b/dev/kafka/zookeeper.yaml new file mode 100755 index 0000000..0c141e9 --- /dev/null +++ b/dev/kafka/zookeeper.yaml @@ -0,0 +1,33 @@ +apiVersion: v1 +kind: Service +metadata: + name: zookeeper-service + labels: + app: zookeeper +spec: + ports: + - port: 2181 + selector: + app: zookeeper +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: zookeeper-deployment +spec: + replicas: 1 + selector: + matchLabels: + app: zookeeper + template: + metadata: + labels: + app: zookeeper + spec: + containers: + - name: zookeeper + image: ubuntu/zookeeper:edge + ports: + - containerPort: 2181 + name: zookeeper + protocol: TCP diff --git a/dev/kafka/zookeeper2.yaml b/dev/kafka/zookeeper2.yaml new file mode 100755 index 0000000..0170af7 --- /dev/null +++ b/dev/kafka/zookeeper2.yaml @@ -0,0 +1,41 @@ +apiVersion: v1 +kind: Service +metadata: + labels: + app: zookeeper-service + name: zookeeper-service + namespace: kafka +spec: + type: NodePort + ports: + - name: zookeeper-port + port: 2181 + nodePort: 30181 + targetPort: 2181 + selector: + app: zookeeper +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app: zookeeper + name: zookeeper + namespace: kafka +spec: + replicas: 1 + selector: + matchLabels: + app: zookeeper + template: + metadata: + labels: + app: zookeeper + spec: + containers: +# - image: wurstmeister/zookeeper + - image: ubuntu/zookeeper:edge + imagePullPolicy: IfNotPresent + name: zookeeper + ports: + - containerPort: 2181 diff --git a/dev/kubernetes/README.md b/dev/kubernetes/README.md new file mode 100755 index 0000000..ba0ab84 --- /dev/null +++ b/dev/kubernetes/README.md @@ -0,0 +1,17 @@ +3) microk8s enable dashboard +2) creer account: kubectl apply -f ServiceAccount.yaml +3) creeer clusterrolebinding: kubectl aply -f ClusterRoleBinding.yaml +4) creeer ingressroute: kubectl apply -f Ingressroute-tls.yaml +5) genereer token: +kubectl -n kube-system create token admin-user --duration=8544h + +Herinstallatie: + +na herinstallatie moet je de config opnieuw kopieren anders klopt het certificaat niet meer: + +sudo cp -i /var/snap/microk8s/current/credentials/client.config ${HOME}/.kube/config + +sudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/config + + + diff --git a/dev/kubernetes/TIPS.md b/dev/kubernetes/TIPS.md new file mode 100755 index 0000000..60c6e00 --- /dev/null +++ b/dev/kubernetes/TIPS.md @@ -0,0 +1,38 @@ +#Als een pvc in de status "terminating" blijft hangen kan het volgende commando +#helpen: + +kubectl patch pvc {PVC_NAME} -p '{"metadata":{"finalizers":null}}' + +#Switchen van context: + +kubectl config set-context --current --namespace=tektontutorial + +#Als je bij uitvoeren van kubectl "connection refused " krijgt +#kunnen de volgende commando's helpen: + +sudo microk8s.refresh-certs --cert ca.crt +sudo microk8s.refresh-certs --cert server.crt + +aanpassen clusternaam: + +nano /var/snap/micrk8s/current/credentials/client.config + +Daarna certificaten opnieuw genereren: + +sudo microk8s.refresh-certs --cert ca.crt +sudo microk8s.refresh-certs --cert server.crt + +kubectl configuratie opnieuw genereren: + +microk8s.kubectl config view --raw > $HOME/.kube/config + +#metallb speaker permission errors + +sudo nano /etc/apparmor.d/cri-containerd.apparmor.d +network, +sudo apparmor_parser -r /etc/apparmor.d/cri-containerd.apparmor.d + +#volle schijf: + +sudo microk8s ctr images list -q | xargs -r sudo microk8s ctr images rm + diff --git a/dev/kubernetes/catalog-info.yaml b/dev/kubernetes/catalog-info.yaml new file mode 100644 index 0000000..508ddb8 --- /dev/null +++ b/dev/kubernetes/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-kubernetes + title: Kubernetes (dev) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/dev/kubernetes/cluster-issuer.yaml b/dev/kubernetes/cluster-issuer.yaml new file mode 100755 index 0000000..4d2d314 --- /dev/null +++ b/dev/kubernetes/cluster-issuer.yaml @@ -0,0 +1,14 @@ +apiVersion: cert-manager.io/v1 +kind: ClusterIssuer +metadata: + name: letsencrypt +spec: + acme: + email: admin@allarddcs.nl + server: https://acme-v02.api.letsencrypt.org/directory + privateKeySecretRef: + name: letsencrypt-account-key + solvers: + - http01: + ingress: + class: traefik diff --git a/dev/kubernetes/clusterrolebinding.yaml b/dev/kubernetes/clusterrolebinding.yaml new file mode 100755 index 0000000..faa8927 --- /dev/null +++ b/dev/kubernetes/clusterrolebinding.yaml @@ -0,0 +1,12 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: admin-user +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: cluster-admin +subjects: +- kind: ServiceAccount + name: admin-user + namespace: kube-system diff --git a/dev/kubernetes/create-token.sh b/dev/kubernetes/create-token.sh new file mode 100755 index 0000000..95a7f2d --- /dev/null +++ b/dev/kubernetes/create-token.sh @@ -0,0 +1 @@ +microk8s kubectl -n kube-system create token admin-user --duration=8544h diff --git a/dev/kubernetes/ingressroute-dashboard.yaml b/dev/kubernetes/ingressroute-dashboard.yaml new file mode 100755 index 0000000..883d7cc --- /dev/null +++ b/dev/kubernetes/ingressroute-dashboard.yaml @@ -0,0 +1,30 @@ +apiVersion: traefik.io/v1alpha1 +kind: ServersTransport +metadata: + name: kubernetes-dashboard-transport + namespace: kube-system + +spec: + serverName: kubernetes-dashboard + insecureSkipVerify: true +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: kubernetes-dashboard-tls + namespace: kube-system +spec: + entryPoints: # [1] + - websecure + routes: # [2] + - kind: Rule + match: Host(`kubernetes-dev.allarddcs.nl`) # [3] + priority: 10 # [4] + services: # [8] + - kind: Service + name: kubernetes-dashboard + namespace: kube-system + port: 443 # [9] + serversTransport: kubernetes-dashboard-transport + tls: # [11] + certResolver: letsencrypt diff --git a/dev/kubernetes/ingressroute-tls-dev.yaml b/dev/kubernetes/ingressroute-tls-dev.yaml new file mode 100755 index 0000000..12b7a0f --- /dev/null +++ b/dev/kubernetes/ingressroute-tls-dev.yaml @@ -0,0 +1,30 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: ServersTransport +metadata: + name: kubernetes-dashboard-transport + namespace: kube-system + +spec: + serverName: kubernetes-dashboard + insecureSkipVerify: true +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: kubernetes-dashboard-tls + namespace: kube-system +spec: + entryPoints: # [1] + - websecure + routes: # [2] + - kind: Rule + match: Host(`kubernetes-dev.allarddcs.nl`) # [3] + priority: 10 # [4] + services: # [8] + - kind: Service + name: kubernetes-dashboard + namespace: kube-system + port: 443 # [9] + serversTransport: kubernetes-dashboard-transport + tls: # [11] + certResolver: letsencrypt diff --git a/dev/kubernetes/serviceaccount.yaml b/dev/kubernetes/serviceaccount.yaml new file mode 100755 index 0000000..27b6bb8 --- /dev/null +++ b/dev/kubernetes/serviceaccount.yaml @@ -0,0 +1,5 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: admin-user + namespace: kube-system diff --git a/dev/mariadb/catalog-info.yaml b/dev/mariadb/catalog-info.yaml new file mode 100644 index 0000000..5658615 --- /dev/null +++ b/dev/mariadb/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-mariadb + title: Mariadb (dev) + description: Mariadb instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=mariadb" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/mariadb + title: mariadb-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/mariadb/create-secret.sh b/dev/mariadb/create-secret.sh new file mode 100755 index 0000000..0d6356e --- /dev/null +++ b/dev/mariadb/create-secret.sh @@ -0,0 +1 @@ +microk8s kubectl create secret generic mariadb-secret --from-file=username=./username.txt --from-file=password=./password.txt diff --git a/dev/mariadb/login.sh b/dev/mariadb/login.sh new file mode 100755 index 0000000..c79c168 --- /dev/null +++ b/dev/mariadb/login.sh @@ -0,0 +1 @@ +microk8s kubectl exec -it mariadb-sts-0 -- mariadb -uroot -psecret -n databases diff --git a/dev/mariadb/mariadb-dev.yaml b/dev/mariadb/mariadb-dev.yaml new file mode 100755 index 0000000..b48d9c9 --- /dev/null +++ b/dev/mariadb/mariadb-dev.yaml @@ -0,0 +1,81 @@ +apiVersion: v1 +kind: Service +metadata: + name: mariadb + namespace: mariadb + labels: + app: mariadb +spec: + ports: + - port: 3306 + name: mariadb-port + clusterIP: None + selector: + app: mariadb +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: mariadb-sts + namespace: mariadb +spec: + serviceName: "mariadb" + replicas: 1 + selector: + matchLabels: + app: mariadb + template: + metadata: + labels: + app: mariadb + spec: + containers: + - name: mariadb + image: mariadb:10.11.4 + ports: + - containerPort: 3306 + name: mariadb-port + env: + - name: MARIADB_ROOT_PASSWORD + value: "jamesbrown" + - name: innodb_force_recovery + value: "1" + volumeMounts: + - name: datadir + mountPath: /var/lib/mysql/ + volumes: + - name: datadir + persistentVolumeClaim: + claimName: mariadb-pvc +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: mariadb-pv + labels: + type: local +spec: + storageClassName: "" + capacity: + storage: 4Gi + accessModes: + - ReadWriteMany + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/mariadb/dev/ + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: mariadb-pvc + namespace: mariadb +spec: + storageClassName: "" + volumeName: mariadb-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 4Gi diff --git a/dev/mariadb/password.txt b/dev/mariadb/password.txt new file mode 100755 index 0000000..536aca3 --- /dev/null +++ b/dev/mariadb/password.txt @@ -0,0 +1 @@ +secret \ No newline at end of file diff --git a/dev/mariadb/username.txt b/dev/mariadb/username.txt new file mode 100755 index 0000000..93ca142 --- /dev/null +++ b/dev/mariadb/username.txt @@ -0,0 +1 @@ +root \ No newline at end of file diff --git a/dev/nexus/README.md b/dev/nexus/README.md new file mode 100755 index 0000000..fc7c4b1 --- /dev/null +++ b/dev/nexus/README.md @@ -0,0 +1,113 @@ +user: admin +password: Nexus01@ + +#installatie + +postgres14 starten als dat nog niet is gebeurd + +ingressrouteTCP-route aanmaken voor registry + +ingressroutes HTTP en TLS aanmaken voor nexus (nodig voor compileren met maven) + +kubectl apply -f nexus.yaml + +i.v.m. permissions (zie logfile) indien nodig op sudo chmod +R /mnt/nfs_share/nexus uitvoeren +admin password staat in data-dir op de nfs-share + +#Repository-routes configureren: + +In nexus kun je een repository definieren van het type "Docker". + +Die geef je dan een eigen poortnummer. + +Bij TLS-interrupt door Traefik gewoon http-poort 5000 (https kun je leeglaten) +Bij TLS-interrupt door Nexus moet je een https-poort gebruiken (bijv 8444) + +#SSL TLS Interrupt voor UI: + +gewoon een ingressroute-HTTP en ingressroute-tls aanmaken voor nexus-dev.allarddcs.nl + +#SSL TLS Interrupt voor Registry: +TLS-interrupt kun je het best door traefik laten doen. +Dit heeft de voorkeur want dan heb je een trusted certificaat en hoefje geen "insecure registry" te configurenren in docker-config. + +#TLS-INTERRUPT DOOR TRAEFIK: +De ingressrouteTCP naar de docker registry ziet er dan alsvolgt uit: + +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: registry-tcp + namespace: nexus +spec: + entryPoints: + - websecure # Traefik HTTPS entrypoint + routes: + - match: HostSNI(`registry-dev.allarddcs.nl`) + services: + - name: nexus + port: 5000 # Nexus HTTP port for Docker registry + tls: + certResolver: letsencrypt # Traefik uses this certificate + +Dit is dus een bijzondere combinatie van IngressrouteTCP en toch TLS-interrupt. +Vanaf traefik gaat het verkeer dan naar de http-poort van je docker registry. + +Daarnaast heb ik ook een ingressroute-http aangemaakt : + +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: registry-http + namespace: nexus +spec: + entryPoints: + - web + routes: + - match: Host(`registry-dev.allarddcs.nl`) + kind: Rule + services: + - name: nexus + port: 8081 + +Deze gaat dus naar de web-kant voor de ACME-challenge van Letsencrypt. + +#TLS-INTERRUPT DOOR NEXUS: + +Deze optie heeft het nadeel dat je dan bij inloggen met docker de melding krijgt dat het certificaat +self-signed is. Dan moet je insecure registry opvoeren in docker-config. + + +Met keytool een certificaat aanmaken. +Certificaat zet je dan op nfs-share op data-dir/etc/ssl/keystore.jks + + +Deze poort moet je ook als ingressrouteTCP ontsluiten met TLS passthrough (want nexus doet TLS-interrupt) +maar dan uiteraard wel op de domeinnaam "registry-dev.allarddcs.nl". +Deze tweede route heeft hetzelfde "entrypoint" als de GUI, namelijk "websecure" + +nexus-properties: + +nexus-args=${jetty.etc}/jetty.xml,${jetty.etc}/jetty-http.xml,${jetty.etc}/jetty-https.xml,${jetty.etc}/jetty-requestlog.xml +application-port-ssl=8443 +ssl-keystore=/nexus-data/etc/ssl/keystore.jks +ssl-keystore-password=password +ssl-keystore-type=JKS +jetty.sslContext.keyStorePath=/opt/sonatype/sonatype-work/nexus3/etc/ssl/keystore.jks +jetty.sslContext.keyStorePassword=password +jetty.sslContext.keyManagerPassword=password +jetty.sslContext.trustStoreType=JKS + +#vervelende foutmeldingen in log voorkomen. + +Om java in een container te kunnen runnen probeert nexus blijkbaar een .java directory aan te maken in /opt/sonatype/nexus. +Maar use nexus mag dat niet. +Vandaar dat er een emptydir gemount wordt: + volumeMounts: + - name: java-prefs + mountPath: /opt/sonatype/nexus/.java + volumes: + - name: java-prefs + emptyDir: {} + +Die emptydir verdwijnt weer als je de container stopt. diff --git a/dev/nexus/catalog-info.yaml b/dev/nexus/catalog-info.yaml new file mode 100644 index 0000000..f51ce82 --- /dev/null +++ b/dev/nexus/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-nexus + title: Nexus (dev) + description: Nexus instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=nexus" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/nexus + title: nexus-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/nexus/ingressroute-nexus-http.yaml b/dev/nexus/ingressroute-nexus-http.yaml new file mode 100644 index 0000000..251d1df --- /dev/null +++ b/dev/nexus/ingressroute-nexus-http.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nexus-http + namespace: nexus +spec: + entryPoints: + - web + routes: + - match: Host(`nexus-dev.allarddcs.nl`) + kind: Rule + services: + - name: nexus + port: 8081 diff --git a/dev/nexus/ingressroute-nexus-tls.yaml b/dev/nexus/ingressroute-nexus-tls.yaml new file mode 100755 index 0000000..96b9081 --- /dev/null +++ b/dev/nexus/ingressroute-nexus-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nexus-tls + namespace: nexus +spec: + entryPoints: + - websecure + routes: + - match: Host(`nexus-dev.allarddcs.nl`) + kind: Rule + services: + - name: nexus + port: 8081 + tls: + certResolver: letsencrypt diff --git a/dev/nexus/ingressroute-registry-http.yaml b/dev/nexus/ingressroute-registry-http.yaml new file mode 100644 index 0000000..554b4ee --- /dev/null +++ b/dev/nexus/ingressroute-registry-http.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: registry-http + namespace: nexus +spec: + entryPoints: + - web + routes: + - match: Host(`registry-dev.allarddcs.nl`) + kind: Rule + services: + - name: nexus + port: 8081 diff --git a/dev/nexus/ingressroute-registry-tls.yaml b/dev/nexus/ingressroute-registry-tls.yaml new file mode 100755 index 0000000..4677051 --- /dev/null +++ b/dev/nexus/ingressroute-registry-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: registry-tls + namespace: nexus +spec: + entryPoints: + - websecure + routes: + - match: Host(`registry-dev.allarddcs.nl`) + kind: Rule + services: + - name: nexus + port: 5000 + tls: + certResolver: letsencrypt diff --git a/dev/nexus/ingressrouteTCP-nexus-tls.yaml b/dev/nexus/ingressrouteTCP-nexus-tls.yaml new file mode 100755 index 0000000..1b04da1 --- /dev/null +++ b/dev/nexus/ingressrouteTCP-nexus-tls.yaml @@ -0,0 +1,15 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: nexus-tcp-tls + namespace: nexus +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`nexus-dev.allarddcs.nl`) + services: + - name: nexus + port: 8443 + tls: + passthrough: true diff --git a/dev/nexus/ingressrouteTCP-registry-tls.yaml b/dev/nexus/ingressrouteTCP-registry-tls.yaml new file mode 100644 index 0000000..2550c4c --- /dev/null +++ b/dev/nexus/ingressrouteTCP-registry-tls.yaml @@ -0,0 +1,15 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: registry-tcp + namespace: nexus +spec: + entryPoints: + - websecure # Traefik HTTPS entrypoint + routes: + - match: HostSNI(`registry-dev.allarddcs.nl`) + services: + - name: nexus + port: 5000 # Nexus HTTP port for Docker registry + tls: + certResolver: letsencrypt # Traefik uses this certificate diff --git a/dev/nexus/ingressrouteTCP2-registry-tls.yaml b/dev/nexus/ingressrouteTCP2-registry-tls.yaml new file mode 100644 index 0000000..8877a2f --- /dev/null +++ b/dev/nexus/ingressrouteTCP2-registry-tls.yaml @@ -0,0 +1,17 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: docker-registry + namespace: nexus +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`registry-dev.allarddcs.nl`) + services: + - name: nexus + port: 5000 # Nexus Docker HTTPS port + tls: + certResolver: letsencrypt + domains: + - main: registry-dev.allarddcs.nl diff --git a/dev/nexus/keytool/README.md b/dev/nexus/keytool/README.md new file mode 100644 index 0000000..986c3b3 --- /dev/null +++ b/dev/nexus/keytool/README.md @@ -0,0 +1,10 @@ +keytool -genkeypair -keystore keystore.jks -storepass password -alias allarddcs.nl \ +-keyalg RSA -keysize 2048 -validity 5000 -keypass password \ +-dname 'CN=*.allarddcs.nl, OU=Sonatype, O=Sonatype, L=Unspecified, ST=Unspecified, C=US' \ +-ext 'SAN=DNS:nexus-dev.allarddcs.nl,DNS:registry-dev.allarddcs.nl' + +keytool -exportcert -keystore keystore.jks -alias allarddcs.nl -rfc > allarddcs.nl.cert + +keytool -importkeystore -srckeystore keystore.jks -destkeystore allarddcs.nl.p12 -deststoretype PKCS12 + +openssl pkcs12 -nocerts -nodes -in allarddcs.nl.p12 -out allarddcs.nl.key diff --git a/dev/nexus/keytool/allarddcs.nl.cert b/dev/nexus/keytool/allarddcs.nl.cert new file mode 100644 index 0000000..27bd524 --- /dev/null +++ b/dev/nexus/keytool/allarddcs.nl.cert @@ -0,0 +1,23 @@ +-----BEGIN CERTIFICATE----- +MIIDzTCCArWgAwIBAgIEZRAWmTANBgkqhkiG9w0BAQsFADB4MQswCQYDVQQGEwJV +UzEUMBIGA1UECBMLVW5zcGVjaWZpZWQxFDASBgNVBAcTC1Vuc3BlY2lmaWVkMREw +DwYDVQQKEwhTb25hdHlwZTERMA8GA1UECxMIU29uYXR5cGUxFzAVBgNVBAMMDiou +YWxsYXJkZGNzLm5sMB4XDTI1MTEyMTA3MzA1NloXDTM5MDczMTA3MzA1NloweDEL +MAkGA1UEBhMCVVMxFDASBgNVBAgTC1Vuc3BlY2lmaWVkMRQwEgYDVQQHEwtVbnNw +ZWNpZmllZDERMA8GA1UEChMIU29uYXR5cGUxETAPBgNVBAsTCFNvbmF0eXBlMRcw +FQYDVQQDDA4qLmFsbGFyZGRjcy5ubDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC +AQoCggEBAJu7WaXBl8+gIUsrFNjGYIQj0bhkjgYdPWjfo9+oOUiwm2faCBoDmkJx +keo5DKY0MFKuVKA5jxpKLZCpPCiR5jUPDWWZBCCZ1syNoh5sll/GIijZz1rtTCz2 +xlbSd+xcUMNLhtt2FPWEH3no8BfTuzOZmFaMw+SSqRv3eeLNmNynIRX/5uK44hol +bn/ikg0RgibBIsCI5WvUP7ai+ZbZNrDjZd2UBOhgUkvIloFBkJY3pnMBa2kGia8T +zzWiEBHaPZs7doOepFZZEfsxcJfNtnN7LTUBVlZi3KPeZcuUAp9u/oxEo8ikANgu +cbtbkV3EGdedUjQF+Wh0DSscQ41wg00CAwEAAaNfMF0wHQYDVR0OBBYEFB2s7Ymg +OmCIufNW0+5rQATZ0zBFMDwGA1UdEQQ1MDOCFm5leHVzLWRldi5hbGxhcmRkY3Mu +bmyCGXJlZ2lzdHJ5LWRldi5hbGxhcmRkY3MubmwwDQYJKoZIhvcNAQELBQADggEB +AAoFam+k4Nwdrrsz/6eGsOQRwQjQkus60ro0c2D/H/a/oGBUYCnRHzmPg2FFEodf +9wXWSgOnRIlDYnf3U6A/IHPhZm8oeSU21v1u/IkXQYW+a9VUlGpkQJYBiFdmGYxs +SyeIbK02geb+8HNMeEnBoeSuGpkW0XJkPEnUi43OUVUSc1W7PcnFXtFDW94anqmh +BHKbLoEnPCXZ/QUbjXPjO67qHeMKbOu4USD3QDy3Hx+UM98z/hwGLNs6ZaCD2slt +LKR4afd7tXVCFPDqM7Fd8MTL23ee76yxeVAOrLF1mxRbrLtQ4fOrsU+tQFu0H+Oi +GeHcu05EXiFEb2bMuGmyF68= +-----END CERTIFICATE----- diff --git a/dev/nexus/keytool/allarddcs.nl.key b/dev/nexus/keytool/allarddcs.nl.key new file mode 100644 index 0000000..3cc09f1 --- /dev/null +++ b/dev/nexus/keytool/allarddcs.nl.key @@ -0,0 +1,32 @@ +Bag Attributes + friendlyName: allarddcs.nl + localKeyID: 54 69 6D 65 20 31 37 36 33 37 31 30 33 37 32 34 36 30 +Key Attributes: +-----BEGIN PRIVATE KEY----- +MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCbu1mlwZfPoCFL +KxTYxmCEI9G4ZI4GHT1o36PfqDlIsJtn2ggaA5pCcZHqOQymNDBSrlSgOY8aSi2Q +qTwokeY1Dw1lmQQgmdbMjaIebJZfxiIo2c9a7Uws9sZW0nfsXFDDS4bbdhT1hB95 +6PAX07szmZhWjMPkkqkb93nizZjcpyEV/+biuOIaJW5/4pINEYImwSLAiOVr1D+2 +ovmW2Taw42XdlAToYFJLyJaBQZCWN6ZzAWtpBomvE881ohAR2j2bO3aDnqRWWRH7 +MXCXzbZzey01AVZWYtyj3mXLlAKfbv6MRKPIpADYLnG7W5FdxBnXnVI0BflodA0r +HEONcINNAgMBAAECggEBAJHbLgKOSCZhHu2tIvBJFHqOpczi+RYG6s4/r9c5UrWf +G15wGehreV5DylsqJYvBE4VM29vZLQt9cCGuL7b7tzX4rB586x2xmDmraay/HTQE +eVfzcD8EQ7VVR7xnkYRhjg7rvRntBYJRxb1DiyN13j5c3A4r9wksx5B2/8SJtWLq ++preLP/BNrrL8rheFCHBqyty2MrYixhk85MLdTh/yug2TuMJ6wlTOvpW6OKFbd16 +ZO1y8reOSvhBN/flrBp627VQlDeInOQUA2aCIxfLKxG80nqIteOURYmNPZo6ic65 +8g/YoMq4wYlk1ZiNuIVqUS92nrKIicpwsXufGqBYqcECgYEA1nzI02trt0r9GTsc +7v9QpQ+a9P4KvQ8cObV12l3xV2HcIT4ipgeP3LfsuYxlFjmU/JQhWFOSXUuTtu9X +5DlKa6G0HYNRNhoD6JixnynGLbwz+DFEIP5rhOkSj78BolxYrPE44ep5NmtPEdBd +7smZT12NJjpkXwJFTKYJ7GtzOVECgYEAud9mbi6+TZJb3R5deftMiiw9erKIz09t +PUDlSQM5mEyABFWrLQIpcHZCksRL8ARTE71V1B8JuA7aBIrqW8ILZGs2MDc4+uOB +j4W35xv3WSZaGFxQpfAi+t3Bd5ovtMRhCHcniAPWqs143A9+zfyPSxOC5vEHxU2N +g6GAK3fXaz0CgYBR3kltYWg5Czd2RPjzRKLMjhtQfhMtPLJCWMAGPKtc9i5mxefF +xccksVN7M1p2VD5I9mWP6D5KvAlC3zKGG1QLpyovxare4qkxQ+8wWGqblGWly3A8 +w7/YeHosQfTmuybhxCU5Hh1sJyOEIitodKy+/W9d8xXSqfQ3oHzTL+RIMQKBgBCo +11N02RW20okFGbe/MGMKCBChQ+Xg5peg42wh392orai1zPvhv7kWwGzLL0s5+ABC +7hhvF73phtz1XoAO6lp7yYWUzYSfM5OblpoeRZM1/slELO5SkbAOhDKmHTSEjXXm +yCJGxczVUcnXkbQAuQ8vloIAhIPIqbBsn0JGIYa5AoGADkaVadmis15UE6hTqyxj +Et5Vzud4bIu9rXrcwK3HNn764RPxMOhcl/NvbeyDaLJMnwwLtZrJp4AMfQBuPAI/ +QNIciDAdTVfXSrswlt6cyt+dQDDXV7sZTEHTdoagld62dS/kybG39rwGXo857tJ0 +WndxZ5j6ncrIQLnFSciQSbA= +-----END PRIVATE KEY----- diff --git a/dev/nexus/keytool/allarddcs.nl.p12 b/dev/nexus/keytool/allarddcs.nl.p12 new file mode 100644 index 0000000..9d8683f Binary files /dev/null and b/dev/nexus/keytool/allarddcs.nl.p12 differ diff --git a/dev/nexus/keytool/keystore.jks b/dev/nexus/keytool/keystore.jks new file mode 100644 index 0000000..198f4ba Binary files /dev/null and b/dev/nexus/keytool/keystore.jks differ diff --git a/dev/nexus/nexus-pvc.yaml b/dev/nexus/nexus-pvc.yaml new file mode 100644 index 0000000..d262024 --- /dev/null +++ b/dev/nexus/nexus-pvc.yaml @@ -0,0 +1,34 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nexus-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/nexus/dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nexus-pvc + namespace: nexus +spec: + storageClassName: "" + volumeName: nexus-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/dev/nexus/nexus.yaml b/dev/nexus/nexus.yaml new file mode 100755 index 0000000..88817a7 --- /dev/null +++ b/dev/nexus/nexus.yaml @@ -0,0 +1,93 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nexus + namespace: nexus + labels: + app: nexus +spec: + replicas: 1 + selector: + matchLabels: + app: nexus + template: + metadata: + labels: + app: nexus + spec: + terminationGracePeriodSeconds: 30 + tolerations: + - key: "memory" + operator: "Equal" + value: "high" + effect: "NoSchedule" + containers: + - name: nexus + image: sonatype/nexus3:latest + resources: + requests: + memory: "2Gi" + cpu: "500m" + limits: + memory: "4Gi" + cpu: "1000m" + ports: + - containerPort: 8081 + name: web + - containerPort: 8443 + name: websecure + - containerPort: 5000 + name: docker + env: + - name: INSTALL4J_ADD_VM_PARAMS + value: "-XX:ActiveProcessorCount=4" + - name: NEXUS_DATASTORE_NEXUS_USERNAME + value: "nexus" + - name: NEXUS_DATASTORE_NEXUS_PASSWORD + value: "nexus" + - name: NEXUS_DATASTORE_NEXUS_JDBCURL + value: "jdbc:postgresql://postgres16.postgres.svc.cluster.local:5432/nexus" +# - name: NEXUS_DB_TYPE +# value: postgresql +# - name: NEXUS_DB_HOST +# value: postgres16.postgres.svc.cluster.local +# - name: NEXUS_DB_PORT +# value: "5432" +# - name: NEXUS_DB_NAME +# value: nexus +# - name: NEXUS_DB_USER +# value: nexus +# - name: NEXUS_DB_PASSWORD +# value: nexus + volumeMounts: + - mountPath: /nexus-data + name: nexus + subPath: data-dir + - name: java-prefs + mountPath: /opt/sonatype/nexus/.java + volumes: + - name: nexus + persistentVolumeClaim: + claimName: nexus-pvc + - name: java-prefs + emptyDir: {} +--- +apiVersion: v1 +kind: Service +metadata: + name: nexus + namespace: nexus +spec: + ports: + - name: web + targetPort: 8081 + port: 8081 + - name: websecure + targetPort: 8443 + port: 8443 + - name: docker + targetPort: 5000 + port: 5000 + selector: + app: nexus + type: ClusterIP diff --git a/dev/nexus/nietnodig/amd/nexus.yaml b/dev/nexus/nietnodig/amd/nexus.yaml new file mode 100755 index 0000000..903701b --- /dev/null +++ b/dev/nexus/nietnodig/amd/nexus.yaml @@ -0,0 +1,94 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nexus-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/nexus + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nexus-pvc +spec: + storageClassName: "" + volumeName: nexus-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nexus + labels: + app: nexus +spec: + replicas: 1 + selector: + matchLabels: + app: nexus + template: + metadata: + labels: + app: nexus + spec: + containers: + - name: nexus + image: sonatype/nexus3 + ports: + - containerPort: 8081 + name: web + - containerPort: 8443 + name: websecure + - containerPort: 8444 + name: docker +# volumeMounts: +# - mountPath: /nexus-data +# name: nexus +# subPath: data-dir +# - mountPath: /opt/sonatype/nexus/etc +# name: nexus +# subPath: app-dir + env: + - name: INSTALL4J_ADD_VM_PARAMS + value: "-XX:ActiveProcessorCount=4" + - name: Djava.util.prefs.userRoot + value: "/opt/sonatype/sonatype-work/nexus3/javaprefs" +# volumes: +# - name: nexus +# persistentVolumeClaim: +# claimName: nexus-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: nexus +spec: + ports: + - name: http + targetPort: 8081 + port: 8081 + - name: https + targetPort: 8443 + port: 8443 + - name: nexus + targetPort: 8444 + port: 8444 + selector: + app: nexus + type: ClusterIP diff --git a/dev/nexus/nietnodig/certificate.yaml b/dev/nexus/nietnodig/certificate.yaml new file mode 100755 index 0000000..c315852 --- /dev/null +++ b/dev/nexus/nietnodig/certificate.yaml @@ -0,0 +1,15 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: nexus.alldcs.nl-tls +spec: + dnsNames: + - nexus.alldcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: nexus.allarddcs.nl-tls + usages: + - digital signature + - key encipherment diff --git a/dev/nexus/nietnodig/ingressroute-http.yaml b/dev/nexus/nietnodig/ingressroute-http.yaml new file mode 100755 index 0000000..f11e8da --- /dev/null +++ b/dev/nexus/nietnodig/ingressroute-http.yaml @@ -0,0 +1,13 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: nexus-http +spec: + entryPoints: + - web + routes: + - match: Host(`nexus.alldcs.nl`) + kind: Rule + services: + - name: nexus + port: 8081 diff --git a/dev/nexus/nietnodig/ingressrouteTCP-backup.yaml b/dev/nexus/nietnodig/ingressrouteTCP-backup.yaml new file mode 100755 index 0000000..a281b32 --- /dev/null +++ b/dev/nexus/nietnodig/ingressrouteTCP-backup.yaml @@ -0,0 +1,38 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: nexus-tcp-tls +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`nexus.alldcs.nl`) + services: + - name: nexus + port: 8443 + - match: HostSNI(`nexus.alldcs.nl`) + services: + - name: nexus + port: 8443 + tls: + passthrough: true +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: nexus-tcp-docker +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`registry.alldcs.nl`) + services: + - name: nexus + port: 8444 + - match: HostSNI(`registry.alldcs.nl`) && PathPrefix(`/v2/`) + services: + - name: nexus + port: 8444 + tls: + passthrough: true + diff --git a/dev/nginx/catalog-info.yaml b/dev/nginx/catalog-info.yaml new file mode 100644 index 0000000..98a58e4 --- /dev/null +++ b/dev/nginx/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-nginx + title: Nginx (dev) + description: Nexus instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=nginx" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/nginx + title: nginx-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/nginx/nginx-dev.yaml b/dev/nginx/nginx-dev.yaml new file mode 100755 index 0000000..e75d26d --- /dev/null +++ b/dev/nginx/nginx-dev.yaml @@ -0,0 +1,101 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: nginx +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nginx-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/nginx-dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nginx-pvc + namespace: nginx +spec: + storageClassName: "" + volumeName: nginx-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx + namespace: nginx + labels: + app: nginx +spec: + replicas: 1 + selector: + matchLabels: + app: nginx + template: + metadata: + labels: + app: nginx + spec: + containers: + - name: nginx + image: nginx:1.14.2 + volumeMounts: + - mountPath: /usr/share/nginx/html + name: nginx + subPath: html + ports: + - containerPort: 80 + volumes: + - name: nginx + persistentVolumeClaim: + claimName: nginx-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: nginx + namespace: nginx + labels: + name: nginx +spec: + type: ClusterIP + ports: + - port: 80 + name: http + selector: + app: nginx +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: nginx-tls-allarddcs + namespace: nginx +spec: + entryPoints: + - websecure + routes: + - match: Host(`nginx-dev.allarddcs.nl`) + kind: Rule + services: + - name: nginx + port: 80 + tls: + certResolver: letsencrypt diff --git a/dev/olproperties/.argocdignore b/dev/olproperties/.argocdignore new file mode 100644 index 0000000..de0ac16 --- /dev/null +++ b/dev/olproperties/.argocdignore @@ -0,0 +1,2 @@ +catalog-info.yaml +catalog-info.yml diff --git a/dev/olproperties/docs/catalog-info.yaml.ignore b/dev/olproperties/docs/catalog-info.yaml.ignore new file mode 100644 index 0000000..bfde7d4 --- /dev/null +++ b/dev/olproperties/docs/catalog-info.yaml.ignore @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-olproperties + title: Olproperties (dev) + description: Olproperties instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=olproperties" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/olproperties + title: olproperties-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/olproperties/olproperties.yaml b/dev/olproperties/olproperties.yaml new file mode 100755 index 0000000..af0cfe4 --- /dev/null +++ b/dev/olproperties/olproperties.yaml @@ -0,0 +1,53 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: olproperties + labels: + app: olproperties +spec: + replicas: 1 + selector: + matchLabels: + app: olproperties + template: + metadata: + labels: + app: olproperties + spec: + containers: + - name: olproperties + image: harbor-dev.allarddcs.nl/allard/olproperties:1.3 + imagePullPolicy: Always + ports: + - containerPort: 9080 + imagePullSecrets: + - name: registry-credentials +--- +apiVersion: v1 +kind: Service +metadata: + name: olproperties +spec: + type: ClusterIP + ports: + - name: port-0 + port: 9080 + selector: + app: olproperties +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: olproperties-tls +spec: + entryPoints: + - websecure + routes: + - match: Host(`olproperties-dev.allarddcs.nl`) + kind: Rule + services: + - name: olproperties + port: 9080 + tls: + certResolver: letsencrypt + diff --git a/dev/pgadmin/catalog-info.yaml b/dev/pgadmin/catalog-info.yaml new file mode 100644 index 0000000..e0bf8df --- /dev/null +++ b/dev/pgadmin/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-pgadmin + title: Pgadmin (dev) + description: Pgadmin instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=pgadmin" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/pgadmin + title: pgadmin-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/pgadmin/pgadmin.yaml b/dev/pgadmin/pgadmin.yaml new file mode 100755 index 0000000..663bacc --- /dev/null +++ b/dev/pgadmin/pgadmin.yaml @@ -0,0 +1,102 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: pgadmin-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/pgadmin/dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: pgadmin-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: pgadmin-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: pgadmin + namespace: postgres + labels: + app: pgadmin +spec: + replicas: 1 + selector: + matchLabels: + app: pgadmin + template: + metadata: + labels: + app: pgadmin + spec: + containers: + - name: pgadmin + image: dpage/pgadmin4 + ports: + - containerPort: 80 + env: + - name: PGADMIN_DEFAULT_EMAIL + value: admin@allarddcs.nl + - name: PGADMIN_DEFAULT_PASSWORD + value: Pgadmin01@ + volumeMounts: + - mountPath: /var/lib/pgadmin + name: pgadmin + volumes: + - name: pgadmin + persistentVolumeClaim: + claimName: pgadmin-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: pgadmin + namespace: postgres + labels: + name: pgadmin +spec: + selector: + app.kubernetes.io/name: pgadmin + ports: + - protocol: TCP + port: 80 + targetPort: 80 + selector: + app: pgadmin +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: pgadmin-tls + namespace: postgres +spec: + entryPoints: + - websecure + routes: + - match: Host(`pgadmin-dev.allarddcs.nl`) + kind: Rule + services: + - name: pgadmin + port: 80 + tls: + certResolver: letsencrypt diff --git a/dev/phpmyadmin/README.md b/dev/phpmyadmin/README.md new file mode 100644 index 0000000..b46033e --- /dev/null +++ b/dev/phpmyadmin/README.md @@ -0,0 +1,2 @@ +user: root +password: jamesbrown diff --git a/dev/phpmyadmin/catalog-info.yaml b/dev/phpmyadmin/catalog-info.yaml new file mode 100644 index 0000000..a9495bd --- /dev/null +++ b/dev/phpmyadmin/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-phpmyadmin + title: phpmyadmin (dev) + description: phpmyadmin instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=phpmyadmin" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/phpmyadmin + title: phpmyadmin-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/phpmyadmin/phpmyadmin.yaml b/dev/phpmyadmin/phpmyadmin.yaml new file mode 100755 index 0000000..32e0c75 --- /dev/null +++ b/dev/phpmyadmin/phpmyadmin.yaml @@ -0,0 +1,61 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: phpmyadmin + namespace: mariadb + labels: + app: phpmyadmin +spec: + replicas: 1 + selector: + matchLabels: + app: phpmyadmin + template: + metadata: + labels: + app: phpmyadmin + spec: + containers: + - name: phpmyadmin + image: phpmyadmin + ports: + - containerPort: 80 + env: + - name: PMA_HOST + value: mariadb + - name: PMA_PORT + value: "3306" + - name: MYSQL_ROOT_PASSWORD + value: "jamesbrown" +--- +apiVersion: v1 +kind: Service +metadata: + name: phpmyadmin + namespace: mariadb +spec: + selector: + app.kubernetes.io/name: phpmyadmin + ports: + - protocol: TCP + port: 80 + targetPort: 80 + selector: + app: phpmyadmin +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: phpmyadmin-tls + namespace: mariadb +spec: + entryPoints: + - websecure + routes: + - match: Host(`phpmyadmin-dev.allarddcs.nl`) + kind: Rule + services: + - name: phpmyadmin + port: 80 + tls: + certResolver: letsencrypt diff --git a/dev/phpmyadmin/phpmyadmin2.yaml b/dev/phpmyadmin/phpmyadmin2.yaml new file mode 100755 index 0000000..cc58bb5 --- /dev/null +++ b/dev/phpmyadmin/phpmyadmin2.yaml @@ -0,0 +1,100 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: phpmyadmin-pv + labels: + type: local +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/phpmyadmin + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: phpmyadmin-pvc + namespace: mariadb +spec: + storageClassName: "" + volumeName: phpmyadmin-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1G +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: phpmyadmin + namespace: mariadb + labels: + app: phpmyadmin +spec: + replicas: 1 + selector: + matchLabels: + app: phpmyadmin + template: + metadata: + labels: + app: phpmyadmin + spec: + containers: + - name: phpmyadmin + image: arm64v8/phpmyadmin + ports: + - containerPort: 80 + env: + - name: PMA_HOST + value: mariadb + - name: PMA_PORT + value: "3306" + - name: MYSQL_ROOT_PASSWORD + value: "zabbix" +# volumeMounts: +# - name: phpconfig +# mountPath: /etc/phpmyadmin +# volumes: +# - name: phpconfig +# persistentVolumeClaim: +# claimName: phpmyadmin-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: phpmyadmin + namespace: mariadb +spec: + selector: + app.kubernetes.io/name: phpmyadmin + ports: + - protocol: TCP + port: 80 + targetPort: 80 + selector: + app: phpmyadmin +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: phpmyadmin-tls-alldcs + namespace: mariadb +spec: + entryPoints: + - websecure + routes: + - match: Host(`phpmyadmin-dev.alldcs.nl`) + kind: Rule + services: + - name: phpmyadmin + port: 80 + tls: + certResolver: letsencrypt diff --git a/dev/portainer/README.md b/dev/portainer/README.md new file mode 100755 index 0000000..6bc9cd4 --- /dev/null +++ b/dev/portainer/README.md @@ -0,0 +1,6 @@ +#installeren portainer: + +microk8s enable portainer +kubect apply -f ingressroute-tls + +Het kan even duren voordat de boel is opgestart! diff --git a/dev/portainer/catalog-info.yaml b/dev/portainer/catalog-info.yaml new file mode 100644 index 0000000..48d4071 --- /dev/null +++ b/dev/portainer/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-portainer + title: Portainer (dev) + description: Portainer instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=portainer" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/portainer + title: portainer-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/portainer/portainer.yaml b/dev/portainer/portainer.yaml new file mode 100644 index 0000000..1eac26b --- /dev/null +++ b/dev/portainer/portainer.yaml @@ -0,0 +1,196 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: portainer +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: portainer-sa-clusteradmin + namespace: portainer + labels: + app.kubernetes.io/name: portainer + app.kubernetes.io/instance: portainer + app.kubernetes.io/version: "ce-latest-ee-2.14.2" +--- +# Source: portainer/templates/rbac.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: portainer + labels: + app.kubernetes.io/name: portainer + app.kubernetes.io/instance: portainer + app.kubernetes.io/version: "ce-latest-ee-2.14.2" +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: cluster-admin +subjects: +- kind: ServiceAccount + namespace: portainer + name: portainer-sa-clusteradmin +--- +# Source: portainer/templates/service.yaml +apiVersion: v1 +kind: Service +metadata: + name: portainer + namespace: portainer + labels: + io.portainer.kubernetes.application.stack: portainer + app.kubernetes.io/name: portainer + app.kubernetes.io/instance: portainer + app.kubernetes.io/version: "ce-latest-ee-2.14.2" +spec: + type: NodePort + ports: + - port: 9000 + targetPort: 9000 + protocol: TCP + name: http + nodePort: 30777 + - port: 9443 + targetPort: 9443 + protocol: TCP + name: https + nodePort: 30779 + - port: 30776 + targetPort: 30776 + protocol: TCP + name: edge + nodePort: 30776 + selector: + app.kubernetes.io/name: portainer + app.kubernetes.io/instance: portainer +--- +# Source: portainer/templates/deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: portainer + namespace: portainer + labels: + io.portainer.kubernetes.application.stack: portainer + app.kubernetes.io/name: portainer + app.kubernetes.io/instance: portainer + app.kubernetes.io/version: "ce-latest-ee-2.14.2" +spec: + replicas: 1 + strategy: + type: "Recreate" + selector: + matchLabels: + app.kubernetes.io/name: portainer + app.kubernetes.io/instance: portainer + template: + metadata: + labels: + app.kubernetes.io/name: portainer + app.kubernetes.io/instance: portainer + spec: + nodeSelector: + {} + serviceAccountName: portainer-sa-clusteradmin + volumes: + - name: "data" + persistentVolumeClaim: + claimName: portainer-pvc + containers: + - name: portainer + image: "portainer/portainer-ce:2.14.2" + imagePullPolicy: Always + args: + - '--tunnel-port=30776' + volumeMounts: + - name: data + mountPath: /data + ports: + - name: http + containerPort: 9000 + protocol: TCP + - name: https + containerPort: 9443 + protocol: TCP + - name: tcp-edge + containerPort: 8000 + protocol: TCP + livenessProbe: + httpGet: + path: / + port: 9443 + scheme: HTTPS + readinessProbe: + httpGet: + path: / + port: 9443 + scheme: HTTPS + resources: + {} +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: portainer-http + namespace: portainer +spec: + entryPoints: + - web + routes: + - match: Host(`portainer-dev.allarddcs.nl`) + kind: Rule + services: + - name: portainer + port: 9000 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: portainer-tls + namespace: portainer +spec: + entryPoints: + - websecure + routes: + - match: Host(`portainer-dev.allarddcs.nl`) + kind: Rule + services: + - name: portainer + port: 9000 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: portainer-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/portainer + readOnly: false +--- +kind: "PersistentVolumeClaim" +apiVersion: "v1" +metadata: + name: portainer-pvc + namespace: portainer +spec: + storageClassName: "" + volumeName: portainer-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 2Gi + diff --git a/dev/postgres13/catalog-info.yaml b/dev/postgres13/catalog-info.yaml new file mode 100644 index 0000000..95b20e4 --- /dev/null +++ b/dev/postgres13/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-postgres13 + title: postgres13 (dev) + description: postgres13 instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=postgres13" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/postgres13 + title: postgres13-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/postgres13/postgres13.yaml b/dev/postgres13/postgres13.yaml new file mode 100755 index 0000000..31955d1 --- /dev/null +++ b/dev/postgres13/postgres13.yaml @@ -0,0 +1,88 @@ +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: postgres13 + namespace: postgres +spec: + serviceName: postgres13 + replicas: 1 + selector: + matchLabels: + app: postgres13 + template: + metadata: + labels: + app: postgres13 + spec: + containers: + - name: postgres13 + image: postgres:13 +# command: ["sh"] +# args: ["-c", "while true; do echo $(date -u) >> /tmp/run.log; sleep 5; done"] + ports: + - containerPort: 5432 + env: + - name: POSTGRES_DB + value: harbor + - name: POSTGRES_USER + value: harbor + - name: POSTGRES_PASSWORD + value: harbor + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: postgres + volumes: + - name: postgres + persistentVolumeClaim: + claimName: postgres13-pvc + nodeSelector: + kubernetes.io/arch: arm64 +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres13 + namespace: postgres + labels: + name: postgres13 +spec: + type: ClusterIP + ports: + - port: 5432 + name: postgres + selector: + app: postgres13 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgres13-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/postgres13dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres13-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: postgres13-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi diff --git a/dev/postgres13/secret/get-password.sh b/dev/postgres13/secret/get-password.sh new file mode 100755 index 0000000..214a62a --- /dev/null +++ b/dev/postgres13/secret/get-password.sh @@ -0,0 +1,2 @@ +echo User : $(microk8s kubectl get secret postgres -o jsonpath="{.data.POSTGRES_USER}" | base64 -d) +echo Password: $(microk8s kubectl get secret postgres -o jsonpath="{.data.POSTGRES_PASSWORD}" | base64 -d) diff --git a/dev/postgres13/secret/postgres-secret.yaml b/dev/postgres13/secret/postgres-secret.yaml new file mode 100755 index 0000000..9bb2ec4 --- /dev/null +++ b/dev/postgres13/secret/postgres-secret.yaml @@ -0,0 +1,8 @@ +apiVersion: v1 +kind: Secret +metadata: + name: postgres +data: + POSTGRES_PASSWORD: bXktc3VwZXItc2VjcmV0LXBhc3N3b3Jk +stringData: + POSTGRES_USER: root diff --git a/dev/postgres14/README.md b/dev/postgres14/README.md new file mode 100644 index 0000000..c0ed671 --- /dev/null +++ b/dev/postgres14/README.md @@ -0,0 +1,21 @@ +user: harbor +password: harbor + +#corrupte WAL-archive + +#postgres starten zonder database te starten door volgende toe te voegen in yaml:: + + command: ["sh"] + args: ["-c", "while true; do echo $(date -u) >> /tmp/run.log; sleep 5; done"] + +#dan inloggen in draaiende container + +kubectl exec -it postgres14-0 -n postgres -- sh + +#Switchen naar user POSTGRES + +su postgres + +#WAL-arhive resetten: + +pg_resetwal /var/lib/postgresql/data -f diff --git a/dev/postgres14/catalog-info.yaml b/dev/postgres14/catalog-info.yaml new file mode 100644 index 0000000..e9f6f0f --- /dev/null +++ b/dev/postgres14/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-postgres14 + title: postgres14 (dev) + description: postgres14 instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=postgres14" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/postgres14 + title: postgres14-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/postgres14/postgres14.yaml b/dev/postgres14/postgres14.yaml new file mode 100755 index 0000000..c9cbc6c --- /dev/null +++ b/dev/postgres14/postgres14.yaml @@ -0,0 +1,88 @@ +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: postgres14 + namespace: postgres +spec: + serviceName: postgres14 + replicas: 1 + selector: + matchLabels: + app: postgres14 + template: + metadata: + labels: + app: postgres14 + spec: + containers: + - name: postgres14 + image: postgres:14 + ports: + - containerPort: 5432 +# command: ["sh"] +# args: ["-c", "while true; do echo $(date -u) >> /tmp/run.log; sleep 5; done"] + env: + - name: POSTGRES_DB + value: postgres + - name: POSTGRES_USER + value: admin + - name: POSTGRES_PASSWORD + value: Pgadmin01@ + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: postgres + volumes: + - name: postgres + persistentVolumeClaim: + claimName: postgres14-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres14 + namespace: postgres + labels: + name: postgres14 +spec: + type: ClusterIP + ports: + - port: 5432 + name: postgres + selector: + app: postgres14 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgres14-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/postgres14dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres14-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: postgres14-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi +--- + diff --git a/dev/postgres15/catalog-info.yaml b/dev/postgres15/catalog-info.yaml new file mode 100644 index 0000000..da6171c --- /dev/null +++ b/dev/postgres15/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-postgres15 + title: postgres15 (dev) + description: postgres15 instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=postgres15" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/postgres15 + title: postgres15-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/postgres15/postgres15.yaml b/dev/postgres15/postgres15.yaml new file mode 100755 index 0000000..c984095 --- /dev/null +++ b/dev/postgres15/postgres15.yaml @@ -0,0 +1,85 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgres15-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/postgres15test + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres15-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: postgres15-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: postgres15 + namespace: postgres +spec: + serviceName: postgres15 + replicas: 1 + selector: + matchLabels: + app: postgres15 + template: + metadata: + labels: + app: postgres15 + spec: + containers: + - name: postgres15 + image: postgres:15 + ports: + - containerPort: 5432 + env: + - name: POSTGRES_DB + value: postgres + - name: POSTGRES_USER + value: admin + - name: POSTGRES_PASSWORD + value: Pgadmin01@ + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: postgres + volumes: + - name: postgres + persistentVolumeClaim: + claimName: postgres15-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres15 + namespace: postgres + labels: + name: postgres15 +spec: + type: ClusterIP + ports: + - port: 5432 + name: postgres + selector: + app: postgres15 + diff --git a/dev/postgres16/catalog-info.yaml b/dev/postgres16/catalog-info.yaml new file mode 100644 index 0000000..757880b --- /dev/null +++ b/dev/postgres16/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-postgres16 + title: postgres16 (dev) + description: postgres16 instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=postgres16" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/postgres16 + title: portgres15-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/postgres16/postgres16.yaml b/dev/postgres16/postgres16.yaml new file mode 100755 index 0000000..ff24352 --- /dev/null +++ b/dev/postgres16/postgres16.yaml @@ -0,0 +1,86 @@ +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: postgres16 + namespace: postgres +spec: + serviceName: postgres16 + replicas: 1 + selector: + matchLabels: + app: postgres16 + template: + metadata: + labels: + app: postgres16 + spec: + containers: + - name: postgres16 + image: postgres:16 + ports: + - containerPort: 5432 + env: + - name: POSTGRES_DB + value: defectdojo + - name: POSTGRES_USER + value: defectdojo + - name: POSTGRES_PASSWORD + value: defectdojo + - name: PGOPTIONS + value: "-c max_connections=200" + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: postgres + volumes: + - name: postgres + persistentVolumeClaim: + claimName: postgres16-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres16 + namespace: postgres + labels: + name: postgres16 +spec: + type: ClusterIP + ports: + - port: 5432 + name: postgres + selector: + app: postgres16 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgres16-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/postgres16dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres16-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: postgres16-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi diff --git a/dev/prometheus/catalog-info.yaml b/dev/prometheus/catalog-info.yaml new file mode 100644 index 0000000..5bd7a44 --- /dev/null +++ b/dev/prometheus/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-prometheus + title: prometheus (dev) + description: prometheus instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=prometheus" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/prometheus + title: prometheus-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/prometheus/dev/README.md b/dev/prometheus/dev/README.md new file mode 100755 index 0000000..b545c55 --- /dev/null +++ b/dev/prometheus/dev/README.md @@ -0,0 +1,13 @@ +microk8s enable observability + +kubectl apply -f ingressroute-tls.yaml + +Let op: host-access moet enabled zijn op alle nodes, anders kan de autorisatie +voor het uitlezen van de node niet worden aangebracht. + +Let op: ingressroute-tls.yaml zit in namespace "observability" + +Grafana: + +user: admin +password: prom-operator diff --git a/dev/prometheus/dev/ingressroute-tls.yaml b/dev/prometheus/dev/ingressroute-tls.yaml new file mode 100755 index 0000000..3b22408 --- /dev/null +++ b/dev/prometheus/dev/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: prometheus-tls + namespace: observability +spec: + entryPoints: + - websecure + routes: + - match: Host(`prometheus-dev.allarddcs.nl`) + kind: Rule + services: + - name: kube-prom-stack-kube-prome-prometheus + port: 9090 + tls: + certResolver: letsencrypt diff --git a/dev/prometheus/dev/yaml/README.md b/dev/prometheus/dev/yaml/README.md new file mode 100755 index 0000000..f48af03 --- /dev/null +++ b/dev/prometheus/dev/yaml/README.md @@ -0,0 +1,76 @@ +INSTALLATIE: + +- kubectl create namespace monitoring + +Prometheus uses Kubernetes APIs to read all the available metrics from Nodes, Pods, Deployments, +etc. +For this reason, we need to create an RBAC policy with read access to required API groups and +bind the policy to the monitoring namespace. +In the role you can see that we have added get, list, and watch permissions to +nodes, services endpoints, pods, and ingresses. +The role binding is bound to the monitoring namespace. If you have any use case to retrieve +metrics from any other object, you need to add that in this cluster role. + +- kubectl create -f clusterRole.yaml + +By externalizing Prometheus configs to a Kubernetes config map, you don’t have to build the +Prometheus image whenever you need to add or remove a configuration. +You need to update the config map and restart the Prometheus pods to apply the new configuration. + +Configuration files zijn: prometheus.yaml en prometheus.rules, samen verpakt in config-map.yaml. + +- kubectl create -f config-map.yaml + +Above statement creates two files inside the container later: + +kubectl exec -it prometheus-deployment-74dc6c7466-mv8bh /bin/sh -n monitoring +/prometheus $ ls /etc/prometheus/ +prometheus.rules prometheus.yml + +- kubectl create -f prometheus-deployment.yaml +- kubectl create -f prometheus-service.yaml + +VOORBEELD: + +op home-page invullen: + +container_cpu_usage_seconds_total + +KUBE STATE METRICS Setup + +Kube state metrics is available as a public docker image. You will have to deploy the following Kubernetes objects for Kube state metrics to work. + +-A Service Account +-Cluster Role – For kube state metrics to access all the Kubernetes API objects. +-Cluster Role Binding – Binds the service account with the cluster role. +-Kube State Metrics Deployment +-Service – To expose the metrics + +All the above Kube state metrics objects will be deployed in the kube-system namespace + +- kubectl apply -f kube-state-metrics-configs/ +- kubectl get deployments kube-state-metrics -n kube-system + +## â˜¸ï¸ kubernetes prometheus Setup + +Complete prometheus monitoring stack setup on Kubernetes. + +Idea of this repo to understand all the components involved in prometheus setup. + +You can find the full tutorial from here--> [Kubernetes Monitoting setup Using Prometheus](https://devopscube.com/setup-prometheus-monitoring-on-kubernetes/) + +## 🚀 PCA, CKA, CKAD, CKS or KCNA Voucher Codes/Updates + +If you are preparing for PCA, CKA, CKAD, CKS, or KCNA exam, **save 35%** today using code **DEVOPS35** at https://kube.promo/latest. It is a limited-time offer. Or Check out [Linux Foundation coupon] + +## âœï¸ Other Manifest repos + +Kube State metrics manifests: https://github.com/devopscube/kube-state-metrics-configs + +Alert manager Manifests: https://github.com/bibinwilson/kubernetes-alert-manager + +Grafana manifests: https://github.com/bibinwilson/kubernetes-grafana + +Node Exporter manifests: https://github.com/bibinwilson/kubernetes-node-exporter + + diff --git a/dev/prometheus/dev/yaml/clusterRole.yaml b/dev/prometheus/dev/yaml/clusterRole.yaml new file mode 100755 index 0000000..d666b69 --- /dev/null +++ b/dev/prometheus/dev/yaml/clusterRole.yaml @@ -0,0 +1,33 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: prometheus +rules: +- apiGroups: [""] + resources: + - nodes + - nodes/proxy + - services + - endpoints + - pods + verbs: ["get", "list", "watch"] +- apiGroups: + - extensions + resources: + - ingresses + verbs: ["get", "list", "watch"] +- nonResourceURLs: ["/metrics"] + verbs: ["get"] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: prometheus +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: prometheus +subjects: +- kind: ServiceAccount + name: default + namespace: monitoring diff --git a/dev/prometheus/dev/yaml/ingressroute-dev-tls.yaml b/dev/prometheus/dev/yaml/ingressroute-dev-tls.yaml new file mode 100755 index 0000000..d034aae --- /dev/null +++ b/dev/prometheus/dev/yaml/ingressroute-dev-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: prometheus-dev-tls + namespace: observability +spec: + entryPoints: + - websecure + routes: + - match: Host(`prometheus.allarddcs.nl`) + kind: Rule + services: + - name: kube-prom-stack-kube-prome-prometheus + port: 9090 + tls: + certResolver: letsencrypt diff --git a/dev/prometheus/dev/yaml/kube-state-metrics-configs/README.md b/dev/prometheus/dev/yaml/kube-state-metrics-configs/README.md new file mode 100755 index 0000000..4e3152e --- /dev/null +++ b/dev/prometheus/dev/yaml/kube-state-metrics-configs/README.md @@ -0,0 +1,2 @@ +# kube-state-metrics-configs +Kube state metrics kubernetes deployment configs diff --git a/dev/prometheus/dev/yaml/kube-state-metrics-configs/cluster-role-binding.yaml b/dev/prometheus/dev/yaml/kube-state-metrics-configs/cluster-role-binding.yaml new file mode 100755 index 0000000..12f5466 --- /dev/null +++ b/dev/prometheus/dev/yaml/kube-state-metrics-configs/cluster-role-binding.yaml @@ -0,0 +1,16 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + labels: + app.kubernetes.io/component: exporter + app.kubernetes.io/name: kube-state-metrics + app.kubernetes.io/version: 2.3.0 + name: kube-state-metrics +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: kube-state-metrics +subjects: +- kind: ServiceAccount + name: kube-state-metrics + namespace: kube-system diff --git a/dev/prometheus/dev/yaml/kube-state-metrics-configs/cluster-role.yaml b/dev/prometheus/dev/yaml/kube-state-metrics-configs/cluster-role.yaml new file mode 100755 index 0000000..859e901 --- /dev/null +++ b/dev/prometheus/dev/yaml/kube-state-metrics-configs/cluster-role.yaml @@ -0,0 +1,109 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + labels: + app.kubernetes.io/component: exporter + app.kubernetes.io/name: kube-state-metrics + app.kubernetes.io/version: 2.3.0 + name: kube-state-metrics +rules: +- apiGroups: + - "" + resources: + - configmaps + - secrets + - nodes + - pods + - services + - resourcequotas + - replicationcontrollers + - limitranges + - persistentvolumeclaims + - persistentvolumes + - namespaces + - endpoints + verbs: + - list + - watch +- apiGroups: + - apps + resources: + - statefulsets + - daemonsets + - deployments + - replicasets + verbs: + - list + - watch +- apiGroups: + - batch + resources: + - cronjobs + - jobs + verbs: + - list + - watch +- apiGroups: + - autoscaling + resources: + - horizontalpodautoscalers + verbs: + - list + - watch +- apiGroups: + - authentication.k8s.io + resources: + - tokenreviews + verbs: + - create +- apiGroups: + - authorization.k8s.io + resources: + - subjectaccessreviews + verbs: + - create +- apiGroups: + - policy + resources: + - poddisruptionbudgets + verbs: + - list + - watch +- apiGroups: + - certificates.k8s.io + resources: + - certificatesigningrequests + verbs: + - list + - watch +- apiGroups: + - storage.k8s.io + resources: + - storageclasses + - volumeattachments + verbs: + - list + - watch +- apiGroups: + - admissionregistration.k8s.io + resources: + - mutatingwebhookconfigurations + - validatingwebhookconfigurations + verbs: + - list + - watch +- apiGroups: + - networking.k8s.io + resources: + - networkpolicies + - ingresses + verbs: + - list + - watch +- apiGroups: + - coordination.k8s.io + resources: + - leases + verbs: + - list + - watch diff --git a/dev/prometheus/dev/yaml/kube-state-metrics-configs/deployment.yaml b/dev/prometheus/dev/yaml/kube-state-metrics-configs/deployment.yaml new file mode 100755 index 0000000..9098f36 --- /dev/null +++ b/dev/prometheus/dev/yaml/kube-state-metrics-configs/deployment.yaml @@ -0,0 +1,49 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app.kubernetes.io/component: exporter + app.kubernetes.io/name: kube-state-metrics + app.kubernetes.io/version: 2.3.0 + name: kube-state-metrics + namespace: kube-system +spec: + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/name: kube-state-metrics + template: + metadata: + labels: + app.kubernetes.io/component: exporter + app.kubernetes.io/name: kube-state-metrics + app.kubernetes.io/version: 2.3.0 + spec: + automountServiceAccountToken: true + containers: + - image: k8s.gcr.io/kube-state-metrics/kube-state-metrics:v2.3.0 + livenessProbe: + httpGet: + path: /healthz + port: 8080 + initialDelaySeconds: 5 + timeoutSeconds: 5 + name: kube-state-metrics + ports: + - containerPort: 8080 + name: http-metrics + - containerPort: 8081 + name: telemetry + readinessProbe: + httpGet: + path: / + port: 8081 + initialDelaySeconds: 5 + timeoutSeconds: 5 + securityContext: + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + runAsUser: 65534 + nodeSelector: + kubernetes.io/os: linux + serviceAccountName: kube-state-metrics diff --git a/dev/prometheus/dev/yaml/kube-state-metrics-configs/service-account.yaml b/dev/prometheus/dev/yaml/kube-state-metrics-configs/service-account.yaml new file mode 100755 index 0000000..fa8254e --- /dev/null +++ b/dev/prometheus/dev/yaml/kube-state-metrics-configs/service-account.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +automountServiceAccountToken: false +kind: ServiceAccount +metadata: + labels: + app.kubernetes.io/component: exporter + app.kubernetes.io/name: kube-state-metrics + app.kubernetes.io/version: 2.3.0 + name: kube-state-metrics + namespace: kube-system diff --git a/dev/prometheus/dev/yaml/kube-state-metrics-configs/service.yaml b/dev/prometheus/dev/yaml/kube-state-metrics-configs/service.yaml new file mode 100755 index 0000000..164818a --- /dev/null +++ b/dev/prometheus/dev/yaml/kube-state-metrics-configs/service.yaml @@ -0,0 +1,20 @@ +apiVersion: v1 +kind: Service +metadata: + labels: + app.kubernetes.io/component: exporter + app.kubernetes.io/name: kube-state-metrics + app.kubernetes.io/version: 2.3.0 + name: kube-state-metrics + namespace: kube-system +spec: + clusterIP: None + ports: + - name: http-metrics + port: 8080 + targetPort: http-metrics + - name: telemetry + port: 8081 + targetPort: telemetry + selector: + app.kubernetes.io/name: kube-state-metrics diff --git a/dev/prometheus/dev/yaml/prometheus-configmap.yaml b/dev/prometheus/dev/yaml/prometheus-configmap.yaml new file mode 100755 index 0000000..eaaddc1 --- /dev/null +++ b/dev/prometheus/dev/yaml/prometheus-configmap.yaml @@ -0,0 +1,137 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: prometheus-server-conf + labels: + name: prometheus-server-conf + namespace: monitoring +data: + prometheus.rules: |- + groups: + - name: devopscube demo alert + rules: + - alert: High Pod Memory + expr: sum(container_memory_usage_bytes) > 1 + for: 1m + labels: + severity: slack + annotations: + summary: High Memory Usage + prometheus.yml: |- + global: + scrape_interval: 5s + evaluation_interval: 5s + rule_files: + - /etc/prometheus/prometheus.rules + alerting: + alertmanagers: + - scheme: http + static_configs: + - targets: + - "alertmanager.monitoring.svc:9093" + scrape_configs: + - job_name: 'node-exporter' + kubernetes_sd_configs: + - role: endpoints + relabel_configs: + - source_labels: [__meta_kubernetes_endpoints_name] + regex: 'node-exporter' + action: keep + - job_name: 'kubernetes-apiservers' + kubernetes_sd_configs: + - role: endpoints + scheme: https + tls_config: + ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt + bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token + relabel_configs: + - source_labels: [__meta_kubernetes_namespace, __meta_kubernetes_service_name, __meta_kubernetes_endpoint_port_name] + action: keep + regex: default;kubernetes;https + - job_name: 'kubernetes-nodes' + scheme: https + tls_config: + ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt + bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token + kubernetes_sd_configs: + - role: node + relabel_configs: + - action: labelmap + regex: __meta_kubernetes_node_label_(.+) + - target_label: __address__ + replacement: kubernetes.default.svc:443 + - source_labels: [__meta_kubernetes_node_name] + regex: (.+) + target_label: __metrics_path__ + replacement: /api/v1/nodes/${1}/proxy/metrics + - job_name: 'kubernetes-pods' + kubernetes_sd_configs: + - role: pod + relabel_configs: + - source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_scrape] + action: keep + regex: true + - source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_path] + action: replace + target_label: __metrics_path__ + regex: (.+) + - source_labels: [__address__, __meta_kubernetes_pod_annotation_prometheus_io_port] + action: replace + regex: ([^:]+)(?::\d+)?;(\d+) + replacement: $1:$2 + target_label: __address__ + - action: labelmap + regex: __meta_kubernetes_pod_label_(.+) + - source_labels: [__meta_kubernetes_namespace] + action: replace + target_label: kubernetes_namespace + - source_labels: [__meta_kubernetes_pod_name] + action: replace + target_label: kubernetes_pod_name + - job_name: 'kube-state-metrics' + static_configs: + - targets: ['kube-state-metrics.kube-system.svc.cluster.local:8080'] + - job_name: 'kubernetes-cadvisor' + scheme: https + tls_config: + ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt + bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token + kubernetes_sd_configs: + - role: node + relabel_configs: + - action: labelmap + regex: __meta_kubernetes_node_label_(.+) + - target_label: __address__ + replacement: kubernetes.default.svc:443 + - source_labels: [__meta_kubernetes_node_name] + regex: (.+) + target_label: __metrics_path__ + replacement: /api/v1/nodes/${1}/proxy/metrics/cadvisor + - job_name: 'kubernetes-service-endpoints' + kubernetes_sd_configs: + - role: endpoints + relabel_configs: + - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_scrape] + action: keep + regex: true + - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_scheme] + action: replace + target_label: __scheme__ + regex: (https?) + - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_path] + action: replace + target_label: __metrics_path__ + regex: (.+) + - source_labels: [__address__, __meta_kubernetes_service_annotation_prometheus_io_port] + action: replace + target_label: __address__ + regex: ([^:]+)(?::\d+)?;(\d+) + replacement: $1:$2 + - action: labelmap + regex: __meta_kubernetes_service_label_(.+) + - source_labels: [__meta_kubernetes_namespace] + action: replace + target_label: kubernetes_namespace + - source_labels: [__meta_kubernetes_service_name] + action: replace + target_label: kubernetes_name diff --git a/dev/prometheus/dev/yaml/prometheus.yaml b/dev/prometheus/dev/yaml/prometheus.yaml new file mode 100755 index 0000000..75be7bb --- /dev/null +++ b/dev/prometheus/dev/yaml/prometheus.yaml @@ -0,0 +1,86 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: prometheus-deployment + namespace: monitoring + labels: + app: prometheus-server +spec: + replicas: 1 + selector: + matchLabels: + app: prometheus-server + template: + metadata: + labels: + app: prometheus-server + spec: + containers: + - name: prometheus + image: prom/prometheus + args: + - "--config.file=/etc/prometheus/prometheus.yml" + - "--storage.tsdb.path=/prometheus/" + ports: + - containerPort: 9090 + volumeMounts: + - name: prometheus-config-volume + mountPath: /etc/prometheus/ + - name: prometheus-storage-volume + mountPath: /prometheus/ + volumes: + - name: prometheus-config-volume + configMap: + defaultMode: 420 + name: prometheus-server-conf + - name: prometheus-storage-volume + emptyDir: {} +--- +apiVersion: v1 +kind: Service +metadata: + name: prometheus-service + namespace: monitoring + annotations: + prometheus.io/scrape: 'true' + prometheus.io/port: '9090' +spec: + selector: + app: prometheus-server + type: NodePort + ports: + - port: 9090 + targetPort: 9090 + nodePort: 30000 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: prometheus-http-alldcs + namespace: monitoring +spec: + entryPoints: + - web + routes: + - match: Host(`promtheus.alldcs.nl`) + kind: Rule + services: + - name: prometheus-service + port: 8080 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: prometheus-tls-alldcs + namespace: monitoring +spec: + entryPoints: + - websecure + routes: + - match: Host(`prometheus.alldcs.nl`) + kind: Rule + services: + - name: prometheus-service + port: 8080 + tls: + certResolver: letsencrypt diff --git a/dev/prometheus/prod/ingressroute-tls.yaml b/dev/prometheus/prod/ingressroute-tls.yaml new file mode 100755 index 0000000..254a82c --- /dev/null +++ b/dev/prometheus/prod/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: prometheus-tls + namespace: observability +spec: + entryPoints: + - websecure + routes: + - match: Host(`prometheus-prod.allarddcs.nl`) + kind: Rule + services: + - name: kube-prom-stack-kube-prome-prometheus + port: 9090 + tls: + certResolver: letsencrypt diff --git a/dev/prometheus/prod/podmonitor-metallb-spreaker.yaml b/dev/prometheus/prod/podmonitor-metallb-spreaker.yaml new file mode 100644 index 0000000..8155b80 --- /dev/null +++ b/dev/prometheus/prod/podmonitor-metallb-spreaker.yaml @@ -0,0 +1,18 @@ +apiVersion: monitoring.coreos.com/v1 +kind: PodMonitor +metadata: + name: metallb-speaker + namespace: metallb-system + labels: + release: prometheus # important for the Prometheus selector +spec: + selector: + matchLabels: + app.kubernetes.io/component: speaker + namespaceSelector: + matchNames: + - metallb-system + podMetricsEndpoints: + - port: metrics + path: /metrics + interval: 15s diff --git a/dev/prometheus/riscv/clusterRole.yaml b/dev/prometheus/riscv/clusterRole.yaml new file mode 100755 index 0000000..d666b69 --- /dev/null +++ b/dev/prometheus/riscv/clusterRole.yaml @@ -0,0 +1,33 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: prometheus +rules: +- apiGroups: [""] + resources: + - nodes + - nodes/proxy + - services + - endpoints + - pods + verbs: ["get", "list", "watch"] +- apiGroups: + - extensions + resources: + - ingresses + verbs: ["get", "list", "watch"] +- nonResourceURLs: ["/metrics"] + verbs: ["get"] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: prometheus +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: prometheus +subjects: +- kind: ServiceAccount + name: default + namespace: monitoring diff --git a/dev/prometheus/riscv/prometheus-configmap.yaml b/dev/prometheus/riscv/prometheus-configmap.yaml new file mode 100755 index 0000000..eaaddc1 --- /dev/null +++ b/dev/prometheus/riscv/prometheus-configmap.yaml @@ -0,0 +1,137 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: prometheus-server-conf + labels: + name: prometheus-server-conf + namespace: monitoring +data: + prometheus.rules: |- + groups: + - name: devopscube demo alert + rules: + - alert: High Pod Memory + expr: sum(container_memory_usage_bytes) > 1 + for: 1m + labels: + severity: slack + annotations: + summary: High Memory Usage + prometheus.yml: |- + global: + scrape_interval: 5s + evaluation_interval: 5s + rule_files: + - /etc/prometheus/prometheus.rules + alerting: + alertmanagers: + - scheme: http + static_configs: + - targets: + - "alertmanager.monitoring.svc:9093" + scrape_configs: + - job_name: 'node-exporter' + kubernetes_sd_configs: + - role: endpoints + relabel_configs: + - source_labels: [__meta_kubernetes_endpoints_name] + regex: 'node-exporter' + action: keep + - job_name: 'kubernetes-apiservers' + kubernetes_sd_configs: + - role: endpoints + scheme: https + tls_config: + ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt + bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token + relabel_configs: + - source_labels: [__meta_kubernetes_namespace, __meta_kubernetes_service_name, __meta_kubernetes_endpoint_port_name] + action: keep + regex: default;kubernetes;https + - job_name: 'kubernetes-nodes' + scheme: https + tls_config: + ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt + bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token + kubernetes_sd_configs: + - role: node + relabel_configs: + - action: labelmap + regex: __meta_kubernetes_node_label_(.+) + - target_label: __address__ + replacement: kubernetes.default.svc:443 + - source_labels: [__meta_kubernetes_node_name] + regex: (.+) + target_label: __metrics_path__ + replacement: /api/v1/nodes/${1}/proxy/metrics + - job_name: 'kubernetes-pods' + kubernetes_sd_configs: + - role: pod + relabel_configs: + - source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_scrape] + action: keep + regex: true + - source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_path] + action: replace + target_label: __metrics_path__ + regex: (.+) + - source_labels: [__address__, __meta_kubernetes_pod_annotation_prometheus_io_port] + action: replace + regex: ([^:]+)(?::\d+)?;(\d+) + replacement: $1:$2 + target_label: __address__ + - action: labelmap + regex: __meta_kubernetes_pod_label_(.+) + - source_labels: [__meta_kubernetes_namespace] + action: replace + target_label: kubernetes_namespace + - source_labels: [__meta_kubernetes_pod_name] + action: replace + target_label: kubernetes_pod_name + - job_name: 'kube-state-metrics' + static_configs: + - targets: ['kube-state-metrics.kube-system.svc.cluster.local:8080'] + - job_name: 'kubernetes-cadvisor' + scheme: https + tls_config: + ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt + bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token + kubernetes_sd_configs: + - role: node + relabel_configs: + - action: labelmap + regex: __meta_kubernetes_node_label_(.+) + - target_label: __address__ + replacement: kubernetes.default.svc:443 + - source_labels: [__meta_kubernetes_node_name] + regex: (.+) + target_label: __metrics_path__ + replacement: /api/v1/nodes/${1}/proxy/metrics/cadvisor + - job_name: 'kubernetes-service-endpoints' + kubernetes_sd_configs: + - role: endpoints + relabel_configs: + - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_scrape] + action: keep + regex: true + - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_scheme] + action: replace + target_label: __scheme__ + regex: (https?) + - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_path] + action: replace + target_label: __metrics_path__ + regex: (.+) + - source_labels: [__address__, __meta_kubernetes_service_annotation_prometheus_io_port] + action: replace + target_label: __address__ + regex: ([^:]+)(?::\d+)?;(\d+) + replacement: $1:$2 + - action: labelmap + regex: __meta_kubernetes_service_label_(.+) + - source_labels: [__meta_kubernetes_namespace] + action: replace + target_label: kubernetes_namespace + - source_labels: [__meta_kubernetes_service_name] + action: replace + target_label: kubernetes_name diff --git a/dev/prometheus/riscv/prometheus.yaml b/dev/prometheus/riscv/prometheus.yaml new file mode 100755 index 0000000..489d5d6 --- /dev/null +++ b/dev/prometheus/riscv/prometheus.yaml @@ -0,0 +1,87 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: prometheus-deployment + namespace: monitoring + labels: + app: prometheus-server +spec: + replicas: 1 + selector: + matchLabels: + app: prometheus-server + template: + metadata: + labels: + app: prometheus-server + spec: + containers: + - name: prometheus + image: allardkrings/riscv64-prometheus + imagePullPolicy: Always + command: ["prometheus"] + args: + - "--config.file=/etc/prometheus/prometheus.yml" + - "--storage.tsdb.path=/prometheus/" + ports: + - containerPort: 9090 + volumeMounts: +# - name: prometheus-config-volume +# mountPath: /etc/prometheus/ + - name: prometheus-storage-volume + mountPath: /prometheus/ + volumes: + - name: prometheus-config-volume + configMap: + defaultMode: 420 + name: prometheus-server-conf + - name: prometheus-storage-volume + emptyDir: {} +--- +apiVersion: v1 +kind: Service +metadata: + name: prometheus-service + namespace: monitoring + annotations: + prometheus.io/scrape: 'true' + prometheus.io/port: '9090' +spec: + selector: + app: prometheus-server + type: ClusterIP + ports: + - port: 9090 + targetPort: 9090 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: prometheus-http + namespace: monitoring +spec: + entryPoints: + - web + routes: + - match: Host(`prometheus-riscv.allarddcs.nl`) + kind: Rule + services: + - name: prometheus-service + port: 9090 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: prometheus-tls + namespace: monitoring +spec: + entryPoints: + - websecure + routes: + - match: Host(`prometheus-riscv.allarddcs.nl`) + kind: Rule + services: + - name: prometheus-service + port: 9090 + tls: + certResolver: letsencrypt diff --git a/dev/rabbitmq/README.md b/dev/rabbitmq/README.md new file mode 100644 index 0000000..bfa95ed --- /dev/null +++ b/dev/rabbitmq/README.md @@ -0,0 +1,6 @@ +#aanmaken berichten + +Let op , de service in de YAML-file is bewust een nodeport. +Kijk even op welke poort interne poort 5672 wordt geforward en gebruk die in +het GO-programmaatje. + diff --git a/dev/rabbitmq/catalog-info.yaml b/dev/rabbitmq/catalog-info.yaml new file mode 100644 index 0000000..5bb9e19 --- /dev/null +++ b/dev/rabbitmq/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-rabbitmq + title: rabbitmq (dev) + description: rabbitmq instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=rabbitmq" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/rabbitmq + title: rabbitmq-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/rabbitmq/consumer.go b/dev/rabbitmq/consumer.go new file mode 100755 index 0000000..b871ea9 --- /dev/null +++ b/dev/rabbitmq/consumer.go @@ -0,0 +1,55 @@ +package main + +import ( + "log" + + "github.com/streadway/amqp" +) + +func failOnError(err error, msg string) { + if err != nil { + log.Fatalf("%s: %s", msg, err) + } +} + +func main() { + conn, err := amqp.Dial("amqp://guest:guest@localhost:5672/") + failOnError(err, "Failed to connect to RabbitMQ") + defer conn.Close() + + ch, err := conn.Channel() + failOnError(err, "Failed to open a channel") + defer ch.Close() + + q, err := ch.QueueDeclare( + "Dial-DCS-queue", // name + true, // durable + false, // delete when unused + false, // exclusive + false, // no-wait + nil, // arguments + ) + failOnError(err, "Failed to declare a queue") + + msgs, err := ch.Consume( + q.Name, // queue + "", // consumer + true, // auto-ack + false, // exclusive + false, // no-local + false, // no-wait + nil, // args + ) + failOnError(err, "Failed to register a consumer") + + forever := make(chan bool) + + go func() { + for d := range msgs { + log.Printf("Received a message: %s", d.Body) + } + }() + + log.Printf(" [*] Waiting for messages. To exit press CTRL+C") + <-forever +} diff --git a/dev/rabbitmq/go.mod b/dev/rabbitmq/go.mod new file mode 100755 index 0000000..5864384 --- /dev/null +++ b/dev/rabbitmq/go.mod @@ -0,0 +1,8 @@ +module rabbitmq + +go 1.17 + +require ( + github.com/rabbitmq/amqp091-go v1.10.0 // indirect + github.com/streadway/amqp v1.0.0 // indirect +) diff --git a/dev/rabbitmq/go.sum b/dev/rabbitmq/go.sum new file mode 100755 index 0000000..1f42375 --- /dev/null +++ b/dev/rabbitmq/go.sum @@ -0,0 +1,21 @@ +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/rabbitmq/amqp091-go v1.8.1 h1:RejT1SBUim5doqcL6s7iN6SBmsQqyTgXb1xMlH0h1hA= +github.com/rabbitmq/amqp091-go v1.8.1/go.mod h1:+jPrT9iY2eLjRaMSRHUhc3z14E/l85kv/f+6luSD3pc= +github.com/rabbitmq/amqp091-go v1.10.0 h1:STpn5XsHlHGcecLmMFCtg7mqq0RnD+zFr4uzukfVhBw= +github.com/rabbitmq/amqp091-go v1.10.0/go.mod h1:Hy4jKW5kQART1u+JkDTF9YYOQUHXqMuhrgxOEeS7G4o= +github.com/streadway/amqp v1.0.0 h1:kuuDrUJFZL1QYL9hUNuCxNObNzB0bV/ZG5jV3RWAQgo= +github.com/streadway/amqp v1.0.0/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +go.uber.org/goleak v1.2.1/go.mod h1:qlT2yGI9QafXHhZZLxlSuNsMw3FFLxBr+tBRlmO1xH4= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/dev/rabbitmq/mqsend-py.sh b/dev/rabbitmq/mqsend-py.sh new file mode 100755 index 0000000..dd3dcca --- /dev/null +++ b/dev/rabbitmq/mqsend-py.sh @@ -0,0 +1,6 @@ +while true; do + python3 sendMessage.py + sleep 10 +done + + diff --git a/dev/rabbitmq/mqsend.sh b/dev/rabbitmq/mqsend.sh new file mode 100755 index 0000000..d1a421b --- /dev/null +++ b/dev/rabbitmq/mqsend.sh @@ -0,0 +1,6 @@ +while true; do + go run sendMessage.go + sleep 10 +done + + diff --git a/dev/rabbitmq/rabbitmq.yaml b/dev/rabbitmq/rabbitmq.yaml new file mode 100755 index 0000000..9ae02e3 --- /dev/null +++ b/dev/rabbitmq/rabbitmq.yaml @@ -0,0 +1,135 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: rabbitmq + namespace: rabbitmq + labels: + app: rabbitmq +spec: + replicas: 1 + selector: + matchLabels: + app: rabbitmq + template: + metadata: + labels: + app: rabbitmq + spec: + containers: + - name: rabbitmq + image: rabbitmq:3-management-alpine + volumeMounts: + - mountPath: /var/lib/rabbitmq + name: rabbitmq + subPath: rabbitmq/data + - mountPath: /var/log/rabbitmq + name: rabbitmq + subPath: rabbitmq/log + volumes: + - name: rabbitmq + persistentVolumeClaim: + claimName: rabbitmq-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: rabbitmq + namespace: rabbitmq +spec: + ports: + - name: port1 + targetPort: 5672 + port: 5672 + - name: port2 + targetPort: 15672 + port: 15672 + - name: port3 + targetPort: 55670 + port: 55670 + - name: port4 + targetPort: 55674 + port: 55674 + selector: + app: rabbitmq + type: NodePort +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: rabbitmq-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/rabbitmq + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: rabbitmq-pvc + namespace: rabbitmq +spec: + storageClassName: "" + volumeName: rabbitmq-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: rabbitmq-http + namespace: rabbitmq +spec: + entryPoints: + - web + routes: + - match: Host(`rabbitmq-prod.allarddcs.nl`) + kind: Rule + services: + - name: rabbitmq + port: 15672 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: rabbitmq-tls + namespace: rabbitmq +spec: + entryPoints: + - websecure + routes: + - match: Host(`rabbitmq-prod.allarddcs.nl`) + kind: Rule + services: + - name: rabbitmq + port: 15672 + - match: Host(`rabbitmqa-prod.allarddcs.nl`) + kind: Rule + services: + - name: rabbitmq + port: 5672 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: redirect-to-https +spec: + redirectScheme: + scheme: https + permanent: true + diff --git a/dev/rabbitmq/recieveMessage.py b/dev/rabbitmq/recieveMessage.py new file mode 100644 index 0000000..db60f19 --- /dev/null +++ b/dev/rabbitmq/recieveMessage.py @@ -0,0 +1,31 @@ +# example_consumer.py +import pika, os, time + +def alldcs_process_function(msg): +# print(" ALLDCS processing") +# print(" [x] Received " + str(msg)) + print(str(msg)) + + time.sleep(1) # delays for 5 seconds +# print(" ALLDCS processing finished"); + return; + +# Access the CLODUAMQP_URL environment variable and parse it (fallback to localhost) +url = os.environ.get('CLOUDAMQP_URL', 'amqp://guest:guest@localhost:32189/%2f') +params = pika.URLParameters(url) +connection = pika.BlockingConnection(params) +channel = connection.channel() # start a channel +channel.queue_declare(queue='ALLDCS') # Declare a queue + +# create a function which is called on incoming messages +def callback(ch, method, properties, body): + alldcs_process_function(body) + +# set up subscription on the queue +channel.basic_consume('ALLDCS', + callback, + auto_ack=True) + +# start consuming (blocks) +channel.start_consuming() +connection.close() diff --git a/dev/rabbitmq/riscv/create-que.sh b/dev/rabbitmq/riscv/create-que.sh new file mode 100755 index 0000000..6baa128 --- /dev/null +++ b/dev/rabbitmq/riscv/create-que.sh @@ -0,0 +1,6 @@ +./rabbitmqadmin --host=rabbitmq-riscv.allarddcs.nl \ + --port=443 \ + --ssl \ + --username=guest \ + --password=guest \ + declare queue name=testqueue durable=true diff --git a/dev/rabbitmq/riscv/rabbitmq.yaml b/dev/rabbitmq/riscv/rabbitmq.yaml new file mode 100755 index 0000000..b23c9b5 --- /dev/null +++ b/dev/rabbitmq/riscv/rabbitmq.yaml @@ -0,0 +1,150 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: rabbitmq + namespace: rabbitmq + labels: + app: rabbitmq +spec: + replicas: 1 + selector: + matchLabels: + app: rabbitmq + template: + metadata: + labels: + app: rabbitmq + spec: + containers: + - name: rabbitmq + image: docker.io/riscv64/rabbitmq:3-management + volumeMounts: + - mountPath: /var/lib/rabbitmq + name: rabbitmq + subPath: rabbitmq/data + - mountPath: /var/log/rabbitmq + name: rabbitmq + subPath: rabbitmq/log + volumes: + - name: rabbitmq + persistentVolumeClaim: + claimName: rabbitmq-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: rabbitmq + namespace: rabbitmq +spec: + ports: + - name: port1 + targetPort: 5672 + port: 5672 + - name: port2 + targetPort: 15672 + port: 15672 + - name: port3 + targetPort: 55670 + port: 55670 + - name: port4 + targetPort: 55674 + port: 55674 + selector: + app: rabbitmq + type: NodePort +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: rabbitmq-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/rabbitmq/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: rabbitmq-pvc + namespace: rabbitmq +spec: + storageClassName: "" + volumeName: rabbitmq-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: rabbitmq-http + namespace: rabbitmq +spec: + entryPoints: + - web + routes: + - match: Host(`rabbitmq-riscv.allarddcs.nl`) + kind: Rule + middlewares: + - name: redirect-to-https + namespace: rabbitmq + services: + - name: rabbitmq + port: 15672 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: rabbitmq-tls + namespace: rabbitmq +spec: + entryPoints: + - websecure + routes: + - match: Host(`rabbitmq-riscv.allarddcs.nl`) + kind: Rule + services: + - name: rabbitmq + port: 15672 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: redirect-to-https + namespace: rabbitmq +spec: + redirectScheme: + scheme: https + permanent: true +--- +apiVersion: v1 +kind: Service +metadata: + name: rabbitmq-amqp + namespace: rabbitmq +spec: + type: NodePort + ports: + - port: 5672 + targetPort: 5672 + protocol: TCP + nodePort: 31541 # You can specify or let k8s pick one in 30000-32767 range + name: amqp + selector: + app.kubernetes.io/name: rabbitmq + diff --git a/dev/rabbitmq/riscv/rabbitmqadmin b/dev/rabbitmq/riscv/rabbitmqadmin new file mode 100755 index 0000000..f603548 --- /dev/null +++ b/dev/rabbitmq/riscv/rabbitmqadmin @@ -0,0 +1,1190 @@ +#!/usr/bin/env python3 + +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom†refers to Broadcom Inc. and/or its subsidiaries. All rights reserved. + +from __future__ import print_function + +from optparse import OptionParser, TitledHelpFormatter + +import base64 +import copy +import json +import os +import socket +import ssl +import traceback + +try: + from signal import signal, SIGPIPE, SIG_DFL + signal(SIGPIPE, SIG_DFL) +except ImportError: + pass + +import sys + + +def eprint(*args, **kwargs): + print(*args, file=sys.stderr, **kwargs) + + +if sys.version_info[0] < 2 or (sys.version_info[0] == 2 and sys.version_info[1] < 6): + eprint("Sorry, rabbitmqadmin requires at least Python 2.6 (2.7.9 when HTTPS is enabled).") + sys.exit(1) + +if sys.version_info[0] == 2: + from ConfigParser import ConfigParser, NoSectionError + import httplib + import urlparse + from urllib import quote_plus + from urllib import quote + + def b64(s): + return base64.b64encode(s) +else: + from configparser import ConfigParser, NoSectionError + import http.client as httplib + import urllib.parse as urlparse + from urllib.parse import quote_plus + from urllib.parse import quote + + def b64(s): + return base64.b64encode(s.encode('utf-8')).decode('utf-8') + +if sys.version_info[0] == 2: + class ConnectionError(OSError): + pass + + class ConnectionRefusedError(ConnectionError): + pass + +VERSION = '3.13.7' + +LISTABLE = {'connections': {'vhost': False, 'cols': ['name', 'user', 'channels']}, + 'channels': {'vhost': False, 'cols': ['name', 'user']}, + 'consumers': {'vhost': True}, + 'exchanges': {'vhost': True, 'cols': ['name', 'type']}, + 'queues': {'vhost': True, 'cols': ['name', 'messages']}, + 'bindings': {'vhost': True, 'cols': ['source', 'destination', + 'routing_key']}, + 'users': {'vhost': False}, + 'vhosts': {'vhost': False, 'cols': ['name', 'messages']}, + 'permissions': {'vhost': False}, + 'nodes': {'vhost': False, 'cols': ['name', 'type', 'mem_used']}, + 'parameters': {'vhost': False, 'json': ['value']}, + 'policies': {'vhost': False, 'json': ['definition']}, + 'operator_policies': {'vhost': False, 'json': ['definition']}, + 'vhost_limits': {'vhost': False, 'json': ['value']}} + +SHOWABLE = {'overview': {'vhost': False, 'cols': ['rabbitmq_version', + 'cluster_name', + 'queue_totals.messages', + 'object_totals.queues']}} + +PROMOTE_COLUMNS = ['vhost', 'name', 'type', + 'source', 'destination', 'destination_type', 'routing_key'] + +URIS = { + 'exchange': '/exchanges/{vhost}/{name}', + 'queue': '/queues/{vhost}/{name}', + 'binding': '/bindings/{vhost}/e/{source}/{destination_char}/{destination}', + 'binding_del': '/bindings/{vhost}/e/{source}/{destination_char}/{destination}/{properties_key}', + 'vhost': '/vhosts/{name}', + 'user': '/users/{name}', + 'permission': '/permissions/{vhost}/{user}', + 'parameter': '/parameters/{component}/{vhost}/{name}', + 'policy': '/policies/{vhost}/{name}', + 'operator_policy': '/operator-policies/{vhost}/{name}', + 'vhost_limit': '/vhost-limits/{vhost}/{name}' + } + + +def queue_upload_fixup(upload): + # rabbitmq/rabbitmq-management#761 + # + # In general, the fixup_upload argument can be used to fixup/change the + # upload dict after all argument parsing is complete. + # + # This simplifies setting the queue type for a new queue by allowing the + # user to use a queue_type=quorum argument rather than the somewhat confusing + # arguments='{"x-queue-type":"quorum"}' parameter + # + if 'queue_type' in upload: + queue_type = upload.get('queue_type') + arguments = upload.get('arguments', {}) + arguments['x-queue-type'] = queue_type + upload['arguments'] = arguments + + +DECLARABLE = { + 'exchange': {'mandatory': ['name', 'type'], + 'json': ['arguments'], + 'optional': {'auto_delete': 'false', 'durable': 'true', + 'internal': 'false', 'arguments': {}}}, + 'queue': {'mandatory': ['name'], + 'json': ['arguments'], + 'optional': {'auto_delete': 'false', 'durable': 'true', + 'arguments': {}, 'node': None, 'queue_type': None}, + 'fixup_upload': queue_upload_fixup}, + 'binding': {'mandatory': ['source', 'destination'], + 'json': ['arguments'], + 'optional': {'destination_type': 'queue', + 'routing_key': '', 'arguments': {}}}, + 'vhost': {'mandatory': ['name'], + 'optional': {'tracing': None}}, + 'user': {'mandatory': ['name', ['password', 'password_hash'], 'tags'], + 'optional': {'hashing_algorithm': None}}, + 'permission': {'mandatory': ['vhost', 'user', 'configure', 'write', 'read'], + 'optional': {}}, + 'parameter': {'mandatory': ['component', 'name', 'value'], + 'json': ['value'], + 'optional': {}}, + # priority has to be converted to an integer + 'policy': {'mandatory': ['name', 'pattern', 'definition'], + 'json': ['definition', 'priority'], + 'optional': {'priority': 0, 'apply-to': None}}, + 'operator_policy': {'mandatory': ['name', 'pattern', 'definition'], + 'json': ['definition', 'priority'], + 'optional': {'priority': 0, 'apply-to': None}}, + 'vhost_limit': {'mandatory': ['vhost', 'name', 'value'], + 'json': ['value'], + 'optional': {}}, + } + +DELETABLE = { + 'exchange': {'mandatory': ['name']}, + 'queue': {'mandatory': ['name']}, + 'binding': {'mandatory': ['source', 'destination_type', 'destination'], + 'optional': {'properties_key': '~'}}, + 'vhost': {'mandatory': ['name']}, + 'user': {'mandatory': ['name']}, + 'permission': {'mandatory': ['vhost', 'user']}, + 'parameter': {'mandatory': ['component', 'name']}, + 'policy': {'mandatory': ['name']}, + 'operator_policy': {'mandatory': ['name']}, + 'vhost_limit': {'mandatory': ['vhost', 'name']} + } + +CLOSABLE = { + 'connection': {'mandatory': ['name'], + 'optional': {}, + 'uri': '/connections/{name}'} + } + +PURGABLE = { + 'queue': {'mandatory': ['name'], + 'optional': {}, + 'uri': '/queues/{vhost}/{name}/contents'} + } + +EXTRA_VERBS = { + 'publish': {'mandatory': ['routing_key'], + 'optional': {'payload': None, + 'properties': {}, + 'exchange': 'amq.default', + 'payload_encoding': 'string'}, + 'json': ['properties'], + 'uri': '/exchanges/{vhost}/{exchange}/publish'}, + 'get': {'mandatory': ['queue'], + 'optional': {'count': '1', 'ackmode': 'ack_requeue_true', + 'payload_file': None, 'encoding': 'auto'}, + 'uri': '/queues/{vhost}/{queue}/get'} +} + +for k in DECLARABLE: + DECLARABLE[k]['uri'] = URIS[k] + +for k in DELETABLE: + DELETABLE[k]['uri'] = URIS[k] + DELETABLE[k]['optional'] = DELETABLE[k].get('optional', {}) +DELETABLE['binding']['uri'] = URIS['binding_del'] + + +def short_usage(): + return "rabbitmqadmin [options] subcommand" + + +def title(name): + return "\n%s\n%s\n\n" % (name, '=' * len(name)) + + +def subcommands_usage(): + usage = """Usage +===== + """ + short_usage() + """ + + where subcommand is one of: +""" + title("Display") + + for l in LISTABLE: + usage += " list {0} [...]\n".format(l) + for s in SHOWABLE: + usage += " show {0} [...]\n".format(s) + usage += title("Object Manipulation") + usage += fmt_usage_stanza(DECLARABLE, 'declare') + usage += fmt_usage_stanza(DELETABLE, 'delete') + usage += fmt_usage_stanza(CLOSABLE, 'close') + usage += fmt_usage_stanza(PURGABLE, 'purge') + usage += title("Broker Definitions") + usage += """ export + import +""" + usage += title("Publishing and Consuming") + usage += fmt_usage_stanza(EXTRA_VERBS, '') + usage += """ + * If payload is not specified on publish, standard input is used + + * If payload_file is not specified on get, the payload will be shown on + standard output along with the message metadata + + * If payload_file is specified on get, count must not be set +""" + return usage + + +def config_usage(): + usage = "Usage\n=====\n" + short_usage() + usage += "\n" + title("Configuration File") + usage += """ It is possible to specify a configuration file from the command line. + Hosts can be configured easily in a configuration file and called + from the command line. +""" + usage += title("Example") + usage += """ # rabbitmqadmin.conf.example START + + [host_normal] + hostname = localhost + # use 15671 for HTTPS + port = 15672 + username = guest + password = guest + declare_vhost = / # Used as default for declare / delete only + vhost = / # Used as default for declare / delete / list + + [host_https] + hostname = otherhost + port = 15671 + username = guest + password = guest + ssl = True + ssl_key_file = /path/to/client_key.pem + ssl_cert_file = /path/to/client_certificate.pem + + # rabbitmqadmin.conf.example END +""" + usage += title("Use") + usage += """ rabbitmqadmin -c rabbitmqadmin.conf.example -N host_normal ...""" + return usage + + +def more_help(): + return """ +More Help +========= + +For more help use the help subcommand: + + rabbitmqadmin help subcommands # For a list of available subcommands + rabbitmqadmin help config # For help with the configuration file +""" + + +def fmt_required_flag(val): + # when one of the options is required, e.g. + # password vs. password_hash + if type(val) is list: + # flag1=... OR flag2=... OR flag3=... + return "=... OR ".join(val) + else: + return val + + +def fmt_optional_flag(val): + return val + + +def fmt_usage_stanza(root, verb): + def fmt_args(args): + res = " ".join(["{0}=...".format(fmt_required_flag(a)) for a in args['mandatory']]) + opts = " ".join("{0}=...".format(fmt_optional_flag(o)) for o in args['optional'].keys()) + if opts != "": + res += " [{0}]".format(opts) + return res + + text = "" + if verb != "": + verb = " " + verb + for k in root.keys(): + text += " {0} {1} {2}\n".format(verb, k, fmt_args(root[k])) + return text + + +default_options = {"hostname": "localhost", + "port": "15672", + # default config file section name + "node": "default", + "path_prefix": "", + "declare_vhost": "/", + "username": "guest", + "password": "guest", + "ssl": False, + "ssl_insecure": False, + "ssl_disable_hostname_verification": False, + "request_timeout": 120, + "verbose": True, + "format": "table", + "depth": 1, + "bash_completion": False} + + +class MyFormatter(TitledHelpFormatter): + def format_epilog(self, epilog): + return epilog + + +parser = OptionParser(usage=short_usage(), + formatter=MyFormatter(), + epilog=more_help()) + + +def make_parser(): + def add(*args, **kwargs): + key = kwargs['dest'] + if key in default_options: + default = " [default: %s]" % default_options[key] + kwargs['help'] = kwargs['help'] + default + parser.add_option(*args, **kwargs) + + add("-c", "--config", dest="config", + help="configuration file [default: ~/.rabbitmqadmin.conf]", + metavar="CONFIG") + add("-N", "--node", dest="node", + help="node described in the configuration file [default: 'default' only if configuration file is specified]", + metavar="NODE") + add("-H", "--host", dest="hostname", + help="connect to host HOST", + metavar="HOST") + add("-P", "--port", dest="port", + help="connect to port PORT", + metavar="PORT") + add("--path-prefix", dest="path_prefix", + help="use specific URI path prefix for the RabbitMQ HTTP API. /api and operation path will be appended to it. (default: blank string)") + add("-V", "--vhost", dest="vhost", + help="connect to vhost VHOST [default: all vhosts for list, '/' for declare]", + metavar="VHOST") + add("-u", "--username", dest="username", + help="connect using username USERNAME", + metavar="USERNAME") + add("-p", "--password", dest="password", + help="connect using password PASSWORD", + metavar="PASSWORD") + add("-U", "--base-uri", dest="base_uri", + help="connect using a base HTTP API URI. /api and operation path will be appended to it. Path will be ignored. --vhost has to be provided separately.", + metavar="URI") + add("-q", "--quiet", action="store_false", dest="verbose", + help="suppress status messages") + add("-s", "--ssl", action="store_true", dest="ssl", + help="connect with ssl") + add("--ssl-key-file", dest="ssl_key_file", + help="PEM format key file for SSL") + add("--ssl-cert-file", dest="ssl_cert_file", + help="PEM format certificate file for SSL") + add("--ssl-ca-cert-file", dest="ssl_ca_cert_file", + help="PEM format CA certificate file for SSL") + add("--ssl-disable-hostname-verification", dest="ssl_disable_hostname_verification", + help="Disables peer hostname verification", action="store_true") + add("-k", "--ssl-insecure", dest="ssl_insecure", + help="Disables all SSL validations like curl's '-k' argument", action="store_true") + add("-t", "--request-timeout", dest="request_timeout", + help="HTTP request timeout in seconds", type="int") + add("-f", "--format", dest="format", + help="format for listing commands - one of [" + ", ".join(FORMATS.keys()) + "]") + add("-S", "--sort", dest="sort", help="sort key for listing queries") + add("-R", "--sort-reverse", action="store_true", dest="sort_reverse", + help="reverse the sort order") + add("-d", "--depth", dest="depth", + help="maximum depth to recurse for listing tables") + add("--bash-completion", action="store_true", + dest="bash_completion", + help="Print bash completion script") + add("--version", action="store_true", + dest="version", + help="Display version and exit") + + +def default_config(): + home = os.getenv('USERPROFILE') or os.getenv('HOME') + if home is not None: + config_file = home + os.sep + ".rabbitmqadmin.conf" + if os.path.isfile(config_file): + return config_file + return None + + +def make_configuration(): + make_parser() + (cli_options, args) = parser.parse_args() + + if cli_options.version: + print_version() + + setattr(cli_options, "declare_vhost", None) + final_options = copy.copy(cli_options) + + # Resolve config file path + if cli_options.config is None: + config_file = default_config() + if config_file is not None: + setattr(final_options, "config", config_file) + else: + if not os.path.isfile(cli_options.config): + assert_usage(False, "Could not read config file '%s'" % cli_options.config) + + final_options = merge_default_options(cli_options, final_options) + final_options = merge_config_file_options(cli_options, final_options) + final_options = expand_base_uri_options(cli_options, final_options) + + return (final_options, args) + +def merge_default_options(cli_options, final_options): + for (key, default_val) in default_options.items(): + if getattr(cli_options, key) is None: + setattr(final_options, key, default_val) + return final_options + +def merge_config_file_options(cli_options, final_options): + # Parse config file and load it, making sure that CLI flags + # take precedence + if final_options.config is not None: + config_parser = ConfigParser() + try: + config_parser.read(final_options.config) + section_settings = dict(config_parser.items(final_options.node)) + except NoSectionError as error: + # Report if an explicitly provided section (node) does not exist in the file + if final_options.node == "default": + pass + else: + msg = "Could not read section '%s' in config file '%s':\n %s" % (final_options.node, final_options.config, error) + assert_usage(False, msg) + else: + for key, section_val in section_settings.items(): + # if CLI options contain this key, do not set it from the config file + if getattr(cli_options, key) is not None: + continue + # special case for boolean values + if section_val == "True" or section_val == "False": + setattr(final_options, key, section_val == "True") + else: + setattr(final_options, key, section_val) + return final_options + +def expand_base_uri_options(cli_options, final_options): + # if --base-uri is passed, set connection parameters from it + if final_options.base_uri is not None: + u = urlparse.urlparse(final_options.base_uri) + for key in ["hostname", "port", "username", "password"]: + if getattr(u, key) is not None: + setattr(final_options, key, getattr(u, key)) + + if u.path is not None and (u.path != "") and (u.path != "/"): + eprint("WARNING: path in --base-uri is ignored. Please specify --vhost and/or --path-prefix separately.\n") + return final_options + +def assert_usage(expr, error): + if not expr: + eprint("\nERROR: {0}\n".format(error)) + eprint("{0} --help for help\n".format(os.path.basename(sys.argv[0]))) + sys.exit(1) + + +def print_version(): + print("rabbitmqadmin {0}".format(VERSION)) + sys.exit(0) + + +def column_sort_key(col): + if col in PROMOTE_COLUMNS: + return (1, PROMOTE_COLUMNS.index(col)) + else: + return (2, col) + + +def main(): + (options, args) = make_configuration() + if options.bash_completion: + print_bash_completion() + sys.exit(0) + assert_usage(len(args) > 0, 'Action not specified') + mgmt = Management(options, args[1:]) + mode = "invoke_" + args[0] + assert_usage(hasattr(mgmt, mode), + 'Action {0} not understood'.format(args[0])) + method = getattr(mgmt, "invoke_%s" % args[0]) + method() + + +def die(s): + eprint("*** {0}\n".format(s)) + sys.exit(1) + + +def maybe_utf8(s): + if isinstance(s, int): + # s can be also an int for ex messages count + return str(s) + if isinstance(s, float): + # s can be also a float for message rate + return str(s) + if sys.version_info[0] == 3: + # It will have an encoding, which Python will respect + return s + else: + # It won't have an encoding, and Python will pick ASCII by default + return s.encode('utf-8') + + +class Management: + def __init__(self, options, args): + self.options = options + self.args = args + + def get(self, path): + return self.http("GET", "%s/api%s" % (self.options.path_prefix, path), "") + + def put(self, path, body): + return self.http("PUT", "%s/api%s" % (self.options.path_prefix, path), body) + + def post(self, path, body): + return self.http("POST", "%s/api%s" % (self.options.path_prefix, path), body) + + def delete(self, path): + return self.http("DELETE", "%s/api%s" % (self.options.path_prefix, path), "") + + def __initialize_connection(self, hostname, port): + if self.options.ssl: + return self.__initialize_https_connection(hostname, port) + else: + return httplib.HTTPConnection(hostname, port, timeout=self.options.request_timeout) + + def __initialize_https_connection(self, hostname, port): + # Python 2.7.9+ + if hasattr(ssl, 'create_default_context'): + return httplib.HTTPSConnection(hostname, port, context=self.__initialize_tls_context()) + # Python < 2.7.8, note: those versions still have SSLv3 enabled + # and other limitations. See rabbitmq/rabbitmq-management#225 + else: + eprint("WARNING: rabbitmqadmin requires Python 2.7.9+ when HTTPS is used.") + return httplib.HTTPSConnection(hostname, port, + cert_file=self.options.ssl_cert_file, + key_file=self.options.ssl_key_file) + + def __initialize_tls_context(self): + # Python 2.7.9+ only + ssl_ctx = ssl.create_default_context(ssl.Purpose.SERVER_AUTH) + ssl_ctx.options &= ~ssl.OP_NO_SSLv3 + + ssl_insecure = self.options.ssl_insecure + ssl_disable_hostname_verification = ssl_insecure or self.options.ssl_disable_hostname_verification + # Note: you must set check_hostname prior to verify_mode + if ssl_disable_hostname_verification: + ssl_ctx.check_hostname = False + if ssl_insecure: + ssl_ctx.verify_mode = ssl.CERT_NONE + + if self.options.ssl_key_file: + ssl_ctx.load_cert_chain(self.options.ssl_cert_file, + self.options.ssl_key_file) + if self.options.ssl_ca_cert_file: + ssl_ctx.load_verify_locations(self.options.ssl_ca_cert_file) + return ssl_ctx + + def http(self, method, path, body): + conn = self.__initialize_connection(self.options.hostname, self.options.port) + auth = (self.options.username + ":" + self.options.password) + + headers = {"Authorization": "Basic " + b64(auth)} + if body != "": + headers["Content-Type"] = "application/json" + try: + conn.request(method, path, body, headers) + except ConnectionRefusedError as e: + die("Could not connect: {0}".format(e)) + except socket.error as e: + traceback.print_exc() + die("Could not connect: {0}".format(e)) + try: + resp = conn.getresponse() + except socket.timeout: + die("Timed out getting HTTP response (request timeout: {0} seconds)".format( + self.options.request_timeout)) + except (KeyboardInterrupt, SystemExit): + raise + except (Exception): + e_fmt = traceback.format_exc() + die("Error getting HTTP response:\n\n{0}".format(e_fmt)) + if resp.status == 400: + die(json.loads(resp.read())['reason']) + if resp.status == 401: + die("Access refused: {0}".format(path)) + if resp.status == 404: + die("Not found: {0}".format(path)) + if resp.status == 405: + die("Method not allowed: {0}".format(json.loads(resp.read())['reason'])) + if resp.status == 301: + url = urlparse.urlparse(resp.getheader('location')) + [host, port] = url.netloc.split(':') + self.options.hostname = host + self.options.port = int(port) + return self.http(method, url.path + '?' + url.query, body) + if resp.status > 400: + raise Exception("Received response %d %s for path %s\n%s" + % (resp.status, resp.reason, path, resp.read())) + return resp.read().decode('utf-8') + + def verbose(self, string): + if self.options.verbose: + print(string) + + def get_arg(self): + assert_usage(len(self.args) == 1, 'Exactly one argument required') + return self.args[0] + + def use_cols(self): + # Deliberately do not cast to int here; we only care about the + # default, not explicit setting. + return self.options.depth == 1 and ('json' not in self.options.format) + + def invoke_help(self): + if len(self.args) == 0: + parser.print_help() + else: + help_cmd = self.get_arg() + if help_cmd == 'subcommands': + usage = subcommands_usage() + elif help_cmd == 'config': + usage = config_usage() + else: + assert_usage(False, """help topic must be one of: + subcommands + config""") + print(usage) + sys.exit(0) + + def invoke_publish(self): + (uri, upload) = self.parse_args(self.args, EXTRA_VERBS['publish']) + if 'payload' not in upload: + data = sys.stdin.read() + upload['payload'] = b64(data) + upload['payload_encoding'] = 'base64' + resp = json.loads(self.post(uri, json.dumps(upload))) + if resp['routed']: + self.verbose("Message published") + else: + self.verbose("Message published but NOT routed") + + def invoke_get(self): + (uri, upload) = self.parse_args(self.args, EXTRA_VERBS['get']) + payload_file = 'payload_file' in upload and upload['payload_file'] or None + assert_usage(not payload_file or upload['count'] == '1', + 'Cannot get multiple messages using payload_file') + result = self.post(uri, json.dumps(upload)) + if payload_file: + write_payload_file(payload_file, result) + columns = ['routing_key', 'exchange', 'message_count', + 'payload_bytes', 'redelivered'] + format_list(result, columns, {}, self.options) + else: + format_list(result, [], {}, self.options) + + def invoke_export(self): + path = self.get_arg() + uri = "/definitions" + if self.options.vhost: + uri += "/%s" % quote_plus(self.options.vhost) + definitions = self.get(uri) + with open(path, 'wb') as f: + f.write(definitions.encode()) + self.verbose("Exported definitions for %s to \"%s\"" + % (self.options.hostname, path)) + + def invoke_import(self): + path = self.get_arg() + with open(path, 'rb') as f: + definitions = f.read() + uri = "/definitions" + if self.options.vhost: + uri += "/%s" % quote_plus(self.options.vhost) + self.post(uri, definitions) + self.verbose("Uploaded definitions from \"%s\" to %s. The import process may take some time. Consult server logs to track progress." + % (self.options.hostname, path)) + + def invoke_list(self): + (uri, obj_info, cols) = self.list_show_uri(LISTABLE, 'list') + format_list(self.get(uri), cols, obj_info, self.options) + + def invoke_show(self): + (uri, obj_info, cols) = self.list_show_uri(SHOWABLE, 'show') + format_list('[{0}]'.format(self.get(uri)), cols, obj_info, self.options) + + def _list_path_for_obj_type(self, obj_type): + # This returns a URL path for given object type, e.g. + # replaces underscores in command names with + # dashes that HTTP API endpoints use + return obj_type.replace("_", "-") + + def list_show_uri(self, obj_types, verb): + obj_type = self.args[0] + assert_usage(obj_type in obj_types, + "Don't know how to {0} {1}".format(verb, obj_type)) + obj_info = obj_types[obj_type] + uri = "/%s" % self._list_path_for_obj_type(obj_type) + query = [] + if obj_info['vhost'] and self.options.vhost: + uri += "/%s" % quote_plus(self.options.vhost) + cols = self.args[1:] + if cols == [] and 'cols' in obj_info and self.use_cols(): + cols = obj_info['cols'] + if cols != []: + query.append("columns=" + ",".join(cols)) + sort = self.options.sort + if sort: + query.append("sort=" + sort) + if self.options.sort_reverse: + query.append("sort_reverse=true") + query = "&".join(query) + if query != "": + uri += "?" + query + return (uri, obj_info, cols) + + def invoke_declare(self): + (obj_type, uri, upload) = self.declare_delete_parse(DECLARABLE) + if obj_type == 'binding': + self.post(uri, json.dumps(upload)) + else: + self.put(uri, json.dumps(upload)) + self.verbose("{0} declared".format(obj_type)) + + def invoke_delete(self): + (obj_type, uri, upload) = self.declare_delete_parse(DELETABLE) + self.delete(uri) + self.verbose("{0} deleted".format(obj_type)) + + def invoke_close(self): + (obj_type, uri, upload) = self.declare_delete_parse(CLOSABLE) + self.delete(uri) + self.verbose("{0} closed".format(obj_type)) + + def invoke_purge(self): + (obj_type, uri, upload) = self.declare_delete_parse(PURGABLE) + self.delete(uri) + self.verbose("{0} purged".format(obj_type)) + + def declare_delete_parse(self, root): + assert_usage(len(self.args) > 0, 'Type not specified') + obj_type = self.args[0] + assert_usage(obj_type in root, + 'Type {0} not recognised'.format(obj_type)) + obj = root[obj_type] + (uri, upload) = self.parse_args(self.args[1:], obj) + return (obj_type, uri, upload) + + def assert_mandatory_keys(self, mandatory, upload): + for m in mandatory: + if type(m) is list: + a_set = set(m) + b_set = set(upload.keys()) + assert_usage((a_set & b_set), + 'one of mandatory arguments "{0}" is required'.format(m)) + else: + assert_usage(m in upload.keys(), + 'mandatory argument "{0}" is required'.format(m)) + + def parse_args(self, args, obj): + mandatory = obj['mandatory'] + optional = obj['optional'] + uri_template = obj['uri'] + upload = {} + for k in optional.keys(): + if optional[k] is not None: + upload[k] = optional[k] + for arg in args: + assert_usage("=" in arg, + 'Argument "{0}" not in the name=value format'.format(arg)) + (name, value) = arg.split("=", 1) + # flatten the list of mandatory keys + mandatory_keys = [] + for key in mandatory: + if type(key) is list: + for subkey in key: + mandatory_keys.append(subkey) + else: + mandatory_keys.append(key) + + assert_usage(name in mandatory_keys or name in optional.keys(), + 'Argument "{0}" is not recognised'.format(name)) + + if 'json' in obj and name in obj['json']: + upload[name] = self.parse_json(value) + else: + upload[name] = value + self.assert_mandatory_keys(mandatory, upload) + if 'vhost' not in mandatory: + upload['vhost'] = self.options.vhost or self.options.declare_vhost + uri_args = {} + for k in upload: + v = upload[k] + if v and isinstance(v, (str, bytes)): + uri_args[k] = quote(v, '') + if k == 'destination_type': + uri_args['destination_char'] = v[0] + uri = uri_template.format(**uri_args) + if 'fixup_upload' in obj: + fixup = obj['fixup_upload'] + fixup(upload) + return (uri, upload) + + def parse_json(self, text): + try: + return json.loads(text) + except ValueError: + eprint("ERROR: Could not parse JSON:\n {0}".format(text)) + sys.exit(1) + + +def format_list(json_list, columns, args, options): + format = options.format + formatter = None + if format == "raw_json": + print(json_list) + return + elif format == "pretty_json": + json_list_parsed = json.loads(json_list) + print(json.dumps(json_list_parsed, + skipkeys=False, ensure_ascii=False, check_circular=True, + allow_nan=True, sort_keys=True, indent=2)) + return + else: + formatter = FORMATS[format] + assert_usage(formatter is not None, + "Format {0} not recognised".format(format)) + formatter_instance = formatter(columns, args, options) + formatter_instance.display(json_list) + + +class Lister: + def verbose(self, string): + if self.options.verbose: + print(string) + + def display(self, json_list): + depth = sys.maxsize + if len(self.columns) == 0: + depth = int(self.options.depth) + (columns, table) = self.list_to_table(json.loads(json_list), depth) + if len(table) > 0: + self.display_list(columns, table) + else: + self.verbose("No items") + + def list_to_table(self, items, max_depth): + columns = {} + column_ix = {} + row = None + table = [] + + def add(prefix, depth, item, fun): + for key in item: + column = prefix == '' and key or (prefix + '.' + key) + subitem = item[key] + if type(subitem) == dict: + if 'json' in self.obj_info and key in self.obj_info['json']: + fun(column, json.dumps(subitem)) + else: + if depth < max_depth: + add(column, depth + 1, subitem, fun) + elif type(subitem) == list: + # The first branch has mirrors in queues in + # mind (which come out looking decent); the second + # one has applications in nodes (which look less + # so, but what would look good?). + if [x for x in subitem if type(x) != str] == []: + serialised = " ".join(subitem) + else: + serialised = json.dumps(subitem) + fun(column, serialised) + else: + fun(column, subitem) + + def add_to_columns(col, val): + columns[col] = True + + def add_to_row(col, val): + if col in column_ix: + if val is not None: + row[column_ix[col]] = maybe_utf8(val) + else: + row[column_ix[col]] = None + + if len(self.columns) == 0: + for item in items: + add('', 1, item, add_to_columns) + columns = list(columns.keys()) + columns.sort(key=column_sort_key) + else: + columns = self.columns + + for i in range(0, len(columns)): + column_ix[columns[i]] = i + for item in items: + row = len(columns) * [''] + add('', 1, item, add_to_row) + table.append(row) + + return (columns, table) + + +class TSVList(Lister): + def __init__(self, columns, obj_info, options): + self.columns = columns + self.obj_info = obj_info + self.options = options + + def display_list(self, columns, table): + head = "\t".join(columns) + self.verbose(head) + + for row in table: + line = "\t".join(row) + print(line) + + +class LongList(Lister): + def __init__(self, columns, obj_info, options): + self.columns = columns + self.obj_info = obj_info + self.options = options + + def display_list(self, columns, table): + sep = "\n" + "-" * 80 + "\n" + max_width = 0 + for col in columns: + max_width = max(max_width, len(col)) + fmt = "{0:>" + str(max_width) + "}: {1}" + print(sep) + for i in range(0, len(table)): + for j in range(0, len(columns)): + print(fmt.format(columns[j], table[i][j])) + print(sep) + + +class TableList(Lister): + def __init__(self, columns, obj_info, options): + self.columns = columns + self.obj_info = obj_info + self.options = options + + def display_list(self, columns, table): + total = [columns] + total.extend(table) + self.ascii_table(total) + + def ascii_table(self, rows): + col_widths = [0] * len(rows[0]) + for i in range(0, len(rows[0])): + for j in range(0, len(rows)): + col_widths[i] = max(col_widths[i], len(rows[j][i])) + self.ascii_bar(col_widths) + self.ascii_row(col_widths, rows[0], "^") + self.ascii_bar(col_widths) + for row in rows[1:]: + self.ascii_row(col_widths, row, "<") + self.ascii_bar(col_widths) + + def ascii_row(self, col_widths, row, align): + txt = "|" + for i in range(0, len(col_widths)): + fmt = " {0:" + align + str(col_widths[i]) + "} " + txt += fmt.format(row[i]) + "|" + print(txt) + + def ascii_bar(self, col_widths): + txt = "+" + for w in col_widths: + txt += ("-" * (w + 2)) + "+" + print(txt) + + +class KeyValueList(Lister): + def __init__(self, columns, obj_info, options): + self.columns = columns + self.obj_info = obj_info + self.options = options + + def display_list(self, columns, table): + for i in range(0, len(table)): + row = [] + for j in range(0, len(columns)): + row.append("{0}=\"{1}\"".format(columns[j], table[i][j])) + print(" ".join(row)) + + +# TODO handle spaces etc in completable names +class BashList(Lister): + def __init__(self, columns, obj_info, options): + self.columns = columns + self.obj_info = obj_info + self.options = options + + def display_list(self, columns, table): + ix = None + for i in range(0, len(columns)): + if columns[i] == 'name': + ix = i + if ix is not None: + res = [] + for row in table: + res.append(row[ix]) + print(" ".join(res)) + + +FORMATS = { + # Special cased + 'raw_json': None, + # Ditto + 'pretty_json': None, + 'tsv': TSVList, + 'long': LongList, + 'table': TableList, + 'kvp': KeyValueList, + 'bash': BashList +} + + +def write_payload_file(payload_file, json_list): + result = json.loads(json_list)[0] + payload = result['payload'] + payload_encoding = result['payload_encoding'] + with open(payload_file, 'wb') as f: + if payload_encoding == 'base64': + data = base64.b64decode(payload) + else: + data = payload + f.write(data.encode("utf-8")) + + +def print_bash_completion(): + script = """# This is a bash completion script for rabbitmqadmin. +# Redirect it to a file, then source it or copy it to /etc/bash_completion.d +# to get tab completion. rabbitmqadmin must be on your PATH for this to work. +_rabbitmqadmin() +{ + local cur prev opts base + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + + opts="list show declare delete close purge import export get publish help" + fargs="--help --host --port --vhost --username --password --format --depth --sort --sort-reverse" + + case "${prev}" in + list) + COMPREPLY=( $(compgen -W '""" + " ".join(LISTABLE) + """' -- ${cur}) ) + return 0 + ;; + show) + COMPREPLY=( $(compgen -W '""" + " ".join(SHOWABLE) + """' -- ${cur}) ) + return 0 + ;; + declare) + COMPREPLY=( $(compgen -W '""" + " ".join(DECLARABLE.keys()) + """' -- ${cur}) ) + return 0 + ;; + delete) + COMPREPLY=( $(compgen -W '""" + " ".join(DELETABLE.keys()) + """' -- ${cur}) ) + return 0 + ;; + close) + COMPREPLY=( $(compgen -W '""" + " ".join(CLOSABLE.keys()) + """' -- ${cur}) ) + return 0 + ;; + purge) + COMPREPLY=( $(compgen -W '""" + " ".join(PURGABLE.keys()) + """' -- ${cur}) ) + return 0 + ;; + export) + COMPREPLY=( $(compgen -f ${cur}) ) + return 0 + ;; + import) + COMPREPLY=( $(compgen -f ${cur}) ) + return 0 + ;; + help) + opts="subcommands config" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + -H) + COMPREPLY=( $(compgen -A hostname ${cur}) ) + return 0 + ;; + --host) + COMPREPLY=( $(compgen -A hostname ${cur}) ) + return 0 + ;; + -V) + opts="$(rabbitmqadmin -q -f bash list vhosts)" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + --vhost) + opts="$(rabbitmqadmin -q -f bash list vhosts)" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + -u) + opts="$(rabbitmqadmin -q -f bash list users)" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + --username) + opts="$(rabbitmqadmin -q -f bash list users)" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + -f) + COMPREPLY=( $(compgen -W \"""" + " ".join(FORMATS.keys()) + """\" -- ${cur}) ) + return 0 + ;; + --format) + COMPREPLY=( $(compgen -W \"""" + " ".join(FORMATS.keys()) + """\" -- ${cur}) ) + return 0 + ;; + +""" + for l in LISTABLE: + key = l[0:len(l) - 1] + script += " " + key + """) + opts="$(rabbitmqadmin -q -f bash list """ + l + """)" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; +""" + script += """ *) + ;; + esac + + COMPREPLY=($(compgen -W "${opts} ${fargs}" -- ${cur})) + return 0 +} +complete -F _rabbitmqadmin rabbitmqadmin +""" + print(script) + + +if __name__ == "__main__": + main() diff --git a/dev/rabbitmq/riscv/read-message.sh b/dev/rabbitmq/riscv/read-message.sh new file mode 100755 index 0000000..3040f36 --- /dev/null +++ b/dev/rabbitmq/riscv/read-message.sh @@ -0,0 +1,8 @@ +./rabbitmqadmin \ + --host=rabbitmq-riscv.allarddcs.nl \ + --port=443 \ + --ssl \ + --username=guest \ + --password=guest \ + get queue=testqueue count=1 \ + --arguments='{"requeue":false}' diff --git a/dev/rabbitmq/riscv/send-message.sh b/dev/rabbitmq/riscv/send-message.sh new file mode 100755 index 0000000..807e1e4 --- /dev/null +++ b/dev/rabbitmq/riscv/send-message.sh @@ -0,0 +1,6 @@ +./rabbitmqadmin --host=rabbitmq-riscv.allarddcs.nl \ + --port=443 \ + --ssl \ + --username=guest \ + --password=guest \ + publish routing_key=testqueue payload="Hello from CLI" diff --git a/dev/rabbitmq/sendMessage.go b/dev/rabbitmq/sendMessage.go new file mode 100755 index 0000000..30f9edb --- /dev/null +++ b/dev/rabbitmq/sendMessage.go @@ -0,0 +1,53 @@ +package main + +import ( + "log" + +// "github.com/streadway/amqp" + "github.com/rabbitmq/amqp091-go" +) + +// Here we set the way error messages are displayed in the terminal. +func failOnError(err error, msg string) { + if err != nil { + log.Fatalf("%s: %s", msg, err) + } +} + +func main() { + // Here we connect to RabbitMQ or send a message if there are any errors connecting. + conn, err := amqp091.Dial("amqp://guest:guest@localhost:32189/") + failOnError(err, "Failed to connect to RabbitMQ") + defer conn.Close() + + ch, err := conn.Channel() + failOnError(err, "Failed to open a channel") + defer ch.Close() + + // We create a Queue to send the message to. + q, err := ch.QueueDeclare( + "ALL-DCS-queue", // name + true, // durable + false, // delete when unused + false, // exclusive + false, // no-wait + nil, // arguments + ) + failOnError(err, "Failed to declare a queue") + + // We set the payload for the message. + body := "Hallo Diederick, let's go hack!" + err = ch.Publish( + "", // exchange + q.Name, // routing key + false, // mandatory + false, // immediate + amqp091.Publishing{ + DeliveryMode: amqp091.Persistent, + ContentType: "text/plain", + Body: []byte(body), + }) + // If there is an error publishing the message, a log will be displayed in the terminal. + failOnError(err, "Failed to publish a message") + log.Printf(" [x] Congrats, sending message: %s", body) +} diff --git a/dev/rabbitmq/sendMessage.py b/dev/rabbitmq/sendMessage.py new file mode 100644 index 0000000..aaea0a7 --- /dev/null +++ b/dev/rabbitmq/sendMessage.py @@ -0,0 +1,17 @@ +# example_publisher.py +import pika, os, logging +logging.basicConfig() + +# Parse CLODUAMQP_URL (fallback to localhost) +url = os.environ.get('CLOUDAMQP_URL', 'amqp://guest:guest@localhost:32189/%2f') +params = pika.URLParameters(url) +params.socket_timeout = 5 + +connection = pika.BlockingConnection(params) # Connect to CloudAMQP +channel = connection.channel() # start a channel +channel.queue_declare(queue='ALLDCS') # Declare a queue +# send a message + +channel.basic_publish(exchange='', routing_key='ALLDCS', body='Hello Diederick, lets go hack!!!') +print ("[x] Message sent to consumer") +connection.close() diff --git a/dev/redis/README.md b/dev/redis/README.md new file mode 100644 index 0000000..3695e2a --- /dev/null +++ b/dev/redis/README.md @@ -0,0 +1,54 @@ +#installatie: + +helm install redis bitnami/redis -n redis -f values.yaml + +#resultaat: + +NAME: redis +LAST DEPLOYED: Wed Apr 3 10:11:09 2024 +NAMESPACE: redis +STATUS: deployed +REVISION: 1 +TEST SUITE: None +NOTES: +CHART NAME: redis +CHART VERSION: 19.0.1 +APP VERSION: 7.2.4 + +** Please be patient while the chart is being deployed ** + +Redis® can be accessed on the following DNS names from within your cluster: + + redis-master.redis.svc.cluster.local for read/write operations (port 6379) + redis-replicas.redis.svc.cluster.local for read-only operations (port 6379) + + + +To get your password run: + + export REDIS_PASSWORD=$(kubectl get secret --namespace redis redis -o jsonpath="{.data.redis-password}" | base64 -d) + +To connect to your Redis® server: + +1. Run a Redis® pod that you can use as a client: + + kubectl run --namespace redis redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.2.4-debian-12-r9 --command -- sleep infinity + + Use the following command to attach to the pod: + + kubectl exec --tty -i redis-client \ + --namespace redis -- bash + +2. Connect using the Redis® CLI: + REDISCLI_AUTH="$REDIS_PASSWORD" redis-cli -h redis-master + REDISCLI_AUTH="$REDIS_PASSWORD" redis-cli -h redis-replicas + +To connect to your database from outside the cluster execute the following commands: + + kubectl port-forward --namespace redis svc/redis-master 6379:6379 & + REDISCLI_AUTH="$REDIS_PASSWORD" redis-cli -h 127.0.0.1 -p 6379 + +WARNING: There are "resources" sections in the chart not set. Using "resourcesPreset" is not recommended for production. For production installations, please set the following values according to your workload needs: + - master.resources + - replica.resources ++info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ diff --git a/dev/redis/catalog-info.yaml b/dev/redis/catalog-info.yaml new file mode 100644 index 0000000..0cd9854 --- /dev/null +++ b/dev/redis/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-redis + title: redis (dev) + description: redis instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=redis" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/redis + title: redis-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/redis/pvc.yaml b/dev/redis/pvc.yaml new file mode 100755 index 0000000..e0b00e1 --- /dev/null +++ b/dev/redis/pvc.yaml @@ -0,0 +1,136 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: redis-master-0 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/redis/master-0 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: redis-replicas-0 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/redis/replicas-0 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: redis-replicas-1 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/redis/replicas-1 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: redis-replicas-2 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/redis/replicas-2 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: redis-data-redis-master-0 + namespace: redis +spec: + storageClassName: "" + volumeName: redis-master-0 + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: redis-data-redis-replicas-0 + namespace: redis +spec: + storageClassName: "" + volumeName: redis-replicas-0 + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: redis-data-redis-replicas-1 + namespace: redis +spec: + storageClassName: "" + volumeName: redis-replicas-1 + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: redis-data-redis-replicas-2 + namespace: redis +spec: + storageClassName: "" + volumeName: redis-replicas-2 + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/dev/redis/values.yaml b/dev/redis/values.yaml new file mode 100644 index 0000000..1dc046c --- /dev/null +++ b/dev/redis/values.yaml @@ -0,0 +1,2153 @@ +# Copyright VMware, Inc. +# SPDX-License-Identifier: APACHE-2.0 + +## @section Global parameters +## Global Docker image parameters +## Please, note that this will override the image parameters, including dependencies, configured to use the global value +## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass +## + +## @param global.imageRegistry Global Docker image registry +## @param global.imagePullSecrets Global Docker registry secret names as an array +## @param global.storageClass Global StorageClass for Persistent Volume(s) +## @param global.redis.password Global Redis® password (overrides `auth.password`) +## +global: + imageRegistry: "" + ## E.g. + ## imagePullSecrets: + ## - myRegistryKeySecretName + ## + imagePullSecrets: [] + storageClass: "" + redis: + password: "" + ## Compatibility adaptations for Kubernetes platforms + ## + compatibility: + ## Compatibility adaptations for Openshift + ## + openshift: + ## @param global.compatibility.openshift.adaptSecurityContext Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) + ## + adaptSecurityContext: auto +## @section Common parameters +## + +## @param kubeVersion Override Kubernetes version +## +kubeVersion: "" +## @param nameOverride String to partially override common.names.fullname +## +nameOverride: "" +## @param fullnameOverride String to fully override common.names.fullname +## +fullnameOverride: "" +## @param namespaceOverride String to fully override common.names.namespace +## +namespaceOverride: "" +## @param commonLabels Labels to add to all deployed objects +## +commonLabels: {} +## @param commonAnnotations Annotations to add to all deployed objects +## +commonAnnotations: {} +## @param secretAnnotations Annotations to add to secret +## +secretAnnotations: {} +## @param clusterDomain Kubernetes cluster domain name +## +clusterDomain: cluster.local +## @param extraDeploy Array of extra objects to deploy with the release +## +extraDeploy: [] +## @param useHostnames Use hostnames internally when announcing replication. If false, the hostname will be resolved to an IP address +## +useHostnames: true +## @param nameResolutionThreshold Failure threshold for internal hostnames resolution +## +nameResolutionThreshold: 5 +## @param nameResolutionTimeout Timeout seconds between probes for internal hostnames resolution +## +nameResolutionTimeout: 5 +## Enable diagnostic mode in the deployment +## +diagnosticMode: + ## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden) + ## + enabled: false + ## @param diagnosticMode.command Command to override all containers in the deployment + ## + command: + - sleep + ## @param diagnosticMode.args Args to override all containers in the deployment + ## + args: + - infinity +## @section Redis® Image parameters +## + +## Bitnami Redis® image +## ref: https://hub.docker.com/r/bitnami/redis/tags/ +## @param image.registry [default: REGISTRY_NAME] Redis® image registry +## @param image.repository [default: REPOSITORY_NAME/redis] Redis® image repository +## @skip image.tag Redis® image tag (immutable tags are recommended) +## @param image.digest Redis® image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag +## @param image.pullPolicy Redis® image pull policy +## @param image.pullSecrets Redis® image pull secrets +## @param image.debug Enable image debug mode +## +image: + registry: docker.io + repository: bitnamilegacy/redis + tag: 7.2.4-debian-12-r9 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false +## @section Redis® common configuration parameters +## https://github.com/bitnami/containers/tree/main/bitnami/redis#configuration +## + +## @param architecture Redis® architecture. Allowed values: `standalone` or `replication` +## +architecture: replication +## Redis® Authentication parameters +## ref: https://github.com/bitnami/containers/tree/main/bitnami/redis#setting-the-server-password-on-first-run +## +auth: + ## @param auth.enabled Enable password authentication + ## + enabled: true + ## @param auth.sentinel Enable password authentication on sentinels too + ## + sentinel: false + ## @param auth.password Redis® password + ## Defaults to a random 10-character alphanumeric string if not set + ## + password: "Redis01@" + ## @param auth.existingSecret The name of an existing secret with Redis® credentials + ## NOTE: When it's set, the previous `auth.password` parameter is ignored + ## + existingSecret: "" + ## @param auth.existingSecretPasswordKey Password key to be retrieved from existing secret + ## NOTE: ignored unless `auth.existingSecret` parameter is set + ## + existingSecretPasswordKey: "" + ## @param auth.usePasswordFiles Mount credentials as files instead of using an environment variable + ## + usePasswordFiles: false + ## @param auth.usePasswordFileFromSecret Mount password file from secret + ## + usePasswordFileFromSecret: true +## @param commonConfiguration [string] Common configuration to be added into the ConfigMap +## ref: https://redis.io/topics/config +## +commonConfiguration: |- + # Enable AOF https://redis.io/topics/persistence#append-only-file + appendonly yes + # Disable RDB persistence, AOF persistence already enabled. + save "" +## @param existingConfigmap The name of an existing ConfigMap with your custom configuration for Redis® nodes +## +existingConfigmap: "" +## @section Redis® master configuration parameters +## +master: + ## @param master.count Number of Redis® master instances to deploy (experimental, requires additional configuration) + ## + count: 1 + ## @param master.configuration Configuration for Redis® master nodes + ## ref: https://redis.io/topics/config + ## + configuration: "" + ## @param master.disableCommands Array with Redis® commands to disable on master nodes + ## Commands will be completely disabled by renaming each to an empty string. + ## ref: https://redis.io/topics/security#disabling-of-specific-commands + ## + disableCommands: + - FLUSHDB + - FLUSHALL + ## @param master.command Override default container command (useful when using custom images) + ## + command: [] + ## @param master.args Override default container args (useful when using custom images) + ## + args: [] + ## @param master.enableServiceLinks Whether information about services should be injected into pod's environment variable + ## + enableServiceLinks: true + ## @param master.preExecCmds Additional commands to run prior to starting Redis® master + ## + preExecCmds: [] + ## @param master.extraFlags Array with additional command line flags for Redis® master + ## e.g: + ## extraFlags: + ## - "--maxmemory-policy volatile-ttl" + ## - "--repl-backlog-size 1024mb" + ## + extraFlags: [] + ## @param master.extraEnvVars Array with extra environment variables to add to Redis® master nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param master.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Redis® master nodes + ## + extraEnvVarsCM: "" + ## @param master.extraEnvVarsSecret Name of existing Secret containing extra env vars for Redis® master nodes + ## + extraEnvVarsSecret: "" + ## @param master.containerPorts.redis Container port to open on Redis® master nodes + ## + containerPorts: + redis: 6379 + ## Configure extra options for Redis® containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param master.startupProbe.enabled Enable startupProbe on Redis® master nodes + ## @param master.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param master.startupProbe.periodSeconds Period seconds for startupProbe + ## @param master.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param master.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param master.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 5 + ## @param master.livenessProbe.enabled Enable livenessProbe on Redis® master nodes + ## @param master.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param master.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param master.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param master.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param master.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 5 + ## @param master.readinessProbe.enabled Enable readinessProbe on Redis® master nodes + ## @param master.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param master.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param master.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param master.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param master.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 1 + successThreshold: 1 + failureThreshold: 5 + ## @param master.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param master.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param master.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Redis® master resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param master.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if master.resources is set (master.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param master.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param master.podSecurityContext.enabled Enabled Redis® master pods' Security Context + ## @param master.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param master.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param master.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param master.podSecurityContext.fsGroup Set Redis® master pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param master.containerSecurityContext.enabled Enabled Redis® master containers' Security Context + ## @param master.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param master.containerSecurityContext.runAsUser Set Redis® master containers' Security Context runAsUser + ## @param master.containerSecurityContext.runAsGroup Set Redis® master containers' Security Context runAsGroup + ## @param master.containerSecurityContext.runAsNonRoot Set Redis® master containers' Security Context runAsNonRoot + ## @param master.containerSecurityContext.allowPrivilegeEscalation Is it possible to escalate Redis® pod(s) privileges + ## @param master.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context read-only root filesystem + ## @param master.containerSecurityContext.seccompProfile.type Set Redis® master containers' Security Context seccompProfile + ## @param master.containerSecurityContext.capabilities.drop Set Redis® master containers' Security Context capabilities to drop + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + seccompProfile: + type: RuntimeDefault + capabilities: + drop: ["ALL"] + ## @param master.kind Use either Deployment, StatefulSet (default) or DaemonSet + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/ + ## + kind: StatefulSet + ## @param master.schedulerName Alternate scheduler for Redis® master pods + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param master.updateStrategy.type Redis® master statefulset strategy type + ## @skip master.updateStrategy.rollingUpdate + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + ## StrategyType + ## Can be set to RollingUpdate, OnDelete (statefulset), Recreate (deployment) + ## + type: RollingUpdate + ## @param master.minReadySeconds How many seconds a pod needs to be ready before killing the next, during update + ## + minReadySeconds: 0 + ## @param master.priorityClassName Redis® master pods' priorityClassName + ## + priorityClassName: "" + ## @param master.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: false + ## @param master.hostAliases Redis® master pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param master.podLabels Extra labels for Redis® master pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param master.podAnnotations Annotations for Redis® master pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param master.shareProcessNamespace Share a single process namespace between all of the containers in Redis® master pods + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/ + ## + shareProcessNamespace: false + ## @param master.podAffinityPreset Pod affinity preset. Ignored if `master.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param master.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `master.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node master.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param master.nodeAffinityPreset.type Node affinity preset type. Ignored if `master.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param master.nodeAffinityPreset.key Node label key to match. Ignored if `master.affinity` is set + ## + key: "" + ## @param master.nodeAffinityPreset.values Node label values to match. Ignored if `master.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param master.affinity Affinity for Redis® master pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `master.podAffinityPreset`, `master.podAntiAffinityPreset`, and `master.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param master.nodeSelector Node labels for Redis® master pods assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param master.tolerations Tolerations for Redis® master pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param master.topologySpreadConstraints Spread Constraints for Redis® master pod assignment + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## E.g. + ## topologySpreadConstraints: + ## - maxSkew: 1 + ## topologyKey: node + ## whenUnsatisfiable: DoNotSchedule + ## + topologySpreadConstraints: [] + ## @param master.dnsPolicy DNS Policy for Redis® master pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/ + ## E.g. + ## dnsPolicy: ClusterFirst + ## + dnsPolicy: "" + ## @param master.dnsConfig DNS Configuration for Redis® master pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/ + ## E.g. + ## dnsConfig: + ## options: + ## - name: ndots + ## value: "4" + ## - name: single-request-reopen + ## + dnsConfig: {} + ## @param master.lifecycleHooks for the Redis® master container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param master.extraVolumes Optionally specify extra list of additional volumes for the Redis® master pod(s) + ## + extraVolumes: [] + ## @param master.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Redis® master container(s) + ## + extraVolumeMounts: [] + ## @param master.sidecars Add additional sidecar containers to the Redis® master pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param master.initContainers Add additional init containers to the Redis® master pod(s) + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## command: ['sh', '-c', 'echo "hello world"'] + ## + initContainers: [] + ## Persistence parameters + ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/ + ## + persistence: + ## @param master.persistence.enabled Enable persistence on Redis® master nodes using Persistent Volume Claims + ## + enabled: true + ## @param master.persistence.medium Provide a medium for `emptyDir` volumes. + ## + medium: "" + ## @param master.persistence.sizeLimit Set this to enable a size limit for `emptyDir` volumes. + ## + sizeLimit: "" + ## @param master.persistence.path The path the volume will be mounted at on Redis® master containers + ## NOTE: Useful when using different Redis® images + ## + path: /data + ## @param master.persistence.subPath The subdirectory of the volume to mount on Redis® master containers + ## NOTE: Useful in dev environments + ## + subPath: "" + ## @param master.persistence.subPathExpr Used to construct the subPath subdirectory of the volume to mount on Redis® master containers + ## + subPathExpr: "" + ## @param master.persistence.storageClass Persistent Volume storage class + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner + ## + storageClass: "" + ## @param master.persistence.accessModes Persistent Volume access modes + ## + accessModes: + - ReadWriteOnce + ## @param master.persistence.size Persistent Volume size + ## + size: 8Gi + ## @param master.persistence.annotations Additional custom annotations for the PVC + ## + annotations: {} + ## @param master.persistence.labels Additional custom labels for the PVC + ## + labels: {} + ## @param master.persistence.selector Additional labels to match for the PVC + ## e.g: + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + ## @param master.persistence.dataSource Custom PVC data source + ## + dataSource: {} + ## @param master.persistence.existingClaim Use a existing PVC which must be created manually before bound + ## NOTE: requires master.persistence.enabled: true + ## + existingClaim: "" + ## persistentVolumeClaimRetentionPolicy + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention + ## @param master.persistentVolumeClaimRetentionPolicy.enabled Controls if and how PVCs are deleted during the lifecycle of a StatefulSet + ## @param master.persistentVolumeClaimRetentionPolicy.whenScaled Volume retention behavior when the replica count of the StatefulSet is reduced + ## @param master.persistentVolumeClaimRetentionPolicy.whenDeleted Volume retention behavior that applies when the StatefulSet is deleted + ## + persistentVolumeClaimRetentionPolicy: + enabled: false + whenScaled: Retain + whenDeleted: Retain + ## Redis® master service parameters + ## + service: + ## @param master.service.type Redis® master service type + ## + type: LoadBalancer + ## @param master.service.ports.redis Redis® master service port + ## + ports: + redis: 6379 + ## @param master.service.nodePorts.redis Node port for Redis® master + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + redis: "" + ## @param master.service.externalTrafficPolicy Redis® master service external traffic policy + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param master.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param master.service.internalTrafficPolicy Redis® master service internal traffic policy (requires Kubernetes v1.22 or greater to be usable) + ## ref: https://kubernetes.io/docs/concepts/services-networking/service-traffic-policy/ + ## + internalTrafficPolicy: Cluster + ## @param master.service.clusterIP Redis® master service Cluster IP + ## + clusterIP: "" + ## @param master.service.loadBalancerIP Redis® master service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer + ## + loadBalancerIP: "" + ## @param master.service.loadBalancerClass master service Load Balancer class if service type is `LoadBalancer` (optional, cloud specific) + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerClass: "" + ## @param master.service.loadBalancerSourceRanges Redis® master service Load Balancer sources + ## https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g. + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param master.service.externalIPs Redis® master service External IPs + ## https://kubernetes.io/docs/concepts/services-networking/service/#external-ips + ## e.g. + ## externalIPs: + ## - 10.10.10.1 + ## - 201.22.30.1 + ## + externalIPs: [] + ## @param master.service.annotations Additional custom annotations for Redis® master service + ## + annotations: {} + ## @param master.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param master.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## @param master.terminationGracePeriodSeconds Integer setting the termination grace period for the redis-master pods + ## + terminationGracePeriodSeconds: 30 + ## ServiceAccount configuration + ## + serviceAccount: + ## @param master.serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param master.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param master.serviceAccount.automountServiceAccountToken Whether to auto mount the service account token + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/#use-the-default-service-account-to-access-the-api-server + ## + automountServiceAccountToken: false + ## @param master.serviceAccount.annotations Additional custom annotations for the ServiceAccount + ## + annotations: {} +## @section Redis® replicas configuration parameters +## +replica: + ## @param replica.kind Use either DaemonSet or StatefulSet (default) + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/ + ## + kind: StatefulSet + ## @param replica.replicaCount Number of Redis® replicas to deploy + ## + replicaCount: 3 + ## @param replica.configuration Configuration for Redis® replicas nodes + ## ref: https://redis.io/topics/config + ## + configuration: "" + ## @param replica.disableCommands Array with Redis® commands to disable on replicas nodes + ## Commands will be completely disabled by renaming each to an empty string. + ## ref: https://redis.io/topics/security#disabling-of-specific-commands + ## + disableCommands: + - FLUSHDB + - FLUSHALL + ## @param replica.command Override default container command (useful when using custom images) + ## + command: [] + ## @param replica.args Override default container args (useful when using custom images) + ## + args: [] + ## @param replica.enableServiceLinks Whether information about services should be injected into pod's environment variable + ## + enableServiceLinks: true + ## @param replica.preExecCmds Additional commands to run prior to starting Redis® replicas + ## + preExecCmds: [] + ## @param replica.extraFlags Array with additional command line flags for Redis® replicas + ## e.g: + ## extraFlags: + ## - "--maxmemory-policy volatile-ttl" + ## - "--repl-backlog-size 1024mb" + ## + extraFlags: [] + ## @param replica.extraEnvVars Array with extra environment variables to add to Redis® replicas nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param replica.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Redis® replicas nodes + ## + extraEnvVarsCM: "" + ## @param replica.extraEnvVarsSecret Name of existing Secret containing extra env vars for Redis® replicas nodes + ## + extraEnvVarsSecret: "" + ## @param replica.externalMaster.enabled Use external master for bootstrapping + ## @param replica.externalMaster.host External master host to bootstrap from + ## @param replica.externalMaster.port Port for Redis service external master host + ## + externalMaster: + enabled: false + host: "" + port: 6379 + ## @param replica.containerPorts.redis Container port to open on Redis® replicas nodes + ## + containerPorts: + redis: 6379 + ## Configure extra options for Redis® containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param replica.startupProbe.enabled Enable startupProbe on Redis® replicas nodes + ## @param replica.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param replica.startupProbe.periodSeconds Period seconds for startupProbe + ## @param replica.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param replica.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param replica.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 22 + ## @param replica.livenessProbe.enabled Enable livenessProbe on Redis® replicas nodes + ## @param replica.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param replica.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param replica.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param replica.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param replica.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 5 + ## @param replica.readinessProbe.enabled Enable readinessProbe on Redis® replicas nodes + ## @param replica.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param replica.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param replica.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param replica.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param replica.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 1 + successThreshold: 1 + failureThreshold: 5 + ## @param replica.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param replica.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param replica.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Redis® replicas resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param replica.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if replica.resources is set (replica.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param replica.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param replica.podSecurityContext.enabled Enabled Redis® replicas pods' Security Context + ## @param replica.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param replica.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param replica.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param replica.podSecurityContext.fsGroup Set Redis® replicas pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param replica.containerSecurityContext.enabled Enabled Redis® replicas containers' Security Context + ## @param replica.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param replica.containerSecurityContext.runAsUser Set Redis® replicas containers' Security Context runAsUser + ## @param replica.containerSecurityContext.runAsGroup Set Redis® replicas containers' Security Context runAsGroup + ## @param replica.containerSecurityContext.runAsNonRoot Set Redis® replicas containers' Security Context runAsNonRoot + ## @param replica.containerSecurityContext.allowPrivilegeEscalation Set Redis® replicas pod's Security Context allowPrivilegeEscalation + ## @param replica.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context read-only root filesystem + ## @param replica.containerSecurityContext.seccompProfile.type Set Redis® replicas containers' Security Context seccompProfile + ## @param replica.containerSecurityContext.capabilities.drop Set Redis® replicas containers' Security Context capabilities to drop + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + seccompProfile: + type: RuntimeDefault + capabilities: + drop: ["ALL"] + ## @param replica.schedulerName Alternate scheduler for Redis® replicas pods + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param replica.updateStrategy.type Redis® replicas statefulset strategy type + ## @skip replica.updateStrategy.rollingUpdate + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + ## StrategyType + ## Can be set to RollingUpdate, OnDelete (statefulset), Recreate (deployment) + ## + type: RollingUpdate + ## @param replica.minReadySeconds How many seconds a pod needs to be ready before killing the next, during update + ## + minReadySeconds: 0 + ## @param replica.priorityClassName Redis® replicas pods' priorityClassName + ## + priorityClassName: "" + ## @param replica.podManagementPolicy podManagementPolicy to manage scaling operation of %%MAIN_CONTAINER_NAME%% pods + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies + ## + podManagementPolicy: "" + ## @param replica.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: false + ## @param replica.hostAliases Redis® replicas pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param replica.podLabels Extra labels for Redis® replicas pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param replica.podAnnotations Annotations for Redis® replicas pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param replica.shareProcessNamespace Share a single process namespace between all of the containers in Redis® replicas pods + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/ + ## + shareProcessNamespace: false + ## @param replica.podAffinityPreset Pod affinity preset. Ignored if `replica.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param replica.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `replica.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param replica.nodeAffinityPreset.type Node affinity preset type. Ignored if `replica.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param replica.nodeAffinityPreset.key Node label key to match. Ignored if `replica.affinity` is set + ## + key: "" + ## @param replica.nodeAffinityPreset.values Node label values to match. Ignored if `replica.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param replica.affinity Affinity for Redis® replicas pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `replica.podAffinityPreset`, `replica.podAntiAffinityPreset`, and `replica.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param replica.nodeSelector Node labels for Redis® replicas pods assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param replica.tolerations Tolerations for Redis® replicas pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param replica.topologySpreadConstraints Spread Constraints for Redis® replicas pod assignment + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## E.g. + ## topologySpreadConstraints: + ## - maxSkew: 1 + ## topologyKey: node + ## whenUnsatisfiable: DoNotSchedule + ## + topologySpreadConstraints: [] + ## @param replica.dnsPolicy DNS Policy for Redis® replica pods + ## ref: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/ + ## E.g. + ## dnsPolicy: ClusterFirst + ## + dnsPolicy: "" + ## @param replica.dnsConfig DNS Configuration for Redis® replica pods + ## ref: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/ + ## E.g. + ## dnsConfig: + ## options: + ## - name: ndots + ## value: "4" + ## - name: single-request-reopen + ## + dnsConfig: {} + ## @param replica.lifecycleHooks for the Redis® replica container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param replica.extraVolumes Optionally specify extra list of additional volumes for the Redis® replicas pod(s) + ## + extraVolumes: [] + ## @param replica.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Redis® replicas container(s) + ## + extraVolumeMounts: [] + ## @param replica.sidecars Add additional sidecar containers to the Redis® replicas pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param replica.initContainers Add additional init containers to the Redis® replicas pod(s) + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## command: ['sh', '-c', 'echo "hello world"'] + ## + initContainers: [] + ## Persistence Parameters + ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/ + ## + persistence: + ## @param replica.persistence.enabled Enable persistence on Redis® replicas nodes using Persistent Volume Claims + ## + enabled: true + ## @param replica.persistence.medium Provide a medium for `emptyDir` volumes. + ## + medium: "" + ## @param replica.persistence.sizeLimit Set this to enable a size limit for `emptyDir` volumes. + ## + sizeLimit: "" + ## @param replica.persistence.path The path the volume will be mounted at on Redis® replicas containers + ## NOTE: Useful when using different Redis® images + ## + path: /data + ## @param replica.persistence.subPath The subdirectory of the volume to mount on Redis® replicas containers + ## NOTE: Useful in dev environments + ## + subPath: "" + ## @param replica.persistence.subPathExpr Used to construct the subPath subdirectory of the volume to mount on Redis® replicas containers + ## + subPathExpr: "" + ## @param replica.persistence.storageClass Persistent Volume storage class + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner + ## + storageClass: "" + ## @param replica.persistence.accessModes Persistent Volume access modes + ## + accessModes: + - ReadWriteOnce + ## @param replica.persistence.size Persistent Volume size + ## + size: 8Gi + ## @param replica.persistence.annotations Additional custom annotations for the PVC + ## + annotations: {} + ## @param replica.persistence.labels Additional custom labels for the PVC + ## + labels: {} + ## @param replica.persistence.selector Additional labels to match for the PVC + ## e.g: + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + ## @param replica.persistence.dataSource Custom PVC data source + ## + dataSource: {} + ## @param replica.persistence.existingClaim Use a existing PVC which must be created manually before bound + ## NOTE: requires replica.persistence.enabled: true + ## + existingClaim: "" + ## persistentVolumeClaimRetentionPolicy + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention + ## @param replica.persistentVolumeClaimRetentionPolicy.enabled Controls if and how PVCs are deleted during the lifecycle of a StatefulSet + ## @param replica.persistentVolumeClaimRetentionPolicy.whenScaled Volume retention behavior when the replica count of the StatefulSet is reduced + ## @param replica.persistentVolumeClaimRetentionPolicy.whenDeleted Volume retention behavior that applies when the StatefulSet is deleted + ## + persistentVolumeClaimRetentionPolicy: + enabled: false + whenScaled: Retain + whenDeleted: Retain + ## Redis® replicas service parameters + ## + service: + ## @param replica.service.type Redis® replicas service type + ## + type: ClusterIP + ## @param replica.service.ports.redis Redis® replicas service port + ## + ports: + redis: 6379 + ## @param replica.service.nodePorts.redis Node port for Redis® replicas + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + redis: "" + ## @param replica.service.externalTrafficPolicy Redis® replicas service external traffic policy + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param replica.service.internalTrafficPolicy Redis® replicas service internal traffic policy (requires Kubernetes v1.22 or greater to be usable) + ## ref: https://kubernetes.io/docs/concepts/services-networking/service-traffic-policy/ + ## + internalTrafficPolicy: Cluster + ## @param replica.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param replica.service.clusterIP Redis® replicas service Cluster IP + ## + clusterIP: "" + ## @param replica.service.loadBalancerIP Redis® replicas service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer + ## + loadBalancerIP: "" + ## @param replica.service.loadBalancerClass replicas service Load Balancer class if service type is `LoadBalancer` (optional, cloud specific) + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerClass: "" + ## @param replica.service.loadBalancerSourceRanges Redis® replicas service Load Balancer sources + ## https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g. + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param replica.service.annotations Additional custom annotations for Redis® replicas service + ## + annotations: {} + ## @param replica.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param replica.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## @param replica.terminationGracePeriodSeconds Integer setting the termination grace period for the redis-replicas pods + ## + terminationGracePeriodSeconds: 30 + ## Autoscaling configuration + ## + autoscaling: + ## @param replica.autoscaling.enabled Enable replica autoscaling settings + ## + enabled: false + ## @param replica.autoscaling.minReplicas Minimum replicas for the pod autoscaling + ## + minReplicas: 1 + ## @param replica.autoscaling.maxReplicas Maximum replicas for the pod autoscaling + ## + maxReplicas: 1 + ## @param replica.autoscaling.targetCPU Percentage of CPU to consider when autoscaling + ## + targetCPU: "" + ## @param replica.autoscaling.targetMemory Percentage of Memory to consider when autoscaling + ## + targetMemory: "" + ## ServiceAccount configuration + ## + serviceAccount: + ## @param replica.serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param replica.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param replica.serviceAccount.automountServiceAccountToken Whether to auto mount the service account token + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/#use-the-default-service-account-to-access-the-api-server + ## + automountServiceAccountToken: false + ## @param replica.serviceAccount.annotations Additional custom annotations for the ServiceAccount + ## + annotations: {} +## @section Redis® Sentinel configuration parameters +## + +sentinel: + ## @param sentinel.enabled Use Redis® Sentinel on Redis® pods. + ## IMPORTANT: this will disable the master and replicas services and + ## create a single Redis® service exposing both the Redis and Sentinel ports + ## + enabled: false + ## Bitnami Redis® Sentinel image version + ## ref: https://hub.docker.com/r/bitnami/redis-sentinel/tags/ + ## @param sentinel.image.registry [default: REGISTRY_NAME] Redis® Sentinel image registry + ## @param sentinel.image.repository [default: REPOSITORY_NAME/redis-sentinel] Redis® Sentinel image repository + ## @skip sentinel.image.tag Redis® Sentinel image tag (immutable tags are recommended) + ## @param sentinel.image.digest Redis® Sentinel image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param sentinel.image.pullPolicy Redis® Sentinel image pull policy + ## @param sentinel.image.pullSecrets Redis® Sentinel image pull secrets + ## @param sentinel.image.debug Enable image debug mode + ## + image: + registry: docker.io + repository: bitnami/redis-sentinel + tag: 7.2.4-debian-12-r7 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param sentinel.annotations Additional custom annotations for Redis® Sentinel resource + ## + annotations: {} + ## @param sentinel.masterSet Master set name + ## + masterSet: mymaster + ## @param sentinel.quorum Sentinel Quorum + ## + quorum: 2 + ## @param sentinel.getMasterTimeout Amount of time to allow before get_sentinel_master_info() times out. + ## + getMasterTimeout: 90 + ## @param sentinel.automateClusterRecovery Automate cluster recovery in cases where the last replica is not considered a good replica and Sentinel won't automatically failover to it. + ## This also prevents any new replica from starting until the last remaining replica is elected as master to guarantee that it is the one to be elected by Sentinel, and not a newly started replica with no data. + ## NOTE: This feature requires a "downAfterMilliseconds" value less or equal to 2000. + ## + automateClusterRecovery: false + ## @param sentinel.redisShutdownWaitFailover Whether the Redis® master container waits for the failover at shutdown (in addition to the Redis® Sentinel container). + ## + redisShutdownWaitFailover: true + ## Sentinel timing restrictions + ## @param sentinel.downAfterMilliseconds Timeout for detecting a Redis® node is down + ## @param sentinel.failoverTimeout Timeout for performing a election failover + ## + downAfterMilliseconds: 60000 + failoverTimeout: 180000 + ## @param sentinel.parallelSyncs Number of replicas that can be reconfigured in parallel to use the new master after a failover + ## + parallelSyncs: 1 + ## @param sentinel.configuration Configuration for Redis® Sentinel nodes + ## ref: https://redis.io/topics/sentinel + ## + configuration: "" + ## @param sentinel.command Override default container command (useful when using custom images) + ## + command: [] + ## @param sentinel.args Override default container args (useful when using custom images) + ## + args: [] + ## @param sentinel.enableServiceLinks Whether information about services should be injected into pod's environment variable + ## + enableServiceLinks: true + ## @param sentinel.preExecCmds Additional commands to run prior to starting Redis® Sentinel + ## + preExecCmds: [] + ## @param sentinel.extraEnvVars Array with extra environment variables to add to Redis® Sentinel nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param sentinel.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Redis® Sentinel nodes + ## + extraEnvVarsCM: "" + ## @param sentinel.extraEnvVarsSecret Name of existing Secret containing extra env vars for Redis® Sentinel nodes + ## + extraEnvVarsSecret: "" + ## @param sentinel.externalMaster.enabled Use external master for bootstrapping + ## @param sentinel.externalMaster.host External master host to bootstrap from + ## @param sentinel.externalMaster.port Port for Redis service external master host + ## + externalMaster: + enabled: false + host: "" + port: 6379 + ## @param sentinel.containerPorts.sentinel Container port to open on Redis® Sentinel nodes + ## + containerPorts: + sentinel: 26379 + ## Configure extra options for Redis® containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param sentinel.startupProbe.enabled Enable startupProbe on Redis® Sentinel nodes + ## @param sentinel.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param sentinel.startupProbe.periodSeconds Period seconds for startupProbe + ## @param sentinel.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param sentinel.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param sentinel.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 22 + ## @param sentinel.livenessProbe.enabled Enable livenessProbe on Redis® Sentinel nodes + ## @param sentinel.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param sentinel.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param sentinel.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param sentinel.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param sentinel.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 6 + ## @param sentinel.readinessProbe.enabled Enable readinessProbe on Redis® Sentinel nodes + ## @param sentinel.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param sentinel.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param sentinel.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param sentinel.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param sentinel.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 1 + successThreshold: 1 + failureThreshold: 6 + ## @param sentinel.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param sentinel.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param sentinel.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Persistence parameters + ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/ + ## + persistence: + ## @param sentinel.persistence.enabled Enable persistence on Redis® sentinel nodes using Persistent Volume Claims (Experimental) + ## + enabled: false + ## @param sentinel.persistence.storageClass Persistent Volume storage class + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner + ## + storageClass: "" + ## @param sentinel.persistence.accessModes Persistent Volume access modes + ## + accessModes: + - ReadWriteOnce + ## @param sentinel.persistence.size Persistent Volume size + ## + size: 100Mi + ## @param sentinel.persistence.annotations Additional custom annotations for the PVC + ## + annotations: {} + ## @param sentinel.persistence.labels Additional custom labels for the PVC + ## + labels: {} + ## @param sentinel.persistence.selector Additional labels to match for the PVC + ## e.g: + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + ## @param sentinel.persistence.dataSource Custom PVC data source + ## + dataSource: {} + ## @param sentinel.persistence.medium Provide a medium for `emptyDir` volumes. + ## + medium: "" + ## @param sentinel.persistence.sizeLimit Set this to enable a size limit for `emptyDir` volumes. + ## + sizeLimit: "" + ## persistentVolumeClaimRetentionPolicy + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention + ## @param sentinel.persistentVolumeClaimRetentionPolicy.enabled Controls if and how PVCs are deleted during the lifecycle of a StatefulSet + ## @param sentinel.persistentVolumeClaimRetentionPolicy.whenScaled Volume retention behavior when the replica count of the StatefulSet is reduced + ## @param sentinel.persistentVolumeClaimRetentionPolicy.whenDeleted Volume retention behavior that applies when the StatefulSet is deleted + ## + persistentVolumeClaimRetentionPolicy: + enabled: false + whenScaled: Retain + whenDeleted: Retain + ## Redis® Sentinel resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param sentinel.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if sentinel.resources is set (sentinel.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param sentinel.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param sentinel.containerSecurityContext.enabled Enabled Redis® Sentinel containers' Security Context + ## @param sentinel.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param sentinel.containerSecurityContext.runAsUser Set Redis® Sentinel containers' Security Context runAsUser + ## @param sentinel.containerSecurityContext.runAsGroup Set Redis® Sentinel containers' Security Context runAsGroup + ## @param sentinel.containerSecurityContext.runAsNonRoot Set Redis® Sentinel containers' Security Context runAsNonRoot + ## @param sentinel.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context read-only root filesystem + ## @param sentinel.containerSecurityContext.allowPrivilegeEscalation Set Redis® Sentinel containers' Security Context allowPrivilegeEscalation + ## @param sentinel.containerSecurityContext.seccompProfile.type Set Redis® Sentinel containers' Security Context seccompProfile + ## @param sentinel.containerSecurityContext.capabilities.drop Set Redis® Sentinel containers' Security Context capabilities to drop + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + seccompProfile: + type: RuntimeDefault + capabilities: + drop: ["ALL"] + ## @param sentinel.lifecycleHooks for the Redis® sentinel container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param sentinel.extraVolumes Optionally specify extra list of additional volumes for the Redis® Sentinel + ## + extraVolumes: [] + ## @param sentinel.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Redis® Sentinel container(s) + ## + extraVolumeMounts: [] + ## Redis® Sentinel service parameters + ## + service: + ## @param sentinel.service.type Redis® Sentinel service type + ## + type: ClusterIP + ## @param sentinel.service.ports.redis Redis® service port for Redis® + ## @param sentinel.service.ports.sentinel Redis® service port for Redis® Sentinel + ## + ports: + redis: 6379 + sentinel: 26379 + ## @param sentinel.service.nodePorts.redis Node port for Redis® + ## @param sentinel.service.nodePorts.sentinel Node port for Sentinel + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## NOTE: choose port between <30000-32767> + ## NOTE: By leaving these values blank, they will be generated by ports-configmap + ## If setting manually, please leave at least replica.replicaCount + 1 in between sentinel.service.nodePorts.redis and sentinel.service.nodePorts.sentinel to take into account the ports that will be created while incrementing that base port + ## + nodePorts: + redis: "" + sentinel: "" + ## @param sentinel.service.externalTrafficPolicy Redis® Sentinel service external traffic policy + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param sentinel.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param sentinel.service.clusterIP Redis® Sentinel service Cluster IP + ## + clusterIP: "" + + ## @param sentinel.service.createMaster Enable master service pointing to the current master (experimental) + ## NOTE: rbac.create need to be set to true + ## + createMaster: false + + ## @param sentinel.service.loadBalancerIP Redis® Sentinel service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer + ## + loadBalancerIP: "" + ## @param sentinel.service.loadBalancerClass sentinel service Load Balancer class if service type is `LoadBalancer` (optional, cloud specific) + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerClass: "" + ## @param sentinel.service.loadBalancerSourceRanges Redis® Sentinel service Load Balancer sources + ## https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g. + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param sentinel.service.annotations Additional custom annotations for Redis® Sentinel service + ## + annotations: {} + ## @param sentinel.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param sentinel.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## Headless service properties + ## + headless: + ## @param sentinel.service.headless.annotations Annotations for the headless service. + ## + annotations: {} + ## @param sentinel.terminationGracePeriodSeconds Integer setting the termination grace period for the redis-node pods + ## + terminationGracePeriodSeconds: 30 +## @section Other Parameters +## + +## @param serviceBindings.enabled Create secret for service binding (Experimental) +## Ref: https://servicebinding.io/service-provider/ +## +serviceBindings: + enabled: false +## Network Policy configuration +## ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/ +## +networkPolicy: + ## @param networkPolicy.enabled Enable creation of NetworkPolicy resources + ## + enabled: true + ## @param networkPolicy.allowExternal Don't require client label for connections + ## When set to false, only pods with the correct client label will have network access to the ports + ## Redis® is listening on. When true, Redis® will accept connections from any source + ## (with the correct destination port). + ## + allowExternal: true + ## @param networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations. + ## + allowExternalEgress: true + ## @param networkPolicy.extraIngress Add extra ingress rules to the NetworkPolicy + ## e.g: + ## extraIngress: + ## - ports: + ## - port: 1234 + ## from: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + ## + extraIngress: [] + ## @param networkPolicy.extraEgress Add extra egress rules to the NetworkPolicy + ## e.g: + ## extraEgress: + ## - ports: + ## - port: 1234 + ## to: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + ## + extraEgress: [] + ## @param networkPolicy.ingressNSMatchLabels Labels to match to allow traffic from other namespaces + ## @param networkPolicy.ingressNSPodMatchLabels Pod labels to match to allow traffic from other namespaces + ## + ingressNSMatchLabels: {} + ingressNSPodMatchLabels: {} + metrics: + ## @param networkPolicy.metrics.allowExternal Don't require client label for connections for metrics endpoint + ## When set to false, only pods with the correct client label will have network access to the metrics port + ## + allowExternal: true + ## @param networkPolicy.metrics.ingressNSMatchLabels Labels to match to allow traffic from other namespaces to metrics endpoint + ## @param networkPolicy.metrics.ingressNSPodMatchLabels Pod labels to match to allow traffic from other namespaces to metrics endpoint + ## + ingressNSMatchLabels: {} + ingressNSPodMatchLabels: {} +## PodSecurityPolicy configuration +## ref: https://kubernetes.io/docs/concepts/policy/pod-security-policy/ +## +podSecurityPolicy: + ## @param podSecurityPolicy.create Whether to create a PodSecurityPolicy. WARNING: PodSecurityPolicy is deprecated in Kubernetes v1.21 or later, unavailable in v1.25 or later + ## + create: false + ## @param podSecurityPolicy.enabled Enable PodSecurityPolicy's RBAC rules + ## + enabled: false +## RBAC configuration +## +rbac: + ## @param rbac.create Specifies whether RBAC resources should be created + ## + create: false + ## @param rbac.rules Custom RBAC rules to set + ## e.g: + ## rules: + ## - apiGroups: + ## - "" + ## resources: + ## - pods + ## verbs: + ## - get + ## - list + ## + rules: [] +## ServiceAccount configuration +## +serviceAccount: + ## @param serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param serviceAccount.automountServiceAccountToken Whether to auto mount the service account token + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/#use-the-default-service-account-to-access-the-api-server + ## + automountServiceAccountToken: false + ## @param serviceAccount.annotations Additional custom annotations for the ServiceAccount + ## + annotations: {} +## Redis® Pod Disruption Budget configuration +## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/ +## +pdb: + ## @param pdb.create Specifies whether a PodDisruptionBudget should be created + ## + create: false + ## @param pdb.minAvailable Min number of pods that must still be available after the eviction + ## + minAvailable: 1 + ## @param pdb.maxUnavailable Max number of pods that can be unavailable after the eviction + ## + maxUnavailable: "" +## TLS configuration +## +tls: + ## @param tls.enabled Enable TLS traffic + ## + enabled: false + ## @param tls.authClients Require clients to authenticate + ## + authClients: true + ## @param tls.autoGenerated Enable autogenerated certificates + ## + autoGenerated: false + ## @param tls.existingSecret The name of the existing secret that contains the TLS certificates + ## + existingSecret: "" + ## @param tls.certificatesSecret DEPRECATED. Use existingSecret instead. + ## + certificatesSecret: "" + ## @param tls.certFilename Certificate filename + ## + certFilename: "" + ## @param tls.certKeyFilename Certificate Key filename + ## + certKeyFilename: "" + ## @param tls.certCAFilename CA Certificate filename + ## + certCAFilename: "" + ## @param tls.dhParamsFilename File containing DH params (in order to support DH based ciphers) + ## + dhParamsFilename: "" +## @section Metrics Parameters +## +metrics: + ## @param metrics.enabled Start a sidecar prometheus exporter to expose Redis® metrics + ## + enabled: false + ## Bitnami Redis® Exporter image + ## ref: https://hub.docker.com/r/bitnami/redis-exporter/tags/ + ## @param metrics.image.registry [default: REGISTRY_NAME] Redis® Exporter image registry + ## @param metrics.image.repository [default: REPOSITORY_NAME/redis-exporter] Redis® Exporter image repository + ## @skip metrics.image.tag Redis® Exporter image tag (immutable tags are recommended) + ## @param metrics.image.digest Redis® Exporter image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param metrics.image.pullPolicy Redis® Exporter image pull policy + ## @param metrics.image.pullSecrets Redis® Exporter image pull secrets + ## + image: + registry: docker.io + repository: bitnami/redis-exporter + tag: 1.58.0-debian-12-r4 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## @param metrics.containerPorts.http Metrics HTTP container port + ## + containerPorts: + http: 9121 + ## Configure extra options for Redis® containers' liveness, readiness & startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ + ## @param metrics.startupProbe.enabled Enable startupProbe on Redis® replicas nodes + ## @param metrics.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param metrics.startupProbe.periodSeconds Period seconds for startupProbe + ## @param metrics.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param metrics.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param metrics.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 5 + ## @param metrics.livenessProbe.enabled Enable livenessProbe on Redis® replicas nodes + ## @param metrics.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param metrics.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param metrics.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param metrics.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param metrics.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 5 + ## @param metrics.readinessProbe.enabled Enable readinessProbe on Redis® replicas nodes + ## @param metrics.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param metrics.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param metrics.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param metrics.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param metrics.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + successThreshold: 1 + failureThreshold: 3 + ## @param metrics.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param metrics.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param metrics.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param metrics.command Override default metrics container init command (useful when using custom images) + ## + command: [] + ## @param metrics.redisTargetHost A way to specify an alternative Redis® hostname + ## Useful for certificate CN/SAN matching + ## + redisTargetHost: "localhost" + ## @param metrics.extraArgs Extra arguments for Redis® exporter, for example: + ## e.g.: + ## extraArgs: + ## check-keys: myKey,myOtherKey + ## + extraArgs: {} + ## @param metrics.extraEnvVars Array with extra environment variables to add to Redis® exporter + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param metrics.containerSecurityContext.enabled Enabled Redis® exporter containers' Security Context + ## @param metrics.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param metrics.containerSecurityContext.runAsUser Set Redis® exporter containers' Security Context runAsUser + ## @param metrics.containerSecurityContext.runAsGroup Set Redis® exporter containers' Security Context runAsGroup + ## @param metrics.containerSecurityContext.runAsNonRoot Set Redis® exporter containers' Security Context runAsNonRoot + ## @param metrics.containerSecurityContext.allowPrivilegeEscalation Set Redis® exporter containers' Security Context allowPrivilegeEscalation + ## @param metrics.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context read-only root filesystem + ## @param metrics.containerSecurityContext.seccompProfile.type Set Redis® exporter containers' Security Context seccompProfile + ## @param metrics.containerSecurityContext.capabilities.drop Set Redis® exporter containers' Security Context capabilities to drop + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + seccompProfile: + type: RuntimeDefault + capabilities: + drop: ["ALL"] + ## @param metrics.extraVolumes Optionally specify extra list of additional volumes for the Redis® metrics sidecar + ## + extraVolumes: [] + ## @param metrics.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Redis® metrics sidecar + ## + extraVolumeMounts: [] + ## Redis® exporter resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param metrics.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if metrics.resources is set (metrics.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param metrics.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## @param metrics.podLabels Extra labels for Redis® exporter pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param metrics.podAnnotations [object] Annotations for Redis® exporter pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: + prometheus.io/scrape: "true" + prometheus.io/port: "9121" + ## Redis® exporter service parameters + ## + service: + ## @param metrics.service.enabled Create Service resource(s) for scraping metrics using PrometheusOperator ServiceMonitor, can be disabled when using a PodMonitor + ## + enabled: true + ## @param metrics.service.type Redis® exporter service type + ## + type: ClusterIP + ## @param metrics.service.ports.http Redis® exporter service port + ## + ports: + http: 9121 + ## @param metrics.service.externalTrafficPolicy Redis® exporter service external traffic policy + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param metrics.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param metrics.service.loadBalancerIP Redis® exporter service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer + ## + loadBalancerIP: "" + ## @param metrics.service.loadBalancerClass exporter service Load Balancer class if service type is `LoadBalancer` (optional, cloud specific) + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerClass: "" + ## @param metrics.service.loadBalancerSourceRanges Redis® exporter service Load Balancer sources + ## https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g. + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param metrics.service.annotations Additional custom annotations for Redis® exporter service + ## + annotations: {} + ## @param metrics.service.clusterIP Redis® exporter service Cluster IP + ## + clusterIP: "" + ## Prometheus Service Monitor + ## ref: https://github.com/coreos/prometheus-operator + ## https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + serviceMonitor: + ## @param metrics.serviceMonitor.port the service port to scrape metrics from + ## + port: http-metrics + ## @param metrics.serviceMonitor.enabled Create ServiceMonitor resource(s) for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param metrics.serviceMonitor.namespace The namespace in which the ServiceMonitor will be created + ## + namespace: "" + ## @param metrics.serviceMonitor.interval The interval at which metrics should be scraped + ## + interval: 30s + ## @param metrics.serviceMonitor.scrapeTimeout The timeout after which the scrape is ended + ## + scrapeTimeout: "" + ## @param metrics.serviceMonitor.relabelings Metrics RelabelConfigs to apply to samples before scraping. + ## + relabelings: [] + ## @skip metrics.serviceMonitor.relabellings DEPRECATED: Use `metrics.serviceMonitor.relabelings` instead. + ## + relabellings: [] + ## @param metrics.serviceMonitor.metricRelabelings Metrics RelabelConfigs to apply to samples before ingestion. + ## + metricRelabelings: [] + ## @param metrics.serviceMonitor.honorLabels Specify honorLabels parameter to add the scrape endpoint + ## + honorLabels: false + ## @param metrics.serviceMonitor.additionalLabels Additional labels that can be used so ServiceMonitor resource(s) can be discovered by Prometheus + ## + additionalLabels: {} + ## @param metrics.serviceMonitor.podTargetLabels Labels from the Kubernetes pod to be transferred to the created metrics + ## + podTargetLabels: [] + ## @param metrics.serviceMonitor.sampleLimit Limit of how many samples should be scraped from every Pod + ## + sampleLimit: false + ## @param metrics.serviceMonitor.targetLimit Limit of how many targets should be scraped + ## + targetLimit: false + ## @param metrics.serviceMonitor.additionalEndpoints Additional endpoints to scrape (e.g sentinel) + ## + additionalEndpoints: [] + # uncomment in order to scrape sentinel metrics, also to in order distinguish between Sentinel and Redis container metrics + # add metricRelabelings with label like app=redis to main redis pod-monitor port + # - interval: "30s" + # path: "/scrape" + # port: "metrics" + # params: + # target: ["localhost:26379"] + # metricRelabelings: + # - targetLabel: "app" + # replacement: "sentinel" + ## Prometheus Pod Monitor + ## ref: https://github.com/coreos/prometheus-operator + ## https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#podmonitor + ## + podMonitor: + ## @param metrics.podMonitor.port the pod port to scrape metrics from + ## + port: metrics + ## @param metrics.podMonitor.enabled Create PodMonitor resource(s) for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param metrics.podMonitor.namespace The namespace in which the PodMonitor will be created + ## + namespace: "" + ## @param metrics.podMonitor.interval The interval at which metrics should be scraped + ## + interval: 30s + ## @param metrics.podMonitor.scrapeTimeout The timeout after which the scrape is ended + ## + scrapeTimeout: "" + ## @param metrics.podMonitor.relabelings Metrics RelabelConfigs to apply to samples before scraping. + ## + relabelings: [] + ## @skip metrics.podMonitor.relabellings DEPRECATED: Use `metrics.podMonitor.relabelings` instead. + ## + relabellings: [] + ## @param metrics.podMonitor.metricRelabelings Metrics RelabelConfigs to apply to samples before ingestion. + ## + metricRelabelings: [] + # - targetLabel: "app" + # replacement: "redis" + ## @param metrics.podMonitor.honorLabels Specify honorLabels parameter to add the scrape endpoint + ## + honorLabels: false + ## @param metrics.podMonitor.additionalLabels Additional labels that can be used so PodMonitor resource(s) can be discovered by Prometheus + ## + additionalLabels: {} + ## @param metrics.podMonitor.podTargetLabels Labels from the Kubernetes pod to be transferred to the created metrics + ## + podTargetLabels: [] + ## @param metrics.podMonitor.sampleLimit Limit of how many samples should be scraped from every Pod + ## + sampleLimit: false + ## @param metrics.podMonitor.targetLimit Limit of how many targets should be scraped + ## + targetLimit: false + ## @param metrics.podMonitor.additionalEndpoints Additional endpoints to scrape (e.g sentinel) + ## + additionalEndpoints: [] + # - interval: "30s" + # path: "/scrape" + # port: "metrics" + # params: + # target: ["localhost:26379"] + # metricRelabelings: + # - targetLabel: "app" + # replacement: "sentinel" + ## Custom PrometheusRule to be defined + ## ref: https://github.com/coreos/prometheus-operator#customresourcedefinitions + ## + prometheusRule: + ## @param metrics.prometheusRule.enabled Create a custom prometheusRule Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param metrics.prometheusRule.namespace The namespace in which the prometheusRule will be created + ## + namespace: "" + ## @param metrics.prometheusRule.additionalLabels Additional labels for the prometheusRule + ## + additionalLabels: {} + ## @param metrics.prometheusRule.rules Custom Prometheus rules + ## e.g: + ## rules: + ## - alert: RedisDown + ## expr: redis_up{service="{{ template "common.names.fullname" . }}-metrics"} == 0 + ## for: 2m + ## labels: + ## severity: error + ## annotations: + ## summary: Redis® instance {{ "{{ $labels.instance }}" }} down + ## description: Redis® instance {{ "{{ $labels.instance }}" }} is down + ## - alert: RedisMemoryHigh + ## expr: > + ## redis_memory_used_bytes{service="{{ template "common.names.fullname" . }}-metrics"} * 100 + ## / + ## redis_memory_max_bytes{service="{{ template "common.names.fullname" . }}-metrics"} + ## > 90 + ## for: 2m + ## labels: + ## severity: error + ## annotations: + ## summary: Redis® instance {{ "{{ $labels.instance }}" }} is using too much memory + ## description: | + ## Redis® instance {{ "{{ $labels.instance }}" }} is using {{ "{{ $value }}" }}% of its available memory. + ## - alert: RedisKeyEviction + ## expr: | + ## increase(redis_evicted_keys_total{service="{{ template "common.names.fullname" . }}-metrics"}[5m]) > 0 + ## for: 1s + ## labels: + ## severity: error + ## annotations: + ## summary: Redis® instance {{ "{{ $labels.instance }}" }} has evicted keys + ## description: | + ## Redis® instance {{ "{{ $labels.instance }}" }} has evicted {{ "{{ $value }}" }} keys in the last 5 minutes. + ## + rules: [] +## @section Init Container Parameters +## + +## 'volumePermissions' init container parameters +## Changes the owner and group of the persistent volume mount point to runAsUser:fsGroup values +## based on the *podSecurityContext/*containerSecurityContext parameters +## +volumePermissions: + ## @param volumePermissions.enabled Enable init container that changes the owner/group of the PV mount point to `runAsUser:fsGroup` + ## + enabled: false + ## OS Shell + Utility image + ## ref: https://hub.docker.com/r/bitnami/os-shell/tags/ + ## @param volumePermissions.image.registry [default: REGISTRY_NAME] OS Shell + Utility image registry + ## @param volumePermissions.image.repository [default: REPOSITORY_NAME/os-shell] OS Shell + Utility image repository + ## @skip volumePermissions.image.tag OS Shell + Utility image tag (immutable tags are recommended) + ## @param volumePermissions.image.digest OS Shell + Utility image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param volumePermissions.image.pullPolicy OS Shell + Utility image pull policy + ## @param volumePermissions.image.pullSecrets OS Shell + Utility image pull secrets + ## + image: + registry: docker.io + repository: bitnami/os-shell + tag: 12-debian-12-r16 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Init container's resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param volumePermissions.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if volumePermissions.resources is set (volumePermissions.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param volumePermissions.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Init container Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param volumePermissions.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param volumePermissions.containerSecurityContext.runAsUser Set init container's Security Context runAsUser + ## NOTE: when runAsUser is set to special value "auto", init container will try to chown the + ## data folder to auto-determined user&group, using commands: `id -u`:`id -G | cut -d" " -f2` + ## "auto" is especially useful for OpenShift which has scc with dynamic user ids (and 0 is not allowed) + ## + containerSecurityContext: + seLinuxOptions: {} + runAsUser: 0 + +## Kubectl InitContainer +## used by Sentinel to update the isMaster label on the Redis(TM) pods +## +kubectl: + ## Bitnami Kubectl image version + ## ref: https://hub.docker.com/r/bitnami/kubectl/tags/ + ## @param kubectl.image.registry [default: REGISTRY_NAME] Kubectl image registry + ## @param kubectl.image.repository [default: REPOSITORY_NAME/kubectl] Kubectl image repository + ## @skip kubectl.image.tag Kubectl image tag (immutable tags are recommended), by default, using the current version + ## @param kubectl.image.digest Kubectl image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param kubectl.image.pullPolicy Kubectl image pull policy + ## @param kubectl.image.pullSecrets Kubectl pull secrets + ## + image: + registry: docker.io + repository: bitnami/kubectl + tag: 1.29.2-debian-12-r3 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## @param kubectl.command kubectl command to execute + ## + command: ["/opt/bitnami/scripts/kubectl-scripts/update-master-label.sh"] + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param kubectl.containerSecurityContext.enabled Enabled kubectl containers' Security Context + ## @param kubectl.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param kubectl.containerSecurityContext.runAsUser Set kubectl containers' Security Context runAsUser + ## @param kubectl.containerSecurityContext.runAsGroup Set kubectl containers' Security Context runAsGroup + ## @param kubectl.containerSecurityContext.runAsNonRoot Set kubectl containers' Security Context runAsNonRoot + ## @param kubectl.containerSecurityContext.allowPrivilegeEscalation Set kubectl containers' Security Context allowPrivilegeEscalation + ## @param kubectl.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context read-only root filesystem + ## @param kubectl.containerSecurityContext.seccompProfile.type Set kubectl containers' Security Context seccompProfile + ## @param kubectl.containerSecurityContext.capabilities.drop Set kubectl containers' Security Context capabilities to drop + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + seccompProfile: + type: RuntimeDefault + capabilities: + drop: ["ALL"] + ## Bitnami Kubectl resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param kubectl.resources.limits The resources limits for the kubectl containers + ## @param kubectl.resources.requests The requested resources for the kubectl containers + ## + resources: + limits: {} + requests: {} + +## init-sysctl container parameters +## used to perform sysctl operation to modify Kernel settings (needed sometimes to avoid warnings) +## +sysctl: + ## @param sysctl.enabled Enable init container to modify Kernel settings + ## + enabled: false + ## OS Shell + Utility image + ## ref: https://hub.docker.com/r/bitnami/os-shell/tags/ + ## @param sysctl.image.registry [default: REGISTRY_NAME] OS Shell + Utility image registry + ## @param sysctl.image.repository [default: REPOSITORY_NAME/os-shell] OS Shell + Utility image repository + ## @skip sysctl.image.tag OS Shell + Utility image tag (immutable tags are recommended) + ## @param sysctl.image.digest OS Shell + Utility image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param sysctl.image.pullPolicy OS Shell + Utility image pull policy + ## @param sysctl.image.pullSecrets OS Shell + Utility image pull secrets + ## + image: + registry: docker.io + repository: bitnami/os-shell + tag: 12-debian-12-r16 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## @param sysctl.command Override default init-sysctl container command (useful when using custom images) + ## + command: [] + ## @param sysctl.mountHostSys Mount the host `/sys` folder to `/host-sys` + ## + mountHostSys: false + ## Init container's resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param sysctl.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if sysctl.resources is set (sysctl.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param sysctl.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} +## @section useExternalDNS Parameters +## +## @param useExternalDNS.enabled Enable various syntax that would enable external-dns to work. Note this requires a working installation of `external-dns` to be usable. +## @param useExternalDNS.additionalAnnotations Extra annotations to be utilized when `external-dns` is enabled. +## @param useExternalDNS.annotationKey The annotation key utilized when `external-dns` is enabled. Setting this to `false` will disable annotations. +## @param useExternalDNS.suffix The DNS suffix utilized when `external-dns` is enabled. Note that we prepend the suffix with the full name of the release. +## +useExternalDNS: + enabled: false + suffix: "" + annotationKey: external-dns.alpha.kubernetes.io/ + additionalAnnotations: {} + diff --git a/dev/redmine/catalog-info.yaml b/dev/redmine/catalog-info.yaml new file mode 100644 index 0000000..53941f8 --- /dev/null +++ b/dev/redmine/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-redmine + title: redmine (dev) + description: redmine instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=redmine" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/redmine + title: redmine-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/redmine/handmatig-installeren b/dev/redmine/handmatig-installeren new file mode 100755 index 0000000..e69de29 diff --git a/dev/redmine/redmine.yaml b/dev/redmine/redmine.yaml new file mode 100755 index 0000000..916b591 --- /dev/null +++ b/dev/redmine/redmine.yaml @@ -0,0 +1,63 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: redmine + labels: + app: redmine +spec: + replicas: 1 + selector: + matchLabels: + app: redmine + template: + metadata: + labels: + app: redmine + spec: + containers: + - name: redmine + image: redmine + ports: + - containerPort: 3000 + env: + - name: REDMINE_PASSWORD + value: redmine + - name: REDMINE_USER + value: redmine + - name: REDMINE_DB_USERNAME + value: redmine + - name: REDMINE_DB_PASSWORD + value: redmine + - name: REDMINE_DB_MYSQL + value: mariadb-service + - name: REDMINE_DB_PORT_NUMBER + value: "3306" +--- +apiVersion: v1 +kind: Service +metadata: + name: redmine +spec: + ports: + - name: port-0 + nodePort: 32200 + port: 3000 + selector: + app: redmine + type: NodePort +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: redmine-tls-alldcs +spec: + entryPoints: + - websecure + routes: + - match: Host(`redmine.alldcs.nl`) + kind: Rule + services: + - name: redmine + port: 3000 + tls: + certResolver: letsencrypt diff --git a/dev/sonarqube/README.md b/dev/sonarqube/README.md new file mode 100755 index 0000000..83ea0af --- /dev/null +++ b/dev/sonarqube/README.md @@ -0,0 +1,11 @@ +Installatie: + +installeren via bitnami werkt niet, die image ondersteunt geen arm64v8 + +#let op: ingressroute-http is nodig om vanuit het AMD cluster te kunnen werken. + +global token: + +sqa_dcacbb464eedb501dec941af548b1cd1300143db + +#als sonarqube "under maintenance" is, ga dan naar url/setup diff --git a/dev/sonarqube/catalog-info.yaml b/dev/sonarqube/catalog-info.yaml new file mode 100644 index 0000000..0de7a58 --- /dev/null +++ b/dev/sonarqube/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-sonarqube + title: sonarqube (dev) + description: sonarqube instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=sonarqube" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/sonarqube + title: sonarqube-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/sonarqube/configmap/create-configmap-sonar-properties.sh b/dev/sonarqube/configmap/create-configmap-sonar-properties.sh new file mode 100755 index 0000000..c08a1f3 --- /dev/null +++ b/dev/sonarqube/configmap/create-configmap-sonar-properties.sh @@ -0,0 +1,2 @@ +microk8s kubectl delete configmap sonar-properties +microk8s kubectl create configmap sonar-properties --from-file="/home/ubuntu/containers/kubernetes/sonarqube/configmap/sonar-project.properties" diff --git a/dev/sonarqube/configmap/sonar-project.properties b/dev/sonarqube/configmap/sonar-project.properties new file mode 100755 index 0000000..e2f5572 --- /dev/null +++ b/dev/sonarqube/configmap/sonar-project.properties @@ -0,0 +1,7 @@ +sonar.projectVersion=1.0 +sonar.organization=allarddcs.nl +sonar.login=sqp_214ee7c92e1b82b0d43dd9b1d9462eac8f50434c +sonar.projectKey=olproperties +sonar.host.url=https://sonarqube-dev.allarddcs.nl +sonar.java.binaries=./target +sonar.coverage.jacoco.xmlReportPaths=./target/jacoco.xml diff --git a/dev/sonarqube/sonarqube.yaml b/dev/sonarqube/sonarqube.yaml new file mode 100755 index 0000000..e3d3627 --- /dev/null +++ b/dev/sonarqube/sonarqube.yaml @@ -0,0 +1,125 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: sonar-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/sonar + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: sonar-pvc + namespace: sonarqube +spec: + storageClassName: "" + volumeName: sonar-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: sonarqube + namespace: sonarqube + labels: + app: sonarqube +spec: + replicas: 1 + selector: + matchLabels: + app: sonarqube + template: + metadata: + labels: + app: sonarqube + spec: + containers: + - name: sonarqube + image: sonarqube + ports: + - name: sonarqube + containerPort: 9000 + env: + - name: SONAR_JDBC_URL + value: jdbc:postgresql://postgres14.postgres:5432/sonar + - name: SONAR_JDBC_USERNAME + value: sonar + - name: SONAR_JDBC_PASSWORD + value: sonar + volumeMounts: + - name: sonarqube + mountPath: /opt/sonarqube/extensions + subPath: sonarqube-extensions + - name: sonarqube + mountPath: /opt/sonarqube/data + subPath: sonarqube-data + volumes: + - name: sonarqube + persistentVolumeClaim: + claimName: sonar-pvc + - name: sonarqube-data + persistentVolumeClaim: + claimName: sonar-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: sonarqube + namespace: sonarqube + labels: + name: sonarqube +spec: + type: ClusterIP + selector: + app: sonarqube + ports: + - port: 9000 + name: sonarqube +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: sonarqube-http + namespace: sonarqube +spec: + entryPoints: + - web + routes: + - match: Host(`sonarqube-dev.allarddcs.nl`) + kind: Rule + services: + - name: sonarqube + port: 9000 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: sonarqube-tls + namespace: sonarqube +spec: + entryPoints: + - websecure + routes: + - match: Host(`sonarqube-dev.allarddcs.nl`) + kind: Rule + services: + - name: sonarqube + port: 9000 + tls: + certResolver: letsencrypt diff --git a/dev/tekton/README.md b/dev/tekton/README.md new file mode 100755 index 0000000..35d482f --- /dev/null +++ b/dev/tekton/README.md @@ -0,0 +1,43 @@ +#Installeren tekton-pipelines: + +kubectl apply --filename \ +https://storage.googleapis.com/tekton-releases/pipeline/latest/release.yaml + +#Installeren tekton-dashboard: + +kubectl apply --filename \ +https://storage.googleapis.com/tekton-releases/dashboard/latest/release-full.yaml + +#daarna: + +kubectl apply -f ingressroute-tls.yaml + +Taken die je vaak nodig hebt: + +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.10/raw +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.7/raw +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.9/raw +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/maven/0.4/raw +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/sonarqube-scanner/0.4/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/syft/0.1/syft.yaml +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/grype/0.1/grype.yaml +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/argocd-task-sync-and-wait/0.2/argocd-task-sync-and-wait.yaml +kubectl apply -f /home/ubuntu/containers/kubernetes/dev/tekton/tasks/push-sbom-task.yaml +kubectl apply -f /home/ubuntu/containers/kubernetes/dev/tekton/tasks/register-change-task.yaml +kubectl apply -f /home/ubuntu/containers/kubernetes/dev/tekton/tasks/curl-task.yaml +kubectl apply -f /home/ubuntu/containers/kubernetes/dev/tekton/tasks/argocd/argocd-task-synt-and-wait.yaml + +## Voor deze laatste task moet je ook een configmap en een secret aanmaken!! + + +#om TKN command-line te gebruiken: + +microk8s config > admin.conf +sudo mv admin.conf /etc/kubernetes/ + +#Tekton triggers: + +kubectl apply --filename \ +https://storage.googleapis.com/tekton-releases/triggers/latest/release.yaml +kubectl apply --filename \ +https://storage.googleapis.com/tekton-releases/triggers/latest/interceptors.yaml diff --git a/dev/tekton/catalog-info.yaml b/dev/tekton/catalog-info.yaml new file mode 100644 index 0000000..d1151d8 --- /dev/null +++ b/dev/tekton/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-tekton + title: tekton (dev) + description: tekton instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=tekton" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/tekton + title: tekton-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/tekton/clean.yaml b/dev/tekton/clean.yaml new file mode 100755 index 0000000..16dd01c --- /dev/null +++ b/dev/tekton/clean.yaml @@ -0,0 +1,52 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: cleaner +--- +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: cleaner +rules: + - apiGroups: ["tekton.dev"] + resources: ["pipelineruns"] + verbs: ["delete", "get", "watch", "list"] +--- +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: cleaner-to-cleaner +roleRef: + kind: Role + name: cleaner + apiGroup: rbac.authorization.k8s.io +subjects: + - kind: ServiceAccount + name: cleaner +--- +apiVersion: batch/v1 +kind: CronJob +metadata: + name: cleanup-pipelineruns +spec: + schedule: "*/15 * * * *" + concurrencyPolicy: Forbid + jobTemplate: + spec: + template: + spec: + restartPolicy: OnFailure + serviceAccount: cleaner + containers: + - name: kubectl + image: bitnami/kubectl:latest + env: + - name: NUM_TO_KEEP + value: "1" + command: + - /bin/bash + - -c + - | + TO_DELETE="$(kubectl get pipelinerun -o jsonpath='{range .items[?(@.status.completionTime)]}{.status.completionTime}{" "}{.metadata.name}{"\n"}{end}' | sort | head -n -${NUM_TO_KEEP} | awk '{ print $2}')" + test -n "$TO_DELETE" && kubectl delete pipelinerun ${TO_DELETE} || true diff --git a/dev/tekton/cleanup-pipelineruns.yaml b/dev/tekton/cleanup-pipelineruns.yaml new file mode 100755 index 0000000..47d3eda --- /dev/null +++ b/dev/tekton/cleanup-pipelineruns.yaml @@ -0,0 +1,53 @@ + +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: cleaner +--- +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: cleaner +rules: + - apiGroups: ["tekton.dev"] + resources: ["pipelineruns"] + verbs: ["delete", "get", "watch", "list"] +--- +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: cleaner-to-cleaner +roleRef: + kind: Role + name: cleaner + apiGroup: rbac.authorization.k8s.io +subjects: + - kind: ServiceAccount + name: cleaner +--- +apiVersion: batch/v1beta1 +kind: CronJob +metadata: + name: cleanup-pipelineruns +spec: + schedule: "*/15 * * * *" + concurrencyPolicy: Forbid + jobTemplate: + spec: + template: + spec: + restartPolicy: OnFailure + serviceAccount: cleaner + containers: + - name: kubectl + image: ghcr.io/ctron/kubectl:latest + env: + - name: NUM_TO_KEEP + value: "3" + command: + - /bin/bash + - -c + - | + TO_DELETE="$(kubectl get pipelinerun -o jsonpath='{range .items[?(@.status.completionTime)]}{.status.completionTime}{" "}{.metadata.name}{"\n"}{end}' | sort | head -n -${NUM_TO_KEEP} | awk '{ print $2}')" + test -n "$TO_DELETE" && kubectl delete pipelinerun ${TO_DELETE} || true diff --git a/dev/tekton/dashboard-patch.yaml b/dev/tekton/dashboard-patch.yaml new file mode 100755 index 0000000..f0f69b5 --- /dev/null +++ b/dev/tekton/dashboard-patch.yaml @@ -0,0 +1,31 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: tekton-dashboard-tutorial +rules: + - apiGroups: + - tekton.dev + resources: + - tasks + - taskruns + - pipelines + - pipelineruns + verbs: + - get + - create + - update + - patch +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: tekton-dashboard-tutorial + namespace: default +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-dashboard-tutorial +subjects: + - kind: ServiceAccount + name: default + namespace: tekton-dashboard diff --git a/dev/tekton/dashboard.yaml b/dev/tekton/dashboard.yaml new file mode 100755 index 0000000..a66e8c5 --- /dev/null +++ b/dev/tekton/dashboard.yaml @@ -0,0 +1,337 @@ +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + labels: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + name: extensions.dashboard.tekton.dev +spec: + group: dashboard.tekton.dev + names: + categories: + - tekton + - tekton-dashboard + kind: Extension + plural: extensions + shortNames: + - ext + - exts + preserveUnknownFields: false + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .spec.apiVersion + name: API version + type: string + - jsonPath: .spec.name + name: Kind + type: string + - jsonPath: .spec.displayname + name: Display name + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1alpha1 + schema: + openAPIV3Schema: + type: object + x-kubernetes-preserve-unknown-fields: true + served: true + storage: true + subresources: + status: {} +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + labels: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + name: tekton-dashboard + namespace: tekton-pipelines +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + labels: + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + name: tekton-dashboard-info + namespace: tekton-pipelines +rules: + - apiGroups: + - "" + resourceNames: + - dashboard-info + resources: + - configmaps + verbs: + - get +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + labels: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + name: tekton-dashboard-backend +rules: + - apiGroups: + - apiextensions.k8s.io + resources: + - customresourcedefinitions + verbs: + - get + - list + - apiGroups: + - security.openshift.io + resources: + - securitycontextconstraints + verbs: + - use + - apiGroups: + - tekton.dev + resources: + - clustertasks + verbs: + - get + - list + - watch + - update + - apiGroups: + - triggers.tekton.dev + resources: + - clusterinterceptors + - clustertriggerbindings + verbs: + - get + - list + - watch + - update +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + labels: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + name: tekton-dashboard-tenant +rules: + - apiGroups: + - dashboard.tekton.dev + resources: + - extensions + verbs: + - get + - list + - watch + - update + - apiGroups: + - "" + resources: + - events + - namespaces + - pods + - pods/log + verbs: + - get + - list + - watch + - update + - apiGroups: + - tekton.dev + resources: + - tasks + - taskruns + - pipelines + - pipelineruns + - customruns + verbs: + - get + - list + - watch + - update + - apiGroups: + - triggers.tekton.dev + resources: + - eventlisteners + - interceptors + - triggerbindings + - triggers + - triggertemplates + verbs: + - get + - list + - watch +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + labels: + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + name: tekton-dashboard-info + namespace: tekton-pipelines +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: tekton-dashboard-info +subjects: + - apiGroup: rbac.authorization.k8s.io + kind: Group + name: system:authenticated +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + labels: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + rbac.dashboard.tekton.dev/subject: tekton-dashboard + name: tekton-dashboard-backend +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-dashboard-backend +subjects: + - kind: ServiceAccount + name: tekton-dashboard + namespace: tekton-pipelines +--- +apiVersion: v1 +data: + version: v0.36.0 +kind: ConfigMap +metadata: + labels: + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + name: dashboard-info + namespace: tekton-pipelines +--- +apiVersion: v1 +kind: Service +metadata: + labels: + app: tekton-dashboard + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/name: dashboard + app.kubernetes.io/part-of: tekton-dashboard + app.kubernetes.io/version: v0.36.0 + dashboard.tekton.dev/release: v0.36.0 + version: v0.36.0 + name: tekton-dashboard + namespace: tekton-pipelines +spec: + ports: + - name: http + port: 9097 + protocol: TCP + targetPort: 9097 + selector: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/name: dashboard + app.kubernetes.io/part-of: tekton-dashboard +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app: tekton-dashboard + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/name: dashboard + app.kubernetes.io/part-of: tekton-dashboard + app.kubernetes.io/version: v0.36.0 + dashboard.tekton.dev/release: v0.36.0 + version: v0.36.0 + name: tekton-dashboard + namespace: tekton-pipelines +spec: + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/name: dashboard + app.kubernetes.io/part-of: tekton-dashboard + template: + metadata: + labels: + app: tekton-dashboard + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/name: dashboard + app.kubernetes.io/part-of: tekton-dashboard + app.kubernetes.io/version: v0.36.0 + name: tekton-dashboard + spec: + containers: + - args: + - --port=9097 + - --logout-url= + - --pipelines-namespace=tekton-pipelines + - --triggers-namespace=tekton-pipelines + - --read-only=no + - --log-level=info + - --log-format=json + - --namespace= + - --stream-logs=true + - --external-logs= + env: + - name: INSTALLED_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + image: gcr.io/tekton-releases/github.com/tektoncd/dashboard/cmd/dashboard:v0.36.0@sha256:e7058eabec6bc53bfb3505b637ea6208e6e81ff71a29a5f47a32fa0ed03cb5e4 + livenessProbe: + httpGet: + path: /health + port: 9097 + name: tekton-dashboard + ports: + - containerPort: 9097 + readinessProbe: + httpGet: + path: /readiness + port: 9097 + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + runAsGroup: 65532 + runAsNonRoot: true + runAsUser: 65532 + seccompProfile: + type: RuntimeDefault + nodeSelector: + kubernetes.io/os: linux + serviceAccountName: tekton-dashboard + volumes: [] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + labels: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + rbac.dashboard.tekton.dev/subject: tekton-dashboard + name: tekton-dashboard-tenant +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-dashboard-tenant +subjects: + - kind: ServiceAccount + name: tekton-dashboard + namespace: tekton-pipelines diff --git a/dev/tekton/delete-succeeded.sh b/dev/tekton/delete-succeeded.sh new file mode 100755 index 0000000..53d37bb --- /dev/null +++ b/dev/tekton/delete-succeeded.sh @@ -0,0 +1,2 @@ +microk8s kubectl delete pod --field-selector=status.phase==Succeeded +microk8s kubectl delete pod --field-selector=status.phase==Failed diff --git a/dev/tekton/examples/buildah/Dockerfile b/dev/tekton/examples/buildah/Dockerfile new file mode 100755 index 0000000..33e6724 --- /dev/null +++ b/dev/tekton/examples/buildah/Dockerfile @@ -0,0 +1,2 @@ +FROM alpine +ENTRYPOINT echo hallo Allard Krings diff --git a/dev/tekton/examples/buildah/README.md b/dev/tekton/examples/buildah/README.md new file mode 100755 index 0000000..20ac4cb --- /dev/null +++ b/dev/tekton/examples/buildah/README.md @@ -0,0 +1,15 @@ +Dit is een pipeline voor buildah. + +let op: + +gebruik de buildah task van Tekton zelf: + +kubectl apply -f +https://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.5/raw + +Deze task heeft een workspace "dockerconfig" die via de pipeline is gekoppeld aan +workspace "dockerconfig-ws" die op zijn beurt in de pipelinerun gekoppeld is aan +een secret "dockerconfig-secret dat gedefinieerd wordt conform +dockerconfig-secret.yaml + + diff --git a/dev/tekton/examples/buildah/buildah-workspace-pv.yaml b/dev/tekton/examples/buildah/buildah-workspace-pv.yaml new file mode 100755 index 0000000..dfe7ed6 --- /dev/null +++ b/dev/tekton/examples/buildah/buildah-workspace-pv.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: buildah-workspace-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/tekton-buildah + readOnly: false + diff --git a/dev/tekton/examples/buildah/buildah-workspace-pvc.yaml b/dev/tekton/examples/buildah/buildah-workspace-pvc.yaml new file mode 100755 index 0000000..ee7263a --- /dev/null +++ b/dev/tekton/examples/buildah/buildah-workspace-pvc.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: buildah-workspace-pvc +spec: + storageClassName: "" + volumeName: buildah-workspace-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + + diff --git a/dev/tekton/examples/buildah/create-secret-userid-password.sh b/dev/tekton/examples/buildah/create-secret-userid-password.sh new file mode 100755 index 0000000..13b0878 --- /dev/null +++ b/dev/tekton/examples/buildah/create-secret-userid-password.sh @@ -0,0 +1,2 @@ +microk8s kubectl create secret generic harbor-userid-password \ +--from-literal='Username=admin' --from-literal='Password=Harbor01@' diff --git a/dev/tekton/examples/buildah/docker-credentials.yaml b/dev/tekton/examples/buildah/docker-credentials.yaml new file mode 100755 index 0000000..4dfb9d0 --- /dev/null +++ b/dev/tekton/examples/buildah/docker-credentials.yaml @@ -0,0 +1,6 @@ +apiVersion: v1 +kind: Secret +metadata: + name: docker-credentials +data: + config.json: ewoJImF1dGhzIjogewoJCSJodHRwczovL2luZGV4LmRvY2tlci5pby92MS8iOiB7CgkJCSJhdXRoIjogIllXeHNZWEprYTNKcGJtZHpPa3QxWW1WeWJtVjBaWE13TVVBPSIKCQl9Cgl9Cn0= diff --git a/dev/tekton/examples/buildah/dockerconfig-secret.yaml b/dev/tekton/examples/buildah/dockerconfig-secret.yaml new file mode 100755 index 0000000..fa553b5 --- /dev/null +++ b/dev/tekton/examples/buildah/dockerconfig-secret.yaml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: Secret +metadata: + name: dockerconfig-secret +stringData: + config.json: | + { + "auths": { + "harbor.alldcs.nl": { + "auth": "YWRtaW46SGFyYm9yMDFA" + } + } + } diff --git a/dev/tekton/examples/buildah/medium/helloallard/Dockerfile b/dev/tekton/examples/buildah/medium/helloallard/Dockerfile new file mode 100755 index 0000000..e81ee04 --- /dev/null +++ b/dev/tekton/examples/buildah/medium/helloallard/Dockerfile @@ -0,0 +1,4 @@ +FROM alpine + +ENTRYPOINT echo hallo Allard Krings +# diff --git a/dev/tekton/examples/buildah/medium/pipeline.yaml b/dev/tekton/examples/buildah/medium/pipeline.yaml new file mode 100755 index 0000000..f300db6 --- /dev/null +++ b/dev/tekton/examples/buildah/medium/pipeline.yaml @@ -0,0 +1,32 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: tutorial-pipeline +spec: + workspaces: + - name: myworkspace + tasks: + - name: fetch-repository + taskRef: + name: git-clone + workspaces: + - name: output + workspace: myworkspace + params: + - name: url + value: https://github.com/AllardKrings/helloallard.git + - name: deleteExisting + value: "true" + - name: build + taskRef: + name: buildah + runAfter: + - fetch-repository + params: + - name: IMAGE + value: harbor.alldcs.nl/allard/helloallard + - name: IMAGE_PUSH_SECRET_NAME + value: harbor-credentials + workspaces: + - name: source + workspace: myworkspace diff --git a/dev/tekton/examples/buildah/medium/pipelinerun.yaml b/dev/tekton/examples/buildah/medium/pipelinerun.yaml new file mode 100755 index 0000000..4ef97c6 --- /dev/null +++ b/dev/tekton/examples/buildah/medium/pipelinerun.yaml @@ -0,0 +1,16 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + generateName: tutorial-pipeline- +spec: + pipelineRef: + name: tutorial-pipeline + workspaces: + - name: myworkspace + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 50Mi diff --git a/dev/tekton/examples/buildah/pipeline-run.yaml b/dev/tekton/examples/buildah/pipeline-run.yaml new file mode 100755 index 0000000..0d5d8a3 --- /dev/null +++ b/dev/tekton/examples/buildah/pipeline-run.yaml @@ -0,0 +1,24 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + generateName: buildah-clone-build-push- +spec: + pipelineRef: + name: buildah-clone-build-push + workspaces: + - name: myworkspace + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 50Mi + - name: dockerconfig-ws + secret: + secretName: dockerconfig-secret + params: + - name: repo-url + value: https://github.com/AllardKrings/helloallard.git + - name: image-reference + value: harbor.alldcs.nl/allard/hello-allard:1.0 diff --git a/dev/tekton/examples/buildah/pipeline.yaml b/dev/tekton/examples/buildah/pipeline.yaml new file mode 100755 index 0000000..f907b99 --- /dev/null +++ b/dev/tekton/examples/buildah/pipeline.yaml @@ -0,0 +1,35 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: buildah-clone-build-push +spec: + workspaces: + - name: myworkspace + - name: dockerconfig-ws + tasks: + - name: fetch-repository + taskRef: + name: git-clone + workspaces: + - name: output + workspace: myworkspace + params: + - name: url + value: https://github.com/AllardKrings/helloallard.git + - name: deleteExisting + value: "true" + - name: build + taskRef: + name: buildah + runAfter: + - fetch-repository + params: + - name: IMAGE + value: harbor.alldcs.nl/allard/helloallard:1.0 + - name: TLSVERIFY + value: "false" + workspaces: + - name: source + workspace: myworkspace + - name: dockerconfig + workspace: dockerconfig-ws diff --git a/dev/tekton/examples/chains/kaniko-chains.yaml b/dev/tekton/examples/chains/kaniko-chains.yaml new file mode 100755 index 0000000..466247b --- /dev/null +++ b/dev/tekton/examples/chains/kaniko-chains.yaml @@ -0,0 +1,63 @@ +apiVersion: tekton.dev/v1beta1 +kind: Task +metadata: + name: kaniko-chains +spec: + description: >- + This Task builds a simple Dockerfile with kaniko and pushes to a registry. + This Task stores the image name and digest as results, allowing Tekton Chains to pick up + that an image was built & sign it. + params: + - name: IMAGE + description: Name (reference) of the image to build. + - name: DOCKERFILE + description: Path to the Dockerfile to build. + default: ./Dockerfile + - name: CONTEXT + description: The build context used by Kaniko. + default: ./ + - name: EXTRA_ARGS + default: "" + - name: BUILDER_IMAGE + description: The image on which builds will run (default is v1.5.1) + default: gcr.io/kaniko-project/executor:v1.5.1@sha256:c6166717f7fe0b7da44908c986137ecfeab21f31ec3992f6e128fff8a94be8a5 + workspaces: + - name: source + description: Holds the context and Dockerfile + - name: dockerconfig + description: Includes a docker `config.json` + optional: true + mountPath: /kaniko/.docker + results: + - name: IMAGE_DIGEST + description: Digest of the image just built. + - name: IMAGE_URL + description: URL of the image just built. + steps: + - name: add-dockerfile + workingDir: $(workspaces.source.path) + image: bash + script: | + set -e + echo "FROM alpine@sha256:69e70a79f2d41ab5d637de98c1e0b055206ba40a8145e7bddb55ccc04e13cf8f" | tee $(params.DOCKERFILE) + - name: build-and-push + workingDir: $(workspaces.source.path) + image: $(params.BUILDER_IMAGE) + args: + - $(params.EXTRA_ARGS) + - --dockerfile=$(params.DOCKERFILE) + - --context=$(workspaces.source.path)/$(params.CONTEXT) # The user does not need to care the workspace and the source. + - --destination=$(params.IMAGE) + - --digest-file=$(results.IMAGE_DIGEST.path) + # kaniko assumes it is running as root, which means this example fails on platforms + # that default to run containers as random uid (like OpenShift). Adding this securityContext + # makes it explicit that it needs to run as root. + securityContext: + runAsUser: 0 + - name: write-url + image: bash + script: | + set -e + echo $(params.IMAGE) | tee $(results.IMAGE_URL.path) + securityContext: + runAsUser: 0 diff --git a/dev/tekton/examples/example-bank/.env.template b/dev/tekton/examples/example-bank/.env.template new file mode 100755 index 0000000..d663a76 --- /dev/null +++ b/dev/tekton/examples/example-bank/.env.template @@ -0,0 +1,7 @@ +APP_ID_IAM_APIKEY= +APP_ID_MANAGEMENT_URL= +APP_ID_CLIENT_ID= +APP_ID_CLIENT_SECRET= +APP_ID_TOKEN_URL= +PROXY_USER_MICROSERVICE=user-service:9080 +PROXY_TRANSACTION_MICROSERVICE=transaction-service:9080 \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/.gitignore b/dev/tekton/examples/example-bank/.gitignore new file mode 100755 index 0000000..dd91ad1 --- /dev/null +++ b/dev/tekton/examples/example-bank/.gitignore @@ -0,0 +1,5 @@ +node_modules +.env +.~/ +.DS_Store +.vscode diff --git a/dev/tekton/examples/example-bank/CONTRIBUTING.md b/dev/tekton/examples/example-bank/CONTRIBUTING.md new file mode 100755 index 0000000..e94f42f --- /dev/null +++ b/dev/tekton/examples/example-bank/CONTRIBUTING.md @@ -0,0 +1,14 @@ +# Contributing + +This is an open source project, and we appreciate your help! + +We use the GitHub issue tracker to discuss new features and non-trivial bugs. + +In addition to the issue tracker, [#journeys on +Slack](https://dwopen.slack.com) is the best way to get into contact with the +project's maintainers. + +To contribute code, documentation, or tests, please submit a pull request to +the GitHub repository. Generally, we expect two maintainers to review your pull +request before it is approved for merging. For more details, see the +[MAINTAINERS](MAINTAINERS.md) page. diff --git a/dev/tekton/examples/example-bank/Dockerfile b/dev/tekton/examples/example-bank/Dockerfile new file mode 100755 index 0000000..141fb9a --- /dev/null +++ b/dev/tekton/examples/example-bank/Dockerfile @@ -0,0 +1,15 @@ +FROM docker.io/library/node:12.16.1-alpine + +ENV NODE_ENV production +ENV PORT 8080 + +RUN mkdir /app +COPY public /app/public +COPY app.js /app/ +COPY package.json /app/package.json +COPY routes /app/routes +WORKDIR /app +RUN npm install + +CMD ["node", "app.js"] + diff --git a/dev/tekton/examples/example-bank/LICENSE b/dev/tekton/examples/example-bank/LICENSE new file mode 100755 index 0000000..261eeb9 --- /dev/null +++ b/dev/tekton/examples/example-bank/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/dev/tekton/examples/example-bank/MAINTAINERS.md b/dev/tekton/examples/example-bank/MAINTAINERS.md new file mode 100755 index 0000000..937a193 --- /dev/null +++ b/dev/tekton/examples/example-bank/MAINTAINERS.md @@ -0,0 +1,69 @@ +# Maintainers Guide + +This guide is intended for maintainers - anybody with commit access to one or +more Code Pattern repositories. + +## Methodology + +This repository does not have a traditional release management cycle, but +should instead be maintained as a useful, working, and polished reference at +all times. While all work can therefore be focused on the master branch, the +quality of this branch should never be compromised. + +The remainder of this document details how to merge pull requests to the +repositories. + +## Merge approval + +The project maintainers use LGTM (Looks Good To Me) in comments on the pull +request to indicate acceptance prior to merging. A change requires LGTMs from +two project maintainers. If the code is written by a maintainer, the change +only requires one additional LGTM. + +## Reviewing Pull Requests + +We recommend reviewing pull requests directly within GitHub. This allows a +public commentary on changes, providing transparency for all users. When +providing feedback be civil, courteous, and kind. Disagreement is fine, so long +as the discourse is carried out politely. If we see a record of uncivil or +abusive comments, we will revoke your commit privileges and invite you to leave +the project. + +During your review, consider the following points: + +### Does the change have positive impact? + +Some proposed changes may not represent a positive impact to the project. Ask +whether or not the change will make understanding the code easier, or if it +could simply be a personal preference on the part of the author (see +[bikeshedding](https://en.wiktionary.org/wiki/bikeshedding)). + +Pull requests that do not have a clear positive impact should be closed without +merging. + +### Do the changes make sense? + +If you do not understand what the changes are or what they accomplish, ask the +author for clarification. Ask the author to add comments and/or clarify test +case names to make the intentions clear. + +At times, such clarification will reveal that the author may not be using the +code correctly, or is unaware of features that accommodate their needs. If you +feel this is the case, work up a code sample that would address the pull +request for them, and feel free to close the pull request once they confirm. + +### Does the change introduce a new feature? + +For any given pull request, ask yourself "is this a new feature?" If so, does +the pull request (or associated issue) contain narrative indicating the need +for the feature? If not, ask them to provide that information. + +Are new unit tests in place that test all new behaviors introduced? If not, do +not merge the feature until they are! Is documentation in place for the new +feature? (See the documentation guidelines). If not do not merge the feature +until it is! Is the feature necessary for general use cases? Try and keep the +scope of any given component narrow. If a proposed feature does not fit that +scope, recommend to the user that they maintain the feature on their own, and +close the request. You may also recommend that they see if the feature gains +traction among other users, and suggest they re-submit when they can show such +support. diff --git a/dev/tekton/examples/example-bank/README.md b/dev/tekton/examples/example-bank/README.md new file mode 100755 index 0000000..d1d9bd2 --- /dev/null +++ b/dev/tekton/examples/example-bank/README.md @@ -0,0 +1,495 @@ +# Building a data privacy focused mobile back-end + +In this pattern, we show how to deploy a microservice based back-end in OpenShift 4.3. To simulate a series of mobile views, we deploy a Node.js based service. + +## Introduction + +As people become more aware of data and concerned about their online privacy, regulations around the world have started requiring software projects to think about how customers' data is handled. This pattern deploys a set of microservices to act as a back-end for a mobile bank application, such as those often used by businesses who want to better understand how people use their services by collecting data. Although inspired by regulations such GDPR (Europe's general data protection regulations), as this is not a real public facing application, we implement a few data privacy features as a way of demonstrating how one might go about building a privacy focused back-end in OpenShift 4. + +The GDPR standard defines requirements around what operations need to be available to users ("subjects"). However, GDPR is technology neutral, so it ends up being the responsibility of the implementors to build the architecture that implements the requirements. In addition, with the move toward microservice architectures and containerization, we have technology such as service mesh that may be useful in the context of a data privacy service. + +## Included Components + +- [IBM Managed OpenShift](https://www.ibm.com/cloud/openshift) +- [OpenLiberty](https://openliberty.io) +- [App ID](https://www.ibm.com/cloud/app-id) +- [LogDNA](https://www.ibm.com/cloud/log-analysis) + +# Prerequisites + +1. Log in, or create an cccount on [IBM Cloud](https://cloud.ibm.com) +2. Provision an OpenShift 4.3 cluster on [IBM Cloud](https://cloud.ibm.com/docs/openshift?topic=openshift-openshift_tutorial) +3. Create a [project](https://docs.openshift.com/container-platform/4.3/applications/projects/configuring-project-creation.html) called `example-bank`. + +## Why OpenShift? + +OpenShift is RedHat's customized distribution of Kubernetes. With OpenShift, you get everything that you know and love about Kubernetes, with a few extra features, such as OperatorHub, for finding and installing new in-cluster services, a convenient CLI for navigating between different projects. For a quick look into new features, see: [Intro to OpenShift 4](https://developer.ibm.com/articles/intro-to-openshift-4/). + +## Project Requirements + +In this pattern, we will be looking to build a hypothetical credit card rewards back-end for a financial organization that wants to encourage the use of credit cards by allowing their users to earn points from their transactions. + +Credit card rewards programs are common for businesses that want to incentivize customers to use credit frequently. As regulations come online, users typically have the ability to opt-out of data collection efforts. In addition, users want the ability to delete data. + +We have implemented a few important data privacy features inspired by real data privacy regulations: + +* Authorization verification with IBM App ID +* Right to erasure: implemented via a special Kubernetes `CronJob` that checks for deletion requests every 24h. +* Consent for data collection - requiring users to 'opt-in' requirement. +* Logging: IBM LogDNA is used to aggregate log data from back-end services, making it possible to review user activity as well as monitor usage. + +# Architecture + +The example bank system includes several microservices for handling user authentication and transacton mechanics. + +![screenshot](images/pattern-flow-diag.png) + + +## Introduction to the Mobile Simulator + + + +The JavaScript simulator app presents a Web based view of a mobile app run by a Node service running inside the OpenShift cluster.
+ +| | | | | | +|:-------------------------:|:-------------------------:|:-------------------------:|:-------------------------:|:-------------------------:| +|sim1 1. Home screen |sim1 1. Login screen | sim2 2. Transactions dashboard | sim3 3. Analysis | sim4 4. Account | + +Home screen
+ +The mobile simulator home screen has a fictitious banking application that the user can create accounts on. The other apps generates transactions for the chosen category. + +Login screen
+ +From the dropdown menu inside the simulated phone app, pick one of the available accounts, and click **sign in** to see that user's point accumulation. + +Transactions dashboard
+ +This section shows transactions data for the logged in user. + +Analysis
+ +This sections shows how much the users spent on each category based on the transactions generated. + +Account
+ +From this page, the user can delete his data. + +## User authentication + +![user-creation](images/user-creation.png) + +1. The user creates an account using the mobile app simulator. This hits an API from the nodejs server. The nodejs server then hits an API from the App ID service that would create the user's account in its own cloud directory. +2. The mobile app simulator then logs in the user after account creation. The App ID service then creates valid access tokens and ID tokens for the user. The mobile app stores these tokens for later use in authentication. +3. Using the access token from the previous step, the mobile app can now successfully call the protected APIs in the Liberty microservice. The mobile app calls the API with the access token in the authorization header to create the user profile in the database. +4. The Liberty service is integrated with the App ID instance. This verifies the access token in the authorization header from the request. +5. When the token is valid, the user profile is created in the database. The access token contains the user ID of the user that sent the request. + + +- Auth token flow with AppId as identity provider and Liberty's use of token to + authenticate users: + +The Liberty microservices are protected APIs that require authorization headers. If the request does not have one, it will not allow the request to be processed, thus sending a 401 Unauthorized response. The microservices makes use of a managed identity provider, App ID for this authentication. This makes it easier to protect APIs and manage identity information of users. + +The mobile app simulator is integrated with the App ID instance and whenever a user logs in, the app receives access tokens and stores them for later use in requests to the protected APIs. The tokens expire in an hour by default which would require users to authenticate again after expiration. + +Whenever a request with a token in the authorization header is sent, the Liberty microservice uses the App ID integration to make sure that the token is valid. Then it continues to process the request. The liberty microservice also makes use of the subject ID or user ID in the token to identify which user is making the request. For example, when a user asks for his number of points earned, it needs to pull the right profile from the database. This is where the user ID in the token payload can be made use of. + +# Deployment + +There are two options for deployment: an automated deployment process driven by Tekton pipelines, and a manual process driven by CLI. In either case, the following common steps should be completed first: + +1. Create an OpenShift 4.3 cluster. +2. Complete the PostgreSQL database deployment process (see below). +3. Follow the App ID configuration below. +4. Set up the required Kubernetes secrets for each service. + +### Automated deployment + +The steps to use the Tekton pipelines [here.](https://developer.ibm.com/tutorials/tekton-pipeline-deploy-a-mobile-app-backend-openshift-4/) + +### App ID Configuration + +Create an [App ID](https://cloud.ibm.com/catalog/services/app-id) instance. Once created, do the following to configure the instance for this pattern. + +**Note** The `.env.template` file referred to in the instructions is part of the code available in GitHub after running `git clone https://github.com/IBM/example-bank.git`. + +* Allow Sign-up and Sign-in using username and password by going to the tab `Cloud Directory` > `Settings` + +![allow-sign-in](images/allow-sign-in.png) + +* Disable Email Verification by going to the tab `Cloud Directory` > `Email Templates` > `Email verification` + +![disable-email](images/disable-email.png) + +* Add an application in the `Applications` tab. Select "Regular web application" + +![add-application](images/new-app.png) + + +* Create the `admin` role. + +![add-application](images/create-role.png) + +* Create Service credentials with the `Writer` Role so that the simulator can create simulated users with the App ID instance. Take note of the `apikey` and `managementUrl` and place them in the `.env.template` file. The values belong in `APP_ID_IAM_APIKEY` and `APP_ID_MANAGEMENT_URL` respectively. + +![writer-credentials](images/writer-credentials.png) + + +Take note of the `clientId`, `secret`, `oAuthServerUrl` and place them in the `.env.template` file of this repo. The values belong in `APP_ID_CLIENT_ID`, `APP_ID_CLIENT_SECRET`, `APP_ID_TOKEN_URL` respectively. + +![add-application](images/add-application.png) + +* Rename `.env.template` file to `.env` file + +## Secrets from App ID + +Open the credentials screen to view the client IDs and keys needed for the back-end to interact with the App ID via its REST API endpoint. + +The service credentials have the following fields - some of these are used in the `bank-oidc-secret` as described below: +``` +{ + "apikey": "APIKEY", + "appidServiceEndpoint": "https://us-south.appid.cloud.ibm.com", + "clientId": "CLIENTID", + "discoveryEndpoint": "https://us-south.appid.cloud.ibm.com/oauth/v4/3d17f53d-4600-4f32-bb2c-207f4e2f6060/.well-known/openid-configuration", + "iam_apikey_description": "Auto-generated for key ", + "iam_apikey_name": "write-credentials-for-creating-users", + "iam_role_crn": "crn:v1:bluemix:public:iam::::serviceRole:Writer", + "iam_serviceid_crn": "CRN", + "managementUrl": "https://us-south.appid.cloud.ibm.com/management/v4/3d17f53d-4600-4f32-bb2c-207f4e2f6060", + "oauthServerUrl": "https://us-south.appid.cloud.ibm.com/oauth/v4/3d17f53d-4600-4f32-bb2c-207f4e2f6060", + "profilesUrl": "https://us-south.appid.cloud.ibm.com", + "secret": "SECRET_STRING", + "tenantId": "TENANTID_STRING", + "version": 4 +} +``` + +Map these fields into the secret as follows: + +OIDC_JWKENDPOINT: oathServerUrl/publickeys + +OIDC_ISSUERIDENTIFIER: oathServerUrl + +OIDC_AUDIENCES: client ID of the application - see above. + + +``` +kubectl create secret generic bank-oidc-secret --from-literal=OIDC_JWKENDPOINTURL=https://us-south.appid.cloud.ibm.com/oauth/v4/3d17f53d-4600-4f32-bb2c-207f4e2f6060/publickeys --from-literal=OIDC_ISSUERIDENTIFIER=https://us-south.appid.cloud.ibm.com/oauth/v4/3d17f53d-4600-4f32-bb2c-207f4e2f6060 --from-literal=OIDC_AUDIENCES= +``` + +## Database setup + +The data in the example bank app lives in a PostgreSQL database. + +#### Bank Database design + +The database schema allows us to manage user profiles and track their transactions. + +![screenshot](images/schema-1.png) + +In this pattern, the database is created in a database instance created inside the OpenShift cluster. See [operator tutorial](https://developer.ibm.com/tutorials/operator-hub-openshift-4-operators-ibm-cloud/) and database load as described below. Take note of these important elements of the database configuration: + +1. Database name +2. Username +3. Password + +These will be used to create a Kubernetes secret that's used by all the services in the cluster. + +## Loading the Database Schema + +To load the schema, we are going to use a `Job` Kubernetes resource. This allows a task to +be run to completion to perform a task. + +Follow instructions [here](https://developer.ibm.com/tutorials/operator-hub-openshift-4-operators-ibm-cloud/) to create a database in the +project where the back-end services are deployed. + +After deploying the PostgreSQL database, create a secret for your database credentials. + +``` +# kubectl create secret generic bank-db-secret --from-literal=DB_SERVERNAME= --from-literal=DB_PORTNUMBER= --from-literal=DB_DATABASENAME=example --from-literal=DB_USER= --from-literal=DB_PASSWORD= +secret/bank-db-secret created +``` + +> Default Port is `5432`. Default username and password is `postgres` + +Verify the new secret appears in your project: + +``` +oc get secrets +bank-db-secret Opaque 5 35s +``` + +Build and deploy the image to load the database. + +``` +oc apply -f data_model/job.yaml +``` + +You can verify the successful deployment this way: + +1. Find the Jobs run: + +``` +$ oc get jobs +NAME COMPLETIONS DURATION AGE +cc-schema-load 1/1 29s 15m + +$ oc get pods +NAME READY STATUS RESTARTS AGE +cc-schema-load-xcfrs 0/1 Completed 0 15m +``` + +2. Then, check the logs for the job. You will see the output of the +SQL schema loading steps from the job container. + +``` +$ oc logs cc-schema-load-xcfrs +CREATE EXTENSION +CREATE DATABASE +You are now connected to database "example" as user "postgres". +CREATE SCHEMA +SET +CREATE TABLE +CREATE TABLE +CREATE TABLE +``` + +## Manual deployment of services + +## Check out the code and build images. + +### User and Transaction services + +The user and transaction services manage registered users and transactions using Open Liberty and JPA to handle database operations. + +- Check out the code for all services. + +``` +git clone https://github.com/IBM/example-bank.git +cd bank-app-backend +``` + +1. Follow the instructions in the README.md file to build the microservices with Maven. +2. Build the images and push them to an image repository like Docker Hub that is accessible to OpenShift. + +**Note 1:** All images referred to in the deployment scripts are pre-built and in Docker hub. You can use the deployments as is without rebuilding the images. + +**Note 2:** *If you are using the IBM Container Registry (ICR) to store images, IBM OpenShift clusters are provisioned with a image pull secret for ICR images only in the default namespace/project. Deployments to other prjects from ICR will require imagePullSecrets to be created.* + +Modify the deployment.yaml image path to point to the image and deploy both services: + +``` +oc apply -f transaction-service/deployment.yaml -f user-service/deployment.yaml +``` + +Verify the services are running: + +``` +$ oc get services +NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE +transaction-service ClusterIP 172.21.215.251 9080/TCP 3d23h +user-service ClusterIP 172.21.64.7 9080/TCP 3d23h + +$ oc get pods +NAME READY STATUS RESTARTS AGE +transaction-service-55b9bfb4cd-jzkgq 1/1 Running 0 26s +user-service-55b99c5c44-dpd9k 1/1 Running 0 25s +... +``` + +### Mobile Simulator + +- Verify that the `.env` file is correctly set up as described above in the App ID section. This will be used by both the node image at runtime and in creating a Kubernetes secret: + +``` +$ cd .. # if you're not in the root directory of this repo yet +$ cat .env +APP_ID_IAM_APIKEY= +APP_ID_MANAGEMENT_URL=https://us-south.appid.cloud.ibm.com/management/v4/ +APP_ID_CLIENT_ID= +APP_ID_CLIENT_SECRET= +APP_ID_TOKEN_URL=https://us-south.appid.cloud.ibm.com/oauth/v4/ +PROXY_USER_MICROSERVICE=user-service:9080 +PROXY_TRANSACTION_MICROSERVICE=transaction-service:9080 +``` + +This uses the .env file to create a secret used by the node process at runtime to communicate with the transaction and user services. + +``` +kubectl create secret generic mobile-simulator-secrets --from-env-file=.env +``` +- Build the docker image and push to your image repository. + +``` +docker build -t . +docker push +``` + +- Modify the `deployment.yaml` image path to point to the image. + +``` +oc apply -f deployment.yaml +``` + + +### Process Transaction - Serverless Application (Knative Serving) + +This part requires the OpenShift Serverless installed in your OpenShift cluster. To install, you can follow through these instructions + +- [Installing the OpenShift Serverless Operator](https://access.redhat.com/documentation/en-us/openshift_container_platform/4.3/html/serverless_applications/installing-openshift-serverless-1#serverless-install-web-console_installing-openshift-serverless) +- [Installing Knative Serving](https://access.redhat.com/documentation/en-us/openshift_container_platform/4.3/html/serverless_applications/installing-openshift-serverless-1#installing-knative-serving) + +After installing Knative Serving, you can now proceed in deploying the serverless application. + +This example serverless application handles the awarding of points for every transaction made. The application is only ran whenever there are new transactions. + +- Build and push the image on your own repository +``` +docker build -t bank-knative-service +docker push +``` + +- Modify `bank-knative-service/deployment.yaml` file to use the image you just built + +``` +# spec: +# containers: +# - image: +``` + +- Create an admin scoped user + +A user with an admin scoped is required to access the API that rewards the transactions with points from the transactions microservice. Create one from the App ID dashboard + +| | | | +|:-------------------------:|:-------------------------:|:-------------------------:| +|sim1 1. Create a user |sim1 2. Click on `+` sign to add a role | sim2 3. Choose `admin` role | + + + - Create a secret for the username and password you just created + +``` +kubectl create secret generic bank-oidc-adminuser --from-literal=APP_ID_ADMIN_USER= --from-literal=APP_ID_ADMIN_PASSWORD= +``` + +- Deploy the knative service + +``` +oc apply -f bank-knative-service/deployment.yaml +``` + +- Check Knative Serving status and also make sure the URL matches the environment variable `KNATIVE_SERVICE_URL` defined in `bank-app-backend/transaction-service/deployment.yaml` + +``` +oc get kservice # or kn service list - if you have kn cli installed +# NAME URL LATEST AGE CONDITIONS READY REASON +# process-transaction http://process-transaction.example-bank.svc.cluster.local process-transaction-9chv6 34d 3 OK / 3 True +``` + +> The serverless application can be reached at `http://process-transaction.example-bank.svc.cluster.local` in the example above. If it doesn't match with the one you deployed in the step [User and transaction services](#user-and-transaction-services), fix the `KNATIVE_SERVICE_URL` value in the `bank-app-backend/transaction-service/deployment.yaml` file and redeploy it again with `oc apply` + +### Access the application + +Once deployed, you can list the routes. You should see at least one route - for the mobile simulator service, ending in `.cloud`: + +``` +$ oc get routes +NAME HOST/PORT PATH SERVICES PORT TERMINATION WILDCARD +mobile-simulator-service mobile-simulator-service-pattern.koyfman-feb10-f2c6cdc6801be85fd188b09d006f13e3-0000.us-south.containers.appdomain.cloud transaction-service None + +``` + +The URL of the mobile simulator is: `mobile-simulator-service-pattern.koyfman-feb10-f2c6cdc6801be85fd188b09d006f13e3-0000.us-south.containers.appdomain.cloud` + +### Erasure service + +The erasure service is a Kubernetes `CronJob` that runs daily to anonymize data for users who have made a deletion request. + +- Build and push image + +``` +cd bank-user-cleanup-utility + +mvn package +docker build -t /bank-user-cleanup-utility:1.0-SNAPSHOT . +docker push /bank-user-cleanup-utility:1.0-SNAPSHOT +``` + +- Update the image name in the `job.yaml` file to point at the image in the repository used above. + +- Create secrets for the erasure service. + +The erasure service requires three secrets to communicate with the PostgreSQL database and App ID. The `bank-db-secret` was defined previously, as it's used by the other services. The two secrets are: + +1. `bank-appid-secret`: This secret defines environment variables for connecting the App ID, and includes the following parameters: +``` +kubectl create secret generic bank-appid-secret --from-literal=APPID_TENANTID= --from-literal=APPID_SERVICE_URL=https://us-south.appid.cloud.ibm.com +``` + +2. `bank-iam-secret`: This secret uses the IAM key to allow the service to authenticate to AppId. +``` +kubectl create secret generic bank-iam-secret --from-literal=IAM_APIKEY= --from-literal=IAM_SERVICE_URL=https://iam.cloud.ibm.com/identity/token +``` + +Here are the steps to retrieve this token: + +Via UI console: + +On the top right menu bar, click Manage > Access (IAM). +Select IBM Cloud API Keys in the left menu bar. +Click the Create an IBM Cloud API Key button. +Provide a name and click the Create button. + +CLI method is documented here: https://cloud.ibm.com/docs/iam?topic=iam-userapikey#create_user_key + +2. Deploy job: + +``` +oc apply -f job.yaml +``` + +Note that the CronJob won't run immediately upon, since it's scheduled to run every 24 hours. + +To run it on-demand, create a `Job` resources from the `CronJob`: + +``` +oc create job --from=cronjob/bank-user-cleanup-utility delete-now +``` + +When you list `jobs` you will see the completed delete-now job, as well as completed database load job. If you check the logs of the delete job, you'll see which users have been processed by the job. + +``` +$ oc get jobs +NAME COMPLETIONS DURATION AGE +delete-now 1/1 33s 45h +cc-schema-load 1/1 6s 3d +``` + +## Data cleanup + +Data erasure is a two-phase operation, one synchronous and one scheduled. When an authenticated `DELETE` REST call is made for a given user, the unique ID that ties the database user entry to AppId is cleared from the local in-cluster Postgres instance. As this is the only way to connect the data the bank app to the real user identity (name, etc.), we've effectively anonymized the transactions data. The Java `User` service then flags the account as deleted, which can be useful for logging purposes. + +The erasure service operates as a Kubernetes `CronJob` that checks that the user has been deleted from our database, and also removes them from App ID, effectively unregistering the user. + +## LogDNA Integration + +Finally, we connect our service with LogDNA to aggregate messages from the internal services. + +Follow the instructions to deploy LogDNA to the OpenShift cluster here: https://cloud.ibm.com/observe/logging. + +Once deployed, your instance of LogDNA will be keeping track of any logs that are created within the application. + +![logdna](images/logdna.png) + +There can be a lot to sift through. Use one of the filters from the dropdown menus at the top of the screen to limit which logs you are viewing. For instance, you can only see logs dealing with App ID by selecting it from the **Apps** menu: + +![logdna_appid](images/logdna_appid_select.png) + +## License + +This code pattern is licensed under the Apache License, Version 2. Separate third-party code objects invoked within this code pattern are licensed by their respective providers pursuant to their own separate licenses. Contributions are subject to the [Developer Certificate of Origin, Version 1.1](https://developercertificate.org/) and the [Apache License, Version 2](https://www.apache.org/licenses/LICENSE-2.0.txt). + +[Apache License FAQ](https://www.apache.org/foundation/license-faq.html#WhatDoesItMEAN) + diff --git a/dev/tekton/examples/example-bank/_config.yml b/dev/tekton/examples/example-bank/_config.yml new file mode 100755 index 0000000..f350a47 --- /dev/null +++ b/dev/tekton/examples/example-bank/_config.yml @@ -0,0 +1,3 @@ +markdown: kramdown +kramdown: + parse_block_html: true diff --git a/dev/tekton/examples/example-bank/app.js b/dev/tekton/examples/example-bank/app.js new file mode 100755 index 0000000..6d42c24 --- /dev/null +++ b/dev/tekton/examples/example-bank/app.js @@ -0,0 +1,53 @@ +/*eslint-env node*/ + +//------------------------------------------------------------------------------ +// node.js starter application for Bluemix +//------------------------------------------------------------------------------ + +// This application uses express as its web server +// for more info, see: http://expressjs.com +var express = require('express'); + +// cfenv provides access to your Cloud Foundry environment +// for more info, see: https://www.npmjs.com/package/cfenv +var cfenv = require('cfenv'); + +// create a new express server +var app = express(); + +var port = process.env.PORT || 8060; + +let DEVMODE = process.env.DEVMODE + +if (DEVMODE) { + app.get('/javascript/clientHelpers/libertyclient.js', (req, res) => {res.sendFile('public/javascript/clientHelpers/libertyclient-devmode.js', {root: __dirname})}) + app.get('/javascript/clientHelpers/demoaccounts.js', (req, res) => {res.sendFile('public/javascript/clientHelpers/demoaccounts-devmode.js', {root: __dirname})}) +} +// serve the files out of ./public as our main files +app.use(express.static(__dirname + '/public')); + +// get the app environment from Cloud Foundry +var appEnv = cfenv.getAppEnv(); +var log4js = require('log4js'); +var logger = log4js.getLogger(); + +logger.level = 'debug'; +logger.debug("launching bank simulated UI"); + +app.use(require("body-parser").json()); +app.use(require("body-parser").urlencoded({extended: false})); +// use createUser route + +if (!DEVMODE) { + app.use('/demo', require('./routes/createUser')) + // proxy for testing locally + let proxy = require('express-http-proxy') + let USER_MICROSREVICE = process.env.PROXY_USER_MICROSERVICE + let TRANSACTION_MICROSERVICE = process.env.PROXY_TRANSACTION_MICROSERVICE + app.use('/proxy_user', proxy(USER_MICROSREVICE)) + app.use('/proxy_transaction', proxy(TRANSACTION_MICROSERVICE)) +} + +// start server on the specified port and binding host +app.listen(port); +logger.debug("Listening on port ", port); diff --git a/dev/tekton/examples/example-bank/bank-app-backend/.gitignore b/dev/tekton/examples/example-bank/bank-app-backend/.gitignore new file mode 100755 index 0000000..1374aa0 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/.gitignore @@ -0,0 +1,37 @@ +**/target +!.keep + + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +/build/ + +### VS Code ### +.vscode/ + + +## Local configuration files +/local/config/* + +*.swo +*.swp +*.~ diff --git a/dev/tekton/examples/example-bank/bank-app-backend/README.md b/dev/tekton/examples/example-bank/bank-app-backend/README.md new file mode 100755 index 0000000..f3867a3 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/README.md @@ -0,0 +1,115 @@ + +## Building individual microservices + +### User service + +``` +mvn -pl :user-service -am package +docker build -t user-service:1.0-SNAPSHOT user-service +``` + +### Transaction service +``` +mvn -pl :transaction-service -am package +docker build -t transaction-service:1.0-SNAPSHOT transaction-service +``` + + +## Configuration + +### Secrets + +``` +kubectl create secret generic bank-db-secret --from-literal=DB_SERVERNAME= --from-literal=DB_PORTNUMBER= --from-literal=DB_DATABASENAME=ibmclouddb --from-literal=DB_USER= --from-literal=DB_PASSWORD= +kubectl create secret generic bank-oidc-secret --from-literal=OIDC_JWKENDPOINTURL=/publickeys --from-literal=OIDC_ISSUERIDENTIFIER= --from-literal=OIDC_AUDIENCES= +``` + + +## Curl commands + +### Users + +``` +curl -X POST -H "Authorization: Bearer " -H "Content-Type: application/json" -d "{\"consentGiven\": \"true\"}" -k https://localhost:9443/bank/v1/users + +curl -X GET "Authorization: Bearer " -k https://localhost:9443/bank/v1/users/self + +curl -X PUT "Authorization: Bearer " -H "Content-Type: application/json" -d "{\"consentGiven\": \"false\"}" -k https://localhost:9443/bank/v1/users/self + +curl -X DELETE "Authorization: Bearer " -k https://localhost:9443/bank/v1/users/self +``` + + +### User Events + +``` +curl -X POST "Authorization: Bearer " -H "Content-Type: application/json" -d "{\"eventId\": \"871859e4-9fca-4bcf-adb5-e7d063d0747e\"}" -k https://localhost:9443/bank/v1/userEvents + +curl -X GET "Authorization: Bearer " -k https://localhost:9443/bank/v1/userEvents/self + +curl -X GET "Authorization: Bearer " -k https://localhost:9443/bank/v1/userEvents/self/info +``` + + +### Events + +``` +curl -X POST "Authorization: Bearer " -H "Content-Type: application/json" -d "{\"eventName\": \"Event name\", \"pointValue\": 100}" -k https://localhost:9444/bank/v1/events + +curl -X GET "Authorization: Bearer " -k https://localhost:9444/bank/v1/events/{eventId} + +curl -X PUT "Authorization: Bearer " -H "Content-Type: application/json" -d "{\"eventName\": \"Event name\", \"pointValue\": 100}" -k https://localhost:9444/bank/v1/events/{eventId} + +curl -X GET "Authorization: Bearer " -k https://localhost:9444/bank/v1/events + +curl -X GET "Authorization: Bearer " -k "https://localhost:9444/bank/v1/events?id=&id=&id=" + +``` + +## Running the integration tests + +### Set environment variables + +Base URL where users and events services are deployed +``` +export USERS_BASEURL=http://: +export EVENTS_BASEURL=http://: +``` + +Prefix for test user names and the password they should use. These users are created dynamically by the tests. +``` +export TEST_USER_PREFIX= +export TEST_PASSWORD= +``` + +Admin user name and password. This user name must exist in App Id prior to running the test and must have the admin role. +``` +export TEST_ADMIN_USER= +export TEST_ADMIN_PASSWORD= +``` + +App Id service URL. Change to correct URL for the region where your App Id instance is deployed. +``` +export APPID_SERVICE_URL=https://us-south.appid.cloud.ibm.com +``` + +App Id tenant id, client id, and client password (secret) +``` +export APPID_TENANTID= +export OIDC_CLIENTID= +export OIDC_CLIENTPASSWORD= +export OIDC_ISSUERIDENTIFIER=%APPID_SERVICE_URL%/%APPID_TENANTID% +``` + +IAM API key (needed for authentication to App Id) +``` +export IAM_APIKEY= +export IAM_SERVICE_URL=https://iam.cloud.ibm.com/identity/token +``` + + +### Run the tests + +``` +mvn -pl :integration-tests -am verify +``` \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/common/pom.xml b/dev/tekton/examples/example-bank/bank-app-backend/common/pom.xml new file mode 100755 index 0000000..5f1930c --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/common/pom.xml @@ -0,0 +1,34 @@ + + + + 4.0.0 + + + com.ibm.codey.bank + parent + 1.0-SNAPSHOT + + + com.ibm.codey.bank + common + 1.0-SNAPSHOT + jar + + + + + io.openliberty.features + microProfile-3.0 + esa + + + + org.projectlombok + lombok + 1.18.16 + + + + \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/BaseResource.java b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/BaseResource.java new file mode 100755 index 0000000..a497b0c --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/BaseResource.java @@ -0,0 +1,26 @@ +package com.ibm.codey.bank; + +import javax.inject.Inject; + +import org.eclipse.microprofile.jwt.Claim; +import org.eclipse.microprofile.jwt.Claims; + +public class BaseResource { + + @Inject + @Claim("sub") + private String subject; + + @Inject + @Claim(standard = Claims.raw_token) + private String rawToken; + + protected String getCallerSubject() { + return subject; + } + + protected String getCallerCredentials() { + return "Bearer " + rawToken; + } + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/accounts/json/UserRegistration.java b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/accounts/json/UserRegistration.java new file mode 100755 index 0000000..d137711 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/accounts/json/UserRegistration.java @@ -0,0 +1,15 @@ +package com.ibm.codey.bank.accounts.json; + +import javax.json.bind.annotation.JsonbProperty; + +import lombok.Getter; +import lombok.Setter; +import lombok.ToString; + +@Getter @Setter @ToString +public class UserRegistration { + + @JsonbProperty + private boolean consentGiven; + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/accounts/json/UserRegistrationInfo.java b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/accounts/json/UserRegistrationInfo.java new file mode 100755 index 0000000..20a11d5 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/accounts/json/UserRegistrationInfo.java @@ -0,0 +1,18 @@ +package com.ibm.codey.bank.accounts.json; + +import javax.json.bind.annotation.JsonbProperty; + +import lombok.Getter; +import lombok.Setter; +import lombok.ToString; + +@Getter @Setter @ToString +public class UserRegistrationInfo { + + @JsonbProperty + private String userId; + + @JsonbProperty + private boolean consentGiven; + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/KnativeService.java b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/KnativeService.java new file mode 100755 index 0000000..943a3e9 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/KnativeService.java @@ -0,0 +1,23 @@ +package com.ibm.codey.bank.catalog; + +import java.util.List; +import java.util.Map; +import java.util.concurrent.CompletionStage; + +import javax.enterprise.context.Dependent; +import javax.ws.rs.HeaderParam; +import javax.ws.rs.POST; +import javax.ws.rs.Path; +import javax.ws.rs.QueryParam; + +import org.eclipse.microprofile.rest.client.inject.RegisterRestClient; + +@Dependent +@RegisterRestClient +public interface KnativeService { + + @POST + @Path("process") + public CompletionStage processTransaction(@QueryParam("transactionId") String transactionId, @QueryParam("category") String category, @QueryParam("amount") String amount); + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/UserService.java b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/UserService.java new file mode 100755 index 0000000..09578fc --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/UserService.java @@ -0,0 +1,30 @@ +package com.ibm.codey.bank.catalog; + +import java.util.List; +import java.util.Map; + +import javax.enterprise.context.Dependent; +import javax.ws.rs.GET; +import javax.ws.rs.HeaderParam; +import javax.ws.rs.PathParam; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.QueryParam; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; + +import org.eclipse.microprofile.rest.client.inject.RegisterRestClient; + +import com.ibm.codey.bank.accounts.json.UserRegistration; +import com.ibm.codey.bank.accounts.json.UserRegistrationInfo; + +@Dependent +@RegisterRestClient +public interface UserService { + + @GET + @Path("self") + @Produces(MediaType.APPLICATION_JSON) + public UserRegistrationInfo getUserConsent(@HeaderParam("Authorization") String authorizationHeader); + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/json/CreateTransactionDefinition.java b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/json/CreateTransactionDefinition.java new file mode 100755 index 0000000..0c5cfca --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/json/CreateTransactionDefinition.java @@ -0,0 +1,23 @@ +package com.ibm.codey.bank.catalog.json; + +import java.math.BigDecimal; + +import javax.json.bind.annotation.JsonbProperty; + +import lombok.Getter; +import lombok.Setter; +import lombok.ToString; + +@Getter @Setter @ToString +public class CreateTransactionDefinition { + + @JsonbProperty + private String transactionName; + + @JsonbProperty + private String category; + + @JsonbProperty + private BigDecimal amount; + +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/json/RewardTransactionDefinition.java b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/json/RewardTransactionDefinition.java new file mode 100755 index 0000000..4c7d669 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/json/RewardTransactionDefinition.java @@ -0,0 +1,17 @@ +package com.ibm.codey.bank.catalog.json; + +import java.math.BigDecimal; + +import javax.json.bind.annotation.JsonbProperty; + +import lombok.Getter; +import lombok.Setter; +import lombok.ToString; + +@Getter @Setter @ToString +public class RewardTransactionDefinition { + + @JsonbProperty + private BigDecimal pointsEarned; + +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/LoggingInterceptor.java b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/LoggingInterceptor.java new file mode 100755 index 0000000..3cfc5e1 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/LoggingInterceptor.java @@ -0,0 +1,66 @@ +package com.ibm.codey.bank.interceptor; + +import java.util.Arrays; +import java.util.logging.Level; +import java.util.logging.Logger; + +import javax.inject.Inject; +import javax.interceptor.AroundInvoke; +import javax.interceptor.InvocationContext; +import javax.json.Json; +import javax.json.JsonObjectBuilder; +import javax.ws.rs.core.Response; + +import org.eclipse.microprofile.jwt.Claim; + +/* + * This interceptor is used with the JAXRS resource classes to log any exception and return a 500 status code to the client. + * This could have been accomplished with an ExceptionMapper as well but an interceptor lets us also log information about + * the failing method and input parameters. + */ +public class LoggingInterceptor { + + private static final Logger log = Logger.getLogger(LoggingInterceptor.class.getName()); + + @Inject + @Claim("sub") + private String subject; + + @AroundInvoke + public Object logInvocation(InvocationContext ctx) { + try { + Object result = ctx.proceed(); + logRequestAndResult(ctx, result); + return result; + } catch(Throwable e) { + String clz = ctx.getMethod().getDeclaringClass().getName(); + String method = ctx.getMethod().getName(); + Object[] params = ctx.getParameters(); + if (params != null && params.length > 0) { + log.log(Level.SEVERE, "***** Exception in " + clz + "." + method, params); + } else { + log.log(Level.SEVERE, "***** Exception in " + clz + "." + method); + } + e.printStackTrace(); + return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build(); + } + } + + private void logRequestAndResult(InvocationContext ctx, Object result) { + String methodName = ctx.getMethod().getName(); + Object[] params = ctx.getParameters(); + JsonObjectBuilder requestBuilder = Json.createObjectBuilder() + .add("subject", subject) + .add("action", methodName); + if (params != null && params.length > 0) { + requestBuilder.add("input", Arrays.toString(params)); + } + if (result instanceof Response) { + Response response = (Response)result; + requestBuilder.add("statuscode", response.getStatus()); + } + log.log(Level.INFO, "API REQUEST", requestBuilder.build()); + } + + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/SecurityInterceptor.java b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/SecurityInterceptor.java new file mode 100755 index 0000000..9f76e17 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/SecurityInterceptor.java @@ -0,0 +1,38 @@ +package com.ibm.codey.bank.interceptor; + +import javax.annotation.Priority; +import javax.inject.Inject; +import javax.interceptor.AroundInvoke; +import javax.interceptor.Interceptor; +import javax.interceptor.InvocationContext; +import javax.ws.rs.core.Response; + +import org.eclipse.microprofile.jwt.Claim; + +import com.ibm.codey.bank.interceptor.binding.RequiresAuthorization; + +/* + * This interceptor is used with the JAXRS resource classes to enforce a client scope for authorization purposes. + */ +@RequiresAuthorization @Interceptor +@Priority(Interceptor.Priority.APPLICATION) +public class SecurityInterceptor { + + @Inject + @Claim("scope") + private String scope; + + @AroundInvoke + public Object checkScope(InvocationContext ctx) throws Exception { + String[] scopeList = scope.split(" "); + for(String hasScope : scopeList) { + if (hasScope.equals("admin")) { + Object result = ctx.proceed(); + return result; + } + } + return Response.status(Response.Status.FORBIDDEN).entity("admin permission required").build(); + } + + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/binding/RequiresAuthorization.java b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/binding/RequiresAuthorization.java new file mode 100755 index 0000000..65863e3 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/binding/RequiresAuthorization.java @@ -0,0 +1,18 @@ +package com.ibm.codey.bank.interceptor.binding; + +import static java.lang.annotation.ElementType.METHOD; +import static java.lang.annotation.ElementType.TYPE; +import static java.lang.annotation.RetentionPolicy.RUNTIME; + +import java.lang.annotation.Inherited; +import java.lang.annotation.Retention; +import java.lang.annotation.Target; + +import javax.interceptor.InterceptorBinding; + +@Inherited +@InterceptorBinding +@Target({TYPE, METHOD}) +@Retention(RUNTIME) +public @interface RequiresAuthorization { +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/pom.xml b/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/pom.xml new file mode 100755 index 0000000..a711109 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/pom.xml @@ -0,0 +1,43 @@ + + + + 4.0.0 + + + com.ibm.codey.bank + parent + 1.0-SNAPSHOT + + + com.ibm.codey.bank + integration-tests + 1.0-SNAPSHOT + jar + + + + com.ibm.codey.bank + common + 1.0-SNAPSHOT + jar + + + org.apache.commons + commons-lang3 + 3.9 + + + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + + diff --git a/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/EndpointTestBase.java b/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/EndpointTestBase.java new file mode 100755 index 0000000..3a07f8d --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/EndpointTestBase.java @@ -0,0 +1,175 @@ +package it.com.ibm.codey.loyalty; + +import java.lang.reflect.Type; +import java.util.Map; + +import javax.json.bind.Jsonb; +import javax.json.bind.JsonbBuilder; +import javax.ws.rs.client.Client; +import javax.ws.rs.client.ClientBuilder; +import javax.ws.rs.client.Entity; +import javax.ws.rs.client.WebTarget; +import javax.ws.rs.core.HttpHeaders; +import javax.ws.rs.core.MultivaluedHashMap; +import javax.ws.rs.core.Response; + +import static org.junit.Assert.fail; + +import com.ibm.codey.loyalty.accounts.json.UserRegistration; + +import it.com.ibm.codey.loyalty.util.TestSecurityHelper; + +public class EndpointTestBase { + + protected static String USERS_BASEURL; + protected static String EVENTS_BASEURL; + + protected static String TEST_USER_PREFIX; + protected static String TEST_USER; + protected static String TEST_PASSWORD; + protected static String userAccessToken; + + protected static String TEST_ADMIN_USER; + protected static String TEST_ADMIN_PASSWORD; + protected static String adminAccessToken; + + protected static final String USERS_ENDPOINT = "/loyalty/v1/users"; + protected static final String USERS_SELF_ENDPOINT = "/loyalty/v1/users/self"; + protected static final String USER_EVENTS_ENDPOINT = "/loyalty/v1/userEvents"; + protected static final String USER_EVENTS_SELF_ENDPOINT = "/loyalty/v1/userEvents/self"; + protected static final String USER_EVENTS_SELF_INFO_ENDPOINT = "/loyalty/v1/userEvents/self/info"; + protected static final String EVENTS_ENDPOINT = "/loyalty/v1/events"; + + protected static boolean CONSENT_GIVEN = true; + protected static boolean CONSENT_NOT_GIVEN = false; + + static { + USERS_BASEURL = System.getenv("USERS_BASEURL"); + EVENTS_BASEURL = System.getenv("EVENTS_BASEURL"); + TEST_USER_PREFIX = System.getenv("TEST_USER_PREFIX"); + TEST_PASSWORD = System.getenv("TEST_PASSWORD"); + TEST_ADMIN_USER = System.getenv("TEST_ADMIN_USER"); + TEST_ADMIN_PASSWORD = System.getenv("TEST_ADMIN_PASSWORD"); + } + + private Client client; + + protected void setup() { + client = ClientBuilder.newClient(); + TEST_USER = TEST_USER_PREFIX + (int) ((Math.random() * 999999) + 1); + } + + protected void teardown() { + client.close(); + } + + protected T get(String baseUrl, String endpoint, Map queryParams, String accessToken, Response.Status expectedStatusCode, Type returnType) { + String url = baseUrl + endpoint; + WebTarget target = client.target(url); + if (queryParams != null) { + for (String key: queryParams.keySet()) { + target = target.queryParam(key, queryParams.get(key)); + } + } + MultivaluedHashMap headers = new MultivaluedHashMap(); + if (accessToken != null) { + String authHeader = "Bearer " + accessToken; + headers.putSingle(HttpHeaders.AUTHORIZATION, authHeader); + } + try (Response response = target.request().headers(headers).get()) { + checkStatusCode(url, response, expectedStatusCode); + if (returnType == Void.class) { + return null; + } + String jsonString = response.readEntity(String.class); + if (returnType.equals(String.class)) { + return (T)jsonString; + } + Jsonb jsonb = JsonbBuilder.create(); + return jsonb.fromJson(jsonString, returnType); + } + } + + protected T put(String baseUrl, String endpoint, Object body, String accessToken, Response.Status expectedStatusCode, Class returnType) { + String url = baseUrl + endpoint; + Jsonb jsonb = JsonbBuilder.create(); + String jsonBody = jsonb.toJson(body); + MultivaluedHashMap headers = new MultivaluedHashMap(); + if (accessToken != null) { + String authHeader = "Bearer " + accessToken; + headers.putSingle(HttpHeaders.AUTHORIZATION, authHeader); + } + try (Response response = client.target(url).request().headers(headers).buildPut(Entity.json(jsonBody)).invoke()) { + checkStatusCode(url, response, expectedStatusCode); + if (returnType == Void.class) { + return null; + } + String jsonString = response.readEntity(String.class); + if (returnType.equals(String.class)) { + return (T)jsonString; + } + return jsonb.fromJson(jsonString, returnType); + } + } + + protected T post(String baseUrl, String endpoint, Object body, String accessToken, Response.Status expectedStatusCode, Class returnType) { + String url = baseUrl + endpoint; + Jsonb jsonb = JsonbBuilder.create(); + String jsonBody = jsonb.toJson(body); + MultivaluedHashMap headers = new MultivaluedHashMap(); + if (accessToken != null) { + String authHeader = "Bearer " + accessToken; + headers.putSingle(HttpHeaders.AUTHORIZATION, authHeader); + } + try (Response response = client.target(url).request().headers(headers).buildPost(Entity.json(jsonBody)).invoke()) { + checkStatusCode(url, response, expectedStatusCode); + if (returnType == Void.class) { + return null; + } + String jsonString = response.readEntity(String.class); + if (returnType.equals(String.class)) { + return (T)jsonString; + } + return jsonb.fromJson(jsonString, returnType); + } + } + + protected void delete(String baseUrl, String endpoint, String accessToken, Response.Status expectedStatusCode) { + String url = baseUrl + endpoint; + MultivaluedHashMap headers = new MultivaluedHashMap(); + if (accessToken != null) { + String authHeader = "Bearer " + accessToken; + headers.putSingle(HttpHeaders.AUTHORIZATION, authHeader); + } + try (Response response = client.target(url).request().headers(headers).buildDelete().invoke()) { + checkStatusCode(url, response, expectedStatusCode); + } + } + + protected void setupUser() { + // Create a user in the user registry. + TestSecurityHelper.createUser(TEST_USER, TEST_PASSWORD); + + // Log the user in and obtain an access token for invoking the API. + userAccessToken = TestSecurityHelper.signOn(TEST_USER, TEST_PASSWORD); + + // Create user registration + UserRegistration userRegistration = new UserRegistration(); + userRegistration.setConsentGiven(CONSENT_GIVEN); + post(USERS_BASEURL, USERS_ENDPOINT, userRegistration, userAccessToken, Response.Status.NO_CONTENT, Void.class); + } + + protected void removeUser() { + // Use DELETE to remove user registration. + delete(USERS_BASEURL, USERS_SELF_ENDPOINT, userAccessToken, Response.Status.NO_CONTENT); + } + + private void checkStatusCode(String url, Response response, Response.Status expectedStatusCode) { + if (expectedStatusCode.getStatusCode() != response.getStatus()) { + fail("Unexpected response code " + response.getStatus() + + " (expected " + expectedStatusCode.getStatusCode() + + ") from " + url + " Response=" + response.readEntity(String.class)); + } + } + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/accounts/UserEndpointTest.java b/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/accounts/UserEndpointTest.java new file mode 100755 index 0000000..393abb6 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/accounts/UserEndpointTest.java @@ -0,0 +1,66 @@ +package it.com.ibm.codey.loyalty.accounts; + +import javax.ws.rs.core.Response; + +import static org.junit.Assert.assertEquals; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import com.ibm.codey.loyalty.accounts.json.UserRegistration; + +import it.com.ibm.codey.loyalty.EndpointTestBase; +import it.com.ibm.codey.loyalty.util.TestSecurityHelper; + +public class UserEndpointTest extends EndpointTestBase { + + @Before + public void setup() { + super.setup(); + } + + @After + public void teardown() { + super.teardown(); + } + + @Test + public void testUserRegistrationAndDeletion() { + try { + setupUser(); + // Use GET to get the user registration. + UserRegistration checkUserRegistration = get(USERS_BASEURL, USERS_SELF_ENDPOINT, null, userAccessToken, Response.Status.OK, UserRegistration.class); + assertEquals("Consent flag is incorrect", CONSENT_GIVEN, checkUserRegistration.isConsentGiven()); + } finally { + removeUser(); + } + } + + @Test + public void testUserRegistrationModificationAndDeletion() { + try { + setupUser(); + // Use PUT to change the user registration. + UserRegistration userRegistration = new UserRegistration(); + userRegistration.setConsentGiven(CONSENT_NOT_GIVEN); + put(USERS_BASEURL, USERS_SELF_ENDPOINT, userRegistration, userAccessToken, Response.Status.NO_CONTENT, Void.class); + // Use GET to get the user registration. + UserRegistration checkUserRegistration = get(USERS_BASEURL, USERS_SELF_ENDPOINT, null, userAccessToken, Response.Status.OK, UserRegistration.class); + assertEquals("Consent flag is incorrect", CONSENT_NOT_GIVEN, checkUserRegistration.isConsentGiven()); + } finally { + removeUser(); + } + } + + @Test + public void testAuthenticationFailure() { + // Make calls without an authentication header and verify they are rejected. + UserRegistration userRegistration = new UserRegistration(); + userRegistration.setConsentGiven(CONSENT_GIVEN); + post(USERS_BASEURL, USERS_ENDPOINT, userRegistration, null, Response.Status.UNAUTHORIZED, Void.class); + get(USERS_BASEURL, USERS_SELF_ENDPOINT, null, null, Response.Status.UNAUTHORIZED, Void.class); + put(USERS_BASEURL, USERS_SELF_ENDPOINT, userRegistration, null, Response.Status.UNAUTHORIZED, Void.class); + delete(USERS_BASEURL, USERS_SELF_ENDPOINT, null, Response.Status.UNAUTHORIZED); + } + +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/accounts/UserEventsEndpointTest.java b/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/accounts/UserEventsEndpointTest.java new file mode 100755 index 0000000..84f3e1d --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/accounts/UserEventsEndpointTest.java @@ -0,0 +1,177 @@ +package it.com.ibm.codey.loyalty.accounts; + +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; +import javax.ws.rs.core.Response; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import com.ibm.codey.loyalty.accounts.json.UserEventCheckIn; +import com.ibm.codey.loyalty.accounts.json.UserEventInfo; +import com.ibm.codey.loyalty.accounts.json.UserRegistration; +import com.ibm.codey.loyalty.catalog.json.EventDefinition; + +import it.com.ibm.codey.loyalty.EndpointTestBase; +import it.com.ibm.codey.loyalty.util.TestSecurityHelper; + +public class UserEventsEndpointTest extends EndpointTestBase { + + private static String normalPointsEventId, doublePointsEventId; + + private static final int NORMAL_POINTS = 10; + private static final int DOUBLE_POINTS = NORMAL_POINTS*2; + + private static final String NORMAL_POINTS_EVENT_NAME = "test event normal points"; + private static final String DOUBLE_POINTS_EVENT_NAME = "test event double points"; + + private static boolean eventsCreated = false; + + @Before + public void setup() { + super.setup(); + // Create events. These are reused for all tests. + // This isn't done in a BeforeClass method because it depends on the non-static post() method in the superclass. + if (!eventsCreated) { + adminAccessToken = TestSecurityHelper.signOn(TEST_ADMIN_USER, TEST_ADMIN_PASSWORD); + normalPointsEventId = createEvent(NORMAL_POINTS_EVENT_NAME, NORMAL_POINTS); + doublePointsEventId = createEvent(DOUBLE_POINTS_EVENT_NAME, DOUBLE_POINTS); + eventsCreated = true; + } + } + + @After + public void teardown() { + super.teardown(); + } + + @Test + public void testEventCheckin() { + try { + setupUser(); + + // Verify no events attended or points earned yet + UserEventInfo userEventInfo = get(USERS_BASEURL, USER_EVENTS_SELF_INFO_ENDPOINT, null, userAccessToken, Response.Status.OK, UserEventInfo.class); + assertEquals("initial event count is incorrect", 0, userEventInfo.getEventCount()); + assertEquals("initial points earned is incorrect", 0, userEventInfo.getPointsEarned()); + + // Check in to first event + UserEventCheckIn checkIn1 = new UserEventCheckIn(); + checkIn1.setEventId(normalPointsEventId); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn1, userAccessToken, Response.Status.NO_CONTENT, Void.class); + + // Verify check in to first event + String[] eventIds = get(USERS_BASEURL, USER_EVENTS_SELF_ENDPOINT, null, userAccessToken, Response.Status.OK, String[].class); + assertEquals("GET returned incorrect number of events checked in", 1, eventIds.length); + assertEquals("Event id is incorrect", normalPointsEventId, eventIds[0]); + + // Verify points earned + UserEventInfo userEventInfo2 = get(USERS_BASEURL, USER_EVENTS_SELF_INFO_ENDPOINT, null, userAccessToken, Response.Status.OK, UserEventInfo.class); + assertEquals("event count is incorrect", 1, userEventInfo2.getEventCount()); + assertEquals("points earned is incorrect", NORMAL_POINTS, userEventInfo2.getPointsEarned()); + + // Check in to second event + UserEventCheckIn checkIn2 = new UserEventCheckIn(); + checkIn2.setEventId(doublePointsEventId); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn2, userAccessToken, Response.Status.NO_CONTENT, Void.class); + + // Verify check in to both events + String[] eventIds2 = get(USERS_BASEURL, USER_EVENTS_SELF_ENDPOINT, null, userAccessToken, Response.Status.OK, String[].class); + assertEquals("GET returned incorrect number of events checked in", 2, eventIds2.length); + if (eventIds2[0].equals(normalPointsEventId)) { + assertEquals("Event id [1] is incorrect", doublePointsEventId, eventIds2[1]); + } else { + assertEquals("Event id [0] is incorrect", doublePointsEventId, eventIds2[0]); + assertEquals("Event id [1] is incorrect", normalPointsEventId, eventIds2[1]); + } + + // Verify points earned + UserEventInfo userEventInfo3 = get(USERS_BASEURL, USER_EVENTS_SELF_INFO_ENDPOINT, null, userAccessToken, Response.Status.OK, UserEventInfo.class); + assertEquals("event count is incorrect", 2, userEventInfo3.getEventCount()); + assertEquals("points earned is incorrect", NORMAL_POINTS+DOUBLE_POINTS, userEventInfo3.getPointsEarned()); + } finally { + removeUser(); + } + } + + @Test + public void testDuplicateEventCheckin() { + try { + setupUser(); + // Check in to first event + UserEventCheckIn checkIn1 = new UserEventCheckIn(); + checkIn1.setEventId(normalPointsEventId); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn1, userAccessToken, Response.Status.NO_CONTENT, Void.class); + // Check in to first event again + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn1, userAccessToken, Response.Status.BAD_REQUEST, Void.class); + } finally { + removeUser(); + } + } + + @Test + public void testWithNonConsentedUser() { + try { + setupUser(); + // Use PUT to change user registration to withdraw consent + UserRegistration userRegistration = new UserRegistration(); + userRegistration.setConsentGiven(CONSENT_NOT_GIVEN); + put(USERS_BASEURL, USERS_SELF_ENDPOINT, userRegistration, userAccessToken, Response.Status.NO_CONTENT, Void.class); + // Try to check into an event or get information + UserEventCheckIn checkIn1 = new UserEventCheckIn(); + checkIn1.setEventId(normalPointsEventId); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn1, userAccessToken, Response.Status.CONFLICT, Void.class); + get(USERS_BASEURL, USER_EVENTS_SELF_ENDPOINT, null, userAccessToken, Response.Status.CONFLICT, Void.class); + get(USERS_BASEURL, USER_EVENTS_SELF_INFO_ENDPOINT, null, userAccessToken, Response.Status.CONFLICT, Void.class); + } finally { + removeUser(); + } + } + + @Test + public void testWithUnregisteredUser() { + setupUser(); + removeUser(); + // Try to check into an event or get information + UserEventCheckIn checkIn1 = new UserEventCheckIn(); + checkIn1.setEventId(normalPointsEventId); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn1, userAccessToken, Response.Status.BAD_REQUEST, Void.class); + get(USERS_BASEURL, USER_EVENTS_SELF_ENDPOINT, null, userAccessToken, Response.Status.BAD_REQUEST, Void.class); + get(USERS_BASEURL, USER_EVENTS_SELF_INFO_ENDPOINT, null, userAccessToken, Response.Status.BAD_REQUEST, Void.class); + } + + @Test + public void testAuthenticationFailure() { + // Make calls without an authentication header + UserEventCheckIn checkIn1 = new UserEventCheckIn(); + checkIn1.setEventId(normalPointsEventId); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn1, null, Response.Status.UNAUTHORIZED, Void.class); + get(USERS_BASEURL, USER_EVENTS_SELF_ENDPOINT, null, null, Response.Status.UNAUTHORIZED, Void.class); + get(USERS_BASEURL, USER_EVENTS_SELF_INFO_ENDPOINT, null, null, Response.Status.UNAUTHORIZED, Void.class); + } + + @Test + public void testBadEventId() { + String badEventId1 = "1"; + String badEventId2 = "/deadbeef-0000-0000-0000-badbadbadbad"; + UserEventCheckIn checkIn1 = new UserEventCheckIn(); + checkIn1.setEventId(badEventId1); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn1, userAccessToken, Response.Status.BAD_REQUEST, Void.class); + UserEventCheckIn checkIn2 = new UserEventCheckIn(); + checkIn2.setEventId(badEventId2); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn2, userAccessToken, Response.Status.BAD_REQUEST, Void.class); + } + + private String createEvent(String eventName, int pointValue) { + EventDefinition eventDefinition = new EventDefinition(); + eventDefinition.setEventName(eventName); + eventDefinition.setPointValue(pointValue); + String eventId = post(EVENTS_BASEURL, EVENTS_ENDPOINT, eventDefinition, adminAccessToken, Response.Status.CREATED, String.class); + return eventId; + } + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/catalog/EventsEndpointTest.java b/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/catalog/EventsEndpointTest.java new file mode 100755 index 0000000..87fa202 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/catalog/EventsEndpointTest.java @@ -0,0 +1,175 @@ +package it.com.ibm.codey.loyalty.catalog; + +import java.time.OffsetDateTime; +import java.util.Collections; +import java.util.Map; +import java.util.HashMap; + +import javax.ws.rs.core.GenericType; +import javax.ws.rs.core.Response; + +import org.apache.commons.lang3.RandomStringUtils; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import com.ibm.codey.loyalty.catalog.json.EventDefinition; + +import it.com.ibm.codey.loyalty.EndpointTestBase; +import it.com.ibm.codey.loyalty.util.TestSecurityHelper; + +public class EventsEndpointTest extends EndpointTestBase { + + private String eventName; + private int pointValue; + private String eventDescription; + private String eventLocation; + private OffsetDateTime startTime; + private OffsetDateTime endTime; + + @Before + public void setup() { + super.setup(); + // Set up a normal user to test methods which don't require admin. + setupUser(); + // Set up an admin user. + adminAccessToken = TestSecurityHelper.signOn(TEST_ADMIN_USER, TEST_ADMIN_PASSWORD); + // Set up event attributes. + String suffix = RandomStringUtils.randomAlphabetic(8); + eventName = "test event " + suffix; + eventDescription = "all about " + suffix; + eventLocation = "at " + suffix; + startTime = OffsetDateTime.now(); + endTime = OffsetDateTime.now().plusHours(1); + pointValue = (int) ((Math.random() * 99) + 1); + } + + @After + public void teardown() { + removeUser(); + super.teardown(); + } + + @Test + public void testCreateEvent() { + // Use POST to create an event. + EventDefinition eventDefinition = new EventDefinition(); + eventDefinition.setEventName(eventName); + eventDefinition.setPointValue(pointValue); + eventDefinition.setEventDescription(eventDescription); + eventDefinition.setEventLocation(eventLocation); + eventDefinition.setStartTime(startTime); + eventDefinition.setEndTime(endTime); + String eventId = post(EVENTS_BASEURL, EVENTS_ENDPOINT, eventDefinition, adminAccessToken, Response.Status.CREATED, String.class); + // Use GET to get the event. This method does not require admin. + EventDefinition checkEventDefinition = get(EVENTS_BASEURL, EVENTS_ENDPOINT + '/' + eventId, null, userAccessToken, Response.Status.OK, EventDefinition.class); + assertEquals("Event name is incorrect", eventName, checkEventDefinition.getEventName()); + assertEquals("Point value is incorrect", pointValue, checkEventDefinition.getPointValue()); + assertEquals("Event description is incorrect", eventDescription, checkEventDefinition.getEventDescription()); + assertEquals("Event location is incorrect", eventLocation, checkEventDefinition.getEventLocation()); + assertEquals("Event start time is incorrect", startTime.toInstant(), checkEventDefinition.getStartTime().toInstant()); // Use toInstant to normalize timezones + assertEquals("Event end time is incorrect", endTime.toInstant(), checkEventDefinition.getEndTime().toInstant()); + } + + @Test + public void testGetAllEvents() { + // Use POST to create an event. An admin user must do this. + EventDefinition eventDefinition = new EventDefinition(); + eventDefinition.setEventName(eventName); + eventDefinition.setPointValue(pointValue); + eventDefinition.setEventDescription(eventDescription); + eventDefinition.setEventLocation(eventLocation); + eventDefinition.setStartTime(startTime); + eventDefinition.setEndTime(endTime); + String eventId = post(EVENTS_BASEURL, EVENTS_ENDPOINT, eventDefinition, adminAccessToken, Response.Status.CREATED, String.class); + // Use GET to get all events. This method does not require admin. + GenericType> eventDefinitionMapType = new GenericType>() {}; + Map eventDefinitionsMap = get(EVENTS_BASEURL, EVENTS_ENDPOINT, null, userAccessToken, Response.Status.OK, eventDefinitionMapType.getType()); + assertNotNull("GET did not return any events", eventDefinitionsMap); + EventDefinition checkEventDefinition = eventDefinitionsMap.get(eventId); + assertNotNull("GET did not return the event that was just created", checkEventDefinition); + assertEquals("Event name is incorrect", eventName, checkEventDefinition.getEventName()); + assertEquals("Point value is incorrect", pointValue, checkEventDefinition.getPointValue()); + assertEquals("Event description is incorrect", eventDescription, checkEventDefinition.getEventDescription()); + assertEquals("Event location is incorrect", eventLocation, checkEventDefinition.getEventLocation()); + assertEquals("Event start time is incorrect", startTime.toInstant(), checkEventDefinition.getStartTime().toInstant()); // Use toInstant to normalize timezones + assertEquals("Event end time is incorrect", endTime.toInstant(), checkEventDefinition.getEndTime().toInstant()); + } + + @Test + public void testSearchEvent() { + // Use POST to create an event. An admin user must do this. + EventDefinition eventDefinition = new EventDefinition(); + eventDefinition.setEventName(eventName); + eventDefinition.setPointValue(pointValue); + eventDefinition.setEventDescription(eventDescription); + eventDefinition.setEventLocation(eventLocation); + eventDefinition.setStartTime(startTime); + eventDefinition.setEndTime(endTime); + String eventId = post(EVENTS_BASEURL, EVENTS_ENDPOINT, eventDefinition, adminAccessToken, Response.Status.CREATED, String.class); + // Use GET to search for this event. This method does not require admin. + Map queryParams = Collections.singletonMap("id", eventId); + GenericType> eventDefinitionMapType = new GenericType>() {}; + Map eventDefinitionsMap = get(EVENTS_BASEURL, EVENTS_ENDPOINT, queryParams, userAccessToken, Response.Status.OK, eventDefinitionMapType.getType()); + assertNotNull("GET did not return any events", eventDefinitionsMap); + EventDefinition checkEventDefinition = eventDefinitionsMap.get(eventId); + assertNotNull("GET did not return the event that was just created", checkEventDefinition); + assertEquals("Event name is incorrect", eventName, checkEventDefinition.getEventName()); + assertEquals("Point value is incorrect", pointValue, checkEventDefinition.getPointValue()); + assertEquals("Event description is incorrect", eventDescription, checkEventDefinition.getEventDescription()); + assertEquals("Event location is incorrect", eventLocation, checkEventDefinition.getEventLocation()); + assertEquals("Event start time is incorrect", startTime.toInstant(), checkEventDefinition.getStartTime().toInstant()); // Use toInstant to normalize timezones + assertEquals("Event end time is incorrect", endTime.toInstant(), checkEventDefinition.getEndTime().toInstant()); + } + + @Test + public void testCreateAndUpdateEvent() { + // Use POST to create an event. An admin user must do this. + EventDefinition eventDefinition = new EventDefinition(); + eventDefinition.setEventName(eventName); + eventDefinition.setPointValue(pointValue); + eventDefinition.setEventDescription(eventDescription); + eventDefinition.setEventLocation(eventLocation); + eventDefinition.setStartTime(startTime); + eventDefinition.setEndTime(endTime); + String eventId = post(EVENTS_BASEURL, EVENTS_ENDPOINT, eventDefinition, adminAccessToken, Response.Status.CREATED, String.class); + // Use PUT to modify the event. An admin user must do this. + eventDefinition.setEventName(eventName + eventName); + eventDefinition.setPointValue(pointValue*2); + put(EVENTS_BASEURL, EVENTS_ENDPOINT + '/' + eventId, eventDefinition, adminAccessToken, Response.Status.NO_CONTENT, Void.class); + // Use GET to get the event. This method does not require admin. + EventDefinition checkEventDefinition = get(EVENTS_BASEURL, EVENTS_ENDPOINT + '/' + eventId, null, userAccessToken, Response.Status.OK, EventDefinition.class); + assertEquals("Event name is incorrect", eventDefinition.getEventName(), checkEventDefinition.getEventName()); + assertEquals("Point value is incorrect", eventDefinition.getPointValue(), checkEventDefinition.getPointValue()); + assertEquals("Event description is incorrect", eventDescription, checkEventDefinition.getEventDescription()); + assertEquals("Event location is incorrect", eventLocation, checkEventDefinition.getEventLocation()); + assertEquals("Event start time is incorrect", startTime.toInstant(), checkEventDefinition.getStartTime().toInstant()); // Use toInstant to normalize timezones + assertEquals("Event end time is incorrect", endTime.toInstant(), checkEventDefinition.getEndTime().toInstant()); + } + + @Test + public void testAuthenticationFailure() { + // Make calls without an authentication header. + EventDefinition eventDefinition = new EventDefinition(); + eventDefinition.setEventName(eventName); + eventDefinition.setPointValue(pointValue); + post(EVENTS_BASEURL, EVENTS_ENDPOINT, eventDefinition, null, Response.Status.UNAUTHORIZED, Void.class); + put(EVENTS_BASEURL, EVENTS_ENDPOINT + "/deadbeef-0000-0000-0000-badbadbadbad", eventDefinition, null, Response.Status.UNAUTHORIZED, Void.class); + get(EVENTS_BASEURL, EVENTS_ENDPOINT, null, null, Response.Status.UNAUTHORIZED, Void.class); + get(EVENTS_BASEURL, EVENTS_ENDPOINT + "/deadbeef-0000-0000-0000-badbadbadbad", null, null, Response.Status.UNAUTHORIZED, Void.class); + } + + @Test + public void testAuthorizationFailure() { + // Normal users do not have access to POST or PUT. + EventDefinition eventDefinition = new EventDefinition(); + eventDefinition.setEventName(eventName); + eventDefinition.setPointValue(pointValue); + post(EVENTS_BASEURL, EVENTS_ENDPOINT, eventDefinition, userAccessToken, Response.Status.FORBIDDEN, Void.class); + put(EVENTS_BASEURL, EVENTS_ENDPOINT + "/deadbeef-0000-0000-0000-badbadbadbad", eventDefinition, userAccessToken, Response.Status.FORBIDDEN, Void.class); + } + +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/util/TestSecurityHelper.java b/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/util/TestSecurityHelper.java new file mode 100755 index 0000000..5a12723 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/util/TestSecurityHelper.java @@ -0,0 +1,104 @@ +package it.com.ibm.codey.loyalty.util; + +import java.net.URL; +import java.nio.charset.StandardCharsets; +import java.util.Base64; + +import javax.json.Json; +import javax.json.JsonObject; +import javax.ws.rs.client.Client; +import javax.ws.rs.client.ClientBuilder; +import javax.ws.rs.client.Entity; +import javax.ws.rs.core.Form; +import javax.ws.rs.core.HttpHeaders; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; + +import org.apache.cxf.jaxrs.provider.jsrjsonp.JsrJsonpProvider; + +public class TestSecurityHelper { + + private static String APPID_SERVICE_URL; + + private static String APPID_TENANTID; + + private static String IAM_APIKEY; + + private static String IAM_SERVICE_URL; + + private static String OIDC_ISSUERIDENTIFIER; + + private static String OIDC_CLIENTID; + + private static String OIDC_CLIENTPASSWORD; + + private static String iamAuthHeader; + + private static String oidcAuthHeader; + + static { + APPID_SERVICE_URL = System.getenv("APPID_SERVICE_URL"); + APPID_TENANTID = System.getenv("APPID_TENANTID"); + IAM_APIKEY = System.getenv("IAM_APIKEY"); + IAM_SERVICE_URL = System.getenv("IAM_SERVICE_URL"); + OIDC_ISSUERIDENTIFIER = System.getenv("OIDC_ISSUERIDENTIFIER"); + OIDC_CLIENTID = System.getenv("OIDC_CLIENTID"); + OIDC_CLIENTPASSWORD = System.getenv("OIDC_CLIENTPASSWORD"); + String oidcClientCredentials = OIDC_CLIENTID + ":" + OIDC_CLIENTPASSWORD; + oidcAuthHeader = "Basic " + Base64.getEncoder().encodeToString(oidcClientCredentials.getBytes(StandardCharsets.UTF_8)); + } + + public static void createUser(String user, String password) { + Client client = ClientBuilder.newClient(); + client.register(JsrJsonpProvider.class); + // Get IAM bearer token when creating the first user. The token can be reused after that. + if (iamAuthHeader == null) { + Form form = new Form(); + form.param("grant_type", "urn:ibm:params:oauth:grant-type:apikey"); + form.param("apikey", IAM_APIKEY); + String iamToken; + try (Response response = client.target(IAM_SERVICE_URL).request(MediaType.APPLICATION_JSON).buildPost(Entity.form(form)).invoke()) { + if (response.getStatus() != Response.Status.OK.getStatusCode()) { + throw new RuntimeException("TEST CASE FAILURE. Cannot obtain IAM access token. Status code " + response.getStatus() + " Response =" + response.readEntity(JsonObject.class)); + } + JsonObject obj = response.readEntity(JsonObject.class); + iamToken = obj.getString("access_token"); + } + iamAuthHeader = "Bearer " + iamToken; + } + // Create the user + JsonObject request = Json.createObjectBuilder() + .add("userName", user) + .add("password", password) + .add("active", true) + .add("emails", Json.createArrayBuilder() + .add(Json.createObjectBuilder() + .add("value", "ibmtestloyalty@yopmail.com") + .add("primary", true)) + ).build(); + String createUserURL = APPID_SERVICE_URL + "/management/v4/" + APPID_TENANTID + "/cloud_directory/Users"; + try (Response response = client.target(createUserURL).request(MediaType.APPLICATION_JSON).header(HttpHeaders.AUTHORIZATION, iamAuthHeader).buildPost(Entity.json(request)).invoke()) { + if (response.getStatus() != Response.Status.CREATED.getStatusCode()) { + throw new RuntimeException("TEST CASE FAILURE. Cannot create user. Status code " + response.getStatus() + " Response =" + response.readEntity(JsonObject.class)); + } + } + } + + public static String signOn(String user, String password) { + String url = OIDC_ISSUERIDENTIFIER + "/token"; + Form form = new Form(); + form.param("grant_type", "password"); + form.param("username", user); + form.param("password", password); + Client client = ClientBuilder.newClient(); + client.register(JsrJsonpProvider.class); + try (Response response = client.target(url).request(MediaType.APPLICATION_JSON).header(HttpHeaders.AUTHORIZATION, oidcAuthHeader).buildPost(Entity.form(form)).invoke()) { + if (response.getStatus() != Response.Status.OK.getStatusCode()) { + throw new RuntimeException("TEST CASE FAILURE. Cannot obtain access token. Status code " + response.getStatus() + " Response =" + response.readEntity(JsonObject.class)); + } + JsonObject obj = response.readEntity(JsonObject.class); + return obj.getString("access_token"); + } + } + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/pom.xml b/dev/tekton/examples/example-bank/bank-app-backend/pom.xml new file mode 100755 index 0000000..fc9da2c --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/pom.xml @@ -0,0 +1,216 @@ + + + + 4.0.0 + + com.ibm.codey.bank + parent + 1.0-SNAPSHOT + pom + + + UTF-8 + UTF-8 + 1.8 + 1.8 + + 3.2.2 + 3.0.0-M1 + 3.0.0-M1 + + + + + + org.projectlombok + lombok + 1.18.16 + + + + junit + junit + 4.13.1 + test + + + org.apache.cxf + cxf-rt-rs-client + 3.2.6 + test + + + org.apache.cxf + cxf-rt-rs-extension-providers + 3.2.6 + test + + + org.glassfish + javax.json + 1.1.4 + test + + + + javax.xml.bind + jaxb-api + 2.3.1 + test + + + com.sun.xml.bind + jaxb-core + 2.3.0.1 + test + + + com.sun.xml.bind + jaxb-impl + 2.3.2 + test + + + javax.activation + activation + 1.1.1 + test + + + + org.eclipse + yasson + 1.0.1 + test + + + + + + + io.openliberty.features + features-bom + 19.0.0.12 + pom + import + + + + + + + + + org.apache.maven.plugins + maven-war-plugin + ${version.maven-war-plugin} + + false + pom.xml + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.maven-surefire-plugin} + + + test + default-test + + + **/it/** + + + ${project.build.directory}/test-reports/unit + + + + + + ${skipTests} + + + + + org.apache.maven.plugins + maven-failsafe-plugin + ${version.maven-failsafe-plugin} + + + integration-test + integration-test + + integration-test + + + + **/it/** + + + ${http.port} + ${app.name} + + false + + + + verify-results + + verify + + + + + + ${project.build.directory}/test-reports/it/failsafe-summary.xml + + + ${project.build.directory}/test-reports/it + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 16 + 16 + true + + -J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.jvm=ALL-UNNAMED + + + + org.projectlombok + lombok + 1.18.16 + + + + + + + + + + common + transaction-service + user-service + integration-tests + + + diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/Dockerfile b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/Dockerfile new file mode 100755 index 0000000..e0e92d7 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/Dockerfile @@ -0,0 +1,11 @@ +FROM open-liberty:19.0.0.12-kernel-java8-openj9 + +USER root +RUN apt-get update && apt-get upgrade -y e2fsprogs libgnutls30 libgcrypt20 libsasl2-2 +USER 1001 + +COPY --chown=1001:0 src/main/liberty/config/ /config/ +COPY --chown=1001:0 src/main/resources/security/ /config/resources/security/ +COPY --chown=1001:0 target/*.war /config/apps/ +COPY --chown=1001:0 target/jdbc/* /config/jdbc/ +RUN configure.sh diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/deployment.yaml b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/deployment.yaml new file mode 100755 index 0000000..9cf9b99 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/deployment.yaml @@ -0,0 +1,60 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: transaction-service + labels: + app: transaction-service +spec: + replicas: 1 + selector: + matchLabels: + app: transaction-service + template: + metadata: + labels: + app: transaction-service + annotations: + sidecar.istio.io/inject: "false" + spec: + containers: + - name: transaction-service + image: ykoyfman/bank-transaction-service:1.0 + imagePullPolicy: Always + ports: + - name: http-server + containerPort: 9080 + envFrom: + - secretRef: + name: bank-db-secret + - secretRef: + name: bank-oidc-secret + env: + - name: USER_SERVICE_URL + value: "http://user-service:9080/bank/v1/users" + - name: KNATIVE_SERVICE_URL + value: "http://process-transaction.example-bank.svc.cluster.local" + - name: WLP_LOGGING_CONSOLE_LOGLEVEL + value: INFO +--- +apiVersion: v1 +kind: Service +metadata: + name: transaction-service + labels: + app: transaction-service +spec: + ports: + - port: 9080 + targetPort: 9080 + selector: + app: transaction-service +--- +apiVersion: v1 +kind: Route +metadata: + name: transaction-service +spec: + to: + kind: Service + name: transaction-service + diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/pom.xml b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/pom.xml new file mode 100755 index 0000000..efab2b9 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/pom.xml @@ -0,0 +1,78 @@ + + + + 4.0.0 + + + com.ibm.codey.bank + parent + 1.0-SNAPSHOT + + + com.ibm.codey.bank + transaction-service + 1.0-SNAPSHOT + war + + + + + io.openliberty.features + microProfile-3.0 + esa + + + com.ibm.codey.bank + common + 1.0-SNAPSHOT + jar + + + + + ${project.artifactId} + + + org.apache.maven.plugins + maven-war-plugin + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.0.0 + + + copy-jdbc-driver + package + + copy + + + + + org.postgresql + postgresql + 42.2.8 + ${project.build.directory}/jdbc + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/LivenessCheck.java b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/LivenessCheck.java new file mode 100755 index 0000000..77f2f47 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/LivenessCheck.java @@ -0,0 +1,25 @@ +package com.ibm.codey.bank; + +import javax.enterprise.context.ApplicationScoped; + +import org.eclipse.microprofile.health.HealthCheck; +import org.eclipse.microprofile.health.HealthCheckResponse; +import org.eclipse.microprofile.health.Liveness; + +@Liveness +@ApplicationScoped +public class LivenessCheck implements HealthCheck { + + private boolean isAlive() { + // perform health checks here + + return true; + } + + @Override + public HealthCheckResponse call() { + boolean up = isAlive(); + return HealthCheckResponse.named(this.getClass().getSimpleName()).state(up).build(); + } + +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/LoyaltyApplication.java b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/LoyaltyApplication.java new file mode 100755 index 0000000..6b13f49 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/LoyaltyApplication.java @@ -0,0 +1,9 @@ +package com.ibm.codey.bank; + +import javax.ws.rs.ApplicationPath; +import javax.ws.rs.core.Application; + +@ApplicationPath("/bank") +public class LoyaltyApplication extends Application { + +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/ReadinessCheck.java b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/ReadinessCheck.java new file mode 100755 index 0000000..ed9c6e9 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/ReadinessCheck.java @@ -0,0 +1,25 @@ +package com.ibm.codey.bank; + +import javax.enterprise.context.ApplicationScoped; + +import org.eclipse.microprofile.health.HealthCheck; +import org.eclipse.microprofile.health.HealthCheckResponse; +import org.eclipse.microprofile.health.Readiness; + +@Readiness +@ApplicationScoped +public class ReadinessCheck implements HealthCheck { + + private boolean isReady() { + // perform readiness checks, e.g. database connection, etc. + + return true; + } + + @Override + public HealthCheckResponse call() { + boolean up = isReady(); + return HealthCheckResponse.named(this.getClass().getSimpleName()).state(up).build(); + } + +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/TransactionResource.java b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/TransactionResource.java new file mode 100755 index 0000000..1ed7ad2 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/TransactionResource.java @@ -0,0 +1,189 @@ +package com.ibm.codey.bank.catalog; + +import java.net.URL; +import java.time.OffsetDateTime; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.UUID; + +import javax.enterprise.context.RequestScoped; +import javax.inject.Inject; +import javax.interceptor.Interceptors; +import javax.transaction.Transactional; +import javax.ws.rs.Consumes; +import javax.ws.rs.GET; +import javax.ws.rs.POST; +import javax.ws.rs.PUT; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.QueryParam; +import javax.ws.rs.WebApplicationException; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; + +import org.eclipse.microprofile.config.inject.ConfigProperty; +import org.eclipse.microprofile.rest.client.RestClientBuilder; + +import com.ibm.codey.bank.BaseResource; +import com.ibm.codey.bank.accounts.json.UserRegistration; +import com.ibm.codey.bank.accounts.json.UserRegistrationInfo; +import com.ibm.codey.bank.catalog.dao.TransactionDao; +import com.ibm.codey.bank.catalog.json.CreateTransactionDefinition; +import com.ibm.codey.bank.catalog.json.RewardTransactionDefinition; +import com.ibm.codey.bank.catalog.models.Category; +import com.ibm.codey.bank.catalog.models.Transaction; +import com.ibm.codey.bank.interceptor.LoggingInterceptor; +import com.ibm.codey.bank.interceptor.binding.RequiresAuthorization; + +@RequestScoped +@Interceptors(LoggingInterceptor.class) +@Path("v1/transactions") +public class TransactionResource extends BaseResource { + + @Inject + private TransactionDao transactionDao; + + @Inject + @ConfigProperty(name = "USER_SERVICE_URL") + private URL userServiceURL; + + /** + * This method creates a transaction. + */ + @POST + @Consumes(MediaType.APPLICATION_JSON) + @Transactional + public Response createTransaction(CreateTransactionDefinition createTransactionDefinition) { + + Transaction newTransaction = new Transaction(); + // create new uuid for new transaction + String transactionId = UUID.randomUUID().toString(); + + // get subject + String subject = this.getCallerSubject(); + // get user + UserService userService = RestClientBuilder.newBuilder().baseUrl(userServiceURL).build(UserService.class); + try { + UserRegistrationInfo userRegistration = userService.getUserConsent(this.getCallerCredentials()); + if (!userRegistration.isConsentGiven()) { + return Response.status(Response.Status.CONFLICT).entity("User has not consented to program").build(); + } + + newTransaction.setTransactionId(transactionId); + newTransaction.setUserId(userRegistration.getUserId()); + newTransaction.setTransactionName(createTransactionDefinition.getTransactionName()); + newTransaction.setCategory(createTransactionDefinition.getCategory()); + newTransaction.setAmount(createTransactionDefinition.getAmount()); + newTransaction.setProcessed(false); + newTransaction.setDate(OffsetDateTime.now()); + transactionDao.createTransaction(newTransaction); + + return Response.status(Response.Status.NO_CONTENT).build(); + } catch(WebApplicationException wae) { + int status = wae.getResponse().getStatus(); + if (status == Response.Status.NOT_FOUND.getStatusCode()) { + return Response.status(Response.Status.NOT_FOUND).entity("User not registered").build(); + } else { + wae.printStackTrace(); + return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build(); + } + } + } + + /** + * This method gets the transactions of a user. + */ + @GET + @Produces(MediaType.APPLICATION_JSON) + @Transactional + public Response getTransactions() { + // get subject + String subject = this.getCallerSubject(); + // get user + UserService userService = RestClientBuilder.newBuilder().baseUrl(userServiceURL).build(UserService.class); + try { + UserRegistrationInfo userRegistration = userService.getUserConsent(this.getCallerCredentials()); + if (!userRegistration.isConsentGiven()) { + return Response.status(Response.Status.CONFLICT).entity("User has not consented to program").build(); + } + + List transactions = transactionDao.findTransactionsByUser(userRegistration.getUserId()); + return Response.status(Response.Status.OK).entity(transactions).build(); + } catch(WebApplicationException wae) { + int status = wae.getResponse().getStatus(); + if (status == Response.Status.NOT_FOUND.getStatusCode()) { + return Response.status(Response.Status.NOT_FOUND).entity("User not registered").build(); + } else { + wae.printStackTrace(); + return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build(); + } + } + } + + /** + * This method gets the spending categories of a user. + */ + @GET + @Path("spending") + @Produces(MediaType.APPLICATION_JSON) + @Transactional + public Response getCategory() { + // get subject + String subject = this.getCallerSubject(); + // get user + UserService userService = RestClientBuilder.newBuilder().baseUrl(userServiceURL).build(UserService.class); + try { + UserRegistrationInfo userRegistration = userService.getUserConsent(this.getCallerCredentials()); + if (!userRegistration.isConsentGiven()) { + return Response.status(Response.Status.CONFLICT).entity("User has not consented to program").build(); + } + + List categories = transactionDao.groupCategoriesForUser(userRegistration.getUserId()); + return Response.status(Response.Status.OK).entity(categories).build(); + } catch(WebApplicationException wae) { + int status = wae.getResponse().getStatus(); + if (status == Response.Status.NOT_FOUND.getStatusCode()) { + return Response.status(Response.Status.NOT_FOUND).entity("User not registered").build(); + } else { + wae.printStackTrace(); + return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build(); + } + } + } + + // TODO: require admin scope + /** + * This method updates a transaction. + */ + @PUT + @Path("reward/{transactionId}") + @Consumes(MediaType.APPLICATION_JSON) + @Transactional + @RequiresAuthorization + public Response updateTransaction(@PathParam("transactionId") String transactionId, RewardTransactionDefinition rewardTransactionDefinition) { + // Validate UUID is formatted correctly. + try { + UUID.fromString(transactionId); + } catch(IllegalArgumentException iae) { + return Response.status(Response.Status.BAD_REQUEST).entity("Invalid transaction id").build(); + } + + Transaction transaction = transactionDao.findTransactionById(transactionId); + if (transaction == null) { + return Response.status(Response.Status.NOT_FOUND).entity("Transaction not found").build(); + } + + if (transaction.isProcessed()) { + return Response.status(Response.Status.BAD_REQUEST).entity("Transaction already processed").build(); + } + + transaction.setPointsEarned(rewardTransactionDefinition.getPointsEarned()); + transaction.setProcessed(true); + transactionDao.updateTransaction(transaction); + + return Response.status(Response.Status.NO_CONTENT).build(); + } + +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/dao/TransactionDao.java b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/dao/TransactionDao.java new file mode 100755 index 0000000..faebad3 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/dao/TransactionDao.java @@ -0,0 +1,79 @@ +package com.ibm.codey.bank.catalog.dao; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; + +import javax.enterprise.context.RequestScoped; + +import javax.persistence.EntityManager; +import javax.persistence.NoResultException; +import javax.persistence.PersistenceContext; + +import com.ibm.codey.bank.catalog.models.Category; +import com.ibm.codey.bank.catalog.models.Transaction; + +@RequestScoped +public class TransactionDao { + + @PersistenceContext(name = "jpa-unit") + private EntityManager em; + + public void createTransaction(Transaction transaction) { + em.persist(transaction); + } + + public void updateTransaction(Transaction transaction) { + em.merge(transaction); + } + + public List findTransactions() { + return em.createNamedQuery("Transaction.findTransactions", Transaction.class) + .getResultList(); + } + + public List findTransactionsByUser(String userId) { + return em.createNamedQuery("Transaction.findTransactionsByUser", Transaction.class) + .setParameter("userId", userId) + .getResultList(); + } + + public Transaction findTransactionById(String transactionId) { + try { + return em.createNamedQuery("Transaction.findTransactionByIdOnly", Transaction.class) + .setParameter("transactionId", transactionId) + .getSingleResult(); + } catch(NoResultException e) { + return null; + } + } + + public Transaction findTransactionById(String transactionId, String userId) { + try { + return em.createNamedQuery("Transaction.findTransactionById", Transaction.class) + .setParameter("transactionId", transactionId) + .setParameter("userId", userId) + .getSingleResult(); + } catch(NoResultException e) { + return null; + } + } + + public List groupCategoriesForUser(String userId) { + try { + List rows = em.createNamedQuery("Transaction.groupCategoriesForUser", Object[][].class) + .setParameter("userId", userId) + .getResultList(); + List response = new ArrayList<>(); + for (Object[] row: rows) { + if (row.length == 2) { + response.add(new Category(row[0].toString(), new BigDecimal(row[1].toString()))); + } + } + + return response; + } catch(NoResultException e) { + return null; + } + } +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/Category.java b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/Category.java new file mode 100755 index 0000000..754b666 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/Category.java @@ -0,0 +1,18 @@ +package com.ibm.codey.bank.catalog.models; + +import java.math.BigDecimal; + +import lombok.Getter; +import lombok.Setter; + +@Getter @Setter +public class Category { + + private String category; + private BigDecimal amount; + + public Category(String category, BigDecimal amount) { + this.category = category; + this.amount = amount; + } +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/Transaction.java b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/Transaction.java new file mode 100755 index 0000000..d67f8a9 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/Transaction.java @@ -0,0 +1,64 @@ +package com.ibm.codey.bank.catalog.models; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.time.OffsetDateTime; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.EntityListeners; +import javax.persistence.Id; +import javax.persistence.IdClass; +import javax.persistence.NamedQueries; +import javax.persistence.NamedQuery; +import javax.persistence.Table; + +import lombok.Getter; +import lombok.Setter; + +@Entity +@Table(name = "transactions") +@IdClass(TransactionPK.class) +@NamedQueries({ + @NamedQuery(name = "Transaction.findTransactions", query = "SELECT t FROM Transaction t"), + @NamedQuery(name = "Transaction.findTransactionsByUser", query = "SELECT t FROM Transaction t WHERE t.userId = :userId"), + @NamedQuery(name = "Transaction.findTransactionById", query = "SELECT t FROM Transaction t WHERE t.transactionId = :transactionId AND t.userId = :userId"), + @NamedQuery(name = "Transaction.findTransactionByIdOnly", query = "SELECT t FROM Transaction t WHERE t.transactionId = :transactionId"), + @NamedQuery(name = "Transaction.groupCategoriesForUser", query = "SELECT COALESCE(t.category, 'Uncategorized'), SUM (t.amount) FROM Transaction t WHERE t.userId = :userId GROUP BY t.category") +}) +@Getter @Setter +@EntityListeners(TransactionListener.class) +public class Transaction implements Serializable { + + private static final long serialVersionUID = 1L; + + @Column(name = "transaction_id") + @Id + private String transactionId; + + @Id + @Column(name = "usr") + private String userId; + + @Column(name = "transaction_name") + private String transactionName; + + @Column(name = "amount") + private BigDecimal amount; + + @Column(name = "category") + private String category; + + @Column(name = "points_earned") + private BigDecimal pointsEarned; + + @Column(name = "processed") + private boolean processed; + + @Column(name = "date") + private OffsetDateTime date; + + public Transaction() { + } + +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/TransactionListener.java b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/TransactionListener.java new file mode 100755 index 0000000..dae2f25 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/TransactionListener.java @@ -0,0 +1,40 @@ +package com.ibm.codey.bank.catalog.models; + +import java.net.URL; + +import javax.enterprise.context.RequestScoped; +import javax.inject.Inject; +import javax.persistence.PostPersist; +import javax.ws.rs.WebApplicationException; +import javax.ws.rs.core.Response; + +import org.eclipse.microprofile.config.inject.ConfigProperty; +import org.eclipse.microprofile.rest.client.RestClientBuilder; + +import com.ibm.codey.bank.catalog.KnativeService; + +@RequestScoped +public class TransactionListener { + + @Inject + @ConfigProperty(name = "KNATIVE_SERVICE_URL") + private URL knativeServiceURL; + + @PostPersist + public void sendToProcessing(Transaction transaction) { + KnativeService knativeService = RestClientBuilder.newBuilder().baseUrl(knativeServiceURL).build(KnativeService.class); + + try { + knativeService.processTransaction(transaction.getTransactionId(), transaction.getCategory(), transaction.getAmount().toString()); + } catch (WebApplicationException wae) { + System.out.print("web app exception"); + int status = wae.getResponse().getStatus(); + if (status == Response.Status.NOT_FOUND.getStatusCode()) { + // TODO: .. + } else { + wae.printStackTrace(); + } + } + } + +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/TransactionPK.java b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/TransactionPK.java new file mode 100755 index 0000000..5258805 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/TransactionPK.java @@ -0,0 +1,15 @@ +package com.ibm.codey.bank.catalog.models; + +import java.io.Serializable; + +import lombok.Getter; +import lombok.Setter; + +@Getter @Setter +public class TransactionPK implements Serializable { + + private String transactionId; + + private String userId; + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/bootstrap.properties b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/bootstrap.properties new file mode 100755 index 0000000..16f0286 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/bootstrap.properties @@ -0,0 +1,2 @@ +default.http.port=9080 +default.https.port=9443 \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/jvm.options b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/jvm.options new file mode 100755 index 0000000..f0250b2 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/jvm.options @@ -0,0 +1,2 @@ +# This option is needed when using an IBM JRE to avoid a handshake failure when making a secure JDBC connection. +-Dcom.ibm.jsse2.overrideDefaultTLS=true diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/server.xml b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/server.xml new file mode 100755 index 0000000..4731bd7 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/server.xml @@ -0,0 +1,53 @@ + + + + jpa-2.2 + microProfile-3.0 + mpJwt-1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/META-INF/orm.xml b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/META-INF/orm.xml new file mode 100755 index 0000000..4ed25ae --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/META-INF/orm.xml @@ -0,0 +1,10 @@ + + + + bank + + + \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/META-INF/persistence.xml b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/META-INF/persistence.xml new file mode 100755 index 0000000..ca42dd1 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/META-INF/persistence.xml @@ -0,0 +1,16 @@ + + + + jdbc/AccountsDataSource + NONE + + + + + + + \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/security/digicert-root-ca.jks b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/security/digicert-root-ca.jks new file mode 100755 index 0000000..a39dd27 Binary files /dev/null and b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/security/digicert-root-ca.jks differ diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/webapp/WEB-INF/beans.xml b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/webapp/WEB-INF/beans.xml new file mode 100755 index 0000000..2777559 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/webapp/WEB-INF/beans.xml @@ -0,0 +1,6 @@ + + + diff --git a/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/webapp/WEB-INF/web.xml b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/webapp/WEB-INF/web.xml new file mode 100755 index 0000000..6b88b3a --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,27 @@ + + + transaction-service + + + authenticated + + + + Security Constraints + + ProtectedArea + /* + + + authenticated + + + NONE + + + + diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/Dockerfile b/dev/tekton/examples/example-bank/bank-app-backend/user-service/Dockerfile new file mode 100755 index 0000000..e0e92d7 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/Dockerfile @@ -0,0 +1,11 @@ +FROM open-liberty:19.0.0.12-kernel-java8-openj9 + +USER root +RUN apt-get update && apt-get upgrade -y e2fsprogs libgnutls30 libgcrypt20 libsasl2-2 +USER 1001 + +COPY --chown=1001:0 src/main/liberty/config/ /config/ +COPY --chown=1001:0 src/main/resources/security/ /config/resources/security/ +COPY --chown=1001:0 target/*.war /config/apps/ +COPY --chown=1001:0 target/jdbc/* /config/jdbc/ +RUN configure.sh diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/deployment.yaml b/dev/tekton/examples/example-bank/bank-app-backend/user-service/deployment.yaml new file mode 100755 index 0000000..8fe34e1 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/deployment.yaml @@ -0,0 +1,51 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: user-service + labels: + app: user-service +spec: + replicas: 1 + selector: + matchLabels: + app: user-service + template: + metadata: + labels: + app: user-service + spec: + containers: + - name: user-service + image: anthonyamanse/user-service:example-bank-1.0 + imagePullPolicy: Always + ports: + - name: http-server + containerPort: 9080 + envFrom: + - secretRef: + name: bank-db-secret + - secretRef: + name: bank-oidc-secret +--- +apiVersion: v1 +kind: Service +metadata: + name: user-service + labels: + app: user-service +spec: + ports: + - port: 9080 + targetPort: 9080 + selector: + app: user-service +--- +apiVersion: v1 +kind: Route +metadata: + name: user-service +spec: + to: + kind: Service + name: user-service + diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/pom.xml b/dev/tekton/examples/example-bank/bank-app-backend/user-service/pom.xml new file mode 100755 index 0000000..4a6f864 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/pom.xml @@ -0,0 +1,78 @@ + + + + 4.0.0 + + + com.ibm.codey.bank + parent + 1.0-SNAPSHOT + + + com.ibm.codey.bank + user-service + 1.0-SNAPSHOT + war + + + + + io.openliberty.features + microProfile-3.0 + esa + + + com.ibm.codey.bank + common + 1.0-SNAPSHOT + jar + + + + + ${project.artifactId} + + + org.apache.maven.plugins + maven-war-plugin + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.0.0 + + + copy-jdbc-driver + package + + copy + + + + + org.postgresql + postgresql + 42.2.8 + ${project.build.directory}/jdbc + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/LivenessCheck.java b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/LivenessCheck.java new file mode 100755 index 0000000..77f2f47 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/LivenessCheck.java @@ -0,0 +1,25 @@ +package com.ibm.codey.bank; + +import javax.enterprise.context.ApplicationScoped; + +import org.eclipse.microprofile.health.HealthCheck; +import org.eclipse.microprofile.health.HealthCheckResponse; +import org.eclipse.microprofile.health.Liveness; + +@Liveness +@ApplicationScoped +public class LivenessCheck implements HealthCheck { + + private boolean isAlive() { + // perform health checks here + + return true; + } + + @Override + public HealthCheckResponse call() { + boolean up = isAlive(); + return HealthCheckResponse.named(this.getClass().getSimpleName()).state(up).build(); + } + +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/LoyaltyApplication.java b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/LoyaltyApplication.java new file mode 100755 index 0000000..6b13f49 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/LoyaltyApplication.java @@ -0,0 +1,9 @@ +package com.ibm.codey.bank; + +import javax.ws.rs.ApplicationPath; +import javax.ws.rs.core.Application; + +@ApplicationPath("/bank") +public class LoyaltyApplication extends Application { + +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/ReadinessCheck.java b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/ReadinessCheck.java new file mode 100755 index 0000000..ed9c6e9 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/ReadinessCheck.java @@ -0,0 +1,25 @@ +package com.ibm.codey.bank; + +import javax.enterprise.context.ApplicationScoped; + +import org.eclipse.microprofile.health.HealthCheck; +import org.eclipse.microprofile.health.HealthCheckResponse; +import org.eclipse.microprofile.health.Readiness; + +@Readiness +@ApplicationScoped +public class ReadinessCheck implements HealthCheck { + + private boolean isReady() { + // perform readiness checks, e.g. database connection, etc. + + return true; + } + + @Override + public HealthCheckResponse call() { + boolean up = isReady(); + return HealthCheckResponse.named(this.getClass().getSimpleName()).state(up).build(); + } + +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/UserResource.java b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/UserResource.java new file mode 100755 index 0000000..8590c19 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/UserResource.java @@ -0,0 +1,120 @@ +package com.ibm.codey.bank.accounts; + +import javax.enterprise.context.RequestScoped; +import javax.inject.Inject; +import javax.interceptor.Interceptors; +import javax.transaction.Transactional; +import javax.ws.rs.Consumes; +import javax.ws.rs.GET; +import javax.ws.rs.PUT; +import javax.ws.rs.POST; +import javax.ws.rs.DELETE; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; + +import com.ibm.codey.bank.BaseResource; +import com.ibm.codey.bank.accounts.dao.UserDao; +import com.ibm.codey.bank.accounts.json.UserRegistration; +import com.ibm.codey.bank.accounts.json.UserRegistrationInfo; +import com.ibm.codey.bank.accounts.models.User; +import com.ibm.codey.bank.interceptor.LoggingInterceptor; + +@RequestScoped +@Interceptors(LoggingInterceptor.class) +@Path("v1/users") +public class UserResource extends BaseResource { + + @Inject + private UserDao userDAO; + + /** + * This method creates a new user. + */ + @POST + @Consumes(MediaType.APPLICATION_JSON) + @Transactional + public Response registerUser(UserRegistration userRegistration) { + String subject = this.getCallerSubject(); + if (subject == null) { + return Response.status(Response.Status.UNAUTHORIZED).entity("Missing subject").build(); + } + if (userDAO.findUserByRegistryId(subject) != null) { + return Response.status(Response.Status.BAD_REQUEST).entity("User is already registered").build(); + } + User newUser = new User(); + newUser.setSubject(subject); + newUser.setConsentGiven(userRegistration.isConsentGiven()); + userDAO.createUser(newUser); + return Response.status(Response.Status.NO_CONTENT).build(); + } + + /** + * This method returns the user registration data for a user. + */ + @GET + @Path("self") + @Produces(MediaType.APPLICATION_JSON) + @Transactional + public Response getUser() { + String subject = this.getCallerSubject(); + if (subject == null) { + return Response.status(Response.Status.UNAUTHORIZED).entity("Missing subject").build(); + } + User prevUser = userDAO.findUserByRegistryId(subject); + if (prevUser == null) { + return Response.status(Response.Status.NOT_FOUND).entity("User is not registered").build(); + } + UserRegistrationInfo userRegistration = new UserRegistrationInfo(); + userRegistration.setUserId(prevUser.getUserId()); + userRegistration.setConsentGiven(prevUser.isConsentGiven()); + return Response.status(Response.Status.OK).entity(userRegistration).build(); + } + + /** + * This method updates the user registration data for a user. + */ + @PUT + @Path("self") + @Consumes(MediaType.APPLICATION_JSON) + @Transactional + public Response updateUser(UserRegistration userRegistration) { + String subject = this.getCallerSubject(); + if (subject == null) { + return Response.status(Response.Status.UNAUTHORIZED).entity("Missing subject").build(); + } + User prevUser = userDAO.findUserByRegistryId(subject); + if (prevUser == null) { + return Response.status(Response.Status.NOT_FOUND).entity("User is not registered").build(); + } + if (prevUser.isDeleteRequested()) { + return Response.status(Response.Status.CONFLICT).entity("User has requested deletion").build(); + } + prevUser.setConsentGiven(userRegistration.isConsentGiven()); + userDAO.updateUser(prevUser); + return Response.status(Response.Status.NO_CONTENT).build(); + } + + /** + * This method schedules an asynchronous process to remove the user from the system. + */ + @DELETE + @Path("self") + @Transactional + public Response deleteUser() { + String subject = this.getCallerSubject(); + if (subject == null) { + return Response.status(Response.Status.UNAUTHORIZED).entity("Missing subject").build(); + } + User prevUser = userDAO.findUserByRegistryId(subject); + if (prevUser == null) { + return Response.status(Response.Status.NOT_FOUND).entity("User is not registered").build(); + } + prevUser.setDeleteRequested(true); + prevUser.setSubject(null); + userDAO.updateUser(prevUser); + return Response.status(Response.Status.NO_CONTENT).build(); + } + +} diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/dao/UserDao.java b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/dao/UserDao.java new file mode 100755 index 0000000..f6fb1d0 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/dao/UserDao.java @@ -0,0 +1,35 @@ +package com.ibm.codey.bank.accounts.dao; + +import java.util.List; +import javax.enterprise.context.RequestScoped; +import javax.persistence.EntityManager; +import javax.persistence.LockModeType; +import javax.persistence.NoResultException; +import javax.persistence.PersistenceContext; + +import com.ibm.codey.bank.accounts.models.User; + +@RequestScoped +public class UserDao { + + @PersistenceContext(name = "jpa-unit") + private EntityManager em; + + public void createUser(User user) { + em.persist(user); + } + + public void updateUser(User user) { + em.merge(user); + } + + public User findUserByRegistryId(String subject) { + try { + return em.createNamedQuery("User.findUserByRegistryId", User.class) + .setParameter("subject", subject).getSingleResult(); + } catch(NoResultException e) { + return null; + } + } + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/models/User.java b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/models/User.java new file mode 100755 index 0000000..5b695f7 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/models/User.java @@ -0,0 +1,45 @@ +package com.ibm.codey.bank.accounts.models; + +import java.io.Serializable; +import java.util.UUID; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; +import javax.persistence.NamedQueries; +import javax.persistence.NamedQuery; +import javax.persistence.Table; + +import lombok.AccessLevel; +import lombok.Getter; +import lombok.Setter; + +@Entity +@Table(name = "users") +@NamedQueries({ + @NamedQuery(name = "User.findUserByRegistryId", query = "SELECT e FROM User e WHERE e.subject = :subject"), +}) +@Getter @Setter +public class User implements Serializable { + + private static final long serialVersionUID = 1L; + + @Column(name = "user_id") + @Id + @Setter(AccessLevel.NONE) + private String userId; + + @Column(name = "subject", unique=true) + private String subject; + + @Column(name = "consent_given") + private boolean consentGiven; + + @Column(name = "delete_requested") + private boolean deleteRequested; + + public User() { + this.userId = UUID.randomUUID().toString(); + } + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/bootstrap.properties b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/bootstrap.properties new file mode 100755 index 0000000..16f0286 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/bootstrap.properties @@ -0,0 +1,2 @@ +default.http.port=9080 +default.https.port=9443 \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/jvm.options b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/jvm.options new file mode 100755 index 0000000..f0250b2 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/jvm.options @@ -0,0 +1,2 @@ +# This option is needed when using an IBM JRE to avoid a handshake failure when making a secure JDBC connection. +-Dcom.ibm.jsse2.overrideDefaultTLS=true diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/server.xml b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/server.xml new file mode 100755 index 0000000..9297454 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/server.xml @@ -0,0 +1,53 @@ + + + + jpa-2.2 + microProfile-3.0 + mpJwt-1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/META-INF/orm.xml b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/META-INF/orm.xml new file mode 100755 index 0000000..4ed25ae --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/META-INF/orm.xml @@ -0,0 +1,10 @@ + + + + bank + + + \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/META-INF/persistence.xml b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/META-INF/persistence.xml new file mode 100755 index 0000000..ca42dd1 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/META-INF/persistence.xml @@ -0,0 +1,16 @@ + + + + jdbc/AccountsDataSource + NONE + + + + + + + \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/security/digicert-root-ca.jks b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/security/digicert-root-ca.jks new file mode 100755 index 0000000..a39dd27 Binary files /dev/null and b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/security/digicert-root-ca.jks differ diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/webapp/WEB-INF/beans.xml b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/webapp/WEB-INF/beans.xml new file mode 100755 index 0000000..2777559 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/webapp/WEB-INF/beans.xml @@ -0,0 +1,6 @@ + + + diff --git a/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/webapp/WEB-INF/web.xml b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/webapp/WEB-INF/web.xml new file mode 100755 index 0000000..b982697 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,27 @@ + + + user-service + + + authenticated + + + + Security Constraints + + ProtectedArea + /* + + + authenticated + + + NONE + + + + diff --git a/dev/tekton/examples/example-bank/bank-knative-service/Dockerfile b/dev/tekton/examples/example-bank/bank-knative-service/Dockerfile new file mode 100755 index 0000000..e990c65 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-knative-service/Dockerfile @@ -0,0 +1,20 @@ +# Use the official lightweight Node.js 12 image. +# https://hub.docker.com/_/node +FROM node:12-slim + +# Create and change to the app directory. +WORKDIR /usr/src/app + +# Copy application dependency manifests to the container image. +# A wildcard is used to ensure both package.json AND package-lock.json are copied. +# Copying this separately prevents re-running npm install on every code change. +COPY package*.json ./ + +# Install production dependencies. +RUN npm install --only=production + +# Copy local code to the container image. +COPY . ./ + +# Run the web service on container startup. +CMD [ "npm", "start" ] \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-knative-service/deployment.yaml b/dev/tekton/examples/example-bank/bank-knative-service/deployment.yaml new file mode 100755 index 0000000..018f611 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-knative-service/deployment.yaml @@ -0,0 +1,28 @@ +apiVersion: serving.knative.dev/v1 +kind: Service +metadata: + name: process-transaction + # local to cluster only + labels: + serving.knative.dev/visibility: cluster-local +spec: + template: + metadata: + annotations: + # Target 10 requests in-flight per pod. + autoscaling.knative.dev/target: "10" + # Disable scale to zero with a minScale of 1. + # autoscaling.knative.dev/minScale: "1" + # Limit scaling to 50 pods. + # autoscaling.knative.dev/maxScale: "50" + spec: + containers: + - image: anthonyamanse/knative-transaction-process:with-auth + envFrom: + - secretRef: + name: bank-oidc-adminuser + - secretRef: + name: mobile-simulator-secrets + env: + - name: TRANSACTION_SERVICE_URL + value: "http://transaction-service:9080/bank/v1/transactions" \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-knative-service/index.js b/dev/tekton/examples/example-bank/bank-knative-service/index.js new file mode 100755 index 0000000..1080c3d --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-knative-service/index.js @@ -0,0 +1,112 @@ +const express = require('express'); +const app = express(); +const axios = require('axios'); +const qs = require('qs'); +const jwt_decode = require('jwt-decode') + +let transactionServiceUrl = process.env.TRANSACTION_SERVICE_URL +let appIdTokenUrl = process.env.APP_ID_TOKEN_URL +let appIdClientId = process.env.APP_ID_CLIENT_ID +let appIdClientSecret = process.env.APP_ID_CLIENT_SECRET +let appIdAdminUser = process.env.APP_ID_ADMIN_USER +let appIdAdminPassword = process.env.APP_ID_ADMIN_PASSWORD + +let appIdResult; + +app.post('/process', (req, res) => { + console.log('received request') + console.log(req.query) + if (!appIdResult) { + getAppIdToken(appIdAdminUser, appIdAdminPassword) + .then(function (response) { + appIdResult = response.data + sendToRewardEndpoint(req, res, appIdResult.access_token) + }) + .catch(function (error) { + console.log(error) + res.status('404').send('Error getting admin token') + }) + } else { + console.log('found app id result in global variable') + // check if token is expired + if (isAccessTokenExpired(appIdResult.access_token)) { + console.log('token found is expired. getting new one...') + getAppIdToken(appIdAdminUser, appIdAdminPassword) + .then(function (response) { + appIdResult = response.data + sendToRewardEndpoint(req, res, appIdResult.access_token) + }) + .catch(function (error) { + console.log(error) + res.status('404').send('Error getting admin token') + }) + } else { + sendToRewardEndpoint(req, res, appIdResult.access_token) + } + } +}); + +function sendToRewardEndpoint(req, res, authToken) { + if (req.query.transactionId && req.query.category && req.query.amount) { + let pointsEarned = computeReward(req.query.category, req.query.amount); + axios({ + headers: { + 'Authorization': 'Bearer ' + authToken + }, + method: 'put', + url: transactionServiceUrl + '/reward/' + req.query.transactionId, + data: { + pointsEarned + } + }) + .then(function (response) { + if (response.status == '204') { + res.status('200').send('OK') + } else { + console.log({status: error.response.status, data: error.response.data}) + res.status('404').send({result: 'Failed to post to transaction API', response }) + } + }).catch(function (error) { + console.log("Error in PUT /transactions/reward/{transactionId}") + console.log({status: error.response.status, data: error.response.data}) + res.status('404').send({error}) + }) + } else { + res.status('404').send('transactionId, category, and amount must be present in query parameters.') + } +} + +function computeReward(category, amount) { + return amount; +} + +function getAppIdToken(username, password) { + let data = { + username, + password, + grant_type: 'password' + } + return axios({ + method: 'post', + url: appIdTokenUrl + '/token', + headers: { + 'Authorization': 'Basic ' + Buffer.from(appIdClientId + ":" + appIdClientSecret).toString('base64'), + 'Content-Type' : 'application/x-www-form-urlencoded' + }, + data: qs.stringify(data) + }) +} + +function isAccessTokenExpired(access_token) { + if (new Date().getTime() - (jwt_decode(access_token).exp * 1000) >= 0) { + return true + } else { + return false + } +} + + +const port = process.env.PORT || 8080; +app.listen(port, () => { + console.log('Hello world listening on port', port); +}); \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-knative-service/package.json b/dev/tekton/examples/example-bank/bank-knative-service/package.json new file mode 100755 index 0000000..9a83ceb --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-knative-service/package.json @@ -0,0 +1,17 @@ +{ + "name": "bank-knative-service", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "start": "node index.js", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "ISC", + "dependencies": { + "axios": "^0.19.2", + "express": "^4.17.1", + "jwt-decode": "^2.2.0" + } +} diff --git a/dev/tekton/examples/example-bank/bank-user-cleanup-utility/.gitignore b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/.gitignore new file mode 100755 index 0000000..8652905 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/.gitignore @@ -0,0 +1,36 @@ +**/target +!.keep + + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +/build/ + +### VS Code ### +.vscode/ + + +## Local configuration files +/local/config/* + +*.swo +*.swp diff --git a/dev/tekton/examples/example-bank/bank-user-cleanup-utility/Dockerfile b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/Dockerfile new file mode 100755 index 0000000..c0d6b7a --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/Dockerfile @@ -0,0 +1,10 @@ +FROM adoptopenjdk:8-jre-openj9 + +USER root +RUN apt-get update && apt-get upgrade -y e2fsprogs libgnutls30 libgcrypt20 libsasl2-2 +RUN mkdir -p /opt/app/lib +USER 1001 + +COPY target/user-cleanup-utility-1.0-SNAPSHOT.jar /opt/app +COPY target/lib/* /opt/app/lib/ +CMD ["java", "-jar", "/opt/app/user-cleanup-utility-1.0-SNAPSHOT.jar"] \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-user-cleanup-utility/README.md b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/README.md new file mode 100755 index 0000000..df1ae3d --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/README.md @@ -0,0 +1,15 @@ + +## Build + +``` +mvn package +docker build -t bank-user-cleanup-utility:1.0-SNAPSHOT . +``` + +### Secrets + +``` +kubectl create secret generic bank-db-secret --from-literal=DB_SERVERNAME=48f106c1-94cb-4133-b99f-20991c91cb1a.bn2a2vgd01r3l0hfmvc0.databases.appdomain.cloud --from-literal=DB_PORTNUMBER=30389 --from-literal=DB_DATABASENAME=ibmclouddb --from-literal=DB_USER=ibm_cloud_0637cd24_8ac9_4dc7_b2d4_ebd080633f7f --from-literal=DB_PASSWORD= +kubectl create secret generic bank-iam-secret --from-literal=IAM_APIKEY= --from-literal=IAM_SERVICE_URL=https://iam.cloud.ibm.com/identity/token +kubectl create secret generic bank-appid-secret --from-literal=APPID_TENANTID=3d17f53d-4600-4f32-bb2c-207f4e2f6060 --from-literal=APPID_SERVICE_URL=https://us-south.appid.cloud.ibm.com +``` \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-user-cleanup-utility/job.yaml b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/job.yaml new file mode 100755 index 0000000..34a907c --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/job.yaml @@ -0,0 +1,28 @@ +apiVersion: batch/v1beta1 +kind: CronJob +metadata: + name: bank-user-cleanup-utility + labels: + app: bank-user-cleanup-utility +spec: + schedule: "@hourly" + jobTemplate: + spec: + template: + spec: + restartPolicy: Never + containers: + - name: bank-user-cleanup-utility + image: ykoyfman/bank-cleanup:1.0 + imagePullPolicy: Always + envFrom: + - secretRef: + name: bank-db-secret + - secretRef: + name: bank-iam-secret + - secretRef: + name: bank-appid-secret + env: + - name: LAST_LOGIN_HOURS + value: "24" + backoffLimit: 0 diff --git a/dev/tekton/examples/example-bank/bank-user-cleanup-utility/pom.xml b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/pom.xml new file mode 100755 index 0000000..3d4890c --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/pom.xml @@ -0,0 +1,94 @@ + + + + 4.0.0 + + com.ibm.codey.loyalty + user-cleanup-utility + 1.0-SNAPSHOT + jar + + + UTF-8 + UTF-8 + 1.8 + 1.8 + + + + + org.postgresql + postgresql + 42.2.10 + + + + jakarta.json.bind + jakarta.json.bind-api + 1.0.2 + + + + org.jboss.resteasy + resteasy-json-binding-provider + 4.4.2.Final + + + + org.eclipse.microprofile.rest.client + microprofile-rest-client-api + 1.3.3 + + + + org.jboss.resteasy + resteasy-client-microprofile + 4.4.2.Final + + + + org.projectlombok + lombok + 1.18.16 + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.1.1 + + + compile + + copy-dependencies + + + ${project.build.directory}/lib + runtime + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + + true + lib/ + com.ibm.codey.loyalty.AccountDeletionProcessor + + + + + + + + \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/AccountDeletionProcessor.java b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/AccountDeletionProcessor.java new file mode 100755 index 0000000..35cc100 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/AccountDeletionProcessor.java @@ -0,0 +1,269 @@ +package com.ibm.codey.loyalty; + +import java.net.MalformedURLException; +import java.net.URL; +import java.sql.Connection; +import java.sql.DriverManager; +import java.sql.PreparedStatement; +import java.sql.ResultSet; +import java.sql.SQLException; +import java.time.Duration; +import java.time.ZonedDateTime; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Iterator; +import java.util.Map; +import java.util.Properties; +import java.util.Set; +import java.util.StringJoiner; +import java.util.logging.Level; +import java.util.logging.Logger; + +import com.ibm.codey.loyalty.external.appid.AppIDService; +import com.ibm.codey.loyalty.external.appid.AppIDServiceGetUserRoleResponse; +import com.ibm.codey.loyalty.external.appid.AppIDServiceGetUsersResponse; +import com.ibm.codey.loyalty.external.iam.IAMTokenService; +import com.ibm.codey.loyalty.external.iam.IAMTokenServiceResponse; + +import org.eclipse.microprofile.rest.client.RestClientBuilder; + +// This code deletes any App ID user who is no longer registered for the loyalty program. +public class AccountDeletionProcessor { + + private static final Logger log = Logger.getLogger(AccountDeletionProcessor.class.getName()); + + private static final String PROVIDER = "cloud_directory"; + + private static final int USERS_COUNT = 20; + + private static URL IAM_SERVICE_URL; + private static String IAM_APIKEY; + + private static URL APPID_SERVICE_URL; + private static String APPID_TENANTID; + + private static String DB_SERVERNAME; + private static String DB_PORTNUMBER; + private static String DB_DATABASENAME; + private static String DB_USER; + private static String DB_PASSWORD; + + private static int LAST_LOGIN_HOURS; + + private Connection con; + + private AppIDService appIdService; + + private String authHeader; + + public static void main(String[] args) { + // Gather environment variables + try { + IAM_SERVICE_URL = new URL(getEnvVar("IAM_SERVICE_URL")); + APPID_SERVICE_URL = new URL(getEnvVar("APPID_SERVICE_URL")); + } catch(MalformedURLException mue) { + mue.printStackTrace(); + System.exit(1); + } + IAM_APIKEY = getEnvVar("IAM_APIKEY"); + APPID_TENANTID = getEnvVar("APPID_TENANTID"); + DB_SERVERNAME = getEnvVar("DB_SERVERNAME"); + DB_PORTNUMBER = getEnvVar("DB_PORTNUMBER"); + DB_DATABASENAME = getEnvVar("DB_DATABASENAME"); + DB_USER = getEnvVar("DB_USER"); + DB_PASSWORD = getEnvVar("DB_PASSWORD"); + LAST_LOGIN_HOURS = Integer.valueOf(getEnvVar("LAST_LOGIN_HOURS")); + new AccountDeletionProcessor().run(); + } + + public void run() { + // Connect to database + getDBConnection(); + // Set up auth header for App Id with IAM token. + authHeader = "Bearer " + getIamToken(); + // Set up client proxy to App Id service. + appIdService = RestClientBuilder.newBuilder().baseUrl(APPID_SERVICE_URL).build(AppIDService.class); + try { + // Iterate through all App Id users a page at a time. Identify and collect unregistered users by provider id. + Set unregisteredUserProviderIds = new HashSet(); + int startIndex = 0; + AppIDServiceGetUsersResponse usersResponse; + do { + // Get a page of users. Collect the user's profile id and corresponding provider id. + Map profileIdToProviderIdMap = new HashMap(USERS_COUNT); + log.log(Level.INFO, "Obtaining a page of user data"); + usersResponse = appIdService.getUsers(authHeader, APPID_TENANTID, AppIDService.DATASCOPE_FULL, startIndex, USERS_COUNT); + int numberOfUsersOnThisPage = usersResponse.getItemsPerPage(); + for (int i=0; i registeredProfileIds = queryUsers(profileIdToProviderIdMap.keySet()); + log.log(Level.INFO, "Registered users: " + registeredProfileIds.toString()); + // Remove from the map those users who are still registered in the users table. + for(String profileId : registeredProfileIds) { + profileIdToProviderIdMap.remove(profileId); + } + // Remove from the map those users who are admins. + Iterator> iter = profileIdToProviderIdMap.entrySet().iterator(); + while (iter.hasNext()) { + Map.Entry entry = iter.next(); + String profileId = entry.getKey(); + if (isAdmin(profileId)) { + log.log(Level.INFO, "Admin: " + profileId); + iter.remove(); + } + } + // Whatever is left is an unregistered user. Save for deletion after completing the paged scan. + unregisteredUserProviderIds.addAll(profileIdToProviderIdMap.values()); + } while(startIndex < usersResponse.getTotalResults()); + // Remove all unregistered users. + if (unregisteredUserProviderIds.isEmpty()) { + log.log(Level.INFO, "No App ID users need to be removed"); + } else { + for(String providerId : unregisteredUserProviderIds) { + log.log(Level.INFO, "Removing user: " + providerId); + appIdService.removeUser(authHeader, APPID_TENANTID, providerId); + } + } + } finally { + try { + appIdService.close(); + } catch(Exception e) { + e.printStackTrace(); + } + closeDBConnection(); + } + } + + private static String getEnvVar(String name) { + String s = System.getenv(name); + if (s == null) { + throw new RuntimeException("Missing environment variable " + name); + } + return s; + } + + private void getDBConnection() { + try { + // Load the driver + log.log(Level.INFO, "Loading the JDBC driver"); + Class.forName("org.postgresql.Driver"); + // Create the connection + String url = "jdbc:postgresql://" + DB_SERVERNAME + ":" + DB_PORTNUMBER + "/" + DB_DATABASENAME; + log.log(Level.INFO, "Creating a JDBC connection to " + url); + Properties props = new Properties(); + props.setProperty("user", DB_USER); + props.setProperty("password", DB_PASSWORD); + props.setProperty("sslfactory","org.postgresql.ssl.NonValidatingFactory"); + con = DriverManager.getConnection(url, props); + } catch (ClassNotFoundException e) { + System.err.println("Could not load JDBC driver"); + e.printStackTrace(); + throw new RuntimeException(e); + } catch(SQLException sqlex) { + System.err.println("SQLException information"); + System.err.println ("Error msg: " + sqlex.getMessage()); + System.err.println ("SQLSTATE: " + sqlex.getSQLState()); + System.err.println ("Error code: " + sqlex.getErrorCode()); + sqlex.printStackTrace(); + throw new RuntimeException(sqlex); + } + } + + private Set queryUsers(Set profileIds) { + Set registeredProfileIds = new HashSet(); + try { + // Create query statement + StringJoiner sj = new StringJoiner(",", "(", ")"); + for(String id : profileIds) { + sj.add("?"); + } + String query = "SELECT SUBJECT FROM BANK.USERS WHERE SUBJECT IN " + sj.toString(); + // Execute query statement + log.log(Level.INFO, "Querying database"); + PreparedStatement ps = con.prepareStatement(query); + int index = 1; + for(String id : profileIds) { + ps.setString(index, id); + index++; + } + ResultSet rs = ps.executeQuery(); + while(rs.next()) { + registeredProfileIds.add(rs.getString("subject")); + } + // Close the ResultSet + rs.close(); + // Close the PreparedStatement + ps.close(); + } + catch(SQLException sqlex) { + System.err.println("SQLException information"); + System.err.println ("Error msg: " + sqlex.getMessage()); + System.err.println ("SQLSTATE: " + sqlex.getSQLState()); + System.err.println ("Error code: " + sqlex.getErrorCode()); + sqlex.printStackTrace(); + throw new RuntimeException(sqlex); + } + return registeredProfileIds; + } + + private void closeDBConnection() { + try { + con.close(); + } + catch(SQLException sqlex) { + System.err.println("SQLException information"); + System.err.println ("Error msg: " + sqlex.getMessage()); + System.err.println ("SQLSTATE: " + sqlex.getSQLState()); + System.err.println ("Error code: " + sqlex.getErrorCode()); + sqlex.printStackTrace(); + throw new RuntimeException(sqlex); + } + } + + private String getIamToken() { + // Get an IAM token for authentication to App ID API. + log.log(Level.INFO, "Obtaining IAM access token"); + IAMTokenServiceResponse tokenResponse; + try ( IAMTokenService iamTokenService = RestClientBuilder.newBuilder().baseUrl(IAM_SERVICE_URL).build(IAMTokenService.class) ) { + tokenResponse = iamTokenService.getIAMTokenFromAPIKey(IAMTokenService.GRANT_TYPE_APIKEY, IAM_APIKEY); + } catch(Exception e) { + throw new RuntimeException(e); + } + return tokenResponse.getAccessToken(); + } + + private boolean isRecentlyModified(String lastModifiedString) { + ZonedDateTime now = ZonedDateTime.now(); + ZonedDateTime lastModified = ZonedDateTime.parse(lastModifiedString); + Duration duration = Duration.between(lastModified, now); + long diffHours = (long) duration.getSeconds() / (60*60); + return (diffHours < LAST_LOGIN_HOURS); + } + + private boolean isAdmin(String profileId) { + boolean admin = false; + AppIDServiceGetUserRoleResponse userProfileResponse = appIdService.getUserRoles(authHeader, APPID_TENANTID, profileId); + for (AppIDServiceGetUserRoleResponse.Role role : userProfileResponse.getRoles()) { + if (role.getName().equals("admin")) { + admin = true; + break; + } + } + return admin; + } +} diff --git a/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDService.java b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDService.java new file mode 100755 index 0000000..29ee761 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDService.java @@ -0,0 +1,44 @@ +package com.ibm.codey.loyalty.external.appid; + +import javax.ws.rs.HeaderParam; +import javax.ws.rs.DELETE; +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.QueryParam; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; + +public interface AppIDService extends AutoCloseable { + + public static String DATASCOPE_FULL = "full"; + + @GET + @Path("/management/v4/{tenantId}/users") + @Produces({MediaType.APPLICATION_JSON}) + public AppIDServiceGetUsersResponse getUsers( + @HeaderParam("Authorization") String authorizationHeader, + @PathParam("tenantId") String tenantId, + @QueryParam("dataScope") String dataScope, + @QueryParam("startIndex") int startIndex, + @QueryParam("count") int count + ); + + @GET + @Path("/management/v4/{tenantId}/users/{id}/roles") + @Produces({MediaType.APPLICATION_JSON}) + public AppIDServiceGetUserRoleResponse getUserRoles( + @HeaderParam("Authorization") String authorizationHeader, + @PathParam("tenantId") String tenantId, + @PathParam("id") String profileId + ); + + @DELETE + @Path("/management/v4/{tenantId}/cloud_directory/remove/{userId}") + public void removeUser( + @HeaderParam("Authorization") String authorizationHeader, + @PathParam("tenantId") String tenantId, + @PathParam("userId") String userId + ); + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDServiceGetUserRoleResponse.java b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDServiceGetUserRoleResponse.java new file mode 100755 index 0000000..a847c77 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDServiceGetUserRoleResponse.java @@ -0,0 +1,22 @@ +package com.ibm.codey.loyalty.external.appid; + +import javax.json.bind.annotation.JsonbProperty; + +import lombok.Getter; +import lombok.Setter; + +@Getter @Setter +public class AppIDServiceGetUserRoleResponse { + + @JsonbProperty("roles") + private Role[] roles; + + @Getter @Setter + public static class Role { + + @JsonbProperty("name") + private String name; + + } + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDServiceGetUsersResponse.java b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDServiceGetUsersResponse.java new file mode 100755 index 0000000..d8aadc5 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDServiceGetUsersResponse.java @@ -0,0 +1,61 @@ +package com.ibm.codey.loyalty.external.appid; + +import javax.json.bind.annotation.JsonbProperty; + +import lombok.Getter; +import lombok.Setter; + +@Getter @Setter +public class AppIDServiceGetUsersResponse { + + @JsonbProperty("totalResults") + private int totalResults; + + @JsonbProperty("itemsPerPage") + private int itemsPerPage; + + @JsonbProperty("users") + private User[] users; + + @Getter @Setter + public static class User { + + @JsonbProperty("id") + private String profileId; + + @JsonbProperty("identities") + private Identity[] identities; + + } + + @Getter @Setter + public static class Identity { + + @JsonbProperty("provider") + private String provider; + + @JsonbProperty("id") + private String providerId; + + @JsonbProperty("idpUserInfo") + private IdpUserInfo idpUserInfo; + + } + + @Getter @Setter + public static class IdpUserInfo { + + @JsonbProperty("meta") + private Meta meta; + + } + + @Getter @Setter + public static class Meta { + + @JsonbProperty("lastModified") + private String lastModified; + + } + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/iam/IAMTokenService.java b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/iam/IAMTokenService.java new file mode 100755 index 0000000..0ae8ec3 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/iam/IAMTokenService.java @@ -0,0 +1,21 @@ +package com.ibm.codey.loyalty.external.iam; + +import javax.ws.rs.Consumes; +import javax.ws.rs.FormParam; +import javax.ws.rs.POST; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; + +public interface IAMTokenService extends AutoCloseable { + + public final static String GRANT_TYPE_APIKEY = "urn:ibm:params:oauth:grant-type:apikey"; + + @POST + @Consumes({MediaType.APPLICATION_FORM_URLENCODED}) + @Produces({MediaType.APPLICATION_JSON}) + public IAMTokenServiceResponse getIAMTokenFromAPIKey( + @FormParam("grant_type") String grantType, + @FormParam("apikey") String apiKey + ); + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/iam/IAMTokenServiceResponse.java b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/iam/IAMTokenServiceResponse.java new file mode 100755 index 0000000..eee6ab8 --- /dev/null +++ b/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/iam/IAMTokenServiceResponse.java @@ -0,0 +1,17 @@ +package com.ibm.codey.loyalty.external.iam; + +import javax.json.bind.annotation.JsonbProperty; + +import lombok.Getter; +import lombok.Setter; + +@Getter @Setter +public class IAMTokenServiceResponse { + + @JsonbProperty("access_token") + public String accessToken; + + @JsonbProperty + public long expiration; + +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/data_model/.gitignore b/dev/tekton/examples/example-bank/data_model/.gitignore new file mode 100755 index 0000000..00f5db1 --- /dev/null +++ b/dev/tekton/examples/example-bank/data_model/.gitignore @@ -0,0 +1 @@ +.~/ diff --git a/dev/tekton/examples/example-bank/data_model/Dockerfile b/dev/tekton/examples/example-bank/data_model/Dockerfile new file mode 100755 index 0000000..2753862 --- /dev/null +++ b/dev/tekton/examples/example-bank/data_model/Dockerfile @@ -0,0 +1,3 @@ +FROM postgres +COPY cc_schema.sql /tmp +CMD /usr/bin/psql postgres://$DB_USER:$DB_PASSWORD@$DB_SERVERNAME:$DB_PORTNUMBER -f /tmp/cc_schema.sql diff --git a/dev/tekton/examples/example-bank/data_model/README.md b/dev/tekton/examples/example-bank/data_model/README.md new file mode 100755 index 0000000..55acf2d --- /dev/null +++ b/dev/tekton/examples/example-bank/data_model/README.md @@ -0,0 +1,5 @@ +### Secrets + +``` +kubectl create secret generic bank-db-secret --from-literal=DB_SERVERNAME=48f106c1-94cb-4133-b99f-20991c91cb1a.bn2a2vgd01r3l0hfmvc0.databases.appdomain.cloud --from-literal=DB_PORTNUMBER=30389 --from-literal=DB_DATABASENAME=ibmclouddb --from-literal=DB_USER=ibm_cloud_0637cd24_8ac9_4dc7_b2d4_ebd080633f7f --from-literal=DB_PASSWORD= +``` diff --git a/dev/tekton/examples/example-bank/data_model/cc_schema.sql b/dev/tekton/examples/example-bank/data_model/cc_schema.sql new file mode 100755 index 0000000..898fda0 --- /dev/null +++ b/dev/tekton/examples/example-bank/data_model/cc_schema.sql @@ -0,0 +1,48 @@ +CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; +CREATE DATABASE example; +\connect example; +CREATE SCHEMA IF NOT EXISTS bank; +set search_path to bank; + + CREATE TABLE IF NOT EXISTS users ( + user_id VARCHAR, + subject VARCHAR UNIQUE, + consent_given BOOLEAN NOT NULL, + delete_requested BOOLEAN NOT NULL, + PRIMARY KEY (user_id) + ); + + CREATE TABLE IF NOT EXISTS events ( + event_id VARCHAR, + event_name VARCHAR NOT NULL, + point_value INTEGER, + location VARCHAR, + start_time TIMESTAMP, + end_time TIMESTAMP, + description VARCHAR, + PRIMARY KEY (event_id) + ); + + -- Events attended by users + CREATE TABLE IF NOT EXISTS user_event ( + usr VARCHAR NOT NULL, + event VARCHAR NOT NULL, + PRIMARY KEY (usr, event), + FOREIGN KEY (usr) REFERENCES users(user_id) ON UPDATE CASCADE, + FOREIGN KEY (event) REFERENCES events(event_id) ON UPDATE CASCADE + ); + + -- Transactions + CREATE TABLE IF NOT EXISTS transactions ( + transaction_id VARCHAR UNIQUE, + usr VARCHAR NOT NULL, + transaction_name VARCHAR, + amount NUMERIC(15,2), + category VARCHAR, + points_earned REAL, + processed BOOLEAN NOT NULL, + date TIMESTAMP, + PRIMARY KEY (transaction_id, usr), + FOREIGN KEY (usr) REFERENCES users(user_id) ON UPDATE CASCADE + ); + diff --git a/dev/tekton/examples/example-bank/data_model/drop-schema/Dockerfile b/dev/tekton/examples/example-bank/data_model/drop-schema/Dockerfile new file mode 100755 index 0000000..39846cb --- /dev/null +++ b/dev/tekton/examples/example-bank/data_model/drop-schema/Dockerfile @@ -0,0 +1,3 @@ +FROM postgres +COPY drop.sql /tmp +CMD /usr/bin/psql postgres://$DB_USER:$DB_PASSWORD@$DB_SERVERNAME:$DB_PORTNUMBER -f /tmp/drop.sql diff --git a/dev/tekton/examples/example-bank/data_model/drop-schema/drop.sql b/dev/tekton/examples/example-bank/data_model/drop-schema/drop.sql new file mode 100755 index 0000000..3e773e0 --- /dev/null +++ b/dev/tekton/examples/example-bank/data_model/drop-schema/drop.sql @@ -0,0 +1,2 @@ +DROP EXTENSION "uuid-ossp"; +DROP DATABASE example; diff --git a/dev/tekton/examples/example-bank/data_model/drop-schema/job.yaml b/dev/tekton/examples/example-bank/data_model/drop-schema/job.yaml new file mode 100755 index 0000000..bf5351f --- /dev/null +++ b/dev/tekton/examples/example-bank/data_model/drop-schema/job.yaml @@ -0,0 +1,17 @@ +apiVersion: batch/v1 +kind: Job +metadata: + name: cc-schema-unload + labels: + app: cc-schema-unload +spec: + template: + spec: + restartPolicy: Never + containers: + - name: cc-schema-unload + image: ykoyfman/drop-schema + imagePullPolicy: Always + envFrom: + - secretRef: + name: bank-db-secret diff --git a/dev/tekton/examples/example-bank/data_model/job.yaml b/dev/tekton/examples/example-bank/data_model/job.yaml new file mode 100755 index 0000000..09925d3 --- /dev/null +++ b/dev/tekton/examples/example-bank/data_model/job.yaml @@ -0,0 +1,17 @@ +apiVersion: batch/v1 +kind: Job +metadata: + name: cc-schema-load + labels: + app: cc-schema-load +spec: + template: + spec: + restartPolicy: Never + containers: + - name: cc-schema-load + image: ykoyfman/bank-schema:1.0 + imagePullPolicy: Always + envFrom: + - secretRef: + name: bank-db-secret diff --git a/dev/tekton/examples/example-bank/deployment.yaml b/dev/tekton/examples/example-bank/deployment.yaml new file mode 100755 index 0000000..c9b99d0 --- /dev/null +++ b/dev/tekton/examples/example-bank/deployment.yaml @@ -0,0 +1,56 @@ +--- + apiVersion: v1 + kind: Service + metadata: + name: mobile-simulator-service + labels: + app: mobile-simulator + spec: + ports: + - port: 80 + protocol: TCP + targetPort: 8080 + type: LoadBalancer + selector: + app: mobile-simulator +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: mobile-simulator-deployment + labels: + app: mobile-simulator +spec: + selector: + matchLabels: + app: mobile-simulator + strategy: + type: Recreate + template: + metadata: + labels: + app: mobile-simulator + spec: + containers: + - image: ykoyfman/mobile-simulator:css-fix + imagePullPolicy: Always + name: mobile-simulator + envFrom: + - secretRef: + name: mobile-simulator-secrets + env: + - name: PORT + value: '8080' + ports: + - containerPort: 8080 + +--- +apiVersion: v1 +kind: Route +metadata: + name: mobile-simulator-service +spec: + to: + kind: Service + name: mobile-simulator-service + diff --git a/dev/tekton/examples/example-bank/design/icons.ai b/dev/tekton/examples/example-bank/design/icons.ai new file mode 100755 index 0000000..c652c03 --- /dev/null +++ b/dev/tekton/examples/example-bank/design/icons.ai @@ -0,0 +1,1276 @@ +%PDF-1.5 %âãÏÓ +1 0 obj <>/OCGs[30 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream + + + + + application/pdf + + + icons + + + Adobe Illustrator 24.0 (Macintosh) + 2020-04-24T21:04:14-04:00 + 2020-04-24T21:04:16-04:00 + 2020-04-24T21:04:16-04:00 + + + + 256 + 64 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAQAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A6gvniK3H1aLSbP07b9wC 8QdmMQ4FiQU6kE9M12p7VxYZmEhMkVyArcX3ux03ZWbNATjKABvmTexruVIfPqGaMSaRZNGXUOBD wPEkA0Ys+9Om2V4u2cM5iIjO5GuQ6/Fnl7Gz44GZljqIvmenwZnqN/PpvlGzezPpSulpbROqhuHr FIgVU/Dy+Kicvh5Urtm1dbEWQLphn5c+fdX1fV4oLhZVhmlaB45WMq19CWfkGdUdXj9EI4HwHltx NK1Yshnezvu3exoaLg4Z8XFfPnt126H5vRdT1K5t57e0s7dbm9uubIkjmKNY4qc5HcLIQAXVRRTU kdqkWvPpIdU1aS7vIYNUt5ddsl9d/L8HB4vRr8MZkdUmMjL+3yAUkVWnUoTDU9clfyrqGq6UQlxb Qzui3MbfBJb8uaSR1RqgoR199xilJtY1bVdL1PUme8R7eeK2iQSu8KW9xMrIog9OK7Z2do+XxLSv ECpJxQm/li5vbrQGtnN1Fe2fKzN5fxAPLLGg/wBICV+NGZqrvvgLOBAIJFhKdX1m+8saZpy6trCm e4laJnMKSGm7lyWeIlIk2ZqV6bb5XxcI3dtj0R1uWZwR4YxF/o895HkE5tbvU4Nbh0+6uobyO5t5 J19OP0pI/SZFqaO4KP6lO1CO9drXTojWtVFroeq3tnJHJcWFvPIBXkFlijLhXAPiNxkIzBujyZSh KNWKtLpLbWotb04XGvQ8HL/6F6SxNMFWrBV5Nz26/wAvXAeY3c3TmPgTvGZHb1fzff3fpVtRvLlL 2RFnKguEjiCsx2RG24kd3zBzZJCZAPX9AZ4MUTAEjp5d5/Ul2qalqFtqa2K3ciuIzJyCj4iVZgOL MxIHChP66GmNnzzjk4OI8r/G/l+N6ytPghLHx8I5193l5/ja5DrF7NZ2ZnhVWcHo9aUCk9vlm6dG gh5hC20by8I5Wd4yDWjMpHFVoWpyB+0dh3xVOsVYl+nL7/HPo0u/0R/vBz9NPq/1z0/X+1z9SnDb lwpy2rlXEeLyd3+Uh+Tv0eL9fM8XBfD3Vz6Xy3pluWukQV7cSxzx8OfCP45+IBAQmm9SD2P68VRu KsB07W9WnvIr651wQwz2VuJLYWMzQR3Dxm6b97/dcvSkX9up8MoEjzt6XPpMUYGEcVkTlv4kbMb4 OXP6geiM8u6nqq6sLa41M38d3cSyiKW0mtXjheNnh4+sEPGsTDYEe+SiTfNo12nxeFxRhwGMQLE4 yBIIEvpvfcMhmuJ/rJPr+nHEzc0EbN8PHqSPfLXQuE863Bb6xzRmRQhjZR9sK9Cdv2sVQ939cPma 3WPVY4YjbuTpjBTI3UeoF6kcipr240H2mpA8+bsMfB+XJOMk8Q9fT3ff7+K+gtX6j5h/6ukX/SKP +qmGj3tfi4P9TP8Apv2IucSgQD11jPIByQBzPgB7+GScQ815juamkwA7Dh/bihVQOFAduTdyBT8M VbxViPl1fMGlaaLeHTFvYJXa5inW4SOqzn1OJRxUFeVMmaPVqFjoiNV/xJq1i+nNpS2iTtGHuHuU cIqurMeKip2XYYRQ3tZcRFUmI0+HUvLCWE4rFc2axN7cowAw8CDuDlbakfkubVNVv5dT1a1kt57G 3jsbcSd2LF55B7vxjrTwwlDJNR0tbyS3nSeS1urViYp4uJPFqB42Dqysj0FRTsCKEYEpdB5ctItc uJ4rVIY0t4DZ3AUEpcGS6Mziu/IicFq9a4bVVudBKeW9S0y1cy3N7Dc8p5iAZJ7hWqzlFAG7dl2G Nqx3WRq0slxeiPVIDdTWai0W3tpfSEbcJACrvy5czvWn83JNsrmCOruOz8mKdQlCHpjP1SJF93y+ 7lUt2RrpOrw6PqlsupyXF9dm4ezuZAF9AypSJV412Q7/AD6ACgEoinA1OaOQjhiIVEDbqe/8fad2 Maj5U8v6lb2yT+Xb/T5YAwk+pmBWcPxDrJKkh9UNwB5E8u9QcE8Ylzcjs/tTLpeLw69Vcxe4uj8L LIdGubWLWLjT7XRW09PSSeS6Eax82YKf3hUUJ+OgPNiSr1AoCzxb01ZNMBhGXiBMjy6/jv26xom9 k/M/lPSb7RNTWPTYLm/mtrhbUyIrssro3ERtJX06ua7UFd8jDFGBJA5uPkzSmACeSAgj0SHXNOS2 8rSWbuzEXCwpCqkDZmWHlG/Hr+8I49VqdsMuY2c7TCX5fJWQRH83v/Tvy25/xUE3v7rUbW8lFrby SJIVdmVajlxC7fCey5h5sk4TPCCb/Hcxw48c4DiIBH470M99q9wDFJaShZAY2fhuFbY78MqOXLLY xO/l+xtGLFHcSG2/P9qcapam5s2iCCRqiiMWUHejbqyH7JPfNo6pAafpd9FLIZQiqZo3UKajihat CeR7jrT54qnWKsU4N/jX6jVvq3L9JcKber6Po/ap9nvSv2sq/ip3V/4Jx/xfR8OLi/HkyvLXSoK+ FJkUVpOojceIEiin/Au2Ko3FXl2mRKv1K5Nzp8TpawRn1o4jMnGyWFkcG1aUsJQd/X+ztTMYfB7H USJ4o8OQ+qR2Jo/vDKx+8quH+hz3tMfK9usOt2aJJaOCzOUtFiqCsMisztFbWYoeShQVNN998lAb uJ2hPiwyJE/86/50dhc5+d7j3MquF5Ty/FGCGNPUAqCQN90eo+kZe8y0APWDBozykX7AHI/vVI6I p6dfiOKoa/8AqP8Aim3SXSpZ53t3IvQCYqBXHEr/AHZIUsnJviHqBRs7Uga4uTs8PH+WJGQAcX09 enx7jQ2PDZ3iEN9Q8uf9Sl/052v/ADVgodzd42o/5SP9nP8AUn04hCWw+rErUBEApwG2xA2+jptl jqJcze7njteRrZcjU1bghr79cWKIhCCMBI/SXeiUApv4DFV+KoRdH0hVCrY26qooqiJAAB2G2Kt/ onSv+WKD/kUn9MVREUUUUSRRIscUahY41AVVVRQAAbAAYquxV2KuxV2KuxV2KuxV2KuxV2KuxV2K uxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVTubm2tYHuLmVIIIxWSWRgiKPEs1AMSaZ4 8cpnhiCSegU7LUNPv4TPY3MV3CGKmWB1kXkNyOSkiu+AEHkyy4J4zU4mJ8xX3ojC1LEnhdiiSKzL 9pQQSPmBiq/FXYq7FXYq7FUDqmu6LpMayanfQWSOaIZ5Fj5H25EVwiJPJjKQHMom2urW6gWe1mSe BxVJYmDow8Qykg4CEg2q4pdiqncXFvbQtPcSpDCgq8sjBVUeJY0AxpBNIPTfMWhanI0en38F1Im7 RxyKzU7NxrXiezdDkjEjmiMweRTDIslkU8M3P0nD+mxRwOzDqDkYzEuXRlKBjV9V0jpGjSOQqICz MegA3JyTFTtLy1vLaO5tZVnt5RWOVCGVh02IwkUgG1XAlDwahYzyyxQzxvLDIYZY1YclkChipHWv E1+WCw2zwziASCARY93eiMLUoXGoWFs4S4uYoXI5BZHVCR0rQkZXPNCJqUgPeW2GGcxcYk+4KqTR OQEdWJUOACD8J6N8jkxIHkWBiRzC7CxQ0GqaZcXc1nb3cM13bf70W0ciNJH/AK6A8l698AIbp6fJ GInKMhGXI0aPuKJwtKwzQiQRGRRKwqIyRyI8adcVX4qgxrOjtefUlvrc3lafVhKnq18OFeX4YOIN 50uXg4+GXB30a+aMwtDsVeda3bea/Net6jo6SadBZaBf2txHFPBNKZgYhLGJaSBGQ8jyUKOmUSEp EjbZ6rSZNNo8MMpGQzzY5CxKI4d6NemwdtjaVaVrLaNr99MmtaJbm6uoNOvrSGxvERZ7cuvCMK9A 7cmBY1GwyAlR5hzNRpRnwQBxZpcMZTjI5IE8Mq3O3Lltseb02/lu/Wit7covrq9WcE04gdKEeOZT xKAME1rLCvqWscsCGQUjcFkClSWIO/jiqTfmPA+p+XtLshcGJdR1KzglmhGxWRjX4XqCK70bKsws V5u99n8ox5p5K4uDFOXyDzXQvKekapq8enNqf1cyllSQXOjTsWUVCiKB3kJNOy5jRgCav7nsNZ2l lw4jk4OKv6OeP2yAH2vSfy7tZNP8tavp/rvOLDUL63ilegPGM7UC0C770GZOEUK83j/aDKMmaGSu HjxQl8wmJtraN1jeYg0Usxe2WnIA9GIbv4Za6JM9OtRa300SyGRGijfeg3LOP2QB2xV5tNpl9Z+e NR+o6i9u91qc0TTG3tJpgj6adQ4rLNDJJxD/AABa0C5k3cfh+mnDMSJmj18u60y/KrT3GpXeoy3B ea507T55I44oLeIveRGZyY4I4lZlK0DHemRynameAb35BNvNywDX7aTUtAn17TmijhtokijuIYpp JH9V2jkPHnQRUZqALy37HCnz3FvUdmE+BIY8scM7JO5iSABQsdPq26mtu5LyrdarF5hk0y006/st Ch5s0F9HEIYuY5ILaRDypzqOFXCilCv2QwJuq2Z9o48RwDJOeOeY1vEmz38QPl19JJ7+ZH/mPHpk mg24vywjGoWLAo0iMF+soJiDEQwpAZN+3zpmViu9nmM1Vv3hg/kuayuvMukS3l1d3N1Ex9I3U93K FZrNQaCVmUVlZxls+RaMdGQv8bPXpzKIJDCAZQp9MHpypt+OYk7o1zc6FWL5MXgF89zbyWF9M+pT FBqKTwxIipGp5CQrCjfCx4j4qnx7jUQ4zIGEjxmuKwOQ7/SPdz/W7ifAIkTjHwxfDUjdnu9R6b8v 1MrzculeXzpcafqOr2q6TBcxW1zNcNOyO5WK5Y3ALlHAVRzYCvYZkDcDdxTsTszzytaG18vWEJk9 ZvRWRpB0Jl/eHjUn4attv0ymZ3b4Coh55ceVDqnmDWHnvLCxmS6Z3s54mE4iEjPFKlx6iTLHKCHP psoD1pTfMQwsl7eHaPg4MYjHJMGP1A7XVEGPCY3Hl6gSY1d7M18j3l9c6ZP68qXVpBO0On3sfMie FAPjDSPIzqrlkVyxLBa1PU24yadB2vihDIOEGMjG5RNek92wABqiRW115IbXp3TXpfTubeHjBa+u k5UFo+VzyC8iOnIHb2zVauRGY0Yj0xu+71/j5NujgDhFxkfVKq7/AEfj5rfJ0r3d6LiSnO2sILUF K8CvJnWta/FSnfB2bIznxH+GEYp7TiIQ4RylklL9DXme+8wXd7qOm6NdNZfoywF5NJDGkk8003qi CGMOrqq/uCWPGpqAKZtZkmwOidBhwQhDJljx+Jk4RZIiAOHikar+dtvXUsV0S3l1XWoDp93ZtqIu Y9XkuZYbmC9RKRR3cQrGsbo26EcqfFXtlcRZ297udXMYcJ44z4OE46BjKBPqMD9Vgjny6PT7uSb1 IoIWCPKSTIQDxVRvQHvvmS8UlcitNL6bSK07r6P70MrBkdyrKyrStDirHvzn8wapofkUvZSNHdXk 0dm9xHUMiujO7KR0r6fGvvlOokRHZ6T2U0WPUawCYuMImVd9UP038HzGHYMHBIcGoau9fGua59fo VT6k/J3zBqGueR7afUHaW5t5HtmnfdpFjoVYk9TxahPembHBImO7477T6KGn1kow2jICVd1s2y55 5i2seSLi71i41XTdbvNInvEjS7S39Nkk9EFY2o6kggGnXK5Y7Ng07nS9rRhiGLJihljG+G72vnyS WT8vPNBupZRrUBR9UF8vK2jLeiCx9Njx3ff7WQ8KXf1c8dt6bhA8KX91wfUeff7vJntza+sY2WRo pIiSjrQncEHZgR3y95dQexumct9YD/u2SrxoWq1aGoA2HhiqC13y6+q6XbWou2tLqznhure6jjRg ssBqpMbDiR7ZGcbDm6DWfl5kmPHGUTEjlsfMJTH5L8xRSCWLzEiSjcOum2YYH5ha5Dwz3/Y7CXau Aijhsf8ADZ/rTnQPLy6VptxayXL3k15NNc3dy6qheWc1chUHFR7ZOEaDr9drPHmCI8MYxEQOdAeZ RQsLkAAXWwAArGh2G3hknCVbe1eOZ5pJTLIyqlSAoCqSeg/1sVeeXf5ZeabrUZtQfW4EuZ5muWMc d4oEjxmElQLrb90eA/ydsvGUVVOKcEibv7/1pr5L8j655d1EzS6jBcWjwpbyQKlxy4QrxhCmSeVR w6D4em2RnkEgzx4jE8061TTvNk2opLp2rw2lgGjL2z2olcqv94vqFhTl8tsxyJXsXcafPpY4yMmM ynvvxV7tq6Kek6X50gvIJNS1yC9tU5evAlmIWeqsF+MSNSjEH7PbGIl1LPU6jSSgRjxShLoeO6+F fpTHWtJt9TsJYHige44OLSW5hSdYpWUhX4OKGh7d8siaLqZRsJNoHkz6jey3OojTruhRrRbfTobU wupqWDAyMd+m+2TlO+TCGOjvXyZNLDFNG0UyLJG32kcBlPzBymURIURYb4yMTYNFJbXy2Eume5Wz ltyxKwraRoQu9By3r2zBx6KpXLgMe7gDn5NdcajxiXfxlN7lJ2tZY7Z1hnKMsEjLyVHIorFaioB7 VzYB1xtiz+X/AD88MynzBaCabiGkGnpQqK1VgztyrXavTfx2s4o9zTwT7/sZDo1tqdtp8cOpXKXd 2nLnPHGIVI5HiAgJAotBkJEXs2RBA3YxceUPN96kf6R1mwvJY3qjTaXE4Vfg2Xk54k8Wr8+1MoMJ Hmfseih2npcZPh48kQR0ykd/Pb3J9omn69avKdT1JL2NgBbwx26QLGAB3BJY/wCdMsiCOZdZq82G YHhwMD1JkZWjdQhv5YAtlcLbTcgTI8fqjjvUcar+vIZozI9B4T7rcfDKAPrHEPfS+zjuo7WNLqUT 3CikkqrwDGvXiOmHEJCIEjcu9GUxMiYio9yV6v5furjUY9V0u+OnamkX1eSQxieGaEEsqSxEoTwY kqVYEVPjhlHexzczTa2McZxZIceO758JB7wd+Y5gg9O5vRvL81nez6nqF62o6rcIsLT8BFHHEpLC OGIFuCljU1YknqcYxo2eaNVrROAx448GOJursk98j1+QA7kzubb1ghVzHLGeUcgoSDSh2PUHJuAs jtJTMstxN6rR19NVXgoJFOVKtU0xVBeafLWneZNEuNIvwfRnAKyL9uN1NVda9wcjOAkKLm9n6/Jp Mwyw5j7R3PGV/wCccNd+vcG1a1+oV/vgknrU/wCMVOP/AA+Yn5U3ze+Ptzh4L8OXH3bV8+f2PavL fl/T/L2i22kaepFtbLQM27OxPJnYjuzGuZcIiIoPn+u1s9Vmlln9UvxSZZJxHYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FWCeftb1BLtdOtXeKF UDzMlQWLV2qOwGU5JHk9H2NpIGPiSom9nmNp5x1ny75oe4gnka2Dr9ZtGYlJEKjkOJ2DU6HKBMxL 1+TszFqtMIyA4q2l1D6JzNfLXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYqx/zN5bk1F1ubVgLhV4sjbBlG438chKNuz0GuGIcMvpYDaflHq195oe9 1X04NLWRXZAweSUKB8IC1ABpuScpGEk7vTZPaXFj0whis5K+Af/Z + + + + uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 + xmp.did:a929a955-ac55-4b72-9c20-ebcb1b8c2358 + uuid:fc29744c-d92f-fd4c-aed0-fbbd156f5331 + proof:pdf + + uuid:dab6724e-c618-4184-9b2e-7d44879e5e5f + xmp.did:008add62-65b7-3547-8416-6472cd533b2c + uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 + proof:pdf + + + + + saved + xmp.iid:a929a955-ac55-4b72-9c20-ebcb1b8c2358 + 2020-02-11T12:01:51-05:00 + Adobe Illustrator CC 22.0 (Macintosh) + / + + + + Basic RGB + Document + AIRobin + 1 + False + False + + 500.000000 + 500.000000 + Pixels + + + + + IBMPlexSans + IBM Plex Sans + Regular + Open Type + Version 3.1 + False + IBMPlexSans-Regular.ttf + + + + + + Cyan + Magenta + Yellow + Black + + + + + + Default Swatch Group + 0 + + + + White + RGB + PROCESS + 255 + 255 + 255 + + + Black + RGB + PROCESS + 0 + 0 + 0 + + + RGB Red + RGB + PROCESS + 255 + 0 + 0 + + + RGB Yellow + RGB + PROCESS + 255 + 255 + 0 + + + RGB Green + RGB + PROCESS + 0 + 255 + 0 + + + RGB Cyan + RGB + PROCESS + 0 + 255 + 255 + + + RGB Blue + RGB + PROCESS + 0 + 0 + 255 + + + RGB Magenta + RGB + PROCESS + 255 + 0 + 255 + + + R=193 G=39 B=45 + RGB + PROCESS + 193 + 39 + 45 + + + R=237 G=28 B=36 + RGB + PROCESS + 237 + 28 + 36 + + + R=241 G=90 B=36 + RGB + PROCESS + 241 + 90 + 36 + + + R=247 G=147 B=30 + RGB + PROCESS + 247 + 147 + 30 + + + R=251 G=176 B=59 + RGB + PROCESS + 251 + 176 + 59 + + + R=252 G=238 B=33 + RGB + PROCESS + 252 + 238 + 33 + + + R=217 G=224 B=33 + RGB + PROCESS + 217 + 224 + 33 + + + R=140 G=198 B=63 + RGB + PROCESS + 140 + 198 + 63 + + + R=57 G=181 B=74 + RGB + PROCESS + 57 + 181 + 74 + + + R=0 G=146 B=69 + RGB + PROCESS + 0 + 146 + 69 + + + R=0 G=104 B=55 + RGB + PROCESS + 0 + 104 + 55 + + + R=34 G=181 B=115 + RGB + PROCESS + 34 + 181 + 115 + + + R=0 G=169 B=157 + RGB + PROCESS + 0 + 169 + 157 + + + R=41 G=171 B=226 + RGB + PROCESS + 41 + 171 + 226 + + + R=0 G=113 B=188 + RGB + PROCESS + 0 + 113 + 188 + + + R=46 G=49 B=146 + RGB + PROCESS + 46 + 49 + 146 + + + R=27 G=20 B=100 + RGB + PROCESS + 27 + 20 + 100 + + + R=102 G=45 B=145 + RGB + PROCESS + 102 + 45 + 145 + + + R=147 G=39 B=143 + RGB + PROCESS + 147 + 39 + 143 + + + R=158 G=0 B=93 + RGB + PROCESS + 158 + 0 + 93 + + + R=212 G=20 B=90 + RGB + PROCESS + 212 + 20 + 90 + + + R=237 G=30 B=121 + RGB + PROCESS + 237 + 30 + 121 + + + R=199 G=178 B=153 + RGB + PROCESS + 199 + 178 + 153 + + + R=153 G=134 B=117 + RGB + PROCESS + 153 + 134 + 117 + + + R=115 G=99 B=87 + RGB + PROCESS + 115 + 99 + 87 + + + R=83 G=71 B=65 + RGB + PROCESS + 83 + 71 + 65 + + + R=198 G=156 B=109 + RGB + PROCESS + 198 + 156 + 109 + + + R=166 G=124 B=82 + RGB + PROCESS + 166 + 124 + 82 + + + R=140 G=98 B=57 + RGB + PROCESS + 140 + 98 + 57 + + + R=117 G=76 B=36 + RGB + PROCESS + 117 + 76 + 36 + + + R=96 G=56 B=19 + RGB + PROCESS + 96 + 56 + 19 + + + R=66 G=33 B=11 + RGB + PROCESS + 66 + 33 + 11 + + + + + + Cold + 1 + + + + C=56 M=0 Y=20 K=0 + RGB + PROCESS + 101 + 200 + 208 + + + C=51 M=43 Y=0 K=0 + RGB + PROCESS + 131 + 139 + 197 + + + C=26 M=41 Y=0 K=0 + RGB + PROCESS + 186 + 155 + 201 + + + + + + Grays + 1 + + + + R=0 G=0 B=0 + RGB + PROCESS + 0 + 0 + 0 + + + R=26 G=26 B=26 + RGB + PROCESS + 26 + 26 + 26 + + + R=51 G=51 B=51 + RGB + PROCESS + 51 + 51 + 51 + + + R=77 G=77 B=77 + RGB + PROCESS + 77 + 77 + 77 + + + R=102 G=102 B=102 + RGB + PROCESS + 102 + 102 + 102 + + + R=128 G=128 B=128 + RGB + PROCESS + 128 + 128 + 128 + + + R=153 G=153 B=153 + RGB + PROCESS + 153 + 153 + 153 + + + R=179 G=179 B=179 + RGB + PROCESS + 179 + 179 + 179 + + + R=204 G=204 B=204 + RGB + PROCESS + 204 + 204 + 204 + + + R=230 G=230 B=230 + RGB + PROCESS + 230 + 230 + 230 + + + R=242 G=242 B=242 + RGB + PROCESS + 242 + 242 + 242 + + + + + + + Adobe PDF library 15.00 + + + + + + + + + + + + + + + + + + + + + + + + + endstream endobj 3 0 obj <> endobj 32 0 obj <> endobj 33 0 obj <> endobj 34 0 obj <> endobj 35 0 obj <> endobj 36 0 obj <> endobj 48 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 49 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 50 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 51 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 52 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 53 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 54 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 55 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 66 0 obj <>stream +H‰LK +1D÷}Šº@’ηFq5ÈàÂu¥0æþ`>“ࢋΣªš¨k€Zãx + žÛˆ"ßÝñ!nŒ˜ Á`©g ÅL/™¾mguža¬‘~ÒñM…Z³t~‚˜Ò; aÊ…!‘„íŽ +ÿ‡Ê«šÊ2hOŒ–½i?aj¨»[Á“V:/ù£+ýY50> endstream endobj 30 0 obj <> endobj 67 0 obj [/View/Design] endobj 68 0 obj <>>> endobj 58 0 obj <> endobj 57 0 obj [/ICCBased 69 0 R] endobj 69 0 obj <>stream +H‰œ–yTSwÇoÉž•°Ãc [€°5la‘QIBHØADED„ª•2ÖmtFOE.®c­Ö}êÒõ0êè8´׎8GNg¦Óïï÷9÷wïïÝß½÷ó '¥ªµÕ0 Ö ÏJŒÅb¤  + 2y­.-;!à’ÆK°ZÜ ü‹ž^i½"LÊÀ0ðÿ‰-×é @8(”µrœ;q®ª7èLöœy¥•&†Qëñq¶4±jž½ç|æ9ÚÄ +V³)gB£0ñiœWו8#©8wÕ©•õ8_Å٥ʨQãüÜ«QÊj@é&»A)/ÇÙgº>'K‚óÈtÕ;\ú” Ó¥$ÕºF½ZUnÀÜå˜(4TŒ%)ë«”ƒ0C&¯”阤Z£“i˜¿óœ8¦Úbx‘ƒE¡ÁÁBÑ;…ú¯›¿P¦ÞÎӓ̹žAü om?çW= +€x¯Íú·¶Ò-Œ¯Àòæ[›Ëû0ñ¾¾øÎ}ø¦y)7ta¾¾õõõ>j¥ÜÇTÐ7úŸ¿@ï¼ÏÇtÜ›ò`qÊ2™±Ê€™ê&¯®ª6ê±ZL®Ä„?â_øóyxg)Ë”z¥ÈçL­UáíÖ*ÔuµSkÿSeØO4?׸¸c¯¯Ø°.òò· åÒR´ ßÞô-•’2ð5ßáÞüÜÏ ú÷Sá>Ó£V­š‹“då`r£¾n~ÏôY &à+`œ;ÂA4ˆÉ 䀰ÈA9Ð=¨- t°lÃ`;»Á~pŒƒÁ ðGp| ®[`Lƒ‡`<¯ "A ˆ YA+äùCb(ЇR¡,¨*T2B-Ð +¨ꇆ¡Ðnè÷ÐQètº}MA ï —0Óal»Á¾°ŽSàx ¬‚kà&¸^Á£ð>ø0|>_ƒ'á‡ð,ÂG!"F$H:Rˆ”!z¤éF‘Qd?r 9‹\A&‘GÈ ”ˆrQ ¢áhš‹ÊÑ´íE‡Ñ]èaô4zBgÐ×Á–àE#H ‹*B=¡‹0HØIøˆp†p0MxJ$ùD1„˜D, V›‰½Ä­ÄÄãÄKÄ»ÄY‰dEò"EÒI2’ÔEÚBÚGúŒt™4MzN¦‘Èþär!YKî ’÷?%_&ß#¿¢°(®”0J:EAi¤ôQÆ(Ç()Ó”WT6U@ æP+¨íÔ!ê~êêmêæD ¥eÒÔ´å´!ÚïhŸÓ¦h/èº']B/¢éëèÒÓ¿¢?a0nŒhF!ÃÀXÇØÍ8ÅøšñÜŒkæc&5S˜µ™˜6»lö˜Iaº2c˜K™MÌAæ!æEæ#…寒°d¬VÖë(ëk–Íe‹Øél »—½‡}Ž}ŸCâ¸qâ9 +N'çÎ)Î].ÂuæJ¸rî +î÷ wšGä xR^¯‡÷[ÞoÆœchžgÞ`>bþ‰ù$á»ñ¥ü*~ÿ ÿ:ÿ¥…EŒ…ÒbÅ~‹ËÏ,m,£-•–Ý–,¯Y¾´Â¬â­*­6X[ݱF­=­3­ë­·YŸ±~dó ·‘ÛtÛ´¹i ÛzÚfÙ6Û~`{ÁvÖÎÞ.ÑNg·Åî”Ý#{¾}´}…ý€ý§ö¸‘j‡‡ÏþŠ™c1X6„Æfm“Ž;'_9 œr:œ8Ýq¦:‹ËœœO:ϸ8¸¤¹´¸ìu¹éJq»–»nv=ëúÌMà–ï¶ÊmÜí¾ÀR 4 ö +n»3Ü£ÜkÜGݯz=Ä•[=¾ô„=ƒ<Ë=GTB(É/ÙSòƒ,]6*›-•–¾W:#—È7Ë*¢ŠÊe¿ò^YDYÙ}U„j£êAyTù`ù#µD=¬þ¶"©b{ųÊôÊ+¬Ê¯: !kJ4Gµm¥ötµ}uCõ%—®K7YV³©fFŸ¢ßY Õ.©=bàá?SŒîƕƩºÈº‘ºçõyõ‡Ø Ú† žkï5%4ý¦m–7Ÿlqlio™Z³lG+ÔZÚz²Í¹­³mzyâò]íÔöÊö?uøuôw|¿"űN»ÎåwW&®ÜÛe֥ﺱ*|ÕöÕèjõê‰5k¶¬yÝ­èþ¢Ç¯g°ç‡^yïkEk‡Öþ¸®lÝD_pß¶õÄõÚõ×7DmØÕÏîoê¿»1mãál {àûMśΠnßLÝlÜ<9”úO¤[þ˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ +¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ ÷„óû endstream endobj 7 0 obj <> endobj 16 0 obj <> endobj 17 0 obj <>stream +%!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 17.0 %%AI8_CreatorVersion: 24.0.0 %%For: (Anton McConville) () %%Title: (icons.ai) %%CreationDate: 2020-04-24 9:04 PM %%Canvassize: 16383 %%BoundingBox: -1 -1840 7630 1 %%HiResBoundingBox: -0.5 -1839.84768539164 7630 0.5 %%DocumentProcessColors: Cyan Magenta Yellow Black %AI5_FileFormat 13.0 %AI12_BuildNumber: 332 %AI3_ColorUsage: Color %AI7_ImageSettings: 0 %%RGBProcessColor: 0 0 0 ([Registration]) %AI3_Cropmarks: 2100 -1366.64045553483 2600 -866.640455534825 %AI3_TemplateBox: 250.5 -250.5 250.5 -250.5 %AI3_TileBox: 2062 -1472.64045553483 2638 -738.640455534827 %AI3_DocumentPreview: None %AI5_ArtSize: 14400 14400 %AI5_RulerUnits: 6 %AI9_ColorModel: 1 %AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 %AI5_TargetResolution: 800 %AI5_NumLayers: 1 %AI9_OpenToView: 909.922305077751 -166.730217212962 0.504580183405052 1784 1128 18 0 0 233 161 0 0 0 1 1 0 1 1 0 1 %AI5_OpenViewLayers: 7 %%PageOrigin:-150 -550 %AI7_GridSettings: 72 8 72 8 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142 %AI9_Flatten: 1 %AI12_CMSettings: 00.MS %%EndComments endstream endobj 18 0 obj <>stream +%%BoundingBox: -1 -1840 7630 1 %%HiResBoundingBox: -0.5 -1839.84768539164 7630 0.5 %AI7_Thumbnail: 128 32 8 %%BeginData: 4990 Hex Bytes %0000330000660000990000CC0033000033330033660033990033CC0033FF %0066000066330066660066990066CC0066FF009900009933009966009999 %0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 %00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 %3333663333993333CC3333FF3366003366333366663366993366CC3366FF %3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 %33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 %6600666600996600CC6600FF6633006633336633666633996633CC6633FF %6666006666336666666666996666CC6666FF669900669933669966669999 %6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 %66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF %9933009933339933669933999933CC9933FF996600996633996666996699 %9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 %99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF %CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 %CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 %CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF %CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC %FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 %FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 %FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 %000011111111220000002200000022222222440000004400000044444444 %550000005500000055555555770000007700000077777777880000008800 %000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB %DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF %00FF0000FFFFFF0000FF00FFFFFF00FFFFFF %524C45A8FFFFA8FFCAFFA8FD05FFA8FD0FFFA8FD14FFCBFD04FFCFFFCFFF %CAFD0DFFCAFD0FFFCAFFFFFFCAFD22FFA8AFA9AFA8AFA9FFA8FFFFA89BA1 %84FD05FFA8A87DA8FFFFFFA8A87DA8A87DFFFFCAB6CAA8A87EA8A8FD04FF %A87DA2B6CAFFFD04C9CAC2C9CFFFFFFFA8FD08FFC3C3FD07FFA8FD05FFC3 %BCBCCABCBDC4FFFFFFA8FFA8A8A8FFFFC4BCCBC3CAC3C4CAFFA8FFA8FFA8 %FFA8FD07FF8476FD05A07DFFFFFFA1B6B5A2AFFFFFA87EA8FFFF7DA8FFFF %7DFFFD05A8FFFFCBFFCAC4FFA8A8FD04FFA8FD05FFC9CFC9FFC9C9C9FFFF %FFA8A8A8FFA8FD05FFBCC3FD0CFFCACACACBFFCACACAFFFFA8FFFFFFA8FD %1AFF7DC1BAC1BAC1BAA0A8FFA8A1B6BC7DFFFFFF7DFFFF7D7EFF7DFFFFA8 %A8A884A87DA8FFFFAFFFB6BCCAA87DFFCACAA8A8A8FFC3FFCFCAC3CAFFC9 %9FC9CFFFFD06A8FD04FFCAC3A1CAFD06FFA8FD05FFC3C3BDC4C3C3A1FFFF %FFA8FFA8FFA8FFFFCAC3FFCAFFCAFFFFFFA8FFFFFFA8FD09FF84A8FD05FF %7EFFFFFF7DFFA8A8FFFFFFA8FFA87DA8FFA8A8FFA8FFC4CBA8FFCAFFA8A8 %A8BCB6CAA8FFFFCAC2A87DA8A1C3CAFFCAFD05FFCAFFFFFFA8FFA8FD06FF %CBCACBCAFD0BFFCBCAC4CACACAC3CAFFFFA8FFFFFFA8FFFFFFC3C3CACAC3 %CAC4FD05FFA8FD0AFF7DA9FD04FFA984A8FFFFFD04A8FFFFFFA8A8FFA8A8 %FFA8FFFFA8A8C3C3C3BDC4FFA8A8FFC4CAFD07FFA8FFFFCAFFFFCACACFCA %CACACFFD04FFA8A8A8FD06FFC3C3FD07FFA8FD05FFC3C3C3CAC3C3C3FFFF %FFA8FFA8FFA8FFFFFFCAFD15FFA884A87EA8848484FD04FF7D7DFD07FFA8 %FD05FFA8A8A8CAC3FFFFFFA8A8A8AFA8FFBDCAFD04FFA8A8A8C3CAFFC9C9 %C2FD04C9FFFFFFA8FFA8FD07FFC3C4FD08FFA8FFFFFFFD07CAC4FD04FFA8 %FFFFFFA8FFC4C3FD04CAC4FFFFFFA8FFFFFFA8FD08FFA8FFA8FFA8FFA8FF %A8FFFFFF7DA8FD0EFFA8AFA8C4FD04FFA8A9A8A8A8C4CAFD05FFA8CAC3FF %FFCFC9CAC9CFC9CFFD0DFFC4C3FD07FFA8FD05FFC3CAC4CAC3CAC3FFA8FF %A8FFA8FFA8FFFFCAC3FFFD05CAFFA8FFA8FFA8FFA8FD08FFA8FFA8FFA8FF %A8FDFCFFFDFCFFFDFCFFFD87FFC4BCCAFD06FFA8FFA8FD05FFCAFFCAFFCA %FFFFFFA8FFFFFFA8FD05FF7E7E7EFD05FFCACACAFD06FFA87DA8A8FD05FF %CACAFD05FFAF7DFFA9FFA9FFFFFFCAC4CAFD06FFCFC9C9CAFFCAFD05FFCA %C3CAFD07FFA8FD05FFCAC4C3FD0BFFCABCCABCFD0CFFCBB6BCB6BCB6BCCA %FFFFFFA8FFA8FFA8FFFFA859A8A88459A9FFFFCAC3C3C3CAFD04FFA82F84 %7D59A8FD05FFC2CFFD05FF8484AFA8A8FFFFFFCABCC3BCCAFD04FFC9CAC9 %CFC9C9FD04FFCACABDC3CAFD05FFA8FFA8FFFFFFC3B6B0B0B0CAFD07FFCA %C3B6BCC3B6BCCAFFFFA8A8A8FFA8A8A8FFC3B6BCBDBCBCB0C4FFFFA8FFA8 %FFA8A8A8FF84FD0559A8FFFFC4CAFFCAC3C3FFFFFFA87E59847DFD04FFCF %C2CAC2C9FD04FF84A8A8A87DFFFFFFC4BCBCBDBCCAFFFFFFC9C2C8C3C9C9 %FFFFFFBCBCBCC3BDBDFFFFFFA8A8FFA8A8A8FFCAB0FCB5B0B0B0FD07FFCA %B5CACAC4C4CACAFD05FFA8FD04FFCAC3C4BCCAFFC4C3FFFFFFA8FFFFFFA8 %FFFFFF7DA884847EFFFFFFC3BDC3C4BCC3FD04FF7E847EA8FD04FFCACAFF %CAC9FD04FFAF59847DAFFFFFFFC3C3FFCBC4BDFFFFFFC9C9C9C8C2FFFFFF %BDCAC3C3C3C4CAFD05FFA8FD04FFC3B0B5B0B5B0B0C3FD06FFCABCFFFFC3 %BC9ABDFFFFA8FFFFFFA8FFA8FFC3C3C3BD9AFFC3C3FFFFA8FFA8FFFFFFA8 %FFA8847DA87D84A8FFFFFFC3C3C4C3CAFFFFFF7E59535953AFFD04FFC2C2 %C3FD06FF7EA884A8FFFFFFCAC3C4CABDCAFFFFFFC9C3C9C2C2CAFFFFBDCA %CABCBDC3FFFFFFA8FFA8A8A8FFFFFFBDB0B0B08DB0FCC4FD07FFB6CACAC4 %BDC4C3FD0AFFC4BDCAC3CAFFC3C3FD07FFA8FFFFFF59847D7E59FD0CFFAF %84A884A8A8FFFFFFCACFC9CFCAFD05FFA8FD07FFCACAC3FD07FFCFFD05FF %C3C4FFFFBCCAFD0CFFB0B0B0B6B0B6CAFD07FFC4B6BDBCB6B6BCFFFFA8FF %A8FFA8FFA8FFCABCBCBDBCBDBCCAFFFFA8FFA8FFA8A8FFFF595953595359 %7DFFFFC3B6BDBCBDBCFD04FFA8597DA8FD05FFC9C2C9FD04FFA8597D5959 %59FFFFFFB6BDBCC3BDBDCAFFFFFFC9C2C2FD05FFBCBDBCC3FD04FFA8FFA8 %A8A8FD04FFC4B0B0FCB5C3FD0CFFCACBCAFD1DFFA8AFA8FFA8FFFFFFCACA %CAFFCAFD05FFA9FFAFFD07FFCFFD05FFAFFFA8FFA8FD05FFCAFFCAFFCBFD %05FFCAFD07FFCAFD11FFC3C3CAFD84FFCAFD7EFFC3C3BCCAFD7BFFBDBDBC %B6B0CAFD79FFC3C3BDC3B6B6B6FD79FFC49BC3BDB693B6FD79FFCAC4C3C3 %B6B6B6FD7AFFC3C4BDB6B0C4FD7BFFC4C4BCCAFD7DFFCAFFFFFF %%EndData endstream endobj 19 0 obj <>stream +%AI12_CompressedDataxœì½ûŽeÉqÞûõûü!€4Ìêµòž<†ªê*y Q$x±å#ƒbwͰ­î®q_(ÑOâ÷EæÚk×®‡")ɧ$Îì•뚗ȸ|ß_ý??ûÅ®^?þúáGñr9\üÕ_Ý|x¸ÿôøáÇ=|õöíçŸ>pè?ÿáa­—‹tõUûzœøß>||óøþLJ.5Þqõ®Þz|øÉ«›Ç÷¿}óöíÃ?ø¡5þòͧ·ÖüæÕãû—÷o~8i÷xyÿɚ–-éG!ú—tøÙO8åþýoï?~|ó섵ÄíØõãç÷¯ß¼ÿöúñŸ~|øÑjÿ×Òr¨%.‡ÕšÿË›Ÿ?|<=g¹ÌœûeKµ´ûZ’_aMvÍËÇWŸß=¼ÿô³¯>~¼y|ûøáã7¿»·O¹ÿÖZîÿãáíÛÇ<\¿½õ»Kîß²S¿ºþÉÏÞ>üÓ/îßÜ5þíÃÃë‡×ÏrõUþúîÍÛë´w÷Ÿk¤ ¯¾ZÃ×ן߼}ý·ŸßýúÁº3ÆÀáøµ^éWí]ìµøoׯ¿zgG~ñðé“}«=‚aøù__ï?Ãêïÿó‡oßhH­ËÿçÇm?<~÷îþÃ?صa]ë¥XÊeIKÊ9ÇÔâ!·“£!ûÕ¿|x÷Ý[<õrÈêfÿ×þÇ8×>ÖÏ[J°ç¤ž<'¶ÃjlûçT¿ö8<¿}óð?>üíãûïëŸ~á³#%{Qý¯·üüóÛ‡¿zÿ†®/êÞ‰?y|ýðöÇL•qýÝÛ{õþÖãÿú ¿¼ÿðíÃ'›Ro?Ò„oó 6Hsÿ»fÊêøéwïùøßôŽ}é—=„¸ä¥Öš™§Ö‰5.a­a ÝzÁ:Ç>µ-65“–ƒ­³–ëÚamz“£Müu{»õø¿þ<’Î7±.û«ŸÙ¤øé‡7ß¾yÿã­Ù†/çÅçË_xóú8]j84ÿ=àÒ¾ŒÖµ‡¥‡þ}týSËšÛšÂ÷9â½eÿéÓÃûÑ{6õo~²›ÊËåO~aßrûþõÍã;FŸ…umsø½Mï·ßzÛößj±Ë?wñ÷±¿øßŸ?=|´{½}8ôòâÛ÷¿}8XǾ¸zýæáƒµ||qõÁš_ܼzxm‚êþÅíý«ÏŸ^üí'[/~:O»xñ«íŠ{?å^w{qÿêÍ›˜ßØ¢~q<ǯ¿×Í_Í›?èÊ‹~éÃîÒ‡íÒ7~û7~ΛÝ9o¶sÞëö/ýÜG?÷qwîãvÊg?õ³ŸúùxêÅ‹ÏÛ¹¯ï¿ýöáË×ö‚/^Y¿øøéáÃ[¾âãÃ+¦þ‹_6þéÅw÷èï~ó®xwÿþõ¯ßZ/}x±»½~ñêñ»ßÙôûͧ&n^? `^ø;l»|ÿøéõÃ7/®n_üôãÛû¿¹Ø}g;Ï»7ï?OšÿþÝÃûï>?=|qvÞü÷ã‡×ß<Ø­Þ¼à¿ßÝ|õù-?æ ÷v|<ý~øÈG¾~üÇ÷/þéÕÛûwúO›]o^Ý¿µ ¶«¾1)òæýùk|û™ ïÝ£ítß|:þòž°ÝãÍw|ùÇïî_=¼¸òÁ¸“müëöÅ#säýk{¥ïô/MdëbÝtþð{ê×ñ¸|ýæ·o˜ [§m}þ?¶ÿúæÃ½èíçzS­”í½õK·»xñÍûà1=ìÉ/¾³ç<¾f‚h¬ëì×÷¶Ô;õÓo?´)rñâj7Eowÿ}å3ãv{¹[üøWûéúÕvÒW~ÒOý¤Ÿîî7¿û§~ƯüŒ_íoó+ozÍH™rñbwµÄ»ûW˜ï¶ßè´ûWZ¾¤}E_¼øÍç÷ßÞøüîíýçO¶mKú‡¯îíº‹_ÞJ6çÿúõ/?ÚÆuܯâ×S·ï_=¢üøðõN)8QþþžéÅþ4ß +~ùÿù MÎÛ~ùáóÃ/÷ÝÃÅßÛ–1–²m)ñ…uÉÃÿþ|ÿÖ~”oÞcKâÓïv nÐ &'M'³>æÇÅÚVÖ›­÷Ooîß¾~óÍ7/ì{ÞIƒxñ݇Çן_™4xcwü„\³Û·þâ§ï¾½?\¬=¿°ÅÏÚ9¬½¾¸ÿÎ.ø§ñ½½xùðÖ”ª°¦1am¡ýŸ‡÷ß>˜>¹pò[›Â_ÿâwï~ýøöëþï“/ÏÞ•_[×þÌÆ…]ãâo¿»Šú³·Ÿ­é¯?<~þî«÷ß<^üÀuÚŸ±Ý|xÿÓ÷ö¿9\øüñ7‡_>>¾5õä„Ñäw¡ñÃ'¿FǹÂØï~øïæYÛ5Ï=ÇÿoyÆìf`Œ{tÚY·=Î/þñþÓ«ßüÍ›_üýOó9õæã»íÞû#?cοzûð‹ßÙžöî{Üí•^ì¹Þ9mÚzhþúç_㦓}x8Þ@?ç¿ÿÕ7÷¶ËI5xóê¹×|¦}{Ô¾íxáÿfº‰mÇÿçáõá§¿þ_öÃn%«È¤¡)h￵ßÛ9ßcšýêÎo¾0¿|®é÷?èåÃ7fú팎޾ÿíÃÛÇïv#àç}{ÿþþÓ—ý½å½‰Çã 9ñáÓßýswdÝÚñÚ&Ô/>¿ùôp¿ÇwßaY~ñ›ûï´L晿ø^ëÛÄÇ[So>nwôŸÇ·ãýØv¿Ì·—ó?úÑ?³ôÃõû]ó_³ÙÞýãîß~¶…ò¿ûáÅñ?±°ׯÍd0[¬ØV¹ÄCËš/;¶†RÚ[_R)¥ëXˆ=¬¹´jÊ«huÉ­…˜COëÚìH×Õ’¼å"þêëëÏ=Evד§èØéSgO9œ=žd9”ƒÙ{Xòö@3Ÿ¾þ×{àõÇ?÷×­þ°­oÛg_výr›‰sF=?ÉþúñíëÃËÏ?Ù,;þ·Ý$ù4ûOø¹Ìþ÷?þ‰öB²¿lÅþªþšýõñwµý]Ûßý½´¿[þ.Â]¸‹Ëüÿù¿qÕÿ¯1lûÒø_ÿËúÿñ¿úÏâÿ™W¾Õ½¸ 5¶xoìï6Þ¥ÕþbJÉz.µÔÓUºN7é6Ýå%¯v'|9%·ÜóU¾±¿—ùö™Ñ†§–^®ÊuyYnË]]ª gM5×Z[íõª^×—õ¶-mµÎˆ-·Òjëíª]·›vÛî:.ˆØóEϽöÞ¯úui¯¼ÚK/è?ëþ‚ÿ]è_ñä/é/ë¯lö‹½óÒõwe×ú»±¿—öwëËÝr§GØ?êçÛlÖu·Ö±ÛUvòË;û»µ?ÿçÆþ®íïÊþºý5ýY_½´ž|i]ü2ñwñ2ÚSeµ?=ûæÎþní{ø?×öweÝþ¬[oªþŠý1^6–7k&ÝÅÍjö×w×wzeAÛªƒ·öV7×××W×ýº]×ër¯Óu´I»^/WwW·öÆ7W×WWWýª]Õ«r•¯ÒU´‰½^-ý®ß^ØçÜØ(öÞlD‹k²}íK»³!ioxm ·fS¡Ø”H61‚M¥ÞÕ[ë‚›4W6yšM¢Ró…ͧhËi­Ká•—)ŒÿæMWãïzû»Ùý½·gwëݘ‹ºÃDL)Ù¦v(k¾³á¼É×6ó›­€dk!ä%ÝÙ_Û*i¶b²­›Öxg~¯c·•U´6mõÚÒþÎäöúàÒúo9ÊÄlé·ýΦêjCmH² Mµ!ê6T×6d/mèîlÌdƒZlp› ò• ö úíõÍ‹Õ&B´ ‘ÕOKøÂß—ÖÝzöÞÛÈý ?ÝWsÜ-KUKôb¬S_¡¶àô|$t\Mˆ™5]m_ç›®´æ®nÆß•fr·®b.§1—ƒÍå[ûc*ÓÜ4‘™Ê6‘Ç4¾Ö.6ƒ£ÍÞÕfïK›¹]³6Ù„µéj‹ùÚÄcû³ÌëÑïu_}çÿÜŽ?I£;‰’»kýÙÒ¾ëú³Ï»³o¹³·¿³pgóýÎæ÷»ËÅ„ÞíÝ…Ý…i7·6ynmzÑc·íÖñ­í·>‡líFí ì +Ùº¦ÔªÝÁ÷vÄÕK®ªwÚ)|¯°õ5ö‹f==÷Œ—cÛXlÕ³u$–b’¦ÝãÆíÖgï?ÿÏ—gí3{ÇqÿxúwºDâq’£+†u5åÆd—m}k¦¥ØÆ™ÖVìMƒIè(ËåbêNH&à81 ËÔÔ—µÛìnÉIµ#ih:®ßt©½C¿éÝZMáÙ”ªÕ§Jk\CζLƸ,ÜËF±ÔØM·°ë—:ã§R‹gÖwÝ?¡•K[¸íø]Ö§è;–žSè6³JYl‚ѦҬKév÷%çê=‡d«œ›L]ªÏ>±ì:Ò^›«vÊ©iaÇ7È™;~æ¿åKÐ \hJš]kmÿoãî\l‚gÛ§S´[ÇR^vÝõk¿Ì&wšþŸô¦ˆ>ÿ«÷ïïß=¼>|;™©cšýsG¦¤ÉŽ[évüÃ’æbWÒ-n¥7¬Òþ“´þ:´}4ü›ï#€ÎÅÑþm[•²³ Vº½âµHÉŒR/©•7R%»TÈ"å1Jg\¤+¾ô-`/Ø]´…ûQ¼¯¿ÛŒ¿Ñ¶“m&8R6kÌLƒfÿÒ`¦ÖfÃg³ë Úí6lO…–DÖ6rë»$‚ÞÕéø]˜ÑótÀ1„¸ÆÖá8¸®ƒÛ|§±œ£™}¤cP‡;átPÖm`¥4îUÆ8TFÛ‹Ö¤72¸>¼Çžªãqˆç ;ÊÁš¡F™ô±¾»Ð`k¸ÿ%c4WÔ~79YUÛ­'#tÜTÜ]´¡¹ºž¡.l„òÙ™¼7{(h|ÎGèån„‚ÜG>B¿wŒæ(íljQº~Vµãt1a}2R·»‘ZdÞÏéã勲žŒÖÍ\˜ciþáð÷øç_ñ†ÏÙ {§UÞfÚÉ\»Ø&Ûr¦ºÌ©fólHfÀ×?sëè#t™ýò"ÞÍLb!ªï†c°HBË%h3&Ú\Áˆ7ðNž@ü€Ý¦@¼¦^àø³aÅé7,Ó[٢ײ@›”,µ…d‘òûôŸ—G èâyHn²+9ȪcßÛéuñ}¼^Ãéuõ}Ü^ßÏïµw{ÙZ{ik_‚™pÖÉø¨’{©Êr!GÕK¹ª®ä¬ª62y8¬Öá²zi#‡ÛªÛ(ÖẊ8¯Ò"÷ÕK9°®pa]˜T)ò&Ç¿ŒÑ_Æè/cô'£íTº2 ÜjŒK‘‡Æ¯Ù¶›³)bÔ`’ßþ;šÕkÚ¢À5¯7ñÆ\†íÿŸ· þÌÏqoÁl}Ö.úRûeçäçìœüC=áûÛ9/•ÿroå_¼~¹ýÝnwÄð{ »¿„³þ-ÂY'èéÜÚÏ®&íjα£6:þ.6HÝþ﨤¾üKÔìßÔ mx›ÏMŒ4ê²ýÕ'öF»Ù²Ÿ1ÛœùKpîßpNpü›~kïlØ‹ãµ-ã;“¿Ñ¶ˆjåy³Ü³ ËMµÉte›ÁÍͲۗËËÕÌÊtak£˜°ê&®Mk{iÚÛð\ìM<‰]üû]Ø´[ÿ`¿=5ò/žZùÏù™ +™ +™ +™ +û©°3ðkê5¬©È)Y„q®Ö“Éz#ãqN:²X[±ý³õLþ A”«ux^cY'4óyþÏö„?—þ‡äÖ+XŒ4|3èÿë›ß>˜!¯R%%3Û ÷Ë"- Ø8T{œí#—Ø]Ë͇°öK›£¡§T–ds—׿ÒÿþÝ?úû×gýçì¿û~þWûÏÿeÿÑžsøÉáïÿçrxíWþÜþ5ßáéï¬ñ÷¾Çáož;ëì{þf÷ ¶ñÙû¿·ÿqõáÓË7ªÂrÿáw‡óØÃ‹ëÇÇ·‡\}5ú÷k/sðõõý«°1P­¯®$÷ÿhü¿öÿOûJÿù>ëv/uä§úïåÒŒšÖCÄkTÞcyh[JÔd"¸·\ÚúI(µEûæ¹³yï¡eF§'1”¿»ç 1_.1¯]pk;ZÓe7AáÝNc&Ä×Õ~›¤8Ð`‚FW™]Th@®¨Aýf !/ÕB<¼âv©]®Í–˜I«NcŽ`·ò—0a…©w¨í8µ5Ø0ä`ëÍ^Ídyf_n¸[Y/MÚ Z‘ŠÖ¶^Ú˜Ú;¤rWÖªiæ­ÙËu{‡íåê%öra©¹Z¼Ôàêå¬E£éÑMäkÈÞ öEA aµ«Ô`’Á~Çh_s¼ SÐîB³5Äõg¯&Txvo+ 9VohÑ´ð’×ÚCð†¶#l=–Úõhx[—õÒÆ{\øDòY¥ölº„`"ß>eY=ب7ï®\.{Ž —d3‹iëêãlýhßÛëe0Ãzi­œ%\Ú¾`‘m v±¿Ø3'%›•œ¤`'Dei1ûè-;Qjg,,R‘ +=bfI ÕÏ`·´3šYÓÛƒ2oek¬Õº‰†J=3[êÕ¦´_n‘ü ª¶Eôf¶’Æ]Ã¥½öB^JÃ=Û»u޽‚uÖ›M³¢yi[­6ÉÇ •dC´³%¸„¼u}áËs7YbU]d³ÀžÏ1ºœI1¾«=¨/©r)…åÖØI†¯qÌC;Ë„×b÷_È·³šmOe! 4Ò¸ì ¬e›Ktܺ\®1U¶0SXOëeQP´›L¬]gäµ!눆çñ¤Õ;ÌÎ2$ûY±ò$–GÓ}4ª¶ÄÌtõû˜É9#)sGgØ£9ÃD…ΰwÐöì¸=ɺHgÙ‡ù“ˆŠu›Â&³‚î“Iêâ]ì†vÆz¹,L“ +…¡á›ºÉ3¾Iåõ8ÃölaÛïxR¸´§3:È8?k ci0ôÛ¤z#LUL¦ùxše®o´ûÚÖ¯ûâp×}«½ß‚ *JóԤŖmMçjK0°¡ädÑ4º¦ÙD[K×]½ÉW0½–õ²¥• åËÔ¤OàÑ‹®bùÙgþâ­<Ø0ÚU™€ºé|âb"›ÑjL<ë²Ì‡±²mæøš1ykå_ÂY-é,Šøü2‘ÇYÑÖˆî“ýpÓd Q«ê°îf.BœQè( +9äu»½Mg[ùÁ´Îà/A¿Ûq¶ŽÛ‹79z‰lꓟÚ¢3€­qFŽ]o`/0¢µË@ÇdÀ1±û2Ó{Ú23™h÷±¨‹uq0µ:6­Ðº,ˆŽlËÈ.i¶ú3ï†Hô›uc;,ŸÉÞXüUŸÛÓ¥) +ÖïKwáJ]Ò^a!¸>·TMJÛíLRú"£Ñv‹J£­=ËÞµêª`’Œ†Åæw·É!dÇÚ®WŽ›‚Ž73 \m¦Òhìo`[¿ÞÀVSg—l:Ì"ä0Þ&?žÆ@uÛ™Ù¢l—^RÔEfaØ8t›ê­ØˆõìÁ¾Û4t›(ôLÓH¶Y—ƒN\}{ 6Û5X&´ðj6íf\FD­IK»1;±Óeâè¯u¼´­–ZY¤Ì|›ÅݶPS +Ò»¢. †)¦R1q³Lþ›¼ŽÛÛIÒhê*ÖçѯBu´Û? +B@ߣç˜Y¸ÝnÝÝm©$#W´ºhQÿdTiõíîI×ÄVÕ@ì1j`4üfÁvµÈuÓ‘éTÛ—˜L&æXúÙ¶[Žt¨rºQ0Ç£tñCµëm*]Ë]`Å–hºŠ½Yµ[ÙnM·ßf0t{5déÛê1;ÈæÔª¶PS«5îüÖ+š½arÚL‚#û CÄ:„|›^SM6ÐXlý¨Ñ&««Eö.Ü¥®ãw”)ÐÛçíxG/žÛ{G‹³ííá`¿Mƒ´G×eŶB–‡ÍMÓWÕ?}ÅÆ–Uh‡‹z&¥}[¶ÍF­B{ÁUf‡i ˜¨+¹˜«ñnÁnbýšªíj®XW_Àcl©1‰Î¦c <¶ib Dì?­ó“-JÛBL©·4ûìCdºÆo¶˜4WØþí·iV6ÌJ5UW“Ë6:5,|®5˜™§“ GK %EodKRŠWá‰ÅŸm#â c0Ø:ÐÐ[·—‚êϲŽ2É즨—hô^1©ˆÑbWÿv›Úý:{—˜œKÞ_6 š>Åæµ­(5²,ìévW,Ý”­¥ÐËýc³É/Ó3ÇLTS]Æ6†‰jóÆZd¾V´‹8´:;LDŒãMÚΗì]nö ï—SËG¹´GZGÙšµA5-ÜÍbk4áÃ,L…" +Ö˜Ñìx@ŠØOþ­ß¶QÔmžeÝ$õ°Ù«ICMiÓMb©C½_VùíˆNÓà† ÝèýL(k°¼ŽÛÙ–ÕÐzÌúf7ZÊ`ÓUq1™š©ò´2f—1h.Ë^f¥Y{L[ëáJ‘ÖYL²É~WÙÈ$E¡f78³!Ûs²Ù­ö:Öpù¢uì:t*ÉL=ì·»XeíÈx² Fi@Ûá%Íò²ÿ@ÛfÆÊÕã:ߺøŠ³ÆØ£—ä_´`@òEèž»ã&0‡LØÝkíëfšH ³¶¬-@Æ•_dz¬Ü &sW"{…®`¶S`u;Ó‡†¬4Ò´[Û¶ø‚͉H¯`Ñ¡²‡Í´BoMTÏoL¼¼Ùì6œ ›…õ°¡eÛÚY‰Í² DxˆÖ¡c‘mÎ nmSmPmVÌTÿÖÈåLêbbOÖOUWjOXƒÙ{:%M .+sÇ,RSèÛÝL@Ë EQR#;­ÛPÓÈ­Á6Õì·cRq…-t¤ÕyÏÙ'uæi·!7ù‰˜  ½k´›@å`¿ÇFñ<ÇV¨½oÛ)€øºj‘ +g6nð«²e‹,+kÀù¢Âë4d xkèez‡hôž0©ÆÐg4žÓJÒÑ ãÎlrEB †©1ïÇò + Þöß3¬«l5Ú"Zp>lñâÔsA‹©Xä¥ntBa=Ü ɪÒ!+ôê!Ë3F׸^ö¶.lpojKì¹8²‡`Ü%“LfeÛ™Š¶˜Y0¬£nSô=Â$s‘7Êô%¶°}c’Û6„0t“.º²Í±J‡Ùo`Éœ[y'2ÄpiÒЛ\{üºÝdiô‹=ß¾Qjê EÞ3›^›Ýïf&¡îÆXï0ßÏÖ±e3}ØìŠû{’Tw;Ž¥mÚUî6‰0Emáù¸$3}m•"{œšMkêN´ÝÖ•ël5v7ÿÒN_Úœ&&1HµêpZd;s6èÝLÒšŽf2¦ßv•©Û íªR¤ÌzW»MsKZëÀ¶3ëQ{¹Éˆ—Û”YŒtÐP›G;Ès4à*(²M€<”»-ÅVµiK‘§X—Äi"ÐHuvÛ¤éºêªæ5™z-̧„Ñç EÆL? +4˜ì¬Ûí:ÂÊ{•5úô¤Ás5˜!vи ·òœªÂ\Öyh˜¬:ßnU*dßoó8¹_+è£%êÙ—ÎJÝÞôWV_bê>šfaš¸µ»˜Ùb¦%s õÅŸ]+zK7qdS-É£Û`'ÀÇm«¬Sè¤ö¶m#µF½TÁ‹ëº²da`Y˜´±ã&´¤·†êð}×Sµ—cš¯KUê¹ ['5°GÐ`JeñÛÛ¤Á¤ž7´9Œ¶Ëjk³] S3ˆu“‰Yp$ÚÄ\‘´«ÛgÇm—©j>mkïmoృŠT0Á¸HØdÞyU[œ‡}•í® 2ç%ãSìë»M÷~‡g‚ Â8ö§§„ðטÙ<Þ (ÞŠðC䜯KÛ£+ʱÏ.SóY`vK¦3ÚañÂNcÓΖ„­Ç„Ü?Öм𠱭2L_—mø~ms0™N£™óɽ^]a)ªF5äì¹d› ݇:buÍ»Å*ùÜ)ÆðË ‹3T'Û€Œ†d¢Ÿ€m÷I|Ü•ÖÕm溶Â&cº²Ì&ÓÀmèøÓ²Qþ&W³‡07kÂôB"&O|%íQšœ¦Ü4®ZÆB2í™&Aƒ6è²Çd•\ë&lFUÝmº]$Ȇ`rImö]÷Sš(·…DƒlZü]òqÓÝLllw[Ø­1QãŒF4S5–¿5à³3Æ=\¨ ‘(SYiGÑcsÀ䑿Ž›b «ô­ž]ÿ/m9É BQØ'&R0?lInî f® *fnF3=„:4TOŒ´ ¤1@ömÚž!ÛžJf¦¾nlç Õ…GEÂ"(¤®°…¢[&7fE…¹X¦Bö@!2SŒ™3&…KÔ.ÖŽÉý„ßÍ>4ê"MŽwPêÖ!‰ÁænXìv7RÀÆÞÒ·›%âqÂ$·£´¤xIÖ@A[í²›Š"nqÑÌtö7C®û–îútˆˆvìfœ/Ö{¼B‘ea²®J‰©Š\Ç“²» ÿ§^j®0™>¹4@m$õ±Þ33|S/|¹€/æìzÉèè*yŠ Ôªß?i(ú-ïÕ¼‹\v²½M¦ƒY'k ãð +MÏv•-ÎŒ3l•®jØÖO“]H©\‡Üøñ0ÙÄŽ…²¸{bÁäµÝRº©vm8«Ìm¢),m,üa‰`¬Î@˜eû==@Áºèx®Ó~.Cöí·íÖ29ýšqŒHqöàšYäÄÐl‚Ð¥},/ìÓ®·±i'ÂÙ¥•oz›uý;µ‘þn¢&Ê­N«(¤2¼/ãÔŠ´¢×S¸¶IÏů ¾v¿ò+ãÁ†mÆl:£œÒ!ÉÛÏåhKÈWV‘©V®F­þªMÔF6"BÙ$ä!´“ +ꆤ/œµ}ªƒ^±ê6¦9ë üu†i.Üìª3úØÛav3¤ùZÙ–±=É^£qÑ…çŸXvFŽXzáæ/lsÏÏKÑ„*‹¦Ù»ëôzòÆ8³4²LFWlTÐËhM`}Û¢R¡5”:×Ó3†1™[mPqû¡ŠúvâáLÛ«†ã¢²ªÛ€æIR„å³Id°U Ó8rÑy¢²L;³n6Q`?­DmË«‰Þ ¨hÂѰ_`¨ÙY$UŽž Þ³¨Äœac©3¨o§ˆM38x¤8aå¾  qñ[(ôÉ-Úp†(‘×1W½ë ›/Û- +—ÎDèLR×981®¹œ8—:g¬e¨“åø!` øŠPFk”¯Ï F| \Y‹&çåBó.3†.C0™,7õÓ–F‘潺µlºBn3D†>†qeB® ›3Þ,X[5&çL”²ºâµ +W|El¦8mž€ ng‹¯ÑŽ@wƒêРƢ²¦ÜA¦öIIѾ+#|ªz«ù7­¡{ÈÙb1±<ÐP:MI ¶f–‚»ØPÛI¶ktÞ¯½X"p‰/ÈÎ0«~•Gu%ª‘?A𩆦"q0ºgñÑOÐáfç¬äg¹ƒû¡çIzÉøµ•E + +@±¸ð‹HE8&ÅL€nj—ÞÐYY/Çmþ~rúÙ2 +9Ã6dÝ'ÚÈú¬—t¸gt¬ùwÞ]8×¢‰… ‚Í8Ç÷3‡­û:ìöq StâuQ¨Îìÿ ©ÖʽiÄË”Wë”Ö¨jáŽ?pϬGpÛ¹´Î¾–Í1aAàǦ.t%n…ÒhŠ” üˆÉDv}¢S9¡*é¬RtUÆÓg UZ‡Â“&ÇìrTA?CýBs”8%’Ÿ,%¶íÌMÎêã$ëm´Fæ½n‚^¯Ü2Ö©â“ׯ…ТÞPñ±–éH!ùigàýšq*_/8´ËÅKÌr¡dõSÖa‰}³£«¢¡C!L¸o…¼Hþ´jVÔ¡«.?MvÚÖãú2%;f¢€iKí`…Ȉ4H´&[„˜MVäY;[¶öÄBaÜI‘ŽÀõêa ª€›¶îª®¸È„ƒ[Öi:£$†½cààU^ñÔT7z•QÑúÄ6ÙY¡7ÝÇt=ÔK"&’,HÎX|§¡rŽŒ8OãAkqã­“ mg 4d;‡,C«L@?´Åõ/ÄÞ­F7°|»Èî‹´AR<ǵ›Ùñ*äHõ³ê8°=²†d+\ àúæÝäXM ð»?Êvv»J‘]E^ øÙt»Þéõ ì:Žp ÛËš¦Yg$|?]d.c­ÛíÛÉ ÞHM´[w¬ÖΖ°Ö1ÃlýùKánÍ +OWL^íÁ,L» +p…-‚L¨eÙ_¤5Nù¹b«âo‰×&¸‹¤Ñ™ô|W×aáí0)âñf²¯¬‘¡¤-×I7¶ã¶> Ûûí«fE‡:UÓîQ…€LuFU‡iÉjÁW‹ºPÀi(Hˆ½¿°¨|BãF¨ƒrçØ¼6´7á¸6Á¨Ä‡@5á½![²ýuÝîAæ›Îekè„RƒŸ+‹Æìí°L]½PFe5A’x¨°_ó…8‹È£mú6ßÉÐç)hÁ:VÝÎCŠ¿,êîXõ¦ºÀEÓvm_±Æ àTpf2o". @òCì¸Í~e¦Ï +™:#-4˜°ÅêIÕfU]¡õŽ~Jl±wLJq+šã¸€ºM'±Û¢»eâ4@dW ‘f¾2›m\(J7#C¥`óî%Pmoˆ…§ä×Ã(³W×´b1YuŽdkE· ÆÒ,¸.ØO@±<¬cÚLUà{ÅMýi{ûF‡&"‹=3=ôR6£‡+Ôqžˆ‘ݶ˜̘ì6F¸ÝØÖC´Ÿ+!I½w P‰šÄŽe]œ:])é>Ò +#Ð+9I +ȸ +U¤3ˆ8p†¬]¤£IÖ%VÄIÄÆ9 ñÍYs9¥›ydo"Ä3»ˆj“êÖiþ&H¥}Q\Æ»&ÿ"haˆYâ$êÛªÐ&ݛܛ¹òEiØ'¦[›LA†Æ‡x@8bàúîÍãÓnjg—3 +™  =ìR5nU·MìýXGkšnë6ÜÖ©ÊͲhV¨îl§Ú˜‰1§RÀÌTZ‰–Kƒµ[pV¨¬çZ7&öƒ&vÀ€W3d*<æî‹Œ bpÿˆ/[¨q[bDЉCÚY«&-g´´³0¢u÷#D[R²ƒBÜgYüŒŠ•jg»¥3ê\uÁOÊ//V”¤gÐGJ +6ƒC |^E#‰~Æsž®Í†j"»½ÖåŽqÄ‚\a,K3?mÖGbC¦Ù8&2. +õS4+QFÉ6"RÃÙpKìÄR1††2±Ó—Á°I Õbq8kðýFE`å +£ÁÕ;LÂä lóv‹ !6£h[‡²å9ï¶‚am¤ÙÉ•¼/ô7S4h]g“á4lèŠfúQa)®¢gm„`HSôM¶tEÐ v~%ìz3™¶Uï0I!’ÁlÁuZð~¦ÉQÃâ ¦iÒOU@¹Ê7LJbŸaTÔ:Ÿ¢0JjDù´ÆF6<1"Éš"˜,Ë*ˆ2k#¹¡a_4 +I^³ö‘Ê–*A )q«"xŽ ÞÌM–9€@.x­ÍÈŸHvÂÓBúéŽÅ­JzСU˜$EAJ@ŒŽÊöÙÌ`ÓoäØŒk›Ø5%ȤcºŠá-¬a6@¿Ïüµ­£Í¡Bpëndp7Ì%kEý´xlÜ›[jèÇ»™,Ó+â@Dº8v€âf pMö£daØwãáG¨cÁj¨µ^ ƤÕܘ•f‰£í$àfÕGV³ÕFÖô—C’¸l àŒú–É(°NqŒW ¯[¦Ž†-em1þn4ŸbÊ–Ý­ Y6¿S¦Ÿ“™z2- ¼HÀšj^“®ÒÈáêʪK +™5Å÷gøKJkÆ®æ²jWQf4 `e“fzî9|×|»ä;›má+4^à%‘öôàe‘¾œ‹Ýe¤Ç,î¶5\æäK—nkVÖLçB¿%ØØ=_Œ¤ÇEa:op œÜý˜Ñ Õãª^‡#«Á¤gSFLÞfB¡Ù=OÛV P1ëk,.×£ôL`‡þ@68Ô¡”n7‰ & f$ïÑ7™É¨ÉY‡òU¯vÕúSMnŒo[VLPݼ9r›MÄî&Ðyð¬:lOÛúHŽ•3‹è FJÔz¯uøQå^yÚ‰¤h—ò©„AM@'GŒîü5u_®@Óð±ùGLöœ›Ú”½W=è;ÝE‚Îyø“Ÿàg”ƒÂ§Ø4š<°64pæW)G()º¥’ý’ÇÕ(ó|UÂ1|P€eA ˆY”>L£ÍÛ‡I ô; +ò¤"xø 䮬8„R™[¶hɧ`£sÞz¬UÁX…M–‡LÛ¡tZ9YS‹T'Y”É´ ¬ø)-Ãn¤Q½h" O!‚<ƒïV†©³¸ç† L™Sr!&í{\¦‚ðvDSKdT{kØ­”K”}ªŒCð.—KXíóå·–7v›Bqñ>L4œ)‹òº˜Q'¨Øˆ›aeü‡_]<›×NÈÿ©é0ŠNj'>ã¶d[¾å ÕP„‡]©kÕ¹ÞÑÚ—UJ;§}éE\1‰¸2H©|7‰|Óh€FϸR–.¶nãÄñE»jq¯‘ ò¾gÃô +z.A]D¦ƒ¦¤^TU4š‘šù r‡‰H¾ÓuøÀ‹Ñ£‹~O]™9¸Ÿ{\!oÓ¢ZR‰–¥ ÑÍ—€•L”ânÀ^ŽL‡ºÐU䪙™öááä±nnÍÚ„FÕ+MG‘#øFRp´7áâÊnç mºzãȸ‹ŠOê”Á¶=s øT!k3!Ž tOnÿè¹'Æ*z8_¤Ы׾ƒX;/»*Kqñ½0ÔJ@!;cúÏ4vÆŽwènKР\6²11Õ”ïÖín@˜hÌh#aDThðhb²µ6²$p#ªA;~mÖrw\Þ«á`WÆåz+vÊêBGIŒŠ +gy#¨dü¿6«ä=K2 3Bp°yÂxôå:|¤ë\[aìÕa1KžáÆE†I ÓÀS:ç„Wµi[r7 ó*\`*2‹{U䤎÷ +s_WCŽPÍ!¬¤Dì¤,¥Nr¢¶`Ê D>”ã]ç9»ë ªÀÙ¶x–¯ÞŽM¥.hˆËü´®òŒ`h>¡@X|éÞÀ5öüÒù$!ãõIª~«Ò}ËíÙ½œÙ>ÂÔRúÒóL%)qgÁG"˜¤p¥RÃ:]ÆvlzZä5»Te?³F™Á A#ˆ²l7MrØãw4ÚΦFòê5TÊ\"‡µà+39@nG—]¸Å† ±j Jާ¡M¬!}‚²lµeù ‹€Ócš2àǵíÒ —œ5(4ácL6à¼j˜°ºZe#Å„¡+ŒøQbAJØ~Õ(åÓB(*-.•Ô?ä)²z„|™êûd4­^5ào žÇ·xš©„Hf½(EÖh–½rbéPP™'6Ú:òr“ßʉ˜ãó.o_ü»i”œ1Ú* eiÜÝáW½”…R%Ñów§E›+‰ZDËûhV:žòôÀ¨ñ(ÒxqüÉ󦔠Lš•rT%C½Çš°Hg0pÓÈÍᩓاðž³(k‹$"/ÏBÍ®HBÂÑkB£kÊ ¢ÍËp¼ûqJˆÑà©/¤™¬^ê¶Ÿ¦†6WòGÉ=oâߥQÁ±U ŸY/—éÊýílSQæÊž¿À–w[²¼Ä‘­9#~úÁ=qx.Ð’Âȹ¨ÕÕÍ Ïò*7Kì}3üþvÔJåvÉC¢J-V톊¢ÚquJazʽÊ;³/“Ÿ§ƒ’FR¼›{wù-õŒGÕ¹ªS ÇîNºòªG02ŸHl2“畽±øEBzšn +Fì˜ÆKC•7O=Z¾"Ó¤!ƒÄ"SOîY]6é{¯ëAA¿ûùã§{Î}RíåTö' ÌiDg«oT®ÞÍÆ…²]l§Uµnü,rlˆá +6·Twì!“”“µŽœ‘½~†2¤Hq[°[> Ü#õIxêù-dìßÉ,,dë§ó3\/ž5r~y—¨¥ðª· ¿U(–6¼â¨}¶«<*ŒõuÔŽš*¤5…»DHøú3¨øeuSH)•„'I*xNè7¢æ©@Sb¡Ï¥³¤í+ûÒö±q`ïäx«„–»‡9U€­P9Ï?`ø8"Í ’sT‚ndÎÈþ~^S*˜\K.õ?V‰¦3FæÉ…›{ÍåT¶Ó¬7{óŠô °6Óm¹SÑGæêÓãÑ`;™¶uh|d't’ÃdÙ9&4€€QËÁëâÔ¦R,Ôý *·4}¥4º“>›R=Õ“%«›mµ†¢ÂIU †¿OBÌ ]!¯È¼Ï@Q¨Õ«åÔ 8;²¾+A5‚>0„w¢JÑ,yf³“—S=à)pU¢tß=Îä*»šÓ7$Td&ôcƒãhªÃš­/lg;^„Ú)\D +K¤ŒL±˜õQÕUdeZ As6 +´fëà x7ªtupŽÒAsô‘­Zê°TžnC&Ewgè²ÍŽF/†é†€Š’¨ã*D2~U²¬¡nÕCóvÊü0»Ø¦F£ÑµB@|Ó`{ ¦¢ùs´¹ÝâõGå™ B€Q•À*Ð |îჃÜËqÉ0 Xý9ªHG›ÒXšËÍAst.6z/:æ8RF Iá^H5 E)àb’)âÑGÓ?›âx¹mGí®Û#ï¨V O²NÇë 2¬¢‡5hèRßUrÞº‘d³‘2N£@×~ýMJŸ?t@Ïg— _®ž²K÷b;³me¥f³’(/ž ¡ƒÆo³!»ðkƱ8ÜÉDŠ•+×"{f]½^QPmPqÍæYï[ƒ¯¿a†Ej.¦x¼*fG{™"–y…ª¬ööLµ@§?ðic˦‚wðݳOF:<] NzšKÊ)T —$z%¶cùÉOD<‘Ÿ¨€"F£j³á=a/µ·œ¨¦€ËO0jÀøH ¤Ø”5(x&änC iÉÅöV°HRg'Ä‚ÅÍȬK±¢485™ÁeSŸY´í9VŒøÈ$lsÊ$E¥!§P^Ê"Ç0AHœÍ‘ÌCt¯„Ê„ÓðYäÇ¢™™=ë^e_éË…\7ù»¸z©*{ÒWG:LxóqHJ}D,‚ «’;¶ƒ‰C +Øë涪q ®—IÿÒÝòàŒ‚†ð²èÿúªc'Û®æ bm÷ªÎ׆Ž$Œž¶Èš‚ÅÊÏÇ«–0Ãt6MŠlY½( yë3gàâ¡£1…‰m??«xáf,Š:‚ì3ô‹‹ ¼w‹»þy¯ÉŸÒS£")îáÈ­ +xé²GåùÖÕs:êj¢Aų¢{þ°Ðä¦öWUqˆ¹’obŬð¢‚Ø³ŒIa2a”à‘ÈÚ÷2j¦/+a¢(Ø+ÆÎ\­RvåÓ À$åE¯çu•'œW4W5JSCÃ¥'ozVCšià4BÖJc £÷x;yÒ(0DÅÔ²½„7±´Y¨z)zq/¬²w™9dï6Üùe¼F£ˆ^bàB ²SOQ¶£ ‹“f1ñ^å5%Xš +c)Å …Ò´S^íèBWÝ@Df'¢ÿº·t”tT­@ÿôþñ*@y³ZýŠíË‹/Øg¢*=æQih!Ýæàö,ÀؼbXĈN/¯^»’œ…8âÆûŠ’²ªÜ& †# +(rUA³e’7ª˜ÌQµ’á–¢AÀBi+ wt¢AÞö-´Ù„¦Àr¡QõÏJ/Ç.> n•ìŠEò)¶ŽX8Žfà Å=„çud£;¼¼f¥p‹BR¨§Rwm̺ƒj¬.)£€ˆ28<@#{#Žª®ÚÌ᫨@ˆ›»óæ;©þÑbìï8‹H—aâº$/'œ® K—od¾òÛíÐú¸^䈻w´˜“ÐaൢA@ujÎf©ŽT5Lˆà «8ÖMÕlºNsõ˜”|²ß€àÅßSÙf„ e›%è²'2ù$ y%‘[Wò˜< ŠN¬àŸò¨fM2&(Uò13lUäœÒº¸O5¾”…ãRñÄ;ÞXSòæLr”Rnž®2orBÛC£×»**ž|¦Ÿª¦({ŒÃm: )jåÅ…4E™G¶»yeOãÈHªªÑçPó4ÊÑ’Ž@¾5ÏS÷Ù…|Òá›öPa«4²ñ¹ˆMS1jŸ˜\<%KE· É4„³ˆ¸9Å|¶°8ðÕÖ  U3qp°mÈ:^£mЦÑ$:Ž¢:ýù âTÍ‹?ºŠ´ ǧ $©dkQ…•°½îôrš¤mÚ©„Å@GÑà¥YÆ&M}ÁQûeÀFóVßR%i9º*ËV†iõDï<ª:1Ù2Òl¬! ï‡áâŸ=åf { I|²×gr ÙŒ§äjãTᘀ·½’-dmˆ¸"Ýx*c±›f‚€¥p¬ø6^»Ý‚¼×”!—UîHÎ…©¹.T¤2¤ ß=0j«¦ˆW/"ï)ÍOß,g•mrë‘8ª)™—McÀ{ݳº*  ×;äÙ ýš¢þ|%Η|Z X,ÁiB¢P†(Èb›_ļ¢R×AUàͪÞ1s¤~ŽX\œ>Oý +¤/Èd¨*šCdÜĈkå#S ØyÜoË YÞçãE½ú@$¶Ê¦Rãšp¸Å•hÞ¡éòj,y™£ºéëPK8Y%nìþ¼#;³Ô¿P!4éü™ãqÓ{w0ÁQØíS R =YC¼é¶«Ô šê¯¯zÌ„’ƒXCÊÕ2J›öànv +!sÉý°*äˆà‹_·WÊ› ‚ídn§|hL›¸ÊëcÁ>mhi—'€ËEóȧàEÈTC¥Î ÌpB`¯Q dö=ö¥³Áí©æ(·mWõÅæL¼—=Œ²¿g Ë1mꬱ•¡ï¼%9%{Q(ɼi“´€`­v(OÎå ‘cB_ªÒßt•§àF 9žHÐq +{pœUÐNLÑ8¨jbY¨ÇÛÂ(¿-ÁAá§EÁo/˜ÌËUÝ.çí¨ß«z1t(zEu™dOw÷[Õ>¶î +~ *±h e‚}T¡°Æ0ÚFf¥}¤k'éTDY)˜J{ 2Ǫ§Öé yÐ#‘0B¹ædf+5ÿ<ØEÐ`׺ŒÒo’+fº×÷¤Y¥‘ɪl2ÀlÓ\9Þ,iæ%§L.EµuTǞŬ!›ìÓx¬Ëô§¯#X`HÌ6tXÝ@?·3°AúQJv!‹! ¥ƒçí%¯Š¢ý4îTM4¾% §£«T ™ã*æÑz ކvyFT-3V‰‚Ji_¸Xé8öFø&Ð)ûMÉÔ*M»ç Ó¦®¾p.OBîƒN™-Ыe þ(kTSV‘h›¤ ˧ïTR^B÷3!éÖ˜F)¹$8põÊœ +P—A©5£2bøzòÜ“ûP%Ù£*SN ;ñX†2t*”ðÖ€¯½ëáÙ •ê«ä­BµÚ:¬ªÒ:ª…¢9?÷Ô:¸œj#3u¬‰ïì*U¨ê òÅ÷¼2qÐak‘"8R|Nv„Ùà¾O¾[–ürßÖˆÜ5$Ô…†*Ç.ÉÛ¶?j ¦X=?Ã÷ˆê„¯9S„==sÐ?QÂÍ©‚l£ô¾1fÚê1-g§¢°ÓVo {¼" ½ì5@¯}\’>SÐ'jš ™û ^è*kL²hð')%Âêõ“%š²©À À& J¶¨¹HWf7U +Dj"XRRtiÊf¦G•x3?ÇTZ€{L¶ÓêП†eLÃ:\¸Y¦§× ?Ïq|ÝU'™‡‚‚ªE æžPÛ+1ÒT„­=ë'ç(¯¨˜¹„w2`{0xMPe"‘ÃQ­{ö쪸*š¢Sƒƒ`sAa Ê£’y®=xP¹¶À'æuzÈëð(aØõ6b¯]uB£ªàÂR°j A,Šßv…•g&bU®µß^j5yõ7îÑâѦÉ=3Óy ÕO‡‚êK%°ø ;ÐSâ 9gP+HL(²¹ñÃot?òkÕÉ£WÀ5¹9‚ +0hî‘Þ¼¦š+ÝJ¿òrfN•kúWZÚ6^c2yJ%G8¹sÏÙ„è;)3a +˜k øHÁ߆ô5¸Ù¥’Ãä%•c_Ý4XoU¶ôVÔoW0s%£xTAÅ¥“ð”/g!R¬gfµ†Ð'Èß\»ÏGß"p¼¡ä‘‹Î< ÓÓ_A2Æ ¿¥FÉw¶ywÆ-&×’8D=6÷ÄV»ùÚÊSÿSÜè ÷y†þ«_ÿüệûO¯¿¶ ü.ÏŸ÷“û7￾yüîw_?~#Vù¿þðøù»“çöÃ~xø»ÿ~ñ{åÿüTòËa=ɺ§Ô—©©{By$"¼“GžÝ–XÖ¤'˜ åÛ±ÆGL˜V6²ø¼ŽûŽxli2ÛvÔðøcaþŒð8"QS&<+ü>{þwrºa4˜´ïüæU'Û;¿S^OØÞuÍš7’wî[k߸݉õô~ÂèNÎ%¤º“Éh®õõ pÏäV™¼ßñ¶“¤OíñI×NíC¡ç]»j!–öç*¯“ì9ŠrÌdy>e&¯m¸Äž’×äµ÷<äµ{>ú¤oÙ=þ“u¼šf{²qÊ Oœãö[˜É-ÎïµPŠs Úö`ï£xÄ`ǘ@Í݇7H}[ÛøÂ‘d n&M8/vxÏNÂNŠI +®Ò”û£Dܺ‘‚KÓp’;›*K=!w%C3€ê&ec—v¥i 󲂟¥[íYÁ•eåÐÐf³¹LZp%Y­ec×oÒ$Iº¢rìž \3^¦¸§ÛØÀ7<Å“ ¼uáqö,à}àõ'ù·‹5I‡+/läßÒ”°IŠŸ{£íI…7'7 ®Ú%7ÛËÆ³µxU1\TuЂoLξnôßÒcK;¹Ø£|IªÚ íw1ÇÉöMaqΓä›âù”Ú»{ñÓIè혼ñx÷¿ØÓwsŒE?Y»ñ c¸N²nÞ"åyIõ ¡AÍÍB[ê‘‘›,1¼Å;"0ç€[3ÔÊàÝFC˰§Û†ÇÜdÙÎÝé¤'Ëvµí÷äÚyÐ’NrmêQ#&§6…¨1@öTÚY•¼1hSô’çLm~ƒ3ØS‚‡hž{&Âl °wš<ÙhiqÔôØ¢ZZÛÆŠ]Á5¹° FãYÛsa«>d “›ed8ãvJ£RÇžð:©¶Îº^CKùä¹_i'ôÖÄßÓzdµ¦:ÄëËnù³ Ÿ™+“½¼2p’¶Ò.ª‘ikžÇÉÕGíÃIÑ +âKÐèc ÑTƒĬԱ}åàc…VúÛŽ†­£*»Í+ñ"Ùp\MjÕŒçkwô«Ò×ãñ˜0H;úÕù{O¿ºô«™Í!YWŸj¬SŸÅ“?°Ê5 òü ë*q€0àˆìeJlp“ç&>a]@×I¶+„TuÛ#ëê§P}HáÖ'¬«\®X’iø5§¼ñ®®¬7!¨M«öä©sÞU¤Ø´­>…8ž²¡r†Ç#3¥•ã9ïêªRH…E§†yŽw( fÀùЧ»R%CéFOéVu†¾9Ã6ù<ÛêªÚJä¹äDçø”mÕyaÒ$Ù*–s¶UGÂR’€ª€K~–mU\ïäSƒ\ŒG²Un?ø)s‰áœkUD›€ˆJUeˆç¹VuañÖ´zεÊ6´'«: ô‹ª¢þÏs¬:¥jÒA¢”ç«€¦/Ì#_ó Ǫ.¦ÐÎXæLQhŽœ)âó;çXU\¨ÐJˆºŸs¬jC~Sšê¯?ϱJÌY‘qk!¿c#Yeè­è9±ÞS’U_a8ˆ›rêÒgHV ù”[UL–TºŠœŸÜª<Æãƒ¶ô»ÔÏp«òvJÚWM¬þ ¹*_+P@1_>%WÕ;‰4½¯dâ<ϲº†AþT  íáœeUˆqà| ÆÃÀcœ°¬ê I=;5ïYºU=IÙéÐl:§[Õ@ èEœbgt«œ¡ª4$ÀÒø,ݪhBÇr;aYʝò)U©I“”yÇ·*w)Ïó¬ +5ààª'Æ9áª\bß²»º ~B¸ÚóH{Žp•Ê·qÀÞñÑ@°¦àýSzUkXç4;cU¥1…ò”MU×Ô|N¢ÊSúóÔ©x•÷”1UÎW¥—ÛIñŒ;•®ä\iÖιS{yjO)Sû: €O™R B*Ëî9‚TòxœÏRÛÀëžñ¢Ò€òõ,j #1â) *  =e?aÕgIO)ã˜ë9Õ©üÎQÔšc9£:O\[$m«¿ž¡:U«œÃ(‰rÆyªÉé¡ÍD^è9ç)ƒä!î¹N»JP †SœÃò4†S~cqîˆM9qTN_®Wdð˜ŠÆpÉ'ô¥«lòóS޶nô¥ +¸iù€[ÒÆcŠxV9×jšª§2<Ãcª}—Œ?êr9ç1Õ” ïÌžFaŠÇTãägÚ90'îxLº«q£/Õo•ì°!CÝü¥jP‹äw{þR\KX¬8E'}©ûêAãµlü¥Š2SÇ•ØtËå„¿”ðä31ðˆMþRUºð¢zôNÙøKée»šòÒmW?á/ET +æGòÙ½“ÈÈeÑJ Û4‰L5"ht¤d®ù„ÐTmÀ-Ò­¡©ê *ê…j-¡) ªsL( (æžÐ”FÑ£VÀN±m„¦jPŠæä¾šª!koxNM•-YÕãrÚMÙª;$(Ô´%Ê>™MÙ„ ´½‰ºõ'̦žGGQX7fS]%®RiP›®^%í =r=a9¥1]³F›yc9ÙGNnºªn;á4å˜gÖ(Ðw$5UƒkùfÖº‘šªØ ªÅµc7EÁpŒ*+Ð3¶Tt­!„œ©T뼌ÍZZG:a7¥QáŠê¨•Þ”U3·Êlô¦jPQlku=!:õF aÖ¨êƒèTωÊEËÊÕ) ÐÊÓ R4{ªSL2‡‹AAšûFuêùùQ‰þªŒ=¨N1-T®ÆDPƒjjOuªâØs…ŒSDûN•âÐÆ£×þ™\§äs*µÍ àBÉî=ß©’=fZ5B×4ˆpídùâÍ©Ž«‡§hãžæTfW4Ë3H•²j ¤¸¨~SîëUx(Û}$NøMMe$RX¦¢Ø?ÇoJò²ˆAP(–‘P{ÂoÊ"öR+d2‡õœßtU@ +#ƒŒóµ>Ïoª +‚.ÖC9œó›rÆèbà®çü¦òý€·3¢²÷vü¦j”Á»¨Èñ9¿©ŸÁÇ2h1œó›þ^çÒæ…BOЕ‰ñ„èÔ åæ +jÛˆNQ ”ºJí¢Òã$:õ…†Šÿ>!:U£€o˜ƒk߈NyÏ Ô…èÑ) žsj:)¦ÂžèT;ŠÑ[#ׯtª×m“êÔÈ +IÃ_`sÉñvä¯òH®êT’pÃ)Š!£±©@)8úÁÚ¡ÄObSa‚ºє² ¶rÊiʆʜ˜Ç(Ì^;L ;—=vÏ\ʱÅÙLQø)´ó”’›H=¢=iI¸™¬¤%y´gœÂOÜßq–º…¹Å&VMè`­¸ßòº'mƒpc"ñÐÂä¿wü¢Û¡Á/Ú¤³iE¡¼dÚÓŠÖì¹eÛ9Nä;IDÇÏuè<2CíÅ•®:CÛ¢íhBÛ(C9iBÛ2b÷×¹ìIAÛâ¾ßI +Ê]AL.жxîïžÔ>DAÉüYG6Ý$ü¤ *ºùžçS̉éHï©ßkÚX=‰ÄŽ‚™'ǘý“ÓßiGÝI´0Àž±³.•3;‰Ïv'S§âµa=!è,ÑËŠL^N–£)¯/g •ßÓqBeQzÜX8 .›T6òÍ7·ãÜÔ¡Áv |ŠK¨56©ÏŸ¦sfµÀëA]ƒÉ§ ®guUBüôUÈ'ô™Êå þ×`Í¥¤jƒ-SïXOH2Áwª¼ÉàÆ$Ã×âäÄä-Ä(³£ÂÔ›P d0`ù°òF|)òÍ;¾KULA šK•Wan vËã=ޤ–×Ⱦ\–u –m;s%õt³¸tãaÝ1N’çºzüu£§Oî…—Æ9ݽ'“Œrpbì9(UJ·õI=ÉO¬«I=9ëóî'[røÓdœ$µ– í$š„…¸ïž_²{¨s£•Ä£…‰9Ù$çï‰ävhpGRv[\†ƒ2‡R'D‘=xq‚ɉÛı½ :ô"I¨y£åP+ 0d¾´–ÏÁiŽ=".tÂË'=˜˜lAÇniãåbiuˆU¤c&CßÕêéýÓ1ôõáz–˜¯;~ýŒŽ`PQ†= ªËÚ¾@¾×»gaqîõ‘ÁvFµÇí?˰§R/Éý÷'Äz}EzʇçNbOÏ&Dy~†¯R4uÏŒmë3'±zœ›be„<ú„_ï`°#Ú“Ù—ž!Ø“q_ÌcÏ«'o8åJª„á<sjpc­÷dv^=}ut|Ç ž,¡$%êéË÷Ï=@²½|Å žç¯KÅ.)Ÿ{^=Au1î±&?ã)¯žî+ÙìuÍê¼zÙ¦‹S~ðêßóê)èP°ŠBsÝxõ¼–¶:ÉSKÞˆõ„âÜ Á$€›=±žâv ªÆÉ«Çñ–ÖaÚxõdR…xB§'åW¹ä‰­'mtz„K›ÿöÄ1NÔLÄSÚ ž> YôÖÉ*OyLb£“EO‰©‚q) ö„DOm¾¶€ìO=5h,[ÓÆ¢§ÍËÓiííûz¢'}?Éóø­bMv2å(7ò<"ÅP é¤ +ÞžEOΟèhØ<&žÀ°òÇUÚF§'ÙÞ ‹ž|A²tbÝXôÍKÓØ´ZûƢ稟è¨4¬=‹ž*}j¦®T:¨‹žcðˆj.Žhœ|zD7ÇW„ýžOOe_I¦ä$zê Óã¸ÃL€²Ñéy¬T¨xçÓ žÐª*F ÍÊÚ6:=5ŸÐáÞI§§»å=%^Ë™2ÝKßHôÄi²:§ ÓirèqF£t@8áÐϺ(t + c-‡žà(úÀA%9éðšã,ÝSçA4àEvB,ªüÈÉ¡'" =F¤fuÏ¡çÐŒe@3jÙ8ôÔÂmGú lzðwx!#ªä;IõÆ¡G£¿œ(ÞÓÆ¡·ªì3Ÿ4ˆe'‡žÄKoöæËžDFñAJ‡9ôt‘ºÛ.b“Ÿzz¾ ãlõ„B ¶0¢ª+0¸ô˜ªÓ_ ï.ëFªwÖ°g×;o4{¼ƒ;D)¦¹yöVå2‚ΰ½§¤t³FJüŸv%øñªP½ÚV¡@[ÛhöÎŽïXöž¶M’½ÕÙxƒ¤‚n“do.Ð=·ž™>ž +PƒSÕ8¬²A§'„O‚- HǺ/àž|H]j‚„¢¨e0ßÉÛ#|‚Š„›a”oËΖ<€}!ïÃÛ+_½/ EáÊdÑÓÙ"ŽÂ›Yê ž*øj(üIe#Ôª6"NSßÜNõä´vÙFÊŸžhpàžðB\ö©.aáÓ“Ì’e@qëN˜õÄǰ„I¨ÇÏâh,š¶êÑàFÉÒßVŠ6/K¶†Ž±žŠÊ6›éœ~"ÖSƒÀu êi9!ÖÓ,p€S¦fþdÖ~J‘À‰+Ë{f=rl„f“óêJÏ0ë1k=Ùˆhµ4Œ'Ìzª¨< +ÛÛ‘XO èž”éZAìˆõ«Ä~V ìt2ìaç9̉e¬Ø†=eý3/8@ü Ãçˆ ³T'T;cØÓšu&0Ûê–Ö ÃžÎð´Êþ2JOöô6?ª„7xÍO(ö”=¤?ú}N(ö8# àÙ,Y®&ûFC‘1«î‰,Ýá­c^?!ÖS‹ýK—'qG¬wÖvF¬'•LÀÿ%¢FΈõ4ÜPÝ3ÜuT/<#Öã,_»TÕlñ0™õhp2ŠFòš» N¸õtiVˆ…2oùÜ7²=@³wÁ2+,îÈõœûAlu A‹ÃËž]´ƒ~©ãŒ§,{J-ÒfH)óõpF²âX›¥vC?y¬^["¨6c—=|ζ§Ø§“H¸«âŒmOuƒ”@ÁÔ7Þ<É6u¨éèQy0G¶=¹§Ö¾볊ÿSn½­á9J½cã&½^œ?åŒIï‹Þ?©#Eµ9 +;â<¯l·n|yxFäc›4yD6±º÷ìxÅ]Ñ)^ñLã ¯y½ +<;VEÅ6¨ê +1ïp¨¶'*ï²»º~õ.ƒ-‚Ó¶,ÃÖjÅÂÛ©ŒÞ ë¯e*LbMY¢]úÙƒ)­zÿ†@ú« C‘j›!,)ø¡<Çø’£_­Æè/ÃÛcDÄÄ"ÛX öþÅNL¼áøé"†ò'oMÙ‡q ÿüêÆßèo·0Üqè¨n“0¬4gœÆ>&a[Éu{ƒñoÔPËŒ‚CüÕŒ›a£¬ÀîQ¸Ã²ƒ‹~$òqþBüBù“è0„cû|!­!Œú{/™ÛeÞ¥«¹úëïÇÌ HΘ±ðþ-¼ø7ÆíÜÅ¿¡UýêØuµ(q}ŒºZÍšøsušë/¾\4½KDD5H°› I¶ sUˆá/æ[ëoÖ&¶È Û"ÁðöÚ¢"M±ïW¯­Wå´ó§ÅVSxè§³«Vìé~jõ¨í~|´ÎÚ-Ë>‹©Ðο¸g1ƒDU–iÖãüí¯,6Dî/Y{ÜÎXôaαý°ž nÿê‚àìÇüjàµ<¯®Æø‹çÕšX¤û«+iA¿8\)RwÿÕØêhÃí§ŸU6ދշ€Š¿¸XÑADgm›W1UµŽ.Ï*!³÷_­ªîÄ-Û¢êª]y;S©nÕÛ_ ©E² — y•žÛ} +)Šãüâ>µî}kÓ) GÿxM±ã©Šó«ÇÔ¡jñ¼?ÞR´'ØnS©CŧĒW)ZŸ±`,7)þ¿Ûr‘úâþ-ãgVÍ™Øÿã¢9³M£¶róöŠÒ€þÀ¯Q”p—¶3Ê_ĤÛª—æÌ¯>P¬BoÈ%‚÷ +Þ(×'þ=ç_Ížúmàíñ`ÎĶvRIs´¿8:õRïÙ=*4–Yô¶Ê—[øø6=gD3÷ߨ\ ”K’°·þ˜3ñ7v„mÎôžÑ*O&l[Xµb¢›F°˜ É³Xí1*Ã~õ[zXÝ©k–ßÒsGs;'ÍÂ}üê®DÉ™cÿm°ô0¶L•ö¿õRÚÛJ³œv¶ Ò,Ï_-“`X°@ì¿=g¢‘môù÷/¾HûoÛiV s» ÍÒüÕüz‰‚žåy„¢:‘Çö:šE‡ùÕâˆÏ10²Ö6EjÞë"&÷Ï|4XùØx*£çŽ û6.ãÌêWë"Šºjá–R¦ÿŽº°÷ÏšøÙÿbPô”Þêö%²lûž_"Ѝ²O~±#z*·-¢g“Ê}hƒc~1Ú¶Ûkèy¢üÍbè)ÀÝo…ž‚¥lC¡—Tåh!\Xµòoé°¸ û™çú˜A·æùÕ#H%æLYé5?Ž@²‹¯þ# äsÁìlÿŸ·§ÆüÍöÇû[ÖòßÜ~ž2°øêñCkÒªøWk®Àßo=}Þâ%|³òáĚ勃ôhE~çàCy™E…=ð•3ú¿žŸ§þMϳ‘ åÎ󤻭wöòñ«œ +- ËŠçÙíȯÎ9³•$ùïŒwÐÜ´Èüõ ÝÛ¢Ó+Ë{$¡ú­¹’”Ç8¿{ê¨UÙc¥3 0ø«ƒÎ„’÷¼ßsX(GiýÅ/gˆ&ýolr­y~·É!3ŽÒПœÏ_Œr~þ-N9£4V¿Y–ÌkƒŒcŒ# ÓO}ñ¬ ÖGœöFvô·F8°éúøÿL¼ñã›ë ùÖµíp¾šÝÐYŽÓ³›öl—‚/7xª*ûÍÚû ð¤ßmhÓ÷öÓÈF,Ó÷wF6 3Èë¶ãÌ`{t©(&õ ˆ¿ë^þÅ­¦]s«!EKqñ»IM£lzþÆ ‰¡å±¤á@)áuñ¢QžòýiAó5àûóoLþÿ4ÿYÐÐÌ•„вola„*Ý-¦4ŽR¢ƒ¢¾…Ñ2£ndw9`Pׯoà—Ýš•ð©bäÛ/8çùrÂæ^9ÏЭ‚0ãz4Ð|ná >}G+¤‡…ÃÆkÍr^ñFÃk%[ {H¬ +åñ¬°åx6”hœ7öwݺû·Ùc¸þsõÓ0·6BdǪ̃2ÛéÚ–è?GHÔëÞýÁ`êݽÉëiKK1j+8®§Ìò˜d¶¨P¶‘4s°|7Æ/©(÷JÿH´VNt òq#+.#ÎÉÝÔ[&:ŒÁ­WY[]G4=%ß·DÆN‰ìøÈƒ_ºsO÷‹¦9sið߇÷ÌÅàô–7ÄÐ0½}4•|†­a­1¥öÕ7°ï«yð¥é¦¥©>n_pNHª×oX{ó=gP0QØ9D¾Î3z .ž-óömñçZöi*‚,:û¦áÝÓëH-ÕIî mŒèN¶â™06×7™ýEý¹s°_•‚ÏÃɶ§x«S^4_ B\EÀßUlÀB·'+ ­ºŸçÚŠ :‰ž#¤W³i¿Ü´Í¤ê5­oL­¶©š#B{DIÞÓ!˺lâõ‹î3âyëÍ;ô*“þÏÏ`ן8^÷eŠÒd}¾¸Ùëª ²²Õ‹çEéAdmޤD'ƒÞ\‹ÄuxßûÀ(r¦Ê_f½gG îBDZƒÐF&ûÓçY¥ânG1Á›ÌÛ'~hØ9­×\gIFÐðïÌó{½áßÛö ñàãÁ%׆O°|­?îÓÅM¾¸!Ü × ûÉȈ‚Óh±ŠAäˈ¾EˆÆ®äškk’f”ÀFÙÔGp«>™¨J5°‚ÜÃ-5ÏÎV¿l ïÂŒ­è”zƒ!€SGër§OPXwðaëFÝêØX *ýàÞl1Bƒ;|}"Z|RÄgÊ÷Y- Õn…nŽŸ‘ø>˜Ø8„7½ÊwhuV÷Z<(/VÈg†>Ù1Xz_'N^%_·1ñ,gÀ•ekÁô"‘bz!ẅîŸÛå\xœdçS+r¶ª7ôLï"‚×çô*¬®EÝ–œþÅÓT¯ËæyØýÑÙ“¼LšãkVÊΚLxFPJfÄ:Éþ¦'úgkùC*Ö×,W<Žu{ýKÕiZÛÙP©šæ1ìÈ5=iIú RÜïñ¡õ~ÏèÇ!í[•c+:ˆ‚^­ Ínéh¬' kÌê[ LëbjuFF왇ë…!& »5 ðSº` I)¹ƒ˜VºF]G-Ó(©0ŠDÁóتox=¤jþ"Ã`åôïÒTC¡´½?O²ƒ&"Ý êQ½Å$ìöXú„yO2Wù†È3lA¨x¿øñÏY#¼Ÿ>v¼å‘ŒÊaN£jgÃbòGrGáF,Ó3uîzó"tÅÖÍMœlÍÑ%lš—æë5K@}¦Š +€o/GWc4 +¹a¯Å­´p¹¸ãæi\¾¯—†Ë}­ÀDí³&Âx»šã¨ƒågÍuµŸ¼å2í›·žœ‰·^?g* lk’kDW¸aCå{×–5âÚFti›/578ƒN¼˜ºÉ¢§‘Ïß°Ú-ÓÛ“8f€b‘ˆL1‚6שѺ¢\g¡’ õw^Ë$ðzé®ÓiþÍìn>ΰ•Ø*)¡L|ä–ºY®wuœÅÅ¿PrÁ}Âàׇ»‘UÀȲÇzšv}景`Öúbð5rº¢ÒGäDµlâ…ºv“Þ¶=ÂrB£`AeÈ›¿Œ–6³Âò zþ,Û„ž>pâ¸çsVu èy¼9)Ñ›ƒìd FŠÁújTÞµD à±þýjþ¾&®ÀPÔº^«û‘Õ}-²÷oäÜå´Àþx¥‰~Là‡¿­κü•ý³R°>rûoä ùR³`ê… >J`9|ÕÕËÔëeâQcfóëÒÚýù)î'Œ2ŸxAŒº×.[k)«5 hljèžäo¯ee¾&!“i?î¾õŒ%Œœ/;¯œÇLb²—!õ1‡[Uøñ°¬óP[e„ä1â¤ç̈‡ø†=¿U‹¸ùKòš7fµ‚õê®UuÄæ^ãµ[kÛ˜»^b §bŒ¸Íå~°Ã+¾âTÌ*¾@ÚŸenÀq{\6H©^¥i´ž Èð”9YpÖJ7Ÿ—'e1Þ +/Ž0kw¾Ú'Fº–pP×å™F)iÜðªÇŒS$#ô>²âÙrÚõÌA޵gkg1j®«`Ô@—?£v_£.žÍˆ±Ÿ_Lœpød"ûš¦pÓ+^Hì>Ý«%ùЧÓ¥Htò ÛÐòy»®£ë-Pë1gàÆ_ÄÂhÄÇB ã äòt¾Õw'(Ë"ß[l©y³<¯å‰bü ÃØY³HSH¾g×!eK¡áz:¨øU.6KË”2“¡Æi'q=ÿ•® +cFº€<Ö‘=ÅpMYvžÅ¿W=Ïrõ¼Z¦mLÖ±£xK„=s}jÝ}ׇS\¾XRFŽƒÆämÙzÊîîRIÖÛQ#zóô}3ú%œXæEÃù®Q„.ŒRgž¥–X—ùì´-# !2" 9šD‰kê[ä7lóºå}@Éóse?L¯8*íkûR1ÍîM•_–xÍJñzÝuªÊ>xê2dn uÐÕp‹,XÝPŠFmMîÙ£–¯õ;Gˆ¡êÀƸRŸYÛ§­í3{©óˆ ]¹ÌH1È´yž&*ùXÞËV2xñ9©æÐû× J»É¦ª¹(ü¹ìÀ¯@ig¯â¸x­ZÚþŒz(—ëžc'Ð%eö)Ók‥ª§Ç†}†ºÖÀ¸ágJ|®·ƒQ·¦Œ")ÜùõTØÀ¥¨¢rËœ^#nwZFª’Ýú^ÜG§ÆÖAŒ9ðúÂt\þ`!H;ÂܵEŽ»“’ÛMºW"\|ÝÇv$»Õв¿PÀÛ÷©ôjB3JòßÎC3¥‘ÏCýVvý ë¤ßaïjK\J›}æð¹õo¤8²öõðržl”+„º;™êøìWÅ ¨%AäJzO…>©®CQX¿i¥Ë—ô™•ËPç5_7ïÈâÔéÄÜ„ì-ƒ®Hü(érn iÜoGœîxkÍãUñ{Ž|Ï»åh4Ï¢RÚÒyµòñb+q‹ãºlhF£Ç#hH’[[CK-#ãKñixw 5žß¹“ŽN.ÉbMc•»0˜î,xë}Ѓ…çhqjŪúWtíÙTDžaßG<1[‹x£N±«lÜE ìÉš³ÖrBb?&kkE.íÑÝ’;ïÊ…8g·,¡öZ "ˆ01R±¬Ís« +€n€ÝÌ‹<4‚$¬´k*½–Iî4xÖ@Ð_em~w•?Œ´ôQž|Ï–SÁä¶ŒD²àÁu¹ž~xÝŒh¯ýtÄK5t¸›¾b%/Å9h2±MŒÖˆcƒa¼!¬€>{)3½K;ÓÙ£±¶3rE!„\Ê+°¿cÔB3‡î(>1êIO±ŽToÿhð2ŠÝŠZ=í{Fµ+›ª†À è®cÔný#µúZFÖ e .ï+ÅÒ©6'jì–õùI:7’6>ð¤<Ô§µÆ¯LM[D]É¿!]”] ß‰*Wx-¯›7÷ús5 1ªê°é$’ŒöæðºÊó2ÁÑ…›(²î7'…6N¨C,š·w-E>égñ7× +/ߍe1‘“ÓášÈ{<³uA2(Z÷èKÑFZ‘$7”>N-ç`œ­Õbn±{0’ÒÐÀáßù&ºø®HfÍI½VŠf»+Ó”ÑèÜ.ŽÙ¬IÁ›A:©ùËŠw*¦¸ËjùÁò̧³æí™OKÃæQ=Í-ïnDx— Ä—Stj»kÀÜ" ²“8HkŒjNd*÷9ËÁ¾Í-ˆ>¥WÚ)Å>‘f–ŒÂ÷`ÓÉ6äû%8:+žä0„•uwÊÊÝ7/OøQXezBçE‰?fÁUó¤­åÌÍø2tLtt«ùšKçátN¼8˜÷¦Ì±mñ®?`n}Û×…^2VŠÂ½¦3ø:"à=´bN9N0ì~sž•CǦà"gÆ‹YˆFdŠuühú‘¬ibTÅ‹mfl4âÏ +;²âÇV(}ðÈmXB‰zu7Q Þ­(lŽR2?” ç]¨òŸ üQ2áÖ 8ŽcOÊ9,׊1{ž«Î#©Í®»ž#"þˆ‘_%F¾ Å~3ÂýnÁsÞ;{Þœ@#f‰¦xdDúe1½ŽX;y(ÖKá~?ÇFVVÝFŽ!‡4B:kP±SøÍÛäùð—oQ.á@+ÃWÖ†)üøˆŒ2ø:x§) +ä4§¾“ÜVª<ëBi\ºÈÜTiYg™U©69ˆlŽJR ÉVon0ˆµÔ‰³*×uó¢çòE¢Þ`Óz’ÕË­}=Õ’®‘˜öÛ$U~€–j]ø£TŠØ¿û5LÕõ`‡ŒØZ׿ôòÎØ­p7#Þ$ÒT>ö7IˆÂg9…®‡"6BëÙsŽ*2ð¶h?öuÀ±›©î¾Q_=ÕçÏÛÆõd±Mö²d¸Å2(íú®œáø~ŻބãÙqŽ”†YóñÝŽXkÓŠtÞ™ú#е§–“àcÕ>¯¢üÓ@A I¤ï|=°‹þ×–øë§âŒµ(©çÉ> …Z¾޲Sõ}ŒOÍ“&…ÒM,; +Ëâ"<—÷¯V;wuô1®¸ „²x¬Ü`ÌþуàŒW>qÛ§[\½‰7§Õ_ŽA'©:Ô¼¯V*mk#½DQð€É–¯tq¼[yTÑ–»Uו·„VU©{fD›é6;¸èio€í qöät·‹)#žþˆƒƒ(lTÄØÙ¿ù. wÃ÷•e¸¹àÑçI¹=º€÷C±0¥©Ú>}|¾@`ÆuË¡ýݨ,±FH/òúrÝé6¿€˜¯Eõ&ËßÍn.„ϼš$Ýõq%DÛâb¹RZ›rØUM“Caè3ºJH•^"¬û`˜ såA`33= Ñ x# %¸ÑVä‡_¤Œ÷ÚÇ×K‚b1\ü§Ö2 Ýò‚ˆpáJL/Ùüò8y6ëÍoÛÿïf&]¸«nì=½±/x<‘qbÂÉ +Áêû‰yôRÇAÕ­„Ó©Å:QÜõóØ_4ⳋ+ç1ë΃»ÕÉDµe}K=1‰x€!ÿéúÂŒZÁ³á][Vºýþü!>Šƒ”ª97 5Wb±öÖ|‘¿¬Wˆ¨÷övh1öe1É™Æ>Ö\Gí¨ùã‘?YÁÏS°•Î*Yx¡Æ„)€¯)Bk¢.ÀKhóçBMŽ='ç Z+rט”6ú|U{¼toç~#=òºÞ }¸r%| ±™îþ2@EEËüæàb.;OÞ2÷y&ÔS|ÑkS@/ ®¨R'°DΚÞpÌ5§[¼Ž“#fDxšöÔƒ!wì&\Ùz¶õdT#ÿ`„x8×3ôÁí—3XÝ‘íy×Ûx¾ŸóZ×ABçÏ(!1ÔIçüfk„åFøðn”[žºð3È¢ ?ñNGì½û’e<Üi KŒ’CCK€eY$c¯åbÖrÁ ‹}Ç!ìå|$‡Þ&"8xõŸ˜–½ZOqoNÒ³€$Vþ<2u0»ks-<Ö­­ æ»%:b(ÆÕˆ9øˆ +¥}ù!íÒ¨çJ½æÓ7P”KEÒŒð¶¬mÆ'„˜árÇ€Œ©VÇÄ¡¬ù|Gñ]vãí§A¡ïþd¹ÁƒÝ1ù]#p\Î_Ûµ(<Ê2ê=A”ÒmFKĽ¶™;÷§»¶²MQ„ÚuV`Ü(Ò Á„>tøž@^( É̹ÍÂOP9Ð5D¡…æ™  $O’+œrÑ ¼&̬¯ã¸Æ^z…W2 VL¸#̰^Ú?¥,/ Ž )Z#©ᥰ®ãH& Kïë稦³Fa¨ç(4¨…ê «nÀˆ#F#í5 iøžYªø"‚uF jZJÓ÷ô7¹³Þ2Ö0ž”Æ)׈)š¢O­£„aßC„õ“ƒº;îÝzT¾Æ\t¬ÁÅúPxt= RV#J‡to3Zž< ù¤¢™÷úm!㺭`ú +Ì>+¦›)>Ft5ÿsgp@2¤wÀÞÂQc†Êʬ9 ®\µÔî¡-¾=uþ3"—ŒšÁT©ÊNt{£@Ǿ^å!JaB¨!Zkç¿ïB±mÄ(ðÏàÉ(<ˆLêIÑÅÔfKNwá¿Ùr±â|ëÕï;ÐBÿÇIL–AHë}¿Ê4o½TÃMMA2pö(~Š6œñÛ[VÖ^òj/([Úß|$À<üéŸü$; +måZ}¯¤çÅâýñíÕ}n‚†ŒÐ.¦™=9€Z¿GOŠ¿»ó‰“}ðÄ?X«óž TÂxr~>ã#ÇrÞ+x”§ú’âá,_X»Œ?»qÕˆ³‡ ´Aîw±=ŸŽz±œ €¸5Ä +ÅóhÏÔ¡—õÌÊZ¸.eŽ(HÂ=ôKfÏ4ßæ7H8njw[>jwX»Tg>F‡ž©ÙCw :µC´ã˦ÖÓ+XS#­rH6Np¥|jSbªÔéñnki]vÀÝíÊÝõì$œã(‚£lœ¬QëWÖ‰z×óôd!˜ 1âP@”+ÖôóFF/›Ìûòøi¹Ú oZKŸ}Z +ízÙ4¦d÷à•ŠÙ®ÁÔU®à­Îv{-|]YÞ_ßþqGžÛó¬·¥ú—ê;þú+]V2ºCýZÏcäÏyØ#€wÑô‡­sXƒR÷êmûpõ{NÝåÏ‹<|hP€ñïSw‡üC—ò…œ;©dá1À2B;ª¿ +F>GrŽmªÆ¨'Ñý+éú GöR.¦y‡x®ÓË_StGœyÐ h8pl1!"GûvÞiNª—úg¥Ò°Ó/òÖª£÷Ⱥmés½ÿÌÕŸ„ḣóÃMh>Šùù¦þ„JòÇaèÕ5èªÓLÐïk=à%©úD_Î=¡]5¢¥QT[y ŸvFμT£ÕÀfË`•4³…2†WñÅÌVöæê‰—k$=§SDPjN†à÷é*xaÍÉm sGþÝÍÄ&¶1l2aäÞj¬SLùäÉä×4‡Ë{ãoæ(^Ø!Žô•`Ò‹ uë`ô´©>ã‹:s¬«¸ zL ºø|÷¯é±‡¿.¶ Ö$¡ÎÄ—Tò §ÈæôO°¦ŽH@½FôQTúIìø÷^HzTóEóÛÐx…D|®¾áñ´+çàÉ)Y7¡²ÿú=ÊÂ1ýѦ0eÁæm° ø1‰pP¶N †û/)û¶52¸ƒOV(F\q×ìø)6Á(6Ai\QjIÀtU>Ö"Û£%{z™k_|0…ç +“+eã´rbPãÈëéÎË/WZÉ·o\â§1 +ü#Ìn°æü\fÈZi°3¤"#*Ùy„No<5ƒ€x1Èõ*;l^^VF®„µ“+y¯bmQ£§§OË_fý¢›ÛùE·kAžM91¬ïiš^PÃf»ù­²Qô|iápòCn@|®òBd€Z“}­vW]zVPÁF$Us¦F¯Óô—0¤ø¬`ÖªÒŒëØ=AÆ„¶^h(JH¶î¹¥j sëŽe@æBZC[ÞEd…Wör®…$I 7T€uoGUÛÉhdƒ >·Waz¥`;ÖÁÓÉKñé…¥Â;Á}~EÕè^1³º’õR–„fý´ÁM89r޵«">ÇNÐ6»ó‡û¤ZÙ]<Ö´ñ-w8SŒ™c¤Iîò¹Ø¿XèüTB‰+-×(3ÿT—鶇´èLIT%AfõZ}£÷úp…Ùç 뫇ܨåˆ8¬j ª¢·iÍYj"tô€ª¬G  ŠÙŽ`Ï*† •;äK€J[„Š-;H`•|ü¶¢…w¹K>ê­°0T†: š]ÖP$ª;J€ÏT8­9è Γ ¬ýr™4çšrmŽ¢Œ©¾ŒÈ+–žÎY7—ïéH]—ÚÞdR Bô@ø'U—F‡wÄpÞêj¬@d{à$‚±Ä%Œêɾ–1æVåÚÔÁµ*¥Å'žÁ'v÷ƒ.…àÁõîܨìÔÍkhA_avŠð\3»—íùÍyf+"8åŠ*ﳇÐÀlÌ2ÜC‘ˆF&¬Ù&¸“is*¯úã - ö+ñ2ÌŸ3øq‰…ø´Q£obÞ^GtÈÓ Ds)Gj˜Ô“?zîèC’uŠWÒb"}š¸ßÂÌß"Õ»úÂ_Ï#–M¹—Û€×2|6V¦òEwL¬—U¬²ZðÖöÞiˆX´K1~@Á$  +„þ5U$x|‘Â~m·×÷íì{m%&ð™½2Júˆ´ÜäcR»ö%䙸Sk»7# Tê ‘T/0·ÀOêÁ…hû¢>Ó¨-›’òÑ÷̈##^’\Mî_qÒk'…®‰Hn6sÃ3ßq¤<ÉAA"Ìð›u Ùó#ôÀP››µ‹°È…„®ÄwPFÞjEWËÿß—Bpÿ|S8Wg1j^$ÇòQÏ@Ó(çŸl8|Z)íùÄš¤·"çqìÓ\Á¦—Á*禰Ä4M’Aƒ?† +ÚgWXWp…€´µüÌ¡Iþ>ª3\ +ÙJ¦ñªv-ØlòÀà¾}wV’þ[F<7Å^ÇáL)@õnuí!Fžµ õPö8Rçr”PÂ;ôÅ5J7c¿é”š¿ ‘‡Øâµ:Ž *º@×p$Þ;ßtÞÔ5K˜y‚q“Q=3”Ø©¨ˆŒ¨Öé§/ß? Y@%@¼A¿‹FrFR`÷´CÂ`¸p¬3Hi)2€á­Wxú’¢ufÎùârdE¹¶—fɈäÑlt*ôàr\ò,ó¼³c̪õw +¨O Ó>Ï-ƒ žÞOê(Qpºä–ícäM¹rSú)'qö‘_sçÆ‰ÖZ«óš8ä²nêšuÅòËøplqœ¡ã”PšþRÈÐ +eĘ`J¡¢)£«ÈúI¢9w ÞaºOý³w·"ÕQyâþ°V0PëÓOh»bÚWü;¤rš¢Â(_Y +ñÜ·õËŸŒ¨îQ¨nEõz´à <‡‘¤Ó@½®2½TõHêá›”péQ€“¿ŒÈ‹Ô&+ñ1K¨îëyÞ2‡ë)=¾ÛÔÉõZljÚÂV²þ~ýØ‹‰þÞ™c$ðç:FX«q±àÿãnw&]óyŠÊãÈ$6Uõ}þ =î²z‡ð¬ ‚ Ô·jFP'…¦Óvz΃=Ìù ‘;³ä8ëÚbR´Þ1­r*KæFÉ—qç½çn§Vžg=m±ëÛlæOÍÇ1™Ÿ†Û—QoÄä'07ß'|š‰ä…Ù"IÒ4<ÒÞYTF]¹n¶9 Ï&(w +k×¶^šòùVRÿ¤¶3„6‘vM“¡p½ ‚Ø2l­›Ù­$Œg¿ëçVµ7þ€‘MwÌTÕè%ñ#H)òwïmZß’¯gtðƇtmCQ^.Z™~ûa7d]∠~fkĔР+ÌŠ <ÈH¦ènÉ;Þžuú+ø?PR׈š“=[ tHÏ_Z;ÚÉ¡5uH‚ Pþª*ê(• Á~“:×ñ~…Š2­SîE÷×§äÞW\Û»X`À}]ö‚Ϙ­®}{tÉŒ‰Gs2”{±ƒ|Jì =ü5Ó›5„ +h:nùæTîÎÁ½ÝìÁJTØði‰›¶+@Â]é¤6s«¢™wƒ {Š6¯Â>GÓ¸œà<ãõ3”\\zÕϰ”7$ìîßq„ L‰èõÖŽ¬ÛƒÇÇunàþzëwB@>G:AÿõÊŸUƒPî»\I"è\ñÖÐôUX3 +ÎÆŠ*Ð ˆØú3ë…¾ÙSÝS± þDU·÷£Õ¦ŒÛÖk;þh¿*¶ ùHccj_‹Ì¥$WÐ(-;Ji(o8ßѨ@gI¯>+hRrIá„„ «„óŒ0Òê€|ú6bw\¢mpÇI(¶åNøM+7׋⭉¢fDX¯¤@žö™g/z‡¦¢S¥[±q**4‰sòƒµëIûÖdWµ¢Ö4ãÄ—Ö"f—yÔ <¶âø÷)ô£RÒÀU¢Šp )VÜ{žènÑcÊi*QÍP!„SL¡L3¯N/¤Òà¡]ïÏ/ê"•ÐeL‚kŒ¼"‡£¾G:&ÉËSzk…¹_1ÚÈ/Jå¡^#ÆQ#>¯ú]Â*@Æ[ÑC~//B‡¬ˆÍ[‡Ù„Õ¦õf 0¤‘E“[ÍX™¡ª²¬WÔ?kíýk‰œxÊT ¹5KÙF[¹¹ºÛµëæt)/âœ2ônKüÌbæû¨§‚ðFüŸê³XRžWÑîR!X—ò<‘IJyŒdøPYËì-Útû›ÒZ9±qò]ÀµüÏR MÓ.¶¹œG®p•2pöoÚ äMúS€»mä{G|Ãnc]Ir²l¯X†8K…aR=½EtAŧP6MÒŽC³B¼pýæ“í¥¢‰¿º# Ò»÷L‹)Ÿ~psgT¬fZþÚ9Rtb»^v•Ÿ1Çkkgmìnx‹X‰å×¾AEdžæÅ”‡‚M¢,ìµ3ZÉH¶ßh©CÛ1ÿÖÉxÈéíá¨45ÏZøî«8=BÐb x®Ø£A¡þsìp.£â®¦.m)ÏcïüäªÔhgC©Š*YYc2à3£ÙzâÍ6Ã=²1vCÜ Xµ#§¿¬üÒ»TNMN=ë~˜GêôLêû‰·ÜK9ƒâ±UhÔªiT­ ¥£òÁS Q}-ŒÂÔA‚å|P¹.²‰ìz ¥ÏMA­ƒé'–»ñÑ4ž†1t[Q¸`)ç€Â÷(1OrÕûZ‘KwFäbÞÜ~-B§£^s@æM¤Ú£åÒ¡ºî[U`GHòý8"Kš¢ÅMsïÊ€ëgAÉø¢kËÚk^Ê3X¹åüÆ_0,dÞsFnˆ·\ù»°ŒàÎûf +‚œéŸ/J)V1Ëz‘Ž0 |mÐÜy•Ø9Øš|S—âÕĮÎ!„J\èïÅáôJ¬I©\;‹ÊÔbl¯„—5Ë3ò…d®”„m?t9½1¤U¡`-¾lŸâóÑBˆ¿Àþ¢Ê2U-*T§_  n«ƒÀ3ºFBi yÍj¯ˆ9Ô"Þ­KÁ(r F3{@·ö­ e¡é¢ÒÂÃJH€ÁÔ ÇW’M‡öÖy +ìOsWÞbó$_áŠñîó¦¨íºÅô4Ál#ô3|oZP¾S´«}#èÇ»5€Ó)=”£þCYF-›q×yD³/ãÅI3 wÃ$¤"^»’q^ËyV¡:KU$„_©Ǹ'\¶;a¨È$¡ô+›gµÙ†’/¹gÔ@Ï·Þ´hs‚?U/Är»Ÿ9€F) „I ë5¢kSý»oºÈw´^ß$0׫}~ŠdiÏ@ ï6©f¼Š–í¤|W!ø>‹#Ùúh!Y—ò.š Rôžê»¬7a”œÂ,Qñõõ#ßÔºB‡'¿iF¸¡K2xSUpthŒ ª¡?ù<¶‚á] +†ç~L=Ù´ªƒiÀ†b£Ò€¶p·¼Kt°Eó6W€½ÁÁ «ÓLcÔÙ?÷ \V-¦Ó³¡ÜÇ~%3’yÓeRµßÈfˆézÊ$B`+誅T°xè†I^¢RmMHð‘óY»¡ ¯ Òk6ŽŸzÙ°q¾Ô½Þ¼m‘àJë­î·2ÉÝ5 Û!òãb ZøžM5òldQæZïX`ݱ‡Vzqîp§Gïu ŸrÚ([y[Dôz Y>lvÍQ]Y+ÏuEü.Ðì5“t©p„ÒÞ+`܉ÛÕÑ=Ò{[µ+ +\3ðÊü€càÜãy\æÌZž +qóÒÐÁ«f|â¶PdfËö—VCÿõø º÷òâ’òÆ1ÄgøºjTè6ðq»>·¤…Ö§¥š¤&Í¡Ò^À²"â)¾Å#¿ÒȹŽ#’¥I°x©zúµ›_GéÈ׿Uó‘3qT‚ŸçùáURÔ äæ‘÷%Uf2ǹ3Ϋ¸šî%pDÉ:…Q˜¿ÒŒVhr•rïñS‹9»ÝòàÃ"ÈÆ=x7 z­ 2ár-p½ì9| BÑý9ݾ¿Ìä\w²Gñ@ÁG»;àª^Æ÷mjÝ€Žþ<ê@25«>PÄæ*¡†™Qò¼kº:¼¿Á(æ—õŸ€R5#X¯•y®¶Ð!ŸU/¦ìY›„ô{hµŠÂå`Oå1Ù‘}ÔÓ…]RŒÈt!8)j`ºB±@}¾) ïµÆØdxT•×7=ÏSÛüøMÁë±¾¢Ná õä€#˜Í¡þ]m°%'ˆß½;9£Îà?&O–R½è„˜ý%3Æž +ÙÎù8Yþ4š¦ù¦H1—çO× ¢?„¾3jD]^ ÖݼFÍÁ+ˆ€UÃlãd¿­/Ph s3ŸÉÊ?>åUª‹ÎI £I¸Í¯»%ˆph4°¡"Þ½gíVÁ†ïB³ó³Tk±Ÿìì†W’‡ò»~ãqÌž&>]‡V58d·¿¯r1+@Šš,¦l3z¶µA½\ïoFr=C„\w÷ïoNNY¾Å}·@²fhc9$‘:ó¢£»óÆÇ(9:0×÷RB€¬¾Ö õðŸ@XA÷tR8'3i(ÚÎɆ®Àý…b¬…îRþôáa¬p”NaýŽ;,p*_ŽRέ`„0Úfk¸AëÍ}SœK#^F(zƒ^#S}G•gA,ñÒ9»²‡Žÿ8*™(–ºbé§ŒÀ®)k72&ù&Ã(G&ëµ æ¾Ù#U©¹UôŸAn²ô· èôhÏè &w_ËŽœès º”øöÒÝ‘ô©ØDÍÎ'„®Oȹ¢yl=Ü4Ä—Sƒœ®2 +ÚvØôFhSÁGýÂ^4™ãôvÐDÙÂwý”“â7£Ø†Ð(ôN¬/ðÝ<ëU”HǺúŒx[% „ñèU?ÏÿðjSV†+ÙÉOóL±8-ïƒÀ2%VžŽP;5Þê7#lÔJÅçüý n)|iypQ’÷-ІWåÝþÇkêxï}•ûàW*ÊŠ‚<åV|V%›þÖî½µô%Åt}‘ªêX‰9ÿvž›;»rxwD¨K[}¥QÏüÝü‘ Cƒ¨ïµö먷ví4sFÉ Wü–ú$M±@}M®ûû%dþvÄZ!ÏMlB Ýœut8KÆã 6 Ͷ4_2zŸ;4 +!üjàûDpB ùˆÅ6Òöu—´ÊÍž’9šᬖ󨅬·Û©r%H#”6S$IíöHëà ¡‹u3¬Ê=&ä¾}†ñ!;÷ùdÄeÀ²&µ÷Œ¼ð”‘ŒI3‹ú‚#õ¾›w GÆ3¢-Ó©ˆ ›& ‘ÝEâíÓÖV|‚p ¹O«Ÿ‡Žm!P‰BÖì¦ùt%C‰!Ä‚441ï[ŠÖ¾Ñ™Uƒ$–D÷ƒ^äÁ^äÁª·qÌüõf=B1Ô¢Ù_ íê ɇòl‰=œ¡*Þ¾QTާœbOä ÔU8ç/| —Üqäg¢•ã"øõñ󸊬È/ã€ìÊ;ÌJ¡j˜ùÐŽ¢–¡Ì–X8*@DCÖU‚¹ACr!^2J˜t(Y®úàPfnWÒDk·Í ¥^CņZ W3êT‚ró1Ô­ DÊ Ä´†b&À¬!‘äd` Ϩ;$¿¥-wÞ¿Ð{“`„·5#ÉÈDDgª¨‘“è²°†£ã¦ò‡­XäL9¢¥”ð±åbЃ¡ ½@mæ× uìÀ¸7ßE•‘ü“ £3ÕòM÷|¾%ÕâMò3:%T:Ñ)9{dqÞ3B?Qu ø0.>ø´S‹ÌŒéȪ{îêå,\*m†‘¢«f$ › u_š[5é‘T +¥,‹N(M°Ï™éc5yšy;©2’H¸Ãe©ö¶æOŸtŽªýƒAf¿DN1*¯kgzÊ{ÐG†ÄZ{¾ø`JĈ)®ÖsžãÚà”æzåmäÙL˜Rqøëˆë ܪ]8ìZß·Q#r…köÎà;›Ž¦¦£yÄŸý«UË¿e¥TEUêü“"âj×3y‘ÚÔ7ãyΡôï“J-‹«Uc÷CÖÕî‹ðôú“Ò¿ë匴惺á+`Ýæ $<[ëVÇ•ŽCYV‡ÂªÜ†ÄÂ]מµ ŠŸåC}ZiZ5 Öàd„Ôéé/ tªÿ6({Pð”îã& € Á_ʦ~ÿ&€ÁM…ÅC¹í¯Wœù)"¾€–ç—Ÿ"úL#i¥Oý*íLµNÊ>ÔWP†zãóòª4‰e_S@Ñ<Ï$mÊË>”“42šú§íˆO¸@ æêЖ¨ 9Æ-NýúÈJ‰RNi¿7íÊM;·ù‹.ÚÕmeóÙÉìB–5Úô‘ÁË9¼/ˆ*mqú^Ø´ý¾ÂWZ£ÎgĈ&˜þ’TA)^F4¹À-ùÌ3ÊAÝ Àç§Ü~ÁšgTB€|í®¸Å·ûò„’K·“EëŒw~Ì"È(zŒ†éN^¥.–ÿ=6>$R´Ûácí»:·®æu;!Ne»âøi’,z …R9`,ÊŸV w”Ò©)ââÂBvÒæaÆNôYd èÉx¸Âo¢„O,0ôU:K/ýÅcQ­…'Ëæ©k8èWÄ¥œ'`$®{4][Îí-K@ØŽŸR¨âäàÕ;ÊfŒ’Ëò‘þôy¬2ÉÊŽ(˜Æ3*Úvè2l¢¢À xš¶žÓÁ”޵.îʇ´¯†Ž,Ô¬ ,JU”ÇÁˆ§O]ªo©h›EF9”› ƒØ3²Ù2\`¥ÝßßzÚ½WF³òêž™f„Á³ij½eàÂòß ðK[úÝÈ”G¨ÊÈšÜcCAìy‹Ã~ÊËòû•ÕW‰÷µ~$Êð*Ò7[) +èÁ(+{ã‰oqGHEõ)5¢™ÞÒY­!ñuCQaBbïç›”åè³ 9(ÛJW~§O˜"%ü‘óÖöxÇ1‹`K y"—Íç£ßw°]Êæ¨;D+zºß­çcþDK[ŽsÁ«©é]"ùÒ\»”šG$’Ïv­°Ç貎ŒV´DîívxD§KÌQ«QBw›­Ç¢9Þºú齪e‰d˜VBQ³p%„z-Wú¨Ìº1~¡>²ñËŠ«y LG"ßïþ­`kö”ÞM ½C íu-±w@Ò³š_AŽ\W#WX1vVp¿†óÝûëJ?UòÌIÔ”'ÜÚMêÕZ€ÁëÃ×ÈU Åhæñ’ Xx¤†ˆ?" €Ï~|°¨oýb/"Û˜ë|^õ3–Ê(™yð‰Á×¹6m;[5†ž¼!7«Ñňñ–Ï•¿ý¢Ô÷Ó»I¿àãH?f°k½å&>í´­Í‚æ×kD¼q Ó4sMåíߨø:âþ Ф¸À”oO, K4á΃P²J¨·Æ9Û“ý¦“bÂö‘@qœ– E?³±¬²LÎJ¿âf.ùˆƒBø¨‹1CVŸå!Ñ-žÀÄ =V/¾G›Œ¡³|Šøás6=íÐ#k:w%®°äœ_ý‚µhÛ­•1+èWG3ŠN0WâÈEî˜Û´s­e/`Gw L¤¡K¡t+|·gÞÁÊ>¢qkwJµµ¢˜íq¿ŒPbOú†O ݺèfH·˜QïxvþêB×'ë]ÔùȯgÎc&€|èw®/9·±¡JÈ]?dÔÙê4(`S±lGà”Õø¶Ò}wiŸ8PWžU@sÚ¼µÚµN‡õñœC$çdq¿?ßdÍ™ƒº’M ³±ŠÅžÙ¹€õ÷qæÊAê`2¶Ÿˆjÿ©tÍ{EªûªëAD¡=‹È’†46r.,¡ ¬K:8”SíP¬g;£Ükͱ æ=T@iìŒòg)â®ç¢p¯“DßF°#Ǩçp„­à4´’rÔ!ÇøÎ²øÅÀ#úî8„a%R{YVDfù!ÈMå—<í£ +KùÈfª•WA`‚˜5¨a¯ÌY¾õ¸´ð2Î9Xa¥÷# žò[h’QO¦'Jvzž³a=ÿ2õO’÷J×”½ó¨ûD÷/%yqð“è¥ÃnßrÔä(ò*.„²ë8îšJ?Ê“#ì€&{4#X.q—\DˆtïU„QˆÉ­ï ^–¬Ã š¯Ÿù&…ŽOX-AÙà!¾ærK%Ý÷&Û¸móŒ5â.X—é+7ø€Vß$ê +cZ…†Ã½Âa~ñÙ•r“ùrøÂeØÅ-Ú‡¦Ã=&qFékÑ3@‹TÓzhìŶ…CdþÓd¢dÄ÷Xé–8¾bªÍ!az4·¸ º”GH—±u˜RލPñ ¨jÔåx`XO!´$Ñ<:L}¨™`úHHelúqWÊ5"—ÔFõ‰iùKpX#°ôˈóçHaƒHbz7‡fe¨ŸUq1o]Ñ{«`]Ûú‰–­^Ë»‚ ¾‹w1cgÚcg꾈L¦vX¨‰ÌüîId·¾àÝÿ>n ·ž•dV›õeVôg/OhS³O£ Êw_³¨&ke^f©µj ]:MÒBöݵ@šñüAŠ|¦¦dà¸N1v̨ë1¥íÍ$šQ°hÉm„è‹êBbáÂâÒEÏGÂ÷É€#Ÿt'YÛßynJÎ&’Nœ¡ËËL×5 +¢Q¬ (¤3‰v+›¾ +³¯3§ÿzíóoZiUʧºg³êªR|¡[(… +¯‘„Ä«®«,0±òñ”ƒ’ ã2ùgC?3iθ_F£)”´ú{ˆGyÏŸPŽûϽ3ÏL¹?ÿ)ç"š±y@¨¨Ókôˆƒ‘9)ÿd^¸†¾G…Éî¥ø¬Æô‹aj 4Fžn sôž2×Nô¯Ï˜ÕD½où¹¬QMƒ:ÈÖCø…Çõý<Žz ‡jtvIt>¶¥<0ïDuM:›Se=;´èeªÎól'uˆ“gØ£Ñï¹&¸Üï#’ ?Éä¿}±Eæ(z<¡„ÓGwWCªo#Þͤ\±ä>¾®¡8ýKež³0–øD7å*nÊõžP nDGßï#R|yÌDú÷oÎ#R”}õ¼ŽK ¸ï?BG÷ï.É×Q>s¤¨ß¡QУY-yDKÇëÙÌÀfžaˆOˆëìÆSÎÍå=¢E€~IxEê:ÅZÁê4ç©2_SîÍ„™ ¸Ïø„Áu’nµŸ_d*ôwlƒ­ƒ°6C±¸m,GóF|ãÙûÖ/Ïœ½{ÿ~8_3ãXºÂ±S£SF•¥IáÊ5j$¦MíÚz‹žPwU®S›¢#¾%àÚaŠEœö\«v@¸¼IJ­‹(îŠË-•D´›¼‹×!ä+OýÚŠ™kµéy ÐÀÊ8ý÷]Ï \ÞóÒ\Æn>J={Ý¸ÓÆF½»¨lfÖœ‚tSåûÇN +¥ü„þ— 1r†Ñ<Οäu“ä5sÁ©‰iÒM|Ý£'Àv lPèXÜ«fKO*¡¼Ï•Ç“Mé$½ìeKúÇo–ÅîÏZ—ë0Ç…<˜(…8?%<¸ŠÖý[Àb …N[ûs„ˆ‰†Ðá“õ?ü:z+}k5Õ9_£t }+ÁëG¾©¹¢ˆ‡çG^9`•g7ñ-‡¸N½xþâ1!û ¡Ë7—¡ÁÐ-©.³ ¿®ó¸/¡.‰ªå>àÎ\¤Ä£ãDžýÓu¿„v€.òIŒ^0ô-.Ò0»ô°›V‹éouŒ˜·ªñ¨;t‚Lä.o]4 +º¸:´Ïu©8°(n™z3¹+E ™Fœ‘&?Ë €†­À˜òús©dÇJÎÅÚ••†ÁK⎽q]>®ü8H1ÀXŒÐŠuÔïÅAù§¯ˆéÕÚC:­ŒŠÂ+Ì‚<•­0G./þ%¨}Íñû+éµF¬ µµØ6 XÒ¢nÚÈ  Ì xOŽu(†}¦ ²þyÚKþºÑ~‘GrÚ›ÖSJòÉ¡-VöÙÁkÒô;°•X)Üë…V˜šƒék:_óûˆì´Äbèu]3~sâ[ 1^õuJ…[<%[)…–wü ÜJèýìC¼éÒw !»éÁ®3:ôè|ü)?û°ÇÉyff­ û |lÇ"²ÍLDßáÖ¿a­†’•Ÿv׬¾´Jb‰?þPVïçS±°¶³ÎƽÄÝ2ÓvÖ´}ÃÔuj›Ëå¿ýó÷«s±¸=>ö…uìŒ “ÊêW¢ZÙ:kyî°œW|}-,­,â•éB^Jõ¼Ë˦÷÷¡të–ÜiLŠƒ«J4¸3Q„⥓…!†â€6©em±OBäÀ¡DÝÛ§Vž6eŒ7Ð*9 Ÿt½¤š.jãX¿Qª)•FçÕ}YŠÕ–û-[î1 x%² åùù¦«Z• UÂu‡t]mÄ&IöäÈœ8îIÝ£ƒQ-ÁóW2•¬ÒQ%äÞ½<ð ¡ÅR|ï†È1ÅÙn¼(Q¼6R +{ÖTyY-~ŠBhš‚Œã‡zˆ.ÞÑ+ñ,毘žQ‹@ Ç~¿PìÎ<”?¤¡Iñ<Š;¿¢Š«¿pËhÝ{0¦¸ø=|JõÊËýÎ…ßʹÉ?‘ ¹âU>Š‹œòz"×'®A?rb.Ä—è*U(ôÂë"Æ/)±@¢UÄ_îÅ㬊­Â¡[?x`¾ùÔéΜndb´Ú€HÖ¿ź–Æ&“Ã¥|9™AoJB= !'ûD׸Ü ;í¤õK&›á Ç>¶Ð„–ëSÄ»GRæßZ¬¶©±AòˆI¤ÅSžàXkˆ¢òW<Ûå³@Dfþˆ&ý§¿ôxW§Ã¶\ð$ 7>eiØ‹PŒžÛŠS8ðÖÕöCT$?§{âCx×E@$\·Y¹ÝöŽRg ?& »·XéÊÔN0Ræd¯ñ‰,kòŠˆ_?žà7žPJÿÁd¡Wb¥È$sDEj-€½6êP#rqº°¬ßNKs«chžÊ¿Ï((„·@O­t‹%жŒ5[DZž._íÛÆXf!&vr`˜1xÀ_ÁbçÙVŠ7Á‰Äsª—çÔº—ïi?} -ªêêºÒÛ‡ùJ¹=Î +wþ/ᘛ¤3«§U.NÙ}ô°o¹-úù0äd9iá('Bt6E¼g=ÞõõÏG©  “nêöc‘ØJEâõ4VàݽÇS*OG©<=!|êöšÔ(W½¦Òš8Žº&ñöë©•çO|JµCÖ’”@Nn/‡Šc”¨jÇúßòiØv–٠̰‚q§b®ˆØŠ 0Ðᤌö Âoº‹YU*Bül`8ø•ºCï>JÆê/¢r Múž|j›`À]aVSE9?1†1ˆ}þhvöêÏ"Ç­r=:õ½ÄB&(YÆï Hµ,œWöHRÆÏN5—ð¾¢Õ[áÀ”¶¿›yèÓ?ÖïšÛR† W9hþ0².(ýCÏØÑ7mX77Œz 3‰¿ù²`k°Þ°Î§]ÿa—ÒÆm¾×¤p2ê Œï)!±èM2(¨³ƒì&cª OXÛ:7­¦¿O:7D!’WáWe¢0ÖÞ¸þð9x2G»šfO0ÕtÏå@„r×+¹ž17Á’(Ð^@Eî¢Æ 3íaQÝj}•®237’P½W + ëPxqíÀ¿é?s;×£æãÕ ì£ö5Dé£î¼0׎þý€Oº¯Å׃ªÑ¾Oq9j5¬¬2 +°róW6Æ?sºû.ðNL*Î^·¦% +nç +ng¬ÉBöºâŽ!©–ŽOIBõ«^>|˜2ëØŠ"nQ9(|ý{êžìÈÉÞ‚ŸuMëóMQ O‘”O½ŠÞÞw¡åqXϙʢãäÐz1*âƒú#×­mr‚JëtÜQRU*b6ð®;xË?žr= ê>>‰t“„Ó !,nŽu¶ÃÏ@¦å]k¦Îó>U7Fª˜kÆ,½vh/—pöíÀ…(É]ï#öE¶‘N‰¦W:q¶ +‘•J,1d2ë$ôLÑØöCmÐ_„ÞJØhfÓækñKÜrz¬†(ö¡¹†K[W¼ñ)ðk#èÈI^éèOÓëØ»ÅØac„šPë~è,]Ñôß Õôd½s%;¨Ëâ•3½u¨ÉÍ“Ý.Nv hþÒ5X·?á^ ‡Š•Ö{³Wù·Þ)\ Ý4ج×Aîã¥Å=ÍrÙļ.±ÇÊMdql.z¡°r`PM†©Þ5åol@¼ûÇm@z¦.¬eÍ ÊoìÓ¹‰c} Ž‰Ò˜¥¡+¸(KÁ]IøóÇ}ì¥û(“ÄÔl·Œ±TƧB°f(¡Å©hXT_/ƒEn…oµ7”üAAz{£Úxæt‘Ò¥ +å‡\tÖŸƒï§zñX{*r,½KzyãY\?0ô4¾ïJXÿ ­#nu¼…(˜²Ë°ø€0Æ-qP y®2xÔ8‡ÍY(”ªë‰×¢Ð[öËzçûý€8Èûû±ƒ:e¿ëƹMÑjj²C.dÄ"5Cg7hþnc@{ÎÀP×èQ¿A¸åƒm’@B&÷;!-ó™ªmƒDŒÛ‚KV+@1ŸâIhX­˜u8ç>Ýpeâ-q^®lÿbf¦åü]ÄÆÀvÃðmDb­a=¤ç©lÖ™éZŠÇdŽkög•~SáÿZEþ1˜Àáªðòz  Ó]níMS¤ +˜#`zUOõªDVü‚\7ÈÎÜ¥T ã\´{ô¼ç° ½•øWW>… ”ÏßÇ¿—jK‰ÉC:è;Ž|êÎ8ãX—,ª½’?&'ŸÙÝÒÚÖ(JùÀU%©I/˜eܨÏ;=n-y ÷Á§ŠÌÓ)’æ*àÃèŠ¯è¡ õY5ó/÷’úÜãûgÌë#È<»ü™Àä~8}Í=Éþ[w5ån¸‚ý¸®úæ¾ÏÑmûù>vœéCùW¡ a2ÉŸZkÃì–o¨¥z20}izÐýÊS-W4†òšûͤ6¾´IcÚ«M)Ê‘¼ç'š.50¹VÒÉœæ¸UnñKL*Öhqüw‡²b#“gJ†ƒК&H 1™Vñ™¡]=¥Sãk”;æÃìÇ{ÂfÜ }Øpɺ B÷§ %­’ƒ.§‘Ç[ðn׉ +“ËТ‚5îû;Û"KÖñ™&Z¤•ÌLŽe¥ÔÒÑ`˜ºÇ!*³¸$:/sºM£>LêËáâŠ`GbÅs åtí ¬E÷BµcQS5+d¸Õ-“ß,ëðjºŒòx Ì{ÁI1ÌDÑMJxkbX +(‘.C̓¦cØ0¬s^–QnÌŠÖ–ƒi9»¥¼~Æ¢{À¤- +¼e¤hn¸¸ÞkÙ;=]W«û.ÝTäXuCàN Gç¶Ö+yô‘D(D( ‡ÃOJvß›`±VžƒJ&6¹çY„MC9YuºusŠuþ¢ûTžuÈB˜êàöj^ÝáÕfªö4rE*á¡#©Ÿæù¡±Ç“[ËX%Û_b—v§ÂZê+¬=‹†÷9xekt€µ'qÒõ<ù)å´Æ$hy4•d©èµ"ÕyµÏÕå͹ +-¦ÜÃÊ2n7ËßÎmtêÁ'¬‡ðn Y’ßÏéœ;$»pêàÅ!ú_a›D|êÇ·nwå*š´ï–÷Ù{¹1î0׌_-jDì~÷[ ¹]H²ôVn£ÈØžÂr>?!gwǹŽr“6Èa¦40Ì:)’Íõ_¨ãã™ê­üz rÖ÷¼sP(½z3âÌk + +~\›HýBëÈ$ûy°EAi½ˆpR ëG ƒ!oÚ;ü‹éþ® +°™%t6µ¬¯+ïLq:»¡!\¤95ªÏsQ¾ÂåEdY$….˜\ô¯50„líBÅV}lû0¶K8¡$w¡Â½1i…gÁÐ\)ĕИèB«ŠÀØ:Ù!ÂØ2@Á‘ºŸOïуlßkm8UZ"UàßZVZ=L÷1¤ÌÇ-¶©{>\VÖÜ®RN¿!ðUÞÉ‹©î÷óÒvhשîк¬3¤Ž7¢láX,R¶v«ìT,‡¾Ò(ÁßÒ¾Јw‘ÐI4¸Ÿ;z¸hÝ%|"Ž…†nν°ju yè-ršyˆÛTˆª•ÕÞ} L®ð"ä"¸Ö©îKùF!Ž´ë®;á…€Žm›4ȨCÎÑúà3ëfÞÓ›)Ù‰)\ð´hz¾r„$CjMˆUqÝçÆ-Â’<… ÚY—ñ†$×Q’P¯ç JÓZ)v|T®ÍqìGÒ…<®¬¸¿Ÿ/°}Ï/è‘€4Ìk~ù"½‰¨OÙ öVEgây¥3(:ÉퟬãÙ²+ˆÀñè\äÕƒ­—I˜ƒ$~À£Ñ]—܈He-*öðW¬¤7Ÿ*¹È4 :rm$[JÒ.rlkÛ?Tjé1‚>Æž&2S‘´Þã]¦²`ž´%Jãí.·½R qj+Ê¿ÐWv YfŠªy½dÈîX>“µ]¹h— êZpp„‚J´z?°Åë*êï»Ò!eJר'£g'•½NêU`U,”>¤õÂtñ@T1ißÉ_ NÞ +9×O½çˆ8t„SX °®`ËnÀ×O~Šq9²ãäµ»vGœaœÌ^ð Bå) µFá‡Ô¶FY\x÷½kňψÏp8 â~íàºÈßq‘ ÌŠve”J•½¤µª#¤éµ¨Ø ÌFK1\„¬+z¯pZI;£úùM±:ÀsH>ÍÓ¥+r€Î4;c¡¨ë+)aœ8®|4¾ +Ê|¾?ÏÛ\€ð<ÉWÚÖ‚_ˆ´4"RÂÔ²t+"‡ÀÕÄ)ºïWøFÑz«-£CnÀÚ=*C$¼²qÍ;繸ö]$èŒèÕZ;ÿ«U–O0H±|Zñn=”3l ¤LdëªÚ|Ëw\ @äú²êžø’…úæåº*üK|üÀí:ÃrK¿{ý‚cüc¸À3GÔ¯`‰±h{£\u{UH6¯3d8Àw Ú<ÍEÎ0÷îò5¾§‘Áþ&”äÑ«æ4`r¨`5õ„Ñ‚”ÑòæŠ5N»ñAïÑã?íË>wá8Öjrþ¢Î?NC‰â#bi$¥ÕH‹µ°S/|YÏÀG¯§%(õƒ…0ðãŽM[/Ò[¨&Ü¥šp[Ôo]oÙ¡ç1Ê~¢¢V%à˜kíʃ¼Ù\Ö‚©Ã•?Éš5?iÏŵ̅¯äXº-#hw0"¢õwÿ¶ˆ­Zó'ûÔA¨† cï:K±¢E±â½,ù–ëéZ Êô €dõaèû†WßÄÞ^®C„‘QÝ5hWGÏRª™­ä¦õ'”Ù¢:ÞQ.“X•)¥z—·ò¶çù|“&F¹u«ž}—zö[MÅÒ¹÷pd«Ï´8¯SU¤#ZÄÈOÑ8_@ÛKÂÚM ’0>>]1¯»4 £NDíŒñ¶¯m­-2=á ]&Ÿ'EþˆËæ¹Õ2CØ So ¶tÆ]NËeøBÖéènú"Ü%!• ö›Y•ÇGÍÁIo9´Ä®ë…ƒý“¦óʃ:£Púä㮼è†Îünáy –ieæÁˆvdOó õè½¼0ª“Ýàå,e×:§Çʉ”iÛTÜ8¿€`ÚiLßòbY#>î¿*!]QBºÊ—&ä" V£Áy›§­EP +ñ‚"Ì“fìó]Ë(èÇQèDZÕQŸRfh±ù$ÌI,ŒÌÍ‘L¹Ù¥Ÿ;áR ¼`m´¥ÿ¤Sâ¡›œ¦Yªk÷ócØI/ªéþŠýÁYRÞìV„]#'µÜhH%.P@)ïùTËjØš"7“ îkë82êæYH¯ïyV7ì®nØ,[2É—ÍrQ:l +Êž‡#òC …=Ÿg“BU(w,¶óˆä1'Å=,ï,‹†=0i¶ÓùV8°`Íôã.°UÂDžUh¥Õ¡O)%Ø[qÅõ8+‚}£ô§pŒVv#· Êí˜!oy !C™-¼!K[%|À @ +úQʸ§6ʱÖ}§¬qŠo ò‡Ò¯<©å^‡Á7Hœ:àXE?[@jןÇ✭÷ä=ëãqaPò#ÚY#b¡Õñçøõ–Çå@aߊPRï#Ü%5‹!")o² ¤¼euü«µÅO’¸ý‹À³}:·}‹ £«¬yu‰Ýâ—EÁþ@Í•nDŸfÊ&ÊtêÓ²Bóôoï˜ÆO¡ ñaB©‡9Z¤!Þ)L('¦êøD²Ñþ‹2s@k!d°N`Dôƒ ô>CÄÆ‰Öýù3Ö…þÌ({ÝŽ’âÝž'‚O+”µÌ…ø®À¾kÌlBžºÈ²œ¥ìv~~ + !®ø²{‡Œ®Ö‰ §‰ÖJÉôu'@¸Êlå0‹ÂÓ½÷ÐÀt‘%,Т{Π{HÃgî›ÅÌfœäóéüË®À¡`æ—ƒØç…ôÞð„;rÞ+˜cpçÑÎSÚš)’pð¨æoâá7FP¿öz”uââ@ØË°&{X“HÊíÓݶ@¤TªºBŽÛO¥þõSCÚ3ß3bÔ{×nŠÝ]^Ô¯°˜Ç“÷èG!ƒª_Ü¡„ü˜T™ûùý€y; *O÷åàæ]2—˜C“âôâïÒ«m¥é÷óàN¢,ÉÛªBwª¯íË<’ŒØÔÚ.üzÀ˺tŽß|êÂ$˜ýâµÀØ&¥T«üÏ,ɱ&ãk¨ß]„žø8][hWHúóîf'À׌à…gD]ýŒpþE!êkë ràtû&û%¹?g ®ø-?¤¥öî%hãÕߘàê]d¢´}àÊ—ÅVç +qEx%à¸óñÒJ­Uäôzƒ›¦q}ãÞV’…öï*:­ªàõÝ=<™?<`gÿ)?B º“ xl]Î-nÀßÞRgÒP“à"nÐC&õbgÑ9}‡ãLO®ãYWJióØøí³ Á/e7Ÿ +’•-–ê®+Ÿp£á{6ì|˜éŽP]]våµÅ­°ÐB‹ZLJ7„¿y˜¤ìÝêÃmã¾w‹ÿ°ûÇ»›ˆ] 3¤5é£+4ﻘY™¢uMWu{Ùò¬ƒ’W8ÂíDEz œ°‹'Ò•îeÂmœ=¬¶õ쇫!ÕËUˆî35w4ƒ£=AX}t')AšÂ€9ÀÑÂ)µ ÝP^Å +žnW„ÿNŸ` ÓÆš¯aÁÏà?¹bgVëóáZ™Ô¼?áR­?@PD_Øð÷Ü©­”¤êaŽçí’ÌÔeQ½BÛm±p —™Bìßoÿf'j%ð°ß¨ÅÛòݾ‰TÊð4ùõôâžñDî{ÅÅ|D€^ý¯ye_Ÿºh¢Ý +æ³Dù»/"sS½Ç^zîW1ïb™`¢Æf–÷4 TcûzÀEÔ‹:˜_?õ¦ŒL¡ÅÜcef,ï?  ÷<ËVïáƒWÀ“G(Ø=X ^PÔP5^ñ¯ô³B;xžÈ4µ}¶ýákÎðaìSx*µÞ¡,) ©pÒ%ó‰Ëšœ[|= + +à”P6õp¡3 ÞVÔõóß8äh…ð ªKŸþB¾!E ¥d{PÄÏû^Z”¥,ÚÏüýpÁ¤ ýÌMæ Š4~fëºp飲•)‡ô5™œÄœ¦B7üø{-¹G#Ġ𻛤߬Z…Ž_‰-s®Op¿ú[ %_¬­<ÍDÁz&Ô†5sPÚuP“H¿ý°Ê¬¯‡§ Ĉû©/02Aw$ÀNtàû–íÈ'Ò|¥­aås¤¥n‹ ¾1Ð ¢^Ñd8˯šåÒ=(!ú^ÀÅ @«Û*®û±’+!ôÔ™z~«õJOÄW¯È³ÞX•ÅóCÉ“¦~=g",žó¹ÕY¯"üê–F±”8·–³<Ê·‚•åM¹ïšAb1SÚ²ùš¹ê~0@Mv{¢?õxÕ¸Z£Ýy}‹°Ñž¬wPÿÊh ¼Äýw¼4xÏDxð¡6Öž¿ý¬©Ϙ#ŠÎ®s)‰$¦Df4¡˜É5ýú³55#¾K,xßö…0… Ôà½]¿³‘³ñ$ ©¸ÞÌK˜'%yoõ¯5#NjïG_Aé…­±°"œ_U +à„ ÖEÂÆWÃøÜ£D…ÌâŽQ¤EÈá×]¸_b“XÓ_Æhpò¥^€‡µÎ¯#>ÛÛõþoFÅøÔ”.åÝË ’(þŠ4¿uM¬õ~ ­dz+a¶‡ +âxH¾])£|RÄdà‰‘ùVš'±€ÿg¯^>¤ÒÞŠûd†bc¶5x¯RˆPq·2» 1˜†Ã¾ö4Ú<Ç´qÔ·JüJÝäŠ2B<Ézq¢eSX +œFPú|“UåõMÇ=!àÖIå…õäé +>Êyé@»é‡Î#ÆQ#>¯v/"í[æÊu' +^Ù%DÙ¤µ„œÞ±Ž/Wt Ö6ìyVo]öUtY¸W çÿ¬•õ¯u‡ÐZH™Û{•-Sduq‚ø¼†=ƒõP­U=þDšÎ‰:"ÐùÌOÿû¨§E(í#‹‘:åt€‹|*}[W‚™-#dªJUÒâ&ºû d·OºGFÙ`JŸÄ"ÉZâÑŸ9¼"<-Ë+I%»5b(úÆEŠÀmd÷g½Š!&Œ3êÚYœqW=‹­>÷U]|!”¥„Ô}¡¬Ã¹¥Ÿ®€w~ë©’ìß§eßÎ+ë¡EqrœNª”|—vÿ`¾åÑnWð5A(çld˜g³;¤‚„b­÷åö‹Ÿ‰#ºBn6ÂOä¥Ekã õú& [š´ê{¾§„£Qö~!= 'ÍùëáÛ9óãʰæu±{°ÛyâòÚZä`à):G\ [;Îå÷€çÕ’¶|:…‹Ðn©-äˆP}ˆå#U^hâ¸ÝHà˜a !¤È†ë…]{JÉšP¯ßx&*§ñ÷Zk©Øé÷{W³ŒR2=2¨zŒp”z@†˜z¶ñ†ðÄ–™' eÚ]6Xñ]Íè#€_)nÇk”T¤Þ›^P]K(èŒ ;û,ƒ-×J +Ü+@—3t:ÁºVënâë’ÌIçåJÚŽó£C2µ¥“VI+ ííëáS#J÷­Bï5i¿h +œ2^/ § +ÆÉ±×ÆI«ÛE³ìõ40Øûæ +õ[ƒE?Xñ%˜#}‡¬Þ‡hÆ`ÖIû˜árÓs†èÜã“7Ês¨?é¡QðS–y–ÁR§•ž%ˆcSµðò P˜ndç™g•¾‡äa9“ÖIæõ4mUmµ®îÖ›ƒÝÓµ£ú)›À¿9Û«*ß—0ÞÖ÷±29ìHè|†•3=. W-~+Åó:Ÿã}³6{ S¥Cî?SZÊÅQ®Ѐ’¹÷7R+©VVRká@ÏPçHõLîÒ39Û¾ºŽsh´HRiU–j‘Qò,E%Hšê{žÒjfã.G#‚1è³:X™žÄwsöïêý)6%@j#¿¡ð\†ôªŸ4ÏÈþÀ¾­éÁot=@Âî 2 ͪ«ÚZ4 vùìÝõËY°ƒŽÜzãÔ„§ÒK…`­Ó¢ G‰E  R$;Trx[ÊÕ+öVbcTßâ¥7¬Wù:ù¥X†È½Px-‚0MœQæm%]M¸¼(er{LÓeÒu"ò5U9°¯‰r žÿ𠺚ž~»¢L£q­.B‚YÓÜGÃ5V¤µˆÁUÕJîómW¹Ûìšζ”×»ìf²,u-XËx|¥T äBéý,ÇóáVûS–ÞßaÃfCVÊ$fæ,o vŠUU±Ð ö­³G3_>ÒÚŒ>ˆ±Å™QÅ’%ÚH©o½R¤ÔÇ¥A3UT•Jï-/‹0 SãQª••ÿþ|“fÌ3«ŒR5']U¤ßxµß%›Ñv´üyAÃM7÷º{1êmæØ÷«é19ceºÂ0ÑR„T-ZCε8].˜g)bNÕtójDÄœ|P„[DéȦï(_TŠ¢ä)Ð šn‰+J8òˆ•F:ÕI§‘Gòrgd7*_Ä +¿s3óf”‰Tf8¹â¹Ýµ ¹ÝxGµ/VJpY`úWK»Áü·¹Œ€Ù„Ư¦Ëÿ˜ƒ]a±7{:Në,Ø"ÜG›SjÆ_§Iù=Ñãáù݉ËCÃI´ÅE»s¤cû\%NwR(ç +°±àtPU­v+”¹o`4ÚY"áR·ñWçÙf$ƒ›8ÒQ­ì–V6aï·YtÐPQ -ÍßœæD…'Ϫäü(‹"Í>‡±,DŒgÝãZ?žT<¼KñðN5”(÷rqh¤“1']|ð?¦ ‘E¯Éq>?3¤Z–^ áJ¸víWc¯#¦Ž9^–¼»G ]NÌüFû—¿`mðÞÆ¡ÒçYDņðÿ™/Ð6ƒN~Døæç;‡Ž™ŒÀDs¨;y{@_¸ˆ,мéOÂK{([YéXЄ(VÛ~/Õ6¾ØN&Öh+Eøvn ¥Ì•µ›Ÿìz˜JÀrš»xHœ¯€8nÕeú§«Ál4x/ÒF]›Ã‚èߪ@X=6f‚¼Êã^Ø ¯ 9ôuüáw@WÄrPsHÁæÊ=ˆÔò? ÉA/³§” G DžASâòÔƒåŽO8»ÉZÞÝ’7t·ÇåQ.ÑÐ!죣’÷—w¼žôÇz +FCÅy˜^Lí§ÒjÙòŽŸJfÙ]Ð5î‘bˆˆ‡œ=ŸvòB9#}¤*¡@ÄÚÖO}#±¹ÊNDÒ~eŸÕÈ(á6Åùšß|©ÁÁ-`µÃ D_~ËqœO™Šz[¿ÎŸ-‡,¤¾oÄ ²ç¯wtÆÎ«[‡Û~.“ŸØÑ¸ÙÙžÈTÅDZXÕݨÝ;ìoÎò,AŠâì7=ý@!Ú“¦¯ÈÖû…ÀëïÀëë™H+Œ§vùgUï5¢;f³Öå9\Ÿ'=½tÖnÖZEý!q%#Vĵu®wçI<hÐÃM€ƒ¼ÞH&mGE&Ã"düŠŸ Üš™:#4^waà„=ӫε¦VºËò狟+Öj„×-ÎÊá£+qŒHØÜîlúL;¾ ±y$+†ÿT´Bб’íñˆ¬ŠyŸp!ï8L\G¨#©$È¡¼Êzv\ÈufR¬Íþ]ú”±*OÕž`ø¡VKQ¨q¤Õ›>ȸ[)”w +;}TßíJ¹‚™™J¾¯‚惺 +jòBøä7£Œ–ðo‹”³°vå!F¤×úö#â»Uª ”ê#DÞ Þ_ +€€°Òr†–~?Ó©[9wå:.°v%—ôƒ’ÿc/§¬J¯×K1ñàá4ÅöOêÕн=ƒT¿\Ëb¬W8ªÍåJ›¤…yšXƒÀÆÌ­ÇoQŠ +'‹‰è¨µ@'¢ O]¸"¯œöùõ”³iÊ.ˆÝ1 ŽU®¼á»„q)ú½1‚‚Ú‹íƒâáó„GY†R*÷s$ 1«Nn«K\Ú›WÀ;áÚ; +-Ø©ma`ÅGÁŠgÞÞC'àçåKÙãK‰µM {þ_öÞt9ŽãJ}¼Cÿq„ä@¹gÖ(üC„d]Í@–®(uÃá`@@SÄ ‹?ý=ßY²èÑM“D7Ôã±Ù8•••ëٗʱî®ZÞI#Ÿ%:ŸÅ:©7•´)gJºT‘±Éëœy³pf:>%c”SÍ8Z8¦ï¶¬â!ƒ!:ãÆp­ö‚4½•±G=ÇRsW¸ ÉñbâèÏ-$6L‚6pRžÊ é½ +¥£dJAø?g Ë\"ŸK¢öT‘Ò^ìV9÷…Ú8»k€Ó¡ ®U³ò]±,³ZûPHÊÉ^IÂ?Ø¢ä:c¡~$àžo!_rSà<Ò†ý„*ù˜ +êvH>¾PùZCû]4@"8dŸ!æ&y=®·]9'·PÇc.èJ·BŠÁ%U :ÑYÿœ£ ˆìô¬%NÌ>p­zN¤ÇWXY8µ.Î1s.NKt¢ÊÚDø¸Jœp ¥´œé4‰ÖÉ%)`ÁA-pãoÝøåÅøåX6PãN‚s€Š BŒ+ª,I g¡n‰«‘ï뽋¨/µ$pRrUÃö8Úåê,pŠL±é¿# 7ü¯™D°4Œ¢ œŒ]Ê8Z%æNHX¥‡œËzŸ”ŰYÄ«Z šaeZðݾ“Åv'yÐ`àHEXõÇ©˜áH–+:_vpo8=E,¨…+V"á‰†Æ bÔf[+0nàØ¼¤1àBºßy°XñŸå@Îó€ptõÍ4'΀Ÿ5€õ#q åà€$©~gbþ%÷«' %o)'àýÅñÂPÀ²#h¥V ÐÌA5$î@(”ðuÊPU¦¸œ"Øú8F—!Ú•K<-$r rq%V©HØ[”ÜãC@óÐø€Ãh‡h0(¯\$ú‚žò2²&Ãñ y¤ÑˆÓøÀóYé¨>ÛÃC1W ‰ÜwjÚË’ŸÁa„(4P¤WûvˆÉ…_ª‹0ŽA "%qЮqB (8x“8ä7ˆõO#Qä °—ñCP21ín`AEdf37”*Y=Û‰Ô¥ùPWäS;¶”†áj%¹xAa›Û¾zÜnå5l/Á~Æú¹*Ùã9†(ÊÒËÅÁX¼Ô»æ|Æ8'5K&K)"¶Ê¦• ƒ¿¤Øšb£Éy“í )N + ‹ Š»÷‘ÙëŽÌRqˆ•ü ÃÆFuÁx ô•ªCH„Ë…‹²Ö2zDn/-$æ˜+Ž-@H³FðC¯Ú‚ãlˆÇ)~¬ì˜ë)Q%qB²^Ø`‘ ‡A\¸c¨ŽìyFœ@Kœ4;?Á³EN[A '¾œ<]aàÒÅœ6¢%öÁBú…ŠRcAª§5IõO[ÉM^yi¹^všo¡úxöÀ™{ÈÊ{®ûµººÞ ­„ë +‚k“šÆ‡Z¥EáØ„ÆIpŽ ºŠ“{µ‹ïT‘Éyl]ž/g &j=°Û'vœ]šÔ$Ø” çTœ–¹Œ§}d¿²²ˆ½5‹;ÊL°±Òç_„XÉÕ¹4;˜Ïbá@8{p7­ã•}¬¬°±* {Aøš1’?»þsõ‡"~4…ŽqÎøA„ %k𠘾©±)~Qo•“ÏÞ?ò€]Z*×íƒCí & lv!ÂYe‰{‘µÆõÀ)¡Ùí>z³áö‚!sGOq–-—%Ë—úÛãtìæu2ü[‘±„s‹ç¥å¬ix9 U˜´—4Ñ\Žýˆà*¿°ÈHnR~AŒ¢SÏÎP4Û#¾Øú’=g"@Š¿¬ËTxma¬/ü€³úb™8ÛÃZݬ»âœ$𲑣lý¹3¯öÉw#åÃ!óCÎ7®{ LÆî¾W3•š‰°-îU(ƒH‡66 Ã5攨Üg©6‰œGîa‡ ’é¤N8_ {€²7;óc,Ág f¯”š#Û¶3+»Ù£ÿ`¿#;Ó‹ÿ8뵈Lfä®d/SÞ +-‡î&éŠ#þ€/ &ö:G„g@cG6ÎÈÇêÚ€Š,ü€Ï'¢Y5`0ökGò ø^Pcߢqàdfx€Xì +lä…‹°)J‰{ö+ƃ¦Bò%ò’ø®¼ñH˜-ésï^ ¤ôMh5 »ˆn¹;T8ÃÇ(Кjà$['¶A¼rDÌ„“z;^.$$tÖÐóè3v1@(_äªW\ïˆ ìˆÝáÞd¦ÐɱûIC”ÁzK\z ª8‘€{&gtÇ•¡‚cߘÆé¹ð °9Š1¾ùͲ "PGN^U|ŠäÏ…ó2KrX$ŒâTo•öŸpâÒùºá²ŠƒN¾þsQ,Á|r *]4/flZljc禂b®þ,RG+zs¡*,G±Ç”¶NÒžPQ2R'Œø£ý›G¿i-[U´>ó\Z ìzd÷™Âzd ãäÙPgDŽ·‘ÚÈô AR8ºFm pæOw.œvÝàô:srvxÑ܆J Çâ«;ŽÓ\‘È‘4p’5¨ç¯ù Ž‚l.Hnä8ÄDy,÷Ôé…•üƒÆó@PÀ>úpTÛCŽê“²(¶Q ¶1_}婨k8I¶¹7ЇâLUÛ…,œ‚8¾ i¨á¯TPl;±Whé +—ןڞ•xáªZP¶')\‘¹Þ¤¸ÅÊP±ˆžKb¡ÆžxÕòàLi½ÂVˆêLËéè&#î–«q‰í õ¨è—ÁX|*úbè¶€8.(¡Ü2§ˆ¨f„uÊì›Ì‰™=S¸EÑ\Âb f™5‘¸¼¸ßpÊ]ú2ê¨1ú*V7ƒ('2q6AVAk©J”¾±ØÈÈn2…6pP÷Å#šÆquÄYˆ¤[çò®VZ5z‘¤§ÿ{ù><„Y ßB’AB("çãV©:$Çy6¹Ëiühõ€%îWÊMÀÉ)sØ; +¦ã¢ÛÕi‘§h–3Ó MžÁh*€ÏÔ;´4So•:<„š$sU+͈Á…0`r†¯›¾$ÓÛDéì¨ÚܵÓ|bâÌþ*Ub> y±¿JàìEñBa [£4pÏè€CR§qç¿ ç†…®˜­?Èl-7œ> ÷…·¾Ä¦ADƒX;à•åú‡ÀÓ$yÀòĹÔÑ–3DØYÂA$~cɹbÇ"p0t‘ 5âš8¶ÄÂOWö–EŠE½C¨±äY3‡zx™f(±áE¡î± C/Î|ÓXÏdiƒYÎ4e“d"ë`e}"Ø^ “AÂB"nÍÁR½ÞqNU‘ªDMT"L Ýa6.sPºF0ÁRÁåp$²†·5,ÌNpÑògöW3 ²Lœæ8EIsÌÖÆhYÆ¡q°ÄH•Ê™Q 'gš= +îzopÉ7]TEËÁ˜Rëe0\TI¬?'×o–Ÿ˜WŽZ"¹N'%²PƦÁÈ@[$´ä†ÏÈ ‹4–{ìWÉA}RÕD,ÂHÐêD÷%‰¥ÙmL5°¡I>dñëEyC[ã8ƒ¨;Xx.«©¼!ë1§7в9b¨­u„Ðv’ +HŽÁM5ÊÓ‡Äj(V‹P,{ÂY¡+LsU{™Ñ§œC µ…Xî$8SF"‡«æ‚úH÷+Þ¥šÄHÕjC¹ØYTjºòÀ—!1šÕS…¦/@h©AÒ&©Ñv5Ú‹âm(ðY¸‚‰™+´˜!*è°„]“ÔÈ™éÔҒ龜Ҝ*á Œ³÷xØÄIÃHPG¼Ž“”ÅÎÐo5þŽú³&M±»ö2>¾ÌƬĥf$6OÄø‡*Ý‘]€Q8N3Œ¡RC¢?9ÎÙò‘«CÒ0Y¬‘Ïy £[+þfäåµ›ÂÚ lœëKR‰Íñž£<¤pÆÝ,Î8• î>,œ—yÂ~€föþV,~´,Zl?ƒUN²-èí8½<† 6RX ¡ûÜž«ƒ7N𨠙TI¶FÇ~üÓI(UBÂUÙC>~Ìä°âxYg!AÁGˆ7@.@˜ÕJ# A]¼ç­º.¤órsðƃGÊñŒ·$⤎”YPø“ÛAåÐŒ”á=‰îÄ­Ú‹=)³þ‰£.§Báʨ|j2‹‘uqµ»[¸;8\²!Ûïi¾Sx«‰ež ßG‹…ºaÿÙAÍx à¸z öJ/öE)¶æØ-™áQ¦ÈQétN °³kûx ‰…Ê(MT4+dˆê›t«Ð˜³ÚÀĺ%IBÊ3¢  ö²º¨jé„ aésÁ{<$6Ÿ÷ ½piF©øL%%+‡&•³ˆb¡Ôï„Ë|³jv –2õêfb'fVÊò€àd©y/‰VáWA9K2TE ãà÷£$Z•КA=)±ÚI +ü­ÎÊ¡f¤m@¬?ºkòª0H\1HC®C¡è¨cºVvd‡ß +RëÂ^%ûkå€*“SÀG+ oDÌÙƒ ©ŸP8Ç…&ô¡—uNÒ‡X?-¯Ç‰ +9}]¯äX¹'Õ ¤úRåÔåUż¥üЋd&‡û9 i¹dš×è"ØK‘>$ RÈM—l苈QM¦Éaå Û$áï›$R)@³äLDÙݰBPýp6„âøS{§hÊ%õS<úÜ>¡’â‚òAK}%xì¡.(¢Ø&ŠÂ¥ˆ³³PËÂWÞG©JàÞQÄŽ W -5xH„ÁFÑÏÊ÷®ç!Š’Q‰ xs Sdû££ÅJ¬*Ù5%Ý:Rð£,+lrQ<Ç9Ê3hE,޼XÑÙF‘¤x"ŠFyÀJ)øƒœ°j’SMW nET…Wâ +¥æàÃü!HœGPN‡àÄìþ–À˜ËôëÄÓ-V6E9I«WoÒ †(#×BB.|d3ETwBº…0¹+Xì¿C¡…\¼‹ŽîéÇO>yvqq:ù賯¾=¼¾ž^ž¿øêêÅׇ'ç/ö/^ÿöââå‹/ŽO®¿¼¼¸y}«¿aòÑÇ“þö†ž9o8"€Âä“驪·>„Ž/._|r:}ñ·“ãëWò<ùä«óë ¿½œþ|2ý…vz%MŒ^Û~~r† œL¯^ü÷ô·‡ZL_^¿ )ÿùòâüú¡Æß_¼¾ÛöNj¥7Îôÿ™žüôêzÉ©~wñ‹N5Ý×ÿþHó~\ÎîÞ¡`}¾^MϯÇöw¶ö‹?|öU|ñÅù±¾Œ¿3þ~ñ—‹óoéÌ]Ó±ÛÝð³éO´*3vþòOš£ÿþð˧q¹ÿñcv7ù/úñ¿úe’&_Oþþ79Æ[ßíì7N|ßDÿ9ÛÙ…—¤ÔtPØÁ]kðý³ï.‚É»ç㈾ÙTÚPF6pˆÄ2ÈäR«ƒºÚ bõ‹”< +Û ÈÐ84M 9¡ð€l’IFÚXfSÑ0`¦„u(GL*ŽØŠ>_¬FIc²j:„®ˆNÜ^DÀÕ˜SJ[d&Òù̽ÂÙk2ÿùý—ü>œ²~ƒ0±Ug†mÛÓyÙ +äVhÍÂÔÁâN¤wh°FúÀ%é½B2s^À­$4°Á—2õü&òÁµ Cã +#3ŽŽ¶:gÔåQ£:•‚¡*50̳ú9 7é"‚e[8^]&¶Ù¬ÂËŒ4µ:Ø•¢‚[Ó‰ /zî[B‡F€(¡¢€…Ù×\–ùy¸,xk‹*À™ Å`` ¥€=r*+¸m ±Ï€Å€w¦0ÎíNÏgºw Ò‡¶6·qÂÓoÚ° +â‚À³ÉQ†ÊÒ“÷ŒÁȲ¥»ÇùÐõ6ĪŸDêAÛÆ¨ƒCÕÒ¨#æTÃûú¹”íŠÀ§HÛÆfëÆªâ…Ûï#Î0`È…r¶BpuË +%IØœ`ÂÕ»6íš%Oº‡m9ØÐ2:è'%‘œ€…ôp£’‚ŒŽÂ G°ß1šT†Ô0‚ö†ãxKSÔÔ¬už·_!NQq+ÎXPIfáçleæJ&Èg +†­ZaÑ*2A ÈË©ÀâõTÑ©±%ÊB!¤-|ˆŒ V=É(Ô1`×äB¢"ÝÂ#¾óA1’Ëé¦"õ뵆ƒA?Ë +KÖƒ‡ÇÏ=óèw,ÛÚCÿÞÑ ƒÆQ& ÚN=\†S»;øN'†s 8O†pÖÎŒPssµ­WçuUIZÌ|§ë úh{®lu¦à0Ø…AùÁ‰K’DÄeH +äú«#?³¯T¥î „J¹n“Ž‚ +€œââw±w€À7~´W_¼áÉbÀ;S°}fð©9S0'BÔ“[ûYH'IÉÙ=Cã&¶˜µÚ4à3ªÀ¼²pû}S‘lÍ0bIæÚq­œó*÷\.JéÀ0Øçàú£CWV­¨¶ýÈ~kàX¬ßR½³Ÿ,Ø8bT¹0>,ÇðžFg¨ÝC8`òÃÅXH² @¶ÝXÓa°¦Š€„V Ø‚uzg\#0œ‘ #àä¬#-ÒY;cyÖ÷,…µMƒÑ†IïÓÆ;κó}X%8?@¼á™BÙÏRX==îE²ßé„ÇF~+gˆÜ{G§9ŠéCͽí`ì­CÛEß?ê † +æíh3ÚÀX…bhÓŽ6ü†›áM()ÊC¶-méŠáò¤žûÜÁ¸q ‘"`úì¾öÚ: :V¨,îdDxð$T,£ƒ!¼A!DC >ÚÑfä`×¼™ØÑÁP‚1p0x*W×GDOJÃpÀ7`ñ% +©X¿ÑÚæ~CžN`¼¡ÃÐÏ+æ63×÷Ä#^I!Þ½_¬SMv¿\íCcj'C#Flb³¶!´xk:4ÎàÜù)$[;3°³+‚¤¶Ί€#°Ƹ¿cÐù†Õ†ûQfo”¿¿|gLã !žHú:"ÜÇÎö`´áŽÚ6+m3Ób[­c +ÉRúg[\ìo>#ˆH²5k[;êJCÞ™ÂH‡Î31Óe$q@%ZáLC§hÍÛ4Xé(Àªl_âvþ¹lµt«ÝxH* +¥o`¿/;›‹¥gxßôãÛ9i—¯q27=HƒnÀ’ªg8öF¡åεxßYqO-ÁƒCó] `YV9§X³]Œ!¿ùDÅ2º¡çŸ‡fs3ÅÊ®fîàìR_œd~„-œ⸽\¢,xÂnfS!3!ø6ê5â ² I„ ÁZ‚¨Ëí‚þÉk[eظÆjÔ¨†øæ›Ý‘@öe3À7Q,ÂÝônì «È»ØüTÎòN÷¸0kM#z`StÉ©Y[ÎÇ@äQT`UV {9Ž#¢uà…ÑhH@UzóÊf6Uu1°•6Žàιl·ª„*@.›²pomÓ¡m²ÂÊ„3sUDcõ¬õ;i*I—²"tQ™Ü@l°ê½©¾™zÌqÙ|¶ÍÌFÆ|lo@Ôéì(2Ìëö$:Ž«1w9=Žl?Ûž„(ɦ‚q1Æu ›Ã)I#ŠËHdÈàh3Äçæœȯ)ïaè©:ë0ŒBpÆŒ•ór N-úq­v­‹¢‹¡_Jàj‚Ë=\J*Æ•wJŽä3]do¼Ï}h¾Öµ`˜ÈDɪ 3ô–¯­ƒ2ô~GíÅ,Ø#.Ê€]\@–åy`»-¡ãÁf«XrGÏMlê±(e¶ƒNq½©Dð­YÑÄ&Û¿T†0³0Ömg‡†™;@ÄæO§†_Ãú¡ŸƒÒì:„¾¯°ÔÏÐ(Oø0\¸zcSÆÉç¸`Kæwõ~Äúð™M «†Møl/¼²3ªå+4jÅd£éP‘V>ë4ú©C®"ëÕµÒZÍÈ!Ó”¾6±ë 1³.ð)û +•¥"š2#` ɀ]é7ö[”„¡Ù$£OÇ`tnmg1£êÌ-#VÚ` +M—M„˯/3$¼ƒ‡ª­+Ø's‰Ú£ÀŒu 9n' G1#æ4“)“g¤/FÇGôdv ¹”¦5\öQ _¬kN3&ToÚ0° + +ÁÅ®,î„{GbC¸¤ðÔÙ†ebíNg­Š©Î^9+Ø!‰±Õ"PQ¾)Mö»¯Ì]Ÿ —h«‚‘“%ý`îü×jœÝõ«DUšÔ<(:}¦àÚí•i18J(ª–®ÉËbc0Jtí«jÍå~;Iç%@ÎS¡{K¼ÏÂéˆQì'UŨ.#æšQQ«[˜C‡-´bÀjŒyCºñ}íÀT4`“µMʸ%á1‡ɶØ;@N+mËR€ôªÚkŒÛ[¯w¦0ÎÍl£ì‹§ç ÆjAS)²˜ # +ž’ nh¢…+‚Àu«ßCHoµ³’Ô,Åࢊ°*ú‚9øCÁ…÷õhTëW…†.ìWÁàÄTnë;jMF>›ÀëÜ™VÓ!¥—Y©«ÈÄ¢A´¥_¥øXWy 9?‚ñê™ý(ts_ÕQxfÏ&š”ŒdC1`/KaûÖo׫rtª£ñu~L G`«æg,\±òLÁœVÀj8ó¢]¼*ÆCx×®ó,UeQøÖã›Í>?û®œ`ŠûÆe”½ä˜,W–‘±ˆïLA—#E…\ìÌÀ©u\Úmˆø¶¨Œ+§« ²ì+²ªªƒ`±¶Âû- ·*™"L4Br«Yx+¢Ûè;ɪn »‰ +ÐÙy¸‹"¬K]õ\Ø®6ÿ}UG7$ÐêDÌ«ù¾êÙLHl¦Ô¦ +)b´ž{ya—F]‘IÎ$>dÔo¥®›¦#€ÕôìUÕ3sÔ™ñ´+1PÙ|Nj[)3"4Ä3ÿy]Ô—/EÑ2/홫3`£Úãh†Và¾u{*±1p°¶U˜Ôùì÷ÝÙxï» +!Ïȸl-`ðí™2'wã¿Ãm‹B×h9?X¾Kg3½ÞÁ84ßÝE8Ô׆æt7µ£]5,…åøã +¸¯o'ÒÝèAS£0·5¾ E±xÌ`Zîþ1ü +lhiÄE1ÚÅj~¨—ûæU‹ºÐ¶¹YqÔÉúáÍ£ö¦¡ u÷•>­ gp$XeÔÔbœeg +ŽêIþàNÓ)òPÖù +04ú¬x‘çªQQLªFÝ!]4cþx²)_PÔ0¢`— ,Ø @=ðˆpÉ€y°:ÕÔ{kª[…sC(L]<×—#XKÙqNå-ÒRÈ :\È€"ÍÀ"'¸ÓÒ"ð\Þü½¡ÉQEÕ ÜõÜ×0 +v?üã vd]mFLÀÚ)ؤONS©¬:Ò¨ËAjâ³#ÀA-'U5ðÒ­r—ðyÜ_ü)Ù™^+c®ÝtQ§ˆUe°ª(ÔŒôE +F(† mc.A\ÙB€)ÆÞoP¯=.’´mRó^Vº"bRR2Í’P.¶×ÍØ+S ˆ$ß'2)ÏÔ<*ÎuÉh<­ü]rô‰l(똥ƒâ (÷^ä%•ðë«•Þí=r˜ ­x™oêþŒHh¯rNƒžJ69Ê×R× Ì,2.Vë^í YËT‡þ¾‰|E¬ +vÉŽ{v"ñ·ls@‘íSY{­C̽ۨ†eĵÖ6ª_C?MQöÁéAIè<ƒ[µSÇf…›  Û#ÀíˆóCãõ.ÄVm`¨¹)œ6 +f– `%Lñˆ»µ^½íc½ƒ½ÞN‚Oú1¦~dêӲǡêö}³IÓtµa âš ¼º½ ¢GÏ"Nê“¬ŠŸ?'%S .@%œsÉ:Ð6A@ò*uäôÿQÛš +þ$z6½üݪ·qÝ…éABÕw“z†"\N—ÙI•­ÔuÖ©Pàêì¸-²7:¯GxPÌŒF!.Y endstream endobj 20 0 obj <>stream +N†¯RuP‹Ðn¤hv3³§”=é"ãìx†Šu‡`§ÂѶ +ä\#ób5º¡ÚeuBÑï#Å{±¸WùÕ#‹){Ñ.Ìs*w Ñ"m‡€kgÁ³ª‚ ©Ì´gX* åGàØ:ŒD=]p9/Ji‘PE PnzÓŠ„Ö̼8øô8Q…9xøf˜ùm%õc‘^«i”£Kµw@ÂtWykkòYs¬öªò£ë¨ŠJÝ>éG¥QR#¯òæ»oÒeí@¿~\Û ›SaëìèœFë ù΂¼Vh`l‹ +6…YzEUÌè`°5¨ÎèR [m$^³¨àR²]±®ŽËŠ:¡¢ï»Tþظ:?úVëÍïÇc0æ’ƒgç +«®€C7a‰#`P „_6ÂwòÅe +ù®ƒü¦-£·=ÏJ* Æš0ú쯫…9«Ó7~Tû±‹Ê"E̪]ÄÐ.êã«@¥UEtãLÅ–¥ù8~?Y·ìVz`àjúÄÊ^a2…lÃâ] ÷l®#{è£l^Ì“cÙ kàZ8Á¥Š”‚ Ìu³~Â#@‚a5xf 0küG%cï š®^¼hÁ³v×Z•¶hn~y†Ú"ótǃ‚Ð3gÀ†ÒŽ +L6/b=Bï jàMðÏl—|(²7®Iø¦bà˜zœoRÀ±±¥u¤ÄàÒEéú»"ˆF€æ •9~|_Åž’Š.Bª2‘0©´êJ÷m*’ ÅÄ).©ÄŒ”%'pîþ0IôøÍd¬›¥JS%V1(–l§KùfÕlY8ÈÅ^ObR„ärwœÉ]e–Á6&)FuIÔr2ÐAG,Yf%sT¸"Eê˜[èÈ7£mê’§’;¤DφÏFQËÁBjm³O½m4ž/Õh½²û£ÞD# +.J,ˆÌ«4;/Pàýœ18h[:âÞ>fa%¼ÖkPmSéšl$:‚( +ߡ˒Œ½’ºåº,Ìá›hpý*gArÎK `!v¶ZÀ0ƒKÎÝþÔØ +Iµ¶,Ïê& +Û…"I9˜Á$šLæ\w1@ÙW´­IYŽ¢.£Hˬº|$f5ïœaè„&B]*¦F$×PÅ'sÁÚt´¥;eǤ¶”a¾Rm°#BFº>ØÐ¯'û +…”!,Ùf`¾ÛElØ6X ß«ê['½vá>ŠsbÙ N†uÀÉlì·€‡:ËÀódÅqEBZ¨2!Ιܥn¶)÷›¹z\C0º&¼aèÚßÜ= Ä=ã°ó}”rwF„UqŠJµŸ„Á@ÙØïê»ÝC.Ò²©JÉìŠ1Ê5iêoŸ.îÀõcoì·¶{3­¸¥#ŠZt@it±ÏýÚ¥b+ÝéþªÀ.]µYÇÕu,Uèˆu«átse8•£ÛVÅÃk(] ÷¸Ö‚u`Qxc滋X »™‘‚ÐnPå¤ÚޱµkµëÜÄC ö%ˆ’WÁÁAoö«,q†²†Hô¦À‘ZWsG€ÿó亳Ö1MÉ-H]»X,J`u`Éâ'@¯>SÀ¨âX>( ™« 2 +õ˜h*ÐuŽ:43C ydN,ƒK§™¹ Œ†TÜ1¯ûa ½KIa†ßM,’@g‚œ….2„ Ç®¬Tf8ØØ”§Ç&‹åæÂ.@¸ÖÑÏÜæÄq fHåLÔ7 É¿Jç¢T¸T{¥ñÝŒŽÔ \šQÛ6˜‘ØŽ1¶¸Þõà€ÜCº`îT_4PÐÔ{õ†¹Xcdõ…ɪÏ^•mÍ=Š·.…Y61= ]!’DŸ®£ÕÀWìd²ÕäÖõ5¨Q÷Û¢aþö9kêr:ˆ‹¾ÜÙÁ\ïrœX¤¶Å*Q[ .ƒäbá‹YO ÕöÖ¶¨¥žCÎ\Ú’zP×® +¢ — 4ô ð¦V¨:#I³øÅ0‹Ç5ékX»¡žÂ¡iÛ ï8 skœÒH0§uP{Pi4(ÌKås$õôÏ)ç¼-·ºZ¶Öµ­IT°¶²ÞÙ×,൱§v-B#w»A–ÐK³K!߯q=¾[³(šf»–]ZSrH¿ÎXN•v `ã€B3¹nı™XÅ£Ýúuê#»¯!g/ë®è©ÐÌ6Û>Ú†YF’£ä²-yê~þq¼9©óÿ¬€®ÝhªµäÌ_ƒu%V°Ånþ½%|WœñxÙ¼œªîëÆá  +NÅbW¸î«]÷EEI0†nà ’€|_}Ï8õCb;iç¿fŒwG€ƒÒ@Í!a˜þ$t£7·;fÔ&؇§ka2µÓci“ÙHQMB;˜ AרJ$šÓØNmÐzÕ[Œ}+}oF/t—½ ë>rë^aÞu3vè^a­_—,ñÇSçÍ!9ô“ïJU°È8nmÍ#—•·ÏrM³Çȸç÷jŒ.£½ö{åHy +Å:Hef zdRˆÙv¡Uóˆ©oMKæg”r?Hy&4»‡UÐ5/i7¸höï6Z§¾EœÉl±C¨z_-´dðÝVÞ‹Éc¿gëÀ"ߣhm œÌwˆ³T(fÁg.ûhÙC^\gj[éF éN [ع—ø¦1цáÀÚ>¨Ñx ñhŽÕâ7š èÁ×SÃŽ­ÝmÑ(,H;ã¡§T¸˜×7oûôÒ ›ˆ• »“ƒW¦ì^w­Üƒ CðÖ¶9»1+¿#ÔãncI9Å£­ƒQ3ä©ÔóäÙÎ-\]t–ƒÀÂ÷jQ]2ª†‘W4Wg'Zã]áâ{Ô7Š(ÐX%/L´1Ü\5X±B4ÙÜ÷è—’»ÔáíJ!Ÿ±—mjŸ.r7[p7˜e¡V­KXæÆZ +ýÌÉ70·i‚›É©A-æ"%öMä + ŒÎóý4À|e%3¢«ù"'¯7ù½ö°H$ˆí²þ8YsIEAçhùp8äªF:mJ~0Å£—XWóÁ5ßö ÔmÝJèŽôÚÖâ%cŒ~ÌHVdÿ3ö° +渻r¦Ž‘¬!ÞQÎQ£ì.öÖ¶¥‡%›¿°É³ASÂ0öﳯ÷(INF*ÀÜïxRgj® ÖÃí4¦üMÞÍm°#cö 7›±Å*°;¼r‰iÃL¿äůA€£Ã`T'f§^NŠ‚}踎9jÕ×G×BÉ’ÀÀP,gh3¯§`éWÏ@RÊ ªÏØ%™ÐcÁì«ùµ6ߺ>²S1‰ˆg ï¡ ̤›–s̶’rozt¡YäÐRy$--ôbµ ¶ªöÖµž/ ™¢Ø´·@liÁг¡°ÅÁÔש³«%ç\ƒM#´`ZmÚË{U²s6úŒŒš]ÝnŒVÔ`mqiê±û]÷WºUìuœJ—ÒÓ –n4™rí®d`Ú³…Õ\ºÒïè^dÂj!ÑûÅM­9Ý™¹ÌXX,ÍCÔ£ˆÂ ±'Širüì]2Ï=›‡Æ™•ŠÝ=d sÿ¼Ym8^TÇïCÀõ—ms½¨|vÙö7úQ3Îß7“`ÃÒu´Q¢ØfØ4ö)f­ƒØ5¯~p\BÒ¸!6*°vNs4ßÅN‚p݃ÖÌ+¾ü˜‚É‹Q¦[¢“EØ´Ñ<:¯—ÑnBu”¼5Ö!~eWí²C5R-ÀÀ–5J¡¹¸h‘C" 20DK²äÕ#eÆÞ ÖqhcÉ.‡ ÞB²“1ãý`nÙ¸FÝŽÍ.Ô6ÚœÌ}"=#H hœrœ±ºp  ÍŽf©¬¬DU’2ÐLdhi¾YHƒê 1½?Pð¨Ý1Çß:Ç O +KÙ¾Uª¹ ù1·¼©ÌÍ3!\,ÕI[ K®çæã–cpv6Ú5¤Ì3Û ½WöàMâÁáÌ(÷ 9‰ƒ¤¦QÒÖÈ]”¼‚æòd~kI¥.qyêxG²AˆÏT—åB4ózÐ{¥÷FÆ|J©0j‹VkéB-½ƒ¢˜ÜXët"f˜/„îßÄ«©wPŒº¦Ì“ŒÙ­¤ÎÓ6Ëá{P!»¢™¢Ñá!q&Db0ÄsoÌÿ숇Ô]”ƒ„ +p "gGEfžÆáHcÃH@b³€1ö¼•õR\(3D¿Á½c_}8G鈅‘]†1`Õ“x_ˆL™a;šòŽ3±§ŽšdŒ={AªF,àÞ̯¼ym;ÌdÃ`Ï¿T»-Õ]ºº£i ®€{dÛ Üš±ŸY½BPù¦£UT¨U 9øDÁöò9?c"êž}·Q€kâ`î±ñ͘$ì®·3>00öP%[rNZnA«¦d0a“¹ê{ˆ—¥—ŠÝBÊU*sçÌÅS+ænõĦº¸ -ÐV)¬K,vŸPõ<¦Yò,ï1/R0.T¦7'¨ÃJlÝÙƒ«fØ÷áh#óæf–´¢(²B5AoZXöZ`V£g×8ëwPåHâêVÜvsîÕœœâÐÓ‚FÉ8Ñ;ÈFH8±Ê‚› _æ{–ü‰-î¥qÐjæœGÜ/êV¹žh¡ÈåKqF–Êê#„bQ]–âlîÒAšI¼ÊÙœx`3¡Q’|8•þ9õA‘¼žI}ûQ´Ë«Æ›¾oÝ;£AII‚ñËŽb´@†:ØÅa‰X^/Ýõuf0¦QWéšÉ,ÇÈwd7 +So›ò8­¡öлèõ¢s]CËY#·4•.9E‰N êlÚa4q +µÑºTn„7Ág×D?I—$-;ZÊqæ}gZIÛE6 ÷\GrÃPmìSóñ1¸õä6Pa(Ô|Å¢ÄUxðCç Äß%™Š)+¹š¯¶ì–_¾ Ì­RÛäM¯`"ytXˆš…ƒ-¹NÞÌ]ÀØéˆ*ÀÈE”di»Ù¶Ð³ëžÉiVVWv 'q缜ú Ü5 -)1æÂ¤®îœX[?™òrîΜt@†_ÄÎ''~m ª:CÓœêQ:à‚&Å(ˆ`DÖÎír 9mYÍœªñy61oá‚k¿¡¼Z +ì,{RØVgVv°èùż… ÀXëúÉ.Ú<mNø\î‰ùÌ3 ƒ˜c¤m2Ùë}Ð÷;PMTÐ19`Õ$™¨ŒÇõUuþEÍ©.Iiji[³Ë‚õ +ç˜2{9¤eèÖI  zêîI\H»I?µ>Ýö`¢˜ÙÜe飹vøíÍ­ÍÇlm-@¿¨GÇЭͤôÀ§H–ýIl´’gHȹª†ŠdÈ‘’-ù˜kæ ÌŽÅå]%Zü#ù~“d0W¢MÙîTÏŒº¬(8Çî]ô(ù™ÀÖèQNÝ‹®«ý56˜€…o@$ +æ0Éå=uÝŠÍÖZÂ0#ËÃŒo;— ЬE2¯÷;:Øhmmó(Má+½y'²RÀ:=|¡óÍìgN>ðe6„Ò¼¹)%'Z–#!ê̪P;CTfÊä2õEÛšÞ®JªáÝÅáá†é²‚ÙÏÎЪ-9g|TüY{ðž÷­w`±»EТ`#Wcð%Šá=’H# +˜‚ôÕvrsêzÆ">;F°="Mõ¢ú€îæY‹BG–úÑb§†‚ŠÔâ:Pðè¬ë4¾¥ù”FõC×Û¡#Ö¯e]-BI”êÝ…5Øû&`Qž×`wJcú½ø˜êÄD,ϾGwg±II®sIEøÏe`D­Ê¸˜’(³‡ ƒ|3Ÿñ±‚ï©æ½ii]¨fþOC¶÷c°-`3a݆®©­=`µ…T¡h^‹ äjrê;#&-š1¿¤×1ÎbäPãHO•!q´UZ”`³ÛŸ%ƒ‘Ž@±Úèc)#ÌW)ª,—pôpk_*]ÝRÄ Õ™ßl>žY•Å ´sa”Üo´¨Q˜×<ÿÙ)°Ü;åš‚ôýÖŽ‘Rˈ,–3Q£zƒmM¹',ö5”JOYTDÑÙEb«%î¯"A5[W]U„ëto·b¤R\6OÆš P¾{òs˜ãîâ°o»îiËöíÕ™kœaH†ÝIÕ|T`4Ú*‘ý2îñÍ…dÌi§HÖ{A ælìÅq‘çŽuÔ9e1PJKÇ• +m += H‰ck» ³‚,ø±Hm›€))9äÎ6Êr‹Ø5÷rÔŸê!ýÆžiºÌ˜rRœI9Âqj +ÎÙHXÑP“{•ö·¢åвô†ÜÖX” +õnÖ¶fõPl(-Ã`Ș¥ƒ Á;²»AuAÔÉÜ«ø ±6^S`ªFÝQ»c£¬H +=‡FÕÜéÜ’ +`úµ4æü¬š•†¦t«š´‡f®3ú* T½PíŒù`4$"¹™0^ŽÒ´Œ¡«ãÍw¨JbÁAJ§’ëRpDGà»0±Ú¦Yâš›æG­I¿8ƒ|«ÜÇ8ôüµŠöµƒÔãEZ§«P#EÃT,d؇qÑ{j¦1¯qʼnsçL5Êås÷0ÏnÔNùl7Êb 4ëîÍâ¾Ä@3«)¼¯ +¶Ø9Û¤X Š; ÄQ[0ê^Ž÷)™Ù7ÖnACÄ¿˜šPî2Z¶ž`=Z–Jl‚Å“áCÝFq'mk<â˜-@e g#Õ1+õQªRB€®Ú¨Ze”µTÁ¿JžlÓ[šµ” ØÇÌC©ª ¬€ï©œÏæ§s<ѸXº,¦Úv ÷P9šÓܯبè-Þ&K“…¶ÄÒÝÝpGšid[çìG#ÀÍ>œeø‰B”2¬`Í|X!\²mb´sœ» ÆxŸã( UÑj +нØ;³›ÄÔ̶œG{çW v1œj.(v®>úhºòØgeÊIhÊǼÍÂ"{¾òª¢µŒc™*wY…ŸÕ9±JrY³øN-8lÕl –á…s™JO"! b…H3Z;Ÿ›Ec·˜QôÚÑF,Í€©ŸÄ\úQv=9Æ+'†³’òbm«bêIkÌ€€Ýλö\'±Ôž!a0à¼&ÈLã'Ÿ«eÌŒ/Eò×)8Ž:jB6uõM³ñKÈá- g0 ²Oô‹–\Ï>‘Æ”7ªNš€¥é‹Ý3+ ñ>SpÓC\%ÌШ©BÛgÉžiƒJ=zi­t¦ßb€çF`‰”ª¸I%Ñ…ZÅÁ¦V‹ZhÆ‘Eõ2®3Nc\†k_;H±g½MÙü*c4Å\è¯ßþþ>gÍù\9-§©f½;3pw IšˆžftŠZæÀÜÒ”¡ð`F2É$^£ÁÊ‘¤þ~ëž\rÅÞoÁÀ9Ö¶v¬eœŸÁÌMuÆXë—ˆxS̹y4-&fu~¦0aIÆvÄ̶sÝâ“ü«,ª¸N¸ÜåòVz>LÓ±—ÑG@ äXûÝ7¥0?CРÞvp=*?‰n`&½dO ÃÚà³6ºÎ^y +Ì–lÄÔÔ÷¢îÎõ™Í>Ž^1ÕÒ^.ÊB¹pTší1^ÞÄ…ÒïÎ +fœ¶‡+¨gö i©G+jÆ|tÐL›iIçG`×:JÀUb/^³§Åz ° „Úº9ÜI¦cC5/[‹¸íaÔãS`×±úNM ôµ8ScJr*-ؘJßÔ—I¤žžJß›ËG ÙêÄuRj³šÑYÌ`éµífŸe}KOzŸjOÚ¡þ÷®g±M=r~`ã‡^ò’ù~[cS%«Ø§ÞÌyŒð¨ÅLUæü"àî·—´¤€Ý¾™2ºYÞ~;Zu ûã“îCå³ïŒß&ºû{ë‹åH¶Ð¢¨:2‰RQó8ââУp¥zØ#[s°ŒAX ikóæF0æýkÝ7äžõÏ’ Ík+ÀÁûYJV *ÎýÞ´•{–/*5Åܽt@ËqëëãA°”¯I®‡Ÿ-5:ûÉØes˜ç^on¾“ƒ1Ad?졎)5ÍßFƒa-ìÉP% âU ï1›ZÈ 4íºÌSÕ>6I¯ ° 8¶,Õþ˜t¶[,á]KÈ“‹í =ˆ=ÄÖcYÜ#ERWM%õw—^“ÝVoX`nZö”öŒël‹Ì»mÚ9¦ÌLÀ¬>X܉mÑÐØi®ú3‹ÈLæ½Õhh£V7iØ8B:{PlåÄ¿K€Á‚}ñ±Á2Ð' „÷’O%ÅàsòÕh]œÓ4geØãXé>µ|A–2 ô¢> ¹ç¥ð¨Äžo¹ó¹qÝ,¢[3 ٺŮɴÚÀm,w¤êWa4% ó¶DcªKIÜÆ ÁyL0:7‚ýNÛ‡Á‚a™úmoͶ´õ¬[3 ¶: |§KL ïZ‹°gçQË¢ƒ)­fB5ÆÜa&Ñ#P!š,“土ÑT²I€%Z‹ªZD/x`r c-ôTqªƒç<îÝĤ¹(ç§0fˆ¿Ó³Í-uûL°™¥Îöd$Z W€£w¹ïLX’¢ÀžŸ3‡ûæõR-×c|!‡ž)xðVigÍäcuÑt5ß…ng¡sï;ož4c+ ½ˆ[€±YË»ç¢å +³͈¹Ó+nS÷rÝ.ûS–<ô¤HqX­@èqYU¬î†Ë¦5!t‘€ +Éj*ª’Éxñ·Æò­™6˜m‘–Ý8•*åVþÀ©T ø8X܉ö]ÏÚ$ +çLÁf¿l7%@Ó`ºÄ´-MB'ößÔ…ÙŽúöù`õÿº3L>úxòÃßnýúÃg_µ_œ?»¼¹zõíáõõôò\€Ï¦?œßô×óóóéñ„¡ŒÄ±ôß~±ö~òÙkúí'ŽÿóÃoôÇÑÿ%Ð/ï&_Oþþ79ÆKßíì‚Y„ž¬ å +Q¸:$Æòô/8_b”«çâ À »¡hoâØ‹ƒE½.Ó†?pމ`ßìÐwˆÎÀfL茔8¨x®†Œp0ãp¢\…É–"¸3ºPñ7ù’ëýÄ2õá‘“ýü—¾èkÐ× òûáp'M¾Ö)ø?ú:dÇqQçq÷ÁÁÂéšJL &ÎÚWî-%¡ƒ't–Zl9Ã¥PÖŠhqŒP’°«ÖªÐÉ¡•¤¾†à3ÎNÕC#kˆµªxTš5Õµzh†‹×ÊîE$ŒÃ=3\ªÑ¢µzxÕ_þÛ(h’æ‘Ð*ø'ù÷kà·6½ îí0ø»ŒHDBÿüß#c“¹Ásc8t¤ØÖÏ?'8á]¤q÷Ÿ/É2mæ>ð8heÑÐÓŸùÒ„#™™÷̃™á\§(*ÿƒÅë±D“»Ý?æX0£q "ûz“ŒDOï¹ K4Y° ×ñån¨ç<øæó€ÐœÅ§Ö¾HΪ rO·aso.üÜRæ>÷jçotùÿßÎ_­ÅýŸ_¥xÏòº[JÔÌ“t‘Âà†ù}á±.71Û‹Ùfg{÷Í +• R¢ …Œwo|Ðç»àu{þlöÜÚ0;­¹6­{ç»x…ÆË:PB–6´Äþïú²Þmtçs§ËŒiþ²¾;±h’ß%Og÷ÜÆ®3ŒÈ=ðuäI +Wã +âBœíÝ &«ø{JæèƒåÚô\ðåÇÂUC½î{°h¾‹Wè¶øÝ²}»á¾óöήëÜç–j4÷¹·áH2€/þrqþíåÉùõÉùO»»fFeöÁÎ_^ã‰wòèùÿ|ùç“Sêfç“þsòŸ;ŸüðõÁ_.ާøùùÉÑõÉÅùáåoozðéä£_ÏNÏéÑ. ëòäÇ›ëéÕÇ“ÿØùä³ËËÃ;-Ž^œ_NÏñùêüz|†ÿ¹þíõÏ>røxòÉ_ÏOŽøœz=ÿévßOo¤åoonÞ íh¿ñ¨>ì<>ûêÅg§¯_¾ðËÎçä˜Z>0´ùàS¹øñ§G×Ï.nÎilÏ.~]vF/ùpQÓë«¥÷êÖ;|ª„@—>¿œ_¿Zz^ÚúƒÏhùù<°­3sùuÍwæÕôä§W×KOÇšÿÇC_4¹çò²ËñãáÕôÏ—Óÿ»™ž-4ï¼õÁ7üüâùõÉõÑ7lœå·þþätº<²¹õΟáõÍå7§´¼Óeç(¯.99ûΞUXv2ç7gß]þ¼Â~;ò(ÛµìÜ.§W7§Ëc k¾ ºgèþ C_ÌVÌÐéé÷KÅqÌoXþ¼/Ï/n.¦_^¾~ur´4³u¾ô朜?Âa{h|ãL.^O/¯/.—žÏøÂZ_¡“ó0É­- +xyö/Î^_\\¯pwÞÇ8˜q^vŸ|>}9ùt+~0mEÀ­¸·"à;—V-m%Àõ”_^’8sú—‹“«'%.Mð¶2àVÜÊ€[p+neÀ[§d7þ|úóÉ!´‚ˆ7ûÒ£q_Þ\]ž?{ðL®#ƒ}ñòåÕôúá±oÞ}Zúð/ú÷¯‚ìž F8^žù;þíoÿ7|6ïÞ_½ž}sóÀÀ7ïÒ{·4É¡¸9=¼üâ××çÓóåç6ÿ⇟媓ܿ8¿º>|‹IŽ/nÑÞ¿1—¥]º®n._MŸž.¯ ¾ýÒŸÜ)ä8*]œ^\þç/¯Ô–Ì2~¿­2Qi½I’Ê®wôOCã±›W˜ÊzËÓ»a•mù×Òsù×#²"ß^œœ_¬"û¿]åô¹E [îhM¸£§µîTõiÚQÞJô„Í)ë‚NO®¿=?¹z}zx4=›ž_}øziÒjÉט&RWK›É7Ñ^~o6…ʺ‰ýg2÷Óßú¹ìÌù×òò…5_cŽiS8ñ}„5~½Ä¥[K´·´»îhoù™l +’X$­9dz|@ú‡Iô².·ïðô—Ãß@Ú·ÎíõáåJWÚ¯¯fìúbyÞãâ&òr%'Ê—'§§«øž®óU|yyq¶üd¸ñŸÌéÉùôpi\¾¾XÞk{æ…>³Ë)‹SËNíðøøäúäçå§6¾ðáyߥÞ¨[·¼IJZxd·ô|Ž—Ï&mÁ¬v¾ü™;:º9»yØeöÔͼòá#¾–æ-fæhŸÿ ObÙiÞ~ë‘$“Ãó“³6ç=Ũlvú»£'ã6³üL6FpÈòÚæzyÌ\/'çÇÓ—'çVÁž%d¯§‡×Ÿ¯°k3o|øÐð帑ßi"›ua¥~\¥ùšG ¬2—M‰x‚Å2·ZŒµÇ +Gg¯/®ˆ4}sóÀÙ¼µÆ[ó«ôÐø6ÓÄö–ÑM §Þ·ËµÙxáÉ%k[ZÏöϦ>34]߈¼.eþÖzG0/ÎN$=ÂDÞ†ž®;í9¼<¹~u6½^Eo Zþ=àî6{ô⦿GRº9æ·¢ÂÛ(Ä·ÇÖþüîíÏ«å¾\G=ÓÖþü¦émíÏóòφ؟y·aîÓ•v~ks~,›ó¶¼ÈÖæ¼µ9omÎ[›ó +ÈÖæ¼µ9omÎ[›ó‚‰lmÎ…ŽO^¾¼Y¾ŠÄº#†§³)¸á)YϗΦwusù’D‘ç«åR¿õÒú0ä(­6·[ï|ð©ý6==½øeÙùžüôêšžï!—ïÒS¼ûÚún bšý‹ó«ëÃóåqÈÜ{[Üã«àälúÓåtzþ)!Ûé§$³ütñéÏ'§ÓëO/§ÇŸ^\ž?d›Øê涺¹­nn«›ûÈokÿnusë ›[…Û*蕹*Kþ¦§ôÇJº’™7><.lKOìð_'g7×Ô =qÖþÑ´?ŸŸ0€köȾ3Ÿ‹dq 7~ó.ÀÕëéÑË'þà—×zè"|ñëk"»+–ó/>‚ErÕY®,>Ï¿¸UÆ}˜s¹Ú8Û?¸¾j«ÌyleŽªnD™£šÖél•9[eÎV™³Uæl•9[eÎV™³Uæ¼ï­z*^[ÍÔV3õï å¹ +í[ÕÔª¦Þbjë®ÕxÊ :¶1Åë†NO®¿=ø†ïÑïJFx{Ôñ„……uÙœcNÙœ}Ù +qk.Äíúü‡eÏéò4á·G m£8ºÍ°¼A–}rKÀ_NŽWpüÓÖ|F«\©åyßÇ`}}\~o^MWqoìÍ·ê­úãO©lÕëÎ&?}õGÛª?Ö3,¿)[õǺá­úcñúVý±Ul”úJƒëÃ<¶*ƒ¶`»½¥Ó¬üxx5ýóåôÿn¦çG˳wÞz„ òç×'×GhIfe ´þþät…¬·Þùà3…昞ï.A¡gfx÷µõÝ?E4ûçWׇ•ºœwï¾·IÊuÞž'“nª,–izJ¬¤³yãßá¸4Š=ü×ÉÙÍ +æºÞþÑX­ÏOøÞ¬bÈzOÙ>—«| 8kóx¿·(˜º) Óò)×l¾øõõÅùtL>ÿâúR+ëÊäjþÅ-ï»å}׉AÜ0îiËyË裭æä½ï {ã}vzúÞqÃæˆCo‡47Åʾ¡n ïc oSÂêŸ}åÝ‹/Î{)+€2 /þrqþ-uÁ TvülúÓÉù샿¼æ>’£ÿþð ~LwnäŸ?ÞЛÝý±»ð×ìÞÚ]Û˜]Ý™[cîÔÈyÚÖü¿ýžîÌÏñÌêa³³6{HfÏì4î;/ðý]ñÀPãRî[ÿ†­ó‹ ^½ZÓ}f™¯.80K}•Vp<0Ýùà "¡×·8…?¼ Jñìââtò!ßø-QÜéåùçv¿¼99Êû‡ÆÌ6úõõÅåõ÷JTþð"M +-n›$^åO¾›žŠÓ=»õâðüôDÒ…Þÿòòäø¿§¿Iyþ+ß5¸º¾dƒÅø-¢7/èøôñ䇿Í! ȱ.?^ VÞbBrÃ4ש.GEÊžÝ2ûE׃0ÿíßü³Ìýh{žÏ4ý1L?~âôã_>þüÃcîí“û÷ýámŽ~Hó' q<²7~Œç¡×k¢î¿K|ý¾K°Ì×o]„[¼‚,¦ï;égvÒßÙÕ²à×ìÆÜÚ1ÝGÙPÛOÝë™ §b<»Cÿ5ž"ýéíÝúÑö*3 ž¹Üù þC9`òËØ‹˜ªMÿÞSõV+³€ÖÑÆ4Ù×7Ñà‡^~#^âË÷Óá‡^¾E‰ÿÚ1‘Û+Á§–ÊPZÉŽvš–;ù¡eOÿd?ø +HôÑÅÖBZ«€„†S*%¼‹«-Q³r–üpHÔ™/¿ü CƒÍDmíÙ ù}“:u]ÉÀóéáåÑ«y"à'Ÿ½fà—#¡O;‚pÝ!í9OÄØ×=À£—=G›LïÛ¯#ºÃôÎ@íμ¸;Óã³Z~Øs)“$a¯Ñ¿Ú§ý:Ú±ïdæ½[Ò6Ïÿg¯^ïòqð{©ââ?$Ò$Œ´¶aϧš'ŧ´WSörï#‹;®”šÂã 8‚=]ĘSË.fH1w.GÅÍÓ˳ð0ÞÒfL>ùËÅõwÓ£‹Ëc/¶}ÉñÝ={ûŸ}õ¥Îöû——gæRÏ'‰NÛñÅÓŸ}5¼ =G5£ã0fÎVè‡ã;+XÑ9t‰¹Cy}›8íú¶—2aÚÈ¡ºBg  š}ê ]ìwlÂ!6nQqßàÉãÞPˆZ”½8æúHPÄ·œ@A÷BŽtsóÞàÁYAD2õB-ø¥@H  ˜œ´ñt,ï¹Z Sã6ÐÛ>íµVXx ŠCòÄ$ìµâ£R2:ž4¼½Ò ‚r9B‹Ü +°7‰‘zé€#Ä+á¹™61ƒÓ {ÕC–¡Í§u¢E wc+øpÚK!fÏĶ‘`uPˆ¤ˆFø³Aš¦ñÇ\(@Ó ÀÉ%¡úÔðm:Û ª>ÑÙE/­O€TkfÁ‰¡Q"<ëºW#]kìÁeÞ•ÆæeŸ*$XÜúFÞÙìý%nmþ„ŠÆœ@GJ¢âˆÑèý‚S‡OÖèZŒ‰d·(Ìîî”nkn4ÛæÍö7—J ´©ÍÓF÷×1D’h‘œ£èÅÑOj‡œNTÓûZ\¤Áe"o)‰°©ºLä0f¢‚>àzîè)(“¸çŽË@-Ñ ;Ç‚Èl"€wí:X§àéÏÀ‹Î‡<`¥ýLC.^ ®•…Δ¨¼îm¯Ñ'_Ñ! ›å¥H»‘¶Øåêù¥í&¼¡T>9´€Ì{ •ŽÖ>ßTW#o8:&ȼÔt Dç-ñÚG7ð9¡U¨·¤ŸœRºÕ†Æ"/%¨ @·¿DGÓëÏNÚ7—QoÑåtD è¶¶è3ßVb"J„™&Æ€@;¤×7úkø_¹À´ «kåûëš+³Ûr{ëöwþÌŠºþ Œ{Êý§ÜAŒ/ˆN øï (Œ:HôLˆê3¢3 ž‚Ðh xè´ž•qZžÿ AÓþ Tú"ÏΕfF‰X¢°ƒ¬,6ÜÝž0»=®¦Ù6•fиMŒExbdE“,9ÉyòÅ{è?öøˆ0Rb´’‡õhvôÉúO/¹hIê]–ÀýÐI nx‘ÎéÁµ’ +¹a +t'<]Ýq…ïîÂþüÆ€Qüã_‰WdBtÜ)Ø»ÏéçVóLw—|nOníÛÞº»¿§ +$Ü]€É<Ö‰>]SduîÌœ»º»@ÜÕÜ2Î-ôÝÍaÝÙ4íu¤ F@LVâ+&ó£E‹…®ÎÎ?;‡¦q¼QUöwï›~¶“&_³æs +ä>gH$üŒÄÒмÈ<òžPx*à +N<Ýãªäž‘ßþM—ÏÔ.£ ¬R¡‚ˆDosÆ-Ð`]mz‰ð ƒdÀkçùà„‚qÃß68û{‡FD€÷ˆ‡[[LNG`y@IKfÂ[ Ðl2ðtÁxh¤®1Ro>E§ƒG„sãó_@ÁqwiŒ´Î‘ùJ¢éu\–¹¥#òÌXm|@»V `À¡Ch ’Ã&âP¹*WYF…áUb.h ™~9¾¯ŽO4µ!ü‡™ˆ`gÏlÖè0s9ô~ 1çƒP7ñi8:…p7î`Äè[óÓ‰t±šsr:dzÉçŒDM";Y-õ­Ä¬¾+|<][GظÂÒZ¥‹û¡æõìÎ š¤íL–¨7˜H¹…:!résºeHWÙcÖdAG;ÐY& ÜÏ©zÛeD `AÇ +ËB$[TY·»z£(‚šCÈ|à`Äß#1óç-‚lDˆ IÄÌiT¼PP°wQ•F–Û@ä.)3À8@kNl$Ô®t˜æ_¦\IúAÚÿa ´ÎdâiÎR!íDgÇæéû)/û-0÷Ô 5iÀŸ€þ¢@”Ð%Ó¾|°y={‡óJ™ð%,„Åk‰ætÚè¸ÛrÄrÀüÙ[‰¡Ÿ; º<˜ÕÝ÷ãøÛ÷K8ïÆ¨NÃÌ“ÈÖÝÄJ9ŸýÙ¿ŸþzýÙåôð^3;Ô›™ êJô Ó0¡ÛK(ŠFðe Œ9¨~“˜›atu(ðЂZ“P˜ª9E¿¹Ðý—õÊ1·É/“tÛz_+–kJØiüã@ÿØÕ¿æÿÐßW;¬{?I,´î“_vj³B×ýýcWÿšÿC_½w eî}.øáhy3¬‘³Â,ÿ³žçê«ó×7× ø>äÁò÷œ(HwýDñýDé_óèï¹Åg¬d?GüG?Gú×üúûýŸ#/ÚVbqñ«Ib*Ì^$ž­ÁñY9ô É“oOoè¿ùñ§G×;â2yvysõjòõáùáOÓËÉ7—ÇÓËßül"÷OOO~’ð.mù=-þ'“8y}½7ù*ŸOæÛ;³óÑí¼{ãs½sôÂ7?ž>Øþû‹›£Ws¹‹«Wö6¥oÎiK^ÝzuÿÕáåÑÅáédwòç)=œ^Zû㱋[o<¿>yýútl§»¼ ïç'§?O¹‹ËO>žìÉ&Ñ®ÞÚ¢w¼Õ÷¬ÑÇÈ&=îþÄ–ðÿËgÒ¬¾i¬oõi9-ØJþp¤ÿʪ`_ðÿúá÷ôÙqÂøîìtÝ{šîâãxõJV=ðÿ¯6ŒwyBŽe¬·Flgš~:x>B]¡ÿ£üÂò}öÕ‹g—„ËN§üöÁÉ„•_ì?§vá…¬3Nû‹g§7¨³ðaæ³è^Ó<æ/öÇH òÉĤ¯òÉÄþC«ÿ ŸÂO&ììæÇ»0]*O™‡?ÌÄîC,Ø/`–»’Ôxh’yBYÖ€.Ç̸ûÖàŸÓAž˜ÇâÕÎ'ÿ}~ñË9ÿAä^= >ù œ#(‰øyjO?ÙW«ƒì¡=íúÉùDüYã™–kŽ,üŸ“«âÐá|ϯþ¹BϯNŽÆ×eëž__^üs:±ÄŒþþ÷?’¦Òrïð„ß'²ªÔ~ªóþèV“ZƒÉ/_Ò¢SëïO®¹§ÀŸ8ýæRÿÇÎÝP;5;€¯Î¯NÄró‘ýìÁ–ŸŸ\½>=üMþäxVySwcò>ü>–e_½ˆÒË9Ù±IñÐ,Ì“Öbòé­îáåõ‚Û¿8?¾9¹^fÏßÐ v`…Ãó¦ âÝw¥Ñ%=|Wó¾dƸÄ}xXà®)øëÕô‹Ÿ§çßß³îoX¼g§ÓóãwµzÜÙ¸|K.Ý8½ñý{'²óÉ¿Nn0~ ‘Ä 0ØÄ!Π±ç'gDm­ ï-|7[­™˜‚Ê($ +ºa¨¾ÆÚŠ/L†c©0M¦ÚP#è4œçs)—Žo×^Ð$’ Ã4j៑nIŠ þª«®O¸–ÒÃÓÎož6+9bs©ù€1âÂKÖ×D³\U¯F¾ÝÂïmØl¦ÞÒœ 9Koÿ–@,"‹¨ÂªŽMLÂ#ÓÖ¿o1ÍÓü~1Í*vÏ-¦y{LC¼ãƒ¬X )Äy -F8¿«`Ž_tïõŠeXïa~~yñzòüÕáñÅ/…ºo.ýþŠw‹.ïE—o»ï½ ù¾u‚ßD¼ÑPÚÝKºoß#Öo&ÍÅLd<¡ô“/~}}H¨÷ÙôåÅåtò?ÓË+ÍðÞ)ùëÓË[€›«é·Ï$ûìd±×M>úQ–BìèêòˆWZlmsñúðh¶Í§ç¼œÕ¼º¸ü÷ê r|xùÏÒB¸¹VøµÐ¿i`›mA¨x +1ÊÄ<3Äѳ’Bn$Â#ôu¹’Œ›},¾’·ÀXýÄ\^ÞšÆÏÓËë%oÑ“T¾ü!å_>ß"ê-¢^НåóñdÎæ1ù;GFÁáÿë&Psïq\ bA°¹þ1yýoÜÝ·Äö”ë'¾Ü%8Ô§!ûÍÜž+­Õ!„ólÄñöK®òã¼a̱e7ŒÊ;¨2[Wãá 0d{JÉ ?~sƒ¡yzñË$O^_oñäOn C;žâ›Ÿíêý²³p¯‹¸Õp‡[ÝVô÷Êyþ ‡7§×ÿxH›Ñ™ / þÝ»ÞÅ7XÑï.ƒ¿GÂŽ_œnúz|{x:½¾žò ¿ýñÏ飿ÏúTþãc^Áþµs¾óíÑüô·WÈèÎÏÞõ}¡ãC4;Ë!‡È÷ üwgýŠÐö»/ŸM¾›ëH\ñ- תCØ“9¯h®…24WjoÿÓS`*é â#êÅ—âÂdÔœŽ/|y9žk{âà‚¨CËÁ×Èô˜·ˆ}CFì gïïÿvh¯·[jÑ'XÞ—Ö²4²?œbwT–­Ñן!E·¼N L3É[0CXš¤‚MÌyúøöׇ?Mϯµ_¢‰ˆÇ Fã¡"ÂgpηT"ÔC¨-çèq“! ³ZñªÄobÔ<æY.”3Bø|ËΔ²e]Æó'$úòOôʳ?¥l{èÂ@KŸ]HȽjÁ«5»&à ®ÒÑØiœ•s08â¨2{Ñü¶'·ãôP3¶o@f[ĬƒBö«/ÿ *–~ +â‹éóüœi—訷ˆ)< +0å‘ aH·˜v¸Ì/ÍâQXôåŸ73 +ôè„§¼‚{ƒk•Nvgè‹tWZ¤Í k–‚×+0»?œòÎv¸={‡ú(°´ô†ë‹S£½§¹ËºãäUÄ’•âz¹ùìŒÇ„ÇmÜ+ìÇ=gX™máš}6còœdìOy°Ù§œ* Nô. ½Üp‘BB²¡ýl›ußàV·þïèíÓaŸ ØùÈ[íŽl–“#ä*¶GgFm醣UJ›ÏÜóUÏ礵™¯">ŠîBî{%>\žV8å‹`FH’ÉÆ‚`Ð=[Iý4îÜV‡;^bz“Ú˜|‰µáCïRÔåG9Ú|ÂÞ„䨻Á#„>Éí¼ÿL½uùØÇæÎYQd>oˆfüSM†% R”@—Ÿþ›Ð>¸·Ð6°‘ Y› •nÁË ÌãÑÂwðÕÙ©{;o<ó„ÓVì´ XBÍ©¹Œ6Ûbeè#Ñ#Ž“OZ¦Ù ÕkŒ@ÖÅ t`èXvÔ[à:îÈí3ƒp8Ùp!õAã}–žÈú• .ê€þ+ ?w¾ç—;Ý9žòMÚS[nïûWA.(¨#"Âî‡Dœ"¡¾æCt¸{ÈH¸ˆ(^T„œp\h} ¸•Å,Úá*÷O½€ ø\Ä  ¢Í#ýgñi™Ðp¡á0Ÿ!“¿›·ÜÙbÙÙqØO‚c0wBvÖj¢ë>Pû˜£y:`´©Žî]n1ZnpZ[È '°Æ[Çmvn>bn­Ùá±H¸\Lg‘z¥ÒEö„dø¸Hw›Î@',Ã+œˆÑP@zßuæBª‰[‡kÁÐÉVâO2wæŠö€Å½³÷|TSJÄ£ÑyhAøîÍ®.pßÞÜùŽw¡xŽÑšw®ãB4¢P´ÛYP+±o ›è°9˜ö@Ì]GËÖáÿAwnhdb³—°ˆ»M÷Ñ9`yZ-ÌÝÎ<]2bÄè:GºÍÌÃÛ‘["ªJÄV\êè Ñ,1\ð¶“¡yO´c!]£÷y.m3cßjœ}BEd–-: 2ø""fé„ÒôSÀ;š\lH*Gè)ð›‰jËB±â­qyû*Ý«/ÿ„-:¹£Dg‘¦Jø¼µ KKœ 2?T=ŠDÜèèÁwêz|‡/:w–ÂÈ_°s1ŒÆP‰c¹§iFþd  É­hÉ «½€É»ÃÆ ^zõ ·˜¼È§1xã§”¦HìJ¯²Bh` dÓ°¼‘ú›; šˆO(‚æêÜ5,·XM†t–w`´ÓÙõ³b§‰i†AtÆ!m±=|nè‘6š0¡XNNg0tÀ1Å”ƒÑn– `d={csß|0ß„Pù×Îx°ãh„ž¢¿Wô¡ ¸ˆ™œ‰Âó‘G¤1’ $!¦}ÁDчd4wø²¸ó%BÎW¡õQUš  e…‰õA¼8¦7&%VŽ<ÇôóÚ„¹©4¤¡eçë3·6aŽ8ßjaX¼a­˜V”ÜOKA®¢yÉçNŒ7íq%•¸Þäp#–˜&Z²$â‘é ‡{ Vn!ƒVn-KäÓ0{Šk?K¸¾´ÀŒSsA‚jGgc€Ì÷×Êr´†­0Ax©Ið8©ëœtÞJangÞÚîPQ¬æ4¤Aƒbv¶§2#y•®×ÿÏÝ{n'Î{o ç¸‡˜Þ±M' ½$ô$Ð5Þöá\û‘änÜ(óŸùYk²Ë*[ÒnÚ6 9e^€ÆHÂŽ"Ä€^l(t‰! 0Øu!8€;‡dÕ[ÿ‘‘!U>…ê-Òn9ߌ›ÆÁŽ!hšA2 E.`ùH¨Gil ÷"Úù‘{Á é”Ù_P¹•îy+@º?²s8+¬k°ÿàÍÓ@f¤X@ݨA°šHÚ&#À”ƒŽ3ðñû©`€—ÖÊ0Ç(œAzU±‹*/q»‡WX!1$Ð @0xl…Ìx£]ˆD×HÓ=€š”ЉÊG”’ÚDÐÎ+VtŸÐªò#5Šf×t8òC¹oh—‘ÀK%ô&.Ì×QØ,'7ٵ׬€/É¿ ý17Å¿š/sá»Ê‡¤‚·áa(]VÐìÐ>tÏ×a®`0/ …lúÖhe8ŠÄ (-eZôG¥røhÏHO!Í3p TvЃҹ|Ïêl@3„7‚É\Y`'ùC†¡“gõò !R‡Ñæ•:CÂ2º)h–Í‚o½{a³$tÐæ.r·Ûìhx†0íJ!üPTHy|X"ŠèvI8\  ÛD/ì†ÿRÕ¯íì¤ ¨‡p:1àE¡(˜Y0¯ôþASƒà…q;F +æ: lÁ(=¥@ €#Â^cõBÑn×õ £Á­FÂíÏ™E¡hÀ_ ùý¬d B³z_ž¶>Ð@ @ö ÒO€è ñp$iÇ÷Ÿ1÷¡ óú€?lSAè»r(BÂûôa-€ €¾Axý,25ƒ48¼Ð*â`‚ùÊ Šõ‡èô)Gw;hÿB÷)ŒX2ôx…9õ# +š¡ðöZ´– hœA¯/0ÛèÕ Oëø¼¬R4Xœ^ ÐQÊ ˆ¸ÿBSþ…œä6ÐàÑÅN@F“ô[L+0„ **û ¼…v2iDcðhÀÚ¿0ý"‘b| à/+€8†“KC)pð.:´aHŽ~`£An0b¼CPkôCni\!î¿H úÅ1ØSk‚ä„M„pä‘ 2¿„Á·<0Ї‚Œ.~|§‡æ/L?´fŽl°0+øÀÖ†Á›ßpZÇ& a…WzqK{pƒ03EÞˆ®|Dî@î?³©ð2s Zþ²>M ¹GIè-CùtzÊt$ ív¤9!  j˜kÆ£{4&í_XÃG>NÈqHÖ¥ /4ÇámfÐßBÝd´ +¤}ÔÏ8ù$?ÀŽ”1í_X·2²ùp݃¿¨õ4w Æž{‚z®Ì©½ðÄPVy¥ÁǵÌ¡ªÎJ\Š o«Õü?«¸D¦‚TtÂm¸ÔD’›L芔;ÄP"»VÓõ>;ÜQþæûq6øO|üP1û.ºL†Î¿û뫸Bý +‰qù«mäRãZÞíÖ5õþ×pGÝ:4ò䂲ðwJ¡›!—ë %úö?JÑ|=C%t±1Ý?"2hSHXÚý{Ǹެ•º,ßr3^L'zÆÆ–¼Òô_8zµÔЖw]ó:‡×EéYøš3ù›7úØs›Õ¯ÚêÿK\,ö—îÁÁ¢ú—ò¯[‡1jã Ì¬Cïrüåû¢1LWþÿ°K©Ï¿ÿ`iü›·oÒûŸe°§`r7³6rSiÐÿê™æ7‡àU¶Zcù{>ÙÏôŒ‡)ø{ÇäÑ1¢tmÂß="@^ ½kn6Íô°v®äo)­4 Ñ˜¤«Êôs_ÛÍ©ghÇïüšbÍa7ž¦!Dâ*ÜðÚNÃež +)¶{ @OUÊê™úãw~³Ž[(åó›Ýj¨´'…þœ/§ª…EC–þß·Ù©érŠÐH:è´›N¨k©å×f7ßÏVzè%÷Öï]¸óÛm–ËÍ_Ó]uHí§;Æë¨k¬ò/þáïÇËÃdšn÷H£=Né¿}€ª íïé¨1›îëS Öº6ùÑ+¿Y\ãZcœÌá-¬'ŒPò®ŽìwÃ5µ‚êÆºÔ{qùß¾<µö`ËáXŸÃPXú7 ÙÉüóó@)óŒãz’ä8zå÷— †46áú°Êl–›.Gƒ ð¾>×›*¼-õV×ÈDåó5åÑ?+tuÒ W̵DÃrCQº˜&Sð·F}5ûÍ3Ô)uidÂÒÿóÚº¶$¡rÿ Ǻä?Wô°ÑÇp5¡SúÿÎ8ÿeƒ¡ôtË?}8hn.œ[ƒ¢º½É¿¬CZ–ýÿYGÄ>ßÝ› 0ÅVóÿ8ûOéõù÷ïîÂjºN†ûá¥ýˆ^ØÓ„‰ºÑÛ… B.Φ>bÃw2Ãõ_Cª1ÿOjC¥JqSßM©éî¯é Œ#ºÉUz8š/ç{F¾¦¾Ìn³…QH)Æ $„JIëJTj·m†»IyXkD¦zŇoÀ€²ôyÕë`Ò@"ÚŸËéNè;fUæÙ*sMâ²ÿ—û—›¯  hk="²„å›"XÇ}=õLÿ¦´þáÛ~ž.››gº]Ôú†šÃQ£§$Ûý¯"æþ+HYE/%!<ˆ–£ÓHàäy ’ £‘‹i8^n“é œG?üYŒñ‹ ¸Ÿæ³?‚$:“‚ÁПEA^Üp) ©éø°›žHÂ`ä<’xäO#aðri2§@¿N£ Ÿ8S!ü£ ¼,æR +'+tH| +Cg +?ñ‡I‚^.JÖÓ¿ÿÝÀo§Ð0@œ)Lü¡?L˜$q¹4ŽÇ›ÃzæO"fèL¹³SÿaÄ ].WXbN¦ç‘Þu9CšŒñ—ËÚ Cöù™ë3>SäÍûO#hèr‘#$è¹k4DžkÌ„ÿe¡×¨ŽDð0Ī‚Á ?gS—m膞a`à VèˆNkÛÕ@ÿ ZG‘_DëЩ¶xà +ÄFéo"·.n .W¯¦M×û%PôÏd¾¡ð™šVˆüÓ4­@ørM‹'繬ÂÙÏ#høÿPÛÒÃམ¿†DOu-…®Àä^ùƒÙo4Hþz£„q'9¢"× 7òÅüzËó,/Õuu‹Ñp½8Ýs'S›D~›?YÚáÁÐU©½›=žê"D^–ËÉœ<2¹ üºÊ\ܧ:®¡Åù‰?]#Bו“ãáç‰k9j.§tè7 +H¾´ëJȯÝfˆ_'¯åm»®|ÜM©ýð°®O<C~žËéþÓ%¤Ÿ¸®„ü hª½©Kåæ¡ç˜XFA3Œö…‹Þ¨öÛÃ^㜋ž;î\e¸þ: ¿¦7õÍö°—¯OwÔ–ÆG€õ±Íõåp=E“P<]c?ä ~Ç‘»ÜÝ[à‰/÷Ïv³ÛÃ0ç¨@•§ÿª7÷ #´”Û;rŸÑó)­d +¨¾ä—›Í®=\Ï©˜(T^²Màíb7ŸÜ\—óíÍx¯Qùçf7ý#câŽaö,–žÂ7vh<Ö7»›Ñôœ»G·*G`2­îrcÎL—ËÜ?û©V?·l¨#D^ná hç·`WÊ"Uªw`ÕþQÃ?¿Ÿázáæ!ïÜ—sŒ*®ƒæf+ $¼ òU¢ã}¹©ÐÝžJâ(®$ž•Ö“é?éx³žNuý…õÍ.W…truw‚ùQ/ô>?ßQl³¡°¾CÍÊM™R£h»)ïݼ³ÛEÑ›!+6P¼ý qó…²I‰ubXp;Ü‚5OÍW‡åPÄàÁ¿løðͰAÐäÍ&^ý–çSau2ÙνŒ ÀæwÞ,w’†Ë9%ÙÔv³gMcvÇm‡©J¿R V¾€ŽÞ¤û ǸY€&B' Ç|†Í–ƒ÷ÜF”éG‚!xQ«PL•v‹õf¼ØÑŒ_V.hÎÚŽÕ=4ûǕԬ“‰f¥‚Eànb‘ÛƒùáxšZ-Yª‡H" "ó +|½°»*%Ÿ†œl! ºåá¶afp\itíùôo°Òb¶ç¥OP¹<ÚØBNÄ•L/§Ó ÍdÚCÁjÒîïx¸”,gi‘&N¿lß4)ŠJ¥ùE¢žÕwxÏ'Ñ5½jœ.-ÜnôvÕ +3Ô9Mq+¨>#µípÌ£äú™[¦“Sú‰ê¬dùŽÖ³yØW°â„x åÝ„j•l'屡Ëqä†xùÞ|ǪÀf8fNB¥0¦å|=½ÙOÿaY¯b£PÖò8a!AÃõ~~˜ûáîv"àŽ¸@µtÊ–KV§e¯‚§òbEŒN¦Yq¸ïV6`{@€ +eKë^Ê +K +#È lU]AdiE¡dÁ”XÂA>ÊØ'pO‡!œõ›Êô/èRŸM´òÅÓ©¸Nà$d`<³õ”k-n€8ܬ‹‚‹¢4·Ç$‚Õ ÌŸù}ª1ªÏOjÊrÛ`$¬$Pa¹Mæ |Ó8lÑ®¿Anj¬‚®°`$ß…Fe#ß¹)6«•›ôp¼€y=¹)­Ù6d/>ã÷’\i´±nDæ×U®|‹š2Õ¦(ÁËLý¡0LeÔnF åÈ•áñy +~ iýì t"_JxýP@­4Xš`¾ÀFÝÏÁ¦“ÚŠ/äVÛý¿pÁJ=¹wJÌ]0›d +”âTp/4³xYp}“*ÅÑtT‡[È7ä,zå7šÇÀi¹â…M¬f–é³<\]™ºPV¹°²2†¾…OŠo ÿ‚»¦ÒFž“”î} •T8Ä›0£IœôR@n¢´^™é:­A¹IÖz‰Ã›œô㿊ê| L%oyœ6¨C?½MÑoù™¶N£EDÂOT$¿À¤cƒwâ)7÷†ã~yšh¾Ç¬*•¢ï=òÌö‚²K_é5átK'N³)BŽñh¼&7ÅŽÉmÆìa ÊCó#=¹ß(h\>͵1Üß³ëY.%,TŽ5ËtæëÉæoJ22A ‘Þ,é/^‡Ñçf9™îdËe6Ûį}ߤRµ@R¡À¹,#©nºÕº¤ûˆÀÌ® ç[Yn.y&ô( žKš§Ý¿7ÍÍ '¤Ã†WðœõºË¤Œ#Š7÷ا…åf4\>O·‡%%“‚w››­àMñ3Ú%É=¼…Ç›Ýd:9^j7¾ÇÍþ”Çì¦ññ7Xø¾7#ïh¾_ ¡†(õÖÓß~­ÞìéæóÓK_5Êm~…â«ánAI‹2}W~ ¦`FU(•wïf÷åen<·÷5ƼŸïYCàŸ–ÖKA‚w¦Õú_ð&°-[N³>¦§ü/C±í΋v˜w¿‘ƒˆj[£}D§WS+;Þ¬Aé=tRÊ@÷q¼¦¤N9‚Ï”[DTž®¡](Ý=JÄûK½ÿ+¡)~\R ù)ÕZƒ…4ËVz´Œ“õÑÊl™Ó:åšà¾B“ƒ<#êå&Sjþµ¨Õöìô˜Ê“›Ñ¿7ÙP‹w«Œl-ä·²þ|m¶Ùý§E£™ŒI ;´s“/¢T4 ¾œw|¥á(©TVضÖY^ÉTT¬.*ä<Š –‚V: ©ñvÉ^eÓ%*ò¼Éô:;4–Û–ò®§_CþÎ=Ü‹NˆÁ¯ª°Ü"ýgëüùå™è5q=ÕÞ9/BeñHŠÉ<‡n¡õ”¢”Ë0L‹w®)Ô·$ÆHç U®ºT¡So¹’_2²P®tÖ!_Ç0ä¸* ØzêþŒ|cªmn¶ãFjª¼yAŠqý ½AjBU69Ðx}OXd7ÙQÌŠÔµ‚Qùáz½Qá/ã•0—©ðdüx±¡ŠXç"¥&ÓVáa§ž é›R.“p‡<¤—Pï.xy»ppÙ®l鎨/gPÌñå-Ré*{Š>^ý«"ÑQeO¾,Ëâ+ÜÀKéKâ–ˆ›\½qrSô[Úm ½Vÿ¦U°†çÛå”<•Z.BöÙ#l]Á•„0œi½áÃönækoM\™K ­jÌYnCx–{T +9Ò2Lèâ³Rè"*JÇùÚtÌbZhºàJ79»@O0,$»Z¬(üVî=!$5,Z“†ÿgº¬OwŸÓñþ¸_Aµ‚~"Î0_”¶ç¾ôœ©F¦TгS(àC Ãr‡hý!ýŽõâqÖW+FoóCËî>Ýø¬š*þÛG ÛupÌ(>'cµä>:ÏWßþ‹Ôz‡YÞZ¨lÿûï? s|d1Ìi3b˜ýÁh°D‚•\í?þh#“»§>˜wðk3î-ÁËøcŒÒÉiõÇ:ƒÏƒÉvÿÇ>Ølèkîc\z€_oÑ×´?r›€_ktáæË8¿ŽÑ×TäÉ¿ìFX÷]*RÿþŸ÷ðkÓ`)ؼ)7øì„…ŒÏËâÑ>¹á۹̜júàWÔÑ`Öûì¡Àžæ3ÓÝüÚ‚_=¹ø~‚?Ñ`šœvè+Kô,\ñÏó™Ïþý¡—Ðv–5qcþ.{Hyý•„ÓŸöyê©æeÉçÒNÐÚÞÏ̱×ì§­hÉ–þ""¦ß`AÄw¥L،̖üU2k~ámâù¿ÿ¬[ó. +=Ì¿BMOï…Ìaž´o¶Š»Øù0Xà_4ÅpòZŸÌä9/ô‚§æ ÉéìzG?‚·ÁÏ`˜¶òü¼˜³e18;µwð¤ôÌ÷6ŒVKú©‘ˆøß½D!Ý{yN=OÖtÎg +Àþؽ_?W6¾¸ÏY7]g!ýúH/bwò§7O –_k ¬3X¯`øëâ'µÚ|òwùR-*Û™ù}1æÊU+Dò'1»r•ücÈo>ŒÿûÏ·x(c®ø~f(´~ˆ¥îä:3ÿšì –ðê-îÍN©D8÷ò™O'cß _ùÓ¯^‰–¤7ÕÛU¬åF¸û*÷LŸ`&¿]iOôé5[š”lKz™\úÓË eû¨Oj7.®E´·‡ñé´\Ù¤læJçÈÏBŠØy\ÉŒm”Šx¼Æì§çÍŸMW«qé”ÒsùZÃÿa&áÁLÀèÆŒ“â7†e;°fw K<ìa?Ì\9œ}#æxìþ`ÎXÔ‰Ö8šWP‚Ù±ö>üfÊÛ7ü¿Pdzt%)ÇW>òÀµY1£µÃLîì#f&]#Ì[×z_ ‚µo‹áÌžX¾bŽ\cƒ9Ë·^ÌõdLcîö yÞrߘwäq`¾¯ù=†¯êOA…§˜ß´7cþC+„­wXÈm`aâ}‡E’U?ÍŠX¬… °ÛñÌvo턱xü¡†%Ú÷_XrM¸°tÌ™Å2¯¦w,gÝ™±|ý'‰-Û7¬TÛš°²çÂ*CË;ö˜p9°º5TžF©9Ö(UX ï¶°öáÛˆu7îöò~?­¼u[alð´|Ã>šA76j?7°IwkÆ>'ñ +6Û ÷ØÂбU¬÷ƒmjÞö3îü`{7Y4b¥áÁhÚ¦«FkÚd5ÚgÝ–Ñ•IàFeù0âÕá­ÑOTW‹1ø{0FmvãmlýfŒÛ†wÆä®÷cÌÌžÆü 0–ú¥¥±òV¬k“jÀø¼|Z[ûvÓØÃA=o©¥ÑøÞÀÞ£hùó¶Dç-PÁÊ´í·õH ´²·µB&ccg6Y‰™É1uLžF¨h"ü½ˆ)hõ»L‘Õ2Ý}Ü~š’Ïß/¦ìãCÍTlàyS¥³¸7Õßž¦æ÷½ÇÔ39l¦~tk4 ëÃiúÕX™¾Éò·ÁbZ?gf&Êšú2k‰O³Íù2»…™¿-›ƒXke޾½ÿ˜ãå-fÎd ›¹èOyÌUW'h~vS÷æŽ7V0¿ùÚuó0fz5VË3óâƒ:˜·û‚ׂÝî ‹µûX±¸¶7 ñ8\[Bû”Ër÷h[ÒøgÃR˜=Í,Õò½ÃÒ{“–žqßµ –‹Ëä{²|¿Ô-ÛÏñÊŠM†«m1y²z­«­56ÞZcuâÕšœ§ì‹µj—­ÕîbmmZÝ÷Ö—§ÂÈ:Äçë×4øj]g;^ëÁãèØ¬TÇcóL}][ Ý÷ÚnŸnßléò&`+Õ[ý-ž°uæö­mp˜UmŸ¡žË¶ª”ÞmûE2øŸ-~Ù½ŸÑ®= Åì÷ß‘½=—¿íÚ«€+Ú›ë†Õþö6Û'ÛŠ}™ÆCö}ºltØÒӱ×qÕáJ%îH (¯£ð“¥uïbâè>d:Ž VvÌãMЊãg :-Ù—Ók}59Cýì3Q ,œE¿yê|²n†ÎÞf:p«ì͹˜÷_ûÍû«Ëáøê»ÈÈæÝu[4Ž\ÙüÓõèÎ.]jwç)‹ë»ñºöÆç°Áâ¶¿›Òn2_ztßy6¯î•Ÿ»kcÊäîõë~÷øÃŸs¯F‹ŽÇ¸n.<KÜå Ç<)Oêñ§ã)/?7žvðÍïùxëT= ïóÌsøzÁ½®ôkղޖÞäl Zñ–ÛöŽ·]¹3{‡åVÑ»|X/}ÆÿÏóü<òE&¦ /s(|µØÞï{i= |`!}?õÁ·ÛSw¸¿eZà‰à0?ìë&¼ý•íà£'_ƒv KÉ^1XâÑá#îŽQâU¢µ “ĈÈlˆu±Þ&-?óIÞÛ\d|“[’åÌ GvÞ Ìí0ùS1ÙüŽlcíþLð£å¯‡Óþ~ÔœôW¾"c§†,ß>ã +Üß…­‡žËè:ÍûÀ´g¦”ßL] ç>í„ÁB&c ¶|5Gpìùƒ?ng8ät¦¡ñQ åÓ¾F¨ùÜx–öeè'Ú³†oP8ê˜ä<+ ÊÝp;N.Â“ÝÆ¦&P¶TkÈ]±¸”3é@ä%~û™—“ßQS-IFÉi¹M[ÛÛèSnvý˜šÁ~ܹcÎyï)Ë1À³…Xo:ÛÆæÍû¬Árk./7·L!›ÍÚ¨Ûf¶_¹tl·û!Þ¹Ãí¦à]2ó=¿«ÏÆ¥»aäÍq÷óùòqïIô2÷qçÄqÿ8œïßÛæòýö!è» å]ü>;êÇËÎRüý¥ +f?¾o­ '³HÄwýDm[©'†yw6±Û£I_­àK¦Â~[²a·`ÉÉj±Maƒþ"å¾ÎS¹Iï+Õùê|¦¾mÃYÚv·øNGŸ«ty‹ïÒƒtÁ”ÞîÆ.ƒ%ã}tú3)²Ï4öû‡Ìç¨ÐΚ»‡I6\{¤²5¯7ÛïÌRÙíGµ‘óYãó\:âtäZoX*7w®zy[ç›ÊßúfÑüãtÑÊj{ª€Å÷… '2(” •Bß2®~\Ž]–3Ål}·(vg¹xqå\~•ÜÍr¼”r8¾K­×q¦ô-ìòñ!>5¹ÍYÿaÖžÆËöÚ+U¾´ËÀÐ~9ßWì‘]¯rÿN¦ –JÖrVfí×廙ÀÚÕø<©6[s²ú¾Å]á¯Ùc*”{}ìM«»·lÍ[ÍßÖ²œ¬½îÚOna«“³¡©^J¼êïûÁþ ëž"ùñ©µ[ –§OWÈñl÷Õñç„ÿ;üÜŽøÏ«ÇÖCÃ7µ¶ßó¨1¨9¶MÌøæjFš‰»f=f¯5¿öŸ£–sÜ6µÒ¯åX륑|jíš·‹vppO´«³xµýiÍ}wéFÀ`餾>[—ˆÅØÙ}ÆsÝP±ÿÝ­¹ì·Ý¯EuÜs}˜Ã½l¿5êõ_ÉÈ 6œ¾Äf•ÄKÓÛ¼¬rŽÊ+ñI9_Ëþ¯Áëd0Š¿9îÇØ[Æ2y{mã}¬ïµ,ýÛÇØ¨ßzjTú›æ2< C¦A {ùÌÃÎÖ»·Õʽ—ìDø}ܹ>Òá#³&ƒ×ýxh.Þ†‰d»3|IÖÃC©þ4º}®×GíI»>Ú9GÏãÈã¾m°Œñ:Þ”KÃIÈýõ=yã»Éªýê˜ðà´~ÿ’ž.3·ÏŸþâÏø³Öé>ŸIÿ—Ÿô—¾j ëûׂÚ`3ÿÓúvV÷­Ú³åb·›Þ·ó§Vìu¾~¬íó;T—¾o®Õ÷ö«t¿ˆZ—“E;› +/¨ïípy—{Š,{bº2vWñUò®±Z ÈüÃÚfÚÖ9ñ¶ûðû;ìÝoŠþÎf6ŠßmI¼fÚÖïÛ {0X~"ñàO§44î0¿wºKzûíÝ»3\ –ÏèÿçÜl2öj¥æÐãv’”:ÂÜÌ6çìqÁáHóõbIí½c>DŸõ –Ö‹›ÊœÚ߈x@âñÚׂƒ …ήY»FGåO`ŸêÙü»L´]H¥xa7üWÂ)Ï×*'"Ð9'«°ìæï55„þ+¾Böpœ}‹‡ä"D.sDÔP¬!²E®4 K·¨)òñ616jb<`Í£<’ªc‡Ôî§ÍÙa5Zç\ü¼ìq??‘ËÍŽ'Ù‘ïWåÕêf½Ïv›ÕT–ä*ô`6 +‰¤¸n9×¢&¤Fö†í* (Ƀ¾‚-ý÷f·HkÄä),\ £\¢û^õ†&F×SGfiǰSB÷T˜ 3=¼Û•$å‚m–ŠˆM6lpÏiÓT;fßbó ¥Æ»Íh¸¯ ÿ²§v] V–©RÌZ¤ƒTë-¢Ò"::Ϻ ÄóšÙ¬'(r¯4ó;ÿœ BŸµ–”òM êœEL0éâ×\ú²Stúy¶„¥Bø<:T½Dºu\¢9ñr¼1 J8¸L•WšRüûvs7_Áa:ÓK׊6ÏN©ý|Íà£y®³9ÁÛülè|÷™ŽAù—ñ´TáÎâÕÆÇ,D£&SjX§Ïâá,ð(0ùø<5Yªs©©±oae&õß¡¢‡—–@žÃÈ Í&}³—néÔoó)w((us~œ‚5Ù= OÃuì®/¤À è¢,ŠAoÑ´Fô-[¬eAgÕ +ÍÁ"ÖÛ ¡ÄhÎÀ4Ý}òf?›Þ0#7 ü{6]ßP4e¸¾N2—†ü95ÙŒ¦7 ~î² +/BÖìQåâÊþÝn¶` ÝÆ9¥jš®îk8_ÃSwACîÐ÷êôÿf¿UŒ§7stD?¼Yÿ…c ·4@ 2eê0žÁî•ÖYSÎWC·¶$:€Þm>ùæçÔÍa½XƒÝæÕͮƻùV=š‰7`#u¦#x„ö´Ò˜9”¢VTbÖÔìÓ\8“š} íV-– 0Ƚ«O›mì‡ë ‡8–/ø‘–ÒnãK,ðF»€"‚òC@,³Ä‰Àñd*ØôÏÇÑ=L,ÀØ—k³9Œù(È<È6³GU!Œç”l=õ¯Oéa>¬üŸ}mÍ#ÊI¾*tÝ­ˆ¿o²)Owëã·Ö€ ÇñàI—uøùÒÝÍË+ Mø·Çž‚[ƒ¨Kï¹õ„»rl¸Â â= DõŽ}f@kDø‹lœ€+ü»í‘÷¹ªWb¶÷ÃOdàî)æçáŸâÅ÷if·‹×…eû{”þ¨>¥!Ü›¼+×É»¾b꥜*†™|3è&}û; +¼ý°Â‹õ ×hî-î0Gpïí2Ÿ…7,U4[ù»\à›x…ÚíH +žþ»^옫ð#Ľ˜§‘hcžˆÇܳï&æI÷phváÐîgø)M8So)4Œx´hþ– ˆÂú¶,i‹³h^„…¼>*R ¦â|-,ñ‰µ—öì–jïÞ–‘2î 4è–ÕF +–®?ùd·ƒ×ˆ5?pÐ +œ¨]?ãLzý•ÈÁ/`V~"P£Ísc­Ôè`ן5½ÿþ8·¸Á"i–ntz©+5Z4-G¾ùFï°WÊÔîÕ%‚VèfŸîmñXæõA®Q×í8p§Ðhpæ4'UùF½.žÇUЊÜXùIÈ~v<Ê5Šç›¬B£!“¥ÞH¥$ÂV˜f?ð‚é¥%ßhÁ“´•FÞ®,yß¾‡!¦ÑºÍ&™Sÿí~9Ak¬°Kr”Ïjo×'a£ŽãYõ¾î«h4°‘6ÚÜå%2+5\ÖŒ{¥F‡»ÕÒVh4?­m!¿l£Tªï7X”ÆZ l^{ùFïŒvʶîäÝ>‹Ãžxíó,‚¥twû,+?«¦ŸÃKX¾Ñ@ïÏ—ïê²#5æWQƒÅxÌ>ÉÏoæŠZ«µiA©Ñ)^x2½ð‚±üØÁ- _» o%R¶Â»Ÿi´ç±K þ,Ït£¹·E^Ôè Ü••RÔ›uµ¸ø Ò‰€\£xeõ9Ul4RÍ F|£`‰šàµe­!ßhÙöRöz7;ÙFUX±Qƒ¥R” +c} àÍRáÐèaߨ^ò¶ñýœoÌ‹¸ÙæôÑ7Sj´„·¶¸|£•¨­mÇr‚yéxÚVűvRö[“R£süÅ}?oô±4ýÆÆN;jÔ`‘޵?2V]Ä–¶…Fßø` +È5j°Pƚ˸uö.Kà׮ب±7púä½Ã°Ý.__ÀF]pI¸RLºŒ‘»1h4ö#åJbÝf]D’FÞëjH{{‘oÔ`cuÔ]±Í>›u5úØôYjóê3h4IIGš{ÜâL£û„KÂ-¸ùÞ4 ÙßÇÄ â ÏåZyب÷˜Z0ÛÔîFó©L½÷y:t£ ¢ìá<6kl>4iáO´*‘:µ_cdf?†âG#mûß¾»Ù;'hô“’w·Ë¹P£P¾ê+ÉsŒŒ–>Y™{üÔ?.yŸºâ÷›¥ä©ˆóÇëÖâÛxînâfŸ6ŽtJ²øÊ>mKÙ;ä–ÏÍwÅçxeò1V~ZÅ–_*Of/O±ãçµÃâ[ùíF;Uy:Ë¥%O…ÛϛšâÛ»½›d…Z¡wÌ[áöé›t›е¿2ÅçxÇ\7«< ½ÙUžgYžbÇÏ_‚¯.å·û {MùéÀèJžŠ(6øLßâ=W~h{†*#-å·ÓÑ@@ùécÜ¿Q~Zû‰ÝªP,fÝnÞ߯¬®L}ú¾“>5Wã öéˆ:¢FâÙ•øùVbA6óÌÙ±Vô4¾uÜmwª®Ö3|N3Ÿ>< ï›Ù‘Iû:YÓô¡‘M¸͈³À§BX˜¶L¾û–Ÿ û ½ª0Ùd,h“o~?r€I4æ?OÆ4˸¯Ü¨1?ô*6Š´I£ÈJbÆ +µÿ…F{ï*Ì!åF¡ö/ÐÇü’¥uŠ¡R£Ï*ä},·%í‚oêâY5çnQ—œ÷>]åü\´÷•JâÎXJGHÕâ¹ôÜx¯²Ä[׆¨Ã»eâÑB7CÚx Æ/õ™ÅÝ9·àOÆãÌpÆú }‚¿= u~@֠ÕÞPt/À§,ôäPËÖšoÕÁW+t~œl´ +Ì4Àõ®±ºuËj$…Þ'Àöð‡ ÅÂÿ‰oí“&£1£zø +ƒn&è""Ç ô).§}³iÖÿ˜8ê8å|}`¯Ybh¶9’BÆs滺á»)&Û©<%×)®K&ÂÝ"ÜðÏ«Ðç"v"’'ì¹2ã!Q!:ú3ìfy»Zn|~óm¹¢8>ƒE0LÕ„F¿QÇüÁýÙÚ4H¾HG•WUbéž?|ú=m3–…Nb©UF-:êt7èYîp±oˆ\Ÿ*œ´²øuÅ…^Y·Þ3)L÷÷OwšÃœMùÏŒ÷Ug0ȯ,È|¬'÷wŠYONÊz¸Ñ˱äéUšž{'" ×e1ë™Ö½VZ);¦]ÚÒ%Ñ®”öçý`¼½êæhgW Ý Göé²<ÛVØ•´?Nfhã™Cc¥\"öTÕ"õ‡ÃŠö·ÜŒŠ•b‚5_([™Ù—a£¹·¬çôI9L™sBÃmCÑ:·Â?ÏŠÓ„Æß´ÆÎ!Œš”NÛ™Es_õñ+™vêÈW–~‰>è­LZ·ëß814\â}—?iß©ìºyà÷¾ü\ú榘ýa¸ :¤YCã»Qq: nB-ô„ +ÑG;9/á‚âÊ’øtßòõkäw(Èý¡±J*Ò7Û¸îµ0ù)a,>ZSMIAK ÓÍz&™þÎÓgIÇ‚I[g^DöêbÉ {~Aç‡3µ'éÞ/ N­J,§Pð*wijT–•I®?:TºRéºT{æö¬Î¾æ ª«t:æãÉ‹¨E}O˜¿¶GR•P‡9¹2 …‡¯Ê`Ñ®Ìwñ ¡ÖÇT†_bÄ5)F^“bþK‰Ä²Àã>6\¿ŠøÄ6Ì©ó½û%ݨsB+ÏÇö L‹ lù]ùUËøKvå>a>ÑPFç±23™îî-Ú´>½Ô±ê6>8Ú½ +ôtO‡ï-nYÅŒå]ºö‹ŽiÒaâI:">}cº"ݺgtäH·<‹&;Ub,@_ÙdDT¹®O±É]2AF\lOžÝ-þšô¶O}íOi@É©ñ]B¦µ’#Ç>”6HŸú1ªwÉ »S—0·|‚º‚†XÖÍú{»õ4{_y|þD»YÕArƒf§¨™†D–ú3d4yÚ×WB‡z×YTø§í§+á \,œ¬á£`“ƒµ¿?É­ˆ¼£ÊÄ +\L,D*t.vÚw(nqW‚x $ÜoŽn‹¶Õ­í]Z=ˆ½gŠ5_‚ß³›U{£á’ÈÊ©/ïÐá’]=ˆõw¿hïët“€¡ì'¹7h+IÚ©X>ݽÖÁ™”¨4Ť³¥k@Ñ¿¢-ñûÀ5&ï¥{@‡»ú}Y>cöU_Ÿ”(øk uTü5Â•Ì «‘ß!Q¦¹w|Ǫô¶,V¥e‰oУLû-—éÚyýQñvéÓ„ÚÅžlr+‚±ÅN„`h±Ë÷˶,–ç¬óDË"Ðŧ<ú½Ñå#¹§6 Fƒ•TèÁbO’v}ìL„t0ƒPÔ)è²å#A§%‡¤º¬È§«ÄñOôoÚûN}×±+0a×¥ç0MYÎ'8Õ{ +‹é  ÀÛŠ¢;dXÙýþBžÜm # +mž¬î‹‡³¦-ò úê’'÷†‰¼|Òµˆ¬I¡|b=@ò.÷8߸¤2ñ áIBTì‡Ç¼vx2"Ò8á¯^õ£×…«Âùóµm¨-n`eNu1(wƧtèSh¬u‘R¨~ºÄRL¬¼CáqÌÑÀoçq´# ÜgœâIø†$¤BdïŸÌÑ@e•ƒŽfÐq‚+«ckJÝÖŽ]á¬)q´“ö>¬ç,Ž&¶_`=Wàh°–+œ½¢zÄMtôòÄŸâ íJ¯1—’j©ZТ£Cy…=­f»âp+ôÝöu`‘|émÕ išœN\q3s¾qlT¦|\ªÈdåÏ^aeºFe6“{{3±~˜ó”öQP“B-,‡Q©G¿j¯X 3û×£nP N޵뺟à^–œ& Ê®å«FãC²PÂÇÀ¯—ê÷Ì"%Œ¾Ë-¾ `$]u&…L+ÊÒP5žBo4mYÀÊFù àœveáIR ÌÚy.­ãÙ¿T¿§kËÂ3¥¬GA¿—«…Óúäê9AªÊÂŽ†?Y·4äd¡GFvQ+W GüGQ"ÿ˜ xJÇø»ÐQWTè—”¼rª|ú–ŽÔ5JÝš.Š šéØz4]PÕBÖ‡®k­B1=ê®ÈT\Éï;]û\íôn¯4êÄp:I—T6i ¬1­í%L#êØHQêbIÆŸ¬(˜2^BQ{R\“³÷G”øÐK‘”:6WïŠÑ¶ 2Õ³ƒEÆ|V:½•åÊu<$#J—?Yád@<“>†óëªLAÅ€ñÊš>¿" º;¥sEÈn.:vô™Ûp"*ayË‚•b-þ|ý g_òíFÒ·OWr»Áý»"‚Î`¹†Žéˆ‚N€ºC§Ž cîT¹C';RA'<C§Ž cЂcèÔt‹ï" KAÇ¡/ÄÐ)4Ê èÑ‚'bèÔtl|ò¥:õr€bWÁЩ#èh/Üå:uݱ«¬ {»ß*½ +1ðÊH ž§pz—Ž<½ Su³Þ$bðÊx)Jb#ŸY{äé•wèòôf¥Òþä©cÎø@ õH3½tÚˆQ6b¬('ãõÁktñ©T¦‡¥{|°uäœîñ½ÉÂDûEw§4ƒûä»$‡|Ôð\©tI 2'BriXË:yMî­$…ÈÈFk¨NQ²øzìt·±ÂÐzF=QjCÓ¡ºt€Ý.>øÏ1wª\ì¦vlÃ[IZ`7_óÀå–€0z f¬Jjå +ãÆuT&Ár{©†y9›ü žœ—B—´^ÅØža^dªb:"¸¤Km{@,¥³l¤É»ÎÔ‡Ÿ#7É""ü +•‰O¬À¨ºÊNNE˜`^DÐ4-µK?ŽOsuâ„Ciâ_àÒµëè”8Öñ4h¡Ø¿ˆš;ÅO¾ùz0ecàõúV R¦ÒüéÂñiab4+cïA¸xeIN>d)§T&U>Å$ÖË(¦rrò EídŠI¿ûø;“î¤LHªéÓe÷ñƒ¶ÝêJ~KM¼œ¤ +™ +¤7‰È ë]ýÑØÝéîY¯#¾uöhwõ{òªXñ8Fñô*4¯F¡ç™óŽêƒÊ:CqJ'.Viä·„¸ií}'‡R&‡Š'^ö9áÙ«"9Ô48 õ+OèÛNôé‘2§ß%-T,Kr•\:ѽ£`*Á»:µrb®£ˆˆÊ)KóSõ±þÞ"µê8Ü”ÕÇJ'ºw”av.›8‚è\:e÷rîÉ0è{ê‘9êwÿ„³ä‘QéÒÑfV—b*t:É#£^:Õ##ê’ôî¿9ºð‰ý¿×ñÈøÍ1£ñâ(µÕƒ^ s‹<‡([/öÈ0ö>a»µ¥è‘ÅZkÂДºïSz¸†GÂÐŽ=22ˆTm|ÞÉ™#??$LPa´Á9ü†ÓXɺÂ÷±ú^ŠCM´,˜Øâ;Ž¦Ñ£,mΤw1(ë0åÓ: ++b[†ù*N04»VL¯Úìœ|‰=a¸ÌÍa'ÃÇdCÑ‚Z¸ºs‚f%ªWwB¼žÒ af­„Öt‚Bê„õî^V·T Õ³+¯ÝÆI‚¶¢˜t=<œ†ŸÿJx¸Óî;'‚n\=r„‡;3BõD<œb\ßUñp×@ jãá ²ñ^ׯÃqö¾wm<œÈÃ!⮇S½%àjx8ƒ$¤O5Ôò<<œÔS8ÖÉÝX|.^ìZš„žÇDÊé–zb"[ºb"5÷~{s1¼2!—ÎHHÍzøk-Î>á¥ë¹Æ‚ê¹à`•ï¢(׎x†à:e‡˜<œ@|^)݆½íñ6¿ioCÉ&”õödä¢NµÊ øˆÝ„,·<¶u\+#åcŠÛ°}Ò6TÐÆ!½/߆@†»åtúoFõèØ†ZÖ+]Ï5€n~ž}× ªGËst›–b˜5¬LùØUÓJÞÖh“¹B¼*êLAÍdf¹ÂDFeäÂɈT¨ Dª‘J›.€ÚSóåˆÔΕ©« R;WB¤v®„Híè¿úØ¥%ëË_- +X85ÈȆBiŒ•`‚_[êLß!° +'ÃÇ~N€~’‹è¹îh^~ î<¿å©P8½våeP8Ö?Æá~ NâUÐFšž…“ñé +»Ë]"¬v#¼¶DÎx/»^¬¨+]¨†ª»•<Š:¢!zM|‘á:LÆ«Û=©È<4:<ð×ðhÞÎ ñ‡ +"nE¸Y‚«Ó¹"ÞQñÀï_˜5Nv93s@g ÿÂ<ë§wÌÝä0OÊ?À<ÑÌ‚žŸz07:Lþ$1רû€¹³Ïø&ÕŒš¹ µJºÌ|Àva&ÎãJL.΀‘ŒEåqgwF«ØÍë®Q£®;òëItú&Fc™ZÛ嫨íE ìö­Ž°û|lȕ΅L<¼•¨a±Ò ‘Nv3ͦAÑ~¹ +šNNñ?ùxú1¶L¤ý…h:9,ÝÑýc£éäªÒ­Mw†D>M§xözU4Ü>æìý«¡éä°t:b{NDÓÉùÚ鮉¦“™ÝÍÇ®‰¦“Snøû”®…¦“ÃÒÉÝ6šNÜ%“Цt šNN9=òô^Œ¦“›?I4ÔÐtª´r +Ÿ¦“« +Ý©rU4>Š]ЦVņI]ƒbšŠ¡:ÅÎBÓÉ£(d.ì¬SÑtrX:ƒfÆSÑtGÔ»„Árm4Kæ´D )] M§j½^ M§r2rE4º|¹šNŽ´6~M4*’ëjh:9-R6_ðbìS#/oòùÅN¹ºI9‹×“£»07‡N æfß¡¨]\–¯NÜ%‹–æÌ|uòÚ…N:ÙN§O%>ò»¤­Xè\3ù^Õ:%è’nV`×Ì.§™êU_—ÀìkâéõÒIy3Ër5:Uo'³Ì­˜Ã|Üï¥Ui…YkzæÓJtwqš;æž+*ù¹iîä³Ëé:>!Í,’Kî”;Áâ“ʼnîΛæN3ËŒš—Jwš;u"“èN‹0šA(p¿h&º»8ÍÊþsb° íÊR¯Á9÷\ÍÔ¢Åôâ,ü‰VXøUGˆRY¢rŸ…åCsœäE•=å)ë=T[ŸÛ2o<+yàu&¨ÓÉdUnÕ€:=XM|áûî´©J +4ª`¸•¬7ÃÖðÝv„'¾k,éÝPJç=¨¶ïôF§×WW‹†U]/ª¾Ò+íTÖ¤·²{ýä£ÃnÐàO:ëqj;Îz.:˜a"»`=J67ÙRXGd¬L°ÍÇTµŽcÉ×m^ñV@PÙµwi?¿r µ¼ìR$åÄJútÍ‹ÐT‹¡–¹Œ"ñb*q}§ÄP·7§«î²™òdG­W“WEèÓ-õ 6©…Fž.]{ÿèÞ㳑—«¨µ¨ÎSê¹Â-¨ž‹³U£Z„›PzÃái±ª0šW´¿Ï8áµÉDV@$^F€z=ð×Èp}j9áէg¸SD>¾]œ¢KáîâLyºðD:2å]!ÃJ»uT2Ü pI:ð!çf¸SÌ÷úv|ª¯#ÃÎ[Í!úéYGºhM@–HÍ‘±^õk;zÕƒE§s °Vˆ|¼°–0z䀵â³$}õœéÍy­Q=×Àsz$NJ¶˜f=*ÇÇ &´ÆaL0]Þ©øv¹ƒh›QGÛüv ¿÷íUñb)ŒI ’³ËZ¢ŒÓ cây’ÙŽæEÑp•]%‹±_ô˜´)º–] f²­'6b,ç‡ÀLI{"ˆ t‰Pñ*œqMw{)†fhÝÚ¤Ï>Q*Œ °.†DoFºSÓ="RÊëc`˜ u³H÷ÕT(fCGQÆ5ÝÝ+WušÓ;=Ý£R,„z^žîæ£ãDžêYã +º¤šîQˆzV¼Ý Ãk+”L{ŒêaJ˜³|K ˆ„õ50÷;ÔÆ1g3‚Ÿë º¯üÄ}ÝE˜<÷›…°{¬wIœ‡Í®Œ‡‹Ô}¸Øw!Ntg3o¶B}S”‡Í>2?/”ÒÜI3ÎÑþd°5PÆþáùt¨¦ÐhÈd^ûoß•@xƒEûWÀ‚Ê +»ר„gú ÞxhBr ÜWÁþ=%…yÅÐ4×í²¥ Πg²ãÜ*Áðd±,y¿pÅFñ|¿(€BY)Nt·ðµGJÕÒÜá1ÅF –õõ`RkÈ„½™B-¥<‚nµ‘–¬âÈ.0«pkzPÐ'„y˜Hf_¾\Í4U/Çf04Öî15îï ‹@LÂ1)ìÆïºíHt +"î2j~âÚ³Œ´S ›¬[WüiŸÅLì==;Ë×VÎŤê!Q†$%õ†´Ñ]Rº¬nÕŒrׇ¶ Ÿ.ÌÌR·j„—ôuœ©ºlšŽ©ÛbuÛI!hj@9éÍ“ç£Ò\ê]âÿ´×Ó­ûâñ!¯5„¸§¥Ú%¯Ö~Ñ<)J tIþ¦#u?ñ‰]ªÞ³fÔZò±±vÕs¯%‡×r>æór¦ôÜÊÀhÝ>ØÜÕ.oäù«}áŽsëžÇ¨>4=§<¹‹o¢EX÷Vѳu +ØMÙnÖ}¯uîÏ2; +Q€—^ É¢/¦iµÀÊ”£´ôøÇ$¨Ùã»âò§ç;Pà0CcWñRž“läy/èêè_ Çyäþ •ieÑ9BתUÖSÎà}:Å´°<' òèäòŠiåÓ9‰bÓ½ReGpa%í¶r> +P/P×=$ +UèϨ§d½êCêÅÎȰ%3@ö†ÃóP€z1€è”çl ^  á" ^ ©r. +P/P€±:¨ˆlä³Q€2]’… ±ç•tŽGu¤|:3²]˜”E¤þÚ¤|b¯Â¯Jʧ–‘ízIù4øØ•’òŽÎèER>‘Ö÷Ë’òÉçG¾vR>íü•$åzP§ÄÚ³Hw¦û£ VÏêwÙÝP|^¿KbáôçõÓ¼ê*yýØ¡Égõ;)ÚV%¯Ÿþ8¥Kòú‰æü +wCÉçõS÷ +[âçåõ;š!QV¿£»¡ÎÌ맺’M‚LßåõS AÚøòú©gõSõ)×O=žÉ ß¡«š×O}h‚•|Q^?u'çÎ=1ˆb^?õI#TÏÍë§žÕï\|¥4¯ŸzÄÙÑ]Ðbê\rqöV¬[^#¯ŸzV¿ë Ò©Htß@¥‘×OÝÔ=Š‚>3¯ŸzV¿ òñ]Žy?9¯Ÿr-Pä]%ŸæŠáJyýÔïBDê%yýŽP¸¢¬~¬-vi^?á6<ÎêwtÉ™yýÔ" WÊë§žÕO´+/Èë§pÍ R/ÎëWÍê'¸çꢼ~ê]ÊXÑÓòú)Ì)“Õï +ùøtœëËÇwé-l>¾‹qSµ¬~' 9¦Gyý4pêѶçäõS Íš—Ìmógåõ““áüíÊ—¢ÒôÅgì—‹òú©Ÿ7óQ—åõã©-gFŸ“ïô …||—nCIV¿Ëòñéµ¥Õno8ÎëwZ*>‡¹J^?î Ù¬~è.‚+äõs©fõ; •¦qý…¢š#³ÆÎÊë§Ô¯Àå·6 òú]âëÓŸ×O½$+¯×OÝ´>)ßÙ(\·<Îëw^œÕiEñr^^?)æIœÕOö–³3òú©†w¹•¼p§æõStF§_’×O2/’¬~Ê÷–×ï<¿å©yýôÚ•—åõã0‰²Yý΋<Î맸"1ð—çõSW »J^?m‰|¼~ü U£:/Ìë§h„óRì +yýôPìò¼~ìLÊgõS@×*ìOå¼~êÂAÅyb^?uá8Œøbº•>õ¥Œê¦7®Ì%¦ÂÙøpà¼cW +_Õ\»÷bØb^âÒBkŒ?½ù°,EÛ*m\ 1͘"8„‰ëžžKbߊKăY¹Nºƒ_[¦Ðû4³ÛÝ“éx«ß³c–u8€ÙbxsnOkT]·ËXÚ¿ß%]­ò̆ç·~<Í%ñ|¿_Ä îÃ3^ §_ñÊëËŒ¥ê¤¼xãÖÄï‰4ÞúMð¶m=ÃÛâooÌx'1ÊâýÚ¢Œ÷÷Þ.þ^ò¬ñç³ÿ¸8v»GmG¥ú¡µ±–v‡Øþ•2mÓŸ^%r`°o˜ókS‡lXµ•¶aûÐ6­›Ú/͸y½óå­dàýÑöшEŒÍ‡±ÇÕÌ×mñ§»iÈÅAmÅé[ήX¿Á”¸òöæÁvó¾ÏR›WŸ‘²/ëéâKóes-O¢0ŸdÀÑsÝÝyb²ÄBÄõâUûÄñ©Õu;€·ñDÏ7;y¼`ÚÔwT¤3AHRÚtÝû<(¥‘Æ$ærß¾õ¶¹…¿™Žn6¦w ¿}â÷[Á•K´:Áø[+Qᙌ œýüfÆìÂ,™0¦»ÚébvÏÐ!¶ðÏ-LªYÇ<>ë’-³m¾ÁDšQØ=AJuZ›™î“4W©Õ¦B¥ÊÎÀ•u[y{±T‚¶˜yõ–w¼–Ážî¡Îa†Ü&m9Ńoüêc˜p°hã>Ùa¿%ôÁ¤:E'úòÚ ¿ºÑWš'{á^îEŸ+×îaÞü‰ö6™}î‹ìùY…].;øŽîè~˜¼­`;øÀ%|PqÑÄaÊá£Axʽ÷×’æ+ŶW#x –û +÷Nþ7™!n™Â… Ð`†æÌ=û¨ä…ðH' Ý› Ë8è÷:ä|—Ó¼„¼lf|óàs†pãk?0¥‡I¿Õ*2¦â}/ Pa±yŬ¤ãõ.G¸·ç¼}óѰ@f¯òg|¤Q%M¸™,ÐRJ.êñ®ì›÷žÓ€v™¾‹»‹€p¦'Yž…ñ>O|º(A_ßÜ]I Û^¶Þ¯ÝòŠ“Ì&=YòÃß|ô›c–jÙŸzÿ^Ò2Òa´F ýX,wEv¦›5ä€;:߇ŸdŽÓølY®µÈBçoOò3f nò +ýf̤Œàµç=,Ü]iBWà@0YË1«{ž“Táʘ´ˆì)Òíùyb¡ßŒÆx¢€O,ë,0©6NáÎf°1òƃŠãScÐ'©¢Û­§¸*æv‘‰õîGê0ËÛß÷"‰e²ñ â9{¢Ï›À©Uq_mj R¢^Ù^l!?”±PΈÊùœ|9x¥V½OiEÊÇŽ^°Æ—¯1ߥ} ._cŽËטSGªxkLe‰«C7)•×~áløÛÕ`Q¤„j§q>$ŤUx.œ ŸW²¤˜›ÁNXT¾3¶$‹™¿t„ÜÎ;aä™}àõdŸ_{÷ÕŒ‹®búE} •e€P"«Q‚t_ÒÄ-ÉKéU_:¸%©G¹Q“C$.Ò“ÏÙâ$!þJŠ¿ú%³ODσnñW1‰‚⦂>ñW\ü•ì— ¸+’U ðøÄš¤p_ðÞ-<}Š?ÏóÍDì%·x_RÅÐc13üzø¦ý0A2ýÒJ0n”`ÆK»ØÄn7Qe•¯»;wá3š V]‚ƒ®ãs1nAã ëÛ²¬—óñlc>Æ3üqó§x`÷;¡—føQòÒpÙK¡ +M;í`ÝdºçÊ ,°ø~ƒ<ð.ÞÓ-ð"§ž2¯Ùr kï¾y?Ê&\f6aŸ¼VÊI‰àËHuóa_ц2íèAÜe’} ½·ªÈ/ÝÁ¡cÉJZfÌÌìƒÙðÚØ¦xÕ["Ÿ/çÊø?­Übhqĺõ'šûZèijŽ3´yñ™•ŒµáÇaâž9ç†(i¸P¿źœ¡ÝÜaŽàäǦpÔÊmú¹]EnNôˆ-ö0À)ådK¦Ào›{´ˆñO¢’ô§£¦'öŒE¿î‚rÌÍ`|Iè“4pÛ_½?°‹/» /ùD”à¼íôé±Û6ƒ:Sû‡]ûh•=hž¹èASÑá›г$ŠI[†t¬îà !}'™»·™ ‘î¢ Œçƒ‘t$’$„ʇXÜý%ñðAÿI朡ƒ…ü ¼LPß¼Þ*áÝI¸3ƒ{ÒáÙ2wávï˱{Ò&ßK¶2º²ÛoÅyb4Xå ß2HˆZœ'ý!&>?ºË³¾gI}X7¾Ûy¾B߀Âú݃øÄþÜ£ÒSja#ænСXwѧ},ßÒí8]émAW&:Á>P<þ˜Ž1Ç|Aa¶ms¿¾,˜ã®ºf\PÜMÃJ¬BÀ(è…Œ›>›ƒGôšNw_w‚má ô™…n†t&;2Xt0$ü£ë®„¿i±#:<& ØÑhàŸòèaH¤Sä+Ú¸A:‘„®@ø†ð^g†[rgÝä¼äwelò’è1çFböA”l·tÂ?m?)ôôr>Zzrº Ïñ&nGd™”,÷r–Sð´ÚÁ/l4xrÍoqæÚ[–gnÚ÷/f’æ‡" ˆ‹²A(5:U2Ð'HÌ <‹Ëvžg 8ö·­—o¾·‰Št‹ðLZ¾ýiëKîã.ÚÇhïCz±Ø‘ŽPŒk°z±˜ý@‡&tn.:8ͧ¦£û[xút‹—cD„çSlŒ¢&§B‹2óqæœjÐMòO +ôÙ Xñ^ !!‚XáJb’;Ì0gœßÓ6+D .v² y·Ÿ·çH„ „GŒ,w2XÔ—ÐS(ôyAþ´Âìž&üô…Ùˉ"Ÿ:¾}îNU_©ó)µV®§8,"Nå|QáTîœh‚ ôŒ0Ð.²C,´t ‹ +NÿÓ¯Î}ú×HFî N7èÀ–á{ˆ›œ´`íÄG$o™×XÅËÑ)ˆ@y¥Ïé[¯y>†F]ï¡ý‰Î÷ÅÚUŽfè WéOæ ÿ¯ý"QZ€ºô(nå 5¥´Wüzåá™±duÃ[ÁêVÒaèÄNÌ*zâžiöÇJð%r*¢˜¼%Ó|pªaŠt¼+ò*Ô‹Éœ*ÔªP; }EÚE„D|Œ‰5ßÛ{ZQj7¯øSýGˆ€Ix sD.2 ¨'÷XêÞóD€*Ê@=ûÊÊ)V'«Uê¡XWL`G0àð=šaªóÒBg(ðJYŸo^TÉ÷qÞKk«º5*‘z|Iv™Ip9L6Â86.è0ìÍ:x.v5ÃN‘;ÑqW1ì>&ŠÜ‰Eq^ŰS4ë mÃΡװ;6ë¼›Ï÷uvŠfÐâ»Ø°S4ëÀ®¼ža'kÖ=_ °’‹^ÿ£‚a·ØCu ‡×&Eu«KÀ¬«³®–#Å|©K€óŸfØ9Ci¢ŽÖ`FÓ€^u PŒŽH;V—ø9¿˜ÿ@Ÿ’Rã?É1à?Ýרc“­ªóÎ ÷KKì~ùeŽ%¤5öËô#^;b¼£€Nö¢ÀŽç( +ç×- À‡÷³qÌ5f’yp†º±µñîÂu¼ÑH7Zw°§þø*ÚêýSÈ™s9ÐÃÐ.FŒ›Ã4h•äxK²—…ŠŒ´Ü¯û­»ºŒ"ó&'&ðÏ 'ûèë|ôœ< Ëû­¹" êcº-ñx2AGZ‰¼¬«MáqÅûíWˆ‘“çi°óà`ö}.^. ‹/ìIDÖ­Ö#| v‡ÎnxäË` ÍûÝ–+¼ODÜûm üê[Ù'^Ü9È…õüð, Š ¸*Q,#‚Tbè£H›.ßÓ0oºðlFG+´A"ŽU%³‰á-øÔô²íZñ™¨;WëvÇÅbohÇšmÛ²ÂPÙ&fΆw˜ÍncÖòA#†í—Ùæ>eeâùƒçµ¤ã¥1²dÔÅÁŠ „DapŒcM]5’(Fâ›'¹ð ³U#¸S=Þp%ÿÕH¢¡Óêë«FňõÂÁÛ|˜˜Þî‚AMÐD§R‹6¯Ø¸œq:b¬_xúÿH0Ñé‰gøõIX÷èËÆŸ•Èf&Òœ¾¥™¶KÆž{xÊþäC\‚'JÐ|bª?µPµ~xìE =`KA©ÒôA.‰ä-ï´1XÒKï—3UVÊ Î-‰Þ–Ü÷†fÊ_£\}¼Ÿ_gO•{®Ætp_7O ý—ÈWªq0Ïs/“: iÜRù û‡AÒ`a&¾7ðsŸ€`èÙDxÌNX‡±³OYÐñ±˜5h¢úÐì,d£ƒ8ÿ~òÓ·i¡ÏºŠÜí +Â_˜—ƒSòÂÁÞ^pî“`µAcoÎöæÅ/|]˜¹]¹ø²cy eɲaɹ£ŽAòo›µNy¸£a€wß+D?ù­Ž$küéu fÚ'¸O¤°\õ+ Èôæ)ÿÑîe²®ˆ#ŸÏUÛ1´ + !nÂíýóСÁµ4¨•Ë 4:4ÌÝ—@hthàX.„ÐèÐ@/Ü…šÀæÿÂÑqƒþøžËé®¶›Í×7níÁ—*Dk=ÙäwÓisúÏ>»VÓõþ&vãK52¥R$˜Ž7“)(Žœèüjð0Ê£|ùeÔ:’gÙÏhaQ4=ß³Ÿx/.=¶m›?Pw&ÄnY`úÙWÌM昽H¹á×õMëß²¨dÈ9MÙé.}ȹª•Ž„c"ã úÑ,$×IOŸ“>êëÎWL½”³/ùv#éÛãtj v²º­òÁ4:,Ú[1ÇÝc"ÓÚ”7 ‰G|˜Û‘L2xµ'ã#ß#|€ˆß æ®v‹˜óÇ´ø2h=ÝJºèÅ!ÀªæßßÙ%Vß }Ä98²kÀãˆö…™†’âv¯}ElæÓ÷ÔÉl;„îå·ú³Ãí[ôp`ßJ€©â³Û³>¦Îo!S²“øH¶µ;J_F5ÅK>þÁ%8_ô´òkq¾åKgýBœ/Bå,¿ç+¸Jäâ|…ŠÛ¯Ãù"”/¼ó—â|‘*ËÀ=Ρ|ûå×à|‘¾g°übœ/Bù«~)Îm8îøôWá|Ñ´ÓW#üBœ¯€ýBœ/RRèCÚ_ˆóeÝÛª8_Ix’Ä‘F;òy±Œ•97r€Æ' ‹ïð1‘ãHYЉÄövŠ«¢~„‰ 8 Þ@1µ’…‡»Ý‡¾ÃK2a–´9ËV1¶ +õTAÚ'¨€Èw „à(8Íl{ÚY]]ûæñV)p¡ÅÑ:gkÿ°¿õv¾ymíâ|´äxº3c8ÞhX!ÆàoWÏ<âPoˆX ¶CÁÛÌ•2"¨áuqP;ƒEŠ8²Òq:ØNpÖz)¼z/" „$@P†/B€Þˆ®©‹/"[–I¿€(´!BÀÇöfÁ“h +=" ˜piW"¶X³DpZÄDÐÀÙi’à~.]ÓBž*¯:ï†&îi°ò KèsHp›'¡6!Ÿv¢ +G×j<ª‚0ºôöJU³»/FÆëá·(?q­˜ï$ðñ®tG÷ÎKÖ4áÎX\’ +N„áÂ=ZÃÞ=òø_—­sUl3¸ì0t’’ð˜Kª€2Ši¶‚‰–ýJÒ?¦dþ›àKƒ¨á:¾Û.\cômÿ—¬±JÀËW ¸ÆT«$ñKטmf¿lák‡ÂÓ]EÅåÖ\  +Ð Äklö^2Àž¿÷ÉUÖ˜Þ* +£öv•¯€q C…O7ï“ïÃÀ+OJØtݦælSsÇ«õg»l6 V«NJ$_Ô†QôäOÛG}U¨_°7ЉgR£»¸Häb`ïmÝ ª ,—ɀїËÅJdÕ^¨ôaK(/*IàEa/Ææ°ç¢1öÜ{yR +¸¥†$VÊÈnqÅ>sËq¢”~-֒¯O­ë$ìH£äƒP_#lÈ&\ïÝìaX¨dúè*Dæ0?É;žÞ€ 9¡è3¯“1åŽ0 –kbÊar×n‰1· âëîðô¨*ÜÉbÙ-|Ð"¸sŲWtäxö§À¸æß +ÃŒ;‹t0vsÅÈÝ}ø(¼û°LîìÑ#ºÖð1xôÈ^=âô¹#à Pµ}$éºÁ&åê~rÑEÀ¦KéÉÃf:š üæeN/CZ·|ÂÑ)p=ÁjŸ˜jÇ/¯ãgëå]œË’v@$ +G˜¦Wý0Œ‡áŠÃŽ.æŽÃš¾Ó×ÄéŽjÄåÂjBñVà1îOìGA0½WÞöÁÏ0üó0YpG—ná™fñê‘/sœùR¢=)0Ĺ–3»l‘̧Ã뀎É9†ïÌ'ò :Ý:0p†>¿|IÂ_¼A¾/+ô‰6ù~xfêþpt¹ÕöB +.o'ß܃w>;壃eÔÏ‹{Ÿ=-¶r¤§Å~Ë¡Äyœú>æ4Áo%[ú|Âzûd>e‡Ü‘kßOók{•’ö¦–iöóÙ¥qœzn¾Ùr#O²]Uw—°^Ûý6v%oƒæj½Èu;ï³2z#U×Ì‹µ©“¦¢í¾á¤Ãj ?ñ)è–À>ÕÉ Y_PÞÑ5¨vÚ5lVtM*kªÌz^](:ˆs+zþ¿ö¾u7²ãHó ø,ØÆè(ï v¹m5˱=’=Ö`±hPlZ¢Íf lJ¶þì³ï÷Ež*Ve»ªÕôJH¶åâ9q2##"ã’)irb›’?Ûmÿt= +‘õÁtÙü±Û.ÃK¸õºÉ¢–_¦Ü é”–1‡òü—?pùóÿ5V¶j4„JëjÞ¼×9”ý×ÿù3øGþ—¡Ç8¥†™Ø&ͽ¿—ÒKÝÅ^ÖeÇ+±*²ÍòÐöÃ^˶Îþëÿû/gÿ|öw+ŸÿòöÅþNåÙ{ïáɧW÷_E€üüçW_\ßž_|{uwæ7ã?ÿá¿kßøÐ6!gü‘ùôüó³ŸìÆÿts~{æ6ýòì½ç|twÿ‹ëËûëW·wßn>ä£Ïþýüÿbóáf|ðüóæ'@É=4^ý”{¤Ïý惟¿zuÃ7Ÿþê›_þí«Ww÷›ÑÇ^¿¾þüæjóûW›gŸ~z~ÃNôð¿ÏþŠ‘}ô~ýöÌmÜ:<þç³ <øäÌ-5õ|*øÿÔ †»”Ú}O¡ú\RjIž8¼+)äÖséxÒO¹úî²ÅûµéÏØçîoñÇ¿áÇŸñè¯ï6ÿ¾ùßÿÇm^¯OÎRïKÿÄPrÙ¼ŸÛ¼ÄKùq.øžk0óáúÉç0dúû'×~øÉÕåýÅí7W?Ý|ð‡Ûkî\zw}ûÅF^Ÿ_sõé—_]}øá¯/n_Ü\ÝýæâåÕ ðÜžBçƒO®.n6‡Ý|øá¯_Ü9Z º6Я¯®¿øò~@5ÐwÛp)1>òÉ3ÈöÕÝg㛟||ûÍÅÍõ {T{_}òêëÛxñûo9FÿN_»¾þ8þ×[öòìÕÝíÕÝAÑm€~rñâúë×»áœìÞ«·ê(¾‘ßöë}4ßåÛð6C ï4Ä0)º¹«›W—ùëõëub>||{¯ >¾½¾¿¾¸ù¯/^Ü]ÜÞ¿û†µ©&þï.î.^¾¶ßªÚ«³¯ÇÿýLþ +wi>µZ³w®:øŒÐ™Ùõ^}µÏÙì–U›‹K!´^#5­j·ÄÐ ±áI1‡ž¼¯%Uý·$W[Š>ÖSwOvïsk!=èá0ô°‡öÐðh=K!.ñ៴y?¶éÉ˳Z–²÷7€ÎÏJXœsF2¸c7€`:ßÕËC:°k~<̇=lžñ±OªyÚ€ö¹¹äÒFwíýÔ ‚yfCÁÜÄJ5 ™`ñH%Ëd ½š8_ŸÏäÒÝ+2ŸÀÓgg¯)+­lÚþoÕ‹ÝÅ: mÏC‰Ï^œ•ÍO~ºùì[_h)!å^S럃|íÉ䆯´7 +i—Aß”C¨ÿóÄKÖóóñ,à§kÙ•Lê\šyä±ÑÊŸl2¹#ÔÝWN_kUE°ˆ‚j¾Eüðôî ¾ŽDp>@ ñIªxVMgE/¿Ri%7He(ÔKñð><õæbÇ'€å“‡¿BM™šJ“Ÿj¥ï——À¯CmµøžA×Ó’!ÿ=€NµV¨µD}P€o   «‹ç´rOR´@j\›i=5ÌÆÍå™ +.-•OJ êzÓª[ðG¯ÝõAb&/˜Ÿ¡Ã± ›–ê’ÄÜ[m@ ¹ 6pŸéUgÌÆܘþ-Ô}P«‚ZŠÁ•ºÑ ø—`!S„´@’âTËç`vÔV Ò½OT³pæ} ¡´x*ÐÜ 4£­AÔàÁî¥âï!ô­Ç+"ŽŠV"F>,=F\w`HĘØ\Ä%®fÈÆÓjøÐ%Öâb{`i„õà™²=¦„£h@³ˆAcÀ8³]8°ۆ Ú2þì4mûÕÅ=œèÛ×ï_¿¸ºxý>ÔâÅýõ7×÷ß¾ïÒßK÷^ßÞ¾úæâþêQõné^SïžÞ×;štùV‘ Ž –·ù@ÿ(Rá@=y(yÙÁ×êkxGkVDk<ün(¿ëÏ¢)©ÜzYj¡‰˜Vǀ쉃lCý8¸f/- ($Ï ÍÛB†ŒáAGè]]-Ez5‚ ]ÝCêðáø`RÀÿÀs¥ƒ¨A.ÏjN °~g¸[íÀqq2òJ—´ZØhyTèJ¡sÏ·q2Ö›j«âJ* ‰5ª]iê¨v46Çyuyö9¸û ±MTG˜þÍuÑ + ”s¦Î‚¸¬ök‚€uu¤d'·yè„ %÷ˆÀñKs$¢èyõ,³¯ ôh§óÐàÂtÁXA-%!@ôK†ˆ#”éf¢|[…ǾxRÛGX¬Véô¸ÙRíqÉ jz48Z]ò%ÒÂ9(0Í/5Pù{4-Îs_`¼§?‘B5a\¤9>ZU鋺jµ" +‚ú̧Á®UPª?{Zk%H(~ûêx!­C–ö©Ò£† 'P Kt p›ÂpúÁ"+¥ˆ¬S©€á!ߘ¶ïGèˆ A•Soù•‘qwÀ5äš÷Ò2ô!”n¶€ˆ³){ÇÄŠaùÞ’‰…#ÆçR “à'hiD+ß Ò!&~ã`ÛŒIk˜'ëã¹É˳ñ¯ë2 O¸ §ic:±‹ +˜P…a e1ãFƒÀ¡^À;84ˆ¬4}c´“y”È` Ž–ãô§ÛÌ'tC ò_'â¡Á=JÍ’áASÂuœúp‰ëP:õå¥ J?¦j¡WÛ }2tW+FCƒ1‰2¢}†T«X8ßP1PopûàÛ2زDóÜuÕÒèïh['u¨Af|c4#æÏh îA ¨V„) f'‡ƒt dÝQ øŒ}§%Dh+AÜ | -(ó! +²€ Yaü—Ñ×¹ÂwRë‡V9Á_~}wqõÅ·Ï¿º¹øöï¸rÐÏ©‹ræ‚Üƒßø‹7¤ˆ<é’˜x墜bc( ¿‚æZvSˆÃ|tÎV…I&tݸLjÈ1Žƒ'ñM ï + Óèp 2Xã¤\ •`ÖñÚºuºKÐ'~h%!°»ÉÑk»ä´ Â|¸"p(dƒ-yøìðQÍWöáÂtÁƒÇ‘ØS$ˆƒæí\óíÑÊ &°Y¾÷±ì ƒ†!à Ì%é +cÈÔZž{¾taã:7 U ˜íQ"˜ £Pf\ +-/s?s5*%b™ºÐk™ªb,Ÿg¨rÀ„íÒ'£Nx¨¹Ê{_ î°ŽÁ8»BËtÕ8eI ú…,ÄDˆA—Xµ] ƒ}äú7&Ÿ=ÒT*¬hÄWºûCM÷ÕÁèàø6š7vÑð€a¾¦ƒ\„EcL%7›Ö6øZ™CL£Å³F…¸ÀÑà!f‹ó-7.{Aùz`h PƒeÍ´dÈa£ÀÅ%„F ›%ÌÔù@#ËòÂEiU.xtè-)Ž‘6• ´ûy ßsJ˜º‚qµ-¶Lê€W4 L +ö*×Fs[Ï` ìVŠ`iÞ1sk›ïC$a­s†só㎡ˆF0`Î/†Íè?£gâ¸ÏÏŠ©.s^ƒ‰„Q¶È0}ËOøa l%H$ÄnràþÝ–ŸM¸Îud?:4âmÜc(×~*ÅV–PœûŽ£$óÒ‚1Yäq\þ£\uéž]9Ì~Dܤ…8îuѼ§At•”ýGáŠBÿý¸[Æ•H`‚öòæV Gá-Àv-0ö±§hMkæ¡<4OQ®ûU~‘·O­) +¹]¸ 7™kªjŠÊàk¬\0.ܽ‹\;œ¢Ôu…+ïh¾|²¦(}Ì Ù€ÃOoÉš£›Ñ'æŠ6£1G¹äMŸÎ»P˜xaÌQºú™Ë¤ðÜÐ;zŽÂÁY.ÜåÚŽž£•Ž)9 È[sô8«ÈÑaºßqç‹ÎA@ØNß'p$É-Sð¾v§ë¹†Ú +(p˜a>ÆÅtœu¯ÖqG“š®°R(“Æó +Ü;ã2×ñS…@•…è’ “5`”VäçÇl>$ Ò«“å†h~+ëC 2ÄÉ—jb @VäÕs=n…€¦žIùËÇR>ö\AüúøÏa›q6ý[d‡üàòA`A—μ¤ÖŸçøÙe¡N!·¡ª<9º±A%KIhI¢þõquä•ü^–ìÄ#¤¹ÞèæØë连¡C¿þ–•Ì·ÿÌÂÃ[zªlº³tL´å¥ã6–÷ ¡V¡ŽÇc²¸ßuÆMµGTFüµÅ-IØ:u ë t Ù÷o˜óêæH/ÓÏ}UIpPYË¡)A¤Âù8-V{Zæ‰ZIl¶‚«Ðq ‘ç%UÝ´™QÙÐ6gn;—ÃX÷,ð] -*jz±©ñÚ©DÌ@Ãz¨g æeñuY8‚N‡]µ@æìCÐL)¡UØD¿%<‘ðyR‰¢Í¡›V ŠH U!  fûòìõ,¢®*5xÉô©çÒzèp¦è'îtB¨Ã€›s´>î*ÁøÎps¤J8l‹P£+¿j’._ V)aû^†nJÎä§ÎacyÛ—L±×TÅ¢¶††.ˆñéТôU÷8Ô×ÇiˆËø¦µòakIt²¬‰éýfò^¼nj<ö6@#4µ6pߎ#ØK]‰ {$ýb{(ÚaµÐs'¥@‹rQŠ»vbïR*%À묱üî¡:W»Èln¼E€¿MòŽòä‘üî½lWj˜Ì^Ö£(úXëƒw¿3bƒ7ïŒçë jÌL¸/ôÜùB5k}*öƒ[õLÉ‹ Ñz‰;;©šØZTL9¿ž·HÉýè îÕ¢„‘B·„¥; +“Iš êfa|Ã]²@Ö5Ômné@Ðö ÓáÇ,Î Ææ °?zT3ºª~´ÌͯÍvêÖÞb0Øjäº'M¿£|`îùSgÖýÛpágO½ÇUÐÖýÄ Â×&º+ -ŸqûMä^>-Ôã³@ËI˜iÅ•‚.g„Ž`Â&m%'×â_ëQ)K =N¼1ÚÙª× ÖÇûñB\÷¤èw(ÆÀQŽ&»&ó:³*„êÃyd;G<ìZÅàLvù­Àw ºÇ`° Ful ŒùÁ+‹]F;ÙŒÇöã…¹!3ýNàƒÍ®àè•Mv) Cû‡ýojµ@ò¤F,vm5Üjí»¸en D<MªÑôúX£µ¾˜‡d4>æåiï̳¹;ó`pÓ¡Ë_¹ä£·°4‘¾äÙTHÆØ÷4HføR| “ü†gŸõjéÁ„Ñ'µ5xùß'î€EÿŽ©ŽÇ6T^\½¾þâöùÅí‹ç/®¾¹ºyõ+ÇÑß¼±öû ØŽ¦ë_OHÉÑâýÖžjka¿ý'¤4çÒTÉ •~þtTSmïè§{}:Jê^ƒÝçSR·­+otjýXU®~Þü;IþIëëïwlÑ™nòƒ2Q¯âðÔÛÈ‚xø}lRSÇ'õ2~h›“z¥†êÈ©Lm~´R<ÝF§ä±5…Ûo/Ÿ~÷êÕ_þróííßuõb×ӱެ‹ãͯet­Á|ì­d!pŽc–YÅRÂ9x+L‘‰Ý Û¾ýÈAdÅG Äêa$ wt¢«‚Ï äk^rcYïɵB¡i|RcàÖqy­“%MôöRêŒ*TªL èRP¢tDzHV/3„B#R0Ü÷(†Všg— Câñï\C*ܽJ<Ç(À¥Ö&™%dtUÈ.@ÄFAb1'EÕ'‰Ì ”$»Ìó±½´;¹/ÕJ|g ìÜ©x" O²ã¹&&ÂÃp4yRu0³ R?´EÛýz‚Å4,õéRêSçêazoM§ DÏɹ_=¯–zèé˜zèå˜z˜!¬ñÌ0Š&3"¤£Eòz€Ù7Õƒzn©‡ÖŽª‡Vªb© d¨¤'në–zÐLêÂn¨&мY=Ì–zP0†z˜a´zèõ˜zèùõ €Võ`ŠÇ¤ÞÙy€¬>Ð +,V gZrÞ& ;ž>Èëùú|MÉÑ›M…²6…Áp¢¬M©ÇcxÐbS+=Íäf#jàBDõ‹Éä]•âm;#X?÷]9ɺѓ€ÂÊÏœóüù\Âù¥Tâá~åÃærŽ1 óÓ6AìÂhŸs +)ç4Qf „t|ϯ aÍ«,$íÍfÑggFøÆ +iq1` Nh…"èáŒã2ôêxZœ3Ào¡ñu/Gù#¬·I¥ê¥d°QÁh"Cà $¡Uí+™ûe܆)Ž”ÙüVñ\÷1ƒŒT0#5"±ÂQx£´rR~@+úënŽ²è™©$Æ9­ bµ•DÔ…ÚFOª«’HÕV\J®ŠK=·t’jô$ âRoV:©¾W:éç t£'UÃ8>™ï̳å†m+nfü°>ôÎL6Ãfµ™fR=æ°øyj<ö¼Ç¶=·pΪ«´õy*¯Ò¦ž[‚¤= h+m<§tÔLj ­_5ŒÒ}Qf^ e&‹ËÊL—Žip ¢µ«†1´«4«=…"Õ¥ÎP®2te& âë^ŽòG”+ O5“ +È0“ +F›0©™?›É¦Ø/F¥ÃL6ÅsÝÇ b˜Ic™I ¤ì—ÂQ ŸÐj&Õè´¢¿îæ(‹ž™JbUÿJ¬ê_?74»nô$ ­™ìs„2—V€!ÛŠÑÒIªÑ“€vfR½tÒ}QÏ èFOšÌ¤>°ñtçàŠÔ†R~n±|•l¸±÷¤®ºfœ•Ú&zÿÑ +1*Mªæä±œ?Õé#Ý\Þö7”¹BHÞW»­ºímXöÑÎÊ[ÕŸ¬¶GØà—„–}YcÀëïõpNfÙæ²ëöÒóôêi‡»Ñ\}èQ~k¤T{2‚Ý9êñרŸ 1äó1œíé£í«õi~ðö<ÓÊËf ˜pk‡Ýð€¨vsõ¡Çñ{ÆI7çwz·KO.Ó}F[ /}[äSfÕBe;n*ù¨c…3ö¶ n®_ß?ÿüë››«û¿ci¿½^Þñ¶·Þ[ o»·6—y’ @%SÈ®[i}§åš­–Zµ´œh_µ\ ––kÞnnWaüÔšI5—·ý  ’÷¶Æl}Òr-?h9Õ‘èÁJ+”ætÎø­Ô’j/í0O žv¸ÍíéÕf«^ÕÞAÞ×ríá2¡h ŽÒ(Í?èœñ[©%Ý\ßv¿j9…à€°•fÛÓ«ÍÔ¼º9¿ëp_ËuU˜›Ã¯Ûº¢¿ÌÐru¯ì5´\Ý• +úZ.þÿÐrÇÔÎ)Šî·ß÷m‹ÓõpÁK´Xz ,LÈݰÀûjË!ð9ãžå1¢EÖõÕ:·€ÄeѽT˜Ü'U§Tw'éîÞ効uÉ­ ’Ô +r*!/rÓ… rõÇîóÂ:),…Éâë(dîâ°"key#L[x««ÉsoÈq¼{„YÄJM +¨Ë°cç /î> +™Ç–QñÌ"ª¬À+S2âiä†P® )b<–{”¥#„¬œX/­–QE†G%ámqî$-E*´¶.…0¥rTâgÀC^+ÂJË,óç¯ËãR–}dÉÃÔY}·“p±‹WÌuj˜J|bj ,+ȘêdƒdîÊÕæ½l©ž€xyx3r5¢&gʨy9 + +s—LÝ3-¡‚¡™—œx‹‚R8c2« œ >3âé¹ 4ÉoªêˆÉY¡GJ¿j cq#¼¯™³¸'øŒM•î˸Oj:·€‚ Q‚fv!ÛHŸ”;˜V +¯k*rÅ“!÷§éî’€·õ´Q7ó4 ƒǧ=Õ‹RÔêrÀBm²0ª¥IÅ‹T( ²’œQÕØ¨¯m”©S†+›]ƒÍµS€Œîþt‡ø7^°%ÓH’cZ†¤cišÚÈ ¶îî$ ÝPç…‰ÕÓ¸që>Û +;A¹ÁJÐÖt:·€ŒñéîN²¤ Ú'-ÌôÌ\YëV[¬K&¤ùö,ñˆŒ+ c|º»“€,ª¿Ó!ïS¢ºç‹Ïžß_ßß\á×/ñ±ÿ›W/®ÆÇScøào/onñúý‹ûû»ëÏ¿¾¿ZïÂF×w]~ÿMìA]~y}óâîêöðŠðí[þë~GÒŸüêúöâöòJßR¾ÿÍÅÍ×ÛþÇýÕß™`ÁÝ^¼ÜÝ$þOoBÊ¿)»ñ}$„­oÆùÿ.Ôßyýú—7W<¯|iô'W¾óí3^lzõâçß~üò«Ww÷Ww{3à¡ßá¶Ï½ >åB”$+úŒ(†íö /ƒ 0#ð¿¥nD]Ïf€Œ¼ èÜbÖ]y–Cgªß¹ÕÝI@º»Ï¿›×àbÉo +¯Ä®Û³ËË&ŠÑÝI@O6^ƒ–p –ij1§­ØüLþÊý=XZ¬;Hw÷tüÕã5X§°„@ ÅbÝ)@O6Þý(ÖÀ˜¦~âuǀΠF~'µã(¿âÑðà:ã0ÆF^·…XÔ¨³zëû=îK¿éÛtÚ¶2ƒ0ÀrÇ€xûPD8Á²?ªŽ7–* _Ž¢l€ÌCv¦ "–nìܳC ÜÆÀäJïZ»”Ã<ï\ö"b¾xfuXåP\žY0õéy*©ò:Óï‘®¹%]ç­íãpÛÞ€XÙ1ÿ˜w¢Ë}·í@Œ®zé‹W$ðjˆ¾½Dà-÷=²ðò_A&5‡˜¹ ¬4®PžÎM ¥­îP+ƒå±xÞ(ªuOz¢­XNRÂ3îQð}V/Jb_Z@,_E  +¢7¿ ÎBPÇ»8Àœýñ…1 gggÆ„žXÖ)Ig5à¿]"Ôˆ!e8°3Æ„žªÈ ¤¦ÎI@†R|üŠÚ¿Wôè¾Þ#Èùã¤O¿|õÕWôê//î/n^}ñcÀô0=ۧا½ØmÆ4?*ù@…g˜™â[ç}õôýyiÑÁ9t tnñ𠏽v½Ž«±×NÞðJ7ýw3zØ*§GÑ~y&5f÷•[@zFw'=ÙxwäÕõ¾Žã7Ù›ƒ3ÉA.šæC6ïØôø+ÝôÓqPÍ`ŽFÀb³€ÅœS€žl¼û‘‹1sW'¾öp èÜêRãg'—É‚ÞêÜŒeÃÍð¹$åÆçä;mxi[:leyv´ŽŸÕ°F.QÉ0ÕÅØ™GtAÃâŽrƒ „»È¥²î¤”{˜çÓEÄ"¼ª”Mr¨"ºX@eáú¿Ø]Ò‘'€½”° _¶£’{UyI[m€¤^ã­ºC-ÈÞ=#±–7%nƒnãK²/Œ){4)yF°ðC7@À¥¦PÎM ¥]­î4PØ…-©”.ünn_tl¥r’œ±¡Æ«®U‹×—o8$PªÙWð¬¦mØRKPì«; 1'D­z.O0Ðy³p×Ù% ÓŠ”;ÑHî^è¹}eJþ$ Cá}÷­ã +™Ú6ìÖz®ÛË©r’©w^ÔÙ/R¬r]vä?¿3€Î- ¹™Ï{]y-tw'éî>7Û*uAø ž:kÅuÞ£™wx@ç&âÕi|Fw'©îÞ1Ì];O5"Í‚Éi¦903ÃçÝQ<)¬Î@qç*ï¨ï¸äÆÔdâd¯òŠùíãî–â©ÝØ &uŒ`m˜I½¾ÁØ y>±ý–:? ®ŠyfE‡ÄëWS…öƒî©Õê ……æúxú•ŠçÛŠp +Mòãü}¶]ÄÒ 3&/-Ò8Dð[C,Ant<7äå$ kàÇq’Ilpu¢®%ŲÂ…3nD–ôk|§Y2z§ïe­ê±¼ÉÆBÓ÷¸VõÑå嫯eaåÇ%ªÄ%ªŸ=ù•¯´'½væ—\l·¦±> ôq뼆¯Ún2<ÝÝI@º»?™mi·>óŸ=³†I–‹†[ciÅèî$ ÕÝ;¦8m³‰È"m¹5¥2V +¡¸\³l#.Üh ¼½pѲ±…>+“´"ZìݲÔÄpweV  Ù¿P(kÏD Ýpƒ4 7(в#4÷¼ž’½(0÷Í([ Ê=Ò@†3`ÍÌÐ(+–ž ?϶i©T»M) H3å “Gq%aHv› ¬”Gdï K¾âô}äA>z¨å‡áóüè6ýè6}ç½·Ÿ éÇÉ`O†gw?N„Љ°-èù®‹«Ñyº_¬¥èJLÃ`¢…ÀÚÓ9ÉmeA ++²D$â¸kbêa¡³¯¼çÑ6ÞªÝaBÑR)>¦"®g]2aZK®ço Q »Cƒ„q‹“"†h©•¼ú*€cÒLY3îjîU'àÿ€T·À&WW¼÷rPK@†JsYNÄÕ–xV*ÁÅêUöãf &–Ö%׊5ÙHóµW:àà. RKÝ ÊÄ y˽V^6Ûeá„}InR_šÜyPhàú‰O)õdPžq°ImúÀ=ð—ÓrÇ‹@Áó¨TäÑ1Çk¨kÅŠ«9‚ôëq@¿Þ7˜#IXe½Ñ%f?r Ae(ŒCà‚9&f8nåEŒ˜c‚$'ëjH‹œçè‰h +H«¬‡äží½ðn€°ß OJjUVb6€ˆCÍxnÛ§}ŠAÛψj¬èŒ¬@*ÖyèN–¬É?D¨<êŠ85°¾{ Æ€²4ÒÞy‡&W€ãÿ—΋è)¹m±l ð+µ'6Ã4ÔêB†_×e³®4ÙHÞy_R„ç2ÑÆ¾ºxwëÀÁ°- ^:ïÖÖroÖÀ{\Nœ7Þóc‡˜$L^*\eܵÃk=ãf~š9nL_4kãFÇBsÜ~ô–Íqclyaü#Z&Z@Ñ™r¹}<É1û‚˜“ÍðHt—£kÜ&‡šDŒ×(>ÎŒƒÕmËêó®pæ ( V '}@1÷F7ž»œÇUå.ʪkŽ8#7ˆXŒ±äŒ“k’ÄcØ ãÍñ|?lÑ/NY£»@kÀµzQ  ׉Î'ψ%Ú‰}#®°Ø-`R]A¦®ø*tª‡„±z7€(<¼•›•î¼á\V  Ç–ILTûWãM¿<%?2p0k!‘Ä(ÐÑ CÇÈ%˜ðtk½THèT@h•Ç67àõE:Çc…޵ 2HäèŽÉ(ãU÷ð n¬ú¾a¨Á‹»Yý!R[¹Åõ9Øu+§j´…¬50Eb'N5׆'§T£ÓOg¾ÏRŸŸ¢ŸÞe1ðƒ>öþ÷Âí6üêîêê·/^@þBœùñí‹«¿áïÌPôÕÝ·Û¿Ãæ~÷ÑíýõÅÍõÅk©ÿtöÏgsᙃ‚3§w—NïÎ.¯õC«láI³\+.Ùò û»áAk£“¹g ‹@ç4É|œSwwîî 2k#K\´Ü`w eÂÀ™GHʳý4ÛãÆlhÿZ0:в€Â¹]ïy€˜‡¥`Ö1J…&Õ œ?x +·# MúìÌ‚Y }ÓX,HˆìǼ+.󋢄;‘a´‡?!w|Wèø280Їá39y_A<ëÆ€QPã¨T?tM¿s‹„'é9ú'Sý@Œ(EP#Ž(¼´äz:7 ¬tw +(q3‚Û‰ÐQP]Ý‘¬»†Æá*Ù© ¼*˜çŒ,Cú5P…ôÃ?gÕK;°°™Ÿ½ƒmÕ‚Üe?ºÕ¤üyÜòã  s(.Ó4ÀÕèc÷J€ #\sMüOÌå$çø0ÆÌùSÓ¹gç˜KVÖÅ;¸ø\l=!ˆa¶*þÇ€Áô88 ¬.Zi¡G"!)¼0‰Ÿ«‡Á­á-|Bx·¾Ë +g_©,Æ\Ç!µ]aáI8h/®V"$¡G˜Áà,1% °rbç¸aHx Žl •‡ƒ7µA?ð F­®ñm§•eYOš»Û% +h")­R$ˆ7OfF§D›Ã0U,Êš%TŽ˜ÅPŒEÔS'ovÜ?¡$n b4\Ã4qµ¦ßS©úL·Ê׈õÁUa|¤¤g‰¥G~Bt€§ˆo!ÖPkCÑ." .j ÆJAoM6ÿ-idÌ2Ú†´>â]½µ+úöiUùÇ´ªÇÒªþôc­ÅÀ¼ªÓW¼ãS,°ÿ`—¿S¤:ÍÐH…‡ÇùQ7(E(oôÆUð‰kÀÐL­àú:AÁ!G\ƶÌëôrO½˜ rpZ‹¡0¼Þ[±ÚMx—ð/76,NÁj Qb;8úzT3ˆÜDð•ImÞŸÝ ý#Fì~$E)d4ˆ”4G!£(|œS—YÄBÐNÁ7fq}Y¶¥ ÃÐ&±Gdž€c†ÏY1‚ˆ8Ås4ó@ M0h&¼ÆF±OÊ‚,²+F‘XyÞl‡˜Èˆ¸¹'…1F¥u6šÆGyõåà `$EQ(¼«:Ëq<(À¸Ê2|šneÎ\¿Í-Y@¼±>z¢wæÔÅ,®wà!ÒaåV†9Ì)ǺxâÁ/ÑÃñÌ)p»c`é–]ã5 i”ÿoÜ‹wÆáNA *wÚåè®g$R “½*«W?;K¡¹QŠcÔã0€Î- Ø„;qvˆ>Œ‘ÁÑ¥—MÍ}ÿG€2s˸ó6kÒøÓ O’° ˜Û ãôµŽãápJem™$2vnãtnÀ€¨ë&A^(£Y}%˜ªˆ']`"˜S¥–…5³& sÎ:3_ïxYßkÅ80 ?¤prTc,¦P2L“·»³€˜‚ðo }…Ôp !%'HÔáûw©U2úr¼±!0¨‰}qaP…­Á-' gwí…Bµ/5qñÐqÑH +ùæÍyŠb´CgH(i ¼>‚åù1!˜Î‚¾ªL"]Ý8GzÌ}G¥á©W¨óó@?4ßÖ\âÒ0¦"s¨4øD¹Ê½'qah½'H •Oeµ &m‚cß!Q/˜‚…B|ŽOæízTâ66/ÁH•Éq·L€¨ˆGJ“yÏÛç ´–C, 2?qs c€:M‚kǹ€pe,Ò&Þ’ÍMNH “oÌQ”žt©þíã£òc|t´ÌâÝ'±þ[JáI¥ýc/¿}ŠºBûAB(èY˜ãض;Cª8 úêLzäoâîW‚¤ZqÚæ@À¯kÌDY¼„&åO` ¢\ãÏ­ Z£Š•œ¹‡íÇoxQæ-¸õ…Xþ=sx Jâ‚ Ï•ÙÅ¥8+©(u¹6p~|yÆŒ2P³2¡Úb¤jôº>ž±|v¶}¡ÇuœîÛ܃ß5íiKra 3Ù¥ò@`&þ +Äkq¤Æ<5®¡-´±=3f¸\ï¬GM¿ÐcôcËB<†W©&1Žö æsE¹$J(H-`ù0nÉž;ËÜúi¦9Ö´ؘQ¶‡û.‹äri<‚‚ÃÃ]ó·ô–ŸpžxCÂ\†˜V V…K k—Ñ¿Z¸þÏ£}Í;mpÅà;p[ÎWüéÉYâËÀ"8+èÒµâD ’* ·QjæÀeC`&ÈÍÔ™„`¾:Ó *Kèqí6‰Ì@òJ¢©O=L©—áNyUG6PâI&J!0 c´q·Šw¢expI=óÕy~‡Cˆ ¢cŒ ã«pÃ\Ãà¸!;Ê^‡ÑèÒ’ä‰q{H5wyäÂ1½üMŸøððT:åBícz³f ó„¹Ì#gãÑPà©úr[ÔÐ㆟ôÖ23j]r_&žÏóô§ù´ôî   ;ÉQJïÂÚ„è3Èn!µû%Sa-:Ï +tNœ#²úÞrZkusÎ@mÂ÷upsù„•(éjF:† e¿2|æ¢9‚„²WL‰w  +Ì**^º3 ¤ drèä{ÍpÓ?Ä)x=òÔ =Zd)Þ ÷„Wí2)Òc{†Û¥vÏǦËÙ@‰ëª<9[“GhúRp©‹ ÃlI!ò„Ú;-<÷Cß²ˆ;ÃÃN,q”è&&9¦ã†œFÅ.x!&Û¹N Ò£Ûìå-Ïs‘¡³¿”ù¸´U@0„;Ÿ Êš1©åI@Fw¹ª"ª'YÆOuwÏ‘'$vq ×;s±”§+á˜ð˜" /wÁeØl“ëwÀ†'ð–zx8}‘Y”ŒN[eZ¦Ý£’ÃÒ + 2 +„ÒA¾” ÓB¹)ÀÝvÆÂÖ•e!ò¸švõœ“5Mˆ‚ 3õ4Q@*Ä2xeq¡£Ÿ˜¾ +,˜Þ1Ñ\€¿ã«!£™Žj* Í-”©+-ëˆ)ºùAvMºÕYœÏ…j”5ˆŽ.5â3J<úb +öIQ}:ü$ Ý…æòI@†ÇX§ú'YSZ!\“h&¤Ãñø¬ +ýþÆ-ƒÖ”ž@8¥vn!p}°[í(«±1@ô”Ö@†Ê+£XÅ#/ u;VÁrjªäÊÄF˜î±ÍªRËÜ Ä…–dʰ³sw'Ý}¯›1íÇðä‘dµ//î¾ kúúþ‚½þ£üwŽQÜ“Å(?Ûf®=Q ã½°! ãˆ}kY‘bÏ#zyVä$n€ÙŒ°YRWcâM‘“Yà!êæX§„ ªâs=°d—gƒYè®dϼ«Ê‹\6\Aß[²35A £ÄIåÂÛ¸äcn…Õj§Zõiá!ž\˜UàM„3‡Û1pš6üheV- Ú:®h%·zÊWü×úh;c”XóŠu-|à‰d DóA)~"Xx™Ój‚œ=TRq\º˜+ňk»ËöŒXÀ`Ö> ñƒd6&俯•÷ã’#eÇšQ ž¨Ì‘•Æx~‹câU¿ÜõA¼Îe?.#ô ,-ŒÈvT4sŽ7ÅX8©æ©VưC3!¬Jh»áò-W½“lmŒËà>T®á¢±†T€Ø±4ÖÖ’í@)%[L‘…ÇØS¦·,õP¢“3LºýâæêM€¿»/îîOüåí‹=°ØûZTwüc~õë«ë/¾¼ßùíŸ~wÈéµýöÀLÑ~˜ nwÞøÅ:6°ö¤ìµwÛÏL–‡ãÕ<¤½Ÿ”ÅU¯Id1Ñ K¬ðÅÁL·sv†€ƒË3oާ oâÞã2Ac®Œ¼¿š¥½#Ë~ê¦ÍÝ üæÇ—g¿¢ÅþJè‘™°€g%Ò”ƒ¦Cßyг…-AÅ”íàå º¬ï¯Óq‹ryûÛ§<Å'ÕN¼¼`VË\@K#è‘ôù"V¾“g1“DNl^Ö•CËTX¢:Ã÷‹¼—Cî®,ˆÃ +Ò]6fÓyN€Þh\›e˜åμ^/ •µÑc€´E&1ó‚æv„®ž‡.á'Uø„•¬wð«˜íë"V‡—}”âèºòZÉLçl<>˜W÷°1ÒSܰ2É"!žcµÒ"Œô¬ŽTxò޳ ©ò,+ŒïgøÐ¹Î2‹pÙNe#—yÊdŒ«•§Yö"ü>V]äz„¸6³ð¡`åeœUgiîÂ/kw³€ +â:’Ž3lá¸eE¥z> _np–kd=•ʸ' O d4Çþ'ϦȀÃÂs”sP”¤i,ŒZ¶íbH‘$ö,÷çV”Y\ Ñ6ËS˸+sØxD›•ï“ÓBÆÏuCXÀ\Væl\A #[Iˆ?S“£÷Ç4ú´k§-<=‘˜@ÄÊs]jºo±ÙŸÓ´Ì#a}z0“Îe¦:–¿ôôád±<ËA¸*ÇKñ'kãî2÷×2§÷Ã|¥ò2¦ìžÖZ_Ö;r!5ß™³ÖóòÜÁ›5&mîô +\©¬ÒYÍ9›¤AÞ=¯+FÔ”ÍðR©—y7ãÀdš²¹0¼eî…|ØS–éSŽ ›š·¦læAîÂJì<¢cÊÊA|¸©`¿…Þ)‹©¹Èi§^™cdMY–€œRóækÊ‚‹,6Ë x Œ5e¹ËÁzü§3QOÙÄÚRA×J­¦,wa·vOÿx{ÊBïâ 뵊ðYS“޹¬<ñïx|ݘ² <&‘®Ž×Ú˜S6±ª"¨Ǹ) šX™'ÑýPDjÊ&îG`âUq  =eñƒ©±ˆ›xáA±¦¬²Ù¶±Wwû‚s×ôH²-5°·@ùóŸtyùõË­·µç³œÿüì½>ÎÏá3_|{u÷þûgï½÷»‹/®~wq ßôì‹×ß\m.noùíÕWx³ùâîêõý«»«Íë/_ý•OðÉü½÷~ùÛ_ý?GõÉ endstream endobj 65 0 obj <>stream +H‰\“MnÛ0…÷<Å\@ã™áÿ6nÑUP]ôB›,œ‰ïôQ")Õ0d‰ŸÌ™÷æÑ—ŸWº<_…ž¾]É}:¡(ûµ´¯¯?î7}¸Ëõ—Ðz'á2/º¯xñ/^ïî“”%ãHÞ ' Jë»küÝ-)³„@Kæ+-ª‘}ÈÔx‰@ðP +|àR+­L8~m¢\ƒ§%‹W€(lØn¨ªàŒsÉØT<çœ@|âÔ +ÇÒTå”<µúõÜ5´ÕäæÔX£ÓPC4”]iŽ­×›SÏ17=y3¼-\r>ªDÎíÁ¤k›DMÙ[Ù¼æ±cèe ®¢WïÓWЬ,)uwXŠŽ•ö%ýuÝð*[Iÿ¡˜0@=&C0¹%å¹xSôDÃYM,vXœÎêþº—óa©¹ PƒC1ËÐ M¢÷5ô¥T·Äuˆ"ç0ÑætsÜÂù|Ä‘{`™ciXçZZc„½àíD*'xzG’»Õ±^]Ïo€qÀcf9OI«œOv½æöY~ÆßöÅý`Ÿº< endstream endobj 64 0 obj <>stream +H‰\“MnÜ0 …÷:/`Iýo3-º +Š ‹Àh“Å$@2÷údK²;‹±¥#ò=>ùòóJ—ç«ÐÓ·+¹O'eÿ-íñõÇý¦w¹þZï¤$$¬…辂þ}½»ÏãibÉ{á¤Ai}w¿»%e–hÉb¥E5²™/1¥`á—Ziu`ÂÁðoå<-AX¼DaÃqCU·`œKÆ¡â9çâ‡l¤V8–Ö *§ä©Õ¯ç6¨¡­ö 7§Æí … ¡ìJsl½Þœz޹éÉ›áÍhá’óP%rn “®m5eoeó:˜ÇyŒ¡—¸Š^½OßA³²¤4öÝ`):vØ—tö×uÃ_¨l%ý‡bÂõ@š Áä–”çâý LÑ g5±Øaýq:«ûë^Η¥ævY$@ .ż,Cƒ4aˆÞ×DЗRÝ^×!ŠœÃ@F›ÓÍq Cæú† #÷:Á2ÇҰν´0Æ{ÁÛ‰TNñôŽ$w«c¿ºžßãý€Ç9ÌrÞ’V9Ÿ:ízÍí³üþŒoöÅý`F«¹¢ endstream endobj 63 0 obj <>stream +H‰l”ÍnÛ0 €ï| +×C‘ú¡tmší²bæa`¬†¤@—÷FÙ²d,EàÈüDRâŸ_Nx|>9||:!OßÎ7dtJ@‡x›_áøÉð¯¼Õ û1Š‹”Ø”¨+ÎW¨[W8p&Ÿ2“ã€dza…8„BÑË(¥PL=G5ÀŽ”#²Sâ૆¹J9c*¤¥‚À”³òox¯ðfˆn}õïïOø¯ ©:´ •DÙN0wj/ …IŽU/˜º=¤X>ÛH\ñBQ¹’¤‹·wȰŠk÷Äûd«ì¬î‰°XjËž8Ëe4k‹(%éùȤv»MžÁ³å¡àã’‚î`“ÛfЈwµ&C*æ&›¾³ÕüXÆjm¼Äþ>ƒdYƒjäÒI^Îß%U;Y•| å%E›<ûfÑÌ’Hdذ4›æsÈÜÒ°‘-µ¹Üÿ’Æ­8ί~ïI·Øâ¸'RüÒ"fµôUzŒ’6ÂEH– Û¸hìg÷’6Ù*¤b39ÈÖ’ÝC“w5md´Vmó!­có8ÁqšêPO/Ü2à¶pvä•Ù²IYKÁé +>~?~˜þÀy‚ó³}/þ 0•ùÕ@ endstream endobj 59 0 obj <> endobj 70 0 obj <> endobj 71 0 obj <>stream +H‰„•tUņÿÏI@:D1†s/%tH/!ôNh +¼'$Ò"ˆ$Dš¡#`ˆ)Ò¤HQ¤—Ð[€ˆ`¡—Ü„&¥˜¼}o‚ËçÂ÷ÎY3çΞ}ÎÝÿÌÞßD Úy1Áí;U®Š¬ë‚¶^á¡ýïÇLXÈåÛ+:ÊΚÎÝY»}#ú…gg¨Od¿ÃûfzUV[^/µÍ ëÚۧܘÁ€ïuª¦†,ßãÚ• –=~ä«7pp¯ÐS^g’ÿÊ@;Ùþ‘ÏziÇxh,2Uºª¹uÖ“=PÕÕšÛËx‰˜E{Á°Gf«GËFmm4ž‰É“Y’,ÒǺçÄ’÷¿AÜÐó«º~úKòÀ›Otü +«%ëzñüß—A/tA `0š£3ú¢Fb,: %Úa ê¢5¦ 4Bc4AS4C0:b +&a*ú p¢J¢JÃePåPP•PU€ª¨†·P5PµPu†p¼ÑhkÁ‚7r §Æž ¹‘ùQQ>ªî5ÆëðÅ(‚¢(†7á‡âºýñhö€ƒʼnü„Û¹‡×° Ø‚­Øƒ]¸Š[¸»¸ÇœÌË\ÌMK²,KÓŸ•ÙšÁlËv…˜‹ùˆÄ§ˆbDc(>4A&“9–‰˜‰ñø±X¨6[¼ÅK|ñ†a¸ÔF*+¢7ÞÃtÌÀ—øX,„ íM,#ÍÃ<Áºh6莡+ºa"âÙ‹Ï1óÐ=±ñ¦áßx gðSÎà.ãr®äNîV…ûx™Wy9LcS×Ô7MMÓÜ´6 MÓVÎ<º‹)ºÞúïZºâµu¿ºë>Ž@ c<_\̵̔¢RSºÉ9$eò˜Bæ5SÔ”0eLŒ™jbM¼YlVšuæˆ9få·*[U¬öVO+Òšo-³V[¬íÖ>ë¬å²nX¬ô|~ýø¥Û¯ÚEl?Ûi—¶«ØÕì:v;ÂnO±ÛKíåö{½½ÉN°wÚ»>ŽÂ§£´£’£ƒ£‡cŽc•cƒc‹c»ã€#Ñ)Nog~g!g§Ÿ³¼³…3ÄÙ§T’¿›òo§Ü;švæ™dfz26¯î€æP®j˜æê"ÂEüŽOÅ×£p»$Êãý§ÂÒªp‚*Œ3Óͳʬ7I¬ª0À +¶†XñÖ"k•µÆÚlí±Ž[¬KÖ]ë‰*£ +Ù>¶¯]̶= +«Úµ= +£ì1Ù +WØëìöÖ¿) vtrÄ;V:Ö:6;þ¢°à_öÎV˜Ï£ðô3ªBf>òhDfжåYŠ3s½(׌‹K§Y“ ­ÙFn=?©sš-Ó3âµïêñ É(žaÿséßW*^Ôä©•5N)›Ò0¥dJ©”r—¦ê=!® ×€+ÝõÄ•æzèzàïëê’’êê—õFjœ¶ÑzJå{|®‡s˜û ù>° +ïñÅnŽÃ%b%^`c¦°E6ÉÛ(Õš.¦³yÛ´×\îj:h>w7ÝL'óŽ 1=L¨ikÚI3ÄIsi!-¥´“†ÒJÚJ©'õ¥4‘œ(%HISùAŽIš‘åwy å‘$KŠ<Ö +;#7ä¾Ì‘¹²O>—/e§ì–=²WVÉ7²_–ËRÙ$»ä²|'I2K¾—/ä¨Ì–_d¡œ”År^¾Ö]!e¥¸dµ¤Ê·rUÖÉMÙ,·d‹Ü–­Zµ rO üDÈ)ùYÈWzÞLW"ÇËa™)Çež¤ËAùIæË Y$ge™œ–%rIÖhͯ•k²^~• r]6ÊÙ&¿É>añ]>fOÆ6~€í…DÆà0GãÇ ‰á?Ä^Ç~ŽÀŽÄAÃ>NÇïü 8 iü9霋§œ‡gœ'\Å|\Á<ÜË2ÜÏr<Îü‰µø3kóÖá¬É$ð(«ñ¾Åc¬ÎïY•ÿ¡¼Úc›¼®ø=÷:/°“˜ÄN $ñ'qpœØ±§œ4!± N€b&@^Jªin]Y·¶R´þ¨öbHíÚ Uš+í^ÈžíÂ#ÚD«8(cRF]Äœµ =áfvÌeßÄüÅä6Áv¢>™Wz˜™6c^œg…˜X̘*Íüï̼Șgl‘•LÄ_&úVb‘Vž\d#µQÄÌÞ¶EF‡#|d$Eû°áÜ0áqDR¢)²=îL8 ›gÇáý³)S“‚x0·ð:RlGü¾cq-5˜¨É¡s‰Dø˜$“ⳇ£G0XÆ +tt¬¥eìèÐõë­£ÁÚÚàhë·yÚ3ýõiü{¢µ=“ÁG‚“=µËWe ‘’¯ˆKÁ¾!}gDxV*’BÐ=lGå2ȳ¶+QÎ/ÅHÃb#^Še¼ö®D泉œÎ>RȼL ©òÑ–ý$é‚~6꿦<½½5ä¥e.EÝ™6æ½ÿW^CJvKÊkŸ-5IçõŸ’Wÿ½:]¿Ä²±ö0b­•="«Ž‡µå_*+½_%h•„Vƒ`*Ïæ –*JËe>Jš Ш.ïEÖ¢dkr–""Ûygp€ß uØË(pv¬N® ËÜÄàCã­î­'†÷~µ!\=³±}¼»®®{Âß8Ô±þûl=Ø1äÝýt|úéݾXØÝ3¨…bÁùàTH«hîu…£ú÷2±qPÅÆYY·nŒj·t-–„â<ÂjIX§¼a”A»B©GF¤P6.ò#v(;Ê5E‘Y-BšÕi•u\j¾F?‹Ñ~¬~‰§õßQp9"ý†«Å”.cwërW¿72ždŒ䢽øŠÑ>J® X¤¹;5°… ê"¼=YþC$c¿Yœia“òàRVv?û•HBIÁ" –Ï´´.’‡ZP 3y僱˜˜}ó~“ì‡iúÄûÐý™/}¢ÿIŸÏå9]…,¬3 ¸/ýoy#4ÒB&F2FЃÎDsµã Òo¿¬»·ëw—MWIªûé—Ÿ-²1rXÚR.-}]NéæŠ*)ˆ“ +cbûþùEÎ.ÿÚî<ËÃÒÕp®ÌÑähº—êÙ®X™«·w “¯q¥òó*x¼>Ó²)g”\W¶àæ’Œßâvo9>2|BÂÃm*ÝÆÛ2Ð,“-þÔ¯wÏSñøÓ»½c$Ü炱#‡(Ù¥M£Ê¦UìEÙ6ªÙZ%»†(ÍÉÏ¥¸|nÊ8rÃ_VUSw¤Ñ½o¯©v©‡ýž*Rž²C½Z%S) ¬ìiæÄ;EJ:ôsWw¡ƒw›½¸EÞV= m•öz\q¥_I›ú¢{ iWÿضP¸wß\CÿT`Û¼ëÚíýÃ[†6öÚ£ $ÌC½ÁŽÀhÈßUn±'&ÛG}kûzÚ[Ú{{ý2KÕÞ­¾­]uFÎÙáËf5?öËšcL¨÷ÌŒK3ÑŸë­2öù²ÊÐhìo¼œŸ\>ÃOF£ÆqØÎ˜#²ÙYUÞ™ñî>5ºLÊ cšŒÁª¦N¤™œÙdè[_Š&“ÑXMh$2Ó·É61{èÐ,¥ôÙñ“ÑÆÆèÉqúd‘3éЀxç3e¡Y‰ø§ñ­šÆ%Ú¯ë7WV›Þ6Í`[U ˜‰ô1V°N¿©ß4½­øäý‰Óô–œöñ÷±¸yøócMјWáMÌK#¬–—³Vµ¯ìaSì6ŽE¼ ¿-gSâ›’tîSïMÉßÒÃxök¤¼ßÃ&è¶F0VOŸ2}Ĭt…iük¬Š?Ã’ü8ëãç7ay±~ýë,IgXˆt¶ž? +üc–<_Âó½x +0ÌÜ<ÄìüçûY¥ø2«äs¬šO2 diäqÊ[¬0–«k Öp†Ö§ðŸ³Qð¢Ó,,g¸5òNV}Ç„“Q£ÒÝØ!»ýs°Í ÖØCV¶ ËC¼ +¸†9;É›øXø Òz6©Ö›¬‰þʪhÛAÛV>¥~èÜý§™+D³¬–ÿ²_®±Q\W>3³~ÄÅ^¢„nLí8ޱ! À<ÁøÀ »6‹×^º»ÆÐ$U›)JÒÆJ£¨ùÑ$MÓü°øÑV´H•’’¶RE‘µU›ˆ_ªúH"ÒíwîÜÙŽWDu[çG%{ôùœ{æÎ̹çÞ{Î]ùfa÷¢l.[Šëä!ÅÝ)»Ü§dµW)w;¿‘z÷ññ»Þùß½$íξUÏü)o›´À;î=¼·/г]̸Ÿâ{{™ë Ï­Î$ïû£Ìu/3¶«RãW”Û)Ý„Ìw]ú}IÖ9ï>v{øöŒ½_jÝqúä‰·ÚØ2øÕï•:lÍœu¸)©r2–¼,w_¡_^šLµõËæ¿ÚÍpï1üneõ‚®á£ðAQöÅL1?Ô½ƒÒ¨è~+ÅÝOŸh@¯û¯¹eJ[÷o”RßÚd¡ÛVø-{[÷x—|Tx®À5Ú;¡VÑþ3ÒC^v®É.èÔ|P¸¢yÁæ†.Ö½ÉÎ,bìm6WXØÓ·sÇ¿£M>o˜Nßfr€Õ½ïSÍG¹Ö›¼TyäV·‰>Iö9+Ää3ò×L ù/ŠÉƒŸù1ÄäÉOïI‰)&ÿ–¢ùøe™gè°¹ù?§±¨k®~³„·å³Å’›ŽEß©ú¤ŸÊùq?Ÿ'’ÃñìŸ(~¯‘ ¦rùd6™ðS#þp|ä¤t4›Ê%R‡ó©ÌHÎËdÓ‰±T"Ù$[$#Çä¤d%%ƒrDòâs¶h–;¥ m‡´ËýHí•¥_úfIsù‘'r¦•D&‘ÇùŸ g»tK§l~Iƒ}ÓžLÊ é‘¸ŒÐ¿›Ö Œbóätž˜©>áȬ}E-zÊŒ$y¼‰3Ф φ°edài´c4OçMtüú¶þ›ïD;Ê8³¦W‚ÿ‡é›â#æ›cæmiîŒaÕï6±²Ì_á;²^nðwVÛ9Vmµ¸ Î9Ñ¥‹r¥ ïVKpV•ʆór3±Xk<½ÅZær]#«d9ûB-ržõÈVŒ+‹¹²Ž…PO§ð1OiÅö‰”^–Äü ,e²›m×yO¹û䞈¥Bî’/Ê +Y‚³¥Rv2Ì;¤VXËMLÖ!BÝJ¿ÀR%ÏË#ضól`ù žø¼ež&c™C÷Ñ£¯K5ߎúCÌæá@Eô·=’Z²õÁX(NþÓÈV¾då\•£¶ò ïrrj_lîg¬¼Yå¨>ÈŒ•/ùO±ü: endstream endobj 62 0 obj <>stream +H‰„T=o1 Ýõ+8&ÃÑ"õAiL\£@´HrA‡¢Ó¡i‡¸@šÿôQg»Ž—>‹ï$¾ÇGê6_¶´¹ÛFºý°¥ð"•¸þ&üù¾Òï°Ù>FZÞH(RdiDo Ð@¾…×ÇS žV8k+´ìƒ£û0ÕÊM'cË4‰*gËT„ÕFÜXÔHĸ£%\"/áâÌ»„N²„)w–THRgmÕi%en¹“jAŠI NcB뜓ö6\†PRLŽa.lÚijŠ,‰&”ÚÁ\-áâÕÙ©ó|¨ñÙ¯ðîÏŒL’ý ­³I¶37=›Ð„â#¤x¢zØhÎ8;[ªîJRî`˜£=}"€¹§†TR<HÆn‰™­´ôæ­I¬ôÁÉRƒ,!¨;žh u +U×;lÖ˜P¢ÒèGÎᔜ.\ûƒôYVÄæJ rQDT€3Ùj:)õû—1RRÕ +½S6¤&AÕàIÀ.®–K.ÃC¶6o|oÝݲµŸY¸‰Ûæ%cšŒ{tÄV·‹±wÁýt^çï¸#ÎyõÎÆò½œAeµä%œÎýC +J8ì©qU¯P=åÊN ëcwâŵA”Ñy·³sÕFئk) —aTàºÑó ð"œÆ](vêõ”7ŒÏ1<ÈYÂXÈ™>_`”&Eî>0Ÿ<ؼ^;Ûûp;ÿç±™gëù9Ô8Nâ¯7[(ãÆXï4ï÷«‡Ýã5:q5_×BW7cýôpóy¾þ> +»9ìîðú+À½1ê endstream endobj 61 0 obj <>stream +H‰œTMk1 ½ûWè˜FkÉY¾f»„BH2ÐCéihšÃn Ýÿ}žÉÌnRRJ1c[OèãIòln·´¹ÙFºú´¥ð"õqþº¶ýú¾ÒsØl"GЬš±çèm¯™è8B} õÏcx!¡ˆ%¤1q²˜q‰l©ö4BS‚g1\š¢ÔUÖÞVi:a’rôJ¯f]N¹‡ùrC7éÊŠ,>ÓU^}¯È{q§5†ÇpwÆ%eçh©ÿˆKù?.å/\ì}ÇEÿà¢o¹ØG\ m3sJhP­î'.¸p‰Ír¡K)T”S¯@Ä8ªœä§ Î5 ÕEnZ}’è‚ìâ\¼$ãœl†* LÒj#(™%%™=N@eÑ(¡FqJ»¬Ðþ ÒÌ1éiá¾ÖsHÜYNKFUê @¨"[ÔË•‹¡²íDA:ÐæRfÀüœÕNò~‘ -‘‰”|!¯shñòÚžÕj•%±Ô¹Ã¥* ’Wmá‘©“8[«† h¬H"¡¿hˆƒ¶´ +äÈ}Êä=WWJ…¿ +÷Ÿ0QAh‘„y’«ámÖ)^ëìmçy¹ Wÿ¾ùÍ0´ÁƒÍ#‡Ã Qõ¬ìŽä‡Cøvq})‘.n·»ûÏ»‡Ëï×°Âî¿ß ?Dá endstream endobj 60 0 obj <>stream +H‰dTËnÜ0 ¼ë+xlË%Q”ŽÍ6í)(‚èM‹" æÿeÙ»@a¬-ŽÍ×p¸ço:?\"Ý}¾P8_¾GZßI(ré…"ÑûúÎ_ÿz•Å2‰®­Sj«:¥8ì¿?ÃSx ‘4n¿“߀þ ×ðæQq ålÜs4JÖX²)­/Á_½„“'H8>ïG¶¤°ãõ(…SË»”[MT"K©»5k˜Vë4=ã¸Öpo…NY8æâ8Ò€”V+Þt¶Škâ¨h¨rëu3kó’= T.øÊšNbàÇn‚„íy=Ì„Ž&÷Úà7(°ÄEFû÷ñ¬-±ˆ $&$é¹Õ<ˆÙl;2xΉìeTŸ±A.‹€ +@Vn¬iô×PQ#L£F*Øz–nÎÙà`… ÉÇp·„ó²8—ËS¨Ûná!f¾J +b·Øiy .Ÿ¾Ü\þ„û%Ü?àçŸ»ß endstream endobj 56 0 obj <>stream +H‰dSMkÜ@ ½ëWè˜v¬¯ù:v·!Ð’–RC!'Ó$‡Ý@ºÿ"Ûë±Ãb<²Þhž¤§q÷û€ÝÃpÿý€°ï¡;ü%ÎHAÄ|5*ãZ ñ<¼CwïÛ¯gèúž±D8>n8sÈhJ®û<Ýìo™ðæÛ¯Ÿ·Ïý¸ë¡ÖPkñàL**Q 2Ü Oþÿð@i~wãâè#¾ƒj ™ +— %ãnLLëä{'óOC9Älx‰ØmB$Ï©¾²ä/,Q«„ª‚'HhÊ“w„‘mÝß ¹NýWކ¼¦ìXmÕ@³†œSC4·Šš$h–?[q€1WÎæÜâ“…jëÚfóÞ©„ê¸zÑÉ­9‡D É#Í­grÜÄoÑõcE±âRóÆOÁkl'`)~/JcõŽÅccjyù2Ó¥®ÙÏ­ò‘cF–îŽdîŸ%M7qчU\gnþ°ê|AVå—¯¬××4]cÓõYO-S¾FÖìo~ïüoúŸ âߪº endstream endobj 43 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 44 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 45 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 46 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 47 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 76 0 obj <>stream +H‰„UËn1 ¼ë+xlK‹ÔûØ8FÛCP410šER ÍÿjWëµs( ÛK®8CRCi÷mO»»½§›Û=¹Wç)ùù;ÙÏßî‘þ¸ÝþÁÓ鄨pÁn-Ài(ЂÖÓ©Ñ£:ûR‘h T+KBïPV@ú¨¦•L“mzèÅ©eùTöÅñËM)ôR§ èH4!dÐø¼z¦b»òc›ŸÅ#¿^,aQ!ý "ÌÅÄB¨„óûŽ–ØÅØÀÏ ]¢×„®R¶íñïªP¹*CuSG7ÎŒfÎÙŒ°‘ê@>×b:Ý#u[Ͱ6à«k„sjþº"h:@S%uÙ¦`Xr鬂Ädk×Twµ®gI¢jIØ {h4#oÔŠ­7絓i9{º²ÁžgWîóÕ+„) 9Ï“gsŒêyJn¦.Kj  yŠ1bœkÄÐÈb#t™ICX<£sÏ[Wælw°¼”>[½  ÅÌÃ7fcœÃe8¡rQ;Èz}“¥ ?8J²=lÊÁlðc?m¤`¬³ÅNÙRÀøxÛ#?´eâöŽ·^Òæ+ÖøŽT¯9/(¯—F ×6͎ѤŽšC™‹i¥~t¢óì+4S9S‰,¾Ò¥OîÉ}ÇçæøŸ‹gw<Ú­s|rÙ÷¸,RTBíµB‘Ç÷áþëí¾|º?|<þv‡£;Üá®û'ÀCW endstream endobj 75 0 obj <>stream +H‰lSInÃ0 ¼óü@d‘"µ\ë=EÑC t9$Úü(¥Ør‚ô`3â2ÚÓËŒÓ~öøð8#Ló›ÇzFï˜ÅNñ¹EÏõÓ³]AŠ+%aÊN#£xXcÉñ÷>á<ª¿<»vûŽ'Qç„Ô¥–¤É‘R6L©…õ+ +˜œpÀ%bwÂéÒê¶ŠÞTñ" ±©ŒxVÂÞP„Â.k÷WLO5ó Ò¹8ÔAH:iïÀ†“ËT6ÜŬ0˜´öî [ï,N3¡Pr±iÉÖY ²Yl–êBª #&6¡˜4 +ÅJ°’ÍníÔ¶—Y²9MWXMxrêk\‹ ³ mÜKÓî1 I]kš+¬Ä2ÖaËÜ–WâfKwW¬›» ³ù½®u”¼'ZdÕ9óòf$­›½g¶ÞßöÑ>ííx…?Ÿ›ƒ endstream endobj 74 0 obj <>stream +H‰\QKNÅ0 Üç¾@]Ûù8ÙR«'„Xp€Ø”'Aï/áÒ$¯°H£™ÎŒ'Éü´À|YîîpóòBP7 ÌcÁV¯n~´›ã(È%—‚X)0‰öðý6$’‰"p((9ž%ïîËD:Ö´Œ}…«+Š…¼0JaÛ#*ï^ÞÍa—5 Sømðé‚xL¢àCÆà=LÝu8$1j:™‰i‹1-·«Ë‚En„ª%˜RG-¯º÷RkÃÙn)Úv$éq!mPCuTiÄê‚Ϙx!ž³ê“ÌÿTYÑšö´~Žÿ'¯ö{üg÷#À«Àgõ endstream endobj 73 0 obj <>stream +H‰ìSKn…0 Üû¾ÆI¶/­ºz­*=êG}Rˢׯ„‡ºï® 3ÌŒK´Ûsf<Ýd„6ŒãŒ‚ŒLçñ²±y8°C¾&çñÛÈwóÝ™âuQ!u %% (¡_qã‚῞w‰ë1{Mä¢?JN𠌞·«YnÆ>áâ¦éœKbOOA¯,/t‘‰°® >@ÅQô;¤]‡Mu]î’àɇþ`Rv¦MÆ”ÜJL‰w;Ñ3v‰É÷ýz,I#¨]¦DÛŒwØ–P ÷ñ…˜@­lÔX Õ=h9ÖfÔëìiC¥TM¨}á/ÿëýËõ¾Á·gûÉáG€wN­E endstream endobj 72 0 obj <>stream +H‰\RAnÄ ¼ûþ0¸.­zÚV«ú€¨êªÚ­´í¡ß/œ("²ÇÌxgxK8œ“ÂÓSBx€B§êåõóïø C𦠕 ÛÁ)½‚Qø‡¿†—|åó9UùѨI"¨p¾CÁî`¼—Þ9¾eD{Ž•¬ d8Z²ˆXµŒ*5¡µ“ÖŒK*4ÕšFªH È‚3ô”F•Ç­³ô*\â|wÔÒP¬w ¹ª;4mÌÅ3;Ãu3owÞ-³nŠˆíùηت)lïQâî{©¸Í1M·ï×hLÏ6ËíbÝÅF‹åSŒ}ØÀ† Õôº™ÀÇ[y+@f7!ÙusM¾ “ç.w 9®z… .ð|οóþü‹š endstream endobj 38 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 39 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 40 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 41 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 42 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 81 0 obj <>stream +H‰\RAnà ¼ï+ö``Ã5´ê)­"ú«jT%•Òúý‚Áfíƒ;ÃÌ΂‡·„Ã9)<=%„(tª~¢,?ðŽß0¤IašP£B%u@œÒ+…úB^2ÿù z"¯:$"Œ +ç;ìÆ{éý˜÷·ŒhϱR” GKu«—Q…Z;i͸”BSåt0REb@6œ¡—4ʨު[2» É®/×Ôä»1y>ḃÌq×+Lpçsþ—/ð/À\X‹ endstream endobj 80 0 obj <>stream +H‰dRInÃ0 ¼óü€dR´¶kÝ¢§ zèŒ.'@šÿ¥dÙ±P²9£Ñ=¼M8œ&§ç a˜Þ ç;’MûÂû|…áU7¾ïà¢Øè‘™mA¬ˆ ©ß?á $Ö'é5c¯i6Î9;†ÔÛHoÓiÆ^sBOë2å¥ì^ᆌ¤#çÕE’¶Bp¾@Ù)ïlµ¸jÊÞ¦Ÿ˜éH,ÀŽ:½ 6„X¶˜Ê¹oµ.šìÿ€ó}/`Ÿ:fÙ:Äj›9"K,—7Æ’¶•Xfö´€Ñ 6_¡G›ÉK½[üÈnÖzJ‚åextÅ7äUÙ`ÌU¥®Hnw`%«´Œ?kP¹Ò€º¹”KW&‡:0#Ô6tr…ßð ­†—†]X«g;q`˜âZd.÷²ßE?ú#á夿ÿþ-˜ž endstream endobj 79 0 obj <>stream +H‰ìTKN1 Ýû¾@Ò8ÿl; VU]p€P¡i¥Ò×ÇùÌtè‚Å$~/γ[³yp³n„ÍpP8^‘P¡’¯ã¹²ÃaņgPR;üfò“ï=±ÇÇt028$rÒ‹ÞðfP”Ýâ×lÁD+]4½í}šŒÖ^’½Œée:Ûû\@¡SõyaöÏp©•ðJ©¨8Ìr6¥ˆã òQ^“tè‹§Y¼l H­‰ H«ÎŸsóœ[šm•ï5{Nvâ`7ûÚõŸ€\ì˜iaÔÊfÙDÉ„üz6ä°-Å8²»¡ ‘T±Aa¨$ÕDf˜óí[tñ·A¦vb¦Yu}bO¿ÀØËgÕFD½(–6ÇÎýOä+W :¦\•H¾ô]Õ¢*üŒGhå4<5¬} ÌšíÆŠ!j9)¿Ëòþáöw>3ªÌÁÿäÜ×äüîFîÐgéqÇ¿Ú=ü0(óÛ endstream endobj 78 0 obj <>stream +H‰|RËNÄ0 ¼û+ü¤NÇöJ@œ„zàV„ +»~Ÿ8‰Ó¡=¤õØ{¦éð”p8&ÂÛ»„𠄞깑Çù^ð †4¦ÉúÁ9=ÂHøƒ?†‡Üòv1BDË„–$èÙ0³ Óêèÿ«Z{k#!*ü,Èqí_*rÎИÙAÞìðµCâX7¦Š¬«“:Kq›)Ý5£;—5½™"£Îã¸n’8s›†RÝÊØx8Á;°²º/ͬÞz¦)eO&L\\°ª.þ˜e‹«^¿H‰»/A«§‚š:å‹jî^Ëä¼36§]³²þx_z“×ïÙYÊŽC³Á¢ÀK¬’w ¶é®Š¶óÙ>mç3íz§}ï ÷Çüç?ï —o endstream endobj 77 0 obj <>stream +H‰|RËNÄ0 ¼û+ü¤NÇöJ@œ„zàV„ +»~Ÿ8‰Ó¡=´õØ{¦Éð”p8&ÂÛ»„ð „žês#¯ó+¼à i&L3Z$$cˆsz„‘ð'§>†‡\»Àƒ !¢eBKôl˜Y&iuôÿU­½Æµ‘~ä¸ö/9ghÌì ߀NvøÚ!ñ ¬› SEÖÕI¥¸Í”îšÑËš‰ÞL‘Qçq\7Iœ¹MC©ˆnel<œàXYÝ—fVo=Ó”²'&..XU̲ÅÕ +¯¤ÄÝ— ÕSAMòE5w¯erÞ›Ó®YY<ˆ/=Éëçì,eÇ¡YÈ`Qà%VÉ;PÛtWEÛy‹lŸ¶ó™v½Ó¾w†ûc¾öÏð+ÀF‹–Õ endstream endobj 26 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 27 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 28 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 29 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 37 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 86 0 obj <>stream +H‰DRKNÄ0 Ýû¾@];qšÌ–€X hÔ¨#4 ,¸>Në´ªbù=ûù§Ž¯Çse|x¬w`L¼½¡™ŸwxÃoëÌXgd*ûù¾@`üCÁO„ñÙR>~ání A(e‰V —/hd³J£ñƒ˜‡88/z¢”ò§BN¸@g‚*–q;˜¬¤’LC§’0Úäiî“X‰J¢l™]Ñ¡—\À‰Ö5•ÉztÂÆÊ¢˜M6í:µ R&iÐÛ-à›’W{)·*nþ°eÆ¢ÄV¸ÃI)Xc[× Õõ›0ö}½½¯:¢^£K;ÜKwÂ[¯Z=ަëÑ®0ÞÎö_\à_€¯j¬ endstream endobj 85 0 obj <>stream +H‰DRANÄ0 ¼ûþ@];qšôJ@œ´êTˆZ|§u¶‡Z™±Çc[_+Ž§ÊøðXnÀ˜xÿ†~Þá ¿a¬ c]P‘I +âR_ 0þõ‰0>[þãn{…Å„R–h­pý‚F¶(¡4¯0ˆ½Pb¢ çEgJ)x*¤aÆ:4P±ŠëÁd%•dšKÂhc{¦=W˜lbkÑ@I”­²+:ô–+8Ñ\S™Ì£6VÅœh²i·©M2Iƒn·‚lJÞâ<§ÜP¨Xº½‡½2%¶ÆNJÁŒm]'T·{ìÂØ7öõî¾ZèÈz.íðÞºn½iõ8šnG»Àgx:ÙOq†30j endstream endobj 84 0 obj <>stream +H‰”UAnÄ ¼ó +`‰ !„kiÕÓ¶ªò„ZUé¡ê¡ß/&a’Ý•£H$X3ãlÒ¼FhÎáá1‚jâ€@mËcàÑZ€!¾¨@ð•pÏ ÷ñ«~ÒÓC`½KF;xÿVâñÔ’î:£ÔÛlm•z§[ò9ËÞ1TÓ»ž!YÒiuŸ²™7ªÏ,޼Ž%ƒÁ>[¢®ËVYŒ ÚõÌ?µùs ±ÕREÂ8”¬­ÀÅ›q!x¼÷IWj&ƒåV&¸ÐHëò9H­Ìp¹™BÚ1ò]1GöÄÈw[M*e†Ë­Â=;›F`ûÁêšáÄ„R{—@ЄIy'@ÞkÌ SZh‰l$J#šÚóÔÊWŽ—GÁgG·(ûËçƒõçâ: ˜±-ƒÛnî!·ç9ŸØîH +§/wq5ÅýÁ¤œWnÇJ·ã\VK„žÎé¿ò/ÀV»; endstream endobj 83 0 obj <>stream +H‰\TËNÄ0 ¼ç+üIã<šôJAœ´ê¨ºH ~'±ÓRU»ñŒíñ$:¼Î0\f 3¨»²mûéò÷ý®ÞàK óba^Áš0°Ëü¢0Ã/¨á™’?ê^Òô ø˜Ì8&.ï}„õ¦J榴7™=@;˨,V%­A"jFW%mVuä[¯´0A†mZsPžU}*k®xsHùâ$µ%‘³'ä=ßœY–™íX…ñ\…ñ\Å©^ÃËQS:é³íŒŸZ±Ït“éHèCRÞäÓ…¾2Wõ'À="Ú+ endstream endobj 82 0 obj <>stream +H‰Ì“ÁjÃ0 †ïz +½€IvÜø:o +])9ìÂØ(í Ûa¯?Ù^S ++ƒÁ0ú‘œßò‡LºMÂnïîB—FÂ4"YBÖXÄ#Žé8â'2îÔ·Tß˵$]Œ,ÑFçJO8 ï@>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 22 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 23 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 24 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 25 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 91 0 obj <>stream +H‰ÌTInÃ0 ¼ëü€j±l_ë +¤EàC`tAHsè÷KŠ’l9(‚ˆÔˆË %øð2Âá8"ÜÝ . +¡Eùk^~ÞÔ+|«Ã8!ÌW0€€é®3¡„~\ÕEpZm‹`}Û„ÐÁ¼(Õ6ýÀ#®}Óu¡ì’UBÓ¶=H–¶¦qÎSvöf¥ë#½KÔ7•uÝYgBü›Õ»:‰¾q"mÎ9^}Ë+éœÆge~IÜl”š£Ú¢R{¶g¥{ß r˜6”¨]HN‘ŠD;ÅmB<ŠCcÉ=Sa¶ õשּׁ—$ÞY*È…ØÆÚìP·C( +9š³'RºÞ +3ðûë +´ev±Ðä\ô4óÏ~²|/ é­Œ;åÑøCpu‰íîp—|S}ÓºðyŸŠ(sÖA|º +µµ˜¥É¬Þ$6žÅçî¥}}PgÕEIZÕUæ¾y@ðÕñ6–ί &^ös|X:ä‘J,?¦ü¤6Ð&²¤oj–Fyn51ohuÿ‡ÙѾH'õ'À-\ßï endstream endobj 90 0 obj <>stream +H‰Ü–½n1 Çw=_àh‘ÔµÆ-:¥Eà¡`4í`H=}û’:Ýùš¦C†5–|ÔŸ$ x÷i»û}„»w{Ï!BŽógòåû—ðžÂnˆp¼õ.ÇaÚ ¢ˆøš²¯ +pØ á„ÝÓ|½„gsŠöH®X'HÙžƒ[}aË +'ÿ®‚Êj[Þ†©Ul‘WË)L”5•«Ój i¨Ýk5qlX›¹±Å©gìsí…Ý-R±3•†ML9qÉX%mRž¸ ÖXÑéOÑÖoQoeR‹T˺eÔ¸±xþD¨ªWÛ)Ñê†öæ«— +™‚1»Ï0¬‚ÅÃk§—L“3¶”>stream +H‰\RKNÄ0 Ýû¾@¦±ã|º% VuÁFˆÍ0ÒÀ‚ëãÄÍТª¶üül¿8™^+NÇêñá±"ÜÀcôö»f¾Þá ¯0ÕÅc]ÐBÍJl¶ .õØãÂô¬œo¸!¡×P¢GŽÔj"ž?¡¡Í:áCJ]õ ]νï—ËŽqN› RïDYþ8™•,h)WÌw0ÜCÒÃiÿE1òªŒ5K¡p'rê:Z ššMNô¥™•’V +dõë`’}|šíøáPÖ!E1caª  „1¬ÚˆJÏŽø¾·ý–Xï!›ªÍ- ¡Ý‚²Ääï3›„­þ騯ä¿ %¢mN endstream endobj 88 0 obj <>stream +H‰ìVÍn1 ¾ç)üñÚNâ$WÄ© j<À +¨­Tzàõù’™ÎN) ¸¢j´3±ãß/ŸgöðþH‡«£Ð«×G +÷A¨Èò‹ãöícø@wáp< O$œR÷\ƽŽï‚ }'¥/oa÷ù!ÜC\JV„rÎ\Ýηahoƒgö±­i”;‚εjåFç°¹söJ*‚gÔ¦¬0­•mÈ& ®öEا&)ü7ÉÓ °É­ìl“dúâoÄa»×Pñi¦ø¼”x)·vns±ï&>i4î!ˆ+,ã:‡S¸^p??,h²ï‡óÝݤ™“Wâ³ç Äè¹6] ™¶¾S˜qqxUö¥m®9ѨÑlZ ž4rX´:Y¸™S)è©OhŒ ]ÙòN"©Ì$µqNÏdG>å.ðÄi}-€\!wvU¨ ÆQn`\[Lì%çb³ ÕÄ­e2„Qš$?IQYê’B›îRQNrlô´Øt6”wAp¦½Ã/÷:«o!"x e"4;-Ðlµ=j&4 ŸÀ÷_iRá\¦&u®Å#YÚ¬Èê$WÌà‰Ì‚:XØ ÙÓLnʹMv¡¿*gUŒ)Ö7ºõº}»)bb3Po=ù¨<²IÅìi“ÁT°¹H¹Xtå4<׫¸&€ýª0aèÑ;5öÚ¶ð«ë5ÿãþZÝêü´øsø„ѸŒÄxJ/¡—Ñx ù/äf~=þðµÞ Šö>íT„²›TpB#ÞsŸ–pBþW.jbBlìnæÕ7Ë7Wøÿq~0í¥n endstream endobj 87 0 obj <>stream +H‰dQÍnƒ0 ¾û)ü Î!\›M“*µSÅam«*¨ÔqØëÏ&Sðgüý4ï›s&<¾d„&„eF»,œËš7n}Ï@HØRÝ?ŸðOØí~à£jäiY8ä ÈWÒÁÈ8L $Ï>ÔQ—ð—­ï¼OO~ Õ2]ÏÙ¦%Èa‘…Á¾óÆ{«Å.š»½3‚u;â\6Ú­ u¸°p¬¥x¤:À¼¾²TSQÙlûÕ§´ɦRÆÕAÀf8*Ô(Bß"þû§7>Á+X=9ªW ½Èµ-óY¬ &_oëõÌ×{…?`Ñ endstream endobj 31 0 obj [30 0 R] endobj 92 0 obj <> endobj xref +0 93 +0000000004 65535 f +0000000016 00000 n +0000000147 00000 n +0000041093 00000 n +0000000000 00000 f +0000203127 00000 n +0000000000 00000 f +0000048075 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000048148 00000 n +0000048344 00000 n +0000049537 00000 n +0000054724 00000 n +0000120312 00000 n +0000000000 00000 f +0000203494 00000 n +0000203870 00000 n +0000204245 00000 n +0000204625 00000 n +0000199368 00000 n +0000199738 00000 n +0000200108 00000 n +0000200482 00000 n +0000045092 00000 n +0000207414 00000 n +0000041174 00000 n +0000041267 00000 n +0000041361 00000 n +0000041455 00000 n +0000041549 00000 n +0000200855 00000 n +0000195578 00000 n +0000195953 00000 n +0000196328 00000 n +0000196707 00000 n +0000197087 00000 n +0000191409 00000 n +0000191779 00000 n +0000192158 00000 n +0000192538 00000 n +0000192917 00000 n +0000041664 00000 n +0000042081 00000 n +0000042498 00000 n +0000042917 00000 n +0000043333 00000 n +0000043748 00000 n +0000044123 00000 n +0000044498 00000 n +0000190938 00000 n +0000045392 00000 n +0000045279 00000 n +0000182109 00000 n +0000190326 00000 n +0000189755 00000 n +0000189095 00000 n +0000181584 00000 n +0000181095 00000 n +0000180604 00000 n +0000044873 00000 n +0000045163 00000 n +0000045194 00000 n +0000045427 00000 n +0000182409 00000 n +0000182668 00000 n +0000195223 00000 n +0000194880 00000 n +0000194562 00000 n +0000194145 00000 n +0000193335 00000 n +0000199005 00000 n +0000198643 00000 n +0000198208 00000 n +0000197811 00000 n +0000197457 00000 n +0000202809 00000 n +0000202334 00000 n +0000201916 00000 n +0000201572 00000 n +0000201228 00000 n +0000207096 00000 n +0000206415 00000 n +0000206084 00000 n +0000205472 00000 n +0000204995 00000 n +0000207439 00000 n +trailer <]>> startxref 207624 %%EOF \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/design/iconset.svg b/dev/tekton/examples/example-bank/design/iconset.svg new file mode 100755 index 0000000..cf4e94e --- /dev/null +++ b/dev/tekton/examples/example-bank/design/iconset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/design/stride.ai b/dev/tekton/examples/example-bank/design/stride.ai new file mode 100755 index 0000000..08b44c8 --- /dev/null +++ b/dev/tekton/examples/example-bank/design/stride.ai @@ -0,0 +1,1681 @@ +%PDF-1.5 %âãÏÓ +1 0 obj <>/OCGs[29 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream + + + + + application/pdf + + + stride + + + Adobe Illustrator 24.0 (Macintosh) + 2020-05-13T08:35:37-04:00 + 2020-05-13T08:35:39-04:00 + 2020-05-13T08:35:39-04:00 + + + + 256 + 52 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgANAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9MnXLIBpKSG1VirXYQmE EGhPL+UHq1OPvlH5iPPeu/p+PPk5P5SfLbi7r3/t8uatcalDDN6CpJPMF5vHEvIqp6FjsBWmwrU5 KWUA1uT5MIYDIXYA81W1uobqFZoW5I1RuCpBU0ZWU0IIIoQcnCYkLDDJjMDRVckwdirgQRUbg9Di rsVWyyxQxPLK4SJAWd2NAAOpJwSkALLKMTI0OaBOt2yoJZIp4rY/8fDxMqAeLV+JR7sBlP5gcyCB 303/AJWRNAxMu6/xfwTAEEVG4PQ5e4zsVdirsVdirsVSu980aDZXkdpcXkSTOSrDkCEIFf3hr8P0 5jZNXihLhMhf45uZi0GbJEyjE19/u70yjkjkRZI2DxsKq6kEEHuCMyAQRYcSUSDR5rsKFO5ure2i 9W4kEUVVUu2wBYhRU/M5GUxEWWcMcpmoiyg7TzBo13J6dvdxySeoYVRWDFmA5fCBWooOvTKoanHI 0COdN2TR5YC5RIFWmGXuMka6vq/+L30traul/VvVjuUhl2kFNnmYrHvU0VQ3zGW8I4L6uP4svF4a 9Nd36VewutZk13Ura5RBp1usJs5FidGcyAlqyM7K3DjT4VHXIyA4QRzZQlMzkD9IqkF5a1rX7/Vt XttSsfq1paSsunzenJH6sYnmiBqzOr/DErVHHr0pQmWSEQAQWvBlnKUhIUBy+Z/Ur6LqurXflk6h cwAaiFuCIFikiBaJ3WMem5Z/iCjvv2wTiBKhyZYskpY+Ij1boHSvMPmK58oajqlxYgalbRSvZwCG aMTMlusigQuTL/ekx9fi41HXJSxxEwL2a8eaZxGRHqHLY77d3PnsnOgXl5eaPbXN6FF1KpMoWN4Q DyI2jkZ2G3ichMAGg34ZGUATzYpq9x+Za392tpDL9V9Y+hJAbMgRBm4CNZhyqy8OZduvKlBTLojH W/6XEyHPZobfD9Kjep+bgspp4JY/rLXBEdqgtzxiSGVqqzp9l5BGoViWPimEeFbGQ1NWOd+Xcf2f sTXzPceeINXsJNFha4sFiL3kCi3AkkDCqM0p5rVK04nrkMYhRvm3ZzmEhwCx15JPLN+bSW3F4y12 lrMpe3+qek04MjRSfvAWYmsalaKOp3yYGK/7WgnU150e7n+KR08n5hBSYhcNMt6A8XGxETW3OTj6 cm7KPT9P1OSE8q8aDpEeH9nm2E5vPn/R5b/stPFi1SPShpS2nJ1i+rJdlo/Q4BeAcry9T7O5Xj12 r3zVgTEOCulXtX6/sd8ZYzk8Ti68Vb3313fG1S2trrS5JVhglvoJuLBw6eqrogTi3qslVIQUofHJ QhLGTQMgfn9rGeSOYCyIEeRrnfQFFaZbzxRyyXAVJrmVpnjU1VKgKFrtU8VFT41y3DEgEnmTbTnm CQI8oivf+PuVNRvobGylu5q+nEKmgLHc0Gwqepw5cghEyPRjhxHJMRHMsAn/ADI1F4ZEl0+B4mUh 0PrUKkUINVp0zSS7VmRvEV8XpIdhwBBEzfw/Wk/lDzTqtnq9rYwyV0+5uEi+rSEuqLI4X4CdwRXM XRaycZiI+knl73N7S7PxzxSmR64xJsdaHV6/nUvEpfrPAR2zy/7yx3Eb3FegUV4k+yycCcoz8hfK 9/x76cnTXcgPqMTX491oSQa9LqLG7litNItGMvrRn4p0pUI/KvBVH2/HtlR8Uz9REYR39/46t48E Q9IMsstqP8J7x3+SN0RGTS4FIKpQ+ip6iIsTEDXwSgy7TioD8bdPscfVG8h+339ftR2XOOxzRfMd 3rFtC0clpZzSLUxO7Sy9aVEX7qgPY8jmBg1UsoFcMT8z8tnaarRRwSNicgPgPnv9wTT9EiTe7up7 n/IL+kny4RcAR/rVzJ8G/qJP2fdX2uJ+Yr6Yxj9p+Zv7KX6KSdHsCdybeKp/2Aw4P7uPuDHVf3sv 6x+9Bebb+4stFla3EgllZIRLGATH6jhC25FDQ/D70ynW5DDGa5nb5t/Z2GOTKOKqFnfrQv8At8kh sNLguY4LmJZ7OOyknEVoqRhnAR46R1J5ybVkL13qOmYePCJAEXHhJ228xt3nvt2ObOYkxPDLiEbN nbcHfuH82vfzV/J+oOuozWKW0sVvNEtwFKBY45OTo7IOR4pIUqB2Ne2S0OT1mNEAi/cd7+Ba+0sI MBMkGQNeZGxHxF/JmGbV0iW+ZEik0O7ikTmsyCILXj8UjBFNaGlGYHpmPqgDjIPVy9CSM0SOm/y3 Y/o3lODQddspiUlNwskKGNXQrJw58iHeWo4ow2pmFg0Yw5Inndj8bl2Op7RlqMMhuOGj05XXQDvD Ms2ro0IZdU+v+mLeI2O37/1T6n2ST+74U67fayrinxVQ4e+/0N3Dj4Ls8fdW3zv9Cnb3Wrvqs8E1 isWnIlYLwSqxkeo24faXY/h75GM5mZBjUehtnPHiGMSErn1jXL4t6ZcajM939ciESxzMluaEckHR tyaj3/DDhlM3xCt9kZ4QiI8Juxv719pNqMiyNcW4hcKDHHyBBbeo5qWqOm/EYYSmbsV+Px0RkjAV wm/x3ftQqXet/oGW4uLdYdTVXKQIDKKg/D8K77+AOVieTwiSKn82048XjCMTePbfkmNs0j20TS7S MilxQr8RG+x3GXwJIFuLMASIHJilv5ltI9cnlutQiEAdolH1m24AcyF5KZRxCqK/ZLVrvT4cENNk 4zInbu3/AB+3quTX4eAQA36n0/rv9nS92QXeo2U2kXV1b3UUkKxyD10kTgGCkf3leIofE5OcCRXU sceWIIlziEh0nzTp9tFL68yOSamlzaMBTqP71AP8964MOmnHn+n9S6jXY5kcPT3f8UUx8wX8LaRB OlwsHrMrITJEKgqairSIhpXsxyOXDKYoGmeHVQxnikLB9yH0bzTpC21vbSXUZYDi87XFsV5EnrSZ 237dcsx4JRiAd/m05dZjnMkbA+Y/Whb3V/P89wyado8dvBU8ZJ3Rnp4mjqB8qHNVkzaon0Qoef8A a73FptFGNzyGR8gf1KJvPzOtXBeztryPvwKj6PtofwyPHrI/wxl+Pe2eF2fMbSlE/jyLKdKury6s 0lvLRrK43DwMyvQjuGXsc2OGcpRuQ4S6fUY4wlUZcUe9FMoZSrbqwoR7HLSGoGmDXn5V2ktxI9td rbQsf3cXpPIUHhyM2/3Zpp9jxJNGh7v2vQYvaCQiBKPEe+wP96v0j8sLexv4LyXUHma3kSWNEjEY LIwYVqz7VGHD2SISEjK6N8mOp7elkgYiFcQrnfP5M3zcOgcyqylWAKkUIO4IOKg08/07yn5qiubG 5up/UsluFaXSzIzJHHy2PAn0/h60HTtmkxaPMDEyPpv6b5D7npM/aOmMZRiKlw/XXM+/nu9AzdvN uxVA3eiWF3JynTkh4B4dvTcRmq8lI7V7de+Uz08ZHdyMeqnAbfPru1+iI497S4mtf8lH5p8hHKJE A/1QMfAA+kkfjuNp/Mk/UBL4b/MUfmirO3W2tILZSWWCNYwx6kIoWv4ZZCPDEDuack+ORl3m1t9Z W99ZzWlwvKGZSjgbHfuD4jqMGTGJxMTyKcWWWOQlHmGI3vlzzEuoWZj9K6RHkLXIllgJ5RFOUypW jGtC0e7d/HNXk0uXjjVHnvZHTr+sc3dYtbg4JXcdhtQl1va+nlLl0ZFoejfo9JJJXWW7n4+q6LwR UQUSKNeyIOmZ+nwcFk7yP4AHkHWarVeKQAKiPnvzJ8ymeZDiJd5gkuU0i4+rWYv5XXgLU9GDGhr7 Ab5RqSRjNDiPc5WjjE5RxS4B3sZ8uT+Y11eE3+jyLEymIXLyyyGJTv8AD6ruADTem+a7Syy+IOKG 3fZNfMu21sMBxHgyC+dUBfyAZvm4efSdPMdg2vPpf1tDMKILYQzcw5XlvL/d0opPTLPDPDdNAzx4 +G/sKjaeabCXWJdPN6kkqs6LbJbTq6ld/iduSEBe9BXCcZq6Yx1ETPhv7Cu03zJa3l3NCt5HIER3 CLbzxN+7I5MHkPFwK/sjGWMgck484kSL+woXSvM9pe2d3HFqYuZ7eAubmO0mXhuV5spBVjWlFHge 2GWMgjb7WGPUCQPqsgdxag8z2h0SeRtWEksZC/X1tJQE5mi8o+JBNfwp88TjPFy+1A1A4D6vjRTD y1q8GoWkgS9+vy27lJZvQe33O4BVwvT2yOSNHlTbgyiQ53XlSQQ+WPJmo6rewRfW1u3MrSv60oDc ZAJChLHYO1N/oyrHr+KXCOnl3bN2bsjgjxn+Lz790/j0DRNN0S6so4Sti8cjXC8mdmUqeXxMSxNM nPMR6j0Y4tNGuAD6v0qWm6P5ZubZhBYQmONjEwZUfdTyIqpYdW33+eQhqDPcFlk0UcdAgcvxzWeY /L2jXWjw2UvO1toZFMAtqIQxJ2Hsa1OS8fg9RYHRjKOAbUlem/l1ofKC9iubhkPxcOQQdKU+CnEg k9P4ZaNUZRsNB7OjCVEnZmeUuW7FXYq7FXYq7FXYq7FXYq7FXYqkEv5geQ4dQl06XzJpceowFlms mvbcToy/aDRF+YI77Yqm+n39pqFnFeWcnq20wJjehFaEg7MAQQRQgjFURirsVdirsVdirsVdirsV YHP5W16XzvJqwiT6obiBgxcKRHFSrAKKs3UfEfH2zKGSPBTrTp5nNxdLCro3kK9t/Ml1q17PHJG8 srRRFFZqSVKuGoODKfwrgnmBjQTi0ZGQyJVdE/L79Gai99LPHdPwkWJPS9MqZF40DAnYLUbg/aOC eexTLFouCXETaS+W/KWvWum66lzZrHPc2gis1HpnlValCwHL4PhVa5ZkyxJFHq0YNNMRlY5jZS0r yZr1toesWkliBJIYvq/GVPiAblJ6Y4ECvFevgMMssTIG2OPSzEJCmWeQtN1Wx0iRdSQwzPMxjgqv FEHTiFCheRqaZRmkCdnN0eOUY+rvS5l80W+oXVxbaUyNI7AyxzW/xJyc7crau/GtK71Fd8jDDiBs VZ8v2s8mo1Ehwm+Ectx+pPDLqy+W7ma6t3lv2SQ/VOaOQN1Cq6RBTVfi3Q9aHAYxJroyjOcYcX8X 48mNafqfmSOdre10udPVT1y/qwjnUdTW2py+ZyccGOI2r8fFplqs8yAQTt5f8SmXmjWLi28vWTXd rKZrqRUngBUzKaFm48IpVagB7Lt4dMiMMZkg8myWqniiJCxL8eRSS384a/BDBTTrtLdQGatBxT4a 1Bs1Y05duvYnLRgiBQr8fFxZazITZB/H+a9IzGdk7FXYq7FXYq7FXYq7FXYq7FXYq+b9A/5xkit/ zQ1nV7fV7m3h064iuNPNxYkxSm4UyFRKHhST0mAVvT+njir3LyV5XTy1of6PEpmllubm9uH/AGfW vJ3uJAmwogaSi13piq3ylB54ijm/xVcWU8hSIQfUedA45eqW5pHsfh4/TirIMVdirsVdirsVdirs VdirsVdirsVdirsVdirsVdiriAeorTFXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FWC/lRbeTFs tVm8rG49CO9ksL8XDKS13ZErLIVX9ty/xM27UB6UJVZ1irsVdirsVdirsVdirsVdirsVdirsVdir sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdiqA0f9A+lcfob6r6X1iT639T9Pj9Z29T1 PT29Tpyrv44qj8VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir//2Q== + + + + proof:pdf + uuid:65E6390686CF11DBA6E2D887CEACB407 + xmp.did:e85ebae8-2da8-41c6-9b4c-9a9c86bcdcb5 + uuid:36c39997-d0a0-5747-9e1a-3a6764a85350 + + xmp.iid:a0b2e635-7a5f-4301-995e-a93c3b0c79ce + xmp.did:a0b2e635-7a5f-4301-995e-a93c3b0c79ce + uuid:65E6390686CF11DBA6E2D887CEACB407 + default + + + + + saved + xmp.iid:a0b2e635-7a5f-4301-995e-a93c3b0c79ce + 2020-03-23T15:23-04:00 + Adobe Illustrator 24.0 (Macintosh) + / + + + saved + xmp.iid:e85ebae8-2da8-41c6-9b4c-9a9c86bcdcb5 + 2020-04-03T13:06:42-04:00 + Adobe Illustrator 24.0 (Macintosh) + / + + + + Web + Document + AIRobin + 1 + False + False + + 800.000000 + 600.000000 + Pixels + + + + + MyriadPro-Regular + Myriad Pro + Regular + Open Type + Version 2.106;PS 2.000;hotconv 1.0.70;makeotf.lib2.5.58329 + False + MyriadPro-Regular.otf + + + IBMPlexSans-SemiBold + IBM Plex Sans + SemiBold + Open Type + Version 3.1 + False + IBMPlexSans-SemiBold.ttf + + + + + + Cyan + Magenta + Yellow + Black + + + + + + Default Swatch Group + 0 + + + + White + RGB + PROCESS + 255 + 255 + 255 + + + Black + RGB + PROCESS + 0 + 0 + 0 + + + RGB Red + RGB + PROCESS + 255 + 0 + 0 + + + RGB Yellow + RGB + PROCESS + 255 + 255 + 0 + + + RGB Green + RGB + PROCESS + 0 + 255 + 0 + + + RGB Cyan + RGB + PROCESS + 0 + 255 + 255 + + + RGB Blue + RGB + PROCESS + 0 + 0 + 255 + + + RGB Magenta + RGB + PROCESS + 255 + 0 + 255 + + + R=193 G=39 B=45 + RGB + PROCESS + 193 + 39 + 45 + + + R=237 G=28 B=36 + RGB + PROCESS + 237 + 28 + 36 + + + R=241 G=90 B=36 + RGB + PROCESS + 241 + 90 + 36 + + + R=247 G=147 B=30 + RGB + PROCESS + 247 + 147 + 30 + + + R=251 G=176 B=59 + RGB + PROCESS + 251 + 176 + 59 + + + R=252 G=238 B=33 + RGB + PROCESS + 252 + 238 + 33 + + + R=217 G=224 B=33 + RGB + PROCESS + 217 + 224 + 33 + + + R=140 G=198 B=63 + RGB + PROCESS + 140 + 198 + 63 + + + R=57 G=181 B=74 + RGB + PROCESS + 57 + 181 + 74 + + + R=0 G=146 B=69 + RGB + PROCESS + 0 + 146 + 69 + + + R=0 G=104 B=55 + RGB + PROCESS + 0 + 104 + 55 + + + R=34 G=181 B=115 + RGB + PROCESS + 34 + 181 + 115 + + + R=0 G=169 B=157 + RGB + PROCESS + 0 + 169 + 157 + + + R=41 G=171 B=226 + RGB + PROCESS + 41 + 171 + 226 + + + R=0 G=113 B=188 + RGB + PROCESS + 0 + 113 + 188 + + + R=46 G=49 B=146 + RGB + PROCESS + 46 + 49 + 146 + + + R=27 G=20 B=100 + RGB + PROCESS + 27 + 20 + 100 + + + R=102 G=45 B=145 + RGB + PROCESS + 102 + 45 + 145 + + + R=147 G=39 B=143 + RGB + PROCESS + 147 + 39 + 143 + + + R=158 G=0 B=93 + RGB + PROCESS + 158 + 0 + 93 + + + R=212 G=20 B=90 + RGB + PROCESS + 212 + 20 + 90 + + + R=237 G=30 B=121 + RGB + PROCESS + 237 + 30 + 121 + + + R=199 G=178 B=153 + RGB + PROCESS + 199 + 178 + 153 + + + R=153 G=134 B=117 + RGB + PROCESS + 153 + 134 + 117 + + + R=115 G=99 B=87 + RGB + PROCESS + 115 + 99 + 87 + + + R=83 G=71 B=65 + RGB + PROCESS + 83 + 71 + 65 + + + R=198 G=156 B=109 + RGB + PROCESS + 198 + 156 + 109 + + + R=166 G=124 B=82 + RGB + PROCESS + 166 + 124 + 82 + + + R=140 G=98 B=57 + RGB + PROCESS + 140 + 98 + 57 + + + R=117 G=76 B=36 + RGB + PROCESS + 117 + 76 + 36 + + + R=96 G=56 B=19 + RGB + PROCESS + 96 + 56 + 19 + + + R=66 G=33 B=11 + RGB + PROCESS + 66 + 33 + 11 + + + + + + Grays + 1 + + + + R=0 G=0 B=0 + RGB + PROCESS + 0 + 0 + 0 + + + R=26 G=26 B=26 + RGB + PROCESS + 26 + 26 + 26 + + + R=51 G=51 B=51 + RGB + PROCESS + 51 + 51 + 51 + + + R=77 G=77 B=77 + RGB + PROCESS + 77 + 77 + 77 + + + R=102 G=102 B=102 + RGB + PROCESS + 102 + 102 + 102 + + + R=128 G=128 B=128 + RGB + PROCESS + 128 + 128 + 128 + + + R=153 G=153 B=153 + RGB + PROCESS + 153 + 153 + 153 + + + R=179 G=179 B=179 + RGB + PROCESS + 179 + 179 + 179 + + + R=204 G=204 B=204 + RGB + PROCESS + 204 + 204 + 204 + + + R=230 G=230 B=230 + RGB + PROCESS + 230 + 230 + 230 + + + R=242 G=242 B=242 + RGB + PROCESS + 242 + 242 + 242 + + + + + + Web Color Group + 1 + + + + R=63 G=169 B=245 + RGB + PROCESS + 63 + 169 + 245 + + + R=122 G=201 B=67 + RGB + PROCESS + 122 + 201 + 67 + + + R=255 G=147 B=30 + RGB + PROCESS + 255 + 147 + 30 + + + R=255 G=29 B=37 + RGB + PROCESS + 255 + 29 + 37 + + + R=255 G=123 B=172 + RGB + PROCESS + 255 + 123 + 172 + + + R=189 G=204 B=212 + RGB + PROCESS + 189 + 204 + 212 + + + + + + + Adobe PDF library 15.00 + 21.0.0 + + + + + + + + + + + + + + + + + + + + + + + + + endstream endobj 3 0 obj <> endobj 5 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 23 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 24 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 25 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 26 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 27 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 28 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 800.0 600.0]/Type/Page>> endobj 31 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 800.0 600.0]/Type/Page>> endobj 43 0 obj <>stream +H‰ÌW[oã¸~÷¯à£ŒÞ%=Îd²Ó3ɬãEQì…#+± _vc{¦ûïûCR’/ÙÙ¢í¢bŠäwÏõêþZ\}º–âÝûk1úe$…—RTøÏ‰xiG›Ñ»éèêúAŠf'¤…u5~WBìšÍèê–žw£«éT +%¦O#YH-¦P€ ?mU”Ò*Œua|YŠézôãøÃûÏ!ÞeÊŠñÛ‡Ûë‡ìoÓ?n¦€¨+bUÒ¯–U`õ ð¶¨J'L- ¯¥ÍzD+ëQ®]¡µqXrW(S ë +£0Õ®2‚ùb”+UÔÞŠ4Ô`Zw_bë¢óÂ[MS]%1‘<¯NàÇÖ5cjÌ+-xp„H'HÚ›BáœÓ…®ÈËB9×Íjf÷6ß’ä¸E`í|QÖJèÂ;Èg¹*L‰³a/àq75±«UatE§¡}]>DA•ÃPÒ¼,$$ź^œi](q|¥fô4ú~𠌥)ä m¼<ˆ‚¨ÒáÉÈÀÚª\]¸šEuÂj~«fd*Ö§ ‚8½.¬¬*ôgÜŒè™@á4©˜¬ÎÑ3—%=;¸–а‡^°Gžfª ìðÑâqpœ*œÑÂ@¾ªq¦h«G< PèÉ“:j¾X7YÅ öA:¨NЭa¦7’ár&Î ‰ »™bHB4+£a·+±À(L5#g:pŒ»²„—ùþßöZŸRu¾j,T¢‚§Nn?üi*¦™†§Þ‹›ÉÛ‡&7ì­ˆp¸Ôt~¶orói)ÆÓÉíõT|žd +“ûk|UFŒnï>0ÄÕTý=I‘BF”:U¾pá€å˜f¥/Z1Ÿeà°Ÿ‰Ýáñm“帻Ålµ‹YF?({ÜŠ=޼d9Ž,Ÿ™¥{±Ï¼oEº…*t¸Ãöq?[nÄÓ ‹»]óé&ótj»a¾qiµj_xµ}ÉœÏv‡°ÐŠíÓ9îÏíËn»™­zá›Ì‘œÛMD _6ËͳX,×bû"àñu¹_lûsÌÃf~€6ÚÕ,«ÄøW1ÛÌ£¸¹—¥g_SÒ8mWËç ïr»I:K÷mÅÙ¥ +†É%íª5x7§?úå.¾[|ªÝ>“(ä@á¢0gÄv·£GzbSÆ3áB힎5˰­9¬wûÙ&nÎàXã"å·×Rí·òžñÆ×ˆ¦®FZóegDqv„ɤAŒG̬:!àˆ"DÁÒL¡Ch­9‘Ä1~…÷ràCøãdŠ´*µ†Ì(´] êu t¬VŒ8Rù:&©´@VàÐçTEÎMBQ’ §íˆ×®'$çÐãc(±ðÍ+{rsp-mE7”†s6).'^ÌŸ„­LÂ7cÓ­Ò˜ænHð¥B 3Ê—|í +—A¢×žÜõÞŒ`ëß_Qî¨CñPRfe%6#Í’. #ײö”ØHô(&浓{›ôâöôÅ»ë(Ê®LÈáÒR"(¥ÆÅit‘6 H›–;Â%Vá‰0²-®})+B§Áƒ¤ßð>à—XÓ4!ÅL²êÄ^»ž’iÙI~í†dº«–CR¥åžH&¡ÎlD³tIÊh,üìÑ낵Êí°Ak<ç[«1T•…>žv˜²â +p=2%ÜÝ ‘ÛPþ­{”ø…t[¼1}1¾P‚ JE|î¦+*ð!1Yõ`™0·„gʈ×IæM'UúˆÒ â,û3å1dyÄ’Ž„Zõ¢Ð¯»Ó‰È†^à°ê¨à‡;85t*H 9õe(qkKa¢¨U¸RÀo*®uQ*.ôøš!—zʯWªÁÅl—²ÿ® @-•tú7®“ê2VN§)\r¢´ƒê†¶¥ú¦>–%à +§ºPáð1®qþ‹µiªC™x†Ö×AÖÿ úIßôÅŠ›åf¹5‡PFµÒM:ã9gÔW¼þwÔ»™3IÓ—\ÑyÔÆþFƒrÉ?ßOx5ÎßÝ~¼Íx™ª¿¿~Ó?Þ~º þ6o3VãÒRjl¾äÝñº3v‚Ÿö4õt/Lϵü{‚ø}½‰=~©3üðt´ûøºX6 Au-;cïXäï_–óÞgçhz › ä ¬‘ÊîýË!¹ü!íê‚O0¸õz»A¤9ìÀðŒõLëY³XnÚ,G7Γ˜íl>{\µ]‘ÏX q«uô:)ó‚Þ»fð<ûS7»5‚#d•—g“r@Aá°AúK¡ÕÕáù¬:y>Ù…% +[U !"ݬë(zG‹!a·¢äD* d´=b‡-°GÃΫ㪈×}RiW®\dæ‚!Ó§°/gƒôŸº}îb~I6|òþŽ"ƒîGö#»‘¿Ó.§ãíy£ãû&­[ã¸ÕBLñ&Åœ¤\Ó«ÜLð›O×ÿ%¦zú endstream endobj 29 0 obj <> endobj 44 0 obj [/View/Design] endobj 45 0 obj <>>> endobj 41 0 obj <> endobj 42 0 obj <> endobj 48 0 obj <> endobj 49 0 obj <>stream +H‰„•XUGÇÿÿ3W4¨XH AÅûž½·¬]{[¢îªQQT$¶ ö5hŒ±ÄK,‰±‹Ø–5š¢±óÀ»‰Å{Þóeó™Ý{¿™ygæÜwç?çœß<´r#!mÚW¬‚Ì뢶Ða‘}ÄLXðöëeg.çì ]PïÈ>YölõÒ§ÿðÞݽËÌrg×Þ+¬§o³ØA€ÿ$uª®™þþ»´+5,ËN|êôØ#lPpÔz ta »6,2s½R]íìa½&ç«ö\í®€i9pHTF<:U—»×#÷Êò¯zP÷sF¤²2UG EæÈnèÄš:›3»É&b–@î‡À™¥Íê·ò(}.&WF1–³H_\ìžoIp¿ â6@Ïoêùé/É/>Uû <Ñ™ÌëÕø¿/ƒèˆ,Â@4AôFŒÄ´E3´FÔF="Á¨hˆFhŒ´ÃLÄTôBS8àDQCq”@I”Bi”AY”CyT@ETBeTAU¼‹ ª£j¢Â1­L}XðBväн{#'|y‘ùá«êÞB¼ ?¼D!FŠèôÅ ôÓì0Šø wp/¯c ° ñ؋ݸ†Ûx€{¸ÏÌMo椃ÅXš%X’Ù‚!lÅÖ…˜…‚OņˆÆP|d‚M &s 1ãð ¦a±l®xI6ñÃg†áR),žø31 _b’XEÚ˜iŒd4ðk£Z¢ þ©ÙÒÇ|X€nèŽMØŒ1ÿBWD2‚3ØŸr—qWr5wq*ÜÏ+¼ÆÌn˜Ú¦®idê™&¦… 2-MCX9ri“õ,¼ôíšþzâ55^]4Ž#ÃÏ?.åzfHA©.e§–KÆ2¹L~ó–)hŠšR&ÆL5ÓLœYjV› æ¨9aå±*Z•¬6VwkˆµÐZa­µ6Y;¬ýÖ9ËeÝ´[i>¤ÙoÚþv€í´KØ•ìªv-»¡i·§ØKíåöJ{½ÑÞb'Ø»ì=_G‡ÓQÂQÁÑÖÑÍ1ϱƱɱͱÃqБè§—33¿Óßà,ëlê uö*~¬¤oÉ–eóÝI¾<õìsÉÈðdlneÍ¡`=ÕpÍÕ%…KøŸ‰ŸGáI”³Æë…%TáxU8ÃÌ4Ë̳ѳ`åU…•­k°g-±ÖX묭Ö^ë¤uѺlݳžªÂXU¸ÄöµýìB¶íQXÅ®éQeÇf)\eo°7ÛñQâhïˆs¬v¬wlu$üIa¾?)왥ÐÇ£ðÌsªBf<öhDF²¶•™Š3¼_•kú¥ôe˜¡Y“ ­ÙúPJ¾8­kš-é3Óã´ïäñ M/’nÿ}é?P*^ Ôä©‘i'—NJ.–\<¹Ìå©zO†+Ýõp¥¹žºR]\]ã\c\“S\}2ŸH™¡m´ÞRú%ÍQïT iXRtRxR`R©¤’ç/æºp +(°ÎwmcµÜ”¦™mió§g‡rVÎËE¹þjorUîIê–zË …•—YÚkdý³VÅ„˜v¦¿‰6ÃÌXO/×Ç›D]s·€cµ&¾þ¬¨×Îö·Xãuœý—ùi¯ñåéc2·óyúßôü{f1ÎLS¸ 5‹1C”LC•?¡Jæˆ6uµÊÇÉ yi‚•PQ˜nZÈs G˜Ég|L~ôTõS¶D{H9FY9Ki9Ckfug¦*;÷»Y£ÄÚ‹ñLTÖ¸‰si¼¬DLPªnS¢Æ+SS”ª”«nªæV®*UqK¹ZZÉZB©ZX^ÉÚÂÍV†±¹òn0v²?¶rvq®p"®s~åx\ådÜàÜäl<â4Üa~ãçxÌé¸ËEHçB¼ÔÊv3ø½”cÙø-óq-óp9ßà7Ì˯™ë˜ŸX€ù6ý¸‰ïp r³f×Vâ6f<˜@›ÛY„NîdQb9îfqdY7©yšux†õø ëò,yõyžÁ<Ç ¦°]lÂ$6æ=¾ÇÛlÏ«lÉ»ìÈ[lÇ;ìÀTvã3~Àúqa_!?äQVâ}¾Ï¡ØÃ±¸ÌìÀ‹lÀd6Í"yK¥zéh:˜÷LÍåN¦­æsÓÙ´7ï›PÓÍ„™V¦µ4Æ i"M¥™´”Ö$Í¥•Ô’:RWêICÉ!Ò@‚¥¾4’ï儤ÊQùA~—‡òHK’$Ë­°³rSÈ<™/ûåsùRvÉÙ+ûd|#d¥,—-²[®ÈwrLæÈ¿å 9.sågY,§e©\¯µFWÉ%Y-.Y+)ò­\“ rK¶ÊmÙ&w$^«6Aî+ŸÊAùE~’Eò•~of*‘ãäˆÌ–“²@Òäü( å”,‘s²BÎÈ2¹,ë´æ×ËuÙ(¿Ê&¹!›å®l—ßd'Ÿ2”Ù•Oرƒ°ƒ£Èáhe,ŽñcæGØÇá8À8È‘8ÄaØÏ™øŸá!ç •_à ç!óñŒ ðœsñ”kèÃUÌÅ},Å,Ó¬ÆYƒ?±&f-þÀê<ÆÊ<ΪüžïòÄX¯Ú˜6¯+|Ͻ6`0æbó‚M°CiJ€£BMœvØ’¢’6!U!‘¨¦©liJ•IK«uZ5mS§výÚ&¹™4÷O¦iÕ¤N +Û©U»îCÑ–VÖ®i×nË›=÷¾¯ç«ë‘¼¾÷ž{ï9Ï=çÜsÎ¥(½N[鯧wi/}@IúMÓG´Ÿ.Ñ }H)ºL‡èß4O:ÝGWè~•ûgT0‹zc•Æsì‡ìyöê€ÙK¢A´ +‡¨Õ¢ùªVÔ‰zш¼Õ,Z„G´‰vd°ˆèÈcÂ'6‹èa^ÄNŠnAá÷‰Ã¨”ö¡Ú˜E–DÔ‰#ÚìAÝDõ² 1c5â5³_¹Ùi7*Æc¬ˆ—2;êJ;¿ÀìÆãf›L¾BôT†®<–a#-ëˆGâà`†QÀíŽIÓ=ð]ôDÀ=𣉤–r¯¹×vϯ¹G݇çæÓ–ÕbâÐZ*äN³}É#ø½+éI¥šòÝC©Ôíàc‘|,ŠÏZ +L Š\Æ"k`ÜÞÉäÞdúÄHSzh$Õäñ¸cés“Éô¹‘&O*…UEy¤hWŽÔ›˜‹¹¨ ƒË¾dz¨)ÍRkkÆHó¤O¬­5­áæ¥äub׆L4!9ŠŽX†NLª©š§I4æÎÔdÛãû’1 õ¤‚(ä‘þ(#ìHÅìö,r⿳ªꨄA6vY,‰ŸPÓ:ŒWµ=µ¿1f-h mñÛá-§ÇÙqjnzZ?wñ¢°ÿçR’Ï€¿ ©óë0q1RÊá,¸ÛY¹â_‚Ö<«äoeÍ’¿"X$Áb¼Al­Ì¢¸ðö‚“mýÊud®ŠKá-ŸV¬UGª ŽËùmŸöz﹋ú/­©ÌÙ³<{y”ïÐÿ„'€í0°ÕáágDzxGàÝ øjàIFÛp½®¢¬“„:%Äû!>«¸Õ)6žÐ:ž'’V†Ö£huXW¯`V{¶¶rWM/v™ÍÓÙÚ;@=^?Eó½íôÇ .-X_ ¶6…wøôï¯f¼]]Þ̳ííÏòlc÷ÎÎξö**ªò »v÷nZòu´ut>àÓ6i>Yë¹r‰ßË_Ã#f§|Ëá%@¹³•Ê£”œ­Ðä¥Àìfã”zk[7ölç‘­µuÅݤµµPM-@÷ÕUÍÅã]]ñÅØ‡;Ž9F¶MMmwõ~Õœ~,™||6<¹÷ŽPÿüôƒûç†BƒwN©JKÙdE†<½Æ¥ÚðþRj+ƒ%Êom »$دZÂ¥ÐÚÑ«5t1Uì§¾œ^ }d1î÷ÇGt]ü +ϦÂÿÀòÔôƒÓSzXêMbjåÌTÑÈðà’‚éz£JéÄÒþ%h™áø!éé9]Ú:\Wî_‚~­g¨M‡vñìòKËg—sª¹?‘5*´ÿ†ÉÎý\ÿÕèï+©ú›W}æø J«,”ÚÉ6È­b*>ïÖú$Ág,Ò¬€l +ÓTòî¹Ì;­…†ž£ÙuÖ®&«0ÙŽÉð–­®vsÏÛÎH‹zœwXlãÛL‚‰ã£V½G«Çïœ=ßÔÛYÿ8• ëÞ*™<=NL ï88»4s£5Ð\ÔWYNß+Êæo®µ¹yÌ«ç.‘„’B™$”(BH‚0Âa¯PG¥Ð°•áøø,‹è|MŽa0ˆNܵ„dçŠìȵÑYÌm ¡3¨ë¨ã¥i špÊÀŒ¸LŸé¿_]% ŸO“gõ?SëåQ,â°ÇÕ9Ço<ç Qùª_I“>l5½ :Ø0Òm^…̨Çù®èÌ ÌÎ.Ð_ôÆC·ô.dZY4 àÕñÅ|Y*ÐðY鵉UÂ…¸üêrÞ^ï€g¥ŒãÁªª€§M²°ð,—„òB¥$TØË´¨"”›É@¦,¤gC[„±@[†Ó’V\F>MjI'çs–Þ3gz-+ßú©å•3+ôñ¢þ)•,êePüèn(þ+gs2W0Ççéþ†m¢ê¦·O&E¾a`/‘M|uå»ÄÊ“¿•?tß“º ¸¾ó$ýSãêÎ?…;_L¦2EÓ”»Öl|l±Îj”?ÈœÑt]¦0B°ÏÀæ½¥ùØR<ˆ/ÅbK“~ÿäRl<•Çgïž9•Âíîž9Lšé^žŸ~`z^ýäsÅ~è¯é€4}kT8+qhûÆŽŽõ*Æ”£5¢c¹ @'@È‘ “ùüÑ@™ùöðDossïDøg/{ïË<»©2¼%Þ¿Iÿ„Þìíövæ±ÊZÃJȬɌ€À›ÇÊ%4^€Õ_uS«óq™ÖG¥jUÑzK}Þã’à0®¼Å(²œªŒ"ÄÈbV^{çùÁññÁ“-C÷ï;4ÔŒ@³/?ú‰>?±4¦icKô]`©ÄyTõ͈Äò?ê›bI(¾…±-2 êúª#âÒ…ÓG·‹£^€ì_¼Hw©¼Wš—7}£¼na‘$ÝTžÜÍM—²„ŒDa1ƒnÄ)TFÎÏþþÔø÷žø€ªèEýMäà”þ7e†d5¼Ï›>xÐqÇÇÌ&.JÓ¼ÑÔþ±ÑÖ¾§¿¥bm°H“Ù¤ c—…ä~k³oYŸ‚?q†Þ/;ü½o|<Ä:x’ñqÜ$Õïf>:À긇5«ñf´{ØÕ°Aª¹ò/¾}/_ÆÐyDí“kéqÌ}ÄZè!Ö€¹ngv/7«FßFŸ@Þ3ÌÅ¿Íü$ëᯠMâÆ÷+ŒÏ³½À¢ÝÈŸÍÆ"Œö¼9ÿˆÙ>ö^ÈÁºÿ²_ö±U^eÞ÷½mYö––R°ÎÛÙ–®·Ú-”ðÑl m)UZºÞK¹£_¹·-4\â4N0JœŸc:ýËn,Y‚&þa\t +Ñ¢Ñeá#ˆÉ‚쮿çÜsëå2D4þѾùõyÎóž÷|<çœç9wF:Üãâ÷΢Ÿ%îQÉv{¥œv+Ò¨…"@=Ô@£•ûsið>-›S²Qaü¥Þ")ÅG:AiõÂÒêl‘.ôrd5¬v|Òîü|R‰¬tJe”»² Ê•è ¤ j™WÔ:ëð“r™¶¯HžÓ­;~Ýigþí²Î9,°Î9+P&ÓñeÞyYŸÑ%ë£òYÅÝÌŸ—2¯€o/J‰“ÎŒT9/K…ó[æW…\MîI|£sLÌ»9…ž}ƒ•©°ö›yGš(×A,qf¥Â[ î/ñg¡,õ­`MvâË1Yä~P‚Œg­óŽx~¹;(Ž;M!ÖOm×X³6Ö÷/RîĘf]³Ü}Ô}‰vŸ§Þ§{©¶Öê1ñ»ŸçÝ´tÓÏ2÷)Ð=|߈¿=§'öÅýbaR÷°f`Î[:ZçèÀœÃ{#~ã–²žßTÒǶ“±íŒ_à|ïH (Ç/%Î<¡¥€3]Àþ,Oß±§¶Àv– ’±aŽ—`µøLœHù—ÏÅŽ÷£‘õVî¦n¹ËêÞ—ˆcžæ<<-›L\Jƒ}¶ _ïpŽI±3%Ë5n™ØÕgÆÙr?Ðø—ŠÆÁ;¡ñ1‰‰“ÿ¼×È`âo:_#~*}66ÿûäÏé«ÓyKr’qJ Jmùv»ÏãÍ )¹áòãï™<‘ÎíÆpŸðÞ¶¹(‰æ¤t~ƒ½S>drUÍc?`>ïÇÌô4ï¥bòßм˜¤›=þ‚¬qßdlgÍ\N`/ïòØ“z–“ë^Aö’K6¡oåÝZó>Ã}™Ï¾ýûUë~†ý½QêœwÑÛ9W8·MäÂwi3_»WÐoçíÀ¹‰t ºWtL‰5[kîºÆÓì×dþï%ß©ßÏ£«ÿö#[óõºÉmä~où+uŒ]Ç­cv¶Æÿ Ì8uLI’ãy1~Õ[¿êæÆ¯Ò™{ý:¨ßþ†Læ„õôÛH{¯3÷'ñ1ÖÛ.»ÙÜ-ÔJ3|Œù¾aËÚg§¹#™{y¿@Ï;¹;hîF£Øë¥ÖÛlbãr[çG–¿ ½JäFr¦Žó ÌÝúÎ[*¹ê;ï2ýïc“{þ \¼[îNI¿é9W¿ K®7ɸôÎôìß”zïšìöU ÿ] +½ÓÈg̸îv¿Nÿi¹Qó˜úÁð æ_Ç8Ss?áC‡õhž™óUÒ_šž‚̽ßǺ߳þ«µhžL‹¹s(5ø²ÞÜójÝVüéOÜGÕ÷öþzÉÜawiÎ3$ƛկf_.gN¥Å¶iÎ<¾6ܰ>³_ScŽúþÄÚðÊ—ÃZdâ[?ågÓb’®kq Éóú2kú¸áû¬ÏicÎÏÅÏR‡ždM¿‘hÛgLûÄïû¸d;{¹¯=Fœ C›,uñ>Ì}ñ.ëyû¹«êqgó{œ¹r?å^ôG9{­”·J±·9{±Ó–×€_µ|R& ì I¼iQ}ž³ò+ð]KO?´¤Ú´BKÒvPa½Æásðüž€“ðWø–}¯LÁ¤µ+ð:ü FÜ>' yL$ÞCð +tC~“öÒiËÓðÓį²ø³ð5àb|á#it¦|¯²K俥T[Ú|þp÷óq²ìxÚÒHï³3½Oýè+”'}_•­ÌeÍü—ëN›sʹèúÝ/zâm4OÈû±/Û÷ ß«¾W3öd¼‘q3³%ó óœŸæŸùgþ™æŸÿïG3½wB>*Y2(Zâ/[Äçñ™ò"ù²µ‹¬JÜ øó䔺½Íê™èVÏ’nr§'ŽïJ{åWVwd½ó°Õ]Éqö[ÝÃ>luú‹VÏDÿ½Õ³äÛnnóèØT42xhQÎU9¡íý«òŒ•×d…©¿K%õ×Xé7òŸ ß·>r endstream endobj 46 0 obj <> endobj 47 0 obj <> endobj 50 0 obj <>stream +H‰|T}PWŸa˜Ý”ŒCÌîÝÌOõùôûÄAEÁ?€]`waAn‘Å;”åÓ"‡€H@QƒF@…£( ¨œ‘(¬z¨h¼JUz6ën–û']½ª®×¯_ÿºû×ýŽYZ`8޶Þ'd«ß–›ªUaŠ@uŸ·)£’ãÂÔf#/ð¸0ÛROgÑbTðÛo¿ðäœyå3 +m1 +Ç-éi3ß@äÞÈȽq‘{UÉñ*o—µ ‰"^Tt’|ñÒ¥® ÍÒ}Jz-”»º¸¸LIw¹·"!\):¨IRî×Èýâ#Ô‰ ê°$¥ÂYî'Ÿ‚ÐÈÕJR­5þ/K¹J#Wª’¢•jy˜hŒR‰þj¥Bž¤S(÷‡©cå fËïÔÈÿJ®Š—‹Xòíñ*³”$jäañŠE"JÂT”ˆ„äø$µJ©q^ä|0Q)_"W(#1 fc3,0Ãì1l.†ÍǰÅæŽc+0l†­ù ¢ñ£¶PäÛ„bX-Ö‡=}}ð"ü5þ‹­—,z-Æ ’H%^[η,³|G:“ßSµ„* îPOé`ú$ý“•ŸÕWVãÖó­“­ë§I§ÅM»iãe“nÓaÓ™Û.L´ã¢üS;‘k)d›'³)(@?°h|EÂ8…äè: fe²ˆž¤öLíauJè`Í;dÖ$¨Yâ Å{°Ã´‘ ðòE³rP¨ÚÑfõ,á¨u?Ã,ð‘‚ßu°zÇ™¯Ã¼!ˆf°½Ïï!Rõ…Yþ#Üêã 4 m"ß`d·Î‘“ ¶Z¼\‰'ÈšýæZ3§Ÿ;eÎÖ¯I”'ZIPîÃÏC.qºØÛG‹.z°Å;À†BÏ^:}®þ’ælt´ú@dTub/)ÎJ†pŒ„°ÏnµäÓ­$üfMÀtéxà[$_ퟠÜÃ}³‰" ÒC¶>8ëïaüX[x¢¦ Aö¶gŸ«³ˆ}¼&ÿX*/ÉÌ| ´>ˆI±í2ÂþÌ𕋬¦þ~jŸ ܆_þò~k'¢šyçúð =Òïê:ÿÕÝ’’qŠcZªï“ÌðÉý¡å>2ô©ûJû…ýÛÀBÁ¿Š® +nØñ¥ë–m•Õ +N’U¥&â°ÏHÀ>;£0á'zC%A–¦µøH?È’íD´i-ÐÈÿc=e\׉ƒ´ŸøÚ´† úã:Dƒ¿©‘–hõ}1ZÈíIŸmž3:a©]ÖECÓqT鉨ÈqóÖ´\åVòTíµ²Ùûãk#øLmɛ㬥LÛúvŸwµ 縊Ñm&Ë´6dfæÂÓ#"d{”çn¾üä[/¹«Tj…•ƒ›b;4õFFs혶ÂÉÊ¿¾+qPà£à̓CžçÏhºlePôö8Þ7Ý'GÄû ; 1Ü+¨eË +Jò‹¹{]M·e¯Û—Ìç™6D¯^är¥;3Ž—J‚3loxAÏX½:æP¨lÁÚ°üp{ˆÖ‹úŒ*¾²Ÿ,Ñì.Ý!C®s†œãG˜×÷}yÉi^Ò­¿¯Ð +«Ì7¼€#Ó&8˜v²èŠnL­ó–¡iŽÈ#G/ÁúÉ­¦ç¸|1ÓB/ò •}1§íªT¡Ý& ÙôœŒì ŽióûëvE lá®§ï~½ñã«»­»ƒJù}žN/•2ûaEÌéÁžÁñç„Z6ïùeÒaÀ#Wô¹¢Ñ<4ï…8 _//»ÀézÈô¥>@æö—6°1ðy=lwQãÈ Ùûj÷ ^‚¢Äéñ¸Ëîã#c¬´<Àú²>K?üúî£3G²J¹’~²(-±(N¾÷Pl ®ÐmÚ MÚàÛ?éAKºrìïi@?E™1æ©°XHe™‰£kHuY»»ÙK†¹3Z‚¤£saú£Žú–s|þv +Iü¾\¼%´¢2–Kö%4ö¦ÿ ëî/k¾Æ_»rª)ÔÒÌÓ[ùùuœ ºÀê iGt\PêNÕv‘ 'oxf,oßÖ{5,¤œ+ÌÈ;¤“J:Äz– ‰Á‡Œ 7CvFh¡Næ•+áZË[.ß”ýTã·’GŒÐDÃò9—7ÆÄeêp‰ºäätµ•:ÝÄwsJDIMù7à¶ww22ãàa'¤ºM¦Ò̇f“›¤‰ÛJs¡îTõùþ‚¶:FüNJE*viM~S~CS~IQHÉ^ë-olä¯6Ÿè~-üÝ&h¦ YVj8mR´>"ÛŠI…5¦.6FD¯R_¬«:S3…ËITS™@ŽXØwqºÜ?îƒTK;,G:òW +© ¶À.òs +Ù£åéiiÚŒ´Ï b•âÿ¶ÓL„™ÓN±0x&Â- ¶jhöBÜ(ótÈnTdèDþ‰cÿe²ÚcÚªâpHsï… Ã¥±ë5÷º`Ô8@Ô±ñ7Ø@Á˜@(ŒÊ6ƒʳãB)•ò(,áRÚò2±ŽgÁÉc:ÌÑÊs”W£ ¢.!Ëérfâ¹<¢ÿÞä|ßùÝïü¾ïk ‡ôýCßR6sT-«`œ0Ôj9ÚÒØ×3JÍš£¼ع +z à9–Z”“Fç(s 2œ+ðïrcûORþ²¤„ F‹“#å X^#¯NŽÝS…§åE!çyU†xÎÚzz¤qx`©r +©Òmƒ8êÑê%KÈ¢+prX³ˆîá|¥¶:öYÑÊ‚›¿ÀçŽR”ô„oC¯Ç‡À À<¿BÀk^!ÃTœm xNá‡ßú`ñÉúð[Èeàñ\1ãÜWïÙÌæŒ­ƒïº~ø“Uð.xÕ÷/è =yŽA×ø©| Àu ºØ÷%k "®¦¡¦ž&7­ÆÛ–IjcÌïu(ˆ~Ç;÷#fÝ~^‰vdÊI¼·;ïx{³õá5£æ’ž®ç½]q%•’ïz;Ë{;Ll!ÈÍGMwfš›.¡0McW uéT´šw(@Abö²³A¬X¸n[7·iJéÜמ'šÏÅpQThl~j +#“gG„Jrwã¤ùqôJ Ï£„ævb¾szÃÒ«*h¡;l˜)3F/£à‹Á~ÐQì" Æ]Ä9”ðæ8®ÃáYnž#è–äDW—*×ý¶}öýöZ×ç@»£Jô¯ ‹ endstream endobj 34 0 obj <> endobj 33 0 obj [/ICCBased 51 0 R] endobj 51 0 obj <>stream +H‰œ–yTSwÇoÉž•°Ãc [€°5la‘QIBHØADED„ª•2ÖmtFOE.®c­Ö}êÒõ0êè8´׎8GNg¦Óïï÷9÷wïïÝß½÷ó '¥ªµÕ0 Ö ÏJŒÅb¤  + 2y­.-;!à’ÆK°ZÜ ü‹ž^i½"LÊÀ0ðÿ‰-×é @8(”µrœ;q®ª7èLöœy¥•&†Qëñq¶4±jž½ç|æ9ÚÄ +V³)gB£0ñiœWו8#©8wÕ©•õ8_Å٥ʨQãüÜ«QÊj@é&»A)/ÇÙgº>'K‚óÈtÕ;\ú” Ó¥$ÕºF½ZUnÀÜå˜(4TŒ%)ë«”ƒ0C&¯”阤Z£“i˜¿óœ8¦Úbx‘ƒE¡ÁÁBÑ;…ú¯›¿P¦ÞÎӓ̹žAü om?çW= +€x¯Íú·¶Ò-Œ¯Àòæ[›Ëû0ñ¾¾øÎ}ø¦y)7ta¾¾õõõ>j¥ÜÇTÐ7úŸ¿@ï¼ÏÇtÜ›ò`qÊ2™±Ê€™ê&¯®ª6ê±ZL®Ä„?â_øóyxg)Ë”z¥ÈçL­UáíÖ*ÔuµSkÿSeØO4?׸¸c¯¯Ø°.òò· åÒR´ ßÞô-•’2ð5ßáÞüÜÏ ú÷Sá>Ó£V­š‹“då`r£¾n~ÏôY &à+`œ;ÂA4ˆÉ 䀰ÈA9Ð=¨- t°lÃ`;»Á~pŒƒÁ ðGp| ®[`Lƒ‡`<¯ "A ˆ YA+äùCb(ЇR¡,¨*T2B-Ð +¨ꇆ¡Ðnè÷ÐQètº}MA ï —0Óal»Á¾°ŽSàx ¬‚kà&¸^Á£ð>ø0|>_ƒ'á‡ð,ÂG!"F$H:Rˆ”!z¤éF‘Qd?r 9‹\A&‘GÈ ”ˆrQ ¢áhš‹ÊÑ´íE‡Ñ]èaô4zBgÐ×Á–àE#H ‹*B=¡‹0HØIøˆp†p0MxJ$ùD1„˜D, V›‰½Ä­ÄÄãÄKÄ»ÄY‰dEò"EÒI2’ÔEÚBÚGúŒt™4MzN¦‘Èþär!YKî ’÷?%_&ß#¿¢°(®”0J:EAi¤ôQÆ(Ç()Ó”WT6U@ æP+¨íÔ!ê~êêmêæD ¥eÒÔ´å´!ÚïhŸÓ¦h/èº']B/¢éëèÒÓ¿¢?a0nŒhF!ÃÀXÇØÍ8ÅøšñÜŒkæc&5S˜µ™˜6»lö˜Iaº2c˜K™MÌAæ!æEæ#…寒°d¬VÖë(ëk–Íe‹Øél »—½‡}Ž}ŸCâ¸qâ9 +N'çÎ)Î].ÂuæJ¸rî +î÷ wšGä xR^¯‡÷[ÞoÆœchžgÞ`>bþ‰ù$á»ñ¥ü*~ÿ ÿ:ÿ¥…EŒ…ÒbÅ~‹ËÏ,m,£-•–Ý–,¯Y¾´Â¬â­*­6X[ݱF­=­3­ë­·YŸ±~dó ·‘ÛtÛ´¹i ÛzÚfÙ6Û~`{ÁvÖÎÞ.ÑNg·Åî”Ý#{¾}´}…ý€ý§ö¸‘j‡‡ÏþŠ™c1X6„Æfm“Ž;'_9 œr:œ8Ýq¦:‹ËœœO:ϸ8¸¤¹´¸ìu¹éJq»–»nv=ëúÌMà–ï¶ÊmÜí¾ÀR 4 ö +n»3Ü£ÜkÜGݯz=Ä•[=¾ô„=ƒ<Ë=GTB(É/ÙSòƒ,]6*›-•–¾W:#—È7Ë*¢ŠÊe¿ò^YDYÙ}U„j£êAyTù`ù#µD=¬þ¶"©b{ųÊôÊ+¬Ê¯: !kJ4Gµm¥ötµ}uCõ%—®K7YV³©fFŸ¢ßY Õ.©=bàá?SŒîƕƩºÈº‘ºçõyõ‡Ø Ú† žkï5%4ý¦m–7Ÿlqlio™Z³lG+ÔZÚz²Í¹­³mzyâò]íÔöÊö?uøuôw|¿"űN»ÎåwW&®ÜÛe֥ﺱ*|ÕöÕèjõê‰5k¶¬yÝ­èþ¢Ç¯g°ç‡^yïkEk‡Öþ¸®lÝD_pß¶õÄõÚõ×7DmØÕÏîoê¿»1mãál {àûMśΠnßLÝlÜ<9”úO¤[þ˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ +¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ ÷„óû endstream endobj 7 0 obj <> endobj 16 0 obj <> endobj 17 0 obj <>stream +%!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 24.0 %%AI8_CreatorVersion: 24.0.0 %%For: (Anton McConville) () %%Title: (stride.ai) %%CreationDate: 2020-05-13 8:35 AM %%Canvassize: 16383 %%BoundingBox: 74 -878 4687 0 %%HiResBoundingBox: 74 -878 4686.9189453125 0 %%DocumentProcessColors: Cyan Magenta Yellow Black %AI5_FileFormat 14.0 %AI12_BuildNumber: 332 %AI3_ColorUsage: Color %AI7_ImageSettings: 0 %%RGBProcessColor: 0 0 0 ([Registration]) %AI3_Cropmarks: 3935 -600 4735 0 %AI3_TemplateBox: 250.5 -250.5 250.5 -250.5 %AI3_TileBox: 3957 -588 4691 -12 %AI3_DocumentPreview: None %AI5_ArtSize: 14400 14400 %AI5_RulerUnits: 6 %AI9_ColorModel: 1 %AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 %AI5_TargetResolution: 800 %AI5_NumLayers: 1 %AI9_OpenToView: 3162.94186046512 -1.74418604651146 1.72 1784 1128 18 0 0 173 65 0 0 0 1 1 0 1 1 0 1 %AI5_OpenViewLayers: 7 %%PageOrigin:-150 -550 %AI7_GridSettings: 72 8 72 8 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142 %AI9_Flatten: 1 %AI12_CMSettings: 00.MS %%EndComments endstream endobj 18 0 obj <>stream +%AI24_ZStandard_Data(µ/ýX¯~#†D ,°Öl‚™ÙÔaˆB[L°P=s=¡dïý:Am)-"¥¥&‹ OJgÿÁ¹?ö ù % C`‚ LH{Ðà¨ð ÁÑ A7#:û%eq‰\º*ëTŸbF¤l+‰ÄÊ &˜@B"¤<¦µÃÕPGB‘HGƒ±°ã8Òµ¨k•PüX4‡1ŽÅA(8|Í*í¡· ófŠg¤©95u;<Ì…¡…Ò}ßﮟ™)CÞÓšJuÉ¢~î^™4ÏRΜ¬Ê@À‘ û¡ÀÉ;ÂÃóÐ#‚Ù· ‘êË4$3ÊÒ ë¼ÖÎNÏLuìÆCÎgÍáµ’+Ê’ˆX•W¾±±éÊ"²BòÓa]$ Æq\8pq],(¬8…)èH$’~̑賣lkàëñDMGµæŒª‰DãÌoàÁ¸…šï +²ñbás ›óPÔÇÇŽãhŒ‘Çуê{ŽÉ^q,( ‹:ªuCŠ…;ƒðÞ¸1Ùì…œcŽ9Ž£SSUþäaËÃÎSظåQK0²¦¡°TÆq›OtáI³*C°šŸ"¥';…H5Ó3³CêeZo, ó¥Uz!—Ço?¿KNë%búîÈÙ²½ê+CÚ[ {¾|¹Uò„oetH·_3®ÉhLf¥Q¢ca ZÌ¢q*NQ O¢ñÅ_‹;¸Àßêcñ…â 3º:KÔu+Žbá!âq œ¬g#çõ;þ_¼ñIPÂN|!QE)N1 ª<þDƒjÁ Ä#VQÿ]ñ«Ì"66½iÏ×´U†d-©ïlî)òH4†Ž£È†âH±@«1F1èP0ª²2Êh¢ Æ)ƒŽd–"bÒºzóâYçeÈ}Ï#³oƒiæ+’½GÛJxC›§‡|u­•gîZþ?ËUè¿fr]˜V0‹\"žª ÓM)ÖÅŠ´m©‰É¹4?¥GªÄdÜ2„Œ­ñÝåTˇV5sïžËúsö”vƒxËa™ƒ ‡âXŒÃîø‚qØq,ô˜y F¢aW(‹Z±`ÃfÔŠ£±ÐèB-ã°Ô8~àÕ4²QYÇß±p,#±à.ú8+š<®G£L iHÖE +ªQ¸‘hÇÄÃg5Žºs$¼GãHT–Ë] !ùø>ÎêèBƒq(ÒæHÔ@tÍ8Åå%Ý\ãHäTƒ” ×¢ +k-Ž ¡`f映À¢©ÏècIiN×;‰T†”/Í +Û´*ÇBâ(;ŽÆ¡¨bóò|ÔQâXØbwPPr‰Ð€ÃÃìty½l•fü2¤ª·¹iaæ\Ò±ÐéQæãŒÆÂád,ÔÂØQ+•ß;ztd¼â8¼¯(¼â``…ãX8ŒÅQvœñÈ'?S:ìŒy,­ãž`4Ž2æŒÆáØk5 …"1…C‘x"Š9Š'nJT‚O:’‘ Å-$²°>V8‘W ×HškXÖ8ni¶9Ò:=èX`,ŽÄÆ¡H]GÝ`,O<ϊf¡ sDeHÑì«e‰ãºgZ‰èêÎJ»^i½4ú«2ÏòWYS +Ê—!¯9b©ƒC8ÇÌ2äè†z·¾ƒS†ô(Ó(ó%ñ›*TB$?gHN_©eHæ –!glítE™çÖØtÉÞ2Ä<®³}\è–9&(lçÒ$sÄäÊŃ:f)$8he’˜ !Ò98À8ðH4O\hcÑ8¼pQCÑX( +…"qÅ‘¨°ÂŠS˜ÂHAÓx"pâ*A‰&Ž.0¾ø"‘ÇÛ^ý,RñÌ£²’² \$ «a†?ÐöÙl®…[¸†â—wF×…),a·fed´(E-Ç«£±8‰'uÁ`,‰'ÆP‰'ÞâfáhŒc¡8Ï}ÇBƒ¡H<±q ]hegô±˜£‡Õ\#/TUYY¹Œ••õzŠR”‚1¶PµZY™¥%ŒF¯®;;Ÿ/·8Æxáj—N(¼X8jh*p±PËÃLE2²1'¾xã …‰\T*Ž…‚A¹` ƱÀ ©ÈE2²‘ 9ïéuûÝÇçÿÄ_œñÆ>‰&(Q K\ Ldâ‰DB‘X$‰Fb!qŒ¢ +R”§°©¸"¡P( +†¢¡XPÌ¢ ZÔ—‹/ŒEc±°˜bãf ãHÆ †‚±`0 ÆcmP£Ö¸†ØÈÆ Æ,tnÁ ˜XP,, YL©ì¼ÀÅ Ì'‹2*;c>¡`C>~Ø‚YÑP,ǔʮqœ1ŸP Fc¡1=hÊΘ _8žP,…ãÇ8 Œ…Å‚bA±XH,|!pÁ ^¸[ ….,4ƒÑX47ÞÈ6°q kP£Fƒ±`(g$fãVÆ0ŒÅb¡X$¹À.na‹:º˜Å‚¢¡`(Š„âŠT â¦(E£XH4ŒÄ"¡H(‰Ä™ÀÄ%,Q‰&&±ðÆWüÏûw{ý Ï²‘ŒTd"Ÿ˜ÎKKÊæä2p +<&" ‹ƒ fxa…N8>›ÉõøX8Æ-nq‰ûáùìêêz Ö0†-,a KC;3+«5ŠQŠRÔ+ ËeU ‡‚¦…2Þ´v‘V*ª©…cA J JP>‘ð¬¨e4Ž…"Ñì{´ëkYé ÒÂ,Ì´Á†bGb£ø''çÆ¹ÃæjªSŠÄ‘“ÉFFWC m”QFmô`0º¨b¡h"Ñ÷‰‡ë^ÏŠ:m,̱0aLƒ1‹QÌB‘8zn޳¢Îq€#Bñ ±ÎÁ#‚‚ )9(¸àÁaä¡!‚ˆ€T@á¡Á!CDÄ-@"<4\Ã0!ÂCƒù 0|€$ÂCˆ 0€X4Pp¨@ÑáÁÁ‚P`@(4<0H…D0<0H@@HhÁCƒ #p ¡!ƒ  ¡à‚   P€ÐD€Dh8C €àà Aâ!‚A (L0$@p Á  &8Lð€ƒ> (@" (8Dh + +2p`( *@!"B¡@DÈ&TˆPP`ÀC"(P` ÀaÁÃ2¨‘€‡ *HÀ‘Ž (<8DHàÎÁ ÀÀxààhA ƈ4\ðÐp ¬D(Hh`8È—”""ƒ àK$0@pˆÀáàÞƒ0\ЀAàà€À@"‚ƒ†4DxÀÁD 8p˜0¡Aˆ°€",`Ž, ÑH4Ž *@|€BDC <ðÐ!„CDC$x ‚ 8Xàà€ˆ¨Ð`ˆ°@&hˆà0‡<ƒ˜Àá¡ÁÁÑá DÂA† &8˜à0! (XÐ  $8T¸àÁ!B‚ $0@p¸B  ” ÁÁ "<@8P˜ÐPA$T€0ƒ0h° BD <4˜ Âƒ*HÈàøÀ "à ‘p`AC +ÅA"0hˆÀAÁ…\àa‚ 8ˆÐÑáà˜ Á0ˆh¸ÀÁ2`ˆ¸€!‚!$H¨à 4LppÁƒƒ„ˆ +Pxh€à ¡!₆".¸€!BG… +@@@@@88 ” A‚T€áÁƒ 88"à !‚ +pÐ@¡†† "4@X8¸àÁ!"á`‚Ćˆ‡ I% #`ˆ¸ÀO$\ðà0¡D8x82¨@¡@H€ˆÀƒÃ Š Ž 0Àbá¡Ñ ÁA”™,P(P`°@Ö¼úÐÛÉ’„0‚CDà]È\ PÁƒÃh¸€A H‚‡ <4džIa–$µÄKK‰­†¥ Ô³³öBn]¢ DàÁ'D4˜€ÁT€@R¨ bBÃ(4\ÁP2HX(©@BCˆ|‰‡I(8be–±lÎî^³´}Š RÏ/³©ž ZÑç«R¯9fÛì<*Vº#¦ÝìEô³MZ},UAò”=ñªÝoûøæñŽˆå¼–kËÚ‹k Óz²·ør”d;§d?rˉþÉÞ/Sï‹>£™%—±^iÈ\K›³|«MQ­‰¦«:Ñhª»¤£:3œüýieÉöµº2D¾©•™–¿¼I?_×cX¬Êî:–3U.7=»B7N–ÿò&cÁ©ûº4ê³\èç³åÔS¾ì—:¥ªid:cuÊG»[±lö ¿(« +]µF¥DùWÙ©7ň irưˆ’±žEèŸïˆ&ɰÐègcuø*™ï΢+§ÐÐ$¡åÐo;»ÒùU²’F䣢DYj;Cÿ¦²$]ÕŠ>–«¾a_­,#×Åz=Wb+<û˜­BÕ ±] Ö“¾"jgòzϱ—[N}%’Ð8çÛÍd•‹Œìz¹ã»§é[SIÕ\¿§/ÈhðÙt©•n[,O~]±•>O.Ó³»´4TZ%¯ ¶­+û9o©*IߠݪQ³|È:é+¡H¥J–Têøl·Ú•–z·™)ô"MïÁü×g¨½óö$³’M³ñû¬òÜíjå^3Vo¯¡D´MÉ̆è';Ùó—åˆðEeŸK#ºz^Yý^ˆö#Ìâ¡–*Õä!U"Úý»x¨pÓžè)5„ÕÚçê^gS,KvSw§¢cqŠõý|+…­9´ž1ñ~'œ)ãÞ¶Çwö©"©-·¾æå×™…¬†XS*XµÚËËjW×ÙeŽïD–¥°‰5¶»g°›Tw^,[mݧãrÙ»Õ©8;&¬;¶T–®æîÆfõ¬Í_y/¢‹¹4XÍ{Y±œÛ{%žÝ»» +±µ»¹4k£{εd¶÷V§ôýÕ´÷ú®Ôk»‹ªø½CÿöÖMÉ·Š­¹×íâ·3—ƒŸy•km ÁƒWdºkÕ¯ìbFû˜êsÆ7ééK´Ó/;•R¢½Tin R‘\½{–DBç }*¹çézb³Üˆ ÍŒ§ õ(ËŸIŽSšz)C»\z–Mœ³ò4›B'™I¥ºÕ;©ë>u|«éœ&óÖ‚xW¢Ë¤&µØK¾pJL·%•9m˜¾Á"m+Å,ó=_V{¯RXçÌø^ƒú ~Z+n-‰.M.»ûFMóÓ7º,D=º[úÕÖYï>xWûšëN9W*›h¯£laÙ½œSš=Z9ì- ñЈÇô¼¾cU>ëØo‰ŠU+§”Zü`{Tò8éÒ— &ÞVæ®*ô¶²Ü­ŠOé,þm®Ð±¨Ô“^êöŽ ?YWfê¢#ÂgV–OKùôk‰…¨§BTBCXštÿòWJýLÕà›fÛºÖ=åÚçÑÊX2Þ'ßåíÝ,Ó¤*EÅYÚ¨'*Gu)}^9ê~ÐSy£;¿/VY©–U>–½˜mªùe3…¬tÓÂã•Êü¤¢RkbÞ•_tTÌšTWЊÖrWʫĻ=/6ݧÐÏW +Bº5–E;¡ïÔ©R,9´K9ÚäÂ’¼· MV9#¦{ž¡]Yï&£Bo{¿K*E(-‰ð5Åòš´´Kž0 ±ù¾÷)ž’sÍ=g^ü>ñ²Ü¯¶Â—nm9/‘eñE¶Òz!TœßÇB®éwÞ1û1Ê{kªœk«¡£D¼£KÊW\Ô)þаXkx%Ý9é•®îiùRY‚FUzò&VュЫ“…Nj(ñöÃÄ’/¹;!:4Ú ©‡H^ó ï¬ËL‰ÉJS«WÞui›A,ÍNÉ!B™ˆ÷Ët;e™!½öl‰óxs÷’+z­ãtéNcUž%TgG˜nÖîW¬Ò,á³Ø–àoîîuj1–ôõO½3•°Ê]‚I“é».}멌oªÎÇ,ªªË»—Ãö&}GçË ÕK¹$mÊrYÉåãÓùF$<—+,"ôÏ Ë‰ª +«ðæê×± +]ÉÙ™ +Y‚Cã¼[a–²ýG«¼×1‹¹/'ž]b²KÚtUäCe¾zZîšµì^[–É’œx=•‘›¹rGêèµýüêáËMò·Lû Z¡!b„Íbç~fTð%–9ÅxÙü «îHxŲԱ ¿)'ÇgAù_‹Ÿr‹µ½TåzhsƒG¶¬ƒ·Ì–l RM¹óÝæª¼$Hm}I$x8e 4'Ï>Ù+VêõÎÞD—ë®gǶK¤¦Å’ õhv+»WΕ&A¼™ýn°¼DzËâ#6¡ÕÞIŸIÚ‘LV¬¦7FvÌ|A"Ò{}DöK¼’D¤–ž¡Ú) ý“ eUíÕR¡"RW.tÒ¤ºâ“,+&º¢r'5y›ý¨/9TìÄiC¶#Ú •ž¤Óíiž‚Cï”&iÙLÚm”冈á©Ü„ªgiïÝ"T¦Ò#ô¤;»¹\éf¦Øº±+ûÙ­‘eÃãqìèËÿÊˆŽ™ž2w»ÌÚTÍÊb)„Ê#tùó3ßì–±j•ZKÔ1ßð¬•ÔtŠe9 %¹BÄò‹Y¥¬O—ËgR–|ŽÑ„¿º%§¤hé¹ó¸%¿ìÙ¢óëä‚UB§zÜ2´C¿ÊV’JšEøKªòéI ïçË‹GhÚ4*¯Ö†e£•PÓ¥L¨tTŸ*«Ô•8©ÊØn‘P[#¿îXÒð¥~ÎØ‰S3u4~ž?¿:§2@(¹LÄâÁƒÃLX@DâA„ + 4LàÁ„XàAƒÃxÐà°àf¥¤FT‚™mÈZ47 ÝV—«!Ò ï+nÌy1$6'¾O£+Ø2:¶’¼ùM•lQ–K±oå Ô›µº]!«žø*䳪V=‡j‚vGõlÞ“SÆà‘¼åPjY’aÁƒBuSð¦K©Hå¹ ’;¬ÃšŠd•%öäR9*b¼ÌgŽË[DUœ¤”Um‹¼^,ÉYbÑwé©é•4éO‡FØÄbSúôéUI$’w3)v¦êE¥¼´b$Yfsu3µàaUIßY¯É*dD|ƒÅL\'ûL³\y‹ŠÜZYZ•.g$é +ǬˆÔW²È¯l[q)«–+ò¿¼ž…Vƈœ¹”È3Û×ÿ2†%׬\\7‡eJª®»í*XDêEWŒ ÕùúäMÉ"âìµ´äØ7ˬCdyuJ¿ÔA³¼R’öì[NîÅ£úU_l•+IßT¯×ŠM„& Ë™ìï«~ˆWjåŠXV•É*ÕÑoù1´+6bx“Õ“Þ2΢‚Fhèªê>ÊR&B­4Ò´2ª›Ï +šH5‹¹u¨îlËmS./Bd÷Ö3¯ÊMTäigëgƒå&rkÁbzêfXŰtUHÑÚ_™$’§+I$çTˆØâ"–…7Ý…SNd*eÄ\D:Yµ8‰8Ë ÍXÒ‹d¥’Èç\èÈ©=Ò‘\å’48 ¬·Ü‘K+Ò‰²J&«_ðÈ/[¦Ú¥'ò¹Ë”_FO#•¿8UòÈÝ‘•~®)m1d€\¢oò†øÛ<&º9»¤:ÌKªÎ=hpD€Aê>hpTÀƒ‡480<8„ƒâÁƒ$@$@@(>hpT@LÁàÀ ‘pð Áñð Áá8€íÒjð<øšk{‰¥ÌrðZ¹>ç÷{ͳ!e)ÊÞ Yçg?éèÇj1šBûÍ»´ÊTky‡vi‹µ¹Dû†h¥5Ø<¬MÙ•°6eã¡ÒšýVb™¹!»Ó¦L]‘%Q™ÇÐ'2!‘©Ft²fÙû£Dº!+×"ë³ÎW»'©ú²¢'}»+C,ÙiØ²Ž½HÏÎ̹du d„hhÃ{º$ÙŒjU°¨‡¾)Ãôm +KÑûªS±_YG¿îŠ·¢Wk–³Þ¡OhV’®Côœœ¬š¬—O.çÜ`ÕLÖþÊ]’ìXÏžKöŽu†c4ªûH/¤œC¢Ã²DjâÕíÈÅZ¹¬x¬O©bU•ÉÞÃ;•eA*G­ v&m+›¹WŒ´ã[ŒY‘*_yÉkã‚6%K:5›‚&sít2·-h®á•¹¶‚%=³²^]Á–¹Ô~'ßLNË,H—5òÇÆ’öb"†S­³RtæÙÊÙŸ_UÙî5Ãò)³Ô^ÉVª® ™yªG4YÈÊðþѽøòÖ«3ŸSn •j9«îØ3–ýäbÁ²RI(¬*ß*¯`©T’¬9Êϱ*Éùs„«åHü¬iO³HD¥ ‚vq´2B*·•Äû“Ê!1òq’ʵ’ã]^Ï\o}S®ì…™ç«•"UâÝ™M6¯fizž² )š&ÓÆTÞzüÌg9š"ôAAÃРðÐ!¢A0p`ÌA€p@ƒ0PpˆÐ0@L€Â.phP¡mÎ/r•¬ *ð±ðàÁá `‚†<˜ÐàÄâŒ$@,PxX€r Á$8T€¡aÈYðºâ$¬Kÿ Á³àï›v>FxÌRùt¦4‘¬P[,]õrYWóWìNåîAƒBV§à}ŠÊÔK§Xµ¸ÊÏâ¾è‚H.Ye¨%—¼c`SÐõ§ Ow—N1 Û+ä:/±5X(Ó©$f)š3sѪÊ2t,Ÿ™ºbT®2ýâ´+¿b&»…°0 žJmŸT©48 ëÊ$–&Ê)ó’ÓÚ7Õx +c.ž¢{3ü¾Ì]ކnYI›¦ü¦Ôµ¤Í‹"–³+h'¿üˆn圔UË`Ka!•¦Í¹TNq–æ¥q(WT† à–¢W%¶°\åÊn§gð‡·’v–wÖ‹³G3æ{=¯Ú¥ Lﮫ×}½ßÞ÷Þ]™j¡ï˜HE3÷ÇæïXÊbʺæ=Ñ\BzŒ^ÄôëºeUc“öe&ù½¼ûo1¤N"bZ§„Ù¤¥5K©\v¯’ž*{ ½hå.ÛÑO/Lº§ÑBb­LQ¹-šS]±"c‹ÝMúÜù­¥ÒÌ +A@¢Ê,yþ¯æl·š)sò»Mu,sx¥'•è9¢jê˜c¼‚VwŸ*IDÊŒ.’ùj|—)%aɹړÒJËT9…0ó?Hv2²òM%%¥)/ïìíSÖR³¼£º/_NçvËÒ!3Ë¢ÖËA0¼_»M‡6‰%‰-ׯÉ,µÙ݇ü"¶Ìù>œ’Vcw÷^š­RñŽ:Fõ)=ê³Ôe™y'ÞÐŒŽ¦ÌYeþm™?2š¥¹e¤;^¾øV×+ÁýÍnsX°tvD¤âRžÝEf÷«Ö$ÙživO–Yzõ«ëÙ-Ç‚äžyÆ.)ðng™Œ÷£ñ¥i;žºñz×™ìÝͦ´çÙ!Míâ\™2Ë®LRi+_HçñÝïЙxèþh—I‰äk¡ÝkeOI2šä¼•ª<×î΢üßSózí«÷z­þWf¢3³²Y²?³çIÖ>&>¥eá!¶Eô͚ŻÑHvsï„T:ÚੜÅ5K³¡ó3“T'IÖfŽ5·ß–ݼSßÜpðÐ5¯Ëâãí¦…Üf~ŠUî/¾<‘Ò4sõ!êN=ú‘Ô!•îLê‘ØùZê.é±íU¯§êÑa–­’|>®{ëºß3Iaþê*ÉWÙ¹"fŽñÞ›×H.:k‹ê²Wg–xv‡%JKDºS¶ý™Us~ésÏ!¼Û_¥yÿÛ¼?É?×)¢ßðõß›´!ÖS6×í+Y¢ýšFï™Ü6úõjûéw¤›ª2î™\ëúaý]6.>;ýjË1ádÉ’—å0ϦØæd]Å*™-ï!‚¾k*K‹Èõ-Us>Öµd_°ôRQgª’Ïl$ÌJ,Ÿ+šüô* æÉÒThÄ'¥OV³4–ÿ²jìû—IGT¨]ŸùCW“V²ö¬izqÝDV\±ÞA¤4¤,…uiªb•ØFU|uò®Ív-kNYÐc¿¨lìÓ”Æ~ÝTïçç˜Í*ël†Õ¢WÉ´ÍlU6+sH>¢YAkæmÊ6´›r^^uÊF%¯ä<9%ØÖ#ä^é­Ì)·ª•Á[ѯuUê¢úåL•׋´ˆ}‘t±¿ºúKúÕ½ïÂ+æ;zÉ?[ØÉø¬¡¾Šà –õ2© 1³¼óžÖ 9“¬dæ/σǼ»•Ñ„–“ì&o.Én’ìžY…Ên’¨ìNY,“Däʰì&ËÊY‰ˆy7Ul¶¸äΕXb",¼ÂK×0k\Î Óv&• uƈã•»–Z]¦ä™xäS«%ÍÎwÍ-"ó®eH¡™Ð®]r†Ef«í†ÌµœWŽËVU>»rÄ®ÆU'ä©‘;'ÛÆÊ˜_æ±)Iç•Ùg»ªR„ZÍó­¦Wd¬YæyJ‘s‘êŸ3‰ùðuäªyI>¯ìRš´‹`Ú&oŽ~™_LðÐòÞ!¿NÚ¤tšôëf¹<êùÒÊÒÆf±Xb±Íf«ÖüUÚ kÅÓVLÎû˜§òöcN#^! ݱwÓ-ø:—&ѬDVhe=,c õ¨l(©xßGHUSüôþÙµÛõejjVnyŠoÕQíSë¸gu­e-]*öNâ”éOfce©)ÒØUQMi:k«¦øÊº)*ƒ~å”ü*æŸD†‰ç›]-6vµûc'}ÕÐÇ.ORõì¯j¦Æe¶_VU9#Êê\ ïq^Ý?6k©«b¿Oöˆìì/äW‘ÉŠnwY:D5‡UŸ1—¤2㺌-«ÈÅÏ~æ*¦%±¹Ê’Õ«êGv)“É­±ªK&±SOðixeö—y §úË+ÇD¾ªM̬{s*+'I’™aÝek'VVaš]Îm,ëõd±¬¬²ye•¹²î¾§ÊAL+e*„v.wh‚åFs,ûQi;áå9ÉÑüWsÓŽ«Î:®ºü$å¯ò~U—×¢_Õ]bѼ£U‡ª”Ñädu–r}Š ëeßÓ”3E–ôÚ±ìÅ7;Uwæ«"Ë1«Ë±³š“ÊcŽYÇÞtÕhECìnÆìH¦*sb9:¢¢ó”Rë¿öLÈY¼«4â ^ùP!“ËËÉ»!Ê´Q«ø¡)í“Fµ}ЗÄC4.U ­fOа5šeZΞ %:ÏG‰%p:¶¶<ͨ¨Tö„®†Î%ÛÎ·KžË;ÛØV,8¶}¯ýIÂ#• ÎÏÖ¹Â=Óú+4IwÅXY<…ïØÅÓ3¬*ÝÙf4Ÿ¬à{«â§M4ÝÍ” srèÊ´†–Ó¬ÌZÚÊ6vDD™ÔWr ‘Ê”ŠÄ0¨BB¡¹àÁ!‚ +êWk©à¦G9•ž§`Qùå¡%™Çf7Á»±BDʼnWUê†WTVD.;·ËNsSŠ(+]t.#›•~äö ]Úém3Åoe¡³±îÈæ•;g¡§ˆò0¯ÖVMü4¹&‡è$[‘0ïÕ~ +/m¤•ö»íf½<³•:r—DãÏ•<Ÿmì#ÛøÊS&ˆ½±)í¦Sf¼ñå«\ͬ?ó,s7WM"‰gY\Ħ—W„˜æÃAWÒÁ¬ažUåKÑgEÛó=ñe–Geé)VXcEêæSVsu5VEuO²©+–ùB”/DäiTu–u–­¤z±Ä‚sr–œ^æâöÜïæÜ«R"‡e†Š™éȯВlÆ©m[’H!eÙ(_Ñg5:Ïì¦`ᙕH}¯XiÐ>du;&]™9D³É[þÅ*Ö×f^ZùŽïY•¼µù*ELuW)rùk¯þ+æ¡RoÛ³½²B,E +ïöœwT²ƒÿ ç~÷χJåëÊJIJ›ì AJŸýrJÇX;rêTa1Bˆƒ—ÅŠ‘Úà”ÁN9ÒqöúbÄT_ŠÐËõef)Ò+F#†MÛaf+qV[Òfž<›pÚšëà¯N/#1Ý4÷ ÎÔÜWM*D÷Í)Ógå0Íåͺª.d¤ÆtÖ©!D;ZÚéÐŽ¥#ÅJ›ˆ¥gV^XÒHñs³’h„>·K¤£ÖÒ°$¶iC<³²lŽÑeÞHž±è>Ø+™ô‘%R¹‘»±¢Ël‹.³7òšõeT†—Åì^Ʋ:c÷ºœBÙJL$¤Ëº°wãü0[Z-­ÊÕ^½­+¬í¢rä»ÃR›U~Ö•ðÎòÚ¸æßùÌ3a{r’òÚR)¯Ÿ%§ˆÍe†ÐÈÐr¨Î6Eû½.×ÝÏnâÏ-^± –•6Çg8CDwV:WÉŠòfJU6K9)‘°Nc,5uŲ¬*ëØ µVõ›¼R®+¾z2«úÌtÏwšÓ &,ÕÖYèªÍ–> ÍåVÉ^ ñI¶l™]å ù—cO¹éeVJtÍÑ|h +«°>¶QWºÊ´Ð®„/ºŠÜ¶LÍ>DXÆ +Ù%ÂÛäËçò-Râå•aO‡u›SA£,ϯ0g*²;k©­°ƒV»úýt¡ás²®î&–ë©ù_a ÖÕË•åŽþ×Õ{šö†²V¬Û³šX¾<âøŠ¦3^= ©X½ÒVo&Mn©lÕ¬)vRµòÕúR¶Êž¹äM–:¡+yT·«#É~^¯eëïß_öd)ü k¬¨$’r1ójÈnª·(ɧyd5Ø,F…„ìvH6'3y†Nvô+u²¼])$,Gv3eGä¡WˆçÌng——êåî²":±WIìe1BÛ•s˜ˆ7&Ú>d¾6gmSrvlmxÊ´"Ë>"gM§ì^|¡Y–îÓ»VÝZhŒãç:–<©C|Úü Ÿ'-²´§½0§Ðü¤ê} ‘*¬šÙÌT©Ã±•j]Mœ»—HáÓN…&‹ö¡’šëÞž¿ä\§³ÃqïíPù`žJÿ—°œÌ5¬3,#ª{Mò˜ïšfÇõ­üI„­CC›â3ÉÅê±µŠOŸJí3Tüø/ÕK´Ó!¦­¿ËÁ§ ¨”î e²HRc !…ˆH€ã€ @4 …ÂAá˜à>€³œF\0‘‚‹5¨1@„ tx ÝhòZ¶:S T^Œl¨Õ€e¾µ‹6h&MÈt6¢¶¥2µzo"§6~x¥à•ix€“ƒ‘=ƒŸÔŵ÷µÈkÀæÈG +Á#m½3ðêÏ”îG4» Š{ /(Å¥íôˆ¦rtnÇ…¨yJƒhàÊr^ǯ¡™0¯çqq8z¿ì T%{P™J{oqK¦}zº*f¡ˆ·P,o`ÝŽØE§—¼šX/K`¿0’ƈàP{ùb­ýž'Ÿýu~¡Ê¨°¶ÆÄ¸zÍ[`jü4gÓq× £•DE¹³ææÝ O<›eƒH:hE›ÅÄDC^™>>ÁõàWQØ”ñ±4m¤mkáˆHµÊ%y ¡êv^ËU-Ÿª ¢'×—ø%§ +f¤H@‹[Båi t²É¤KÅfæ; ÌZÖMÁ§öeÃÂäÌùDðDPô" M¤më„gødLyÎPç"^i/èc<+jDã;EVIbéêÜ%9žðw-5l’¿Ô¨Ž¸¸ò¦öDYÈð51“h ×¢ét g2D¿ÜŸT¼¯ ROªgO«Ý4¯¦¢ybø9A»Øó¤lô"˜çË…ËOïæ1EñÃÙ€¢Í»hGèÅt}\6YµF¿<~ϧ áýmgxm|ø‘²òŸÛ¥JÚÆywp•`Êfó¹yxMR1åh”~[0é4`p¹ˆ·ûŠ¢üC­Ñ´ž\C *-™A°d»nÔ$Á|‹ …YïqyÌاš +û!üŒ¡˜_ P¾±éx!ã+¾¡þÜ“EiAÑ'v@Ð_2”–¦Nj…¯ 4:ûgø,Ðy}`à«O®wçˆ5^eJ€u¾—Ö˜kèüÃ켂µ--ÕVÑ‹ÊV*óîœÿ㞟Y®4X–Ý~z¬lHÿÂ!_ƒ3æÏØž%ßçD–JÀšç Œä$ç뇜rÑ\6Žÿ]‰iX†´÷On7 –[Ù$wœ?-FV²Òͱ¾bvþwü¢û8O;ü ¥üÎ?Ù‡[œÝY‘`¤Çgsy< óf¦ùáQÖ{üÄ[þ)ñÃô +R%AËTÏÈ|Ó"î!ã_=ÆÈ'5‚M¼k-Øo°`ÉædLïûXRž,ËǦLX˜Ð™ôaEÀ¿ÌÙÙÓCq¿´ºž¼2¬LŠš„å.nøè­‰©þSžKk?dÅAQÊ~`7èIÈ”Vh4v€¤nžŸÏh +ñQЭàÏ*wði&Ocž±œZ£Ï²e³vKxÍ׫¤g÷ô°%Óùø9qEóvr싈:^bŽòDhÂ,sêûÔ£è‘#$ Bó‰ßVÒ ö®Î:+½æ)ÛÂ.Xâ–꼄M€œú 5W ÖÇРÓUÙÈòÈË€›þ¹ÌUàé¾0e2{êt›à§›5Ö£CBÄWOÑnÕ®7¤ôÈDuej“$SE(5I`ŸÐLVX餶6°[i=rØ2RÍŒ|l &ð†"Ú:u…w¶Öž‰´ž/]Oð­Ë¡0"µ ~ÅZõ°ƒÝÄXHŸ†s\®HTÓIAY?úç5VK!©Nr ‰üIÖm}êz…šøvÅË&FÁòÖv‘Û/—ƒ$~˜A;R0ÆohýAe­eþRï@í`Ýç–ÔÇ@Ûæhv€ØM ^?'N¬ Ï×#:Ì2#ÂᢙLçç€5öÕÒz¾ºy@Qš ¤Än^hvÊÍ›f2I¥áº2vCy}”ü¡IžM­<)–yä%Õp«§êGf&bˆûPåtÍÃM0sXàØþÒ¾ÎxSf: ájûå?S+» 7ÅÆ_©IepPvŒîàí¿,ÊßCÍzÚýàÛ 8£ÑvX[ g÷ƒÙ’޹ªÝ6Çý협äFDJ]¦t‡#ÊW& ÙQÜ!öy ) +J8þ–~¹g.³« Aëlà¤k;®R4_lIäûû5ÙȯĹ>IEãn]Å··ÀÞ*‰‚m˜¡'t)’ÇÂß.ƒ{á›õ> +”𦗼O‘Ï|#Æò.¯ 2z cÖlޱೞƒ¯Îþä‚P½±ØµµKcýk˜*7 çT€ $²c÷h6¾?¬UkÂggc^PՉХ7â.éz7¥Þß“Aº—í|d/µË[Hu'G¾±à{¯%‡&" ?; -ñ¤ùö +˜+¤æûî&Ê_€w|Ž<µ »|ê1Šõ´*Fßý"· Øf2ˆõ††½¢9lç.ŠU¼:š”¥œm@‚„ÜûõLÕCŸÏ­%X…™Ú¯¬•ßô-Tà§Q±^À— ™UçZÛP*™|8–õmXÓm}‰;+ fiÈSW_í6ŒáÝvl°×è¦bge„1c]',À€µIAæÐþeþ?„†1Ƥ©5ÿ½*PV$¹‰†¨Œhš4ú«´@¨hñ á`_æÐ׿E&Þô­rÎ$À¡’Oœ§n,–| 5dg~ŽI¦ ÏÄëJZŠI2« <_Úʈĭ¬«ö*Ÿ09œap¤¬I±`Õyü7¬»@áqáÏ5³¦>Èja ã›×=mEÓÑJl;€,N¥@ì`£0Èu‰.á±oŸÝÊÒµ€õäÎQoW5ï(~!Û¹hãoJÅ=m0Ë~LìâÖ^ê˜?8µcgS-·é^Ð+Ä(fwkh˜¬üý˜_Ù%»¡¯vîls´#s ê¶WWË;'$GK²Sˆ²ßVP4<‹…Ÿê#ê9íµKÄ̃o•‚–maxÀyqØþ`œ‹YI`QÂ|!öüUÖ)È4PeH?GÆ"¿ éÑ>¹ÜƒŸ`f½Ì)1$CZnns­TöÌ$Go=êÃñÆ®þðX¡–ÙE²nykU°r‰$á™ «>, (ˆgºç÷hœ<¾ÅH|ä~¦0Žçê©BLãÍ]Díé›û-ÖHÔ|ôâ§°A³ÿtðï9=Ö‡Yt[`>-?ê9¦zODü8rÓU=^\á›û2êÞ=Û—ÿ}©šm$NÓ‡´vSn7¬Î!Ç€¨Òe&ò!æ?ºÒzq:;¼ioxæÒ•µ«<ë×±¶#ˆ¢EÆ„2ƒ×7ŒåÌ U͇@ïÃø¹… +¾‰D鸋Ä$1owC“8(Úǧð2CãÛI±8ÿ+‰‹ËF\7*‚r·}$»7¶ÝTŠíÆf6Pí:ì‘ö#<)¦’jò‹1Ô}áÕãQÏsb_NE”î÷¶[³W@˜­¦4Ç–!ÎOê¤~Û`ñJ¹JÓ&é: ^‰+o†ÞèyÑS«WV·ÿÿ¸k_®Ë;d@Úݱ7m¢mË£—š]¼Cx¨ž¥X+Ã{Ó“Vô¾|ojŒuL&Ï_?Õ³dˆ¶&Ö"øJEˆnÇŽÃǼ­Õï\´ m=Ï·Þ%X=O=·MøÜR+DòÞQ¡FUŒD³þé2gÏ_¦°/(3¼ñ¤“/¥²ÿO†y +Mz¨ÔSbn}u?)Œ‡…·íR°òßÖ=&íE ?µeæ|š}‡7™Kòë•D~ñ8Oy¦Ìyæ‰'(Çh$n¸"O”5U>íÇp¦Í-$[Þ™[ž„=b’è&{5OBw*^v’v áÊ R-ÞL«ïä±¹‡M?øçâžAÔ?Ø+í¯ìþ… ¼Ráø«¤4ñ`ñPû8 RT¤ýæ«úu°`¼®9¶û7¹Ímt¼¤S²Y×äÝJ|ú°9£)¢©Úiî"€ˆŒ_ùGîÂJˆ +"p6Ã?&ˆ/jù ê*Š*X²WakrCeªŽ +¬‰ ZÞ ‰M\¡E,nŽ@]¼½j{ð`+B? r +@íM"Ñ–‘;½f æ8A|ì5žjl“í/\¶|§ê# ¤Äûˆ„á8”FØæáò„L0s~ÞMó„(ãzŒÉìn&æÿÈd8åø!È õ™IˆÄöoð" T`ÑäÑ‹å¾0õñq1ð`„€îÕ›@4PI¢Q=±Ô;í²†®þÇ[çX3Wß”Ll¶™pzüA*ÞJ¹O˜Á=%&/\iø Ùýì ˆã>)ÀJ,ÒœŠB®žP8EهȤ‘ô*؇GG<¦³â*Ï´|EÚxüÈ6ö8ÅÒ†æRÖrD™†¬‹Ñ1]jôt£M/a8GÌ + ÅÑ•›ÕCFx\#ÖßÃ[LN7V¨:5íœÓkªéãÚÑ=F +`ékà|èò©ôÚðñáòÒÂí…ó(NRAjAm¶Ùw÷qÉ’… éâ•«Ð\¸=܈®@²Þ”ûlzÐï™z¬ïùé·P¶Ç?\ýu/.7ˆr0Vû; ­ìs]®4i/_®§9«F®Ù4fÑË16õpO¯ÔhmÖ(ä"W8õf¸ö‰pÖ­Ç/d© ¡Q©T›»½Ób ÆòoÊ<( g$ÝFí]ìãùÖºQ‡]ÞY,åþ@f«å:ÿ£íའú Pª:¤Ö'’¿˜V‚p^…BºœV€ ‹ËZâÍiªëíôˆ„Óm_@ŸÛÌÆ¥cjA(¥Ô oŒ=}L'è—«ê­ñkâ)*QxÔ›þ»»k±+î%9¦ÒœS²Dö™bSržvó)›suðhº¤ + ˜Æ L›IÒ4¶æw[™Ðð?½¦{‘¸?Èë­¿2,SrfÎýUü&­¶„5`#=‹%v°¬¶¬gÇì!Ì4F®Kê«b5}¿ÜˆŠpelªÅGɵQüéè¼²{£g2@dÖ°Ñ'-ǬŒ øõ ?ûye +Gt±Ähñ(0¦6ûÂuÒ•~ÄÃi‹#?Bsú~ÄA6®<¼–¢B°²ÄÜ5ocg|9Ô 5DëXÕƒ#°b‚œua}ªqq‡ÐÅTôÑ-RúÄY*E·¨úƒ•Åž\/OšA$¢)®WØq}ùñÝ”×jÞmÞä4ð·ŒèÍïÔ5/$Oe?+´G$‹æ+gêçYÖÁá7*Lô»ó.¿fßâ•ü·²÷t¯LXmQ +ôÛOEEU]÷“ò)Ýn³ÛBô­-ï–“õ˜\ —̡;=^Æl¬Hê_»Š<˜n¯].•JÅüs«Be¿òR@û¿öÊ4uÎ/ûîAwÓŽF5^?ì™™µ~=î‰D CN4ÛJ±–GÀ•:)æÒòœ ñ2°ñ2S'éXåðÛ‹¤¥ §&c²×b?sW3‚o2§Í¦É– +f@Ý忏àƒÿ +ó€ôŠäUGª9bí½ëÝQ_—åg¨Œî¯Ÿ—ô=V³JÑLEí9†ó©ZZ&Ê#ïdž¥cç1ÂîåI1pãÅ“p)‚¤ÜŒþŠÙ=‘‡¥ª›Šƒ• +ÛKyÊT™U é ãOœ¾Ý„Ç®%7K¬~b%tQ‚´ÊóEh{_qržÓ1Àg/ftÎDz–Ÿ®afƒ¡…­þ³Hþbe­N•x<…D¥Ê—j ³Òî×ãZò¾ùæÔC"'ºÀ¨,i#@+¢¸{qãôW*öJÞ4;œ&ƒd€Lâ @¢¹ïè( Üw“½[³D ÓÀ¦ÜH'«ÏOç@¬2ð + ÄVOÂò-(ÀÞh…ËL¥8Yjxᇜ³@£H¡yë’Þ†V[7ÐÀ̳ӦpN~Ê!¼±\—e3–PÙ[ú‡O•c2µÈd¹&+ D’ðfYÄ眢px¢+8X-³§#±o©õù)ëÉ­¸J„ ܦ´ý4Õð/‡UP“­z‘@*Û: ˆ^\¯÷1é +ÐïÙì^‘[¢S”ÄC t‡‰5æàØY”pZ¦vK‚·”šh×K™à +™˜.H;LGj°Ó<”‘M›Ã#õðsÑ-þî9”ôÕÀ>:–…Ç.u'Åî…E+í”Sp1té5ˆ%œt­`4=x­ë+ÞH¤Ñ7êîrDD‚‚B63™IW\¢BÝï!Û©X>E¯(Ä‚­E$‡Âo*z˜3m´.ËÑô ô4Crê!dÐÂÍO $9µWàÌ áKD˜óź„Fܱ`¨¼”Áí †ÜÔ°(mîÚ6u¤ð‹)Ì’œ-x‚ƒ‘Dž"!½aÍÈ@éDÁw<ÌKRƒrÌî}#fì”j˜«øJ—ÄKLv¬½Þª…dʹי‡?ª^ûÈêNzE.1k/±’¯Lëƒó¶O(Wv²DW1lÒÔýø<«Câ¼à=È­.Ë… ˜¨Dxm+wS5•Y-.qÿѹw5€¡V.Ç/¤ë¼se„ï'?=¦„ƒ—?i;è[Û¢²”…?󫺕® ú&Ê¢£pœ„(ÇéÎSB³³¾Tîªe c‡ix40ÿ÷‰Ù8ˆr8Šn & Wéý6{6]`^f]ÈU}‘¾M~Â6ã +c¼4DŸÇ¤˜¾Õõ\~/ñ³ºsÄÖÅ^Â|›#òßTõà?4€b–‹j§ÉÊiÄI´LK­§ÿ5º£o94/2À(ÞEÐ6´0è©€Øý€²Î•¹jq"–Zú ÀìYBì?M\ª9ûÓrxŒ—^Ìž–bÚœ&¶¹‡'ÊlK“™¡yœÎfŠš)çÂïÅÃXãèHkþ%*Á÷ýpš`*O)2ý«÷}¬¸?¢ÿ7µ+?aÙ"L*aE ìÎ]$Š;7×+ÆAAy%5v‰±.·d×fJª$Î$Nìp]~ä¹_µmǹµü&¾ü¥‘‹ƒ¾Ý{/4öu™ÆúñͶ8{º­¢7ý«o žUÏÐ_ÑRÊ»-;Ð8—oGTxaës˜5ý„¥´ˆ|Q€{%võþ¶º+ð‚Z*ñÁbKJZ' ÙPKTæèXÔ*‰•Žªa? Bû¾a}w‡Eáæÿf˜¡¢Ù(ýÅdógûÚlE^ƒEáP[.ågôZôÓ½ @‡k3LW˜Ñ;ÄY DOÊ#ðˆ@Zˆ0EfÆÐIÉ7òãë”Åðò½˜`ñ‰9P-â|‡[º“ å:“Ú\äa_ “¡¥ŠyxãùóCÉ£­ õ™Ü¥×lNÞvN—½Î†b”Œþ8f8ÒÖ#;sÃàäMÇXò^ŸA&¯øù,ë±SÔà8#òävCA‹XA±ÁÞ׬ñŸY â¸3¸¸´ZNäù®Q>Œ¹.±gC™>Û.óQܨâˆß|’ƒhù8ìÑ!NX© ªPˆîåÐ]FÄGàÅA”Vh‚2›dïãËß̸Ïáq(b 51FÝÆp™ìÌA…ðb4­7× +k&¼Cæµè+8­ÓÉèðŠåÏ>êÀŠ>Lû*:û3'®Ð­Íú1Ï2OðXŽñÁÏy¡°áö¥ ›OˆÔÕ‡ =Y„8BüÞÅæ8‚ øŸ?¦à ñQÿe°ClÖ¿àô²‹d>……Å«V’ PôêÛ `F등Œo[i>pŒÌO©‘ÿ÷xn€™L,Y¹·+rbñBݱ5÷~oq† ¹¹ë°ÿ0ÒÏÉ÷ÊÈÓ¥€;íš½02c9¿[ã€/²ÀGŒ¤fî­œ,¾aÚßì‚0„²,_Ö¦³´`$×ç Í»-³ ËüÔ'I0Û'f¦Õ¼N~Ãt…JôÌ`â}Â'sÊl‹Å0é„|fê4^YtÏó’p31ªNë,©ïSrÏ t† JAõJŸ–Œ2(%õ·ÞÛKÊ ß=;΂Li¹~Áâ˜Ï”½:c–_ÑœăyA)Œ´õ„‘b5ë­8þÄCéé’¹õôUmë._˜Ê/ð&z"ÍŽãȆ+®Z±Q u¨Ü¬§±¬!sŒ6ÑpAí[Ý4"!œH\çY~ƒu@"M¿ã’·—Ý$É»öµEí¼gTª‡÷Óáâ>0ýºÞré–ÝÜêéF·Ÿ¶8ð_b¾'Öë2''ª¦[pë"f~ðNïO B§‰ƒˆ|d­ôÖN2Í"™‡VÎBÑÍ1ú%“ÑA£¿mèÑŸûŒ‹sòCL‘×o–Z¦T»ù\FT%ðb“#„ö‚ÙdNŒ|jN?ÍåÏ%×׬¶Í% µë"IíÖñÂ&o…Áš"‹ŒÝô”˜’Å!z±–§q„¨@ˆëEsÓscË€ø™OŒæL`<>¬™»^?˜MpCuÐ˾á­h¦ßs3í¥˜oƒ9^2‚F¬×x0]å»ÊŶ¦˜wwl2¢%zÒX˜@Mʲ&3¨Rh¸ÓYÄiQ:T45 9îBÞjp¤5ô?_WožŸà¾º¿É9kbèœ,Î|hb”90㋱mMÏp¯ù3ªMÙü4\ þ:h,Óõ39Ñ3òÓ¦‚³ŸÉŠ!¸kÐX1Å)šk&?4<LF÷"i”á¿•æÿ$|íÓ4E÷45¨_5v@žš>ÇjΆ5—BÂÌ%­It®± +|Í×Ò vaóϱY÷T.›@û·m ‰#FzjCõt#8ã.Â…Ø à¡jFªÖeä±Ì*H‘îÊ ¬ü¯`§öô—Œ¹—Ï6…Ü˸·(ÏÓÍFé\FídņÍà3³ VÝåð˜Ø„m¶¥Hk\CÂLn溿- dàp‚Åôtd²;!<:æ\ BNO™²Ø€¶ÎOóvÓêbû¾ëƒXÍœešö*5f@i‹ð²Ò56O¾1¼íy‹ZxZÀÒ™ô Ðcn(ØóÂìKtÈzw8›ËÓØ'™ðª"ô”t5S’$+ÇJ J\8\åW(÷ã¾z–†=ÍY~¶g±MvË#HU!WRïãŒÁJºæÇ‹°§Þ@Ò§“¹þ»¥¯8§ÛGì.°¨exÂ[a@X¶•üÈ/už€FÉˤò£Äò‘ÃVÀê³›xÌ 2è3K%yŒ@^~R€ š6y+Â'’AÖTªÇ/'KÈØYú•˜‚a©à…¢À÷yš¤‚WߟX¶;þªŒÇt,‡€²œ;ïBñ!üS˜ï²Â²Èel¿7ÄÿD¬ ¥ÒùÒ¯ÑÓp÷"/cÊŠP\ÐJS]$ˆRh’Ë.gRìöú!¢Ê!Mp¯’¸²:¨¤FnÛ»ùêÁVAW”&ÎV[ð·F¡0:´à6¸ÐÈ4ƒN +»ˆfÊvÃJÑÐr.Ьþ„¨žØi_§q™Ó…ùOpkT!•“Ѹiót2 à–‚¥ ßÈ´‹–6ò <']æ' ^‹m£Ì<ñÉþýš7'Ü^Xþý”G€¶!Sÿ?×8>-ç€QÓ‡ÊZ¦`;&J ’¤‘‡è+6hœ°w%›@D­h7ŒqVø:Þ2N´9OD’’5£WIß +NÁB©dZ.ó2žœT,±ž—ÄÒ©bÊÊ úê>:RŽ 1·ªP ›C•9”î{RZÉ1ªw-#‡Rp|~‰ +ÈxôÞNC¶„²‚^Ëÿ8-ȉ²Ÿ æ»f75´©A:É%ba:zGˆ\·[:,a1Øâ\Ø9WTÌUeg¡’pƒòç±i.7Ž–Nr älœ…¡sèB=a-:s0c˜4µ0TLžRAY7\5`éC›Få§a“ÒÎöóòPÔÀâÒ¥kžºÂ…]oµZúf~ñÐ’±Ú'8}”¯VÃÕÁò#hßBüP©X…¸C ÁBÑ“ìNõýÛSŒÝÁ§4HýÄÃØ’ê®vÐOÌD/¶4…LLX±' dÕÆžfX>ªÊ‰AÙz ÷CÞ´|%Ú£’‚ˆY²£õ\#èè´å—ZÊ=5ãë¨n!=‡¯—aô˜ðÐ$ú´ÎŠž'™Ñcz6]þ–5Âè‘Âg¦laêžçi¯…VÅóh[”LQ=päV ëyTÑC|¨Še=ÏŒ`{*jô|K +·¥­æ[j* ÒíÃ)¦Š`ð$U†!ÿ¶Éh:¡|ŠÛ„‡ñßùPë±×à`öNæèâ’ÚÅ»[íN¯²»'w +12hun'¤ ³9,ÒÎ{²èÎÆ•u€§iSoÒÅÚBƒ«ª$æ¹CÈÁXBV“ÃÀœ¡Øm!@v.šªÜ™²Ú¤4ËO (9L˜ÏNF†{«4I5»@æWµ&-v µ®®„?=Ãü­d§ÓœòÔMM<gØâ×S?jD½°á4Ê¥ù™Ã–¾Ì‹,MM;4TZˤ6öŸEoíbv#sSn¥ÿ¬|û¾ˆÓd*ÇV‚43]Ù¶ˆÌBÇÑ'¹SUC± 5Ó84?Zå]Œyé…*4p0†Ål¢OŒÙ´£Ä°%¯¼æ©yIÆñ¬2– a¬A‰Î&4Q•at±$žQwÍÖ~Ñ`Îõ³DÂ$Áüå8B—À˜½ÌÙ¤¶r¿´‡ãyçÚ7Aò%æÏÕƒm{Qh™ÐRx +'nè2JUÅ<š†%ÓÓÐ…öökB±i›ãF%65‹ÄYwÈ´Î1Íû”A ÷’¿)dí­-±ïe'àDâ i¿HØÂ +™ÂLÔGJbȸ•´«Ô1ÃGsư—¦ÅÇôÌÙ«íÚS*ô(ƒ^Œ•üµ(¥é«G7…`Æ||$OóÑ+~2 À–úÿ¾„p!جvòõÝ;%› ¼à—–>ŸWzâ[Wi}Õ4ŠßÆõ2)Ž©£H·GØà‘ЧééE|&Ð÷F“ê[¸PöŸ‹‚CÖ±ùø¦p[38^åt´ªXHKw:`j¯·|µ‹vYÙ/§tPrØU)Ä}w“ƒY+•;òÿ‡.•ýy%N1´R^àÒÑ'Ú_9$„(N²Ð“Åýóá0ŒüK-Ü­r—ëæ Ó™!=NÀLs8½fÁ ÒQ× +çµñÓ+¿‚&Í•ã„Ó‚?ª3;‰8 ½GÅnä$%u2Äb)V¦cw&$[ð§€R£T37­ßhælð©6U„Ÿg€° @4xñ&Z‰U²²J–wÇ¡nÖüášUÙ¯ÚÖ@¨ š—c=å»· o",–•`íï)2žñ(ÀÕt@ä‹ZëhŽ—¯+C’.Ô†<£æô‹¯`6ë÷Í‹ +¨xj€AOø¯šTÜ8À¡Çü”Îþ‚ˆâwäøÙÚ÷©¤Í>^c®–’'áHÍ6Ýq’ ˆäT Ñ=‘ù±å˜À÷’4ô`§IFBƒóx®Liè²Ó±Ä‹$ÁéFXá¿g¦È€¶€’X“È«=ÞŒé[éØXÅ:ÉÎXYe$‘¸óÒû9 +ÏY‡w^ãÞÒ@| ùø·1…‡²t¿¨J5 +24þ¦åWAëJã_•JF p<ˆ~Õ7_ì%oþS™ J¡Ñ°ú6‹ffQY ߟè0C/ä4žüZ¬wàšY Èrb–]Ò6–Õz劔ë<]R¾nÆR)¼AåT5Êà;Pôà~Fæ5eÛ‡,ŽuNùAÏL…ÖïªÍ3|˱Ü`w>L“öêëËŠ.Ÿ5‡j¢K|þ9­Ã¾+~¸7)—km­È—GÍý}Ü4rÌY Wø:‰h +Ôº£­ "¿ž°õûa™ü4õàßE=‰©$2q†©Ý‰.‡M^̤›¨I§'´ô)·(_Ñr&NæÒE_±‰å»± „%ü°aÂî&ÈšŽËÔcÄy®”&MÄ:»/ä ‡«›®©’“X1”ü^ÃþrmAPqÉ»„¼o1Õy]¢%¿q½+½’lxUÏªŽ‘•oèÓΑîT{'4’"h~= E˜Aµ¹Š\|ÁÚ§±ž‚ÍÇ:º’»ÊM*#ЃކVÈíR'y¿y[‚#F(S%©ÐêÐË­Ú¼aT^*^OQzƒHž`±VÙ7ìùÎpwéÍŒ™1@ûiÙ¿ù-^¦M“Ï@í@Ën¹Ü”Ú6væ4Í‚VºÜZSÌsw-óD‚ß±ìX*×FPËm·øp«Ôâý¼Ê`ª`` ëšnš/4Qßš…á$Ú´åp§%ë¾ÕdGžS ú¸õvëÛa‚ï5ªkœaLª +^1d¦9{ù—)žª žù˜ìÍÚhàå†% £|?‰a'³Õ×P• +:üy²ouû†@'7‡\IJ3²Xß9ÔÏðsøÞ HœPHÍ›v9œ^îg×ó¬ä_*~À˜açtyʆ*wr”f¢k¾’Ø_rü"màPý^MQ[~<ËA.ÏÅÃí狎¦jRCñ„œ¯Ò§†–€Ã YZS6é½ÿõW˜š.BS^À&øpëàqéü’+[Lð ?ïŠàÛ9kÿçû˜œ%÷*/Ù®¦Ä¸çÍ$mqTD{¨ç¼/9zþ¯W6“¶@ aõÊèÝöš‡>Mïv,K¦'z¼3á ým–ÑÍ{,˺Àã´)oˆ‚ô*"±¶•ìI…´.¨üì1Á{ÄÈÞ24qKø|+æ矵4©$ž|´QŸ§Uû­g +÷ìÊvɧ+¡3´Þ~oüå€Ó.æ4V¶âÍÉ5X\‡ÉMì«_yQ y@‚± +£dø×5ÁP™›/þâmml£Ü~ô%±¥ï’—”Òl Id¸´O7bÀYºBÛm§stŒ.÷«lB*¿3:¸†›Gÿ:OǸ±ÄiüQx|:†Ž«Gœë£DžY9±W#m¬H¶+£«éž¶Ë?ëìŪÜr•©(ªÌõF\9Â+eÓŒ¬‡.uwž –›YXfîÑL‘5±”Tùñxi!ì)ª¬qåý« g¼ž]š·lMê +úÀï˶!cêãÖR˜X,J} í£“-Hª1Mµ)@8*?Š)5ù´œ4×¢&q@ó¥Õb¢Ä·5”u +Õ#y8±!&A©”(¸OÝuâžÄZ’L¥Uy¢£ÛN³¢tÊ,ÔtJ$' ~¦ÓĽluÀÙ&Ñ+ZSÎIÓÊßÂs&õ0½Â™Vëefh&™‡Kãâ·˜b²Æ-(dg LmÁ3Ò /Y©Ìó-oÄ´ÇŸ‰,%º•&\Ÿ@’ޤGõMJ´ÌFöA)57iŠ“4¢Y—Db<Š,”$Mè8R~<‘&ù™2…¤Ç>}ºV@Â3²NGK%‹~¼£G±.˜# êFs) ½ï¨Ñdn–Q­2äÜÍ$X}MP!ù?Œž¼4µÆ WÃÚºªh‰KÊ›½Ò³@Ú}Ä@îø'Q¶Ôp¨¬C¼‚*&±Ï¥C’•Vû…—4°vü½íŸãý;¶`õºÄùÅo{‘tÈbš…n÷u[=°TùûXùšß_>9êàÒ£åŒý°ô±.Æj´‘]`Ž13Y1ÞØ»C!ÐG–€{àÂYþ¡:SqØàD©ºÓÁ}é„Ä·¬em»ï+Ì…ä‰Q GpÂny ‰óYC®vE ®µ:‹™q‰î=Í` Ö- ¨Vñw[oi0YAš +ÓGht;*«L Á¦—ú0ß'ñ´ ¡RÁÒ[Âû"ïÕ´>N~C¾®xíªèn[V‹] €„p{Rß? Xfå\{½õX‘Û6nn·ù>/âÒ­nAo1ü·³†ä0ÝðjÞ:F‰çíî’ƒ)xË6p÷{~ÂÃÙò®‹\Üò‹rÑÎE"Ó½‰½.Áø®œ· Ï—èž¼$Fz'Uº±lo«ÖÙr”^·ÜÓÛ®ºƒò½êÂMžée è†™ÂÞ éôÊ&xý­ô®õèöMþéUÀj=óz{-pÛ©tÈ0 Ýö +GíEF!IrÄÒ^1{°º^ÜÈÞ‰)á» üâ²ß³ûOì¥+‘Í«J¨’¡}íárQèÖ?ç˜ÈöC½cÙ¬xÃ@/z« °½%ñ†ÎžMú)³ 4<ôìTçÒ.åŒåpVÚ„]áÐdŠT¿v^0âáôaN6iPߦ²•d±“¤•+ÇmgO©z“%S}„¼`#È4$@Y®*‹EPÀ–Çx›?:j§‚dМÖKÍšL4™‰ ®’ +Ó/ÏŒÑ~œ>i%²•)ô‹P9¹’FHÒ²(B|BÂBž¤f¿ä‰¾3ÀöýO“®p#„ÏvÙä¼±§J&g«…‡`@MV‘WÊ? 6‘@ƒŠqÇP‡¢ÇqG¯Õâ3—‘D;+®Ê\†«0ZX ¨®jï&W¢§œ7߯hKùk1¾kT¨ÀãBã» +7_†K~éë½ó/Úm(4}-ê÷”ÌÓ®NO3§žèD r•›eK3Úuó´úsVÿYynñ´xé*ç]î-è%Ñuý°Ï—´äC ›’ºDŽÎ8¾Zñdépø±þìÉÄZrAñGTfÑ%κ’(îњ뢸}¦ÈxB {x@ïͪBŽcƒ<@qGNK>˜¶0ú•ÙÃ!ÿT ÀG«l¶mÅ—U¸fQ\gû¾ø³Y=¥`ËMƽ{Œ’!¿|K¥òŸ°½Þ3ÔÿÕ ùós|#=êÿþù?­œÞóóƒ.8òW_z \SåfVmÌ$OtÙ% IÆfÏ2—È’x5Ñ3Œ±Xš"t™†” •õÕ€^Ù£ÀV£ ØŽ¥"®ó‡K^¯8xÖá¨-FŠd6­ Ê€‘}Ó\w£´†-¤ *Œ«¯¯YËÂ8[6îjIÔí¿VA*³†› "CPÔKœ´ä»Då°z6À’QP%0ZŽèc"kìF…+V.vÌlãKùñØè`6Ðÿ ü“kÌóF%8ãÕ ´Pb +•éŸÍ½"Ô€¢lC*÷ ?SO‚ G¹ûúw?W³ÃjÎCHÀl $vòӊ +ÝÅ:¿Œ—¡…H[ù 5ÒBšýãM[ö† ?zPU` £clD'ÚíYUì–a™rAþ Í3€O#þ– €¨Ð9_ü§wAüù)ˆËõõÍ +¦pá׳¼s»wH¹>Íö÷Ýê?±øôñIÈ1H Kîøh”AhAoE"·¿ˆm½Â$¬Uƒ ² +¤—e¿ÅJg¥H~°>ôÍ˨;ú ¼üH¿^³RîKÔJ¾„À?4-ÿ+Ñ'~ ɶ„,Ì‚5g²O6|ãR¨ÒmÆ•]“N¡F¶oSWˆ Bø*¦ö—Cþ$`˜».’}”qRBwªé1N!yòcÍ£Ûèt)Ù‰MÂîìr®!âáÅý€Å®V*od[{BF0M÷ØÐ [$ã—I,‡¹¨d®ô×)g”^ïaº!"pÄ §0Ã*Õz5Èз<3Í8àéßìŒÒzwJE¯J[µ¢j‘o£wTR¨ÊYÁμ¯Ç8zŒÆ²ß¿_JÎãxªÏYõ-ÅÕ7Yßûãtn+2»ËâA@¹B45%hhc¨ñ§³šøêQ¯Ô¥éÀÕîÈH:5<#\µ¦²£„7 +æ·PXçERð"¶«SŸ,áȽ^1Ĺ—<ágá!2TÄ nŒ'wLïà¸\Äk CÂXjèÍ oãºs#b€ã€¤ñi çOX)¾põmaçÎäv÷Åéû¬Ï½ã1Ç·1(Þ’üÜé±½›Å3ϸU„t‘v¨$×SϯìûÏÜÉ6¸_€&c[Ù´EMC¦ž“£v}§ b'XÄšÀÓKÐ¥wóß8JÁÔNóÂüx˜»Š¹ûÊ‹y_¶ÛÇôâùÒþeãg2Âý0üuE/ôef”:Ó©kÀW8{\íe4\µ.ÊíW§ÖŸób úa÷~†¾°Ô¿BŸeêTI…ؼèÓ» Ëò/V£GÙ8Êñ€(_ü h àßX…¹YÎ}HXX[Û·Æ9ó¶‚Ýbâj˜ùª•ÅæüAí +„mœ‰{±äƒ„ª”(l;½ÁܾsºÚ vÙh›Û"~Ýô~Íý_ïNubL@ƃòáT-ánK#j´æˆ„+QNæÙ 럕õΰï íÑ{á0·VãWÃx.-ÞfŒ±È8c]Í_“K¥ZœT¦ÏûtÞÉ­îbö)Š$ðÇãÍö+Ê"’ Ðż>¢},Vî‰FñúÓ)8L&¸¬½±Óœ³÷R#ÛÚØ"ÿνmÿOCã >` ˆñ`µü|iA©Uïƒ;¹4I¼yª›J.ΉyúR° ¼ñ#6Ü%q§Ð;™æ×†Ûú\ªðh¯°â&Í 1¬ý@©LpûêÇ0Yù¼éÁjÁ2 +Ø_oX¢Ñ¥ ƒx‡˜}.ÖkåUÂáòƒ‰« PlDlä˜a£Ÿ6¾Ø” dÊ[Gš0åîÆ¹HŽÂI˜ +Ñ­t‘ÞªA¬{‡Æ,Í›ÊD…¿KÕfÍßùËܼc£÷Ž n4Ã.)çp zF¨ø Å×l† AÃMÇä`Š"j{ÊQпɇŒõŽ´þœë Àos‹âòw(‘öúåB\ŠoiJ‘ h€~¨oc·U“z +¨„†^ ŸÏ|"`7t¾Ÿ1 è¢û(ð¿ó÷¯¢Â ˆâb±àyx·ŠVÁ<üL¥ +?þo9ÜÔ¹ƒp²Š¡Eõ¢}$£G%|lpTJ&Åß‘UZ$éïbòN¨Èw×Qðz󪓗¹ ,•‚Ó–·L\»Q‡{C×3ÎæéØËt”3Èþ]•o_ŸîØq›ýÔodIs#@8ܲ'â§Uá—%ævÒNã²·I}ÄôÖ¾>ÈФ¿±¯‚ÛWg-'1Î(Fr‡»ë# PýÀ’Px(yKbÀ‡kÜâßæx¡Ø0°¶û‡n¼nww«y÷Ç6˜¸ßYÞÕ k±ôïp´£g¹ëS»¯œþTÀ¿Ò$+2×€JÛ±ÊJ { 0ìí¿U¼¯K:#%øªBb†+EyÉEb‘©W©$vÇt¾¬‹éèÝl+¸*KMˆ“ìÙÕÑ9×rÌަ#™U)+tIu‰<ì˲K×å.ù^Š£ÙÃe +¤ºtŠWmEJ†i%&c]“¯1Xü  òí¬6œÐ^8¥ïñAÏëE Ö\á[~¬¥tNœÎ3qãÊ1Mg:rÖʱe¦³.Aa”62V]ù¤LÞYpØÍ_3¾Db_$ñž´B;ðl›ÿ<Úà-%;(„Â×GÃFID¼†½ Æï:¨9q(:—¦~*ª¿ŠÞ€$êë/"*z¾¿ƒiþôLµ3Ó­øo;ò¶$ìÑ*; Æîx{»u^dÙ LVëÝÝ£‡ð”†Ç—öôÃQß‚¥®¨&¹¢ñè.9_…~a›)ý„üR)J«‰šK™Ñüdh–zÆ×éXqvÛeNQ­Y(.p~âò3>lIߨ2`ß¿±¦ò¼ç´e \ÓN \cqÌ–-“¡ +Þ³åyA½%¹ÉÝä­å€ÌŒ¾=&K <•¬`Ï…ç‘" +%ŸÛXÑ+Frgg%šžVò2¡1=@>\gì] +8{|Øc05äˆ^p«iAì#1 &a˜…Jð+Äyêw¢½¡œ¢Õ/Á»ÇcEÌaA摾¸ÎbÜÙ¥ûL³PþZÉÓy)0Ÿ3Ÿì¥ýyiNQ—âê僾BØg¢Ö™Pîf¢,x¦‘˜OCÏB xäÿG)*ÿ- 4OýŒ³Ä±ÂÈx¿u™Ý2L3ƒ˜Gó +ÍÐŽJ©¸V¡âÀšÅ3ip þ²ØénØ9%– rätZ_æJdé<Æ]°k±æÈ«šÜ”Â×ùûºñ+ ÀWÕ`×}›x×µíÛ*×lǵ°šnà­U–„`\w ¼®—ðÀóÝšÊÜš`×fLp…Ýh­àô»™‚A³ñ&“Å7vK¹œ»8Ú] +`ÉqÏp2î—ó@“nLKþÀz¡Ññ +@Ïg c¾yÔÇËn—b¬´ e1D5à¤m£¼i1w.õd6SÙÏ{XSl/x…*™S; ÖÚÜW¤Ä†?ë EaxÁì €ûhB &AñQ-¯¡­`Šs…D"ÏpÅž×Ìëì~Eq Þ …µ~o87‡Ú’%áæ²@JÞlno æçÉšÉ9£{jp0ÒÊ'ïj„ÊñËÉ=Ï*0KNoCâ;ºˆq®u÷•Ü8çü{ýyMWåDam=>Àå~Éóhh)©ÿݧSoì +*l-ë|/˜5–³xaQcE{~b~”äouí— Òãb:ì`zM x’ðûr±ˆ–Ê ¤Ú¦!, êGUýg¢”$¯ùÓœ¤º½/q¡!®™lµCøEÐý€TzuÃרòëN„£˜ÔçƆ+SdôÿIŒÉ•°NäðqTLHý‡mýxÏþ°†€ÔüüUB²zŒ@Lð_ZÌJ¥Ý]4äËs'ybbã:ÅÆ`©#i1‚X“½ +„f»?ª¼§ ¿{cØš0lIÃÞ4ˆÙ°›VÕêÐOb?äÈT¬š:'©µO‘ˆ„ˆÁ4Šì|æi¸'ž@”C÷ú – +îobm»]ºú†P~ì&$€w®X¾•ÿ±~ðÌbK z°Ph ÛÃxg dØQ–ˆöZ®ÊÛ8'Ýsú·d“Þá€oªßëXi[¾OøÃ"3£×ª, g ³€ZPDìzÈ¿G²tÒŠ0Ç Tëzn†kJ9ÖžÜö Ø¿€‡ïÑQe7òÒÕñ1ÿa«<òF¼£¶ãv³õØ3+ÀŽ„: BùZÏ·žU½Q¤b=è‹ßÑýÜ7%™ó«: áFt´Ûþß0¸EÓãICÑd– C˜h Áƒ"ò Ù3¿ Bwj0²„½å¯ÄŸIŒk„º…04m¸¦<-Ô«d“!dDþ ˜’ è:Îríq±uÞ>^¸"],Lj­BÚž`ÆTjLÛ׿1B·?7ƒÈÞ` ÐË^‘UQ$ÚyRõqcsVl.– ¯S°ø©ìe‚†‹Æºç[t#)0 bÝЧR L™ÈZº©Ø£NöE,ç úÄ^RæÐ`ǹKh­€¸Æ‚vùD^ž×ZðOqÝ#/:YKònÄËýë^–ˆ>å²gSHò·Ü7'¦‘mù9ë 4 %©ùÿæ_É%ÿ 1+ø½•B­ ¬û:ÂÎc¿ìÊÙÏ_/ÎÇŸ>*‹j¯>‰aR'‰ëýù„‰€ f 04É„kP$J4‚³\¿JÞŬr¥ÁÜI»ðãžf§D߯jï¼´ûdéþ‚ܯÃ}'6Çö]aLž6ÛœÙçNƒÅRì/öÛôú0×­˜¤+Cp½-®Ùëaë'üÈ„C¸…ÄŸH«å.ûtD©^Ñö·^]ÈGV Kò?ŸãW þ Ÿ‚Tú½› b`¿‰ K›Òxíï ö.à ¾=PÁ¶lríÍ_ŸìÖ¤ÀŽd\Çoqü~bÕÓ¸+‚z¤–é–`Ûç!í£è#R¼JЫþÕ³ãº_=WÚ1Ú dá:Ä7¢P,×ЉÂÜ@ +&©ø¼åt^ui)úó¢IÔ‡ÚîRN'‰çžD=ŒúDO§ÀêœïÕßx˜“ÜWªPMzT­pø+jÿ ‰M+qIö—ûôÃ’é$†ð‘55™»Á2é6üQÿc•{ºbÔh@rÇ1-UÚ©/w›|°þÎvr--I’×רõñ‡ {úΚ¾ IŸÜ•™>äÕ'ILÃNý+S?ò\,š‰æpl}T°Xý­pÐBKÈÉ›ÎaUm§ØZ-º®õ¾hÞzß#øéï0ÿò‘¾.öA - ¬>ðU¯ÙÅÓ !PÞÌñ·Qü5›˜ +u¬ºƒûÐUˆn¸‡ÂÀ VÕŸè¦^©y«LÂôü1\¬C-V@á¤:[A,kR§¾ºÐ™÷kt?‰õQû©ý…:©þØ{I€~j~@„5-T›'!n¡¶Ïvºp7Äkߦ-A:Â@ù¼a_ +íEi¡c ê¨×=Ãþ_žÑ 6&LXJ¬Uy˜Ê ¿=}q©ï¹ij¦ñ›×3b™<Øuø-o,=ðâg­wóÈI“ß픤ilÒôjÓ¡M@}e +„i…5V;¹`{ôP§ÅÓŸ¿J ©¯ïLT9áZ&Œ_‰ ]ï¯;¸¼â±Eè•':‡>Lïê‚‹oS¼y.Øt1R *|€h±"ð”Ö¶R@—s/ƒîê`¡%f¿ ¼-YŠ3'ù)MLò–·2MÿTn”ý‰ÀÌ–$hžS á z¡¹jÔÌi‰¿²áÀYV®þšþM+!ᆀ8 +͇*Ê IY[:‰Ž]ÄÂ}…È‹$Èìg LÞà)~8!@ùªWÔÏ¡ *&'Pé?_˜d!¡Ê[ô—z*ŒO¾ÙÚrЕÖÁ‡ÞÕÓv÷ð:{ŽàÀ‘Q·€…Á$µ© +ù:[à È&~ + ƒþ:„rþ–µ’g]•t¼X e5e©Í-•ÉÄ2ð¾h6É Àö¸o¼PÑ ¤m%€fd¾VìÚÀ~ ý6ß*9;Ūó«ÖŸ«ÚŸUaÀ¸ª˜«ªƒ¨*ASµfR¥‘¨¢&¨ÐSå]º9ÕQS=ÂT{–j›Rõ$‚T M”œ°iŠê»Cµ(;Ùë!¯÷é)¤ Hj%§&pªëEÐÝN@n1\-_ý0ïq,ÜüâF^g âh°å צ[Nî§ìð¹= ~° ù(û[¯å³?ÞfùçÎ1hXyÁ¿¥þ;®½þØ,`¼_™c¿+®¿Y»vt|ùàe²õÕ‹FÙt€‚2Âé3“‘¸?æE‹ߦu©0‰¨Sûõn¢Ih`„åøpsÔÙÈR¶Ò²‹4ûL'’l 1k ÈV$À”-ü‚š­]vYϾŸ$švõ i{±v +G'¬dª]Ìú´}©Nª¶3µ3ÒV𘸫tŒžÏ–åÁi±›$›‰þØÔˆ}œ6N¾Æåµdº®1jk )Ø¡ÅYjV9à ›·×¬ƒVñAÁ4&B¤X§ÒƸ²Æèx­ºÊ¼¦Œ.ÊH•‡M>’Ìa»:ÊTQÂ[Îð¡|ï£>„+§Ï\Á<Ñù SÀu¶Ðà•n­pžÙݽJŒnäB?óîÿš~i™S[ÌBúT_BÕØ ›Õ¶W{¢ðŠ1A\º„C.u Ô?qÒ£‰ÁÒ- ÂÀ‹t#ÜF ÍôÇÜfŒ£Q}Ä4á Ž€£ù „oàÔœS©SÁ=¥r0öøD  $)Ÿ$°J¥å2¥‚„)“‹Û43íuþã©Î¡ô. D*—“B´Z Y…ŸF)w˜¼ôØeE 3Ê÷5Œ<Úà¸r_§…ni±¦+¤¨Ã¹V´Ër2Iû "AÛí8÷æÈ%y§Dõ…¨Žüä<×iM›~…B¦Ú¢±ÊcaJdZ|öK+AÊóíl£®µ"»¢"&Znì‹2™ +v*+Dë8ïÐÖ©ç<­èB9¤pÐzA›4(æÅyd,h¼DÄÙP° ê‹ý hT¤`_‹ š~ â­ËMõ ¶~êŽT×Iɡ5Óyi…‹&%TÛ¦áˆ+Ø­KT`ƒ¯7à ¸£.u„¡@óEÉÎþC6CCãXA¨+ás<ƒÆ +(ç?Ä»G¿Þxº”Ëu}¸0±…URpnçnvóÄ̃<[x°Ô¨2 #û[_¯ãpÞ¥Êî9:NãÍþ®†HÿV癵t㸫ú½ýïÁ5¢6¿Se¹ëÊÆ£F¯>ö÷‚Î$:A$rèIŸäSbû«¤—Ivl jbº&þga< :ÑHÑ´qg™¯•,q¦ŠŒ j©iQ’„Ê奺Ûï/I‚EוLvѰ9?ÌÊË:ð0ŸBX‰t÷`²øa綺À°g?l›;Ú5Ë$ÝϦ*P„]S\kÓT´lš'éØvMeñ 㑳Êé‘Ä‹Ä$¡§íÿøNÔíÙ<ŽáŽë6 ïRZžÂ§éeÔÆº=¾bÎñBDyHã¡ ÞT)K‹j°ÇS + ” ßD_'Èæ¥‡$>°6Ý™ ,“¼Vß#ì3êŠ":JÈjCJôVãƒìy “ꚃŸFeªr]ÉÛÕáÍ~<¥²‚ZÔ8‡2Y-ÛNA+'Ó¸”B×ÑËšY@Á*”•bf¹ê ¿eûRMk!a >~³éµd·Û@“u©Õh;,("«“õ\õmªk½ ö‘õ4k Y팪g`gó þÎÍÓöÁ£ê’?!29Ç>%9ÐâåæxAiÕN +ˆŠ?¶ºÚYæAÖ1rÎ_[Û/ w#«bžâ“bRÝ[EíÇ_\q?±Y±3ùè?mWû3@¯òW;‚W¶S¯‚ > ÃÛsÿz8Œ¢´šrž•¡él½Š"G¶°Óz©šò2ðÒ!PëIÛ'tþ±½Ðs;JÍ"–!ÝâXAs@¹ïËΩªá»€ú¼­±‰gM6ëzÁS–±Se‹ °úxLJs½Ý•!±J$tTŸ+_ž<Ú;žèÌãÛ¾ÜÉ“^í=Úåîæw³ÜŒ§¯ÙÎ\›ýï/ê/ïÎM`'NÖh3Ƀ§y(ëæƒ±1ÝE + iðƒ(+ñ¥!Ï5Å¸È }ŸíØ×‘íÑÃÑ^vÛ.©¦ù ] Dö¼ «M…ë%`*õIªŒg«Zs‡J-ßÔΧ+ÉÄ•àÌŠ«4žÀ4“–½ôÿ›’å´ÒØoû÷_‚}„,á 7sQíÐé8ÖJŒ÷o¸Ñ=hŸ1ÌÆŸ!¡Æ$†0mÿ hºùõʵÌW”+<ªy³ðƒ›ãB"ÁX.s¯/9ö±]i~¥Êž³¢)&å}Ê`%£§F8ëÆÇTÓ]mé Ã+[y§'<¹°'ÞŽkj¡'@ e0’60ýo­µ1ú[æíÁÛ£žàÜ¡Ðt5qÀ2ìåÚ!Ng Ï -¢*iy[Ê­fÀž©­"!?W3ÐWÅ1±T¢‹ŸÅT]ÄúD ŠÅb¬Ó3¹w‘ž÷GYBÓèLJ|—Û~¥êqH[lR<@LKÈ)ÒõÖNH¿7¶".|¤¸»j9W«ëÕØóÎ]… 㥽‰ñþŠ*Á>Ìxø(( `Ø-Àh¢OLRèÅ9o´¯耱Hµï¨C`¶ªB–ÇF’ËÌ;¨^¦Ž°³¸þðáwì;”®¡ Dþìþ+°ìP™xÂEëkƒó0ʺ`M“7Š(¸37„AˆÜ’ë ½Lm¶¤ð.{%íÌÿÕQ 4ã=éÑà¿©ý'¦²h åâIï‹à ’›{¬7|vA¢Ma lv7¡†Xˆä¾N‡Ø{ÌVJcòZédCš>“†½ÿ”¦šžÍ`7¢ønüåõƒEô± €^õùïÁvfgJ¯³õc¯”µÚãVT` å£`…#‹€‘ç8RÊ”’LRKâG}^b9''z5}Ɉs‘R$ª×L«!QEÒ+lŠÍ™£™ÌB¯4j'œŠM …T-Ú‰±Åˆ5žR-½ª¥’Ìè(‘‰Õ[¡ +Uœ½SQ2DLæq^‘)¡­£ÚÈð›ùD¥?ìÇSzɯVÑØªr¨ªZ¥ó +Ï"¶ž°0JÛ첨Ðm¬ŠÙ›Ž–¢x‡æ ¡ŒcR­‘Nzê,6Õªz½ê*Љ½<õÉã‘Æe¾Æôªë‡ú^;¯í‡¸£~¢`shúH<¡0N+% ãE<#”ÀùgäòÊc‚|Á‡ºÇ0gÂg3žÏD q•TNIX¯®Úrߺ#”|³ƒ4ajjåðÌU!$#±Íbøû†Û÷­žÅ«pQÚ£ñRŒ71; Š™ UÐωëT»e¬ä6?1žŠÝ΢VõŠÉ Çb7²ÍÝ¢TOLU‰“8°„Zµ9¶š ™É†ò(¹ä1‘ÎbU„¢\R¦`*™B©ä=œ¨fÁ3pBPñyÚ˿ņòåãâìûç ]àe¦ž6{LÌ'f³ª›M$ÄxHTb"Ñ(!h‚îNøL'Ȇ†èn}6­ÏúGèCO!z^FhEò($°(hÄ´š  Š¡a”±z•Ä(ÿjªF9fŠóØÄ>%Ž0G&¼"Fðá½Åà½àÃQ!ÓÉŸ—pòyuF±Ì‹ìD"<Ñ…««õïqÌ7†æpĘÙ>ObŠ[‘•ùÊoj1ªbºM§fVÈDCôeƒt¾‡êø_GÕi1—G^ÚFÄ%4ºhW«F­É888Ô`ÑHr´j<-âp½¤–ƒóQq< µ¤JÇqM9Üy}éDÉ›ËJ¼Êœ>y q¾{Xÿ¶¢†D‡—VcH*”Ö‡ò &'!59#E +&7·‘%2FCÂ"’j9%!V:JŠD +†•tO)DɾfªÄæd­%‹ +Evˆ6ŽN(#IÔÂ,TRS²V'M;*:8RAÈ×8»IZA[$MD#šòL IŽZ($%{r†ï°eR(#%Yé[zÍY¡^¬Íé('³Ì< «j^#â̯Œ…!‡æ5Ÿ…áIçJuN1t¤œYl$aŸÙxhad"©ùËÈ/¡ b…wwèÛ*vG“Ñ8}(kH|Õ]˜n&”¬g#æÔ×õ޼vTÉ\ófÈejP‚óåîE£\r膛(ÓòP&¯¢‘^Ñ‰ÃÆÈØF—–èW×Âú-”À¯\4{íòl|ë …kÞ²ÔÜÊAvÑDj„ö’ÉÂì¥>);tF™M'ªEr“%W]1 9G´ø•Ë_£ ݈¼ØzŽJøš(ê¢o#^déBx²ñ+f"TÖ{½^Ad¿È*¢KÁ&Ù7vhç’¼‚Pvž4óÕ]ˆþš¨“Éé§…É8CŸŒ•V\—PÚ§(ØíõÇöªÁI•åæªÅ¯Í)3·cÄŠZÇP´Ç5™×d ‘{PI†oì kTQf¡§!hr3ÈtÿÏâ VàÌÄ[fä‡(œ6Bò@´;¨ 5›ÈLÉDj1O‘D•tK&v„‹î(ÄXÔ¦U=ãÄjß|½ˆŒ|ª öÁŠrÜRCñ ÌHÅgZA4áAš­8½wÊgË4½èÕ”4‰ 4^è4vfÜŽ¿TÆo‰Ð¬ð‘¤)oËþ„ É!'™MäÒ‚ r4§‘.I5 +µõ! 4~¬i•h!FO8Š}‹Æ·fn“HÉù™×·*”q¤¥Ä£›Z5=Íþ*MD'°FÊB6“\£«{¢DâQ§)HY6°,ËÆ?¹éRû®nçÿcbZäC㩟‘€„ÑÄd*e† ž†Ÿ¡Çð.ÑŠVaV¯°*q*íº]¦]Õ…8ÐtQ,X,D0„̰Œà–Cá 79¢´ÂH¸„IÛà!hòp¡…1gÂð ´@(E UƒfO˜®$xbÊà›8 ^°À%4CCYçiœ/œf8‹”†Š”ÄBIamJ $HÊR—.u^1_ GI¿ÔIÉ'\a¯Z(ì{ݾ!̺S +u‰ÿe8åg\ÕÀNnZäŽÇâ$Ñw<.• ÕÖ*¼­YJ$DÄD "",/ˆˆPT‚Hˆ'XjÂ…Z%î¦îpáC9 —©p²*œçI1áÜÈ᜛ fgÙÚ…r ÑÃÃ'Ôf¡á%5Qb?î¶Í„ð1ߤêµU=QTä)š˜ú‹CQQ‹Ù‚D±™˜F%ØËó‘pF˳³ä1bÙ —±¼ß?+h(^—(êIÅ*6;kUÿ®òùøå9êO[Çãf|˨æ'Ïf‚BÕ¢FgþZ²«Fâ¡yc¾»$¯è +ÉW'ðKhÚx½}›¸½/R‹EÆuwâ®)œ‹‡sè©®ÂkÆHÕ%jÞ˜Õ?"âO¨qÍÆ)¢èLÉÀÀ ,ÐøWøôàGPr†)j$@Páq˺´dBN³]ÐSÉÛyc‚TaÀ2ù#x)„€  ‚( T ‚00AÀL p:—(ÂÈL˜:•#«~hÈ5">O™ +wE‘%JщU<ƒêùÌIa‡cˆªÚyHT1Ü«ÎQbs8v!‹DE(k7‹ìvÇ‘j”¤Y6Oi Éæ ) Å”ö–*–DY_|L‹^Èè…ŒVУEÅ -sD,4lQÃá$é‹Z£†Q›E»˜ «5*iÅðœÐT©<ÒH!F›X-¦ ר¦XÕs YL2zçšK¨c7 _ªÜ¸šŠ–Œ¡Ý• àÌÜšÏ5NXÓæT¥«ÐJ®Š!™È®‘‘ÏÚŒ²yÀˆ'ÖMçE|KÃÎ ÅÞ(nÎCñ­":]4Ù§ªTÂK¿îì]M3$¯s¬Í(ÈR°3~L4žo>óO]þüóob=?ÕìÍ”ïcItìCåWeU'Ìç ÊOr–RꎞãYVµ¤ö¼{tK´"F'ÖU6þùoäO0î]æOÍùÓ?š!™c’Ì+t³!3º¹b cj2Ä’ø"Æ”i?Î$fÜ‚ªê5¨s"¸«À`é箎IQÔk‘J³¾R¢6^qSÝHgÉ$”t˜vÇ$¡,‰\’!Jt"Ÿ… ‹äˆY2wiIo$ºŒZi ÙxkˆµS…Û¶n9Wj:ÔØÇ3¨LAƪ G¿ªöš(/t\G¡ë‰))U‘ËT1U‚]ÈÆ¯šòIþn”¢`ÅÆ®p…kÞ[A\ÉvQY‚ù°£…yºF‹‘¯ÑZ+ +‡Ðddb¤v:iV­k4O((›°†a†_£¤»W§#ÌÌÞÔ×IÈ"¦Âžß±šù°{ÌæÕ5šÅÈ%´·$vÉŒL—HÚ*WK^$¦=\ÛLƒBc9H|j561ÖLý&sKžîŒÛ\w§Ö4\,ácM$g‹¤ìnkÈQ¢}ò³ëÉzW4A2ieLŸ·¡m\±§ñü[^äêHU]ú‚¬EU^‹¢%J3ÔÆCk  pMŒÂ­MˆM#–v“´úË­ûê”Äľ7anä÷å¼ÈæŸU4dkk¢î`xò"ßø¦µ'®x*¾8DA©|H*eœ"-íDLrÇ~nc¤ïËÏ¥º¿ìR›SW&›àü&‰‰˜×d1õÞQêGåI‘ò7†-™ÀnXj$buÎ(™ä²:"&!jƒÈ±ñ¢žÆ,JÊ‹âÃD.{ä.D5u-&èlºS‚ýŒ²®—Qìªô3‘aɦj~Í-5?O?ŸŽž‡„ä²’ÏéeZ„r–Cˆ<ÉÝv³v8ú¹ +®DÃᄘ·‘ÍRSy,‚1C(eGèM<¯È•IqÔVá:DDÆP´G¼Õ |M*DYuå}ûjªrQu™ÍÛDÃxñ)~Êõ8CyvÔ”Ë#©\­¨\îv”U5)RˆŠ¿êÇ +ý>㺫芯کþaÏln˜/×h§}[WzÒÚE3ã¬vÍŒá3NLm%¤Ó›F”–a§*6•ÑÛy¢¿w”h}9KJ(6¶œõŸ„i^8Èü+й^¡‚gåŽ<Ä$š®­¼PAžÚ‘ªÕn*ÁIPàþ¢Öíp´5ATI.~^LI&34I€L#£ VÚwW…}6üÌ4<Õ?Aax~XC¡Ÿ¾Bû~|òåB=MøižÏ71MȈÏpúéSƒù»0óÿƒà³ƒ`<¡ð>*7]ýt»¡\.šRð]þ ¿Ëážà +ö<¸uð/fX¿h +&†4ÍÛôGΞ)„†H4°Ã‡Ã¡äªÚ69ª&jt`ê$xjÁ¯Çäp³*xLsW Ri±®  +–\òà’¢¢²„PPDäc‰Þ2±'íÄžx DC± &ŽHæÚ$ éÕ0|¬üódÔ¯}[báe…Œ’ ËŒŽ÷ù‹Á…Z4Ä¡ª 5YxÍÄ@Ò±È#J2†aVnd 3?L 7Ã7vÇoÜÍ‹J8çÍÂb®yÅŠEEá +N)UyΊ˜ˆÅÄ'xü‡ûÁ©ÐFÎà*{Æv_~C¨e±…~0£Â0£íÅ¥™˜a8î™fð\“ºãu‡à"úàà*S4P¦Y{¨¨âÔð†÷ô§L~ô/_þV„#Â[ä‚Å`©Ó¥Jä+a‰)eÈoešð%ÅxÔBPŠV¼KÊ:ñ;p¢“‹äD¡Ú•EZ>u-•œ& #öpËq¶T +ݬ¥H 8èp’D¤~žÔa2 §ÿÿÆD*‡7(Ô¸uàç4ü!’)5 :§8cqJ‚ê@S D4D +4Ž+y5QA® +¸È‚B!h&ŒJÃW§?M=ÈO(• &„*Jè'ôÀXŠRc°”I*¼§RhËá°9ci…W0• nªÃUÖ䑼NS#£bgèâ—TiΚ8¡¨D¢a–³†%p(}h•Ó*¯E¡a,eWÉøÁSc˜ù¥–]>E 3E]r83<…áÇA*9…O ㆈœÅhˆˆ‚BX¸è"|XLÝ ³xíЇ1‘Ï $z iD_ªÏ48dü>h¦ö^-ø‰è =TLDÅ$Dks…•岈úeHÐÌÐQ…)%rÑ +³öÂGFk…Yt Ô€è€?'LH!œª3P[ŸÃ0 rž‚¦uýi¢´$„ˆLfÛP˜P(ÑAèo)ʇ •@Ž@3¡¸¾@#Ñ¥L¡¡6\.ÂRêâwÂE&$¤ S¸”8(&\¢ƒè`îêz ‰¨—Ô„F ’˜KW2-‰"¢å°;ÎfØ(ÛŠ%Xë±ä ¥F—Ðjh¥ nt0¯¼Â)|«Uuñ0ítÓP +CDPªŽÄ<=4KjyhüD|¨¥jñ„ZêP‰DèÁ"RÁŽh£8UyèÁª^æ2ÜÂÌØÅ0§‡ñJ( ÃDƒcé:4®Xð€ÉãqÁ(¢y{”·>¨Ü²LÙhÄqδB9¦ Añk€x€ð3pÑâ"pá +[ô!š +Oa:õ@1û¥ +ÎÄPÃÔ\•`ÅÙ#˜023¡HyJ-<¬šDqQ¢…*bŽþƵ-:U3$Ûmt@$Á2b$ÆB<3 DÃáÕѧ +ØÒŠ)j„ªäÙÀp³,Ô`?Ä¿LA‡($<2 ŒèR%KN,‡K·‡‘* Ùç¦Fô•íI5Á–Q0µ(X†ˆêÓñK¡ÚƒJ3[(ÃÅ=ÅB£J l¾ÿ‡Ó*˜jw¸‚'œþ™Õi˜Už\iJ5‡™ŠPS2x€ôÚK·Z9\ŠJ%ƒy¨• T¨èÁ'­Îo¢Îp¡2D iàLø8$L³K¨´4¸ +_º£p@ C‚¹¨xü v2šB‹CBA(*«TD¨ˆæ“™ðíçPåãíŽÛ+K¡•dø4Ü +}‰áL®7'Í…Š!·Q±+í!Ùù­Y覬_­¨cz'ϚɖßW4ƒ(7Y¡x2î±bÓgè¤ÀŽþQhñþIÆ©Ý +ug#¨Rà ~ œ» €½ œ’Öç/8†zŸtN««ý_w?=6 °p@™›WœÂ˜Ò™S¬×ìkHdÊ$½dÖùSY½|O:îRaç›Þñäœd°<Ò-Ž›QȬpÊÑÊßPX?"3Ë´L‚…Ÿí–÷Ǹ–¨:¦¡Ä-ù¥‘$JÕaËÒM¼êm;ެϳX¤-Ѽ7\¥Œ9;‚‰Rr‚¥ÂEF4¿ƒeÙÒ.™ ®[¸:KÀeI²«£…¸G|ñ³$µL±ä''ãžð³ñcüTÃq}`5'±Ý°”Þ¾cÖ!ƲWYæëwVÓ-3M(ãŠ÷Ü7).¸´Úú*›¬ެ`Â_ S•R•XmFFümp´zu%#"ÑÇ9Ö Ø+0OŸÝ^¤‘€—Ý9¨ÔZŒáú2[åçD†0ã” m€\?{ê F©óºœthœYOÉ-£Çu`3b«L+Àß)5äÛ×™ƒEÈ!SùÉšÞ§–‡øä“v¸¦ÃÕN1ͪsžêW‹ž’‚¾·3ÿ´2V`2SªWÐAJD8‚ÄÚ¦ÜV×Sy²)²¬éc¼STŸâ“KÉ“f.v®-R&(‰ÊÂÀhAÑîb>Å?  µ¡®_éNŠÕMv⊗ÿUq—Ž7•m´Ã“¸ÍkS­ËcbQð÷¶—ë5Ëfûú‰û>žBN2•Y‚•œ[®7öæƒÛBbÝZ‘y֨NJhÈÅù}U˜ÿÃèêø^T6–ºAêƒü‚ Ö¡k¯d‰ Ö†$Æ­ÿŤoõuåGÆO͇ü µFˆž´)µŸyOÄœAgŒeÍ‚ ÿ"…(û³ž@¢ös{9¹mˆxÔ˜³qaú3ª9–øüNõ¦×Wûá »6. ÿó`×ÒxFo/̉¹§8°Q¸ñ¿ü³ Tù\8Z·Yj]xs)›©#¼há K¨)£³U”˜pQ ·PžT*yŽ X‘¼ÿl[5O"dšOOMŒF*îß­Îr$Èš…pÈdѨô®Q 2¾,œ0[´áè}Æá±1üR^þmÉ(Ø¿ÂÈxç/3– nŠó;b‘C¾‡„ŒyÆTº$t¬$ [mÿ7uÙKI‘Ê”öLc3MAØ 6³6ô÷¿¬ÖžXÙð#ÔŸ5tÖ*ÔØ,‚¥’4L?×eY/`ìºE(Ø:³Lù•=§'·+ŠÕË•Mð&áʆ%ßVÌÞMp¯^n±wYO)ÚL.ÔfÁ —Œ¨‚6tŒCbTS ”õ;2ÆÏ½Ÿ]‚ß:>ù¯]¶!bÒÁ&©pæGòÍ„Ã}JZ•>P.¹®š4Gö×þRêÅC•«§®aŽ\ø;¸¸ +õ°ïKÆX“«¨h†5ö°[61²ØNÒŒœ¸µ¡‘0¦¼Þj¼; ² ¸YqÕA|Û‘C¿Ä*fÅ<pïo ©¶šVäx#žDš\¨@?ÅpÒé”p£Æª | UiU=vÎI ÑÝ\1<ïé¢×ä ^®ý†L”_ ;a»vÀë6–Sn ©0'Ã'GÙKt©¶t—‘B¿ð5¾^ö|ž ˜¿Ï ‘GíÁ"‹›üñ‘Ódîа5é ._àæ®Ê•cÒ±ãbdà{%1à7ýý®.sz;óUò0"œ’‘ÈjPð Òx¥Be=½up8Rüb9°[Ç^À‹c"ç¸, ÄpT¡'³eSE3´Ã™PQ A7 š‰B?®ÁU™ÿí›/@•A m_vñ¹Lô‡c¦È ÇÊÁ.ÓÂ|äÄ7~»à…µ–\Å.ís΂IèØ\U1Z¢£óÙûvT‹€TŒšÚG¼Bïj€y‹(é‚2Ha‘iz†2ÀL + À$øÉŠ'y¸€Iœäo1z¨LB×à’0vxfˇXIŽ)´;3`žý³çˆ<â5*@)bL„ÎÀÈwΧUÀ?Š›ùrÛDÇÙ`»šy)GÚè…fy`Å(‹ MøO‘nKÝc2ôø#$QZ MŽÎ‰z"G=Ÿvà¾TàqKDÃÝH²™Ž£(EèN~ üM鿘ÛOÑáÔÎú Úš´AQ“5ÒÍ(*qí»ß-ØHŒþbÜþQác>f3SŒðyœ§n>žEfW»ŽÑà¬ñ£ðA5 +²ÿk¾vTDz™¸ð:Vàö-¡–´pÆ‚`Ð?4ú\-1 ºVD¿˜VM- +Ù8.ÆlkÍÓ˜v×9ŠÁÅÑ`ŠW÷wŒ3`®Y¬m¼\Q# €˜‹Çbçn*ãS¡­Ï.«¿èÁÌ~gÃâÞ™¶zâj]#!SCîmð=É;t¶I¨JÏ}€èh^ÃåÀ½S ñ;»ÝÙ¹õ–84@`4$ý#ì¨]d÷ƒ”lã¼ÒÎÇ¡‘ÿ˦Ëø†¹æ04{ Ð"ÌÚhlŒœã«û|výKq5bƒ†Úrþ ûޱµsDbYõe³¸H_\ ´ŒW™é_.…jàrq¤hÃû_Ttmh¿ƒ¡Å ûò`Aüc%};S´ÙTݨ0×)Òá¡PÝ +2ÊøÒ/NˆæË@^¿Q{c άô©²Û¢þó{¬õ ÷Ø…Á‡!j§”· cZm(ŠuØô3ƒ²òï7‹þjAî+€ò•m˜#^\ò“+S鼫óq@«Y6Ui¹˜èÑðÝsÈéվңϵ¡¯ÏF‡$ -¥kXHÝ9&xUy¼oØéÞ‘l®xƈ¤Óî6É#ØÄo1“gøo˜i¾É…Q³†Þ™t{TD# †ýà—®%0lßqó¹t¢Qês·÷³k`D…³o·’±5Ä •oœ3lÉã"ÕDxúø9gBò r_Ür’ÿÿ@Ä¿‰X¶B4“×7g$û׿’…dxF T.¹)‰iÎY}Wħ<$z¨„ßðŸk…︤ýÒìŽ]⻋?çWܿ޵…vE¡?¿á—‹dsKÕ É«T¡æXZú!IÞ¹"þ—CC‚sUÙù'V^­æ…ghÚ:ÜXÇs#¨%í7UJ¦ê^Öz½ +F^X—w#§ǯí”àµÃ­,ËZÇ[¢<¢ƒ0É‘ö6>>¼ÕÝ8‹ð‹Ûã ”rêíìÚzÍaJŸ.™+‡4öÁ©«9ä^Ã̲pxØÀîŠõ€75aóÎ >‡frЇù´ÜÜû³a;¬Íª}àéäÈÜ(ƒ-Ã…à È;]`M ¿¸¤\5ùÒbÒb·‘X;ÙtµóW²Â÷Ã#óó•è™ùla’³Ö.nÉòŽ)T"ÜÃÍVzÌõ/{åïìžÿðQCìXÉ´‰'0Ô´žáJ;(ç`ÒÜ íÀ¼Ÿ¸—–?™vƒ¼Å1läPfÑbïþZBo4#ø™ˆìxNŒ †åSh/òu{O»F_•bXæœýø ¨tE sùªÚœüpÀsßðÎôãÔ¼¢èÍ8Wa^»+üC$A{Ú´l.{èÊaæÑÖáà$/‹ÆÍ¿öÌ:p7ÓŒžµVtr)ë ŒXuXú@J™!FëB3#PDøª™ï`´"ñ#…-N­Â”5,T‘ <$=^ï&&PÚ0UaÕW‘]Ç12·ö V³©:}Ùý½ó]Gªz¡ºíy 袦ðRÁÙÁò 0-ã݇0§½Xþ1™çívÆ$¦Ïu˲W|³è$À¥XÊ +3©7"N‘Ô‰œ„bN<ê=žÔ(u@±Â=ÏHÎÃ{Í:Í$ñ®$™m4úaÿ&íMDw¾bxé|Bˆ½°Ñ×YšË­1uk + +Ù0'.ŠùZƬb<]p”Úšx–¬aÂäà +ïû<†ª“G†^hܰX²¬ÛT›Ö#È Æl#‹‹õt“y6-b&zõ0¸È€˜ôhs.™*4²±+[SÃ58]üfh ;½*úP'>gOêÉõÎj)*èMéÆHn%’ñ)÷œ×ênh‰úä%ÅG[Û°cyƒ+«û€É‰„t,‹!½Ý5;= y!¤à\(-<pvš¥B+/ c˜=Ær#‘Ã3p €”_®ˆtòaŽ×+TºÏÎ|¯©))’°›å[¾ æ*¦3ãÂßQ®“ÊÄ´j\a©p2!<Æ´qÕF_€~3„Y Âw󢿱5 Hü‰zœºÜµG®–cïùÔ¨s]<Ë|Òü$´-^z+zà áfĘì èéM™!§¡â Â{ZRkâõP¡à”—|‚¸WðöôøÓ``pÂ5A|ºx¨ +hÝ2£ßά¦s‡Dã7^¯¨]{Ö Ý7cfª%±ïü9–^µ‚Í8ЭÊI'ɬ}˜úeIx×êŒã°èèÎ Š(6nl͸EèSˆ¶#É#J‘pÊ”»ÄØXOWð'iÝðúi[ 8,¼‘‹ÞDî:L¿ÐêC”×'ÄWØTå¢e-E¿ºÊqÎ-8½Sù»’¨É ·ÄäÒTg\A"–‹Ë×/™(pa4Vväàp“‘à*ÀP%4Ãåê—oiãr 7íuHåç@OÈùÙ·TK>â9E˜ÉìùwÛF™‰ ^Ìc*ëqéäœê¡-¹ã*ywýÖË««j&Ã,ˆëSÙ¸9)áÅIª<8nÁÅÚ´µ64ì–VÝTzàT:"µÈ8ȼ$ß–:ËÜØm뽄ªM†/’Z8,›¢ÓVÞ*Ûtº„Qal.ÖŒªo±ðÔ G“„;s1èYF0`)£AÕ›0¶—¦ƒRq3WY¥ç¤F(Ø…ôcòó¾R=²À¶° ßYoAÔ΀š2„))¶+‰J7¡A†˜R¸I—çl1™“Ü@ï¼ì~]pKÔ6¿ld/>sgv¸YXô€'”Ïጦ  kq9ºHÆç6•ÞÀ"{ó–Yø}¾„$~.÷4’ÖÛÇüÖX8§†Òœ3Þ3Ó†Ö—_3çpÊ"¸ªÇ<æ¦ðP=YÇ—ÿo£Ä +\¨l¯pF ¯aA7:ÛlÝÜU žNÈG{È·ø ”Ðëx}n/XyC§×tê™»S5`}ò¥àr­Bðã¿SmV k‡G•E> ÓGžmããè®]û#Ò!Ë»@_îï3±ß!8ª{åBO¶Ú†®Èk27{4ºäRßwI䨀ܑxÛµkój¸0òæ—¹µd†¯lac´èp‡ØÙßÿŠúëfÒDh|† EÔAR’Þ/¯jàKó­ùF‚¬)9ˆ¹5t¤rŒî <%Å ~ gCÙWX$~¼Ûuöj.y¯Çgj½w-4 c¢À|©Ò{êØŒ ¾á£§kÇ`­ÿã‡TdB Òî kö2‡ÎE­´ü Huï”ËE–w‚x ¸ÃZ M½ö݆¾-7aËÔ ®›Oàˆ£›<—R*Ü®Ï3sqöœ÷±aëwˆªÔi„Q·‘º‹B'4X(¡£Vaè`„.yãF•Ÿp:מ!ÉRȆh\Å¡R„:=j}1Üd4yOÚ»/¾3¯ª ,ÂV/ŒÅ‘<õòsÕt’%2rsàEzO\fe6·e¾¸]"¬n/~ ĺ´ç{ÑP…‡ÿ9ÁÓQRΜ< ŒJ:Yj¸°Is¸¨7*1!ûùG_¨K#ØzW…¾F,p•ˆîOŠE>A”Õ’r14ÉâŠç=}åsËÞ ñ)¦·t?Ge‚*Ó¨B 5?R´Ab¼c‰|ó˜I]’åUHÄH¨uµÜõÆô; æ«@aÎ-BÐûÒ}öP÷f·EBx}ƒ;0 TePK0§ϳfÖeÝzKª¼ ‡¦›§þ^† í(ƒŠy¯';åq+”¸‘zõEd¼vÀ +$,VHH`ßjÊô->Ë&t!äôA×_£Kà ÌÓ Ç†Ž…’‘ñ7É4ð^7Ôy¥1Á|wê;&Ô…¶\fÓ”Fƒ“ù{°‰é ,<#±`k?>ŸG™M_icÓöìRÝâF¶ídâ£È€b¨•±˜„$´#êI_B_3t†¶UÃÊ9ª6;oíi” ¼-2@þe–±àfiÔ ª;ø¯1s)½†ý,[õ ÓžÕIÚ¶ö¹ÿ†‰µòð-|Ñ‹ÀI@¢1ÎálJemÀ–T®‚Örœ[Ï{ˆ«‘ý¨{ŠÁü’•¥ˆcÂëAŠzVp%r(úѨ_­Ý{J½¦œy€ž©µ”ÖÍ­—LÀ9…œ¶Kæ¡\]èJÈ2Ç®=õé|$ˆàЩ¼¹^e¬‹8øm /•Æí¼3$¤N;]r~ʣø‹‚˜,Ã9Ñc¾?ê¯À¦i6‹Ä>=I!ËBEAbw‹ŠÝ^XøÚnl&£å•ò†Ï¹øm/üiº‚½ùƪ·ú` §÷8[K°˜?³Žé±Ef™K­Ú9ªSs‰3žê˜éxÀÀNd¬Ê,§ºÖ’Å +á1˪Øfg µ¼° +Òeì)Ý"‡PáS³!‰¶§z‡L`ÆgÄ‘¢½À™å•ôøy·H£æï™Nl´ó€b²:[h¹¿èëºÂ•j9|ü*â€ÑeTÞ“Ïq3`ÝŒ·èê.´Ý¤ ô¬Â[ÀDÌK“Z—Úh|3Z&©Bʶ¹ @2 pš­ÙÌId9Zmd?𩱶â `»H|5A pƒæN/2‡`_^Îà ¼IÁ6xì¢È‘ 6Ö§–§# á¦Ä©5cŒÊ|Tìi%×î×”3pæ09°ˆcåÜg±â"§È¾•nËw8å2w ‘ü bKE’3Æb5µDm‰ì6… /ÞŠ6BC~‘” ekBË*gÜΡ6:ãgq(S=’­žzn…–PÅoG¾:6Od<6¯'e¿¥¬©œS½ŸŠ†_ {Ö¥^Þç]…wƒŽôR·åØ}Ò·ìänФCã÷J+’Ý ÄÁûÞ¼ÄtóRÆCL@e‘š{‚Ÿqä· ÐÖº²±ÞdEÌÌœH‰ |ÃpñûUB<¾i%¸ß’Q¶ý½ÏßBôÏábA‘Àí M>otè´ÏɈÀ«oQÙB .sŽãÏžðMÖ×;u%>êªÆJ˜ñɨ9–ÂûÞÏIîdo oÙÌXöÊV?&Ô8Ù¸E|V¢^âàqÚ®h~ û+9 µn癌1â~£ŠÛc0™©³õ{÷aoxÏ¿esL;t×¢ÀçÓ’Þš¨·)º5îÕ1_ +ˆ)kÙÌ!6Mcm]©ag?Ô¶äØ:ïÌ/Ye™òêI|z1IA­õQKKn_ý/òF§Ï˜¨R6Aå˜i;8µN±*ûò¾š²i0–h)à‹yW"QÎÊ!£“Ĩf“AÐPbÓ+¶z•´çµöRÝ”‰FÂï; íã}{eótsDùÝUàŒæ–„ uÆ{–„ÔíOæ ›èÑÊ9õ5ŒŠ‹n£UÅ)äÁÂìÛ«d`–€Ëu3÷ªp®§÷ƒß¾îÝJ4³Ï”Y ý66)< $4~¤zü: ¢ª¼ý¡IDB¹¶áJäÏI—¤Óò† Í«Š¶m)Ù|$o[‡’ÄbôÙ{ Uy#KhÞuÂ"V]’Xír榋˜æ#κ°•;¾G>ðµ TãCó]è)Žáƒ½˜ÑìÅŠ€ø¢ý÷¯/¨zo~e÷ˆò/Ôqk0v˜=o‘ö·`Ì“=üÆÎ„Aa€·tÄ0¨ÊcwûRaˆ±áôðabŒ“Wc®èAt1˜@[3 Ïczcn)x ÅÌã1uyÔDÆŒÊã ÉXK¶7Ëh)cŠ\•‡¡[+ÇcÌñ¨aOÃÖÁ’à ¤Ö1®ãEpÔC8¤XîÿãsÕÁo¶ß¸´eö ¨UÇ„ÄßèÃÐÞp‰Þ°D&òÆñÇwÕê ­ÝXm¬nPŠ:( h«Z¯Ôâ_9«ŽùrÃàÝqÁK¸vâm`u o¾t¸ õlÙk`«j\fÚ€5k+»ÎŠªƒðoÖAŸlçutûôS4‹ ç”ß¡† è2ÁPY;å0NXkòjðW¦k¨Õ®Ñé\l „oÏ€bVvpM^|-À ‹ñaú/>+CQñ|L­_ÜŸ>ÖáÒëcÀ¾xÆ}ìØ‚0ô…ªü/¢FÚ¥Œï…½ý`Ö^,òGžõ"XûÃG/þ¸¬æ[ò¢¡^¨ Ìïâ(ÉÔ]ÔCÙ.Ô ˆ»x$<­‹üÈ$êbZíg9?ˆjcs!I¯å‚F‚ì$Á¢ ÛÆ^#qñ.ÌË‚, 1È€oa­A&ï[tÉÜ‚Õ!Ý>†BµÅä’d¶bþè¸%2t-¬¨BƱS2Dµ@ïBȧ…bii11Ci5DZ\µå³Àï t® +?‘ÍB€‡î±m¡h‹‰µ,P"$¯‰NQR…HúÈ"šˆˆ},>‘QcÑf°X^" ‘°aÑô&²á°P€"£¥ÈtÁ{*B +XØ\:ù«,’o®{¯x´EÄó +‚]dä]aÿ‹Œ«+nÄȨ¹‚!‰+ì4#äÝŠ;‰ÉV¬¥Vm„K­Øè|V]VP|#Ç +jaEq§¯¢+]E~á­ÂÃÎ^»šãȼ±Š¸˜‚®iU#,ª‚6t„ŒT!±#DŸŠ5<ÖT´ +f©p‡#©pêÝFÅ©ŸD¢™P—a¨«GDßSÄtî² Ú”sÔ—‚m–¦€ZÁûê‘î/…Ù³¥Ø,¹RÕ—R±#'ßu„@IaÒ H!ÙRÀ#$…]-oò>ÞÖE!è:²RQ€É,Q¬àÕBˆ”6‡bY„¡È‘:¡˜ZG´# ä:²k +Åúܬ#Œk1…æâE±9Ârõ'„¶ã'„TéFË‘Mø͘#³ì z"o82 OX3G¿cudm;A÷¶NT]Ôu¢:x„#Ó {­®#ñ*)' §8!IJ ¼ <²¼M0¤G†f†|dÔ5qߌÈ@Bæ$4HªN&†…$4Ñô!ñáL<¥Höe¢+#™˜LŒªõ˜¸;]Å€H2óÙ$Y †•D+0 +Ðò%>㋌­ðÄ)’Á¹D]O2´%¨”L8ŠQrô• ª”Œj%OÉœ TIaTbŠ•½r%¤¦„ŠÁ’%S-Ô²$GZR-éþ$P{Kè[G„èîMâ9^1“h­/ÑIœ&³•D “qO$\íPLr!‰à±®NjàH„N&ìEÂ3a˜HÜs&Q‰Vh"'$þZš¼lÐÔç´ !¨&{ ÀGð«k¢ÂG@e“Áy„ã6Y½#½›l"Ìt'!sÄJe›â„1ñ—r’Ÿ†..x윱“J'jS4"ºN—*o'Ü1â<ÉFää‰Àñ\zòæ"JÙ“M-â.>Y‹Eˆ­Ov¬ˆýdðõOØŒ5 0ƒëJ™± +@5Ñ•ˆ¾ø„¡§B¡#˜N†Böu(…8 .Ö[}^íÙ‰‡`T”Ý9Dº‹2¼!¨nF™­!äg+3Æ£ð† Æ@•CqæBÔ)Ó+ÄEIÙK!ÌuR6Nˆ“”²‘„ !zŽË +O€óE¿ƒ€"SÆnŠädÝ/eÚ‚‘)³Äf½$"šÂ‚à!S¨Ëh +uˆ3‘oESâ’¸B™2ÆA)’/eN€8rLÙ ‚ô“J)Œ)d óÿ¹{eqV÷ÐÐJ^4…v¶hS¨@ ´¶ +†·)¹ONá ;×õÔUùô ˆSºXm +!G4e œkSž œ‘W„ÿ”´)¼ÀâÂöþÀ_1  §pu?}Ó­òC!l +ü`¸¦pp~gJ¤×‡¶gŠËôádã|Àá¡|Àû^.>„‚¿òDêp:hÊvö€÷˜2öz°z)ƒT“–2_z ÚKá-ôà$d/¥<ùÈy@~ó€{B‹Ðq<ÀPL<€¨â€\¾”¾Cxúî`×R†Í0SövxE«$FqþVJeØá¼ÒuÀapO0\˜¥^çEÔ*tD)ròïàÅ3y—ƒÕ(e ò­rà(™ŒŠRâC”Q +5ÙTCÇ¡²^·š1ŠÃn$e{M3iókRÀ¬x¥Ä?˜¬n»æ~M[J>l»LÛ_JÄÑ«’»~ SL’‚7šBC~Ü +“¦  Û”"œB¼×)*=…‘à§”©‚ +‘ß Ú¡²ˆÁ¨l`H¥!à`ªà x££R`Ÿ©t¬ÊS¡€Ç¨BpÐ.XUš§Š p¸mU9¯_2.7]Ê¿¬ÂE諲#ÎôV•)Ê”‚§šèé¯õ®²¿* äý"Z%´«pŒÙ¢à@º”à ,)¼8 \K Ù/ZaWuX4˪ô2Xòn®´°Ve3¶*MÒ©CIŸ €úGK"BªR‚ bè†O¡'ˆjUèVV…@YK8˜F¬²â[H ÅÌ=I²cþ÷k•¾{úÊHƒb}rrmXIã ø×p´rCñL ‚§gU<ÜajE¯l¥ñÚpÙ­äL"‰+ŠÎ†;š+'eCãº2±Øð¯¬”^™Ékøå+³p ˆý +ÓYƒÅ¦WòÁ’­j¨-,ª´Kû¥F±: Î Óp¨cI4ć,Bœ›üfÈÚ¤²Gƒð*ËVÑÀË˨;C’'Ð yfÙóHp– žÁγ ç “-›7¹háR3Ø(-,3ÃØNKn˜!”©EªËðæÕrÆ2$op-#®½À–Æ'Ë_ ÛkɰslQldX{¶ì2Ø×–±>†å(Óóc/Z×1˜Ó-ãe¼e,Æ`_}Ë>³œŠáBœÄpP\¢b5. ç!—« C.å26aX¬Ó£²N.ÌÅïÁpÀ¹\óÏ…U0ø +éBir_ÔE`ð¦uyrßcneÛ¥l^ ïÑÄ ™uQ¿²†—Ñ~«Ç‹)MÌKaØ_襾»Zõ¢/²ýu—]И½$S»º°†…— QóeÀqajR¸Ø6ßÆð ƒ¹+mµ­ú%¶€þÂa-Œ{O nü—¼Ñ°†Õ³° ¦YÈ­ Œ%¾¾¾&$²@ã u‚ÐNƒ¡C,Ü=˜EÄBrõ`ÁÞ0k¬f¾^Aæ—À®ð ù†`Vm…L³Á¸‡)@+P„s¬pÖˆÙ^….Yb†µW@1ÖÊf5¨bJ Á“ +,f1,M…É‹D*0Š1 QÁ3†ýS˜®1;…&pŒÙM•îtLD¦€’ǰ-…Ãû˜¦Þ Z«³@&NR +B:‘l¨ldƱD!%ÉŒ +V-™‘„Âd“P2”­O†?aFÊDÞ²¨Œ7O¸R+óºò]ê=–Y%[¦YN Öeüá„Û«›ô˰±qª·æ0#Pœ€Ï^™ÊUf¦Ü—p‹f’Á„äÕŒ¡—p¤Íœ¸„º7³€–0;ÎŒ*_ ¢ Öªþmf²”]<³J ë™½N‚>³Å$üög& `-ÐÄ=V•U$Lµ3CÂKvFc WÑÌê#(ÌhVñóÆ£_¤ù~#М4ª5ÂõJs›Š`šma—¦™zàÿbCƒ/ £mr…Šà÷4×Ô¸¬D°jBFB£†Dg©¡ˆ}jÆ–9@aÒOM¼¼~¨æ a«Y¼ÔÊ*„º®fB€àÖŒ!„ßÌšµZÜA;ŸFÁ~®Y@ìá5Ó „7_3: ðn‚Þ ÞᬉŠÁò®ÇF/ ¼ËØÒ~/› üÇÙ¹>P m(:<¦MRÅÝ0ÂÆ†½6ëÞƒy¶Ò0pvõÀpÞ†%z°Ü„`dçñàÄróDA+ï@…º!Éì`7YÑšÜù:øÞ¬ÕAêåͼéà§ÞìY2\Þ›µs0ÞóÍKU÷¾É2Áþý†L98༾ +rPóÑ&ä`$À8ȦðpðB…8ÍÌýovm½Á?Ân`±ßLÄ Xÿ›‘m §m£ulðäùȨ´†"p&<"ĪH& “5¸µÕ4@=Ž4Àx 8ðÏ@G‚£±3H78s›J„3’èºÂÙ¸ .Î^ʸ‡Ã[y?q. ŠCûcàeq66?aœ±Å€VãÐH Œ9»ap›(5䎜•ö’S¦0åðþ‚ã*'©W帳œçåtðŠ9”‚ÁÊ™31®9[¼À9Ρ»ÎsèDü>À€—‚Î ö  CgÒE§“@:<0•N¿€f¦c(ÀàÖÐDQ¡åÔ)á«aõÕ! ®Ð:™f\‡£0pzÕvLò|°Ã¤0 Œ†‚ZÙáyv8€ï´3£a;Cò¹þ_`R¸Ãÿxä'?%wŒ ¸¥;ñb»C¶/°ä ~…ÒÞÆ ŽövýïŸ T"Ƨ„'î-hnx\Ú‚?ϼZP[ž²ÀÇ‘gYØÄåᇘ²<¤¾)æ!ÒL•µ«kž0žóðb(Ÿgþcƒ[l½³üt¾å[µÒ?N¹ð +B”×|0¯¦Óv “øŒÑÁ’åS@ˆKŸ°û¤2Q¿®cˆÕÌŽ  ¤…h!³Ô!î„(%TF +ÖA%·¥€~OùÚ ‚?–¤`N¡À/Õ¼›ˆ¤@œëC‹âÜÑÆ#)À”Å=õJÙI +’§jJŽH +x×ã¨m«IAßHlp]²$?»Ò‰¤`S +&be9u’‚(G#É6²IŠG +ÜÊjV:mÖ‘ëg$ÃÿYWæk):}àSú#ÓQž¾Ô}ÖMÁÇdãVÊcmEKCOÀm ݆ò)MÎ]‰bƒx-ÌYíƒÊBÐNyÏ,¬Ñì9B f*õ”¬Çà¦âb—‰õÔEÌ +ÚÕø² Ô3Úóh\ ›ÿ,!Ø•3<ÝQô¿¹¼Æo‚ûÀ»9‚¹l@æ¹#A{¹ë¨Ò$b]²ýæC=`ÆÓ¹ÂÛyÈ9€ C滀Q‰‡©µ0( `hPè)5vÀÒ’Š:`²©ü‘ÇWýsÀB»P(Êr ýv ïÄbÿÆΗuÂh)E)hB7ؾ½eô~Ü”ÄrN²6Šþtcÿhžf:…« } D^×À–˜G)éÕV ª#jíO¹ƒà›Š)Ži äIFÇ=S'ÓÀ ¢sX´/F1vWC«v¨È’ê ȬpÍ' Ðж*¹abô òÙBxÜ2@T.¹¨fï¤EÁ²ùý*:’’èwÅ@BqÅx#>À Éî ¶ŒÑ èËÓ uöøî^Iÿ?/+cíÍ,|¶¾<ºÀáiÖ•·ô;}´y˜ºk¤ ž¶TQGø&±p(fÒY„Ͳ^ +i_~ƒŸe$8–"‡ž·,=pB†p­âÙQ—àÑ{Iö\öHpQ¼«øo_Ÿ½ttL´xê´ð=1\ å(ð,YíôuZ +Ø.‡Ýì\nÁ^Ÿ€ÖsÖ眾O@·#×k¾tªA'Ð?­pCœ„Y x˜ zM 39u¯ósY,bûeHB[g–ÀA +ÇÙ´¥  ú«J1(îA`,õŽÇŸ­W„ÿU|ZÖÛ·³@òbÅ}·H¤M¶˜¼%¶ЕE-ûÌ÷óì© ¦e‡€Ö4FuB(iî^*0V¨IfBúòñrƒ€xã(òZGÖ¤â}@œUqd‘ð +>vx4g×åøA­ sþüäâUæ ÝÛ,­W›ª†ü~u˜m—9àJ‹ÁŠÿN¡œ¤<ÁŠDÕ ˆÜ±BÖP Äéa֥؀ps[QtòD@ [´f}ØÔIè–Ô+P+ÃùÈ!'©ŠÞžÕ +¬ü¹iò|=Ò¥½•|BnÙ’\€•*î`&‹_uТPh´×¯®ô+€Ú •™ˆgœìKÃ*€“›€W)mˆ³GêÐ#+"ªäpÓ( +×…›!O@<“)Ž0aš (ÕC/ó7ÏT àæßR8eWÏÎÚC©±É¡ acƒ&Œ€²P–;áCg€Ôˆ5ÑiÀI„ø"3JRpÓðEÅ.Œ ß3À ¥*ÎNQuß×\<*˜`ÏÃð[U !´ hl€öñ­\‡*ïÍægݺ8#ÛàÆþJÙò†ã@‚,ÈK#ºY•û®qknFVˆhdŘ„ˆÈe+H~tPl&2;}ŒcV‘Pöì}g4œ%"Àª3¶ÚŸHï¨Í-¦d„apã€Óa¸ÏÙnèY¬P[ÀÐç¡%$¿Ð"Û“f¸ã.¥Yc[T ’Æëˆ>«¿:þ)öyÄ£’šJ)O]AªÕÕD^"%Õ@X¿a•¥Bð~áZR  \”|1‡f €Èj¥Á@½Ùûå¨ÑI{G‰&x°Ù÷bÓV@\¦ãpm‹è¡€DjdA<Ö¨;Yàÿ?Ôª—eÞÿOÍtm>ƒŸ†ùÿ e°Û+5û8sÿù + —Â2Z[hêÿ¡Øéið%˜¡°ü—knæ Úš›YÂÿdÍÇltúŽÜ’Šwõ„õÂþûŽMØ’ ì_3uÃþ™D¸+…n-ReÿºmŸþŸÜÇ¿ µç?¯NarKc´Î^i‚S‹œÍ¢e˜iwPÁ¿RÌðËû®YBMµäþáÙ5t}SZÚZ ™Ñèa.Øÿ rÓu[”Ê]ý7?ù‘µ N°h3‰í¦è?ˆÕø±é£]¢ÉóÀщáfþï/.(RÂVþÚ¡›«ÀwEþ¯”Êø -îƒ +ª¸3Ù†þ”䊂Ó©ø£~¯óòì÷?t…k71u[Òûgø …èãz?n.¢çLí,íþ¿kfˆM=s†#ôš…nlo?òÜLˆÔE´Õþdi®C¢“ª×c8rf¿Ÿª=R‰:ìdž…ø}EìÍrýBR\Õ$\l•¬þ.*ê™$öÔ?ȯޠKЧA{‘?üºŠ²ôsV ãè\‰ÈbºJWáu4õ;tÎ1ZÌó wûü%Á Üèü-G:\Ïš_;4°¨/¿bþQ^óË“v³üÁ{ +²ÉÈ#“å2ø`ˆì^.2&9mj<ò»²ÿüÆž„é>~“¿Õ6~럎Õ"²˜-~#,ó?EEâ7bpÃÏà,|¼%lHø!f‡qû 1 YÔ³ ð‘"~„àîóò_¤õÜ÷ÑgeïWdBÝûïg›HížÝ4:—÷]‡3ð‚ +Õøpù¹ûüg>cä>ÑL÷£âe„(÷iXÓX¸gåÜgO®”±V>ˆÚ@p.ÁÍ 6÷ŠR´©@ü©à_ ´ +‚ã^¾ ÷ÙN÷í—KmsûT&°4ÀöÉúÌDÃñÚÓþ¹­uÄï»Ø+K=í3Û«}ööÆg8Π¦ýH”Šy†‚i“„ŒÜª§¦ýJi#s,Ç)Ï´¿‡¨7žö¦}›W¤°›öã:Zál„¦}ˆí©Ëãò8fÚ_űaŠÔóì'¤:ûŒÄðOj)‚:û<Üý+-ðý +v—dçt/uöFàgÛ×rÍŠžì)FwOþyNöEÁå|1 ¡û~ÿEèûP‡8`¿áÆj圉€}Ÿ +]·D4)Ì€ýî'zò, >ûV]eŸ§Ôßœ³dkÈokìË;Èñôfý€ž%þúŽÃ»L£‹j×w•ee£K>këwõ6 +ä)YÿpÁîRAY§aÐwSd¦lò"ë+µ‚ˆ8…dýt7¤¾‰°›Ÿ £SñÙ…g,ª?¾Éô¨þ]4'¨T$úúmnúTÕNPXŸ~ÄH)” ʈÁ6}")é£M.z,ý³“Z–$ä­[c¤ß$ +(O5Ž‘>¨4¸å0£ÏG‘\QÝŽ:ô¯cæ),gû}w'ï¬{±SЇ,_úbÔÛÒå绬M^¦í&y~ßâ|¼5ç//b¤‘ÎŒ ôf7ŸSro>O^¸à¾YÍO8ÊÒ;þÜÌü6=TÏó1d¢Ë0__0|eÎTü×å^-ßY£b~c‡€ƒµ Ñ•oÂ%ž€¤í?7x>~µ¸]›ËÔžÅÜ Ÿ%?*«Ê+¾O)ŠO‘ᔆ=~;®^Ö7ž•ãCïÍÊè Wp£P§Kfy|ÙŒ4¨ÂG‚‹›·ÁsfH¸â{ÏYÜ®ÿ‰_åëÌÔJx¦Ó,Füå1ýQ„…´Œ=|ŽR‰×<1uÞ Ÿ#¥4|Zvðwí5ܾ5·LF9 ðEø§éŽÐó‰&ƒ¯™¯Î$î÷À7§9Š‚ +êð5‡Ü %7à?±%+ôïiÇU®ƒK¿Gïýç`6±m—ë{9®§·gÁßuR›j–ˆì}_n´ÜÀ|êƒÞS²ÿ÷ŒþX‰ïK3îh¶ú—æï»ÇßòÊÚ*K*íÞÙŽ¡þqü±ú¼º÷…H‹¬~n¢{|þçãæãh¥¶~§2"º _*î?¢M)lKaýöß}é¢A׺ý;‡ˆºcÛþ›ÀÇŽËÙ-Y7¶ßHu©_—mšµöûÂHåÁúl1j/½J“µCíMôÑÂyÄÕ\£‘s¶¥XéµÏ>Öº—ø¥x;D„Ú™[ JÁ²¿Î¾›‚ƒGiÒšì›ÙL5ö×{©çÞ¢ +µŸ#ö¿‰¾ÑIX ì%‡÷õe¬|êÑ}>¨W’Ü Ê{}ðÈîÙ]»šQ€Í—r½ÏÛ‘o/šK·¾$nn¼õ¢vZÏ "@c ‡§¬ÀÓ—Ú=`=ˆjH¡`½¡¼¢™ÂÕûx¼Öïf¸úJÛ+¹±I—¾ê}¿V*ÂBd˜êO°ˆâj@cú”ÒîÔ¯ÃðÒd%ú”zö1{ˆ~ùüHŒE}×Xd©²MZ{©l +1:’ždy>]yIâôæðŽÑ€h"QGÓÃOãåé !Ù&†_ú¯§ n“'Üõè}gˆä΃Iß7`%z(*½ ¼…sW ¬A*½'¹™‡ÆÓÑþ£Ò'¯ œâ…>B¥gš],éAÈ<+2ÏI#KzOw) am.Â(ƒp+4Ô}Pü`¶ÿ!&uIÿ'{È~B]þš¨J»í¦T!=ùIYròVx.²ï"öGHOëÔ!=±{ìÀ5 +Òç!dÞtBz#¨ßW6Ri­ƒ ++¤—óíX7ƒ»ë·¿BúD×KûC4HßùkÇN-h¤ÿÈf¨`¥»]׃ô^?s@&.EWò8¤¥YÀ$À€bêEÿë_–mMÅD/ý}LÀÓ˜?€«C®=ðÚÍ…^ >¶)kAOù6{ºúºFÑHJµc~VXˆZ8´9÷ê¨bÎó˜‰Õ(SöΗ(zï§ãé\ç»Çd¥ç(“åY¼æ :¼âüi—רËmÞ߃¼ùN(>]ñÃlÞ½4DWÍç8s¶‚¾¢áK€æ?‰Ru¿y&Þ—¦ã—y³ù>·¡dÉ·c~| dnÀ§A˜+ÌC8¥9û‹(½`ÞLŽ45—thP1Uky˜¥áVZÅè+¯)–o¤Y¸û¬ümté<º8Uâô”'‚iDQÚŽQþо‡ÝËå“¿èq5Ò|ò¿ìx½{r R“ÇTç@wl–œú¦!OWYò64cÇ…µ¹;’·üd㿸ˆFÞŽ¬¡Q¤ Õ‘çM´¼Gȃv$_q‹AEìh<41t¨Ò­Ç×éU,ƒj\Y²ãU¦*]†_¡å8Þë2êHg|7 +^ªÐˆÊ%Ÿ¢P¢ñ¹i´>=.`ðP…Œÿì‚0ˆJâ†~ñÖ‡''îtòü$ö fÏgx½+þVýúDMŠ7¶¿‰ç8 ý(MŒ$¾VçŸ*P:ñÞ#ƸìX.( ãáFÍ`-ìTàÖ|„–}óJÙd[\3¼lÅA6ÜqUÇ%]x«Æ ì™ÐÝY¡ÂÛˆ;Üú¸àq oE¼,µ¼‡ð¡Å™r(xë)Yn1Äí[Ÿ#˜?¯mÿoÚ‹…è‚gÑvLÁî}Üh;L°Z;²S{§>æRPn¸Ò(ñ‡¿v !>¸B´S¦míº8ü¬ö‹¼ XÈu³ÓŒÚ÷×diM]Mû–F£)l?%í®£¬$‹b¯ü‰öû+"N…r±FÚ[xo–õ¢wö~)‚|Ý 7»õÐOއ[¸ëeöʦ¢¼Àà²iK‚ýfÁÌpNMG_ÄÎXìfh™}OwPÙ%×CóôV›îmÐÆ®'rfB‹&(¤§‚ìu0Q¶"±c ¡ã°§mVƒÃ^„vž6ëÉ(ã„}Ø÷ àúµ)ØQëï¶£2?R<û`~Ç!LI‡ñëé«õÌE\U‡Ý{Ý0äŠwJ]‘ÏkgíÈ‘ò{î +t×_ )CYAÝqé–«ædZì­üy—ëm-‹D¿ +pE!\/<ïr¿Üº;†`¦fJ‘[? %iî–ÜâëòG¸ k‘õ¬_Hû¼ ×{e]xmƒÐÄ k›Ú빨 J‚õÔ ”‚ÛPÑ‹2d=vâ!ôêò”¯´„ /éÿNÆÕ "w`ÙyÒ¥huáô}!O´:à)£Ï’¶ö«Þ¦;)yU¯¡´SA\zª·ÚâR H¶í.€gùÜYJg$]ŸúvØ;ØÔ]ú§}2g-õïLnq¤¾5Ç€Už6êg"º•íç¨ç[â[ÅØYŠz»}Ê]æBÝÔù¡00Z¨÷@CʇuÃñŒ«HŠOóÓÒCƉs‰z§+ˆg °‰p90²9ýr/K5¥›öuà×ÄRÓIpPþ0Í2Ýå{¼B5üDLë==¿nfš“Ž@f@“iK¿Âlí¬­SíWºÉ:Ns‡ Szàþ{ß·vÒsô+ª·ãÖЋ’Žÿ£×Ö/'ŒLÂõk”;‰á Ò¿ÄVv‚øRaKÈ£·^7æÑs”Œb 8ºKSÁžÑ[/’)õÝt⯢?#@’ÁØ$èøŠŒÔ×nß›~¼,tùIGè³ÈI/¸T¾'¤üîz²Ÿ ôLå¼›KÝÜ_ Â"'ý,ŽT>%úŸwžñó"'ètÏ~>å´®²¦)hŸc-øÂc>¯Å9Ñ’AÒÝs±MëB.ð«pSϹ'«×Aѹë¾WÄâƒ3É-'¦49´õ°0®4úY‘lV%‡L8EÊËc’ʹ_w‘œ UGÞ¥D"fbÆÈ:ƒŒþ"õõOä†ðÔœ(-ˆ:äHñW±eB +?.A7-ùiàHQ]<…Þ9ÿ˜ ÷ñ¢J[ë'‰÷ÿ[•ÇѰnÊIçŽÉKy½½)Òqð@x‰XR&ÇM<â""'pÜÂY—.ÐÛø:µ0«”F +¾8¬¥A!Y‡eíJ²†8ã,âŽûŒgÖbI‘f2>•92êdÜIŸ9D^ÅøâàðûÌ·´ÂA¢D¥ïâ ÏZKrT­çúIS.ÛÈ$PQr¨VA"Â{E|m[¸Cd)ÙÝÏJ·¯¯cUËâ<ƒ+ §Ëâiè“HUCÊoY<GU«cQÝ-¾=²k¸ÅåX‡ó¬ÈÜâr©à@`2¥2.»ÅUæ3†Ç‹gÖtÛáÅMD\ôgãW±¾Å•¾€VW:ù•·¸†Içoñ”bXÔH< ÷8UÂ-€øµøz‹Û‰°Rì[õÃv;*³~‹OYæœn—Âu½á[ÜW:Ø~‹¿gx +MqM¾ßâ(sN†.‘»²ù-®“œ(?eßâc¸Ê:¢Ë,îgÛ‚%h¢tÅË¢Ö vÅ-&ïyjD&»âŒã´fÛg쩎}Ì¸Õ +UÜÌV/ë~Kq0r^ŠUCÍw‚)‡O]Ï+E”Šùÿ&€yuLCy²{GR±‹Ü'ñÇ&Ú>×( endstream endobj 19 0 obj <>stream +€]E\iÄù' +qmТ‰üù!0Äõ §ÏÚå‚MDr~–ôhùð”^…Cöàáÿ®„Œ¬Õ9ÜÏ<ü n@î w|Çiø[T9Jëwð¸ØZ‡ÍÔßžžÝ¼Š Ã]]EÐvÛyêq.ÜD,&ÎÈ$5~AœíY‰OáMÎ%Ì)¼ìƒ›LO8(%.âYùMÂÑ}¦” u?JE¸wb8ö"b*á^Ûd5­xpÇêj¼Á¯XÆ1¡#}fð\ -zŠñ.¸á)”Ôm8 +¨à2zoJV— ®Öm íA+‡à½#5çÄNF:p¶Ÿ]̨4ÎY¼¬=fMPàámIñe¾‡’|,ú­J§ùzx¹ +øñ¶æP )mÞê–?Ô¡ À_=Ö97û ÿmÒŸÏÌ9¹‹=iY Æ×çïüõô2¦äýf›óè. ɲ®~¿pZk´g6/æ7 mÙÝÞ!ñÃoëÊ?ü~3+ŒXeRŒî»í"Ž9‡>ä\ûûŽW8”õÚj;w +õíKcD_"¡–/åÅ(E…bʱ¢M“üÁÂÃW·¿"TÝ?>Œ»å;Yœˆ<œŽxm~+^®÷¨­ñM>*»œ†v…šu+Ž#‚|Nµa©Þ{9w`˜%f¸7; ÇèFÍÉþ>{£‰Øãì­¾Ïߦ6R ë·Çgoýšf韽+o¢ß¤goå_J<)!ªsöö…“<¨Òž½ËfÙŒ&IÏÞ:Ðø1zöÞÅ-n°X™.íÙ[VUŠK$¦_Î<{£by ögïKUÛÛåùpogy@Víë‡{¢D¹"ìNAÀ½Ñ¨ 4âÛÛ’ “'CáÞ“ºÁÈÍ»N[”÷®!L ý䦬½Wñ„¤ÕíàÞ‚b3n­°¹½Ôâ9ƒd{ :NW£ `q÷®‡ê¦V¿½Ýä&|ÓÁÞûÆKG¯}¼w$«lðÞ´‘$;HR¸é„dxï ÏÆÆ›¡HiÅ{ËÛ:@ñÞC °ðȤLº—¯ã½)â†ýû†÷.뫾~Jqâ½;a–<øâµ~ {N˜Àw?ÆFÀ‹]~à{b¶Í&âÛú |Ÿ c­××Yêß¶Pª| N©øv´€­§°íu¼7#“7EYž@|Þ[¢Mï‡zèî½n}i··Ëé¡ï¦›kï?nïs\.¦wïjû2ßïÞEÉeÁðEVÇW·w¦1EÀZ···„ãÝ»3V‹Ö3Uôþ:& Yº®€’äÝ»òs $Sn ïÞQ;¶™ô+w¹‹Þ½›ÂOÕs÷ÖÐbÑ_µèöfvYÕ½žTÜÞ‡Šv{ûˆzv÷ÁÛnoXy…î0Úµº½7ˆ”Œüh‰÷Ž+B¤X¿-–h¼wŸïÆ—ÍÝþÞ¾A†˜X$¾ozñP™£|sÕ±&à=¢ìyxo]Øèý¯[sÁ{£Xï¶•ù~{/¦Câ÷äˆq gR žâ\œzKZ®·Í`!è¿ôÒ‰?Äl ó²SUïB—6Ê;¯ô‰óž•侼ˆoõí®ÉÛZš•hþçì ôÑñÖ&8¹dŒ>Å;ÄÚä®ùÂ[¨‚‹[1EU&ðþB¼t_¾;µÄTœèÒ¬ª  $6XœÜÎÝì ÿ]6éí>!£Òu9 1%{µ[5°4Ìn@ÌžCšXBì†ÝßÈt«¨Ö–é}F™8Œïƺûh›¾ÚAuWÉ#jhüŒŸîÅ:&ûŠ¥»Ò]÷»å”ïp[Èb-0º‰1áetÿ%Ž~{ƒîSƒjIyÈù×%#—q†Í6¸àÜsÅh—$ÊêusæÖÔŠšé–'^n<Üöö½a• ÿñ™Lª…Òcr{¾‡Ò¨•|¿§‡”û®Ú|¶d:îC£—Ÿ¡žØ]KŒÛËS&ì ,PÜ.k*cS+ÓJòá<ÿºµ´pÛC!ìQÜÖ¬†œ%ØKà^Á\”]Í÷Û¤~,,Ÿ¾]z!”õv4‚P¿†Ž¼oïHE~tÕ²ÈΆß,9©RÙmõÐmœ±ÏOä”–$/ÛÛ„†°ÉÈÛÜöxï$”Kb×mÛž7i¤Gn\ÛÂØ+mwؘja‡?19Û`.¥úÅå{LÊ6ûZ *Û9Ç×§×PÐ1¶å¹ ‰É'Þ:¨Á¶ïÑ:Ø~ Ñï]tχGÎ]ÕÆõ×.™Änè5½ .$´¶å3ây°ªu0)ëWÛhÙª‰5Òf›ÚÄ:rZGNÝcy¢6rV„VJÁ·Óîn ‚á˜Tü™è˜È¬þ2h™tc6ÕIºÚ¡žu&\0çbæ-|Úžm£ë*»6@ñýü9º({B‹a¸å>2Ù®¼¹"‰E’]•ò7Gq­Cö{­à²Âôd~lø”ÿcglßDq$Ùà8A÷eA±©ºì°±«Í¦X½‡2ÆÆ7½j±é]]žÒèÁVæ'¿9Âk"cÝŒ~¶‡ÛçÉY{ÆÆ’kØEiNñTNL+ì«ÙirŠÄ|a·ÊÃÄ]­u3Ø’ÍÕáÁîjÚjîàZÈ!°±‰s£´ì_¼ìMÝõ¬AÛ¯q øËu0Û¾/­¥gr“¯G“•T/6•Ò1†bÛëÜÖ[î|N/½VlñÛðœäuÙ6[¤¼—6jó輇‡Ül‚Flòݮߋ[än_jt]çá´WeÙH¸“®}±uÚ,”ÉÍõôà“– ŸJ®‘’ú3¦¸¦v @d•eR¸*a?àR¡°$j9iš¢Ý­»òÒO Í œ¾è¤³õ¤.Žý+£ŸTך…÷F +BµÖ½aPëkð.­»ZŸN`ªñWúÃhtQqCÎ:8ޱǜuö£\|ù³~v}¤”µ>gŒó ÔÂC1ûX— If±N_øŠŽ¡ˆá Ôi¸ƒ¯*>=ᇟâÓNÍÖÑÂð‚xŒ³È´ÕêVqÈX‘_¥™(´Lç ÒØ4ºÚ–û¨ŽJÕtïgiá‹jE +MWñŠ’^ä¹3mEž? ²Ï1ýa§¬UÐo¬0]UÅtFÖäK'CT¤†Ù-sé¼kæ,’MKÇF@Ê#%ÉÕBaq°´!à"á5×\¥¡µ>”qaè”f¢ŸÐÔMã¢ôLÞ`ÐÖ/OšEŸó++Ûu&’\†4é`§š+Sµ•¦À]I+Ûþñ,쯹I7ÙòTL3Ò$±õ”L."ý!z!#üÂQi™ÿÒýèœxš&æL`,lÃwý ¨¥PG7µE+ +GwòŸÚqéïnŽÂì4ut4£©cü™Äè#ƒ>’ÀÝ.Ú}”H%þ¸,Z®ù•è’+šŠŽÛ‘ pYâb +<õ;E#HT1C ¼ÜK´ƒy9ÊÞ:¢±<¢;2RßpĆh¶ÆweMFßé>4ÙB’b?t  ]K¢òÇuè³Øä¤GbK}£dZâîÿ¶ãC JT¯øDQ´ŒÓfu +î¿[O&:^qrp„n‰DªAç'ú M~üÚËP$kôÖ ñvÔM‹bA×_¢DÐÐwhÔ6üh’/n0hC@X(Ÿ×B¶{õ¡œ}ÀgªædäŸí9ŸyAîàÌc£ó•·žÏa2³Bèèâ¤gÎÑ@Öió$žðvC +NžìtïˆÁÊÃy +É).= Ƚ®§… ù÷>½=Ç£îOZùäóAÝPMô öÚgÊè¶?ߺ}–%œ^?%¸žßôg†ÕØJ)-¨Âü¬I‘sÓyëQfY÷|eúfà 4ëäB³ôÁhE »w{!ÌÜAKëúEèŠØuÛý÷+´’êʆŠç%¼«†ŽÞ[gÕmäÐ…*ÐÔCÓgø ¢!tÙ:ˆ óT‰Î•|?C• 9më§è:ÄbÑØVPeˆ˜fAÈ9åÔg.Âh,£ LTqóS£/5`=0zF)àv·ˆBm,ĨvTƒŸŒ¶GÝtK®?JfN;Hà ‘*ìÃKéBŸ9u$¥×[I€Y!ž&¥²Üú¤®wÌJ6Ö|>©>÷^é(²Åc¨tKÙÕé•€3$)lK×Òýut)ÚE˜Ý¼¾ôþþ)Ãô›ôÓô†û(Õ +3{½BSN¯šú2–¤]uÞ€vuÅгa~ýigÅ©‘kîœz™z:2EÂÅ×@ÎÆÙÔïa†7Í"Q£ŸRP…Tø#ƒz"ýøoûéø8ºêbW‹¢ÞuÙ£’®ÿ”ŽZâÔú†ÌSÁì\_eÐUê• ƒ{u’‡f«x¡S,UÕd ï60+§ +’‡op$óÎÞ”‡E ŒKë±vP‰jõ‚Õì]ëµ=•³UïaCò¶²ú¸1܋Ӹ ¸nßâšÝ b*$WÅm®3ôòŸ(ÝÅi¶®ÅÃvEB£(à5-Œ"y­¹mRj!½£W^9ŒÙ냅Z“ãëŸÛ| éšÏ¾Ò7Jä©_õJäý×ô¯fá;åĵ¬Pìî +µ+v¯°‰çSƒ?3w+†!sÔr¼k¨;l|bOc±%½ +=ŒU~~…‹èX~ä@×Þó©=9÷ß6d(—Gû° ˜l¦7 +P‡²„Ç©²ù0¥md³,2DoyÙˆô]‹YîNEÎ,fÀªü5;1ƒœ}©GƒÎö Sñì1&Ô³AÑ/ŒÊæm E4¢ä2´çä?FÑ2`x…A£U„ÙƒW´îQu±´Ý¨i‡ºæ«ù´šùÂQ›šÒN Úe0«µéÛM°¶cñ‹Z«1^8s­F¢ë^Ë ¾5„­vdÔØ:N‹²²lÙõÙú´Îýãþ316Ûf¡Ûrµ¸•áv’¿äY–Û–ºEl2LŸ_«ÊëVæ­pwo¶™Óx¹ÎJÕp±Np·Â2á~Ø÷ÐQLà®k‰[¢ ò/®tlþ¯À»#Çý4忏Éá,䪹»—ÜÀÇC|Ê¥âÞq¹˜ÃV~¿ÌÕ,gg‰wnΦ·|@÷p~"žtü%#ÉcI2EŸoºôäXŠ%ƒ­îéÞÖMê×"ó' ÙM´;üR'‰l1ÜŒ‚ø}©»BnÞ9áMcÈïÐV÷‚×J@¼*/ófT!‘·Wú&¦1ó[šwËi{^dKO™ð¸”ŸÞüOhO¯ +^ZùRcG<‡õ®BØ«_­½Ó½c&v ®ºÏ¶Ö+nvu ßb]žßò,hŠ–ó-¬Jã¨Z´Ç‚ÚuM}k¦Ãû}ØâÔÆû†ˆßÙÜLöðTÁ'õfÙ{²Ôï¼üßý*ÑÍ_:ÛÛ°¼¿À—UýðßÜé|9îcGkT´|opO^lÇ·5`O¯/c²ÀeéÙQ˜¹PwþN Ÿ3êpðw—Þ©3d××êûÖh z`=qÿRŠìÄ™€·óõ+ÍõÀÆ•æHA{`}©Eê÷‰—àùÀ$颸(¢ûÀÀzpÞ0‘ä€8ž#½/÷Fõ/Pའò¿m¯>ýW5~`µ,(; +ŠþcØWäe¦Ùö/|làŽË²a <¢Uû²¥(퉋Sõ^»–àxî)™-0YìÑPýQ²xâc"ÅeGêlÃ3;ssV•æU™š”ƒ.\HàJmš°RF`Øà铳FA xv{üÓŠIÍkÀÝ–¥ë¢<[>PµI3` }ÏA†2`¡5Èd®“®¼>‘w˜ñ9ŠÛ9äv ²Sš¤)À3`iå"žv‚ŽÌÍvîr9¥1Ô â « Ó  ‰ ëõ õ-£e•àì‰Oýàn—ÏhŽräü­‡Ãïžžc§è­}{Ê*ðlZüA4¡)Kêºe$›ƒï@Þ@6˜½äS:™˜…€?)&³Á¬6¢œÝèž +®ƒ€íQp 0ài!L „ØðÓ¢é£"ˆˆ/#=3©ù):Œ-’å?J¬œ<¼e8U‚ô£Œ[  ‡èÒ0`'9.6ŘY¥#‡Q«ˆ¥›âÄÓ¨z”Úm“aàÐWð^Ê%Ì,ÎÀA`­CÿHà£(P:TEr‚z0£Rcd™w5¹Û ™C\¢”s{é7¢ê¯Xpµb,g¦›=ßnñ œ²£€Œš4°&ñç-E犦ٳŸböÛ` W=¼“‚¥‚Aä5•b6Q#Þ +~$È5}èöÀ$×ì››Y£nð’êeã¤l_‚ÜòžIaJTe‚SÔbqÜxýHYµ ¾“XçüHHü–lÆmN° Ì<ŠN°¶G@'جû²²{œ`éãé·?!1p'¸=‘UœàRÊo6 '¸”Øeðà þ¿t_ßÀ¸¬ï`e­ù³÷§dM°ºeÀª Þü‹Ý2Kj–š‰}ç «,oXö¬ÖX`wÞ® WR~ó+ø÷ÅèÇ+]Áè@¾Ü'¾å!6ÙžX 8Æb¡Iq%½¶>þ•ÚáüeG”Žÿ(v¨€•]+UÅ-ÎG{wñPë€qͦ“Vž01ž B~Éx‚6o3Ã0_{’Æqv~òÁº·RJÞ6ž•zEø¿ÞmõM^L7ó +Ƴdv×+¿Ð±Ð|v,Énî‹Çz=æ¼Ùxú˜á«¤öÇÁ¼Ç(ûá¢ÍŠG¤„rÄÞá¼Ø‘ÝyÕì p ÁëÈkè,Ÿ7Æ,ËeÒLr.|Ž®ìÌKN&`&—¡ +>ÿ&;Ö°OfÝ›[Q‚RöEùs!¦%SÊ4ÁtÊž¦Z4ìV¥²ëÎJyWùk÷ÃqeLT¦°,[ÈÚ«,ƒœxéi™¤kã¶å·¾Û²·âÈå£à7|C¶Ë®§ÄìÚ˳ؿ,Çsøñ¬/”–«â4æVŒÌ¨Ñqe6Ùvö¥ñ÷FÍ`™Ç€ <9|–9"çÉc"ÕÌÈ¡œ‘8\< @&bÔñX3gße:rŽHSd¡©‹ÎµŸ×@Í,”í!à‚ü\ú½3$ÄÁòÄ‹>óYrm4?>–UÐSkŽ­eŸhb<…¾i™”ÍúìšeÑ‹V\ã}5cÓÙ‹Ê£ëû^Íÿ%œ~Õ¬«ÙtV(<*=¬ϰ`Ý'ƒG/&kŽVj¹aÈŠ_ooZ²æhß5”¹™ØÍš·‚)íœÈš±ÚN×ÇšÍR)†Ï#ù*ƒLLŒÓhN]öÄd4sª^W¼}„¶–I©˜Pª“üŠæò÷ÛiÖ;æÝòº0ñrš×ü ¾œfJhØü€’+šÕEeZ à)Yí!ÕCQüt×n,šµ.Œœfǽf]±Á^‘á†ctò¿,÷ê噡;¢yS¡PV‹R7D³Ú“ãßdÍöðñj(ÛÆ¢9áoeãPÂ< §¦ØT¢çY_¤Ùr/­wæ±Ôý’°Þ™K#§orŠ¿œ¹”3Ä`ÄÚâ3_1ù’]´ê³ñÊ™‹L™Âc®=4þsJÔXêAžÎ| D¼Æ +¤Pè3¯«´Ø=™ã×™°|hV<‘ÙiÖjHPcî4 %?,@Ib=ó°¥ÎÍeÞ\ÇÏ…$ò·"èY c<„!Ì‚öçü »“’Ð ]eNz¡YC•\­Î Æ T]i&š’8qÝŠ†­¡töE+zo…F+Pß|—ôèÑ'¯‹¶H§$Å•ô…A>ë\‘™“¤‰˜a–ÁTg…<\¼.,]x.ýSݦŒ,µ-Pzwhx\¦‰©Õ2-ú4Цi‰À1xÜô ”v¬œÞì;]T‘•ŧÓsõŒ©»P{GóuX…DuÍØ|dD娋ƒbVR D È¥v"¹º«bƒºªE–Ýt{T« U×[{YµYëg0ŠÕ»k5{‘®&‹`_­?”¤üßP´¶«EvJ³6ÖÊ‚ÖÞMNÔÚ’´ÁÖ.˜Ö8·fóìaUë\Ë‚rËõÆœ ŠºVõ2ãÝõ0L¡÷»§ÈØ9Þk?ÀüZ›:%`‹ÊØSñ ö¤„& !=â…r‘ØÍà @ñ¾æDÄŒ6v&œ ¹ +娈¶ØuîÌC7eð?6*ß7ˆ©{–[ç¡`ÓŸíIhÙŠHþ˰9Ô{' Ø`3(66.W!Øb›Ok_,öU® 56ª€6rqdÃjÒ:½°$écÏå¡X ¯H[èËyBøØŸØ&zíß‹¥œÍ§5aH tX>6nÙ«ê±Úø±%†R9’ýöˆbÌÒXlÛ¤æ§@9L²sB +Ep‘ÓK’†­óÙ=“ìR6¯æ¤1ˆh|({õÁ@Dñá.†²éÏèŒ×V([ú0ù˜B·A^(7¢E°Û0”MΑM‰ÐýùthXìÃ̆²¯ÇN¾¡ÂUdàcc)ªÝN,:šµ^>6¿¥¿ ‚è8×nã>#¬#Q@=òaͪvIÀöƒ}ýì³Ûô{`ÌfÔÇÞèâ™[c«¬æ =Û”§P•Ð×µ +${ĽÆfÅV/;¢FO=gÃŒéÃv[ÒH”tŽSÉbïå[­eBçð–Ú,ö î šÔXkŒàìVP1c_Ûf˜f߉1ßÂb ÌpOá°Ø÷ú¿Ÿ¢)±_'Üb½Ø"~~N {’±òWаIs€À) Û]ˈ±3[¢…†ùP×ÿ {³HθͰ²C³H 0,2ìËÜùϰ]¹Ï½²à ;¤„æÄ°´a—a«¨…o42ì"פ‡®,„-!‹¬GØKÌ<}Û2Ëè$5/0†y… ´C.ž‘Ñ`"¯ÎuÛŠ•‡q=aKfÐwêa/ Ùh5ag…Ûÿª¹"ذ½ˆ^˜¡ ;·hÿYqÁìÇóݾ2â}–A°k†ùýD°sŸ& ™¶1§a_Øáæö[óK‰LLª¼ôc¯¦ò/Ñãâ-}eÎ@Õ dûý[Ø¡uìîp†š] {…4cM²¹…Ý&eoËXͲÃÐ:–bv€¥¶÷¨Ùb3,Éœ-ò% |öt{ºÇÐ^Só@õhCÓ‹o`ÚÇ­¾ç +LûÿAƒõ¹ÔYÓnMÛwjFièDÕ–½o¢µm5Á“vÑ!=k÷xÁŠø©n˜Ø†h³„n¶5ί˥RFJgg‰ZìkhÃÙÖz™Zª‹q¶èlÿSR €³-«6Ä~`³]%dŒà1ò!¶µ<Ú¹Gˆm÷ÍvÃ#yв7ÛçþÀr©´Ù^ó¦ Òl÷RçG:#_#Q³­ ÆyÀ†òÍ6aåtÖvyÄ‘û nm×ß¼ë)ã“¡gm6h` láÙΠ܀`M[Ÿím]·8þ\(N?ßÏvï!jš#Êüê³]D¤JG|ˆŸm1ËKÄ®ƒwõl'Ð(i<Û›âi?…ÑÄg{ Â}T¯ÿÁg»¿6žµÈ4Ý=¶yK“ORc;_N¹ô9*å +Ù^¶¡ÐZ’Ü‘möëp™8mîr!F²M•E]TcŸq `;ë0}ùl`{"TK˜ ؾ’r î£el?GΦB8¶¡ÞHG¼¶?¤1,?Q2¶!KÍoƒšZ~õ×öBgêÙéO¨ˆ¨ÈŽmÚnoG€œ m'ºy|:²íPšl,P”m¼Sy̘ADzmO2u¨Ú÷`¶ê϶_˜ —âv™gܺ­'½­4Õ´>2R¡;ÇýŠ¥FÀÞ&PÌä⋨@n_/˜rj—ë,Ó™ØÕOÄýiç.á}Ì¢[’%‰†œnï®n©JvìŽ<§¦ÒîI~Ñ5ïö´2ŬÑmJ43áôæ:4ÞAny‡fòû¼)s¨·°ç†9ö~ÂI÷þWä(GÂþ“öèu0ó½¡>Pà8W}_zßÇÃ4|=¿ëWêT€¿ŸÌ€½99F¿ ð' +?wMðßO°™±ªw¬¬ìœíMÁ4`›Ž,ón_wdð8Û>Û+üó>×ê¥h¸C}Ãɪð«õpQêFŠ‚¸T_u£Œ²lnú¯“o—¸ƒ +ý~âÙL]NO<è 7Åiz;[qÔŠ1®J½”šú/Ž)™‚Œ{yíѸǧ¥6îÇ%Yÿø_€ì8zø¡L0.Y˜~üÛ¥6ȽNŒå!7úaä7Bòr—Ù1l'úÀÊ”\½¦ïLéw'ÿ4åuQì)4TMEö'‹•‹.írXÎÅ4I«Q|ïgjùa‚.W$ürh‡¹ŸsþÂ¸í«Øç©™g`‰æhý¿K͈ä¥Íëñ[H¼9¥Ê%ÎUYÊÛPVlÎäAi7¤ÏÑHÏ©¥Ï%z?‹èƒ:è‚G †Þ?DH Ñ ;À‡Š^±üêûæÑóõ7‹ttÊz'ï(k¯ôûO’¹Ñ’¦?nºÃéÐR»f<]b Î„8€$ê‚ ‚…Ñðõ¿’ºû‹i6õ‹TÏ¢<4­úéú„UÇ*+«­î§õÓõT +F²h½ñ Ñzç½hëèØ¸NÎõa– °ëî^A÷z=ÕŽè£æ¯¯)ìÄÕˆ%HuÊØI]"»:ùÁWv³&Jöš'®è·ÚuQ¨÷—}”¼<#ÔNó3ײöH¥Kx±ÔšyÜÚNrnG+ûŸOzn “Â=)'CÖ^Ÿ̽EÙÂI3tGZuwåÍîšû‡sEàÝ1Œí@ñó^e±¡¾Þ…ÌØ£öÄ•m¾'›èÒ÷çÐÝ•ßKû{$ÇÁ!¾YtIîN¦øï4-øüÀüÁWšf¦Aç~þýˆG /pŸÂ¡Ã¿²"Y6ÄÕÄ•‰±¦¢C_Œÿ÷AaðŒÇ13Ç?Š[ˆX5šÇïÚ²€aGo³’‘‡êëØˆÀ„M<™ò¸‚-aùmÝ/£ËKþ`˜¯J€˜ùÊÞÀªšož¨ñ+Ïù…š<žü Söyƒ4AŸúó ó‹ƒýDñÇ“þ +Óùù¼rúêñ\ŒÁÔWÕçž8–:·ä”Êú ù’±cT»)UŽÀ²o¦9iU²ßoÛÖ˶Å׸}ôï‹ýÓϲºW|'îu3µõ¥èöl^\3YŸ1Ù}ÏÈú_p$ëOnåm½=f×˽E<à +Í)a×Ó=3VîìzYV×k×Ïdnd¶ë'eþ]¿¦Àà¹ëßÖ ‹‚ÃÁ‹ºë¹+Áõaaõ®W#`Ÿñ?ò²Ä>‚ì§òGr˜Ù+ýŠË¥bÿ¬öGµõŸym¿|ûXÄ&Óä¸/¢Ÿ{·1ì^×ðž}à!RïÓ S‰¾¯„2ÆßsFðk•¥› ?"Ã/%-K@ _]ÎÔ‡øsþèWFCÅi?Ì&3þ}£ŠùöíäïÌÂW~©œÂüƒUÊ­¥Új~6;Ïù;ì+@&>Xè/—ÜLG_ý×€éoÀ±)!ÔÏ Àª¾;a~Ö—º6p>‹ˆ¼¾Ô‡˜’f¿Ø¯sÔ‡lö=6ÒßÚÖ~£Ï¯Ú·Ï¥˜Gè~¿†ˆ%ã}Ù^ºOßo”%µ Ã/…'Áo+~fdU»ÇoÈq ä“ßé tæ;Ƚ"£‡›?¤ ô;éÊ'ý!©ÿzã@-oýÐ-ÃÈþ«íÏU,DÍîoWÔ.À¿œ1ßäGçÓÊM +Iþç~óˆô'î#D²þâ‰ÉØIì¸èJ|ÿ F¶ŽÿsE^ý“?d0gÿ…M¯§ð¿‘ŠÆ¾ÖuJ«ùŸ‘8ßþ3~$ðɼcðûvÔ^‹ÿ0š$Ù‘±CøþAðW„<ÌVÊäè/š}¢$bnzÔ£‡ì/ I Ã>°L±Ù7o~—ÃëZh\¬öàÿÝÄ7ã<€íàðÿëÿÿ<1×°¾?¯ïû÷ÿûûGYIgÿÿÿ½“÷½wïÝ…YÞ¾žö;¹ÿÿ¿§ÖR!#ú"[›@¶Îg®.NouÙªù)‡ŸÉÓ{ËÈͼÓY˜±š†«i&Œw¸"&Ξ­tˆk\Nh;D)•̘¬ ”v¦Oïoê$´´pôW=Ä}JÑ+mv?Ô¨á*E¤ÉC«¯l>{èÖƒ÷ˆ ÿ옷1ƬÎÊÌ•ÍAŽ|ýŠÅš(Ó¯ÏÔµecäl-¯½¸x 8WœâÚöÅr¾p5cÝlØFÇÐmµ6‚n2¡[ cVgyX× »²Í2 ß™ÏñÂù©TE¿AÉèLáë{ +÷j?µY¦Îl¶Ñ{«múؼá]DiãüÉ}œ¿¹zǛרpô®˜Î=†y½¨2°CÈ1IgY ¥7` •!Јô@yŸGq.ÊDXIóë ”ö#ÿTªáÝꥱK«mþÖ~eßö'Ñî–‘#›eìÈjÁ9›Lw= +’=q~É’&»¶bßÝãÍ»‘*ï!GÀßsXƒ·Õ i¿®qvXQ& -BÉèï$´>’´uí~á­ó¥ë4zhµ š ÔÈGP {+—4… šóÔÃĘ×uºtO£aÛêÆe­€Åc}T9Èc8wãøÅyîÜRäóNa;ŠE=¸¡H>;JÔðž*=¼ã¼#ŸÝͤ&ÞT¿Ó°‚ìó:^º¾ÃÅû9‚sÿƯí×è±Õ;a:G=›ç{çõÔzÂv·Ïáý»Äø öE×F3v½S'øž™;ë0dsÆîZ¶ÆE€øâZ®0 Ä½¡ÈçŒu4‹U„SÎj-•-ᤙ>¹Û#KA»Á ÆáÈfMe"ñ+qr™> ½ÏáM“wFËÜÑ;á¸T)¸uâ$Ü +)öÝ3ygôµm›‘ÛÎ4{i´L]YÎÆÖ¶Í;…vóõÍk9­µ£–›áKÓö,ÚÕDâ¿Ä¹šHü׃$÷úÍ\Ÿ‰cë;ß9ûèð†2ßP ÚU:ÄuVÑYÄ“RO¡Çæœ3çgúÊh%NîWàbÑ'HÑØÀôQ¦…·aÞrä³$¡RÃöÒg¸Vã‘Æ2²9_%É”ÀXìL¡\[H2ï#i~/&k D:i +C2é#?‰Äoüõ‚ýºdÞ?P"|Wù™>¹·M š§éK£…"ï¶Jš]; +´p{$)hópñþ ܧÁk«oãêîÛÏŒãvX¿Åºˆ:ùºœ¤ÖK•†ÈoFŽ­ëxá¶>ˆu¶Í_[Ÿ±C›s¸ql<ö3Äõ§Rþ´éýG–ÜîSx·åÊ-î)XÁø¨pôJœ\œ?¹¯Ãó`»ïÞûDŽ€IšÜïôNЂ±G•0ìJšÝ?·žÓ•ë>‡y=ÈQïñÏÞùÊÙ7‚o5N \Ç”ë8ƒoû%veëYp\²Äóœ€K˜ß!G¾-ÕˆEïàEãgÚ§OÄNÁ¨öC«h_À²ûÞ} Æ<3&ûУßÇ„û:Ü:´¨g%êÙAx6b„ŽD’€¾¦/­ÇÌmç¿29ç WÛºÑ4|lrPc_ ÛN£_;,G_Ûäì•­‹éÎÍN©ÞÎÀ†c=U"±@‘ؘPôL(V帤µXE»˜TÛPÿ +¾> ?ƒ]BŒÊÎÔùMÒä~ A6k F>ë«—õ‘¿HÒï¾é{û<`ºÛÉ“p;U"ܾ³'ÑÔj! ªõÀU¾ÄSž‘ø…$ù| G_aÈæÌ!IhaÉç¼`Å£o ƼO³§VÓðÑ9„pu”©áïÀúé³–pþ¦Pî=£gVËà‘ÍC”|Ÿi´ë¡N ÿÒ¦÷çüÑý.Þ/мóþŽ!œL]Íe0°«›,ÆdÚí PÍ^ýà”•2½ßˆ2ðÛð¹õkÚVÎéÂÙI›‚vÎ`ܧÙK›…&ù:ƒ´†VÐY‹U´W0â9Ÿ`¬•6¿žHð'erdßR'׎:Eô fDÒU8.i0$k¥„:_:š½µF>{JÑ?~¥Ë¯ ÄâgÃÑ?†uºt?¨qï=òyoÜç9œû>‰xž'L÷w¾s¶¢Ýjäû@Šx¶á}#èæcìì9†îË3yjò š6'ÜÖ§L0ÒX?<µ"®œÖ2+ +Æ$õk õR©ˆHqÊôÐS©.zA<Û¦¯- +ÕðG•ÚB|¶M_›a+«yÂt¶f×6@êK ¼}í~Âyw÷íÛôÝÂõ#N@ÿdöKž_¯`ãoÀ"²Ï}-L™V¬r®[‘ìšxÒ +xìL¦Þ¹ç‹*»‚Žu”ô޵•4*P®ÿ$âý¤Ë¯‡"5üM _ÛéüÀô +\,z¡Ç=ç/îßô½ý›¿7¿Ó•Û1Þm…÷îžB» TJ± 0Õj 2*[õ¸œ¡P {‘æ_‚~ÂËz‚ŽLZ‚ Êš‰ó‹óuó1sdZ;²¹'Œç°8üšx~H6í¦Ñ¯ŸÑC›cêlmN®>ªü T@ÒzlÒQ§‡6f×G™~§Ò®í4¢ëŸF|ýNXîËØ™iiÓdG:úÀ +Åk•Sžàs6ðI8V£·ÖgìÖæ§Ñ°-ešøküØê;³ÙŒg7…‚»‚µƒ‘õÍ™BÍy‹Fÿ$Zø˜`Šv§hð;ÚO¡àèÐïóàù$MîoêüÚJš\ Æ»ûhrÐ~ +%¼@ o¤JÁ(QÏöãÙC~÷eà]ùg'aÞA|òÎó Î}™»3-M_mÃUë5^5í ­Ôéí ´ ÎÛ'-~•ôâÙ¨’Û÷¼·Î÷â}.Þ¯É[ë9ƒqßh2ðC¡ö©TCÛ¨ÒïÖáÊÙ9¤ˆ7Ófw{ó·ögêÐ꫚­•#«o¸l>ççcä¶Z™93íÐdŸ'ÂÔ³ózÑdàOÒüÛ*mz¿æŸÇé¾õ>µšèrÏ'p¡èÔˆ¤¤8ôAb½:,Gãtß:N \÷QÔÓüû=‹u5ÍÞ]ÃçFÿ êù F¾o4 84Ù—3÷cÞÆè˜·±ùæïÆÏ¬–Á£gæÌhœÁ·oó×Ö-°†j«ˆ\jÐxì j8*mz»PäÞgýz*}ƒ’uƒ’Þ(’ûw +ézÎW®#Y +ÚW=ÄÃ’ÏùÂ’N:ëÈæ·ú!¦F {bmÓu›õê'RÃ>ȦVƒ“PùAŒÊúˆÐ Mòu¦RšËzCPZÁ Æä˜×eêÌä›núçP ë0 ;•‰Ä¦PpG°b±3z¿×®ûîÕBŠ}÷OâžjìëB‘5 +Æ~¡ÈçÜ E¤7 jø©L$þ-";”)øî ãýîœRij›B¿ö¨á?pÑO¡" +1úý0Ýç1¬óF—B’ywÑc ½ó½ó5wm@Šyÿ¦/ÎÓàµÕ8rߌw#Y +ÚJ m$o$o¨ÐB%±÷6š´{ +íþOãÕ°o@ã±Qö@µùêfg¯ovXÌYvH2ÞÀåTûõże@ ù +§Ìäö:‚tv!ÞOÚüK˜_Û¬çqãüУŸMe"ñ'@¡hMöÖÙH•wáÝ-cG6ËÄÍ2sÛÙfíû$Úù›Á¶~=«³1qwÖDZÎãºÕ2uc²Lž™Vç÷oáèp]íÓHç)ó:‘eŸ7²ô=‡wæïŒ–©3“iøÎè¿8Ÿó•£s¾nž‘®ç|çj›¾·zH²oÇK÷qݼWîãÂy›=·>S‡VËÀ‘Í4yhµ_[Cgkù¶Ë‹k¹¼bà¾ý†&kõ²N#ÑS°NúìL£_ï@†dJèŒE$“v2%ü6€môÌ]Úl”Ø«xHö« ˜tŒ½èÒï×¶É5msŽ®ë¾y¦aGd§DsκbªåP¥tî …t¶ú!¦œ*þ'MÛò϶és«÷:!›3#Ÿ3Ô(⑤ ]$éwMúÝD¶‘äàO²ìÚM„ö'÷/qz? Åà„âgêìÚ@†{wÎ`ܯÙ[«{ ë„ùl°Ý×ñÊõ„ïþŽ·Î®¹Só4ul=‡+÷ƒûì&ÎîV sðv%´§R o§Pï$æþ êù™;´9fŽ,ÛsˆW/ˆIgP*+qzûuícù6 C·Õê€çj#ÊÁ^U„rî +À 9Û%Eí%…-ÁÆ%½Óµû@Š{?ªñ[ݨìV8*;Ó'!ç×fòôÞ>mþFÐÍ1âÙ;a™¹í\ó§V×èµÕ3{h2wdZ™º1™ÆOmž±C›cà¾c÷å+Û½¶u±¼2™0M¾á²Õ:á¹ÚF­–±»e˜3/ÆÇ²aÜÖŠÅÐÙ² ]#˜F×ô¹ÑD—}¾i”Ð'mr}âÝ•íkcض2Í^ZçQ¤ë8Ý·~UëÚ«Y½ÆÝÙ½ëœ×ÆØÝÙ™>2í•­g9×C‘}L ^[‰“;$Ùçõ<ŽWŽî)Ä«»O"žïI¬sò4ôHöSi×^ò´ƒù¼£]šÌë?w5l3b]„Ùµ„£câÈ´6os‘åŸoú$üC”{ÿ&®Óìµ=îÕ;„w´_[m¸Ö{ é>Ræ GBÑwˆb:‹IÑC\)­«pLê Òýž0ž‡:-ô^Dö(ÔÄ.ôÈçyÂt¶ŽWNÈQÏ.š ¢äûBŒ~ÿçPÏzܳ‰"ûl¡F?[èqïÖáÎù:5š­Ûü¹õ/]ÇáÆÕ=`=ÿSÈ÷ƒÿl Ľ‡oÎÖ ¤»‡ ÷¶K–ß­&÷Nsí£ÉÁ<÷uë¼OaÞÏœó3vkóŒš ä˜×#ìˆìU:ÄtÏ¢] cw1»4íP¥æàB-¬±¨xfµ0B»Åµ¾T6‚´uºtžxʘtÒR# ŸBÁ·Ò¥÷÷Þ}›>6_Ó§æmÛzN×ÍÞ1”ó5|l=†nL+ƒW&—iÅ®h4XŒÜ»Âý0™<²9,GÛt×h™¼[Ž©ûÙ+ÜÇ^ãì°¼4-M_›Ü£xWßpÝj™:4­ š,óVFËÔ‘É7\·zÇPÎ÷,Úu¡I¾ŽÄ)è¼xì V(þ›A¸zïŒþIÄûG™€? ³»®«¯l¶|u³µ0k{…»³2wcôLÞ™<ÃG6ÔÉ`0d³Ìš6 h1ï÷Þõ/íÓxׇ$û¼x®®Ñ{›iúÒäÁ7ZÇK×oÛú à[ß ÛÕ@ˆ}HòÏ9òu“uÂqõѦMŸMÓÇ6ߺÕ4{ms ÜXVæM»ShG‰½'÷óÎù™<4Z¯Œ'q®~2 {!I>¯Ó¥û7€n¾fo­¦ÉS«u¼uõ޳&ŸZ,&œ²RC¿8ï +þO¡…ÉRЊüó;^:;§+×õ¼‘XÐMúýŸD=϶ûÝÆï­¾tó8oÿ¦ÎãøÅy>7 G(ï9ÞÙ:ṺæO­¾¶m³W¶ÙÍc¯s[,M›¼sXWIîuœ°Û|…ëY¶:lfM»£87} +ÎHÜ©“[ QöÕC“u‘¥`m”)X?¥‚»‚޵T‰C Ըׅ&÷|Ob݃xשT ú +C8i+ ”u‚ˆ<‡sÆÎ¬Ž‘ÓÆÈÙÚ¹{ëbW·{u³±0j6ØÕ­ÆÂ¨ÕbP¤†6bÞï9¬óGâÀ?$ÙçgöÔ´1sdÙ›nã…ë;_:¯ó•ë@y½ˆòï+qvý·Î×ð¹Ñ4{k4"]‡J ÛT(ýÐ$`Í“8×yí:Ž œ¿ dó6ƒkÑ®Vêü ^<ö¦OÂøÖgêÔd>6ùFŽšÜóP¨‡Ý€j¸Ç°Îï|ëÛH,è@ o)Ôľ $í %­€…cÝê½ù¼ŽwÎãÂù™»4šæN­ 9òÙF$þ(SÃOùg-öù%̯MUbÑ3€Ñ(ÔÈgëtéøzŽÎóÎùżÏ¦û;à¹ï£h÷‡ ùl#qàJÜû;^:;§+çsã:aŠÜû=…v?ç çw¾u~(òÏIz#Ë¿¯ÄÉýMžÞûiü¨XôQ¦†?(‘Ͼჳ} ïì(RÃ/ᆸ>PâÐþQÌû5zj>†¬æ ÓÙLž];Ê”p‹„ hÿ$âý Ƽè0ïÎéÆý›@6/cG6×ì­ÕFš~ÿ©4ì›Dþ‹ÇïÀ…¤g âñMúý˜7¯å[,c\¯ +"Ù14Ù¬ÄHìF›qî Aöý/k+—´ƒ‘5ÖLº F_$éwïxízO¡Ý×éÒõœÁ¸_4ø£P½Ž>*õÐ÷Úý¾7ã÷q¸o§+·ýY´»ƒõìžB»ßSh÷kîÞè·²9æmŒÞÏ}"È?H1ïU~%ͯ÷YÄ«gîÒf¾3ÚFÐMÞ!Ä«õ<âÞjÔó<…výGq¯þAÔó;_:¿¶«}ñ|‘åŸJ=ôPª†½¨2°ï€íê®[ÍcXçƒóþ$ŸmT ø§HÚlTÒ R4ö¦Ð¯ôÈçw +éúOã_õv)UÄOeBÑ7‰†½Ñe`OÒä~£ËÀ~´Ø©V,ÖdHÖ X0v*ŠÊ„¢ÿ#LA/É÷•2½ÊÄ¡7`ê½ÄßÈòï‰=RæàgâüÚO¢…ÿi4l'av½P#Ÿ ´¸ç{ë¼áœï)´ûD’€Þé“Ð~%¼ûþa÷A¼óG–‚öæ×F²´ƒ÷>ТÝdÙµ£J m¤aûˆ2ðRÔ³}ÂywPbŸM$Ùg= +ÚF”€·N—®ß¾õžÃ:[’ïaúÝC|¶Ž—®ëxål"ñžMDé÷‘,m¤ÌÁODé÷‰*ùì¤ËA[)³kEÞB|ßÇðŽˆ2HqÏÎáÆÙ|pö#ß-5Šh'eÞ5yj^f®ŒŽI»ç™:²:çëös¼pþšVg¯j6V(rïaæ}¡É=¯¤Éµ>½cO£àÄ)èoÝú Þ=D¹÷©Vþ*{©÷ëÊÑ3|iòLÞ™ló×Ö÷j#± ?Êü:†tôum{øVß¾Õ5xlýæïÍߺõ.]¯Ñ{«¯m¶|m»g›¾6oã§æiü̺ Þ-3W6ã ºy›¿¶¦ŒÆÂlëlM=$ÙçkòÔüazô‹“cØlY†®LÖùÒu Æ¼ÿ“ˆçoájœ¿¹úPŽÞ!¬óEâ>žÂ»Þsx׃ù|Ð#_ç)¤ó4{k´ß[]Dé÷ŸD¿Û¥ÏÀ[*Õðv²G•"~£†? +õÐUr¿N—®ëxëê%ϯgðâ±–R5üK\ÛIü™4½·Ñäàwÿ2*i 8({‚~Á +Æo€4l‰ÿУßZÔóD”~G—€6!]ï ãùG¾”9ø< o)UÃ?…Šh‰Ðbßç ÓÙ>‰xž¨’Ï’ìó?‹whñÏÞñÚõš»6¯Ã•³} ï¾\Ÿ¡S«qüâ<âÞÍäÙµ©J Ú V8þ*m)RD{)³k/izï(RC»éóèÐNÚ´§JÚS§…Û¤ÌÁ/¹gÛð¹uÀµ¤˜÷—2½vR&÷'av}£ž3øæ‡ýþTª¡¢ zh5òý›@·úÐÍ 5îÝ=`»o“׿qüÞìC=;érÐ^ÂüÚ8€pÿšöµ1q¶,SG&ãx×lžÃ¹…³eƒnkÁ€ñ~Ob§áK£q¼n>¨Qïë„çjp]ÝÃH×uç<&ßšÜó?‰x^×gøÈ昹[Ž¡Ûjsã~"^}Ãm£iþÒè+Z-Ƶ`\1qdZ™¸´9Æ­LK“‡VÛªù¾µ.#wF_×níUíÖÎØÍ4|juÌœ×òm—ŸCx]Ýj­Ì\ͱ][ìÃÖUícwÂv5§ Ÿ‰[«kôÖ¼7îŠäû9ƒq_ެޙÛÎ:^¹¤¸÷u¸t]§K×oþÞ~Ï7ïI +ú¢IÀ¿ÄéýJš\;ç;Wã ÂÕ:à:z§®Iþù£ÊÁÿ4 +þQ§‡ßÀ¨á—:=üQ§à[i³ëu¸uçOî'm +ÚP§ß­Òfà­Äɵ›Dà +ü¡PÁßÉ|S‘HüQ¥…v’˜kK©†o)ÓÄuŠè™:¿ö#àbÜûAŽzöa×ñÊý®Ýÿ9ijƒõî!H>û§ïÿæ}£ÉÀŸ´)h(%´ŒX´¥P m£J¿û¼wç Æù™:´ÚÆï­ö9Ìë;„uGÎëxç{*ÕЖ*EüLž]›©ókû ÞyÁ¹:g0ÎYîÝ V8~&ï"I¿ûÇPÏþ)äû<á¹{¦.­–‘[›}ñ¼"ž·ùsë4wl4Ž œrä³™>¹w’e׿1¤û7‚jŸ‡ÏQÞJ—‚Û¢H@[gЮÆá¾ý¿8?#wFÇ´Í1l[y†Mž¹+£eæÎdžïR컉o¡E¾;‡ÏîÞ ¬ÛMú9m~·M›ßíSgx Zx?yn{ël=¸~Ã'×iêÖúÍ\?r¼«fH~,b[ sð¾ù{ûIb®´ùgÓìµÍ7{p½‡ÐîR컓2o¢F¿[¨qïNº´B½wR§ -É÷¯n[íuíÖê|å:‘$àoÚün‘$Ç| ó¾7îÎéºÙ4|j´ ÝMËèe¯m^މûY@µ†Lã`Dpï%"o+v…ûb×¹Z«Ž« ñz£œ§é+«a̰^ î½¶bêÎÄ~ïê«›åÙ¯­ëÛã¶Õò2005-ØÎcgøÌ´8‡m2NamÓm“a̲a¼Ëƒïa]W¶ž¥ñ;›gòδ1q?{eëa\‚‹Û[^üwyÁœÉaW¸.ÇÜÝY™;{ævL6 FM ŒÛb_0i5Øuí»ªý°+YŸcÞÆf¯œ­Ó¥û=…u6MZí³ˆW#av½‘äàOáÞZìóHb®}„)è‰Ä]‡K×cæÊ°1r·˜Mw’ìëA’yÿç¯æ1Ì£‘6ûÓ)á_ò¼óþO¢Ý­ã•û:_8û&ÍUþÝR§‡:߸?“wFôÙb6}nu“h÷F0BÑ.z ´qüæ|Þ[M£‡VØù, ™6{UÓò„éì›À·>s—6Ïà©Ñ3vk3M^Ûìƒxç íz \™Ì»Œ½¢me»´^“׿iêÖê™:4º&/í˼™Õ׳/Ãlg- Úœ¥ñK£y ë|Ž 퓈çóìB»›',·¥¹Só6|lö$Ÿ}ÉýF”v¨÷.š ü9ƒtÿÆÏíãÆù›?¸Ž#çy¾u¶Ó§÷~°âÑ>ŠäÚ6}lîeú»/Sg6ë|ál£I@»I|;m~·H–‚6“¦÷^ÂüÚ?Œw¶WÎî!¼³s¼p¾F¯­®Ùk«,¹i³»-rüÛ5úÝ:^9›¦Om†iëbd]]1w·¶&p¾®u1Žý‚‹Ð Å³Bð[lkLŒK† [NÓÊàe¯nŒ›yñ1,׌_N¡›ç'ÇЕ‰ÍÜ¥a¯lwï`"x؇\,˯·>\ß´_׺íÌÛüÅû<Ä ,KëZg‡Íè¡aiÕ´4‚jÚšAµ™†›–…aÓbùçÚâX¸ç +£æs&öS&ƒ]ͼ×u»®Ña0hY/N{‰à^´8-"ŽˆzçjÂUNÊðÊ<8UQ€àÁ©Ê‰Â§lµÓ§œ(L€àt?`àôÀéÓßùª¸ºW‡´³6½4v@ÔNœPíØ¥áÝ•a+Ð=¨j`¡KÖ„ªX°®ìÄ9=¨Âºrz€uE—å¯,Ì MNkGÞQÛéz ¡ª + «X¬$4Àz« X° P°Â’Ð@V XXWV&HPõ`BDha„(4x@a +®®®®®®®®®®¬®â°°®°¬$D @ÂÕÕU„®\a=¸j Aƒ«Wq$H°ª’PEk‚+, qW]®&`E¨êÐà„qW"\E  ¡++ +È vÔv:@°²’`UeÁª*‚–ÚN‡«* ®ªLx¦–…=H/{hZÁ´Tä)Vä!¶d,@SÜxC ÂÅ+§ðpeœ-ðáG°ÃÄu¸—á3<†Ëp^Ãqx×á7\†Ïp.ï†Çð~Ãg¸ —á2|†×pÎÃ}¸S“TÌ_›–Ð)x‹HµPĵ®L‹S1XÀ¦ð ÀøÙ‚t„;X}xxà‹2Ô +\ã—|úMI@’ËØQ¯µuÓðˆå%aQÊÁ!=(»=tˆ»> +s…Ô°$bJ)8D‡˜+DÆeaSË0R1Ø q˜Ç¨¥áÎMÇ$‡™'ª´5RÉbfaýà/P<#–-?ÒF—1¿q°rãÂ@ŒY?,}áÌÒ)€oCÌ$Y.vå€;Eñ¡'.Ä‹øïá7‡ßpžÃwøŒ"râPF¸§(Þ†Ý0Õ$s«ÂÆ–\ˆxÀˆ-§ Ž\D+¸^>¥~[@%C4Àˆ`ã'[„\ + s‚¡HBîEqÉǺ$sJàw š/Vd1-f˜ˆC(3ƒlŠ ˜ È4üñÙ‰„г ¢¦á*&&¡‘ÏÊÁ 4&WyP +ùA9ø£GføGª8ˆ2:~x´ñ9ÏW´~œÄËÂØFˆ¡#‰8]˜×€¯R2À9ñ)%î$cÄ‘®>œ(f‡ñ ~Ä“¸Òϧ/Tˆ!Ü‚¸Ú"øçÀK!9àH6 8wâA‰q%NÄ›8‘Œ€®>â>0«Fx%>)@§ì£’B²OJŠÉ>(5$ýšà¸ô!ÜaÀØ dY°5 `Zz‰Œ¸$BªiøC´SqU’ÓÓIž¦Š)l”G°Œ)jÙâ5Q¡Ìe:9Älä!)÷½TÜ¡y¹ØƒÒ2¬ÃÄ%"ÒÊÉUn—Jó‡q“€ªõ3#P fPÖÀÁ&<à&0àªð¬ 8¬ q!|2C’H&÷‰éå‰+kyãİã("º@›ÉØ$,ÙÇÈã«{¬_"ý±ü®¦N + +á!æ¡¡ÉxdQ CË%.c–+®¤a†ƒŠ»?hˆ¿@Lˆ¿?R\~}¸¨‚Cìõ±ÂóQI˜S•6®(}íK:í€õŸ'=ì¥K]YŠZe)k\e㪡˜ˆ 1x©˜PÈh&ãÄG$ør \Áf…ˆPÉe¤)Ù…õ…××È×Ù˜ P+s XæÅÖ|'cCMB'™šš­z›©Sâ2_dQ£4òeÌJ?hÅ +}ˆeu&ê8OÊ%^ÑÅ&Œ¢Ÿ­z™.°¨aöÈrFi¤ËV³,jž›Nú*»?b\‚{˜èÔDòçY™¤ûYúÄòÉ–û‹¤É¤Ò¤{¡8ñH²Ü¢šPþ4 ‹œz"± µT2è¹"Š›b%d­Bl´ü˜AŒ[„`µì²ÇQ¼¸ $ &Y &Q ç f7€ØÙø‹W=î²åÇ\¸îq.{¬¥kl|Å o,1ñ ,j—„J65ÁP$5U¯¼ ^Ù2ƒÀ +ú%ô9ôé÷Õ4ƒñËJÔ/®q°ÃMÆT+|5YXYTR…^ûÒ*ö6¦"&ŽÁåì…•µÇ$ +|Â,[j?h‘©à1khA³´±Å,SE•µÎÔÖ9QTV;ËUÖ³´à¹`bF @ ¿(¥õv„R厄¢å×ÈréCËVœÚê†êÄÎÔI¦%’@Ë0SK0ÎÌD$š•I!gt!ë°€¼7^—.bmc-aß,˜3UdYÃ|":Ù÷Heà’•^#¤•ƒJLT"Á!Ù÷¤‡dß“§’LÀxEŒø?#O:¦‹+j¥'¤ÐxTâ8Â1I¤h +(qŽ«V¶u ´j½Æ:À¼Æ?¼º_¼Ìœ*¬¸}&‘üüdÍó´l"xBŠiD“S±Ècæ‰)lnc(ØìX‡˜WËÚ“ÑHcfXȧ¦d¯¦¤0梑ÅKÆ!—‡BÄŽ«V¶JŒØ}O†ü>&Dì¸)<üa%[CV*¾1Šßr7Ë𪦘KDÅ%WH Í®âÀ"8*WeT +"QA)˜Ä¥`b/“MMF'áNGV0§ ++mß&Vzä.7(j:O0“LM/“NÏKÖ¿KYÐ"À®Â… sÇ´J [È>OH …’G…Õÿ-3ê ¨j¯œxf·PB~“²Ã‹H)+éŠ2i,d²ä>KGW¥‡­ÅÇ6%†­eMµ;p)•;xIÕÖAùñ+…P)sò„ ,„™]«û ‹Û¬Ë û{aá³ÆªYD&Ãüx ’ÇÛÌF$†—„F@/¿EH/¿HD-»D\T&©!éÇd‡¤_“’}O|HöAÉ!Ù÷¤Ç¤ bÁ$+.ÃJ"3+£øažÀ²¶© [fYÒl¹/ ¸‚fŠÚŠ'šè¤r ¡øG²È$]nÄ!¬[¸%<¾\¥†œ@YÁ+Qj1’-d“Dºl© à µx¡%`K2ér‡«\é†Q®øGÖ-·ž•UO+À¢¦¯¨ÚZ­Ã PõfVbü¿FU EM@‹;ž‘­3@Y<Ëã/?2G—±ÌÑ'tšŠ«–ßÕÓÊÁÕ”DˆLú!12ù—d5²O ’Ⱦ%D&ô˜üKrʪd“•‚LRˆ½FN+ ‘Ѐ*t[G´j "“€H¶ìD²€U¤ÐP²Ø‰­\|",?2 —md,[C'Sþ ³Ø˜V+)°–hb¥Z0f+`)‹£×!éa×áqǹq»9¹a›]ÑA«YÁÑí ì°é˜üøtLpÜy­Cþ!$dƒIˆÜ~H€ÜwR„ü¸V>°uÕ~…¬ÊÛÆB£ž¿´ ×´äðnQdl¹EzÑA¹qoð2*sXU›öGWû¢£¦Ã2¤Þ³Â„fd¥r;FÑb‹‡d!ÓlQe ’•‹í€—ùò„¶ÌÃ"”›ŽF /G[çÄ©RÜ W½Øa.^jD.è‹OðŠXЫà‰|±‡`wØBŸ) D À íÕ’Mí’i =Áˆ˜Ñ…´kq¥=d!Al1¥¿¢œz1*©ÿ³¢¸á–ذ‰ì ûbö²:æÄÇÖ-ÉŠ29 +êVÄÐ_AÏì„-™Ú,¤fi/3äZ.PÈ 8‘]²þÀ„óÞ»!Cmψû¶âÂw@ ,%“Ø¡G?;ÊÔðWõ°œ¯‚hÎ +`<ÒC–~´& Pc’qÀˆ9m‹ŽúÏŠ“Z'³Úx –nܪ}|òŦÒeÌõŠÏ‹â¤FcåAûV^Ë%†¬­Âbþ[l̶•uåEm{±1ÛYARãU9RÏaRßY)Òé²éiØAo¹Ü˜g,1ä,³<åD÷2@…¼sÙ”¾ J ›ž’Â{Y!A‹aAA×QRø·"4¶wBn­‰±“‚ê;X9•¹¤¤Öý ‹^Æú¶©Àè´uŸâ¢{8 TÆ0Tñ%•ÖjQA—U) ,‚ä+¡r'®N¹é°©Ëè1ûphÇÐ1§ Ç܆Àšn˺. ‘z­‹:퀵ÛýŒJ¾s‰Ao·Ô¨Ý°ìðuS|øm´6rThãžÜ¸Ý˜Üød¬.ll”4+¥õ–”Ò®Ee”þ`Å”Þ*11–†E™V‰é6Œ5õEAõ[YLû(œ4–ÍYÞr¢³-y±Í^!á+HñÔj%€*o•°°ë„Ä(ëÛÃ,®È‹2²%)¶wßî ŽíŸ!¶[–Þ :hÛs!’&wç)lâ"WÈ XÙ2VÉò›x±3MLq³Ð‚)äËýU€ 6€KÝ—@ë<—À9ñJïȤ‹Íg-Ú·1+VûÓP€T,H±X]8µY ¤f;d¥ETý[TH¿•ÉŽ@⇀ÃÑ[í ìŽtÒ„ˆé+;Ñå_­@ÆbßÊrÚ¿² þ­ÖQO;Q½g)©÷§rÂÞnqáDz¬øtF +Øöùà1¦…€ª–§‘N–É;‹‰3Ãv˜òÙÉ„0ËÀ„³è"Úï,.ümÀùŒH?a‡e-áÆd]µƒ²o`EhA­½ZUë-·\dzAr"Yµó¤¬z2|h× ØÑifÈ_p¡õ@‹¬.'´Ø++h; +ŒnÖ +ÃÞ:yáç)*º‚â›]yñÙ´äè·6æžåm¶¥Fßv‘Qƒbö2àÄÜå%…ì…Å-‚‹*íáˈ,-§²†*£2VNYëç"Ëh‘å”ÞÀ*:XRZû#&¶óÕíדSF%Õ‹¸rZoI)õ®˜Ò¨ˆÎ†\ÒtDÖœ€Ê°ÊYXHå LBµ¨ÖdH`ü;!7ÈЖ¼¸íVÿG‰Ñ³XVÐ4]Ì‹ŠYÌõTÈ`^VÈõ•u=eEÇR)Ñ7\)ÕZpâ9ð‚:ÏTH|µ)7üZߌJè}Š‹.ÖÅD F¥Dí!J)]aÈæœaÉçLÁG&muòž ƒÒK‚Ç€ ïÈŽ o„dHÿ ÆÿaÊ矛˜’‰µšÚ¤|Ö hDÎhLÒŽlÖXCëM>o­$œ7vIéöLÉŠ±8&4¶pNlØv—ô÷2ƒVÛbÃ.9b®ÙÞUòá¸ôèuZŽÐƒD©«dñ H¡ÏÆF²f¢US€]6ò­ŽY[€Z­1‹0M6à ¼(”›T é%T/môÙWO±8¬­†TÒ"²Œþ°&£[,"™4ƒŠŸ‘K.ÿ “}‰tðÓø¥u×è254é¬5@¥°ø©\þ>"é(¥Ó”¨CCÂbLC+( $™Gï$ÖÍ~ˆµ¢€ÖS¨‡v‘¤ß]‰f­Í’¢{)-¼‡#6˺)ôk'uþ©ˆu–T­-§´¼dÄ=CAáÏ”¼¸ß–Ô¸û•´R±ždÊ‚HΈHÎõ• Š‹/KYQ{Ö_Ëš¢-Qqû'-|-儯¥´¨×ZkØqV|ô»*@þX–õ‡Rå +R8µ¶Œfå*+jÿ¤…Ƕž¨·´¨Òª”ΨˆÎWA4g +C2é +H:å J<ç +J:å J>g N@e­¢tדSÆšúC°žÒXGgUJå C.i4&i©†ŠÄF¤G "Á E›Íù« ê÷°D´ohý¬EdI¥µ¨œÎXGe2 ;–‘Íùj5SÎÀ*ªÕ²RJkh½`¤“ưäsưäsæ0´Öâ2ZsiI­»ª v­+£W=*û%Ÿ3!›³?Îú‚Ï‚ ɺsp+™w'ir¿ š»*Z&5ûFRËæ&ªÛPBûƒþ@ +D #ÍêýE“ß'lwçÆm¥>Ç,Éì ²”Ö¶•µv]“÷+ ;‹E×òr:{8Uæ:@•î]^Ðfì˜ÇÈ1À…V $²_\LÐ! !KXËM#¾´Ñ§àü3™'iúIøq)#pÑX0îN%Ôpô \<ö§SÂ1=‘eŸrÄóM¤\Û@ ï×Ãy0[ yçL =•‰Ä¡É>ÏShçó,$ñœ½XK?‡)¢4 Ãnä X YòÑ~LÖT+ë§SÂ/5Âð[™¬7d9\ ˜ÎȹÍ2vd³ÎW®8M¤+éœÃžè¤ˆ:€1Ù°P´™@½ß Õû£T ?ŽuÕJÁŠÅ.e"‘ž$S¶`Äsžð“nòÂÏ9D–Sú+Ê©ÇJÂ)?è19CèI_Ñœ/´~j³ªˆÎ V8ÖO§‡µ(¥ÚVN¤XôRªˆ©Œ „£—BMì VPà±9?xAÙ¸¨¬¯zdÒzhÎp\ÒWA4g 7&ë G6k+ gwK$ÙwóÎYÙȤ3 pl +-ìP$:!)EÚè¥R#̨¤- ñœ³˜„ÒW<.ë,? +D[j„!–MZ Éuzh3}z›> ’&WA‹Fÿ4 +.¢ôûF”zTv/m*UÅezà¢Wð"ñwvm¥ÍA(PðXRfàͶûF•€ö‘Íùʈ˜n@£ñSÐ'uú#K7"û‚ýHs°AzÞ;^ºG–½ÊÙZ™¼1¹°¾*‚IGØ!Y/…z»Îw®¦ÉS“iüÖdœA9™f/mŽ™ËÎð¥ieæÎÜÆ´4{jµOã]Çñ¶u?´¹Ð­ç€ß”8¨*ÚJ »Ò¦÷ MòM +J¥z(m£Ê?ˆï'y~ªˆžÍÇÌmç¶³ùÇÏc-ñÔŠÈ’JWõ°¤—>½ß[g-îõ¤MA{Ê¢_£ÑmöŸG¼Z¨r¯3€Ù±‚t΀Êl\ÒT&!ЈôT(»SiGU¤SÆ2²93€ÑèHÁ½É4\_ýà”;DA•=D)¥'èÀ¤›DÃÊôÐ#@ÁØ´xìV=.ç*” ÈN…‚±'ev«tˆk HBe O@g«—ó’>êôÐ&ªì³ÄB’z¿‹G/J©Çp¤“JÔ³sçj G=?¥â°k`•·ª¤Ö–ŒÎM› Z8z-&Õ É¥K° %¾™:¿Pí0"}‹@Œ|?‡|=)sðCþ*{Âx~’ÏÀ)8ÈQÏNÚÔùÆù!JÀZj„á‡:-ôS% +m.?„v‹¶eàJÔ‹BMìSªˆŸÉóëŸJÃ^ Ç'ó~Ò¦`øQÏ5úÙ9€r1p÷áœÒ¨ ?€b±®éP½¿ÆÏM¾®a¯m_,FŽ »sX·Æ›gêÚ²5l³è  ã…ókõÌÚÌ£Hד:¹^A‹F 8&‹0ë"LÀšHüôÈ'G%mÅ£²_õWݨìN¡…ÂŒÉZ*q<÷wÀsÿ@‹BïÅåÔ{ÈB:K¡@¬‡&ûþR¦÷NºLPBñ¶Àƒ³^ЂÑAêùA8š'q®G¥B¸q)[áÈœ¨XôL(z*ŠO¤„v‘¤ gâüÚU7*;™´”‰Ã.T¹×wçæ!K?ZÊD"}E„SÎdTn°b²~"ýŠ~/"ë/$k*ý‰_)³k‰¬pô R4N•(´”8´¥N—@¹ß©4ì¼xìŽpæ|á<Ž×Íë€å4P)ÕÎPPø­$¤ÿÁ ʪ–5–=‰E{Iü½‡ùn¢I¾;iSðèB IŸ@Å¢WÚü:]º^ƒG=òy*ŠÁ Å£K@'P° Ejh;}~§Pï=D¹÷kþÔê™=³9Ç çÄP4v.Ô)øþ1Ô³qüâþa‘$ 7¢ôR' +½UL0 »Q%`Þï1¼«Á{ë5yk}†îŒ–‘+›eâʺÌ\mÈÖuÀpþºæe˜2­˜RCÏ…ôg€*‰ù|L™v&/-;dùGG°QI3ˆáè‡(g!˾y‰ô[(®•<¹þ Æ¢µ´¦0$“bÜû:^¹Ÿ*èÔp,ö H=¯Ô9ø¡Jö+k4&»j¡Ô)h0¡èpô Z8ú F4ÿ’0i^¬†‚âg5­ŸP ë ±^í¤úõ¬˜Òb¬#ü*¡r”tªágBJ{@òù? ñ´5 鬧N™<¿^*µð¦*±è­l`Ò PDz(T0¿A‹HÏ„¶—:Á=AŠÆ¾`…£—JQX+•vëœC87;©~ý‘M-…›³¾É3\•ãrÖ”¾ò¡9S•`Ü ÏÕC“}¾ˆòï9òu$1÷C¡~*ÿ•]ÃPZK i­5e”–€ã’NÀ±†* ÛH˜]ÀµÎµ[^3vh²6ÊŠÚϲ4"0¶XQå¨RDOE"ñ?xAÙ§N?# Ýã­#+Šä{ýn(oÄ:;©sÐg!­C8éÜNБI/úõD=¯´éý +\4Y +Ú>…y߈RОREüfDþ(„¶PeÞ¿dó7‚n¾\g=òm¡F ?‚‹¶Ôéá?öÞùüN$þëC•~ý©Ô{+x±ø´hôF$êxå„ û¼%ø7ÚÝ7~n¿&ï­¦Ák«{ÀtÛA9[f®Œ†1ûX~kÁx—‡-¶µ%Äè÷;D¥)ìè”—<»>ŽwP$v¥Í¯ßßÕEŸ}uƒô‚t––X´$1î¹3Êæ%'¾& ~ŠÄaQe MŸ[Ïá]o*ýz=$iPDÿ#š¿‹G¤áßäI“‡VsûuMûZ­+£uLy©´[+…ö3k¬%›ó‚”óT +ÄúA’5&tk¨ÖÑž…´SàqYCˆ!é£J í&Pðw +ýÚ@‰y÷УŸUŠè)ð¸¬'ĸüT$§R}'ØžBE´©Nƒýz‡>Aе˜ö¼›—H›FÃ5U Hº‘PmÖSy~RÂþÐ*Ú­‚dÊbPÒD’^çK×y ë<7®ÎéÊõ#q & o*ýú @Ä4ÖÓzÃљŽOyK‰©ÿZRz{ "Ú¡N ?·±a¼ ‚ŠýmuÆ-‰ ﵄D`Äcÿ1ôëC~7ã^N`‚ÜÛJ‘Þ R ÚGâ¿»'Œ‡AHæ×J²ygÙüU8&=b_O!ÞÿQÌkêüÚH—‚?ˆz^H2o ”ª¢íÀEã-5zx?e†·L™„6Ófw‹égS@´!Ȩ¬­xdÊlTÖT'{g×ߺùo„‘¾CÏáH'”9øï¤L · Z(ÞIœ€6÷íÃÕb|Þ»ºylÏá]Ÿ*¡è­tˆk$ä^=“§&_Ûl1²ZL†î,»ShGó0ÚÉ@’ytQ§­€†#í[MÜeJVÜ\SRëK@?—^ÈÑOˆÑ/rÏ×ô±Ñ3|hZ¢Ë?:‚Jz’Î~a5³G‚ï Æ½/]‘¤ß=Eb±†`C²FÀ‚qAGzÊÅaý ÇälÁI§ç;W×ô¹Ñ9_9zhÒïUöÙ>a»ÛÏíßø¹ùâmx":°‚J'u +z(„¿‚’N9ˋ輕Ŵ{ Z@QhYþQ™HüT%%Ø ìX@0»…UM:ÊÔð Eî]ÝþÓFFÓä©yš¼µºL7Ƥé½·>`<»¨1ðfºün£D o¡…ögáM¥šx#H¡èY/•vëëÜÿâc_\2zwi“Û30ᬱˆhÒU6,ë ;6婊]²Ï7¡‚i +H8åVJi0*¦vöÉéâÈè +E´‰û¶8Ü·ïs˜×3@ •·œœv/(»”iâ"5´8ÁF‚d\Ò`Hú&PïjìS$í 8.ë4(»Ñd`O¡Ý…šßJ¥ÞÚœ8çu¸s÷MÜ·Ñ{«gèÔfäÎè·²™F­¶ácó8o(QÏ&šä ZCµZ^PeYNe]Nd;0"Ë †äœôÉí9„rrŒÝËDz_0h²˜˜nnP£Ñ#x±Øs¾pu ÝVKÈ–U +ìL€;$]¨6×®É?‘zT1sÀsó àÜo*ˆ6#ž}EÛÊ<ËåÅ»4€à¬,ð)&ü +M –'’N–á3 ƒAÓn]ë|ØŒ ZXS Ãl.¢bW[Dì:j©p8bA àDm + /¶]¤3 eÊ8I~½T +ÅKÉæ¬•ª "TYËTLË ÚŽâÂßM^|-“CPI³Û¡Pë°'ªþ9q±’¨£Ré/ìD +öY­£³VÑ>Aæ5M–aȰòõl®gæÎú ÜçÛýœï\ݳhWQöicæÎÂxØVö!§¿¶xÛâ^["8‡øW—îÁƒáî êŠbÀÀ˾@iîe5,P"¬B–Qìƒ b­ Ey*E£<Áˆ¦–ÃS9Ë ªöÀ +FúFpNÛSØ7Wh ÍZÀ(–ÁJ,†/¥Ùm—è:*Dj¸V }ÆCÞÐe–JíÖP-Ø–u6 ú Š9늩V+Kê VÅDÍe¥Í¡5”¶PäSVàâQìG]ÊR)ç$Q/­¶“o¸pòŠ5—UZ‹Ë(Ý€Ç#Í„ +¦™P½ôåÝ|•«Å`Úh°®Úì‰7#‘ +Î>‘v³·M¾²u0¶á§?€¸¾Í`7`¸ìR*X®Ðš¥±È˜Ó¤ð¨Ë¬ä ³]^ÈZ),h1)'j«ULù©‘¦JñHg]AÕ†ØRZ[hò)[hÒ)7 19Y +Ö=‹v4NØmÆÅ4;kIÑE  "[…d3«4ê¥Ôx¤- ÕføJK€aÙ“( ¿O!^÷í˼mkîµX™92`„á$šŒÄ»)ôk;XùŸ@½cײ­–_YaàJ> xÐNÂâ ¦ªn á°Dš~4 Ö‹‡¨Å;L¸À-TQàZ­?šxY¨aH§_,% ˜!—Ø ¨b¼x”¤x¤à˜œDk-é«%bÚ +ÂÞ¤JHƒèbJã­Ú £d‘¤íKÈ™Zw‡&¤tQ¤ ÿi䣼p¬A`1¥+4!Í9öÍJ›†²Ø´ý$…öDÕC 1Ùoöâ¼ÌÜY¿ñkû9€s6Сž³7çiöÐæ«Z6§KGó0âÉ\‚‹W˜[ÀÊÀµ8lÉÛfiøÒd™º31š?·,Í_–×]¸RÑÞ´£€G-àkYQ?Á¾Æ1²à"ìÞrƒ\²ýþ02æÖ„Æ-Ôy ÕKÇÔ‘…Á”u¯œÂ8™ƒJ`ó‡ Àf»¼×¨ìèd[pÌ7–è-–rX—Ú ]HˆQPò™Ýà%5 ¡‡¥VHü7ÿ<òÍA‘|µÒ§—–"Ñ8[áÈœ;´¢ÊYPLe G8é +H4ë]JhgVÝ•Ði“Û‘2ý†Vκ‚“ÍYiÔKÇì}-¿Á¶8–‹æ-[„ XHa(uþÍ<ŒyòÔ Å™¨óožÉKËòÆÅí-®«Û–c8§â Ì.™c  `ÌfH`„˜‡Vˆi@…˜V^€‰u!w0@55±Šô›—F i;(å¬+¨Z­Lç;Š +ÛlÊ‹AˆX¾ÂÙaW¸/fEἡ *±Lô ¨m cRÞFIaŸyqw)AíLœ_[G°Îó|íîž°ÝÍc(·µÉkó0c}žKû>ˆuvÎw®Žy»e2-Øuíc9—¿P¡÷`¡grÀ}øª1À¿4dñHÞa.õ´0ha]W½,Ðæ‚‘“?\ù¶"‚NûÀ™kJ¡6ô)ˆ5ÒìÊB’‚ó޳W2Lh/HÍz+2è,/¦2‰ô‚ë/.§Ÿp‡³ÏS(uœªOämø8ÛrrÚ¡J{S(¸HÁH7‘†k#L.í”z8wÈ2"{'A±Ÿ”°CD)­3$ÕnXCõj<ÚBz[:³újVgaÈj1˜±þut饳® j}õfŽUAw‹gUȺºÍa2|dÚÀ3ìµÎþš¢á˜1v!æóÉ÷u­£·xÛ‡¢\¯\.¿´Æ5¾ÀÆ7¾M®ôNWÚ“´Þ[-6è+'žX¥R¯ÌS˜Gó,âi9,@" 'e‡¯“¤ÓZ`ÐPÍj05ÛAX,0ä¹%>>™r‡.$°P#å&RDùˆs6â ¤“Bû¥_OâôÒ `PÊ"¸¤ÒY('<ݪ¢{&-ü_Ââ‹À2bv`ƒR¦B¡èƒ÷nž0]TØm¸m3¿³]| œJêŠcMØ“æÃ~$÷´CÚ ÌÀ0 R4Åæ./f,JÂ.»`G¦…`Т«>±ûGÄÀÆ@¾6Œ]|a@õk‚—R°«›b@B¬CT„U5 ƒR¡¨U +ýÎH„²‰òé·.êü£·¨¨ñZwÜ `ªÕiœËaîÉ„ˆµ Õ2™†g"ÌAmT³v•Ÿ ‰Š²®)ª}él+MÞRŸ‡cTÃeQ¢„d<€ve1gÛÏg°,ÿÒÁ9\Èâ_ >\ç<÷€¯Z°‹Ø‚ß!¸x‡+ üsiùXêacøî/~‡à`4ÌžuE9ô’0F!Âkìd«llåËlLåK#ñ’ ÐC¬KY1(µ fDʦŒb? Iùƒ +™Ö—Ñú•O-†)œôV—ÓnÖÄÅ}Cyñ׊ԸÁ Œè–|Î_ODoUJå.i H?™'o–"Ñ(WñèÌj`-Õ.pY;‰‚(¡²-ÄĘˆ&¦uGpnËýŒå4ö‹o³a8Ý:íVÒ9ìÉÿ5…D}H§å°8p X¸ÖîµA‹q… Bõ~‘`¥(ðùÆ`­Æ-Dè¤â}èq±'•Nëg†à‡ c" àE;˜À;îFU@£ˆ26PÂÆj Íf»¤ ƒÙ2ö`RFhÉe†Õ¢pŠÌHq¨µ¯Ø˜ m1ƒ3rã¶"¢©=ºôÒG›]ÚÉÔÆT¶À$T;„ÙWëÎÕEŒƒ÷Ô¨¢}`Dâ*Uœ“B å$QÁº‡o–Á3ÃÆÌÙZ™¹1ºæ¯mÖéÚÕ4{h3ÿÛâWWxS,BÄVÌœ™X ÝÙMwÎˉd×øX ããøâéê;Ùòa°õ5î¢Â˜Ç‡ª1‰® (Ñ…U€_Æ+Â>Œ_„MÈ2 +†@Ç$ÖêÈ'öƒ—r——´…'¢Ù¡J@ú&PN.úü›!ÁÄv! Ä|eÀ¦V”LìJhé))<˜•4ÔFyiôP›K*#d,•2™žŒÕ…mÁÇçlô¸õéÖ™qñÔ€¸zh1g6ÏâðÅ%$ÈÀHQàwv‹j£LUC‘—aø ~0ñ´]ôž•"þ/ ”zÁN/67Ûà3‚O…± òØŠ¹ñazc`ýÆÈ.>Y ‹x!SÂ:V¡!KXåÌ&…j³`BŒ±ë¶Q‰›¦2âî`À©¶ ÉùÂNšƒ•ÑùÀ‰Fzh²ÏAö +«˜ýN‚z¶ÕJú¬@¬¨X¤©^<ÊV«š²'˜æZ11~e‚gÁ¼eT*á[í¹–†/~eõkmðŠ‰»³:…r´ŒÝXv)4<' 1©Ý)ÔÓÎ豉 mròÆ%Äê±lW]fB˜ë±–-cV-ŸÝ,ö€Š?åq&› î´3Äe b Ï2ÝHü0„ +ÞÊAÔª ”¥L$ÒZ_Hdó”츻BˆŒ5ê0rö=²:æ¦„Æ Â‹ê¼ú­Ÿ8=•æ>¥EÝaË©l¥£S+!Fæ\Å£3‡fBÌlÒ&!}-Ûj¯e·Íð5÷ÚÂò ´¸ˆ!våh¥€ô‰AÚèÓ¯eêÍF¢€2‚Ù +ZTÁª˜Œ‚E¡¨ [m{R#2ý~áXâ:þ0¥ETK¸ˆ ã 2Œu€`0Vñ¡h d̤Y/Ë2À5(@âsÕßnxpíÚˆ^x·pñüšðeLJF#öÁKlíņ¼×dÇX‘d`XRgìÚ´3zgYšÁ3­éß<…ƒ1«e€bgZlt¶%/¶`PRÌS§’2£ vªE£VK&²[X‘Å FVðÈ»mÊZ+bU5,k¤CA´¡Á?5œ:93"„–'%EàHNø† ~6÷Ä2@ULkÜŒB¤a°d†i·ð +À¹sRI×r ˜ÐËšRCÍøjõÀàûP3â-k&•í‚L*…Ò5, "‰²ÆG> ¯€émqB§}é1o`E–AŽIÙÃNe;V ?K’º³š°;`¥#ܘ¬?` õZV@=• +DOÓwFß ¾uqÑÈ7Cà™íVhÐnMrüªš2¿âð#!¸À“¢.𤨠+ééŠc»¾Àhìˆ`ú©Ðï™à›Ù•Lîœ +ƳBp².3ƒi]€Â‹l¼$̱tõ±—-µ1^lc¾è± +Æ,<Ôœ »Àé¸ð ˜8">Ãovd„8†ª:–x\L0f­ˆhÊ® ÊX)#¼MÅ…—cbc[d•̈-ÝuìªfŸ]´™@ »Ñ&Wk¥$S›å²‚þÐ%Uް#Së4ZØyù°‚p†HÀŒ°ªUN,‘dßÍëlͱ*ˆà\Y\DŸ²íåEï¶®Þ`(Ll¹/@j{9ä4~Ì{\˜Ðá(]zæ‹,j•7¼”-:@O1ÀX¥ÚíX[ÆN:,ÛÈBÊr¹¦qKk¯p FJ<)ƇÏÈ𘪣'nçuAÇÒ® h³O,qNkáKhvoIíÛ/HÔžpÒK¡ÞîÖ‹ÛÊ\+Æc7– ÊÜ“E …VŒ ¹¦RcQ€aS4(Ã"XýúçÛ0Žáµ¤C‘«§[~|ìëÅ€ùòÅ4PMÖ>QÔ(uÝ P~ˆ--Äfðè¾8¬ Ä +?ª"ú8Jø‹3¡ Ìoã-aö˜µklÜ¥ËnŒ€Øvl׆1=7³`;×:XÀd€x†O9©w6Œmp™%°c6«2Ãk`:w°‚*k)@B›ÁKªØÞê®H?›r£Ç±æ°ÿ•žBÊzÐLËóH§Qr†“é3ûâ+‚IÅa˜`(½ +¿5Òõⲋ§° F“w&Ã6Vd¹6îñõ·…‹ ÅK ÉãË–³D•7@#¬õ‡qŽ®¢Þ.ѸE6 +C`ã6n²eaŒ¤N\Ð1‚x%sîŠûy9à\ ž¸ââK6>\)¦‡qœÙ„z¼ +æX$Ë݈ƒµ¬f}Q;ðáX_¡¬=|ùìeWføFNʹí /¾Ø’ô„žò’2"™Ùþ%ÕÙŠI'ÖÉ…bØŒèzOÁö Èzµp¡Óp$[•ElIE8ŒÁqXˆ±¯>.7¾"8ö¢=; óé’ÇE¾ä1“.íø WÚø€/ºqÂâÆ „™!àj\CCÐ”Ç ×ϱ*î­¢8Uïá:<†ÏDí$ñ° jÕ¸ŠP³O'À4Pç1//<Ri¨]ÿ3)g+•~9(é PFe +C2龵ε>lq +²®oc_Æ0¼«$Е(`À‹¶nŒ[6fû0.¢j ÄÕÇ?β5x™Ç—_ù¨Ä+&<¢YÙ-2B\ÉÄmL/­q- ã"YƬìñ[iãt¡Ð5AaŒ„CÑ8´•E +39â®8"ÖÏ2˜âWEL܇óÌðnATŽgÞ«FÃì-4êÙÉ‚Ézæ ­æ^a_ž)¨¼ŽBÁÓLaem³Ä”7o+´ØFÖˆD7Œ‚F|¡‹d·Æ=ºhÕ@ÜTÆq)ñp A6ÆâÆr@6@×=^€ ;FØxnc|õ±ë§„Ú;$@ ðˆd/þÝ—qv\€ Æ>4ü¡Ä’ñ„³Àg,–¯xˆ\L‚Ÿ”Ä£r‚ø“Gª â?<‡_'8xúòÙóñH8òoõˆgdpXÊ•îV$Ú{<Ûç… ÝHÅ€‰Ëf-h_%Uº (}ÎËmÙø– ¯zUKp-Àºµ@¨!ú8 +`Ðö) @ö0Ò5î Èeã-^bã&[ÆI>@À( X52ð(À4ʸŸ°€ ¢âZ ð¹JoÃЀç…XÀ ± ¸ß‡)wÅÉhTr}ÄÀT\…sB±ƒŒÁ¥ÌH~n|@˜Ýø±¬1Æ/²~Œ,b°‘Á‡¥SÄ‹õƒ%’BÐq…£€^80–¡ÁÁ˜GÕ¸††¦1 C\$1ÈØ¨“À÷4@q®§#΀Gˆ;Íñ¢ ^$Ä•d†øÒŒçÉÉ)â>;4u]æ1—–a!œ’~G¸Dþ)"ZÉÄk)DKY§*«œf¢ŽOMÄ¢š©Pâ*[\AÃDm7y¢u­‹–þ6Þ¦6þòÅa\¥ƒ†q—,¤q +:V$#ÄÔ`«âštîøÕ€ÛeMñÿà‰Ó ž8Ø'NI‰KJâ €’8 $Þh‰ch2À±¤øÙ•ïû€«Aâ”’ø‚"ÎóÑrhhbøŒ¢ ˆ2Œ‰|ˆ[#”B¥›-Ðc1n!¶5.ÌlÕì%¡Ž˜Ý@H w?Þ€¤¤ÔQhcÊ`+Z°1Æ=8 `ôÓXFœVI6E#\_°9à¡Úü«EÅÛ"àô%f@‰o(Zâ’ø…#%>áèˆO0JâWFGˈˆkh2⚎ø†¨#.Âé‰g19q:IèÄyx¯¡à6Ž"B îa¢sðˆ•Ð.’,ŸMl²åSpÉ•ÎÁ$­˜] C0¿’a|DÃÑXµÂΓH«o¸£W¡‰“=(➊xRߊJâ_ ’xý€‰ß˜øWçŠ:â–Šôq¦¡£kâ@<‡óðž3síû ô²@¬LäÓSPIPÀÖ.œ€LôKR¥R Êî"—ÞN.¿9ŽˆÃ6PX:æ„U2WhƒÊ7æ¶aü¤ƒ1Š 9L ¯®(ÔðÆ­'^ùÅ»¢8„'®ÖÀ‰—1pâ[PH\‚Oà#ÄŸt„øSN‡Ê1âO7Eœè*ăxÐÿáM5BÜ€L‡²)âN9CÜH&ˆïpGGRãqðÅ^#§•EœP®öÐä„’§©XRìåaãÒ»ci¡Ž& …$ñL„Qc²rØTÈ×Ï6î†`![hãU Cˆ¼p¥qÎ8gGÀ¿¤ø ‡'N7a‰“E@â_QG»BVC yéüòø¡I¨ãfá —Š6>OÅãiKà{pí'^dÄ‘xï±á4œæ†Çð™ !~k€p¿p]é¼üö˜qÙýAÓû#æ`‘%Ý!¬ „>X;½@œlv4ÁôöÒI¸c‰¥è“¹ÄbLR$v’,¢¤õ³hŒM|˜AáV¿a%à|ˆnbøŒÏá;\‡ûðŽÃq¸Ç¡¹ò~½Æ-ÕHòeÙã.\b\Î4¿L<%û&û–8™üKb¤Ò;d„¦¤°xÄ”6LË%˜ŒD- hb2YÔ”4¾}Bw™*åÍò4 +Üå¢ÇÊ/Ž1²” ^A@þ0vòá:Z6¿Y âŠ’xÔÌ7â;<ˆçpn#ÃebxL ¯á4W3Ãkx Ÿáœßð®Ã{®F|B×?µ,!†ZÆ9>䀽 ¯~VvWMˆ¬°ô9½D4òˆ©¸ +™)yä+V iùÝ‘“‡Ì/˜Ý -6»@fdî˜qéåA3¬#Åå"ŽNÈO"y€E˜CŒ±hõ$ùfà|ð/¸T Ñ çæÊ¯&ý‚~B›4šõ•4„*i 6*齪JŸðÞפûQÌ“@ò†CFd—REüF“ƒ? ³ !FâŸ÷1¼ÛñÒ%mN©"þ"Ë?OTé×@Á_‹E/ešø… ùlN.Ðb޷уë:Þ9ï$ +&ÂäûBŽ}D‘‚>i“Û¡H m)RE£J@[‰Go%£ò+@ÑhãÊùBºÎôIø£PiòÐê?¹¾ó½jäûT&½ÓgØÞÏ}™63šËY1Žå›¡S£“6m'2ÎÎ+yv}Ó(¡jÜû<‡wuŽÝgúô~'Pïíλuºq?ˆqï+8Ñø§J{(X©sð]öÙ9ß83èæ ¤~«nTv©RÄÓwW3öª˜ò„šr… Ÿ2•‰ÈÙ‰´°'az’g·] +>QI_ýØ”JÞ†M†që`4‚gtÏá]¿Ê!î„|Ö^ˆ“Ä_[*U±;…z#ÉA_$þóC‘€õ)¡Ýö?wž¦OM޹»µ3}grê¡ £’¦ðÃS~ࢲfÚYré’6í#ÿ§7(’/ñLaˆ§CQ#q ;6…)êaýЬ¿š þl’T; ŠèÌ@ä+PÁø/ñœ-$éœ3°~ÎV;(»‚i“ð5æ-há賘„Ò„xQþ'ÑÂoò†*-´…ù˜<o)$ý‚ŽI™ƒ@zÝЉ‹*;ƒŽÞªJu +¾sç|Oø‰SÐû âAö}œÁ¸ºÆO­¢ìëVÚR(z)UÃOe"ñO°Qù¨ê Ò}Ã:B»_£×V÷Öù¤ÎÁ ão#’NÂìúïçÆr[^2njtÕÊAä¿êQÙ.ǰٙ;²Zç;Wï„éz¤^=3—FIú ƽ?swÖcÒÊ*ô¸ôY@Ç )èõì$Ë®-¥Š(†¸Ž ¬Ò1YÓNLØZ&%<‡' 5éb-úõrˆë F:i 80g +;:å­§5*¨4½&p†A›Å®iÛÆÃ „³¦2áX-Œ:=tñø”`ìNž†T%iüÒèkÜÏÒô¥ÑKž_¿`dw ÃR¶Â¡9O©":y‚o$KÁŸpß?š´¤xô L0æ„á.k«šrVÓY ËÚiØNÂô~"É?Oe¢±#@ÑU¶‰ ÿ¤"Ú†pv C<ë.r¼nŽhÖ`NLÿw‚âþšRbhrïÏØ™Õ7€m~Çk×´pô[KF½†" 4Ó&á?º¼&+Á¬°`¼§Pqˆû‡¶¨÷^âô~)a;ŒÃ”9è}ï0Õ IaU³/`áè‘0»¾‰3l/X)¥Šø 0üFš~¦¯Œ–©»å›Á¶ÚÈÐ#]v½޵ƒÊ<·VÏà©Ñ7qµá\½¾«P½ßjÈåÜ`F£ÓÂEjhC"~/ an9[ƒ×V7…~+˜´ÕÊî$ +þ5~j4ßb³<»õÅÇ´Úk[­ÍñÂyŸE¼ˆqï;‘~m ż/GF_ݶY"J¿_‡¦wð¢ñO0ü6ܵa†£-5Šh;xù°€ìKžƒöÒ&÷† òg9­9!¥ÅŽœnÕ~ 8£›ñBÍ Œ²¬’¾§Û×£MAÈæ»^êôО"qø•4oœ@¸žÓ•3ªä‰ùzL™–ß´¯µb¼‡‰]Óþ,cwËD’aFDÇ:íB‹{7Nß›ísxgó|ëì¢H@›†¯¬Ëèmg^†ËJâÙ+ô¸ô‚lú-s¼pxpÊXIe¯%¦ ʈ>+)a‹9½˜xô3qjôQ¦ßÝÆ¢ý$úÝ>™†ýŒ]‹GšÎÃj謅$Ôg­~v*UE¦MîöÇo¤¸gK™&~ +90»ÕŒJ[ +µÐn +õO¡‡þ I_E“Æò¡ISàqY#8¡¸¤É½yéŒHüthÖV1,= Å©TEÏÄ þQ£‡¶T(##4O#¬$ÊíR »ÓhaG`²®@$T»AJ©–~2âþÐ*Ú'Éœ!@IM~Á9úð­ÎùÂÕ=‡w¾ 4|U«iæ†ÓgsX í j×’Q[ÄÒËh·0ÄsÞP„ÓO~&P¯“5‘Þhrðû€õüÑd×3Hñè±zXú.ĵOaÞ§©[«iðÔhïœ'’ì»@Á?êÑO¡Ú +T8zª‹žò¯|G1é«fLæp™B¹ö‚Žþ‰Ãï E£½i8Æ”Ix/mrï Æ½odéwS@´Ȩ¤)ᔯ~`Ò dDÒP¨‡]¨r¯ÿ8êÑE˜€µÕpwú,ä Ó1yÞ:_ºnã×VËäÉW¶c– ‹™»åÂ:Ïsh×küμ [mtèÅdÔV²QÞSªˆÞ(ðž©C«yãnš¿³Æ +Æë\BŽ~|EÓ^Óêì à[í$jXgP*ËNPxRFi3&;”¨¢wòün¿pB’x¶‘Øï>’ôú©TE +=2é L>ë+š] sð¦ÁS£eÚÌh›¼¶¯38— EâýÀ…£-%šø—.»[#ÉÁïÄiXU@–µÓ§÷¾të2rg´M^›×¤ûF’ƒ +Å»ªÊ¯ DdwÚün$í¤È¯Íà„£-Џ)h_xÂ9Û¶É3|kØšAµYÇK×£Rý†'¦2/ª³X«êç²Rê3,¡­€Pv­¢ô!™] sp‹è¶•;«ƒ +÷Ƭjˆý×S[BŒÊ¾ …¢J¨laˆç¡eZìóN `4&3( •'äМ3ñ¤µŽ€ú A6ë*’?jøEþy£Ê¿¥K°ý4s+Ù4²$Ä‹ + - ñX£×VËÄÍ0k3¦L›õ9ij«hHþ&¶7y|Ù›>¸ž`…cW«©Ïb-•¤`¤ ôy#Ì?O…ñ/`Ñè™6ÁG“ƒ6Uê¢}4)h×ìµÕ0e³׊àâÚ\1p_VÚü X8ö#LA/c‡&_Ýì,MŸš|”ø}óè;´y'lW 9þù«Ù6Ëå°¯¸­\#˜FìÍXþEtÅœ•Í6yq6l>n;ÇÀmå˜52¹'±Î[€ªåÂ2¢–ÀÃr>Ê ü6}nuM^[N7.êô2P‹F¯ÀE㌞Y}eûZ´YŽq#£kôÖ²œîÛ­$ÜrX ­µŒŒö©ÓÄ´Èו:½}ÊÄ¡GpBñ[帤³Ž„Ò<¯x\ÖV4.;ˆ"¤=, ª­U$ÔCùD»[¢J¾ïJxcÂÙ3áìF$öÞÙC~?ŠTÑS`ôJ›ÝŸ3(÷gæÐj:4Ó÷öwÀmd9}pc>„zvcÞ]Ó§æ9-¢‹Ó"Fþ¥Ìî-#wFóNkaÆjú:ÖkîµõÅ;\qe³e 8(»-%ä,VRÉ® Ec—2qÈÉõT'?ÔiaâŸ_²$b¼cÖ¶4Ç~uqºË‹—…‰íÎùª“5„’µf`ŸÁ+“¹ýÚCèõ0þ³^×4ƽìÕµ`2res!\-c7ešø«jhÒhˆk)UÄ0ÝÏùÊu*…L ªÿÀÅ”žB˜t9hQÞDŽ?‰Ã±:>o,b Æ< …¶“(øÇÀÝ4š'‚Üã ÏÕøy!žÛHÒï>ŠÜ‰ÿ¶G–‚6S&áÍÄùµ‰&ùn Ç;»&o­ËÄmk=4?ô¨·å ÏÝ2pdóLÞ–Ð+¸jôA‘y_&oL&ÊœC(õ’€î|ëÑ##ga§àTëÕzú)ôØœ…ù¾Ž7îÓà¡y¿¸ïœMSdžfg¯j6ó6FÛøµ‘aÅ¢P;X“Ñ{PZˆRÏ_ׯ°2yiآͿÚ*Ç%½À…#ФÞÜt®£N"8áXƒ59µ»8zœµº¸?\!Mš”#k P˜CÙZ[RTå©SÅ5šø…ûn®ÙP£ÞXÔ)ø6šì$´öbº½PäsfòìÚ>†{ݧïQ +ú(ÔD¯œ-WÖiöÌ~íîoÛÍž»¯oµ6®kgðÒ´2zgY0›…ÕPíVÔz†‚Âc—¨~ID¿”jÔé¡_ ÂÑ÷xñì™»³~Ø–DIø:ÃöOcÝœÍCHGöÅxÇ~qZ ø–– E>ïAÊhM§œÔ9øs¾rtO£½ôù­©P(z¥Mo÷ü«ô€¤Øœ;|)e[¥qëÙ°q¦¶:ãÞðÄTF°b±¦R±X/ÀñHOµ0¤!ü˜œ1Hñœ¥Nú¤OÁ*!–ó(¤2‡$¡µ–Òz+ éÿ::&bÉçmE㲌gÏÔ•Õ×6/óYÌëjVgw¾u¾Á E› JçØ‡%ž¶“)á§T›eòÆd H<ïb’fÀ²MÎä•Ñ0e³LZ×îÖù/mP<·ZJ:m¦Ñ¯—É3Ó^åz‡Ð­6ªäö+ £L f÷ qøDÂûŸFþpÜ™#ÓÎìeuãæ©‰´…$ž3… ›sÔhø¦É[«gèÐæ§Q0 _ãf&óxïl&ϯg`ñŽDÒ ü>‹tÿ‡1¯O™n¸h¼“2o›?·ž Ñu]«±<ˆuõT‰D¨a$Îë4yj2 [ã¶,&ÎL,<7ë ÒÉ>’v´g Ý`Gä<……fÄÅLʈÞAŠ( ¥zX#mr»T +ÞaЍ¬u@)VEÕs]!ýX~#Ì?U"ÜÀ€ì VLv+ ”5ÖÍY Éç§• Ž…%Aµ³ŽˆÒ\DÚ7|p?†m+ÏÜõ"Ç¿m†#½C«hí¡Š(- è¡Õ“†"qXû4æ]þÕ ^DÖ˜j5¥•2½ßF­¶ dóH•w#œ5‡VÑšÃQúÏËÈæü„ZX÷,ÚÑ5\µ¹1†BE¬+ ÕvhBšô è‡*ýºS*¸c-¹¬³´ˆÎ h4zE¼úÊvciþÔ´H£õÓˆ0 Á†d½€…£Oâìz§RpOàâ‘fýúî\ÍÆ«}Ây7¯î)Ü«wÀz³‚u“ÝCRºÂÍz 鯉¨’uXõüB|vÌÛ¶ŠÜóaKPmJŠn•Ã3Ûà…d ªØ—8 kôÜèº3º Ô{_¢Ù-èÀüRªˆ~<÷gêÒfn\U¾œP´ŸJÈ1ïÃu-÷êâ‚›³3xf3Pâž_ºìn>»[%ËÁ±9µ~eóÙ®[í³ˆ×¨@¬Yû4æÑ4öêöÁbäȰB‘€tH`ç--h0.)˜:ÁÇoîóxóúR'¸3q~mž0^¿tëH—]OáÇeÝu„ÔÎ`”¾K›ó®nLÚNŸa{&.mæ56 &­ÞðDtÞ”v2%ô8á7fMþâ"4xà,\à0dÁ”Õ`4~lòN# D©7ç Êi™Fpi M:e)ˆ]Çk×$jHïÞÑF˜\úk¨Ök‹jçê‚Zcxò9 MîyE9.ë'SCÚ ô°S`ìW;2髞žƒÐ:‚‹É$Ù½™6 ßΚ+IéÇ"!%S2zoMõª|ú B,ë/û©—~Jw +C2iKF窕½IÜ…û¾(øg0Jw5 ½»XCoSBý†(½AI¡ÜÉS°VíÖV>.iUNkQ@먈5MŸš|»³B•{ýjuÒ_xÂ93˜á؇Ä|}f K¸&ãpßjö:Š„aÇ2²9g±’rmQ¥·¶ Ö˜|j¨B~†wÐbß—3ÓòÞÑ ® ÎX%©6VÍyÁ +G¿@ã`Dã ÛI“Þ{ È~aHèL¡G&Ñã`W°‚ñkòYcÁ¬(í<5:§+×ĈôrxÞzpö%ý  ›ŸÉ+“oøèºNàÜ]ƒÇÖeäÎæ«™Ïr[‹aÛÊײ­Vf®,Ç ×…÷z ë< ‚kA€¸áÊeà¨ÔvˆB:'iz;ŸÅ¼x–‹ëJwgyéh#ËÁ^a +§üA—m±Qû'-|…"ŸZA»/&{‡$¡ÝÃÑNU‚±Ur»Óg¡—BM”±#›ùÿ›¡C“ñ¼‘¤  ¤¸÷¯i_Ëmlصm›ýqÔ££L$Ò@“{s \YŒ™Œweiñ °¸ÕÔï`ew03{hÚC8™¦OM¾Ê}±¯›œSøFó:ì‹ð BIÜ“8¹þIqÆjýÌŠø’J@ UÆzâ©MÀ‚± Qæ}¤MÁ®ʨü%õƒU1Qg­)ìȤ-¬zÎlLÖ X@z, {âúƒÐ¶äÔþpdÔ;xQY;‰‚©NÚKŸÞ/$Éçƒ(ùèžÄ;ڇѮÓô±e÷j£†I³Û{íŒ(»’&¸3z?”*¡Íʵƒ$÷|"íhC:‡Ð­Ž¡#ÃòÞÑN¡aš>7Ƭ‡ÉÈ™eyëê#LA/D©×gôÐæ™<4mŽa-DéGïÚÑ1qcrŒÜVÞ1”óM£_O!Èæ\7AñÝ’ÌØþ')>&tf÷ßøÅùžB¼ï %ÝÉh]Aˆçü$Zø‰ýnD;[‡‹$æ~&=Öͺ üiæÚj›¿·™¨²Ïf€ÂÑvàâÑëtéú Y Ĉ÷¡F ?ÿ‹ÊºÁŒH:i“Û{íjŸ°ž×áÚy™73šû,ØÕmLÔÈ—Ó•ë2pisMžšÇáÎÍC’u’¦·ï„íê«ÚãX h×°Z;eYHçE¼šcúfðØd#MÀúh3PªâüaœB¬€Æ<&E†ç²Bbnâ Û>…y GO·’¸=·•ËY‰³ë©N0ö'i¡Ç>?sg6_׿ì ÞÙ,ÔÈg;qnƒ÷ì¹í S¦ kûb|+¶ÅÃBtà7˜ˆº;;džå^´8…X¼ë˜3m—·M&ÊœyñæG;Z ´[QîÑ1ncÚ˜22ZÈѯ/( ±þ[fÔsQ€x³Ö<–u•M­§·KÈQIƒ`=­·GLŒõÕ°‘–§£3í¶„âÚA È΀$”}ƒ‘P:“ÒZ‹U´kX£L{å`×ñÎu™¹3íõ­gk×èÇ<šM ƒfƒ]ß|XÍ_Û|7_Õ>öú¶Åæxéè£É®'Šô<ˆuõLÙÌ}د½¸jÕæ%Q«™ [‡– ëQÔ›4k£ËÀ^ã§VÃ¤ÑØ+[-vû`B˜{5…#Ú§Ò°¿ñ‹ópdrL™Vçk7GYÑÁ´œ %ਤw +éúa§Ðc“ÎàdT[’rÔû9Ô³(m¦YKBé,$ õŠ~®îA¼ëA|?HñÏ÷îõ¢IÀ¯´é¥"ÑØ±‚tʶœÊXL8婉4|i4ïZ0®õòšÙ[Óiú}¥ÏA´¸×sãê¹ù†+—õyÌ“…Ä|ôâ,cg¦•‘3ËþHîi©\(ÖP& ë.œ “f‹IêÕjPÒT)i&So‡RQHWHÀ4,›À +ëE-!‡¦ÜÖó5yoõ“ýmH ³­÷’'˜®Ñs›…$ûê¦Ñ¯/ºôûAz>üæaÇæØ–M4§ÏÂOÓwVó3±/~Æ%ƒgv»Á`Ô´]:á:)ˆ5'Êà\àaYl +ݰ +hÔbÐ2š½Ò©…ðC¬mPC¬dSëáˈl­…•„S¦{‚ã–Ü1¥ ‘È”›ÎI›fmѱV9e2 »ˆ'¤=mÈŠ2<0ÔÚx°8“™”°AX)…pÃR>bQAŠF/Eªè§TŸFÁ ^<ÖJ›Þ/cW6ãºÕP,ÖK „¦­öâ ÄŒžZv玮éc£¯n66Ç+G3y~½’5S'ØÏèÉÜ‹uq´øYØ×ˆ}ÕÓ,ÓˆïlÃ}ÓÒì¹icæÈ´×²Žå7öëfPN†"aØ1´Šj œ*ÖW¸;Ëïl׵γé¶ÉP' +kYLe M>å%N®ӵë8ܸÞc˜×—H¿µ…(¢Y_FÈ"¼Œ˜À œ•8½ê´ÐGÈ!ž hìN ‡5U Æ¡É>?U"±‡ˆRZg™˜è·“¶ †ï¢b‚^£Ñ÷„õêA8š¦MŽ™+Ã^ÕÆ´B}ÿ*ˆæìÀÆ#(aw C²Þ0…TÎêB*+€ñH MöÕW9; “æÅÔ~Ø nÞ)¬›uåüd ©Gÿ@êÍH^™È2‚ôëDâ@zÈò¯6â ¤™P é$P/ÍsXWßÂÑD”€êc ƒ’¾j’)c-Ùœ³¶œf·¸˜±V9eC¾³fFUþì’~-È‹-‡ÖP:葯oµDâ?ŸÆ:_#˜6•j˜ã…ó|Lã`>À …uaêi£\(j‘D½rLYÄԚÕPZ‡1NË5\eà3­#ÕÁ,WLÌw¿kK ºjH¦Öèr†BU¬ÿ“½ïÆŽ2¹ÊŠ:üƒÉ–QH”- ’$~ŒÊŒþuÅBK*­…¤”Q„´g™¨Þ[JJ½…Uϙ͂ŒKºPí(£Y =6³ +\0Ò•xlºT¦{ _Üê´(Ìí /tel:ïiqǧài1ºóõ1§f„®{Ûê£/›v‡9•G¦mßÞ +8ïÃLÒ6›`?LK9pîÉ ùFé2žŠà„‘ .ô½©Ê\å¢ÿ?î$?kqgåYГz4˧9<jI½*JUê +·ÈG×îï~ò5²ÞùœdœÞýäã<ÿwß'Ê3µ+K+ÓÅŸUË“•£Þê=Lòþ÷Ä}ô&;Çä_ëôÁ>«ÔcVæ?˜µn©ÉVøÃY¼9ÙßÙ®F"/îŸaæaÓk£ÏÏÏO½Ô2P¼?ë¤i¸·òQxéÿ\¬ú³’Õƒ­Á7-oüe0¾°‡ˆ{E~¯WÅCöÃð2=È$`ÃߪJ|ÿ¬ìßÁ aâágùÉìÿ÷ø}¬aß¶®£žÙó¢#Gu!qØñÍ?«f[Þ.2×bÍòÆÀ˜Q–µý=Ï·wŠ.ß wo»øIÇY +íÓK ap§ÿÿ¬ˆó‘v.X³®±×,?ˆJzÑž›Ø¾æq-8òŽ´´Dãÿ¬:³¦|n³~OœÅ øNü·ÈTwH½qEµçA-Dxf¸LÁMý³rÕÕƒ00˜/qÁuK>?«S»pXMGàqûõÿÁßøæ*þÊúö®üYÜÜàŽÁØY ûá€KrƼûYÀo„&t8ѼOõ¹W“-!oÎåÔÿâ¡ÐïØî/7/ì/'Üh~V,®*ñ³"æ5">dpÎcP³%‰×3ØmóëÁÿÜZ‡-9û¸øÉÀZ솓·ÿ 3õ ì3Í.Äò>õõ©åÔããð…"ümá6¥ |]/ðyÒ~BgõõaV¶Ã퉣ܯß{§vmhìGzâ#‚ùU»EÜÜ(ap²(ôqó{-qŒÎZ£ÿiÜ®;G]‘ã/Eþtè]ÇÓ?B”xEõÿõÙ·¶R‡÷PœŒ­ŸÉúiód^xš×ÇšL7=wôž¤tux΃*k©rêñËÑ÷¼è¼«…C>ºÿË+6˜wß!ˆ´'E÷ž‡õø.·õéÕ!{vç™æ…Þ-·Ò¸ù¾l¼h¡t5€é&•G²Â§dV’gb¦®|Ñ 9ÛâÌ9ÒãƒH¶ÞÔ Þ+m+òÖwÞo㺜`Ç SWöÓ¥w×R~Æ#ŸéSë߯î­Ïóœ*ÀRI»Zzô¹µÙfl(ÌÚò}„û’<+\<ØÐ«»X¼–ØÞMÆ¢¬ð…TÓ}º²µlkuCî½qˆC·èV;º©U·4-a5«ûß'ðs7tCyñÃÙì~¿Ÿd{æ¿D¢¶Ã½Qè¸$}çAŸ,9í—,AÎLÞa§ üÔÕÏ~½SªaF +ꪶúú±"ŸŽUÙ\=½Jñ®˜7VD;²ñ¹”)4 yZë¦Öó'é³w…ýÚê‹$ nSo8Z¸KÇNÞ[ïÈ8…×FÒζWa­N¾KÙsyû½"Óf#ÀâOM=AÍßW}bþùF²5[%Ê“<¢ L$ì³$ûÛpè‹FÃÝlNò"~ñJ•Ã`C ¹­¯t«êœKýSÁl:– 6ý!¹3º™ÝV +®¼zåë/p>ýþ?Ù™»‰ô £Ó¾$fr ÷Ö¥ö²iÃ~=•ß ˜"Íf;?uó7o)ãϯÜÔõ#âìö¥7ÇÁO%y™¡a&ôƒ?ù ÷štßjÄö·{×ñõƒ¼ò”>NØÿ6Ù×'Ê;Áôû‰WÃ侟§‹ßÜ#ÇNA·ß ¢Yñ¶»…Šm9ZGÈ«\± +ôà€½WÓaŸ¼igàSyvcÃê×V.Õ‚]QdžZ»‡­C­m]©v>åì`âGåêËöX_ðãÓ¸:•¾P,êÖÀÈ%Ë+ˆÖR§t£ÈüL" <ðtŠóôèvÝÖß-נ؇PÉ{r„¯Ó°{Ø¿‘þóÃø9´åÍ |1~u~ë< +ÓD=À·WtN4‹v)½ß[—;‡ðè®æ+·ûödïÊFöû:ˆ ë¾ÄÞå‹BÑ"%÷Xw`à~ †,7þY˜ÄCc6M7Ž"ñ._:&ÇŸ1Ä&Í«z›Î‘‡@@Ð u +?CKÃE%»2ñ—ï€IXžc7 o_=)Ÿ*™[Ôž¸&Æèè®ÁÔö¼*1àwc€øM#¿#>=ϼµQ©ýzJÎAF¼«f|ú£Oà¤z´u‰Þ.öÑߺÑýìD„·¸Ò‚¶‰QóÍf"%üX·½c#¶.êŠÕha @´c>_®¡‘¼—½'Ózˆ³Ìnšº¥!€5 ®1E€y +ö²M& +€sìz •£k‘S)dVq}‹û)|ôý:oC5‡ ª# {£- +Ç›ÙéB(ÄsânÑ•×X¢à±Zw28qÇ âðwš Qƒ#ðCç¹­M”(B+Ò +ûÑ´cèîËõáíëKÊÒîJÀ¬–öϖܾo[å° Ò*‡ùHÀŒúzàP s‹.‰v o [»UÜåÜÈ,Œ6X)vÖ/ãµÜkg¿/$ø¬ˆÌÊ;Ÿ…¥íÝrló¾]ŒÍ6÷WÕpf–ôy4?_l–éRÀ ‹(sxý‚aXbÆc{d\QIÿçzèÄMK?ú$ßÑxl¹kÜkÀ¢pÛæ;Ǩ*D¼vI8æD§<=â¹ß· »ìN`\3µ›-x¦¡×ùQ÷$‘Gg÷Zë†.àôïÈ +|éN1çÖŠ~è‹0sgX™±sUNYê=ªNÞ"Œ¸£óXR´o84¹(eÄ}ï¼-…—„†>f”†È R@2ŽðÕM!tUbv þª¾³šÅͽåªx¿¢YW€¥Œ}¾ff}"ȓڭžnM÷:צ×᜵œnÔP†¯ºâ/1ØÎ†­Æƒæ²¸Êô„°ÏÚü ½z½èW)¯WJ/¸ô©nê¤Òíõ¥yz,ÀÌ]pëM«’t”ˆ^ÃbtÙ÷OèpVYyþºÞXˆbn”ü….;Lÿà­ÆØsöÊp!÷9ÈtrK˜ˆË9IÊ“;Œº©ÆÈ[¥æÁKrþÈ- —=CrZÙ½¡Åe¯|¥â@ ·XÞŠKE|}§$ €rqÙþ6¾•fçŸî½|Žs \Ò@T\MiJÂíLFÈ㯦2CŒx줡 ·ÐæÉ§èYÓE¨ §;[Uñä%ýÚ¶ÞPÕ]– +$QMÁŒtèì½ãÝ„^ueÒO”£ÎC|Ç/ëMŽ6X§·iêm°:€úâmBÇçÔ}ðŸz"ýe ;EDNe\xô +•Yp¿H{´}|‚¬SI©$tGǦûF^Ï`)ØÐá‰4‡S×°ŠDä\ÔsL C"óÇ”’Ôpö ·âfqrlI;ùñÃRÔü^¹œ¼xSX{tµ[Óá•íSª mz‚•àŒÖÚ¸ª8¦æcO6¤¡¦0*÷UD›ýRìÃãˆ{…¬è€Ñ:™Ü¯¤`¾SHó+ãgåN¨È×Ï ¸·}t,výƒ~®¸†¸ìl$]XRÑ-š;JE„=ÀB]ëš¿*Ææ{FNj Úðy$3·Í«–cÁ¡9SªÄh–eó^‰‚#»˜YñÓFŽ!F6¿lꞀĒÊ9àXéHü‹®‹Ëj*üâ(Ц+kÁ ñÿu•õÛUÌd^üGHÍRð{†$¼#Ûd¯õ¹¬YOGš)œÏÇf÷oGF|üÀÿ9 628.25218134612523713( á !#<õøâ8©fê ÁaªÉüyPXϦ¶±¢JÜTgº…i€ô ´ßn–Á©œ)3‡Ðq`/›9a_ÈP†_Ú8‰nÓN0nvÞá4‹ÒqzƒHàé¸) +Ï& hX5ºa ÐéA[ ²jâK…á§i¶j=Ä{Ø ÑJ|5€)i30303IbÛK$s1§Ö$í•FÜ€ M ÙFXL˜rS’ü¤Å¿AM+sZ=[Ìð{›× ÍÇ¡xÈL]úÐfZH¤:|¤I$ j)„¥÷N Æ„ÁáÏÁÔ½ÅG`‹% {T™—O[g>å(Í cs€A½ƒЈLø­­Aô‘€jžÎ±ŸP'¨Ú‡ðt+fà,¼Dò”²H¢Œ-nTÄ­DDµ´™EÞ„"3.½")§ +‰04Y0qÇhäñÀŠo¸³F"Ñ4@½NPŠDÖ¡x‰ÄyìL K'hÃ+©XnÑê0À¡Á3nÍš™Bð­M•€Ìl€69ÂèÃm¡Ù‘#hbBÍ‚'ºO›KmäÈ¡¶:ˆH4P… ðm.(Ðü@#ÓñØ !‘T`þÀNuª3Sb˜ ÀDÑ‹gÞIdçupSïƒ @a +È¢¾O³c«D3sf@¡ÈQ3ME|í#Qô‚:XA#„‰@H™B¶>€ÁÜ>ËÙ»‹©ŽMµóv®Ò“¦„þ—E‡¾$“ º”/.‘9)¥/)¢PÍxb>´ã0(’ÅŽgâüƒâÜŠ?äÁŒGäÎìºô6¸ÖËúæFáR|®™>$@Ìp9² 3”D²ÀÙdfŠw¿×Ùkψ(cû@`ÕfBp/&4Ó:ŒíÃ9‰äùÌÆԃؽÿûÅ&Á`ˆ¶ŸL\¹¿¿Cóû»;cÌ>Íž§ªƒGOµ0£OPKá»3ã…Có¢׉Ž¨Î­ YÇâRš#°µt=ÕY°oö‹÷æ I!4ßú Î­^-$‚šÛÛ½`ì›±_T»õ2˜Ó1v¦ã 1•I‚8nŠ .»Ž +®ÉÂÌÈ‹ÌÙbõpb[˜¾Ì-³íœ¶Óж½ã‡€ u#Ä'êû½ s.=®ÁìîÃ(bXy›ðX4¯LÉÝIfÏÈsß2é0îÝ­jûQ )Ž?}ÂÁt]™h¬<Ö"è™1¹R2»®)Âçkߣ?©P@É×?ðà3ÁV nn<¦KTõ!8>JkLÊ@7œBÄðí…9µDû•ÓÚ)”¹ÅØTt»µÿ¡GÍ Á5m´&±)OzH%RP¤§ø8£…M î)o$J2º¾ßùáq§µÊŽÏœ:?Gt®ÌQí’³Ä!\õàØgMæMÞ’›1IÚŽxnZ$j(!i¨M£ßÐmP1ÂLj¥Ì_2eHc<Žˆù ƒeE»˜0âËp#Ö¿‘.ÿ‘â‚H§'+€UÀ9²…(Œ1ýš¿˜w‰ŠþššçÌ·~ƒÁ½.ÿ²)þÔœB,O8Ë0â+ÇýN<å¸üñ°2ùØúí* yÙ¸p‹ñâJ‚<É'‘—ÛcôÅPÏ=¹®ã—š ÇÖÛ8´ +"𥥗åEii*Išñ!*8þo’t»©õizˆ¼ƒ¯t –›ôÙH|HV‰Œ“…ù·˜QðIþб30пbßGóÇn˜õ\äõº!XP²ªoB¢óè+BF‹þ#@ž›°¶½èì +›K¤ûŸo“HƒQ¤kŽ.•uFôP0ZÆ%©ÕL…ZƒZ]‹¼üS’&r=¡×¬ûØ +:šz׬3:z§UÆË”˜6>#\–è>’ö,ÞÏ"×§8§ +D¿†{zWŸˆRQ#LÊ}õq™XäÚ#”ü€W”w:ã3HW­xœv\ŒM9·‹.:úlm(»—ëœNó&Ž’Fa4ÜBo»ü’Àd‹Y¾Ædë–x•aš–2Ì5wP;‰.‚Aÿh£\ÊRyÄÂ;”ö£Ä_¥ë<¤‹°>ù3RoiëÝ0Zf^¨sÊJBNôd†¿ÊFè|Z+¤TÂü¯_„Î¥‚—3%¬Èx&N-?åpqùçå>£èc!lÖãå9ÝÁo`MýNç89?¡Ã¯Ñ-v9ß©åK8¿jæñ#Ê:R=Y‡_µÝ‰Z|Sp^’+]½×’MŠç ޹³ùÄ ~l¾NYA?´*¥Wfh‘…k‰¹)uKë!Ôz‚¦­)Ýh"iYÒ)g1‘Õ>4ãNrVê€;« U’iLÄœð¼.ã‡\H8*Å¡ñBa)/éXÍF;óؾ&½C逻¼i9%ÆÔøm,á¼Àç,+iñã¥J<Àt¢¥Ÿ}NF®þ®JFœAÿl–±?w 2Iî ñK!Ãäl¤…8)xòär–¨°‰œ…àu-pÚP0õ|ƒÆ]"+ãBÈCÀ2² œ¢"óÜã²!4|?cØ9 בžéò/§u¡6«8°}ù¶T`x·ùËkB^÷q$ä>ÌlgjXM‰ ¡Ð¼›,×Ge‚ ²½HÁ8'Ñ(O -5BFzÄÜŸËrþ‰[ÔU—ƒÏní”fL{î¯k@[/ÄMÊIZ^$„µ'âtÕ<„©½ÝZ2mÓHð#YØcÓI€$ƒÕUÞ +‘-/î3••õ)uÁë²MwÒ§=Ù›à2ë`²qÖW²…)5ŸµšÜ‹?  Ù%ðDÁywF”Ù˜ Æ9òèãˆ9ƒMÈÎGŠ=ΖÎs­…® |¢ÄAÎ ]ˆ˜I}¡X¬lX-@²EYºá«IvuÆIú&è•tq|Ï8¦÷’)èì†tØ §ÛšF6Ý*Wÿª¶ůù+<çhŠéä#ýOh¤»(| æLG§Ê„/ñ¿„G«÷ü ßûtô´Uië©Týnï¼ØO34Ð>§±àjq¨*%°‰›ë2~a…Ä©Y±FG–rw×ÏçÀTaƒWõ\Qiƒ<æ[ñ'õëåð—ã"‘ Ûf«t±‘'O!u¶]Ð#6;«p™I:Qà”Á1€à…¨‰Ü¶F?±K¥~–O‰ ¼d`kÅì=¡IOé8MñV:zƒ25úâ¹æ[Lœââ§­çàV¢Û PŒoˆ3tÌîtÑ8Õ%ãí¼ëC¥¼€F20„ÂÌb”À½°ä=:@*bXÈÉ5XñD#9‡‰ +3¬×<=É9þ‚‘»[›ÝQzä(hS°hï½@•¿Æ|S÷"|mC9jÕ[ ]?…á¡]#Î>7 œŠx)|Bå(\§ùT„1?ö©%&‡5ª—†Ej¡ä:mÀ51òc‹=Ýp¡ñWcÀôͼÁç Í0ˆ{ ú[.=ë)I„#4e²‡N4—ð³q|-w£K˜QtƒK?áá¶Ni›Ws¾ð?D†gÕ%åº|ÄÎÉ ÌßÁÅP]´‡¤ÈµSíÃÉØ N’’<?·HK¹µC2ȹ²Ð•‘JŸ;Ø +¬2Ôë_ÚãháLÁÐÕG!Á˜jvÌ8膞Nö¿¡†µ\_)ò¿¾ ýˆYòŠðŸ&oð¯H êD·u¨U4°ç=¢¿¯ûT¢Œ6³þA …%v‹PŽŽÕÄÍÝ +K!t®vÇcöy~íÇÁB‰%°ð¾AÛÐÑWxó"Ž[dÈŠ¶€íôÊb¢ Û³£UÂÎËIJ¨}ùÕ—r`Ê!ò #Kå€é‡‘DŽg`’:¥@Nã›ö r%´þñéÌôÒžLƃKò·ÃŒq©î ¯ŽmÒ¨éÆ&ÁóÛò¥3%QÚ£€%9ûåÈ©©&‘~lÎ;R™Åè <ÛÖ~®<ž´{' ·`J¥UW¢J¹˜ºo0±,jr˜éÌ+ÅPA±û¦feX\ÖŸçøNš÷…{²y<¶Õ~-‘.þnêý(º•=bì5îôrJØØR=rÝtÓkŠFÔ§n•}(*Ç–® +æ@SÈ$Rò{ȼ(ÒÃÔÇÍ¿}Ò:Q¿ëétÜ„†òTWVóŠœU€x¯Å·P“Ò¿n‹/obø×&®oõi+¡`³9TT”èÄï‘Ã,'Ó’IÁÿZ'á%ò(‰ÒUsÝÇpõzI¤ma*nÙ©”¶ÏOÍCZŒ¬œºƒTÃw.•¤_ ¢éîŠÏý+ä`´s•B?L¥÷n‘íÖ<"‡šÝçneß|”tŠ ý—/aECN‹ÃóÌ´ññš&^§¥`®6yÇ+°é@n®÷ Žìçöè „gkãíd8D†“ÃìfÞ~h­ÚVã[§¶û ñï €ænFhî æOÿµÚ%>w ¯8i¤Á9e2Lf«Ï™˜Q +Ù“A“ƃ͖€ôá5j²µÜt1á$â$gÅ3m°cü9æë%>Ëå®Fœ ƒÂϤ”Ü’ Ï´¯ËL¬%íÚþ8vûBg;€´èª´¤(„Ž5c©‚ß/NÌä¬G8 Zd¡6à¹j†±¢½™°¡RÛT¼ "ˆdRaîn‡q.Œ€2¹H2mb¼qL?’쎵„R‹Œ’¿…å)Óy +bLGɼ2UAÖC„ÈšW1©IuÛï-ލº2]s ²õCC&c¾S:¡¼@}é¼H‹[‚Åu3¤xqÜ3£S˜Û%=Ω>g³½Bï‘<ÕéÈ4KXˆÍÙ”‡á4ˆµ:jiAòÎn1ù¥Tݨ¸Ç9nµÔ(µÅ[ÑNª!q¦¿Õ‰°d ^&Ž- K@5h=Xòãàøhm·kiïÿ¸0Ò™›>­Þ +"ç!ÚLs½Qho‡3O¬F|“KTí\Â㲌å\¾úr‚á?0Ú=ˆÆ™Ô·ðCâ›LXó¿;V£àMaALþ3ÖZ%õѸ\L´*‚,ɾڌØÍ ð«láÈ·ÂÒÄU9]GÇ/ü:|ÍžÀ I§€PG¼C½€µ²+ žãâÍôÏ + Ta7cW×.*Ç“ŠH’&ëÑï¿ÄIEUC €ƒä!0 ©ºäû¡E[0Ü”–€+,%üÈêM`“%3‰d˜lÂc'ñÊx¼§ÃÊ~Ýò–ì2ÊPAíðp·–;Þ(ÉÄfÐ¥â_ÍùE‚¨\h–0Y“~ë+x}ºË@<8íG'K–=7 S  ¼þÚXJùcÎù˜ ˜ò|0&@bvªoC¹”-秉åð\ۼij¡br‹ÌÀ/' Âͦ!ß¾ýÒ¶Bf´ÊÕ·@}OÆ*žšÀ £p— L3S,×S$°é6Û—pÛl¢MK +0lË>?üKZ ¤€£El‘´€¾6Æ èARÚ/dÿ;]j};nkK&Ål.ttI¸,[e5x9åvÍÅhWÆØ•gg³¯ÅMì´&G¿²Ö&N›\4bÉÃ*)){ºHàþÁDÍDä(žH;iUuºK½§+˜©N5tUÐx¸-aÚˆƒØ;wµk¿\ÇZz<¬ÑY݉e.ínU¦Í~;ÂÀ)mêŽZ%;\>¤ê’•—¥%j0²°""‹Î€ÓÏ !ËUê›IŒE¡m‘RiŸlysœ3!`F×^MRH8)$7,ÜÜ¥RMˆvKZÓ¤ƒ¥š i£ÒihBg±;McEEH3Ê'ÂÜóF„XêS¤A @¶Ÿ"Š¢(Š¢(Š¢(Š¢(@Xtïí±»3BÏÑ!°Š¬ÚÈ¢E ÛkÔ´­–”””Tv€4¨öF–›(Ì ` 7 >ó«ÍÛ½ûæú÷Í=Ïã›u·ÙÞoùßxož»Ç5ãŸû¾÷ë1ƺo¼»¾~ëí{Å[Þó¿ùï«¥zϯ½»_Ü-Æ·ûÛwÇ™ó½qÇ8ß¿±Íöv»«ÍJôRz½ïÜ÷›û­–ví¿˜ç«oV(7™cÿ½»ó­×,AX9vôãßqîô³~ßN¿Þ{ãnñþÙr›7þ˜Û¬7ǹÚÜýÎ:ouµûîóç÷ÛÞ·÷"ù +MœÛž¯Õ”îµ´æ­q¾wÛÍ?§‘ÎØ¢ +MXè *4r¦ÀÕªCABŠ¡§B#døÕKa# 6†g,ЩdÙ€ +Š›«R` Ð\È(4BÒ Ým®ÙçÍÑû7ïõFPKG¢z*¢zÎ0¦‚ÝY~¤ +Í(„fÔR¡”#ƒ®±·+ÇgÌÑŒëE}'W~Ô§€íîußÚw¿6Õ³ÇÚâìµ{Õ8Åy½û,¥{Ý—óœ‡éµßw¿ë­örØßì•kæ8Þ^Õ7{q¯^šµÕ•sÙËRíù®7KeŽ3ïÿ_µ­súÖ{=éçÜVþqÝ™ã™Ë¼Êe\ïþõ_îz»bœkÇLñî»Z\o¶Õ߬»Õçz©þúVk³ßõvì]{˯£cënœëþúçÚ5ÝúãËA²îò‹k¿Õg¾Û߬ӕs™£7gÝåò¥ÓÏù®øþ¬Ë˜ê\oÕ˜^Š·å´õ_ó¯m͛Ӝs]3G7æxöÊž¬»|cÏ]lqÅÕTïÞu§—×NõÿYWÌyw릿Sþsµ—W\÷ÅúZ›sý—ê½±Î:ª5Þ¿ò›íØî]yöº·îÞVžÞêmî»âëO›xÚN›˜-®ýjÎkÿ×öÚEگǵcþ3ßÕÓž9ڵͽӛ÷±¾·fîö[3ýÿê]9¦ºóŠ©î\&Úš©¶Zß}¯¯÷^ž÷¯ø^.{ÝX+U~ Éïz½šæÿk¾6ë²­·×O?Goæùú7G÷Κ×ÏáÊ9_-Ç}µ¸òÌË•ûú³Uæe¯˜~;¯˜ãÝÖÌõ\-×”g]/ÍšËR·æ[3GýÆßW­ë娷ÛâÚ±öxö×çj;¯Ÿê}½­9Ÿ@1U†©,Uu¯;K}Ž_ºúþOwæxõjÎ÷®Úd*eíÎÄ]/í8ß1·+Ç\æqÞ®·s|¯÷¢»v¯_îûö:ö´Í<ûŒC­^§©¿œ¯8Kq\Öqÿz3§yïÕw|ûž-¾W¯Çq¿6çåÅ÷b)æù®´)Î^ã|±Ç·ó¾ÝlŸ9Š¿·˜ãW ·a〰AÇÆNÁN=ZÀŠ_,²`¡i¦B(¢>N¨OXÈ_‚ø¥F/5rÎ$‚&(O“(Æ.YôŒ®Ôs¡(öXãmRUX²h)X~¤ ûÊ“þ†¾>’çs$M3¿1UCRÕAEÁóG3T…&-Aò#é§—Òþ¼7ïÜŸ¶2ôì¿Ñ~L&@,t®@ÞÛ;9*üëÇðüJ ‰Š™Ìò#…4®{ÂÂ’,AF< èˆ"Øñ›} +ö‰Š +À•} Y`I Eò5¦(Š©µ,XØ2CØÇPŽ£èi±Â’5OÐ45 ˆú*g*ä@èÀiaŸHR…å‡Id}1ìóÎyÆF¹e‚"úCz– <ÉØ š(½7¤™ ¯X¨EÈŸÄùt÷½™ƒªñE;œPIÁd¯åöæP K]´£··ØïP€4ÑÕHÅ/„líå›[3G1e†:®`!»¿¶W響‘`ɼ±½%H¾>®ýÀŰ1°ÔcÙõ3CÔw†ª= (X’è½S(û¬jüïüTß ¾X™*XlÜÜsz¯ñÓ"€å5žf,u2aÔ–Ÿ75Š”4•Ÿ— U°ež¶³ü8™0äT[üuæûÚì¯Ç¿_»¯¶ÿò¿uçúßßÿ½ÿÎû¶Üû«±×vnóæ½óŽ3÷Ûò·¿yç«»Ö]÷5¾ø^JŒíÕw|mî9ßÞmÏÛú{³ïÝo}ïíýïÞ/ÚûåC{ÿ>[Œ÷æßök-ö|{¿wÇcëwÇž÷Í÷eCï¾” — åo±ïc?çÜbÏýÿÜr|ÙPË"ÑK#$H‘²×+f‚Pœµ6™ÿk«ÝØsos¿Ùg­æÜvê}ßÞÛÞõåCùÇëýí½Üv¬-¿öbü½×wÝ÷Õõ^\íÖùWÎs¶Ú~^­ÞV[ooÖº[þ¹Ï—kn1Þ¼çÌÿϾzì·õÙfÝ÷ÅߎqÖ˜gìïåC9¿Úsλ·×ÚîíÕ½roy·ùëû;¿ßòíûÖöú{íæ_óÞ/÷Yóž}®VÿÍ1æ— ½ýò¡Ùãü/öö_¿ÞØg-×új»¯¶<ÿ7ö¹[ÞýeCÿ¿|è¾¹Z«7Ç–gìõ÷8[ßÿŒ»Í»Zú»î÷^6Tç{ùм¯ÎxoëùÕç½ñ®vãîíÍŸïîÎþ^-ÝsÏ{µ˜{ïÏÕæîý·ÿgÞ=ÖØ{Œ/Î>[œw×þv½íÿ㻵½¾ûŽñ½_¾ñ×üêóÝšãï¿l¨½|¨ß˜{«¯õöví=î^óÛ3ïë÷öÚë¬oß7_Ïíµ>oÖçk¹Íß^í7þŸëì·×÷²¡[_>Û««÷ckïçØk¯Ýv[½·îÖÞˆZümþÚ[‹ïκc̵¾|(×[÷«óÕö[lýÕ×÷ßóÖüߟû¿ÿ{/š/Çø²¡·ßK Ò÷½lèçãüµæoϽ÷gíÍÚûÛÿ¾l(ïw{›yµ´sÞ/§][~·×ÙæË†v}õþÛ{{¶Öîjiæ˜ç‹­µÕþˇ^­mµ9_‹m¾Ÿçˆz|ùОñÎÿ9ÎØnïûýÙÛÝ»¾¸s‹íÆ–l·¾lèÏ—Íÿ^´õܹÅ{|óÞ¾ß̵¿Öþ¿çwï·g˯¯–_/··ã˜¸ñ7kžÿ¶xwûùÝßf¯}öþ+ ãVœ;ßøzœ÷÷Öß Áòƒñ¿×oŽùÆÞ޽Õ^oþûÞÜVX¢›O âJ}â’} ìK‘²l€Šž'(~$¬sú!Í6qбor"ðIÒMÅ-Á36êÜëŒûÝöûÝ;¶×矯Íÿ¯·ÿŸ_ëyÖ:SK»®õRk +€ˆ)³üTʱ¥‚‰¨ÔG޽¦J3å™H +Ã4K‚å¸7TûH:”_r,9”KÎÆx³¡Ücž«Õ`ò„Y¼Bñ•Qhä4WcÇ;W˵ÎÔ:?õÝo]m·ÜêkñÅ›÷Îu×Õrû½þ_çýyÞÕþ[¢Ð„PJ-t–,P£ÏVÏOK,˜æL $AŽi‚0–C žàë 9-V¢àk,[î×Û­Ïøê¼µåã¯5æÜêo3·ûbû¶ý[ž_CAæ“@…¾ÔAQẰ®"Ò‘ŠIË!uê:uêiAÒCŠ„6¢hðOStQaœðL ( ÂÀÄ–9ê„6!QáÖIh©KDƒ¢PEP°òA„Ä\Ý/ÒyAŒŠDÆkY Vá§Ax1ñ€Z˜à!¶šÐNŠóDŠIdB¤Æ×¤‡«s1¢Ä#l)8£¨Ž8/„Æn@ˆèp B‹Õ'ÚÀÆB„ÃQ· 1"íFD -O¢y˜¼-ÛàÓÅ{(=Ä;CÖÁÿÀÒÄåÀŒA0 CË`¢¥`2˜4@ŒŽE ÊÏ·u©ˆ…E$¢ a(!–(y0–ÈU’8 îà[P™\|D©mâ³e„HèCá¹ý¹D,ÚÇ8œϧÓ£x 0°eœ‹Bh![àƒå“aX4†ÇbIx% +'ÿ„Xñ Z„O286Ÿtâ FoQpz„ „×›îÀ“ o‰8¯A©Ì.KUwa Cw8 øô-ó¨"¿s-!鎇ÁEˆˆâ'SI›*U\Ï3‰„w åb[—Ú‘Qeao]÷ÙŒÞð÷)qM¶)Mm +<€ú8hÆäÁ@;:ÁEOº³¢·ÌŽÚ³<‹\ ð'²Á¦“òBÅîrEDó 3q"ùÑð.p7*ü©ü@Ñ`±3bðäqÁX^l˜‚ݱ»¨‹û¸pEö ÝVÄt¹•½[æABÛuq"˜Ý9e8,Û ÖóíŒu5²%Ð@ EAº¨ì‡ÀªBa°QɧeT¡ÅºÊn¨|U*q‚lÀ¨ˆ0±‚¾*@à1ÔÃAݲN¶ +ªˆrð*ŠØLª…`ŸV©º8QƒD—%67®Ä®áAÃi8Kç&˜ã\ +0×àB½(\‘¢dÒÄ¥a¦F”Ðcv(#G@Ay0eÓ8A([ÖKŒsR½Èb²™ŒoR:ˆ&"‡‚0YÙ +ÎÅ LN£Ç“ V$2‰8§$b"tI$>%¡ÇÉ7:$ @I\”‘\p&¸¤ᨒÉg“l/^D¶,£€ #ÚXiè "*W%ELÎÅ'RMŠLãy=Bšt•H +Ü<"ŒƒÍ áv#B<Ò@I}‡ ¦Áp&"ˆÃ€§9½ÅbáŸCþªB´ æÙ²Lë|œBÞë1yે¨£x°á‘ÁH*Ó(ôÐãÁæ!10ð¨ úáP¹×`: .æ¨ ˜#bƒ,‡íç@} ŠCÁs9ˆ üãØ2ˆ&,pD\’Å1ÀèÚA¾Õ‘ r=úSiŽWjEn¤Š“ÅÆC Õvá)6‡“ñ°ÔnÚ"—ÑÖJh}6ÓÊn6Œ`›hN¾Á>„»I–Ú p1)%Ý0 pš x\N' ‘‹“Äx-h[Àâ`À +´>VGy¬2#†Kã0­®kl™Å¶h¼L,°Q~¤¯Á ÿDãi<4¸‹…BC'HWƒ×ðX¨12@à4 ,JÕ@AÃü^¾1ÉŽÝðù6@ÜÄ5Pa¤ÑÊhGC 41|áq2¶,äI$c‚l¼ !‡V ~¡'Ítb0Dcà³ †sKK -R#„ÇC!†> ð0L¥VǸx( ßÀY‚gX,6cË^¢›ŸÈ2*6“cØL7a,8´ Gcã`ˆ6dƒûB„)§vѺÐ>u4j–—²—v~cKó0ª•&@:¨4S‰¥Q¶B…&!&Ph}ÁABÛ²Öå¡u(£ƒÆ°ˆ1h vAÓ¢I 5¨-Ä$-2É h§íó4MŒ;Ðä(¤IH+¸ y4ÒÑÑNˆNãH,mraëÂÑFŒÖmËÎTj@£Ð,H{¾–E^+O·k +× [ã ±¬ œ¬Ý¼ZéeµKȪhU5‹Ž§1P0P´ #a¢Õ‰6š:-BÌ@´µ<´-Û£‹CÓZ}ÓP, !p( Í2á`hMÓ´Ó4m€gEÌ‚‰È5ðÖOCÓ4m¢ `hšä[$Ú…BDcLH" MÓ´Ó £i]ÙÑ4ÝÀÑ4 Š¡½R•†ÆÝHC0#m8Y‚[q•óÔ£+˜påÕ|V¸³™´´˜I3z“Æ ¡iL|×ä†R¥&¯ÌJï¨m‹›,ˆ›-{„T!NDÂç6‹ ͪñp ‰Q,ª3™¡ÑÂxu=YT\–‚gÑéäTŒÄ«oÙ©b…¬€bÒX `½<1íÀÀU0 ÈÁãu&=•¹(¸ž¨3±€.aÇ:à|òxb¬ñ¥¹p9T[60`À&|¸( ¨,®M—Ø|$££sqa8Š V…lÙ€ºQélUIS‚xØ|nEÈ>cJØôRè¡i§‘¦iFèÒ4âà¡i¥€¦ زÓDÓ´£¡i¹€pIV M0`À€[6Á¼Z• §u0ħÀY¡ç¥é0 t*¬%B€ƒE9ÄÁ-­¡™lY¦È±Îz¬8Tg2²`ɦãÙÌ  ‰«l²$ã媉q< «€ê´HÁ\&Vçµ¹BÁþ%ª…7ûkšöA.0ná¢;Oçrš¦™\©rvYQ0î£iš†@Ñ4-#¸¶O‰¡i)Ñ4¢©Ï–)\"š¦­,H^CÀÐ4Ñ4Ì ^“²¤  +F™Ÿ7¡TEçñÐ4-r1ÁP°5MÓZŽX°ùx†¦i ›¦i"k¢k4MÓJMÓn(¡,Àš¦iFoû-c@4ñh§"¢i ½ÃÓŠ=Œü ‘'ügÁÈRPi‡fJMCÈ^C´2m.åöy>hTád æA;m H?ÖÑ4mË(T)³}(Ô™4j¡› +¥úæ}Cš´8¤_,ÐlybÁBFÑ_ÉÃVùÁL\CæáVaÃP)Q@‘ ÅÎ4¢°ÒFHc"uèa¡§‚}”†4ßæžæç¡FQÅÏûDºÌŠ-DqLUÔh1‚f +–5ZTÔhA5ô„… (Ž© P Q£¨2‚ª¡‚è-A³üP«Õˆ-̆¸—$yI./ÉqU’¨˜YOØJTÕ¶«Iæ, »9*¸-+¸¸¸¸¸hp ß=1¾»eã®lƒ%ÒU*G¢Ãé+ò|øÉÅcµeIå(Ë>#ÃgdXp¸ÌˆË­´ˆœ¾-{‘>/ÒÁh[Èd-Á’Ù²ƒl[ÈäbYÈäKfr@:“{*d²ÁËàâ ä-‹ÜÌàe9¸Gµ䃛™¼jD·Ì ©„,¶,tš8dÁdL‹‰9MÌ 9m@, ę㦂WàK+.•ÃÄ=8lpé]¸ô”—ø£ú˜ã¦ Ñb|ÔåcÞ…?ªÏÂåIïÂ\`”ˆñÝŒò|u+ÈN…#ѹ™¤˜‘áSl(xâ2A;q™—9q™#ÂÂCFr»‰ËŒ¸Ì-“€ ­Ø¡²Ývv•í.•í ‡Ê>¶,;>ùEú`L&“C­ÙîôvSú§´ä endstream endobj 20 0 obj <>stream +do ™¬Žƒ-‹$X¶G_ÈäMéK°h –L¬€_|ɨÆ]Yƒ—¾ø9fp3¢Kfbpp³ÁË€qp3d7¨¸¾@YDrËœÀs¢sONÖà2A²ˆ„H&´P¥‘t ™IGû`&!sÜT”9ºˆÚ­,ˆ51éŠa“™˜3Ù2Ð(Ê&ÆÁxØà-+y73•.6ŒÌ©µ6%‰9Ë^A–§‡ÌôÁL>/ÒgË`—øÕçcJ#ƒÌ9Š(˜É–}T ŒÂL>gÄå7¥Ïô®ì£šTNИãf²e&êƒùœŒï&Œ¶Ìóq¾ƒ$3ñDÜÊ¥ÜÊmÄŸç“\ŽDç2[Ë‘èÜMéÙ-Ë ‡ÀwIʃ#RápñXÙ‘¡ã¨$pÂq|:‘C&?Ht¸Ø¥t(¹CáÈ&]†$:¹C1ø<:HË*»øp‹änÙ¸e §´’Æ–1LÚƒ„™Œzë`6± l3L]ø;mYè»P—°²mÛÀ:H˜É–%Hb'Ý KZø|Œ‹óá0Ž9n&8Ÿ­ÒÆ[•9nÈ‹FrGeë`0“„lÒÛù*ˉø|Œ…èc $A„Ä(¨ $†bi„•“Ce˘3I(™tž  än¶läС¸hpØ+FñRAtÿ ÂÃó0Ì-«A«CÀGƒkÓÃ0'(ð«$ñ¥"V>DtYŠŸˆ—À&7•iƒàLZ•:\ǵð0Lˆ]–"¹Ðhp®VÄÊC#¹Ô%¬4V^®FÌáR±˜U,˜¡_3yä†#]˜QnJŸ¨¡Ä¡h]‰C©-Ц`Ñ¢h߀Ó:f¢ œÁ7ûä©X2Òi[ܺˆ‡ÊnY'áºEk$Ÿ +Ð&¨]ÆLP˜€öÄB!¹t,h["XÓ\F8@”HÓqH$BÍá™P°Ôæ€ÑØ`Û ˜ÉFñ¸^ Ìà‘¤ÓB Sl G¢A« ¶†Ò5á0ÀL¨ ã®ÂÉ¿x¬ÌäÍJ¡RŒÑÀj„òp6ñ<áÀšÅ×ò% ö–©;0Z0î]¦ÂézÞà´­øÙº‰CkpG#¹±­d[Û¬T†×MxmËHáXm~ú@«PŽŒš`Él,ÛÜ2Í`5eia¨¯,4‚ƒÎ"+4Iimîàf840Ù²³ãBFÕ0 fIÑB÷aƒ#Ÿ„Öà[6Éœ˜ÉÅ1šey¹°8ÅJŠÆ"©°ž‚y`ÉçAD¶ ä#uê§Xyaq¨l‡›(Ђ7x…»ð°eÚÄ´•0.tÊþ^¤'šv˼„Gµ,B®ÑÄÄDÅ©ƒ1Ì‚ †ärݳÚã’è\ñ#qчpJã,:|h쇡‚ò±ßƒÞ²Nsm ðØ~•:ËÃØ2û=öáA + 2’ÖÆXĉ÷¸ÀDºovà d·¬¶æ„F 1É RE†â +x:ÿ +`­‰òDž^{?¤õ&Ê-µCe#WŒÈx˜˜DÙÐAi$·B·Lƒ> +'ƒë Ð>&„•ÇR<èK¤„ 4¸Y©[Vp°ñXO$šÂÃ`a‚‰DDoYçáñAZ›Q¦Ä‚Zâ’¼Yn×,!AYnÙö9¹‡ @Q)B–MÑ?Þܲ ÑD)Áyp¨¬øÙ˜‰ÅÀ…×/2qÌ{¹˜v¢]‡Ê:\#f8=Þܲ×£ |×5^T'ŠF1AÍäÁ-Bu¢h[MM4E‹¢](-KˆtÚ†uä~“ŠˆG Mt&Ç+²©þfZç‹H–Y)(›†Îå£PñAÛ¬Tgc&[fÒBœO4éÄ6%ÈiH8fâ+6f’1¨YLÅ(£²©Ú3Ѿ—ëÇADÑ MDÁ@Ñ*bÑDŠç4 3Ñ6 §DmËÂOŽh DkñÒe‚1vÅù.¥Èõù+ÎæTÈä„lI ÐX4©Ø|¶2N4©Ø +Š!3é3ÉN@…û§;=’ªüT°ï4<’¾! I~¥Þ„Þ P`Ãi~2,S&È©°F˜ £f¸)hƨøÁ8°5?ÚJÅLš +E’üè øDú…”Ž'U ŒÆÆÊ‘RB + ?Ha#…}"Icc i.Ðêá`5? +û(  +ð™¶ & ž'hR +¶N +–M°¥pY`Ɇ@Öwi$$¿Ž ÏPÕ¹øfWù‰JÐv×+ ‡âÒ@èÀiË0ø«-b~ºäT2LÔ‚¬Y+_¨ábc*üÅ–h“‘¬8™Hdcd1I€AµÆ† 2ÏÚ)ãÅVR0‰ûèÀò€x0Åëe"(xa^Œxc¢Oèˆiaºº†ÃàR‰Žïº„X¤Åk"a²¥HÜbË,Œ°,$„ –¥Kl1¼*¤Ö,!·´Ñt±NÓˆÊ8³rÁʵŠ94ŒV© P^•:Ü@\Hà¶ŒD0¼T¥M%¨,X®úBc*⚦Ԗ1œ>UBIJ‰AÅ€"‘J¨R(ö™Hšš¨T³(d‘ ”L!D4"@0p$É„’¡"fȨ€eR2zND0Gƒ‘HGbHaQ2!„ BŠŒf-\u¸3oÊm ¬Wk²©u‡ëW1ª¡·#Ö-c™bzQA‹šBÄ©J$ÆZ\:l_û…Ÿg×ÆÏ†‹³<•4Ðð* Æ£¼T‡6qxç&© Iµnˆ›¨^Xã^˜"¶e¬Ãê±”wûÔ£CØy›FB{E²‚ZÒ{)çdÓaæ'òηÀžŠµÔ¢¬£o þš¾Óå‡DµÄàh*XMDÎ-ãÐð9°Œyß…ø+ÈŠÓL–9Ìï†+6éÿ¾}L0ÐQž¦‚—âëb,5™“AltÅø „ »Àî©ÕŒ…œÎ«QÏ=Ð\]:Á‰¸Èò&¯våv`+Oê¹ylOO¿øäHly55I8o«Õæ2„ª +cÞèÿñ´Ò2ÏÓñER#z©Ä:íÌ•m&õmGƒj5&{ìœljIò¢ÑÙÒ®§F ,‰Ù¬w=­ñ¶nNaM\n¼[:ûGʼn{~³Ì¥®áü°Ÿˆ)jâ^•-º:î¾ .8k\ä ¬‰»‡A’ÃXá8óìd¤ƒäøŠ;Ÿ2y[èŽ2q áÌ¿ž R£ð0•ÒPƒûIŸ&7{¥ÆRŸÁZ÷R³*1­"uä~#³–ÁCµ.´€câ€ò »OÏÀL®ò8­Äq_äãT2i5Æ^$÷qU÷þùT =KPéýrà‹Sõo‘£Ê˜ñâ{Ö™5˜²|£ÚX¬`ïE¤RÔ;þ‚š}´2ê¨Î¡M´\³Í"$гõàSþ å™Bà5Þª Ë0g[Fc\W†¶Â|ƒñÉFÅbèΘ=Œq“¶€KÚª™ ëSÄZÇe¹\œ¸@5ôØ=]lŸÂÚ‹xT×ëÉ ¦0o‰·Õ牱øôN©µ%11®ºà¯âñ̯54 mroútî:w]°Gx;S$Ô0Ñ?(w~»[Š(du½¾>{^îSÛÊR¯Pê nlF0Á£ ‘8|8÷ÿÃÈ-¿ƒêÿ_6}\Êw qXn˵Ñ,—f‘aM ÊA๿ùB„ò Å)´w#¹]`ƒ¯æ9 å¿"Uóµq>ႊÇÜ Á™L?ÆÂìúO¨ÇbSЂ¦ÇëN\á_C黚P¶ÆéHmÝn³Ÿuúÿ »œ²ÞpëžÅŒ6åhÉj½dœráß\¯'G¶)Çï@ "=gUG[o†Sù’0½’~(çÀ01Í™‘i3®p-R_&911çOÌ ¡¸ri0]åb¤sŠeÀë€W:ŽÚpRðÚcÊh*ȲÌÑԂŬ^O„¡ “±Ã4j•ЫŽ´å…g,ª?{Ž“Å¿YßçºOqíÌÃ`q©Õ&¡S‚%"J—*múFoà—…4f™vòÛLØ$À÷œú¡5ggy>þÑPš9S$¸:ˆÑåðÿ¼ÿ ö5®â™øtàN£½únlKOÖ.¬vãÿ·â7ö+ô‚øAr}‰öþ Õ^ ³«&¡ë1¹öÚ3 •êkY]ˆAaÕÆ·ô!%…ãèþ­CÜU Ž:fsY(Û7(cæÚœ‡àýbºàùŽÌØ– «¢Ð!ĬƒÁ¤Ž*ËXŽŽå©©#¸RŽ4}ƒyPÃùú–å J ׌±n³Æ•hgfR`.°„+ÏW€uïWoŽ—-¶:*60?›˜Ÿ–Ï€4tU=¹A £ +ëÄbJàPñÇOl×»›4`émØZ`nQàÓ µK•„ ªJ–<¼£‹±7 +³Üÿ²ú…êʇ V:º‚÷ +õ-º|Iaíè†kþ-vŠn†ôÑ­‰VÑåÖ™£ Q è’ƒ×n„îzt­® +á[t‘,G7Oi›}¹AÍݳÝ;ÀxtåðÞ±˜l“PÌÑ ë¢‹¡<ºIHÛ48hÄ¢ËyLVùѵ‘k¥'BsŒŽÝq_Õ±“ÜÂ%,×(ZÀÅÞ“Ó0¬Î!#Û‡ˆeˆötÊrÛ̶bšó†Ý³Ð†V†P˜@?ÈN^Æ­þ9¥¿É‰Á)_ 'vì‡Ê&`*ª Ø^çUÖrXn¢6ä”5Þò![.àèò M æ~O*˜El/ßÎóù +zM¯1òCÆ6BqpÑ,Ÿž^f?³hæ“R€M‘"~¯1E ¾_µ]•9ø‘þ;âïi(‹ü€8œ¸X¤§šU0;¬U ±| +,!ëˆãˆ'~qrרwÀFü»W¸yXUÅvE±G<™âjáajD#Q]ØTû,{ƒM¶×F,¶h-Ã_-›Å@°ps|öãKœ ÈeS’˜É…ìñ±™©ðÎ3¢$äám˜D¼^YÌAõËj@ž¾ssñq.ŸŒÏé‡L GÜìSqÑÌäòv +K‰'—v=1Y>1o1ÅK Ï X0¢)……*ÊÎ= HØrT6ÉdóÖóéãS#"H8Þ/[X£kÑ*M-DaP#î K´Ì¸ÑvÞ…ž†³ ’š»â– ¿P¼ßÇoè&)éMÊ#Vörw*Üp›>tôv«ø8E üÚÓéÙa9‡)_«™m| wªÉÆGôü#ˆÌÕì_³À?C5˜ùÞ¼®ªÉ’ |ÕÌ_x)ÙTcݸÒCº)KÚ:™0§ óÚàwÜ™Òkf•j¦^€œNïáPy‚Øõýé/Ö…c,”-S’³‰˜Jˆª†4Y3—Û€ Ëë••=©q<ˆ×¦0ØÀá¿å¼}ÿâïëæ„-Ê¥H# žþK:ðã €–8>æ2¯ð@¡dï&;,Ñ¿/¾c»?Ê[Î@Åt¼ ª‹f͆·_3¯Í•)r8^¤¼/wÞ5çõò\o•½R÷J¶š ÏjOóÕÍÎþ¦þf¯¥°*v™Ùïîdާî +šk©€Õ÷™xE{WT;¸ß•f,œÃ ²çøK™ º[Ys×±£ +ÍôÂøI…¢ùQom»d­píFÂ!hg`‡™ò»Ól÷wôM‚æâöÑtšÚ`àë!LæN3Ñ—¤‹Ð÷È Í¹d»)eB ’¹âªøµÛšSjLÆÀS‹rÀ‰O©Ó®¹í‹AS^ˆÁ NÒƒ×60UålØdñÞůÀ5¼B…Å4OVa€Ü²¤æ ZRÏAÚ¥RÈ pxV€"ó•#JQ³yÀÂ<•Ô’v“W•À l‚õ{ù.Ç"²ƒX•0Xº”EþeìqË¡—ëš\ä6&H·À5Sÿ8qËø¡‡<¹ËùÆÂš¬‚EœŠBÒÓóÿ ´Xì‡!ün’LTD˜÷06”ÛÆôÞt¤$:AÝ2‘6+ßã䣑4Ù<c%­• ¹µ<ͨn©F&Èc@ÿ­7ÜdÏ<£@ $8‰¨ÕDºø|ò–6ÿ7M°™ÑÊÂôõÁ®ÿIdoäA×ú’*ï ¹.¯Ñg¼ý•{x:p2¡e­u Æ9JµjIX̶K Ž5ð‹ ñpƒîã2æT6|±Æ9¦°]ñÍxRT½tšM›@aè#YKù +˜ûê/£Jtγ~†4nã£Ü™£'PßÁщ?éÉFA$(ž±’û-¾ Ý7'k}øO´Jòɘ«x€S÷fj'E]ò†p}òf¨³gˆ¿/êX%ŒÙ\ÆÝÜFS˜è¢P×t­®08Ž ¤vB­\^Úµe/€Š¾9“wàn7þƒßÞ2ðÝ ƒ”R_ñ³ÛV¿ãïLf=hÀ¹IÆøXr(.#áÌTH¾NX¨«U?g*üÆkáFLf­ŸaVJ)Á‰óããB?ˆë<ƒBè=íPó¼)hs7xàÁ/Soj?š=ÅpñIS4óΓ=;%¸¦½ŒÈǵ‹4Dš¦t:Î…‰¬iÉrPWœÒ€Á»#¾‰‰qS‚ßx¥æøœò)Û b'âD…º>P‘jô{ýjÂu¬ïhýÛy€büˆ¿¿ïÜ÷™Ê\Æ–I9<÷8–»ÊI™ú¬ñ<ÚÚ•+…ß³ v¥o±fïp MœmÒ±mF9±ú~ ßtÖ|ÎøQèëë˜ 3'•7÷¹'mI¡ [×[‰˜lã(ñ;„†ü p|âdÈý_ó±Ü`©Ý}LǼô­(¼|Ý9¸pÚ¸â%¯•ËïdæAÀ€—¥>ptù\ÑÇë.Ì(pæ(Éé¢Cï¯J…‹½Å¾Ag/¯¯¬Í¶fpKÄÔ:q‚7)Ä3ü1”¦]š}§Mié™éº'ÓŽ2V6®Ì |×¶b +åßÈú.œ ïð­MÏÚNó]àígé–xÓ¶nNÿ?Ïnظ%È"ÀüŸ/#š~yÓÑ·°o/:àçû ¦þ$¢ÿ~½…Q”½úÔû)¥ûîù.° újT“.æiàìÞ~NE’Y­ðx½?Ú»ZE 4$K%Wø&D†ù’ 4‘€±‡n¿ˆ’+ÿÝ`N¡P¸´ƒ0JþF|&LA^1ì>‚1ÜJ¹ùr1±IÑâOQXÏk«,N‹ì +)ì»)PÝ¡*XÛ¬a±Ëlî2ÕDÂàï0ójt<†'øä%Ž$—9X9‡y†föFCû.Ïع2©‰#vtðO¢îÁ߹ΰ{+Ac—¢EµS‚Sž,ï©ô( +§ñ½³é2&öÏL$ ×CÑÎæ‰þ*OdÎáÑ]¶Ï‡³WõMóˆ—1Â$@UÏ´39Øñ¶ÖâsGfV$9ºq³9–ÅS¹{1S'ÌÆ÷⑨·i ,C¬äLjÚEsõZ)Ž‘Ðʆp6«äR‘ë‹öS¤ i’Œ'¸(MDÆ©ˆà»áVúE<éÙà^ÇíÈO9¤$8ÔÚ³ˆ1]©kMÿô‘ÿ´.‚^>ì±Ju8õN˸§ç=ó…&ù³¿;ŒG›o›_™‹ÊÞ¶®÷ÐÒ7ÿ%t$Ç0#âŒ|e– ¿•ªÅî ë…ŠY¼>ë2ªÖMù¸ªšdIŸ`^r£r4¶ÒLÍ—ä 'õ‰vðÃä³ä2Æž“í…Þ&´VJ]‚èÿ÷T õ${Bgc’!§Ù8ÜÛÐ8¤f¶NõA@¸L{'C·ðe *™¥6ojR¬×*„øG¡‚Hü8 §Ó¶d¹°øE1MpþY€Ë.E`9KY¡§3¯¾]ÔH Ô¬ ܆Ý—ñv5ÚjQãÇx°@lïCAŸlvéÈÖŠibçγ)Èr²¬cW?†×ÊCo–Ö/[-hš`©¾Ë }ù•+¸ìâë;éºróüï) Ã!à +ǘ‡€t‹™_=bdˆmrXÔKÐ?[î7ý'X¿p5Àݷ.ƒà €uHuîålÌz¿Ø~žœL'´Šmª1œne¦ÆÆ „Xú謡-»6 Äì!£Íl-!C²d”@ÈX1Ã: ùö˜êÑ2Œ{f<ó.Øpê7*`’íçÎðÿòÐ^¡.†g¤•]B(#¼†°P\g§Ü&sƧÙåbTHZI"ó]c³ÈœCseW§u/b¶Í’T8^ø¦—ú‹Ðpˆ:ø*Ë}´t=r›‘¬³«ôÖµ¾H9Ê.Â]ŠºÜ18 ¦¦'ÚË Ì>ñšÉ¦Æ/ÒkS-‘XãÂ) ¬Ìº’ÁÌ +Ÿ»49ƒ•ÈžÉA’[+·|37´Ú.B+BO…@­yÜ8’c²|£¡b¥0ÖCšX^ŸM1ÛÓ¥þÏÓËjÇËᆠ+ +WÕ±¼ƒä[«ðjáÕ›¤òÞô$=¥Õ¬ÁÙ7ñŸÌGF@š¯K©ŒÃ¨B8¿ï>홉´ßºˆFÕ5÷¥H“=îò¤0%MÇÃ=ñš)æ\¹¡¥yÔ²ú;¹X‹ÜS]¦ì(uâÀOwÓæ¼˜4Тuáë°)tç|XPG8ó<1QB‰ù ƒÆ „l¼êËC<9ž?y(ò3{Â×wÙpJº°O¤¿õl˜é‡&!u,/ßæùDÀ¾›ûÞAºXMuØÒ0UµÕ²5úíŤƒYÇqþ–b½B-ôù½>áZPÙ^‘dWOõHñ  >Kîë 2޳˜éΫV«¥Ÿ­EwÉÊgŽæ^¨\ÁÁ±†_2ë"Ql焹™Í³‹Õ÷Gf“–µ¤¯cr-7Ó{ä¦ðÆ–OÀÛÍbG%ò?øUÓ-äeZN[`àj›¾¦iÐKcÅ«¯/•™PTö]ñ2kw³|ºs«c«Ý>¸gÁ4,bùJíаâÉ‚©ít·ƒ¿çú«A:NÈs¡{ä~oLIéU{qN°?«l)pW£™àŒJ¯´?ñ7ÑØÝ­ &ƒ;ódëY‚CýÙ4wAºØñË­€åqªÿÝÝF£ ZnKýœ’ÉvÑ–Cœ÷#´`&Q/>Žî‚ynbÊeyëÉ¢§àµÜÆ©jfröQB)wçì¾×ØqÈ=h¤º4;¨aÒ@ä&2Éû;PÐJåG]z¼¬pi"#[—œšÿ ¬«Xáqç")ç¯ï›ÉxÙ™êVH¼tJ@p _·ß+ßÿ’jçoJ®éãþµUÓõ×¢r‡çízœèÓ/m7§‰‚‚¡‡ÃÍ¿/"óÎW|nä‡V›MÐUpì 5bÇ£³Ð±‘Ýn:¹@ÕœøäË·8Ë+o¶§Åׯ’MÆ4¼+«™û*eíÝóhä\R›}°6Áj¸Ù«)‘Âw^Òû"þkJþHŒ•Ìgç‡&ó`ý,"’Ú|CYøHù*R@yRÒb8†F`ÓÚÆr&TÕdn0ÅáúM3í3=@ +Lþ¥ >tÿ®VuÈ$úƒ¿j³nD6Šði<ø¸¨¨û¿ºµÙΧ&N]¢Ý˜ Âh+‹±³D¥ÏÖ§óŠ ¹QøHŸ5…î);g‘bÊL |wàí;eÚbY° M 'àŒéƒGd•?wþByó +di¶µÑMö‡Q~ÕðGÚI ‹zŽêã”K ó/ÁË …ÒÒý’ÈG@*æªç¸ëï3¡Ä8:Yû‰¸_~h +Å :V·ö +¤‘ –KøM o¯Ð§¥ÁóƪÕÃé¶@bÝTJ +8Š^îþ¢¶å ׯ˜¿«@rãmŽ¢ª:éÌ~BΗd;~üÞ­ìIâ61˜¢6¯›DV1’(ÏôZÜ%:€=¼ÄY…Ä€ŒÁyÕí¡÷ÁoVðyO Ý‹ãö@Ìúåí÷'Íj%>ã I7)TcHë·‹%ä¢8CRÑ%ŒÂ/Th——–°æþO5ôäâs7rÖPÆb-¾¼~ü„ý¢ë™»N·kæ‡A'ZR{ o¾Õ÷Ki\I‚£jΦú¿Ã,ʽ˜G îæÝ*õØ*þ*¢EF¨‘ý ùد7‰Òà9ÌŸ?Œäé–BJôÃ-å]ÏÈL0šî3¤~#GûíÔMPX0ݳ|Ù +¾I bEt΀ƒÏ^DÉÙ‘à ÃÍtå‘T¦-éSÖj‰)›°ÎEÃC…¥=*š)X«ÒC–6(QORr-ó ÿÆÁ£›Ë݃LQ4ÌYÊj¶K( CùªTo©n8žç&óÝ;Xp–&hÚ Õ|9ãè}aè:R±!çæñïΡÍ~F.¹H•»¦û÷–cùv5†Zí-®Çu`n½¼ È ÄS‰Åhóð|ûnì +ß°¹¿nÑFxÂmu/\g‰<§ÕCD²ó$U îi;WŽ´BD+„K.+ ©6zŽæb:¯n,MðôÝÖúÏüØ­â6BÊÐŒ @:ÀWÃ"ó•Z#7’`›:r^ÁïôÛ„&ü>8À;ôµlW·Þ[Xþ—œR…l‰ÏÏU –YÿîÎ!§ ¡hkQóag"щ;¿I.‘uá)Ht®À„\p+nÞÁ£€œËE7[®9†½Îgƒþ7¯&í"ÐÁÀÎ0hžÔ3Ú/ÙŽ3JH9³,žÃ róVž¶nÄÎ_ôBÇ$æAhßÕÞ_”íR­r¢“¥ÜÀÿìN{Ïš’Œk¬µXù9¢\?}áÚs„¥£èoº# ûZJÆ ;?kþG•’¿^ìî§¶8 JReU¥„—¨hx¥(DÑ< ›Œ ^î©æ÷³ø.–ï«8A ˜áU„²@„›x:àÂíüBQ{¥Xø’~*ìå^óÚ)*¸#s?^e9U*˜Ó/Ç…ÐÍ…z"…½šôQ…6_c¸„cµj0mÆN<³.vªOêVt Õ{¥.Ϧe^\±‹²¢â~9#å1[èïÒ¶¢ŽÜ(þœ‘jñ€¹Ý$v`qÙÄ^Þ’á¥Ô‡X‘å²:áÀ„¢ð.t¸²žÿ®ê~åÓÆòàË:‹g¾¿,çØ·ŒG½åÂJ§ÃD¨Ž¹Û(ª[‚W$o ŽÔ0nîÞ5.{òã!5Yr$(…•Œš¾€é½@9ËæUn hµ£7®*øðÇW¼C¯IAò¤='–÷B“Ì ˆ{´ª¬NŽ1ž2ètÌš«6®‰ÓÞ£ºÖ?æû6wG¾} ªx7IÀ{Á¡t˜dÊ“Q‹ä œ´2q¸“ +GG’‚XŸØ~.)@­z¡²n“¦H…%Ÿ*,ÚÀÓaLP/i<~ȼ ß0|¬­?(˳pÐ¥‡y¾ +é  {JÚÉÊ!@Œðõ6»Q€gbÊgaL‡øéïI,ôa â+>¨Xc˜â •f–¿‰J¶næhe6ëÕ¬“„ù`fY›—Â.q«¦ŒõKõ¥ÊÞJôª>‡†@õ Œ/`_»øÎTÄVª«H¯s)î¡6©›¿rT„³± +¥ÓËj5`N¥5«ð“¾Êéßã~¦ì | Uq›ŸÊq‹-ÙgžÝªÀ|Üx1lR 4ÿé0ðLÙ>nµõ¬ö¯âkÿ0l@›Id}:¬„&âEµ å ÿÐYg±/ÝšÎûÀKò»Rቸg +ù°– ”?!wÿÝGLbð5þ ç” +fˆ-Â/_¦f}Þ×ɽ~ý׊ÕnÕ“$©˜ô“¹ý̹?ÛÐŽ§µ%:}†U~—oûBµû*Ã(u÷÷Zâ´gAKÉèqÁÒ5g5Lö@ ˜NôÁ'ÊwB7†¡0n«‡¨e QŠòWô– ¢}¤~F óü€rŠÊɼ á‹Ò]+ibp;ªT©ùËÚ frØÖ¬¥Ì[$‚n…BO4WWîD/#2ñÛ¨KßÎ ©‰Fj~ÜŽÓ¯†ëŽß ®þcîŽ#ˬ2>t!DþŽU yÜrâD£ÃÄ ›aB¦Ü³¡ó™P1¶D8tø.NÎ}q‚õç\™ªø3ð#7§Û+ÉCÝ…šM™.U) ý¦°5@)ZóŒAa -‘릣ÄZ9( ÄåóQÀÇžuЀȘ¹J'„•‚:¹ÍnïÊ:ÆLœØèIŸÙAƒ(ðnaQ +hú3wR À$ÞÀÉ•08à‰é§OhøNЏâ!2bSŠòQZ|*G LÂj¡,º„Å7y¥Hß<3ù O9ôóù-\g ¿“~Wñb‡Qà^£ø¥.iJ†ÝM&ÄíÏB‹Fæ»{B È„Õ(ü\±Í"Ky}_*ÄÉ;qûãÙwy3?çú6º¡tkºÃ· SµôAjåSHAN7Å^Uèe×2\+hn†ºj¤i·t‚!ÚPÛ·€¾ó)u@=›˜ŠEÜDŸz䂒ŵÏ/ß<ÉøÙFn"Z)cŒä9ž9»2 "âÚ&䕺úCN-G¢¸i(¼ß³Œë*&õ'òcUÂKú.|?ú°#^Ò®¢Iðò˜6ðùä $¯©°>?êBýôf$ï§2zxD ƒÓ({ºèþ7¥»˜Š'ŸÕÄÚ'½«ø·ÇhÕB-Ó_Ë …¨…rœŽÊê±çÔåÅÐvœn­)?[ +mʈ•ÐQ‚ï•òhâèMø»_êßÈîÔBn¯Økj‹xæRpã­+˜bWó‚ Slᢠ¤°\ð'© ÒÞ-X~²J©e¯ycìþ²J£Ë‰«Òd4iÙV£ü«¸àÜ£âï8ìm9wF»Ñý%t1ĵ&ÞÝtdrâðÞ ×ÛÅÊ1 ž¾Gó]PÎ?W«]áó"J«`à H«ÉÚ¨hU¤‚@%”»íÇ­-ÈYÆ1£kØâ¶õ”/ØìÚt\­¯í¡)ü ¾Ebg³>%4u›&ÂðnR¨Ú”*ìUý Øê­Ô é„õB¹ðþ’û³9}ezÃê÷¾|@íF<ü/¡54c²ëq² „ +þ‚°2—CÌê&+wÝ#\m —L›ÿ.€±ÊŒK€*ÏÇ»çDŒ#ä­#¿YtqJ;$n¶Ô)(Uù \Fµ¢–áç¢Å…Ñ[òÒ­›*Çܺž^Ú¤Ø=7Hб™`JIp3{Ê]–ø.üp×=î'jK¦õjË'ìs}eS0V‚lžC¿ßLÌk ªÑ9ù‡Œv»’Œ`Öm{Ô4ÿ<µÞ†fýBmâxÌm§®,ÍHs¡TâÇ€VwÍsÓ°7€Á”ÒÑ^ ßAù©>À(crT±ª7›sK‰¨Mç&ÑŽ©ª‚ëc0fïºÅÙx©kŽwYü¹Û‚‹’Ó¸|ýÇ6„mC#}Ö²Ó&>j)jêÆ?<ߺ›6‹„1ôAyµÀf$Âã.†¢T(s`:@L(aT<‘§Ã½…ÊB‰ÃÙÅ1EÙù{¨°JÑ'ƒ ›7O´}Â@–l:[»5 ºKH#IŠÆ×nÁ\-Nq ©öéÇm§Ís·Q +´ÞE‡åZ¶4ô²J¸Å°øŸÑ”X`Þégó´Hþ•— +ù1§5VIŒv»‚{uß÷¿ˆô±ÿ¢¨Ø*oCºÍâì4-U;h‚džÃeb?{¸­à¿žš ËÞ³>;rý½×Q­ö6öçÓ÷J¸#Šÿ­ûÀ9U¦ˆ4ä{´_qïfÑ8QZg¥ÁŠÇ<ÊCæw©6³„‹Qñ8½qPgûjÙf†ÜPh.O¬,3D•WATŽ@+ÿåœf)ÛÂ4@X}2Òå‚çá!Gp€KñHjÖ£xF³€ÁƒmªŽ…;øíwz@¬r3F,Aì߃ÕäÃïí5_Èöþ¿ÙR´ou%=ЗÛþ¹£7ˆ¦¡—M³k*_A ÓPFñÛFx l1‚Æýªb•'‘× MŽä$⃽ÝX+®•DP¥L "’¡ö , ¡ÙNeã5ÙxŸ*ä&òÅe?èìb«Ò\I+e[pÕÝsõµ+ƒ¾A2Ð|Àñø’Ri|ýÈ<@jîÑ0@sÄp,1¤·AËŒ‚$%Ž6 jd·‹“Y Ô‡;2…@RÐÚ[TÀø0Ë$V抾ÙÉž|Ñ…ÉîN,Nr_’|¾ ¶(ýJ>Ó"T_Æã›¹a„%÷؆‰ƒg>ˆUÒ8[²î\ö&/öiÔÔÝ}“«~O9©9BêÁG DR¡]–,ÆÜeVÍ®•Hd;ÞoóVìSìþ8þ$= ýðWùKwy—¬¿åб ^ÅžèòÄí|C…ã ìc}ǻŨT‘ G¿äÄjúkcãó—uú늹!ksÿ¬˜Ÿ@èÈéÊ¥X™]/ràNõ}m + ñ@ü·ùSêgÄ&ÖVÍi@É‹ÀÞÆ?’-!â.Éã´ƒD§F#Ó;”:w®6mˆÎ¤»Êº“z¿³¥þB· ˆ†·Àþ53¤e)Î4ih«‘ô§¼uKëvó©Ô¨(ßýB‡Åï±Ë}«`YøÕál =ÇÁÃL¶[úËf Ó“¶ûŠÆgkñ6çòáJhÀ`?I‹¦V•í½ùJ»šKe›¸D »ý†£‰U:»’¸c@žù}A q…_*œJì¾Ñ5©L¢Åº×Æ´^¼2!ÿœ lÀùJ/¯Ø +¥¼mµÒ=óÜ!rÅj©·a¾¾ÈŠJl’žMºÙaJÑd*æï{Îø“ðæBXÉH* {²­ª–´#á¤Ï†ÀÒq ‘­u’¿Ð€àPè ¾¦ë·=³ùJ]% /†FãV+GÉι?€Ô’‘*5ßJÄÅF’ +äë#éè¾Å•'Gœ¬gòBt` ç5I®a×¢Ê"ÚjÈÑâW᣾§ZÓ‰ÜÙˆv'…·û YS…íÔw┃]LÊô¼‰ã8xÝëÞçš`’bòÌ-æù ²OÙÏÌ…Že_k¥=d5·Á;DM9(%q žHnýY –’FÕɵ‚{.keKNGÄpôHéþã»Â8aÛ5“€’+óS¯2×Ý ‰è'IÀeখr¢§¶þí cèCÒYžÙè!5ÐÝX +V(=—¥g•…Tw#T2q³ÈN–K°2PÅAéÑ]›´¾ Ê"ò6$Ÿtˆlc;„:)OÐ×½ ΠîVpër²*¬³[ä-}º‚캸UË {L××6Àॻ%uÎncÄül u m‚B‘+IRDnÅrÈcG Œ$pVæ}îK-¦·Ð~¬³F + !0ײžë¨±…•¶_,ãÙ_¥_¹*þ€ãI$è÷tÞ†b‘|–R“˜,Ô=–+Ì…úþ ®Ÿç¿TM'ž…z·=ǼÚ^)4‡{½šó™–|ÎN¢–‹êRàšëƒ§$ã‹ÁÏ`Ø%d£]Ü + Z`Xa"ô–ÏÊúšHãôâþý¾Ê3ÅÑ +cçßmì`‰a1Š×½s¥&‚d$)yÑH”Fp߆¦u>­¡sÚ}# Ç^œ–Ë…â•»^I’bìÒ: •rÁ«¿œT˜˜…Ýé¦G“©€Œ°‚ÊWJ‰aof]Ôà•LvšCTŠF.\HˆËgÑÏÛR´åV¼võÕ· š4ÔžAÂÅ®ŠšX±œÇj6 +]µtÇr-Ñcû, Û_Øc¶OkÌÃlA¦MwìQô¦)dâbè„%äÌÓ&¬7ýýÝÄû´Ð”% rõ0„çðÓyô;†DÕb…I8+8‹¼—®2›´íD’¨mkâ_+³áùfµÎŒVl ¥!1±ÕÖ”‡6ñ^˜ð^I(¸ÁJ§‰m¡ú¸0µì–C;áƒË%¡\œ0¦Ü»³oÁ +»®Žuótftª¢2f4çŒ# H7Cdä™=9TqÄãÇ}Nsyó°‰W'TÊþ@b,û^ws½ësÆB»«'XtíX°Iï\¯`ÂëŪ–9mïs’®¥Œ…bí…d‡QßiTÆ:Ö- áAĆd|‘ƒnw$tè–ò»&|ì/Õ +Ëö‚Žf”Šª¯€ÒÌ;ElD Tc¯I˜ IêM¾+šw¦ýн̳Ϫ•Xø¯•¹!SÒ^£k`vit½™Ý]¼²Ÿ—ÑÎN~U p¢ÿ<¡fƒ˜ÿ#˜s ¶jö–ÝD-—õÊZ)H¿ò-=wèG$sB°Gõ*P¶ÂX×w: r5À™^CÆ!×êé± #¯‹žO\ÄáC <ÇqÃ(²-a¿ãƒOûc½´Ùò™¶ðvY®wT¢§›´lmCøŸãkh:Ð߃.§=B¹‡›7Ì!±É{ÖúW&]Iþ,<…4®«"ò0ó²!êØÂÃü 1?íW°WªVÏÊž»FÔsŽj(òôÒ ìhjw°œæÀäèçÓF]Ïð'‘ø,J¨/ãŸ%Þ'NÌšæóÔ†ô¢Ïî +˜„Ài‚’I@ÿ­ã>½ 3æø¯ààÛ¤´D•Lî }IÑH¢¡’äph 3BÀvóX +}õiÕ¦\£Ï¥W˜q§òN¿çáHCÕ?~ßÿAšìhð—Î;¦+ƒÛ l,EÉ«ºŒe_xW¡Âhw)þç5”8QòÅ-ýxØð?8-oíÁÑbýó¡#ÑMrÒãô}íVÛ_L +ê;«¨ß O¨Y¨7åï4§L:œ"óÐRÀP:*Ó&àÑÖ¿Öþ]pÒ²"=寎ƒ;Ú ·Ó'ÂtÓ@Ë÷Á·­Äƒ5ìôÇ¿T½s€6*‡;ÚOÓ"CÇÂS UýžÏ +8•µé÷lЧ8h7Tª?‹Â[V¥Uæ"•€8“ºly.X`‡J¸ÞÕÇ)«Ò³÷m¾ä¤ï_v×ÇÍ»sµm`d +W€”n“e +Cûðµ½Zú]Rø8þŽ¢ÞAt´OÍ:U² + ]"ï–ŠPW0(ãÎÐéŸa?÷YÂáÈ ¯w/¤ =‰‡ãè§îú·¹IŸÀö{Ô›Æp¨{ (uÕœŒ +Yak=ŸòˈxªêÂë;^ͳw…[|§èËâ÷Þœk*ÂzŽ9eúØ‘‹ÖÚ8ûëÜ´hÔ÷tŠß¯P^¡­½©MçùZ^§ [óç]‹C[ó¥]³åù#¼Ç^#Í¥ÿ“4Ç™þVWÓ×\9Wöi;=_¬¦‚+Î?bm«*¬ê£¹¼c¹i]HŽ ú÷_øiPEœ²‰·´ÿDçØ] äw…mt[}w–qÖÝúÿ '¿Åçêg«^þ# )…©EfXÒšH¡‰î³{ói‘9sÌ×duë‘¡6ö<ê—Êcúk9Ê ”l¢õöä 31z­Åš‰ý«a:]°éK´5RÞÊ#yŠ«Æwÿÿe'rÁLÔ ¥¯`Rþ pÔ^˜uGkE,À‚Z㊉íE)–Ú¯b>sŽD(ø4ØŒ #Þùaµy½#çÛc*àØ³Á¯LU˜ÿ†¯ìá`àȰÑ|N+“~°Ï˜8†äÀß’xN`RXLeµN§+›?ÔZvà$’M«# +¥Œú嵊bæ•–Ùô˜ÕpÎ’À…Ïò ÛDZBLéU»ä!ø¤àº í±ä]hy«ZŠ—¢„ ÌÎ$ª2òu"ªJÚL“ªàõ.ÍbVº'cÁÉ_D .ƒ¿¸£?`N—'=Ô É‹a4ÕðÓTìQ\šÛùE¼ô³æ#:_.ºÅšF®H Rñoª¸šçàߢãp«E¹Âú†J9Bk¼MÛe_m–ç–íf¢)|øÁ!ü˜Êíj†fC}µ62²P¼öóš x: +«¹¡rmr©"žm§ŸWU ¥†BgQQs3*ÃËù„J“I·T‘¹»Çв/ þXÕÜÅtµ£–xĦSM‹l,Ê»ÕJ)º%ì]V@Í?rzÑ2;6¥QfÉä.´ËbANR º-´WºPUÆÀþµ#6RüøÉEIÍ6aœóH€úÖQQ5x©Ž((øz)÷ž¡,(†—GR3*ú5RÍT#å?]¦]ÀU¡ø’(qÚ³‹ÛOÒ½Áœ`"t¢]¾$½‹"×x|½†UéÐUð­8.cnÛöÚV +«t-·"ž/IØ9‡ºÁ‡×ãºGê¸w*‹d EÑdÖ¼(]µòŽ¡Á]ræ7øúhãŽ6%M ›L4ú¾ÛbÍ.íÓæêôðUfŽ9ž•̓jƒævȪK‡Ð»`¾Ä¨oÚ6˜|ð Óškè<¶Nav&h9²¸¶îäM%O–ˆBµÇÉ:± ¯Í´©þ–§4“YÔ·é"ê€my%ÙKr~Ò“B…SÞÿ}Îm¸•}°èÐ gŽ[§aÝ]‹=_M õ)¤×M´‹G€WÚ{ ë±áÞå3íŸaC´q^”M +$šÈk¡ÿ °+)«Hd9ìg¬U‚ç»"´“L¦ ؆u+9…—ùeχ1¬±ì¸^ZÞý#Nø+fv©sA•yEê™(9ËH†ØŽaßÒÏ£b±!À¡üËzÒB¾þúˆŠ…;ò*iˆôCKõ‡mÒ4F2Yj».°dÅî±ÕJàiåýñ²æ6´l¼DÅ>¡6¹iÉ» ¤ý‘Öˆ¹!/’Ò§íó$#²œBÛrúQ…Ä®¬‚Ûˆ~äJâ?ÖΘœâF‘ußñ¨“æðm â›·€hþbiý0:mšî³¡âÁ•‡vÏ"?¹ó§ººN:.E+NŒ@s±Ôü'‘‚5Ÿt½!›HWÿïÿ¾Dmþ}ÞŸ$ŸV—w}|Þutê»Ëª'o”Äæ‚ø<Š\ê, fÀÊÇ@À. +ëŠ4“–Ý…B½Óú+òŽÆE èèÁ.Ø á,3Qa\äM~bŸ‡Ùº±»Ú²›ìâªÕ¸’f6“düqŸðνP?ZØw+yœé¼Ï{Wi „f˳A矮–ˆdð–¢KSšîç‘—„“µ/þ˜jqtá)ŠïRs£F=A8vÙ¦PÂûõsŽÀ‚OS·cOûÌÒo4¯{¾¤Ù¯{ÇÓw}™nZâLZ·ºÉênì­³˜º1ff37ÎA$Ðd4¸Ì{ÔüÉÊ«RX䙞†Yu4ã[«eàÉGjìÈIâëÜž<¯])æZnto¤>[ªÒÕÞÛU¼¸[&LµÌò*˜i¥¬)I‡š˜=õöX9 +w]Œ&'„°úþê†V©¹•J۱ÙC¬9Oåª^ã÷Ú•¯õŽ`«sþ ÏVNޝo€ô‰Úµü7q[³ç(VCzæŠ`eÁn9‘•ÛØ¬iåZé¡_[ß®Ö*¡œ?Ðú#²‚jbðÕYN­ús{¦„sJ^¯xLoÂÚ°21…d…>’ÐúŠ÷#8ÄChzä#Щɥäq>?WY¦œx÷m@У7‘_(ƒ(ï£1ö„ ­L»:}ã¯!ÆùÜŠbL]r±J½únw·ŒQN©‘Jol'@ý +÷ +é +Y“_“È¢á5ÁÒò,–‹‚ùÛ},èáã0Ò…Ç:Y,—`øÄ… v(H\ <ßç](êã¸q½l]o`}d®q,#np•Î4øc$9…뫚¿Îiˆ½Q‡ #׋´ˆó²ññýÚØ'¹‰¨³µHNá?IP/V™%¾R,qïainŒ5Í@¤õÃ+MKú/,´~kßGsÜ]Ïêbˆf½ÜR}=‘ìg{¬8œ%XÓÌU H-[Õ×7I…Naãí&š“öeð]ÿ&µ1Gλçw +ÉÐÔ]µ DœÌÉ«ý­ÓæÍBû Zr +yK }êE2…ƒ3^HíbúkÏRP^ßÔƒ,6ØÛ”êë n8Ïf—gUGª—x›(Uycì,9…pw3ÛØÆÊÜ· Hl–8Eubsu<¦Ñ0µ%þ2¨7—™ö7¦ëÿa]n N¿ j¿žÒΕ)î „Øàã—8AQO[ôÂéCokäüdùº—¬]GañR íûLu½Ë8ÉùÔc[£¨Ë‹ƒÜ£çLí7–@ïèœÖŸ¦,%ÞCtƒÇ¡O½Üp>.tÚ'»Yø”WÈ~µå)q„«ÕàŒQè2ØNû¥üµ3$$^r>ÏM/ñrþõ€®?„s¼¯ö[PAÔ»Æið–ʯ=ªJ]Ÿj¨ˆR@Ø`ÚOOµöYÃhÿ7‚"­¦¸—Žîõ«Úãn`}¾×|eˆ§\7¶±5N1êiF› + MªPg Ýú­ö7–Ø¥€ð«%©† +»6†¶¨‡äGD=td)Ñ®òëç¡ LÄk×åÑVâoºuwÄv}ࣞ×h÷ÝØÆÊ¯ý†ƒn®ƒ)Ñþ‡j¥·ÿáêEJ˜Ú¯&Ùõ×(5ÛØÆ³j‰“«²ð­ŽgLqߘ[fGŒYíåÍê!YËÜ#bmÄ%²*wÅŒ"ñ!õÜŒázwcùúWQt0µoO±ÁÑÔEûéV +ùK‚—wÁný%ç’W³DëñÄÝð”8z:i?eHHœÛ1qüÚ£)Ó×KÚ]ÿˈO¡,`–x Á@jožHxvÞÚ³±Á\=¡ãM5ಫýiE]aZÒïÈ6çŽç‹Lû±{ý(SÄS² s†–ѦB½€éàj«vŸá¼sÂÔµ H¼BÇ%ÚâP>8rçpŽC¾¢œÏj8NÌÂdP¯‹˜& ĸbãž:B"çóhEÕ­|I ÞÆB‡ˆz‡nùB»ýzç¨ ø×W¨ õ6‡ˆzYQOsðÄý°* _•EÔãšõœOQ(ÈÝ3Ũœ·s1䆃Ø:lœ»Reák’Á)< P!oyhÖ{(º@Âj™ȵë†UüeåѪÖÇ6,æÝ +"SU®Åì[Œ +†^§BYEƒîTÚÈšºü@®öÅBû‹×~Ø!1^û³Z»±¹$’¬é0ÀRÚ S‡‘¢ö^Csµ/tÊëã |øøB½ƒFD½ƒªùˆõD“ÿ€¸×{6/o#"×\R@Ø÷€QïpÊ®ßØ‡A^œwl¸\/…_ûM&ÐpžåÚLÜFÄ +AXБ¥°x‹!ì¼VD´pá +ÕÕ߻<' ?TFæÈù¯"¢ÞGpÈ[!¡-‰‡¶Ä7ö­o34œt,=ΧÑi/+óÖoVªì_v4ÞÊ ÀbÞ ¬q#"Dfx+ŸÅ†õFD£¼ž™:ŽòJåU†Œòºf®P(Œ¥§AJ¸Å‚[Ô“¬óžbí:ÛN¡Ëddpþ¤û×ÇCÛ~§0n™%n–¸³p{ÿzXË¡¦œ/Pÿ¦*ö4ë_j¿î¦äO34ë7’‰£ÜqšøSÀ[‰ð&t +ÃP6‰à»\`|üÆ6/×·çw +[þµ_¾YíQµÇ½ HÜ‹´q?·Ø#²È+´‡½©;x›uëW´æw +ÁêNÚ_œâ)¤¼öª¶Ä–ùëå¼ñ‰˜K>"r½§Û°¾œÁ çC‹×> ‹§ÐAŠ´Ì“nA³¨ ˆw[ &sc-BØ&jRøæ"¢xðÄÝK]s¡N\fZ;. ¡NÜÆ ·XòÆê“öO)î¢dí:LpþMGœ°õ/FªP'MK‰·-á6R½¤¨¼Úggø8/³‹7N­mÿ:Ü­¾¿Q'W­ÎÔF¡än®Z +m—úø­`W\6¶±Îiú:Šøœ¾Úߓו(§cq@xæfx,¸lTQ²LiܲUÂe"RÍ…rsÞÎÉ[Ý,|v3Çý-Kú½¸Á¦%ý*hþ:ƒMÈ}EN!²1J*÷ìB½Ï×2aPîM„zÿÁy{7GÎ˼ÓþÚÒ¸Þ°1¯ÂAÌ%SÐSH™,´°l%. ˜62P߯ºyÆ SJˆ +™ýOœ^”ºù’ŠO6Öh™âÎÎsÜÝ,|ÆÕàp÷(ñÏå¼]2É^ŸR$ nr?!ê,CBâ~"ÿÚˆ¬öÊâõ¯€§Ä}¦$Ѭçž)Ô¯ ê•«VÇ',QߨEËÈú¨VÇÇ٣Ĺ6€z6!wŽÕ]_,í»]·þAÃYÿÉ>q÷*ÔÛØÚ¢H;kl¬ã¯eËDáhË@/—¡2.ÛX«å?Ó¾c4‡ú ·m| +?Ó~B~µá£ýÊtpÔŠºy¡ ëàËj„Zæ·1K‚¡Qlìrb­ßS NÚWG¦Í#4Ÿz’ŽÆ~—"ñÁ“zýå&¦{;q=cþNáŠ\€áëèœ|ã“êì-6¾Ï»ä…·ª¥­êëóH57ƒ ¹¯S¨›«ã#,…óm·åî·%ý öëkŠY¿Bà³þ”!žÂ•v‘ÔVBâ_ó©WÑdßX+à)ño2änÂmÜŸ¨7 +ª¨£ž/3ŠKT€ÑJöwn`cníQ‹i󼪮WM²ë½ÐUI÷‘¸ÂÀè˜Lª™ílIÿöð2gÈU}£Çt:ò±ÕœC>ÔƒLRœç^ƒ‹œÿ4´ì§´L#ú|Yeôù2P˳Xr’@°!M'&$.‘U¨)·MbÔ+°+©Š!»¨£—BÞ]B ¹Õ"ñ eq±²}@¤.VJȽI1m^„¤Ýëá–Æm˜\ žFÚ¯5Èu‘ÂFºÐ¾bòkÏ(0>> HÜt¤8FzÜÿ—Ù\áŠB½ ŠÎ¼BöŸU¨ol€Ê§·Ìr¯Ì¬.áWËü0°¤?ÜÌ÷”Tî¨%än6_7¦ƒKª¨¿%CtHx¾¾±3áùúÆ66%g'‹"E ñWfIÿˆÂ(w Yí¡¨Ã&Ï×ÓTóàcêiBÒàçfsprøxôtM[‰sF› +#.G#=î •ìú6"ñ35q}—¬]<__AUnq6ž¸D?–×oLÑÆ§ðK ~y±´ÿýkR:gßBÐ%3ÚT¨Á%„%Ë•ìgŒ¯ö¹A/ñÕÑy¾±¸ &/ Šæ_-ó3Ah4#ŸfÃ}`ͦízˆ‰s:$R=j¯FJÍIûLJz Œ˜ú‘h¼f´¥nÀKÝЉ²Xòyü¦¬pL–²Á±$PË|4C+±^/Ãzqö_ÖvZ^âG›ƒ¯)ÐõàÊPâä!\»ÎÙØæn>RäL„íÿÚ7mÜWåõ”‚"ñCÒàküný¤æS/N»ÚÃÖúÁJŒª ¶Ä˹«J8…²É,ñÕŸÂIšißnãU>åw©Á·qƒ· Ï×Éw±~É¢[?úIö7@s¨¬ ¢èoŒ ±v=¥IPùuò˜(äàI¢y±´RPHèu_´ñ)DdNƒßXD s +ù„€zž,¢žã ®]Ÿ@.V! ëËÙ›R×ã\øº,oDì–¯ÞCÑ!Ï $Ýòu¶õÊlP]ÿùµë’1!ꄪ´ÞgçË (¢ô*Xãj£Ð€¨ Ph–uc­yZFò“ì?D2!ç¼6⨂%W ×ÐÉZ«‹ˆâÉm¡Ò-Û˜GÌ%.‹h„~|Ù¬Z}=ú|¢Ûlåf–¸¬r¹Z+k‡…o€ÐPocaàåB¡+êyŠB¡¨GÐQö +q^«‹ „ +eVÀŠR…BCÆiyAã¼2:ce4‚ êBÑk24gÊÐó¨>™*@à +d.ÙÍq‘(ræp2¢ÌCæ©Ì€%A3YAÁªM ]‹$¡?’yTI§¢9+N¦C 9—˜Ö6-D–½6–ÅzÂŒ–ƒ²l>dZ¡.TãñŒ4-×ÍÐgmº)òþò¨Hâo¬@"¢°Çy»E`pèÈ¢ƒcSš…X„2ûÀ!§¤ /+;"F @C)„6ÖšÃÆY›+ä[|¨ÇÃÊy»'¨¢œ·{ÈÖúMòܾ>’¤Xn¢ +Â…‹‹Þ·1Xeúú,×Úï6¦ƒo¬¾PþX»n–›—ëÙ*ÔC.ceʃ†N_$ûQyc?FUò´¤ÿí:í4.âøÚO8¯g”¡«¸Hš¤Óà’i$Ó#?È^@4òÂ|j.Q^¿=êHŠðÔ8äªÝ~ó~NëÝ…5­n%.8°’Oê[iDZ;‘—O&®PÝX­úV¸~ÔlCkÜÌ8–^£¢Ž— ˜Õ°’òšªZ¡º1 +Ö¸&¨ª—‹yçz"ZI,€xdÙ‰hå8B€ÔlåA"¸ûPÓK!‹­ð°€7(Ò÷ßðÕ2÷84ë·°§t[â\y¸bvŒ8ïnL÷ÐÖkÿÉBû‹MlpóÌ0µ'ð”×Ç¿¶+À€úÒ¹~ø|Ô–Z¯m™Qq‰YÝÅ}b“‰yà£q¯hžVõuA8…ç*ìÄy¡}}¼"!!ñ¶M„kë'|K õ{Ï(.®zJ|cÞÒiFá"Ìúãÿ)ñð£2ÅPæÆ›Mwðé{|í7–˜ßÿzÇ{Z÷? +—Gk¹@¦˜!žÂ‘#æï¼+@Ñ!ç Ï×ÁRõ*x#xÞüuPAÔÇÐÔçJo_yâl[Ò_Šñ%’Åú âiZÒÏHGœ—?dýÆkÿÏ›¿®âH OÜ}¨Á£Ð)4ëMéà™B½ôbúº]³ný?ô©7Ë)×o¬-\FmÌ +.õ~èT=jŸ™4W? +—¯ƒŽ@иHñÆ(–¸[6Œq¡ý™îõjÛ㮀YèzóÓĪš–ô/Rí“”×ÇDÈÕþàãú…óö3uÑþEK ѼµQÿ +0Ïíë2L8…ï(C´_zbƒ·ÌqߨQ +ù7l°3þ¯=ü +øì£9r~íìEâ‡EÂ’þÖ F7™°¤ÑU!‡ãk¿‡\ê2µ:Þ@#™§=q‰~ÅÚõдðWO%ïBûmª—øq¡°ŠUõƃYøûƒÐ§Ôið¯Œz‰Ðö/ÔSЬ¢f­MHH\d7‰-ªÁ9 SŒ.ëwñ)ti‰œR¼¾åÚ­¨¨eîzÁ¨§Ø¼\ϯý "‡®]—Mæ×â E˜¶? æöCÖõŒäå[î +ËDÔ›ø*Þ…ö¡O½„¢–¹)z’æj_nÚ_ NƒOÀ¢÷„{sp¹%œÂ…‹î•Õ|êµ^ûW6ó»Ð~*Z¼¾3œ·'Þ…ö5’K½rµÿò©§0=ÐZæ‰ç0|¾îEŸn®"ÝØ÷/xñ_¿± Ý1-%¾ØJáÆìBûäxûûBjß)(–¸R4=´ø @ݹ¡O0^ûÇ]jx¹Åk_¥1l8¿·ØX[ïtýêè@É fhN•YMŠÂÆÚØdŠ{9ÏqŸh%ûS¹dÒ–x›.šõäF¡ýMúÍúq³¤ß¿0Yç_óPÃÆ +B_æ4xV5¢¾±Co®0„œMÍqçœHƒ» É)Œ7¨Æ¸ø…öÉÂIû¢H‚zd†©ýø€º&¾Pï[J|±¹:^þ`”×ÏDûeBü@K÷…(³±t$üiéŽ×ÁZUq/0×®£¦öƒK=24õrT5?2^û³,§ð½ÐŒãRï“=¾öï,9…d7ùÀ/‘dX¿fÝ„À}Œäƒ ¨–{RL›7?Ÿz˜R­}“áj$BPMUÜ7–f˜Ú»¶O½DÀiðŠÍËõ[äROá™…_‚\í·\[ê…ªæã_›K=q»:¾¤¹Úk +Ÿzâ…óöÅF#ú\ÃbýÛ¸Áãl´ùæª4ª($äBg +óuê`†fýšä¢µÌÛWF.iGÖyFÙ­_4¥®CHà³þ—ΜB±£Þ«Æ þ‚ïúù*î ¾õqôâ6Ö× Íz/ô´ŸÅ1ü¾Îy-¬%¨çñÕˆBH=Ê뇑V`Èż +U¥¤Îa£Ób@/7³ ÜQ²‘´˜7-O‰76Y YU¶£¨E]ÎpÞ®²iI¿ 2hßáÀÔ>lGÑÆºOl©›izš¾Î½Ñú0eB ™ˆÖXô‘=Ÿ]¤éǦ¹öï‡1³5;¯’Zá…¥¤n B€Ô,A‡õ2ÈÇ+ù¤¾Õ4•5ýSúGymAÓ¡ +ˆ_²Ÿ-MÓ’~H¦pðVÕ~%F'*¬õ¿#ùã»Çuœüçß­¿e¸¼EîEĤõŒ’âzGÆøøñóQÏi)(¯— îõÙ¶¤‹Dɲ¬æ„ªU̘zý¨€¥ÄçQîŒTÔŒ&*0²À‰Ò‘ù™G¹o,žÙ%hwý]<u®«BýÐÙØ‡è^Ò4"1˜¨¾]Åž«r_VGh‰Aãe/Ì(³Hå ò,¤[ØØÄ aW±9ˆ*ª–ïŒ ‰Ã–1@…6â#A«ã]¨ ê}þ›£ËÃ2çÙS<…c)ößÆÊ 7`IX Ç‚ËP'ÀËe޶ŒµbqÙh Ý2ôÃ(€}cbv, + Î;ʬóÜsNƒD¨G"LUü‰²¨»PªPõd#eŠ{š²”BKÈ©ŒØO‚5OÒK¡‘)uY×)Í]ˆÒZÈ(úxªH‘Ö CˆÒ+à”^ +µ@z)6M)a"yªÓSlpñS= +`~}c§€[{H*â u6 ˆç‘$ˆÏBÀåq`iÿÍ¡þ¢•9Ưý´©ý+`Ú<ž¹ÄÉÍÙúh߻ڈ'~}`^í«©¹ÄÃÓôe8'(ê±á ꧨÑZæ¥Ùç7(Jáà‰Ã ŠXŠÈöu-â<{„ y¡}xÓã^ŽîSâoÁýº*ÔãNõŽÊ>%¾±"PnšÂ»¦éñu"Iš‚Q{z œÂ.ŠQ/ôæ¯GÞîõrGùÞüuËéÛÌï›íK¬O'n¬c–ø~ +ªÃz&qâB+02–„å Ø‹ySƒ¥¤f<ë]©+TÛo$ühÚf1Ú+ª¸·S<â¼!!ñ8”pÞî çY¤ïju¼»vÝõePï Ö2OPR3Ú|”û‘œÂnsó*â‡TsY'ÝBV°bqeËL¤šË’µëkB<…ÖüFÔCÔg•'îìâ×þp9 ž±ÈjŸ +xƈ,ú¡Óà76²,Rõ~ƒóvs›…Ïú2¨‡@ѬaPî$œ¥>Þä­êë …U˜ºƒ=ÑS8§Ìo .qªq‰;/Ù¾±Í‰jpË:kÇe&€—ËBÒ-d ‹Ë66)[†’j.±ä-SW,.û ¤[–z,¸ÌSƒžVõÅ)Õ×?Ý¿nZæ˜ñÿj2¿nFdQWÛx\4:ÆÇûï'TÍáišK\{‰:®Ÿv׿1Ðhs…覽¤¼>>¦ÑS8q,ä”ióý;¹¡‰€?ȘÖ6>…ã)þ|ºõˆ,ê[3œ·7Rs‰oÌ·Üç·CMKúÏ #’ŠôE.@Üë]»Q¸”øªšKÜйªŒg +up +ç÷¡Ô>Ãyû(àÖævu¼¢_RΫ-ë7vð3KI…9/u-ÝÆT®1Ó +æ|‰1Ö¸³PÂXãFNÑÃa:ÔÍÀU1Œ¥!ö#Ã¥­Ý…Và<–Þ¢ úÖ`z)Þ·ºÞ>õCÔWºÀùeûúÃ¥Ûÿ’µë²g+q6 ˆûÆ`~v³ðGî^ÄÒ>:ÿG(Ò ×’9…/ÿÚGVqŸ[ ë³þ’$ÿbŸ¦Fr›«ãEÆkÿ‘«ÁåÂÈõ;x ¼ŽF¶¯{0Ó>Ì(9Ÿº¶ÿµëe(Æ BÈ¥ž‰¸pÞÓݰq½îqG|ºÌÆÆ Bÿõòâ¿>Üô‡UòÇsŽ”†ÑþˆDAÔU†x +§}¼ÎÿB½·Àp½,×Ú×>Ì·±ÒU~}ÛØÆTÏ«ã;[dôù0ØY$âÑ: MI0ƒh!E àË:_¶±bొ½lB +õ² +éT•û2È`âeð¬ø2HÙ³}H·g¯¯©6R&侂R×w wš vî!:­Ÿ„·¯KN!ûc ñX».–®dÿÆÜØ}Ü.gÞÁ[/O‘z±nLNXëG!ש¢žF¶‘í^ÿž#â‹LÎÔKL­ý˜Åh£uUÛ6ÖØô¸“ª²0PŒ«÷;v¯w@Ö‚ZÃ*îþ˜ym–ký])Ä-*²ŒÍâåJ”4ëÛC) $]t÷1Ø…ƒµ|‰*0jþ:¹Z\è¼Ç×>µÕTlæPo[DH’gáÄH=±ÁÅ.9 þ°qž/7WÇKÒ„ÜÙÖ¼1‘$x™t@Ö«bƒÐyU–¸—Œíëgꢽë'ÙÿÒ¡SøÒ¡bLm$£pàü÷ÚRÎ3I€Ä=Ž „~Ã7™_ߨ*¤hÍž&r³Ä}3ò¼±1ÎH°³Ö|yÙ<Ù4^Æ‹ìû¯=ˆ¼,b!ÝÂJº…L“ê.ˆBº…Œ²Š½ÌM¸… r¨`Ž—.`&IðL¼Lçòe Cf7‘ISÿÌ@œÄÓàW0«ÀþK !˜u^˜I"/ã§Á·ƒ‰ý52˜x‘ƒFH·°±št l¶ +õ’‘ŠúC s +7&Ó¨F*’µÌ +ù{Üaï 9Õ+„'ìŠoèpåvu<‰z°#׋¨9~JœM©¾Ž‰Q'ÔÏÑ‹ó0t}«²|½-1ëï*ñæj=8Ôà©Úã>¿làõ˜_g ŸÒhbž«ãE’‘Š:gÄ|´?âÓFd÷(©À°–y#e‰»ø¾µÇxèÚuÉ"!w¼ níIQÕô0äBP[â‹ÕX³¢ýÓ‹ÜS€ÜDâ|Ÿô«ü:Éи Øš4ën=’œ·Ÿ•QÈu·1%a9î‰vûz9~˜™®r팿úz\èVm5@>»×o¬oÚ/ç çaOè®+ˆfy¥Z=…å s ÝDûûŠÏb¤¨!‰[–w4¿·ØàÞê“‚Ú·8>ç¹ÔS¬Úˆ·3]ÌÂ/eòMq^†œ´-Àðuo·Á…Ì¡Þr¡ÿ @1è%îŒnˆ0ÅýáÀÔ~cØÆ¨²ðÇìqGÆuÀ,dÒ°’›¡½éa½–Ùõ”¶q^®Ñb^‰J„¬^êª\õmìB½\Æd”WŠÆt¨¢À‡õBjd}«¥{¿éP7‘]¡ª1Ó +< øžw,½ +ŠÅ¼šr,=R³,·”ÔÅŽQ^5Ii”×Ìn/æKŒ½ÍÆPóˆ,%•Àz…ê„eê²w0ñRÔ‰Ë:Ó¸e0B{+oi)©ó‡PÂû´ÑÀa岂„z@l'!ûe•üñ©W=æÆ"…ƒ!´›Ú’á"Ub´ÕÜôâÆ"u)/œ·'Æ€“vYŒ& +¢Þe2!#n®g[Ò\Ѭ_¨ +·ö¯D0D³Þ5D½o\$ÚDÂóINaƒFÅÚˆ£Å)d¿º1m^tUÒ¿qãJiG-™fÚ']2uÀâ^Ïñ)$ ÖZæcq›YЍÏrýf1z¦¦67/$ºÊ¯Ã­x ++„‚k®H œY¨äT5š *BN™‘ à  %#:¹Ú€aH(VLL,&Èd‘@…a‰QÅQcœb2èn ãO¯d,ž DšÔ†HB7”rê•™W; è¿óÉ<¹>î™NXÑ=mDûÄa[¹h‹§Œ˜fdˆϘ‰üú:¢Ãºì³ÇW5â‚&u$4ø™¯ rî12ϰcèˆ,Éìaí¡yƒU0݈M l#Á 1@š%ûG@îKÊÍL ö%{ŒqbxdZø"#–±¾öÚZˆ¸ç©-<Þ݇ØM "bÈ0^3R4¸^6:UÒk¯kt»·ßT(=}~b¸Ÿ,«Y¨18º§ÅùËí'êÜš¶îUœÛå~©;‚ ũŻ €ªô½Nâ× áYq$ö¤ö1œ» €µå‰¥~¸®Š» Ïf?Ôåè•îý +ª¸â*¾SÄO«û ¢|MÃTÛ~tSñQFò?hlO%;ç8üóù=1jFôcû¡êbÿU$ã–_ÁQ–ˆ`J³›È8EgOqÒ‚ÈEr$˜”] %PIA¦& ·ÅZ0*Žh±¥Ì-uª”a‡ÅHÿHu_1U™My¿øã¬£cfιª…¬ð¥S;nÐ +ÑC÷‘ÍÕ(“Ü +¿#ºåÓ¯@e™Iåö‚^6E} ȳV*Ôw7çk÷Ý@²_Ñ÷ý_Ã3‚…÷φ~¸'3‚ÆfTi·4‰Ð£ŒPPtX%øÚ]ìÒgD–º°".Í—Îf‡èY¼RDý—Èu¿a2L[UÇNæd í€PZ‹6³ZG’^.yñ‚ýº“)%çØðd7+ ºK°DU'k Áî„€Ÿ~†\Ùj.>Lmc¨Ü%½”So{ÈÏÄÁï+×cƒ'¦#•¬“!ÕuB`â”8õÀñ 0Û+ÀÌ´Pˆ§cH™5h€Â3(ýñ´IÅ]Á`¹$ã°ø±—•$ˆ1:®÷[ôÐW¥ oá0@’€ ­$´tqeâ.{žÎñžÉØg‰!–ý ~`ÔÅÿd +0Á–ÁÐP–Ÿ«Ë–6P‘÷v+FC½Ï¶{MϨªH…¤Ž§Œû·E|#ëî#ýV¤ÐŒTÀGª ¨î—¸ò|aûU“} +\¼ÐKÚõ%‚ì%­ûÄݶç½ÔxtÁÊPkï•wN¿ S`§}“°V‚µÔž ++œÜ6ÿ„$›!H#XM­ƒü·º¹4ÙS€/É'3lßm +Vª (Õ¾÷UC:g*6bÊç9H ”¡PŒ¬‰Tà.¸zãT +¡éÌUÆZ³m¥0i™­ÀšÓÇ ºŸV{gŸ5´·«ýÊ%¨…>ÉLÁFA”Yˆ £’_­¬´ïÕDÎ +S WpÀê-à +ü§þàUú£’>@®§ƒ@Õ¢³'/1ÚäûÛðÒ-3^«O€f£„‹oÃÉçÄÜ,°G¬?¿¼ÒaâÏõŒM»{ûjö`Ë0¸Ñã Ü"x·þ ‚>vÔÞ à\® |”©¥ŸåL±»ô#2E—Ð'A~· ð +5Ÿ½ C³Ác†ÍW·¼;ÙÄ +wë ±À–K†ÑgE[Os )ùº ƒï6дg¶ ºÛ ¹{³ï·aØ=E Æïèœ I5-ÜW?ÓM@0¾³šN¼Ú€Ñ£† Ï®vp¬õY¾+weP«[B±VÌ:e?è8eħ ½(ôPJ.:‚ŽjHÂ]6@>ß²Šê÷±p^võ3¾.µÑŸQ•]xɧ¤f:÷n"Î wŸ-˜÷Mµ51iÀ¡òPfðd0a¦lKè8G”‚Z(ƺ*†v=›êÃ41Ç?Í›Vðn¦÷Ö[rè8ÀD:i„^[.{……ETÐ>Ð)v8'úÔD®÷<ýTР+uÞ/¨º´A1;„s@ƒ"Y³!Ð7 4ròQ–¾»ãÝOv&ç.“¸J98ÄÕœ¦ –ø¿¹P‘ßh÷x7vþZ÷û7ökóë"ñÄ€GŽ÷ÝÃ9¹®h›4! *ëóÿVµr¬Ìw\«}™g˜gÊàú‚rP ö¹ä‘4ü©¢.(Ó +¿„@êf g‰ªD4KÏYÝý€†å +MûÈ}k ¯ óÍBú¾7Z¯TW¼èô Š˜`ì„`Â4õTÿ¯aò»|8Éqß¿0Ÿ““ÿŤ¤ˆÒŽ >KXBpGë à6:(Vœ$²Zˆß4†ãlöÔ>~z† D{6žf,)k)6/I.©ƒ²­KÂÒ€%ÙдX!íb˜ÂÒÌì9{bÈŠIÄ@ø¥ÖÕC¶‰DGŒQt Ã|*¬ ›Á'þ¢Y.º°)@Õ¬ó1k#|×+ …Íã/òŠHâ_)"Óx§_˜ã³ƒq–EF|V£÷ ˜ùø€•ƒÒKh­e1¨ß’Ð~ÏãU-Ë,›º:‚a#_bŸÓ^F˜ØT¸U-/›é¯^Ü:ÆnŒ@¼ñ Àþý_–âéÞjR询’È ÇPÍmSE^g7LÞ5<«sÁBÃرºëbè,|}t· ´»ÞZVùˆ,&•à·–d¨9Ž‚Ñ3Ž¡¨–ܤϱkËC{ÇÖcç’߯œ6æl€ÎtŸ‚0’¹ùxËG/ã›8 ®§¶0ÞyïÉ•øJ¸ußp¯^›Çˆ“>ÿ ›7$õày½»Z,×VsÁÊÉ\KDî0Eè~üi×z(+в†i×a/ œ¡F«PM<ƒV’\ÆA6õ8 aþïgœJÀþžJƵH¹AÀv\ +Yžú£Ü +¾§#ͷœ½¢€ÍâÔ±Ÿ‡N¶ª ½¢"XBršzŒ¼œ\ɵ–&¦Àõæ Ä.Ù’øµ'}–o…÷>É·ðØ´J:Ds¿¼ +Té{èZî´~Øü“€>çf=TXòŠï×Âm²}À“Ö‚àµî¿8[ßMŽX4BMg¯ +Í~ÒŸ’§øÈ²_èÖ í·= !<7•ø™Çq“âZ²ª«§”ÆP—xP ™ês]¾³`’á×uGÒF¡ÕTJÁǺÐ@^0Y£QY#vÝ{÷/ú@Y÷@ùùß´úÓ6 kUB„"pÀ<“¡:fÑB9-*©!=^¿®o²ˆ˜„}öÂ7ö¤‚ïˆm×F£Dßß®j`‰›e*/Ð3óNj¥'þOaÛggWÛÕb *Ç®¨[Êt\q­’ó“Ü;>©r!çÓÙVÛò±Q†IY‰z¢øä»ƒñ”ô0‰zŽ +ÆùÂÿš tWóyŸó¹x‚îˆêLÙÏpíÚfº-ï*Ä÷tÍuÍÉÐOêð:8öø?OA cæ8vu“pº’½ažVô«ˆeTïªP—©b¼—í°VÌ:Ž0¡W2íSª³›–ßVs~mß¡í&€±Ä õƒ.NPg—Þýs¬:LvKê´µe‘¶Våàk³h èü¿úƒãV¼Jürë¿lÙF±„¼*7®Ú7•¸w\.É^¨æ % ¡&çê¿}MÇm( +¹çKŒ®'ôÓæE¨M·+[(ÛO,šÉ> ke‘¬••4™€ƒ=ß=nî -æ]£”'‘ÅMމ} +¤Êg™û›¸f¦ŒZï/¡‚g6Ø’¶tBäK#P4ÀóͶ,Š'¯ ;LÜ;@§2JTÙéÛ}ïÿ¥ì‹f©ÕÅiÓå½r×¼_¯ÜíN.ÞéUÓ4¶­q15ã÷Äë&Ckº÷Æúi²Î±iëäZË|Íã×Pœd]êÖgGàçRý\ëÏáaa#ŽþZÞ“ÛL5“^“»pî¯8µImv[Ü?ó¨$&‡ØŠ—±è¥ÀZH XõTáNAoãdæ0N‘;óB:ÅrÆXÔå´aé—iàÓí_Ü䨇ëŽ]‡àŒ¼Eè¶äHÚØ‹÷1W^ΗlÀLõ¾hc‚Cc)¦dæ±\ǧÊS] ì¹\±I@%p'×SykîqùX†Ê7ãîªáy9s¼UW‰qsн½BžD¯½uHXBfý…l#x%€˜- ¡PÃÜXLö,oÚÕ  —ÇèIhð l*¢5ëuvÀÄØ‡ºCvô†G=¬®‘ê:ÅZÍ gdÚ+¸ïàÇ‹¿üp˜~eÝmþ5¾0vZÖ>u킃@3ƒîÚ~÷¶Íú<¬ +AeÁzyÁ"â*¡Š›Õõ“ίûñ¡jI9ã R¾!sû¬™q1¢­¾¶w›e±&Þ’t/Å6J*—]ØãSNÃâ4~Ât\¢ ™¨£3Vß“©]ÚÂÔŽ¯æ³v’.U³¸ƒLU9nÛ±F¤Ú™Î //ÿ ãQøå ì@ì©…ÿ¶¼-Q’óø} 3ª}c7ìØ°m;F#U‹5*tƒ~ÕYYNÿ­¶¨Tž oÕµ Æð¡O˜,ñøÒ4C>øü.ÅF5/u©ñØ&Ü…¥6·p”wOžj¸HÀ‘©«1ñ¤I‚škÁ/O¢˜¯ãéÑÀ—ù ¥ Y„ž-UTEµUò7/ÎÛr.[³-qéêÏíºÇ ¦Uæt·rU¤lÔéÉ€./ÛfB52+žÍ +6êlCËàÉÌÀÜY©veCõÆà/WRΛFÙäJô«ÀÒ1tÇC~ZÄ¿á$k_TÖXWã/Ò—#"DTíéÇwäa².ÁîwŒd,ØKq÷Ö|ú\[°£¼Ä‘6bà ¯ÿ¯€,Y+GÞ9 8Oß¼ïy‚¤$re‚Ô Âæ4L•8†ð +Z’³Xö#¹ÈTÁ-ÒœÚ&VäÖR¨\ ýGªTäÙæ aíEg6˜`EéjËM&¸n—põH—Qn:wÎ"bõX–CL[½EÐíKŠ'„Іwž=ɶylbOmªGé!yí['µ/°¯ý$ÊãDÑê‡Iö±w'%¥®Cx°à©ÀX_Ü~sªz’±§Ÿz˘E¬¬d»©’ÍFMóÃ9Öæ F—7ÇËÅêý×/èÄü(dã–/@­…ÃjÝOÏOÖù‹§F]5Ôšø‹:‡FµjKQ +u‚_º¤Q¥ýµsR4­ Öª¨Œ +šÖ‡ó²µçmB7­û#sΩÐ,ŒÚ ©É -Öƒjó|‹*µ ²?­šÔZ¯ç[NølägÓÌ›7½ÔP”$ð=N ±”v–zZXJt¾ A˜æƒ’ï´‰¾OqËl+,#R4#µæ6Õ}lŠª Ë[mŠÔ.µt6q åeŸ( 3ìõ‚-–1r2Åݲ€é¬~8Ç)º8Ó½Pu‰&LÅñçDJb&:Ñ·[–hæ–¸D ‹´zòD3ù(Òµ¤ë›½|mõ­ ;ƒzë‚ÁIiȰJ@kP•Þ¸ŠŒÅ¨×i?oÓwTˆmþ«s¾’u¤i«í³¼Œ"w«[OÆó'Ó^SXwl—LßB+WL¥óÏ›^¾€ºD€+ÝǶw씹œÆG“MB "Km1}õMãßo|œò°ßàù߰Дš‡÷øî^}uç¹bBlwâÛÄíâe[ŸxÅ_*›§C(ߋ êÎA£óŠXA +·îý³ŤK&ïD›ìözY%{C]cͯò’mH”d±‚g ÖʪÙî\èbÉ£|$éÎ#U– 2ßé’eOÞ#ºóœ”‡ÝY*JäJqµ1_¾2 ;¯FsF»(ÍiY}‚»‹4xqûu0Žqß6ŸhuŸ]ö¼" úNèÉÈ#¼ÃìKÄÜl脲…Ä"¤-Éé<¸H²¶l7rŠBšëB‘f žÌc³iÖé|ì²+Ì-K`OÛß+çM×O1J{Ùf1ˆqXUä”{>)_"‰ÛP‹[íH·®ïû”¿ÌÅös©aá/ä"0<ȧR=ÉUäó3r?Ÿs:c%#äöU õyd(4+‚€â8k¸öV' Z“bóݰ×/tbt –Ø»5/móp±’•(”õýf«S“9¬ÝGYû~ÌŠü Ø¶ö[côœØ‹ájd†iñç³ •¦ô¸­Wûã¡ýÅ–V¿¶@aÕX(m§¸™†ÊµôÚÎv×v†j¹«ì¼¿ÞÎúiæ}ÞeÃ&EýªÀK¿îˆ13†„­†BÁa™òx ¤ü\@êXyÕ(Úà²õ@vŽ\è'ú•ÔN3¡S‰´Cw—È"2íOò'º{¨“#b6D-¿ZSû~AR ®„‹áO5Ùc*yZh3ãS_äºV–tŠ8 gŒ ”B°M8B\Î`²°°ï¡~g¼šã­ÓÀ§?f»¦ ' t†Q('á7‚ä:>ØRÇŸˆBøzÅøgÝ]"ÙžCs˜W»Œûcè5Ü»î¢b7OÆIO"¢ 4¹/oÞËû<¡t11‹;Y%¾qhÿqºý#‡ +ã^þÑÊF޹fQè;£™˜dÙáOëŸ6¥þŠÕ4›þ2-j¨}ª&êMöcÙéÞnqø+·`Ø!¿&;-NÀê+@( àr0Óº¯¾3V1–eG¯K˜;-¨­·c¾Õ˱Ñrµ7§ü~v—xt%øHž„úN¶7ƒëT7)ˆöëèÞ‹Øg84›ØÖ&>ÕÉàƒìïxN,ByÑwÜh¢?¨ó‚×å´¾?zc²ªÞ…¤R 4ÐBsC) ÄG*g< òõûÀAeøÈ_ýSKOQÑ{µ"’±•€ò,œ#gåöˆ)¯”*,tSCß{ލ ?v²ýêáø.­`÷`å r¶S_ 2É:Ʋ÷˜ +³=|Û'h ÙªHúRÕq±¯ GßTÜ­[tÅ +«Mê*õDÇEõŽ5ÆÞ,¶Žƒßßdûx¿!ãY¨g«×-ÿÛ±. U„.â0´Bv>µ( ÅPl(Ⱦ8ûÿ9/¼Th‘÷ó.ֵѠÂvÆ:ò«4¥päóvó-(kô÷–H.)¸ J¶{ï$Û }ÝÐÐÊŠîûûúÀ¶2ÓŽ$G¥žž`”JM*[Ê9Á´j*ÃÒŒyQ˜¦RÄ æ±’ŸÆ÷{ïå÷oÝÕÿ8`õ³–}ÒE6»á1á@ººÿÜÖ`N·óŽè†7å$èt}=´‘W‰lÐ/optMDiäThj9ýGçÇÓûüÐèOŸáÔe¥£ˆªÈ_û¿t²8¤nE=dbÙwœÁèvnÙÁØ.ÒÅj)-•°¦ tïĨÙUCd7êmÌ^±—nó ?*õØ#U«ÚzÄ˹ãÿF›>Ãÿ[n$ÿ ¤'ÑnºQ€µ–PèìoˆÆö¢»¶KÕ~|túpzx×"Lm9ɵEŒûTj,ƒ-Ýðý¥ûî «7+ÿz£dMñk¥Å4NÕçt¨nÂ3»$)¶WÎ=Êß¾Î%æÊO€ÉÜÏRl‰<{ü™q¿þfï/­sóÕ¨½?nz;”w€éÛ³á¿à¶ãºˆûQ.J4ž®¨;¨³SmÕ*¤`ûã Ägg^sh¯ÙiñŸ¼½˜ôª £<öÁRš +N°&¿“ f VCÐV¬º%ÈäôÊwðÛšç.ˆ£¥j•œ¯“ŒQµy"-÷jDÜÞš±%~\`)Ótõžd“m¨ch ÚPœŽG=ø¤XÁ,Õ(CÅ ðóߺ(îhzð¢• Ôæÿ  +Y à-ªü=‘ã&@©ðmíÏ@¾’·”BÕìN˜ä§‚Ð5¬› x~޾aùuJ‹@ ©–Ɠå:€c+Òm¡3Ù2•Þ´éŒ*¹E7BKRL¿9°–0a™' …ÑœTÜ#Ó¸ŸEžÔ¸;(èí`DÄ•‡y}À@Q71Hˆ‘µëñ>a#85?QMD#é¦.þóu0ÀŽ;džõ\!ïÔ1:aðáÖ™$N‰ìß5/6 æ°cãþv’ˆÞÁ¿t-…žÝVéyvP Êh¼¶õôKéÀ#ÏèKç1Œ…’]EintQ»{í=HÐâ@œ˜¯È— +0RNlÅêE®)­K;™NƶðâÆ©gs t„K옗AØñˆD²—ykm30l°ÙÑq"jýZ‹ ̽½ë°¤ÐIq “~ZmÚÝ;m—pTwü„Òy£àžZU&0ø+õ&SÞšˆ\$¡b’Ø"¢Â,<ð½ò„ù+Ÿ;²'t +.tØ™°¶ÍÅëGóìKƒüIw²Yd£†s'96#-@öBYt#bÅÀD*Κ퓀CêßsG6Á%š37ýIí`èðÑPU¤yÎbàäÑ,FZLîÙçƒæ XîÑðÔLå: €€:'‚°B=í‹7— ÎIòYàÝ—H×> ›ò„h© Ÿ/ 9¹«Ë¿:—4椈d$©«[Çbm¢)«)6oq¾‹¢PÀ;ù£jú0«8óÙVø@'M¹×a1MÎä Ä4²Íú‡Q'ãá X‚]"€<ôU<‘AêeÏX""ý7÷Ì…ß à›§<¥ÍgQ÷§¦rÏ~ l½¸À 1sñ¹›KZÄSŽpNª¸P +ÑK¦Ü£¤”œŸ{îä˜ñdÏwi'ÿ`° +ê÷/©ÊŽ+É’¡èÄ+ŸN½»¦™({¡Ú&€4Â_£w X$:(Ç vÔI DÆ +¤iA?©fFjŸ.üÚ¿Üb‘SÚý9‚¿Ó¦ -ˆŸ¹Q™|ts5”½Rx=3ñ(‚ +hr©¾cwt Kôno F²DcetPª9f×9M¥‡-cÀ:]u-¡ +ÿS½)÷¥Iâ3q˜1R”ÖÞ£C5³?SY £ƒ™:ø o8£€œÊ4†E®ìD‚&~#óc ÁÊfa’fk}c,žRq…“Éâ«þµPÅ=d±$Ï +ú?ñ¥â,êÈ‘ëNFB•F.¬Q¥[1Kɵ[ ‰'*#ž²\Œjg¡ˆL\ÐFÑï.“ª?F¶EHUå¤Ò«°æB° K›Wð"¶ãTTXz]D²çøjì8jÿÎbÇ +¯[Í­1‹Yk#ú6ä¥(mÀY•&%½Ñ²÷ y‡¨[Š8 ™0¥ +=MDcA@”ÓŽ;u†2'f’³d¨ ót‚a¨H ?iXÄßzLE}éAu)iÈ_¿zs¦Åóo€Fþî©c–/?«q×E«ÅRfA‚pH¯@¿2¦J%5WÐðÊëJ¾ÝÞW…•]ÚÎ\‚Ï´yô(¢…’Ëüo5 åØ˜ik;ᮃõù@^ÞëÍÍrjôBÉe]àÀ(nyôJ$­¥’r¨Q§mç6&>Ó +À^’#Ñ4ì0‡^Ká®Æ’Ì«ßY8O\ŒX ÞÙ3¬c]šeoðWu¿ $¦ŠˆÄÑÙ*¾2fØÀ@!Ëh¡(Žq‰ÀR„‚á'ΊâIÄŠ|Á¨±jxonÏp”pHÖPö(Êþ³ç ü œgs€:Ô”¾b § Ù(S¾(Þö°°Ô·„¨¸ ‰V{â!døá§SÃ…/D?”U2Üðâ»øP tÎ|:òâA‡Š2u¨ì½nwb]>9M±`¦Û¹žFS¡Êß‚ÃÇQhó{Æ8úM¥.Ä{‹¥h?HÆ!¾2„+ãŸt!ŒC+KÃm‘>ÓEmüF—ÏF·8ß+BFϰ2nÐÛ*Làx‰ï$Q.¶uAC +VÈ~ÙT€êKÄ6ÏuüÈöšE|if¢„54 £.kŸžpËl5;qßr-ÊW‘^ª­€þ²•·¨U¸@ú߀Eít/+»ÄwÙ[ Ã(ìëˆQŽôàr´¹F]s²q1ŠRçzr€·ôy3¨zeÁ>ý#hLÖî£aÉ\Hø-Ž °Ó¬\;•2‚hÖ@’txÜÚ[1œ3€šýõQºÄUFFÝ‚O›âŽãËÑsQ³¦x‚pVûÏŠ¬©Ôêø¡åFUtIOlj<–°a-Fu¨£D~sø°È!ŸƒŠÜ¶š¹|nªŠü/mY=’–Ц>çvX£Eg!kè.d † F";= š%å³fcP"à_žAS°ŒJë¤lè·ÅhhühIJèÅÆuü=¬_Üñ:Õ[1äåÌ*ÇK°rÇ45ȇ¶wÜåoä¯y[-„’Rrª”&ë³üéáó»‹à +Ã_‚Áb»QæŸ"~YAü q,ŒanŽLÎÚ„|'ÝþÅã¶4E:´.¾ø ·éa¯R3<®‡q9Р4¼Z½ĆëÉy5ÂÝYÃ+16áÕ¢ÈeÃåp¯yCñÜ‚ð©Ø»y1Æ€Úð"£Ãï-Wï?½Å…ˆÖ9¦¿8¬È9þ{8†Ê^.]sÍ=æá¾ÒÓHÞKð†i+WŪڥˆP¸H ¢@[/¯ºÕ +Ö¦Áü•åt 7¦2Üž†^†à²²%eø=[¢1/w´Ã)¯ dŽ9W,=-!´ ïHÔZæƒJKJ¸Øãý›Œ^ŸÈp1 Àm;&láK› §åï[ÁàPeI_I½r…®„áWÊî±ú¯¬< ô`—;2Ȇ},Î%K@ +³wy½”z HÓªèºô „¹z%p’Ÿ5gí§ ®Iº8‰H§Tø›~öumXßù¯C¾“Û<™i¦À~¶^yRR×ÁUD0˜ö`ðQŒ… æ$/Ÿzë¸/NÐ[‘¢Wý)Ó8¸rĆ”³7'î1L$ý§DøPTc·àÑîÑ/ƒ²4 VYtÌ|B…T*ÁªSVæqO¤=TÔe&ø:¿·°OK¨€t \ ŠÎ3å ?¬Ï¡™"mTz¬`®heb3L)õEEã4”Rœð/ç¦]¿2¢S iعɧJôn"ãËž‰†nwN þ¹±¤ÉˆìhÄùŽéÀ¼L Y=ëc­©µúãùñõX½±ÌhåØA|¿FöykˆØ-F2ñ4’ô&Ì £S(‰*°oW6â3”ÿ5¼y>ˆÒc ·¤à½-D«!…Ös|æwBuÎòÜß¶qm.­§oªÏõƒñ9Ær(Ï‘‡¶å‘ß0ih€Äüq4EîµD]‰ÐßÁËÎLw¶Qþ²'¿œ8í‰>æ\@Ä”“ž€ÿõF!pN,HIÚh¤t5G­=Ò†ì/·9³Lý§7£$·%*›¤}ñ6{e22Ì+`ùðNe¯vº)U”cD¢>©gEe{ÕÚßÿ¥!ÒÆO’­åe°š ¢½Cmo|²õ!'¿óW…¶\Î÷0„Mã8'£ÏŠæF7B:+Ë*m¸ý8+†•{ZÖ+O¬ã[kÿò·cáXéŽpcQW,hÄë±öc*7Lžä¬1I@½V6¬(ý#CIoíö·ü-”ÎÝ5v™œ£_V¡-G¾Nçÿ;¥Ÿu޽¨•[µå°Š…EËqöŸÃÚ_%Ê®s#½£ç¾)‡Ý9ª¡éõ²kSŽãsÈñë·u•Ê‹U0Õd}8á§%«)ÇÆç¸ZVïÕˆ´ÆœM˜nd°! âèHüyl¡Í[-5’#¿€|ä7³Ä()žùž'†=ìm`3 +AÐÈBûµ7-—`Oáφöv%³[Cm6|ÈäC2J7G¦~#+€Ô.$ÎS*5¼(áLÊ¥—Ur][Bì2 r¹¯œÓŒËO0}nKü*g:¨+ü¯Š!ÞzáQ•aRޤCh‰“e$C‡äíKü³êÚŽ3Ýű}| +þݤÃx›¤cé1HpEláQì™}Êo*¾¦ÁE~6ÚÐn4µË’vöƒ@”ÛA,g»5¦1§¬‚¥ó%`ý¡â$ºo¨)QXœß÷u¸?ºÝãc"R^ÑÐ £©Žt`c‡µ ;VÇ3Ø¡`–ßyËœ¸–`GÀu¸'›¡Sfa×}à A5ÒÉ`&îìo§Üö:‘ "HÚ²PŸØ"&òÁX.ïG{DDdAaÒ̯Q¼«q“>äæ³EÊtŸ§ +ÑcØ}~ýÛ˜äÎß%Ö-–ªQ +À+ý›Ç@)š£|¶öÆÿuÑ2ŠZ3×êÑrˆài)Ô/½É5[]†drÿ‚Ô–:\.¢‹œ°‚¿u7üýãœ.¤Bô¯Cðá;÷ÿpÇ륟oÉ™’Ä„S ¾–&ÿøé ²”oCa){?jg'L{ç®ðҵ׆ֶ~ + Ïœ‰Ø±ÿÂc1‚#dcBn¤ÈGãdmËÈ>¥"w ~Ì}ª<<#`¡‚A +‚P 7êe½HÜänå!€¨šsº-öÍþä—,¢ ‡ñß÷ð_H¬2‘?s§üÈÙ"w̦gÚ[ú´ðÁ/2w:Žýâý¨žk·Èt8j癡%·Ï$‡òsÖ•ä›ÌÞ¬_цG`O°–”r²)£µwC(ºÇ44l©Yªï‚kE”¿¹12k¶ú„Õ©›)œƒ°-¶û]¬åM8é¹…ÃBU-{vÀPËÙF¸ÄªX£–zm¾"½u¸4 ä6Yýü8/RtR'VT"žÿаœàŽÙž-9ûÝoÐt&×$LžªYI*¡øâ¨B&Ç´hù†ªá·ýƒ +žÙIep7£¶2Ø`ù¹Fá£òüo‘Eg•îM*ÒÃÿRä¶>X"»ÌâÕ0xÀ‡o@Þ ^1sUé/±ê•K¡+¿—Q­å“úü)ʃ& ÓÜI*lW$Lñ¨¢¢9Ê"-ä ÃüögýHí‹H4Ãÿ—*y &;¡ C›£ÞŒ-Ýþ tyì7¹3Ü œ8™ b!ÏÌ£—E…bUuÒó·9´3(Ùhu–Y@Ý™Žn©Mœ‰oàõ›òú¼ýW=âþù/<¶¤ÊÝ×[Y•j—S¤·¤±ÎÓgKý5£VÎç=rnf=þiŠ”wµÀ‹ ä&‹/êû¡B `ÆøNÀÃØû°Ë S)Á +#Øë\7'2‘3Å3YLÄp8YfAf¦E ~ÜO•‹Ö‚R×€¯žz5¹È¯j¥  x{'~y»ÚńۼáAÐJö¤[ à£)øëËÝá 1‚Œ¼ÊR´o²Ã•ˆàR {¶xzãUñ,  ÐqœY)Œ×¸>ÖîlG6}¦§;s3tÑ»¯[\W°ÎZ–—å)jŽßÊJ 6„¬O)zk2 +¬q/”‡‹¥8-åP)‡)Žôd ÊÖ?ù1ù‚‰g‹¹)8æp`[‰Š‡Ö”´ü2t76ÕPnªClr–á^«,? mÕh|ÏèÏ%;erd2ÇØgßÔ“—£aâõc@¡ŽvïwßkgéW^b›£e†h”\°ì½yžÓ +Ûëõ§D¸kvVOöÇ]ê‡Z¼E‚kBd˜¥7ÒgÁü À$W`äÅeøÎK[vÑ™õòã¸ß14À:¿+£"²JÔÔñ\Ÿƒl c²DiÕ#é`I¸=K=ˆ\F}¯9¥v¸Kë S¡^Ôä/yŹç7½§l/{ÔÂ*Èsòç ¦šÌµ.AØ*“!þ¡Š¡±I×VW¯åø€Ûãþ©¢m»Xã½êosµàí)Ö>”»„ûiþÌó`[XóŽŽUu…t¼ +ÎÆj-¨¦‰M–q·I¬˜‰xÿÎ$èkBûKò$+üpéŠ>mGÿÿ &Qû·žEH( ÝÿÄ9‚M!ÖN‡÷ÏÈÔ°†–éfxXjPµ“SöƉc!'ãK¹Ö„Ä?“›¸ÞÄp«»ÿ—)#t äùVægÎxTH¢,3½¿ÜzžQÅ’~ß.?À%«þš©{lôhÞP× ƒ˜ŽÀ±úeù½V…gó”Ó,Iåq—æh_öÔcàÉË{ÇSÐÜ£Z;+‹½þ±ôû$ÓüD’?5jL¸ÓÆšÛt“ž~Œõ£Gú± +9Ô¤M•Ä­š˜îVÇnŠ„# Ùct |~DQÿ\TeñNEÆ¢æwðçDhõ‹;4@¬Ë“NFñŽ@´KÊVI”ÒÒEØ%g‚u=¢w ±–óVG +Ï2\c@Ì£fúÆx2ûQìã4Þc}FmDbqr›£ cH'¤®…xNrqA) ‹G5 ͦ¿—4ò›ç—m¡­¤fç#ž¦íBŒe8$|qö—*åÚ`±•<й‡£™/~ œboBq8ºœºÿOz› î@{+– ‰K•µÔ’öàdc£é÷#9“±ï¿¤¬uÖ€|éù͹Ïõ¯öÿºû^IÞ¶K„°Y2εb÷'ž“ì&©¸—O·¤?£It˜émð ÁZú.«é[Ú‘MÔ8Q8'ÃûL"p +—ÛCNU* ¨c¾ÀI9a`á¢yæ,D/Kù—Uû–%¶êÓWÀeÿÄHZ»!xJÊW²7a2~ ÍôMÕ^ …]‡ßSuÞy3AvpãG-à 5P)‹p×#B(¾ÄYrµòž†e@1ºSÒå:áÜ0$ùÇ<@´Y«žpCŒ ötÙÛ´÷ßò䃔 .p¶8=ÖDÿàÅô†ðüÃÌW K¾Mž%ÎñUAàù?ç&õ¿…v3Tª~þ0ikÍ1âšÞ`¹û«]KæZ úˆgeHÊÂ5b ½Xÿ¯›ôó7ÇÓM^Œñ2±§cI}$@ýR‚0JB:"/’¡Ãä| :àQ™Œ~Ž{¢ÇÔìt¸jဴë`1êsëv‡£¡?ëÑ~­q-áÞߥ¾çI/W¬ŸfyÕÏ.Qb_ü7­júí¦Hdˆ/4'6ì*jSHx8.'¤»§l?Û†æ¼8"a^æÈËHa²fwÿö[Å`ÿw‚ìv $^4`8TËú–èðJ]¶e¢;›¢0ÁCý¾9!@’ÇWÁpËrαKö<`Ý+bÈÌËDò š£D ^\oýJLøÞie„êõƒw±†b‰ÏWÉÇ‚ll@d¦0ü?eHoŠ­ùÄ*\*0Ô»GIÙoh¶_h† ú 4T;×°Ý~{¼è;qùŠ}Úe4d¿>îq¶Û¯ÿ>vÉîök@®p‘®Ý/ dy‘ÙöÖ¬³í|Š@ž¿Ç= ‡$ª¹©ù´ ¹‰¡£¥Œ°¡ +Qm¼é•ÉÙBæ °·ÿ«æ&Ý4+ï`)ÛFÍLökà1Õ›¼ýzÞ¥/‹¿67••~›ê= Ô ‘›ÞܤÿîdéÊì¨dÇöûeÎë%ÇZÕŠÙŽÑ)ûí~ûå#ÖÉYÙ¶zJ/;M–ÛoRBùc÷W®1û I:°l¿^q_ëý2¯W·_µî™Óv¾D Û@ÛïˆÌB7(÷âå5ûµîŠÇ¢Dˆe °ý~ük„˜6唨~™½m ãê¤1ØsûTÚBeˆ9û =!¢U ™ä^^'ßâ!~ûCä¢DÌw¸ýêH1Õ^Æ%û­MzµýZ,,/&XoÂÛ¯)(€ºyJ¾Pi–ýb¸ýb­8Ý8§Û2³g¿)Rœ·ê½Š&Åß~•ŽuN™po¿ë{ŠNæt“ uûÝFJžtÛ¯,ýyö›^¨¤»«ï—WÀáRv•,X"©=Ó:ñÉî}é?eJD­›Žó‡“˜üoìÜ%ûÕ•Í~Ú~](Ã…¼éfÿþ·ß9mÝqœØoX7tS6vBX§éçºiøÉV}v‘kUñIp:[íZ·´9-0y°ýÆu³ –øÌ~¯w‹yŽí÷• ±ó¢¯›NØ® ),ÀÉ Ì~¡ê¦DÙ~1½OÐLˆUr$CÛïæ“UÈ“)—ý®è¶_¯’žPàÍpšo¦yö;³•ȼñÙ~MrÐ*f‚ç­¢juûÑDV†dÞðç?äöëÍòÔþPöû—õš¹ýºrAëÉ6 ¥JÅö;!â¶b¤¥²_‰±wûíz¹dö;}¶ßˆ¿Ž‚0¤Ó›ß·ß'4ÀïÊØÙ/ûb·Þ°ý*ð¡ Qaêlj¬ 1!Ø.Ž[l¿×tΞˌœª™›.´Ù¿ýŽ Ô)Çϒܬ6û<ÞaÝ~®MOéö;hûÕ)º<øç`WÛc=™åÜ’´aÒÉ*ÑLjì˨ßò™>ÚÉù¯ÖK•ø1_E”¸F-…p0p€dˆ”z8²ßöëDÀ|¹çاuPÊž¬056•®*¥ê•5ÂoŠ;ùÚ¼=Ó]k¶öåGS…×=A6[” ¸ŸüÓfǽԴzU¨‹²çiLY±FþÕ+Ö |NQõ6Î})Âù|éÁ­EGŽÀ”QÑàå«j*| ˜˜Z½^½‹"çÁÖ;ꈰ(k^<óïYõæ°ÇäЪW]ˆÈÔV[†cU®Áûs\ñ9[§ ÿ4k°¢Âv³áè4ªŒJ}>6÷ÖmU릙z†ÀŽ j ñ(fäã¡‘žWü÷ˆ6Ä&â©4õ%tÆrëª öUœÅkäþØÃ'õYbže;ƒ¤‚ùÁaÙoI1ÿŠ•DVE²ÙO¼×\@É‘8¨U‰:”3įÜÿCÏU‚b¶WLaà9úGyýNMÅÏ‘ª)»~k“Œñäuƒ§ô¾² ‘©ÉQÉ:üQ Zî³qcœ‘Í”|2oôq§ëÞÛñ^…3D>VØ(n󙡼ʋ,²¡ù-F2›«å Íʵ«OÚ«0T—Ú5d¢IèÕõŠu Búƒ—Ý";1oýâ!JšuYû/3†DËø©Ê`|ÕÌäUÂTÄ +¨a^¬•?3ç,:W#kR¢èÐahAGäÍ Ú…Ô« {ê"©«JJ)š¢ÛıÈôPØêÿRŒ8Ó–ìNÑr©eÈúǽúgîÃ}­Ì¢µLƪâ\µ»˜ˆ†63Jkâ`Pïó£~¦Å *@©H̵d¢Œ÷™—Ayè}¹øývÖCÆ,*B&;Þ?#SK‹wbhË!Ò£<½ŒpºÃI1k†­(o\Rî +;X=ƒZK~ “…i*ŽUïý™âÈ%µ­´dÊÝ}™ª™VŒr—VB±ÜŠ­÷ÿð!rì*w7ëi+F­Å¯!›ç.ôUѡȮX0 Z± Ød¬Ü HŽþðÙ"íåTîZ£øPØ¢ì™VÄÇòþ¾ +À«aŒÞÅÖWuS‰ÅÎ0ñ¬¦ú(­¦ü„¶"X`ºÉg'K·%„²1ÃÈ× +ˆè2 Õ&^ÌPHÆKrd:kŸUš+7ŰËB.íc å®ÿ}P(3´|áXŽõ'Šk]Y^*+Nêä^æ¯ÐtÇ&›ÐŸ°¦*[B&O0ÖMP»i„|«[›Ø)á·nšº×¬ ‹±bVâÕ€3ºšH7¯Ä3$±«O¶˜ &Û1‘˜Ù€%@(`±X’ÎÝ3®Â8=ðèÿLv3‡1:nÅšȵÒ(ÔÅd°U5‡í9ÔLt¿pØmî£è³Üz8žNQËMÌD#YmóØÉxsæO ›8âÿ²–xâ‚O&.Poôƒé¶ã­¡ÇF²ëI…H/£7Ø”f¶ŽÙÝÞ23%|°JìŒ'—ö˜T·ÆòŽÕA`ü,LÆ,ÎÊdâ1©­æoÕÝ%O ¤tNŸ~y™êîÞ FkÍ* $ê® Äç¤tØÝÔòV°€~”aª»Øé`×fwõ›IOÏì¢BÝ¥¾¼‘ܯ)äLØÝ±»a/ƒ/u÷³ —Pé ö¹ÌVoÄåâad›¦\Aª! ;#)´%üÛc§Ðƒ˜ÓA¥m(ÉžøÍŵpGM ³–·{ÛÕý¸ß€òµL¤°¥,_Tu Ï…¨~ÂÆãKÜvVBd€, ‡SNm´0ðgÝGSäL·k€·íövFUO‘Ó†¦ôŒ\žÛH§`¥Ž& Ì€Aˆ•iüÔL¯=7 +º1iTç^½ï!¦(Htª%’(ú¯yº=¯Yƨ[( ·ø-áQ6–}(êþ“æAÈž 4²‰ lv¹}ÔU af¿4§Aa !›£.–ˆ’ ¥?wÆàH4£·ŸnIui¨¬*póOw X{Fщ…q+[_YÕìÖÝW¸2aü%VÛŸj®m®–wØmQ7­l¸®Z‚ñtmƒªFE]³^ª#JmÜ›ZÔêu4îÄÇlsqþO–F]²ò~¼¤Šº9$Þw‹ ް¢.÷b yºx^ÔõÅ­é§[ñ¼ uqÍ¥§Kõ¨ëåîàžwƒýb/ÔuƒôOú”6çéV¨{ôÿÌO·ÜÅá½þ=¡™D75{’à6–#¬¸ýŒ\sºÆ7{Ú¡I#Q—2v-DÜă+£®ˆ UôX»Tìêþ‹ªUþBX‰¨K€‰ +zœ}ô‚\<꞊ÿ¤!rž®¤º°£Cí_Oª¨ üpÿ–óZj+”9`fÂ&NÌfÙ˜xŠZµìÏÚ¥lqÒï™0-ë»Ô@½¹±Üò#Ç€¹qÌ‘\k"Çñ 﨨|ëŒköõýìxåÙÛÒR]­Ð¿ç5«kɽ™\é”M®7ƒÞ9ˆô²ÀtÇúèªûfÇë×ÔPƒ*­Xà´˜fú}ÛNØ?.H›`ûÙÞÒŒ0™~…ö°pÜÞko¤àäñJÍC•Æ">Ÿ¹Õ˼gç Óùÿ 0cuŒv}Zb4k,ß±w˜P½K/<ÌþøÜY¦öOZ#õI¹L³°°£@{\wên—zß MÛ‹^rÑ]É`PÂêNaR΋F”]:®”gPÞeñ·%ôbRÝ6¾)£a¯²·|G"‡¯dO"Åp+òß·xëòÙɡۛWBpù"0ÖNäp2ËQ5_lšÂ‰(ÕÑ k ›aA‰°%J¨/‚]W]ù—„™º€‡êË*4G‹nBÓ:Š]᥺¹?’P}…÷5ltÎZ¹¸´•ô„ ‡Ðép?uì^¸`‡ëµ¶°;Bo$[¬Ö·Ã‘‡K3Íþ +¥Ëƒ0!E ðÿ¤¡»;4ä´®I±CÍ[’–””éÓ“dE̽!8„ +VOe:VŸÈަ>¼»ÿT_šë–Œ´êÄ\ß{‘®þdÂEßy Ï’¬N]›­µF=Ö¬w³ +—\iû[ÅÉZòYï§«w«‘~þE*ë_jXÊdI2Ó¢µè¾Û¨´jH¦S†9iˆ·¡úÖxh[WO2Ã"³z©áu„Fþà•2yn¢–Ze´zåÊ3²ü}ªÛvŒU©ƒ¿ñ9†eóÙ%žŠˆ”nk¡Ó\’‘µ†²–û‹ê6M?Y÷íÊ>ͳ4}®½bÙ*åå\ýšF?]m4kYÝļ;ý\šV:*¡ÎµÓ;J"¢¼QûQÖƒZK扥L–Òºê=ûçÖ’YeDJL›}ZÍÆ¶NŸdýo6¹ß̤ÛÜ=ünzyž¢/ŠwÒÙ!Ë*"ùGW&yFSúmýe«nç¸ê”³„¨µH¸ë+‘u™Þ”ý™¹æ/¶e²½¥=š´âmÑÙOmÖW&KQ–•*iwn‡d™ŽëËZåQý¥÷îŽÙ!‹–þên°^Î<<#sê¨Ò©šáÑ•%zÑyÿËååÍÖYl«ô)½lþ+“ÅÐLvZVOšÞáÜ¿¨³ ˆ%5uò_jñ·e=û¨Ý§*»¹µWº¦ìËÖ×¾âÍÚÓ®0¿Ô™^¢Ò®‡– +É…veBTf5ºCôîì‹ú”kã»JZ¼qè^6LCOé¦aÝýÃKÓéT¾ìVõ±ûrê«S׺/‡Gú›êËwÓjé=‰žiwÈ’[i<22Â/¹Teç²\óÿSíŸÂ/…´O×Ó6x…¥C´ÊÌéÉûÍÐuçð‹e_xwÂr­~¹Zãâ貨UV.b©ÍÞÓ†æü¢´F¬!üæíT~9RšÐ8–W"K™_5˜_ŽÐn{öü‚¾ºLòæ©~6¯L[¿wZ¨ÃC}^êoGûk¯I–¨û)ýbM=¤ór{¿~ ét5§Ç"šNâ!ËÙñÇA½aéÝs1-¼íNªy7éÖã,² VúðZ³úE‘Œ†öK‘™j‘áÙ8YŽú3ãÒiÞ1YԗΚÚ/«yåÏó¥Ò¶_þÊ;2þj,Á¬¹½ò±Ø©æò%Õ(ÿÁ½¢‚¥²ªþ›Le%[}©ž3uy!2Ç…2Ḹ—Y²Ë×–òqËg©DV»_èjñVdË‘so*¿Ùаn/²¹­{q’Êä sb¢û?DœÀ°"EÇ + +ÀÀŠB 4ÀáB‰p¡\(ÔÀ + t`È @ÁムÊŠ! „ ˆ€#à F5'À Å„Ñ@ Ép‚¸PL”XÎÁdØÐ B€8ÜCcƒ>t … +: 2 26020I´€&Xè€(ðiPб6˜ÀAÃÆdDA°Ã:82|8Pâ‚ Üb@AG°[ +,HH2˜ûX¡AjÁ2d  "X"ƒŠqp6â7·1á 60ˆƒÛÀ (Døpp˜Á}P€@Ô3 ‘eÁ„#ƒÛÀÀ0”ý‚ÛÀ@q/¸ +„¸@ã‚ÛÀЈHpá‚I*p¡¬Ã?€ Dd€„!PÀÀ…2BH€@† êâÒb +e@ +Ž ¯@‚‰%¸ nà @&ÀÒ€‰·1$¸ ŒO À—@ñ ´€<°€*ÐP!·QAÐà(\(Jl`p°Ç…%60Øp +ЇGŠ (Dœ¨à%c±Meã @2hÐ  \hœxà6ƒÜ‹@dx€ˆyÀ… +,XqöÁ + šˆpÇ + š°€5˜>¬˜\pÁxX¡A&2 ‘(|ð8?Jà·øP!.¢„…ø@”ðPBƒ ”0Ê;BhŠj`7êC ²!4ÈC +B@¢Ã:0(€Ã…ê`‘€ˆ.tð°$ƒÈ :¼D@ CãÂ…É"Á@ƒ>&‚*600®A*ˆ@ƒ2 ˆ@C5D$4J\¨! âX O AƒBø@E¡€ +DÐ4 áÃp`àBɈh¨€C°¡ÁG~Èp’ +6ƒ‡ ,Pàh̆™HŠ*”Pá1aƒ„ €Ø@*68Ça€„â°Á‡nàƒ.°Âƒ,ðp "|ƒI/ Yq¡H:0 ¡ÁA„3,A‚60.E‰6…r` F1!œÀ`ãÃo0PÁÀ¢BmXhÀQ$|™HF†h„Œ$@tA‚Åè@t€,F¨¨ 4@@ÄŽŠTù@ +å 0PÁÆ6À`G°6ÐŇ. € 4xP +„fà(¤"‚ Œ²À¡‚ , è‚‹ @@hÀ}„_ÀÀ¡ÂP¨ êB!²€€WØ@Z[œPÁA•¤@p$ aʼn>@a h€AlTx Rl˜`ñ@$„Ðp + T `q(X\( è,<  Á‹ 0ƒ ˆð 6|d% !€ÄâÚ[à@” .Àá ,.Ö‚PPà¬Ã$¿P.Tx„ÏPÀÀðãBa€T`à¨!ÂF*jqÑÍÄʨP¡T|À€ +!‚TXè€F<á546­( † Ð8<Œ˜PÙE„ F\(JDDŠ$;ˆ`#‡”`AÆ…(dd(Ád\(Dp€èÀL0,JØã”ØÀ°À@/`Ñ€Ž ‹$Á‘aAÁ 2,(€`€Xpp ðð@ð ÃÄhÐA + @:Pp  À†H ÆÁH2.dÈ ¡ ø-p<„”„²&¶, JÄ :  Bਠ+®A¤n¢PÂÅS£C’a+&\±aA‚„ ɇt¡¸ ÅÀ$4€ɱB˜P|XaÃtÅŠ‹ X`( ¢|¡LP†eGf÷j-zÿ+Ñ“hUF®Kë™ú觪QÞÌoKk±Ùý¡‹R«îöãÑVs›D¹£WºšÂ›q­fOkW÷¾+o™¯¼´Zh#RÄžzªzu8¶­:xZ‹KO׌n~‹:zV«IhI>3­Þ*Ç6¤tÊ´{Ñ„Sú"›'’¯Í³7}ªtyŸ³¯œiZKÞî5UÎ+Õ™Ö¢‡7åÕ*qR×î:G©‰c×Zp]u[›©´Jó½|‘D¡Ÿ¿™¢Þ–¦å*ÑØwËN>ΕÖò#ÝÊÊ”®Sõ2jÕ¨™’ªÎZkY::é®\——›ž´Ö’zVªyÊÔœ³^kѳåÓ¹µ¼úu+êØZè'ž¼„¦¼;Ë*SZ»r’Ör˜fÄ)3i-&2E2C–»Eº1Rcíïy¬!3DuLZK™5WñÖhj'–Ok]êÍR&/­W~\å=/¦6­Ô¬›n!ÍZëÏFGVye6«Y‹VÖ¾†J_K{KC›µ”ÓV6hãå*ÕÖMͰ~s6VÑqqêä\B˳!ËkënäÙÌZSÕn­±Ì²3åó;´‹„Ë}VÕ±²ÝúS™µ O{·eÞg­I¦«C7$ωÏÉÌZÌyòÝ7äL{‰di˜«DeMkÑÎ)ééÕ¬cÍ×!‹­wÔ¬ñd†ã4dÑDò§6éd»ºD9«†œmÖâµ<Í3-ˆ±î‰£›µä:iLYlšç<×ïy:j-›E•©K·ß*­E·þÒ4,ļ–ò±è•–¶FuÖ´®„PCƒH®n Yí*H]ö¤l¿»•ɲÜË‹]ÚöòÇ¿¬D–*/¦ŸUk½Ü¾”IÖ’š½…9[ee²e¤| ݽ`âo×üAfªp‚ã"¯zŽ Ž Ž åƒã‚ãÂjMñµŠúCÉ’¤ÊÇBfÈf)!D>–ãï®HîUõe=¸T×cJ^F·OËR"Ie©z•›…ú«Ôuéüñ¥D$¥&zåÖU±2Ÿ´ŸÕ*E¢Y·÷üêÒ©]êØbÍî«%rR YÊ^²W]ŽÝjÑL«93dÑüùž¨8µeiCFyeô\:ït3µ ‹¢©=õ:&yÚ,Y)]Ýì­” ¡"1‹è—ëñ—)ª"U]¥Ò5¡¾h=xUФ^Jd©2d!{-Z•jÏ%“Õå­w•Üí³g¥|˜• 1²©­¥p™™”ˆˆx„z†h¦††¦§×ʤ+d!Ýë9²Ðí&_x6…§[ë–V‘Ö×*«ò®÷™^¬|sšk†,DY6¦Í´¡§ú!‹G^®~«¼ÑLïîéT®Ò"’âúãnž¬‚,´h_Bhl©˜ŠiFdc&!Â'd1\+*µÌ¬JÈRš™™¹V”þVH¥\(¼µªÝuý7•M¦Ž(@6ÔÔ4¡L +Óƒ&&Ë·”¢‰Ëƒ,¦ß2ÎmL,ڲХN¨*%u™–‘°L­| K­`ñ®jí%D¸xßéÕ–6oPÔVæ:ÂIMKçÔ!dy© +E’ê¥2ͧÑX²,žsé‹÷¼²,¢•åu´£\EŠ$Oré“kiðY0Ó +òÄ—6¹ÏÛZq?ºW_åÿÙ=!"ÝÚe ‘™0•ÌdG×iN‘¡‘:/­¿9Y’Q"V‘áÒ¡Ï;Fæ#3$Ê¥A2µÃA2ûɆv"ók'ÉnW·ÈðÇQ2³kGɬöž%³ËÃ%3±>çêyš¶³CЉåÇ#L,£ îèÙ& ‘A–SÌgíèKÖ$\ëYÙëyãº3Ú\•ƒ{ÄRµMçX.¥¸X5·—dG,Ô¹Ý/7ïÆVO5i.•‰5ýT›çå7/ÛÔ‘)s±šîžbª‰S‰,{UXôÛ­¡ÅݲÁ´©ë¬fUÕê;˜ªeÛõ¨¢]ê³O¦2YH³±ï»E;™Ky ¯f,ª’ÚuiNNkWSšM%’GIVÓCjokÁ,ÔôÙ‘æº6Ú.GSjG¼¦¹ÆªL–fšL£“>ítiHYl׫û*]lÑ–4›ÿ×è¬r®JD/S—F­–ezısyÒ¶ðH­?æ!‹ÉWÂAU&ÞBœT§þ(­*GµTM”ªVZé§i¼7ÚÚnÙ|Վαµ-Õ9G4¸‡G\#Ý'÷„§¶[ËÑ552$ò^Ý„craYÙóHž“Í‹µTfã™öÈ=H^Lõ1s’lÛ´ë^?KÎM*£±ª–Söeî³ðÎÆì$»mÄ3Ú¦¥gD,fém¯|¨KN*ßFç³0/³|¦ºëÞÇ·š¥ÍÝH›_Í+-{ÝÇ̱YQq3ý›Wïò ùl£:¯]–š÷|¥kù´Ð|æ¹ó-]6ÍÙ³ë<…6“æjýÆÐ{¶ƒh<ê¢EÓ÷DY¥ã´ÑZZQm¦U´#Ý6«Ûã´û®Öeíz3 uóÕ ÇVª<škïJ÷ð¾JtFX†eyy5dæ æë”žJefµ³IX;JT¨N\DÝõË7’RR)æN’êíê&‰L­ÎHýSi’ôËËô +×w'ñ<¸úª¢DãœO3ÓŸÓM÷dΩº[#²Ë±¬{VåyÇTE•ÿÞð¬tTj®2"]Ûó­^£Õþ^¹¾·‰>³îú”4•NJxº¾û¿„ë5œ"LÒSW¥%¢uפg=ºîqȾdk^éÕhÑP­«&ZÍõ·Õ<»›¿W}«†\Y£›¿ÑŠu»!ʲÂ3V)1‡n÷I¸×2ô˜ž>"ŸŽô‹VùUä=#Z4úaјŠY¾iîóˆžóI¿¤“®™Þ9ó‘~q½–ôH¯D­çÚìeè2’~)«sú´y,5õf)ÏJIþÙ¢õʇËÊRMM6š²ðÊÇ%4IöÍ_\ýhѾ²Ô,EC%¢wÕwŒ÷ÅLï6¿KŒÐGh‡w$šã]‘Þ•­Yù㻣•Ý—$WŽ­c¿Ì,µù]¦’Ò·Ô&o?×ÝíÒrïcQr™ÍvO<_­ªOïÑˈ$ò± SqÈÊÔŽ†N©hÌòÒž›%Ê©¢Ú•ÔRoNrªuK¼Iº*’šòƪ?ú‹>ù!)Ê+ERµ[c^´ôœw³h¨$¤8¥ˆ¿úH m£š6¶‚,š„ÎÝ¢ûf)¯| 9ŸsÆÌÍôw=©KI…¨YSö]Iô{æÙÎ;jËÚM<:ªºÜT§$¢HT¯îiìjQšÙ;e— ^‰TáP¢ó¾7ÎÓDÒ=[üZ‰˜ì5EºøeïTßMÝ­±ó‹žÞ‹ü:çégS•ßü Vž,©›êÚ•3C,ûêtH6Kz£#ô/o¬º²»Ò¿º¼k÷!M•OgVfc‹uW;.ç©™Y©.¥§«sïÐiÊtÝÙ;<35•§n_Põ–h2w/±P™”}Ч¶Ÿ’hP‰ìW7ˆ'óX×¶I?wª®Ž*íìð,o_n¯ºÏéó²o¦ïG§?Â)²w LÒ®º½Œî&„—Eš“t¨vséÅ*[4ÞT­tnÇýzªlL§¹²Ÿ–ÝÐW³UeuË>±2ûr˜ãï\ÝfW&·.ÂñìhûŽ’)’_aíJÄ–®É×#™GK™h•ÍI?f»29¥Ù»Ùï¡ÓÇßM%”H…6Ç_ù°!®"ÇÇq\ ýLgfexDg­bfQÙ¿ž®w³Õü?Gœ q‚D'PD4– ʉsÝIòrͯU3KíB ËŠ h¤+p\(xà¸à¸à¸à¸à¸P>$e’f5¨Zhš«M«õíïYÔœ›ºÌ‡G¶±Ú(J=e4‰OÏÎZ­ƒèïql»3Ú,õ,æ™æêÊÐÿaå/1_‰(þèBÛ¹‘Ö!]™äîÏ×Ýœ½ý:§ÐW$uHsèT:תéN¢ïô•É¥¿|Ɉ§û­ïú窣Â)‰ýÌè°Î¦Dœ6õ\ºûéõ´¾21úw¾þ²w5RÌ:Õ—Sͬ¥=”èÑy:§Ýv?XY®k=bч\¯ÓXÊ)P¬ @cA%c)€‡ˆ x|t¤È€Bĉ +<ÉÛ¾29_ñ¬þa»jêZ½³~;&y.ÚÙbëŠPÕútx£kµ¥ºïÏ”Ÿ‘æ%­DX×Uü¤Ijn}•z+ÂEWz¶¬vºº5·"ª$Û*Ê#Õ)=ÍRŸ4ö™"!%B·—GY6xg‹I¯O_8jv+Ý]˜D‰,éÛHíò–ULÛO/1™žî’뺿³åu»‹¶‹:wã-zdÚE[¯fá™"ùÀ³zUÕÕ)«ª´p“&Ueû¬R“P0 Qçv³,ÛÜïòÄ=Äåεe¥%T;³ßप”‰ígzWyÞ—1=gfgK¥áj}n·˜zxŸ»¯îLõîg›5xƒ,V»³%“^µ‡KC[µ¶”–â¯n¥ëО9u»šÚæu¦D´ðžÞ«ùl9ZëÑ‘oµtŸi-˜ˆz¸“u¦|,7;,I *êþ:º–Zë¼%»Sa–¢U±–KZ¬Á-³ÑçsžÑ”E§öSqn— zœ6åã|sYe®È©ùH¦¶¸ægeu¯ô^ÓÁ"S$6"ë7SÑvñb·°¬œZOµù ² :uË.ç¶Kd£´m.OË2Õ^‘阎†ùµßÜ¡ÂUý¤nÞ§|·§ˆ–ª;¹ßúìêkÈ ²\•ÈF¦t D”‰~Ñ\Rkþ7&eòCZ$2e¢&»33¼m¿Ôùef2É­-o”!Tø]›´÷ÌEÃ,ͽôOk‰®l“)”·SZê®ÞÌ4¯•k:ÕYùŽiÓþ†v¯H +qŠÈJ5•*•È” E–ÍÊÍšÔ?u1‘>^ûë«Íù>óìÖ”™K[¤DÌ$_um¯Ë!/¨j•ƒ§k6•®Ñ^‰ uwMKš÷f•&Ϻ§¨dŠdY»^´Ey³é#³ÄÓZ³ÑGœ q"E‡‡‰Åã &$Š(&@n ++:&‹ÇˆX +)R`x +'€BÄ""&ªÄÄÃÉR!JL<<ˆ˜cE + |4`ˆðXÑá‘"¡Á +L`PAƒ, `EË)0L8†€ÃÃÄ ++8"/G“ÿ\œU½òaE—¸4ºéˆšæUm?çüZˆ–˜ŠõÊ3*ûUaY~´|´kל2,­¢<«Q^çeôZ³RúÐJJÏ-Ë´VW_è3µí•åÏ~M?—R]÷ÈEÆÿv)Ñ}¦¼4ª§a©‘•«ÉŠvéUÕâúÔú:Ã#*QzïÔôŒôdf™/TK,õ˜‹»D;x;%yÎú»ð¼eKE–ª„þݦ²¥Òá•m|Jc¥F–ÆA¥•—Ö¦Kh8éò\óºOĵQ-­®¢S³]¿OÒi¢ÏõßñìÉzÞWÝÍ­ªÓpWuì·ë4ÉŠ:Fú›il‘ÊG&/fmî:ÔC$›ÔM,+¡ZÓŽ²ö¦\9ä¼Ó-ŸV¯ÖW¤:ISoXúe7°Ô.Sïdå]—S[›vvš¬J;ß(³K¿$nÞÕ\)Oï”·òŒr ‘ÈŒQõl×°®¬º>CÏ•~9Ì£:åXe•þÔF^Sª±R3ïî•°ìkë_éìšIiõìÖî†È©{tª©:[V]j¦¹Ï—âéžtª«_šé®ÈTo³‰ôª$<ËL›Õ7J£Vz~±tkÍ6io¢Ý÷¶ÙÒú“wzd'^ÑNÚ/Ÿ”KmžSãNÞJúZ¤Këäízò÷åWŸj´þÎj Me6§§v7_ãÑÝbêêëw%n]¥9Ó{²þë,<}¥¾Œ4M†„ßÅAÒD×Ó¶P}¥”³~±¢¢VîŸsë—§=´µ{T£¹) S1—0¨pIu™D£ „JÕ„ã0 @òp8Ó“(뀼j$."‡‚±ˆL(Ñ“d "b1 d¦hˆ HêÿNÁ" ¼”˜{!:'•ÓÃ’?iÔÔëŠk/7Ý…JÂÓyúçˆÁUK_$Y  |21i—í^ɳ*Ü&ˆ°öDÆD¾dˆ‡Aô¨TÄE—Ã9s4Ay{÷$'·$*-û”br#ÇÁ£å¿;bæ·oPG¨ü‘Ί'hFYx1!`Eêc­2è2ç$·å —yKâ#¸„…ÒCE¢Ú%3Q,ŸƒHsqÅ"‘ øØ=rþ;,w>fMáÚkÜ!$³T Ò‚P"³Zá¾Æ­¤”Ð×u•Í•„̪^\ 6ƒ§ Q$‘°i\èät0ðón¾šÁÙEB³T—;™ê¿õ£sŒ–<õ.¸ ¶KÞÏxöCσ¨`Z^®1¤:VÅ㲯VL€ŒzÜEší1|4Hn«p ‡²Dâœz©¾—ã +œ –e©Ãç°î@Pc÷¶‹Q…D@;[ÈE+Z£üÀxa—¨OŸIcc(KÃõ"I÷‰ÈVìÏBlžd2 £8@ëi¸4ºøƒÒÅÅ &k£ñÁÖóîª`¬㼇0¬˜’W÷²nØe¯<©È +$gþ°„Ʀäâ›dÙE» M¢ñî-ÿÅ]Ž\Ž=ÛŒ2B»’æò°"kÐ/„–"5>?íO~Œ ¦‹;Î`ŠŸ¼½lAp'¼ ><ÝÇø\2ÇmòZf,äþË{V’”*’N˜'s§b™þ±£¾]‘1ëÍNWÃXƒÓ}H] +‹¿É–±nž¨Ìuµíî2䀒SS Ø~§1éÃ>V2 &¶®¬‰áwùP¾p±Ç˜–Œ‚ú}Ã2/ÍO›y3˜†À-≷š‚àk< ²ÚíRÁ˜ `»0Wt¼Ÿ¦ ÐpLi³Ì곉ãÓi²kƒŒFtÄî=ÿôZåÓ§Ö„ÁÙu9áÆ¦ ê"fª‡z½·2a 0`W`À7¡vL33¥ºcµ-„DÎL56æzÛæ—_a‰°âÁ°t¿%6è½™kôÖç›J>Ú£ûúJ¾'Ý»œ)hÂË4&tžÈ¨Ød†ô³™²›Œ­M Óµ+V§óSgu¢+ŠiþtµȰÅMÀóx”}±øhÕF¥9©È…X +/¥“fÉþg,mh`Ì#ê˜Gç>DA6?½ÕDúhÞ˜ÕÝh˜dz œ†ä5翦L¨×.ýžÆ)“ýþ÷()‰ð 6>‘–©pO=á?FŠ1D¦BŸnù@)#Û$ž:F‹‡JRçfBLE_:éRO–¹ª—n1—ø.GŽÞaxßQœ\4]’ñ~áºÊŸ—Xe}P¶`Ë`Ôùq¹3#6—¥M7É(S^[™Œ*vó¥R Éûµ9_¡&•«ûö¿ò¸ajˆc^ØcLž‰óÙACY€Ê =Å:|æ£)¦kßu o‚F1kÝ.deŒRA[wOø‹dåyéôáÌî6ö\Öñ4û²&Úžmêü">¿ñˆ›Y3% ¨Ôo¸jªT7ɽ_:Â@"V™ñkÞ^mÅ–ŒX•2¤¥ècñ™Ç*¸‚‹tÅù¶…ÄØ' M‹ª làÀú³Íœ¢5:¢ig“šŒ¶ܤ´q@O‹‡„™ð°¥É0%ù½ÊÏIKΙsëê“_´®´"a«&¤AaÒQý×b0ø¥Ž7 À?¡C‘k¼x© +TnìMùØ9沃à¬È&¤à9ËRás®ïÅS~̯ƒýYÐqˆmÝ“œ"Î4Œ£ƒ¯,J.b=Þ€G4àZ Ø…çq9h Ù>Ÿç_²­ +ö,M,‹³™ª*¿ó±?ôŒbŸÇë¨íÝ “ÌLH£W‚÷b-§na”!€ò ‘kGÆŒÛ_º:SXÙúܪZÛ«”Ü÷ F×s”’ûnoþ.[º`HïÐ5e’dB>?³9°xiU\ŒrÉÜ…¥ðhy59»Ï–sD§¸9³Gà­å|Ùá¡;´å[7%õ(ÎóÿØq²|çëý<*Ýʬ™ÝPJR”F]ó?Øë"TèÎ=Z"»Í^'A 3a°“]_¦/îºg­tNWæLC—÷VB#·’JÏÀ ˨Û¼ºd ×Àù?e(­©¢Qﶈk©P‹›RC=g1(ÐKFd/⻬4]–´oߎÿ@.B˜Ž>?tµ"µÙÉ¡YÍý¬&]Í´ôsטQô÷Ú=(ë:ÎCúQ§]>HHyg¶L4qw³I´þ¦·Â”|H’™¾\¹øÐC|ĺ„r‹7W”´ ´àVóhi]¤å³Ãj#gÍ‚ô‹/¾õ¾|%^qb?³§XgÒ7#…“³â6·klo:Òz°fi/ÏikK—¾Ôå"ñ>¨!¿ŠñªMàÖAƒÁE% ©¬„¯E¶|“6oà/þ¤—ècòÄÝ'tyá±Sëz]ýΧWô€tÁN2ÓLˆßù@Ò·Ñ~ € +W*›$娔—¤œý°îX)±’EÌ´Ò»„ŠÁ Ä‚s€îÍžU&çŸ5¯)Ã7—jã¯%ùÅFÎ "|À¹¶r»9Š‹ž–ž-+üÌywÙÊd{(õØEÑ' õsìd>.º÷E^Ljj ~% ¨J?¿¨õ¶ìåÌhÊÈb×Úr™4Šš@Ê9ÏÅNgŠÁa"Pš¨d6>¸§Ãõ¤èêÄW—áWÊG…–T6"A³ë­vu{Òm£Øh>Þío°MNÁJ!"¶·àùj䥺1mÆÓ#“:ä™ñìæ˜ö ‡YÓ[¾‡L>ÊÚ³ÎD«M®œÎYZþëUÁƒ£ {5}yßÿ} ÍQÙÔ{50èÓ\ØYájŠ6®ü¬íáF•K‡ÔÓŸJ¹ZÍp(±ò’Êg&àCæò_é8oežßc2á8(›0$GÝpò#ù¶Ž+ =W f1k¼©&UÀ’ÖÓëÕC…è•Õ¡·ê}u¡ç +Ô[¯·x½Y°žáŒKÏb¬Dð™ +‰ÔëCxFtÓþÆ ‚±é¬1,4¾‚6G<ˆ¾‚­"*BHÜYAoãû5¯>ž»ë‡W—=ülŒäãVÈò²-ÓëO#_ø‘?DÐG1 qµÞ*%gŒ$0«+æg £³ÉI*P°R*QI$©”ƾȣ¼@ÝS¡Î¥âÚ.÷µ­N?"•SÓÀŒÑÝ%Ê (<óº­NIC•ç6Ò5#çùÑRÞ¯{²÷hÞÙÞ,&MbÞ¦ízÄH©ÏÉä':Eyù |Å º4åý¢Sv8º)g¿'ùÊc¦kUäÌê²|tÑñ\+—IhL[6F—¥¸<6g›`Ô ³Ê+±ÇTtà²pEæÓ>ŽÚeœ[¨Œy›ô12ü½Ðu©ù¹é‘SÔ7»ºaÈrÎHxÔœ¨u³Ä%ÌÙÿ²ôilÖÅ ÔèXGCó!Áa/¿·$W ö'<Ç£|·}iÑ·•ÔTâ9‘ ’ÇA"§ WÂÎÌNl©çúÎÓú:"îËkD[]%¸u}ƒ6ûÁ +Z"ï#6³[Pó¢LTC᢯/«|øt3¡ú“Íí‡<¼vœx›ÈõÂe@ \ÏJûtJcª°‡Ívëw µ”æ”Väªá@¦DÅ›^ŠÄô‰±q†I@‹É˜¥ÐO"œðüfÖœáGÄÖEŽ¦Ë +4@ _Æ+j0YúÎxÔ4pÎéM×N $*ë ñ½m_µP£÷©43Ëp…¿Õ¥PoWÃdc¡[; 7›ˆ¿7²x[Yƒf3%À O… µ)fmµ)G¬\¿ú‰ßm"k t“¶páHlRN§+_˜6¤,Àˤ:žŸ½BK"Þ›à·[°nšÇ®§ýL:(\ äÿêš¡W]N‰ßز}gS &Ó¸"º&],NGƒnqwž§£÷±²{tµiÛ^ã)Ž–¯Y¨u jm·”j¼%›&rK¶ ­·(KÜ,êhøK¶—.ù TÊM5Âkî%ÞÇ™í{Ò|9œ]æœ_ŽEªÙW«f±S¦qZ[Þmö ÌF¥+ ߆º¿ÛùwVšV\- Á-Ü ñ‡ñ*~%×ÇMv™ª­— ívöâšÞ¯OɆ²cfÕ8ÑA±èW %ýPjŒ5ƒY!CýëW$³f=@ðêÛkâŽkÎþI0 Éó$ù°cÙ˜N=äáE¿~•j—»}«€$Í +û¼Œp§SÙ¼3И3T…Ì.|Ã@/ùNÑ’= ya AYƒu¶A@þœÇ^-Vg¬”D®yú¶µÇmì)^þ£ýBBˆ‡¨)NÇSÍ [÷ø‡îä¡új僀ªs¨øÛÛôVP4ˆD ¶.êñ#~±¹! F’+MR¡9K=#EQiŒ3Ì*³|31öŠ¢ð‹èH…ô”8IÀ‰h[ÑžõF"˜%–vk¥Ü`“ÛLè/bŒæZ⥺~ú=!…èj‹u|B.¾Í„0ï¦&0x‚ð•Pô›]ßå†fŽHÁa«²Kq ¹ä_Vlû²'Š*'Ó‚drÄ5uI!¸Z_êH1¦R›'ÝñÕ0йüËUˆŒ„â>¥«¦èLS^¸)÷²ŒûvÚéÐ ¢Y9Ö¿åÊ~qÅméªEÄTKxw–NÊýa[fN´ &bˆ~T„ýzÄÂAq» W™ R¡âð­U¨ó iüÀÈk«£Ä…oÈܳô¬fº!uOÎMÂí%¢Tv‘@Áì +¿Nc«jËåè:çÁ­:ò5LoÏõɧ٠(“Œƒˆ4¿x—²'ßÚ:Õct¸U… È´28ù2"DN‡ÄRä¸lÆOHÉy[Å +®5du·föÌÏ‹x +Û¼ø0)]ÌǸz‹ÿ㎸Zp=qmÆç™¬uÓÈyÉäQß@hà ٣kúý€÷¬ó¢VÆ8ÿP³X7¥ÿSEÖÁP”Úsho/#ªé3¸qRžxLÁ!3†-qÔ=É]•²”"uvÂÑ„ðBÕ_^ ȩڋúÅÒ’M÷§È³ùmoqÃYÊô….†* 0×IH±/¼\•£;Obh£iç7jðd>÷±QXo– "êýÙ†BXée¿¤L/Güµr¼†|#ÔùŠŠi×h¦µg¦í[ein]'`m›§à¡Ó Ç¢ÄzÓ Á;] eöŒð-a‡Û,ϤBíŸ"¹H÷r™öOOž·µZp{¾(AkRî®HŒ£ªi +$-ݬ•ŸØ\“_BwFüÙÏ<+4ž#ý¯Ñ83·¹Š1üÒ­ÏÙàQOJ<‡ê¯ÛUÇ:jLÄ]´DI–Y­ÌC0뺃šVªÜ?G¸g¹’é]‹-VË V¸ÕH½p#<êO»Ø:û$ÆHò²0*Tüôô@rí~íØ\pìÂì“b󘓰åunc…™.ù°s¯Y:å2Ûëa7F©$Å$Š‚]˜ +¯ƒ±¤âØÜ(éÄY§\”ɹ‹òØbf†r7h’Ìt\â­– ‚':ÌôµFyS°/ {çæ‘ùȬw/y¶ÂªU´XŽzÊ~8Ãi÷|ZÐʰ_ Xcê›é\ xßè<ðû'Äl]äFÙµ½bÐ9SÄ—ðàL™ fP¢S(Õ/ãa¼.bn?Õ3âwŠò•€ß,ÁïóÊ–‘« n„{†„ÎÊeŽ1-‰‚»0v|«Yc>š72Ýaq”Ü ËÈÝ.{˜ãê€Ýî;“g3ç²0…„T¼#*3`¹Ú+¶Â9]Q^J&¶kCвSÍØò±®%Tñ¯õý¯kˆªI ‘ÃÜÜ4"VUºGˆo|kÑÑàUð`öÙ8: l  «³>)‡ây•o˜­‹4Pª9 À0ZÁåß 50œkª¹—À)/ÑôÉ™|±¥1Àoç‰@¢¬Á§~Å„ØÝ-#!7Ç^‘ûíÙ›=D›Í×Jíˆs÷®FåÅìº.+d×à_ˆ¸«SuWä!‚Œ‰ ßa‰Àu!à'3£¿è~XÛ§p†'¼ EŽfðì´ù FúòÑoÅùIî^?|§Ê€÷y mòûб+„üGÿùÞåkaì)F#e¡„2_\ƒ!_¿ž‚¬–jÜ'ªí&•ší„¬ç€HXš’úJ«Û)ŒLƒÒÖž%Š]T™µ8a æ²íà7žTÕH K²ç™Öª ¨ (ÑBL"«©‰âÍ=Ô¹9q|"Ö m>Uêíß eÃiÎ%™(æDdeê¦<“:¯¼4-š¿b´KnDþ6ˆË%å•èÇ]ûTÁ‘ÃÜ?®‹H zÍÀÌ4âtvâY™ô±ë«–õû#…×Gĵx>2Û¯š†¼+,ËlE°ò¸'s¹ ÎßV§‘ÉÎ|=: %þ´ÿ†kÍ/^‚Úß½$R‹™´… €U7âšm í÷±TÜå¦Õ’AŒ·çZ*8Ú†Ùð‚dí¾KÚûn,gã¼¼`)ûöÝ‚eì¾ÃÞƒ/<Õ†ì¿gÙzaî&’¬­éõj2‘©šéÄÔ3Šu¼+z:oHÓ…‰e階â~pè('™ÚJ‹Ö+«ÇÉ(0§ýÑ*…‰¶ìp– yFMê~:mIA[ ß9Λo&11+4VÈ„L»”ÒWùƒ6¶¬8¤±7¨,|šh|3xˆÑp[[D\ A4Ú¥6ääNë=•¥€vÛ˜+¸ìq†¬\ú ÆÊo“oñ3ë¯×àñ´þRªJŠxÊxö¨Q†o> I¤¡Clˆ‡~Û­€Œ‰iÚFˆ2ïA¦jÝ$Ù&sH~鞟5k¢d#ŽƒŽÅ"Ùþ|*Rƒ„ç€ÈÉ:µø +³ñǬùìgUBg™\À)†¾‚ƒŠ­Þ:U™ê £¬¨(jd&ë.mdä2ÅNéK}…2qþyà5/bWdXIRulûÆ^2Z$‹ (qI_Ö¥©Ppu…µ +0R)ìј„Ð( +“ri`©YÔÙi÷?çDÓX=>Ö’JxInq$% +?vÀý!mÚË‘‹FAì(Ñ!ZYÚx©‡í^E²‰Ø©îÆvøð$gxPO®“Vê(  y¦O¼œ5ø‰¼ìW²^ §6cæ–¥U”˜¡Ýr×Zãø¬n‘Læ÷ÄŽ€«¬×³ jˆ°å.Y>ŒHF7d(oû3ó¾6.·ƒQ+h™ +!¦ƒ¸Œ„Ìêl`üšÈfD½®°°X™:…`"»˜w¦¤C¿}Jl‘7„æL!SÒGA9DıD;Öá4œ+^¢I‹ß„Z©FSlçg/Ex…P‹ÞÌbi!Ÿ @W‹…4áÏVOU:/ DçìS"ô¼1´2=.è@BZIè8ÿ¼/s] %¾q ŠMÔvQ(Š¡ßãb¾mKJÙ †ª•ŒÒëó¡ßC”h±€g5v)²Á +=á/yqq0³Ü%±kÛ~Í„r€„œÞB&ÒE[Hºrã2YW¼'€bö&TÓ kŽÓ½@Cñ}Ðažê˜ +b¯rNp…Ôx™8Ñ£ºcTÅÇE깤 +•X×ÅKš=ðêØœ+á¥]gÌÈ:BDΠñ¼Kˆ}±ÄL ‹PH8ó¤rÕ…ƒ©ü¾"áaÑ,§¤ÐFTj*3%¯…é cªr§£wìP§¢ÖKÈV/“܇)–¡­˜JÈŽ™US•Š6T¼›ÖPsê—\8_™Øœ~S5Ê[é˜Ó±/\Ñ¢º$lÕ3yð}ó>stream +Ö‡\ôP€ïXº5œ?!¤Ø¼µ`£ &²¦¸Û—eÊ:î¼6Q}Dó4Bs! +Íô› ­µ?Ç칊Câ¼çå^Ò¸¤h…4èÑ®Ýø¾S?ö•=7ŽÅ²,ê~[˜öÛ*V„§6ê½ š®Gj¨Éwa/ä…B„>s[s­¥“‹>GÖ  cd|áovÝÿšj¢uù<ѧ‘2µ Å +Cl³Ó“U™/­jåÞÔ¢Wÿ¥Ül^!²Oj˜NíCø«·<¦¤Ã}Ïá´ŠWºÇ7/‘qÔën•LóLŽw”9®ý;ôeÁïÝém~"Ðõ–ùã—sfêcѨy%ÝÑ…{Nˆ²Š‚[[ãçFz +½3ÿxþEÜÙ$´¨z3ÉOˆßš¦ì)uþHNy¢u>Õv%TÕ0¥îá³{-mÀ0¬\ýªrH5^<Ÿ#B;i iôz—lQJ+ëЇ¸ÿ´í›wËE¬ÀÛöÜ`è¢Qªƒ3 ôt+8§Ç;gì"QW¹Â2p:Ý …/Î\r¿:µh–sªZÎ:…Ûø4õ6ž¶$§ÂÏt^ÐØ©Á5ˆ²ræT7!Í‹2ƒì?¤ð‹<êËU™!t 0¹JA`!¾ï¡ÀÚ"–¤cŸ<›§ âÆl£‘ÿ¼ê쳎5Í2„dšSmô¢ÏøÔBÛ¾Õ üzÉ7æÈx[rùiw”Ò9308´MÀµÒá@3ѹF(\“%ñ]í5ƒš–RÔÝzÞOãKÞZöY“¤Éòèd–½òJj72«âHHîD¥î5Ý‚Ë,¨ÇÛ+´5¨U<òІŽÐ…„gÑûº¤”·Ñ~rü!€àä%±–]—ÕÒJëÑè‹ìDAZd™ù¿>µôÉ)hŠã2Êyhª&ºK²þ“Û¨õÙþ¬›ÛVÐUkX!ÒmH”!õUMö-ĉZóào½~´ Jú8âôHG)²aMrkÇËvIGÄ¥Ãæq¥³ÿ† @@ }ÌE°&Ã̪ýþg‚óÙÉ +„çÔ| %Ý®Š´ýzäšÉ¶R徟…Õ¤¯m”èWß[86Ä\—wJþ/¹&!gÇUñ âpxÅKqÁüðenž“tžÃf2’ÖÙÑtÂ(½gžWŹɮÐrðuØR Â?½3£NM·OvJºíì•ck‘ÒVý«¹£öкjó~ É<É ….¨mºL™ n Íß} 0?`CO`ø^öÅ™GJ#óÇéj‰’ÂsO;¾WRft·H××€s2Ð ˆÕU¡cá¸$p"ÈæÙ2Kœb¤KÂm5>å!Sþ¬Š†˜Ffn«Kn<Õå†.¥F1 ü"¶{€QSßihPÔ–Î#ÀHƒtØ¡ãÄðnÐý/˜¢ê&àz߇nÃ+¾fÇ QÂ~¤cÏâi}òpt#ù`w¶»ò,.T5Ï]O>0ænNâ[A@¸}kÃö§µ$4ëÆÙ;pÊÒ®5í¤+ ü£¦S›Y¸ès¿3'»L»wKlßj•›\A!+ÃÛ7BÆåqa+®Ú¡jˆ‘3í.‰/MÞø†ý7^ ôgô…¡ €Fq1døL"T³ÅÌJó¢b‹ @qg8}Ⱥ;É܆Pq阃¸3È¥‹Ø`k¾Ñ`ÚRîÒþxòŽj.‘Àû N}ŸÏga»Q³Ô%[`…ÝZ&îM ‹¡á5ÿ5Äú 8»3ò!¦»,ÎõfaT6`ÀÛ‘8¦„ÝIn\c$"·Ed¥-Á…”ÌbÌÊY´¹sãY0·dÍ^òHЬ—§¢ãpÖò‹–Ý¥||as àøJ€Øñ‡þ³zép–5åBf>„û– nÌΙ©1ðnöfñÑò,­£0lJh¿ à»yÍÁ™U <ÆŸFÎ= “ø9TØh$€WX †ÜÈ—–—P½>º´Q¦RDZɄw¨šÆ¯+Ôveó!¿_2àjjûüÃåÑøñ9DýgP + Ù@ÉV’{¯°‘ BB M?à½t`QK“=°°ÏÕÖM‘óYD`ÜÉ™„¥ qM;q“{Kñüãø™škc6ÎXAC3àé Ïߌàû‘ˆÓ#.ÿ6‘þë––8rY‚õ˜ª­ƒ–Ô—>2 uSÆÁ€Iž¤ŒšªÌ" E÷Tìõ„†d, -ñÇ:×óáÕp\"¸}ûôt/vþk½¸±{f” WåUxuã÷ý!äÈ^Zb½*ã_WƒCrœ_Ý)îffï>'üî*î}âqÓqþ°Ý7‡_5—¿m-f1 Ê 6[2!_Hày;˜­S/ u¥à>¿Ëð4æ4 ÌëÕ ¶sç¢jRˆ˜¿À´­®ŠË…¡]nÚ‡XOX{Œ½‡Å)B hÖ¼7í«Ss¿™kiÃ7“žáÌâ">•I¼·'ªDy4':UDX2Äp™å:–_Zчa×ÇÙ$`±e‡¼"”wÝÇ`k ‰sëw¹‘yÁ_ÀFw²7æ”wWz#’§û,ù‹+÷£G‚È™uµörÐ’W´ÕúÓæ¯™‚º„½ÿøƒû°ù!«ŒÞßCšº¢±˜ ë-L—‘«Wº„û‘kv\£!°;Î[¿‚¦tó;’(ª…$+»•)–ýÇ@'ü¡ìÇù +) |ü½í–ïUe¥%œŠGà%ó.ÒÍ/óóñª,͵$19 +øA“@°öA¤ûYé­¬Hk›Y,„ÿþe÷*b°âÛŒ«¬Z_% 9gáX>€vPª¦ºDÌ[[£]¬£‘ºÐö¾0À„Í(–ª ×ÐVÝE85\aUá gY,ÂB ßx"È–ªØû`Ÿ?h­ÁP2J;zÌ ÀÅ!”ÌÏ„hh¹‹`CÅເ¨c®Ÿ ]$Ý}Jpí+Ü.lC)䵂š%*x´0+6 f¶+\ÎìßjõTï7ðÖåÉ¡'…bL+{[‰¹Ä Bÿ®ÐXɺ°õ¨¢.TAA¾Ò·ö˜#iuŽy6ÐäÜäuk9·—ÀËýø3Ä3!ȶ§·8=‹Ž óUºV—›*ø óäÛá(ªöוW„Öµ§!ÝæìÊ™N¶^›E~1`ô:–ߺ%¦Œ`0ÝÌ÷œf®óÛÇÊ©¬"I6kERN:›%ý~„¾‘íàKs×`ŠÌYGg#ÈD›_ùm™hÂÊÑÏÊ_eܱ^ìœóR?½³ã5˜p&¨M¢eífÉC=O‹ a•÷›•{m¨MK­†µ„Jž¹“U ¶ð8H‚%»Ú‡½ +ŸÂîÞ›>©Ãå$( “ =Ï 3IW©Oó:ñêAK,Eí`i+¸ÍJÏAë²È?­\ÒòN ËÞB¤ÐÚ áë_íäH/ˆëî@#8Ì¡–1çS²œP9—¯àΧ{¥Ð¬«Œ mª±tr¯Ç‰,ÖþZwÕ‹nJIeê×®v‚Žò.i•4 s+øIná™j’4~Ø ËÞ±ïúàg$ »S¦Ü³LþA\û5“¾ïõ„¦ûAÅ?nÇÒVcew&H„Ûqª^òÑUq³‰Zà Ú‡Kó©!S~ÓP)`¬ÌÕFÏŸ[ü^ŽÊ/M²Ô±(B†±BMœÿ C‹,QòÚjÈðdÜ6Ì(rbÚØÊ…1jn¨ä +Ä>»7äD~Âå§þã(FÕ$%KâT󳕜b/66%¿_[9¾³¡w‘øÕÅí!·q°ùå—ÔU®>8Y¨ËHöšn£¸Ý´ÄèšÕ0 gô”Þàâ+‚™SÐŒׯ9›Vµ|Ô*¹8û÷ˆ÷Ô…91Ö°MCL_ˆŸ¦²i?\Ætƒ‚¸Ý<¢;‰d—GôÝõ*±bôqT0“+×hß,Ö›}ˆÁ#<Ò7¿`)l`ÍU˜ ½W’`sZyøqí=¸Ñ¼FÞ;e¶æò€íÿ Õà)µà£úål KoI×…Ý¿¢­Þíès+ó —Ÿîkó*6~3a] Å|:TqµOd1VÎ>mJØÒ½L˜Bm76òä‹° }©Ì{Á÷Â-SBªÙܘólÌ»(tCGP ¥aÍsWXÌN¡ûZ+”VÂð®zŠe­ÜZ#ïzKT{¸gŒZàB`aŸÆwþO®ï¬§b1jç ˆv6Žª‘Ä(Ò aÒÈ¡¿àŽÍÈÆ8#"Ôl¸õm%B:ÜG¨¿Õ=#ùGmðNÝ~B¬¯kÐF»û<Öˆ›ò§|€Ðåù~Nœªê)XõŠÕƒýÊÁmiÔ)š×¨ B“ëCǪ}ÌK«~X Ì[‘<áƒÃµõr“ž\ZÒ£ÚëØV h¹ªÿ@/<´é 3v¹J®ÖQ‚‡@Ó¼Ð.ùìx”cÉÓôd Ñž¨L{aà'1Xt¢‚T~ÂÄ'~üºÀ*àr9±@ù;zªÖRU¯/ŒG„wWç>&×è§Fš"¢Ï<E¹‚ZÓƒ¨NÆCqþ¸<†‡¹åEÀ“éŽ@'ÿ¤0ÂÕÊ,ÄI\EýEù:i…ˆ3ݾC§”F¸ÚIDšÂŒÆjú”ßK C„å¶þ!UUnV#“ŠÔ£g͘^ëvá¬rÀ¬j²)~:e^ûŠcF¿Wí%«gwÏ«°?p\«Ã¼(|­i·gR¤©Ô½ÚSb—Øøä.¡:|÷²^=ÏÈ!Èß!¦õ×FÉc¿‘tH‰Œœ¬·äVñÖ|qD+¨bhð«› +åkŽ®Kç"·Ë‹fT ´<H2RÒWQ8å:æ{Èa7?µ¤—b5 â‚huõ© UßʘŒ»…s(#Ií„¢!®›LÚ÷l M%€`™éG#CædÍÑÆÌ ùЄ›´P]ÕÈ„:u#îÔ*ËD|0´ Ú±~†á^†¤EÄâŒfš>)¯½Ýa-Àͯg~%;„ülK¥Œ]´º’١⽌ò°ªÅÜÄhp+—‚þ†èe¾¢§ô°ÕÔÐÔãµÍV{TýóÛ¹²ÞUÀÆ ë)“ñS4^ïë©'Ó@~œo#hÌéæ +ºÕ4Îëcr WÜ×´ªt.Ü’€"ÊP#"Ê`pÕD`«3Q¢Áéú'@¥D&GÝ:"x½Å`S“•oüöJ>ýhŸ¸nõ_N®Kåä…ÉÅcá6L0­ZCà÷°`E–ñxóòyî÷ÆÉ›2¿™&õ«ìš|×ÍÁÛ>ÁËIÂ[!Pyä µ¾å@i¸‚×ví +n „i°“”íO -YS!‹’w…¸Ê¤UÝYÙòq²AÜÁgUO\ûŸÿûZG,fýI}êó°6¢±&Èi«’^ܵº¯¤órþisVüwÛÕt³ÛÝ|úPO§Qæ^Œ"žÄ}·m2Ùà'…#CÞ)ª¨"šL± +f±˜UòI„ò}âÓP~„:L6þp•$V¦ªt L ž0èL¢Vê¼p Îbé hÃ%x— +ùýª‘­¨à¿sv•ªØTN×Crlr_éUÔ‘SZdDÒËaÌØd*=ô Ë Â æ;ªFßW{§o;Àr7jÆq{ ¢sá¾RDå•I­ñ0»'ÓCWÏl‚·V®å’®ŒSC'TZP>ûéñP¶È:)Âb\ÂN8|ç÷ÞPC Fè›c¹û‘pˆ ”Ô ‡‰"ê³üª9T‡ÈLsÑW@xT‘H³ V×Äèzq¦ º­ê€#ðĵҘYµ¾0Î2r3:QÎ,K m¥uü ¨ê€j~ "õ#7xy+!tO”T†Ž¶Š ý"Pï(qΧ:ù|çDÊ3÷}i  + +Å›0é‰Ýïx‚¯WÙõTÇpé5tÊŒ±÷ Ä²­1Ý|±K¢—E2v«TÅ”ÔþÒ-ÏP–Œäþ.1\‹w˜­ö>Ò˜4FL (w€‚C„?ÆC’RAbÚ].Tµ¨L—ØKUöì8fàÂo˜[ ìœfè4C’Ÿ~‹ÜŽ×©ÓV”ÉÙÈ#âç¢-ìþðEöAÛrÛÒÏõŠ»¼uÝíB mÎ\M«…Zs´O§6v«Y-³ÖAzãêVŒ¢õCá·]¶Ð& ø:\ A £r¤Ò×ñmÔ|é]Ú Ý !‰ý®…Ô¨ŒéÓL‡›ìŽ€˜°es¸þ¢~ìoÆD‘W!ÏO±z6HÎæD›™}W!-WÈQ.¥¸qÛ*ÜÑÕ¹)äÂR~ÓWðé*V˲Áð·Ò+f§„ +9æs- ¦VØHÇÁjrµs{4àgèÝâ=•Y¯•Iõ,[ßy9w®‹_$?÷ãj=WrøºpìVúâß5Þ{EÚˆAu¶óf!Š0y .”ÊG†&N`m‡‰ëhj¿="AÛá4÷Mîðs¬}“K?ûp*Ù™=L ìÌã’3ת°¢n"eÙß°ŽKÄU¹”°T96\àw2(Έ‹ð…ôw®ÀU×má¹¢4\Dë§B³ö/­N^‹Èÿù«ÎQlƒV•i>@¥ zÆÙ.@fÛ:wl;Ý2Á=V mé·½Ú•!îrI~®œy~Z‰A;F1ç =„~ðx+{ÉŽ+1 !Ï(¯E™æ™ùÌ$¶“h“c™µT–©,ó‡´ *ë'}†€ò ˆÚN’&æ×®¾`UºW7¯Ê}’Ös‰Mr¼* fºb3¸7Uªt„]ÙΪ´–êGÒKì½ÅÞϸ¹ÄFÓ-vUeóŽÛ‹L||^lΔØ;þÅŽ `‰ M/6—zZ$ëîÔqzUÄ,vÕ˜Ó9-¿éGÈiŠÅÞç§!±}×»…=ã™ÄÖñ-64áe6Å-'êЗé.¾iA¼«Gò   +¬(â'2j4C´]oØG²ÞñØ*‘kxl\}É‘S½D² ŸñDŸÏO¼2zÂí5R3ÜÑÄÌ@Þ-fêZŽ_œ êýÙFXä–Áô§îü\”Æ,Ýuc”¯+·ïŠ3{Ú ÌŽø*´Ûï¯sÚQœÉâœë9L}XΩâ_—7˜öÇüË- +G™CfÂ…¨ÏDêy™T·h,+<Ä•è‰j±æ_û9³Ì¦\¸FËâÖø±83í|+ êÜœÏj éÊ1ƒÃ—îÌøÕX7[JŠ3_àØ" 3Û¹XjkX5-Sj‹31ç(k>ËìÒB9HÝŽ$;.Å™ƒóhê/£ÎL©8òæx8  8ól~‚É^ <öUñ°)”¬U;M>C_šÕ؆ºWÅ™àÛw´¸o9pÞ…Ç&”Þ›P§þ{Ž1@»ÁVÞí2­¼v£5J™Îp“£OFlQ ®±UVäSÚeu™TŽ|Ãòï\…âûq,l_÷÷ Ra'²D¿Æ~!Œé*ø²C…ùÚs¹l×Ù~8˜T}ß·}€>ŸÚraA +áî*ñï*:8É’H[ꇷ™_/´ƒ7 ™Ç“:¿•жêÀZ‹AÊI§Ø×l–:Ø jÛƒr‘ZhúIUyxMïîJbAWa;õj\´'ÐÄ0“q$uI£¶›p“qÞÊñçmVKÞdR+b¢à™ó%§jÀšÝoØ´k–r,vÔtz‡•½£ì/zagêˆz’§Œ*Ĩ{÷I«ËP6¼¬‡Ã;L;Kfœ5íÿæ|p¹ÆCE ¯õíråþœf‹#x”ˆé*“ϨÚvSìl\ÀH5ôÜŠXÇá­I#HЕXá\E*$ P ÐWaPåDÂz³€(”îݽòŸ1—ݸ÷²Ø{LjÑù-.h÷Þÿl æÙ{wϱ„ ¸ÀѪ4r¯DWLHƒ«-.¸ª!PåœÇdE˜;D×–¬jÖ”[½V8ºf§"dÚNfg¤6Í×_ Lz#µ)©íÔÍd©¿âŠ£Ò2~âÔšú‡×Í’ÚÞûѹ‘Ú΄êÑ;¢oãÑü©Q’œiù¡éH_„[&“zî`7µæÅÅÀ]·ÀE/ˆíŸ†'Öùd럭•¹¸Ù5óE«RåQç|‹£íê½[“Öì¸D*·{ß0}”÷¯VZË#¥Óg2Ã3.dÊ<Ÿ4B6?A ¾§ìF”ž–){g4‚yªJx@ «¶õòf/ Ч(fh  mŽÎ ý´„£þT’Ö…®ÉµÏÁ5Hc9Uh{Ñï[P×^$“7ÿçíý–‰}èÜ[±ÛŽ<^eŽØN ÿøÔ5g?j#Ü`SùC…’ß Ê}\5·àƒ7˜ðÂús)L÷r^7‚¶ÙPy¦ÙöŽïq +,ÿ­éÓrè—”-i¡÷^Á˜ªö®>Û*šZdOë϶9ù=ª»ŠšB…°•ífÆô“P;[S¦“8 <¶/³óâ‰æPž†Mkô¬è%féBƒ™^[QHìç‹cŽw^Û!zuÃ7¢}`o Bô¸A“Ãæ°÷6~^³2êmuþÊŽæGÁL(9´Lž-?c„haèNïELŽXűŒüÅÔfÏ¡¡.½û;çç_¤ñ ΑÚ}¨¾Q§‘%*?=i0CqwV0qU÷$õb”Þ¿íA÷'çðè‘‹Äè²Ï‰“›ñ ’zŽ_"¶ú'[‰¡qz4-,š,Ä4¦\ºA¦Cº~XŒ,ðhøþëÁK@ÿn'b¯qèY)ã9±é+œŠRi·@¤Ëà$_R‡Ov냦/ÙØ5î„:r»ä¡^‘Þ¦{…­ñ¼h[c£þãéË«k¶ÁêëŒuRþÚ†,h¦GöÌ9WÈ]'ˆ44Tˆvl`è+À{y2üî:æ%§°çz,/æÈ 0-²î ¤÷°êUb‘bŒÏ6N~«&«ƒ{Kgz~…öïØÑÕ2&a) •‹úeÓÐ*<ì÷¸ïVpk2ÂIª}=1òߢ|ã-ÄÞK>stream +H‰¤W[sÛ¸~ׯÀ£8"$äcÖqvÜÙÓXÛ>t;Z¢-6é5¥xýïû€¤$&Û™Œ/ÄÎ8···Wâí¯W‰øéý•X¼½ºKĺ)ÿˆ~Ý.ÞþŒ­Ç~‘ˆDI" þžëÅÃâ§íI—øŸ›€¾Z% ]=,ÒT >Y.U’Y‘i-Ó4)Äj¿XÞ}º½ýpóñçhõßEš$߀¬•™R¥C&¬ëÕâ…S€‰½&ÿí"‘eAºXúŸAëò‡ð*ˆÒ3UVI±Þ³AûEœÉ\ÚnãLka¤ÉR—R' +ÚKc¬ˆS#•Àõ"Nq^Úá<ˤN&Ò¤ –ÖhQÈB§„ ¸( +À¥6$)³ÒÌNçJÄ*•™˜ÉB˜‡%HU!-4g:“*-JËÄ16aΔõ‚!H[™“ ¯WŽ›šX•+þŽVœO¬2°:7Á#¸mpÙ„hç2|cÍÈ<ÂdÃÑÇà—ÄϱÞ òìô/u6b¨Òc$21ùgÀo¤R°O§2Í9k%5öðŠœm|VŠ*Á¸5…Qà›;‡Ó‚ø¥²(ýv7–Š)H¤‘9®˜ø¾Sœ) CÄ*qz¨š¨é7‚xI^Œvž}AáÞßè~›ƒ'Ý«õž^/&·°Ehþ?Ï·«ô?!C€ ñ•°Ke^ÿZÞDWŠe+ÛZ¬##–]!ZÅò@@)±ü3ŠS|¢{ø=Q6ú÷êo$‰ÕLšö!"„î9еXî«HÏCÓµ¢¯×G·Ý¢¸ ý×Á½|#Îø,«v#êþ©^7Õn÷Ê’üSAmx¼D¬6IdY_Îy1dÇQÍjÝ?uLû(ªd‡CµþB˜M/ªså€ÞŽÌjZñ²mÖÛKÌåSýÜ£{çê?=GxP©{Œ }Ÿ£\,«½èìùµÛ­ûþá\êÐlêÖ©@Š×пm‡«{¾D¾,q{Õ®o^ºqToßnwIõXÁ´ +îvõ#á4‡f屮v—4Õæ+!TN·ê±Ž‹KÉxse!Í, ^Œ¯ Ú½ÅU„Y¾ûõÓõg*D=­•/L¢+i™9®ªT²È“tR!(Ÿ#°(ú4çÔ°PÉt•%þp\d|fNVE8 •“• ‡Ã‚ѳ“•êð¢ð_>Iü‚Õû«”0¸ô$'àè6÷xÈ>ºðt(0Öxá ×.äçžZ{¼BÁ²sÛ÷ó‰dÙW÷=:»?8%ÇËJ+Ñ3ä§!aµâØ×á_ëÌ ß×ô¼‡$—ŸV][íf(º ÜzŒÿîám ï â٥̞2E%^\F¬¢‚üqé±mH™"$¶ãn~™‰6xe/¶•ϵÈ!–Ù]çØ>¥÷Ç=œ†Æá;a™z™²< ËÏן~{óŽƒsE ëæöãEp´'ÝÛç N•¢Zè,P‡Ïƒ}Q™ +?å +°«Üð*Ön¥ Ê'……릴ᢙ„Åzqz0R¥#40%RÍŠ$Ü ¡ÊNì¬ÐŽQ·BŽE‹KÍþQ;I;†€xDÕùM,q©B@–”Ò+¼–Ø·m ·|ÌôÔ&ÃÙn1lž`,å`t*â\Ê%Ó»Ç2‹…M¤ÕE>½i@Ow# ~‹©òkøJ³1h™[êtУ¥É]Ÿ‹>IÛá^p  — +dð =äD‘x5ÜȹÚ0ŽznUZ©JŸLÚ²Ú¹LÉÅd5¯ÒXr8R%÷“¹ÌsJµ²H¸ÙÕx–µ2ãþŒZføÌêÆ@:òZƒ +:”lI‰ Ž%‹=ˆ6­Ô™ï£±‰ÇBŸëZQ™$®Îa“¸QåTᎊ«Òa“}IÎ7×mNá´vž¶dv4ë¥<ŽÄ)ž'æ(¨ÀgšqÖ #“ŒÃ ’­´¥oyq¢J<Á%¸(t¤P`zQßi_C†™ï_©flß± ‰ÿÿ}'ÚÊ®)w£<7͘ågku‡=U  ¹ðkà ¶”‰ì{e!²D°AßöäÄu(#øEâþF_íû.`ˆzì;\¢B×LŸ¡ºzÌ—¨±ÿC{Š2X!;”†їñyÉ”½ÁJjîgÊM_5›PpþX·Ç¦Á{i[±m·˜9¸wtƒý­ó':HÒéÛÅ*ÏS$)ä £-²•›÷×oÞýrÑ2Ü~wן£Œ§Ü\]_T¯ÙIõzÿƒÕ éÕqUoT#ĆT†ˆ jÑH^¨T–+ ²>. –úSY&4 ú…ÿ X *;¢@.W”ÑË<÷ÁDQ=Á§¤l§ ‘·5FqœbM7NÁ5µ™Ü"ÒGèkGég¢˜DCûÔõШgÖr7ëE ªÖM¸$_!í¨Rý<³Ñÿ¡Ö—…*-µÎDPH#é‘FAæšê[=XžRËÉ¡%M9œG¢,Š:á DŸ¬TOF2—ôL`Ÿ4Í/&N.&ú{ÄɆc¤(9µ:!0° êˆ®yÞù3³ž&™.Âna&tÞZÏÓûbpª¥ëQËmx]þ>SÓËØ-üÓôwe§÷˜„&?º;Ø-ü‹ô—ãÞª¿¸SQ(‹Å(–膱tãšû0ƒB%¬É¨G+\…“¥,<ÜÙtíQÜkŸÇ™™rŽÉ©£`¸f¼'•MnÔ£N6++S­EƒdœÐ«æF!ISw(DIéînºtìå ­7ÞñõžYVL¯ïû¥sHo'¥ó@¶mª]ŒQcI÷ŸT57]fnWÕú •ß‘%©ÈvwbrÑXvIÉ3$I£DüzO ­âS–ÍLÝ}Ù6ë-8ãPúTži©|‘ä;3Žöuý¥ÃPŠ‘ªš)ìÕzK… + ÚÚU×0‰y_.©|ÓÐwÇPã¿[ö¾’rU³«îws£œSªá1qbFÝnj®êeŸûÙÞà>²ìEgX½êœ3†6`÷*æ¼Ñ€5UÚ¶q„@Û4ýóñéðêß´¤ÀEÇÃj¡Çà[ÝvýaVM?~¶5Ý» ÜL†Öp®ÎkzåÓÅXçÑõ}üeÌèöÒÂ÷7wW¿DŠÝse䌻ß>_}Ç!è‹>»h(¬èëÂJ£‘ó‚Τ‰žÌ&qiÌò@µ6Û©6œ +4XÒ±*ùƒ«&b¢bððAÎ@…@ jùM'©]†Œå]½ÇÌÕ”‹‡X‘ªf=­—Yxx;jœó 6Ú„¤˜i6I®KF$À:Äó ªWNÐOøx¿Ãz°‘=ßÜä–d’bKKä?7pz9ˆòræ×Îd…³XYïLfâ¡à.N&š‘ºËÔA«¿JÑÃcœŸn" +žÎ 4û±Gè®wÝ7"·?úüÄYµçôylÁ‰"ã%â4Q¤ÍÌÄÐô}½oÚQf÷0éÃhA§.·¬·m·ëiî"öofÒÓ±¾º9¤Z»‚äÆ5IìvõÿH¯–Ý6Ž x×WìQ<ˆ˜™ç1„À€“áKCÑŠÂHŽÿ>UÕ³I10’\´êålO?«»î›#²s¦äúi·Yÿ¹^Úü Šu)vQç^ÏÛ;`£ò¨Kl.h9Üš¤ïe½Û,,lG˜üþ7žý~3ÎöVÁ ö¶ˆâø2\æSª„§FÛvÛùðÑÆÁÃaÈœ)X>,6›Õö~EZø_LæDï¡Dˆ®ätçÊf·8†îÛ÷·3”ò§Y’?ßÍ2fÊGŽ®w?ÿtn©Û‡_Þ}zûÃ-óy ßí'œíöÂwq8ZFàxõG” 6•k¹íèˆRr^V°›$]¢ÓÂÎ͸P.ÜóRåv6íøžk"öRá56tÇ|·FÑ0ÌŒBðh§*cÖV +l¨’ Ø$5cíæöØ  ØË8Uбz ñç1a—œûÜ$„ÌrÔ^ ØÆÄŸ`_£ó©òú®’ã央¢Q5Ë´`,CVæäT“S4/WçÉ“AÕªŸÂÈIFý‹Ë+LŽ!d‚ëî¼4EÔe?‘X´ ˆÛÄa1èS†IUnÜhúO2Jp—;KQ6nÌp,3al r§Œx`ÈIy S<?[f ZÅË9êGy\¢V±jb"–Fvå‚1Ypˆ‘Wõ!æ¨I‰Ÿ“ÈX£ÝX€Æ›ë¼—Aliì§#BJ5B9àÒœ+<¯ÎA$5X­ÑÔ˜4 e9'}£huObE*ý¸ÇŠÿS+v¼I ¸„bö2½¶ ãH ™ˆŸËŦ¡Š—è «&Ú$%íKLseµñBõÁæ‡AáFQ{);UN´R®Y”}h“³ø­+¾W4‚ÉxAÊ*{çô[È£µÞd/¼F1äbÅÔ­éʹˆ£4È«ŸÉµh]Qs—ă©7RÕ}Ž¿±@ã™U= ÍÅ\Œ­)U±Z¤@©¢- ÁqV +¾V¶ ríŽ6n<(ŒhXAÿ+ ÖX+É÷<š„ÂÆÓR Ac¤ ÆiÁDJa/y+âÃê€G^·;;»e¬ ¾lnÜ{"l¥Cªi¥™3´zm‡€Ýø×¢Àt0š…o xþ‹xm—ÓèwnaHPMÝ›ffø¯Ëá"€f†q®(y¬ÃX ö‹IØÕm„1 YèÅ´­alvyÕeuÂ%g-Ì ‚G*d}Wuzh½ÆÔ·Ä„¡8YâO§­u˜Y4š¾ÈÉš¹©*[Ìv´1ì=þåý²S²WÉO×ÙíèKv;•"lG@AT^‘^kI,B=/p«ÂWƒBM”[WK¸`¤*•7s‹™dX’ªæñdä1ˆŠèÁ^¬ð”CR,X„EB*Ý‚:¯A†BüùSì ˽ú1Á”ZÔ0¤E!…j¯ÇöÊ™ŽÆ ýOgÁRûôÙÜöÈõ˜0{™»#Ú…DmCÀÊëY…“ÔuzÑl“·Ï<íuÓ?Ë+¾÷“¨oÂôÍ$M*»lÚw®6(¬Úô` ú í2>¡Æƒ7¼éâ‘™öUÀYbß"ÞÓÊþ;ãèýÉ'ç +Oï;±å`äy¸3X +‘jŒè@z}ö¨âpJ/Rx4ú&Éäš&³„PÓàKhU2®7/ìà«lúÀ1ŠŽjt†ô[ë°1žp¬3è¹6fµ~Yƒj¬†Õ\âÀx:}z³,“Oi?ɰW¯fÚÈÿzÚì@GÀ-™ÒïÏ÷3$|ènµ_ßÏ’(Þ€³i1îýå"OZjù¦1ùTß¿R²7‡w³2\¿ûûw<èè°Þ‹íE›vO«®³óX¿ÿÊ+÷ãx|¥,o>ßï>Ï´p‘KÞ4#˜¸r1ñDêéiŠöÊŸ.*êã~SW›Õ‹”|ƒ¢.ýYí'–Bí‡Ë÷»g#}K öjùò‡É¼aaçWÃvg¥ñþôõ"aúGb&ƒî†Ï‡#ˆþó{`¦dZˆA²)šëšÛ¿®þ`SsQþ endstream endobj 39 0 obj <>stream +H‰l–M®$5„÷} +_ =N§í´· ˆBˆxâgÁ ÁÜ_⋬z=h„FóªíòO8"2\~üX>üð±•o¾ýX?Z™íúÿÔŸ~}üRþz|øøs+oŸK«góg„þö¶KùüÆÛïyûûçÇßÅJ㟕>[µæ³¸íº×Šòöé¡WŸϨ³<[}•§M†esL/ÏÞëX‡î³¼=žýÔVž^›Ñí«Ft€Õ~h¯ËY$êÞ®á#jtV;utV£¹xXg¯žÃchÏQ§í϶;èYÕ#=jkšÁÄÉ ÷:†àì:Nb-ãÔÏîuÎQNõ9³5èõ<švªÙ`¸sº=r>xüÔÙNî6¦àÌH4c-ƒÖϺàž(j:¬Õ9z±!g=q4Ú. «N·â»úØ"ÆÕšuÔ±À;ËÄjã-ë7?¢¼¯K.ÎEÃu¬¨(D2¯Û#{†ç× Gs~"ëÃnîÞÐá=Ïi9‘Ã6¨{N¯ÞÀ´ë\ÉýD+8Gª ˜å ÙEÛ4&/£{ tÏÑtœ!Næ„¢…-æ.ãÔìpg9Dªè¹­ajñ`+dž«vx×ÛÉ& ‡ž•ÃgR †Zɱ×Zˆ+h0Т¬YWË“2ÎðÛ5$'ë4”౨æ‚W6‹5r8´Qæ@¢•ïýð¾×-¯Ì]ê·3ñ̘:êÑS¥°Ê`vò1†9Ø,’uI-ùûb1F$ÓªšYéÆ*a·Ý i˜Ó¤f1yH’‘ÅÕ1=ž ¸kÏY”´y¯§5GÖJK$œã´«V5ºT+ó¡ Ç0UdGŠ:†tU!mjóÛˆ,¸fÒ™ +ƒY’ÿì»ì†'iMiàêöȈžú„%α§äÛÊŒU*㟩j#"àŸ°dû$ÙÙÞ0!vÙCÔ#ó)½öuÀŒªÝ³È¯Pƒ„2‘½‹hx¥ÜYfÂúRÞì0)0åWhû¡c¦–gÃtž¨)]7p¤Ý%(ej€A#‰·½‹”…‡ÓÞÔ[¨RŒàœEÁÓ.–û)ˆ`æ)ÂÒX42ˤQú¡ŸÈUps^äUXP¶63Ê(ô%ñ}¯‚3²¾˜§âFlÈS-Rt+ß89I½ýnº^°dìv'Ö¶¥%Náé_o‰ë@.®t˜JW)°P¦å.&`ŠÜÄ ‹‚±¤ !wö¬Í1ï̆GúxO¥£r€¢Q™²Íêø¥«¸·2‚<ºJ?c( ” …ÐÐÆ„Á‚C2…›N0fÒ%ñ¹ÈT;¨ªR/Y˸|ñ¡ôšé‚“•N³)u0õΤ£ÀåZVhº%˜’g¢ÔÁµS{¬r²“ªž0ôî7Y­ï+Ec»e:8LUYzÆ1òn¿n²Ø½èzË*8× w”]wAó´£ÊOÍ ™a¯›ã«‹äíñÛ㧯> Z.Ãtpòå³@w=µÙò®ò\öì¯ÖýPB^¿6—®"ñžg#Bk{ýÂàz¯Žœ¸ß'ޭ׺wûÚõžÙîû‘E;ªq\€º2­¿ztAèKèÉû¼š_ðÞ(±Pí}ºnX™²½~eå˜>\xÞ'ޭ׺wûÞöžúê à¯%°ƒÃôUbº/›‚à%tƒÒ}5}¸ºÞÛùÌO­÷|Æ"åχõMíÅÿõܳþÓs¯KÉR/žš‘ðæIö‰ø»øýéñ¯j ! endstream endobj 38 0 obj <>stream +H‰\TIŽÜ0 ¼óü€Ô"µXº¦ä49äF–ƒ;À¤ÿ¤$K3’Ñh-´TUdѾ}»óíåîøÓç;Ó9Žîü›:üûI?ø/ÝîßïOv¶d a«£ºÌüÜñô+žþ~Ò ;ü„5a õ`H¼?¨Fëè•ò sflʧ`³/œ¼õ1p*˜"—b£FÞ©/útP v‹Ê!µKQb›oä;‘åʃL^0J=F‡R€iÅm&Å¢âJyÞS]”*;ÉÙæ,«Ó Tøú®Fb´©€¿Ë SJc>è]‚@™ŠòP¨ˆ+Ðg;Å‚àT’JìS¶ERÍ6¹Âù‡‚|a]ãu¼½óéesž©Ù,—ÍV‘Ó@6ÛBŒT‚›|ÀfJ©Ÿ#'˜€C|äÁ%ˆ'-GTÒæ^qñãæeÝΠïÖë½=®ô;é¬N'ÝFWŽÇJ«g¥ÕT¿zþѵÊçƒâjbY=¾°î$SÔV[™D´&‘J‹N÷Z”ŠF×PßE‘Ä…SDœí½ìú¹úê,FüÊ`ZÝ'µ{ÓbsÝ~´À8?GNH1¡£NF#ÑJÑæ9þ¨Wè®›ö¥9^Öý¼XFQ:þ¨Z™‹:Yý‹^éË ¾Ž¯ô_€‹Ã endstream endobj 37 0 obj <>stream +H‰d’KNÃ@ @÷>…/Çžÿl ˆU…* º H%÷—°fÒREcùÅÏŒ/އ‰ñáqB¸cäí &~Þá ¿aœ^ç™jQ²IÇq™Õú¬ÖÏ.(Èú úª2yr1œÏ`Ï0¸Ä˜¹’ñk£ZIjURÿì)”¤ú ÉŒ.QÞâVrU ê•5ûj¤pÓgMé:Y)Šï¾Î÷4«º‡)ÅH^¢…Y5_H²l½XŸÂ•RA®Jä{t;Ö; 7¾·wJÿI—YþÖÔÖÚ[骂’DJzK:”‡ˆmx]Mضփ$ª±;JÚs˜¾¯ÉÈ·5‰¾±ÎHi OðGx:è{:¯uÉv endstream endobj 36 0 obj <>stream +H‰DQËn„0 ¼û+ü;¯%×Òª§Uµê¡õq€J[þ_ê8E(“ñx4Æ0¾Í<^gá§ç™éNÂIúqŸôÁ¿4ÎïÂucʈC/óVÑ}E÷{£;+ e_‡ \W2a%MìprÉà“!ª‚9±± Ô §#uÇYßiT¤8ö +VòN TjTc³Ø¥…㪤­LÖ6ìþÔ`×3ö˜V)wÛjÄc«O´irHjÁ¥e¤óeŒNšï-„¸b$L¨{;ï´ì[£úÞ…¢ô€Ü3ó1å‹nôrů»Ñ¿ndWo endstream endobj 35 0 obj <>stream +H‰\ÐA +à Ðýœâ_À:cLc¶µ¡«PJh»h +ÁûCµ‚Ú ™¯È談ž=ãtö íïŒ%€£‹Å©v@X>¤/qú ´AÀñŒctÇxe¥ÔXI†Æ›†U%ý?…K ¥ä„ÛÛÖHþy¯µ«‘†cNìmL‰dÚ¢<çÂßÿ_ô MsÜÙW€÷à=ì endstream endobj 32 0 obj <>stream +H‰ì—MŽ-· …çwµ«'QÿSw‚ŒŒÀðÀ hØžØ^Þþ|‡ªFÀ¸Ý}‹,Š¢ÈÃCõ—_¾ÿˆÇwÿø8^__ñ¨qý¾õç??¿~:þx}ùø1ŸßŽäŸãÛ'ª¡úõÛë+ŠÈ‡eVëñùûKŠß_ï_zHqY\–©¸«¢÷›j³¼V?ïMôù|ýòúსtýµ8VÄŽ´pº'Ò‚/Ki%šjŸë™_ÅÊSJÍ.ãwªZí_Ÿ¯]¹[ß>6Ç÷n+dùP¹†Q’ MÆ3¤:ýÑ4÷Ýæ6-+ÏØ{×¾wó÷íä½y~o®Vú¶*?9˹üŸTW‘þ]ÝÿY]k=$«$¸Ñã)ð˜¼ÑÙs8[ȹÍ#Y }æ¹e3…ØÈü¬”ÛB¢ )ŒYØ0ä +HÂàôÄRBÍGÊL ½Q”Ð<Ò1«¡¶!³rÉéìÄ:CÀGSç qôcË~¸d¡Œzp¼¤cå0ó@š=«0¡àFIÓ[˜…ЛvÞƒ#ÂÆXÄÆœºŒ-…nâ…²Þó‚B"ÎÌZ«ÄÁZNaÅÍ›rr°E%õvêÁ„õHð¸!f7ÎäˆT¡èCU)!‚ë4Cµ¶Š4ÛADV<”Üñ¤˜Š›br<âk}a³'Rlìá))94-Ï!ªÔe…ˆØ#{•ÓWÁÜs]fU,M Ý«?»¤F"ߕӓ;gÅSXyj®‚Ê/Öù¢ò-R*sΕ”fa*65l&Cšbáì æÊ0‰/Ys®Q²e,zw’dYb7A¤„±à¥êPbè’;E|÷¬# +}XeeJlæÎGñ #ñ¿Gã€Eb™2'¦ìoÇô”O²[xOš¢0X9R’¨u©jɘ=‡s‚ïQšD}E£th#¸7‚k,XHŒ4\•BØJ‘HhY«…éÞ$ŸÁ$`&¼€ƒä’‰YiMƒ* ¶¸¼ ¬$Íp†¢\±6g„‘/†äÔÖ +ÒØ8(š¬Îѹ§/(M;âÉ’¿®Ý+ áPd·hÔ ™oÎÍÝWv4RÖNkÖºÁp¶h¥¸ƒ½YÙ2÷K֊ʦ+Êe¼RÜ<]uß|´ÅЮô'ÆÎ–-ï§TÖÇsÎõ|§Pã•§ Òx29(yO¦/fÙk1£Â»k5ö”(¥9öZO¯Üh0°T­\P1 ”JÛ d4Ý6Lf½ÀHÝ´¹¡•îrÔ_p6ðsºÁn""ö~ºÁ`‘ÉÕ.}ÔTîn26aŸ§ÝŒ¶výhlÄr·«±Yê}kgãH–¼úÝT×y³ÁsiîtaEÑ”›OLk7ÙÀ\ +ÆÆFVå«Þte•F£MO23XkÝÈÎ`».ƒ“ ¾ⳓ+ DQØM¦æ˜L7ÛZc^pÌ‹Œ­‘¨¶‘µÑY6·.—ùæzƒ»ÜÃÀÀlëÏ´0x°Zº‡ xÞ|¦ ÓsÜ8¨û=ª@$yÚF 6Ê|Ϻ¡êægòÚÒ>+9ÝvÒ©ÑÙî9k`Þö9lÐiÏõšÓ¦&ãâ6;m3Þh‰I…Î+@ŽŒSàz^€, KÏå!GMëf‘½aÊyéÈ‘®°ç>KúT¹n+Ðr£ÀçM&smôâºjE]žŒwæ<=‹VØMSYÇõãàË ,'‘…ü€/]’«‘ }+˜¤†ÓÌE>W@ô¦IŠæpÑ©N|ï[P2ì½ÐPS…:}S—G÷DÓK†Ù<Èä\éKȦÞÝ\k&ƒXtWœS\1Û‹Ìü²r®+T* +Å4ë2}2¸bvó[[‹t“KžO¥¿l•œ–¢%’[4 •.†0z.CÝkÊ®Ð5t!¢žÍnÕo/§ÝßD•JdkªçÊ$CªsêP’NJ£éÛþdÔ£ãqó§ô´oGe“ +óWÅ +Ñé`I™/u;5ŠáÌ»ò¢6òµò†hsl™ES¾s/àÕv×ÑrÞªçw— ÜåŸÁárÁƒ[”’¾à£99.lu±ñ> endobj xref +0 53 +0000000004 65535 f +0000000016 00000 n +0000000147 00000 n +0000041566 00000 n +0000000000 00000 f +0000041666 00000 n +0000000000 00000 f +0000062023 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000062096 00000 n +0000062314 00000 n +0000063431 00000 n +0000129019 00000 n +0000194607 00000 n +0000260195 00000 n +0000000000 00000 f +0000042035 00000 n +0000042406 00000 n +0000042777 00000 n +0000043148 00000 n +0000043519 00000 n +0000043893 00000 n +0000047482 00000 n +0000277834 00000 n +0000044311 00000 n +0000276130 00000 n +0000059340 00000 n +0000059227 00000 n +0000275912 00000 n +0000275602 00000 n +0000275254 00000 n +0000274693 00000 n +0000273316 00000 n +0000268998 00000 n +0000047669 00000 n +0000048094 00000 n +0000044741 00000 n +0000047553 00000 n +0000047584 00000 n +0000055357 00000 n +0000055457 00000 n +0000048417 00000 n +0000048695 00000 n +0000055883 00000 n +0000059375 00000 n +0000277859 00000 n +trailer <<27E4B473CF31434BB3E82B6F280F6A43>]>> startxref 278068 %%EOF \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/images/add-application.png b/dev/tekton/examples/example-bank/images/add-application.png new file mode 100755 index 0000000..d4b8bff Binary files /dev/null and b/dev/tekton/examples/example-bank/images/add-application.png differ diff --git a/dev/tekton/examples/example-bank/images/allow-sign-in.png b/dev/tekton/examples/example-bank/images/allow-sign-in.png new file mode 100755 index 0000000..5b76d6f Binary files /dev/null and b/dev/tekton/examples/example-bank/images/allow-sign-in.png differ diff --git a/dev/tekton/examples/example-bank/images/appdiag1.png b/dev/tekton/examples/example-bank/images/appdiag1.png new file mode 100755 index 0000000..10d2f5a Binary files /dev/null and b/dev/tekton/examples/example-bank/images/appdiag1.png differ diff --git a/dev/tekton/examples/example-bank/images/create-role.png b/dev/tekton/examples/example-bank/images/create-role.png new file mode 100755 index 0000000..afec493 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/create-role.png differ diff --git a/dev/tekton/examples/example-bank/images/disable-email.png b/dev/tekton/examples/example-bank/images/disable-email.png new file mode 100755 index 0000000..8604ec8 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/disable-email.png differ diff --git a/dev/tekton/examples/example-bank/images/kiali.png b/dev/tekton/examples/example-bank/images/kiali.png new file mode 100755 index 0000000..3121c18 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/kiali.png differ diff --git a/dev/tekton/examples/example-bank/images/logdna.png b/dev/tekton/examples/example-bank/images/logdna.png new file mode 100755 index 0000000..2fd3269 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/logdna.png differ diff --git a/dev/tekton/examples/example-bank/images/logdna_appid_select.png b/dev/tekton/examples/example-bank/images/logdna_appid_select.png new file mode 100755 index 0000000..85544ba Binary files /dev/null and b/dev/tekton/examples/example-bank/images/logdna_appid_select.png differ diff --git a/dev/tekton/examples/example-bank/images/loyalty-1.png b/dev/tekton/examples/example-bank/images/loyalty-1.png new file mode 100755 index 0000000..89afa2a Binary files /dev/null and b/dev/tekton/examples/example-bank/images/loyalty-1.png differ diff --git a/dev/tekton/examples/example-bank/images/loyalty-bank.png b/dev/tekton/examples/example-bank/images/loyalty-bank.png new file mode 100755 index 0000000..ee024f0 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/loyalty-bank.png differ diff --git a/dev/tekton/examples/example-bank/images/loyalty-phone.png b/dev/tekton/examples/example-bank/images/loyalty-phone.png new file mode 100755 index 0000000..b064085 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/loyalty-phone.png differ diff --git a/dev/tekton/examples/example-bank/images/loyalty-profile.png b/dev/tekton/examples/example-bank/images/loyalty-profile.png new file mode 100755 index 0000000..f5d52ff Binary files /dev/null and b/dev/tekton/examples/example-bank/images/loyalty-profile.png differ diff --git a/dev/tekton/examples/example-bank/images/loyalty-spending.png b/dev/tekton/examples/example-bank/images/loyalty-spending.png new file mode 100755 index 0000000..d8471b3 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/loyalty-spending.png differ diff --git a/dev/tekton/examples/example-bank/images/loyalty-transactions.png b/dev/tekton/examples/example-bank/images/loyalty-transactions.png new file mode 100755 index 0000000..c55bdc2 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/loyalty-transactions.png differ diff --git a/dev/tekton/examples/example-bank/images/loyalty-user-role-added.png b/dev/tekton/examples/example-bank/images/loyalty-user-role-added.png new file mode 100755 index 0000000..1f15120 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/loyalty-user-role-added.png differ diff --git a/dev/tekton/examples/example-bank/images/loyalty-user-role.png b/dev/tekton/examples/example-bank/images/loyalty-user-role.png new file mode 100755 index 0000000..861eb77 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/loyalty-user-role.png differ diff --git a/dev/tekton/examples/example-bank/images/loyalty-user-test.png b/dev/tekton/examples/example-bank/images/loyalty-user-test.png new file mode 100755 index 0000000..03d34ee Binary files /dev/null and b/dev/tekton/examples/example-bank/images/loyalty-user-test.png differ diff --git a/dev/tekton/examples/example-bank/images/new-app.png b/dev/tekton/examples/example-bank/images/new-app.png new file mode 100755 index 0000000..17c7d18 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/new-app.png differ diff --git a/dev/tekton/examples/example-bank/images/pattern-flow-diag.png b/dev/tekton/examples/example-bank/images/pattern-flow-diag.png new file mode 100755 index 0000000..ab2a8ec Binary files /dev/null and b/dev/tekton/examples/example-bank/images/pattern-flow-diag.png differ diff --git a/dev/tekton/examples/example-bank/images/schema-1.png b/dev/tekton/examples/example-bank/images/schema-1.png new file mode 100755 index 0000000..5a4f4da Binary files /dev/null and b/dev/tekton/examples/example-bank/images/schema-1.png differ diff --git a/dev/tekton/examples/example-bank/images/sim1.png b/dev/tekton/examples/example-bank/images/sim1.png new file mode 100755 index 0000000..54ad04f Binary files /dev/null and b/dev/tekton/examples/example-bank/images/sim1.png differ diff --git a/dev/tekton/examples/example-bank/images/sim2.png b/dev/tekton/examples/example-bank/images/sim2.png new file mode 100755 index 0000000..5cecaa4 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/sim2.png differ diff --git a/dev/tekton/examples/example-bank/images/sim3.png b/dev/tekton/examples/example-bank/images/sim3.png new file mode 100755 index 0000000..6836e42 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/sim3.png differ diff --git a/dev/tekton/examples/example-bank/images/sim4.png b/dev/tekton/examples/example-bank/images/sim4.png new file mode 100755 index 0000000..c61b9cf Binary files /dev/null and b/dev/tekton/examples/example-bank/images/sim4.png differ diff --git a/dev/tekton/examples/example-bank/images/simulator_checkin.png b/dev/tekton/examples/example-bank/images/simulator_checkin.png new file mode 100755 index 0000000..7c2e9c8 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/simulator_checkin.png differ diff --git a/dev/tekton/examples/example-bank/images/simulator_events.png b/dev/tekton/examples/example-bank/images/simulator_events.png new file mode 100755 index 0000000..7a481bb Binary files /dev/null and b/dev/tekton/examples/example-bank/images/simulator_events.png differ diff --git a/dev/tekton/examples/example-bank/images/simulator_katy.png b/dev/tekton/examples/example-bank/images/simulator_katy.png new file mode 100755 index 0000000..97ba86d Binary files /dev/null and b/dev/tekton/examples/example-bank/images/simulator_katy.png differ diff --git a/dev/tekton/examples/example-bank/images/simulator_main.png b/dev/tekton/examples/example-bank/images/simulator_main.png new file mode 100755 index 0000000..8ca39be Binary files /dev/null and b/dev/tekton/examples/example-bank/images/simulator_main.png differ diff --git a/dev/tekton/examples/example-bank/images/user-creation.png b/dev/tekton/examples/example-bank/images/user-creation.png new file mode 100755 index 0000000..81eb196 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/user-creation.png differ diff --git a/dev/tekton/examples/example-bank/images/writer-credentials.png b/dev/tekton/examples/example-bank/images/writer-credentials.png new file mode 100755 index 0000000..18f0cd9 Binary files /dev/null and b/dev/tekton/examples/example-bank/images/writer-credentials.png differ diff --git a/dev/tekton/examples/example-bank/manifest.yml b/dev/tekton/examples/example-bank/manifest.yml new file mode 100755 index 0000000..79ced1c --- /dev/null +++ b/dev/tekton/examples/example-bank/manifest.yml @@ -0,0 +1,8 @@ +applications: +- path: . + memory: 256M + instances: 1 + domain: mybluemix.net + name: bank + host: bank + disk_quota: 1024M diff --git a/dev/tekton/examples/example-bank/package-lock.json b/dev/tekton/examples/example-bank/package-lock.json new file mode 100755 index 0000000..3e25c15 --- /dev/null +++ b/dev/tekton/examples/example-bank/package-lock.json @@ -0,0 +1,1352 @@ +{ + "name": "NodejsStarterApp", + "version": "0.0.1", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "accept-language": { + "version": "3.0.18", + "resolved": "https://registry.npmjs.org/accept-language/-/accept-language-3.0.18.tgz", + "integrity": "sha1-9QJfF79lpGaoRYOMz5jNuHfYM4Q=", + "requires": { + "bcp47": "^1.1.2", + "stable": "^0.1.6" + } + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "ajv": { + "version": "6.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.0.tgz", + "integrity": "sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "alea": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/alea/-/alea-0.0.9.tgz", + "integrity": "sha1-9zjLRfg0MAafRc9pzL8xLdV6nho=" + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "async": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz", + "integrity": "sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==" + }, + "bcp47": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/bcp47/-/bcp47-1.1.2.tgz", + "integrity": "sha1-NUvjMH/9CEM6ePXh4glYRfifx/4=" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + } + }, + "bowser": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.9.0.tgz", + "integrity": "sha512-2ld76tuLBNFekRgmJfT2+3j5MIrP6bFict8WAIT3beq+srz1gcKNAdNKMqHqauQt63NmAa88HfP1/Ypa9Er3HA==" + }, + "buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" + }, + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + }, + "camelize": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz", + "integrity": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "cfenv": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cfenv/-/cfenv-1.2.2.tgz", + "integrity": "sha512-fl8xrG9ezqfO7L664lL+/vkqXun0D/xS/0IJ9++IMHLR6SI0If56C/KIHy9oIGb8jq9swHZFdct1MfN/80yYUw==", + "requires": { + "js-yaml": "3.13.x", + "ports": "1.1.x", + "underscore": "1.9.x" + } + }, + "circular-json": { + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.5.9.tgz", + "integrity": "sha512-4ivwqHpIFJZBuhN3g/pEcdbnGUywkBblloGbkglyloVjjR3uT6tieI89MVOfbP2tHX5sgb01FuLgAOzebNlJNQ==" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "connect-flash": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/connect-flash/-/connect-flash-0.1.1.tgz", + "integrity": "sha1-2GMPJtlaf4UfmVax6MxnMvO2qjA=" + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "requires": { + "safe-buffer": "5.1.2" + } + }, + "content-security-policy-builder": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/content-security-policy-builder/-/content-security-policy-builder-2.1.0.tgz", + "integrity": "sha512-/MtLWhJVvJNkA9dVLAp6fg9LxD2gfI6R2Fi1hPmfjYXSahJJzcfvoeDOxSyp4NvxMuwWv3WMssE9o31DoULHrQ==" + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + }, + "cookie-parser": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.4.tgz", + "integrity": "sha512-lo13tqF3JEtFO7FyA49CqbhaFkskRJ0u/UAiINgrIXeRCY41c88/zxtrECl8AKH3B0hj9q10+h3Kt8I7KlW4tw==", + "requires": { + "cookie": "0.3.1", + "cookie-signature": "1.0.6" + }, + "dependencies": { + "cookie": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", + "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" + } + } + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "dasherize": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dasherize/-/dasherize-2.0.0.tgz", + "integrity": "sha1-bYCcnNDPe7iVLYD8hPoT1H3bEwg=" + }, + "date-format": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-3.0.0.tgz", + "integrity": "sha512-eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "denque": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/denque/-/denque-1.4.1.tgz", + "integrity": "sha512-OfzPuSZKGcgr96rf1oODnfjqBFmr1DVoc/TrItj3Ohe0Ah1C5WX5Baquw/9U9KovnQ88EqmJbD66rKYUQYN1tQ==" + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "dns-prefetch-control": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dns-prefetch-control/-/dns-prefetch-control-0.2.0.tgz", + "integrity": "sha512-hvSnros73+qyZXhHFjx2CMLwoj3Fe7eR9EJsFsqmcI1bB2OBWL/+0YzaEaKssCHnj/6crawNnUyw74Gm2EKe+Q==" + }, + "dont-sniff-mimetype": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/dont-sniff-mimetype/-/dont-sniff-mimetype-1.1.0.tgz", + "integrity": "sha512-ZjI4zqTaxveH2/tTlzS1wFp+7ncxNZaIEWYg3lzZRHkKf5zPT/MnEG6WL0BhHMJUabkh8GeU5NL5j+rEUCb7Ug==" + }, + "dotenv": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", + "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" + }, + "double-ended-queue": { + "version": "2.1.0-0", + "resolved": "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz", + "integrity": "sha1-ED01J/0xUo9AGIEwyEHv3XgmTlw=" + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "ejs": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz", + "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "es6-promise": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "expect-ct": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/expect-ct/-/expect-ct-0.2.0.tgz", + "integrity": "sha512-6SK3MG/Bbhm8MsgyJAylg+ucIOU71/FzyFalcfu5nY19dH8y/z0tBJU0wrNBXD4B27EoQtqPF/9wqH0iYAd04g==" + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + } + }, + "express-http-proxy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/express-http-proxy/-/express-http-proxy-1.6.0.tgz", + "integrity": "sha512-7Re6Lepg96NA2wiv7DC5csChAScn4K76/UgYnC71XiITCT1cgGTJUGK6GS0pIixudg3Fbx3Q6mmEW3mZv5tHFQ==", + "requires": { + "debug": "^3.0.1", + "es6-promise": "^4.1.1", + "raw-body": "^2.3.0" + }, + "dependencies": { + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-deep-equal": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", + "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "feature-policy": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/feature-policy/-/feature-policy-0.3.0.tgz", + "integrity": "sha512-ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ==" + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + } + }, + "flatted": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.1.tgz", + "integrity": "sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg==" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" + }, + "frameguard": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/frameguard/-/frameguard-3.1.0.tgz", + "integrity": "sha512-TxgSKM+7LTA6sidjOiSZK9wxY0ffMPY3Wta//MqwmX0nZuEHc8QrkV8Fh3ZhMJeiH+Uyh/tcaarImRy8u77O7g==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "graceful-fs": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", + "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==" + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", + "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", + "requires": { + "ajv": "^6.5.5", + "har-schema": "^2.0.0" + } + }, + "helmet": { + "version": "3.21.3", + "resolved": "https://registry.npmjs.org/helmet/-/helmet-3.21.3.tgz", + "integrity": "sha512-8OjGNdpG3WQhPO71fSy2fT4X3FSNutU1LDeAf+YS+Vil6r+fE7w8per5mNed6egGYbZl3QhKXgFzMYSwys+YQw==", + "requires": { + "depd": "2.0.0", + "dns-prefetch-control": "0.2.0", + "dont-sniff-mimetype": "1.1.0", + "expect-ct": "0.2.0", + "feature-policy": "0.3.0", + "frameguard": "3.1.0", + "helmet-crossdomain": "0.4.0", + "helmet-csp": "2.9.5", + "hide-powered-by": "1.1.0", + "hpkp": "2.0.0", + "hsts": "2.2.0", + "ienoopen": "1.1.0", + "nocache": "2.1.0", + "referrer-policy": "1.2.0", + "x-xss-protection": "1.3.0" + }, + "dependencies": { + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + } + }, + "helmet-crossdomain": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/helmet-crossdomain/-/helmet-crossdomain-0.4.0.tgz", + "integrity": "sha512-AB4DTykRw3HCOxovD1nPR16hllrVImeFp5VBV9/twj66lJ2nU75DP8FPL0/Jp4jj79JhTfG+pFI2MD02kWJ+fA==" + }, + "helmet-csp": { + "version": "2.9.5", + "resolved": "https://registry.npmjs.org/helmet-csp/-/helmet-csp-2.9.5.tgz", + "integrity": "sha512-w9nps5adqFQwgktVPDbXkARmZot/nr8aegzQas9AXdBSwBFBBefPpDSTV0wtgHlAUdDwY6MZo7qAl9yts3ppJg==", + "requires": { + "bowser": "2.9.0", + "camelize": "1.0.0", + "content-security-policy-builder": "2.1.0", + "dasherize": "2.0.0" + } + }, + "hide-powered-by": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hide-powered-by/-/hide-powered-by-1.1.0.tgz", + "integrity": "sha512-Io1zA2yOA1YJslkr+AJlWSf2yWFkKjvkcL9Ni1XSUqnGLr/qRQe2UI3Cn/J9MsJht7yEVCe0SscY1HgVMujbgg==" + }, + "hpkp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hpkp/-/hpkp-2.0.0.tgz", + "integrity": "sha1-EOFCJk52IVpdMMROxD3mTe5tFnI=" + }, + "hsts": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/hsts/-/hsts-2.2.0.tgz", + "integrity": "sha512-ToaTnQ2TbJkochoVcdXYm4HOCliNozlviNsg+X2XQLQvZNI/kCHR9rZxVYpJB3UPcHz80PgxRyWQ7PdU1r+VBQ==", + "requires": { + "depd": "2.0.0" + }, + "dependencies": { + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + } + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "ibmcloud-appid": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ibmcloud-appid/-/ibmcloud-appid-6.1.0.tgz", + "integrity": "sha512-pV99Gxs5opt1T5TjLnkOO8KlYnbzJlhMiNXFg6ARTNp0SIT8eHLA1jsGSn/kJUSQKKtZBviQo6kA6mi8R2VYHA==", + "requires": { + "accept-language": "^3.0.18", + "body-parser": "^1.17.2", + "connect-flash": "^0.1.1", + "cookie-parser": "^1.4.3", + "ejs": "^2.5.6", + "helmet": "^3.11.0", + "jsonwebtoken": "^8.4.0", + "log4js": "^3.0.6", + "q": "^1.4.1", + "request": "^2.88.0", + "rsa-pem-from-mod-exp": "^0.8.4", + "underscore": "^1.8.3" + }, + "dependencies": { + "date-format": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-1.2.0.tgz", + "integrity": "sha1-YV6CjiM90aubua4JUODOzPpuytg=" + }, + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "log4js": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-3.0.6.tgz", + "integrity": "sha512-ezXZk6oPJCWL483zj64pNkMuY/NcRX5MPiB0zE6tjZM137aeusrOnW1ecxgF9cmwMWkBMhjteQxBPoZBh9FDxQ==", + "requires": { + "circular-json": "^0.5.5", + "date-format": "^1.2.0", + "debug": "^3.1.0", + "rfdc": "^1.1.2", + "streamroller": "0.7.0" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "streamroller": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-0.7.0.tgz", + "integrity": "sha512-WREzfy0r0zUqp3lGO096wRuUp7ho1X6uo/7DJfTlEi0Iv/4gT7YHqXDjKC2ioVGBZtE8QzsQD9nx1nIuoZ57jQ==", + "requires": { + "date-format": "^1.2.0", + "debug": "^3.1.0", + "mkdirp": "^0.5.1", + "readable-stream": "^2.3.0" + } + } + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ienoopen": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ienoopen/-/ienoopen-1.1.0.tgz", + "integrity": "sha512-MFs36e/ca6ohEKtinTJ5VvAJ6oDRAYFdYXweUnGY9L9vcoqFOU4n2ZhmJ0C4z/cwGZ3YIQRSB3XZ1+ghZkY5NQ==" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsonwebtoken": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz", + "integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==", + "requires": { + "jws": "^3.2.2", + "lodash.includes": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isinteger": "^4.0.4", + "lodash.isnumber": "^3.0.3", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.once": "^4.0.0", + "ms": "^2.1.1", + "semver": "^5.6.0" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "jwa": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", + "requires": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "requires": { + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" + } + }, + "lodash.includes": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", + "integrity": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=" + }, + "lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" + }, + "lodash.isinteger": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", + "integrity": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=" + }, + "lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" + }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" + }, + "lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" + }, + "lodash.once": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=" + }, + "log4js": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.1.2.tgz", + "integrity": "sha512-knS4Y30pC1e0n7rfx3VxcLOdBCsEo0o6/C7PVTGxdVK+5b1TYOSGQPn9FDcrhkoQBV29qwmA2mtkznPAQKnxQg==", + "requires": { + "date-format": "^3.0.0", + "debug": "^4.1.1", + "flatted": "^2.0.1", + "rfdc": "^1.1.4", + "streamroller": "^2.2.3" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.43.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz", + "integrity": "sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==" + }, + "mime-types": { + "version": "2.1.26", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.26.tgz", + "integrity": "sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==", + "requires": { + "mime-db": "1.43.0" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + }, + "nocache": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/nocache/-/nocache-2.1.0.tgz", + "integrity": "sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==" + }, + "node-random-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/node-random-name/-/node-random-name-1.0.1.tgz", + "integrity": "sha1-niQEx6AeCQWi92Fogh7bLc0U91g=", + "requires": { + "alea": "0.0.9" + } + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "ee-first": "1.1.1" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "ports": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ports/-/ports-1.1.0.tgz", + "integrity": "sha1-twGqKF6V2ujJbNonUhdySh9/bGA=" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "proxy-addr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", + "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", + "requires": { + "forwarded": "~0.1.2", + "ipaddr.js": "1.9.1" + } + }, + "psl": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.7.0.tgz", + "integrity": "sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ==" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "redis": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/redis/-/redis-3.0.2.tgz", + "integrity": "sha512-PNhLCrjU6vKVuMOyFu7oSP296mwBkcE6lrAjruBYG5LgdSqtRBoVQIylrMyVZD/lkF24RSNNatzvYag6HRBHjQ==", + "requires": { + "denque": "^1.4.1", + "redis-commands": "^1.5.0", + "redis-errors": "^1.2.0", + "redis-parser": "^3.0.0" + } + }, + "redis-commands": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/redis-commands/-/redis-commands-1.5.0.tgz", + "integrity": "sha512-6KxamqpZ468MeQC3bkWmCB1fp56XL64D4Kf0zJSwDZbVLLm7KFkoIcHrgRvQ+sk8dnhySs7+yBg94yIkAK7aJg==" + }, + "redis-errors": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz", + "integrity": "sha1-62LSrbFeTq9GEMBK/hUpOEJQq60=" + }, + "redis-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz", + "integrity": "sha1-tm2CjNyv5rS4pCin3vTGvKwxyLQ=", + "requires": { + "redis-errors": "^1.0.0" + } + }, + "redisscan": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/redisscan/-/redisscan-2.0.0.tgz", + "integrity": "sha1-AObWOGxeKDRF5yhvBHLHJpCyBiE=", + "requires": { + "async": "~0.2.10", + "redis": "^2.7.1" + }, + "dependencies": { + "redis": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/redis/-/redis-2.8.0.tgz", + "integrity": "sha512-M1OkonEQwtRmZv4tEWF2VgpG0JWJ8Fv1PhlgT5+B+uNq2cA3Rt1Yt/ryoR+vQNOQcIEgdCdfH0jr3bDpihAw1A==", + "requires": { + "double-ended-queue": "^2.1.0-0", + "redis-commands": "^1.2.0", + "redis-parser": "^2.6.0" + } + }, + "redis-parser": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-2.6.0.tgz", + "integrity": "sha1-Uu0J2srBCPGmMcB+m2mUHnoZUEs=" + } + } + }, + "referrer-policy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/referrer-policy/-/referrer-policy-1.2.0.tgz", + "integrity": "sha512-LgQJIuS6nAy1Jd88DCQRemyE3mS+ispwlqMk3b0yjZ257fI1v9c+/p6SD5gP5FGyXUIgrNOAfmyioHwZtYv2VA==" + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + } + } + }, + "rfdc": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.1.4.tgz", + "integrity": "sha512-5C9HXdzK8EAqN7JDif30jqsBzavB7wLpaubisuQIGHWf2gUXSpzy6ArX/+Da8RjFpagWsCn+pIgxTMAmKw9Zug==" + }, + "rsa-pem-from-mod-exp": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/rsa-pem-from-mod-exp/-/rsa-pem-from-mod-exp-0.8.4.tgz", + "integrity": "sha1-NipCxtMEBW1JOz8SvOq7LGV2ptQ=" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "streamroller": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-2.2.3.tgz", + "integrity": "sha512-AegmvQsscTRhHVO46PhCDerjIpxi7E+d2GxgUDu+nzw/HuLnUdxHWr6WQ+mVn/4iJgMKKFFdiUwFcFRDvcjCtw==", + "requires": { + "date-format": "^2.1.0", + "debug": "^4.1.1", + "fs-extra": "^8.1.0" + }, + "dependencies": { + "date-format": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-2.1.0.tgz", + "integrity": "sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==" + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "underscore": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.2.tgz", + "integrity": "sha512-D39qtimx0c1fI3ya1Lnhk3E9nONswSKhnffBI0gME9C99fYOkNi04xs8K6pePLhvl1frbDemkaBQ5ikWllR2HQ==" + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "requires": { + "punycode": "^2.1.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "x-xss-protection": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/x-xss-protection/-/x-xss-protection-1.3.0.tgz", + "integrity": "sha512-kpyBI9TlVipZO4diReZMAHWtS0MMa/7Kgx8hwG/EuZLiA6sg4Ah/4TRdASHhRRN3boobzcYgFRUFSgHRge6Qhg==" + } + } +} diff --git a/dev/tekton/examples/example-bank/package.json b/dev/tekton/examples/example-bank/package.json new file mode 100755 index 0000000..5c07a4c --- /dev/null +++ b/dev/tekton/examples/example-bank/package.json @@ -0,0 +1,24 @@ +{ + "name": "NodejsStarterApp", + "version": "0.0.1", + "private": true, + "scripts": { + "start": "node app.js", + "dev": "DEVMODE=true node app.js" + }, + "dependencies": { + "body-parser": "^1.19.0", + "cfenv": "^1.2.2", + "dotenv": "^8.2.0", + "express": "^4.16.4", + "express-http-proxy": "^1.6.0", + "ibmcloud-appid": "^6.1.0", + "log4js": "^6.1.0", + "node-random-name": "^1.0.1", + "request": "^2.88.2" + }, + "repository": {}, + "engines": { + "node": "8.x" + } +} diff --git a/dev/tekton/examples/example-bank/pipelines/ACKNOWLEDGEMENT.md b/dev/tekton/examples/example-bank/pipelines/ACKNOWLEDGEMENT.md new file mode 100755 index 0000000..4c3b226 --- /dev/null +++ b/dev/tekton/examples/example-bank/pipelines/ACKNOWLEDGEMENT.md @@ -0,0 +1 @@ +Parts of this pipeline related to Sonarqube were borrowed from Siamak Sadeghianfar and his [work](https://github.com/siamaksade/tekton-cd-demo) on Tekton. diff --git a/dev/tekton/examples/example-bank/pipelines/bank-pipelinerun.yaml b/dev/tekton/examples/example-bank/pipelines/bank-pipelinerun.yaml new file mode 100755 index 0000000..e3fea2d --- /dev/null +++ b/dev/tekton/examples/example-bank/pipelines/bank-pipelinerun.yaml @@ -0,0 +1,40 @@ +--- +apiVersion: tekton.dev/v1alpha1 +kind: PipelineRun +metadata: + generateName: bank-run- +spec: + pipelineRef: + name: example-bank + resources: + - name: bank-git + resourceSpec: + type: git + params: + - name: url + value: https://github.com/IBM/example-bank.git + - name: revision + value: main + - name: transaction-image + resourceSpec: + type: image + params: + - name: url + value: image-registry.openshift-image-registry.svc:5000/bank-infra/transaction + - name: user-image + resourceSpec: + type: image + params: + - name: url + value: image-registry.openshift-image-registry.svc:5000/bank-infra/user + - name: ui-image + resourceSpec: + type: image + params: + - name: url + value: image-registry.openshift-image-registry.svc:5000/bank-infra/ui + workspaces: + - name: local-maven-repo + persistentVolumeClaim: + claimName: maven-repo-pvc + serviceAccountName: pipeline diff --git a/dev/tekton/examples/example-bank/pipelines/bank-pvc.yaml b/dev/tekton/examples/example-bank/pipelines/bank-pvc.yaml new file mode 100755 index 0000000..aa03367 --- /dev/null +++ b/dev/tekton/examples/example-bank/pipelines/bank-pvc.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: maven-repo-pvc +spec: + resources: + requests: + storage: 5Gi + volumeMode: Filesystem + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/pipelines/deployments/transaction.yaml b/dev/tekton/examples/example-bank/pipelines/deployments/transaction.yaml new file mode 100755 index 0000000..b728303 --- /dev/null +++ b/dev/tekton/examples/example-bank/pipelines/deployments/transaction.yaml @@ -0,0 +1,60 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: transaction-service + labels: + app: transaction-service +spec: + replicas: 1 + selector: + matchLabels: + app: transaction-service + template: + metadata: + labels: + app: transaction-service + annotations: + sidecar.istio.io/inject: "false" + spec: + containers: + - name: transaction-service + image: ykoyfman/bank-transaction-service:1.0 + imagePullPolicy: Always + ports: + - name: http-server + containerPort: 9080 + envFrom: + - secretRef: + name: bank-db-secret + - secretRef: + name: bank-oidc-secret + env: + - name: USER_SERVICE_URL + value: "http://user-service:9080/bank/v1/users" + - name: KNATIVE_SERVICE_URL + value: "http://process-transaction.bank-renamed-no-mesh.svc.cluster.local" + - name: WLP_LOGGING_CONSOLE_LOGLEVEL + value: INFO +--- +apiVersion: v1 +kind: Service +metadata: + name: transaction-service + labels: + app: transaction-service +spec: + ports: + - port: 9080 + targetPort: 9080 + selector: + app: transaction-service +--- +apiVersion: v1 +kind: Route +metadata: + name: transaction-service +spec: + to: + kind: Service + name: transaction-service + diff --git a/dev/tekton/examples/example-bank/pipelines/deployments/ui.yaml b/dev/tekton/examples/example-bank/pipelines/deployments/ui.yaml new file mode 100755 index 0000000..0b86bfb --- /dev/null +++ b/dev/tekton/examples/example-bank/pipelines/deployments/ui.yaml @@ -0,0 +1,53 @@ +--- + apiVersion: v1 + kind: Service + metadata: + name: mobile-simulator-service + labels: + app: mobile-simulator + spec: + ports: + - port: 80 + protocol: TCP + targetPort: 8080 + type: LoadBalancer + selector: + app: mobile-simulator +--- +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: mobile-simulator-deployment + labels: + app: mobile-simulator +spec: + strategy: + type: Recreate + template: + metadata: + labels: + app: mobile-simulator + spec: + containers: + - image: anthonyamanse/mobile-simulator:example-bank-1.0 + imagePullPolicy: Always + name: mobile-simulator + envFrom: + - secretRef: + name: mobile-simulator-secrets + env: + - name: PORT + value: '8080' + ports: + - containerPort: 8080 + +--- +apiVersion: v1 +kind: Route +metadata: + name: mobile-simulator-service +spec: + to: + kind: Service + name: mobile-simulator-service + diff --git a/dev/tekton/examples/example-bank/pipelines/deployments/user.yaml b/dev/tekton/examples/example-bank/pipelines/deployments/user.yaml new file mode 100755 index 0000000..8fe34e1 --- /dev/null +++ b/dev/tekton/examples/example-bank/pipelines/deployments/user.yaml @@ -0,0 +1,51 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: user-service + labels: + app: user-service +spec: + replicas: 1 + selector: + matchLabels: + app: user-service + template: + metadata: + labels: + app: user-service + spec: + containers: + - name: user-service + image: anthonyamanse/user-service:example-bank-1.0 + imagePullPolicy: Always + ports: + - name: http-server + containerPort: 9080 + envFrom: + - secretRef: + name: bank-db-secret + - secretRef: + name: bank-oidc-secret +--- +apiVersion: v1 +kind: Service +metadata: + name: user-service + labels: + app: user-service +spec: + ports: + - port: 9080 + targetPort: 9080 + selector: + app: user-service +--- +apiVersion: v1 +kind: Route +metadata: + name: user-service +spec: + to: + kind: Service + name: user-service + diff --git a/dev/tekton/examples/example-bank/pipelines/example-bank-pipeline.yaml b/dev/tekton/examples/example-bank/pipelines/example-bank-pipeline.yaml new file mode 100755 index 0000000..52573a6 --- /dev/null +++ b/dev/tekton/examples/example-bank/pipelines/example-bank-pipeline.yaml @@ -0,0 +1,129 @@ +apiVersion: tekton.dev/v1alpha1 +kind: Pipeline +metadata: + name: example-bank +spec: + resources: + - name: bank-git + type: git + - name: transaction-image + type: image + - name: user-image + type: image + - name: ui-image + type: image + tasks: + - name: code-analysis + params: + - name: GOALS + value: + - install + - 'sonar:sonar' + - '-Dsonar.host.url=http://sonarqube:9000' + - '-Dsonar.userHome=/tmp/sonar' + - '-DskipITs' + - '-Darguments=-DskipITs' + resources: + inputs: + - name: source + resource: bank-git + taskRef: + kind: Task + name: maven + workspaces: + - name: maven-repo + workspace: local-maven-repo + - name: build-transaction + params: + - name: TLSVERIFY + value: 'false' + - name: MAVEN_ARGS_APPEND + value: '-pl :transaction-service -am package' + - name: PATH_CONTEXT + value: bank-app-backend/ + resources: + inputs: + - name: source + resource: bank-git + outputs: + - name: image + resource: transaction-image + runAfter: + - code-analysis + taskRef: + kind: Task + name: s2i-java-8 + - name: build-user + params: + - name: TLSVERIFY + value: 'false' + - name: MAVEN_ARGS_APPEND + value: '-pl :user-service -am package' + - name: PATH_CONTEXT + value: bank-app-backend/ + resources: + inputs: + - name: source + resource: bank-git + outputs: + - name: image + resource: user-image + runAfter: + - code-analysis + taskRef: + kind: Task + name: s2i-java-8 + - name: build-ui + params: + - name: TLSVERIFY + value: 'false' + resources: + inputs: + - name: source + resource: bank-git + outputs: + - name: image + resource: ui-image + runAfter: + - code-analysis + taskRef: + kind: Task + name: s2i-nodejs + - name: deploy-transaction + params: + - name: COMMANDS + value: > + oc apply -f + https://raw.githubusercontent.com/IBM/example-bank/main/bank-app-backend/transaction-service/deployment.yaml + -n example-bank + runAfter: + - build-transaction + taskRef: + kind: Task + name: openshift-client + - name: deploy-user + params: + - name: COMMANDS + value: > + oc apply -f + https://raw.githubusercontent.com/IBM/example-bank/main/bank-app-backend/user-service/deployment.yaml + -n example-bank + runAfter: + - build-user + taskRef: + kind: Task + name: openshift-client + - name: deploy-ui + params: + - name: COMMANDS + value: > + oc apply -f + https://raw.githubusercontent.com/IBM/example-bank/main/deployment.yaml + -n example-bank + runAfter: + - build-transaction + taskRef: + kind: Task + name: openshift-client + workspaces: + - name: local-maven-repo diff --git a/dev/tekton/examples/example-bank/pipelines/sonarqube.yaml b/dev/tekton/examples/example-bank/pipelines/sonarqube.yaml new file mode 100755 index 0000000..efaf893 --- /dev/null +++ b/dev/tekton/examples/example-bank/pipelines/sonarqube.yaml @@ -0,0 +1,113 @@ +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: sonarqube + labels: + app: sonarqube + app.kubernetes.io/component: sonarqube + app.kubernetes.io/instance: sonarqube + app.kubernetes.io/name: sonarqube + app.kubernetes.io/part-of: sonarqube +spec: + replicas: 1 + selector: + matchLabels: + app: sonarqube + name: sonarqube + template: + metadata: + labels: + app: sonarqube + name: sonarqube + spec: + containers: + - name: sonarqube + imagePullPolicy: Always + image: docker.io/sonarqube:8-community-beta + ports: + - containerPort: 9000 + protocol: TCP + volumeMounts: + - mountPath: /opt/sq/temp + name: sonarqube-temp + - mountPath: /opt/sq/conf + name: sonarqube-conf + - mountPath: /opt/sq/data + name: sonarqube-data + - mountPath: /opt/sq/extensions + name: sonarqube-extensions + - mountPath: /opt/sq/logs + name: sonarqube-logs + livenessProbe: + failureThreshold: 10 + httpGet: + path: / + port: 9000 + scheme: HTTP + initialDelaySeconds: 45 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 1 + readinessProbe: + failureThreshold: 10 + httpGet: + path: / + port: 9000 + scheme: HTTP + initialDelaySeconds: 10 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 1 + resources: + limits: + cpu: "1" + memory: 4Gi + requests: + cpu: 200m + memory: 512Mi + volumes: + - name: sonarqube-temp + emptyDir: {} + - name: sonarqube-conf + emptyDir: {} + - name: sonarqube-data + emptyDir: {} + - name: sonarqube-extensions + emptyDir: {} + - name: sonarqube-logs + emptyDir: {} +--- +apiVersion: v1 +kind: Route +metadata: + labels: + app: sonarqube + name: sonarqube +spec: + port: + targetPort: 9000-tcp + tls: + termination: edge + to: + kind: Service + name: sonarqube + weight: 100 + wildcardPolicy: None +--- +apiVersion: v1 +kind: Service +metadata: + labels: + app: sonarqube + name: sonarqube +spec: + ports: + - name: 9000-tcp + port: 9000 + protocol: TCP + targetPort: 9000 + selector: + app: sonarqube + name: sonarqube + type: ClusterIP \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/pipelines/tasks/mvn-task-settings.yaml b/dev/tekton/examples/example-bank/pipelines/tasks/mvn-task-settings.yaml new file mode 100755 index 0000000..69d3497 --- /dev/null +++ b/dev/tekton/examples/example-bank/pipelines/tasks/mvn-task-settings.yaml @@ -0,0 +1,263 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: maven-settings +data: + settings.xml: | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/pipelines/tasks/mvn-task.yaml b/dev/tekton/examples/example-bank/pipelines/tasks/mvn-task.yaml new file mode 100755 index 0000000..b9afac1 --- /dev/null +++ b/dev/tekton/examples/example-bank/pipelines/tasks/mvn-task.yaml @@ -0,0 +1,40 @@ +--- +apiVersion: tekton.dev/v1alpha1 +kind: Task +metadata: + name: maven +spec: + workspaces: + - name: maven-repo + inputs: + params: + - name: GOALS + description: The Maven goals to run + type: array + default: ["package"] + - name: MAVEN_SETTINGS_CONFIGMAP + description: The configmap containing Maven settings.xml + type: string + default: maven-settings + resources: + - name: source + type: git + steps: + - name: mvn + image: gcr.io/cloud-builders/mvn + workingDir: /workspace/source/bank-app-backend + command: ["/usr/bin/mvn"] + args: + - -DskipITs + - -Dmaven.test.skip=true + - -Dmaven.repo.local=$(workspaces.maven-repo.path) + - -s + - /var/config/settings.xml + - "$(inputs.params.GOALS)" + volumeMounts: + - name: maven-settings + mountPath: /var/config + volumes: + - name: maven-settings + configMap: + name: $(inputs.params.MAVEN_SETTINGS_CONFIGMAP) diff --git a/dev/tekton/examples/example-bank/pipelines/tasks/oc-task.yaml b/dev/tekton/examples/example-bank/pipelines/tasks/oc-task.yaml new file mode 100755 index 0000000..f0a4844 --- /dev/null +++ b/dev/tekton/examples/example-bank/pipelines/tasks/oc-task.yaml @@ -0,0 +1,15 @@ +apiVersion: tekton.dev/v1alpha1 +kind: Task +metadata: + name: openshift-client +spec: + inputs: + params: + - name: COMMANDS + type: string + steps: + - name: run-commands + image: quay.io/openshift/origin-cli:latest + script: | + #!/usr/bin/env bash + $(inputs.params.COMMANDS) diff --git a/dev/tekton/examples/example-bank/pipelines/tasks/task-s2i-java.yaml b/dev/tekton/examples/example-bank/pipelines/tasks/task-s2i-java.yaml new file mode 100755 index 0000000..db0de98 --- /dev/null +++ b/dev/tekton/examples/example-bank/pipelines/tasks/task-s2i-java.yaml @@ -0,0 +1,123 @@ +apiVersion: tekton.dev/v1alpha1 +kind: Task +metadata: + name: s2i-java-8 +spec: + inputs: + params: + - default: . + description: The location of the path to run s2i from + name: PATH_CONTEXT + type: string + - default: 'true' + description: >- + Verify the TLS on the registry endpoint (for push/pull to a non-TLS + registry) + name: TLSVERIFY + type: string + - default: '' + description: Additional Maven arguments + name: MAVEN_ARGS_APPEND + type: string + - default: 'false' + description: Remove the Maven repository after the artifact is built + name: MAVEN_CLEAR_REPO + type: string + - default: '' + description: The base URL of a mirror used for retrieving artifacts + name: MAVEN_MIRROR_URL + type: string + resources: + - name: source + type: git + outputs: + resources: + - name: image + type: image + steps: + - args: + - |- + echo "MAVEN_CLEAR_REPO=$(inputs.params.MAVEN_CLEAR_REPO)" > env-file + + [[ '$(inputs.params.MAVEN_ARGS_APPEND)' != "" ]] && + echo "MAVEN_ARGS_APPEND=$(inputs.params.MAVEN_ARGS_APPEND)" >> env-file + + [[ '$(inputs.params.MAVEN_MIRROR_URL)' != "" ]] && + echo "MAVEN_MIRROR_URL=$(inputs.params.MAVEN_MIRROR_URL)" >> env-file + + echo "Generated Env file" + echo "------------------------------" + cat env-file + echo "------------------------------" + command: + - /bin/sh + - '-c' + image: quay.io/openshift-pipeline/s2i + name: gen-env-file + resources: {} + volumeMounts: + - mountPath: /env-params + name: envparams + workingDir: /env-params + - command: + - s2i + - build + - $(inputs.params.PATH_CONTEXT) + - registry.access.redhat.com/redhat-openjdk-18/openjdk18-openshift + - '--image-scripts-url' + - 'image:///usr/local/s2i' + - '--as-dockerfile' + - /gen-source/Dockerfile.gen + - '--environment-file' + - /env-params/env-file + image: quay.io/openshift-pipeline/s2i + name: generate + resources: {} + volumeMounts: + - mountPath: /gen-source + name: gen-source + - mountPath: /env-params + name: envparams + workingDir: /workspace/source + - command: + - buildah + - bud + - '--tls-verify=$(inputs.params.TLSVERIFY)' + - '--layers' + - '-f' + - /gen-source/Dockerfile.gen + - '-t' + - $(outputs.resources.image.url) + - . + image: 'quay.io/buildah/stable:v1.11.4' + name: build + resources: {} + securityContext: + privileged: true + volumeMounts: + - mountPath: /var/lib/containers + name: varlibcontainers + - mountPath: /gen-source + name: gen-source + workingDir: /gen-source + - command: + - buildah + - push + - '--tls-verify=$(inputs.params.TLSVERIFY)' + - $(outputs.resources.image.url) + - 'docker://$(outputs.resources.image.url)' + image: 'quay.io/buildah/stable:v1.11.4' + name: push + resources: {} + securityContext: + privileged: true + volumeMounts: + - mountPath: /var/lib/containers + name: varlibcontainers + volumes: + - emptyDir: {} + name: varlibcontainers + - emptyDir: {} + name: gen-source + - emptyDir: {} + name: envparams diff --git a/dev/tekton/examples/example-bank/pipelines/tasks/task-s2i-nodejs.yaml b/dev/tekton/examples/example-bank/pipelines/tasks/task-s2i-nodejs.yaml new file mode 100755 index 0000000..011e70e --- /dev/null +++ b/dev/tekton/examples/example-bank/pipelines/tasks/task-s2i-nodejs.yaml @@ -0,0 +1,83 @@ +apiVersion: tekton.dev/v1alpha1 +kind: Task +metadata: + name: s2i-nodejs +spec: + inputs: + params: + - default: '8' + description: The version of the nodejs + name: VERSION + type: string + - default: . + description: The location of the path to run s2i from. + name: PATH_CONTEXT + type: string + - default: 'true' + description: >- + Verify the TLS on the registry endpoint (for push/pull to a non-TLS + registry) + name: TLSVERIFY + type: string + resources: + - name: source + type: git + outputs: + resources: + - name: image + type: image + steps: + - command: + - s2i + - build + - $(inputs.params.PATH_CONTEXT) + - registry.access.redhat.com/rhscl/nodejs-$(inputs.params.VERSION)-rhel7 + - '--as-dockerfile' + - /gen-source/Dockerfile.gen + image: quay.io/openshift-pipeline/s2i + name: generate + resources: {} + volumeMounts: + - mountPath: /gen-source + name: gen-source + workingDir: /workspace/source + - command: + - buildah + - bud + - '--tls-verify=$(inputs.params.TLSVERIFY)' + - '--layers' + - '-f' + - /gen-source/Dockerfile.gen + - '-t' + - $(outputs.resources.image.url) + - . + image: 'quay.io/buildah/stable:v1.11.4' + name: build + resources: {} + securityContext: + privileged: true + volumeMounts: + - mountPath: /var/lib/containers + name: varlibcontainers + - mountPath: /gen-source + name: gen-source + workingDir: /gen-source + - command: + - buildah + - push + - '--tls-verify=$(inputs.params.TLSVERIFY)' + - $(outputs.resources.image.url) + - 'docker://$(outputs.resources.image.url)' + image: 'quay.io/buildah/stable:v1.11.4' + name: push + resources: {} + securityContext: + privileged: true + volumeMounts: + - mountPath: /var/lib/containers + name: varlibcontainers + volumes: + - emptyDir: {} + name: varlibcontainers + - emptyDir: {} + name: gen-source diff --git a/dev/tekton/examples/example-bank/public/favicon.ico b/dev/tekton/examples/example-bank/public/favicon.ico new file mode 100755 index 0000000..f00be52 Binary files /dev/null and b/dev/tekton/examples/example-bank/public/favicon.ico differ diff --git a/dev/tekton/examples/example-bank/public/images/account-deselected.svg b/dev/tekton/examples/example-bank/public/images/account-deselected.svg new file mode 100755 index 0000000..894ed6d --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/account-deselected.svg @@ -0,0 +1 @@ +account-deselected \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/account-selected.svg b/dev/tekton/examples/example-bank/public/images/account-selected.svg new file mode 100755 index 0000000..4ed932b --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/account-selected.svg @@ -0,0 +1 @@ +account-selected \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/admin.svg b/dev/tekton/examples/example-bank/public/images/admin.svg new file mode 100755 index 0000000..4db2eda --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/admin.svg @@ -0,0 +1 @@ +admin \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/bank.svg b/dev/tekton/examples/example-bank/public/images/bank.svg new file mode 100755 index 0000000..9f0beb1 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/bank.svg @@ -0,0 +1 @@ +bankBANK \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/banklogo.svg b/dev/tekton/examples/example-bank/public/images/banklogo.svg new file mode 100755 index 0000000..09c987c --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/banklogo.svg @@ -0,0 +1 @@ +banklogo \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/cafe.svg b/dev/tekton/examples/example-bank/public/images/cafe.svg new file mode 100755 index 0000000..a292976 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/cafe.svg @@ -0,0 +1 @@ +cafeCAFE \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/cloud.svg b/dev/tekton/examples/example-bank/public/images/cloud.svg new file mode 100755 index 0000000..fc38987 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/cloud.svg @@ -0,0 +1 @@ +cloud \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/deploy-rules.svg b/dev/tekton/examples/example-bank/public/images/deploy-rules.svg new file mode 100755 index 0000000..e2804c7 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/deploy-rules.svg @@ -0,0 +1,12 @@ + + + + + +Deploy rules + + diff --git a/dev/tekton/examples/example-bank/public/images/eventlist-deselected.svg b/dev/tekton/examples/example-bank/public/images/eventlist-deselected.svg new file mode 100755 index 0000000..e5bdd97 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/eventlist-deselected.svg @@ -0,0 +1 @@ +eventlist-deselected \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/eventlist-selected.svg b/dev/tekton/examples/example-bank/public/images/eventlist-selected.svg new file mode 100755 index 0000000..604e73d --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/eventlist-selected.svg @@ -0,0 +1 @@ +eventlist-selected \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/flash.svg b/dev/tekton/examples/example-bank/public/images/flash.svg new file mode 100755 index 0000000..63ec480 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/flash.svg @@ -0,0 +1,13 @@ + + + + + +Flash + diff --git a/dev/tekton/examples/example-bank/public/images/fuel.svg b/dev/tekton/examples/example-bank/public/images/fuel.svg new file mode 100755 index 0000000..6af8399 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/fuel.svg @@ -0,0 +1 @@ +fuelFUEL \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/groceries.svg b/dev/tekton/examples/example-bank/public/images/groceries.svg new file mode 100755 index 0000000..2eb008b --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/groceries.svg @@ -0,0 +1 @@ +groceriesGROCERIES \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/istio.svg b/dev/tekton/examples/example-bank/public/images/istio.svg new file mode 100755 index 0000000..81a6d03 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/istio.svg @@ -0,0 +1 @@ +istio \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/lightbulb.svg b/dev/tekton/examples/example-bank/public/images/lightbulb.svg new file mode 100755 index 0000000..eed3571 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/lightbulb.svg @@ -0,0 +1 @@ +lightbulb \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/loop.svg b/dev/tekton/examples/example-bank/public/images/loop.svg new file mode 100755 index 0000000..3af6846 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/loop.svg @@ -0,0 +1,10 @@ + + + + + +Loop + \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/loyaltylogo.svg b/dev/tekton/examples/example-bank/public/images/loyaltylogo.svg new file mode 100755 index 0000000..fe2c15a --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/loyaltylogo.svg @@ -0,0 +1,17 @@ + + + + +loyaltylogo + + + + + + diff --git a/dev/tekton/examples/example-bank/public/images/newyork.svg b/dev/tekton/examples/example-bank/public/images/newyork.svg new file mode 100755 index 0000000..efd1c0b --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/newyork.svg @@ -0,0 +1 @@ +newyork \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/programming.svg b/dev/tekton/examples/example-bank/public/images/programming.svg new file mode 100755 index 0000000..731a29e --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/programming.svg @@ -0,0 +1,15 @@ + + + + + + +Development + diff --git a/dev/tekton/examples/example-bank/public/images/reservation-deselected.svg b/dev/tekton/examples/example-bank/public/images/reservation-deselected.svg new file mode 100755 index 0000000..cc3d72e --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/reservation-deselected.svg @@ -0,0 +1 @@ +reservation-deselected \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/reservation-selected.svg b/dev/tekton/examples/example-bank/public/images/reservation-selected.svg new file mode 100755 index 0000000..0e824aa --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/reservation-selected.svg @@ -0,0 +1 @@ +reservation-selected \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/restaurant.svg b/dev/tekton/examples/example-bank/public/images/restaurant.svg new file mode 100755 index 0000000..7899049 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/restaurant.svg @@ -0,0 +1 @@ +restaurantRESTAURANT \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/rideshare.svg b/dev/tekton/examples/example-bank/public/images/rideshare.svg new file mode 100755 index 0000000..4474aa6 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/rideshare.svg @@ -0,0 +1 @@ +rideshareRIDE SHARE \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/secure.svg b/dev/tekton/examples/example-bank/public/images/secure.svg new file mode 100755 index 0000000..c71666d --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/secure.svg @@ -0,0 +1 @@ +secure \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/statistics-deselected.svg b/dev/tekton/examples/example-bank/public/images/statistics-deselected.svg new file mode 100755 index 0000000..17dcebe --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/statistics-deselected.svg @@ -0,0 +1 @@ +statsicongrey \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/statistics-selected.svg b/dev/tekton/examples/example-bank/public/images/statistics-selected.svg new file mode 100755 index 0000000..d8107d0 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/statistics-selected.svg @@ -0,0 +1 @@ +statsiconred \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/threat.svg b/dev/tekton/examples/example-bank/public/images/threat.svg new file mode 100755 index 0000000..4eb5221 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/threat.svg @@ -0,0 +1 @@ +threat \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/transactions-deselected.svg b/dev/tekton/examples/example-bank/public/images/transactions-deselected.svg new file mode 100755 index 0000000..45c6ed0 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/transactions-deselected.svg @@ -0,0 +1 @@ +crediticongrey \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/images/transactions-selected.svg b/dev/tekton/examples/example-bank/public/images/transactions-selected.svg new file mode 100755 index 0000000..7bd4cb8 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/images/transactions-selected.svg @@ -0,0 +1 @@ +crediticonred \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/index.html b/dev/tekton/examples/example-bank/public/index.html new file mode 100755 index 0000000..1c37acc --- /dev/null +++ b/dev/tekton/examples/example-bank/public/index.html @@ -0,0 +1,1236 @@ + + + + + Example Bank - Microservice Example on OpenShift V4 + + + + + + + + + +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dev/tekton/examples/example-bank/public/javascript/account.js b/dev/tekton/examples/example-bank/public/javascript/account.js new file mode 100755 index 0000000..6a4bc31 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/account.js @@ -0,0 +1,112 @@ +class Account extends HTMLElement { + + events = "" + points = "" + name = "" + + constructor() { + // Always call super first in constructor + super(); + + console.log('INITIALIZED ACCOUNT VIEW'); + var customElement = this; + + let template = document.getElementById('accountview'); + let templateContent = template.content; + + + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + + let sr = this.shadowRoot; + let logoutButton = sr.getElementById("logoutAccountButton") + logoutButton.addEventListener("click", e => { + this.logout(); + }) + + + let deleteButton = sr.getElementById("deleteAccountButton") + deleteButton.addEventListener("click", e => { + this.delete(); + }) + } + + logout() { + // clear cookies of tokens + document.cookie = "access_token=; Max-Age=0'" + document.cookie = "id_token=; Max-Age=0'" + + // clear local storage + localStorage.clear() + + var phoneview = document.getElementById("phoneview"); + var mobileview = phoneview.getMobileView(); + mobileview.innerHTML = ""; + var welcome = document.createElement('welcome-element') + welcome.setAttribute('mode','INTEGRATED') + mobileview.appendChild(welcome) + + phoneview.hideNavigation(); + } + + delete() { + let phoneview = document.getElementById("phoneview"); + let mobileview = phoneview.getMobileView(); + mobileview.innerHTML = ""; + let element = document.createElement('loading-spinner-element'); + element.setAttribute("status", "Deleting account...") + mobileview.appendChild(element) + + setTimeout(() => { + deleteUserProfile(loyalty.getCookie('access_token'), success => { + if (success) { + element.setAttribute("status", "Successfully deleted account. Logging out...") + setTimeout(() => { + this.logout(); + }, 2500) + } + }) + }, 1500) + } + + connectedCallback(){ + var customElement = this; + var sr = this.shadowRoot; + + /* where to make a data call for points/events */ + + this.mode = customElement.getAttribute('mode'); + this.events = customElement.getAttribute('events'); + this.points = customElement.getAttribute('points'); + + if (this.events == null) { + this.events = '-' + } + if (this.points == null) { + this.points = '-' + } + + this.name = customElement.getAttribute('name') || localStorage.getItem("loyaltyname") + + if(this.name == null){ + this.name = ""; + }else{ + console.log('SETTING NAME') + } + + + this.nameelement = sr.getElementById('name'); + this.nameelement.innerHTML = this.name; + } +} + +try { + customElements.define('account-element', Account); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/dev/tekton/examples/example-bank/public/javascript/asset.js b/dev/tekton/examples/example-bank/public/javascript/asset.js new file mode 100755 index 0000000..9673593 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/asset.js @@ -0,0 +1,45 @@ +class Asset extends HTMLElement { + + static get observedAttributes() { + return ['assetimage', 'text', 'link']; + } + + constructor(details) { + // Always call super first in constructor + super(); + + let template = document.getElementById('assetlink'); + let templateContent = template.content; + + this.details = details; + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + connectedCallback(){ + var customElement = this; + var sr = this.shadowRoot; + this.assetimage = sr.getElementById('assetimage'); + this.assetimage.src = customElement.getAttribute('assetimage'); + this.assettext = sr.getElementById('text'); + this.assettext.innerHTML = customElement.getAttribute('text'); + + let link = customElement.getAttribute('link') + if (link) { + this.assettext.addEventListener("click", e => { + window.location = link + }) + } + } +} + +try { + customElements.define('asset-element', Asset); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/javascript/clientHelpers/demoaccounts-devmode.js b/dev/tekton/examples/example-bank/public/javascript/clientHelpers/demoaccounts-devmode.js new file mode 100755 index 0000000..dd15c0d --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/clientHelpers/demoaccounts-devmode.js @@ -0,0 +1,30 @@ +function loginWithAppId(username, password, callback) { + let jsonBody = { + id_token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6ImFwcElkLTY4ZDI1ZDQ2LThmZGItNDhlMy1iODNkLTJhYzY2YzI5MTA2NC0yMDIwLTAxLTMxVDAwOjI5OjI4Ljg1NiIsInZlciI6NH0.eyJpc3MiOiJodHRwczovL3VzLXNvdXRoLmFwcGlkLmNsb3VkLmlibS5jb20vb2F1dGgvdjQvMTIzIiwiYXVkIjpbIjEyMyJdLCJleHAiOjAsInRlbmFudCI6IjY4ZDI1ZDQ2LThmZGItNDhlMy1iODNkLTJhYzY2YzI5MTA2NCIsImlhdCI6MCwiZW1haWwiOiJKb2huQFNtaXRoLm9yZyIsIm5hbWUiOiJKb2huIFNtaXRoIiwic3ViIjoiMTIzIiwicHJlZmVycmVkX3VzZXJuYW1lIjoiTGl0YUNhdnJhayIsImdpdmVuX25hbWUiOiJKb2huIiwiZmFtaWx5X25hbWUiOiJTbWl0aCIsImlkZW50aXRpZXMiOlt7InByb3ZpZGVyIjoiY2xvdWRfZGlyZWN0b3J5IiwiaWQiOiIxMjMifV0sImFtciI6WyJjbG91ZF9kaXJlY3RvcnkiXX0.ABC", + access_token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6ImFwcElkLTY4ZDI1ZDQ2LThmZGItNDhlMy1iODNkLTJhYzY2YzI5MTA2NC0yMDIwLTAxLTMxVDAwOjI5OjI4Ljg1NiIsInZlciI6NH0.eyJpc3MiOiJodHRwczovL3VzLXNvdXRoLmFwcGlkLmNsb3VkLmlibS5jb20vb2F1dGgvdjQvMTIzIiwiZXhwIjowLCJhdWQiOlsiMTIzIl0sInN1YiI6IjEyMyIsImFtciI6WyJjbG91ZF9kaXJlY3RvcnkiXSwiaWF0IjowLCJ0ZW5hbnQiOiIxMjMiLCJzY29wZSI6Im9wZW5pZCBhcHBpZF9kZWZhdWx0IGFwcGlkX3JlYWR1c2VyYXR0ciBhcHBpZF9yZWFkcHJvZmlsZSBhcHBpZF93cml0ZXVzZXJhdHRyIGFwcGlkX2F1dGhlbnRpY2F0ZWQifQ.ABC" + } + + document.cookie = 'access_token=' + jsonBody.access_token + ';' + document.cookie = 'id_token=' + jsonBody.id_token+ ';' + callback(jsonBody) +} + +function getRandomUser(callback) { + let text = "John Smith" + let name = text.split(' ') + let firstname = name[0] + let surname = name[1] + let password = name[0] + name[1] + let email = name[0] + "@" + name[1] + ".org" + callback(firstname, surname, password, email) +} + +function createAccountAppId(firstname, lastname, password, email, callback) { + let json = {} + json.status = "user created successfully" + callback(json) +} + +function getAllUsers(callback) { + callback(['JohnSmith']) +} diff --git a/dev/tekton/examples/example-bank/public/javascript/clientHelpers/demoaccounts.js b/dev/tekton/examples/example-bank/public/javascript/clientHelpers/demoaccounts.js new file mode 100755 index 0000000..53f569e --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/clientHelpers/demoaccounts.js @@ -0,0 +1,67 @@ +function loginWithAppId(username, password, callback) { + let jsonBody = {username, password} + + fetch("/demo/login", { + method: 'POST', + headers: { + 'Content-type': 'application/json', + }, + body: JSON.stringify(jsonBody) + }).then((response) => { + console.log(response) + return response.json(); + }).then((json) => { + console.log(json) + callback(json) + }).catch((error) => { + callback(null) + }) +} + +function getRandomUser(callback) { + fetch("/demo/random_user") + .then((response) => { + return response.text() + }) + .then((text) => { + let name = text.split(' ') + let firstname = name[0] + let surname = name[1] + let password = name[0] + name[1] + let email = name[0] + "@" + name[1] + ".org" + callback(firstname, surname, password, email) + }) +} + +function createAccountAppId(firstname, lastname, password, email, callback) { + let jsonRequestBody = {} + jsonRequestBody.firstName = firstname + jsonRequestBody.lastName = lastname + jsonRequestBody.password = password + jsonRequestBody.email = email + + fetch('/demo/create_account', { + method: 'POST', + headers: { + 'Content-type': 'application/json' + }, + body: JSON.stringify(jsonRequestBody) + }).then((response) => { + console.log(response) + return response.json() + }).then((json) => { + callback(json) + }) +} + +function getAllUsers(callback) { + fetch('/demo/get_all_users') + .then((response) => { + return response.json() + }).then((users) => { + callback(users) + }) +} + +// sample appid account +// loginWithAppId("RolandeColla", "RolandeColla") diff --git a/dev/tekton/examples/example-bank/public/javascript/clientHelpers/libertyclient-devmode.js b/dev/tekton/examples/example-bank/public/javascript/clientHelpers/libertyclient-devmode.js new file mode 100755 index 0000000..a46b441 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/clientHelpers/libertyclient-devmode.js @@ -0,0 +1,137 @@ +let SECURE_USER_BACKEND_URL='/proxy_user' +let SECURE_EVENT_BACKEND_URL='/proxy_transaction' +// DEVMODE +let mode = 'INTEGRATED' +function createProfile(access_token, callback) { + callback(true) +} + +function deleteUserProfile(access_token, callback) { + callback(true) +} + +function getTransactions(access_token, callback) { + let testdata = [{ + "amount": 20, + "category": "Cafe", + "date": "2020-04-27T22:09:39.183Z", + "pointsEarned": 20, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Starbucks", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + }, + { + "amount": 15, + "category": "Carshare", + "date": "2020-04-27T22:09:39.183Z", + "pointsEarned":15, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Uber", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + }, + { + "amount": 70, + "category": "Gas", + "date": "2020-04-27T22:09:39.183Z", + "pointsEarned": 100, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Esso", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + }, + { + "amount": 20, + "category": "Meals", + "date": "2020-04-27T22:09:39.183Z", + "pointsEarned":20, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Sweetgreen", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + },, + { + "amount": 127, + "category": "Groceries", + "date": "2020-04-27T22:09:39.183Z", + "pointsEarned": 200, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Whole Foods", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + }, + { + "amount": 34, + "category": "Meals", + "date": "2020-04-17T22:09:39.183Z", + "pointsEarned":34, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Shake Shack", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + }, + , + { + "amount": 20, + "category": "Meals", + "date": "2020-04-18T22:09:39.183Z", + "pointsEarned":20, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Sweetgreen", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + },, + { + "amount": 127, + "category": "Groceries", + "date": "2020-04-27T22:09:39.183Z", + "pointsEarned": 200, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Whole Foods", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + }, + { + "amount": 5.75, + "category": "Cafe", + "date": "2020-04-28T22:09:39.183Z", + "pointsEarned":34, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Starbucks", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + } + ] + callback(null, testdata) +} + +function getSpending(access_token, callback) { + var data = [ + { + "category": "Cafe", + "amount": 45 + }, + { + "category": "Groceries", + "amount": 239 + }, + { + "category": "Fuel", + "amount": 75 + }, + { + "category": "Ride Share", + "amount": 35 + }, + { + "category": "Restaurant", + "amount": 90 + } + ]; + callback(null, data) +} + +function createTransaction(access_token, transactionName, category, amount, callback) { + callback(true) +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/javascript/clientHelpers/libertyclient.js b/dev/tekton/examples/example-bank/public/javascript/clientHelpers/libertyclient.js new file mode 100755 index 0000000..b80e742 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/clientHelpers/libertyclient.js @@ -0,0 +1,227 @@ +let SECURE_USER_BACKEND_URL='/proxy_user' +let SECURE_EVENT_BACKEND_URL='/proxy_transaction' + +function createProfile(access_token, callback) { + let jsonRequestBody = {} + jsonRequestBody.consentGiven = true + + fetch(SECURE_USER_BACKEND_URL + '/bank/v1/users', { + method: 'POST', + headers: { + 'Authorization': 'Bearer ' + access_token, + 'Content-type': 'application/json' + }, + body: JSON.stringify(jsonRequestBody) + }).then((response) => { + if (response.status == '204') { + callback(true) + } else { + callback(false) + } + }) +} + +function getUserStats(access_token, callback) { + fetch(SECURE_USER_BACKEND_URL + '/bank/v1/userEvents/self/info', { + method: 'GET', + headers: { + 'Authorization': 'Bearer ' + access_token + } + }).then(async (response) => { + if (response.status == '200') { + return response.json() + } else { + let responsetext = await response.text() + console.log(responsetext) + throw responsetext + } + }).then((json) => { + callback(null, json.eventCount, json.pointsEarned) + }).catch(e => { + console.log(e) + callback(e, null, null) + }) +} + +function getUserEvents(access_token, callback) { + fetch(SECURE_USER_BACKEND_URL + '/bank/v1/userEvents/self', { + method: 'GET', + headers: { + 'Authorization': 'Bearer ' + access_token + } + }).then(async (response) => { + if (response.status == '200') { + return response.json() + } else { + let responsetext = await response.text() + console.log(responsetext) + throw responsetext + } + }).then((events) => { + callback(null, events) + }).catch(e => { + console.log(e) + callback(e, null) + }) +} + +function getUserEventsWithData(access_token, callback) { + getUserEvents(access_token, (err, events) => { + let queryParams = '' + + if (events.length == 0) { + callback(null, events) + } else { + events.forEach(element => { + queryParams += 'id=' + element + '&' + }); + + fetch(SECURE_EVENT_BACKEND_URL + '/bank/v1/events?' + queryParams, { + method: 'GET', + headers: { + 'Authorization': 'Bearer ' + access_token + } + }).then(async (response) => { + console.log(response) + if (response.status == '200') { + return response.json() + } else { + let responsetext = await response.text() + console.log(responsetext) + throw responsetext + } + }).then((events) => { + callback(null, events) + }).catch(e => { + callback(e, null) + }) + + } + }) +} + +function getEvents(access_token, callback) { + fetch(SECURE_EVENT_BACKEND_URL + '/bank/v1/events', { + method: 'GET', + headers: { + 'Authorization': 'Bearer ' + access_token + } + }).then(async (response) => { + if (response.status == '200') { + return response.json() + } else { + let responsetext = await response.text() + console.log(responsetext) + throw responsetext + } + }).then((events) => { + callback(null, events) + }).catch(e => { + console.log(e) + callback(e, null) + }) +} + +function checkInEvent(access_token, eventId, callback) { + let jsonRequestBody = {} + jsonRequestBody.eventId = eventId + + fetch(SECURE_USER_BACKEND_URL + '/bank/v1/userEvents', { + method: 'POST', + headers: { + 'Authorization': 'Bearer ' + access_token, + 'Content-type': 'application/json' + }, + body: JSON.stringify(jsonRequestBody) + }).then((response) => { + console.log(response) + if (response.status == '204') { + callback(true) + } else { + callback(false) + } + }) +} + +function deleteUserProfile(access_token, callback) { + fetch(SECURE_USER_BACKEND_URL + '/bank/v1/users/self', { + method: 'DELETE', + headers: { + 'Authorization': 'Bearer ' + access_token + } + }).then((response) => { + console.log(response) + if (response.status == '204') { + callback(true) + } else { + callback(false) + } + }) +} + +function getTransactions(access_token, callback) { + fetch(SECURE_EVENT_BACKEND_URL + '/bank/v1/transactions', { + method: 'GET', + headers: { + 'Authorization': 'Bearer ' + access_token + } + }).then(async (response) => { + if (response.status == '200') { + return response.json() + } else { + let responsetext = await response.text() + console.log(responsetext) + throw responsetext + } + }).then((transactions) => { + callback(null, transactions) + }).catch(e => { + console.log(e) + callback(e, null) + }) +} + +function getSpending(access_token, callback) { + fetch(SECURE_EVENT_BACKEND_URL + '/bank/v1/transactions/spending', { + method: 'GET', + headers: { + 'Authorization': 'Bearer ' + access_token + } + }).then(async (response) => { + if (response.status == '200') { + return response.json() + } else { + let responsetext = await response.text() + console.log(responsetext) + throw responsetext + } + }).then((transactions) => { + callback(null, transactions) + }).catch(e => { + console.log(e) + callback(e, null) + }) +} + +function createTransaction(access_token, transactionName, category, amount, callback) { + let jsonRequestBody = { transactionName, category, amount } + + fetch(SECURE_EVENT_BACKEND_URL + '/bank/v1/transactions', { + method: 'POST', + headers: { + 'Authorization': 'Bearer ' + access_token, + 'Content-type': 'application/json' + }, + body: JSON.stringify(jsonRequestBody) + }).then(response => { + console.log(response) + if (response.status == '204') { + callback(true) + } else { + callback(false) + } + }).catch(e => { + console.log(e) + callback(false) + }) +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/javascript/clientHelpers/localstoragehelper.js b/dev/tekton/examples/example-bank/public/javascript/clientHelpers/localstoragehelper.js new file mode 100755 index 0000000..9ca51db --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/clientHelpers/localstoragehelper.js @@ -0,0 +1,31 @@ +function attendEvent(userSubject, event) { + let localStorageId = userSubject + '-events' + let userEvents = localStorage.getItem(localStorageId) + + if (userEvents == null || userEvents == "") { + let events = [] + events.push(event) + localStorage.setItem(userSubject + '-events', JSON.stringify(events)) + } else { + let arrayOfEvents = JSON.parse(userEvents) + if (arrayOfEvents.filter(e => e.eventId === event.eventId).length > 0) { + console.log('event exists in local storage') + } else { + arrayOfEvents.push(event) + } + localStorage.setItem(localStorageId, JSON.stringify(arrayOfEvents)) + } +} + +function getStoredEvents(userSubject) { + let storedEventsString = localStorage.getItem(userSubject + '-events') + if (storedEventsString == null || storedEventsString == "") return null + return JSON.parse(storedEventsString) +} + +function removeStoredEvent(userSubject, eventId) { + let localStorageId = userSubject + '-events' + let storedEvents = getStoredEvents(userSubject) + storedEvents = storedEvents.filter(e => e.eventId != eventId) + localStorage.setItem(localStorageId, JSON.stringify(storedEvents)) +} diff --git a/dev/tekton/examples/example-bank/public/javascript/home.js b/dev/tekton/examples/example-bank/public/javascript/home.js new file mode 100755 index 0000000..321e8b9 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/home.js @@ -0,0 +1,89 @@ +class Home extends HTMLElement { + + constructor() { + super(); + + console.log('INITIALIZING HOMESCREEN'); + + let template = document.getElementById('homescreen'); + let templateContent = template.content; + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + generateTransaction(access_token, shadowRoot, tile){ + var limit = tile.detail.eventData.limit * 100; + var base = tile.detail.eventData.base * 100; + + var charge = Math.floor(Math.random() * (limit - base + 1)) + base; + charge=charge/100; + charge=charge.toFixed(2); + + var entity = tile.detail.eventData.name.toUpperCase() + + console.log('CREATING A CREDIT CARD CHARGE OF $' + charge + ' ON ' + entity ); + + createTransaction(access_token, entity, entity, charge, + (success) => { + if (success) { + let text = 'CREDIT CARD $' + charge + ' ON ' + entity ; + this.showNotification(shadowRoot, text) + } else { + this.showNotification(shadowRoot, "Failed creating transaction. Please check logs") + } + }) + } + + showNotification(shadowRoot, notificationText) { + var notifcationArea = shadowRoot.getElementById('notificationarea'); + notifcationArea.innerHTML = ''; + + var message = document.createElement('div'); + message.innerHTML = notificationText + message.className = 'notification'; + notifcationArea.appendChild(message); + + setTimeout(function(){ + message.remove() + }, 2000); + } + + connectedCallback() { + + var sr = this.shadowRoot; + + var tiles = sr.getElementById('APPTILES'); + + var homescreen = this; + + tiles.addEventListener('APPTILE', e => { + console.log('HOMESCREEN RECIEVED EVENT FROM TILE: ' + e.detail.eventData.name.toLocaleUpperCase()); + + switch(e.detail.eventData.name){ + + case 'bank': + sr.host.parentElement.innerHTML = ''; + break; + + default: + let access_token = loyalty.getCookie('access_token') + if (access_token != "") { + homescreen.generateTransaction(access_token, sr, e) + } else { + homescreen.showNotification(sr, 'Please log in using the Bank app.') + } + break; + } + }); + } +} + +try { + customElements.define('homescreen-element', Home); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/dev/tekton/examples/example-bank/public/javascript/login.js b/dev/tekton/examples/example-bank/public/javascript/login.js new file mode 100755 index 0000000..bda84cf --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/login.js @@ -0,0 +1,148 @@ +class Login extends HTMLElement { + + static get observedAttributes() { + return ['firstname', 'surname']; + } + + clickCheck(){ + console.log('login.clickCheck'); + if(this.checkbox.checked){ + this.createAccountButton.disabled = false; + }else{ + this.createAccountButton.disabled = true; + } + } + + createAccount() { + console.log('login.createAccount'); + + /* where to make a data call for points/events */ + let sr = this.shadowRoot + var firstname = sr.getElementById('firstname').innerHTML; + var surname = sr.getElementById('surname').innerHTML; + var email = sr.getElementById('email').innerHTML; + + var phoneview = document.getElementById("phoneview"); + var mobileview = phoneview.getMobileView(); + this.MODE = this.getAttribute('mode') + let previousMobileView = mobileview.innerHTML + mobileview.innerHTML = ""; + + // create loading spinner first + var element = document.createElement('loading-spinner-element'); + element.setAttribute("status", "Creating account...") + mobileview.appendChild(element) + + createAccountAppId(firstname, surname, firstname + "" + surname, email, (json) => { + console.log(json) + if (json.status == "user created successfully") { + + element.setAttribute("status", "Logging in...") + let usernamepassword = firstname + "" + surname + loginWithAppId(usernamepassword, usernamepassword, (jsonWithTokens) => { + // when creation of account + // and login complete, create the profile + element.setAttribute("status", "Creating user profile...") + createProfile(jsonWithTokens.access_token, success => { + // then show account view + if (success) { + this.createTransactionsView(firstname, surname) + } + // else edge case when failed to create user profile + }) + // edge case when unable to sign in + }) + } else { + // edge case when failed to register with app id + element.setAttribute("status", json.message) + setTimeout(() => { + mobileview.innerHTML = previousMobileView + }, 2000) + } + }) + } + + createTransactionsView(firstname, surname) { + var accountinfo ={ + firstname:firstname, + surname: surname + } + + var fullname = accountinfo.firstname + ' ' + accountinfo.surname + + var phoneview = document.getElementById("phoneview"); + var mobileview = phoneview.getMobileView(); + let element = document.createElement('transactions-element') + element.setAttribute('name', fullname); + element.setAttribute('mode', this.MODE); + mobileview.innerHTML = ""; + mobileview.appendChild(element); + + localStorage.setItem("loyaltyname", fullname); + + phoneview.showNavigation(); + } + + constructor() { + // Always call super first in constructor + super(); + + let template = document.getElementById('loginview'); + let templateContent = template.content; + + const shadow = this.attachShadow({mode: 'open'}) + .appendChild(templateContent.cloneNode(true)); + + var sr = this.shadowRoot; + + this.checkbox = sr.getElementById('gdprcheck'); + + this.checkbox.addEventListener('click', e => { + this.clickCheck(); + }); + + this.createAccountButton = sr.getElementById('createAccountButton'); + + this.createAccountButton.addEventListener('click', e =>{ + this.createAccount(); + }); + + } + + connectedCallback(){ + + var ids = ['firstname', 'surname', 'password', 'username', 'email']; + + var sr = this.shadowRoot; + var customElement = this; + + ids.forEach(function(id){ + var element = sr.getElementById(id); + var data = customElement.getAttribute(id); + element.innerHTML = data; + }) + let firstnameDiv = sr.getElementById('firstname') + let surnameDiv = sr.getElementById('surname') + let usernameDiv = sr.getElementById('username') + let passwordDiv = sr.getElementById('password') + let emailDiv = sr.getElementById('email') + firstnameDiv.addEventListener('input', function () { + usernameDiv.innerHTML = this.innerHTML + surnameDiv.innerHTML + passwordDiv.innerHTML = this.innerHTML.replace(/./g,'*') + surnameDiv.innerHTML.replace(/./g,'*') + emailDiv.innerHTML = this.innerHTML + "@" + surnameDiv.innerHTML + ".org" + }) + surnameDiv.addEventListener('input', function () { + usernameDiv.innerHTML = firstnameDiv.innerHTML + this.innerHTML + passwordDiv.innerHTML = firstnameDiv.innerHTML.replace(/./g,'*') + this.innerHTML.replace(/./g,'*') + emailDiv.innerHTML = firstnameDiv.innerHTML + "@" + this.innerHTML + ".org" + }) + } +} + +try { + customElements.define('login-element', Login); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/dev/tekton/examples/example-bank/public/javascript/loyalty.js b/dev/tekton/examples/example-bank/public/javascript/loyalty.js new file mode 100755 index 0000000..4785266 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/loyalty.js @@ -0,0 +1,91 @@ +class Loyalty { + + mobileview; + + constructor() { + + console.log('INITIALIZING LOYALTY APP'); + + var phoneview = document.getElementById("phoneview"); + this.mobileview = phoneview.getMobileView(); + + // if cookie exists - then user is logged in + // navigate to account section + + // if(this.mode=='INTEGRATED'){ + // if (this.getCookie('access_token') != "" && this.getCookie('id_token') != "") { + // let id_object = this.parseJwt(this.getCookie('id_token')) + // console.log(id_object) + + // var accountinfo = { + // firstname: id_object.given_name, + // surname: id_object.family_name + // } + + // var fullname = accountinfo.firstname + ' ' + accountinfo.surname + + // this.mobileview.innerHTML = ""; + + // let element = document.createElement('transactions-element') + // element.setAttribute('name', fullname); + // element.setAttribute('mode', this.mode); + // this.mobileview.appendChild(element); + + // localStorage.setItem("loyaltyname", fullname); + // console.log(phoneview) + // phoneview.showNavigation(); + // } + // } + } + + signup() { + console.log('loyalty.signup'); + + // var phoneview = document.getElementById("phoneview"); + // var mobileview = phoneview.getMobileView(); + this.mobileview.innerHTML = ""; + + var element = document.createElement('login-element'); + getRandomUser((firstname, surname, password, email) => { + element.setAttribute('firstname', firstname); + element.setAttribute('surname', surname); + element.setAttribute('password', password); + element.setAttribute('email', email); + element.setAttribute('username', firstname + surname); + + this.mobileview.appendChild(element); + }) + + /* same as mobileview.innerHTML = + '' */ + } + + parseJwt (token) { + var base64Url = token.split('.')[1]; + var base64 = base64Url.replace('/-/g', '+').replace('/_/g', '/'); + var jsonPayload = decodeURIComponent(atob(base64).split('').map(function(c) { + return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2); + }).join('')); + + return JSON.parse(jsonPayload); + }; + + getCookie(cname) { + var name = cname + "="; + var decodedCookie = decodeURIComponent(document.cookie); + var ca = decodedCookie.split(';'); + for(var i = 0; i { + + console.log(e) + + var id = e.detail.eventData.id; + + // console.log('HOMESCREEN RECIEVED EVENT FROM NAV BUTTON: ' + id.toLocaleUpperCase()); + + this.setAllButtonsDisabled(); + + var button = sr.getElementById(id); + button.setEnabled(); + navelement.activeview = id; + + var mobileview = this.getMobileView(); + mobileview.innerHTML = "<" + id + "-element>"; + }); + } +} + +try { + customElements.define('navigation-element', Navigation); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/dev/tekton/examples/example-bank/public/javascript/navigationbutton.js b/dev/tekton/examples/example-bank/public/javascript/navigationbutton.js new file mode 100755 index 0000000..3e8b90f --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/navigationbutton.js @@ -0,0 +1,79 @@ +class NavigationButton extends HTMLElement { + + + SELECTEDSUFFIX = '-selected.svg'; + DESELECTEDSUFFIX = '-deselected.svg' + + static get observedAttributes() { + return ['imagename','viewname','mode']; + } + + constructor() { + super(); + + let template = document.getElementById('navigationbutton'); + let templateContent = template.content; + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + setMode(mode){ + this.mode = mode; + + var imagestring = this.imagename; + + if(this.mode=='active'){ + imagestring = imagestring + this.SELECTEDSUFFIX; + }else{ + imagestring = imagestring + this.DESELECTEDSUFFIX; + } + + this.buttonimage.src = './images/' + imagestring; + } + + setEnabled(){ + this.setMode('active'); + } + + setDisabled(){ + this.setMode('inactive'); + } + + connectedCallback(){ + var customElement = this; + var sr = this.shadowRoot; + this.buttonimage = sr.getElementById('navbuttonimage'); + this.button = sr.getElementById('navbutton'); + + // this.mode = customElement.getAttribute('mode'); + this.viewname = customElement.getAttribute('viewname'); + this.imagename = customElement.getAttribute('imagename') + + this.setMode(customElement.getAttribute('mode')); + + this.button.onclick = function () { + console.log('CLICKING NAV BUTTON: ' + customElement.viewname.toLocaleUpperCase()); + var customEvent = new CustomEvent( 'NAV', { + detail: { + eventData: {"id":customElement.viewname} + }, + bubbles: true + }); + customElement.dispatchEvent(customEvent); + } + + console.log('ADDING NAVIGATION BUTTON : ' + this.viewname.toLocaleUpperCase()); + } +} + + +try { + customElements.define('navigationbutton-element', NavigationButton); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/javascript/phone.js b/dev/tekton/examples/example-bank/public/javascript/phone.js new file mode 100755 index 0000000..e47658e --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/phone.js @@ -0,0 +1,54 @@ +class Phone extends HTMLElement { + + constructor() { + super(); + + console.log('INITIALIZING MOBILE PHONE'); + + let template = document.getElementById('phone'); + let templateContent = template.content; + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + getMobileView(){ + var sr = this.shadowRoot; + var mobileview = sr.getElementById('mobileview'); + return mobileview; + } + + showNavigation(){ + var sr = this.shadowRoot; + var nav = sr.getElementById("mobilenavigation"); + nav.style.display = "flex"; + } + + hideNavigation(){ + var sr = this.shadowRoot; + var nav = sr.getElementById("mobilenavigation"); + nav.style.display = "none"; + } + + connectedCallback() { + var sr = this.shadowRoot; + var phone = this; + var basebutton = sr.getElementById('basebutton'); + var mobileview = sr.getElementById('mobileview'); + var navigation = sr.getElementById('mobilenavigation'); + var apptiles = sr.getElementById('APPTILES'); + basebutton.addEventListener('click', e => { + mobileview.innerHTML = ''; + phone.hideNavigation(); + }); + } +} + +try { + customElements.define('phone-element', Phone); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/dev/tekton/examples/example-bank/public/javascript/spinner.js b/dev/tekton/examples/example-bank/public/javascript/spinner.js new file mode 100755 index 0000000..e864e89 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/spinner.js @@ -0,0 +1,35 @@ +class LoadingSpinner extends HTMLElement { + + static get observedAttributes() { return ['status']; } + + constructor() { + // Always call super first in constructor + super(); + + let template = document.getElementById('loadingspinner'); + let templateContent = template.content; + + console.log('INITIALIZING SPINNER') + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + attributeChangedCallback(name, oldValue, newValue) { + // if status attribute is set, change to custom status + console.log("ATTRIBUTE CHANGED") + if (name == "status") { + this.shadowRoot.getElementById("status").innerHTML = newValue + } + } +} + +try { + customElements.define('loading-spinner-element', LoadingSpinner); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/dev/tekton/examples/example-bank/public/javascript/statistics.js b/dev/tekton/examples/example-bank/public/javascript/statistics.js new file mode 100755 index 0000000..a36e225 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/statistics.js @@ -0,0 +1,72 @@ +class Statistics extends HTMLElement { + + events = "" + points = "" + name = "" + + constructor() { + // Always call super first in constructor + super(); + + console.log('INITIALIZED ACCOUNT VIEW'); + var customElement = this; + + let template = document.getElementById('statistics'); + let templateContent = template.content; + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + connectedCallback(){ + + console.log('INITIALIZING ANALYSIS'); + + var sr = this.shadowRoot; + var ctx = sr.getElementById('myChart'); + getSpending(loyalty.getCookie('access_token'), (err, spending) => { + if (err == null) { + console.log(spending) + let labels = [] + let values = [] + + spending.forEach(entry => { + labels.push(entry.category) + values.push(entry.amount) + }) + + let data = { + labels: labels, + datasets: [{ + label: 'Spending Breakdown', + data: values, + backgroundColor: [ + 'rgba(178, 35, 60, 1.0)', + 'rgba(229, 45, 78, 1.0)', + 'rgba(236, 108, 131, 1.0)', + 'rgba(244, 171, 184, 1.0)', + 'rgba(252, 234, 237, 1.0)', + 'rgba(102, 20, 34, 1.0)' + ] + }] + }; + + let myDoughnutChart = new Chart(ctx, { + type: 'doughnut', + data: data + }); + } + + }) + } +} + +try { + customElements.define('statistics-element', Statistics); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/dev/tekton/examples/example-bank/public/javascript/tile.js b/dev/tekton/examples/example-bank/public/javascript/tile.js new file mode 100755 index 0000000..0c2febf --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/tile.js @@ -0,0 +1,50 @@ +class Tile extends HTMLElement { + + static get observedAttributes() { + return ['tileimage', 'tiletext', 'limit', 'base']; + } + + constructor() { + super(); + + let template = document.getElementById('tile'); + let templateContent = template.content; + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + connectedCallback(){ + var customElement = this; + var sr = this.shadowRoot; + this.tileimage = sr.getElementById('buttonImage'); + this.tileimage.src = customElement.getAttribute('tileimage'); + this.tiletext = customElement.getAttribute('tiletext'); + this.limit=customElement.getAttribute('ceiling'); + this.base=customElement.getAttribute('base'); + this.button = sr.getElementById('tileButton'); + this.button.onclick = function () { + console.log('CLICKING TILE: ' + customElement.tiletext.toLocaleUpperCase()); + var customEvent = new CustomEvent( 'APPTILE', { + detail: { + eventData: {"name":customElement.tiletext,"limit":customElement.limit,"base":customElement.base} + }, + bubbles: true + }); + customElement.dispatchEvent(customEvent); + + } + + console.log('ADDING TILE : ' + this.tiletext.toLocaleUpperCase()); + } +} + +try { + customElements.define('tile-element', Tile); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/javascript/transaction.js b/dev/tekton/examples/example-bank/public/javascript/transaction.js new file mode 100755 index 0000000..fd61c86 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/transaction.js @@ -0,0 +1,54 @@ +class Transaction extends HTMLElement { + + observables = ['vendor', 'date', 'amount', 'points']; + + static get observedAttributes() { + return observables; + } + + constructor() { + super(); + + let template = document.getElementById('transaction'); + let templateContent = template.content; + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + connectedCallback() { + + var sr = this.shadowRoot; + + var transactionComponent = this; + + console.log('LOADING TRANSACTION DATA'); + + this.observables.forEach(function(id){ + var element = sr.getElementById(id); + element.innerHTML = transactionComponent.getAttribute(id); + }) + + + + // eventscomponent.addEventListener(eventid, e => { + // console.log(e.detail) + // let id_object = loyalty.parseJwt(loyalty.getCookie('id_token')) + // attendEvent(id_object.sub, e.detail.eventData) + // // re-attach this component + // let container = this.parentElement + // let content = container.innerHTML + // container.innerHTML = content + // }); + } +} + +try { + customElements.define('transaction-element', Transaction); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/dev/tekton/examples/example-bank/public/javascript/transactions.js b/dev/tekton/examples/example-bank/public/javascript/transactions.js new file mode 100755 index 0000000..741bcfb --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/transactions.js @@ -0,0 +1,94 @@ +class Transactions extends HTMLElement { + + balance = 0; + points = 0; + + constructor() { + super(); + + let template = document.getElementById('transactions'); + let templateContent = template.content; + + console.log('INITIALIZING TRANSACTIONS VIEW') + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + createTransaction(vendor, date, amount, points){ + var transaction = document.createElement('transaction-element'); + transaction.setAttribute('vendor', vendor); + transaction.setAttribute('date', date); + if (amount != '-') amount = amount.toFixed(2); + if (points != '-') points = points.toFixed(2); + transaction.setAttribute('amount', amount); + transaction.setAttribute('points',points); + return transaction; + } + + connectedCallback() { + var sr = this.shadowRoot; + var transactionlist = sr.getElementById('TRANSACTIONLIST'); + var balance = sr.getElementById('BALANCE'); + var points = sr.getElementById('POINTS'); + var transactionComponent = this; + + getTransactions(loyalty.getCookie('access_token'), (err, _transactions) => { + console.log(_transactions) + if (err == null) { + let transactions = _transactions.sort((a,b) => new Date(b.date) -new Date(a.date)) + transactions.forEach(transaction => { + const date = new Date(transaction.date) + const year = new Intl.DateTimeFormat('en', { year: 'numeric' }).format(date) + const month = new Intl.DateTimeFormat('en', { month: 'short' }).format(date) + const day = new Intl.DateTimeFormat('en', { day: '2-digit' }).format(date) + if (transaction.amount != null || transaction.amount != undefined) transactionComponent.balance += transaction.amount + if (transaction.pointsEarned != null || transaction.pointsEarned != undefined) transactionComponent.points += transaction.pointsEarned + if (transaction.amount == null || transaction.amount == undefined) transaction.amount = '-' + if (transaction.pointsEarned == null || transaction.pointsEarned == undefined) transaction.pointsEarned = '-' + let transactionElement = transactionComponent.createTransaction(transaction.transactionName, month + " " + day + " " + year, transaction.amount, transaction.pointsEarned) + transactionlist.appendChild(transactionElement) + }) + + balance.innerHTML = '$' + transactionComponent.balance.toFixed(2); + points.innerHTML = transactionComponent.points.toFixed(2); + } else if (err == 'User not registered') { + let phoneview = document.getElementById("phoneview"); + let mobileview = phoneview.getMobileView(); + mobileview.innerHTML = ""; + let element = document.createElement('loading-spinner-element'); + element.setAttribute("status", "User is marked for deletion...") + mobileview.appendChild(element) + phoneview.hideNavigation(); + + setTimeout(() => { + element.setAttribute("status", "Logging out...") + setTimeout(() => { + // clear cookies of tokens + document.cookie = "access_token=; Max-Age=0'" + document.cookie = "id_token=; Max-Age=0'" + + // clear local storage + localStorage.clear() + + mobileview.innerHTML = ""; + var welcome = document.createElement('welcome-element') + welcome.setAttribute('mode','INTEGRATED') + mobileview.appendChild(welcome) + + }, 2500) + }, 2000) + } + }) + } +} + +try { + customElements.define('transactions-element', Transactions); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/dev/tekton/examples/example-bank/public/javascript/welcome.js b/dev/tekton/examples/example-bank/public/javascript/welcome.js new file mode 100755 index 0000000..b19a1a7 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/javascript/welcome.js @@ -0,0 +1,108 @@ +class Welcome extends HTMLElement { + + constructor() { + + super(); + + console.log('INITIALIZING WELCOME VIEW'); + + let template = document.getElementById('welcomeview'); + let templateContent = template.content; + + const shadow = this.attachShadow({mode: 'open'}) + .appendChild(templateContent.cloneNode(true)); + + } + + connectedCallback() { + + let sr = this.shadowRoot; + + let selectUserInput = sr.getElementById("usernameselect") + let signinButton = sr.getElementById("signin") + + var phoneview = document.getElementById("phoneview"); + var mobileview = phoneview.getMobileView(); + + if (loyalty.getCookie('access_token') != "" && loyalty.getCookie('id_token') != "") { + let id_object = loyalty.parseJwt(loyalty.getCookie('id_token')) + console.log(id_object) + + var accountinfo = { + firstname: id_object.given_name, + surname: id_object.family_name + } + + var fullname = accountinfo.firstname + ' ' + accountinfo.surname + + mobileview.innerHTML = ""; + + let element = document.createElement('transactions-element') + element.setAttribute('name', fullname); + mobileview.appendChild(element); + + localStorage.setItem("loyaltyname", fullname); + + phoneview.showNavigation(); + } else { + getAllUsers((users) => { + users.forEach(user => { + var option = document.createElement("option"); + option.text = user + selectUserInput.add(option) + }); + }) + } + + signinButton.addEventListener("click", e => { + this.signin(selectUserInput.value, selectUserInput.value) + }) + } + + + signin(username, password) { + let sr = this.shadowRoot; + + var mobileview = sr.host.parentElement; + mobileview.innerHTML = ""; + + // create loading spinner first + var element = document.createElement('loading-spinner-element'); + element.setAttribute("status", "Logging in...") + mobileview.appendChild(element) + + loginWithAppId(username, password, (jsonWebToken) => { + // when login complete, + // re-initialize app? + new Loyalty(this.mode); + let id_object = loyalty.parseJwt(jsonWebToken.id_token) + console.log(id_object) + + var accountinfo = { + firstname: id_object.given_name, + surname: id_object.family_name + } + + var fullname = accountinfo.firstname + ' ' + accountinfo.surname + + mobileview.innerHTML = ""; + + let element = document.createElement('transactions-element') + element.setAttribute('name', fullname); + mobileview.appendChild(element); + + localStorage.setItem("loyaltyname", fullname); + + phoneview.showNavigation(); + // edge case when unable to sign in + }) + } +} + +try { + customElements.define('welcome-element', Welcome); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/dev/tekton/examples/example-bank/public/schedule.html b/dev/tekton/examples/example-bank/public/schedule.html new file mode 100755 index 0000000..d4641e7 --- /dev/null +++ b/dev/tekton/examples/example-bank/public/schedule.html @@ -0,0 +1 @@ +View the Cloud Dev Conf schedule & directory. \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/style/loyalty.css b/dev/tekton/examples/example-bank/public/style/loyalty.css new file mode 100755 index 0000000..fb54a2a --- /dev/null +++ b/dev/tekton/examples/example-bank/public/style/loyalty.css @@ -0,0 +1,132 @@ +:root { + --loyalty-background-color: white; + --loyalty-app-color: white; + --loyalty-text-color: #494A4B; + --loyalty-button-color: #FF7E00; + --loyalty-highlight-color: #FF002E; + --loyalty-phone-color: #39687E; + --loyalty-sensor-color: #88a4b1; + --loyalty-divide-color: aliceblue; + --loyalty-highlight-color: #fff2e5; +} + +.loyalty { + padding: 0; + margin: 0; + background-color: var(--loyalty-background-color); + /* #F5F8FA; #33729b; #9f805e; */ + /* font-family: 'Open Sans', sans-serif;*/ + font-family: 'IBM Plex Sans', sans-serif; + /* font-family: 'Questrial', sans-serif; */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + display: flex; + flex-direction: row; + justify-content: center; + color: var(--loyalty-text-color); +} + +.container { + width: 900px; + height: 600px; + margin: 70px; + background: var(--loyalty-app-color); + display: flex; + flex-direction: row; +} + +.navigation { + display: flex; + /* min-height: 15%; + max-height:15%; */ + flex-direction: column; + width: 50%; + padding-right: 50px; +} + +.app { + display: flex; + flex-direction: column; + justify-content: center; + align-content: center; + align-items: center; + width: 50%; + /* background: aliceblue; */ +} + +.titlebar { + display: flex; + flex-direction: row; +} + +.logo { + display: flex; + flex-direction: row; + justify-content: center; + align-content: center; +} + +.icon { + width: 40px; +} + +.title { + display: flex; + flex-direction: row; + justify-content: center; + align-content: center; + align-items: center; + margin: 10px; + text-transform: uppercase; + font-weight: bold; +} + +.about { + display: flex; + flex-direction: row; + justify-content: left; + align-content: center; + align-items: center; + margin: 10px; + margin-left: 5px; + text-transform: uppercase; + font-weight: normal; + font-size: 12px; + line-height: 18px; + word-spacing: 2px; + padding-bottom: 20px; +} + +.instruction { + display: flex; + flex-direction: row; + justify-content: left; + align-content: center; + align-items: center; + margin: 10px; + margin-left: 5px; + text-transform: uppercase; + font-weight: bold; + font-size: 16px; + line-height: 20px; + word-spacing: 2px; + color: var(--loyalty-text-color); +} + +.linkbar { + display: flex; + flex-direction: row; + margin-top: 20px; +} + +.linktext { + display: flex; + flex-direction: row; + justify-content: center; + align-content: center; + align-items: center; + margin: 10px; + text-transform: uppercase; + font-weight: bold; + font-size: 14px; +} \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/public/transaction.html b/dev/tekton/examples/example-bank/public/transaction.html new file mode 100755 index 0000000..e75c7ff --- /dev/null +++ b/dev/tekton/examples/example-bank/public/transaction.html @@ -0,0 +1,61 @@ + \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/routes/createUser.js b/dev/tekton/examples/example-bank/routes/createUser.js new file mode 100755 index 0000000..7652213 --- /dev/null +++ b/dev/tekton/examples/example-bank/routes/createUser.js @@ -0,0 +1,197 @@ +const express = require('express') +const router = express.Router() +const request = require('request') +// use .env file +const dotenv = require('dotenv'); +dotenv.config(); +// random name generator +const random_name = require('node-random-name'); +// app id self service manager +const SelfServiceManager = require("ibmcloud-appid").SelfServiceManager; +let APP_ID_IAM_APIKEY = process.env.APP_ID_IAM_APIKEY +let APP_ID_MANAGEMENT_URL = process.env.APP_ID_MANAGEMENT_URL +let selfServiceManager = new SelfServiceManager({ + iamApiKey: APP_ID_IAM_APIKEY, + managementUrl: APP_ID_MANAGEMENT_URL +}); +// app id client credentials +const APP_ID_CLIENT_ID = process.env.APP_ID_CLIENT_ID +const APP_ID_CLIENT_SECRET = process.env.APP_ID_CLIENT_SECRET +const APP_ID_TOKEN_URL = process.env.APP_ID_TOKEN_URL +// IAM token url +const IAM_TOKEN_URL = 'https://iam.cloud.ibm.com/identity/token' + +router.get('/random_user', function (req, res) { + res.send(random_name()) +}) + +router.post('/login', function (req, res) { + getAppIdToken(req.body.username, req.body.password, (err, response, body) => { + if (err) { + console.log(err) + console.log(response) + console.log(body) + res.send(err) + } else { + let jsonBody = JSON.parse(body) + if (jsonBody.error) { + console.log(jsonBody) + res.status('404').send(body) + } else { + if (response.statusCode == 200) { + let expiry = jsonBody.expires_in || 1 + let cookieOptions = { + maxAge: expiry * 1000 + } + res.cookie('access_token', jsonBody.access_token, cookieOptions) + res.cookie('id_token', jsonBody.id_token, cookieOptions) + res.send(body) + } else { + res.status(response.statusCode).send(body) + } + } + } + }) +}) + +router.post('/create_account', function (req, res) { + let reqeustBody = req.body + let userData = { + displayName: reqeustBody.firstName + " " + reqeustBody.lastName, + userName: reqeustBody.firstName + reqeustBody.lastName, + emails: [ + { + value: reqeustBody.email, + type: "home" + } + ], + password: reqeustBody.password, + name: { + familyName: reqeustBody.lastName, + givenName: reqeustBody.firstName + } + } + + selfServiceManager.signUp(userData, "en").then(function (user) { + console.log('user created successfully'); + res.send({user , status: "user created successfully"}) + }).catch(function (err) { + console.log(err); + if (err.statusCode) { + res.status(err.statusCode).send(err) + } else { + res.status('404').send(err) + } + }); +}) + +router.get("/get_all_users", function(req, res) { + getIAMToken(APP_ID_IAM_APIKEY, IAM_TOKEN_URL).then((token) => { + getUsersAppID(token, (users) => { + if (users == null) { + let empty = [] + res.send(empty) + } + res.send(users) + }) + }) +}); + +function getAppIdToken(username, password, callback) { + let options = { + url: APP_ID_TOKEN_URL + "/token", + method: 'POST', + headers: { + 'Authorization': 'Basic ' + new Buffer(APP_ID_CLIENT_ID + ":" + APP_ID_CLIENT_SECRET).toString('base64'), + 'Content-Type' : 'application/x-www-form-urlencoded' + }, + form: { + username, + password, + grant_type: 'password' + } + } + + request(options, function (err, response, body) { + callback(err, response, body) + }) +} + +function getIAMToken(iamApiKey, iamTokenUrl) { + if (!iamApiKey) { + return Promise.reject("You must pass 'iamToken' to self-service-manager APIs or specify 'iamApiKey' in selfServiceManager init options."); + } + var reqOptions = { + url: iamTokenUrl, + method: "POST", + headers: { + "Content-Type": "application/x-www-form-urlencoded", + "Accept": "application/json" + }, + form: { + "grant_type": "urn:ibm:params:oauth:grant-type:apikey", + "apikey": iamApiKey + } + }; + return new Promise(function (resolve, reject) { + request(reqOptions, function (error, response, body) { + if (error) { + console.log("Obtained IAM token failure: " + error.message); + reject(error.message); + } else { + if (response.statusCode === 200) { + var IAMAccessToken = JSON.parse(body)["access_token"]; + // console.log("Obtained IAM token: " + IAMAccessToken); + resolve(IAMAccessToken); + } else { + console.log("Obtained IAM token failure"); + console.log("Got status code: " + response.statusCode); + console.log(body); + reject(body); + } + } + }); + }); +}; + +function getUsersAppID(iamToken, callback) { + let reqOptions = { + url: APP_ID_MANAGEMENT_URL + '/cloud_directory/Users', + method: "GET", + headers: { + "Authorization": "Bearer " + iamToken + } + } + + request(reqOptions, function (error, response, body) { + if (error) { + console.log("Obtaining users failed") + console.log(error); + callback(null) + } else { + if (response.statusCode === 200) { + let responseBody = JSON.parse(body); + let users = responseBody.Resources + // get usernames + users = users.map((element) => { + return element.userName + }) + // remove test accounts + users = users.filter((element) => { + if (element == 'testadmin' || element == 'gregdritschler' || element.includes('admin')) { + return false + } + return true + }) + callback(users) + } else { + console.log("Obtaining users failed") + console.log("Got status code: " + response.statusCode); + console.log(body); + callback(null) + } + } + }) +} + +module.exports = router diff --git a/dev/tekton/examples/example-bank/scripts/createappid.sh b/dev/tekton/examples/example-bank/scripts/createappid.sh new file mode 100755 index 0000000..9fc6c7b --- /dev/null +++ b/dev/tekton/examples/example-bank/scripts/createappid.sh @@ -0,0 +1,166 @@ +# Check if ibmcloud is in user's account +ibmcloud_accountname=$(ibmcloud target --output json | jq -j '.account.name') + +## check if account is in quicklabs (labs.cognitiveclass.ai) or workshop clusters account in DEG +if [ "$ibmcloud_accountname" = "QuickLabs - IBM Skills Network" ]; then + echo "\n" + echo "WARNING: You're logged in as ${ibmcloud_accountname}" + echo "Please log in again using -- ibmcloud login -u YOUR_IBM_CLOUD_EMAIL" + echo "and run this script again" + exit 1 +elif [ "$ibmcloud_accountname" = "DEGCloud DEGCloud's Account" ]; then + echo "\n" + echo "WARNING: You're logged in as ${ibmcloud_accountname}" + echo "Please log in again using -- ibmcloud login -u YOUR_IBM_CLOUD_EMAIL" + echo "and run this script again" + exit 1 +fi +# end check + + +RG=$(ibmcloud resource groups --default | grep -i ^default | awk '{print $1}') +ibmcloud target -g $RG + +ibmcloud resource service-instance appid-example-bank +if [ "$?" -ne "0" ]; then + ibmcloud resource service-instance-create appid-example-bank appid lite us-south +fi + +ibmcloud resource service-key appid-example-bank-credentials +if [ "$?" -ne "0" ]; then + ibmcloud resource service-key-create appid-example-bank-credentials Writer --instance-name appid-example-bank +fi + +credentials=$(ibmcloud resource service-key appid-example-bank-credentials) + +mgmturl=$(echo "$credentials" | awk '/managementUrl/{ print $2 }') +apikey=$(echo "$credentials" | awk '/apikey/{ print $2 }') + +iamtoken=$(ibmcloud iam oauth-tokens | awk '/IAM/{ print $3" "$4 }') + +printf "\nSetting cloud directory options\n" +response=$(curl -X PUT -w "\n%{http_code}" \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + -H "Authorization: $iamtoken" \ + -d '{ + "isActive":true, + "config": + { + "selfServiceEnabled":true, + "interactions": + { + "identityConfirmation": + { + "accessMode":"OFF", + "methods": ["email"] + }, + "welcomeEnabled":true, + "resetPasswordEnabled":true, + "resetPasswordNotificationEnable":true + }, + "signupEnabled":true, + "identityField":"userName" + } + }' \ + "${mgmturl}/config/idps/cloud_directory") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "200" ] && printf "\nFAILED to set cloud directory options\n" && exit 1 + +printf "\nCreating application\n" +response=$(curl -X POST -w "\n%{http_code}" \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + -H "Authorization: $iamtoken" \ + -d '{"name": "mobile-simulator", "type": "regularwebapp"}' \ + "${mgmturl}/applications") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "200" ] && printf "\nFAILED to create application\n" && exit 1 + +clientid=$(echo "${response}" | head -n1 | jq -j '.clientId') + +printf "\nDefining admin scope\n" +response=$(curl -X PUT -w "\n%{http_code}" \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + -H "Authorization: $iamtoken" \ + -d '{"scopes": ["admin"]}' \ + "${mgmturl}/applications/$clientid/scopes") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "200" ] && printf "\nFAILED to define admin scope\n" && exit 1 + +printf "\nDefining admin role\n" +response=$(curl -X POST -w "\n%{http_code}" \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + -H "Authorization: $iamtoken" \ + -d '{"name": "admin", + "access": [ {"application_id": "'$clientid'", "scopes": [ "admin" ]} ] + }' \ + "${mgmturl}/roles") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "201" ] && printf "\nFAILED to define admin role\n" && exit 1 + +roleid=$(echo "${response}" | head -n1 | jq -j '.id') + +printf "\nDefining admin user in cloud directory\n" +response=$(curl -X POST -w "\n%{http_code}" \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + -H "Authorization: $iamtoken" \ + -d '{"emails": [ + {"value": "bankadmin@yopmail.com","primary": true} + ], + "userName": "bankadmin", + "password": "password" + }' \ + "${mgmturl}/cloud_directory/sign_up?shouldCreateProfile=true") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "201" ] && printf "\nFAILED to define admin user in cloud directory\n" && exit 1 + +printf "\nGetting admin user profile\n" +response=$(curl -X GET -w "\n%{http_code}" \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + -H "Authorization: $iamtoken" \ + "${mgmturl}/users?email=bankadmin@yopmail.com&dataScope=index") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "200" ] && printf "\nFAILED to get admin user profile\n" && exit 1 + +userid=$(echo "${response}" | head -n1 | jq -j '.users[0].id') + +printf "\nAdding admin role to admin user\n" +response=$(curl -X PUT -w "\n%{http_code}" \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + -H "Authorization: $iamtoken" \ + -d '{"roles": { "ids": ["'$roleid'"]}}' \ + "${mgmturl}/users/$userid/roles") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "200" ] && printf "\nFAILED to add admin role to admin user\n" && exit 1 + +printf "\nApp ID instance created and configured" +printf "\nManagement server: $mgmturl" +printf "\nApi key: $apikey" +printf "\n" \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/scripts/createsecrets.sh b/dev/tekton/examples/example-bank/scripts/createsecrets.sh new file mode 100755 index 0000000..3ee4bbc --- /dev/null +++ b/dev/tekton/examples/example-bank/scripts/createsecrets.sh @@ -0,0 +1,51 @@ +MGMTEP=$1 +APIKEY=$2 + +response=$(curl -k -v -X POST -w "\n%{http_code}" \ + -H "Content-Type: application/x-www-form-urlencoded" \ + -H "Accept: application/json" \ + --data-urlencode "grant_type=urn:ibm:params:oauth:grant-type:apikey" \ + --data-urlencode "apikey=$APIKEY" \ + "https://iam.cloud.ibm.com/identity/token") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "200" ] && exit 1 + +accesstoken=$(echo "${response}" | head -n1 | jq -j '.access_token') + +response=$(curl -v -X GET -w "\n%{http_code}" \ + -H "Content-Type: application/json" \ + -H "Authorization: Bearer $accesstoken" \ + $MGMTEP/applications) + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "200" ] && exit 1 + +tenantid=$(echo "${response}"| head -n1 | jq -j '.applications[0].tenantId') +clientid=$(echo "${response}"| head -n1 | jq -j '.applications[0].clientId') +secret=$(echo "${response}"| head -n1 | jq -j '.applications[0].secret') +oauthserverurl=$(echo "${response}"| head -n1 | jq -j '.applications[0].oAuthServerUrl') +appidhost=$(echo "${oauthserverurl}" | awk -F/ '{print $3}') + +oc create secret generic bank-oidc-secret --from-literal=OIDC_JWKENDPOINTURL=$oauthserverurl/publickeys --from-literal=OIDC_ISSUERIDENTIFIER=$oauthserverurl --from-literal=OIDC_AUDIENCES=$clientid + +oc create secret generic bank-appid-secret --from-literal=APPID_TENANTID=$tenantid --from-literal=APPID_SERVICE_URL=https://$appidhost + +oc create secret generic bank-iam-secret --from-literal=IAM_APIKEY=$APIKEY --from-literal=IAM_SERVICE_URL=https://iam.cloud.ibm.com/identity/token + +oc create secret generic mobile-simulator-secrets \ + --from-literal=APP_ID_IAM_APIKEY=$APIKEY \ + --from-literal=APP_ID_MANAGEMENT_URL=$MGMTEP \ + --from-literal=APP_ID_CLIENT_ID=$clientid \ + --from-literal=APP_ID_CLIENT_SECRET=$secret \ + --from-literal=APP_ID_TOKEN_URL=$oauthserverurl \ + --from-literal=PROXY_USER_MICROSERVICE=user-service:9080 \ + --from-literal=PROXY_TRANSACTION_MICROSERVICE=transaction-service:9080 + +oc create secret generic bank-oidc-adminuser --from-literal=APP_ID_ADMIN_USER=bankadmin --from-literal=APP_ID_ADMIN_PASSWORD=password + +oc create secret generic bank-db-secret --from-literal=DB_SERVERNAME=creditdb --from-literal=DB_PORTNUMBER=5432 --from-literal=DB_DATABASENAME=example --from-literal=DB_USER=postgres --from-literal=DB_PASSWORD=postgres diff --git a/dev/tekton/examples/example-bank/scripts/creditdb.yaml b/dev/tekton/examples/example-bank/scripts/creditdb.yaml new file mode 100755 index 0000000..abed732 --- /dev/null +++ b/dev/tekton/examples/example-bank/scripts/creditdb.yaml @@ -0,0 +1,20 @@ +apiVersion: postgresql.dev4devs.com/v1alpha1 +kind: Database +metadata: + generation: 1 + name: creditdb + namespace: example-bank + spec: + databaseCpu: 30m + databaseCpuLimit: 60m + databaseMemoryLimit: 512Mi + databaseMemoryRequest: 128Mi + databaseName: example + databaseNameKeyEnvVar: POSTGRESQL_DATABASE + databasePassword: postgres + databasePasswordKeyEnvVar: POSTGRESQL_PASSWORD + databaseStorageRequest: 1Gi + databaseUser: postgres + databaseUserKeyEnvVar: POSTGRESQL_USER + image: centos/postgresql-96-centos7 + size: 1 diff --git a/dev/tekton/examples/example-bank/scripts/deleteresources.sh b/dev/tekton/examples/example-bank/scripts/deleteresources.sh new file mode 100755 index 0000000..2889ba6 --- /dev/null +++ b/dev/tekton/examples/example-bank/scripts/deleteresources.sh @@ -0,0 +1,48 @@ +#!/bin/bash -x + + + +# Delete resources before removing namespace +oc delete all --all -n example-bank +sleep 2 + +## begin delete openshift serverless +# delete knative-serving component +oc delete knativeservings.operator.knative.dev knative-serving -n knative-serving +oc delete namespace knative-serving +oc delete knativeeventings.operator.knative.dev knative-eventing -n knative-eventing +oc delete namespace knative-eventing + +# delete subscription and clusterserviceversion of openshift serverless operator +oc delete subscription serverless-operator -n openshift-operators +oc delete csv $(oc get csv -n openshift-operators -o=jsonpath='{range .items[*]}{.metadata.name}{"\n"}{end}' | grep serverless-operator) -n openshift-operators + +## end of delete openshift serverless + + +# Service mesh cleanup + +oc delete smcp --all -n istio-system +oc delete smmr --all -n istio-system + + +oc delete validatingwebhookconfiguration/openshift-operators.servicemesh-resources.maistra.io +oc delete mutatingwebhookconfigurations/openshift-operators.servicemesh-resources.maistra.io +oc delete -n openshift-operators daemonset/istio-node +oc delete clusterrole/istio-admin clusterrole/istio-cni clusterrolebinding/istio-cni +oc delete subs --all --all-namespaces +oc get crds -o name | grep '.*\.istio\.io' | xargs -r -n 1 oc delete +oc get crds -o name | grep '.*\.maistra\.io' | xargs -r -n 1 oc delete +oc get crds -o name | grep '.*\.kiali\.io' | xargs -r -n 1 oc delete + +oc delete all --all -n istio-system +sleep 2 + +## Delete projects + +oc delete project example-bank +oc delete project istio-system + +## Delete jaeger,elasticsearch,kialia,servicemesh operators + +oc delete csv -n openshift-operators $(oc get csv -n openshift-operators -o=jsonpath='{range .items[*]}{.metadata.name}{"\n"}{end}' | grep 'elasticsearch-operator\|jaeger-operator\|kiali-operator\|servicemeshoperator') \ No newline at end of file diff --git a/dev/tekton/examples/example-bank/scripts/deploy-db.sh b/dev/tekton/examples/example-bank/scripts/deploy-db.sh new file mode 100755 index 0000000..a440096 --- /dev/null +++ b/dev/tekton/examples/example-bank/scripts/deploy-db.sh @@ -0,0 +1,9 @@ +#!/bin/sh +echo "Deploying PostgreSQL 1/3" +kubectl apply -f pg_csv.yaml -f pg_sub.yaml -f pg_operatorgroup.yaml +echo "Deploying PostgreSQL 2/3" +sleep 5 +kubectl apply -f pg_deploy.yaml +echo "Deploying PostgreSQL 2/3" +sleep 3 +kubectl apply -f creditdb.yaml diff --git a/dev/tekton/examples/example-bank/scripts/installServerlessOperator.sh b/dev/tekton/examples/example-bank/scripts/installServerlessOperator.sh new file mode 100755 index 0000000..3961f32 --- /dev/null +++ b/dev/tekton/examples/example-bank/scripts/installServerlessOperator.sh @@ -0,0 +1,48 @@ +echo "Creating OpenShift Serverless operator" + +cat < IMPORTANT: + Just the first 2 digits should be used.' + displayName: Databaseversion + path: databaseVersion + - description: 'Name of the secret with the Encrypt data pre-existing in the + cluster Default Value: nil See here the template: https://github.com/integr8ly/backup-container-image/blob/master/templates/openshift/sample-config/gpg-secret.yaml' + displayName: 'EncryptKey Secret name:' + path: encryptKeySecretName + - description: 'Namespace of the secret with the Encrypt data pre-existing in + the cluster Default Value: nil NOTE: If the namespace be not informed then + the operator will try to find it in the same namespace where it is applied' + displayName: 'EncryptKey Secret namespace:' + path: encryptKeySecretNamespace + - description: 'GPG email to create the EncryptionKeySecret with this data Default + Value: nil See here how to create this key : https://help.github.com/en/articles/generating-a-new-gpg-key' + displayName: 'Gpg public email:' + path: gpgEmail + - description: 'GPG public key to create the EncryptionKeySecret with this data + Default Value: nil See here how to create this key : https://help.github.com/en/articles/generating-a-new-gpg-key' + displayName: 'Gpg public key:' + path: gpgPublicKey + - description: 'GPG trust model to create the EncryptionKeySecret with this + data. the default value is true when it is empty. Default Value: nil See + here how to create this key : https://help.github.com/en/articles/generating-a-new-gpg-key' + displayName: 'Gpg trust model:' + path: gpgTrustModel + - description: 'Database image:tag Default value: centos/postgresql-96-centos7' + displayName: Image:tag + path: image + - description: 'Image:tag used to do the backup. Default Value: + More Info: https://github.com/integr8ly/backup-container-image' + displayName: Image:tag + path: image + - description: 'Used to create the directory where the files will be stored + Default Value: ' + displayName: AWS tag name + path: productName + - description: 'Schedule period for the CronJob. Default Value: <0 0 * * *> + daily at 00:00' + displayName: Schedule + path: schedule + - description: 'Quantity of instances Default value: 1' + displayName: Size + path: size + x-descriptors: + - urn:alm:descriptor:com.tectonic.ui:podCount + statusDescriptors: + - description: Namespace of the secret object with the Aws data to allow send + the backup files to the AWS storage + displayName: AWS Secret Namespace + path: awsCredentialsSecretNamespace + - description: Name of the secret object with the Aws data to allow send the + backup files to the AWS storage + displayName: AWS Secret Name + path: awsSecretName + - description: Will be as "OK when all objects are created successfully + displayName: Backup Status + path: backupStatus + - description: Name of the CronJob object created and managed by it to schedule + the backup job + displayName: CronJob Name + path: cronJobName + - description: Status of the CronJob object + displayName: v1beta1.CronJobStatus + path: cronJobStatus + - description: It will be as "OK when all objects are created successfully + displayName: Database Status + path: databaseStatus + - description: Name of the secret object created with the database data to allow + the backup image connect to the database + displayName: Database Secret Name + path: dbSecretName + - description: Status of the Database Deployment created and managed by it + displayName: appsv1.DeploymentStatus + path: deploymentStatus + - description: Name of the secret object with the Encryption GPG Key + displayName: Encryption GPG Secret Name + path: encryptKeySecretName + - description: Namespace of the secret object with the Encryption GPG Key + displayName: Encryption GPG Secret Namespace + path: encryptKeySecretNamespace + - description: Boolean value which has true when it has an EncryptionKey to + be used to send the backup files + displayName: Is Encryption GPG Key configure? + path: hasEncryptKey + - description: Boolean value which has true when the Database Pod was found + in order to create the secret with the database data to allow the backup + image connect into it. + displayName: Is the Database Pod found? + path: isDatabasePodFound + - description: Boolean value which has true when the Service Database Pod was + found in order to create the secret with the database data to allow the + backup image connect into it. + displayName: Is the Database Service found? + path: isDatabaseServiceFound + - description: Name of the PersistentVolumeClaim created and managed by it + displayName: v1.PersistentVolumeClaimStatus + path: pvcStatus + - description: Status of the Database Service created and managed by it + displayName: v1.ServiceStatus + path: serviceStatus + version: v1alpha1 + - description: Database is the Schema for the the Database Database API + displayName: Database Database + kind: Database + name: databases.postgresql.dev4devs.com + resources: + - kind: Deployment + name: A Kubernetes Deployment + version: v1 + - kind: PersistentVolumeClaim + name: A Kubernetes PersistentVolumeClaim + version: v1 + - kind: Service + name: A Kubernetes Service + version: v1 + specDescriptors: + - description: 'Key ID of AWS S3 storage. Default Value: nil Required to create + the Secret with the data to allow send the backup files to AWS S3 storage.' + displayName: AWS S3 accessKey/token ID + path: awsAccessKeyId + - description: 'Name of AWS S3 storage. Default Value: nil Required to create + the Secret with the AWS data to allow send the backup files to AWS S3 storage.' + displayName: AWS S3 Bucket name + path: awsS3BucketName + - description: 'Secret/Token of AWS S3 storage. Default Value: nil Required + to create the Secret with the data to allow send the backup files to AWS + S3 storage.' + displayName: AWS S3 accessKey/token + path: awsSecretAccessKey + - description: 'Name of the secret with the AWS data credentials pre-existing + in the cluster Default Value: nil See here the template: https://github.com/integr8ly/backup-container-image/blob/master/templates/openshift/sample-config/s3-secret.yaml' + displayName: 'AWS Secret name:' + path: awsSecretName + - description: 'Namespace of the secret with the AWS data credentials pre-existing + in the cluster Default Value: nil NOTE: If the namespace be not informed + then the operator will try to find it in the same namespace where it is + applied' + displayName: 'AWS Secret namespace:' + path: awsSecretNamespace + - description: 'Name of the configMap key where the operator should looking + for the value for the database name for its env var Default value: nil' + displayName: ConfigMap Database Key + path: configMapDatabaseNameKey + - description: 'Name of the configMap key where the operator should looking + for the value for the database user for its env var Default value: nil' + displayName: ConfigMap Password Key + path: configMapDatabasePasswordKey + - description: 'Name of the configMap key where the operator should looking + for the value for the database password for its env var Default value: nil' + displayName: ConfigMap User Key + path: configMapDatabaseUserKey + - description: 'Name of the ConfigMap where the operator should looking for + the EnvVars keys and/or values only Default value: nil' + displayName: ConfigMap name + path: configMapName + - description: 'Policy definition to pull the Database Image More info: https://kubernetes.io/docs/concepts/containers/images/ + Default value:' + displayName: Container Image Pull Policy + path: containerImagePullPolicy + x-descriptors: + - urn:alm:descriptor:com.tectonic.ui:imagePullPolicy + - description: 'Name of the Database CR applied which this backup will work + with Default Value: "database"' + displayName: Name of Database CR + path: databaseCRName + - description: 'CPU resource request which will be available for the database + container Default value: 10Mi' + displayName: Database CPU + path: databaseCpu + - description: 'Limit of CPU request which will be available for the database + container Default value: 20Mi' + displayName: Database CPU Limit + path: databaseCpuLimit + - description: 'Limit of Memory which will be available for the database container + Default value: 512Mi' + displayName: Database Memory Limit + path: databaseMemoryLimit + - description: 'Limit of Memory Request which will be available for the database + container Default value: 128Mi' + displayName: Database Memory Request + path: databaseMemoryRequest + - description: 'Value for the Database Environment Variable (spec.databaseNameKeyEnvVar). + Default value: example' + displayName: Database Name + path: databaseName + - description: 'Key Value for the Database Environment Variable in order to + inform the database mame Note that each database version/image can expected + a different value for it. Default value: nil' + displayName: EnvVar Key (Database Name) + path: databaseNameKeyEnvVar + - description: 'Value for the Database Environment Variable (spec.databasePasswordKeyEnvVar). + Default value: postgres' + displayName: Database Password + path: databasePassword + x-descriptors: + - urn:alm:descriptor:com.tectonic.ui:password + - description: 'Key Value for the Database Environment Variable in order to + inform the database password Note that each database version/image can expected + a different value for it. Default value: nil' + displayName: EnvVar Key (Database Password) + path: databasePasswordKeyEnvVar + - description: 'Limit of Storage Request which will be available for the database + container Default value: 1Gi' + displayName: Database Storage Request + path: databaseStorageRequest + - description: 'Value for the Database Environment Variable (spec.databaseUserKeyEnvVar). + Default value: postgres' + displayName: Database User + path: databaseUser + - description: 'Key Value for the Database Environment Variable in order to + inform the database user Note that each database version/image can expected + a different value for it. Default value: nil' + displayName: EnvVar Key (Database User) + path: databaseUserKeyEnvVar + - description: 'Database version. (E.g 9.6). Default Value: <9.6> IMPORTANT: + Just the first 2 digits should be used.' + displayName: Databaseversion + path: databaseVersion + - description: 'Name of the secret with the Encrypt data pre-existing in the + cluster Default Value: nil See here the template: https://github.com/integr8ly/backup-container-image/blob/master/templates/openshift/sample-config/gpg-secret.yaml' + displayName: 'EncryptKey Secret name:' + path: encryptKeySecretName + - description: 'Namespace of the secret with the Encrypt data pre-existing in + the cluster Default Value: nil NOTE: If the namespace be not informed then + the operator will try to find it in the same namespace where it is applied' + displayName: 'EncryptKey Secret namespace:' + path: encryptKeySecretNamespace + - description: 'GPG email to create the EncryptionKeySecret with this data Default + Value: nil See here how to create this key : https://help.github.com/en/articles/generating-a-new-gpg-key' + displayName: 'Gpg public email:' + path: gpgEmail + - description: 'GPG public key to create the EncryptionKeySecret with this data + Default Value: nil See here how to create this key : https://help.github.com/en/articles/generating-a-new-gpg-key' + displayName: 'Gpg public key:' + path: gpgPublicKey + - description: 'GPG trust model to create the EncryptionKeySecret with this + data. the default value is true when it is empty. Default Value: nil See + here how to create this key : https://help.github.com/en/articles/generating-a-new-gpg-key' + displayName: 'Gpg trust model:' + path: gpgTrustModel + - description: 'Database image:tag Default value: centos/postgresql-96-centos7' + displayName: Image:tag + path: image + - description: 'Image:tag used to do the backup. Default Value: + More Info: https://github.com/integr8ly/backup-container-image' + displayName: Image:tag + path: image + - description: 'Used to create the directory where the files will be stored + Default Value: ' + displayName: AWS tag name + path: productName + - description: 'Schedule period for the CronJob. Default Value: <0 0 * * *> + daily at 00:00' + displayName: Schedule + path: schedule + - description: 'Quantity of instances Default value: 1' + displayName: Size + path: size + x-descriptors: + - urn:alm:descriptor:com.tectonic.ui:podCount + statusDescriptors: + - description: Namespace of the secret object with the Aws data to allow send + the backup files to the AWS storage + displayName: AWS Secret Namespace + path: awsCredentialsSecretNamespace + - description: Name of the secret object with the Aws data to allow send the + backup files to the AWS storage + displayName: AWS Secret Name + path: awsSecretName + - description: Will be as "OK when all objects are created successfully + displayName: Backup Status + path: backupStatus + - description: Name of the CronJob object created and managed by it to schedule + the backup job + displayName: CronJob Name + path: cronJobName + - description: Status of the CronJob object + displayName: v1beta1.CronJobStatus + path: cronJobStatus + - description: It will be as "OK when all objects are created successfully + displayName: Database Status + path: databaseStatus + - description: Name of the secret object created with the database data to allow + the backup image connect to the database + displayName: Database Secret Name + path: dbSecretName + - description: Status of the Database Deployment created and managed by it + displayName: appsv1.DeploymentStatus + path: deploymentStatus + - description: Name of the secret object with the Encryption GPG Key + displayName: Encryption GPG Secret Name + path: encryptKeySecretName + - description: Namespace of the secret object with the Encryption GPG Key + displayName: Encryption GPG Secret Namespace + path: encryptKeySecretNamespace + - description: Boolean value which has true when it has an EncryptionKey to + be used to send the backup files + displayName: Is Encryption GPG Key configure? + path: hasEncryptKey + - description: Boolean value which has true when the Database Pod was found + in order to create the secret with the database data to allow the backup + image connect into it. + displayName: Is the Database Pod found? + path: isDatabasePodFound + - description: Boolean value which has true when the Service Database Pod was + found in order to create the secret with the database data to allow the + backup image connect into it. + displayName: Is the Database Service found? + path: isDatabaseServiceFound + - description: Name of the PersistentVolumeClaim created and managed by it + displayName: v1.PersistentVolumeClaimStatus + path: pvcStatus + - description: Status of the Database Service created and managed by it + displayName: v1.ServiceStatus + path: serviceStatus + version: v1alpha1 + description: |- + A very flexible and customizable Operator in Go developed using the Operator Framework to package, install, configure and manage a PostgreSQL database. Also, the usage of this operator offers: + * Backup your data and sent it to a AWS Storage + * Usage of encryption to send the data + * Customization of the image and version of your PostgreSQL + * Customization of the enviroment variables keys and values which should be used with + * Allow you setup the operator to get the values required for its enviroment variables (user, password and database name) in an ConfigMap applied in the cluster already. + *NOTE: It is very useful to centralize and share this information accross the cluster for your solutions. Also, you are able to configure each configMap keys that contains each EnvVar* required for the PostgreSQL database image. + * To configure AWS Storage to sent the Backup data you are able to inform the data required or inform the secret which has this information and is applied in the cluster already + * To configure encryption feature in the Backup you are able to inform the data required or inform the secret which has this information and is applied in the cluster already + * Allow you customize the resources and their limmits (Memory, CPU and Storage) + displayName: PostgreSQL Operator by Dev4Ddevs.com + icon: + - base64data: iVBORw0KGgoAAAANSUhEUgAAANwAAADqCAMAAAD+p9sDAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAMAUExURQAAAChbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgShbgf///zJmkChbgQAAAC5jjv7+/ipcgi9kji9kjwMDA/39/ilcgSRYf/3+/vz8/Stdg/39/TFlkClcgixegzFlj/r7/DVliR1Te3ybsxdOdzVpkhtRejBlj/z9/gcHByZZgB9UfP7+//j4+DxtljNnkfT2+fL1+Pz8/DlrlPn6+xISEuft8u3y9iFVfQ0NDSJXfuTr8fLy8j9wmNrj69/n7hlPePDw8P7//8LR3QoKCuvr67LG1WaNrUd2nD8/P+Tk5ISjvcvY4hAQENTf6Ovw9KvA0cXT3/v7++nv84CguzY2NrjK2OHh4fD095q0yJKuxU16n0NzmrW1taG5y/f5+1WBpLGxsc7b5eLp77vM2oqowCteg/T3+fv8/FyFpyoqKlB9ofX19RYWFt3m7GqQr1+IqSYmJjo6Oqi+z4imvb7O21N+om6TscjW4dHd5tvb242NjaS7zp2dnXd3d1mDpZaxx0p4naKiokNDQ0xMTHp6epSUlCAgIMPDwxkZGenp6bXI1zExMRwcHJ62yHGVs5iYmCxijYqKinaZtaamptXV1SIiIm9vb7i4uEVxkq/D09jY2GGKqmlpaWJiYmWJpUp1lWOLq3mbt4eHh/b4+nNzc8/PzzMzM1BQUKysrNbg6V5eXry8vI+sw1paWsDAwGxsbC4uLlZXVy9ghY+qvXWWrnCSq9ji6s3NzUhISIOht5OtwFuCnzxrjdHR0VJ8mnyeuVJSUsvLy2ZmZkBukO7u7oKCgt/f31+FodPT0319fcnJyVd/nWuPqU95mJixw8bGxjNjiDhoi3mZsd3d3X+etX5+fjFihzJjhzNkiBVNdvT3+N0M9XoAAAAvdFJOUwD+/U4DAgH7BPyx5g7sCTjBqRog1kBUK9BrMYndgpG68ZnK9aBIJXMTW3v5ZAa1W+2upAAAIABJREFUeNrtfXdck9f3f0BAEPfeq2qttb3kyURCIIamDZFdZBgQEIEiiDKcgIIibhQXKiJuQUVxT6wb9957taJt7fDX3e/nd+59kgCSPISYRO2r9w8VE5Ln/Zxz3u9zzr3PvSzWf+O/8d/4b/w33qFhY2MNwwr/YWPzrwJmbWtb7WdbW+t/BzArK2Iom4bNe7Vp375Nmxa9G6tesH7voWFkDVt92K1LW/uP2Xh07di9QYe+bTAyK+v32EGJbdq369LIjsBiW1jaWdD/Yn/QsVvrFuq3vIfD2orFav5hU2Ivu/p2lpYWaoT165N/2jfrCR5q9R5azxpM0qRbV8BQ39JCba/KYWFhh83Z8sPmAO+9izWA1uwDNpt2RAlPzJNIaFj9JDz4Cf+LvGbfqfd7Bg8utlcPSzAaMRmvv6fMXaYMdXLy9HRyclJ6ydyV/aYTrJb12eyO7T4hdn5PoNmwevcBhyRG4/E8vSL/fnwkr3Dqsojs4CG3R8Ru/fzBUafIULZYQszHZrft+b6EHvbI1i3BarTRlLLrRwoTnVH1kZpy42dPdycNvGZt3gt4ONg+VVuNrYw8cH8IRuPs7CgScfEQOTo6O+L/Sbn5q3soHXwW7A86vPuhh9m/8wdA9xiaODT0x+RUjMPR+zXLcQm+7PvPZLRzgvE69rV9p0MPrs22nT25VDZbHOp+YByAcuYi7UMEvjr6hsTdU4ylAby4SysWy9bm3Q22nt1VHjndU/YwzR8hR13QCDwwX8RNnoyHndPSkv1xtxbvpm9iaG2aaSjS/fq9YLAaqmVwAd6I77yU/fvRvmn/YWOoId7BYOvdSRVsEp5S+d0IhAZwUe0DW2/rM3dPbDwLLAut3zXehDTS6qOOdLD1E3u6/xxbi0NWHYAu6cY/tG9ieA3av0vwbKASbdVFQ//u1yHYuCKk/wDvTbwlU0r6qUKv87uTcMJltOj2Mb4qTP9K9s1cPYLttdAbgNDix16ealmwf0cyMriGTz60V3uk0v0oBJuzN6rrEEWh8q39K2Wh6TuQkWGOrNdW5ZGQHz/LDEQiETJkQOhlf95fJQt2bMsevUD13jb9N9DQf+TfeUl19sjK4Q3wphzx8pqu8s1GfRq+RVnAuVYHDf17hR6ZAtCikOEDq96iA7QsYHgtP3pbvomDrW9H2mwSsafs8bg60L9O3+Si1PufySRqWfi0yduAh+m/Z1O1R3q6/535Zd3on0EWbt9UKkndrpYFa7N7ZK9udmw7Qv88L/Hn2YQRjDG4AC/6R6VTpSyYNyMDj2zcR0X/ErFS9niKQfSvUxa4aFLmP1DKqnyzez3z+SYptdtWZv8Hksn1GHOAE4y+95e7JiPDhbqtmaC1/7SS/v+5kWo0j6wuC8t+8vKifdOC3ahTb/LNJvZIXGp/rKL//kqnnxLfQNlqk4Wyn909p5tNFnCwkVIb0z/P6YvHi41A/zpDT4Rm/HI9UiMLXUwqC9VKbZ6n7NdfUg3NtepQLXh6SVSFup0JC3Wca/VQQ5N4kVLbEZl0eAO8/AfKULoFCBmZiQp1cIiGnRoR/wD691I+SGTo/RiRN7kocNGvMo0skELd2vge+VFLVV9rupPsaJnR6V9n6CE0KO8f92qFuq2RoTXRlNqSyM/uzyBsZp6BZeHcLSUtCxB6XTsYs1DH9N+tvor+pys9b0aYiP6Z4I17LNPIQse+xuJNaxtWY1xq04WN0xc/RkMkeCPzDpEjFOp/R7LVvtm0lTHgkVJbTf9Q2DzMnGFa+meQhYjfJBpZIIW61RvTf3tNp7Wf7HreaJPTv64R5Yz7t6FKjSxAof4mCwZAUhp26qqh/9DvbpuF/nXKggjNTH4mc5qu8s2Wrd/AeNaq5g9N/+4/jzMb/TPIQuqNz9w1GVmzXoZGnhWrYefKTus/eYFvJ9iq+ybEROKRUC+eShbsPzKoTrexZbXvrqJ/sZfk8yFmpn+mamHxj3TKgmdvO39Sd3Q2NqzWjegJe55T5IMUo5babywLgYWfqWTBkt20RV0TFlCADy1JtPHYsmeLJuFgNpUpfCoKvrm8PyMrK2P/hVd7Sua46CMLg+9JlGJ63qtjk7rRCtitE5ssjRGHKu/pS/9cFxdmvhkVVjIcj5I5o2gEFQcvbL+yfuGCTSEeQooSesQE7R1799D2jeN99JCFx7Tx6rMb9ayL7WysbDqrZNv9QHTtHulTUrDxbPGf+w4d2le0c0XGy99r3v5RJXfWFh1ev3AsjNPxZ87vW3721f6iu3tjhICq+hAKQ7acX3twTq2++QsYj9iua0/9bQc+2YEutvvJfkqqjf7nPNp+eGFpENx7fPOFQo+QoNKF11au+KYkUPOekqyTC+fGCKsjCBqp/g/8O3M3bZobNNJD/V8xe8+f/aq2JlLKQ5mYKHrXVnqjs2K1I9h4nqF5tXlkQfH6DTXuPR4epVsOb/9mKPbWPSfGjqR0jJEL4s//Wbx7/6s7jx6dennh7PYfLi3c4EFeConfXlJLgzP3sYxHbGffS0/OtGL1rE9j8/yFubLh7vlhNo0sZu6C0/F3z5xZv27h1Q1zY9QWKV1XdOGbP+n3xJSOfXql6MTync+LrlyLXzDXgwq5en75hYMVo6p/aGDJqd1XToeQGxS/toKZWPxvudPo2vbWa3GxNatXI5y78ZwksYiRI0uWk8v22LD+h90bD5YMnQMjrGL49xvP7vx23d4QAkkYsgn/HXP10No7JT4DiYdzB/oMLdi44nnWC128MXB41qG95PeeXh7I6JrOv7nTrNLMWo9cxcbatinWAAnbM5aZSb45g90naH3xo6E12Nun4mDW8zN7af+igp6u/b0mDq6qVnP2z04cET0uNnbz4vzEbH9VquDz6MRVDK90ZwVjPsa9SeKuPrudHo5pBSJA9E2ZyZiSDMyajS/7/P7K7xYNcK62gGHont37wL9inmYMVcEpHxQ8OHj0oPIqvp6afHx+zkTfALmfnzzAd2LO108y8weTL3YpeL4XO8b5AqbI4E46IpuO1fyD9rWSihWrfVcccGL3e4x2C1yxCXwu/ixN2P7Z+WVp08YcP/4kIT0zNj83qVz1NpfhWStXEPhuwfmFCUvnT16yZNX8pU/Sy6aMpsnUbVnCxB18qdQVhlQq4HM4Ct8lYzYH47vk8s15iD3hwo1cJtsFH/ASY8psaltbBWRt1QUbTiw74sYkAQNXzIWAuPIC//vLEavnTfD1E3DI4Av8fONm7Vo9NcKfDljisv4pCZN9pfhlPp+8yy988vHk2+QeOC97EsB3qDKkfI581ercAdj427HxFmQNZIq7xOtOEkwq7WoxnRXrI0Imoc+CEZO8ZZSCS57A3uY/bmm4giNwrXpxCj5HIF8zbHX0YDfy7kmLl/ry+VKH1xD4xe0al4Rfn7F5sqD6qw5815y0wfjWXF4I6Dac5TJxZlmoBC/9s2/O2NO0sWnYFtdJPFkZY8A9ugoKVQwcIZqyLYDz2nXRw1XAEQSsysfvzk3w1f4eAUc+P5nAyx0jF7z+osOszdiye9YDr+zN4jK1j464i7HpOjByihWrLzacWHbLmWlyu+IS+OQJwFa+KE77ZdP4HBIGITQgehVfoestUo7f15u/xMbLnMh//UVOQEI2vDT+EqBbsJGBVFD2r+CYFhaNmjOhs7Ftiys4z+vnmBSOuyKGEh4Gn5yRHsB30D0E2wCbc9lEjgPT4AQcPwdmcZ46QVADuuDrKUBqwzG6sQeZwu4XnKnYsfswRJ0Vq7UFYco/GNV7/FiKuroHGDNNrmC4av7kCPje2HCBA/OQ8nPKwP+8R6yqeRf4OdEAfPx64MzzYQzzQakHQnkQdS0bsmx06rdVA1BDidP/y2XKurjLhZRHMRdxY32ZsEl9x4FnR8fVhg1DCJiGIy9xlhZ0a6LBdo/gdsasZTLdVmw6S3ZrnaaDxOsDsBxPdpMxWx5+mqLWQUp7O4fR3wRjJsF7JnMc9BgK1214JfS5WTW9nD8Bk1IGKE/8VwxRl/QQos7O4lOdQWdl047ogHIEo1eu9SB3cdIYZmwTbkP6sYvvoN/gHwMfRlOW1LQzZzJ8kM8hqBKymEz3R2R/uPhGOqsDa1YXoBOe1wO3KIbcxOcaRPdwqITDFYyXm+aMRIvkrnqCcxB8nQsVtjYv5i8FXroQRFEnR+m8qAFRI8Se/YBS+uooyq1Zze0BvNh9K6PGHdxLCX9wQW4JjEbhTwYWH7JE4KD3EAwDz3RMDqhxy1zlsQh9FU9RCxnKO67oRy8egGumg1FsWa0Bm8Tp7whGr1zhQQVdBtmdwHjh0jRvNCC9DtiwcowGZ59W09acXZNQIPjlpu8ZKQWE3IJtr4MvcXOhPnjlYy5T4oW9H9/CZD/GC10TgfHz6wLOQZo3A6HRx2qEsmAJJGJA0SMvMIE7Rz8H1V5r0NmwIGeGkJPdYDRcCeR63/qgwCeMdMIZ44a4Wx3qNqTyRfDNKRNfd0zFxHMInY2hPFYwZSkzfga/tNSRPduwGtqDXcXuUxmF4PtNlLAYoeDJjFYJmIrQoPmcOqLjx+Fltuk1gi4gnzCK8ARjUX4L+NKO3UMro9iwepHH2zwTGcFlhFAj9wNph0sZ6SQYocUB0jqCc+AMg7AbXEPt5IsRegU3tYixn5IXKQZwTbW6pTWrJ54XcHo4mNEtwfc3PEIoljHk+AnOaGZeXQ2Hx+qZKCr29bsiBz94CeBOMoJbpJSAW2rPwHBDD0JO+XMqYyW3UkhtAZVbzUiEmLxHr+LXHZsgbgpI/1JOTXCvagHniKJJC9O+hTbT4eYJqJzsO0fEJOHnKepuGIpKYDKLIg64MsVXaoDlOMchh1782q8GRCO0cS7IK2OrKLG/J3DGx1pbKbaszuCyYvefGA0XBgn6pUDktmsHY+j4I+/VCgOwQboNQPyrm07qCzyzfyQzoXDR4OueeH6jlXZwPQDc9MhbjHyCM4VvB6LyeUyW4+Q5oxlLDQk5+N1tYLrNcq1SsJ1pOQdK/dsJJ2BaZ0VsWc3gpf6RNxmTL1wS7HNB/scYLz0ZOC9HYBA4RTjwflI1whSsgVRuu5Axc8adms8AXH12Pe3gcDHX/4vPGcGNvwoJLBelMmmY1Beub4QhIecqlUo5CaD/1XyaPysJufxAUUGvGMEF6gVuJsMnvNADnGANJPhltFa4KnArT6APUAFH4Rfg6yvPyX1NRjlLy5HPYYoq3WMEcPpY7msGcJxVUFev5uD2j0AeN3n+sfk5voranJQvzzm+dXN0Skr0YkgABlX1S06eIxq6jiISZFJwOOauuKAvhzGBWzoJDRizg8/3/fri1HNJqf6pwfmrJ7syWU/qcKwse1KVCz1e9fMLEfp9NkWtH2picCXAlocHoknbmMCNccZ0uuRi/iCNqnCzpwXo1gaFb/ro6vlGFR11VckcdWWUicFhnXvqg0RjGHSOkw5+m5CZrcrioui/yzN1Uow0oBBPHAwYNGRZfv6U20lc5Fzl8wVrhpDehnA518TgAiGwF36FUDqD5fiZCM1MJU3dSdnRhRfz0mNzQTsDp+kCJ0gAj3SeMm1WnC+e6UkoR25VGjQ4JXBZSVEjM5CJwaEiIbWgAGpVpgBKVrnikORdOQGKHTt2KCYUluOuA18Hu94Gw26dOHFe3rR58H4ovCftqgTHn+aMhoLD7C0wObjtHtQm0JuUAN3g/GJJsheRnuPHESjinqSlPckJKByAuGkKnTHKTZbPWzaDG5W6jYNLCv/KDMhVvhmhggUUFR9mcnAXRlIxZxGKmKibHvDVoNFpEwTYUPJkN3C57ASsXsu0/5JfGc5JOIX447NXcRRp8GNlSSGIO0eqSOqki8nB4Up8J5exoPEDcIO2KVRvSCN8cm5iYRTU5tp+yRXnxfm+/CVTU8sTtzm4YsPnrhFUDTl0Qkh5rEUmB1eyhfRQyhm0AMfcEPXVCdZED4CISnM97gYcyNFVII2TuyrChy1dI1Unb66V3CtCYWcoasMp04Obc42i1lUgbrpuywnAwQZryEMQl54y9UnAjlmpCGUqdGVrsX6ukNBwBPj9gDVWXikToHIHIeTWhZke3EAg5b0HNbmjVikgQaMxkkAhl/OlirjbuK2izXITbxPLqX8bJ29pgsp2zGCEdoPKFXFNDw43ZWvpEBERr5pZS11xnrEYR55UW8zl45hTv8KZV45Elf0XTKUu+ygqZj8yA7hXc2vr7XGmibQVfIvgl7T216szCGdXIAqslDlMvcPHQtb8whzghkMKe4iRUXAW718jsxZcHIBStebb/HRUJRPnJMxEMzQyJ8jJJi0G6ttR5gDnc4ZMlYl09784CQO0lA2441++i6O1iigHgtKAg4Sk8tbwx7ihURDmMbuROcBxnwMt76lKAdrAzajRZMF65ZzH1zqVNwSnPFIt4FwDxoH6jK099zISOExdMVkI3dY5IazdLfmzBulod7rKx1Vpc1ZzS9K6zgCvPOxjHnDflFLC54ihR4QJpWapLpg8WofQAR5nJLrI10IogovOyOeKXl5pHHAVCynqzBw0YJpOcOneaFCNyXvBBBCsRdqFcUk2nqmVqtx3BhKpPlsRDplZATDY7PFmAufyLXzZ7wzTBfyt2pSCgNM+q+cqh9R5hop+aRHnqzTvSyKstRXhxgOHVtDzgIkTBQy5ZY2JVwbLAV/6406sq4ZeVDfBDz4p7ClFhWQgc4HbCAG+HBJ/HR0wVzxvcbtGdSNYgmNOe1ojJZ1Y+vMUE5dBnibXuOvGTYyrNIwNDicM13w0gVGzJztCW0+WQ9hSR1rDHxMI9aqfK8mUF6uTOwEUBDiXFe5EZgM3UBV01Tv6VaahIBGeWuM1HD9uuiaHFHGJoAY0CWmyMcXERJpONnxvPnC41YC7NRHalY6P5+cXKbRNk3+pc3ZEANLtvchP3aYMzgETc55MQtxiKAj0EDnjgftmLkU9d6na6Kjuf6qG82vemgm20ZltC9acU5tOsZqumKS+KXSfdOR+ZEZweB5rfRjiak8vOfNTEfcip0YkpmCC1VknYdOhMjmJNC5ZLMDZBjqwOwS+qsKc4HCQ4zhI8XXVarlBKKpGX5MkUgwz6YI4IMlBw/g4KxHhclDqC8RScYZ5uZ4JwKGzIeQrtXsZiblMfo0UaybkzUyt3IRAyMYhfRasxgkOn2hf1kjmVVGmAIfbiFDTaV//JcAToVNfqxkIwTOuAVBMBK3z38Z3cAVCGb2Eg5eyhF0DHSjmmhcc7hKdHq6j7JHiZSOvMylnfhJuoTAt4uPvAlPlhwtw7R0Rt2Mb/JQRBN8zHpkXHJnEBTHIztFqujTvmlPiwJVuzCs0XbGtAhN24AwlOgBP/BPDLUfmBgdlD7XSBblpXQGGWzyvpcgkYYxYI6hl/RDkMMvCcSZTSJZsZAXp0zsxOriwdXSgx2rzS5IdDq5GNngyg5tWy+QxKQ4Cj18cAH/gWgdTpcdyrtnB4f42rgyGaF11iEvMaqtkSV1Wy1o4YrpUhM5F4I/Nc0NcrHFjhyPzg3sFHlPE1dEgJ+lG6i5BlcUlM1BUWa1rgqW4Y4LHosm5kJ9DqhCzAr0FcBUqvxwn1zmbmFvZl8V1mb8eq244w8jDL4OGFYqQy3IoUtd99TbAcZ8LSfKs3dekvtgEias4rpV0wryIUR11hQMQ8i7DS7b3QDkw8ix6G+DQS0ie9wUix4s6KgNwTBSxTc5XFwQivRY8C9YAF3Gngpz77KMo6hJ+PC+w4sWjOwcruGYENxSobHZBZV+nxnMCud7gX4WT/TgCIstJs/Raocifl0Q2mEX74eaF7C54mXXi8N3Zm+buXXdivPnAISi08KJjXSUaf1gwWaGxaGmOL55VTQnQc/nlNPLEYMld/DTvhtKgEM3D5PGvzAcO55e4GNEqdQ6urmNS6ffNGLwscSbI8oQ4OUePRyh2hKfgCz1R7eFzD/Jk79gCs4ELvEJRQRc0zYHXg+d4Et6zoLIjl5QdETtPXtsaTKl8HnkYcs6JBUEeQkoYM3LTgrtXlu8+u3Ms/LRylLnAkbkXKA24mdqwzQOndFm7cOXGiiqPmw5aXctSPmlA+iDVdEvB/rXFy4vXZrz8PWyg+mHL2S/MBg5L3d5TWpeX8Gfhx46ySinh3LsrV2RpsoxJq/2YyXLMDLw2yl8LM3JPgqM8Mhs43JwV/umCRDWWl/CXLMOLOhaomGAsvqbc5BFu4JzDGB+VxD2wmSkJxwqDq8Irx2BF+8wLDvcvZ++paTr+GswJL7eo2CBotwsWdH54ppsu+tGs3nZD3rHhHI7fqmmblw0ZPDg7d1l08sW8KQCuAD5uQ4H5wCFIkIQ/jELcwurlTfhmkLiD8SpsITt9oPA7xnHg4+x5CNPzTYqtuI+Nl7Tx+fLwuAkT1sSFy/2OpcBNCdsH9Hnex4zgXsDdXHAHO1vV2X15JnzA8Kcqn1ywPAyS6OMYEmc1uBjTQk2/cVVKeKlAIODsEORkYvYc+idUCEH7kRnB4dxWeOh/COVXzom4OkwDUqj4Fu/8EnT1WvEe4Dq3dNIo33ERroAhfXaVQ/W9zJejkMJQCDgcRfjXmUNw9I2/EgMfd9LHnOBI1M3NAn7bKldzvOI4kPmcImHMlsPFl+m9NAILyZSwwhe3EeYxgYNYDX4yITwgAG9BcWxM4RQiDD4X1uFbda0EmRUcWgt3NB6Y3v+JQF20ZIN4Fwet2z1epbii7ItkjayrXzrUQZMYwEnDp5AlmlNSoqNHJGZ/OYB2jz0rS7F/XzJnbqlJn4VFYJ/gbQJA4MpZhauBs6WHVdImSp2yepUfsZtfAs7HZjDEHFkY9fraiUfPyY4yISdLkLnBoVd4B4rdEBfBCb6cHX7zEvH83YIF+HF856TE2GnHwqVYJ1w5vukk12R62oKP15xUSWh8Sl5uv0Q2tKFmr5iDzA/OZTk45oL9gK48elpCGWa2RwvxRAJKTVsV7rADL1WTCjjyY1Pp7U+Y1uzz5ychl91FKzIub9y4/2zxn5fGltLp89xDj8xbrGoc8zzeFiIDL/SktwU4tY5u67iNuPj1Gl9QQLlvzq5Ykg0PZ37aAi+2GXUIsuWQkSNDNJtkCYMuXTDnFFZ1sVuHNyzZrlrz75NxmlJtuYEGpOamxCYnb86nnxj46vmJWsCNcURznlbf4Czm9L4LYfpdiCnAoVN4O5aQp2d/Hxo2/PKVTXTK9fz1+PfZ+NRjJWIEJ1hNrwNR73RWumX9nxnjXfS9DpOAQ3fiyS5Ws9fdHRtEdviCHz3WrSio5ACXkv3fAuoi5qd0pYsQ+n0BFXPpZNHJfTvXZr0c7lOXyzANOPTicEgVT9qy/TzZDmz2tRNnL5/a8/2py2tPxpMt22oBp3o0dUOBC9fFBdV5mAgcClsbryIAYem+Pajk5EhVxASVbthQGqTewa2I0S2lvlNIBTx7PDJomAoc3irwUPzVBWPXL7+DXWlO1vqQ1/c+hP9YySgFirhchHbHUGNLTAlupkGfPbDixcESTZhV7F85dpPaYlRM6d1iEMSTjCLOxyvflgup+ApTgGuGwUX+ZqS9Y11KXu7eWfTtpWuHV+7cfSoMbQzBD94xgMMLMkdBvX13qGFfWM4Irocez6zWcXB95szxocnh5UhqH5cpt+Q8CSRTtpfmGPJN3ij1H6YHcrvp8bSx4eNOEHWIy1QV8NO9SdPpUKBh4JL+dsJPwet4lLoDeU78CEJRpgD3KAg/VchUrILMjZ9NZmwN8RGUi58TZ1tq3T7XitWH7BjyoxsyyTbbe+bST89zdJaqIHN3QOpPGPTxIjRFjMF1baMd3EfwGk95dJBpwBVswo9MOh/nMJWqGSGUcLtBH++Ixnlir+yoddc2a1YTvKuG51+5yCR7NkNitR4/D6pzaRuexFvhQR5gM2A4ozQZ3oSo+yfadtWwYTXHh7aLZSNMwyjDt5BnjXSvjMarGJ4LqbkbDQT3eWR/UIIGOjZ7adySbB61yDTgvopnftgVb8ow6luK7LZS9xHlLcJbJeKdEm217/+IN2fA+7WZxC0r7pKn2NM4DLtVDL1LUVtKDOOT0XjPNgt2a+27mtmyPsQ77SkPlJtECsLOkCd5C3XN87hmRpFH7NcbpOGOUdFkS+f6LXRtjdWqPhvvKR5tks37R12hSk/pXDtMK8H3G8gCEIMs94cMbx7V3VY7OAi6jvDy9Mh7pgm6HwhXpOhY3KYIXwYFTwwl3G3IZ3tH+R9QSsDxdG5OasXqYWGHt1gyjdIVC/GGJst0rNjgLwkm6+XmvjSMK8u8eGwLS8t6ujbAt2bVI7skypJNYrqMkcIVVZ7UrUGWgYi7T89HCLQkX5grQcIb6tpl3IbVEPslz+tHN5EJjpX4vpT6wQU/EK5dw9MQ3hdEuM/FoIhbRh9/2Vn3vqtkK394k+diU5iuZAt1yQe5ac+/pHjy7tEGKibDMDq5SXYmrd9E94651qw2ZGtSrwemOH3H5zDpIGh/VokzL5UkX1sMaaA4cs9d95SAXbrYMux9b0M2WQJ0saZQg+1CTJdDtO28RJZaQqUqPDnQIMP9JBMzbylL/LKJnSWYLvTAaBMc5fj9BjzJ7Jyu0La+GQx3eRPZ08LAgoBtadHW1ob5sAJiOjFonfFN53OGugo5Sm7NhdGc+bmQwpwnGyPU3W7eqQe8eLUajkTdx3gr537sqSZAVyz02OmCRGUB1R1T4DoMz+rtHkmVGma432Rkd/GmVrVse29NH1fAC/3stvEZc89eajbk/IGr5ZW2U3AUE1bjDYhObaGERaPq/qHOaKtMgg8sYKJK9UmqvVuS7dO9jiYZvToYdUVIHYaarrxwgoIjUOA5fYfwY2kR+HsexVPUuuGGYBvH9pTUvi28ynSt7MhpDF7fBRrddi9LqRi8LIUbkTYsJy5uwtdjFk0hE66j9uMFOy8NwTbiLyc+hwfTAAAG2klEQVSyb3rbxtb6naNRn5Tkt9yMbTuflUIqaDmuaUT+g29HDE51U7UgnpdClZrFNQBbxEMlT3WKhh6H19hY23Yh6HiyW/7Gtt0LcL6QfdVXOc05dWKLkKKu7ncxAFviMy/1+Sd6HTtkzYKwI2eguD8INjZnvpxNUcLTy79XT8SWvCy+hk8t8jhzqs6fxXVE0b8qaWyd9T1SCfTAnqADVrlt7IOZL1zFUz57zxRtX7t2+5/nF84Vkjm94q8MMBvKlITS2JrZ6n38IyQqjVTo/ok19gmWd57Sp/V4xMR4qGbx4ncWcA0wm9sfXp70iUNdGrP0Px3RltVKhc7J6bdgxDUqr1SsiK+cvBOWxp/MKDGEJVHKz+4SCY2td51ODwTb2dOsIok0/jH2X2UU3R17+vTphetPrn1pyGycYxRKuieRqY7tbNCwjicj2rJ6taVPRZyuVH6Xb+xTEV188MFZ6tmtunokOFLmM3c2fTwbu1vdT30EzmxAH0PK47n3/yP4HTnPkl7Kk/JAppxOn2j5cTtDzuu0Yln1qU+fHzjdU/YwrdzIoWfYwGeR5t7kycSqY4BbtjLsmFwoalupz5AVh9LnI3LfMjZ8iux9nsyTnJ0OnNCjt6Fni9tYkdN/LYlvikOdbuHTf6PerkeKYo96eeLjjcn5v/Xe5PBmcOb2DTSn5MrE95PU+4y+jYGP6DziHoodEspudtdOb3ZyMzlxu3VL9YnbbPejyaK3db4xBFvwvesynirY2M3avPl58HBvGn7YiD4rvZ9Y6fVjCkIDzA9PJEKOvzx091Qf2dy9p3EOg4fb06KHJblbEHru/X/LNrsseEMsRP8oC1Wfc2/fzpZlbc0yxsC+2aqpxjdlv95PxeeimQ8a3MpzP3l6qen/g87N39wjq52azurbUS0LTpHPpppRFsBqg244yeiDmoH+P21iTGj0UVKs3h00h8KHhv60zEyyIHJEzmUHZGx8SjOh/49sjOWR1bJNVvtmalmQyNg3RiPkaA6PzD8SWUn/fRoadDq6XqFXrzs5oZzIwoFMZ8Tlmpr+s//oLxOrzn1n9+hlHI7UKQv2dOj1E4fKfl6MkKPp4MFHB974zJ2tpv+mrUwHTS0L3exoWZCIZbybQ0D1TJf9T30sC+2vov+Ofa3fLCHRzzebdKmUhb9AFkyhejjYco840fQPX9a1Q29jc6QuWfiopUYWZEfHmUAWgP6TblyvpP8G7c0BTR16fRrR8CQ8KNRHGFkW8DHvhc/owgZ/S9vWpg22GqHXCzIyO5KRQXmVF2xEWSCl9neRTjwJTf+NPmzIsrFmmW/YgOr1bFopC8+2BhpLFnCw/caTTcfQLCzZFt16mcsjq04HsRq3s9cU6rID44wiC45R6H9516vQfxNzemQ132zeub5aFrzYt3Lf2Ddxl2bcUS8ndfbf8SOWqemfURY+rSzU+99IeiNZwPR/+zulkgQbfGijTmYONqZC3VN2oIxruCyA1UfnXfeSqD3SGKX2m4deH3Whzgv1ehBtoPGAIydtVZXa2CO713s7waalUFeFHsiC071sA0IP03/0gy+cxBJ1qd3YBIWNgbKAC3XSfBdL3B/+MrOu/Vvcab3F9uqvyv4tO7d42x5ZxTetWJ9UFuqh7o+n1mnqxBF3Wn+N7KcOti5N3gWPrC4LHT6olIWfzsE1e+tL/6IyoP/+bHWpzXo3PLI6b1bt37LzRuvFLJj+lz2Qqeif/bbpn8E3WfXa0vD6YVlIdoMMOKpWHhl8b7qXutNqZ8pS+81lARfq2DfZvFDZY8jImFqA2Gr+939VdVohTW3a812FpinUP9YU6qE/jcCZsFZ8XCz2qYuORlah/0/etWCrKQuVhbpExvtunDMGIuJyKx3Um8sV4XBMun/USzldRf/1jdtpNVno2eBCnRRDPLa78uetieoAc8ZDpYD+0Z9/JqODDXPkp+3fZY+s5pu9O3WFWoxYr58y8q8H9/OD/1fpnG6pQzb/dtTJ3UkDrWVr1rvtkdXhtWlGXzbE3nRPmVeo+OiRm/du/PLL/Rt/3Hrw0ClU5iUhTQTMI436NH4X6Z9x6qQLhkdTC6hYqMw98ov/+78vvoh093JiS3h0ggzwu5Jcy4b1Hg3sZPW64PUGxDtxJ0ncn4zpYiLYbAuCvGvn9u8bNFWPzKZVs0bE9exogJXD0o4QTttO2GrWrPdwYGLv1bdLVxqNZeUgWC3su/Vs/P7wiPaUjNWib7emXV+znH2DDhgZy9aG9R4PAo/VuEWTvh16fNq0e9vuTRt069O6fXOadt5raKqsRds6GNt/ATL1/IKVdfXxb0H23/hv/Df+G/+C8f8BR3ahKMlrO/IAAAAASUVORK5CYII= + mediatype: image/png + install: + spec: + clusterPermissions: + - rules: + - apiGroups: + - '*' + resources: + - '*' + verbs: + - get + - list + - apiGroups: + - "" + resources: + - pods/exec + verbs: + - create + - apiGroups: + - "" + resources: + - deployments + - daemonsets + - replicasets + - statefulsets + - serviceaccounts + - rolebindings + - pods + - services + - service/finalizers + - endpoints + - persistentvolumeclaims + - events + - configmaps + - secrets + verbs: + - '*' + - apiGroups: + - batch + resources: + - cronjobs + verbs: + - get + - list + - watch + - create + - update + - patch + - delete + - apiGroups: + - apps + resources: + - deployments + - daemonsets + - replicasets + - statefulsets + verbs: + - '*' + - apiGroups: + - monitoring.coreos.com + resources: + - servicemonitors + verbs: + - get + - create + - apiGroups: + - apps + resourceNames: + - postgresql-operator + - postgresql + - backup + resources: + - deployments/finalizers + verbs: + - update + - apiGroups: + - "" + resources: + - pods + verbs: + - get + - apiGroups: + - apps + resources: + - replicasets + verbs: + - get + - apiGroups: + - postgresql-operator.dev4devs.com + resources: + - '*' + - backups + verbs: + - '*' + - apiGroups: + - postgresql.dev4devs.com + resources: + - '*' + - backups + verbs: + - '*' + serviceAccountName: postgresql-operator + deployments: + - name: postgresql-operator + spec: + replicas: 1 + selector: + matchLabels: + name: postgresql-operator + strategy: {} + template: + metadata: + labels: + name: postgresql-operator + spec: + containers: + - command: + - postgresql-operator + env: + - name: WATCH_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.annotations['olm.targetNamespaces'] + - name: POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: OPERATOR_NAME + value: postgresql-operator + image: quay.io/dev4devs-com/postgresql-operator:0.1.1 + imagePullPolicy: Always + name: postgresql-operator + resources: + limits: + cpu: 60m + memory: 128Mi + requests: + cpu: 30m + memory: 64Mi + serviceAccountName: postgresql-operator + strategy: deployment + installModes: + - supported: true + type: OwnNamespace + - supported: true + type: SingleNamespace + - supported: false + type: MultiNamespace + - supported: false + type: AllNamespaces + keywords: + - postgresql + - postgre + - database + - backup + - PostgreSQL + - dev4Devs-com + - backup + labels: + operated-by: postgresql-operator + links: + - name: Documentation + url: https://github.com/dev4devs-com/postgresql-operator/blob/master/README.adoc + - name: Source + url: https://github.com/dev4devs-com/postgresql-operator + - name: https://www.dev4devs.com/ + url: https://www.dev4devs.com/ + maintainers: + - email: dev4devs.com@gmail.com + name: Dev4Devs.com + maturity: alpha + minKubeVersion: 1.11.3 + provider: + name: Dev4Devs.com + version: 0.1.1 diff --git a/dev/tekton/examples/example-bank/scripts/pg_deploy.yaml b/dev/tekton/examples/example-bank/scripts/pg_deploy.yaml new file mode 100755 index 0000000..edb2f5e --- /dev/null +++ b/dev/tekton/examples/example-bank/scripts/pg_deploy.yaml @@ -0,0 +1,117 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + annotations: + deployment.kubernetes.io/revision: "1" + generation: 2 + labels: + olm.owner: postgresql-operator.v0.1.1 + olm.owner.kind: ClusterServiceVersion + olm.owner.namespace: example-bank + name: postgresql-operator + namespace: example-bank +spec: + progressDeadlineSeconds: 600 + replicas: 1 + revisionHistoryLimit: 10 + selector: + matchLabels: + name: postgresql-operator + strategy: + rollingUpdate: + maxSurge: 25% + maxUnavailable: 25% + type: RollingUpdate + template: + metadata: + annotations: + alm-examples: |- + [ + { + "apiVersion": "postgresql.dev4devs.com/v1alpha1", + "kind": "Database", + "metadata": { + "name": "database" + }, + "spec": { + "databaseCpu": "30m", + "databaseCpuLimit": "60m", + "databaseMemoryLimit": "512Mi", + "databaseMemoryRequest": "128Mi", + "databaseName": "example", + "databaseNameKeyEnvVar": "POSTGRESQL_DATABASE", + "databasePassword": "postgres", + "databasePasswordKeyEnvVar": "POSTGRESQL_PASSWORD", + "databaseStorageRequest": "1Gi", + "databaseUser": "postgres", + "databaseUserKeyEnvVar": "POSTGRESQL_USER", + "image": "centos/postgresql-96-centos7", + "size": 1 + } + }, + { + "apiVersion": "postgresql.dev4devs.com/v1alpha1", + "kind": "Backup", + "metadata": { + "name": "backup" + }, + "spec": { + "awsAccessKeyId": "example-awsAccessKeyId", + "awsS3BucketName": "example-awsS3BucketName", + "awsSecretAccessKey": "example-awsSecretAccessKey", + "schedule": "0 0 * * *" + } + } + ] + capabilities: Full Lifecycle + categories: Database + certified: "false" + containerImage: quay.io/dev4devs-com/postgresql-operator:0.1.1 + createdAt: "2019-09-08T08:00:00Z" + description: Operator in Go developed using the Operator Framework to package, + install, configure and manage a PostgreSQL database. This project includes + backup feature. + olm.operatorGroup: example-bank-rgc7j + olm.operatorNamespace: example-bank + olm.targetNamespaces: example-bank + repository: https://github.com/dev4devs-com/postgresql-operator + support: Dev4Devs, Inc + creationTimestamp: null + labels: + name: postgresql-operator + spec: + containers: + - command: + - postgresql-operator + env: + - name: WATCH_NAMESPACE + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: metadata.annotations['olm.targetNamespaces'] + - name: POD_NAME + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: metadata.name + - name: OPERATOR_NAME + value: postgresql-operator + image: quay.io/dev4devs-com/postgresql-operator:0.1.1 + imagePullPolicy: Always + name: postgresql-operator + resources: + limits: + cpu: 60m + memory: 128Mi + requests: + cpu: 30m + memory: 64Mi + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + dnsPolicy: ClusterFirst + restartPolicy: Always + schedulerName: default-scheduler + securityContext: {} + serviceAccount: postgresql-operator + serviceAccountName: postgresql-operator + terminationGracePeriodSeconds: 30 diff --git a/dev/tekton/examples/example-bank/scripts/pg_operatorgroup.yaml b/dev/tekton/examples/example-bank/scripts/pg_operatorgroup.yaml new file mode 100755 index 0000000..f3f7549 --- /dev/null +++ b/dev/tekton/examples/example-bank/scripts/pg_operatorgroup.yaml @@ -0,0 +1,12 @@ +apiVersion: operators.coreos.com/v1 +kind: OperatorGroup +metadata: + annotations: + olm.providedAPIs: Backup.v1alpha1.postgresql.dev4devs.com,Database.v1alpha1.postgresql.dev4devs.com + generateName: example-bank- + generation: 1 + name: example-bank-rgc7j + namespace: example-bank +spec: + targetNamespaces: + - example-bank diff --git a/dev/tekton/examples/example-bank/scripts/pg_sub.yaml b/dev/tekton/examples/example-bank/scripts/pg_sub.yaml new file mode 100755 index 0000000..a9d48e1 --- /dev/null +++ b/dev/tekton/examples/example-bank/scripts/pg_sub.yaml @@ -0,0 +1,12 @@ +apiVersion: operators.coreos.com/v1alpha1 +kind: Subscription +metadata: + name: postgresql-operator-dev4devs-com + namespace: example-bank +spec: + channel: alpha + installPlanApproval: Automatic + name: postgresql-operator-dev4devs-com + source: community-operators + sourceNamespace: openshift-marketplace + startingCSV: postgresql-operator.v0.1.1 diff --git a/dev/tekton/examples/hello-world/pipeline-run.yaml b/dev/tekton/examples/hello-world/pipeline-run.yaml new file mode 100755 index 0000000..b8fb646 --- /dev/null +++ b/dev/tekton/examples/hello-world/pipeline-run.yaml @@ -0,0 +1,10 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + name: hello-goodbye-run +spec: + pipelineRef: + name: hello-goodbye + params: + - name: username + value: "Allard" diff --git a/dev/tekton/examples/hello-world/pipeline.yaml b/dev/tekton/examples/hello-world/pipeline.yaml new file mode 100755 index 0000000..efe06f3 --- /dev/null +++ b/dev/tekton/examples/hello-world/pipeline.yaml @@ -0,0 +1,23 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: hello-goodbye +spec: + params: + - name: username + type: string + tasks: + - name: hello + taskRef: + name: hello + params: + - name: username + value: $(params.username) + - name: goodbye + runAfter: + - hello + taskRef: + name: goodbye + params: + - name: username + value: $(params.username) diff --git a/dev/tekton/examples/hello-world/task-goodbye.yaml b/dev/tekton/examples/hello-world/task-goodbye.yaml new file mode 100755 index 0000000..0737162 --- /dev/null +++ b/dev/tekton/examples/hello-world/task-goodbye.yaml @@ -0,0 +1,14 @@ +apiVersion: tekton.dev/v1beta1 +kind: Task +metadata: + name: goodbye +spec: + params: + - name: username + type: string + steps: + - name: goodbye + image: ubuntu + script: | + #!/bin/bash + echo "Goodbye $(params.username)!" diff --git a/dev/tekton/examples/hello-world/task-hello.yaml b/dev/tekton/examples/hello-world/task-hello.yaml new file mode 100755 index 0000000..0faea54 --- /dev/null +++ b/dev/tekton/examples/hello-world/task-hello.yaml @@ -0,0 +1,14 @@ +apiVersion: tekton.dev/v1beta1 +kind: Task +metadata: + name: hello +spec: + params: + - name: username + type: string + steps: + - name: echo + image: alpine + script: | + #!/bin/sh + echo "Hello $(params.username)!" diff --git a/dev/tekton/examples/kaniko/README.md b/dev/tekton/examples/kaniko/README.md new file mode 100755 index 0000000..be6b8ea --- /dev/null +++ b/dev/tekton/examples/kaniko/README.md @@ -0,0 +1,45 @@ +KANIKO voorbeeld: + +vergeet niet de juiste docker credentials in een secret te zetten: + +sysctl -w fs.inotify.max_user_instances=100000 + +cat ~/.docker/config.json | base64 -w0 + +Output editen in docker-credentials.yaml + +kubectl create -f docker-credentials.yaml + +Dit voorbeeld werk niet op ARM!!! + + +harbor.alldcs.nl toevoegen aan registries voor microk8s: +======================================================== + +MicroK8s 1.23 and newer versions use separate hosts.toml files for each image registry. For registry http://10.141.241.175:32000, this would be at /var/snap/microk8s/current/args/certs.d/10.141.241.175:32000/hosts.toml. First, create the directory if it does not exist: + +sudo mkdir -p /var/snap/microk8s/current/args/certs.d/harbor.alldcs.nl +sudo touch /var/snap/microk8s/current/args/certs.d/harbor.alldcs/hosts.toml +Then, edit the file we just created and make sure the contents are as follows: + +# /var/snap/microk8s/current/args/certs.d/harbor.alldcs.nl/hosts.toml +server = "http://harbor.alldcs.nl" + +[host."http://10.141.241.175:32000"] +capabilities = ["pull", "resolve"] + +#/var/snap/microk8s/current/args/containerd-template.toml + +[plugins."io.containerd.grpc.v1.cri".registry.configs."172.16.4.93:5000".tls] + insecure_skip_verify = true + +Restart MicroK8s to have the new configuration loaded: + +microk8s stop +microk8s start + +=========== + +Het voorbeeld werkt niet naar behoren omdat de site niet is gebouwd. +Tevens in /etc/hosts toegevoegd : 80.60.8.14 harbor.alldcs.nl anders werkt +DNS-resolver niet goed. diff --git a/dev/tekton/examples/kaniko/arm/pipeline-run.yaml b/dev/tekton/examples/kaniko/arm/pipeline-run.yaml new file mode 100755 index 0000000..0dae1af --- /dev/null +++ b/dev/tekton/examples/kaniko/arm/pipeline-run.yaml @@ -0,0 +1,30 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + name: clone-build-push-run +spec: + pipelineRef: + name: clone-build-push + podTemplate: + securityContext: + fsGroup: 65532 + workspaces: + - name: shared-data + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + - name: kubeconfig-dir + configMap: + name: kubeconfig + - name: docker-credentials + secret: + secretName: docker-credentials + params: + - name: repo-url + value: https://github.com/kainlite/tr.git + - name: image-reference + value: allardkrings/tr:latest diff --git a/dev/tekton/examples/kaniko/arm/pipeline.yaml b/dev/tekton/examples/kaniko/arm/pipeline.yaml new file mode 100755 index 0000000..ba8ebc8 --- /dev/null +++ b/dev/tekton/examples/kaniko/arm/pipeline.yaml @@ -0,0 +1,46 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: clone-build-push +spec: + description: | + This pipeline clones a git repo, builds a Docker image with Kaniko and + pushes it to a registry + params: + - name: repo-url + type: string + - name: image-reference + type: string + workspaces: + - name: shared-data + - name: docker-credentials + tasks: + - name: fetch-source + taskRef: + name: git-clone + workspaces: + - name: output + workspace: shared-data + params: + - name: url + value: $(params.repo-url) + - name: build-push + runAfter: ["fetch-source"] + taskRef: + name: kaniko + workspaces: + - name: source + workspace: shared-data + - name: dockerconfig + workspace: docker-credentials + params: + - name: IMAGE + value: $(params.image-reference) + - name: restart-deployment + runAfter: ["build-push"] + taskRef: + name: kubernetes-actions + params: + - name: script + value: | + kubectl -n tr rollout restart deployment/tr-deployment diff --git a/dev/tekton/examples/kaniko/create-secret-docker-credentials.sh b/dev/tekton/examples/kaniko/create-secret-docker-credentials.sh new file mode 100755 index 0000000..9cf96a4 --- /dev/null +++ b/dev/tekton/examples/kaniko/create-secret-docker-credentials.sh @@ -0,0 +1,3 @@ +microk8s kubectl create secret generic harbor-credentials \ + --from-file=.dockerconfigjson=/home/ubuntu/.docker/config.json \ + --type=kubernetes.io/dockerconfigjson diff --git a/dev/tekton/examples/kaniko/create-secret-harbor-credentials.sh b/dev/tekton/examples/kaniko/create-secret-harbor-credentials.sh new file mode 100755 index 0000000..9cf96a4 --- /dev/null +++ b/dev/tekton/examples/kaniko/create-secret-harbor-credentials.sh @@ -0,0 +1,3 @@ +microk8s kubectl create secret generic harbor-credentials \ + --from-file=.dockerconfigjson=/home/ubuntu/.docker/config.json \ + --type=kubernetes.io/dockerconfigjson diff --git a/dev/tekton/examples/kaniko/docker-compose.yaml b/dev/tekton/examples/kaniko/docker-compose.yaml new file mode 100755 index 0000000..e8f211a --- /dev/null +++ b/dev/tekton/examples/kaniko/docker-compose.yaml @@ -0,0 +1,13 @@ +version: "3.3" + +services: + + site: + image: docsy/docsy-example + build: + context: . + command: server + ports: + - "1313:1313" + volumes: + - .:/src diff --git a/dev/tekton/examples/kaniko/docker-credentials.yaml b/dev/tekton/examples/kaniko/docker-credentials.yaml new file mode 100755 index 0000000..3705fd0 --- /dev/null +++ b/dev/tekton/examples/kaniko/docker-credentials.yaml @@ -0,0 +1,6 @@ +apiVersion: v1 +kind: Secret +metadata: + name: docker-credentials +data: + config.json: ewoJImF1dGhzIjogewoJCSJjb3JlLmhhcmJvci5hbGxkY3MubmwiOiB7CgkJCSJhdXRoIjogIllXUnRhVzQ2U0dGeVltOXlNREZBIgoJCX0sCgkJImNvcmUuaGFyYm9yLmRvbWFpbiI6IHsKCQkJImF1dGgiOiAiWVdSdGFXNDZTR0Z5WW05eU1ERkEiCgkJfSwKCQkiaGFyYm9yLmFsbGRjcy5ubCI6IHsKCQkJImF1dGgiOiAiWVdSdGFXNDZTR0Z5WW05eU1ERkEiCgkJfSwKCQkiaHR0cHM6Ly9pbmRleC5kb2NrZXIuaW8vdjEvIjogewoJCQkiYXV0aCI6ICJZV3hzWVhKa2EzSnBibWR6T2t0MVltVnlibVYwWlhNd01VQT0iCgkJfQoJfQp9 diff --git a/dev/tekton/examples/kaniko/git-credentials.yaml b/dev/tekton/examples/kaniko/git-credentials.yaml new file mode 100755 index 0000000..eea9f3e --- /dev/null +++ b/dev/tekton/examples/kaniko/git-credentials.yaml @@ -0,0 +1,7 @@ +apiVersion: v1 +kind: Secret +metadata: + name: git-credentials +data: + id_rsa: AS0tLS... + known_hosts: AG033S... diff --git a/dev/tekton/examples/kaniko/harbor-credentials.yaml b/dev/tekton/examples/kaniko/harbor-credentials.yaml new file mode 100755 index 0000000..63aa7cd --- /dev/null +++ b/dev/tekton/examples/kaniko/harbor-credentials.yaml @@ -0,0 +1,6 @@ +apiVersion: v1 +kind: Secret +metadata: + name: harbor-credentials +data: + config.json: ewoJImF1dGhzIjogewoJCSJjb3JlLmhhcmJvci5hbGxkY3MubmwiOiB7CgkJCSJhdXRoIjogIllXUnRhVzQ2U0dGeVltOXlNREZBIgoJCX0sCgkJImNvcmUuaGFyYm9yLmRvbWFpbiI6IHsKCQkJImF1dGgiOiAiWVdSdGFXNDZTR0Z5WW05eU1ERkEiCgkJfSwKCQkiaGFyYm9yLmFsbGRjcy5ubCI6IHsKCQkJImF1dGgiOiAiWVdSdGFXNDZTR0Z5WW05eU1ERkEiCgkJfSwKCQkiaHR0cHM6Ly9pbmRleC5kb2NrZXIuaW8vdjEvIjogewoJCQkiYXV0aCI6ICJZV3hzWVhKa2EzSnBibWR6T2t0MVltVnlibVYwWlhNd01VQT0iCgkJfQoJfQp9 diff --git a/dev/tekton/examples/kaniko/kaniko-workspace-pv.yaml b/dev/tekton/examples/kaniko/kaniko-workspace-pv.yaml new file mode 100755 index 0000000..01406b7 --- /dev/null +++ b/dev/tekton/examples/kaniko/kaniko-workspace-pv.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: kaniko-workspace-pv +spec: + storageClassName: "" + capacity: + storage: 10Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/tekton-kaniko + readOnly: false + diff --git a/dev/tekton/examples/kaniko/kaniko-workspace-pvc.yaml b/dev/tekton/examples/kaniko/kaniko-workspace-pvc.yaml new file mode 100755 index 0000000..27a95a1 --- /dev/null +++ b/dev/tekton/examples/kaniko/kaniko-workspace-pvc.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: kaniko-workspace-pvc +spec: + storageClassName: "" + volumeName: kaniko-workspace-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 10Gi + + + diff --git a/dev/tekton/examples/kaniko/pipeline-run.yaml b/dev/tekton/examples/kaniko/pipeline-run.yaml new file mode 100755 index 0000000..87021d6 --- /dev/null +++ b/dev/tekton/examples/kaniko/pipeline-run.yaml @@ -0,0 +1,30 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + generateName: kaniko-clone-build-push- +spec: + pipelineRef: + name: kaniko-clone-build-push +# podTemplate: +# securityContext: +# fsGroup: 65532 + workspaces: + - name: shared-data + persistentVolumeClaim: + claimName: kaniko-workspace-pvc + - name: registry-credentials + secret: +# secretName: docker-credentials + secretName: harbor-credentials + items: + - key: .dockerconfigjson + path: config.json + params: + - name: repo-url + value: https://github.com/google/docsy-example.git + - name: image-reference +# value: allardkrings/tekton-example:1.0 + value: harbor.alldcs.nl/allard/tekton-example:1.0 +# value: harbor-registry/allard/tekton-example:1.0 +# value: 80.60.8.14/allard/tekton-example:1.0 +# value: 192.168.40.82/allard/tekton-example:1.0 diff --git a/dev/tekton/examples/kaniko/pipeline.yaml b/dev/tekton/examples/kaniko/pipeline.yaml new file mode 100755 index 0000000..0e3ad51 --- /dev/null +++ b/dev/tekton/examples/kaniko/pipeline.yaml @@ -0,0 +1,49 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: kaniko-clone-build-push +spec: + description: | + This pipeline clones a git repo, builds a Docker image with Kaniko and + pushes it to a registry + params: + - name: repo-url + type: string + - name: image-reference + type: string + workspaces: + - name: shared-data + - name: registry-credentials + tasks: + - name: fetch-source + taskRef: + name: git-clone + workspaces: + - name: output + workspace: shared-data + params: + - name: url + value: $(params.repo-url) + - name: build-push + runAfter: ["fetch-source"] + taskRef: + name: kaniko + workspaces: + - name: source + workspace: shared-data + - name: dockerconfig + workspace: registry-credentials + params: + - name: IMAGE + value: $(params.image-reference) + - name: BUILDER_IMAGE + value: "bitnami/kaniko" + - name: EXTRA_ARGS + value: [ + "--verbosity=debug", +# "--skip-tls-verify=true", +# "--skip-tls-verify-pull=true", +# "--skip-tls-verify-registry=harbor-registry", + "--insecure=true", + "--insecure-pull=true", + "--insecure-registry=harbor.alldcs.nl"] diff --git a/dev/tekton/examples/kaniko/site-claim0-persistentvolumeclaim.yaml b/dev/tekton/examples/kaniko/site-claim0-persistentvolumeclaim.yaml new file mode 100755 index 0000000..f050b17 --- /dev/null +++ b/dev/tekton/examples/kaniko/site-claim0-persistentvolumeclaim.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + creationTimestamp: null + labels: + io.kompose.service: site-claim0 + name: site-claim0 +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +status: {} diff --git a/dev/tekton/examples/kaniko/site-deployment.yaml b/dev/tekton/examples/kaniko/site-deployment.yaml new file mode 100755 index 0000000..168a37d --- /dev/null +++ b/dev/tekton/examples/kaniko/site-deployment.yaml @@ -0,0 +1,43 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + annotations: + kompose.cmd: kompose convert + kompose.version: 1.26.0 (40646f47) + creationTimestamp: null + labels: + io.kompose.service: site + name: site +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: site + strategy: + type: Recreate + template: + metadata: + annotations: + kompose.cmd: kompose convert + kompose.version: 1.26.0 (40646f47) + creationTimestamp: null + labels: + io.kompose.service: site + spec: + containers: + - args: + - server + image: harbor.alldcs.nl/allard/tekton-example:1.0 + name: site + ports: + - containerPort: 1313 + resources: {} + volumeMounts: + - mountPath: /src + name: site-claim0 + restartPolicy: Always + volumes: + - name: site-claim0 + persistentVolumeClaim: + claimName: site-claim0 +status: {} diff --git a/dev/tekton/examples/kaniko/site-service.yaml b/dev/tekton/examples/kaniko/site-service.yaml new file mode 100755 index 0000000..275a6ec --- /dev/null +++ b/dev/tekton/examples/kaniko/site-service.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: Service +metadata: + annotations: + kompose.cmd: kompose convert + kompose.version: 1.26.0 (40646f47) + creationTimestamp: null + labels: + io.kompose.service: site + name: site +spec: + ports: + - name: "1313" + port: 1313 + targetPort: 1313 + selector: + io.kompose.service: site +status: + loadBalancer: {} diff --git a/dev/tekton/examples/kaniko/tekton-example.yaml b/dev/tekton/examples/kaniko/tekton-example.yaml new file mode 100755 index 0000000..e11a7d0 --- /dev/null +++ b/dev/tekton/examples/kaniko/tekton-example.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: tekton-example + labels: + app: tekton-example +spec: + replicas: 1 + selector: + matchLabels: + app: tekton-example + template: + metadata: + labels: + app: tekton-example + spec: + containers: + - name: tekton-example +# image: allardkrings/tekton-example:1.0 + image: harbor.alldcs.nl/allard/tekton-example:1.0 + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Service +metadata: + name: tekton-example + labels: + name: tekton-example +spec: + type: ClusterIP + selector: + app: tekton-example + ports: + - port: 80 diff --git a/dev/tekton/examples/triggers/simple/event-listener.yaml b/dev/tekton/examples/triggers/simple/event-listener.yaml new file mode 100755 index 0000000..e1afe3a --- /dev/null +++ b/dev/tekton/examples/triggers/simple/event-listener.yaml @@ -0,0 +1,12 @@ +apiVersion: triggers.tekton.dev/v1beta1 +kind: EventListener +metadata: + name: hello-listener +spec: + serviceAccountName: tekton-robot + triggers: + - name: hello-trigger + bindings: + - ref: hello-binding + template: + ref: hello-template diff --git a/dev/tekton/examples/triggers/simple/pipeline-hello-goodbye.yaml b/dev/tekton/examples/triggers/simple/pipeline-hello-goodbye.yaml new file mode 100755 index 0000000..00704a0 --- /dev/null +++ b/dev/tekton/examples/triggers/simple/pipeline-hello-goodbye.yaml @@ -0,0 +1,20 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: hello-goodbye +spec: + params: + - name: username + type: string + tasks: + - name: hello + taskRef: + name: hello + - name: goodbye + runAfter: + - hello + taskRef: + name: goodbye + params: + - name: username + value: $(params.username) diff --git a/dev/tekton/examples/triggers/simple/service-account.yaml b/dev/tekton/examples/triggers/simple/service-account.yaml new file mode 100755 index 0000000..7d861b4 --- /dev/null +++ b/dev/tekton/examples/triggers/simple/service-account.yaml @@ -0,0 +1,29 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: tekton-robot +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: triggers-example-eventlistener-binding +subjects: +- kind: ServiceAccount + name: tekton-robot +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-triggers-eventlistener-roles +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: triggers-example-eventlistener-clusterbinding +subjects: +- kind: ServiceAccount + name: tekton-robot + namespace: default +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-triggers-eventlistener-clusterroles diff --git a/dev/tekton/examples/triggers/simple/task-goodbye.yaml b/dev/tekton/examples/triggers/simple/task-goodbye.yaml new file mode 100755 index 0000000..0737162 --- /dev/null +++ b/dev/tekton/examples/triggers/simple/task-goodbye.yaml @@ -0,0 +1,14 @@ +apiVersion: tekton.dev/v1beta1 +kind: Task +metadata: + name: goodbye +spec: + params: + - name: username + type: string + steps: + - name: goodbye + image: ubuntu + script: | + #!/bin/bash + echo "Goodbye $(params.username)!" diff --git a/dev/tekton/examples/triggers/simple/task-hello.yaml b/dev/tekton/examples/triggers/simple/task-hello.yaml new file mode 100755 index 0000000..aa1228a --- /dev/null +++ b/dev/tekton/examples/triggers/simple/task-hello.yaml @@ -0,0 +1,11 @@ +apiVersion: tekton.dev/v1beta1 +kind: Task +metadata: + name: hello +spec: + steps: + - name: echo + image: alpine + script: | + #!/bin/sh + echo "Hello World" diff --git a/dev/tekton/examples/triggers/simple/trigger-binding.yaml b/dev/tekton/examples/triggers/simple/trigger-binding.yaml new file mode 100755 index 0000000..8e4c7cd --- /dev/null +++ b/dev/tekton/examples/triggers/simple/trigger-binding.yaml @@ -0,0 +1,8 @@ +apiVersion: triggers.tekton.dev/v1beta1 +kind: TriggerBinding +metadata: + name: hello-binding +spec: + params: + - name: username + value: $(body.username) diff --git a/dev/tekton/examples/triggers/simple/trigger-template.yaml b/dev/tekton/examples/triggers/simple/trigger-template.yaml new file mode 100755 index 0000000..7a0f88f --- /dev/null +++ b/dev/tekton/examples/triggers/simple/trigger-template.yaml @@ -0,0 +1,19 @@ +apiVersion: triggers.tekton.dev/v1beta1 +kind: TriggerTemplate +metadata: + name: hello-template +spec: + params: + - name: username + default: "Kubernetes" + resourcetemplates: + - apiVersion: tekton.dev/v1beta1 + kind: PipelineRun + metadata: + generateName: hello-goodbye-run- + spec: + pipelineRef: + name: hello-goodbye + params: + - name: username + value: $(tt.params.username) diff --git a/dev/tekton/examples/workspaces/pipeline-run.yaml b/dev/tekton/examples/workspaces/pipeline-run.yaml new file mode 100755 index 0000000..cc2bce7 --- /dev/null +++ b/dev/tekton/examples/workspaces/pipeline-run.yaml @@ -0,0 +1,11 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + generateName: pr-different-path- +spec: + pipelineRef: + name: pipeline-using-different-subpaths + workspaces: + - name: ws + persistentVolumeClaim: + claimName: workspace-pvc diff --git a/dev/tekton/examples/workspaces/pipeline.yaml b/dev/tekton/examples/workspaces/pipeline.yaml new file mode 100755 index 0000000..070047f --- /dev/null +++ b/dev/tekton/examples/workspaces/pipeline.yaml @@ -0,0 +1,69 @@ +apiVersion: tekton.dev/v1beta1 +kind: Task +metadata: + name: writer +spec: + steps: + - name: write + image: ubuntu + script: echo bar > $(workspaces.task-ws.path)/foo + workspaces: + - name: task-ws +--- +apiVersion: tekton.dev/v1beta1 +kind: Task +metadata: + name: read-both +spec: + params: + - name: directory1 + type: string + - name: directory2 + type: string + workspaces: + - name: local-ws + steps: + - name: read-1 + image: ubuntu + script: cat $(workspaces.local-ws.path)/$(params.directory1)/foo | grep bar + - name: read-2 + image: ubuntu + script: cat $(workspaces.local-ws.path)/$(params.directory2)/foo | grep bar +--- +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: pipeline-using-different-subpaths +spec: + workspaces: + - name: ws + tasks: + - name: writer-1 + taskRef: + name: writer + workspaces: + - name: task-ws + workspace: ws + subPath: dir-1 + - name: writer-2 + runAfter: + - writer-1 + taskRef: + name: writer + workspaces: + - name: task-ws + workspace: ws + subPath: dir-2 + - name: read-all + runAfter: + - writer-2 + params: + - name: directory1 + value: dir-1 + - name: directory2 + value: dir-2 + taskRef: + name: read-both + workspaces: + - name: local-ws + workspace: ws diff --git a/dev/tekton/examples/workspaces/task.yaml b/dev/tekton/examples/workspaces/task.yaml new file mode 100755 index 0000000..8704cca --- /dev/null +++ b/dev/tekton/examples/workspaces/task.yaml @@ -0,0 +1,18 @@ + +spec: + steps: + - name: write-message + image: ubuntu + script: | + #!/usr/bin/env bash + set -xe + if [ "$(workspaces.messages.bound)" == "true" ] ; then + echo hello! > $(workspaces.messages.path)/message + fi + workspaces: + - name: messages + description: | + The folder where we write the message to. If no workspace + is provided then the message will not be written. + optional: true + mountPath: /home/ubuntu/tekton diff --git a/dev/tekton/examples/workspaces/workspace-pv.yaml b/dev/tekton/examples/workspaces/workspace-pv.yaml new file mode 100755 index 0000000..b8b4b83 --- /dev/null +++ b/dev/tekton/examples/workspaces/workspace-pv.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: workspace-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/workspace + readOnly: false + diff --git a/dev/tekton/examples/workspaces/workspace-pvc.yaml b/dev/tekton/examples/workspaces/workspace-pvc.yaml new file mode 100755 index 0000000..ca440c9 --- /dev/null +++ b/dev/tekton/examples/workspaces/workspace-pvc.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: workspace-pvc +spec: + storageClassName: "" + volumeName: workspace-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + + diff --git a/dev/tekton/ingressroute-tls.yaml b/dev/tekton/ingressroute-tls.yaml new file mode 100755 index 0000000..af19c43 --- /dev/null +++ b/dev/tekton/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: tekton-tls + namespace: tekton-pipelines +spec: + entryPoints: + - websecure + routes: + - match: Host(`tekton-dev.allarddcs.nl`) + kind: Rule + services: + - name: tekton-dashboard + port: 9097 + tls: + certResolver: letsencrypt diff --git a/dev/tekton/install.sh b/dev/tekton/install.sh new file mode 100755 index 0000000..c5be256 --- /dev/null +++ b/dev/tekton/install.sh @@ -0,0 +1,9 @@ +#!/bin/bash +microk8s +kubectl apply --filename +https://storage.googleapis.com/tekton-releases/pipeline/latest/release.yaml +microk8s kubectl apply -f +https://storage.googleapis.com/tekton-releases/dashboard/latest/release.yaml +microk8s kubectl apply -f ingressroute-tls.yaml +microk8s config > admin.conf +sudo mv admin.conf /etc/kubernetes/ diff --git a/dev/tekton/openliberty/openliberty-pipeline-run.yaml b/dev/tekton/openliberty/openliberty-pipeline-run.yaml new file mode 100755 index 0000000..c518d21 --- /dev/null +++ b/dev/tekton/openliberty/openliberty-pipeline-run.yaml @@ -0,0 +1,72 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + generateName: openliberty-pipeline-run- +spec: + pipelineRef: + name: openliberty-pipeline +#gitea: + params: + - name: repo-url + value: http://gitea.gitea.svc.cluster.local:3000/allard/olproperties.git + - name: git-revision + value: 1.3 + +#maven: + - name: maven-mirror-url + value: 'http://nexus.nexus.svc.cluster.local:8081/repository/maven-public/' + +#sonarqube: + - name: sonar-organization + value: "allarddcs" + - name: sonar-project-key + value: olproperties + - name: sonar-token + value: sqp_214ee7c92e1b82b0d43dd9b1d9462eac8f50434c + - name: sonar-host-url + value: "https://sonarqube-dev.allarddcs.nl" + - name: source-to-scan + value: ./src + +#push-to-harbor: + - name: registry + value: harbor-dev.allarddcs.nl + - name: project + value: allard + - name: image-name + value: olproperties + +#cosign + - name: cosign-image-url + value: harbor-dev.allarddcs.nl/allard/olproperties + +#dependency-track + - name: deptrack-apiKey + value: odt_BRpq4el8T0XqdeunYMnefniaS0n8Yxd8 + - name: deptrack-projectName + value: olproperties + - name: deptrack-projectVersion + value: 1.1 + - name: deptrack-url + value: https://deptracka-dev.allarddcs.nl + workspaces: + - name: shared-data + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + - name: maven-settings + persistentVolumeClaim: + emptyDir: {} + - name: sonar-settings + configMap: + name: sonar-properties + - name: registry-credentials + secret: + secretName: registry-credentials + items: + - key: .dockerconfigjson + path: config.json diff --git a/dev/tekton/openliberty/openliberty-pipeline.yaml b/dev/tekton/openliberty/openliberty-pipeline.yaml new file mode 100755 index 0000000..53589f1 --- /dev/null +++ b/dev/tekton/openliberty/openliberty-pipeline.yaml @@ -0,0 +1,186 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: openliberty-pipeline +spec: + description: | + This pipeline clones a git repo, builds a Docker image with Kaniko and + pushes it to a registry + params: + - name: repo-url + type: string + - name: git-revision + type: string + + - name: maven-mirror-url + type: string + + - name: sonar-organization + type: string + - name: sonar-project-key + type: string + - name: sonar-token + type: string + - name: sonar-host-url + type: string + - name: source-to-scan + type: string + + - name: registry + type: string + - name: project + type: string + - name: image-name + type: string + + - name: cosign-image-url + type: string + + - name: deptrack-projectName + type: string + - name: deptrack-projectVersion + type: string + - name: deptrack-apiKey + type: string + - name: deptrack-url + type: string + + workspaces: + - name: shared-data + - name: registry-credentials + - name: maven-settings + - name: sonar-settings + + tasks: + + - name: fetch-source + taskRef: + name: git-clone + workspaces: + - name: output + workspace: shared-data + params: + - name: url + value: $(params.repo-url) + + - name: compile-java + runAfter: ["fetch-source"] + taskRef: + name: maven + workspaces: + - name: source + workspace: shared-data + - name: maven-settings + workspace: shared-data + params: + - name: MAVEN_IMAGE + value: maven + - name: CONTEXT_DIR + value: "." + - name: MAVEN_MIRROR_URL + value: $(params.maven-mirror-url) + - name: GOALS + value: + - clean + - package + + - name: sonarqube + runAfter: ["compile-java"] + taskRef: + kind: Task + name: sonarqube-scanner + workspaces: + - name: source + workspace: shared-data + - name: sonar-settings + workspace: sonar-settings + params: + - name: SONAR_ORGANIZATION + value: $(params.sonar-organization) + - name: SONAR_PROJECT_KEY + value: $(params.sonar-project-key) + - name: SONAR_TOKEN + value: $(params.sonar-token) + - name: SOURCE_TO_SCAN + value: $(params.source-to-scan) + - name: SONAR_HOST_URL + value: $(params.sonar-host-url) + - name: SONAR_SCANNER_IMAGE + value: noenv/sonar-scanner:7.0.2 + + - name: build-push + runAfter: ["compile-java"] + taskRef: + name: buildah + workspaces: + - name: source + workspace: shared-data + - name: dockerconfig + workspace: registry-credentials + params: + - name: IMAGE + value: $(params.registry)/$(params.project)/$(params.image-name):$(params.git-revision) + + - name: cosign-sign + runAfter: ["build-push"] + taskRef: + name: cosign-sign + params: + - name: cosign-image-url + value: $(params.registry)/$(params.project)/$(params.image-name):$(params.git-revision) + - name: cosign-image-digest + value: $(tasks.build-push.results.IMAGE_DIGEST) + + - name: syft + runAfter: ["build-push"] + taskRef: + name: syft + params: + - name: ARGS + value: + - $(params.registry)/$(params.project)/$(params.image-name):$(params.git-revision) + - --output + - cyclonedx-json=./$(params.sonar-project-key).sbom.json + workspaces: + - name: source-dir + workspace: shared-data + + - name: push-sbom + runAfter: ["syft"] + taskref: + name: push-sbom + params: + - name: deptrack-url + value: $(params.deptrack-url) + - name: deptrack-apiKey + value: $(params.deptrack-apiKey) + - name: deptrack-projectName + value: $(params.deptrack-projectName) + - name: deptrack-projectVersion + value: $(params.deptrack-projectVersion) + - name: sbom + value: $(params.deptrack-projectName).sbom.json + workspaces: + - name: source-dir + workspace: shared-data + + - name: register-change + runAfter: ["build-push"] + taskref: + name: register-change + params: + - name: project + value: $(params.sonar-project-key) + - name: git-revision + value: $(params.git-revision) + workspaces: + - name: source-dir + workspace: shared-data + + - name: deploy-with-argocd + runAfter: ["build-push"] + taskref: + name: argocd-task-sync-and-wait + params: + - name: application-name + value: $(params.sonar-project-key) diff --git a/dev/tekton/openliberty/syft-pipeline-run.yaml b/dev/tekton/openliberty/syft-pipeline-run.yaml new file mode 100755 index 0000000..8c5c985 --- /dev/null +++ b/dev/tekton/openliberty/syft-pipeline-run.yaml @@ -0,0 +1,31 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + generateName: syft-pipeline-run- +spec: + pipelineRef: + name: syft-pipeline + params: + - name: image-reference + value: harbor.alldcs.nl/allard/olproperties:1.1 + - name: deptrack-apiKey + value: nUbx5hG6gm09OOdZZh1si4WssmUHy6Np + - name: deptrack-projectName + value: olproperties + - name: deptrack-projectVersion + value: 1.0 + workspaces: + - name: shared-data + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + - name: registry-credentials + secret: + secretName: registry-credentials + items: + - key: .dockerconfigjson + path: config.json diff --git a/dev/tekton/openliberty/syft-pipeline.yaml b/dev/tekton/openliberty/syft-pipeline.yaml new file mode 100755 index 0000000..bef90e6 --- /dev/null +++ b/dev/tekton/openliberty/syft-pipeline.yaml @@ -0,0 +1,65 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: syft-pipeline +spec: + description: | + This pipeline clones a git repo, builds a Docker image with Kaniko and + pushes it to a registry + params: + - name: image-reference + type: string + - name: deptrack-projectName + type: string + - name: deptrack-projectVersion + type: string + - name: deptrack-apiKey + type: string + workspaces: + - name: shared-data + - name: registry-credentials + tasks: + + - name: syft + taskRef: + name: syft + params: + - name: ARGS + value: + - $(params.image-reference) + - --output + - cyclonedx-json=./$(params.deptrack-projectName).sbom.json + workspaces: + - name: source-dir + workspace: shared-data + + - name: grype + runAfter: ["syft"] + taskRef: + name: grype + params: + - name: ARGS + value: + - $(params.image-reference) + - --output + - cyclonedx-json=./vulnerabilities.cyclonedx.json + workspaces: + - name: source-dir + workspace: shared-data + + - name: push-sbom + runAfter: ["syft"] + taskref: + name: push-sbom + params: + - name: deptrack-apiKey + value: $(params.deptrack-apiKey) + - name: deptrack-projectName + value: $(params.deptrack-projectName) + - name: deptrack-projectVersion + value: $(params.deptrack-projectVersion) + - name: sbom + value: $(params.deptrack-projectName).sbom.json + workspaces: + - name: source-dir + workspace: shared-data diff --git a/dev/tekton/tasks/argocd-sync-and-wait/app-project.yaml b/dev/tekton/tasks/argocd-sync-and-wait/app-project.yaml new file mode 100644 index 0000000..047a4b0 --- /dev/null +++ b/dev/tekton/tasks/argocd-sync-and-wait/app-project.yaml @@ -0,0 +1,18 @@ +apiVersion: argoproj.io/v1alpha1 +kind: AppProject +metadata: + name: default + namespace: argocd +spec: + description: Default project + destinations: + - namespace: '*' + server: https://kubernetes.default.svc + sourceRepos: + - '*' + clusterResourceWhitelist: + - group: '*' + kind: '*' + namespaceResourceBlacklist: + - group: backstage.io + kind: Component diff --git a/dev/tekton/tasks/argocd-sync-and-wait/argocd-env-configmap.yaml b/dev/tekton/tasks/argocd-sync-and-wait/argocd-env-configmap.yaml new file mode 100644 index 0000000..7732fa3 --- /dev/null +++ b/dev/tekton/tasks/argocd-sync-and-wait/argocd-env-configmap.yaml @@ -0,0 +1,7 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: argocd-env-configmap + namespace: default +data: + ARGOCD_SERVER: argocd-dev.allarddcs.nl diff --git a/dev/tekton/tasks/argocd-sync-and-wait/argocd-pipeline-run.yaml b/dev/tekton/tasks/argocd-sync-and-wait/argocd-pipeline-run.yaml new file mode 100755 index 0000000..137729d --- /dev/null +++ b/dev/tekton/tasks/argocd-sync-and-wait/argocd-pipeline-run.yaml @@ -0,0 +1,10 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + generateName: argocd-pipeline-run- +spec: + pipelineRef: + name: argocd-pipeline-test + params: + - name: sonar-project-key + value: olproperties diff --git a/dev/tekton/tasks/argocd-sync-and-wait/argocd-pipeline.yaml b/dev/tekton/tasks/argocd-sync-and-wait/argocd-pipeline.yaml new file mode 100755 index 0000000..eed9448 --- /dev/null +++ b/dev/tekton/tasks/argocd-sync-and-wait/argocd-pipeline.yaml @@ -0,0 +1,19 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: argocd-pipeline-test +spec: + description: | + This pipeline tests argocd + params: + - name: sonar-project-key + type: string + + tasks: + + - name: deploy-with-argocd + taskref: + name: argocd-task-sync-and-wait + params: + - name: application-name + value: $(params.sonar-project-key) diff --git a/dev/tekton/tasks/argocd-sync-and-wait/argocd-task-sync-and-wait.yaml b/dev/tekton/tasks/argocd-sync-and-wait/argocd-task-sync-and-wait.yaml new file mode 100644 index 0000000..5424847 --- /dev/null +++ b/dev/tekton/tasks/argocd-sync-and-wait/argocd-task-sync-and-wait.yaml @@ -0,0 +1,43 @@ +apiVersion: tekton.dev/v1 +kind: Task +metadata: + name: argocd-task-sync-and-wait + namespace: default +spec: + description: |- + This task syncs (deploys) an Argo CD application and waits for it to be healthy. + To do so, it requires the address of the Argo CD server and some form of authentication either a username/password or an authentication token. + params: + - description: name of the application to sync + name: application-name + type: string + - default: HEAD + description: the revision to sync to + name: revision + type: string + - default: -- + name: flags + type: string + - default: v2.2.2 + name: argocd-version + type: string + stepTemplate: + computeResources: {} + envFrom: + - configMapRef: + name: argocd-env-configmap + - secretRef: + name: argocd-env-secret + steps: + - computeResources: {} + image: argoproj/argocd + name: login + script: | + echo "ARGOCD_SERVER = " $ARGOCD_SERVER + echo "ARGOCD_USERNAME = " $ARGOCD_USERNAME + echo "ARGOCD_PASSWORD = " $ARGOCD_PASSWORD + if [ -z "$ARGOCD_AUTH_TOKEN" ]; then + yes | argocd login "$ARGOCD_SERVER" --username="$ARGOCD_USERNAME" --password="$ARGOCD_PASSWORD"; + fi + argocd app sync "$(params.application-name)" --revision "$(params.revision)" "$(params.flags)" + argocd app wait "$(params.application-name)" --health "$(params.flags)" diff --git a/dev/tekton/tasks/argocd-sync-and-wait/create-argocd-env-secret.sh b/dev/tekton/tasks/argocd-sync-and-wait/create-argocd-env-secret.sh new file mode 100755 index 0000000..1dcc68b --- /dev/null +++ b/dev/tekton/tasks/argocd-sync-and-wait/create-argocd-env-secret.sh @@ -0,0 +1,3 @@ +microk8s kubectl create secret generic argocd-env-secret \ + --from-literal=ARGOCD_USERNAME=admin \ + --from-literal=ARGOCD_PASSWORD='Argocd01@' diff --git a/dev/tekton/tasks/argocd-sync-and-wait/default-project.yaml b/dev/tekton/tasks/argocd-sync-and-wait/default-project.yaml new file mode 100644 index 0000000..c459d8b --- /dev/null +++ b/dev/tekton/tasks/argocd-sync-and-wait/default-project.yaml @@ -0,0 +1,18 @@ +apiVersion: argoproj.io/v1alpha1 +kind: AppProject +metadata: + name: default + namespace: argocd +spec: + description: Default project + destinations: + - namespace: '*' # Allow all namespaces + server: https://kubernetes.default.svc + sourceRepos: + - '*' # Allow all repositories + clusterResourceWhitelist: + - group: '*' # Allow all cluster-scoped resources + kind: '*' + namespaceResourceBlacklist: + - group: backstage.io # Exclude all Backstage API group + kind: Component # Exclude Component kind diff --git a/dev/tekton/tasks/argocd-sync-or-deploy/argocd-sync-or-deploy.yaml b/dev/tekton/tasks/argocd-sync-or-deploy/argocd-sync-or-deploy.yaml new file mode 100644 index 0000000..b461413 --- /dev/null +++ b/dev/tekton/tasks/argocd-sync-or-deploy/argocd-sync-or-deploy.yaml @@ -0,0 +1,64 @@ +apiVersion: tekton.dev/v1 +kind: Task +metadata: + name: argocd-sync-or-deploy + namespace: default +spec: + params: + - name: appName + type: string + description: The name of the ArgoCD application + - name: appRepoURL + type: string + description: The Git repository URL for the ArgoCD application + - name: appRepoRevision + type: string + description: The Git repository revision (e.g., branch, tag) + - name: appPath + type: string + description: The path to the ArgoCD application manifests in the Git repository + - name: argocdServer + type: string + description: The ArgoCD server URL + - name: argocdUsername + type: string + description: The ArgoCD username for authentication + - name: argocdPassword + type: string + description: The ArgoCD password for authentication + stepTemplate: + computeResources: {} + envFrom: + - configMapRef: + name: argocd-env-configmap + - secretRef: + name: argocd-env-secret + steps: + - name: sync-argocd-app + image: quay.io/argoproj/argocd-cli:v2.8.3 + script: | + #!/bin/bash + echo "ARGOCD_SERVER = " $ARGOCD_SERVER + echo "ARGOCD_USERNAME = " $ARGOCD_USERNAME + echo "ARGOCD_PASSWORD = " $ARGOCD_PASSWORD + # Login to ArgoCD + argocd login $(params.argocdServer) --username $(params.argocdUsername) --password $(params.argocdPassword) --insecure + # Check if the application already exists + if argocd app list | grep -q $(params.appName); then + echo "Application $(params.appName) exists. Updating the application..." + # Sync the existing application to update + argocd app sync $(params.appName) --revision $(params.appRepoRevision) --insecure + else + echo "Application $(params.appName) does not exist. Creating a new application..." + # Create a new application if it doesn't exist + argocd app create $(params.appName) \ + --repo $(params.appRepoURL) \ + --revision $(params.appRepoRevision) \ + --path $(params.appPath) \ + --dest-server https://kubernetes.default.svc \ + --dest-namespace default \ + --insecure + fi + workspaces: + - name: source-dir + optional: true diff --git a/dev/tekton/tasks/buildah/buildah.yaml b/dev/tekton/tasks/buildah/buildah.yaml new file mode 100644 index 0000000..3b8c314 --- /dev/null +++ b/dev/tekton/tasks/buildah/buildah.yaml @@ -0,0 +1,106 @@ +apiVersion: tekton.dev/v1 +kind: Task +metadata: + annotations: + kubectl.kubernetes.io/last-applied-configuration: | + {"apiVersion":"tekton.dev/v1beta1","kind":"Task","metadata":{"annotations":{"tekton.dev/categories":"Image Build","tekton.dev/pipelines.minVersion":"0.17.0","tekton.dev/platforms":"linux/amd64,linux/s390x,linux/ppc64le,linux/arm64","tekton.dev/tags":"image-build"},"labels":{"app.kubernetes.io/version":"0.5"},"name":"buildah","namespace":"default"},"spec":{"description":"Buildah task builds source into a container image and then pushes it to a container registry.\nBuildah Task builds source into a container image using Project Atomic's Buildah build tool.It uses Buildah's support for building from Dockerfiles, using its buildah bud command.This command executes the directives in the Dockerfile to assemble a container image, then pushes that image to a container registry.","params":[{"description":"Reference of the image buildah will produce.","name":"IMAGE"},{"default":"quay.io/buildah/stable:v1.23.3","description":"The location of the buildah builder image.","name":"BUILDER_IMAGE"},{"default":"overlay","description":"Set buildah storage driver","name":"STORAGE_DRIVER"},{"default":"./Dockerfile","description":"Path to the Dockerfile to build.","name":"DOCKERFILE"},{"default":".","description":"Path to the directory to use as context.","name":"CONTEXT"},{"default":"true","description":"Verify the TLS on the registry endpoint (for push/pull to a non-TLS registry)","name":"TLSVERIFY"},{"default":"oci","description":"The format of the built container, oci or docker","name":"FORMAT"},{"default":"","description":"Extra parameters passed for the build command when building images.","name":"BUILD_EXTRA_ARGS"},{"default":"","description":"Extra parameters passed for the push command when pushing images.","name":"PUSH_EXTRA_ARGS","type":"string"},{"default":"false","description":"Skip pushing the built image","name":"SKIP_PUSH"}],"results":[{"description":"Digest of the image just built.","name":"IMAGE_DIGEST"},{"description":"Image repository where the built image would be pushed to","name":"IMAGE_URL"}],"steps":[{"image":"$(params.BUILDER_IMAGE)","name":"build","script":"[[ \"$(workspaces.sslcertdir.bound)\" == \"true\" ]] \u0026\u0026 CERT_DIR_FLAG=\"--cert-dir $(workspaces.sslcertdir.path)\"\n[[ \"$(workspaces.dockerconfig.bound)\" == \"true\" ]] \u0026\u0026 export DOCKER_CONFIG=\"$(workspaces.dockerconfig.path)\"\nbuildah ${CERT_DIR_FLAG} --storage-driver=$(params.STORAGE_DRIVER) bud \\\n $(params.BUILD_EXTRA_ARGS) --format=$(params.FORMAT) \\\n --tls-verify=$(params.TLSVERIFY) --no-cache \\\n -f $(params.DOCKERFILE) -t $(params.IMAGE) $(params.CONTEXT)\n[[ \"$(params.SKIP_PUSH)\" == \"true\" ]] \u0026\u0026 echo \"Push skipped\" \u0026\u0026 exit 0\nbuildah ${CERT_DIR_FLAG} --storage-driver=$(params.STORAGE_DRIVER) push \\\n $(params.PUSH_EXTRA_ARGS) --tls-verify=$(params.TLSVERIFY) \\\n --digestfile /tmp/image-digest $(params.IMAGE) \\\n docker://$(params.IMAGE)\ncat /tmp/image-digest | tee $(results.IMAGE_DIGEST.path)\necho -n \"$(params.IMAGE)\" | tee $(results.IMAGE_URL.path)\n","securityContext":{"privileged":true},"volumeMounts":[{"mountPath":"/var/lib/containers","name":"varlibcontainers"}],"workingDir":"$(workspaces.source.path)"}],"volumes":[{"emptyDir":{},"name":"varlibcontainers"}],"workspaces":[{"name":"source"},{"name":"sslcertdir","optional":true},{"description":"An optional workspace that allows providing a .docker/config.json file for Buildah to access the container registry. The file should be placed at the root of the Workspace with name config.json.","name":"dockerconfig","optional":true}]}} + tekton.dev/categories: Image Build + tekton.dev/pipelines.minVersion: 0.17.0 + tekton.dev/platforms: linux/amd64,linux/s390x,linux/ppc64le,linux/arm64 + tekton.dev/tags: image-build + creationTimestamp: "2024-02-28T10:37:30Z" + generation: 1 + labels: + app.kubernetes.io/version: "0.5" + name: buildah + namespace: default + resourceVersion: "670600" + uid: be7a4925-c0ff-4397-8056-2842f9844108 +spec: + description: |- + Buildah task builds source into a container image and then pushes it to a container registry. + Buildah Task builds source into a container image using Project Atomic's Buildah build tool.It uses Buildah's support for building from Dockerfiles, using its buildah bud command.This command executes the directives in the Dockerfile to assemble a container image, then pushes that image to a container registry. + params: + - description: Reference of the image buildah will produce. + name: IMAGE + type: string + - default: quay.io/buildah/stable:v1.23.3 + description: The location of the buildah builder image. + name: BUILDER_IMAGE + type: string + - default: overlay + description: Set buildah storage driver + name: STORAGE_DRIVER + type: string + - default: ./Dockerfile + description: Path to the Dockerfile to build. + name: DOCKERFILE + type: string + - default: . + description: Path to the directory to use as context. + name: CONTEXT + type: string + - default: "true" + description: Verify the TLS on the registry endpoint (for push/pull to a non-TLS + registry) + name: TLSVERIFY + type: string + - default: oci + description: The format of the built container, oci or docker + name: FORMAT + type: string + - default: "" + description: Extra parameters passed for the build command when building images. + name: BUILD_EXTRA_ARGS + type: string + - default: "" + description: Extra parameters passed for the push command when pushing images. + name: PUSH_EXTRA_ARGS + type: string + - default: "false" + description: Skip pushing the built image + name: SKIP_PUSH + type: string + results: + - description: Digest of the image just built. + name: IMAGE_DIGEST + type: string + - description: Image repository where the built image would be pushed to + name: IMAGE_URL + type: string + steps: + - computeResources: {} + image: $(params.BUILDER_IMAGE) + name: build + script: | + [[ "$(workspaces.sslcertdir.bound)" == "true" ]] && CERT_DIR_FLAG="--cert-dir $(workspaces.sslcertdir.path)" + [[ "$(workspaces.dockerconfig.bound)" == "true" ]] && export DOCKER_CONFIG="$(workspaces.dockerconfig.path)" + buildah ${CERT_DIR_FLAG} --storage-driver=$(params.STORAGE_DRIVER) bud \ + $(params.BUILD_EXTRA_ARGS) --format=$(params.FORMAT) \ + --tls-verify=$(params.TLSVERIFY) --no-cache \ + -f $(params.DOCKERFILE) -t $(params.IMAGE) $(params.CONTEXT) + [[ "$(params.SKIP_PUSH)" == "true" ]] && echo "Push skipped" && exit 0 + buildah ${CERT_DIR_FLAG} --storage-driver=$(params.STORAGE_DRIVER) push \ + $(params.PUSH_EXTRA_ARGS) --tls-verify=$(params.TLSVERIFY) \ + --digestfile /tmp/image-digest $(params.IMAGE) \ + docker://$(params.IMAGE) + cat /tmp/image-digest | tee $(results.IMAGE_DIGEST.path) + echo -n "$(params.IMAGE)" | tee $(results.IMAGE_URL.path) + securityContext: + privileged: true + volumeMounts: + - mountPath: /var/lib/containers + name: varlibcontainers + workingDir: $(workspaces.source.path) + volumes: + - emptyDir: {} + name: varlibcontainers + workspaces: + - name: source + - name: sslcertdir + optional: true + - description: An optional workspace that allows providing a .docker/config.json + file for Buildah to access the container registry. The file should be placed + at the root of the Workspace with name config.json. + name: dockerconfig + optional: true diff --git a/dev/tekton/tasks/cosign/cosign-pipeline-run.yaml b/dev/tekton/tasks/cosign/cosign-pipeline-run.yaml new file mode 100755 index 0000000..70a54cb --- /dev/null +++ b/dev/tekton/tasks/cosign/cosign-pipeline-run.yaml @@ -0,0 +1,73 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + generateName: cosign-pipeline-run- +spec: + pipelineRef: + name: cosign-pipeline +#gitea: + params: + - name: repo-url + value: http://gitea.gitea.svc.cluster.local:3000/allard/olproperties.git + - name: git-revision + value: 1.3 + +#maven: + - name: maven-mirror-url + value: 'http://nexus.nexus.svc.cluster.local:8081/repository/maven-public/' + +#sonarqube: + - name: sonar-organization + value: "allarddcs" + - name: sonar-project-key + value: olproperties + - name: sonar-token + value: sqp_214ee7c92e1b82b0d43dd9b1d9462eac8f50434c + - name: sonar-host-url + value: "https://sonarqube-dev.allarddcs.nl" + - name: source-to-scan + value: ./src + +#push-to-harbor: + - name: registry + value: harbor-dev.allarddcs.nl + - name: project + value: allard + - name: image-name + value: olproperties + +#cosign + - name: cosign-image-url + value: harbor-dev.allarddcs.nl/allard/olproperties + +#dependency-track + - name: deptrack-apiKey + value: odt_BRpq4el8T0XqdeunYMnefniaS0n8Yxd8 + - name: deptrack-projectName + value: olproperties + - name: deptrack-projectVersion + value: 1.1 + - name: deptrack-url + value: https://deptracka-dev.allarddcs.nl + + workspaces: + - name: shared-data + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + - name: maven-settings + persistentVolumeClaim: + emptyDir: {} + - name: sonar-settings + configmap: + name: sonar-properties + - name: registry-credentials + secret: + secretName: registry-credentials + items: + - key: .dockerconfigjson + path: config.json diff --git a/dev/tekton/tasks/cosign/cosign-pipeline.yaml b/dev/tekton/tasks/cosign/cosign-pipeline.yaml new file mode 100755 index 0000000..0bbf7b9 --- /dev/null +++ b/dev/tekton/tasks/cosign/cosign-pipeline.yaml @@ -0,0 +1,64 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: cosign-pipeline +spec: + description: | + This pipeline clones a git repo, builds a Docker image with Kaniko and + pushes it to a registry + params: + - name: repo-url + type: string + - name: git-revision + type: string + + - name: maven-mirror-url + type: string + + - name: sonar-organization + type: string + - name: sonar-project-key + type: string + - name: sonar-token + type: string + - name: sonar-host-url + type: string + - name: source-to-scan + type: string + + - name: registry + type: string + - name: project + type: string + - name: image-name + type: string + + - name: cosign-image-url + type: string + + - name: deptrack-projectName + type: string + - name: deptrack-projectVersion + type: string + - name: deptrack-apiKey + type: string + - name: deptrack-url + type: string + + workspaces: + - name: shared-data + - name: registry-credentials + - name: maven-settings + - name: sonar-settings + + tasks: + + - name: cosign-sign + taskRef: + name: cosign-sign + params: + - name: cosign-image-url + value: $(params.registry)/$(params.project)/$(params.image-name):$(params.git-revision) + - name: cosign-image-digest + value: sha256:bfb0a7c2b8960ec9a1f61df004bfea8826ab9bf95454368aead0acce929654a4 + diff --git a/dev/tekton/tasks/cosign/cosign-sign-pipeline-run.yaml b/dev/tekton/tasks/cosign/cosign-sign-pipeline-run.yaml new file mode 100644 index 0000000..b9b22ec --- /dev/null +++ b/dev/tekton/tasks/cosign/cosign-sign-pipeline-run.yaml @@ -0,0 +1,18 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + generateName: cosign-pipeline-run- +spec: + pipelineRef: + name: cosign-sign-pipeline # This refers to your pipeline defined earlier + params: + - name: image + value: "harbor-dev.allarddcs.nl/allard/olproperties:1.3" + - name: cosign-password + valueFrom: + secretKeyRef: + name: cosign-password-secret + key: password + + + diff --git a/dev/tekton/tasks/cosign/cosign-sign-pipeline.yaml b/dev/tekton/tasks/cosign/cosign-sign-pipeline.yaml new file mode 100644 index 0000000..19f7063 --- /dev/null +++ b/dev/tekton/tasks/cosign/cosign-sign-pipeline.yaml @@ -0,0 +1,15 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: cosign-sign-pipeline +spec: + params: + - name: image + type: string + tasks: + - name: sign-image + taskRef: + name: cosign-sign + params: + - name: image + value: $(params.image) diff --git a/dev/tekton/tasks/cosign/cosign-sign.yaml b/dev/tekton/tasks/cosign/cosign-sign.yaml new file mode 100644 index 0000000..9bb4db8 --- /dev/null +++ b/dev/tekton/tasks/cosign/cosign-sign.yaml @@ -0,0 +1,69 @@ +apiVersion: tekton.dev/v1beta1 +kind: Task +metadata: + name: cosign-sign +spec: + params: + - name: cosign-image-url + description: The image to sign (e.g., harbor.example.com/repo/image:tag) + type: string + - name: cosign-image-digest + type: string + steps: + - name: debug + image: busybox + command: [ "sh", "-c" ] + args: + - "cat /root/.docker/config.json" + volumeMounts: + - name: registry-credentials + mountPath: /root/.docker/config.json + subPath: .dockerconfigjson + + - name: cosign-sign + # image: ghcr.io/sigstore/cosign:v2.4.1 + image: bitnamilegacy/cosign + securityContext: + runAsUser: 0 # Run as root + runAsGroup: 0 # Group ID for root + privileged: true # Allow privileged operations (if needed) + env: + - name: COSIGN_ACCEPT + value: "Y" # Automatically agree to the terms & conditions + - name: COSIGN_PASSWORD + value: "Harbor01@" + script: | + #!/bin/bash + cosign login harbor-dev.allarddcs.nl -u admin -p Harbor01@ + set -e + + echo "Signing image: $(params.cosign-image-url)" + + # Sign the image with Cosign + echo "y" | cosign sign --key /cosign-keys/key $(params.cosign-image-url)@$(params.cosign-image-digest) + + volumeMounts: + - name: cosign-key + mountPath: /cosign-keys # Mount the secret at /cosign-keys + - name: registry-credentials + mountPath: /root/.docker/config.json + subPath: .dockerconfigjson + - name: docker-socket + mountPath: /var/run/docker.sock # Mount the Docker socket inside the container + volumes: + - name: cosign-key + secret: + secretName: cosign-key-secret # Secret name for the Cosign key + items: + - key: cosign.key # Key in the secret that holds the Cosign private key + path: key # Path inside the container where the key will be available (i.e., /cosign-keys/key) + - name: registry-credentials + secret: + secretName: registry-credentials # Secret containing Harbor credentials (from the previous step) + items: + - key: .dockerconfigjson # Mount the Docker config to the right place + path: .dockerconfigjson + - name: docker-socket + hostPath: + path: /var/run/docker.sock # Mount the Docker socket + type: Socket diff --git a/dev/tekton/tasks/cosign/cosign.key b/dev/tekton/tasks/cosign/cosign.key new file mode 100644 index 0000000..1d6eca2 --- /dev/null +++ b/dev/tekton/tasks/cosign/cosign.key @@ -0,0 +1,11 @@ +-----BEGIN ENCRYPTED SIGSTORE PRIVATE KEY----- +eyJrZGYiOnsibmFtZSI6InNjcnlwdCIsInBhcmFtcyI6eyJOIjo2NTUzNiwiciI6 +OCwicCI6MX0sInNhbHQiOiJ5c2d3bWNPQUpIKzVyR1h1OFRyZDY4UnpsVkkrZGRM +MnA4cDBpdytaTEY4PSJ9LCJjaXBoZXIiOnsibmFtZSI6Im5hY2wvc2VjcmV0Ym94 +Iiwibm9uY2UiOiJjNUtMSyt2YmphbWtWQWs5SFJJcHZpL1BmNlBENW5uZSJ9LCJj +aXBoZXJ0ZXh0IjoiVTVub2ZDLzd1MUtza1dqNWl2TGp4bW1GZ2pseVY1VnZkeGVr +SmE5Ukkvbm1CWk53aHJsWWNUQjBRUGlTMUNlaVh5RGlqZnNNT1d4Tnh0Y3U5akxI +a1BsMnNkNW0wVy91dlJrRmRWRVlFcXFCQWlrbzg3aW9oVkVxWC9CQitvaEd2Rkt0 +bWZBTU8yaUtwTm8wRmxieldHaW9sOFlKNHRCZlNZWlFrY055WGF1ait5Z3ovaTJK +NG5tajBRWDM1QlhpQjQwa1ladXhhaDRsRkE9PSJ9 +-----END ENCRYPTED SIGSTORE PRIVATE KEY----- diff --git a/dev/tekton/tasks/cosign/cosign.pub b/dev/tekton/tasks/cosign/cosign.pub new file mode 100644 index 0000000..118e5b2 --- /dev/null +++ b/dev/tekton/tasks/cosign/cosign.pub @@ -0,0 +1,4 @@ +-----BEGIN PUBLIC KEY----- +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE7PCFjmQqVhO6j6uPMcLrFhEgFSeG +vlpDy1WNaOUie/f40NIfRrA8nusDm5Kj7PF2X+zgGlQbgpjHpJd7iOMG2g== +-----END PUBLIC KEY----- diff --git a/dev/tekton/tasks/cosign/cosign.yaml b/dev/tekton/tasks/cosign/cosign.yaml new file mode 100644 index 0000000..35dd16b --- /dev/null +++ b/dev/tekton/tasks/cosign/cosign.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: Pod +metadata: + name: cosign-debug +spec: + containers: + - name: cosign + image: bitnami/cosign + command: ["sleep", "3600"] + volumeMounts: + - name: cosign-key + mountPath: /cosign + volumes: + - name: cosign-key + secret: + secretName: cosign-key-secret + items: + - key: cosign.key + path: key diff --git a/dev/tekton/tasks/cosign/create-cosign-key-secret.sh b/dev/tekton/tasks/cosign/create-cosign-key-secret.sh new file mode 100755 index 0000000..a637a71 --- /dev/null +++ b/dev/tekton/tasks/cosign/create-cosign-key-secret.sh @@ -0,0 +1 @@ +microk8s kubectl create secret generic cosign-key-secret --from-file=cosign.key=/home/ubuntu/containers/kubernetes/tekton/tasks/cosign/cosign.key diff --git a/dev/tekton/tasks/cosign/create-cosign-password-secret.sh b/dev/tekton/tasks/cosign/create-cosign-password-secret.sh new file mode 100755 index 0000000..cd677f0 --- /dev/null +++ b/dev/tekton/tasks/cosign/create-cosign-password-secret.sh @@ -0,0 +1 @@ +microk8s kubectl create secret generic cosign-password-secret --from-literal=password=Harbor01@ diff --git a/dev/tekton/tasks/curl/curl-task.yaml b/dev/tekton/tasks/curl/curl-task.yaml new file mode 100755 index 0000000..0315107 --- /dev/null +++ b/dev/tekton/tasks/curl/curl-task.yaml @@ -0,0 +1,31 @@ +apiVersion: tekton.dev/v1 +kind: Task +metadata: + name: curl +spec: + description: This task performs curl operation to transfer data from internet. + params: + - description: URL to curl'ed + name: url + type: string + - default: [] + description: options of url + name: options + type: array + - default: docker.io/curlimages/curl:7.72.0@sha256:bd5bbd35f89b867c1dccbc84b8be52f3f74dea20b46c5fe0db3780e040afcb6f + description: option of curl image + name: curl-image + type: string + steps: + - args: + - $(params.options[*]) + - $(params.url) + command: + - curl + computeResources: {} + image: $(params.curl-image) + name: curl + workingDir: $(workspaces.source-dir.path) + workspaces: + - name: source-dir + optional: true diff --git a/dev/tekton/tasks/hash/hash-pipeline-run.yaml b/dev/tekton/tasks/hash/hash-pipeline-run.yaml new file mode 100644 index 0000000..df18ea2 --- /dev/null +++ b/dev/tekton/tasks/hash/hash-pipeline-run.yaml @@ -0,0 +1,16 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + name: build-and-deploy-pipelinerun-commit-hash +spec: + pipelineRef: + name: build-and-deploy-pipeline + params: + - name: git-repository-url + value: "https://gitea.example.com/yourorg/yourrepo.git" + - name: git-revision + value: "main" # Specify the branch/tag you want to build from + resources: + - name: clone-repo + resourceRef: + name: git-repo-resource # This should be a Tekton Git resource if using Tekton resources diff --git a/dev/tekton/tasks/hash/hash-pipeline.yaml b/dev/tekton/tasks/hash/hash-pipeline.yaml new file mode 100644 index 0000000..ae74e27 --- /dev/null +++ b/dev/tekton/tasks/hash/hash-pipeline.yaml @@ -0,0 +1,69 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: build-and-deploy-pipeline +spec: + tasks: + - name: clone-repo + taskRef: + name: git-clone + params: + - name: url + value: "https://gitea.example.com/yourorg/yourrepo.git" + - name: revision + value: "main" # or any branch or tag + + - name: get-git-commit-hash + taskSpec: + steps: + - name: get-commit-hash + image: busybox + script: | + #!/bin/sh + # Get the current Git commit hash + COMMIT_HASH=$(git rev-parse --short HEAD) + echo "COMMIT_HASH=$COMMIT_HASH" > $(results.commit-hash.path) + results: + - name: commit-hash + description: The short Git commit hash + + - name: build-image + taskRef: + name: kaniko + params: + - name: IMAGE + value: "harbor.example.com/myproject/myapp:$(results.commit-hash.commit-hash)" + - name: CONTEXT + value: "$(resources.clone-repo.results.git-dir)" + - name: DOCKERFILE + value: "$(resources.clone-repo.results.git-dir)/Dockerfile" + - name: REGISTRY + value: "harbor.example.com" + resources: + inputs: + - name: clone-repo + resource: clone-repo + + - name: push-image + taskRef: + name: kaniko-push + params: + - name: IMAGE + value: "harbor.example.com/myproject/myapp:$(results.commit-hash.commit-hash)" + - name: REGISTRY + value: "harbor.example.com" + resources: + inputs: + - name: build-image + resource: build-image + + - name: trigger-argocd + taskRef: + name: argocd-sync + params: + - name: app-name + value: "myapp" + - name: project + value: "myproject" + - name: sync-options + value: "--prune --retry" diff --git a/dev/tekton/tasks/register-change/register-change-task.yaml b/dev/tekton/tasks/register-change/register-change-task.yaml new file mode 100755 index 0000000..d098fdf --- /dev/null +++ b/dev/tekton/tasks/register-change/register-change-task.yaml @@ -0,0 +1,39 @@ +apiVersion: tekton.dev/v1 # or tekton.dev/v1beta1 +kind: Task +metadata: + name: register-change +spec: + params: + - name: project + type: string + - name: git-revision + type: string + steps: + - name: register-change + image: apteno/alpine-jq + script: | + ITOP_URL="https://itop-dev.allarddcs.nl" + ITOP_USER="tekton" + ITOP_PWD="Itop01@@@" + ORGANIZATION="0001" + TITLE="Container $(params.project).$(params.git-revision) " + DESCRIPTION="Container $(params.project).$(params.git-revision) created" + CALLER="tekton" + COMMENT="new version of container $(params.project) has been pushed" + CHANGE="RoutineChange" + # Let's create the ticket via the REST/JSON API + JSON_DATA='{"operation":"core/create", "class":"'"${CHANGE}"'", "fields": {"org_id":"'"${ORGANIZATION}"'", "title":"'"$TITLE"'", "description":"'"$DESCRIPTION"'"}, "caller": "'"$CALLER"'", "comment": "'"$COMMENT"'"}' + RESULT=`wget -q --post-data='auth_user='"${ITOP_USER}"'&auth_pwd='"${ITOP_PWD}"'&json_data='"${JSON_DATA}" --no-check-certificate -O - "${ITOP_URL}/webservices/rest.php?version=1.0"` + if echo "$RESULT" | grep "created" + then + echo "Change created successfully" + echo "$RESULT" + else + echo "ERROR: failed to create change" + echo "$RESULT" + exit 1 + fi + workingDir: $(workspaces.source-dir.path) + workspaces: + - name: source-dir + optional: true diff --git a/dev/tekton/tasks/register-change/register-change.sh b/dev/tekton/tasks/register-change/register-change.sh new file mode 100755 index 0000000..ff50eac --- /dev/null +++ b/dev/tekton/tasks/register-change/register-change.sh @@ -0,0 +1,21 @@ +#!/bin/bash +ITOP_URL="http://itop.alldcs.nl" +ITOP_USER="tekton" +ITOP_PWD="Itop01@@@" +ORGANIZATION="0001" +TITLE="Containerchange" +DESCRIPTION="Container created" +CALLER="0001" +COMMENT="new version of container olproperties has been pushed" +CHANGE="RoutineChange" + # Let's create the ticket via the REST/JSON API +JSON_DATA='{"operation":"core/create", "class":"'"${CHANGE}"'", "fields": {"org_id":"'"${ORGANIZATION}"'", "title":"'"$TITLE"'", "description":"'"$DESCRIPTION"'"}, "caller": "'"$CALLER"'", "comment": "'"$COMMENT"'"}' +RESULT=`wget -q --post-data='auth_user='"${ITOP_USER}"'&auth_pwd='"${ITOP_PWD}"'&json_data='"${JSON_DATA}" --no-check-certificate -O - "${ITOP_URL}/webservices/rest.php?version=1.0"` +echo "$RESULT" | jq '.key' +if echo "$RESULT" | grep "created" + then + echo "Change created successfully" + else + echo "ERROR: failed to create change" + echo $RESULT +fi diff --git a/dev/tekton/tasks/sbom/Dockerfile/Dockerfile b/dev/tekton/tasks/sbom/Dockerfile/Dockerfile new file mode 100755 index 0000000..4274b10 --- /dev/null +++ b/dev/tekton/tasks/sbom/Dockerfile/Dockerfile @@ -0,0 +1,3 @@ +FROM ubuntu +RUN apt update && apt upgrade -y +RUN apt install curl -y diff --git a/dev/tekton/tasks/sbom/olproperties.sbom.json b/dev/tekton/tasks/sbom/olproperties.sbom.json new file mode 100644 index 0000000..b16f446 --- /dev/null +++ b/dev/tekton/tasks/sbom/olproperties.sbom.json @@ -0,0 +1 @@ +{"$schema":"http://cyclonedx.org/schema/bom-1.5.schema.json","bomFormat":"CycloneDX","specVersion":"1.5","serialNumber":"urn:uuid:1c597c0c-0517-40a2-aa05-950ef1ceeb16","version":1,"metadata":{"timestamp":"2024-05-24T17:08:47+02:00","tools":{"components":[{"type":"application","author":"anchore","name":"syft","version":"1.4.1"}]},"component":{"bom-ref":"ef878e682849debe","type":"container","name":"harbor-dev.alldcs.nl/allard/olproperties","version":"1.1"},"properties":[{"name":"syft:image:labels:architecture","value":"aarch64"},{"name":"syft:image:labels:build-date","value":"2024-03-27T02:06:00"},{"name":"syft:image:labels:com.redhat.component","value":"ubi8-container"},{"name":"syft:image:labels:com.redhat.license_terms","value":"https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI"},{"name":"syft:image:labels:description","value":"This image contains the system microservice running with the Open Liberty runtime."},{"name":"syft:image:labels:distribution-scope","value":"public"},{"name":"syft:image:labels:io.buildah.version","value":"1.23.3"},{"name":"syft:image:labels:io.k8s.description","value":"The Universal Base Image is designed and engineered to be the base layer for all of your containerized applications, middleware and utilities. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly."},{"name":"syft:image:labels:io.k8s.display-name","value":"Red Hat Universal Base Image 8"},{"name":"syft:image:labels:io.openliberty.image.tag","value":"kernel-slim-java17-openj9-ubi"},{"name":"syft:image:labels:io.openshift.tags","value":"base rhel8"},{"name":"syft:image:labels:liberty.image.tag","value":"kernel-slim-java17-openj9-ubi"},{"name":"syft:image:labels:maintainer","value":"Red Hat, Inc."},{"name":"syft:image:labels:name","value":"system"},{"name":"syft:image:labels:org.opencontainers.image.authors","value":"Your Name"},{"name":"syft:image:labels:org.opencontainers.image.revision","value":"SNAPSHOT"},{"name":"syft:image:labels:org.opencontainers.image.source","value":"https://github.com/OpenLiberty/guide-getting-started"},{"name":"syft:image:labels:org.opencontainers.image.url","value":"local"},{"name":"syft:image:labels:org.opencontainers.image.vendor","value":"IBM"},{"name":"syft:image:labels:org.opencontainers.image.version","value":"1.0"},{"name":"syft:image:labels:release","value":"17"},{"name":"syft:image:labels:run","value":"docker run --rm -ti /bin/bash"},{"name":"syft:image:labels:summary","value":"The system microservice from the Getting Started guide"},{"name":"syft:image:labels:url","value":"https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8/images/8.9-1160"},{"name":"syft:image:labels:vcs-ref","value":"16023543dff146b00b5868ad23202e2af8b40a8a"},{"name":"syft:image:labels:vcs-type","value":"git"},{"name":"syft:image:labels:vendor","value":"Open Liberty"},{"name":"syft:image:labels:version","value":"1.0-SNAPSHOT"}]},"components":[{"bom-ref":"pkg:nuget/Apache%20Commons%20Daemon%20Service%20Runner@1.2.2.0?package-id=efc789e37e29ade7","type":"library","name":"Apache Commons Daemon Service Runner","version":"1.2.2.0","cpe":"cpe:2.3:a:Apache_Commons_Daemon_Service_Runner:Apache_Commons_Daemon_Service_Runner:1.2.2.0:*:*:*:*:*:*:*","purl":"pkg:nuget/Apache%20Commons%20Daemon%20Service%20Runner@1.2.2.0","properties":[{"name":"syft:package:foundBy","value":"dotnet-portable-executable-cataloger"},{"name":"syft:package:language","value":"dotnet"},{"name":"syft:package:type","value":"dotnet"},{"name":"syft:package:metadataType","value":"dotnet-portable-executable-entry"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/win/prunsrv.exe"}]},{"bom-ref":"pkg:pypi/pygobject@3.28.3?package-id=2c576430fd210a48","type":"library","author":"James Henstridge ","name":"PyGObject","version":"3.28.3","licenses":[{"license":{"name":"GNU LGPL"}}],"cpe":"cpe:2.3:a:james_henstridge_project:python-PyGObject:3.28.3:*:*:*:*:*:*:*","purl":"pkg:pypi/PyGObject@3.28.3","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:james_henstridge_project:python_PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:james_henstridgeproject:python-PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:james_henstridgeproject:python_PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:james_henstridge_project:PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:james_henstridge:python-PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:james_henstridge:python_PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:james_henstridgeproject:PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-PyGObject:python-PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-PyGObject:python_PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_PyGObject:python-PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_PyGObject:python_PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:james_project:python-PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:james_project:python_PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jamesproject:python-PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jamesproject:python_PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:PyGObject:python-PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:PyGObject:python_PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:james_henstridge:PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-PyGObject:PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_PyGObject:PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:james_project:PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:james:python-PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:james:python_PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jamesproject:PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:PyGObject:PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:james:PyGObject:3.28.3:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib64/python3.6/site-packages/pygobject-3.28.3-py3.6.egg-info"}]},{"bom-ref":"pkg:pypi/pysocks@1.6.8?package-id=5f70f6f58fda92ed","type":"library","author":"Anorov ","name":"PySocks","version":"1.6.8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:anorov_vorona_project:python-PySocks:1.6.8:*:*:*:*:*:*:*","purl":"pkg:pypi/PySocks@1.6.8","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov_vorona_project:python_PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov_voronaproject:python-PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov_voronaproject:python_PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov_project:python-PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov_project:python_PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov_vorona_project:PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-PySocks:python-PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-PySocks:python_PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_PySocks:python-PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_PySocks:python_PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov-vorona:python-PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov-vorona:python_PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov_vorona:python-PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov_vorona:python_PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov_voronaproject:PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorovproject:python-PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorovproject:python_PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:PySocks:python-PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:PySocks:python_PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov_project:PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-PySocks:PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_PySocks:PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov-vorona:PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov:python-PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov:python_PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov_vorona:PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorovproject:PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:PySocks:PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anorov:PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:PySocks:1.6.8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib/python3.6/site-packages/PySocks-1.6.8-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib/python3.6/site-packages/PySocks-1.6.8-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/acl@2.2.53-1.el8?arch=aarch64&upstream=acl-2.2.53-1.el8.src.rpm&distro=rhel-8.9&package-id=520f9ea06e4fc12e","type":"library","publisher":"Red Hat, Inc.","name":"acl","version":"2.2.53-1.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:redhat:acl:2.2.53-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/acl@2.2.53-1.el8?arch=aarch64&upstream=acl-2.2.53-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:acl:acl:2.2.53-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"333340"},{"name":"syft:metadata:sourceRpm","value":"acl-2.2.53-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/audit-libs@3.0.7-5.el8?arch=aarch64&upstream=audit-3.0.7-5.el8.src.rpm&distro=rhel-8.9&package-id=ddc6bd16c95b168a","type":"library","publisher":"Red Hat, Inc.","name":"audit-libs","version":"3.0.7-5.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:audit-libs:audit-libs:3.0.7-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/audit-libs@3.0.7-5.el8?arch=aarch64&upstream=audit-3.0.7-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit-libs:audit_libs:3.0.7-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit_libs:audit-libs:3.0.7-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit_libs:audit_libs:3.0.7-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:audit-libs:3.0.7-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:audit_libs:3.0.7-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:audit-libs:3.0.7-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:audit_libs:3.0.7-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"299938"},{"name":"syft:metadata:sourceRpm","value":"audit-3.0.7-5.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/basesystem@11-5.el8?arch=noarch&upstream=basesystem-11-5.el8.src.rpm&distro=rhel-8.9&package-id=f189342fc7bcda17","type":"library","publisher":"Red Hat, Inc.","name":"basesystem","version":"11-5.el8","licenses":[{"license":{"name":"Public Domain"}}],"cpe":"cpe:2.3:a:basesystem:basesystem:11-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/basesystem@11-5.el8?arch=noarch&upstream=basesystem-11-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:basesystem:11-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"0"},{"name":"syft:metadata:sourceRpm","value":"basesystem-11-5.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/bash@4.4.20-4.el8_6?arch=aarch64&upstream=bash-4.4.20-4.el8_6.src.rpm&distro=rhel-8.9&package-id=6311d1388d5f5ef6","type":"library","publisher":"Red Hat, Inc.","name":"bash","version":"4.4.20-4.el8_6","licenses":[{"license":{"name":"GPLv3+"}}],"cpe":"cpe:2.3:a:redhat:bash:4.4.20-4.el8_6:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/bash@4.4.20-4.el8_6?arch=aarch64&upstream=bash-4.4.20-4.el8_6.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:bash:bash:4.4.20-4.el8_6:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"4.el8_6"},{"name":"syft:metadata:size","value":"6946228"},{"name":"syft:metadata:sourceRpm","value":"bash-4.4.20-4.el8_6.src.rpm"}]},{"bom-ref":"pkg:maven/boot-proxy/boot-proxy?package-id=214d3893b0102d97","type":"library","name":"boot-proxy","cpe":"cpe:2.3:a:boot-proxy:boot-proxy:*:*:*:*:*:*:*:*","purl":"pkg:maven/boot-proxy/boot-proxy","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"1e9fd21403087db7d5af37c670c3b995abb11aa6"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot-proxy:boot_proxy:*:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot_proxy:boot-proxy:*:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot_proxy:boot_proxy:*:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:boot-proxy:*:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:boot_proxy:*:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/output/defaultServer/workarea/org.eclipse.osgi/201/data/boot-proxy.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/output/defaultServer/workarea/org.eclipse.osgi/201/data/boot-proxy.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.kernel.instrument.check/bootstrap-agent@1.0.89.cl240520240506-1951?package-id=2be1aaa077e772a0","type":"library","name":"bootstrap-agent","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:bootstrap-agent:bootstrap-agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.kernel.instrument.check/bootstrap-agent@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"ed547e60fd45393b27a853c649d8b574381ccdf5"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap-agent:bootstrap_agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap_agent:bootstrap-agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap_agent:bootstrap_agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap-agent:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap_agent:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:bootstrap-agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:bootstrap_agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap:bootstrap-agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap:bootstrap_agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap-agent:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap_agent:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:bootstrap-agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:bootstrap_agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap-agent:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap_agent:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:bootstrap-agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:bootstrap_agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:bootstrap-agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:bootstrap_agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap-agent:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap_agent:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:bootstrap-agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:bootstrap_agent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bootstrap:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/bootstrap-agent.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/bootstrap-agent.jar"}]},{"bom-ref":"pkg:rpm/rhel/brotli@1.0.6-3.el8?arch=aarch64&upstream=brotli-1.0.6-3.el8.src.rpm&distro=rhel-8.9&package-id=c1855656f28d742f","type":"library","publisher":"Red Hat, Inc.","name":"brotli","version":"1.0.6-3.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:brotli:brotli:1.0.6-3.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/brotli@1.0.6-3.el8?arch=aarch64&upstream=brotli-1.0.6-3.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:brotli:1.0.6-3.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8"},{"name":"syft:metadata:size","value":"1529212"},{"name":"syft:metadata:sourceRpm","value":"brotli-1.0.6-3.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/bzip2-libs@1.0.6-26.el8?arch=aarch64&upstream=bzip2-1.0.6-26.el8.src.rpm&distro=rhel-8.9&package-id=3c993d60d0166906","type":"library","publisher":"Red Hat, Inc.","name":"bzip2-libs","version":"1.0.6-26.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:bzip2-libs:bzip2-libs:1.0.6-26.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/bzip2-libs@1.0.6-26.el8?arch=aarch64&upstream=bzip2-1.0.6-26.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:bzip2-libs:bzip2_libs:1.0.6-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bzip2_libs:bzip2-libs:1.0.6-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bzip2_libs:bzip2_libs:1.0.6-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:bzip2-libs:1.0.6-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:bzip2_libs:1.0.6-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bzip2:bzip2-libs:1.0.6-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bzip2:bzip2_libs:1.0.6-26.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"26.el8"},{"name":"syft:metadata:size","value":"76181"},{"name":"syft:metadata:sourceRpm","value":"bzip2-1.0.6-26.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/ca-certificates@2023.2.60_v7.0.306-80.0.el8_8?arch=noarch&upstream=ca-certificates-2023.2.60_v7.0.306-80.0.el8_8.src.rpm&distro=rhel-8.9&package-id=7b4a189eaf39be7f","type":"library","publisher":"Red Hat, Inc.","name":"ca-certificates","version":"2023.2.60_v7.0.306-80.0.el8_8","licenses":[{"license":{"name":"Public Domain"}}],"cpe":"cpe:2.3:a:ca-certificates:ca-certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/ca-certificates@2023.2.60_v7.0.306-80.0.el8_8?arch=noarch&upstream=ca-certificates-2023.2.60_v7.0.306-80.0.el8_8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:ca-certificates:ca_certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ca_certificates:ca-certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ca_certificates:ca_certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:ca-certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:ca_certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ca:ca-certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ca:ca_certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"80.0.el8_8"},{"name":"syft:metadata:size","value":"2332584"},{"name":"syft:metadata:sourceRpm","value":"ca-certificates-2023.2.60_v7.0.306-80.0.el8_8.src.rpm"}]},{"bom-ref":"pkg:pypi/chardet@3.0.4?package-id=04effb672eb77fa0","type":"library","author":"Mark Pilgrim ","name":"chardet","version":"3.0.4","licenses":[{"license":{"name":"LGPL"}}],"cpe":"cpe:2.3:a:mark_pilgrim_project:python-chardet:3.0.4:*:*:*:*:*:*:*","purl":"pkg:pypi/chardet@3.0.4","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:mark_pilgrim_project:python_chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mark_pilgrimproject:python-chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mark_pilgrimproject:python_chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-chardet:python-chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-chardet:python_chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_chardet:python-chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_chardet:python_chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mark_pilgrim_project:chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mark_pilgrim:python-chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mark_pilgrim:python_chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mark_pilgrimproject:chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mark_project:python-chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mark_project:python_chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:markproject:python-chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:markproject:python_chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chardet:python-chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chardet:python_chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-chardet:chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_chardet:chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mark_pilgrim:chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mark_project:chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mark:python-chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mark:python_chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:markproject:chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chardet:chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mark:chardet:3.0.4:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/chkconfig@1.19.2-1.el8?arch=aarch64&upstream=chkconfig-1.19.2-1.el8.src.rpm&distro=rhel-8.9&package-id=ed959bc2bdebfde9","type":"library","publisher":"Red Hat, Inc.","name":"chkconfig","version":"1.19.2-1.el8","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:chkconfig:chkconfig:1.19.2-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/chkconfig@1.19.2-1.el8?arch=aarch64&upstream=chkconfig-1.19.2-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:chkconfig:1.19.2-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"884142"},{"name":"syft:metadata:sourceRpm","value":"chkconfig-1.19.2-1.el8.src.rpm"}]},{"bom-ref":"pkg:maven/dev/com.ibm.json4j@1.0.89.cl240520240506-1951?package-id=ac7f040c7b0174a7","type":"library","group":"dev","name":"com.ibm.json4j","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.json4j:com.ibm.json4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.json4j@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"66e5ab044dd4ce79161ec993425a40b8fba13646"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.json4j:json4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json4j:com.ibm.json4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.json4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json4j:json4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:json4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.json4j_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.json4j"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.json4j_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.rls.jdbc.jakarta@1.0.89.cl240520240506-1951?package-id=28cc35e3fa017cdc","type":"library","group":"dev","name":"com.ibm.rls.jdbc.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.rls.jdbc.jakarta:com.ibm.rls.jdbc.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.rls.jdbc.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"167ddc570e7012eedd1dd4e587fd33be5ccfa7ea"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.rls.jdbc.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.rls.jdbc.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.rls.jdbc.jakarta:jdbc:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdbc:com.ibm.rls.jdbc.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.rls.jdbc.jakarta:rls:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.rls.jdbc.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rls:com.ibm.rls.jdbc.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jdbc:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdbc:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:rls:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rls:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdbc:jdbc:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jdbc:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdbc:rls:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rls:jdbc:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:rls:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rls:rls:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.rls.jdbc.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.rls.jdbc.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.rls.jdbc.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.tx.jta.jakarta@1.0.89.cl240520240506-1951?package-id=0be0a20219f95b1a","type":"library","group":"dev","name":"com.ibm.tx.jta.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.tx.jta.jakarta:com.ibm.tx.jta.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.tx.jta.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"d4af87e9055f392c4cb20fa9bbf2ccebfba1d51f"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:TxBundleTools:com.ibm.tx.jta.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.tx.jta.jakarta:TxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.tx.jta.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.tx.jta.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:TxBundleTools:TxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.tx.jta.jakarta:util:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:util:com.ibm.tx.jta.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.tx.jta.jakarta:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.tx.jta.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:com.ibm.tx.jta.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.tx.jta.jakarta:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:com.ibm.tx.jta.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:TxBundleTools:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:TxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:TxBundleTools:util:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:util:TxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:TxBundleTools:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:TxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:TxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:TxBundleTools:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:TxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:util:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:util:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:util:util:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:util:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:util:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:util:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:util:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:util:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.tx.jta.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.tx.jta.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.tx.jta.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.tx.util.jakarta@1.0.89.cl240520240506-1951?package-id=4feda5c7f1301792","type":"library","group":"dev","name":"com.ibm.tx.util.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.tx.util.jakarta:com.ibm.tx.util.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.tx.util.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"60c2dc4259fa6c770e39837a8429df876b994d61"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.tx.util.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.tx.util.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.tx.util.jakarta:util:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:util:com.ibm.tx.util.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.tx.util.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.tx.util.jakarta:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:com.ibm.tx.util.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:util:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:util:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:util:util:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:util:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:util:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:util:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.tx.util.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.tx.util.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.tx.util.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.api.basics@1.4.89.cl240520240506-1951?package-id=b745f68a00718dd1","type":"library","group":"dev","name":"com.ibm.websphere.appserver.api.basics","version":"1.4.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.api.basics:com.ibm.websphere.appserver.api.basics:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.api.basics@1.4.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"39ec2102cba4429196a42c28539b1006027c5763"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.basics:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.basics:appserver:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.basics:websphere:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.basics:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:basics:com.ibm.websphere.appserver.api.basics:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.basics:basics:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:com.ibm.websphere.appserver.api.basics:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.basics:api:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.basics:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:basics:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:basics:appserver:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:basics:websphere:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:basics:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:appserver:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:websphere:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:api:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:basics:basics:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:api:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:basics:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:basics:api:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:basics:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:api:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:api:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.basics_1.4.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.api.basics"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.basics_1.4.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.api.config@1.2.89.cl240520240506-1951?package-id=5061c772d54f0dac","type":"library","group":"dev","name":"com.ibm.websphere.appserver.api.config","version":"1.2.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.api.config:com.ibm.websphere.appserver.api.config:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.api.config@1.2.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"d3d205383efc8453a6e6a2f150eba47b58e47b49"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.config:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.config:appserver:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.config:websphere:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.config:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.config:config:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:com.ibm.websphere.appserver.api.config:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:com.ibm.websphere.appserver.api.config:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.config:api:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.config:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:config:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:appserver:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:websphere:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:config:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:appserver:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:websphere:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:api:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:config:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:api:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:config:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:api:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:config:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:api:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:api:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.config_1.2.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.api.config"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.config_1.2.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.api.distributedMap@2.0.89.cl240520240506-1951?package-id=6ad1d25cae367e18","type":"library","group":"dev","name":"com.ibm.websphere.appserver.api.distributedMap","version":"2.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:com.ibm.websphere.appserver.api.distributedMap:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.api.distributedMap@2.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a3f0a61975d09ea242a2e0d36a2943fc4e88431c"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:distributedMap:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:distributedMap:com.ibm.websphere.appserver.api.distributedMap:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.distributedMap:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:appserver:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:websphere:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.distributedMap:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:com.ibm.websphere.appserver.api.distributedMap:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:api:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.distributedMap:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:distributedMap:distributedMap:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:distributedMap:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:distributedMap:appserver:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:distributedMap:websphere:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:distributedMap:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:distributedMap:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:distributedMap:api:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:distributedMap:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:appserver:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:websphere:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:api:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:api:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:api:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:api:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.distributedMap_2.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.api.distributedMap"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.distributedMap_2.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.api.endpoint@1.0.89.cl240520240506-1951?package-id=3266f138991424fa","type":"library","group":"dev","name":"com.ibm.websphere.appserver.api.endpoint","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:com.ibm.websphere.appserver.api.endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.api.endpoint@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"634ed113fe0b09e839507bbc6871fb8a9da5b9a9"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:endpoint:com.ibm.websphere.appserver.api.endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:com.ibm.websphere.appserver.api.endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:endpoint:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:endpoint:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:endpoint:endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:endpoint:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.endpoint_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.api.endpoint"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.endpoint_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.api.hpel@2.0.89.cl240520240506-1951?package-id=5929ec9d996cbb2e","type":"library","group":"dev","name":"com.ibm.websphere.appserver.api.hpel","version":"2.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:com.ibm.websphere.appserver.api.hpel:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.api.hpel@2.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"2631aeef48d2d4a58751146fd6f5610eebe08f34"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.hpel:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:appserver:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:websphere:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.hpel:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:hpel:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:com.ibm.websphere.appserver.api.hpel:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:com.ibm.websphere.appserver.api.hpel:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:api:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.hpel:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:hpel:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:appserver:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:websphere:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:hpel:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:appserver:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:websphere:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:api:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:api:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:hpel:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:hpel:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:api:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:hpel:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:api:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:api:2.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.hpel_2.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.api.hpel"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.hpel_2.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.api.json@1.0.89.cl240520240506-1951?package-id=863711a6f6d47570","type":"library","group":"dev","name":"com.ibm.websphere.appserver.api.json","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.api.json:com.ibm.websphere.appserver.api.json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.api.json@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"01c9612966c174c4cbac4ae4507372747b3e9014"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.json:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.json:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.json:json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:com.ibm.websphere.appserver.api.json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:com.ibm.websphere.appserver.api.json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.json:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.json_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.api.json"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.json_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.api.kernel.service@1.1.89.cl240520240506-1951?package-id=82e87a31c986c7b9","type":"library","group":"dev","name":"com.ibm.websphere.appserver.api.kernel.service","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:com.ibm.websphere.appserver.api.kernel.service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.api.kernel.service@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"204d827288ed4ff53e4d6a7cd353f2118a35e7aa"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.kernel.service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.kernel.service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.websphere.appserver.api.kernel.service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:kernel:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.websphere.appserver.api.kernel.service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:com.ibm.websphere.appserver.api.kernel.service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.kernel.service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:kernel:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:kernel:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:kernel:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:kernel:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.kernel.service_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.api.kernel.service"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.kernel.service_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.api.monitor@1.1.89.cl240520240506-1951?package-id=270710ef985b6552","type":"library","group":"dev","name":"com.ibm.websphere.appserver.api.monitor","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:com.ibm.websphere.appserver.api.monitor:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.api.monitor@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"5ca893f0264d60e6a394557ea84bb93b18ddf4ac"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.monitor:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.monitor:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:monitor:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:com.ibm.websphere.appserver.api.monitor:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:com.ibm.websphere.appserver.api.monitor:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.monitor:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:monitor:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:monitor:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:monitor:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:monitor:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:monitor:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.monitor_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.api.monitor"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.monitor_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.api.security.spnego@1.1.89.cl240520240506-1951?package-id=9e592bde4a18aaec","type":"library","group":"dev","name":"com.ibm.websphere.appserver.api.security.spnego","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:com.ibm.websphere.appserver.api.security.spnego:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.api.security.spnego@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"81b5674a2bfc888f5f2948755efd44803dc6c328"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.security.spnego:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.security.spnego:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.websphere.appserver.api.security.spnego:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:spnego:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spnego:com.ibm.websphere.appserver.api.security.spnego:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:com.ibm.websphere.appserver.api.security.spnego:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.security.spnego:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spnego:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spnego:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spnego:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spnego:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:spnego:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spnego:security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spnego:spnego:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:spnego:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spnego:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spnego:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.security.spnego_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.api.security.spnego"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.security.spnego_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.api.sessionstats@1.0.89.cl240520240506-1951?package-id=9d045c06a779540e","type":"library","group":"dev","name":"com.ibm.websphere.appserver.api.sessionstats","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:com.ibm.websphere.appserver.api.sessionstats:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.api.sessionstats@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"13156d8bbdab879176f9d6557ad2faa4a8b20fea"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:sessionstats:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sessionstats:com.ibm.websphere.appserver.api.sessionstats:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.sessionstats:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.sessionstats:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:com.ibm.websphere.appserver.api.sessionstats:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.sessionstats:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sessionstats:sessionstats:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:sessionstats:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sessionstats:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sessionstats:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:sessionstats:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:sessionstats:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:sessionstats:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sessionstats:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.sessionstats_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.api.sessionstats"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.sessionstats_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.api.ssl@1.6.89.cl240520240506-1951?package-id=69c53f82b57838e9","type":"library","group":"dev","name":"com.ibm.websphere.appserver.api.ssl","version":"1.6.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:com.ibm.websphere.appserver.api.ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.api.ssl@1.6.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"dfca84e18d52aadf19872278930d4a7d7c80c8ed"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:appserver:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:websphere:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:com.ibm.websphere.appserver.api.ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:api:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:com.ibm.websphere.appserver.api.ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:appserver:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:websphere:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:api:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:appserver:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:websphere:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:api:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:api:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:api:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:api:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.ssl_1.6.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.api.ssl"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.ssl_1.6.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.anno@1.1.89.cl240520240506-1951?package-id=ac47a84bae6cab12","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.anno","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:com.ibm.websphere.appserver.spi.anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.anno@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"aeb02acf230360b4bbf182ce690eac3da324b815"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anno:com.ibm.websphere.appserver.spi.anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anno:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anno:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anno:anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anno:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.anno_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.anno"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.anno_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.application@1.1.89.cl240520240506-1951?package-id=55a1bc54bd152481","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.application","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.application:com.ibm.websphere.appserver.spi.application:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.application@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"817904b898393f36720b3045d89bc656a1a68264"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:application:com.ibm.websphere.appserver.spi.application:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.application:application:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.application:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.application:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.application:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.application:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.application:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.application:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.application:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:application:application:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:application:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:application:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:application:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:application:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:application:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:application:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:application:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.application_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.application"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.application_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.artifact@1.2.89.cl240520240506-1951?package-id=7979c53a67a97859","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.artifact","version":"1.2.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:com.ibm.websphere.appserver.spi.artifact:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.artifact@1.2.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"b0af1c4c4abf86c66d8a287baf503d88be0c6954"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.artifact:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:appserver:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:websphere:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.artifact:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:com.ibm.websphere.appserver.spi.artifact:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:artifact:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:spi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.artifact:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.artifact:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:artifact:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:appserver:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:websphere:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:artifact:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:artifact:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:spi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:artifact:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:artifact:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.artifact_1.2.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.artifact"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.artifact_1.2.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.classloading@1.4.89.cl240520240506-1951?package-id=f3807e0b060e5f8a","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.classloading","version":"1.4.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:com.ibm.websphere.appserver.spi.classloading:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.classloading@1.4.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"5a9dc8928d8b4f19541cd8bf7e4992d63462d25a"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloading:com.ibm.websphere.appserver.spi.classloading:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:classloading:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.classloading:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:appserver:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:websphere:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.classloading:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:spi:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.classloading:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.classloading:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloading:classloading:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:classloading:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloading:appserver:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloading:websphere:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:classloading:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloading:spi:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:classloading:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:classloading:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:1.4.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.classloading_1.4.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.classloading"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.classloading_1.4.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.containerServices@4.0.89.cl240520240506-1951?package-id=b2185ff093fb6085","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.containerServices","version":"4.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:com.ibm.websphere.appserver.spi.containerServices:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.containerServices@4.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"9f08d58239b439169b7cf9ee74d00cdf02b56e92"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:containerServices:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:containerServices:com.ibm.websphere.appserver.spi.containerServices:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.containerServices:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:appserver:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:websphere:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.containerServices:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:spi:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.containerServices:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.containerServices:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:containerServices:containerServices:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:containerServices:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:containerServices:appserver:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:containerServices:websphere:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:containerServices:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:containerServices:spi:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:containerServices:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:containerServices:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:4.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.containerServices_4.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.containerServices"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.containerServices_4.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.httptransport@4.2.89.cl240520240506-1951?package-id=b378caf393e41c10","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.httptransport","version":"4.2.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:com.ibm.websphere.appserver.spi.httptransport:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.httptransport@4.2.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a84eacc1a9cb93c9276f170f282989cf681bef8d"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:httptransport:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:httptransport:com.ibm.websphere.appserver.spi.httptransport:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.httptransport:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:appserver:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:websphere:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.httptransport:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:spi:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.httptransport:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.httptransport:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:httptransport:httptransport:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:httptransport:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:httptransport:appserver:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:httptransport:websphere:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:httptransport:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:httptransport:spi:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:httptransport:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:httptransport:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:4.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.httptransport_4.2.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.httptransport"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.httptransport_4.2.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.javaeedd@1.8.89.cl240520240506-1951?package-id=d4084d7245a2a551","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.javaeedd","version":"1.8.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:com.ibm.websphere.appserver.spi.javaeedd:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.javaeedd@1.8.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"c3f822fd3f7c3e4f5e5b783008867dbe0db654c2"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.javaeedd:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:appserver:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:websphere:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.javaeedd:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:javaeedd:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaeedd:com.ibm.websphere.appserver.spi.javaeedd:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:spi:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.javaeedd:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.javaeedd:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:javaeedd:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaeedd:appserver:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaeedd:websphere:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:javaeedd:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaeedd:javaeedd:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:javaeedd:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaeedd:spi:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:javaeedd:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.javaeedd_1.8.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.javaeedd"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.javaeedd_1.8.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.embeddable@1.1.89.cl240520240506-1951?package-id=14e9c7bc48be51a6","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.kernel.embeddable","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.embeddable@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"fb370204fd29ed63a2bd1c70c57c057a685c4464"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:embeddable:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:embeddable:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:kernel:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:embeddable:embeddable:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:embeddable:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:embeddable:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:embeddable:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:embeddable:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:embeddable:kernel:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:embeddable:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:kernel:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:kernel:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:embeddable:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:embeddable:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:embeddable:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:kernel:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.embeddable_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.kernel.embeddable"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.embeddable_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.filemonitor@1.0.89.cl240520240506-1951?package-id=628bbe28ba9ea5ec","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.kernel.filemonitor","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.filemonitor@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"e3143e510bfde90c0559888705c4911401edb01a"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filemonitor:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:spi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filemonitor:filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filemonitor:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filemonitor:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filemonitor:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filemonitor:spi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:spi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.filemonitor_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.kernel.filemonitor"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.filemonitor_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.metatype@1.0.89.cl240520240506-1951?package-id=6b3ee3db0735c1f2","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.kernel.metatype","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.metatype@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"2b8bce077dabe579157b47c8b24aaf162e9152ba"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:spi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:spi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:spi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.metatype_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.kernel.metatype"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.metatype_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.service@1.8.89.cl240520240506-1951?package-id=a89bbe173c81a729","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.kernel.service","version":"1.8.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:com.ibm.websphere.appserver.spi.kernel.service:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.service@1.8.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"d27968b68520526ec91ef0208824ee41d2f4b2a4"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.kernel.service:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:appserver:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:websphere:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.kernel.service:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:service:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.websphere.appserver.spi.kernel.service:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:kernel:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.websphere.appserver.spi.kernel.service:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:spi:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.kernel.service:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.kernel.service:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:service:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:appserver:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:websphere:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:service:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:kernel:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:appserver:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:websphere:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:kernel:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:service:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:kernel:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:spi:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:service:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:spi:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:kernel:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:1.8.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.service_1.8.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.kernel.service"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.service_1.8.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.logging@1.1.89.cl240520240506-1951?package-id=f3eb81ed0a4b1c45","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.logging","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:com.ibm.websphere.appserver.spi.logging:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.logging@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"ceb048e184feb49d09afd34ed6eee135f947f997"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.logging:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.logging:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:logging:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:com.ibm.websphere.appserver.spi.logging:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.logging:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.logging:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:logging:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:logging:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:logging:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:logging:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:logging:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.logging_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.logging"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.logging_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.ssl@1.5.89.cl240520240506-1951?package-id=640dbbea2191fd6c","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.ssl","version":"1.5.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:com.ibm.websphere.appserver.spi.ssl:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.ssl@1.5.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"55334a97bf7c2d4fb5c29b70017bef1df423d2f1"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.ssl:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:appserver:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:websphere:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.ssl:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:spi:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:ssl:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.ssl:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.ssl:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:com.ibm.websphere.appserver.spi.ssl:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:ssl:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:appserver:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:websphere:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:ssl:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ssl:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:ssl:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:spi:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:ssl:1.5.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.ssl_1.5.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.ssl"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.ssl_1.5.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.threading@1.1.89.cl240520240506-1951?package-id=ad4616ba7a222a54","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.threading","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:com.ibm.websphere.appserver.spi.threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.threading@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"9f7079d3ad5876e23562e62897d9997b12538ddf"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:threading:com.ibm.websphere.appserver.spi.threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:threading:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:threading:threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:threading:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:threading:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.threading_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.threading"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.threading_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.appserver.spi.transaction@1.1.89.cl240520240506-1951?package-id=a03f3d3d119cfe22","type":"library","group":"dev","name":"com.ibm.websphere.appserver.spi.transaction","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:com.ibm.websphere.appserver.spi.transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.appserver.spi.transaction@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"fd63e2e7d78ffb6635582dfe091f252461825e72"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:com.ibm.websphere.appserver.spi.transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:appserver:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:appserver:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.transaction_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.appserver.spi.transaction"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.transaction_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.javaee.activity.1.0@1.0.89.cl240520240506-1951?package-id=dbe3baebf0f8ea8f","type":"library","group":"dev","name":"com.ibm.websphere.javaee.activity.1.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:com.ibm.websphere.javaee.activity.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.javaee.activity.1.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"813be9dfffe0949d503d69f6d3c21a11a964000b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.javaee.activity.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activity:com.ibm.websphere.javaee.activity.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:activity:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:com.ibm.websphere.javaee.activity.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.javaee.activity.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:com.ibm.websphere.javaee.activity.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:com.ibm.websphere.javaee.activity.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activity:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:activity:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activity:activity:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activity:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:activity:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:activity:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:activity:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:activity:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activity:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activity:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/com.ibm.websphere.javaee.activity.1.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.javaee.activity.1.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/com.ibm.websphere.javaee.activity.1.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.javaee.jcache.1.1.core.jakarta@1.0.89.cl240520240506-1951?package-id=de7236b944bcbaa8","type":"library","group":"dev","name":"com.ibm.websphere.javaee.jcache.1.1.core.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.javaee.jcache.1.1.core.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"bb6403e9e4e909a36c666b6a85cc963c9676e798"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:jcache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jcache:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:core:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:core:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jcache:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:jcache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:core:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jcache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jcache:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:core:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:jcache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jcache:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jcache:jcache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:core:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:core:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:core:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:core:jcache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:core:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jcache:core:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jcache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:core:core:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jcache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:core:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jcache:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:core:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:core:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.websphere.javaee.jcache.1.1.core.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.javaee.jcache.1.1.core.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.websphere.javaee.jcache.1.1.core.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.javaee.jsonp.1.0@1.0.89.cl240520240506-1951?package-id=be8aef160581e029","type":"library","group":"dev","name":"com.ibm.websphere.javaee.jsonp.1.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:com.ibm.websphere.javaee.jsonp.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.javaee.jsonp.1.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"8ff30f360dd5e234c0abae8729559a2f38820514"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.javaee.jsonp.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:com.ibm.websphere.javaee.jsonp.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:jsonp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonp:com.ibm.websphere.javaee.jsonp.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.javaee.jsonp.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:com.ibm.websphere.javaee.jsonp.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:com.ibm.websphere.javaee.jsonp.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonp:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:jsonp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:jsonp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonp:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonp:jsonp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jsonp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jsonp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jsonp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonp:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonp:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/com.ibm.websphere.javaee.jsonp.1.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.javaee.jsonp.1.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/com.ibm.websphere.javaee.jsonp.1.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.jsonsupport@1.0.89.cl240520240506-1951?package-id=66f3f038035d5df3","type":"library","group":"dev","name":"com.ibm.websphere.jsonsupport","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.jsonsupport:com.ibm.websphere.jsonsupport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.jsonsupport@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"66fa89925066e8fd9bcb19262da1fc16d64d4835"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.jsonsupport:jsonsupport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonsupport:com.ibm.websphere.jsonsupport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.jsonsupport:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.jsonsupport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.jsonsupport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonsupport:jsonsupport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonsupport:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:jsonsupport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jsonsupport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.websphere.jsonsupport_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.jsonsupport"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.websphere.jsonsupport_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.org.reactivestreams.reactive-streams.1.0@1.1.89.cl240520240506-1951?package-id=6c16e35228358225","type":"library","group":"dev","name":"com.ibm.websphere.org.reactivestreams.reactive-streams.1.0","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.org.reactivestreams.reactive-streams.1.0@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"bcfd4137945c4296eb52d1caf9a77a463e5f01b3"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:reactive-streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:reactive_streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:reactive-streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:reactive_streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive-streams:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive-streams:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive_streams:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive_streams:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:reactivestreams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:reactivestreams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactivestreams:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactivestreams:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:reactive-streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:reactive_streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:reactivestreams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:1:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive-streams:reactive-streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive-streams:reactive_streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive_streams:reactive-streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive_streams:reactive_streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive-streams:reactivestreams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive_streams:reactivestreams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactivestreams:reactive-streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactivestreams:reactive_streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactivestreams:reactivestreams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive-streams:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive_streams:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:reactive-streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:reactive_streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive:reactive-streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive:reactive_streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactivestreams:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:reactivestreams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive:reactivestreams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:reactive-streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:reactive_streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:reactive-streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:reactive_streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive-streams:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive_streams:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:reactivestreams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:reactivestreams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactivestreams:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:reactive-streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:reactive_streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:reactive-streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:reactive_streams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive-streams:0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive-streams:1:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive_streams:0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive_streams:1:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:reactivestreams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:reactivestreams:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactivestreams:0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactivestreams:1:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:1:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive:0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reactive:1:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:1:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:1:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:1:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:0:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/stable/com.ibm.websphere.org.reactivestreams.reactive-streams.1.0_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.org.reactivestreams.reactive-streams.1.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/stable/com.ibm.websphere.org.reactivestreams.reactive-streams.1.0_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.rest.handler@1.0.89.cl240520240506-1951?package-id=69e305e2fe9fa264","type":"library","group":"dev","name":"com.ibm.websphere.rest.handler","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.rest.handler:com.ibm.websphere.rest.handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.rest.handler@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"ca6832f00584c8ae9493903152044d271ce8f088"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.rest.handler:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.rest.handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.rest.handler:handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:handler:com.ibm.websphere.rest.handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.rest.handler:rest:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rest:com.ibm.websphere.rest.handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.rest.handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:handler:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:handler:handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rest:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:rest:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:handler:rest:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rest:handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rest:rest:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:rest:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.websphere.rest.handler_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.rest.handler"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.websphere.rest.handler_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.security@1.1.89.cl240520240506-1951?package-id=c5d9f29e8b2373fb","type":"library","group":"dev","name":"com.ibm.websphere.security","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.security:com.ibm.websphere.security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.security@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"47932fc4aa243d6a03104f64b5dc7e516c621b6e"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.security:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.security:security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.websphere.security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.websphere.security_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.security"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.websphere.security_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.security.authentication@1.0.89.cl240520240506-1951?package-id=56bb4225334a56d0","type":"library","group":"dev","name":"com.ibm.websphere.security.authentication","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.security.authentication:com.ibm.websphere.security.authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.security.authentication@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"c208df5d84cfb368d2141e0c93013ceb35e6832a"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:com.ibm.websphere.security.authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.security.authentication:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.security.authentication:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.security.authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.security.authentication:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.websphere.security.authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.security.authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.websphere.security.authentication_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.security.authentication"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.websphere.security.authentication_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.websphere.security.impl@1.0.89.cl240520240506-1951?package-id=4c07aa031b3a764e","type":"library","group":"dev","name":"com.ibm.websphere.security.impl","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.websphere.security.impl:com.ibm.websphere.security.impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.websphere.security.impl@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"4ead5d45a96683420c8346d226b80a7b6a54318d"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.security.impl:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:com.ibm.websphere.security.impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.security.impl:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.websphere.security.impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.websphere.security.impl:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:com.ibm.websphere.security.impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.websphere.security.impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:websphere:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:websphere:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.websphere.security.impl_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.websphere.security.impl"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.websphere.security.impl_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.adaptable.module@1.0.89.cl240520240506-1951?package-id=b2abea1c2cabd368","type":"library","group":"dev","name":"com.ibm.ws.adaptable.module","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.adaptable.module:com.ibm.ws.adaptable.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.adaptable.module@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"78cb0de599b1b20cf8e475fb3da90f409a1b439f"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:adaptable:com.ibm.ws.adaptable.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.adaptable.module:adaptable:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.adaptable.module:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:com.ibm.ws.adaptable.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.adaptable.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.adaptable.module:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.adaptable.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adaptable:adaptable:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adaptable:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:adaptable:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:adaptable:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adaptable:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:adaptable:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.adaptable.module_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.adaptable.module"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.adaptable.module_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.anno@1.1.89.cl240520240506-1951?package-id=905d39c59d5f34d8","type":"library","group":"dev","name":"com.ibm.ws.anno","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.anno:com.ibm.ws.anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.anno@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"5e6fb6997a833e71585df92a206867fc1049bf28"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:anno:com.ibm.ws.anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.anno:anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.anno:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anno:anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:anno:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:anno:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.anno_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.anno"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.anno_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.app.manager@1.1.89.cl240520240506-1951?package-id=d48378159d0046dc","type":"library","group":"dev","name":"com.ibm.ws.app.manager","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.app.manager:com.ibm.ws.app.manager:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.app.manager@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"f3ce62955294ac5adae081f37d2e5fd363ca34eb"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager:manager:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:com.ibm.ws.app.manager:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:com.ibm.ws.app.manager:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager:app:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.app.manager:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.app.manager:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:manager:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:manager:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:manager:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:app:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:manager:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:app:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:app:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:app:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.app.manager_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.app.manager"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.app.manager_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.app.manager.lifecycle@1.0.89.cl240520240506-1951?package-id=6aa5445761517aaa","type":"library","group":"dev","name":"com.ibm.ws.app.manager.lifecycle","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:com.ibm.ws.app.manager.lifecycle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.app.manager.lifecycle@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"2b13dbd70066e0c5fc2839f26ff26d7a8b63798b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:lifecycle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:lifecycle:com.ibm.ws.app.manager.lifecycle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:com.ibm.ws.app.manager.lifecycle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:com.ibm.ws.app.manager.lifecycle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.app.manager.lifecycle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.app.manager.lifecycle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:lifecycle:lifecycle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:lifecycle:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:lifecycle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:lifecycle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:lifecycle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:lifecycle:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:lifecycle:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:lifecycle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.app.manager.lifecycle_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.app.manager.lifecycle"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.app.manager.lifecycle_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.app.manager.module@1.0.89.cl240520240506-1951?package-id=ef4de04074dfe6ac","type":"library","group":"dev","name":"com.ibm.ws.app.manager.module","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.app.manager.module:com.ibm.ws.app.manager.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.app.manager.module@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"4230cd4250c5cd78ba978c214beece9b7de04f31"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.module:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:com.ibm.ws.app.manager.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.module:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:com.ibm.ws.app.manager.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:com.ibm.ws.app.manager.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.module:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.app.manager.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.module:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.app.manager.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.app.manager.module_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.app.manager.module"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.app.manager.module_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.app.manager.ready@1.0.89.cl240520240506-1951?package-id=9628817c8e82cd92","type":"library","group":"dev","name":"com.ibm.ws.app.manager.ready","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.app.manager.ready:com.ibm.ws.app.manager.ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.app.manager.ready@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"5ff3386e52b44a36e7f27520f3a25b9221e6e2a6"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:AppManagerActivator:com.ibm.ws.app.manager.ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.ready:AppManagerActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:AppManagerActivator:AppManagerActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.ready:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:com.ibm.ws.app.manager.ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.ready:ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ready:com.ibm.ws.app.manager.ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:com.ibm.ws.app.manager.ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.ready:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.app.manager.ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.ready:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.app.manager.ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:AppManagerActivator:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:AppManagerActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:AppManagerActivator:ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ready:AppManagerActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:AppManagerActivator:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:AppManagerActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:AppManagerActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:AppManagerActivator:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:AppManagerActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ready:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ready:ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ready:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ready:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.app.manager.ready_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.app.manager.ready"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.app.manager.ready_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.app.manager.wab.jakarta@1.0.89.cl240520240506-1951?package-id=d913f42c02d6c336","type":"library","group":"dev","name":"com.ibm.ws.app.manager.wab.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:com.ibm.ws.app.manager.wab.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.app.manager.wab.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"13fbc59bfc21f07e26819c91379005fc568fe294"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.app.manager.wab.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:com.ibm.ws.app.manager.wab.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:com.ibm.ws.app.manager.wab.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:wab:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.app.manager.wab.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wab:com.ibm.ws.app.manager.wab.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.app.manager.wab.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:wab:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:wab:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wab:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wab:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:wab:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wab:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wab:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wab:wab:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wab:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:wab:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.app.manager.wab.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.app.manager.wab.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.app.manager.wab.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.app.manager.war.jakarta@1.0.89.cl240520240506-1951?package-id=30fd216bea84ab84","type":"library","group":"dev","name":"com.ibm.ws.app.manager.war.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:com.ibm.ws.app.manager.war.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.app.manager.war.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"9ef646bdb4d21788b7c1c76771945e2190293245"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.app.manager.war.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:com.ibm.ws.app.manager.war.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:com.ibm.ws.app.manager.war.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:war:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.app.manager.war.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:war:com.ibm.ws.app.manager.war.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.app.manager.war.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:war:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:war:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:war:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:war:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:war:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:war:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:war:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:war:war:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:app:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:war:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:app:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:war:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.app.manager.war.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.app.manager.war.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.app.manager.war.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.artifact@1.0.89.cl240520240506-1951?package-id=0f18b8970e5ded17","type":"library","group":"dev","name":"com.ibm.ws.artifact","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.artifact:com.ibm.ws.artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.artifact@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"da63b90e25b12986d31401c9cc855e1558ef216f"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:com.ibm.ws.artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.artifact"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.artifact.bundle@1.0.89.cl240520240506-1951?package-id=770c5760146cafa6","type":"library","group":"dev","name":"com.ibm.ws.artifact.bundle","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.artifact.bundle:com.ibm.ws.artifact.bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.artifact.bundle@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"d71dce58ad2d47eb2a1d02c9fff30dd1b8fe21b6"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:com.ibm.ws.artifact.bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.bundle:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bundle:com.ibm.ws.artifact.bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.bundle:bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.artifact.bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.bundle:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.artifact.bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bundle:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bundle:bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bundle:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact.bundle_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.artifact.bundle"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact.bundle_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.artifact.equinox.module@1.0.89.cl240520240506-1951?package-id=2a46b1ba000b2048","type":"library","group":"dev","name":"com.ibm.ws.artifact.equinox.module","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.artifact.equinox.module:com.ibm.ws.artifact.equinox.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.artifact.equinox.module@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"58a86542b355f9ed6c6ea6c2d2fd09c26735f128"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:com.ibm.ws.artifact.equinox.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.equinox.module:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.equinox.module:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:com.ibm.ws.artifact.equinox.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.equinox.module:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:com.ibm.ws.artifact.equinox.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.artifact.equinox.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.equinox.module:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.artifact.equinox.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact.equinox.module_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.artifact.equinox.module"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact.equinox.module_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.artifact.file@1.0.89.cl240520240506-1951?package-id=3849023c6c6354d6","type":"library","group":"dev","name":"com.ibm.ws.artifact.file","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.artifact.file:com.ibm.ws.artifact.file:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.artifact.file@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"4ef34f4ab6322abaf7cac84fee01a280efe27d64"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:com.ibm.ws.artifact.file:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.file:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.file:file:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:file:com.ibm.ws.artifact.file:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.artifact.file:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.file:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.artifact.file:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:file:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:file:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:file:file:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:file:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:file:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:file:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact.file_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.artifact.file"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact.file_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.artifact.loose@1.0.89.cl240520240506-1951?package-id=e6a5941eceec4277","type":"library","group":"dev","name":"com.ibm.ws.artifact.loose","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.artifact.loose:com.ibm.ws.artifact.loose:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.artifact.loose@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"ba7ab11064719e0123c760cf39760fec860b49ce"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:com.ibm.ws.artifact.loose:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.loose:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.loose:loose:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:loose:com.ibm.ws.artifact.loose:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.artifact.loose:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.loose:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.artifact.loose:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:loose:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:loose:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:loose:loose:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:loose:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:loose:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:loose:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact.loose_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.artifact.loose"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact.loose_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.artifact.overlay@1.0.89.cl240520240506-1951?package-id=6b0e7e84e6c9a6de","type":"library","group":"dev","name":"com.ibm.ws.artifact.overlay","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.artifact.overlay:com.ibm.ws.artifact.overlay:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.artifact.overlay@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"c2bc576f7990f9329828bd67a3e7465487d1587b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:com.ibm.ws.artifact.overlay:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.overlay:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.overlay:overlay:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:overlay:com.ibm.ws.artifact.overlay:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.artifact.overlay:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.overlay:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.artifact.overlay:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:overlay:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:overlay:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:overlay:overlay:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:overlay:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:overlay:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:overlay:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact.overlay_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.artifact.overlay"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact.overlay_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.artifact.url@1.0.89.cl240520240506-1951?package-id=70a8ea4974fafe17","type":"library","group":"dev","name":"com.ibm.ws.artifact.url","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.artifact.url:com.ibm.ws.artifact.url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.artifact.url@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"25f3521b63c9e7c1cfdadeb9abb6177145185bc1"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:com.ibm.ws.artifact.url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.url:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.url:url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.artifact.url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:url:com.ibm.ws.artifact.url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.url:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.artifact.url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:url:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:url:url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:url:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact.url_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.artifact.url"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact.url_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.artifact.zip@1.0.89.cl240520240506-1951?package-id=c38dab58a4d7cd7a","type":"library","group":"dev","name":"com.ibm.ws.artifact.zip","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.artifact.zip:com.ibm.ws.artifact.zip:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.artifact.zip@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"5fe8e73bad64c0f0d44d3d9929ca226c5ec525bb"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:com.ibm.ws.artifact.zip:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.zip:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.zip:zip:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.artifact.zip:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:zip:com.ibm.ws.artifact.zip:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.artifact.zip:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.artifact.zip:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:zip:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:zip:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:artifact:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:artifact:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:zip:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:zip:zip:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:zip:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:zip:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact.zip_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.artifact.zip"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.artifact.zip_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.cdi.interfaces.jakarta@1.0.89.cl240520240506-1951?package-id=8493f1e4509e8fbf","type":"library","group":"dev","name":"com.ibm.ws.cdi.interfaces.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:com.ibm.ws.cdi.interfaces.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.cdi.interfaces.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"1ab523f4e957a9da3df567d779c3ccbb7bd002d0"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:com.ibm.ws.cdi.interfaces.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.cdi.interfaces.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:com.ibm.ws.cdi.interfaces.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.cdi.interfaces.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.cdi.interfaces.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.cdi.interfaces.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.cdi.interfaces.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.cdi.interfaces.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.cdi.internal.jakarta@1.0.89.cl240520240506-1951?package-id=7de905f00e3df8b1","type":"library","group":"dev","name":"com.ibm.ws.cdi.internal.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:com.ibm.ws.cdi.internal.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.cdi.internal.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"7d3a43251aa0a45e085cfe56da5f645a5ae03e15"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:com.ibm.ws.cdi.internal.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.cdi.internal.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:com.ibm.ws.cdi.internal.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.cdi.internal.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.cdi.internal.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.cdi.internal.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.cdi.internal.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.cdi.internal.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.cdi.jndi.jakarta@1.0.89.cl240520240506-1951?package-id=c700e7ea29acafb2","type":"library","group":"dev","name":"com.ibm.ws.cdi.jndi.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:com.ibm.ws.cdi.jndi.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.cdi.jndi.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a0184c4973f723ee2873db141f4a45c140b76a41"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.cdi.jndi.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:com.ibm.ws.cdi.jndi.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:com.ibm.ws.cdi.jndi.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.cdi.jndi.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.cdi.jndi.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.cdi.jndi.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.cdi.jndi.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.cdi.jndi.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.cdi.transaction.jakarta@1.0.89.cl240520240506-1951?package-id=dd4a44cfa49f487b","type":"library","group":"dev","name":"com.ibm.ws.cdi.transaction.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:com.ibm.ws.cdi.transaction.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.cdi.transaction.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"118b82ec72b10d1a08f27683fdff87565f77d0b3"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:com.ibm.ws.cdi.transaction.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.cdi.transaction.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:com.ibm.ws.cdi.transaction.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.cdi.transaction.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.cdi.transaction.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.cdi.transaction.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.cdi.transaction.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.cdi.transaction.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.cdi.web.jakarta@1.0.89.cl240520240506-1951?package-id=b4dd542604c41a6f","type":"library","group":"dev","name":"com.ibm.ws.cdi.web.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:com.ibm.ws.cdi.web.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.cdi.web.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"b03e83326737a7231e7c4b26b71a3d97a87e1b76"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.cdi.web.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:com.ibm.ws.cdi.web.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.cdi.web.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:web:com.ibm.ws.cdi.web.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.cdi.web.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:web:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:web:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:web:web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:web:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.cdi.web.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.cdi.web.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.cdi.web.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.cdi.weld.jakarta@1.0.89.cl240520240506-1951?package-id=0d71f1a9d907efd5","type":"library","group":"dev","name":"com.ibm.ws.cdi.weld.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:com.ibm.ws.cdi.weld.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.cdi.weld.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"d571f5586b55827f047365412b126446e7f6157e"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.cdi.weld.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld:com.ibm.ws.cdi.weld.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:com.ibm.ws.cdi.weld.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.cdi.weld.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.cdi.weld.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.cdi.weld.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.cdi.weld.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.cdi.weld.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.channel.ssl@1.0.89.cl240520240506-1951?package-id=821831e7b45fe7ce","type":"library","group":"dev","name":"com.ibm.ws.channel.ssl","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.channel.ssl:com.ibm.ws.channel.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.channel.ssl@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"3cb175230e494085ef61d2684ccd62f9d6f8f2f0"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:channel:com.ibm.ws.channel.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.channel.ssl:channel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.channel.ssl:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.channel.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:com.ibm.ws.channel.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.channel.ssl:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.channel.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:channel:channel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:channel:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:channel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:channel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:channel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:channel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.channel.ssl_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.channel.ssl"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.channel.ssl_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.channelfw@1.0.89.cl240520240506-1951?package-id=4017db85185265e8","type":"library","group":"dev","name":"com.ibm.ws.channelfw","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.channelfw:com.ibm.ws.channelfw:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.channelfw@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"f0dcf998e1f867d87ec0260bafb7a563afe12f3e"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:channelfw:com.ibm.ws.channelfw:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.channelfw:channelfw:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.channelfw:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.channelfw:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.channelfw:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:channelfw:channelfw:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:channelfw:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:channelfw:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:channelfw:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.channelfw_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.channelfw"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.channelfw_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.classloader.context@1.0.89.cl240520240506-1951?package-id=9eb2b9e63ca742b1","type":"library","group":"dev","name":"com.ibm.ws.classloader.context","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.classloader.context:com.ibm.ws.classloader.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.classloader.context@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a123a692742bbe89387c2112d582bd0a4a37e3c4"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloader:com.ibm.ws.classloader.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.classloader.context:classloader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.classloader.context:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:com.ibm.ws.classloader.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.classloader.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.classloader.context:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.classloader.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloader:classloader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloader:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:classloader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:classloader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:classloader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.classloader.context_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.classloader.context"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.classloader.context_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.classloading@1.1.89.cl240520240506-1951?package-id=927ceaec005297a9","type":"library","group":"dev","name":"com.ibm.ws.classloading","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.classloading:com.ibm.ws.classloading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.classloading@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"f4c63e4463b841f23d8212ed276f14261ac606e5"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloading:com.ibm.ws.classloading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.classloading:classloading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.classloading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.classloading:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.classloading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloading:classloading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:classloading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloading:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:classloading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.classloading_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.classloading"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.classloading_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.classloading.configuration@1.0.89.cl240520240506-1951?package-id=6d302769b132bb14","type":"library","group":"dev","name":"com.ibm.ws.classloading.configuration","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.classloading.configuration:com.ibm.ws.classloading.configuration:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.classloading.configuration@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"7c12bf261db4b8c973219e106cbb9b3bfe2def15"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.classloading.configuration:configuration:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:configuration:com.ibm.ws.classloading.configuration:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloading:com.ibm.ws.classloading.configuration:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.classloading.configuration:classloading:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.classloading.configuration:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.classloading.configuration:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.classloading.configuration:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:configuration:configuration:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloading:configuration:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:configuration:classloading:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloading:classloading:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:configuration:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:configuration:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:classloading:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:configuration:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classloading:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:classloading:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.classloading.configuration_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.classloading.configuration"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.classloading.configuration_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.collector.manager@1.0.89.cl240520240506-1951?package-id=b2891312f8a2f12b","type":"library","group":"dev","name":"com.ibm.ws.collector.manager","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.collector.manager:com.ibm.ws.collector.manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.collector.manager@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a6c23ebf43f8d8ae3dcdeba523d9cd60791fc37b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:collector:com.ibm.ws.collector.manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.collector.manager:collector:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.collector.manager:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:com.ibm.ws.collector.manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.collector.manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.collector.manager:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.collector.manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:collector:collector:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:collector:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:collector:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:collector:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:collector:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:collector:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:manager:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:manager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.collector.manager_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.collector.manager"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.collector.manager_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.config@1.0.89.cl240520240506-1951?package-id=ac96f032e047f549","type":"library","group":"dev","name":"com.ibm.ws.config","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:WSConfigActivator:WSConfigActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.config@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"4f5a4f8dacaad60be1bc2eef31f431c0ea7695f7"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:WSConfigActivator:com.ibm.ws.config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config:WSConfigActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config:com.ibm.ws.config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:WSConfigActivator:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:WSConfigActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:com.ibm.ws.config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:WSConfigActivator:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:WSConfigActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:com.ibm.ws.config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:WSConfigActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:WSConfigActivator:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:WSConfigActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.config_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.config"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.config_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.config.schemagen@1.0.89.cl240520240506-1951?package-id=b7fb39f0e72f9168","type":"library","group":"dev","name":"com.ibm.ws.config.schemagen","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.config.schemagen:com.ibm.ws.config.schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.config.schemagen@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"057b210b5d89850b2b432059050c50c83da056b7"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.schemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:com.ibm.ws.config.schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.schemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:com.ibm.ws.config.schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.config.schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.schemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.config.schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.config.schemagen_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.config.schemagen"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.config.schemagen_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.config.server.schemagen@1.0.89.cl240520240506-1951?package-id=020f57fad52b6232","type":"library","group":"dev","name":"com.ibm.ws.config.server.schemagen","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.config.server.schemagen:com.ibm.ws.config.server.schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.config.server.schemagen@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"7096e71cd1d9bec0e624cc7c6d33299e614e5c6e"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.server.schemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:com.ibm.ws.config.server.schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.server.schemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.server.schemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:com.ibm.ws.config.server.schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:com.ibm.ws.config.server.schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.config.server.schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.server.schemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.config.server.schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.config.server.schemagen_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.config.server.schemagen"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.config.server.schemagen_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.config.server.schemagen.serverschemagen@1.0.89.cl240520240506-1951?package-id=3729853f89a0db71","type":"library","group":"dev","name":"com.ibm.ws.config.server.schemagen.serverschemagen","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License","url":"https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.config.server.schemagen.serverschemagen@1.0.89.cl240520240506-1951","properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-serverSchemagen.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.config.server.schemagen.serverschemagen"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-serverSchemagen.jar:dev:com.ibm.ws.config.server.schemagen.serverschemagen"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.config.server.schemagen.serverschemagen@1.0.89.cl240520240506-1951?package-id=7a0f5b2be2bcdc9b","type":"library","group":"dev","name":"com.ibm.ws.config.server.schemagen.serverschemagen","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License","url":"https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.config.server.schemagen.serverschemagen@1.0.89.cl240520240506-1951","properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.config.server.schemagen_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.config.server.schemagen.serverschemagen"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.config.server.schemagen_1.0.89.jar:OSGI-OPT/websphere/lib/ws-serverSchemagen.jar:dev:com.ibm.ws.config.server.schemagen.serverschemagen"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.container.service@1.0.89.cl240520240506-1951?package-id=65dd1f9800f57abe","type":"library","group":"dev","name":"com.ibm.ws.container.service","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.container.service:com.ibm.ws.container.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.container.service@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"ed122685f240c058817ae55c69cd3bbf344b72a9"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.container.service:container:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:container:com.ibm.ws.container.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.container.service:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.ws.container.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.container.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.container.service:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.container.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:container:container:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:container:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:container:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:container:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:container:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:container:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.container.service_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.container.service"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.container.service_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.context@1.0.89.cl240520240506-1951?package-id=7decc269d4ea0a5d","type":"library","group":"dev","name":"com.ibm.ws.context","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.context:com.ibm.ws.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.context@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"04c82338d42ed3027403ecdd53e6a773980c3866"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.context:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:com.ibm.ws.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.context:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.context_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.context"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.context_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.crypto.certificate.creator.selfsigned@1.0.89.cl240520240506-1951?package-id=29fd622006defdae","type":"library","group":"dev","name":"com.ibm.ws.crypto.certificate.creator.selfsigned","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.crypto.certificate.creator.selfsigned@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a56862aa81605096fdf5b424bfeca4fb01a0eb68"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:certificate:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:certificate:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:selfsigned:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:selfsigned:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:creator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:creator:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:certificate:certificate:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:certificate:selfsigned:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:selfsigned:certificate:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:selfsigned:selfsigned:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:certificate:creator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:creator:certificate:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:certificate:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:creator:selfsigned:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:certificate:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:selfsigned:creator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:selfsigned:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:selfsigned:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:creator:creator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:certificate:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:certificate:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:creator:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:creator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:selfsigned:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:certificate:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:selfsigned:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:selfsigned:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:creator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:creator:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:creator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.crypto.certificate.creator.selfsigned_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.crypto.certificate.creator.selfsigned"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.crypto.certificate.creator.selfsigned_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.crypto.certificateutil@1.0.89.cl240520240506-1951?package-id=e705c13782159b1a","type":"library","group":"dev","name":"com.ibm.ws.crypto.certificateutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.crypto.certificateutil:com.ibm.ws.crypto.certificateutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.crypto.certificateutil@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"c97e2597a08212225c29e6a54d5c268e4bfa2e2e"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:certificateutil:com.ibm.ws.crypto.certificateutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.crypto.certificateutil:certificateutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.crypto.certificateutil:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:com.ibm.ws.crypto.certificateutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.crypto.certificateutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.crypto.certificateutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.crypto.certificateutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:certificateutil:certificateutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:certificateutil:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:certificateutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:certificateutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:certificateutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:certificateutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.crypto.certificateutil_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.crypto.certificateutil"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.crypto.certificateutil_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.crypto.ltpakeyutil@1.0.89.cl240520240506-1951?package-id=ebb56d49db010507","type":"library","group":"dev","name":"com.ibm.ws.crypto.ltpakeyutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.crypto.ltpakeyutil:com.ibm.ws.crypto.ltpakeyutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.crypto.ltpakeyutil@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"5d235871eeca9051b6f294301c0c76af78632bdd"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.crypto.ltpakeyutil:ltpakeyutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ltpakeyutil:com.ibm.ws.crypto.ltpakeyutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.crypto.ltpakeyutil:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:com.ibm.ws.crypto.ltpakeyutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.crypto.ltpakeyutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.crypto.ltpakeyutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.crypto.ltpakeyutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ltpakeyutil:ltpakeyutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:ltpakeyutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ltpakeyutil:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ltpakeyutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ltpakeyutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ltpakeyutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.crypto.ltpakeyutil_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.crypto.ltpakeyutil"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.crypto.ltpakeyutil_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.crypto.passwordutil@1.0.89.cl240520240506-1951?package-id=0980a62919ef813d","type":"library","group":"dev","name":"com.ibm.ws.crypto.passwordutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.crypto.passwordutil:com.ibm.ws.crypto.passwordutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.crypto.passwordutil@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"f5d84890a3f2d2ca5bc504e8d7d2903abf72f1e0"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.crypto.passwordutil:passwordutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:passwordutil:com.ibm.ws.crypto.passwordutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.crypto.passwordutil:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:com.ibm.ws.crypto.passwordutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.crypto.passwordutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.crypto.passwordutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.crypto.passwordutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:passwordutil:passwordutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:passwordutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:passwordutil:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:passwordutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:passwordutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:passwordutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:crypto:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.crypto.passwordutil_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.crypto.passwordutil"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.crypto.passwordutil_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.diagnostics@1.0.89.cl240520240506-1951?package-id=d658f59791a6f6f6","type":"library","group":"dev","name":"com.ibm.ws.diagnostics","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.diagnostics:com.ibm.ws.diagnostics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.diagnostics@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"6b31f7c5458831f1b4cbab600b8675ffc8842710"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.diagnostics:diagnostics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:diagnostics:com.ibm.ws.diagnostics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.diagnostics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.diagnostics:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.diagnostics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:diagnostics:diagnostics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:diagnostics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:diagnostics:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:diagnostics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.diagnostics_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.diagnostics"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.diagnostics_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.dynacache.monitor@1.0.89.cl240520240506-1951?package-id=e3e5560abba2df90","type":"library","group":"dev","name":"com.ibm.ws.dynacache.monitor","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.dynacache.monitor:com.ibm.ws.dynacache.monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.dynacache.monitor@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"b678450b8f6ba8a6670d575794ae32206973ba22"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.dynacache.monitor:dynacache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dynacache:com.ibm.ws.dynacache.monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.dynacache.monitor:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:com.ibm.ws.dynacache.monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.dynacache.monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.dynacache.monitor:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.dynacache.monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dynacache:dynacache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dynacache:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:dynacache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:dynacache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dynacache:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:dynacache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.dynacache.monitor_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.dynacache.monitor"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.dynacache.monitor_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.dynamic.bundle@1.0.89.cl240520240506-1951?package-id=aec7b6e4155bc427","type":"library","group":"dev","name":"com.ibm.ws.dynamic.bundle","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.dynamic.bundle:com.ibm.ws.dynamic.bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.dynamic.bundle@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"9c9028550f11e274b632956fdd77f7978b22caa9"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.dynamic.bundle:dynamic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dynamic:com.ibm.ws.dynamic.bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bundle:com.ibm.ws.dynamic.bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.dynamic.bundle:bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.dynamic.bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.dynamic.bundle:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.dynamic.bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dynamic:dynamic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bundle:dynamic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dynamic:bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bundle:bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:dynamic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dynamic:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:dynamic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:bundle:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:bundle:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.dynamic.bundle_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.dynamic.bundle"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.dynamic.bundle_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.eba.wab.integrator@1.0.89.cl240520240506-1951?package-id=a4817b6e25283cac","type":"library","group":"dev","name":"com.ibm.ws.eba.wab.integrator","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.eba.wab.integrator:com.ibm.ws.eba.wab.integrator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.eba.wab.integrator@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"039d591651631f09ae02bfc987e5a2a4e9463a0f"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.eba.wab.integrator:integrator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:integrator:com.ibm.ws.eba.wab.integrator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.eba.wab.integrator:eba:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.eba.wab.integrator:wab:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eba:com.ibm.ws.eba.wab.integrator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.eba.wab.integrator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wab:com.ibm.ws.eba.wab.integrator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.eba.wab.integrator:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.eba.wab.integrator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:integrator:integrator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eba:integrator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:integrator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:integrator:eba:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:integrator:wab:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wab:integrator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:integrator:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:integrator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eba:eba:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eba:wab:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:eba:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wab:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wab:eba:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wab:wab:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eba:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wab:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:eba:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:wab:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.eba.wab.integrator_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.eba.wab.integrator"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.eba.wab.integrator_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.event@1.0.89.cl240520240506-1951?package-id=82acd30afa7d8fc4","type":"library","group":"dev","name":"com.ibm.ws.event","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.event:com.ibm.ws.event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.event@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a0dd9c7dde7261d74a798d18bf4793dbd45c54dc"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.event:event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:event:com.ibm.ws.event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.event:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:event:event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:event:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.event_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.event"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.event_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.http.plugin.merge@1.0.89.cl240520240506-1951?package-id=f13b166867f9f750","type":"library","group":"dev","name":"com.ibm.ws.http.plugin.merge","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.http.plugin.merge:com.ibm.ws.http.plugin.merge:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.http.plugin.merge@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"902ad7fc025259cb9099bf6601ccbf8aa5aa9351"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.http.plugin.merge:merge:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:merge:com.ibm.ws.http.plugin.merge:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.http.plugin.merge:http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:http:com.ibm.ws.http.plugin.merge:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.http.plugin.merge:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.http.plugin.merge:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.http.plugin.merge:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:merge:merge:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:http:merge:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:merge:http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:http:http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:merge:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:merge:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:merge:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:http:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.http.plugin.merge_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.http.plugin.merge"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.http.plugin.merge_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.injection.jakarta@1.0.89.cl240520240506-1951?package-id=a26ea22a1207a5d1","type":"library","group":"dev","name":"com.ibm.ws.injection.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.injection.jakarta:com.ibm.ws.injection.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.injection.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"62fd988d8e1f5463eccdbe924db88ebf0a3278f9"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.injection.jakarta:injection:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:injection:com.ibm.ws.injection.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.injection.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.injection.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.injection.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.injection.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.injection.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:injection:injection:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:injection:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:injection:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:injection:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:injection:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:injection:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.injection.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.injection.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.injection.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.install@1.0.89.cl240520240506-1951?package-id=e90ce412e35cfc48","type":"library","group":"dev","name":"com.ibm.ws.install","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.install:com.ibm.ws.install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.install@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"b7ad14810e3d3ab3bdae193320c9f365abf73680"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.install:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:com.ibm.ws.install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.install:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.install_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.install"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.install_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.install.featureUtility@1.0.89.cl240520240506-1951?package-id=b8f07136a069b626","type":"library","group":"dev","name":"com.ibm.ws.install.featureUtility","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.install.featureUtility:com.ibm.ws.install.featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.install.featureUtility@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"dbbb1837138ea7ef082dd29264566edd71ac3878"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.install.featureUtility:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:com.ibm.ws.install.featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.install.featureUtility:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:com.ibm.ws.install.featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.install.featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.install.featureUtility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.install.featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.install.featureUtility_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.install.featureUtility"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.install.featureUtility_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.install.featureUtility.featureutil@1.0.89.cl240520240506-1951?package-id=a049f63fac3e7388","type":"library","group":"dev","name":"com.ibm.ws.install.featureUtility.featureutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License","url":"https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:com.ibm.ws.install.featureUtility.featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.install.featureUtility.featureutil@1.0.89.cl240520240506-1951","properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:com.ibm.ws.install.featureUtility.featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureutil:com.ibm.ws.install.featureUtility.featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:com.ibm.ws.install.featureUtility.featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.install.featureUtility.featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.install.featureUtility.featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureutil:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureutil:featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureutil:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-featureUtility.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.install.featureUtility.featureutil"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-featureUtility.jar:dev:com.ibm.ws.install.featureUtility.featureutil"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.install.map@1.0.89.cl240520240506-1951?package-id=59a155fdf6fd75bf","type":"library","group":"dev","name":"com.ibm.ws.install.map","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.install.map:com.ibm.ws.install.map:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.install.map@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"ba652f54da192090f2b158d676567236d9f3d6e6"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.install.map:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:com.ibm.ws.install.map:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.install.map:map:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.install.map:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:map:com.ibm.ws.install.map:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.install.map:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.install.map:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:map:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:map:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:map:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:map:map:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:map:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:map:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.install.map_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.install.map"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.install.map_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.javaee.dd@1.0.89.cl240520240506-1951?package-id=2e3b608779885ca8","type":"library","group":"dev","name":"com.ibm.ws.javaee.dd","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.javaee.dd:com.ibm.ws.javaee.dd:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.javaee.dd@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"37c3a37fd37171cd597a90dd38c2ea911dc99bda"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.dd:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:com.ibm.ws.javaee.dd:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.javaee.dd:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.dd:dd:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.dd:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dd:com.ibm.ws.javaee.dd:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.javaee.dd:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dd:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:dd:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:dd:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dd:dd:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dd:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:dd:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.dd_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.javaee.dd"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.dd_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.javaee.dd.common@1.1.89.cl240520240506-1951?package-id=9d82ec6a1e5ec7f3","type":"library","group":"dev","name":"com.ibm.ws.javaee.dd.common","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.javaee.dd.common:com.ibm.ws.javaee.dd.common:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.javaee.dd.common@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"31e3c1df64bbf463e7f1bcc6ce79f6b3108f33ef"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.dd.common:common:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.dd.common:javaee:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:com.ibm.ws.javaee.dd.common:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:com.ibm.ws.javaee.dd.common:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.javaee.dd.common:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.dd.common:dd:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.dd.common:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dd:com.ibm.ws.javaee.dd.common:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.javaee.dd.common:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:common:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:javaee:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:common:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:javaee:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:common:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:javaee:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:dd:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dd:common:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dd:javaee:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:dd:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:common:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:javaee:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:dd:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dd:dd:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dd:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:dd:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.dd.common_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.javaee.dd.common"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.dd.common_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.javaee.dd.ejb@1.1.89.cl240520240506-1951?package-id=df725a824cac41d3","type":"library","group":"dev","name":"com.ibm.ws.javaee.dd.ejb","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:com.ibm.ws.javaee.dd.ejb:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.javaee.dd.ejb@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a701fe8dddea8b6d0b320f23593de799e5909ab4"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:javaee:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:com.ibm.ws.javaee.dd.ejb:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:ejb:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ejb:com.ibm.ws.javaee.dd.ejb:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.javaee.dd.ejb:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:dd:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dd:com.ibm.ws.javaee.dd.ejb:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.javaee.dd.ejb:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:javaee:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ejb:javaee:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:javaee:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:ejb:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dd:javaee:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:dd:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:javaee:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ejb:ejb:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ejb:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dd:ejb:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ejb:dd:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ejb:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:dd:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ejb:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dd:dd:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dd:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:dd:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.dd.ejb_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.javaee.dd.ejb"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.dd.ejb_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.javaee.ddmodel@1.0.89.cl240520240506-1951?package-id=8550cc44c587eac2","type":"library","group":"dev","name":"com.ibm.ws.javaee.ddmodel","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.javaee.ddmodel:com.ibm.ws.javaee.ddmodel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.javaee.ddmodel@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"ec10ec26361681b4ce3f601822d3e1e21816cb0f"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.ddmodel:ddmodel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ddmodel:com.ibm.ws.javaee.ddmodel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.ddmodel:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:com.ibm.ws.javaee.ddmodel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.javaee.ddmodel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.ddmodel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.javaee.ddmodel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ddmodel:ddmodel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ddmodel:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:ddmodel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ddmodel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ddmodel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ddmodel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.ddmodel_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.javaee.ddmodel"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.ddmodel_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.javaee.metadata.context@1.0.89.cl240520240506-1951?package-id=71a334ca2180abf3","type":"library","group":"dev","name":"com.ibm.ws.javaee.metadata.context","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.javaee.metadata.context:com.ibm.ws.javaee.metadata.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.javaee.metadata.context@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"bed6bd4e60ea71631d886894dec3aec118830eb9"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.metadata.context:metadata:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metadata:com.ibm.ws.javaee.metadata.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.metadata.context:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:com.ibm.ws.javaee.metadata.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.metadata.context:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:com.ibm.ws.javaee.metadata.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.javaee.metadata.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.metadata.context:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.javaee.metadata.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metadata:metadata:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:metadata:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metadata:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:metadata:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metadata:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:metadata:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metadata:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:metadata:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.metadata.context_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.javaee.metadata.context"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.metadata.context_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.javaee.platform.defaultresource@1.0.89.cl240520240506-1951?package-id=2d66aa79cdffcb79","type":"library","group":"dev","name":"com.ibm.ws.javaee.platform.defaultresource","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:com.ibm.ws.javaee.platform.defaultresource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.javaee.platform.defaultresource@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"3e403fdffc0cd6aa9dd4949f7350902502ea7591"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:defaultresource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:defaultresource:com.ibm.ws.javaee.platform.defaultresource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:com.ibm.ws.javaee.platform.defaultresource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:com.ibm.ws.javaee.platform.defaultresource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.javaee.platform.defaultresource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.javaee.platform.defaultresource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:defaultresource:defaultresource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:defaultresource:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:defaultresource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:defaultresource:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:defaultresource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:defaultresource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:defaultresource:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:defaultresource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.platform.defaultresource_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.javaee.platform.defaultresource"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.platform.defaultresource_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.javaee.platform.v7@1.0.89.cl240520240506-1951?package-id=8d1bbc2341a61953","type":"library","group":"dev","name":"com.ibm.ws.javaee.platform.v7","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.javaee.platform.v7:com.ibm.ws.javaee.platform.v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.javaee.platform.v7@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"502bad52a1e84039981e24ef05cb1676e44718e5"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.v7:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:com.ibm.ws.javaee.platform.v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.v7:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:com.ibm.ws.javaee.platform.v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.javaee.platform.v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.v7:v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.v7:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v7:com.ibm.ws.javaee.platform.v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.javaee.platform.v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v7:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v7:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v7:v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v7:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v7_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.javaee.platform.v7"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v7_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.javaee.platform.v7.jndi@1.0.89.cl240520240506-1951?package-id=3e29a7dc900836a2","type":"library","group":"dev","name":"com.ibm.ws.javaee.platform.v7.jndi","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:com.ibm.ws.javaee.platform.v7.jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.javaee.platform.v7.jndi@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"8fcfe51e44bd3a42751374ae8a20634152e784a3"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:com.ibm.ws.javaee.platform.v7.jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:com.ibm.ws.javaee.platform.v7.jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:com.ibm.ws.javaee.platform.v7.jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.javaee.platform.v7.jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v7:com.ibm.ws.javaee.platform.v7.jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.javaee.platform.v7.jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v7:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v7:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v7:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v7:v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v7:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:v7:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v7.jndi_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.javaee.platform.v7.jndi"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v7.jndi_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.javaee.platform.v8@1.0.89.cl240520240506-1951?package-id=f0014b46e0ee0bb6","type":"library","group":"dev","name":"com.ibm.ws.javaee.platform.v8","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.javaee.platform.v8:com.ibm.ws.javaee.platform.v8:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.javaee.platform.v8@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"3d5b3e97357fbefee2a26bef814c8ded1270e9f3"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.v8:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:com.ibm.ws.javaee.platform.v8:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.v8:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:com.ibm.ws.javaee.platform.v8:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.javaee.platform.v8:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.v8:v8:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.platform.v8:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v8:com.ibm.ws.javaee.platform.v8:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.javaee.platform.v8:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:v8:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v8:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:v8:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v8:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:v8:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v8:v8:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v8:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:v8:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v8_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.javaee.platform.v8"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v8_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.javaee.version@1.0.89.cl240520240506-1951?package-id=386d0b4cb673e329","type":"library","group":"dev","name":"com.ibm.ws.javaee.version","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.javaee.version:com.ibm.ws.javaee.version:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.javaee.version@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"97a7db98900dbd699282e9fa4201cddaba8cea0b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.version:version:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:version:com.ibm.ws.javaee.version:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.version:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:com.ibm.ws.javaee.version:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.javaee.version:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.javaee.version:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.javaee.version:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:version:version:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:version:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:version:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:version:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:version:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:version:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:javaee:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:javaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.version_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.javaee.version"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.javaee.version_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.jaxrs.2.x.config@1.0.89.cl240520240506-1951?package-id=a31bd00160479ceb","type":"library","group":"dev","name":"com.ibm.ws.jaxrs.2.x.config","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:com.ibm.ws.jaxrs.2.x.config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.jaxrs.2.x.config@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"65a75594720f8dc535121b7e830df70a4729a314"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:com.ibm.ws.jaxrs.2.x.config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:com.ibm.ws.jaxrs.2.x.config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.jaxrs.2.x.config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.jaxrs.2.x.config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:com.ibm.ws.jaxrs.2.x.config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:x:com.ibm.ws.jaxrs.2.x.config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:x:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:x:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:x:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:x:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:x:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.jaxrs.2.x.config_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.jaxrs.2.x.config"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.jaxrs.2.x.config_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.jaxrs.2.x.monitor.jakarta@1.0.89.cl240520240506-1951?package-id=5df77f55299fce76","type":"library","group":"dev","name":"com.ibm.ws.jaxrs.2.x.monitor.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.jaxrs.2.x.monitor.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"ce2f8cb729109a3a34f5d65966840e1d607465ed"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:x:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:x:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:x:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:x:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:x:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:x:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:x:x:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.jaxrs.2.x.monitor.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.jaxrs.2.x.monitor.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.jaxrs.2.x.monitor.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta@1.0.89.cl240520240506-1951?package-id=6d710a2572ed0fbe","type":"library","group":"dev","name":"com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"22b9d9669167481eda09a3a2dcd12eac428614a0"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:defaultexceptionmapper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:defaultexceptionmapper:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:defaultexceptionmapper:defaultexceptionmapper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:defaultexceptionmapper:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:defaultexceptionmapper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:defaultexceptionmapper:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:defaultexceptionmapper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:defaultexceptionmapper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:defaultexceptionmapper:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:defaultexceptionmapper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jaxrs:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.jmx@1.0.89.cl240520240506-1951?package-id=1ee77a86c6eb299b","type":"library","group":"dev","name":"com.ibm.ws.jmx","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.jmx:com.ibm.ws.jmx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.jmx@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"c9caadae4986faeb72dce936b13ca2935514e9a3"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jmx:jmx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.jmx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jmx:com.ibm.ws.jmx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jmx:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.jmx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jmx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jmx:jmx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jmx:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jmx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.jmx_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.jmx"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.jmx_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.jndi@1.0.89.cl240520240506-1951?package-id=2a44327a0367df5e","type":"library","group":"dev","name":"com.ibm.ws.jndi","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:JNDIServiceBinderManager:JNDIServiceBinderManager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.jndi@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"3ede75b0dab5fc3e8a1d20f9b8cd1c8b9d7ce5ae"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:JNDIServiceBinderManager:com.ibm.ws.jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jndi:JNDIServiceBinderManager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JNDIServiceBinderManager:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:JNDIServiceBinderManager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jndi:com.ibm.ws.jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JNDIServiceBinderManager:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:JNDIServiceBinderManager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:JNDIServiceBinderManager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JNDIServiceBinderManager:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:JNDIServiceBinderManager:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jndi:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:com.ibm.ws.jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jndi:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:com.ibm.ws.jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jndi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.jndi_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.jndi"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.jndi_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.jndi.url.contexts@1.0.89.cl240520240506-1951?package-id=9fb606f06e4a5066","type":"library","group":"dev","name":"com.ibm.ws.jndi.url.contexts","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.jndi.url.contexts:com.ibm.ws.jndi.url.contexts:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.jndi.url.contexts@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"71f8b733939e8bb25a4afd9dcae3b5547cadb84f"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jndi.url.contexts:contexts:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:contexts:com.ibm.ws.jndi.url.contexts:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jndi.url.contexts:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:com.ibm.ws.jndi.url.contexts:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jndi.url.contexts:url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.jndi.url.contexts:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:url:com.ibm.ws.jndi.url.contexts:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jndi.url.contexts:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.jndi.url.contexts:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:contexts:contexts:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:contexts:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:contexts:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:contexts:url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:contexts:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:url:contexts:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:contexts:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:contexts:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:url:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jndi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:url:url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jndi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:url:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:url:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.jndi.url.contexts_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.jndi.url.contexts"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.jndi.url.contexts_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.jsonb.service@1.0.89.cl240520240506-1951?package-id=d7990f8f9c8f5685","type":"library","group":"dev","name":"com.ibm.ws.jsonb.service","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.jsonb.service:com.ibm.ws.jsonb.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.jsonb.service@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"c5ff6f3b76440d8c258a8efa0a8d6ef0122f5b23"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jsonb.service:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.ws.jsonb.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jsonb.service:jsonb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonb:com.ibm.ws.jsonb.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.jsonb.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.jsonb.service:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.jsonb.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonb:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:jsonb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonb:jsonb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jsonb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonb:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jsonb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.jsonb.service_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.jsonb.service"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.jsonb.service_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.kernel.boot@1.0.89.cl240520240506-1951?package-id=6118fe6830be7a93","type":"library","group":"dev","name":"com.ibm.ws.kernel.boot","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.kernel.boot:com.ibm.ws.kernel.boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.kernel.boot@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"e1f97079edc00106a5a9a2915582362d5adabb8e"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.boot:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.ws.kernel.boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:com.ibm.ws.kernel.boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.boot:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.kernel.boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.boot:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.kernel.boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.boot_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.kernel.boot"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.boot_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.kernel.boot.archive@1.0.89.cl240520240506-1951?package-id=9cd451425f6792af","type":"library","group":"dev","name":"com.ibm.ws.kernel.boot.archive","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.kernel.boot.archive:com.ibm.ws.kernel.boot.archive:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.kernel.boot.archive@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"92ea1883f4f10e2f1fe9f7c0ffd4fd99f4b7f75c"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:archive:com.ibm.ws.kernel.boot.archive:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.boot.archive:archive:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.boot.archive:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.archive:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:com.ibm.ws.kernel.boot.archive:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.boot.archive:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.archive:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.boot.archive:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.kernel.boot.archive:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:archive:archive:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:archive:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:archive:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:archive:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:archive:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:archive:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:archive:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:archive:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.boot.archive_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.kernel.boot.archive"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.boot.archive_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.kernel.cmdline@1.0.89.cl240520240506-1951?package-id=f7fa4932f0ec4539","type":"library","group":"dev","name":"com.ibm.ws.kernel.cmdline","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.kernel.cmdline:com.ibm.ws.kernel.cmdline:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.kernel.cmdline@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"9124402f5ae0099f964d4d819bdeca6d01dd165b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:cmdline:com.ibm.ws.kernel.cmdline:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.cmdline:cmdline:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.cmdline:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.ws.kernel.cmdline:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.kernel.cmdline:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.cmdline:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.kernel.cmdline:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cmdline:cmdline:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cmdline:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:cmdline:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:cmdline:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cmdline:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:cmdline:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.cmdline_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.kernel.cmdline"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.cmdline_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.kernel.equinox.module@1.0.89.cl240520240506-1951?package-id=3ba645dbb442b7b4","type":"library","group":"dev","name":"com.ibm.ws.kernel.equinox.module","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.kernel.equinox.module:com.ibm.ws.kernel.equinox.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.kernel.equinox.module@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"d3cd92d95459b65920f831f06ffe5099cccc1889"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.equinox.module:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:com.ibm.ws.kernel.equinox.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.equinox.module:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.equinox.module:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.ws.kernel.equinox.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:com.ibm.ws.kernel.equinox.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.kernel.equinox.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.equinox.module:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.kernel.equinox.module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:module:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:module:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.equinox.module_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.kernel.equinox.module"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.equinox.module_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.kernel.feature@1.0.89.cl240520240506-1951?package-id=c71f2cd5453142a8","type":"library","group":"dev","name":"com.ibm.ws.kernel.feature","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.kernel.feature:com.ibm.ws.kernel.feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.kernel.feature@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"4955b058c6abd4c7566e40ffc9415fb9d364a1d6"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.feature:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:com.ibm.ws.kernel.feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.feature:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.ws.kernel.feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.kernel.feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.feature:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.kernel.feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.feature_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.kernel.feature"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.feature_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.kernel.filemonitor@1.0.89.cl240520240506-1951?package-id=e7ba77bd1084edba","type":"library","group":"dev","name":"com.ibm.ws.kernel.filemonitor","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.kernel.filemonitor:com.ibm.ws.kernel.filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.kernel.filemonitor@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"18b4a87cfc812c7fc280e5dce945ec0b37b01023"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.filemonitor:filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filemonitor:com.ibm.ws.kernel.filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.filemonitor:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.ws.kernel.filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.kernel.filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.filemonitor:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.kernel.filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filemonitor:filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filemonitor:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filemonitor:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:filemonitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.filemonitor_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.kernel.filemonitor"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.filemonitor_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.kernel.instrument.check@1.0.89.cl240520240506-1951?package-id=641888f118e5d40c","type":"library","group":"dev","name":"com.ibm.ws.kernel.instrument.check","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License","url":"https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.kernel.instrument.check:com.ibm.ws.kernel.instrument.check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.kernel.instrument.check@1.0.89.cl240520240506-1951","properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.instrument.check:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:com.ibm.ws.kernel.instrument.check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.instrument.check:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.ws.kernel.instrument.check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:com.ibm.ws.kernel.instrument.check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.instrument.check:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.kernel.instrument.check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.instrument.check:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.kernel.instrument.check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-javaagent.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.kernel.instrument.check"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-javaagent.jar:dev:com.ibm.ws.kernel.instrument.check"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.kernel.instrument.check@1.0.89.cl240520240506-1951?package-id=f031ff2371297f50","type":"library","group":"dev","name":"com.ibm.ws.kernel.instrument.check","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License","url":"https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.kernel.instrument.check:com.ibm.ws.kernel.instrument.check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.kernel.instrument.check@1.0.89.cl240520240506-1951","properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.instrument.check:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:com.ibm.ws.kernel.instrument.check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.instrument.check:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.ws.kernel.instrument.check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:com.ibm.ws.kernel.instrument.check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.instrument.check:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.kernel.instrument.check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.instrument.check:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.kernel.instrument.check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/bootstrap-agent.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.kernel.instrument.check"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/bootstrap-agent.jar:dev:com.ibm.ws.kernel.instrument.check"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.kernel.metatype.helper@1.0.89.cl240520240506-1951?package-id=ae76fef17e444dde","type":"library","group":"dev","name":"com.ibm.ws.kernel.metatype.helper","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:com.ibm.ws.kernel.metatype.helper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.kernel.metatype.helper@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"9e182f0b02b1e57d8f37d8c212785f73739d972b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:com.ibm.ws.kernel.metatype.helper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:helper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:helper:com.ibm.ws.kernel.metatype.helper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.ws.kernel.metatype.helper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.kernel.metatype.helper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.kernel.metatype.helper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:helper:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:helper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:helper:helper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:helper:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:helper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:helper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:helper:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:helper:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.metatype.helper_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.kernel.metatype.helper"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.metatype.helper_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.kernel.service@1.3.89.cl240520240506-1951?package-id=fb4313908da0ecbf","type":"library","group":"dev","name":"com.ibm.ws.kernel.service","version":"1.3.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.kernel.service:com.ibm.ws.kernel.service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.kernel.service@1.3.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"b3fadf07dbb3857fc2ce6f43d117e7ff165d4ea2"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:com.ibm.ws.kernel.service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.service:Activator:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.service:internal:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.service:location:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:com.ibm.ws.kernel.service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:location:com.ibm.ws.kernel.service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.service:service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.ws.kernel.service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.service:kernel:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:com.ibm.ws.kernel.service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.kernel.service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.kernel.service:ws:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.kernel.service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:Activator:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:internal:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:location:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:Activator:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:location:Activator:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:location:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:location:internal:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:location:location:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:Activator:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:kernel:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:Activator:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:location:service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:internal:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:location:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:kernel:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:internal:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:location:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:location:kernel:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:kernel:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:Activator:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:ws:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:internal:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:location:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:Activator:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:ws:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:location:ws:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:internal:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:location:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:ws:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:service:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.service_1.3.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.kernel.service"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.service_1.3.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.logging@1.0.89.cl240520240506-1951?package-id=8df22d78e115dff6","type":"library","group":"dev","name":"com.ibm.ws.logging","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.logging:com.ibm.ws.logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.logging@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"80eb26c87a53a5b6ee57efb27fbc4d2e1ec4b30d"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:com.ibm.ws.logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.logging_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.logging"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.logging_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.logging.hpel@1.0.89.cl240520240506-1951?package-id=a1cd87daa665d2dc","type":"library","group":"dev","name":"com.ibm.ws.logging.hpel","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.logging.hpel:com.ibm.ws.logging.hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.logging.hpel@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"fa1e6f9f9d2fc58d921c17e0ed3ce0e35e7d32d5"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.hpel:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:com.ibm.ws.logging.hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.hpel:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:com.ibm.ws.logging.hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.logging.hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.hpel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.logging.hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.logging.hpel_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.logging.hpel"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.logging.hpel_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.logging.hpel.binarylogviewer@1.0.89.cl240520240506-1951?package-id=10a4c79f58252b8b","type":"library","group":"dev","name":"com.ibm.ws.logging.hpel.binarylogviewer","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License","url":"https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:com.ibm.ws.logging.hpel.binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.logging.hpel.binarylogviewer@1.0.89.cl240520240506-1951","properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:binarylogviewer:com.ibm.ws.logging.hpel.binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:com.ibm.ws.logging.hpel.binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:com.ibm.ws.logging.hpel.binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.logging.hpel.binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.logging.hpel.binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:binarylogviewer:binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:binarylogviewer:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:binarylogviewer:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:binarylogviewer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-binarylogviewer.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.logging.hpel.binarylogviewer"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-binarylogviewer.jar:dev:com.ibm.ws.logging.hpel.binarylogviewer"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.logging.hpel.osgi@1.0.89.cl240520240506-1951?package-id=c0b714de4ada7a67","type":"library","group":"dev","name":"com.ibm.ws.logging.hpel.osgi","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:com.ibm.ws.logging.hpel.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.logging.hpel.osgi@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"4290f02778181d3a48a1178ddd7ec02cee42673e"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:com.ibm.ws.logging.hpel.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:com.ibm.ws.logging.hpel.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:com.ibm.ws.logging.hpel.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:com.ibm.ws.logging.hpel.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:com.ibm.ws.logging.hpel.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.logging.hpel.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.logging.hpel.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.logging.hpel.osgi_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.logging.hpel.osgi"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.logging.hpel.osgi_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.logging.osgi@1.0.89.cl240520240506-1951?package-id=fbd3c8a49b9868d2","type":"library","group":"dev","name":"com.ibm.ws.logging.osgi","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.logging.osgi:com.ibm.ws.logging.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.logging.osgi@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"9806049f7f0ea7478f93e9a803eb2589df17dc6d"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:com.ibm.ws.logging.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.osgi:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.osgi:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:com.ibm.ws.logging.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.osgi:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:com.ibm.ws.logging.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.osgi:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:com.ibm.ws.logging.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.logging.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.logging.osgi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.logging.osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.logging.osgi_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.logging.osgi"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.logging.osgi_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.managedobject@1.0.89.cl240520240506-1951?package-id=89fd3b3e46105130","type":"library","group":"dev","name":"com.ibm.ws.managedobject","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.managedobject:com.ibm.ws.managedobject:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.managedobject@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"abcc6d1a8038d7228dd25a27b130f0e3a0f68c4c"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.managedobject:managedobject:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:managedobject:com.ibm.ws.managedobject:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.managedobject:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.managedobject:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:managedobject:managedobject:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.managedobject:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:managedobject:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:managedobject:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:managedobject:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.managedobject_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.managedobject"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.managedobject_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.management.security@1.0.89.cl240520240506-1951?package-id=97a8e3e14b0ea081","type":"library","group":"dev","name":"com.ibm.ws.management.security","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.management.security:com.ibm.ws.management.security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.management.security@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a6c8b4f2d1083029ba82e0f1ded02df7681113c1"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.management.security:management:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:management:com.ibm.ws.management.security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.management.security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.management.security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.management.security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.management.security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.management.security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:management:management:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:management:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:management:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:management:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:management:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:management:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.management.security_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.management.security"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.management.security_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.microprofile.metrics.common@1.0.89.cl240520240506-1951?package-id=b8577a80bd9d7821","type":"library","group":"dev","name":"com.ibm.ws.microprofile.metrics.common","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:com.ibm.ws.microprofile.metrics.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.microprofile.metrics.common@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"1732c7618f6a1be85d7f1aeefbb1b7363b1163a6"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:com.ibm.ws.microprofile.metrics.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:com.ibm.ws.microprofile.metrics.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:com.ibm.ws.microprofile.metrics.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.microprofile.metrics.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.microprofile.metrics.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.microprofile.metrics.common_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.microprofile.metrics.common"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.microprofile.metrics.common_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.monitor@1.0.89.cl240520240506-1951?package-id=2669a598398f806a","type":"library","group":"dev","name":"com.ibm.ws.monitor","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.monitor:com.ibm.ws.monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.monitor@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"d5c593215673a78d4fbbd97d7537f304b12de92c"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.monitor:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:com.ibm.ws.monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.monitor:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.monitor_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.monitor"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.monitor_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.apache.aries.jmx.api@1.0.89.cl240520240506-1951?package-id=bf9d2fbc77f19faa","type":"library","group":"dev","name":"com.ibm.ws.org.apache.aries.jmx.api","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"http://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.jmx.api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.apache.aries.jmx.api@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"0440a97cc5353f792c19dd2e68d7a0ccce3cb5a9"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:apache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:aries:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:jmx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jmx.api_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.apache.aries.jmx.api"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jmx.api_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.apache.aries.jmx.core.whiteboard@1.0.89.cl240520240506-1951?package-id=68287f1d10057153","type":"library","group":"dev","name":"com.ibm.ws.org.apache.aries.jmx.core.whiteboard","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"http://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.jmx.core.whiteboard:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.apache.aries.jmx.core.whiteboard@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"0638bdb84311a195183263e1cf712e9c383b7c79"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:whiteboard:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:apache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:aries:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:core:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:jmx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jmx.core.whiteboard_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.apache.aries.jmx.core.whiteboard"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jmx.core.whiteboard_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.apache.aries.jndi.api@1.1.89.cl240520240506-1951?package-id=1e08145a44b5d1be","type":"library","group":"dev","name":"com.ibm.ws.org.apache.aries.jndi.api","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"http://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.jndi.api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.apache.aries.jndi.api@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a4a17dea902b2a173b2a05ed8a6704b88c150564"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:apache:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:aries:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:jndi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:api:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jndi.api_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.apache.aries.jndi.api"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jndi.api_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.apache.aries.jndi.core@1.1.89.cl240520240506-1951?package-id=312948cb77b75457","type":"library","group":"dev","name":"com.ibm.ws.org.apache.aries.jndi.core","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"http://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.jndi.core:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.apache.aries.jndi.core@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"949c2db4a7bda3413b7046f270eb64ca2de1f40c"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:Activator:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:startup:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:apache:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:aries:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:core:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:jndi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jndi.core_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.apache.aries.jndi.core"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jndi.core_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.apache.aries.util@1.0.89.cl240520240506-1951?package-id=569c3b0743e952c7","type":"library","group":"dev","name":"com.ibm.ws.org.apache.aries.util","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"http://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.util:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.apache.aries.util@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"f0038f282ae2b9dc16e19d02ab79612be0c08057"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:apache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:aries:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:util:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.util_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.apache.aries.util"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.util_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.apache.commons.fileupload.jakarta@1.0.89.cl240520240506-1951?package-id=154d7e046c4d8fcd","type":"library","group":"dev","name":"com.ibm.ws.org.apache.commons.fileupload.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"https://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:apache:com.ibm.ws.org.apache.commons.fileupload.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.apache.commons.fileupload.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"2247815f89b128bf2fdf4fb7a58f69c02a4230d1"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:fileupload:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:commons:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:apache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.fileupload.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.apache.commons.fileupload.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.fileupload.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.apache.commons.io@1.0.89.cl240520240506-1951?package-id=c18516061f209267","type":"library","group":"dev","name":"com.ibm.ws.org.apache.commons.io","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"https://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:apache:com.ibm.ws.org.apache.commons.io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.apache.commons.io@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"f1e92c2f9a3589edea09f7a41b370d2416029e0b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:commons:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:apache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.io_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.apache.commons.io"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.io_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.apache.commons.lang3@1.0.89.cl240520240506-1951?package-id=01a752395decb8fa","type":"library","group":"dev","name":"com.ibm.ws.org.apache.commons.lang3","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"https://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:apache:com.ibm.ws.org.apache.commons.lang3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.apache.commons.lang3@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"67713a3ed22517c11b2a697721fb7c791787f1f7"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:commons:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:apache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:lang3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.lang3_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.apache.commons.lang3"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.lang3_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.apache.felix.scr@1.0.89.cl240520240506-1951?package-id=92106de0648fba0c","type":"library","group":"dev","name":"com.ibm.ws.org.apache.felix.scr","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"https://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:apache:com.ibm.ws.org.apache.felix.scr:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.apache.felix.scr@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"6082a13082a5bec072ea58b494341160b80e471e"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:apache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:felix:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:scr:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.felix.scr_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.apache.felix.scr"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.felix.scr_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.apache.httpcomponents@1.0.89.cl240520240506-1951?package-id=976da51c1d44166f","type":"library","group":"dev","name":"com.ibm.ws.org.apache.httpcomponents","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:apache:com.ibm.ws.org.apache.httpcomponents:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.apache.httpcomponents@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"4ee2033ab223875befffda32df88369445ec539f"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:httpcomponents:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:apache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.httpcomponents_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.apache.httpcomponents"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.apache.httpcomponents_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.eclipse.equinox.coordinator@1.0.89.cl240520240506-1951?package-id=daf376b12cd44e9f","type":"library","group":"dev","name":"com.ibm.ws.org.eclipse.equinox.coordinator","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.eclipse.equinox.coordinator@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"5f5474b434d6fda407a1267b9ab49ca7c5822841"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coordinator:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coordinator:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coordinator:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coordinator:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coordinator:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coordinator:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coordinator:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.coordinator_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.eclipse.equinox.coordinator"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.coordinator_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.eclipse.equinox.metatype@1.0.89.cl240520240506-1951?package-id=a94dd17de665c946","type":"library","group":"dev","name":"com.ibm.ws.org.eclipse.equinox.metatype","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:com.ibm.ws.org.eclipse.equinox.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.eclipse.equinox.metatype@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"0f2626bf4987e8df96fa9e82dd81059c60928ef7"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:com.ibm.ws.org.eclipse.equinox.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:com.ibm.ws.org.eclipse.equinox.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:com.ibm.ws.org.eclipse.equinox.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:com.ibm.ws.org.eclipse.equinox.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:com.ibm.ws.org.eclipse.equinox.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.org.eclipse.equinox.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.ws.org.eclipse.equinox.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.org.eclipse.equinox.metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.metatype_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.eclipse.equinox.metatype"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.metatype_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.eclipse.equinox.region@1.0.89.cl240520240506-1951?package-id=c17a8623a9cb4476","type":"library","group":"dev","name":"com.ibm.ws.org.eclipse.equinox.region","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:com.ibm.ws.org.eclipse.equinox.region:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.eclipse.equinox.region@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"0406baf21c97864afc0845ec883feee1241a54a7"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:com.ibm.ws.org.eclipse.equinox.region:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:com.ibm.ws.org.eclipse.equinox.region:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:region:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:region:com.ibm.ws.org.eclipse.equinox.region:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.org.eclipse.equinox.region:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.ws.org.eclipse.equinox.region:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.org.eclipse.equinox.region:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:region:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:region:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:region:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:region:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:region:region:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:region:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:region:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:region:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:equinox:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:region:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:region:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.region_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.eclipse.equinox.region"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.region_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.glassfish.json.1.0@1.0.89.cl240520240506-1951?package-id=ac06fce693cd5471","type":"library","group":"dev","name":"com.ibm.ws.org.glassfish.json.1.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"https://glassfish.java.net/public/CDDL+GPL_1_1.html"}}],"cpe":"cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:com.ibm.ws.org.glassfish.json.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.glassfish.json.1.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"0157b23eaa175b9c6569d2b3d53b3d1103ec07dc"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:com.ibm.ws.org.glassfish.json.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:com.ibm.ws.org.glassfish.json.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.org.glassfish.json.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.ws.org.glassfish.json.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.org.glassfish.json.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:com.ibm.ws.org.glassfish.json.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:com.ibm.ws.org.glassfish.json.1.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:json:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.glassfish.json.1.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.glassfish.json.1.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.glassfish.json.1.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.jboss.jandex@1.0.89.cl240520240506-1951?package-id=c9da21768e84e845","type":"library","group":"dev","name":"com.ibm.ws.org.jboss.jandex","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"http://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:com.ibm.ws.org.jboss.jandex:com.ibm.ws.org.jboss.jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.jboss.jandex@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"cbeeca7a5a71688b9456e1ff876b86a819679263"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:com.ibm.ws.org.jboss.jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:com.ibm.ws.org.jboss.jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.jboss.jandex:jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jandex:com.ibm.ws.org.jboss.jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.jboss.jandex:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:com.ibm.ws.org.jboss.jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.jboss.jandex:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.org.jboss.jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.ws.org.jboss.jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.jboss.jandex:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.org.jboss.jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jandex:jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jandex:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jandex:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jandex:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jandex:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.jboss.jandex_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.jboss.jandex"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.jboss.jandex_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.jboss.jdeparser.1.0.0@1.0.89.cl240520240506-1951?package-id=73375547be12edf1","type":"library","group":"dev","name":"com.ibm.ws.org.jboss.jdeparser.1.0.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.jboss.jdeparser.1.0.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"953533f3847fe5c963bc6f9012f2a0de730824ef"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:jdeparser:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdeparser:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:jdeparser:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:jdeparser:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdeparser:jdeparser:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:jdeparser:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdeparser:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jdeparser:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdeparser:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:jdeparser:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdeparser:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jdeparser:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jdeparser:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jdeparser:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdeparser:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdeparser:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.jboss.jdeparser.1.0.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.jboss.jdeparser.1.0.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.jboss.jdeparser.1.0.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.jboss.logging@1.0.89.cl240520240506-1951?package-id=52664fae9e275639","type":"library","group":"dev","name":"com.ibm.ws.org.jboss.logging","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"http://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:com.ibm.ws.org.jboss.logging:com.ibm.ws.org.jboss.logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.jboss.logging@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a6ebbfa5061a0d9e4c6df8756ea37041f1d308fc"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:com.ibm.ws.org.jboss.logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:com.ibm.ws.org.jboss.logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.jboss.logging:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:com.ibm.ws.org.jboss.logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.jboss.logging:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:com.ibm.ws.org.jboss.logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.jboss.logging:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.org.jboss.logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.ws.org.jboss.logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.jboss.logging:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.org.jboss.logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.jboss.logging_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.jboss.logging"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.jboss.logging_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.joda.time.1.6.2@1.0.89.cl240520240506-1951?package-id=ed00d02dc75ec0c5","type":"library","group":"dev","name":"com.ibm.ws.org.joda.time.1.6.2","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Apache 2.0"}}],"cpe":"cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:com.ibm.ws.org.joda.time.1.6.2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.joda.time.1.6.2@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"1d36fd623823b8170931c4f705023e9165d997d6"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda-org:com.ibm.ws.org.joda.time.1.6.2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda_org:com.ibm.ws.org.joda.time.1.6.2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:joda:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:time:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda:com.ibm.ws.org.joda.time.1.6.2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:time:com.ibm.ws.org.joda.time.1.6.2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.org.joda.time.1.6.2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.ws.org.joda.time.1.6.2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.org.joda.time.1.6.2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:com.ibm.ws.org.joda.time.1.6.2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:com.ibm.ws.org.joda.time.1.6.2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:com.ibm.ws.org.joda.time.1.6.2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda-org:joda:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda-org:time:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda_org:joda:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda_org:time:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda-org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda_org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda-org:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda_org:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda-org:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda-org:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda-org:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda_org:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda_org:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda_org:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda:joda:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda:time:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:time:joda:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:time:time:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:joda:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:time:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:joda:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:time:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:time:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:time:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:joda:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:time:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:joda:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:time:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:joda:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:time:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:joda:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:time:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:joda:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:time:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:time:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:time:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.joda.time.1.6.2_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.joda.time.1.6.2"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.joda.time.1.6.2_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.objectweb.asm@1.0.89.cl240520240506-1951?package-id=c6d65469a343697d","type":"library","group":"dev","name":"com.ibm.ws.org.objectweb.asm","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"BSD-3-Clause;link=https://asm.ow2.io/LICENSE.txt"}}],"cpe":"cpe:2.3:a:com.ibm.ws.org.objectweb.asm:com.ibm.ws.org.objectweb.asm:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.objectweb.asm@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a0842206630c7fcbc81741d31a86cb5e2997d6e0"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.objectweb.asm:objectweb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:objectweb:com.ibm.ws.org.objectweb.asm:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:asm:com.ibm.ws.org.objectweb.asm:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.objectweb.asm:asm:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.objectweb.asm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.org.objectweb.asm:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.ws.org.objectweb.asm:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.objectweb.asm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.org.objectweb.asm:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:objectweb:objectweb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:asm:objectweb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:objectweb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:objectweb:asm:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:objectweb:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:objectweb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:objectweb:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:objectweb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:asm:asm:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:asm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:asm:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:asm:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:asm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:asm:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.objectweb.asm_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.objectweb.asm"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.objectweb.asm_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.slf4j.api@1.0.89.cl240520240506-1951?package-id=e8df70cc885e6a5f","type":"library","group":"dev","name":"com.ibm.ws.org.slf4j.api","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.org.slf4j.api:com.ibm.ws.org.slf4j.api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.slf4j.api@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"b1a698c49c6b8b98f9908bbfc2fbe518d29612ba"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.slf4j.api:slf4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:slf4j:com.ibm.ws.org.slf4j.api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:com.ibm.ws.org.slf4j.api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.slf4j.api:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.slf4j.api:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.org.slf4j.api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.ws.org.slf4j.api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.slf4j.api:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.org.slf4j.api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:slf4j:slf4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:slf4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:slf4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:slf4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:slf4j:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:slf4j:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:slf4j:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:slf4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.slf4j.api_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.slf4j.api"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.slf4j.api_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.org.slf4j.jdk14@1.0.89.cl240520240506-1951?package-id=462018d0a35197d5","type":"library","group":"dev","name":"com.ibm.ws.org.slf4j.jdk14","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:com.ibm.ws.org.slf4j.jdk14:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.org.slf4j.jdk14@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"32ddc7163534a66d73e6a26946fff5b8b8c70dd0"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:jdk14:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:slf4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdk14:com.ibm.ws.org.slf4j.jdk14:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:slf4j:com.ibm.ws.org.slf4j.jdk14:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.org.slf4j.jdk14:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.ws.org.slf4j.jdk14:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.org.slf4j.jdk14:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdk14:jdk14:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdk14:slf4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:slf4j:jdk14:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:slf4j:slf4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jdk14:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:slf4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdk14:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:jdk14:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:slf4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:slf4j:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jdk14:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:slf4j:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jdk14:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:slf4j:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.org.slf4j.jdk14_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.org.slf4j.jdk14"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.org.slf4j.jdk14_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.product.utility@1.0.89.cl240520240506-1951?package-id=754d53121bc41c10","type":"library","group":"dev","name":"com.ibm.ws.product.utility","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.product.utility:com.ibm.ws.product.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.product.utility@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"f2a2520889bfb55ad034e6cb4c23fb188b668328"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.product.utility:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.product.utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:com.ibm.ws.product.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:com.ibm.ws.product.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.product.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.product.utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.product.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.product.utility_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.product.utility"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.product.utility_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.product.utility.productutil@1.0.89.cl240520240506-1951?package-id=0e00e40deb60302c","type":"library","group":"dev","name":"com.ibm.ws.product.utility.productutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License","url":"https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.product.utility.productutil:com.ibm.ws.product.utility.productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.product.utility.productutil@1.0.89.cl240520240506-1951","properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.product.utility.productutil:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:com.ibm.ws.product.utility.productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.product.utility.productutil:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.product.utility.productutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:com.ibm.ws.product.utility.productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:com.ibm.ws.product.utility.productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.product.utility.productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.product.utility.productutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.product.utility.productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-productutil.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.product.utility.productutil"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-productutil.jar:dev:com.ibm.ws.product.utility.productutil"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.product.utility.productutil@1.0.89.cl240520240506-1951?package-id=d99c2613df81ac6d","type":"library","group":"dev","name":"com.ibm.ws.product.utility.productutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License","url":"https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.product.utility.productutil:com.ibm.ws.product.utility.productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.product.utility.productutil@1.0.89.cl240520240506-1951","properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.product.utility.productutil:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:com.ibm.ws.product.utility.productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.product.utility.productutil:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.product.utility.productutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:com.ibm.ws.product.utility.productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:com.ibm.ws.product.utility.productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.product.utility.productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.product.utility.productutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.product.utility.productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.product.utility_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.product.utility.productutil"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.product.utility_1.0.89.jar:OSGI-OPT/websphere/lib/ws-productutil.jar:dev:com.ibm.ws.product.utility.productutil"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.recoverylog@1.0.89.cl240520240506-1951?package-id=71fc2d666db684c5","type":"library","group":"dev","name":"com.ibm.ws.recoverylog","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.recoverylog:com.ibm.ws.recoverylog:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.recoverylog@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"96473b089a22e91ab906c1d70637440d517fb3ca"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.recoverylog:recoverylog:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:recoverylog:com.ibm.ws.recoverylog:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.recoverylog:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.recoverylog:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.recoverylog:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:recoverylog:recoverylog:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:recoverylog:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:recoverylog:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:recoverylog:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.recoverylog_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.recoverylog"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.recoverylog_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.repository@1.0.89.cl240520240506-1951?package-id=4f0d7acec58a8504","type":"library","group":"dev","name":"com.ibm.ws.repository","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.repository:com.ibm.ws.repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.repository@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"45b63acdc5f852b9548788c851bc15866774325b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.repository:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:com.ibm.ws.repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.repository:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.repository_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.repository"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.repository_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.repository.liberty@1.0.89.cl240520240506-1951?package-id=c83b2e5eb01af454","type":"library","group":"dev","name":"com.ibm.ws.repository.liberty","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.repository.liberty:com.ibm.ws.repository.liberty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.repository.liberty@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"fc39240a3a21c47dd2b969c7001e3f016ffb6837"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.repository.liberty:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:com.ibm.ws.repository.liberty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.repository.liberty:liberty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:liberty:com.ibm.ws.repository.liberty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.repository.liberty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.repository.liberty:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.repository.liberty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:liberty:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:liberty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:liberty:liberty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:liberty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:liberty:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:liberty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.repository.liberty_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.repository.liberty"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.repository.liberty_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.repository.parsers@1.0.89.cl240520240506-1951?package-id=3ce15cf4a6c49d3b","type":"library","group":"dev","name":"com.ibm.ws.repository.parsers","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.repository.parsers:com.ibm.ws.repository.parsers:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.repository.parsers@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"ca694aaf3c5baedab02671d031a20c823d651f01"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.repository.parsers:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:com.ibm.ws.repository.parsers:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.repository.parsers:parsers:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:parsers:com.ibm.ws.repository.parsers:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.repository.parsers:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.repository.parsers:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.repository.parsers:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:parsers:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:parsers:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:parsers:parsers:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:parsers:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:parsers:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:parsers:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.repository.parsers_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.repository.parsers"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.repository.parsers_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.repository.resolver@1.0.89.cl240520240506-1951?package-id=bdbd6cd61005091d","type":"library","group":"dev","name":"com.ibm.ws.repository.resolver","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.repository.resolver:com.ibm.ws.repository.resolver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.repository.resolver@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"1a26980892b9d91135e6cfdf9d5fe7266e54d1f0"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.repository.resolver:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:com.ibm.ws.repository.resolver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.repository.resolver:resolver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resolver:com.ibm.ws.repository.resolver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.repository.resolver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.repository.resolver:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.repository.resolver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:resolver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resolver:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resolver:resolver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:repository:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:repository:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:resolver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resolver:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:resolver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.repository.resolver_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.repository.resolver"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.repository.resolver_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.request.probes@1.0.89.cl240520240506-1951?package-id=f93fd15c731a15ba","type":"library","group":"dev","name":"com.ibm.ws.request.probes","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.request.probes:com.ibm.ws.request.probes:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.request.probes@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"4b60e545e3793076c4073d9b897f6803ac6ab6ea"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.request.probes:request:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:request:com.ibm.ws.request.probes:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.request.probes:probes:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:probes:com.ibm.ws.request.probes:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.request.probes:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.request.probes:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.request.probes:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:request:request:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:probes:request:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:request:probes:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:probes:probes:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:request:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:probes:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:request:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:request:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:probes:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:probes:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.request.probes_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.request.probes"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.request.probes_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.resource@1.0.89.cl240520240506-1951?package-id=f0dc7a95c0f81ebb","type":"library","group":"dev","name":"com.ibm.ws.resource","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.resource:com.ibm.ws.resource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.resource@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"644f902c3fb743eed8bb2525f9b16dc18f3327d9"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.resource:resource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resource:com.ibm.ws.resource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.resource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.resource:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.resource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resource:resource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:resource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resource:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:resource:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.resource_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.resource"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.resource_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.rest.handler.jakarta@1.0.89.cl240520240506-1951?package-id=e25f1facceb2bd1d","type":"library","group":"dev","name":"com.ibm.ws.rest.handler.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:com.ibm.ws.rest.handler.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.rest.handler.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"580f95217d23b244d4948bd051552796570b33e3"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:handler:com.ibm.ws.rest.handler.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.rest.handler.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:rest:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rest:com.ibm.ws.rest.handler.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.rest.handler.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.rest.handler.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:handler:handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:handler:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:handler:rest:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:rest:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rest:handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rest:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:handler:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:handler:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rest:rest:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:rest:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rest:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:rest:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.rest.handler.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.rest.handler.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.rest.handler.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.runtime.update@1.0.89.cl240520240506-1951?package-id=675030d694fdd6d1","type":"library","group":"dev","name":"com.ibm.ws.runtime.update","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.runtime.update:com.ibm.ws.runtime.update:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.runtime.update@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"8c692dacee83c6eb0297fa8895cca4ba36575643"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.runtime.update:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:runtime:com.ibm.ws.runtime.update:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.runtime.update:update:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:update:com.ibm.ws.runtime.update:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.runtime.update:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.runtime.update:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.runtime.update:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:runtime:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:runtime:update:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:update:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:update:update:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:update:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:runtime:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:update:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:update:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.runtime.update_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.runtime.update"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.runtime.update_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security@1.0.89.cl240520240506-1951?package-id=91d623a4a7d3008e","type":"library","group":"dev","name":"com.ibm.ws.security","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security:com.ibm.ws.security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"360147036c5ad56a92e9a66bcd065596f0b7c94b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.audit.reader@1.0.89.cl240520240506-1951?package-id=c6b4d47d0229de53","type":"library","group":"dev","name":"com.ibm.ws.security.audit.reader","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.audit.reader:com.ibm.ws.security.audit.reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.audit.reader@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"43cdeaf1a906bc71ddb3828adf69a67bf831fe2b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.audit.reader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.audit.reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.audit.reader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:com.ibm.ws.security.audit.reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:com.ibm.ws.security.audit.reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.audit.reader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.audit.reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.audit.reader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.audit.reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.audit.reader_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.audit.reader"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.audit.reader_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.audit.reader.auditreader@1.0.89.cl240520240506-1951?package-id=8ebaa365a2552a7e","type":"library","group":"dev","name":"com.ibm.ws.security.audit.reader.auditreader","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License","url":"https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:com.ibm.ws.security.audit.reader.auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.audit.reader.auditreader@1.0.89.cl240520240506-1951","properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:com.ibm.ws.security.audit.reader.auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.audit.reader.auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:com.ibm.ws.security.audit.reader.auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:com.ibm.ws.security.audit.reader.auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.audit.reader.auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.audit.reader.auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-auditreader.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.audit.reader.auditreader"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-auditreader.jar:dev:com.ibm.ws.security.audit.reader.auditreader"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.audit.reader.auditreader@1.0.89.cl240520240506-1951?package-id=40982ecc43fe3f39","type":"library","group":"dev","name":"com.ibm.ws.security.audit.reader.auditreader","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License","url":"https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:com.ibm.ws.security.audit.reader.auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.audit.reader.auditreader@1.0.89.cl240520240506-1951","properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:com.ibm.ws.security.audit.reader.auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.audit.reader.auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:com.ibm.ws.security.audit.reader.auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:com.ibm.ws.security.audit.reader.auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.audit.reader.auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.audit.reader.auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.audit.reader_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.audit.reader.auditreader"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.audit.reader_1.0.89.jar:OSGI-OPT/websphere/libs/ws-auditreader.jar:dev:com.ibm.ws.security.audit.reader.auditreader"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.authentication@1.0.89.cl240520240506-1951?package-id=2afeb2adf2876208","type":"library","group":"dev","name":"com.ibm.ws.security.authentication","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.authentication:com.ibm.ws.security.authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.authentication@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"3c4ae1d04de1cd0d90a72f8e3aeff6612430f97a"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:com.ibm.ws.security.authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.authentication:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.authentication:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.authentication:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.authentication_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.authentication"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.authentication_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.authorization@1.0.89.cl240520240506-1951?package-id=f91a4a2e324bfeef","type":"library","group":"dev","name":"com.ibm.ws.security.authorization","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.authorization:com.ibm.ws.security.authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.authorization@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"fc9b76cfed1ad95261f0d0cb7475040bb9a3cd81"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:authorization:com.ibm.ws.security.authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.authorization:authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.authorization:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.authorization:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authorization:authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authorization:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authorization:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.authorization_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.authorization"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.authorization_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.authorization.builtin@1.0.89.cl240520240506-1951?package-id=e9e994f1c078703b","type":"library","group":"dev","name":"com.ibm.ws.security.authorization.builtin","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.authorization.builtin:com.ibm.ws.security.authorization.builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.authorization.builtin@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"eea99330d999666c300ffb1d57f7e13ad00ee945"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:authorization:com.ibm.ws.security.authorization.builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.authorization.builtin:authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.authorization.builtin:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.authorization.builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:builtin:com.ibm.ws.security.authorization.builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.authorization.builtin:builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.authorization.builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.authorization.builtin:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.authorization.builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authorization:authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authorization:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authorization:builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:builtin:authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authorization:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:builtin:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:authorization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:builtin:builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:builtin:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.authorization.builtin_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.authorization.builtin"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.authorization.builtin_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.context@1.0.89.cl240520240506-1951?package-id=051eca8e62b6c05b","type":"library","group":"dev","name":"com.ibm.ws.security.context","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.context:com.ibm.ws.security.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.context@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"378b5eabd97ae209c9f0694c622e4fbcd88274cf"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.context:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.context:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:com.ibm.ws.security.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.context:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.context_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.context"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.context_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.credentials@1.0.89.cl240520240506-1951?package-id=1a9d886ba9904ffb","type":"library","group":"dev","name":"com.ibm.ws.security.credentials","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.credentials:com.ibm.ws.security.credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.credentials@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"b228f87b917731ab8f8ecb0d62d0bda366c3df98"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.credentials:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:credentials:com.ibm.ws.security.credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.credentials:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.credentials:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:credentials:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:credentials:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:credentials:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.credentials_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.credentials"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.credentials_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.credentials.ssotoken@1.0.89.cl240520240506-1951?package-id=e9d47e1c506c3e39","type":"library","group":"dev","name":"com.ibm.ws.security.credentials.ssotoken","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:com.ibm.ws.security.credentials.ssotoken:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.credentials.ssotoken@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a155b23b4baf3892fa75a548fa82ca6a8ff5ba59"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:credentials:com.ibm.ws.security.credentials.ssotoken:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:ssotoken:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.credentials.ssotoken:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssotoken:com.ibm.ws.security.credentials.ssotoken:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.credentials.ssotoken:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.credentials.ssotoken:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:credentials:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:credentials:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:credentials:ssotoken:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssotoken:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ssotoken:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssotoken:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssotoken:ssotoken:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:credentials:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ssotoken:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssotoken:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ssotoken:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.credentials.ssotoken_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.credentials.ssotoken"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.credentials.ssotoken_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.credentials.wscred@1.0.89.cl240520240506-1951?package-id=bff57b47d8605d3e","type":"library","group":"dev","name":"com.ibm.ws.security.credentials.wscred","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.credentials.wscred:com.ibm.ws.security.credentials.wscred:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.credentials.wscred@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"8b0e05b6ee89f5e996427db5f1f9b9ad63918313"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.credentials.wscred:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:credentials:com.ibm.ws.security.credentials.wscred:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.credentials.wscred:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.credentials.wscred:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.credentials.wscred:wscred:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wscred:com.ibm.ws.security.credentials.wscred:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.credentials.wscred:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.credentials.wscred:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.credentials.wscred:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:credentials:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:credentials:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:credentials:wscred:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wscred:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:wscred:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wscred:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:credentials:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:credentials:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wscred:wscred:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wscred:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:wscred:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wscred:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.credentials.wscred_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.credentials.wscred"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.credentials.wscred_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.java2sec@1.0.89.cl240520240506-1951?package-id=31b325f070218d18","type":"library","group":"dev","name":"com.ibm.ws.security.java2sec","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.java2sec:com.ibm.ws.security.java2sec:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.java2sec@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"2ae4cccee9f6ad022004656dbb8dd5f773401f6b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.java2sec:java2sec:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.java2sec:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:java2sec:com.ibm.ws.security.java2sec:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.java2sec:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.java2sec:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.java2sec:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.java2sec:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:java2sec:java2sec:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:java2sec:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:java2sec:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:java2sec:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:java2sec:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:java2sec:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.java2sec_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.java2sec"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.java2sec_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.kerberos.auth@1.0.89.cl240520240506-1951?package-id=e07c49410792a8a7","type":"library","group":"dev","name":"com.ibm.ws.security.kerberos.auth","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.kerberos.auth:com.ibm.ws.security.kerberos.auth:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.kerberos.auth@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"772254dabdc0948b11890ed2b85fe4105eceac9a"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.kerberos.auth:kerberos:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.kerberos.auth:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kerberos:com.ibm.ws.security.kerberos.auth:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.kerberos.auth:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auth:com.ibm.ws.security.kerberos.auth:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.kerberos.auth:auth:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.kerberos.auth:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.kerberos.auth:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.kerberos.auth:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kerberos:kerberos:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kerberos:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:kerberos:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auth:kerberos:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auth:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kerberos:auth:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:auth:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kerberos:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kerberos:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kerberos:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auth:auth:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:auth:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auth:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:auth:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.kerberos.auth_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.kerberos.auth"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.kerberos.auth_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.mp.jwt.proxy@1.0.89.cl240520240506-1951?package-id=25038790650e33f8","type":"library","group":"dev","name":"com.ibm.ws.security.mp.jwt.proxy","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:com.ibm.ws.security.mp.jwt.proxy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.mp.jwt.proxy@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"11586f28edebcbba13391a76b09c5ed8022169ee"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.mp.jwt.proxy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:proxy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:proxy:com.ibm.ws.security.mp.jwt.proxy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:jwt:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.mp.jwt.proxy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jwt:com.ibm.ws.security.mp.jwt.proxy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:mp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mp:com.ibm.ws.security.mp.jwt.proxy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.mp.jwt.proxy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:proxy:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:proxy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jwt:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:jwt:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mp:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:proxy:proxy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:mp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:proxy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jwt:proxy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:proxy:jwt:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mp:proxy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:proxy:mp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:proxy:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:proxy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jwt:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jwt:jwt:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:mp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jwt:mp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jwt:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mp:jwt:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jwt:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mp:mp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mp:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:mp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.mp.jwt.proxy_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.mp.jwt.proxy"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.mp.jwt.proxy_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.quickstart@1.0.89.cl240520240506-1951?package-id=32a6fb254318fac0","type":"library","group":"dev","name":"com.ibm.ws.security.quickstart","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.quickstart:com.ibm.ws.security.quickstart:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.quickstart@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"4348565b012376b2cf85e559d6ed227c2f77333f"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.quickstart:quickstart:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:quickstart:com.ibm.ws.security.quickstart:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.quickstart:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.quickstart:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.quickstart:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.quickstart:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.quickstart:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:quickstart:quickstart:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:quickstart:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:quickstart:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:quickstart:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:quickstart:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:quickstart:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.quickstart_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.quickstart"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.quickstart_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.ready.service@1.0.89.cl240520240506-1951?package-id=350c613d7b2268d6","type":"library","group":"dev","name":"com.ibm.ws.security.ready.service","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.ready.service:com.ibm.ws.security.ready.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.ready.service@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"c13a80565bd21037a9d7595e5d514f9cff8c5c64"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.ready.service:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.ready.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.ready.service:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.ws.security.ready.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.ready.service:ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ready:com.ibm.ws.security.ready.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.ready.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.ready.service:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.ready.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ready:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ready:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ready:ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ready:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ready:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.ready.service_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.ready.service"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.ready.service_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.registry@1.0.89.cl240520240506-1951?package-id=4399a8faf7af3900","type":"library","group":"dev","name":"com.ibm.ws.security.registry","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.registry:com.ibm.ws.security.registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.registry@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"5ab9bd63ff730e290201ae83a228e228781e9712"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.registry:registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.registry:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:registry:com.ibm.ws.security.registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.registry:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:registry:registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:registry:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:registry:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.registry_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.registry"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.registry_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.registry.basic@1.0.89.cl240520240506-1951?package-id=6e322caacb217d3a","type":"library","group":"dev","name":"com.ibm.ws.security.registry.basic","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.registry.basic:com.ibm.ws.security.registry.basic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.registry.basic@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"8b81ffee3174e1dcb8b5839af3533efcf7b0c827"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.registry.basic:registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.registry.basic:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:registry:com.ibm.ws.security.registry.basic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.registry.basic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:basic:com.ibm.ws.security.registry.basic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.registry.basic:basic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.registry.basic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.registry.basic:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.registry.basic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:registry:registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:registry:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:basic:registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:basic:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:registry:basic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:basic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:basic:basic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:registry:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:registry:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:basic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:basic:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:basic:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.registry.basic_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.registry.basic"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.registry.basic_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.token@1.0.89.cl240520240506-1951?package-id=981891ccd19dc714","type":"library","group":"dev","name":"com.ibm.ws.security.token","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.token:com.ibm.ws.security.token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.token@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"add27564c6e6a6a395dee139bb72fc631b11c100"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.token:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.token:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:token:com.ibm.ws.security.token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.token:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:token:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:token:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:token:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.token_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.token"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.token_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.token.ltpa@1.0.89.cl240520240506-1951?package-id=001551d956000cd0","type":"library","group":"dev","name":"com.ibm.ws.security.token.ltpa","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.token.ltpa:com.ibm.ws.security.token.ltpa:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.token.ltpa@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"588d7e8ebc3a729f922960ec827eeec0759e8ff2"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.token.ltpa:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.token.ltpa:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.token.ltpa:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:token:com.ibm.ws.security.token.ltpa:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.token.ltpa:ltpa:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ltpa:com.ibm.ws.security.token.ltpa:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.token.ltpa:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.token.ltpa:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.token.ltpa:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:token:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ltpa:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ltpa:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:token:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ltpa:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:token:ltpa:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ltpa:ltpa:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ltpa:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:token:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ltpa:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ltpa:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.token.ltpa_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.token.ltpa"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.token.ltpa_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.token.s4u2@1.0.89.cl240520240506-1951?package-id=1a16d500787cd61d","type":"library","group":"dev","name":"com.ibm.ws.security.token.s4u2","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.token.s4u2:com.ibm.ws.security.token.s4u2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.token.s4u2@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"97dc3cdd86ff8996931ef39c62ef91f9a657c7b2"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.token.s4u2:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.token.s4u2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.token.s4u2:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:token:com.ibm.ws.security.token.s4u2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.token.s4u2:s4u2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:s4u2:com.ibm.ws.security.token.s4u2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.token.s4u2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.token.s4u2:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.token.s4u2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:token:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:s4u2:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:s4u2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:token:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:s4u2:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:token:s4u2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:s4u2:s4u2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:s4u2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:token:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:token:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:s4u2:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:s4u2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.token.s4u2_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.token.s4u2"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.token.s4u2_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.utility@1.0.89.cl240520240506-1951?package-id=66b8d10d4348cd7f","type":"library","group":"dev","name":"com.ibm.ws.security.utility","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.utility:com.ibm.ws.security.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.utility@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"0209ea2e376d18804ed6e629172049eb3e1d2c65"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.utility:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:com.ibm.ws.security.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.utility_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.utility"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.utility_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.utility.securityutil@1.0.89.cl240520240506-1951?package-id=17e6775d4b08350b","type":"library","group":"dev","name":"com.ibm.ws.security.utility.securityutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License","url":"https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.utility.securityutil:com.ibm.ws.security.utility.securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.utility.securityutil@1.0.89.cl240520240506-1951","properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.utility.securityutil:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:com.ibm.ws.security.utility.securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.utility.securityutil:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.utility.securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.utility.securityutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:com.ibm.ws.security.utility.securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.utility.securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.utility.securityutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.utility.securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-securityutil.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.utility.securityutil"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-securityutil.jar:dev:com.ibm.ws.security.utility.securityutil"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.security.utility.securityutil@1.0.89.cl240520240506-1951?package-id=d68d38a1ecec9869","type":"library","group":"dev","name":"com.ibm.ws.security.utility.securityutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License","url":"https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.security.utility.securityutil:com.ibm.ws.security.utility.securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.security.utility.securityutil@1.0.89.cl240520240506-1951","properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.utility.securityutil:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:com.ibm.ws.security.utility.securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.utility.securityutil:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.security.utility.securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.utility.securityutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:com.ibm.ws.security.utility.securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.security.utility.securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.security.utility.securityutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.security.utility.securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.utility_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.security.utility.securityutil"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.utility_1.0.89.jar:OSGI-OPT/websphere/lib/ws-securityutil.jar:dev:com.ibm.ws.security.utility.securityutil"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.serialization@1.0.89.cl240520240506-1951?package-id=9e288f33c731dea0","type":"library","group":"dev","name":"com.ibm.ws.serialization","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.serialization:com.ibm.ws.serialization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.serialization@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"1eb46ab27123b5548ecb70a70a2b2366ed6b8b16"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.serialization:serialization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serialization:com.ibm.ws.serialization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.serialization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.serialization:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serialization:serialization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.serialization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:serialization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serialization:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:serialization:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.serialization_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.serialization"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.serialization_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.session.jakarta@1.0.89.cl240520240506-1951?package-id=a3aafe2096c7c048","type":"library","group":"dev","name":"com.ibm.ws.session.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.session.jakarta:com.ibm.ws.session.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.session.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"e9f4eaa8cb41a975460957b5202942ddb455f38b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.session.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.session.jakarta:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.session.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:session:com.ibm.ws.session.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.session.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.session.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.session.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:session:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:session:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:session:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.session.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.session.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.session.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.session.monitor@1.0.89.cl240520240506-1951?package-id=564ae43a51aa4edd","type":"library","group":"dev","name":"com.ibm.ws.session.monitor","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.session.monitor:com.ibm.ws.session.monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.session.monitor@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"03e5261092f5076bc5bdee9cf8e49bfbc46281d0"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.session.monitor:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.session.monitor:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:com.ibm.ws.session.monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:session:com.ibm.ws.session.monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.session.monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.session.monitor:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.session.monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:session:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:session:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:session:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.session.monitor_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.session.monitor"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.session.monitor_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.ssl@1.6.89.cl240520240506-1951?package-id=c7b8858821b6d64b","type":"library","group":"dev","name":"com.ibm.ws.ssl","version":"1.6.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.ssl:com.ibm.ws.ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.ssl@1.6.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"7f5f43ff17dbb4e2f1c8cc39d2703c83e7d0b863"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.ssl:ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:com.ibm.ws.ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.ssl:ws:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:ws:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ssl:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.6.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.ssl_1.6.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.ssl"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.ssl_1.6.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.threading@1.1.89.cl240520240506-1951?package-id=57b6f3bd3a80cc85","type":"library","group":"dev","name":"com.ibm.ws.threading","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.threading:com.ibm.ws.threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.threading@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"32ea95df96f81b7e3f0479a8e52752ca4adc6c1e"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.threading:threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:threading:com.ibm.ws.threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.threading:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:threading:threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:threading:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:threading:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.threading_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.threading"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.threading_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.timer@1.0.89.cl240520240506-1951?package-id=79aaab1e6a145dd9","type":"library","group":"dev","name":"com.ibm.ws.timer","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.timer:com.ibm.ws.timer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.timer@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"764999637b97c91d77db45634138a40ec0e4aee6"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.timer:timer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:timer:com.ibm.ws.timer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.timer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.timer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.timer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:timer:timer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:timer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:timer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:timer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.timer_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.timer"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.timer_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.transaction.context.jakarta@1.0.89.cl240520240506-1951?package-id=2571c6ed7b007b6c","type":"library","group":"dev","name":"com.ibm.ws.transaction.context.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:com.ibm.ws.transaction.context.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.transaction.context.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"9328718fe07fd7e7953b6f8b75d5b1b6ce670bd2"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:com.ibm.ws.transaction.context.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:com.ibm.ws.transaction.context.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.transaction.context.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.transaction.context.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.transaction.context.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:context:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:context:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.transaction.context.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.transaction.context.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.transaction.context.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.transaction.jakarta@1.0.89.cl240520240506-1951?package-id=e4d43b6ea9673128","type":"library","group":"dev","name":"com.ibm.ws.transaction.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.transaction.jakarta:com.ibm.ws.transaction.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.transaction.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a5a42a1562ccf3296c1ab65017cd8f846f8569fb"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.transaction.jakarta:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:com.ibm.ws.transaction.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.transaction.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.transaction.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.transaction.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.transaction.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.transaction.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.transaction.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.transaction.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.transaction.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.transport.http@1.0.89.cl240520240506-1951?package-id=afa03d2e84160215","type":"library","group":"dev","name":"com.ibm.ws.transport.http","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.transport.http:com.ibm.ws.transport.http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.transport.http@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"124b2be642ac3c0cbffdcf83e559e9073c52769e"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:HttpChannelProvider:com.ibm.ws.transport.http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.transport.http:HttpChannelProvider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:HttpChannelProvider:HttpChannelProvider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.transport.http:transport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transport:com.ibm.ws.transport.http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.transport.http:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:com.ibm.ws.transport.http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.transport.http:http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:http:com.ibm.ws.transport.http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:HttpChannelProvider:transport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.transport.http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transport:HttpChannelProvider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:HttpChannelProvider:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.transport.http:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:HttpChannelProvider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.transport.http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:HttpChannelProvider:http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:http:HttpChannelProvider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:HttpChannelProvider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:HttpChannelProvider:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:HttpChannelProvider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transport:transport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:transport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transport:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:http:transport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transport:http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:http:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:transport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transport:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:transport:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:http:http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:http:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:http:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.transport.http_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.transport.http"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.transport.http_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.tx.embeddable.jakarta@1.0.89.cl240520240506-1951?package-id=b863942791266d92","type":"library","group":"dev","name":"com.ibm.ws.tx.embeddable.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:com.ibm.ws.tx.embeddable.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.tx.embeddable.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"da6ef876b53358ddedd92cff0ecd98a5a0a32952"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:EmbeddableTxBundleTools:com.ibm.ws.tx.embeddable.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:EmbeddableTxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:EmbeddableTxBundleTools:EmbeddableTxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:embeddable:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:embeddable:com.ibm.ws.tx.embeddable.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.tx.embeddable.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:com.ibm.ws.tx.embeddable.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.tx.embeddable.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:com.ibm.ws.tx.embeddable.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:com.ibm.ws.tx.embeddable.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.tx.embeddable.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:EmbeddableTxBundleTools:embeddable:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:embeddable:EmbeddableTxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:EmbeddableTxBundleTools:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:EmbeddableTxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:EmbeddableTxBundleTools:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:EmbeddableTxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:EmbeddableTxBundleTools:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:EmbeddableTxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:EmbeddableTxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:EmbeddableTxBundleTools:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:EmbeddableTxBundleTools:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:EmbeddableTxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:EmbeddableTxBundleTools:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:embeddable:embeddable:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:embeddable:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:embeddable:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:embeddable:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:embeddable:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:embeddable:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:embeddable:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:embeddable:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:embeddable:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:embeddable:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:embeddable:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:embeddable:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.tx.embeddable.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.tx.embeddable.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.tx.embeddable.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.tx.jta.extensions.jakarta@1.0.89.cl240520240506-1951?package-id=f33e7a246f75668c","type":"library","group":"dev","name":"com.ibm.ws.tx.jta.extensions.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:com.ibm.ws.tx.jta.extensions.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.tx.jta.extensions.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"719b57dcf34cf8c5efd07c0fdd08bd372b86c2d3"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:extensions:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:extensions:com.ibm.ws.tx.jta.extensions.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.tx.jta.extensions.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.tx.jta.extensions.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:com.ibm.ws.tx.jta.extensions.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:com.ibm.ws.tx.jta.extensions.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.tx.jta.extensions.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:extensions:extensions:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:extensions:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:extensions:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:extensions:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:extensions:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:extensions:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:extensions:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:extensions:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:extensions:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:extensions:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tx:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:tx:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.tx.jta.extensions.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.tx.jta.extensions.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.tx.jta.extensions.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.webcontainer.cors.jakarta@1.0.89.cl240520240506-1951?package-id=b1d3aab122f326fa","type":"library","group":"dev","name":"com.ibm.ws.webcontainer.cors.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:com.ibm.ws.webcontainer.cors.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.webcontainer.cors.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"8081b9ac34bba155d9b2ebdf4323bf4dbeae126b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.cors.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.cors.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:cors:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cors:com.ibm.ws.webcontainer.cors.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.webcontainer.cors.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.webcontainer.cors.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cors:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:cors:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cors:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:cors:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cors:cors:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:cors:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cors:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:cors:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.webcontainer.cors.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.webcontainer.cors.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.webcontainer.cors.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.webcontainer.jakarta@1.1.89.cl240520240506-1951?package-id=652ef353e572fbb5","type":"library","group":"dev","name":"com.ibm.ws.webcontainer.jakarta","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.webcontainer.jakarta:com.ibm.ws.webcontainer.jakarta:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.webcontainer.jakarta@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"111eea8c8aad6fb52ae0352968e09fcf91d1eef7"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.jakarta:webcontainer:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.jakarta:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.jakarta:jakarta:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.jakarta:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.webcontainer.jakarta:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.jakarta:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.webcontainer.jakarta:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:webcontainer:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:webcontainer:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:jakarta:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webcontainer:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webcontainer:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.webcontainer.jakarta_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.webcontainer.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.webcontainer.jakarta_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.webcontainer.monitor.jakarta@1.0.89.cl240520240506-1951?package-id=3612aff2a1948b2f","type":"library","group":"dev","name":"com.ibm.ws.webcontainer.monitor.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:com.ibm.ws.webcontainer.monitor.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.webcontainer.monitor.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"4a7d1767e76656c7d19153a6f0ce06183b84b9d2"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.monitor.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.monitor.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:com.ibm.ws.webcontainer.monitor.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.webcontainer.monitor.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.webcontainer.monitor.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.webcontainer.monitor.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.webcontainer.monitor.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.webcontainer.monitor.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.webcontainer.security.admin@1.0.89.cl240520240506-1951?package-id=4676b9b948dd2169","type":"library","group":"dev","name":"com.ibm.ws.webcontainer.security.admin","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:com.ibm.ws.webcontainer.security.admin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.webcontainer.security.admin@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"679fb1186da606c3fcae34909b6922d44508b934"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.security.admin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.webcontainer.security.admin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:admin:com.ibm.ws.webcontainer.security.admin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:admin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.webcontainer.security.admin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.webcontainer.security.admin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:admin:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:admin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:admin:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:admin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:admin:admin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:admin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:admin:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:admin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.webcontainer.security.admin_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.webcontainer.security.admin"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.webcontainer.security.admin_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.webcontainer.security.feature@1.0.89.cl240520240506-1951?package-id=27b153e772a7e2d6","type":"library","group":"dev","name":"com.ibm.ws.webcontainer.security.feature","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:com.ibm.ws.webcontainer.security.feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.webcontainer.security.feature@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"0158cef597f2129c5bebdbbb180a1d35a088b85c"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.security.feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:com.ibm.ws.webcontainer.security.feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:com.ibm.ws.webcontainer.security.feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.webcontainer.security.feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.webcontainer.security.feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.webcontainer.security.feature_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.webcontainer.security.feature"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.webcontainer.security.feature_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.webcontainer.servlet.3.1.jakarta@1.0.89.cl240520240506-1951?package-id=28fec20b9c348f0f","type":"library","group":"dev","name":"com.ibm.ws.webcontainer.servlet.3.1.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.webcontainer.servlet.3.1.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"cff7a67b2a571ef9755b351df9da35d5164dc7c8"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.webcontainer.servlet.3.1.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.webcontainer.servlet.3.1.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.webcontainer.servlet.3.1.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.webcontainer.servlet.4.0.jakarta@1.0.89.cl240520240506-1951?package-id=a8aa622b404aa32f","type":"library","group":"dev","name":"com.ibm.ws.webcontainer.servlet.4.0.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.webcontainer.servlet.4.0.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"974815716d5e2b3c76bfb1a0e462dc99a2400df1"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.webcontainer.servlet.4.0.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.webcontainer.servlet.4.0.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.webcontainer.servlet.4.0.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.webserver.plugin.runtime.interfaces@1.0.89.cl240520240506-1951?package-id=26d0b652280a36b7","type":"library","group":"dev","name":"com.ibm.ws.webserver.plugin.runtime.interfaces","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.webserver.plugin.runtime.interfaces@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"aea15b18b9eb96192c25513b7f33ae6a19b3dde8"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:runtime:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:runtime:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:runtime:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:runtime:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:runtime:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.runtime.interfaces_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.webserver.plugin.runtime.interfaces"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.runtime.interfaces_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.webserver.plugin.runtime.jakarta@1.0.89.cl240520240506-1951?package-id=fa1f81b3a7658ead","type":"library","group":"dev","name":"com.ibm.ws.webserver.plugin.runtime.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.webserver.plugin.runtime.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"af747e061b7b106f26af8d68b29f89add5d96c97"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:runtime:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:runtime:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:runtime:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:runtime:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:runtime:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:runtime:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.runtime.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.webserver.plugin.runtime.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.runtime.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.webserver.plugin.utility@1.0.89.cl240520240506-1951?package-id=e0ebbffdfad212b9","type":"library","group":"dev","name":"com.ibm.ws.webserver.plugin.utility","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.webserver.plugin.utility:com.ibm.ws.webserver.plugin.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.webserver.plugin.utility@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"cf28add6f6f17061e369a0e7afd9c7ff3cf4ff9e"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.utility:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:com.ibm.ws.webserver.plugin.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.utility_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.webserver.plugin.utility"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.utility_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.webserver.plugin.utility.webserverPluginutil@1.0.89.cl240520240506-1951?package-id=638ef5eda63cc643","type":"library","group":"dev","name":"com.ibm.ws.webserver.plugin.utility.webserverPluginutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License","url":"https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.webserver.plugin.utility.webserverPluginutil@1.0.89.cl240520240506-1951","properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-webserverPluginutil.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.webserver.plugin.utility.webserverPluginutil"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-webserverPluginutil.jar:dev:com.ibm.ws.webserver.plugin.utility.webserverPluginutil"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.webserver.plugin.utility.webserverPluginutil@1.0.89.cl240520240506-1951?package-id=e386a2813f9a7cdb","type":"library","group":"dev","name":"com.ibm.ws.webserver.plugin.utility.webserverPluginutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License","url":"https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.webserver.plugin.utility.webserverPluginutil@1.0.89.cl240520240506-1951","properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.utility_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.webserver.plugin.utility.webserverPluginutil"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.utility_1.0.89.jar:OSGI-OPT/websphere/lib/ws-webserverPluginutil.jar:dev:com.ibm.ws.webserver.plugin.utility.webserverPluginutil"}]},{"bom-ref":"pkg:maven/dev/com.ibm.ws.wsbytebuffer@1.0.89.cl240520240506-1951?package-id=c4b58923e7893ebb","type":"library","group":"dev","name":"com.ibm.ws.wsbytebuffer","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.ws.wsbytebuffer:com.ibm.ws.wsbytebuffer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.ws.wsbytebuffer@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"cac60ee2ac1650dc543d716f43e68011b97effa5"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.wsbytebuffer:wsbytebuffer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsbytebuffer:com.ibm.ws.wsbytebuffer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.ws.wsbytebuffer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.ws.wsbytebuffer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:com.ibm.ws.wsbytebuffer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsbytebuffer:wsbytebuffer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wsbytebuffer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:wsbytebuffer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsbytebuffer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.wsbytebuffer_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.ws.wsbytebuffer"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.wsbytebuffer_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.wsspi.org.osgi.core@1.2.89.cl240520240506-1951?package-id=b2da95a33844c01b","type":"library","group":"dev","name":"com.ibm.wsspi.org.osgi.core","version":"1.2.89.cl240520240506-1951","licenses":[{"license":{"name":"Apache-2.0; link=\"https://www.apache.org/licenses/LICENSE-2.0\"; description=\"Apache License, Version 2.0\""}}],"cpe":"cpe:2.3:a:com.ibm.wsspi.org.osgi.core:com.ibm.wsspi.org.osgi.core:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.wsspi.org.osgi.core@1.2.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"d62751c8c38aaeab2de1238cbdc604444ae6c9be"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.core:wsspi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.core:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.core:core:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.core:osgi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:core:com.ibm.wsspi.org.osgi.core:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.core:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.core:org:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.core:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.wsspi.org.osgi.core:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:wsspi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:core:wsspi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:wsspi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:core:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:osgi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:core:core:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:core:osgi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wsspi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:wsspi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:core:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:org:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:core:org:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:core:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:osgi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:core:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:osgi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:org:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.core_1.2.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.wsspi.org.osgi.core"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.core_1.2.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.wsspi.org.osgi.namespace.service@1.0.89.cl240520240506-1951?package-id=55b364d3ca4150df","type":"library","group":"dev","name":"com.ibm.wsspi.org.osgi.namespace.service","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"http://opensource.org/licenses/apache2.0.php; link=\"http://www.apache.org/licenses/LICENSE-2.0\"; description=\"Apache License, Version 2.0\""}}],"cpe":"cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:com.ibm.wsspi.org.osgi.namespace.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.wsspi.org.osgi.namespace.service@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a67ebf40c51f632493c14fdf727f9e4812473f07"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:namespace:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:namespace:com.ibm.wsspi.org.osgi.namespace.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.wsspi.org.osgi.namespace.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.namespace.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.namespace.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.namespace.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.wsspi.org.osgi.namespace.service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:namespace:namespace:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:namespace:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:namespace:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:namespace:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:namespace:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:namespace:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:namespace:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:namespace:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:namespace:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:namespace:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.namespace.service_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.wsspi.org.osgi.namespace.service"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.namespace.service_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.cm@1.1.89.cl240520240506-1951?package-id=d72e8649d9df3880","type":"library","group":"dev","name":"com.ibm.wsspi.org.osgi.service.cm","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Apache-2.0; link=\"http://www.apache.org/licenses/LICENSE-2.0\"; description=\"Apache License, Version 2.0\""}}],"cpe":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:com.ibm.wsspi.org.osgi.service.cm:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.cm@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"28fb7ef0b9c7bac6ca2f9ba353448b69894e81f9"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.cm:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.cm:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.cm:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.cm:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.cm:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cm:com.ibm.wsspi.org.osgi.service.cm:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:cm:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cm:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:cm:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cm:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:cm:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cm:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:cm:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cm:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:cm:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:cm:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cm:cm:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.cm_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.wsspi.org.osgi.service.cm"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.cm_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.component@1.1.89.cl240520240506-1951?package-id=b7d0291f931e06c6","type":"library","group":"dev","name":"com.ibm.wsspi.org.osgi.service.component","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Apache-2.0;description=\"This program and the accompanying materials are made available under the terms of the Apache License, Version 2.0.\";link=\"https://opensource.org/licenses/Apache-2.0\""}}],"cpe":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:com.ibm.wsspi.org.osgi.service.component:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.component@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"61473e1c3bb9ae53c5db252707f41a81f28714e7"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:component:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:component:com.ibm.wsspi.org.osgi.service.component:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.component:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.component:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.component:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.component:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.component:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:component:component:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:component:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:component:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:component:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:component:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:component:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:component:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:component:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:component:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:component:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.component_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.wsspi.org.osgi.service.component"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.component_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.component.annotations@1.0.89.cl240520240506-1951?package-id=b9baf4e5b446c276","type":"library","group":"dev","name":"com.ibm.wsspi.org.osgi.service.component.annotations","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Apache-2.0; link=\"http://www.apache.org/licenses/LICENSE-2.0\"; description=\"Apache License, Version 2.0\""}}],"cpe":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.component.annotations@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"6f1519a981a66389a3f0d73f217eecc1b3a8a8da"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotations:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:component:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:component:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotations:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotations:component:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:component:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotations:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:component:component:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotations:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:component:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:component:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotations:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotations:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:component:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:component:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:component:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:component:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:component:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:component:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:component:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.component.annotations_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.wsspi.org.osgi.service.component.annotations"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.component.annotations_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.coordinator@1.0.89.cl240520240506-1951?package-id=f1d903b53a3cd989","type":"library","group":"dev","name":"com.ibm.wsspi.org.osgi.service.coordinator","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"http://opensource.org/licenses/apache2.0.php; link=\"http://www.apache.org/licenses/LICENSE-2.0\"; description=\"Apache License, Version 2.0\""}}],"cpe":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:com.ibm.wsspi.org.osgi.service.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.coordinator@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"f2afe1868314e203d97de671e5e937313c30d19a"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coordinator:com.ibm.wsspi.org.osgi.service.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coordinator:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coordinator:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coordinator:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coordinator:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coordinator:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:coordinator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.coordinator_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.wsspi.org.osgi.service.coordinator"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.coordinator_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.event@1.0.89.cl240520240506-1951?package-id=b1feb1e6c2cd5a2c","type":"library","group":"dev","name":"com.ibm.wsspi.org.osgi.service.event","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"http://opensource.org/licenses/apache2.0.php; link=\"http://www.apache.org/licenses/LICENSE-2.0\"; description=\"Apache License, Version 2.0\""}}],"cpe":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:com.ibm.wsspi.org.osgi.service.event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.event@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"0ffede1642de4d7a84d63df7c2a3bdf78ce08369"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:event:com.ibm.wsspi.org.osgi.service.event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:event:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:event:event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:event:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:event:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:event:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:event:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.event_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.wsspi.org.osgi.service.event"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.event_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.log@1.2.89.cl240520240506-1951?package-id=3670bff22a4cfbc4","type":"library","group":"dev","name":"com.ibm.wsspi.org.osgi.service.log","version":"1.2.89.cl240520240506-1951","licenses":[{"license":{"name":"Apache-2.0; link=\"https://www.apache.org/licenses/LICENSE-2.0\"; description=\"Apache License, Version 2.0\""}}],"cpe":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:com.ibm.wsspi.org.osgi.service.log:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.log@1.2.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"bda448052c2c6cf5f3b55fc05ce00d3f23df92cb"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:service:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.log:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:wsspi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.log:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:osgi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.log:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:log:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:org:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.log:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:log:com.ibm.wsspi.org.osgi.service.log:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.log:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:wsspi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:service:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:service:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:osgi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:log:service:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:service:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:log:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:org:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:wsspi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:wsspi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:osgi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wsspi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:log:wsspi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:wsspi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:log:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:org:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:osgi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:log:osgi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:osgi:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:log:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:org:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:log:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:log:log:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:log:org:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:log:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.log_1.2.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.wsspi.org.osgi.service.log"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.log_1.2.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.metatype@1.1.89.cl240520240506-1951?package-id=1cf09fa9e409dc8c","type":"library","group":"dev","name":"com.ibm.wsspi.org.osgi.service.metatype","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Apache-2.0; link=\"http://www.apache.org/licenses/LICENSE-2.0\"; description=\"Apache License, Version 2.0\""}}],"cpe":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:com.ibm.wsspi.org.osgi.service.metatype:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.metatype@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"7248193a3a1ecc4d49a23f429354fa5be831adc2"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:metatype:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:com.ibm.wsspi.org.osgi.service.metatype:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.metatype:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.metatype:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.metatype:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.metatype:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.metatype:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:metatype:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:metatype:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:metatype:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:metatype:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:metatype:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:metatype:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:service:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:wsspi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:osgi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.metatype_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.wsspi.org.osgi.service.metatype"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.metatype_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.metatype.annotations@1.0.89.cl240520240506-1951?package-id=05539d5dd6f14ceb","type":"library","group":"dev","name":"com.ibm.wsspi.org.osgi.service.metatype.annotations","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Apache-2.0; link=\"http://www.apache.org/licenses/LICENSE-2.0\"; description=\"Apache License, Version 2.0\""}}],"cpe":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.wsspi.org.osgi.service.metatype.annotations@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"6ebf2e131c812762485fdfefe2a25f7c15552a41"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotations:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotations:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotations:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotations:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotations:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotations:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotations:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:annotations:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metatype:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:metatype:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:service:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:service:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:wsspi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:osgi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.metatype.annotations_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.wsspi.org.osgi.service.metatype.annotations"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.metatype.annotations_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/com.ibm.wsspi.thirdparty.equinox@1.3.89.cl240520240506-1951?package-id=d2f3bd64dec4baf3","type":"library","group":"dev","name":"com.ibm.wsspi.thirdparty.equinox","version":"1.3.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:com.ibm.wsspi.thirdparty.equinox:com.ibm.wsspi.thirdparty.equinox:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/com.ibm.wsspi.thirdparty.equinox@1.3.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"5b1b2797c4368f9c0a2b85758c0f0caac1be3bcb"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.thirdparty.equinox:thirdparty:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:thirdparty:com.ibm.wsspi.thirdparty.equinox:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.thirdparty.equinox:equinox:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:com.ibm.wsspi.thirdparty.equinox:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:com.ibm.wsspi.thirdparty.equinox:wsspi:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:com.ibm.wsspi.thirdparty.equinox:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:com.ibm.wsspi.thirdparty.equinox:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:thirdparty:thirdparty:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:thirdparty:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:thirdparty:equinox:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:thirdparty:wsspi:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:thirdparty:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:equinox:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:thirdparty:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:equinox:wsspi:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:equinox:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:equinox:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsspi:wsspi:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:wsspi:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/third-party/com.ibm.wsspi.thirdparty.equinox_1.3.89.jar"},{"name":"syft:metadata:-:artifactID","value":"com.ibm.wsspi.thirdparty.equinox"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/third-party/com.ibm.wsspi.thirdparty.equinox_1.3.89.jar"}]},{"bom-ref":"pkg:rpm/rhel/coreutils-single@8.30-15.el8?arch=aarch64&upstream=coreutils-8.30-15.el8.src.rpm&distro=rhel-8.9&package-id=46cd1b1b912f57d3","type":"library","publisher":"Red Hat, Inc.","name":"coreutils-single","version":"8.30-15.el8","licenses":[{"license":{"name":"GPLv3+"}}],"cpe":"cpe:2.3:a:coreutils-single:coreutils-single:8.30-15.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/coreutils-single@8.30-15.el8?arch=aarch64&upstream=coreutils-8.30-15.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:coreutils-single:coreutils_single:8.30-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coreutils_single:coreutils-single:8.30-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coreutils_single:coreutils_single:8.30-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coreutils:coreutils-single:8.30-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:coreutils:coreutils_single:8.30-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:coreutils-single:8.30-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:coreutils_single:8.30-15.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"15.el8"},{"name":"syft:metadata:size","value":"1453401"},{"name":"syft:metadata:sourceRpm","value":"coreutils-8.30-15.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/cracklib@2.9.6-15.el8?arch=aarch64&upstream=cracklib-2.9.6-15.el8.src.rpm&distro=rhel-8.9&package-id=3d364c1b1493c134","type":"library","publisher":"Red Hat, Inc.","name":"cracklib","version":"2.9.6-15.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:cracklib:cracklib:2.9.6-15.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/cracklib@2.9.6-15.el8?arch=aarch64&upstream=cracklib-2.9.6-15.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:cracklib:2.9.6-15.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"15.el8"},{"name":"syft:metadata:size","value":"438375"},{"name":"syft:metadata:sourceRpm","value":"cracklib-2.9.6-15.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/cracklib-dicts@2.9.6-15.el8?arch=aarch64&upstream=cracklib-2.9.6-15.el8.src.rpm&distro=rhel-8.9&package-id=bbf070d1886d5c12","type":"library","publisher":"Red Hat, Inc.","name":"cracklib-dicts","version":"2.9.6-15.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:cracklib-dicts:cracklib-dicts:2.9.6-15.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/cracklib-dicts@2.9.6-15.el8?arch=aarch64&upstream=cracklib-2.9.6-15.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:cracklib-dicts:cracklib_dicts:2.9.6-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cracklib_dicts:cracklib-dicts:2.9.6-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cracklib_dicts:cracklib_dicts:2.9.6-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cracklib:cracklib-dicts:2.9.6-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cracklib:cracklib_dicts:2.9.6-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:cracklib-dicts:2.9.6-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:cracklib_dicts:2.9.6-15.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"15.el8"},{"name":"syft:metadata:size","value":"9815016"},{"name":"syft:metadata:sourceRpm","value":"cracklib-2.9.6-15.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/crit@3.18?package-id=30e210324cc23ccf","type":"library","author":"CRIU team ","name":"crit","version":"3.18","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:criu_team_project:python-crit:3.18:*:*:*:*:*:*:*","purl":"pkg:pypi/crit@3.18","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_team_project:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_teamproject:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_teamproject:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_project:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_project:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criuproject:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criuproject:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-crit:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-crit:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_crit:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_crit:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_team_project:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_team:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_team:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_teamproject:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_project:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crit:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crit:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criuproject:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-crit:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_crit:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_team:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crit:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:5d6d7e1f68f5a418af0627afc7f3fdd25adf81bf50a60351aaa35a06493c46b8"},{"name":"syft:location:0:path","value":"/tmp/usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:5d6d7e1f68f5a418af0627afc7f3fdd25adf81bf50a60351aaa35a06493c46b8"},{"name":"syft:location:1:path","value":"/tmp/usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/installed-files.txt"},{"name":"syft:location:2:layerID","value":"sha256:5d6d7e1f68f5a418af0627afc7f3fdd25adf81bf50a60351aaa35a06493c46b8"},{"name":"syft:location:2:path","value":"/tmp/usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:pypi/crit@3.18?package-id=da3ccabaf2dd20e5","type":"library","author":"CRIU team ","name":"crit","version":"3.18","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:criu_team_project:python-crit:3.18:*:*:*:*:*:*:*","purl":"pkg:pypi/crit@3.18","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_team_project:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_teamproject:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_teamproject:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_project:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_project:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criuproject:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criuproject:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-crit:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-crit:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_crit:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_crit:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_team_project:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_team:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_team:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_teamproject:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_project:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crit:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crit:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu:python-crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu:python_crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criuproject:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-crit:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_crit:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu_team:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crit:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:criu:crit:3.18:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:5d6d7e1f68f5a418af0627afc7f3fdd25adf81bf50a60351aaa35a06493c46b8"},{"name":"syft:location:0:path","value":"/usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:5d6d7e1f68f5a418af0627afc7f3fdd25adf81bf50a60351aaa35a06493c46b8"},{"name":"syft:location:1:path","value":"/usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/installed-files.txt"},{"name":"syft:location:2:layerID","value":"sha256:5d6d7e1f68f5a418af0627afc7f3fdd25adf81bf50a60351aaa35a06493c46b8"},{"name":"syft:location:2:path","value":"/usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/crypto-policies@20230731-1.git3177e06.el8?arch=noarch&upstream=crypto-policies-20230731-1.git3177e06.el8.src.rpm&distro=rhel-8.9&package-id=dc2a3f139d7310d5","type":"library","publisher":"Red Hat, Inc.","name":"crypto-policies","version":"20230731-1.git3177e06.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:crypto-policies:crypto-policies:20230731-1.git3177e06.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/crypto-policies@20230731-1.git3177e06.el8?arch=noarch&upstream=crypto-policies-20230731-1.git3177e06.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto-policies:crypto_policies:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto_policies:crypto-policies:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto_policies:crypto_policies:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:crypto-policies:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:crypto_policies:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:crypto-policies:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:crypto_policies:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.git3177e06.el8"},{"name":"syft:metadata:size","value":"73739"},{"name":"syft:metadata:sourceRpm","value":"crypto-policies-20230731-1.git3177e06.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/crypto-policies-scripts@20230731-1.git3177e06.el8?arch=noarch&upstream=crypto-policies-20230731-1.git3177e06.el8.src.rpm&distro=rhel-8.9&package-id=528f5cd6cb79e961","type":"library","publisher":"Red Hat, Inc.","name":"crypto-policies-scripts","version":"20230731-1.git3177e06.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:crypto-policies-scripts:crypto-policies-scripts:20230731-1.git3177e06.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/crypto-policies-scripts@20230731-1.git3177e06.el8?arch=noarch&upstream=crypto-policies-20230731-1.git3177e06.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto-policies-scripts:crypto_policies_scripts:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto_policies_scripts:crypto-policies-scripts:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto_policies_scripts:crypto_policies_scripts:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto-policies:crypto-policies-scripts:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto-policies:crypto_policies_scripts:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto_policies:crypto-policies-scripts:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto_policies:crypto_policies_scripts:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:crypto-policies-scripts:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:crypto:crypto_policies_scripts:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:crypto-policies-scripts:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:crypto_policies_scripts:20230731-1.git3177e06.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.git3177e06.el8"},{"name":"syft:metadata:size","value":"190780"},{"name":"syft:metadata:sourceRpm","value":"crypto-policies-20230731-1.git3177e06.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/cryptsetup-libs@2.3.7-7.el8?arch=aarch64&upstream=cryptsetup-2.3.7-7.el8.src.rpm&distro=rhel-8.9&package-id=85a2519967af4ec2","type":"library","publisher":"Red Hat, Inc.","name":"cryptsetup-libs","version":"2.3.7-7.el8","licenses":[{"license":{"name":"GPLv2+ and LGPLv2+"}}],"cpe":"cpe:2.3:a:cryptsetup-libs:cryptsetup-libs:2.3.7-7.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/cryptsetup-libs@2.3.7-7.el8?arch=aarch64&upstream=cryptsetup-2.3.7-7.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:cryptsetup-libs:cryptsetup_libs:2.3.7-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cryptsetup_libs:cryptsetup-libs:2.3.7-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cryptsetup_libs:cryptsetup_libs:2.3.7-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cryptsetup:cryptsetup-libs:2.3.7-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cryptsetup:cryptsetup_libs:2.3.7-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:cryptsetup-libs:2.3.7-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:cryptsetup_libs:2.3.7-7.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"7.el8"},{"name":"syft:metadata:size","value":"2162135"},{"name":"syft:metadata:sourceRpm","value":"cryptsetup-2.3.7-7.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/curl@7.61.1-33.el8_9.5?arch=aarch64&upstream=curl-7.61.1-33.el8_9.5.src.rpm&distro=rhel-8.9&package-id=0bdeb7d9d1f8db1d","type":"library","publisher":"Red Hat, Inc.","name":"curl","version":"7.61.1-33.el8_9.5","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:redhat:curl:7.61.1-33.el8_9.5:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/curl@7.61.1-33.el8_9.5?arch=aarch64&upstream=curl-7.61.1-33.el8_9.5.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:curl:curl:7.61.1-33.el8_9.5:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"33.el8_9.5"},{"name":"syft:metadata:size","value":"733597"},{"name":"syft:metadata:sourceRpm","value":"curl-7.61.1-33.el8_9.5.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/cyrus-sasl-lib@2.1.27-6.el8_5?arch=aarch64&upstream=cyrus-sasl-2.1.27-6.el8_5.src.rpm&distro=rhel-8.9&package-id=8ffc84dad657cde3","type":"library","publisher":"Red Hat, Inc.","name":"cyrus-sasl-lib","version":"2.1.27-6.el8_5","licenses":[{"license":{"name":"BSD with advertising"}}],"cpe":"cpe:2.3:a:cyrus-sasl-lib:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/cyrus-sasl-lib@2.1.27-6.el8_5?arch=aarch64&upstream=cyrus-sasl-2.1.27-6.el8_5.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:cyrus-sasl-lib:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cyrus_sasl_lib:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cyrus_sasl_lib:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cyrus-sasl:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cyrus-sasl:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cyrus_sasl:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cyrus_sasl:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cyrus:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cyrus:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"6.el8_5"},{"name":"syft:metadata:size","value":"929522"},{"name":"syft:metadata:sourceRpm","value":"cyrus-sasl-2.1.27-6.el8_5.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/dbus@1.12.8-26.el8?arch=aarch64&epoch=1&upstream=dbus-1.12.8-26.el8.src.rpm&distro=rhel-8.9&package-id=b1c328658ad71d39","type":"library","publisher":"Red Hat, Inc.","name":"dbus","version":"1:1.12.8-26.el8","licenses":[{"license":{"name":"(GPLv2+ or AFL) and GPLv2+"}}],"cpe":"cpe:2.3:a:redhat:dbus:1\\:1.12.8-26.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/dbus@1.12.8-26.el8?arch=aarch64&epoch=1&upstream=dbus-1.12.8-26.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:dbus:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"1"},{"name":"syft:metadata:release","value":"26.el8"},{"name":"syft:metadata:size","value":"0"},{"name":"syft:metadata:sourceRpm","value":"dbus-1.12.8-26.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/dbus-common@1.12.8-26.el8?arch=noarch&epoch=1&upstream=dbus-1.12.8-26.el8.src.rpm&distro=rhel-8.9&package-id=618af5ac447266f7","type":"library","publisher":"Red Hat, Inc.","name":"dbus-common","version":"1:1.12.8-26.el8","licenses":[{"license":{"name":"(GPLv2+ or AFL) and GPLv2+"}}],"cpe":"cpe:2.3:a:dbus-common:dbus-common:1\\:1.12.8-26.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/dbus-common@1.12.8-26.el8?arch=noarch&epoch=1&upstream=dbus-1.12.8-26.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus-common:dbus_common:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus_common:dbus-common:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus_common:dbus_common:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dbus-common:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dbus_common:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:dbus-common:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:dbus_common:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"1"},{"name":"syft:metadata:release","value":"26.el8"},{"name":"syft:metadata:size","value":"11044"},{"name":"syft:metadata:sourceRpm","value":"dbus-1.12.8-26.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/dbus-daemon@1.12.8-26.el8?arch=aarch64&epoch=1&upstream=dbus-1.12.8-26.el8.src.rpm&distro=rhel-8.9&package-id=728594ab0e855606","type":"library","publisher":"Red Hat, Inc.","name":"dbus-daemon","version":"1:1.12.8-26.el8","licenses":[{"license":{"name":"(GPLv2+ or AFL) and GPLv2+"}}],"cpe":"cpe:2.3:a:dbus-daemon:dbus-daemon:1\\:1.12.8-26.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/dbus-daemon@1.12.8-26.el8?arch=aarch64&epoch=1&upstream=dbus-1.12.8-26.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus-daemon:dbus_daemon:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus_daemon:dbus-daemon:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus_daemon:dbus_daemon:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dbus-daemon:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dbus_daemon:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:dbus-daemon:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:dbus_daemon:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"1"},{"name":"syft:metadata:release","value":"26.el8"},{"name":"syft:metadata:size","value":"746073"},{"name":"syft:metadata:sourceRpm","value":"dbus-1.12.8-26.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/dbus-glib@0.110-2.el8?arch=aarch64&upstream=dbus-glib-0.110-2.el8.src.rpm&distro=rhel-8.9&package-id=7fd0eeeeca8fbae6","type":"library","publisher":"Red Hat, Inc.","name":"dbus-glib","version":"0.110-2.el8","licenses":[{"license":{"name":"AFL and GPLv2+"}}],"cpe":"cpe:2.3:a:dbus-glib:dbus-glib:0.110-2.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/dbus-glib@0.110-2.el8?arch=aarch64&upstream=dbus-glib-0.110-2.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus-glib:dbus_glib:0.110-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus_glib:dbus-glib:0.110-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus_glib:dbus_glib:0.110-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dbus-glib:0.110-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dbus_glib:0.110-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:dbus-glib:0.110-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:dbus_glib:0.110-2.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"2.el8"},{"name":"syft:metadata:size","value":"400606"},{"name":"syft:metadata:sourceRpm","value":"dbus-glib-0.110-2.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/dbus-libs@1.12.8-26.el8?arch=aarch64&epoch=1&upstream=dbus-1.12.8-26.el8.src.rpm&distro=rhel-8.9&package-id=f731b563b9199874","type":"library","publisher":"Red Hat, Inc.","name":"dbus-libs","version":"1:1.12.8-26.el8","licenses":[{"license":{"name":"(GPLv2+ or AFL) and GPLv2+"}}],"cpe":"cpe:2.3:a:dbus-libs:dbus-libs:1\\:1.12.8-26.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/dbus-libs@1.12.8-26.el8?arch=aarch64&epoch=1&upstream=dbus-1.12.8-26.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus-libs:dbus_libs:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus_libs:dbus-libs:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus_libs:dbus_libs:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dbus-libs:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dbus_libs:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:dbus-libs:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:dbus_libs:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"1"},{"name":"syft:metadata:release","value":"26.el8"},{"name":"syft:metadata:size","value":"433680"},{"name":"syft:metadata:sourceRpm","value":"dbus-1.12.8-26.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/dbus-python@1.2.4?package-id=44b95efe5f003bdd","type":"library","name":"dbus-python","version":"1.2.4","licenses":[{"license":{"name":"Expat (MIT/X11)"}}],"cpe":"cpe:2.3:a:python-dbus-python:python-dbus-python:1.2.4:*:*:*:*:*:*:*","purl":"pkg:pypi/dbus-python@1.2.4","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-dbus-python:python_dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_dbus_python:python-dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_dbus_python:python_dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus-python:python-dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus-python:python_dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus_python:python-dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus_python:python_dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-dbus-python:dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-dbus-python:dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-dbus:python-dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-dbus:python_dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_dbus:python-dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_dbus:python_dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_dbus_python:dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_dbus_python:dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus-python:dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus-python:dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:python-dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:python_dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus_python:dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus_python:dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-dbus:dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-dbus:dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_dbus:dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_dbus:dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:dbus-python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:dbus_python:1.2.4:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib64/python3.6/site-packages/dbus_python-1.2.4-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib64/python3.6/site-packages/dbus_python-1.2.4-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/dbus-tools@1.12.8-26.el8?arch=aarch64&epoch=1&upstream=dbus-1.12.8-26.el8.src.rpm&distro=rhel-8.9&package-id=20b92a91a2876997","type":"library","publisher":"Red Hat, Inc.","name":"dbus-tools","version":"1:1.12.8-26.el8","licenses":[{"license":{"name":"(GPLv2+ or AFL) and GPLv2+"}}],"cpe":"cpe:2.3:a:dbus-tools:dbus-tools:1\\:1.12.8-26.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/dbus-tools@1.12.8-26.el8?arch=aarch64&epoch=1&upstream=dbus-1.12.8-26.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus-tools:dbus_tools:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus_tools:dbus-tools:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus_tools:dbus_tools:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dbus-tools:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dbus_tools:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:dbus-tools:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dbus:dbus_tools:1\\:1.12.8-26.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"1"},{"name":"syft:metadata:release","value":"26.el8"},{"name":"syft:metadata:size","value":"316617"},{"name":"syft:metadata:sourceRpm","value":"dbus-1.12.8-26.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/decorator@4.2.1?package-id=3a7ef3a5cd12087d","type":"library","author":"Michele Simionato ","name":"decorator","version":"4.2.1","licenses":[{"license":{"name":"new BSD License"}}],"cpe":"cpe:2.3:a:python:decorator:4.2.1:*:*:*:*:*:*:*","purl":"pkg:pypi/decorator@4.2.1","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/dejavu-fonts-common@2.35-7.el8?arch=noarch&upstream=dejavu-fonts-2.35-7.el8.src.rpm&distro=rhel-8.9&package-id=617b2d47fc8defc2","type":"library","publisher":"Red Hat, Inc.","name":"dejavu-fonts-common","version":"2.35-7.el8","licenses":[{"license":{"name":"Bitstream Vera and Public Domain"}}],"cpe":"cpe:2.3:a:dejavu-fonts-common:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/dejavu-fonts-common@2.35-7.el8?arch=noarch&upstream=dejavu-fonts-2.35-7.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu-fonts-common:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu_fonts_common:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu_fonts_common:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu-fonts:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu-fonts:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu_fonts:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu_fonts:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"7.el8"},{"name":"syft:metadata:size","value":"145939"},{"name":"syft:metadata:sourceRpm","value":"dejavu-fonts-2.35-7.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/dejavu-sans-fonts@2.35-7.el8?arch=noarch&upstream=dejavu-fonts-2.35-7.el8.src.rpm&distro=rhel-8.9&package-id=643e501d2c642534","type":"library","publisher":"Red Hat, Inc.","name":"dejavu-sans-fonts","version":"2.35-7.el8","licenses":[{"license":{"name":"Bitstream Vera and Public Domain"}}],"cpe":"cpe:2.3:a:dejavu-sans-fonts:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/dejavu-sans-fonts@2.35-7.el8?arch=noarch&upstream=dejavu-fonts-2.35-7.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu-sans-fonts:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu_sans_fonts:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu_sans_fonts:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu-sans:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu-sans:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu_sans:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu_sans:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dejavu:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"7.el8"},{"name":"syft:metadata:size","value":"5644754"},{"name":"syft:metadata:sourceRpm","value":"dejavu-fonts-2.35-7.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/device-mapper@1.02.181-13.el8_9?arch=aarch64&epoch=8&upstream=lvm2-2.03.14-13.el8_9.src.rpm&distro=rhel-8.9&package-id=a961fb177f779d1c","type":"library","publisher":"Red Hat, Inc.","name":"device-mapper","version":"8:1.02.181-13.el8_9","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:device-mapper:device-mapper:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/device-mapper@1.02.181-13.el8_9?arch=aarch64&epoch=8&upstream=lvm2-2.03.14-13.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:device-mapper:device_mapper:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:device_mapper:device-mapper:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:device_mapper:device_mapper:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:device:device-mapper:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:device:device_mapper:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:device-mapper:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:device_mapper:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"8"},{"name":"syft:metadata:release","value":"13.el8_9"},{"name":"syft:metadata:size","value":"446646"},{"name":"syft:metadata:sourceRpm","value":"lvm2-2.03.14-13.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/device-mapper-libs@1.02.181-13.el8_9?arch=aarch64&epoch=8&upstream=lvm2-2.03.14-13.el8_9.src.rpm&distro=rhel-8.9&package-id=be22d5478a06b244","type":"library","publisher":"Red Hat, Inc.","name":"device-mapper-libs","version":"8:1.02.181-13.el8_9","licenses":[{"license":{"name":"LGPLv2"}}],"cpe":"cpe:2.3:a:device-mapper-libs:device-mapper-libs:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/device-mapper-libs@1.02.181-13.el8_9?arch=aarch64&epoch=8&upstream=lvm2-2.03.14-13.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:device-mapper-libs:device_mapper_libs:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:device_mapper_libs:device-mapper-libs:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:device_mapper_libs:device_mapper_libs:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:device-mapper:device-mapper-libs:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:device-mapper:device_mapper_libs:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:device_mapper:device-mapper-libs:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:device_mapper:device_mapper_libs:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:device:device-mapper-libs:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:device:device_mapper_libs:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:device-mapper-libs:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:device_mapper_libs:8\\:1.02.181-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"8"},{"name":"syft:metadata:release","value":"13.el8_9"},{"name":"syft:metadata:size","value":"456455"},{"name":"syft:metadata:sourceRpm","value":"lvm2-2.03.14-13.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/dmidecode@3.3-5.el8?arch=aarch64&epoch=1&upstream=dmidecode-3.3-5.el8.src.rpm&distro=rhel-8.9&package-id=6eadf192df610a9e","type":"library","publisher":"Red Hat, Inc.","name":"dmidecode","version":"1:3.3-5.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:dmidecode:dmidecode:1\\:3.3-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/dmidecode@3.3-5.el8?arch=aarch64&epoch=1&upstream=dmidecode-3.3-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dmidecode:1\\:3.3-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"1"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"172542"},{"name":"syft:metadata:sourceRpm","value":"dmidecode-3.3-5.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/dnf@4.7.0-19.el8?arch=noarch&upstream=dnf-4.7.0-19.el8.src.rpm&distro=rhel-8.9&package-id=18bcbe0c976151a9","type":"library","publisher":"Red Hat, Inc.","name":"dnf","version":"4.7.0-19.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:redhat:dnf:4.7.0-19.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/dnf@4.7.0-19.el8?arch=noarch&upstream=dnf-4.7.0-19.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf:dnf:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"19.el8"},{"name":"syft:metadata:size","value":"2086188"},{"name":"syft:metadata:sourceRpm","value":"dnf-4.7.0-19.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/dnf-data@4.7.0-19.el8?arch=noarch&upstream=dnf-4.7.0-19.el8.src.rpm&distro=rhel-8.9&package-id=31353abbc0a6ce84","type":"library","publisher":"Red Hat, Inc.","name":"dnf-data","version":"4.7.0-19.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:dnf-data:dnf-data:4.7.0-19.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/dnf-data@4.7.0-19.el8?arch=noarch&upstream=dnf-4.7.0-19.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf-data:dnf_data:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf_data:dnf-data:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf_data:dnf_data:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dnf-data:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dnf_data:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf:dnf-data:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf:dnf_data:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"19.el8"},{"name":"syft:metadata:size","value":"38717"},{"name":"syft:metadata:sourceRpm","value":"dnf-4.7.0-19.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/dnf-plugin-subscription-manager@1.28.40-1.el8_9?arch=aarch64&upstream=subscription-manager-1.28.40-1.el8_9.src.rpm&distro=rhel-8.9&package-id=65eb2f1b449ebf70","type":"library","publisher":"Red Hat, Inc.","name":"dnf-plugin-subscription-manager","version":"1.28.40-1.el8_9","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:dnf-plugin-subscription-manager:dnf-plugin-subscription-manager:1.28.40-1.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/dnf-plugin-subscription-manager@1.28.40-1.el8_9?arch=aarch64&upstream=subscription-manager-1.28.40-1.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf-plugin-subscription-manager:dnf_plugin_subscription_manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf_plugin_subscription_manager:dnf-plugin-subscription-manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf_plugin_subscription_manager:dnf_plugin_subscription_manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf-plugin-subscription:dnf-plugin-subscription-manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf-plugin-subscription:dnf_plugin_subscription_manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf_plugin_subscription:dnf-plugin-subscription-manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf_plugin_subscription:dnf_plugin_subscription_manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf-plugin:dnf-plugin-subscription-manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf-plugin:dnf_plugin_subscription_manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf_plugin:dnf-plugin-subscription-manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf_plugin:dnf_plugin_subscription_manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dnf-plugin-subscription-manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:dnf_plugin_subscription_manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf:dnf-plugin-subscription-manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dnf:dnf_plugin_subscription_manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8_9"},{"name":"syft:metadata:size","value":"102558"},{"name":"syft:metadata:sourceRpm","value":"subscription-manager-1.28.40-1.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/elfutils-default-yama-scope@0.189-3.el8?arch=noarch&upstream=elfutils-0.189-3.el8.src.rpm&distro=rhel-8.9&package-id=fef6bd726d709a1b","type":"library","publisher":"Red Hat, Inc.","name":"elfutils-default-yama-scope","version":"0.189-3.el8","licenses":[{"license":{"name":"GPLv2+ or LGPLv3+"}}],"cpe":"cpe:2.3:a:elfutils-default-yama-scope:elfutils-default-yama-scope:0.189-3.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/elfutils-default-yama-scope@0.189-3.el8?arch=noarch&upstream=elfutils-0.189-3.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils-default-yama-scope:elfutils_default_yama_scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils_default_yama_scope:elfutils-default-yama-scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils_default_yama_scope:elfutils_default_yama_scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils-default-yama:elfutils-default-yama-scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils-default-yama:elfutils_default_yama_scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils_default_yama:elfutils-default-yama-scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils_default_yama:elfutils_default_yama_scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils-default:elfutils-default-yama-scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils-default:elfutils_default_yama_scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils_default:elfutils-default-yama-scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils_default:elfutils_default_yama_scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils:elfutils-default-yama-scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils:elfutils_default_yama_scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:elfutils-default-yama-scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:elfutils_default_yama_scope:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8"},{"name":"syft:metadata:size","value":"1810"},{"name":"syft:metadata:sourceRpm","value":"elfutils-0.189-3.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/elfutils-libelf@0.189-3.el8?arch=aarch64&upstream=elfutils-0.189-3.el8.src.rpm&distro=rhel-8.9&package-id=445addfdbebe7072","type":"library","publisher":"Red Hat, Inc.","name":"elfutils-libelf","version":"0.189-3.el8","licenses":[{"license":{"name":"GPLv2+ or LGPLv3+"}}],"cpe":"cpe:2.3:a:elfutils-libelf:elfutils-libelf:0.189-3.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/elfutils-libelf@0.189-3.el8?arch=aarch64&upstream=elfutils-0.189-3.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils-libelf:elfutils_libelf:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils_libelf:elfutils-libelf:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils_libelf:elfutils_libelf:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils:elfutils-libelf:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils:elfutils_libelf:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:elfutils-libelf:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:elfutils_libelf:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8"},{"name":"syft:metadata:size","value":"1052413"},{"name":"syft:metadata:sourceRpm","value":"elfutils-0.189-3.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/elfutils-libs@0.189-3.el8?arch=aarch64&upstream=elfutils-0.189-3.el8.src.rpm&distro=rhel-8.9&package-id=6cb7dd75f8d78072","type":"library","publisher":"Red Hat, Inc.","name":"elfutils-libs","version":"0.189-3.el8","licenses":[{"license":{"name":"GPLv2+ or LGPLv3+"}}],"cpe":"cpe:2.3:a:elfutils-libs:elfutils-libs:0.189-3.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/elfutils-libs@0.189-3.el8?arch=aarch64&upstream=elfutils-0.189-3.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils-libs:elfutils_libs:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils_libs:elfutils-libs:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils_libs:elfutils_libs:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils:elfutils-libs:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:elfutils:elfutils_libs:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:elfutils-libs:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:elfutils_libs:0.189-3.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8"},{"name":"syft:metadata:size","value":"766879"},{"name":"syft:metadata:sourceRpm","value":"elfutils-0.189-3.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/ethtool@0.14?package-id=eef7930a6b04259b","type":"library","author":"Harald Hoyer, Arnaldo Carvalho de Melo, David Sommerseth ","name":"ethtool","version":"0.14","licenses":[{"license":{"id":"GPL-2.0-only"}}],"cpe":"cpe:2.3:a:harald_hoyer\\,_arnaldo_carvalho_de_melo\\,_david_sommerseth_project:python-ethtool:0.14:*:*:*:*:*:*:*","purl":"pkg:pypi/ethtool@0.14","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:harald_hoyer\\,_arnaldo_carvalho_de_melo\\,_david_sommerseth_project:python_ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:harald_hoyer\\,_arnaldo_carvalho_de_melo\\,_david_sommersethproject:python-ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:harald_hoyer\\,_arnaldo_carvalho_de_melo\\,_david_sommersethproject:python_ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:harald_hoyer\\,_arnaldo_carvalho_de_melo\\,_david_sommerseth_project:ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:harald_hoyer\\,_arnaldo_carvalho_de_melo\\,_david_sommerseth:python-ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:harald_hoyer\\,_arnaldo_carvalho_de_melo\\,_david_sommerseth:python_ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:harald_hoyer\\,_arnaldo_carvalho_de_melo\\,_david_sommersethproject:ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:harald_hoyer\\,_arnaldo_carvalho_de_melo\\,_david_sommerseth:ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:davids_project:python-ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:davids_project:python_ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-ethtool:python-ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-ethtool:python_ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_ethtool:python-ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_ethtool:python_ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:davidsproject:python-ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:davidsproject:python_ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:davids_project:ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ethtool:python-ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ethtool:python_ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-ethtool:ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_ethtool:ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:davids:python-ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:davids:python_ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:davidsproject:ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ethtool:ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:davids:ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:ethtool:0.14:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib64/python3.6/site-packages/ethtool-0.14-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib64/python3.6/site-packages/ethtool-0.14-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/expat@2.2.5-11.el8_9.1?arch=aarch64&upstream=expat-2.2.5-11.el8_9.1.src.rpm&distro=rhel-8.9&package-id=5cf0351acba97c1f","type":"library","publisher":"Red Hat, Inc.","name":"expat","version":"2.2.5-11.el8_9.1","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:redhat:expat:2.2.5-11.el8_9.1:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/expat@2.2.5-11.el8_9.1?arch=aarch64&upstream=expat-2.2.5-11.el8_9.1.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:expat:expat:2.2.5-11.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"11.el8_9.1"},{"name":"syft:metadata:size","value":"306932"},{"name":"syft:metadata:sourceRpm","value":"expat-2.2.5-11.el8_9.1.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/file-libs@5.33-25.el8?arch=aarch64&upstream=file-5.33-25.el8.src.rpm&distro=rhel-8.9&package-id=bf65700b135af2dd","type":"library","publisher":"Red Hat, Inc.","name":"file-libs","version":"5.33-25.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:file-libs:file-libs:5.33-25.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/file-libs@5.33-25.el8?arch=aarch64&upstream=file-5.33-25.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:file-libs:file_libs:5.33-25.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:file_libs:file-libs:5.33-25.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:file_libs:file_libs:5.33-25.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:file-libs:5.33-25.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:file_libs:5.33-25.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:file:file-libs:5.33-25.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:file:file_libs:5.33-25.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"25.el8"},{"name":"syft:metadata:size","value":"6427162"},{"name":"syft:metadata:sourceRpm","value":"file-5.33-25.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/filesystem@3.8-6.el8?arch=aarch64&upstream=filesystem-3.8-6.el8.src.rpm&distro=rhel-8.9&package-id=944355551e26f40f","type":"library","publisher":"Red Hat, Inc.","name":"filesystem","version":"3.8-6.el8","licenses":[{"license":{"name":"Public Domain"}}],"cpe":"cpe:2.3:a:filesystem:filesystem:3.8-6.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/filesystem@3.8-6.el8?arch=aarch64&upstream=filesystem-3.8-6.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:filesystem:3.8-6.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"6.el8"},{"name":"syft:metadata:size","value":"0"},{"name":"syft:metadata:sourceRpm","value":"filesystem-3.8-6.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/findutils@4.6.0-21.el8?arch=aarch64&epoch=1&upstream=findutils-4.6.0-21.el8.src.rpm&distro=rhel-8.9&package-id=8736be07e1e7a3df","type":"library","publisher":"Red Hat, Inc.","name":"findutils","version":"1:4.6.0-21.el8","licenses":[{"license":{"name":"GPLv3+"}}],"cpe":"cpe:2.3:a:findutils:findutils:1\\:4.6.0-21.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/findutils@4.6.0-21.el8?arch=aarch64&epoch=1&upstream=findutils-4.6.0-21.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:findutils:1\\:4.6.0-21.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"1"},{"name":"syft:metadata:release","value":"21.el8"},{"name":"syft:metadata:size","value":"1809345"},{"name":"syft:metadata:sourceRpm","value":"findutils-4.6.0-21.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/fontconfig@2.13.1-4.el8?arch=aarch64&upstream=fontconfig-2.13.1-4.el8.src.rpm&distro=rhel-8.9&package-id=1d1670ed4f5246f3","type":"library","publisher":"Red Hat, Inc.","name":"fontconfig","version":"2.13.1-4.el8","licenses":[{"license":{"name":"MIT and Public Domain and UCD"}}],"cpe":"cpe:2.3:a:fontconfig:fontconfig:2.13.1-4.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/fontconfig@2.13.1-4.el8?arch=aarch64&upstream=fontconfig-2.13.1-4.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:fontconfig:2.13.1-4.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"4.el8"},{"name":"syft:metadata:size","value":"1251697"},{"name":"syft:metadata:sourceRpm","value":"fontconfig-2.13.1-4.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/fontpackages-filesystem@1.44-22.el8?arch=noarch&upstream=fontpackages-1.44-22.el8.src.rpm&distro=rhel-8.9&package-id=315016418283d1df","type":"library","publisher":"Red Hat, Inc.","name":"fontpackages-filesystem","version":"1.44-22.el8","licenses":[{"license":{"name":"Public Domain"}}],"cpe":"cpe:2.3:a:fontpackages-filesystem:fontpackages-filesystem:1.44-22.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/fontpackages-filesystem@1.44-22.el8?arch=noarch&upstream=fontpackages-1.44-22.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:fontpackages-filesystem:fontpackages_filesystem:1.44-22.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:fontpackages_filesystem:fontpackages-filesystem:1.44-22.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:fontpackages_filesystem:fontpackages_filesystem:1.44-22.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:fontpackages:fontpackages-filesystem:1.44-22.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:fontpackages:fontpackages_filesystem:1.44-22.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:fontpackages-filesystem:1.44-22.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:fontpackages_filesystem:1.44-22.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"22.el8"},{"name":"syft:metadata:size","value":"0"},{"name":"syft:metadata:sourceRpm","value":"fontpackages-1.44-22.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/freetype@2.9.1-9.el8?arch=aarch64&upstream=freetype-2.9.1-9.el8.src.rpm&distro=rhel-8.9&package-id=23a297d5db44a3be","type":"library","publisher":"Red Hat, Inc.","name":"freetype","version":"2.9.1-9.el8","licenses":[{"license":{"name":"(FTL or GPLv2+) and BSD and MIT and Public Domain and zlib with acknowledgement"}}],"cpe":"cpe:2.3:a:freetype:freetype:2.9.1-9.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/freetype@2.9.1-9.el8?arch=aarch64&upstream=freetype-2.9.1-9.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:freetype:2.9.1-9.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"9.el8"},{"name":"syft:metadata:size","value":"767127"},{"name":"syft:metadata:sourceRpm","value":"freetype-2.9.1-9.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/gawk@4.2.1-4.el8?arch=aarch64&upstream=gawk-4.2.1-4.el8.src.rpm&distro=rhel-8.9&package-id=89833a2aab58ff96","type":"library","publisher":"Red Hat, Inc.","name":"gawk","version":"4.2.1-4.el8","licenses":[{"license":{"name":"GPLv3+ and GPLv2+ and LGPLv2+ and BSD"}}],"cpe":"cpe:2.3:a:redhat:gawk:4.2.1-4.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/gawk@4.2.1-4.el8?arch=aarch64&upstream=gawk-4.2.1-4.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:gawk:gawk:4.2.1-4.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"4.el8"},{"name":"syft:metadata:size","value":"3532326"},{"name":"syft:metadata:sourceRpm","value":"gawk-4.2.1-4.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/gdb-gdbserver@8.2-20.el8?arch=aarch64&upstream=gdb-8.2-20.el8.src.rpm&distro=rhel-8.9&package-id=ea51a34db250a960","type":"library","publisher":"Red Hat, Inc.","name":"gdb-gdbserver","version":"8.2-20.el8","licenses":[{"license":{"name":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ and GPLv2+ with exceptions and GPL+ and LGPLv2+ and LGPLv3+ and BSD and Public Domain and GFDL"}}],"cpe":"cpe:2.3:a:gdb-gdbserver:gdb-gdbserver:8.2-20.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/gdb-gdbserver@8.2-20.el8?arch=aarch64&upstream=gdb-8.2-20.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:gdb-gdbserver:gdb_gdbserver:8.2-20.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gdb_gdbserver:gdb-gdbserver:8.2-20.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gdb_gdbserver:gdb_gdbserver:8.2-20.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:gdb-gdbserver:8.2-20.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:gdb_gdbserver:8.2-20.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gdb:gdb-gdbserver:8.2-20.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gdb:gdb_gdbserver:8.2-20.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"20.el8"},{"name":"syft:metadata:size","value":"691511"},{"name":"syft:metadata:sourceRpm","value":"gdb-8.2-20.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/gdbm@1.18-2.el8?arch=aarch64&epoch=1&upstream=gdbm-1.18-2.el8.src.rpm&distro=rhel-8.9&package-id=3f4b105af5ae9994","type":"library","publisher":"Red Hat, Inc.","name":"gdbm","version":"1:1.18-2.el8","licenses":[{"license":{"name":"GPLv3+"}}],"cpe":"cpe:2.3:a:redhat:gdbm:1\\:1.18-2.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/gdbm@1.18-2.el8?arch=aarch64&epoch=1&upstream=gdbm-1.18-2.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:gdbm:gdbm:1\\:1.18-2.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"1"},{"name":"syft:metadata:release","value":"2.el8"},{"name":"syft:metadata:size","value":"515097"},{"name":"syft:metadata:sourceRpm","value":"gdbm-1.18-2.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/gdbm-libs@1.18-2.el8?arch=aarch64&epoch=1&upstream=gdbm-1.18-2.el8.src.rpm&distro=rhel-8.9&package-id=2129f0f9f8566034","type":"library","publisher":"Red Hat, Inc.","name":"gdbm-libs","version":"1:1.18-2.el8","licenses":[{"license":{"name":"GPLv3+"}}],"cpe":"cpe:2.3:a:gdbm-libs:gdbm-libs:1\\:1.18-2.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/gdbm-libs@1.18-2.el8?arch=aarch64&epoch=1&upstream=gdbm-1.18-2.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:gdbm-libs:gdbm_libs:1\\:1.18-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gdbm_libs:gdbm-libs:1\\:1.18-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gdbm_libs:gdbm_libs:1\\:1.18-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:gdbm-libs:1\\:1.18-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:gdbm_libs:1\\:1.18-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gdbm:gdbm-libs:1\\:1.18-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gdbm:gdbm_libs:1\\:1.18-2.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"1"},{"name":"syft:metadata:release","value":"2.el8"},{"name":"syft:metadata:size","value":"175544"},{"name":"syft:metadata:sourceRpm","value":"gdbm-1.18-2.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/glib2@2.56.4-161.el8?arch=aarch64&upstream=glib2-2.56.4-161.el8.src.rpm&distro=rhel-8.9&package-id=74be6f28e2187258","type":"library","publisher":"Red Hat, Inc.","name":"glib2","version":"2.56.4-161.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:redhat:glib2:2.56.4-161.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/glib2@2.56.4-161.el8?arch=aarch64&upstream=glib2-2.56.4-161.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:glib2:glib2:2.56.4-161.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"161.el8"},{"name":"syft:metadata:size","value":"12819304"},{"name":"syft:metadata:sourceRpm","value":"glib2-2.56.4-161.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/glibc@2.28-236.el8_9.13?arch=aarch64&upstream=glibc-2.28-236.el8_9.13.src.rpm&distro=rhel-8.9&package-id=3c4cebedf9900b10","type":"library","publisher":"Red Hat, Inc.","name":"glibc","version":"2.28-236.el8_9.13","licenses":[{"license":{"name":"LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ and GPLv2+ with exceptions and BSD and Inner-Net and ISC and Public Domain and GFDL"}}],"cpe":"cpe:2.3:a:redhat:glibc:2.28-236.el8_9.13:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/glibc@2.28-236.el8_9.13?arch=aarch64&upstream=glibc-2.28-236.el8_9.13.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc:glibc:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"236.el8_9.13"},{"name":"syft:metadata:size","value":"6377872"},{"name":"syft:metadata:sourceRpm","value":"glibc-2.28-236.el8_9.13.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/glibc-common@2.28-236.el8_9.13?arch=aarch64&upstream=glibc-2.28-236.el8_9.13.src.rpm&distro=rhel-8.9&package-id=f253e18691da429e","type":"library","publisher":"Red Hat, Inc.","name":"glibc-common","version":"2.28-236.el8_9.13","licenses":[{"license":{"name":"LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ and GPLv2+ with exceptions and BSD and Inner-Net and ISC and Public Domain and GFDL"}}],"cpe":"cpe:2.3:a:glibc-common:glibc-common:2.28-236.el8_9.13:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/glibc-common@2.28-236.el8_9.13?arch=aarch64&upstream=glibc-2.28-236.el8_9.13.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc-common:glibc_common:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc_common:glibc-common:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc_common:glibc_common:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:glibc-common:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:glibc_common:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc:glibc-common:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc:glibc_common:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"236.el8_9.13"},{"name":"syft:metadata:size","value":"8308297"},{"name":"syft:metadata:sourceRpm","value":"glibc-2.28-236.el8_9.13.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/glibc-gconv-extra@2.28-236.el8_9.13?arch=aarch64&upstream=glibc-2.28-236.el8_9.13.src.rpm&distro=rhel-8.9&package-id=fd3630a2505d9ed4","type":"library","publisher":"Red Hat, Inc.","name":"glibc-gconv-extra","version":"2.28-236.el8_9.13","licenses":[{"license":{"name":"LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ and GPLv2+ with exceptions and BSD and Inner-Net and ISC and Public Domain and GFDL"}}],"cpe":"cpe:2.3:a:glibc-gconv-extra:glibc-gconv-extra:2.28-236.el8_9.13:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/glibc-gconv-extra@2.28-236.el8_9.13?arch=aarch64&upstream=glibc-2.28-236.el8_9.13.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc-gconv-extra:glibc_gconv_extra:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc_gconv_extra:glibc-gconv-extra:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc_gconv_extra:glibc_gconv_extra:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc-gconv:glibc-gconv-extra:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc-gconv:glibc_gconv_extra:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc_gconv:glibc-gconv-extra:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc_gconv:glibc_gconv_extra:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:glibc-gconv-extra:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:glibc_gconv_extra:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc:glibc-gconv-extra:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc:glibc_gconv_extra:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"236.el8_9.13"},{"name":"syft:metadata:size","value":"19444326"},{"name":"syft:metadata:sourceRpm","value":"glibc-2.28-236.el8_9.13.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/glibc-langpack-en@2.28-236.el8_9.13?arch=aarch64&upstream=glibc-2.28-236.el8_9.13.src.rpm&distro=rhel-8.9&package-id=ab59756c7ced11b8","type":"library","publisher":"Red Hat, Inc.","name":"glibc-langpack-en","version":"2.28-236.el8_9.13","licenses":[{"license":{"name":"LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ and GPLv2+ with exceptions and BSD and Inner-Net and ISC and Public Domain and GFDL"}}],"cpe":"cpe:2.3:a:glibc-langpack-en:glibc-langpack-en:2.28-236.el8_9.13:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/glibc-langpack-en@2.28-236.el8_9.13?arch=aarch64&upstream=glibc-2.28-236.el8_9.13.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc-langpack-en:glibc_langpack_en:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc_langpack_en:glibc-langpack-en:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc_langpack_en:glibc_langpack_en:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc-langpack:glibc-langpack-en:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc-langpack:glibc_langpack_en:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc_langpack:glibc-langpack-en:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc_langpack:glibc_langpack_en:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:glibc-langpack-en:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:glibc_langpack_en:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc:glibc-langpack-en:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc:glibc_langpack_en:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"236.el8_9.13"},{"name":"syft:metadata:size","value":"5947679"},{"name":"syft:metadata:sourceRpm","value":"glibc-2.28-236.el8_9.13.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/glibc-minimal-langpack@2.28-236.el8_9.13?arch=aarch64&upstream=glibc-2.28-236.el8_9.13.src.rpm&distro=rhel-8.9&package-id=79ea5152b4b2ab32","type":"library","publisher":"Red Hat, Inc.","name":"glibc-minimal-langpack","version":"2.28-236.el8_9.13","licenses":[{"license":{"name":"LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ and GPLv2+ with exceptions and BSD and Inner-Net and ISC and Public Domain and GFDL"}}],"cpe":"cpe:2.3:a:glibc-minimal-langpack:glibc-minimal-langpack:2.28-236.el8_9.13:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/glibc-minimal-langpack@2.28-236.el8_9.13?arch=aarch64&upstream=glibc-2.28-236.el8_9.13.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc-minimal-langpack:glibc_minimal_langpack:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc_minimal_langpack:glibc-minimal-langpack:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc_minimal_langpack:glibc_minimal_langpack:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc-minimal:glibc-minimal-langpack:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc-minimal:glibc_minimal_langpack:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc_minimal:glibc-minimal-langpack:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc_minimal:glibc_minimal_langpack:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:glibc-minimal-langpack:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:glibc_minimal_langpack:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc:glibc-minimal-langpack:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glibc:glibc_minimal_langpack:2.28-236.el8_9.13:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"236.el8_9.13"},{"name":"syft:metadata:size","value":"0"},{"name":"syft:metadata:sourceRpm","value":"glibc-2.28-236.el8_9.13.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/gmp@6.1.2-11.el8_8.1?arch=aarch64&epoch=1&upstream=gmp-6.1.2-11.el8_8.1.src.rpm&distro=rhel-8.9&package-id=5c0168eaaf755fb8","type":"library","publisher":"Red Hat, Inc.","name":"gmp","version":"1:6.1.2-11.el8_8.1","licenses":[{"license":{"name":"LGPLv3+ or GPLv2+"}}],"cpe":"cpe:2.3:a:redhat:gmp:1\\:6.1.2-11.el8_8.1:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/gmp@6.1.2-11.el8_8.1?arch=aarch64&epoch=1&upstream=gmp-6.1.2-11.el8_8.1.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:gmp:gmp:1\\:6.1.2-11.el8_8.1:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"1"},{"name":"syft:metadata:release","value":"11.el8_8.1"},{"name":"syft:metadata:size","value":"670900"},{"name":"syft:metadata:sourceRpm","value":"gmp-6.1.2-11.el8_8.1.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/gnupg2@2.2.20-3.el8_6?arch=aarch64&upstream=gnupg2-2.2.20-3.el8_6.src.rpm&distro=rhel-8.9&package-id=b4c912aa087782cb","type":"library","publisher":"Red Hat, Inc.","name":"gnupg2","version":"2.2.20-3.el8_6","licenses":[{"license":{"name":"GPLv3+"}}],"cpe":"cpe:2.3:a:gnupg2:gnupg2:2.2.20-3.el8_6:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/gnupg2@2.2.20-3.el8_6?arch=aarch64&upstream=gnupg2-2.2.20-3.el8_6.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:gnupg2:2.2.20-3.el8_6:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8_6"},{"name":"syft:metadata:size","value":"10535203"},{"name":"syft:metadata:sourceRpm","value":"gnupg2-2.2.20-3.el8_6.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/gnutls@3.6.16-8.el8_9.3?arch=aarch64&upstream=gnutls-3.6.16-8.el8_9.3.src.rpm&distro=rhel-8.9&package-id=44a28e63de5321a5","type":"library","publisher":"Red Hat, Inc.","name":"gnutls","version":"3.6.16-8.el8_9.3","licenses":[{"license":{"name":"GPLv3+ and LGPLv2+"}}],"cpe":"cpe:2.3:a:gnutls:gnutls:3.6.16-8.el8_9.3:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/gnutls@3.6.16-8.el8_9.3?arch=aarch64&upstream=gnutls-3.6.16-8.el8_9.3.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:gnutls:3.6.16-8.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"8.el8_9.3"},{"name":"syft:metadata:size","value":"3018455"},{"name":"syft:metadata:sourceRpm","value":"gnutls-3.6.16-8.el8_9.3.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/gobject-introspection@1.56.1-1.el8?arch=aarch64&upstream=gobject-introspection-1.56.1-1.el8.src.rpm&distro=rhel-8.9&package-id=e88454e0631ac2c7","type":"library","publisher":"Red Hat, Inc.","name":"gobject-introspection","version":"1.56.1-1.el8","licenses":[{"license":{"name":"GPLv2+, LGPLv2+, MIT"}}],"cpe":"cpe:2.3:a:gobject-introspection:gobject-introspection:1.56.1-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/gobject-introspection@1.56.1-1.el8?arch=aarch64&upstream=gobject-introspection-1.56.1-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:gobject-introspection:gobject_introspection:1.56.1-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gobject_introspection:gobject-introspection:1.56.1-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gobject_introspection:gobject_introspection:1.56.1-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gobject:gobject-introspection:1.56.1-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gobject:gobject_introspection:1.56.1-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:gobject-introspection:1.56.1-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:gobject_introspection:1.56.1-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"919707"},{"name":"syft:metadata:sourceRpm","value":"gobject-introspection-1.56.1-1.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/gpg@1.13.1?package-id=cff206e8863a92a0","type":"library","author":"The GnuPG hackers ","name":"gpg","version":"1.13.1","licenses":[{"license":{"name":"LGPL2.1+ (the library), GPL2+ (tests and examples)"}}],"cpe":"cpe:2.3:a:gnupg_hackers_project:python-gpg:1.13.1:*:*:*:*:*:*:*","purl":"pkg:pypi/gpg@1.13.1","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_hackers_project:python_gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_hackersproject:python-gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_hackersproject:python_gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_devel_project:python-gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_devel_project:python_gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_develproject:python-gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_develproject:python_gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_hackers_project:gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_hackers:python-gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_hackers:python_gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_hackersproject:gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_devel_project:gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg-devel:python-gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg-devel:python_gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_devel:python-gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_devel:python_gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_develproject:gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-gpg:python-gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-gpg:python_gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_gpg:python-gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_gpg:python_gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_hackers:gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg-devel:gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gnupg_devel:gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gpg:python-gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gpg:python_gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-gpg:gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_gpg:gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gpg:gpg:1.13.1:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib64/python3.6/site-packages/gpg-1.13.1-py3.6.egg-info"}]},{"bom-ref":"pkg:rpm/rhel/gpg-pubkey@d4082792-5b32db75?distro=rhel-8.9&package-id=26d519a4039bf231","type":"library","name":"gpg-pubkey","version":"d4082792-5b32db75","licenses":[{"license":{"name":"pubkey"}}],"cpe":"cpe:2.3:a:gpg-pubkey:gpg-pubkey:d4082792-5b32db75:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/gpg-pubkey@d4082792-5b32db75?distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:gpg-pubkey:gpg_pubkey:d4082792-5b32db75:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gpg_pubkey:gpg-pubkey:d4082792-5b32db75:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gpg_pubkey:gpg_pubkey:d4082792-5b32db75:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gpg:gpg-pubkey:d4082792-5b32db75:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gpg:gpg_pubkey:d4082792-5b32db75:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5b32db75"},{"name":"syft:metadata:size","value":"0"}]},{"bom-ref":"pkg:rpm/rhel/gpg-pubkey@fd431d51-4ae0493b?distro=rhel-8.9&package-id=301b53342b40547c","type":"library","name":"gpg-pubkey","version":"fd431d51-4ae0493b","licenses":[{"license":{"name":"pubkey"}}],"cpe":"cpe:2.3:a:gpg-pubkey:gpg-pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/gpg-pubkey@fd431d51-4ae0493b?distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:gpg-pubkey:gpg_pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gpg_pubkey:gpg-pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gpg_pubkey:gpg_pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gpg:gpg-pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:gpg:gpg_pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"4ae0493b"},{"name":"syft:metadata:size","value":"0"}]},{"bom-ref":"pkg:rpm/rhel/gpgme@1.13.1-11.el8?arch=aarch64&upstream=gpgme-1.13.1-11.el8.src.rpm&distro=rhel-8.9&package-id=be172d9d908eacd3","type":"library","publisher":"Red Hat, Inc.","name":"gpgme","version":"1.13.1-11.el8","licenses":[{"license":{"name":"LGPLv2+ and GPLv3+"}}],"cpe":"cpe:2.3:a:redhat:gpgme:1.13.1-11.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/gpgme@1.13.1-11.el8?arch=aarch64&upstream=gpgme-1.13.1-11.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:gpgme:gpgme:1.13.1-11.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"11.el8"},{"name":"syft:metadata:size","value":"1061512"},{"name":"syft:metadata:sourceRpm","value":"gpgme-1.13.1-11.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/grep@3.1-6.el8?arch=aarch64&upstream=grep-3.1-6.el8.src.rpm&distro=rhel-8.9&package-id=56079ef0dcb4a32a","type":"library","publisher":"Red Hat, Inc.","name":"grep","version":"3.1-6.el8","licenses":[{"license":{"name":"GPLv3+"}}],"cpe":"cpe:2.3:a:redhat:grep:3.1-6.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/grep@3.1-6.el8?arch=aarch64&upstream=grep-3.1-6.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:grep:grep:3.1-6.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"6.el8"},{"name":"syft:metadata:size","value":"856957"},{"name":"syft:metadata:sourceRpm","value":"grep-3.1-6.el8.src.rpm"}]},{"bom-ref":"pkg:maven/io.openliberty.guides/guide-getting-started@1.0-SNAPSHOT?package-id=8ea5fe4e432101c1","type":"library","group":"io.openliberty.guides","name":"guide-getting-started","version":"1.0-SNAPSHOT","cpe":"cpe:2.3:a:guide-getting-started:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:*","purl":"pkg:maven/io.openliberty.guides/guide-getting-started@1.0-SNAPSHOT","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a7077d2b1640281584ca656330d1487b20179b58"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:guide-getting-started:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:guide_getting_started:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:guide_getting_started:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:guide-getting:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:guide-getting:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:guide_getting:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:guide_getting:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:guides:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:guides:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:guide:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:guide:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/usr/servers/defaultServer/apps/guide-getting-started.war"},{"name":"syft:metadata:-:artifactID","value":"guide-getting-started"},{"name":"syft:metadata:-:groupID","value":"io.openliberty.guides"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/usr/servers/defaultServer/apps/guide-getting-started.war"}]},{"bom-ref":"pkg:rpm/rhel/gzip@1.9-13.el8_5?arch=aarch64&upstream=gzip-1.9-13.el8_5.src.rpm&distro=rhel-8.9&package-id=e7cb95288f07c3c4","type":"library","publisher":"Red Hat, Inc.","name":"gzip","version":"1.9-13.el8_5","licenses":[{"license":{"name":"GPLv3+ and GFDL"}}],"cpe":"cpe:2.3:a:redhat:gzip:1.9-13.el8_5:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/gzip@1.9-13.el8_5?arch=aarch64&upstream=gzip-1.9-13.el8_5.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:gzip:gzip:1.9-13.el8_5:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"13.el8_5"},{"name":"syft:metadata:size","value":"393570"},{"name":"syft:metadata:sourceRpm","value":"gzip-1.9-13.el8_5.src.rpm"}]},{"bom-ref":"pkg:pypi/idna@2.5?package-id=7ab3cab1d5e12b40","type":"library","author":"Kim Davies ","name":"idna","version":"2.5","licenses":[{"license":{"name":"BSD-like"}}],"cpe":"cpe:2.3:a:kim_davies_project:python-idna:2.5:*:*:*:*:*:*:*","purl":"pkg:pypi/idna@2.5","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:kim_davies_project:python_idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kim_daviesproject:python-idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kim_daviesproject:python_idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kim_davies_project:idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kim_project:python-idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kim_project:python_idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-idna:python-idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-idna:python_idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_idna:python-idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_idna:python_idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kim_davies:python-idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kim_davies:python_idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kim_daviesproject:idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kimproject:python-idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kimproject:python_idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:idna:python-idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:idna:python_idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kim_project:idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-idna:idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_idna:idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kim:python-idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kim:python_idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kim_davies:idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kimproject:idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:idna:idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kim:idna:2.5:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib/python3.6/site-packages/idna-2.5-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib/python3.6/site-packages/idna-2.5-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/ima-evm-utils@1.3.2-12.el8?arch=aarch64&upstream=ima-evm-utils-1.3.2-12.el8.src.rpm&distro=rhel-8.9&package-id=7be92272efac7957","type":"library","publisher":"Red Hat, Inc.","name":"ima-evm-utils","version":"1.3.2-12.el8","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:ima-evm-utils:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/ima-evm-utils@1.3.2-12.el8?arch=aarch64&upstream=ima-evm-utils-1.3.2-12.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:ima-evm-utils:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ima_evm_utils:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ima_evm_utils:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ima-evm:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ima-evm:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ima_evm:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ima_evm:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ima:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ima:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"12.el8"},{"name":"syft:metadata:size","value":"186009"},{"name":"syft:metadata:sourceRpm","value":"ima-evm-utils-1.3.2-12.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/info@6.5-7.el8?arch=aarch64&upstream=texinfo-6.5-7.el8.src.rpm&distro=rhel-8.9&package-id=14b1d05143eed5ec","type":"library","publisher":"Red Hat, Inc.","name":"info","version":"6.5-7.el8","licenses":[{"license":{"name":"GPLv3+"}}],"cpe":"cpe:2.3:a:redhat:info:6.5-7.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/info@6.5-7.el8?arch=aarch64&upstream=texinfo-6.5-7.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:info:info:6.5-7.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"7.el8"},{"name":"syft:metadata:size","value":"434630"},{"name":"syft:metadata:sourceRpm","value":"texinfo-6.5-7.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/iniparse@0.4?package-id=33781512c83765ac","type":"library","author":"Paramjit Oberoi ","name":"iniparse","version":"0.4","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:paramjit_oberoi_project:python-iniparse:0.4:*:*:*:*:*:*:*","purl":"pkg:pypi/iniparse@0.4","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:paramjit_oberoi_project:python_iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:paramjit_oberoiproject:python-iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:paramjit_oberoiproject:python_iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:paramjit_oberoi_project:iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:paramjit_oberoi:python-iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:paramjit_oberoi:python_iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:paramjit_oberoiproject:iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-iniparse:python-iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-iniparse:python_iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_iniparse:python-iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_iniparse:python_iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:param_project:python-iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:param_project:python_iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:paramproject:python-iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:paramproject:python_iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:iniparse:python-iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:iniparse:python_iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:paramjit_oberoi:iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-iniparse:iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_iniparse:iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:param_project:iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:param:python-iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:param:python_iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:paramproject:iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:iniparse:iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:param:iniparse:0.4:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.accesslists.internal@1.0.89.cl240520240506-1951?package-id=a943eb2d3a00a8da","type":"library","group":"dev","name":"io.openliberty.accesslists.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.accesslists.internal:io.openliberty.accesslists.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.accesslists.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"3b87222f1fae9e6b86b160205d3bd32df9d24b3f"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:accesslists:io.openliberty.accesslists.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.accesslists.internal:accesslists:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.accesslists.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.accesslists.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.accesslists.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:accesslists:accesslists:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:accesslists:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:accesslists:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:accesslists:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.accesslists.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.accesslists.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.accesslists.internal_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.cdi.4.0.internal.interfaces@1.0.89.cl240520240506-1951?package-id=fbc19f7fd345c44a","type":"library","group":"dev","name":"io.openliberty.cdi.4.0.internal.interfaces","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.interfaces:io.openliberty.cdi.4.0.internal.interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.cdi.4.0.internal.interfaces@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"c91e4562ee48b6cb9b818d27d3487f2231d2ba7e"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.internal.interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:io.openliberty.cdi.4.0.internal.interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.interfaces:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.cdi.4.0.internal.interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.interfaces:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:io.openliberty.cdi.4.0.internal.interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.interfaces:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.cdi.4.0.internal.interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:io.openliberty.cdi.4.0.internal.interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.interfaces:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.interfaces:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:interfaces:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interfaces:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.interfaces_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.cdi.4.0.internal.interfaces"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.interfaces_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.cdi.4.0.internal.services.fragment@1.0.89.cl240520240506-1951?package-id=4c2cba99cbad84df","type":"library","group":"dev","name":"io.openliberty.cdi.4.0.internal.services.fragment","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:io.openliberty.cdi.4.0.internal.services.fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.cdi.4.0.internal.services.fragment@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"f2947239e037648b25572f03eca34e2f2703d8a2"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.internal.services.fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:fragment:io.openliberty.cdi.4.0.internal.services.fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.cdi.4.0.internal.services.fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:services:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:services:io.openliberty.cdi.4.0.internal.services.fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:io.openliberty.cdi.4.0.internal.services.fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.cdi.4.0.internal.services.fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:io.openliberty.cdi.4.0.internal.services.fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:services:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:fragment:fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:fragment:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:fragment:services:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:services:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:services:fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:services:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:services:services:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:services:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:fragment:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:services:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:services:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:fragment:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:services:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:fragment:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:fragment:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:services:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:services:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.services.fragment_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.cdi.4.0.internal.services.fragment"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.services.fragment_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.cdi.4.0.internal.web@1.0.89.cl240520240506-1951?package-id=7e9e251f54d3c826","type":"library","group":"dev","name":"io.openliberty.cdi.4.0.internal.web","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:io.openliberty.cdi.4.0.internal.web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.cdi.4.0.internal.web@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"c9e3b37a65322b9beb25ef17ea1861fc8acc07b9"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.internal.web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.cdi.4.0.internal.web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:io.openliberty.cdi.4.0.internal.web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:web:io.openliberty.cdi.4.0.internal.web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.cdi.4.0.internal.web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:io.openliberty.cdi.4.0.internal.web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:web:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:web:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:web:web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:web:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:web:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:web:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.web_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.cdi.4.0.internal.web"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.web_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.cdi.4.0.internal.weld@1.0.89.cl240520240506-1951?package-id=b89d5bcde8d7729b","type":"library","group":"dev","name":"io.openliberty.cdi.4.0.internal.weld","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:io.openliberty.cdi.4.0.internal.weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.cdi.4.0.internal.weld@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"fd0f3fd2037452e6953bf72b62d1d090c9597573"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:CDI40BundleActivator:io.openliberty.cdi.4.0.internal.weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:CDI40BundleActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.internal.weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.cdi.4.0.internal.weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi40:io.openliberty.cdi.4.0.internal.weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:cdi40:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:CDI40BundleActivator:CDI40BundleActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld:io.openliberty.cdi.4.0.internal.weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:io.openliberty.cdi.4.0.internal.weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.cdi.4.0.internal.weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:io.openliberty.cdi.4.0.internal.weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:CDI40BundleActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:CDI40BundleActivator:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:CDI40BundleActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:CDI40BundleActivator:cdi40:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi40:CDI40BundleActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:CDI40BundleActivator:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld:CDI40BundleActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:CDI40BundleActivator:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:CDI40BundleActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:CDI40BundleActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:CDI40BundleActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:CDI40BundleActivator:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:CDI40BundleActivator:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:cdi40:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi40:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:cdi40:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi40:cdi40:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi40:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld:cdi40:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi40:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi40:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:cdi40:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:cdi40:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi40:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi40:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:weld:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.weld_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.cdi.4.0.internal.weld"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.weld_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.cdi.4.0.thirdparty@1.0.89.cl240520240506-1951?package-id=c3105bc473467bf9","type":"library","group":"dev","name":"io.openliberty.cdi.4.0.thirdparty","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:io.openliberty.cdi.4.0.thirdparty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.cdi.4.0.thirdparty@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"0740dea9e7a1d7be7c4475f96d3d9ec0e5f8268a"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.thirdparty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:thirdparty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:thirdparty:io.openliberty.cdi.4.0.thirdparty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:io.openliberty.cdi.4.0.thirdparty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.cdi.4.0.thirdparty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:io.openliberty.cdi.4.0.thirdparty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:thirdparty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:thirdparty:thirdparty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:thirdparty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:thirdparty:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:thirdparty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:thirdparty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:thirdparty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:thirdparty:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/third-party/io.openliberty.cdi.4.0.thirdparty_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.cdi.4.0.thirdparty"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/third-party/io.openliberty.cdi.4.0.thirdparty_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.cdi.spi@1.1.89.cl240520240506-1951?package-id=ec2f3668c4051e3c","type":"library","group":"dev","name":"io.openliberty.cdi.spi","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.cdi.spi:io.openliberty.cdi.spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.cdi.spi@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"63d978b115058f151c58b1b7c7848e01fc14332f"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.cdi.spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:io.openliberty.cdi.spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.spi:cdi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.cdi.spi:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:io.openliberty.cdi.spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:cdi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:cdi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:spi:spi:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/spi/ibm/io.openliberty.cdi.spi_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.cdi.spi"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/spi/ibm/io.openliberty.cdi.spi_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.checkpoint@1.0.89.cl240520240506-1951?package-id=2033494e74fa8a05","type":"library","group":"dev","name":"io.openliberty.checkpoint","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.checkpoint:io.openliberty.checkpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.checkpoint@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"be49cd60e38e31103f6ebe516f0f41418c7c1f00"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.checkpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:checkpoint:io.openliberty.checkpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.checkpoint:checkpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:checkpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:checkpoint:checkpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.checkpoint_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.checkpoint"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.checkpoint_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.dynacache.internal@1.0.89.cl240520240506-1951?package-id=d7862a6f7a328b43","type":"library","group":"dev","name":"io.openliberty.dynacache.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.dynacache.internal:io.openliberty.dynacache.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.dynacache.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"bad3e107bb30e17065da1200f78616cc7cf367d3"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.dynacache.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dynacache:io.openliberty.dynacache.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.dynacache.internal:dynacache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.dynacache.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.dynacache.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:dynacache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dynacache:dynacache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dynacache:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:dynacache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.dynacache.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.dynacache.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.dynacache.internal_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.el.internal.cdi.jakarta@1.0.89.cl240520240506-1951?package-id=0faa508264b81dd1","type":"library","group":"dev","name":"io.openliberty.el.internal.cdi.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:io.openliberty.el.internal.cdi.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.el.internal.cdi.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"bb0fc2518bba287b4e02b8af2588c0586d17cb83"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.el.internal.cdi.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.el.internal.cdi.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.el.internal.cdi.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:io.openliberty.el.internal.cdi.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:el:io.openliberty.el.internal.cdi.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:el:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:el:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:el:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:el:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:el:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:el:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:el:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:el:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:el:el:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.el.internal.cdi.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.el.internal.cdi.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.el.internal.cdi.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.endpoint@1.0.89.cl240520240506-1951?package-id=4dc89ad3e3209aab","type":"library","group":"dev","name":"io.openliberty.endpoint","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.endpoint:io.openliberty.endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.endpoint@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"94d51036c9cc0b635e18ff555ba5a1e057a0f3ef"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:endpoint:io.openliberty.endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.endpoint:endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:endpoint:endpoint:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.endpoint_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.endpoint"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.endpoint_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.io.micrometer@1.0.89.cl240520240506-1951?package-id=4304d17278817f59","type":"library","group":"dev","name":"io.openliberty.io.micrometer","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.io.micrometer:io.openliberty.io.micrometer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.io.micrometer@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"9965af1f5b71e174e75697636f915adfc902d37c"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.io.micrometer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.micrometer:micrometer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:micrometer:io.openliberty.io.micrometer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.micrometer:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:io.openliberty.io.micrometer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:micrometer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:micrometer:micrometer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:micrometer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:micrometer:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.io.micrometer_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.io.micrometer"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.io.micrometer_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.io.netty@1.0.89.cl240520240506-1951?package-id=79e712e535570bbc","type":"library","group":"dev","name":"io.openliberty.io.netty","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.io.netty:io.openliberty.io.netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.io.netty@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"412e36579bb0b3d18e8053c6f8b78904d586f934"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.io.netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.netty:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:io.openliberty.io.netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.netty:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:io.openliberty.io.netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.io.netty_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.io.netty"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.io.netty_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.io.netty.ssl@1.0.89.cl240520240506-1951?package-id=47ebddd835be6410","type":"library","group":"dev","name":"io.openliberty.io.netty.ssl","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.io.netty.ssl:io.openliberty.io.netty.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.io.netty.ssl@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"d317e0b3918d87e49cb94d3293bcd84db82e46a0"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.io.netty.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.netty.ssl:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:io.openliberty.io.netty.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.netty.ssl:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:io.openliberty.io.netty.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.netty.ssl:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:io.openliberty.io.netty.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.io.netty.ssl_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.io.netty.ssl"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.io.netty.ssl_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.io.smallrye.common.jakarta@1.0.89.cl240520240506-1951?package-id=f6526f7a3dc2a1b3","type":"library","group":"dev","name":"io.openliberty.io.smallrye.common.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:io.openliberty.io.smallrye.common.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.io.smallrye.common.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a87f3f0f575aec34874a151e30e1609f34c45885"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.io.smallrye.common.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:smallrye:io.openliberty.io.smallrye.common.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.io.smallrye.common.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:io.openliberty.io.smallrye.common.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:io.openliberty.io.smallrye.common.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:smallrye:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:smallrye:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:smallrye:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:smallrye:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.io.smallrye.common.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.io.smallrye.common.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.io.smallrye.common.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.io.smallrye.config.jakarta@1.0.89.cl240520240506-1951?package-id=71a99009968c1d6a","type":"library","group":"dev","name":"io.openliberty.io.smallrye.config.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:io.openliberty.io.smallrye.config.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.io.smallrye.config.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"3129cd6aaf2efa628ed9ecfd4f0a51e00721b847"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.io.smallrye.config.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:smallrye:io.openliberty.io.smallrye.config.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.io.smallrye.config.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:io.openliberty.io.smallrye.config.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:io.openliberty.io.smallrye.config.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:smallrye:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:smallrye:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:smallrye:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:smallrye:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.io.smallrye.config.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.io.smallrye.config.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.io.smallrye.config.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.io.smallrye.metrics@1.0.89.cl240520240506-1951?package-id=6ab7d646a384bb53","type":"library","group":"dev","name":"io.openliberty.io.smallrye.metrics","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.io.smallrye.metrics:io.openliberty.io.smallrye.metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.io.smallrye.metrics@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"ef2bd3949a085bc477507ca3c96dfded9ce6c9ce"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.io.smallrye.metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.smallrye.metrics:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:smallrye:io.openliberty.io.smallrye.metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.smallrye.metrics:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:io.openliberty.io.smallrye.metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.io.smallrye.metrics:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:io.openliberty.io.smallrye.metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:smallrye:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:smallrye:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:smallrye:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:smallrye:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io:io:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.io.smallrye.metrics_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.io.smallrye.metrics"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.io.smallrye.metrics_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.activation.2.1@1.0.89.cl240520240506-1951?package-id=a5ea9b19b4e7ef29","type":"library","group":"dev","name":"io.openliberty.jakarta.activation.2.1","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.activation.2.1:io.openliberty.jakarta.activation.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.activation.2.1@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"261396badd83474cec49c59df9bc20e709a3bd30"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.activation.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activation:io.openliberty.jakarta.activation.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.activation.2.1:activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.activation.2.1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.activation.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.jakarta.activation.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:io.openliberty.jakarta.activation.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.activation.2.1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.activation.2.1:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activation:activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activation:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activation:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activation:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.activation.2.1_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.activation.2.1"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.activation.2.1_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.annotation.2.1@1.0.89.cl240520240506-1951?package-id=229447d436d3855c","type":"library","group":"dev","name":"io.openliberty.jakarta.annotation.2.1","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:io.openliberty.jakarta.annotation.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.annotation.2.1@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"0e9c35ad8a9f111100d590be0fa2bca739251c8d"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.annotation.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotation:io.openliberty.jakarta.annotation.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:annotation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.annotation.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.jakarta.annotation.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:io.openliberty.jakarta.annotation.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:annotation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotation:annotation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotation:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:annotation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:annotation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:annotation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotation:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:annotation:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.annotation.2.1_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.annotation.2.1"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.annotation.2.1_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.cdi.4.0@1.0.89.cl240520240506-1951?package-id=ab879c5cd1fcaa28","type":"library","group":"dev","name":"io.openliberty.jakarta.cdi.4.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:io.openliberty.jakarta.cdi.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.cdi.4.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"84f05fba62d6bf13df143456e6b553b34b0be05d"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.cdi.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.cdi.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:io.openliberty.jakarta.cdi.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.jakarta.cdi.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:io.openliberty.jakarta.cdi.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.cdi.4.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.cdi.4.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.cdi.4.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.connectors.2.1@1.0.89.cl240520240506-1951?package-id=0593ac53cf337b28","type":"library","group":"dev","name":"io.openliberty.jakarta.connectors.2.1","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:io.openliberty.jakarta.connectors.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.connectors.2.1@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"e0b799d7cc925ffd8b0d360fd995715ae1df72bc"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.connectors.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:connectors:io.openliberty.jakarta.connectors.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:connectors:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.connectors.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.jakarta.connectors.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:io.openliberty.jakarta.connectors.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:connectors:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:connectors:connectors:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:connectors:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:connectors:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:connectors:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:connectors:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:connectors:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:connectors:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.connectors.2.1_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.connectors.2.1"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.connectors.2.1_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.enterpriseBeans.4.0@1.0.89.cl240520240506-1951?package-id=49b8b4d509f322e5","type":"library","group":"dev","name":"io.openliberty.jakarta.enterpriseBeans.4.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.enterpriseBeans.4.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"eec047c3db84dc37a77f81b26aa22c79d4a34ea6"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:enterpriseBeans:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:enterpriseBeans:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:enterpriseBeans:enterpriseBeans:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:enterpriseBeans:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:enterpriseBeans:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:enterpriseBeans:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:enterpriseBeans:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:enterpriseBeans:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:enterpriseBeans:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:enterpriseBeans:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.enterpriseBeans.4.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.enterpriseBeans.4.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.enterpriseBeans.4.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.expressionLanguage.5.0@1.0.89.cl240520240506-1951?package-id=7bbd663a0ac40947","type":"library","group":"dev","name":"io.openliberty.jakarta.expressionLanguage.5.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:io.openliberty.jakarta.expressionLanguage.5.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.expressionLanguage.5.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"b2cb3f0b912928d130b0e44013fd9812e71c0526"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:expressionLanguage:io.openliberty.jakarta.expressionLanguage.5.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:expressionLanguage:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.expressionLanguage.5.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.expressionLanguage.5.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.jakarta.expressionLanguage.5.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:io.openliberty.jakarta.expressionLanguage.5.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:expressionLanguage:expressionLanguage:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:expressionLanguage:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:expressionLanguage:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:expressionLanguage:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:expressionLanguage:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:expressionLanguage:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:expressionLanguage:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:expressionLanguage:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.expressionLanguage.5.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.expressionLanguage.5.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.expressionLanguage.5.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.interceptor.2.1@1.0.89.cl240520240506-1951?package-id=5b414cc9c1f99e0e","type":"library","group":"dev","name":"io.openliberty.jakarta.interceptor.2.1","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:io.openliberty.jakarta.interceptor.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.interceptor.2.1@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"2a72a9bac8c2d8c1f4554d29fc990e1e7b498de7"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:interceptor:io.openliberty.jakarta.interceptor.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:interceptor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.interceptor.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.interceptor.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.jakarta.interceptor.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:io.openliberty.jakarta.interceptor.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interceptor:interceptor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:interceptor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interceptor:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:interceptor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:interceptor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:interceptor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interceptor:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:interceptor:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.interceptor.2.1_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.interceptor.2.1"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.interceptor.2.1_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.jsonb.3.0@1.0.89.cl240520240506-1951?package-id=851503f801bf53c3","type":"library","group":"dev","name":"io.openliberty.jakarta.jsonb.3.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:io.openliberty.jakarta.jsonb.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.jsonb.3.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"694b31abff5f1757fd5e4bc082232890a91e270d"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.jsonb.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.jsonb.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:jsonb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonb:io.openliberty.jakarta.jsonb.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.jakarta.jsonb.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:io.openliberty.jakarta.jsonb.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jsonb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jsonb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonb:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonb:jsonb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jsonb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:jsonb:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonb:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonb:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.jsonb.3.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.jsonb.3.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.jsonb.3.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.jsonp.2.1@1.0.89.cl240520240506-1951?package-id=de1b39105b89903e","type":"library","group":"dev","name":"io.openliberty.jakarta.jsonp.2.1","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:io.openliberty.jakarta.jsonp.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.jsonp.2.1@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"3469c9c4bfdc6ba6f4035ab4af5e9f6782a392f0"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.jsonp.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.jsonp.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:jsonp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonp:io.openliberty.jakarta.jsonp.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.jakarta.jsonp.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:io.openliberty.jakarta.jsonp.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jsonp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jsonp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonp:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonp:jsonp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jsonp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:jsonp:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonp:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonp:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.jsonp.2.1_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.jsonp.2.1"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.jsonp.2.1_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.mail.2.1@1.0.89.cl240520240506-1951?package-id=a6e9d7a2e64a0aff","type":"library","group":"dev","name":"io.openliberty.jakarta.mail.2.1","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.mail.2.1:io.openliberty.jakarta.mail.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.mail.2.1@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"72cdd69c7c13627e7df6c58391ec68cc32d2d213"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.mail.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.mail.2.1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.mail.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.mail.2.1:mail:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mail:io.openliberty.jakarta.mail.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.jakarta.mail.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:io.openliberty.jakarta.mail.2.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.mail.2.1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.mail.2.1:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:mail:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:mail:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mail:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mail:mail:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:mail:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:mail:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mail:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mail:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.mail.2.1_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.mail.2.1"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.mail.2.1_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.pages.3.1@1.0.89.cl240520240506-1951?package-id=52de79d2e919f58c","type":"library","group":"dev","name":"io.openliberty.jakarta.pages.3.1","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.pages.3.1:io.openliberty.jakarta.pages.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.pages.3.1@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"43295b68e45b9a1effa04e7ada386079dbd1e721"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.pages.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.pages.3.1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.pages.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.pages.3.1:pages:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:pages:io.openliberty.jakarta.pages.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.jakarta.pages.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:io.openliberty.jakarta.pages.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.pages.3.1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.pages.3.1:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:pages:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:pages:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:pages:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:pages:pages:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:pages:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:pages:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:pages:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:pages:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.pages.3.1_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.pages.3.1"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.pages.3.1_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.persistence.3.1@1.0.89.cl240520240506-1951?package-id=47bf2ee0141aea9a","type":"library","group":"dev","name":"io.openliberty.jakarta.persistence.3.1","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:io.openliberty.jakarta.persistence.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.persistence.3.1@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"b868289537e39f267f4340a31456464f1a91b185"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:io.openliberty.jakarta.persistence.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.persistence.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:io.openliberty.jakarta.persistence.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.jakarta.persistence.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.persistence.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.jakarta.persistence.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:io.openliberty.jakarta.persistence.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.persistence.3.1_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.persistence.3.1"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.persistence.3.1_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.persistence.api.3.1@1.0.89.cl240520240506-1951?package-id=6cdec7db66544d4f","type":"library","group":"dev","name":"io.openliberty.jakarta.persistence.api.3.1","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:io.openliberty.jakarta.persistence.api.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.persistence.api.3.1@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"c55e75d6adf8f0b0ca7e324547a7c238a374e52a"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.persistence.api.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:io.openliberty.jakarta.persistence.api.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.persistence.api.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:io.openliberty.jakarta.persistence.api.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.jakarta.persistence.api.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:io.openliberty.jakarta.persistence.api.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:api:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:api:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.jakarta.persistence.api.3.1_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.persistence.api.3.1"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.jakarta.persistence.api.3.1_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.restfulWS.3.1@1.0.89.cl240520240506-1951?package-id=9090b2d7d6882321","type":"library","group":"dev","name":"io.openliberty.jakarta.restfulWS.3.1","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:io.openliberty.jakarta.restfulWS.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.restfulWS.3.1@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"36db18511378779318abf57a5e95dd79ad9a2b9a"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.restfulWS.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS:io.openliberty.jakarta.restfulWS.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.restfulWS.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.jakarta.restfulWS.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:io.openliberty.jakarta.restfulWS.3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.restfulWS.3.1_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.restfulWS.3.1"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.restfulWS.3.1_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.servlet.6.0@1.0.89.cl240520240506-1951?package-id=b1638c9cc9aa1549","type":"library","group":"dev","name":"io.openliberty.jakarta.servlet.6.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:io.openliberty.jakarta.servlet.6.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.servlet.6.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"b6455c8949468e00c26ee43e042989e80a61befd"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.servlet.6.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.servlet.6.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:io.openliberty.jakarta.servlet.6.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.jakarta.servlet.6.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:io.openliberty.jakarta.servlet.6.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.servlet.6.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.servlet.6.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.servlet.6.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.soap.3.0@1.0.89.cl240520240506-1951?package-id=d2ab6572bcbf0760","type":"library","group":"dev","name":"io.openliberty.jakarta.soap.3.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.soap.3.0:io.openliberty.jakarta.soap.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.soap.3.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"c18e7c45d4a8cf42c252018275fdfb0db20fb5c9"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.soap.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.soap.3.0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.soap.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.soap.3.0:soap:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:soap:io.openliberty.jakarta.soap.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.jakarta.soap.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:io.openliberty.jakarta.soap.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.soap.3.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.soap.3.0:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:soap:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:soap:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:soap:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:soap:soap:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:soap:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:soap:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:soap:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:soap:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.soap.3.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.soap.3.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.soap.3.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.transaction.2.0@1.0.89.cl240520240506-1951?package-id=0b471a61f91887f4","type":"library","group":"dev","name":"io.openliberty.jakarta.transaction.2.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:io.openliberty.jakarta.transaction.2.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.transaction.2.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"7bb1c59e608ecad01a1cf81e9736b5013d6e242e"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.transaction.2.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:io.openliberty.jakarta.transaction.2.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.transaction.2.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.jakarta.transaction.2.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:io.openliberty.jakarta.transaction.2.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:2:2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.transaction.2.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.transaction.2.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.transaction.2.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.validation.3.0@1.0.89.cl240520240506-1951?package-id=9d76417821f66306","type":"library","group":"dev","name":"io.openliberty.jakarta.validation.3.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.validation.3.0:io.openliberty.jakarta.validation.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.validation.3.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"8dfbe0bad6e87e4f9988df8fde0a656d415b5b65"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.validation.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.validation.3.0:validation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:validation:io.openliberty.jakarta.validation.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.validation.3.0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.validation.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.jakarta.validation.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:io.openliberty.jakarta.validation.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.validation.3.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.validation.3.0:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:validation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:validation:validation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:validation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:validation:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:validation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:validation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:validation:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:validation:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.validation.3.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.validation.3.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.validation.3.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.xmlBinding.4.0@1.0.89.cl240520240506-1951?package-id=8b1c54477298e334","type":"library","group":"dev","name":"io.openliberty.jakarta.xmlBinding.4.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:io.openliberty.jakarta.xmlBinding.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.xmlBinding.4.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"6492d44909bc5d92c5b12b98f30caaa4ebfb46c0"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.xmlBinding.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:xmlBinding:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:xmlBinding:io.openliberty.jakarta.xmlBinding.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.xmlBinding.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.jakarta.xmlBinding.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:io.openliberty.jakarta.xmlBinding.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:xmlBinding:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:xmlBinding:xmlBinding:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:xmlBinding:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:xmlBinding:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:xmlBinding:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:xmlBinding:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:xmlBinding:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:xmlBinding:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.xmlBinding.4.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.xmlBinding.4.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.xmlBinding.4.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakarta.xmlWS.4.0@1.0.89.cl240520240506-1951?package-id=de4a711e1a522894","type":"library","group":"dev","name":"io.openliberty.jakarta.xmlWS.4.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:io.openliberty.jakarta.xmlWS.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakarta.xmlWS.4.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"ebbe5ec7c7263e8590491f6d56a434e0a9763454"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakarta.xmlWS.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.jakarta.xmlWS.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:xmlWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:xmlWS:io.openliberty.jakarta.xmlWS.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.jakarta.xmlWS.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:io.openliberty.jakarta.xmlWS.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:xmlWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:xmlWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:xmlWS:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:xmlWS:xmlWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:xmlWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:xmlWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:xmlWS:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:xmlWS:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.xmlWS.4.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakarta.xmlWS.4.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.xmlWS.4.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakartaee.platform.v10@1.0.89.cl240520240506-1951?package-id=52dfed7ec6023329","type":"library","group":"dev","name":"io.openliberty.jakartaee.platform.v10","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakartaee.platform.v10:io.openliberty.jakartaee.platform.v10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakartaee.platform.v10@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"d6b264bd993c07e5b6c84f5f38739e4e2364f9c3"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakartaee.platform.v10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakartaee.platform.v10:jakartaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakartaee:io.openliberty.jakartaee.platform.v10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakartaee.platform.v10:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:io.openliberty.jakartaee.platform.v10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakartaee.platform.v10:v10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v10:io.openliberty.jakartaee.platform.v10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakartaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakartaee:jakartaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakartaee:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:jakartaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:v10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakartaee:v10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v10:jakartaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:v10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v10:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v10:v10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.jakartaee.platform.v10_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakartaee.platform.v10"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.jakartaee.platform.v10_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jakartaee.platform.v9@1.0.89.cl240520240506-1951?package-id=3d48745ecdb84ef9","type":"library","group":"dev","name":"io.openliberty.jakartaee.platform.v9","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jakartaee.platform.v9:io.openliberty.jakartaee.platform.v9:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jakartaee.platform.v9@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"edeee949cee882a157149ec5d24d47b7dbedd69a"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jakartaee.platform.v9:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakartaee.platform.v9:jakartaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakartaee:io.openliberty.jakartaee.platform.v9:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakartaee.platform.v9:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:io.openliberty.jakartaee.platform.v9:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jakartaee.platform.v9:v9:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v9:io.openliberty.jakartaee.platform.v9:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakartaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakartaee:jakartaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakartaee:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:jakartaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:v9:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakartaee:v9:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v9:jakartaee:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:v9:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v9:platform:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:v9:v9:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.jakartaee.platform.v9_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jakartaee.platform.v9"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.jakartaee.platform.v9_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.java11.internal@1.0.89.cl240520240506-1951?package-id=222ad879183866eb","type":"library","group":"dev","name":"io.openliberty.java11.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.java11.internal:io.openliberty.java11.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.java11.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"e400811d7d3a74d0e6d1b0b7b685337f0aa69252"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.java11.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.java11.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.java11.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.java11.internal:java11:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:java11:io.openliberty.java11.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:java11:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:java11:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:java11:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:java11:java11:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.java11.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.java11.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.java11.internal_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jaxrs30@1.0.89.cl240520240506-1951?package-id=35e67b2f1026c68d","type":"library","group":"dev","name":"io.openliberty.jaxrs30","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jaxrs30:io.openliberty.jaxrs30:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jaxrs30@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a4ef09c63df54c359f8b93e603de814904b5a89d"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jaxrs30:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jaxrs30:jaxrs30:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs30:io.openliberty.jaxrs30:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jaxrs30:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaxrs30:jaxrs30:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/ibm/io.openliberty.jaxrs30_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jaxrs30"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/ibm/io.openliberty.jaxrs30_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.jcache.internal@1.0.89.cl240520240506-1951?package-id=fe96a3958a91e871","type":"library","group":"dev","name":"io.openliberty.jcache.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.jcache.internal:io.openliberty.jcache.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.jcache.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"18aa5386463a35e9478e1da6bde2897da700a64a"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.jcache.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:io.openliberty.jcache.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jcache.internal:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.jcache.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jcache.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.jcache.internal:jcache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jcache:io.openliberty.jcache.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jcache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:jcache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jcache:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:jcache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jcache:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jcache:jcache:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.jcache.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.jcache.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.jcache.internal_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.microprofile.config.internal.common@1.0.89.cl240520240506-1951?package-id=0d4ae68d0a73cb0a","type":"library","group":"dev","name":"io.openliberty.microprofile.config.internal.common","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.microprofile.config.internal.common:io.openliberty.microprofile.config.internal.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.microprofile.config.internal.common@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"d359327f0124e92d1ba9f46efada2ff81fabbce2"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.config.internal.common:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:io.openliberty.microprofile.config.internal.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.microprofile.config.internal.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.microprofile.config.internal.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.config.internal.common:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:io.openliberty.microprofile.config.internal.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:io.openliberty.microprofile.config.internal.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.config.internal.common:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.config.internal.common:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.microprofile.config.internal.common_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.microprofile.config.internal.common"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.microprofile.config.internal.common_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.microprofile.config.internal.serverxml@1.0.89.cl240520240506-1951?package-id=5ee105de05daccfa","type":"library","group":"dev","name":"io.openliberty.microprofile.config.internal.serverxml","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:io.openliberty.microprofile.config.internal.serverxml:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.microprofile.config.internal.serverxml@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"6f4d631f10c2c20bfcccadd27f75abc6c6f4abcb"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:io.openliberty.microprofile.config.internal.serverxml:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.microprofile.config.internal.serverxml:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:serverxml:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverxml:io.openliberty.microprofile.config.internal.serverxml:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.microprofile.config.internal.serverxml:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:io.openliberty.microprofile.config.internal.serverxml:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:serverxml:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverxml:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:serverxml:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverxml:serverxml:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:serverxml:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverxml:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:serverxml:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverxml:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.microprofile.config.internal.serverxml_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.microprofile.config.internal.serverxml"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.microprofile.config.internal.serverxml_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.microprofile.health.3.1.internal.jakarta@1.0.89.cl240520240506-1951?package-id=59a115ca22aae6ae","type":"library","group":"dev","name":"io.openliberty.microprofile.health.3.1.internal.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.microprofile.health.3.1.internal.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"5c16490836a12b96c4369b96a97d6add5483bb46"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:health:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:health:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:health:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:health:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:health:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:health:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:health:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.microprofile.health.3.1.internal.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.microprofile.health.3.1.internal.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.microprofile.health.3.1.internal.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.internal@1.0.89.cl240520240506-1951?package-id=245910ff7df1f96e","type":"library","group":"dev","name":"io.openliberty.microprofile.metrics.5.0.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:io.openliberty.microprofile.metrics.5.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"2de65f840b77598228169d128f1478bdf3649fd3"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:io.openliberty.microprofile.metrics.5.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.microprofile.metrics.5.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.microprofile.metrics.5.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:io.openliberty.microprofile.metrics.5.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.microprofile.metrics.5.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:io.openliberty.microprofile.metrics.5.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.microprofile.metrics.5.0.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.internal_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.monitor.internal@1.0.89.cl240520240506-1951?package-id=405686f3b5aaf7c0","type":"library","group":"dev","name":"io.openliberty.microprofile.metrics.5.0.monitor.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.monitor.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"30c558ba89c07edc31c1d9a02c5911bf622983e2"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:monitor:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:monitor:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.monitor.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.microprofile.metrics.5.0.monitor.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.monitor.internal_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.private.internal@1.0.89.cl240520240506-1951?package-id=c66b501be8abdf14","type":"library","group":"dev","name":"io.openliberty.microprofile.metrics.5.0.private.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.private.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"4ee87b799287de4f0943b068834588572bc45a5d"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:private:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:private:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:private:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:private:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:private:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:private:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:private:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:private:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:private:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:private:private:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:private:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:private:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:private:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:private:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.private.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.microprofile.metrics.5.0.private.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.private.internal_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.public.internal@1.0.89.cl240520240506-1951?package-id=1b2ad499c24f3fbe","type":"library","group":"dev","name":"io.openliberty.microprofile.metrics.5.0.public.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.public.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"76f41f3469b727e735afa4b913b98ff69f1d85a5"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:public:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:public:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:public:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:public:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:public:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:public:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:public:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:public:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:public:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:public:public:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:public:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:public:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:public:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:public:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.public.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.microprofile.metrics.5.0.public.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.public.internal_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.netty.internal@1.0.89.cl240520240506-1951?package-id=a2c03c593ecd3b41","type":"library","group":"dev","name":"io.openliberty.netty.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.netty.internal:io.openliberty.netty.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.netty.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"4b5d1d0bfecb38952d68f8738f9dd85bb162c43d"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.netty.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.netty.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.netty.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.netty.internal:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:io.openliberty.netty.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.netty.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.netty.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.netty.internal_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.netty.internal.tls.impl@1.0.89.cl240520240506-1951?package-id=5ce5db01d83440ad","type":"library","group":"dev","name":"io.openliberty.netty.internal.tls.impl","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.netty.internal.tls.impl:io.openliberty.netty.internal.tls.impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.netty.internal.tls.impl@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"33348a75ef4f9fb5664e70a549017bb1bca765ef"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.netty.internal.tls.impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.netty.internal.tls.impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.netty.internal.tls.impl:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.netty.internal.tls.impl:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:io.openliberty.netty.internal.tls.impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:io.openliberty.netty.internal.tls.impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.netty.internal.tls.impl:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.netty.internal.tls.impl:tls:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tls:io.openliberty.netty.internal.tls.impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:tls:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:tls:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tls:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:netty:tls:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tls:netty:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:impl:tls:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tls:impl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tls:tls:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.netty.internal.tls.impl_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.netty.internal.tls.impl"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.netty.internal.tls.impl_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.apache.commons.codec@1.16.89.cl240520240506-1951?package-id=b4a5e26bdb7dbc2b","type":"library","group":"dev","name":"io.openliberty.org.apache.commons.codec","version":"1.16.89.cl240520240506-1951","licenses":[{"license":{"name":"https://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:apache:io.openliberty.org.apache.commons.codec:1.16.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.apache.commons.codec@1.16.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a2d3c9f680b91f983df0d192c579c59574035390"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:commons:1.16.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:apache:1.16.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:codec:1.16.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:org:1.16.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.org.apache.commons.codec_1.16.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.apache.commons.codec"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.org.apache.commons.codec_1.16.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.apache.commons.logging@1.2.89.cl240520240506-1951?package-id=4134e8ca5305f2fc","type":"library","group":"dev","name":"io.openliberty.org.apache.commons.logging","version":"1.2.89.cl240520240506-1951","licenses":[{"license":{"name":"http://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:apache:io.openliberty.org.apache.commons.logging:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.apache.commons.logging@1.2.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"21dfb8af4f67dc09fc45d82fd2ea9a899c86e08d"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:commons:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:logging:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:apache:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:apache:org:1.2.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.org.apache.commons.logging_1.2.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.apache.commons.logging"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.org.apache.commons.logging_1.2.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.eclipse.angus.activation@1.0.89.cl240520240506-1951?package-id=2a923d5339ae94ae","type":"library","group":"dev","name":"io.openliberty.org.eclipse.angus.activation","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:io.openliberty.org.eclipse.angus.activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.eclipse.angus.activation@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"895a748994e2e72038d878f2a9388fe59bfd4346"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.eclipse.angus.activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activation:io.openliberty.org.eclipse.angus.activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:io.openliberty.org.eclipse.angus.activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:angus:io.openliberty.org.eclipse.angus.activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:angus:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.eclipse.angus.activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activation:activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activation:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:angus:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activation:angus:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:angus:activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:activation:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:activation:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:angus:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:angus:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:angus:angus:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:angus:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:angus:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.org.eclipse.angus.activation_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.eclipse.angus.activation"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.org.eclipse.angus.activation_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.eclipse.microprofile.config.3.0@1.0.89.cl240520240506-1951?package-id=ad6392f4f8b9a12e","type":"library","group":"dev","name":"io.openliberty.org.eclipse.microprofile.config.3.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.eclipse.microprofile.config.3.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"c4a60baf1ab016fcb458007ca31888a3c0129a81"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.config.3.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.eclipse.microprofile.config.3.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.config.3.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.eclipse.microprofile.health.4.0@1.0.89.cl240520240506-1951?package-id=89540cca85f727f5","type":"library","group":"dev","name":"io.openliberty.org.eclipse.microprofile.health.4.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.eclipse.microprofile.health.4.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"35a0f259f29a973219c6abd6d20ea3b5aa2ea023"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:health:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:health:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:health:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:health:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:health:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:health:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:health:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:health:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:4:4:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.health.4.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.eclipse.microprofile.health.4.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.health.4.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.eclipse.microprofile.metrics.5.0@1.0.89.cl240520240506-1951?package-id=f535bb9ccc021839","type":"library","group":"dev","name":"io.openliberty.org.eclipse.microprofile.metrics.5.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.eclipse.microprofile.metrics.5.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"449910ebd1a4830a51ffdc3e22a8bb9e892f7212"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:microprofile:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:microprofile:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:metrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:metrics:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:5:5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.metrics.5.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.eclipse.microprofile.metrics.5.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.metrics.5.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.eclipse.parsson.1.1@1.0.89.cl240520240506-1951?package-id=1c254399a0f88a48","type":"library","group":"dev","name":"io.openliberty.org.eclipse.parsson.1.1","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"https://projects.eclipse.org/license/epl-2.0, https://projects.eclipse.org/license/secondary-gpl-2.0-cp"}}],"cpe":"cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:io.openliberty.org.eclipse.parsson.1.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.eclipse.parsson.1.1@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"61770a65911a134fdf0f8e8154f03d84d75fe9a1"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.eclipse.parsson.1.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:io.openliberty.org.eclipse.parsson.1.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:parsson:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:parsson:io.openliberty.org.eclipse.parsson.1.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.eclipse.parsson.1.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.org.eclipse.parsson.1.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:parsson:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:parsson:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:parsson:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:parsson:parsson:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:parsson:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:parsson:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:parsson:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:parsson:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.org.eclipse.parsson.1.1_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.eclipse.parsson.1.1"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.org.eclipse.parsson.1.1_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.eclipse.persistence-3.1@1.0.89.cl240520240506-1951?package-id=fb289b4e209f6a37","type":"library","group":"dev","name":"io.openliberty.org.eclipse.persistence-3.1","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:io.openliberty.org.eclipse.persistence-3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.eclipse.persistence-3.1@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"da7995bbc3c630f3514fe9f28e85fa261ca98916"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:io.openliberty.org.eclipse.persistence_3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:io.openliberty.org.eclipse.persistence-3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:io.openliberty.org.eclipse.persistence_3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence:io.openliberty.org.eclipse.persistence-3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence:io.openliberty.org.eclipse.persistence_3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:io.openliberty.org.eclipse.persistence-3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:io.openliberty.org.eclipse.persistence_3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:persistence-3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:persistence_3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:persistence-3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:persistence_3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence-3:io.openliberty.org.eclipse.persistence-3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence-3:io.openliberty.org.eclipse.persistence_3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence_3:io.openliberty.org.eclipse.persistence-3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence_3:io.openliberty.org.eclipse.persistence_3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.eclipse.persistence-3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.eclipse.persistence_3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:io.openliberty.org.eclipse.persistence-3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:io.openliberty.org.eclipse.persistence_3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence:persistence-3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence:persistence_3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.org.eclipse.persistence-3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.org.eclipse.persistence_3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:io.openliberty.org.eclipse.persistence-3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:io.openliberty.org.eclipse.persistence_3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.org.eclipse.persistence-3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.org.eclipse.persistence_3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.eclipse.persistence-3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.eclipse.persistence_3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.org.eclipse.persistence-3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.org.eclipse.persistence_3.1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:persistence-3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:persistence_3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence-3:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence_3:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.persistence:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:JakartaPersistenceActivator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:JakartaPersistenceActivator:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence-3:persistence-3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence-3:persistence_3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence_3:persistence-3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence_3:persistence_3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:persistence-3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:persistence_3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence-3:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:persistence-3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:persistence_3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence_3:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:persistence-3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:persistence_3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence-3:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence_3:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:persistence-3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:persistence_3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:persistence-3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:persistence_3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence-3:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence-3:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence_3:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence_3:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:persistence-3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:persistence_3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence-3:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence_3:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:persistence-3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:persistence_3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence-3:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence_3:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:persistence:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:persistence:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.org.eclipse.persistence-3.1_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.eclipse.persistence-3.1"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.org.eclipse.persistence-3.1_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.eclipse.yasson.3.0@1.0.89.cl240520240506-1951?package-id=37c05be9676f5b1c","type":"library","group":"dev","name":"io.openliberty.org.eclipse.yasson.3.0","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"http://www.eclipse.org/legal/epl-v20.html, http://www.eclipse.org/org/documents/edl-v10.php"}}],"cpe":"cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:io.openliberty.org.eclipse.yasson.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.eclipse.yasson.3.0@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"635fd03fa168a28d7004b3b2c35119dafb74568d"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.eclipse.yasson.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:io.openliberty.org.eclipse.yasson.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:yasson:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:yasson:io.openliberty.org.eclipse.yasson.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.eclipse.yasson.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.org.eclipse.yasson.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:io.openliberty.org.eclipse.yasson.3.0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:yasson:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:yasson:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:yasson:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:yasson:yasson:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:yasson:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:yasson:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:eclipse:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:yasson:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:yasson:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:yasson:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:yasson:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:3:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.org.eclipse.yasson.3.0_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.eclipse.yasson.3.0"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.org.eclipse.yasson.3.0_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.glassfish.hk2.osgi-resource-locator@1.0.89.cl240520240506-1951?package-id=0ff2b32d6260095d","type":"library","group":"dev","name":"io.openliberty.org.glassfish.hk2.osgi-resource-locator","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.glassfish.hk2.osgi-resource-locator@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"5823e15c25d864cf5a4b732c84d2ea63bface04c"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource-locator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource-locator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource_locator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource_locator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgiresourcelocator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgiresourcelocator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hk2:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hk2:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource-locator:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource-locator:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource_locator:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource_locator:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource-locator:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource_locator:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgiresourcelocator:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgiresourcelocator:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgiresourcelocator:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource-locator:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource-locator:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource_locator:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource_locator:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgiresourcelocator:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgiresourcelocator:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hk2:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hk2:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:osgi-resource-locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:osgi_resource_locator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource-locator:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource-locator:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource_locator:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource_locator:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hk2:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:osgiresourcelocator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgiresourcelocator:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgiresourcelocator:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi-resource:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi_resource:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:Activator:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:glassfish:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hk2:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hk2:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:Activator:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:glassfish:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hk2:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hk2:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:hk2:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.org.glassfish.hk2.osgi-resource-locator_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.glassfish.hk2.osgi-resource-locator"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.org.glassfish.hk2.osgi-resource-locator_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.jboss.classfilewriter.1.3@1.3.89.cl240520240506-1951?package-id=0e3a675407fc9b1f","type":"library","group":"dev","name":"io.openliberty.org.jboss.classfilewriter.1.3","version":"1.3.89.cl240520240506-1951","licenses":[{"license":{"name":"http://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:io.openliberty.org.jboss.classfilewriter.1.3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.jboss.classfilewriter.1.3@1.3.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"bcf92fb8409789a684b2ad6cc9630aa749a73045"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:io.openliberty.org.jboss.classfilewriter.1.3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:io.openliberty.org.jboss.classfilewriter.1.3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classfilewriter:io.openliberty.org.jboss.classfilewriter.1.3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:classfilewriter:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.jboss.classfilewriter.1.3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:jboss:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:io.openliberty.org.jboss.classfilewriter.1.3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:org:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.jboss.classfilewriter.1.3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:io.openliberty.org.jboss.classfilewriter.1.3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:io.openliberty.org.jboss.classfilewriter.1.3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:1:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:classfilewriter:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:classfilewriter:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classfilewriter:classfilewriter:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:classfilewriter:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:jboss:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:jboss:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classfilewriter:jboss:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:classfilewriter:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:org:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:org:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classfilewriter:org:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:classfilewriter:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:1:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:1:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:classfilewriter:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:classfilewriter:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classfilewriter:1:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:classfilewriter:3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jboss:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:1:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:jboss:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:org:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:jboss:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:jboss:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:jboss:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:1:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:org:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:org:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:1:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:1:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:1:3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:1:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:3:3:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.org.jboss.classfilewriter.1.3_1.3.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.jboss.classfilewriter.1.3"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.org.jboss.classfilewriter.1.3_1.3.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.jboss.logging35@1.0.89.cl240520240506-1951?package-id=6dda51a0a000c2d3","type":"library","group":"dev","name":"io.openliberty.org.jboss.logging35","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"https://www.apache.org/licenses/LICENSE-2.0.txt"}}],"cpe":"cpe:2.3:a:io.openliberty.org.jboss.logging35:io.openliberty.org.jboss.logging35:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.jboss.logging35@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"645e047de148124e5a091081592942c03b54274c"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:io.openliberty.org.jboss.logging35:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:io.openliberty.org.jboss.logging35:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.jboss.logging35:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.logging35:logging35:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging35:io.openliberty.org.jboss.logging35:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.logging35:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:io.openliberty.org.jboss.logging35:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.logging35:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.jboss.logging35:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:logging35:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:logging35:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:logging35:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss-by-red-hat:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss_by_red_hat:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging35:logging35:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:logging35:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging35:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging35:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:logging35:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.org.jboss.logging35_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.jboss.logging35"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.org.jboss.logging35_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.jboss.resteasy.cdi.ee10@1.0.89.cl240520240506-1951?package-id=422166dd2a57d3a1","type":"library","group":"dev","name":"io.openliberty.org.jboss.resteasy.cdi.ee10","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.jboss.resteasy.cdi.ee10@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"e73a053f92b433e2be7c5943dcb5fb7b33f669a0"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:cdi:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.cdi.ee10_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.jboss.resteasy.cdi.ee10"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.cdi.ee10_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.jboss.resteasy.common.ee10@1.0.89.cl240520240506-1951?package-id=a0d1cd807f61c116","type":"library","group":"dev","name":"io.openliberty.org.jboss.resteasy.common.ee10","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:io.openliberty.org.jboss.resteasy.common.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.jboss.resteasy.common.ee10@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"348e76ed6c03714ebd8b48a5b9b72623268318c2"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.jboss.resteasy.common.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:io.openliberty.org.jboss.resteasy.common.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:io.openliberty.org.jboss.resteasy.common.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:io.openliberty.org.jboss.resteasy.common.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:io.openliberty.org.jboss.resteasy.common.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.jboss.resteasy.common.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.common.ee10_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.jboss.resteasy.common.ee10"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.common.ee10_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.jboss.resteasy.server.ee10@1.0.89.cl240520240506-1951?package-id=68e25acffe3013a8","type":"library","group":"dev","name":"io.openliberty.org.jboss.resteasy.server.ee10","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:io.openliberty.org.jboss.resteasy.server.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.jboss.resteasy.server.ee10@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"064d35782d7a75b02cf9a2ff986d1d66a038b0dc"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.jboss.resteasy.server.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:io.openliberty.org.jboss.resteasy.server.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:io.openliberty.org.jboss.resteasy.server.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:io.openliberty.org.jboss.resteasy.server.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:io.openliberty.org.jboss.resteasy.server.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.jboss.resteasy.server.ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:resteasy:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:resteasy:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ee10:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:ee10:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.server.ee10_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.jboss.resteasy.server.ee10"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.server.ee10_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.jboss.weld5@1.0.89.cl240520240506-1951?package-id=c8e026db1162b262","type":"library","group":"dev","name":"io.openliberty.org.jboss.weld5","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"http://www.apache.org/licenses/LICENSE-2.0.html"}}],"cpe":"cpe:2.3:a:io.openliberty.org.jboss.weld5:io.openliberty.org.jboss.weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.jboss.weld5@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"063079653a5f32ded50c9107ac44a69e4e1169ea"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.jboss.weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.weld5:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.weld5:weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:io.openliberty.org.jboss.weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld5:io.openliberty.org.jboss.weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.weld5:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.jboss.weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld5:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld5:weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld5:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.org.jboss.weld5_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.jboss.weld5"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.org.jboss.weld5_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.org.jboss.weld5.se@1.0.89.cl240520240506-1951?package-id=70b269d6ddfeab01","type":"library","group":"dev","name":"io.openliberty.org.jboss.weld5.se","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.org.jboss.weld5.se:io.openliberty.org.jboss.weld5.se:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.org.jboss.weld5.se@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"ac9009fac9f053405c34fc988dce14ebaff8a5f0"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.org.jboss.weld5.se:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.weld5.se:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.weld5.se:weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:io.openliberty.org.jboss.weld5.se:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld5:io.openliberty.org.jboss.weld5.se:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.weld5.se:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:io.openliberty.org.jboss.weld5.se:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.org.jboss.weld5.se:se:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:se:io.openliberty.org.jboss.weld5.se:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:se:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld5:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld5:weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld5:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jboss:se:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:se:jboss:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:se:weld5:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:weld5:se:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org:se:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:se:org:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:se:se:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.org.jboss.weld5.se_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.org.jboss.weld5.se"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.org.jboss.weld5.se_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.reporting.internal@1.0.89.cl240520240506-1951?package-id=dda97fae5c10ef70","type":"library","group":"dev","name":"io.openliberty.reporting.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.reporting.internal:io.openliberty.reporting.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.reporting.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"dd00c906dd4f97b6d18650feab1766a5bddfd94f"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.reporting.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.reporting.internal:reporting:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reporting:io.openliberty.reporting.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.reporting.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.reporting.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:reporting:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reporting:reporting:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:reporting:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reporting:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.reporting.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.reporting.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.reporting.internal_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.restfulWS.internal.ssl@1.0.89.cl240520240506-1951?package-id=606e11e4be3c26f2","type":"library","group":"dev","name":"io.openliberty.restfulWS.internal.ssl","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.restfulWS.internal.ssl:io.openliberty.restfulWS.internal.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.restfulWS.internal.ssl@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"07341a0ace30116ecc812104300dcbe099415617"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.restfulWS.internal.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.restfulWS.internal.ssl:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS:io.openliberty.restfulWS.internal.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.restfulWS.internal.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.restfulWS.internal.ssl:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.restfulWS.internal.ssl:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:io.openliberty.restfulWS.internal.ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.restfulWS.internal.ssl_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.restfulWS.internal.ssl"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.restfulWS.internal.ssl_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.restfulWS.mpMetrics.filter@1.0.89.cl240520240506-1951?package-id=87eebd42a09d9992","type":"library","group":"dev","name":"io.openliberty.restfulWS.mpMetrics.filter","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.restfulWS.mpMetrics.filter:io.openliberty.restfulWS.mpMetrics.filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.restfulWS.mpMetrics.filter@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"1c3ebb7804e34549ef2ee3537bb8909d63df2904"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.restfulWS.mpMetrics.filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.restfulWS.mpMetrics.filter:mpMetrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.restfulWS.mpMetrics.filter:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mpMetrics:io.openliberty.restfulWS.mpMetrics.filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS:io.openliberty.restfulWS.mpMetrics.filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filter:io.openliberty.restfulWS.mpMetrics.filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.restfulWS.mpMetrics.filter:filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:mpMetrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mpMetrics:mpMetrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mpMetrics:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS:mpMetrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filter:mpMetrics:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filter:restfulWS:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:mpMetrics:filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS:filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filter:filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.restfulWS.mpMetrics.filter_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.restfulWS.mpMetrics.filter"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.restfulWS.mpMetrics.filter_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.restfulWS30.jsonb20provider@1.0.89.cl240520240506-1951?package-id=250cf58a8612cb24","type":"library","group":"dev","name":"io.openliberty.restfulWS30.jsonb20provider","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.restfulWS30.jsonb20provider:io.openliberty.restfulWS30.jsonb20provider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.restfulWS30.jsonb20provider@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"63631a7d0ff7c6e9f2773553a96b2ab1e4bb7b78"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.restfulWS30.jsonb20provider:jsonb20provider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonb20provider:io.openliberty.restfulWS30.jsonb20provider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.restfulWS30.jsonb20provider:restfulWS30:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.restfulWS30.jsonb20provider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS30:io.openliberty.restfulWS30.jsonb20provider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonb20provider:jsonb20provider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jsonb20provider:restfulWS30:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jsonb20provider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS30:jsonb20provider:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:restfulWS30:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:restfulWS30:restfulWS30:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.restfulWS30.jsonb20provider_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.restfulWS30.jsonb20provider"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.restfulWS30.jsonb20provider_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.security@1.3.89.cl240520240506-1951?package-id=40aa4ce139fb7d95","type":"library","group":"dev","name":"io.openliberty.security","version":"1.3.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.security:io.openliberty.security:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.security@1.3.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"c76d7132c5a16d964b00c0764b6cb5d5046cc478"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.security:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security:security:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:io.openliberty.security:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:security:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.3.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/ibm/io.openliberty.security_1.3.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.security"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/ibm/io.openliberty.security_1.3.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.security.authentication.internal.builtin@1.0.89.cl240520240506-1951?package-id=205f7ab4c629f3b7","type":"library","group":"dev","name":"io.openliberty.security.authentication.internal.builtin","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:io.openliberty.security.authentication.internal.builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.security.authentication.internal.builtin@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"fe12cabf9f817d45bd1a16a1f64db5cacc44e5db"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:io.openliberty.security.authentication.internal.builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.security.authentication.internal.builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.security.authentication.internal.builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:io.openliberty.security.authentication.internal.builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:builtin:io.openliberty.security.authentication.internal.builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:builtin:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:builtin:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:builtin:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:builtin:builtin:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.security.authentication.internal.builtin_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.security.authentication.internal.builtin"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.security.authentication.internal.builtin_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.security.authentication.internal.filter@1.0.89.cl240520240506-1951?package-id=49ec328fe107f679","type":"library","group":"dev","name":"io.openliberty.security.authentication.internal.filter","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.security.authentication.internal.filter:io.openliberty.security.authentication.internal.filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.security.authentication.internal.filter@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"aef43816200f87f1ed5e5da7e8cf1312eab36daa"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:io.openliberty.security.authentication.internal.filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.authentication.internal.filter:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.security.authentication.internal.filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.security.authentication.internal.filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.authentication.internal.filter:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.authentication.internal.filter:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:io.openliberty.security.authentication.internal.filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filter:io.openliberty.security.authentication.internal.filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.authentication.internal.filter:filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filter:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filter:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filter:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:filter:filter:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.security.authentication.internal.filter_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.security.authentication.internal.filter"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.security.authentication.internal.filter_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.security.authentication.internal.tai@1.0.89.cl240520240506-1951?package-id=2d800761bec52aa9","type":"library","group":"dev","name":"io.openliberty.security.authentication.internal.tai","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.security.authentication.internal.tai:io.openliberty.security.authentication.internal.tai:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.security.authentication.internal.tai@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"6dd6f1ef3d94f26430efca2ff79dcf82b054e4ed"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:io.openliberty.security.authentication.internal.tai:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.authentication.internal.tai:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.security.authentication.internal.tai:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.security.authentication.internal.tai:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.authentication.internal.tai:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.authentication.internal.tai:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:io.openliberty.security.authentication.internal.tai:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.authentication.internal.tai:tai:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tai:io.openliberty.security.authentication.internal.tai:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:authentication:tai:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tai:authentication:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:tai:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:tai:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:tai:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tai:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tai:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tai:tai:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.security.authentication.internal.tai_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.security.authentication.internal.tai"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.security.authentication.internal.tai_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.security.jaas.internal.common@1.0.89.cl240520240506-1951?package-id=95359ec3f945f8aa","type":"library","group":"dev","name":"io.openliberty.security.jaas.internal.common","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.security.jaas.internal.common:io.openliberty.security.jaas.internal.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.security.jaas.internal.common@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"b11c3e705847ff5f3c982014d882847ec434eedd"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.security.jaas.internal.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.security.jaas.internal.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.jaas.internal.common:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.jaas.internal.common:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:io.openliberty.security.jaas.internal.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:io.openliberty.security.jaas.internal.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.jaas.internal.common:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.jaas.internal.common:jaas:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaas:io.openliberty.security.jaas.internal.common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jaas:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:jaas:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaas:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaas:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:jaas:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:common:jaas:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaas:common:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jaas:jaas:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.security.jaas.internal.common_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.security.jaas.internal.common"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.security.jaas.internal.common_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.security.sso.internal@1.0.89.cl240520240506-1951?package-id=db02dfa1e30803a0","type":"library","group":"dev","name":"io.openliberty.security.sso.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.security.sso.internal:io.openliberty.security.sso.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.security.sso.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"6f2f4c2c45f877691ec939e33f8f56700ac82fd4"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.security.sso.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.security.sso.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.sso.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.sso.internal:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:io.openliberty.security.sso.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.security.sso.internal:sso:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sso:io.openliberty.security.sso.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:sso:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:sso:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:sso:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sso:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sso:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sso:sso:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.security.sso.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.security.sso.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.security.sso.internal_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.session.6.0.internal@1.0.89.cl240520240506-1951?package-id=32047f4e6b66b16b","type":"library","group":"dev","name":"io.openliberty.session.6.0.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.session.6.0.internal:io.openliberty.session.6.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.session.6.0.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"8bd5db7aadd32f102d3f71fbd6a5df90bf01ec97"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.session.6.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.session.6.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.session.6.0.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.session.6.0.internal:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:session:io.openliberty.session.6.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.session.6.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:io.openliberty.session.6.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.session.6.0.internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.session.6.0.internal:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:session:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:session:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:session:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:session:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:session:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.session.6.0.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.session.6.0.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.session.6.0.internal_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.transaction@1.1.89.cl240520240506-1951?package-id=702ca52381650a19","type":"library","group":"dev","name":"io.openliberty.transaction","version":"1.1.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.transaction:io.openliberty.transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.transaction@1.1.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"fe09fe802deb377722c10d246a17bbde694e27cc"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.transaction:transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:io.openliberty.transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:transaction:1.1.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/dev/api/ibm/io.openliberty.transaction_1.1.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.transaction"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/dev/api/ibm/io.openliberty.transaction_1.1.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.transaction.internal.cdi20.jakarta@1.0.89.cl240520240506-1951?package-id=4bf931a941c62be7","type":"library","group":"dev","name":"io.openliberty.transaction.internal.cdi20.jakarta","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:io.openliberty.transaction.internal.cdi20.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.transaction.internal.cdi20.jakarta@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"9d51eaf14184bac4f734ef2171ce14780e0ba71f"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.transaction.internal.cdi20.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:io.openliberty.transaction.internal.cdi20.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.transaction.internal.cdi20.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:io.openliberty.transaction.internal.cdi20.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi20:io.openliberty.transaction.internal.cdi20.jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:cdi20:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi20:transaction:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:cdi20:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:transaction:cdi20:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi20:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:cdi20:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi20:jakarta:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jakarta:cdi20:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:cdi20:cdi20:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.transaction.internal.cdi20.jakarta_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.transaction.internal.cdi20.jakarta"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.transaction.internal.cdi20.jakarta_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.webcontainer.security.internal@1.0.89.cl240520240506-1951?package-id=4999ad0f8ebe9ccf","type":"library","group":"dev","name":"io.openliberty.webcontainer.security.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.webcontainer.security.internal:io.openliberty.webcontainer.security.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.webcontainer.security.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"915f39a280140889522221734a159452a8197dd4"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.webcontainer.security.internal:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:io.openliberty.webcontainer.security.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.webcontainer.security.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.webcontainer.security.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.webcontainer.security.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.webcontainer.security.internal:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:io.openliberty.webcontainer.security.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.webcontainer.security.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.webcontainer.security.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.webcontainer.security.internal_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.webcontainer.servlet.6.0.internal@1.0.89.cl240520240506-1951?package-id=3ab3dff26a47aac0","type":"library","group":"dev","name":"io.openliberty.webcontainer.servlet.6.0.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:io.openliberty.webcontainer.servlet.6.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.webcontainer.servlet.6.0.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"a465b689bd466acf2d3ed355529e47a7f8cd627d"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:io.openliberty.webcontainer.servlet.6.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.webcontainer.servlet.6.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.webcontainer.servlet.6.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:io.openliberty.webcontainer.servlet.6.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.webcontainer.servlet.6.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:io.openliberty.webcontainer.servlet.6.0.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.webcontainer.servlet.6.0.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.webcontainer.servlet.6.0.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.webcontainer.servlet.6.0.internal_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.webcontainer.servlet.6.0.internal.factories@1.0.89.cl240520240506-1951?package-id=d55f2dea89e23551","type":"library","group":"dev","name":"io.openliberty.webcontainer.servlet.6.0.internal.factories","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.webcontainer.servlet.6.0.internal.factories@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"c1687d5fa3c6ac14e95b0d294ffab494e8d0c3d2"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:factories:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:factories:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:factories:factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:factories:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:factories:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:webcontainer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webcontainer:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:factories:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:factories:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:factories:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:servlet:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:servlet:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:0:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:0:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:6:6:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.webcontainer.servlet.6.0.internal.factories_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.webcontainer.servlet.6.0.internal.factories"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.webcontainer.servlet.6.0.internal.factories_1.0.89.jar"}]},{"bom-ref":"pkg:maven/dev/io.openliberty.wsoc.ssl.internal@1.0.89.cl240520240506-1951?package-id=f621163200389082","type":"library","group":"dev","name":"io.openliberty.wsoc.ssl.internal","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:io.openliberty.wsoc.ssl.internal:io.openliberty.wsoc.ssl.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/io.openliberty.wsoc.ssl.internal@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"04125634d4bbcf1b213bd71b2233c90cafc977bc"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:io.openliberty.wsoc.ssl.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:io.openliberty.wsoc.ssl.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.wsoc.ssl.internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.wsoc.ssl.internal:wsoc:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsoc:io.openliberty.wsoc.ssl.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:io.openliberty.wsoc.ssl.internal:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:io.openliberty.wsoc.ssl.internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:wsoc:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openliberty:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:wsoc:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsoc:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:internal:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:internal:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsoc:wsoc:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:wsoc:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:wsoc:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ssl:ssl:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/io.openliberty.wsoc.ssl.internal_1.0.89.jar"},{"name":"syft:metadata:-:artifactID","value":"io.openliberty.wsoc.ssl.internal"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/io.openliberty.wsoc.ssl.internal_1.0.89.jar"}]},{"bom-ref":"pkg:rpm/rhel/iptables@1.8.5-11.el8_9?arch=aarch64&upstream=iptables-1.8.5-11.el8_9.src.rpm&distro=rhel-8.9&package-id=e9a86c2fc7666070","type":"library","publisher":"Red Hat, Inc.","name":"iptables","version":"1.8.5-11.el8_9","licenses":[{"license":{"name":"GPLv2 and Artistic 2.0 and ISC"}}],"cpe":"cpe:2.3:a:iptables:iptables:1.8.5-11.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/iptables@1.8.5-11.el8_9?arch=aarch64&upstream=iptables-1.8.5-11.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:iptables:1.8.5-11.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"11.el8_9"},{"name":"syft:metadata:size","value":"8964159"},{"name":"syft:metadata:sourceRpm","value":"iptables-1.8.5-11.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/iptables-libs@1.8.5-11.el8_9?arch=aarch64&upstream=iptables-1.8.5-11.el8_9.src.rpm&distro=rhel-8.9&package-id=e26e8c54aea12e32","type":"library","publisher":"Red Hat, Inc.","name":"iptables-libs","version":"1.8.5-11.el8_9","licenses":[{"license":{"name":"GPLv2 and Artistic 2.0 and ISC"}}],"cpe":"cpe:2.3:a:iptables-libs:iptables-libs:1.8.5-11.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/iptables-libs@1.8.5-11.el8_9?arch=aarch64&upstream=iptables-1.8.5-11.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:iptables-libs:iptables_libs:1.8.5-11.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:iptables_libs:iptables-libs:1.8.5-11.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:iptables_libs:iptables_libs:1.8.5-11.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:iptables:iptables-libs:1.8.5-11.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:iptables:iptables_libs:1.8.5-11.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:iptables-libs:1.8.5-11.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:iptables_libs:1.8.5-11.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"11.el8_9"},{"name":"syft:metadata:size","value":"210360"},{"name":"syft:metadata:sourceRpm","value":"iptables-1.8.5-11.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/jansson@2.14-1.el8?arch=aarch64&upstream=jansson-2.14-1.el8.src.rpm&distro=rhel-8.9&package-id=978dd5df8ee588ab","type":"library","publisher":"Red Hat, Inc.","name":"jansson","version":"2.14-1.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:jansson:jansson:2.14-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/jansson@2.14-1.el8?arch=aarch64&upstream=jansson-2.14-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:jansson:2.14-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"95919"},{"name":"syft:metadata:sourceRpm","value":"jansson-2.14-1.el8.src.rpm"}]},{"bom-ref":"pkg:generic/java/jdk@17.0.10%2B7?package-id=c445e0e56fe1c096","type":"application","name":"java/jdk","version":"17.0.10+7","cpe":"cpe:2.3:a:oracle:jdk:17.0.10\\+7:*:*:*:*:*:*:*","purl":"pkg:generic/java/jdk@17.0.10%2B7","properties":[{"name":"syft:package:foundBy","value":"binary-classifier-cataloger"},{"name":"syft:package:type","value":"binary"},{"name":"syft:package:metadataType","value":"binary-signature"},{"name":"syft:cpe23","value":"cpe:2.3:a:java\\/jdk:java\\/jdk:17.0.10\\+7:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:99cc91849fe2c2e4e0db168273c15e8818dc6abfe248058db1423898ee6ba0f3"},{"name":"syft:location:0:path","value":"/opt/java/openjdk/bin/jdb"}]},{"bom-ref":"pkg:generic/java/jre@17.0.10%2B7?package-id=9ab6a4e8460955bf","type":"application","name":"java/jre","version":"17.0.10+7","cpe":"cpe:2.3:a:oracle:openjdk:17.0.10\\+7:*:*:*:*:*:*:*","purl":"pkg:generic/java/jre@17.0.10%2B7","properties":[{"name":"syft:package:foundBy","value":"binary-classifier-cataloger"},{"name":"syft:package:type","value":"binary"},{"name":"syft:package:metadataType","value":"binary-signature"},{"name":"syft:cpe23","value":"cpe:2.3:a:java\\/jre:java\\/jre:17.0.10\\+7:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:99cc91849fe2c2e4e0db168273c15e8818dc6abfe248058db1423898ee6ba0f3"},{"name":"syft:location:0:path","value":"/opt/java/openjdk/bin/java"}]},{"bom-ref":"pkg:maven/jrt-fs/jrt-fs@17.0.10?package-id=cf9f6ca77d7ec3c7","type":"library","name":"jrt-fs","version":"17.0.10","cpe":"cpe:2.3:a:oracle-corporation:jrt-fs:17.0.10:*:*:*:*:*:*:*","purl":"pkg:maven/jrt-fs/jrt-fs@17.0.10","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"4e5f597e958bc837810f682439f07458009ab806"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:oracle-corporation:jrt_fs:17.0.10:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:oracle_corporation:jrt-fs:17.0.10:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:oracle_corporation:jrt_fs:17.0.10:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm-corporation:jrt-fs:17.0.10:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm-corporation:jrt_fs:17.0.10:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm_corporation:jrt-fs:17.0.10:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm_corporation:jrt_fs:17.0.10:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jrt-fs:jrt-fs:17.0.10:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jrt-fs:jrt_fs:17.0.10:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jrt_fs:jrt-fs:17.0.10:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jrt_fs:jrt_fs:17.0.10:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jrt:jrt-fs:17.0.10:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:jrt:jrt_fs:17.0.10:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:99cc91849fe2c2e4e0db168273c15e8818dc6abfe248058db1423898ee6ba0f3"},{"name":"syft:location:0:path","value":"/opt/java/openjdk/lib/jrt-fs.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/java/openjdk/lib/jrt-fs.jar"}]},{"bom-ref":"pkg:rpm/rhel/json-c@0.13.1-3.el8?arch=aarch64&upstream=json-c-0.13.1-3.el8.src.rpm&distro=rhel-8.9&package-id=4d88cce38143b024","type":"library","publisher":"Red Hat, Inc.","name":"json-c","version":"0.13.1-3.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:json-c:json-c:0.13.1-3.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/json-c@0.13.1-3.el8?arch=aarch64&upstream=json-c-0.13.1-3.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:json-c:json_c:0.13.1-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json_c:json-c:0.13.1-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json_c:json_c:0.13.1-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:json-c:0.13.1-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:json_c:0.13.1-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:json-c:0.13.1-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:json_c:0.13.1-3.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8"},{"name":"syft:metadata:size","value":"73170"},{"name":"syft:metadata:sourceRpm","value":"json-c-0.13.1-3.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/json-glib@1.4.4-1.el8?arch=aarch64&upstream=json-glib-1.4.4-1.el8.src.rpm&distro=rhel-8.9&package-id=b4aeaa6c9669ab81","type":"library","publisher":"Red Hat, Inc.","name":"json-glib","version":"1.4.4-1.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:json-glib:json-glib:1.4.4-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/json-glib@1.4.4-1.el8?arch=aarch64&upstream=json-glib-1.4.4-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:json-glib:json_glib:1.4.4-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json_glib:json-glib:1.4.4-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json_glib:json_glib:1.4.4-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:json-glib:1.4.4-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:json_glib:1.4.4-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:json-glib:1.4.4-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:json:json_glib:1.4.4-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"562187"},{"name":"syft:metadata:sourceRpm","value":"json-glib-1.4.4-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/keyutils-libs@1.5.10-9.el8?arch=aarch64&upstream=keyutils-1.5.10-9.el8.src.rpm&distro=rhel-8.9&package-id=ec4d43d9b8532d45","type":"library","publisher":"Red Hat, Inc.","name":"keyutils-libs","version":"1.5.10-9.el8","licenses":[{"license":{"name":"GPLv2+ and LGPLv2+"}}],"cpe":"cpe:2.3:a:keyutils-libs:keyutils-libs:1.5.10-9.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/keyutils-libs@1.5.10-9.el8?arch=aarch64&upstream=keyutils-1.5.10-9.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:keyutils-libs:keyutils_libs:1.5.10-9.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:keyutils_libs:keyutils-libs:1.5.10-9.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:keyutils_libs:keyutils_libs:1.5.10-9.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:keyutils:keyutils-libs:1.5.10-9.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:keyutils:keyutils_libs:1.5.10-9.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:keyutils-libs:1.5.10-9.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:keyutils_libs:1.5.10-9.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"9.el8"},{"name":"syft:metadata:size","value":"96870"},{"name":"syft:metadata:sourceRpm","value":"keyutils-1.5.10-9.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/kmod-libs@25-19.el8?arch=aarch64&upstream=kmod-25-19.el8.src.rpm&distro=rhel-8.9&package-id=3e833ab13e3e9c55","type":"library","publisher":"Red Hat, Inc.","name":"kmod-libs","version":"25-19.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:kmod-libs:kmod-libs:25-19.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/kmod-libs@25-19.el8?arch=aarch64&upstream=kmod-25-19.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:kmod-libs:kmod_libs:25-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kmod_libs:kmod-libs:25-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kmod_libs:kmod_libs:25-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:kmod-libs:25-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:kmod_libs:25-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kmod:kmod-libs:25-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kmod:kmod_libs:25-19.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"19.el8"},{"name":"syft:metadata:size","value":"163144"},{"name":"syft:metadata:sourceRpm","value":"kmod-25-19.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/krb5-libs@1.18.2-26.el8_9?arch=aarch64&upstream=krb5-1.18.2-26.el8_9.src.rpm&distro=rhel-8.9&package-id=f61cb71843fb1b3a","type":"library","publisher":"Red Hat, Inc.","name":"krb5-libs","version":"1.18.2-26.el8_9","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:krb5-libs:krb5-libs:1.18.2-26.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/krb5-libs@1.18.2-26.el8_9?arch=aarch64&upstream=krb5-1.18.2-26.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:krb5-libs:krb5_libs:1.18.2-26.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:krb5_libs:krb5-libs:1.18.2-26.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:krb5_libs:krb5_libs:1.18.2-26.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:krb5-libs:1.18.2-26.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:krb5_libs:1.18.2-26.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:krb5:krb5-libs:1.18.2-26.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:krb5:krb5_libs:1.18.2-26.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"26.el8_9"},{"name":"syft:metadata:size","value":"2464339"},{"name":"syft:metadata:sourceRpm","value":"krb5-1.18.2-26.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/langpacks-en@1.0-12.el8?arch=noarch&upstream=langpacks-1.0-12.el8.src.rpm&distro=rhel-8.9&package-id=50d705cb1644d1cf","type":"library","publisher":"Red Hat, Inc.","name":"langpacks-en","version":"1.0-12.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:langpacks-en:langpacks-en:1.0-12.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/langpacks-en@1.0-12.el8?arch=noarch&upstream=langpacks-1.0-12.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:langpacks-en:langpacks_en:1.0-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:langpacks_en:langpacks-en:1.0-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:langpacks_en:langpacks_en:1.0-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:langpacks:langpacks-en:1.0-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:langpacks:langpacks_en:1.0-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:langpacks-en:1.0-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:langpacks_en:1.0-12.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"12.el8"},{"name":"syft:metadata:size","value":"400"},{"name":"syft:metadata:sourceRpm","value":"langpacks-1.0-12.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libacl@2.2.53-1.el8?arch=aarch64&upstream=acl-2.2.53-1.el8.src.rpm&distro=rhel-8.9&package-id=8586aea19171a8b6","type":"library","publisher":"Red Hat, Inc.","name":"libacl","version":"2.2.53-1.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libacl:libacl:2.2.53-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libacl@2.2.53-1.el8?arch=aarch64&upstream=acl-2.2.53-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libacl:2.2.53-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"85472"},{"name":"syft:metadata:sourceRpm","value":"acl-2.2.53-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libarchive@3.3.3-5.el8?arch=aarch64&upstream=libarchive-3.3.3-5.el8.src.rpm&distro=rhel-8.9&package-id=baa08fa82c51c83f","type":"library","publisher":"Red Hat, Inc.","name":"libarchive","version":"3.3.3-5.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:libarchive:libarchive:3.3.3-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libarchive@3.3.3-5.el8?arch=aarch64&upstream=libarchive-3.3.3-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libarchive:3.3.3-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"862599"},{"name":"syft:metadata:sourceRpm","value":"libarchive-3.3.3-5.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libassuan@2.5.1-3.el8?arch=aarch64&upstream=libassuan-2.5.1-3.el8.src.rpm&distro=rhel-8.9&package-id=b0b510dbeef9d748","type":"library","publisher":"Red Hat, Inc.","name":"libassuan","version":"2.5.1-3.el8","licenses":[{"license":{"name":"LGPLv2+ and GPLv3+"}}],"cpe":"cpe:2.3:a:libassuan:libassuan:2.5.1-3.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libassuan@2.5.1-3.el8?arch=aarch64&upstream=libassuan-2.5.1-3.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libassuan:2.5.1-3.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8"},{"name":"syft:metadata:size","value":"253019"},{"name":"syft:metadata:sourceRpm","value":"libassuan-2.5.1-3.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libattr@2.4.48-3.el8?arch=aarch64&upstream=attr-2.4.48-3.el8.src.rpm&distro=rhel-8.9&package-id=919ea039a5666c8f","type":"library","publisher":"Red Hat, Inc.","name":"libattr","version":"2.4.48-3.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libattr:libattr:2.4.48-3.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libattr@2.4.48-3.el8?arch=aarch64&upstream=attr-2.4.48-3.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libattr:2.4.48-3.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8"},{"name":"syft:metadata:size","value":"71474"},{"name":"syft:metadata:sourceRpm","value":"attr-2.4.48-3.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libblkid@2.32.1-44.el8_9.1?arch=aarch64&upstream=util-linux-2.32.1-44.el8_9.1.src.rpm&distro=rhel-8.9&package-id=3803d6ce45bcf219","type":"library","publisher":"Red Hat, Inc.","name":"libblkid","version":"2.32.1-44.el8_9.1","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libblkid:libblkid:2.32.1-44.el8_9.1:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libblkid@2.32.1-44.el8_9.1?arch=aarch64&upstream=util-linux-2.32.1-44.el8_9.1.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libblkid:2.32.1-44.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"44.el8_9.1"},{"name":"syft:metadata:size","value":"405288"},{"name":"syft:metadata:sourceRpm","value":"util-linux-2.32.1-44.el8_9.1.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libcap@2.48-6.el8_9?arch=aarch64&upstream=libcap-2.48-6.el8_9.src.rpm&distro=rhel-8.9&package-id=69651d43a9055acf","type":"library","publisher":"Red Hat, Inc.","name":"libcap","version":"2.48-6.el8_9","licenses":[{"license":{"name":"BSD or GPLv2"}}],"cpe":"cpe:2.3:a:libcap:libcap:2.48-6.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libcap@2.48-6.el8_9?arch=aarch64&upstream=libcap-2.48-6.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libcap:2.48-6.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"6.el8_9"},{"name":"syft:metadata:size","value":"514181"},{"name":"syft:metadata:sourceRpm","value":"libcap-2.48-6.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libcap-ng@0.7.11-1.el8?arch=aarch64&upstream=libcap-ng-0.7.11-1.el8.src.rpm&distro=rhel-8.9&package-id=923c00cf49cbf171","type":"library","publisher":"Red Hat, Inc.","name":"libcap-ng","version":"0.7.11-1.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libcap-ng:libcap-ng:0.7.11-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libcap-ng@0.7.11-1.el8?arch=aarch64&upstream=libcap-ng-0.7.11-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:libcap-ng:libcap_ng:0.7.11-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libcap_ng:libcap-ng:0.7.11-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libcap_ng:libcap_ng:0.7.11-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libcap:libcap-ng:0.7.11-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libcap:libcap_ng:0.7.11-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libcap-ng:0.7.11-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libcap_ng:0.7.11-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"95846"},{"name":"syft:metadata:sourceRpm","value":"libcap-ng-0.7.11-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libcom_err@1.45.6-5.el8?arch=aarch64&upstream=e2fsprogs-1.45.6-5.el8.src.rpm&distro=rhel-8.9&package-id=e9ab25e1dc70a482","type":"library","publisher":"Red Hat, Inc.","name":"libcom_err","version":"1.45.6-5.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:libcom-err:libcom-err:1.45.6-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libcom_err@1.45.6-5.el8?arch=aarch64&upstream=e2fsprogs-1.45.6-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:libcom-err:libcom_err:1.45.6-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libcom_err:libcom-err:1.45.6-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libcom_err:libcom_err:1.45.6-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libcom:libcom-err:1.45.6-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libcom:libcom_err:1.45.6-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libcom-err:1.45.6-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libcom_err:1.45.6-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"114505"},{"name":"syft:metadata:sourceRpm","value":"e2fsprogs-1.45.6-5.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/libcomps@0.1.18?package-id=bb313f76db2962b1","type":"library","author":"RPM Software Management ","name":"libcomps","version":"0.1.18","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:rpm_software_management_project:python-libcomps:0.1.18:*:*:*:*:*:*:*","purl":"pkg:pypi/libcomps@0.1.18","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_software_management_project:python_libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_software_managementproject:python-libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_software_managementproject:python_libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_software_management_project:libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_software_management:python-libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_software_management:python_libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_software_managementproject:libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_ecosystem_project:python-libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_ecosystem_project:python_libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_ecosystemproject:python-libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_ecosystemproject:python_libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_software_management:libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-libcomps:python-libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-libcomps:python_libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_libcomps:python-libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_libcomps:python_libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_ecosystem_project:libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm-ecosystem:python-libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm-ecosystem:python_libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_ecosystem:python-libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_ecosystem:python_libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_ecosystemproject:libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libcomps:python-libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libcomps:python_libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-libcomps:libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_libcomps:libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm-ecosystem:libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_ecosystem:libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libcomps:libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:libcomps:0.1.18:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib64/python3.6/site-packages/libcomps-0.1.18-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib64/python3.6/site-packages/libcomps-0.1.18-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/libcomps@0.1.18-1.el8?arch=aarch64&upstream=libcomps-0.1.18-1.el8.src.rpm&distro=rhel-8.9&package-id=de1443357fea9428","type":"library","publisher":"Red Hat, Inc.","name":"libcomps","version":"0.1.18-1.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:libcomps:libcomps:0.1.18-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libcomps@0.1.18-1.el8?arch=aarch64&upstream=libcomps-0.1.18-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libcomps:0.1.18-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"227012"},{"name":"syft:metadata:sourceRpm","value":"libcomps-0.1.18-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libcurl@7.61.1-33.el8_9.5?arch=aarch64&upstream=curl-7.61.1-33.el8_9.5.src.rpm&distro=rhel-8.9&package-id=3be921c9fafa709d","type":"library","publisher":"Red Hat, Inc.","name":"libcurl","version":"7.61.1-33.el8_9.5","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:libcurl:libcurl:7.61.1-33.el8_9.5:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libcurl@7.61.1-33.el8_9.5?arch=aarch64&upstream=curl-7.61.1-33.el8_9.5.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libcurl:7.61.1-33.el8_9.5:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"33.el8_9.5"},{"name":"syft:metadata:size","value":"605560"},{"name":"syft:metadata:sourceRpm","value":"curl-7.61.1-33.el8_9.5.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libdb@5.3.28-42.el8_4?arch=aarch64&upstream=libdb-5.3.28-42.el8_4.src.rpm&distro=rhel-8.9&package-id=ccdfe075e638508c","type":"library","publisher":"Red Hat, Inc.","name":"libdb","version":"5.3.28-42.el8_4","licenses":[{"license":{"name":"BSD and LGPLv2 and Sleepycat"}}],"cpe":"cpe:2.3:a:redhat:libdb:5.3.28-42.el8_4:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libdb@5.3.28-42.el8_4?arch=aarch64&upstream=libdb-5.3.28-42.el8_4.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:libdb:libdb:5.3.28-42.el8_4:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"42.el8_4"},{"name":"syft:metadata:size","value":"1759432"},{"name":"syft:metadata:sourceRpm","value":"libdb-5.3.28-42.el8_4.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libdb-utils@5.3.28-42.el8_4?arch=aarch64&upstream=libdb-5.3.28-42.el8_4.src.rpm&distro=rhel-8.9&package-id=3e56e1b9762578ca","type":"library","publisher":"Red Hat, Inc.","name":"libdb-utils","version":"5.3.28-42.el8_4","licenses":[{"license":{"name":"BSD and LGPLv2 and Sleepycat"}}],"cpe":"cpe:2.3:a:libdb-utils:libdb-utils:5.3.28-42.el8_4:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libdb-utils@5.3.28-42.el8_4?arch=aarch64&upstream=libdb-5.3.28-42.el8_4.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:libdb-utils:libdb_utils:5.3.28-42.el8_4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libdb_utils:libdb-utils:5.3.28-42.el8_4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libdb_utils:libdb_utils:5.3.28-42.el8_4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libdb-utils:5.3.28-42.el8_4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libdb_utils:5.3.28-42.el8_4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libdb:libdb-utils:5.3.28-42.el8_4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libdb:libdb_utils:5.3.28-42.el8_4:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"42.el8_4"},{"name":"syft:metadata:size","value":"1077375"},{"name":"syft:metadata:sourceRpm","value":"libdb-5.3.28-42.el8_4.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libdnf@0.63.0-17.el8_9?arch=aarch64&upstream=libdnf-0.63.0-17.el8_9.src.rpm&distro=rhel-8.9&package-id=75a263790697f969","type":"library","publisher":"Red Hat, Inc.","name":"libdnf","version":"0.63.0-17.el8_9","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libdnf:libdnf:0.63.0-17.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libdnf@0.63.0-17.el8_9?arch=aarch64&upstream=libdnf-0.63.0-17.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libdnf:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"17.el8_9"},{"name":"syft:metadata:size","value":"2289502"},{"name":"syft:metadata:sourceRpm","value":"libdnf-0.63.0-17.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libfdisk@2.32.1-44.el8_9.1?arch=aarch64&upstream=util-linux-2.32.1-44.el8_9.1.src.rpm&distro=rhel-8.9&package-id=df3fb9a43ee30bc4","type":"library","publisher":"Red Hat, Inc.","name":"libfdisk","version":"2.32.1-44.el8_9.1","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libfdisk:libfdisk:2.32.1-44.el8_9.1:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libfdisk@2.32.1-44.el8_9.1?arch=aarch64&upstream=util-linux-2.32.1-44.el8_9.1.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libfdisk:2.32.1-44.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"44.el8_9.1"},{"name":"syft:metadata:size","value":"438434"},{"name":"syft:metadata:sourceRpm","value":"util-linux-2.32.1-44.el8_9.1.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libffi@3.1-24.el8?arch=aarch64&upstream=libffi-3.1-24.el8.src.rpm&distro=rhel-8.9&package-id=0ec8a7212c6c6ee4","type":"library","publisher":"Red Hat, Inc.","name":"libffi","version":"3.1-24.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:libffi:libffi:3.1-24.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libffi@3.1-24.el8?arch=aarch64&upstream=libffi-3.1-24.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libffi:3.1-24.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"24.el8"},{"name":"syft:metadata:size","value":"86156"},{"name":"syft:metadata:sourceRpm","value":"libffi-3.1-24.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libgcc@8.5.0-20.el8?arch=aarch64&upstream=gcc-8.5.0-20.el8.src.rpm&distro=rhel-8.9&package-id=0b8a1c747429f19c","type":"library","publisher":"Red Hat, Inc.","name":"libgcc","version":"8.5.0-20.el8","licenses":[{"license":{"name":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD"}}],"cpe":"cpe:2.3:a:libgcc:libgcc:8.5.0-20.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libgcc@8.5.0-20.el8?arch=aarch64&upstream=gcc-8.5.0-20.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libgcc:8.5.0-20.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"20.el8"},{"name":"syft:metadata:size","value":"226448"},{"name":"syft:metadata:sourceRpm","value":"gcc-8.5.0-20.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libgcrypt@1.8.5-7.el8_6?arch=aarch64&upstream=libgcrypt-1.8.5-7.el8_6.src.rpm&distro=rhel-8.9&package-id=614d65ec60739ece","type":"library","publisher":"Red Hat, Inc.","name":"libgcrypt","version":"1.8.5-7.el8_6","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libgcrypt:libgcrypt:1.8.5-7.el8_6:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libgcrypt@1.8.5-7.el8_6?arch=aarch64&upstream=libgcrypt-1.8.5-7.el8_6.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libgcrypt:1.8.5-7.el8_6:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"7.el8_6"},{"name":"syft:metadata:size","value":"901774"},{"name":"syft:metadata:sourceRpm","value":"libgcrypt-1.8.5-7.el8_6.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libgpg-error@1.31-1.el8?arch=aarch64&upstream=libgpg-error-1.31-1.el8.src.rpm&distro=rhel-8.9&package-id=7747460fcd4e659a","type":"library","publisher":"Red Hat, Inc.","name":"libgpg-error","version":"1.31-1.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libgpg-error:libgpg-error:1.31-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libgpg-error@1.31-1.el8?arch=aarch64&upstream=libgpg-error-1.31-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:libgpg-error:libgpg_error:1.31-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libgpg_error:libgpg-error:1.31-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libgpg_error:libgpg_error:1.31-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libgpg:libgpg-error:1.31-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libgpg:libgpg_error:1.31-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libgpg-error:1.31-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libgpg_error:1.31-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"936290"},{"name":"syft:metadata:sourceRpm","value":"libgpg-error-1.31-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libibverbs@46.0-1.el8.1?arch=aarch64&upstream=rdma-core-46.0-1.el8.1.src.rpm&distro=rhel-8.9&package-id=2975434ab34c5d57","type":"library","publisher":"Red Hat, Inc.","name":"libibverbs","version":"46.0-1.el8.1","licenses":[{"license":{"name":"GPLv2 or BSD"}}],"cpe":"cpe:2.3:a:libibverbs:libibverbs:46.0-1.el8.1:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libibverbs@46.0-1.el8.1?arch=aarch64&upstream=rdma-core-46.0-1.el8.1.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libibverbs:46.0-1.el8.1:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8.1"},{"name":"syft:metadata:size","value":"1456799"},{"name":"syft:metadata:sourceRpm","value":"rdma-core-46.0-1.el8.1.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libidn2@2.2.0-1.el8?arch=aarch64&upstream=libidn2-2.2.0-1.el8.src.rpm&distro=rhel-8.9&package-id=55d24a322a65513d","type":"library","publisher":"Red Hat, Inc.","name":"libidn2","version":"2.2.0-1.el8","licenses":[{"license":{"name":"(GPLv2+ or LGPLv3+) and GPLv3+"}}],"cpe":"cpe:2.3:a:libidn2:libidn2:2.2.0-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libidn2@2.2.0-1.el8?arch=aarch64&upstream=libidn2-2.2.0-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libidn2:2.2.0-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"295418"},{"name":"syft:metadata:sourceRpm","value":"libidn2-2.2.0-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libksba@1.3.5-9.el8_7?arch=aarch64&upstream=libksba-1.3.5-9.el8_7.src.rpm&distro=rhel-8.9&package-id=4563c43d60ff55f3","type":"library","publisher":"Red Hat, Inc.","name":"libksba","version":"1.3.5-9.el8_7","licenses":[{"license":{"name":"(LGPLv3+ or GPLv2+) and GPLv3+"}}],"cpe":"cpe:2.3:a:libksba:libksba:1.3.5-9.el8_7:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libksba@1.3.5-9.el8_7?arch=aarch64&upstream=libksba-1.3.5-9.el8_7.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libksba:1.3.5-9.el8_7:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"9.el8_7"},{"name":"syft:metadata:size","value":"366631"},{"name":"syft:metadata:sourceRpm","value":"libksba-1.3.5-9.el8_7.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libmnl@1.0.4-6.el8?arch=aarch64&upstream=libmnl-1.0.4-6.el8.src.rpm&distro=rhel-8.9&package-id=1e56b41ce72d53ad","type":"library","publisher":"Red Hat, Inc.","name":"libmnl","version":"1.0.4-6.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libmnl:libmnl:1.0.4-6.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libmnl@1.0.4-6.el8?arch=aarch64&upstream=libmnl-1.0.4-6.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libmnl:1.0.4-6.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"6.el8"},{"name":"syft:metadata:size","value":"98071"},{"name":"syft:metadata:sourceRpm","value":"libmnl-1.0.4-6.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libmodulemd@2.13.0-1.el8?arch=aarch64&upstream=libmodulemd-2.13.0-1.el8.src.rpm&distro=rhel-8.9&package-id=1a9cc9ac1f618f8d","type":"library","publisher":"Red Hat, Inc.","name":"libmodulemd","version":"2.13.0-1.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:libmodulemd:libmodulemd:2.13.0-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libmodulemd@2.13.0-1.el8?arch=aarch64&upstream=libmodulemd-2.13.0-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libmodulemd:2.13.0-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"736314"},{"name":"syft:metadata:sourceRpm","value":"libmodulemd-2.13.0-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libmount@2.32.1-44.el8_9.1?arch=aarch64&upstream=util-linux-2.32.1-44.el8_9.1.src.rpm&distro=rhel-8.9&package-id=b00cb1c4f664e297","type":"library","publisher":"Red Hat, Inc.","name":"libmount","version":"2.32.1-44.el8_9.1","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libmount:libmount:2.32.1-44.el8_9.1:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libmount@2.32.1-44.el8_9.1?arch=aarch64&upstream=util-linux-2.32.1-44.el8_9.1.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libmount:2.32.1-44.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"44.el8_9.1"},{"name":"syft:metadata:size","value":"430906"},{"name":"syft:metadata:sourceRpm","value":"util-linux-2.32.1-44.el8_9.1.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libnet@1.1.6-15.el8?arch=aarch64&upstream=libnet-1.1.6-15.el8.src.rpm&distro=rhel-8.9&package-id=5373fd8781b1e73e","type":"library","publisher":"Red Hat, Inc.","name":"libnet","version":"1.1.6-15.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:libnet:libnet:1.1.6-15.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libnet@1.1.6-15.el8?arch=aarch64&upstream=libnet-1.1.6-15.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libnet:1.1.6-15.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"15.el8"},{"name":"syft:metadata:size","value":"201238"},{"name":"syft:metadata:sourceRpm","value":"libnet-1.1.6-15.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libnetfilter_conntrack@1.0.6-5.el8?arch=aarch64&upstream=libnetfilter_conntrack-1.0.6-5.el8.src.rpm&distro=rhel-8.9&package-id=05c93ddf7d9282f4","type":"library","publisher":"Red Hat, Inc.","name":"libnetfilter_conntrack","version":"1.0.6-5.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:libnetfilter-conntrack:libnetfilter-conntrack:1.0.6-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libnetfilter_conntrack@1.0.6-5.el8?arch=aarch64&upstream=libnetfilter_conntrack-1.0.6-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:libnetfilter-conntrack:libnetfilter_conntrack:1.0.6-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libnetfilter_conntrack:libnetfilter-conntrack:1.0.6-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libnetfilter_conntrack:libnetfilter_conntrack:1.0.6-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libnetfilter:libnetfilter-conntrack:1.0.6-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libnetfilter:libnetfilter_conntrack:1.0.6-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libnetfilter-conntrack:1.0.6-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libnetfilter_conntrack:1.0.6-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"164958"},{"name":"syft:metadata:sourceRpm","value":"libnetfilter_conntrack-1.0.6-5.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libnfnetlink@1.0.1-13.el8?arch=aarch64&upstream=libnfnetlink-1.0.1-13.el8.src.rpm&distro=rhel-8.9&package-id=01fd475e67d3a265","type":"library","publisher":"Red Hat, Inc.","name":"libnfnetlink","version":"1.0.1-13.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:libnfnetlink:libnfnetlink:1.0.1-13.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libnfnetlink@1.0.1-13.el8?arch=aarch64&upstream=libnfnetlink-1.0.1-13.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libnfnetlink:1.0.1-13.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"13.el8"},{"name":"syft:metadata:size","value":"88691"},{"name":"syft:metadata:sourceRpm","value":"libnfnetlink-1.0.1-13.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libnftnl@1.2.2-3.el8?arch=aarch64&upstream=libnftnl-1.2.2-3.el8.src.rpm&distro=rhel-8.9&package-id=593c730fff55f8de","type":"library","publisher":"Red Hat, Inc.","name":"libnftnl","version":"1.2.2-3.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:libnftnl:libnftnl:1.2.2-3.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libnftnl@1.2.2-3.el8?arch=aarch64&upstream=libnftnl-1.2.2-3.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libnftnl:1.2.2-3.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8"},{"name":"syft:metadata:size","value":"292016"},{"name":"syft:metadata:sourceRpm","value":"libnftnl-1.2.2-3.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libnghttp2@1.33.0-5.el8_9?arch=aarch64&upstream=nghttp2-1.33.0-5.el8_9.src.rpm&distro=rhel-8.9&package-id=49ecfdf148dfb950","type":"library","publisher":"Red Hat, Inc.","name":"libnghttp2","version":"1.33.0-5.el8_9","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:libnghttp2:libnghttp2:1.33.0-5.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libnghttp2@1.33.0-5.el8_9?arch=aarch64&upstream=nghttp2-1.33.0-5.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libnghttp2:1.33.0-5.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5.el8_9"},{"name":"syft:metadata:size","value":"213052"},{"name":"syft:metadata:sourceRpm","value":"nghttp2-1.33.0-5.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libnl3@3.7.0-1.el8?arch=aarch64&upstream=libnl3-3.7.0-1.el8.src.rpm&distro=rhel-8.9&package-id=04cf389b646599e6","type":"library","publisher":"Red Hat, Inc.","name":"libnl3","version":"3.7.0-1.el8","licenses":[{"license":{"name":"LGPLv2"}}],"cpe":"cpe:2.3:a:libnl3:libnl3:3.7.0-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libnl3@3.7.0-1.el8?arch=aarch64&upstream=libnl3-3.7.0-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libnl3:3.7.0-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"1270560"},{"name":"syft:metadata:sourceRpm","value":"libnl3-3.7.0-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libnsl2@1.2.0-2.20180605git4a062cf.el8?arch=aarch64&upstream=libnsl2-1.2.0-2.20180605git4a062cf.el8.src.rpm&distro=rhel-8.9&package-id=c66c0294cdc738cc","type":"library","publisher":"Red Hat, Inc.","name":"libnsl2","version":"1.2.0-2.20180605git4a062cf.el8","licenses":[{"license":{"name":"BSD and LGPLv2+"}}],"cpe":"cpe:2.3:a:libnsl2:libnsl2:1.2.0-2.20180605git4a062cf.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libnsl2@1.2.0-2.20180605git4a062cf.el8?arch=aarch64&upstream=libnsl2-1.2.0-2.20180605git4a062cf.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libnsl2:1.2.0-2.20180605git4a062cf.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"2.20180605git4a062cf.el8"},{"name":"syft:metadata:size","value":"177762"},{"name":"syft:metadata:sourceRpm","value":"libnsl2-1.2.0-2.20180605git4a062cf.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libpcap@1.9.1-5.el8?arch=aarch64&epoch=14&upstream=libpcap-1.9.1-5.el8.src.rpm&distro=rhel-8.9&package-id=196e0e266ebc26c9","type":"library","publisher":"Red Hat, Inc.","name":"libpcap","version":"14:1.9.1-5.el8","licenses":[{"license":{"name":"BSD with advertising"}}],"cpe":"cpe:2.3:a:libpcap:libpcap:14\\:1.9.1-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libpcap@1.9.1-5.el8?arch=aarch64&epoch=14&upstream=libpcap-1.9.1-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libpcap:14\\:1.9.1-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"14"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"408890"},{"name":"syft:metadata:sourceRpm","value":"libpcap-1.9.1-5.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libpng@1.6.34-5.el8?arch=aarch64&epoch=2&upstream=libpng-1.6.34-5.el8.src.rpm&distro=rhel-8.9&package-id=7d2cdba5b2a948dc","type":"library","publisher":"Red Hat, Inc.","name":"libpng","version":"2:1.6.34-5.el8","licenses":[{"license":{"id":"Zlib"}}],"cpe":"cpe:2.3:a:libpng:libpng:2\\:1.6.34-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libpng@1.6.34-5.el8?arch=aarch64&epoch=2&upstream=libpng-1.6.34-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libpng:2\\:1.6.34-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"2"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"217904"},{"name":"syft:metadata:sourceRpm","value":"libpng-1.6.34-5.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libpsl@0.20.2-6.el8?arch=aarch64&upstream=libpsl-0.20.2-6.el8.src.rpm&distro=rhel-8.9&package-id=ebf4bbbba9c59bac","type":"library","publisher":"Red Hat, Inc.","name":"libpsl","version":"0.20.2-6.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:libpsl:libpsl:0.20.2-6.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libpsl@0.20.2-6.el8?arch=aarch64&upstream=libpsl-0.20.2-6.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libpsl:0.20.2-6.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"6.el8"},{"name":"syft:metadata:size","value":"70220"},{"name":"syft:metadata:sourceRpm","value":"libpsl-0.20.2-6.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libpwquality@1.4.4-6.el8?arch=aarch64&upstream=libpwquality-1.4.4-6.el8.src.rpm&distro=rhel-8.9&package-id=3397aef3468ecf14","type":"library","publisher":"Red Hat, Inc.","name":"libpwquality","version":"1.4.4-6.el8","licenses":[{"license":{"name":"BSD or GPLv2+"}}],"cpe":"cpe:2.3:a:libpwquality:libpwquality:1.4.4-6.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libpwquality@1.4.4-6.el8?arch=aarch64&upstream=libpwquality-1.4.4-6.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libpwquality:1.4.4-6.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"6.el8"},{"name":"syft:metadata:size","value":"612750"},{"name":"syft:metadata:sourceRpm","value":"libpwquality-1.4.4-6.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/librepo@1.14.2-4.el8?arch=aarch64&upstream=librepo-1.14.2-4.el8.src.rpm&distro=rhel-8.9&package-id=3c2f6b27b7d47d71","type":"library","publisher":"Red Hat, Inc.","name":"librepo","version":"1.14.2-4.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:librepo:librepo:1.14.2-4.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/librepo@1.14.2-4.el8?arch=aarch64&upstream=librepo-1.14.2-4.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:librepo:1.14.2-4.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"4.el8"},{"name":"syft:metadata:size","value":"233436"},{"name":"syft:metadata:sourceRpm","value":"librepo-1.14.2-4.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libreport-filesystem@2.9.5-15.el8?arch=aarch64&upstream=libreport-2.9.5-15.el8.src.rpm&distro=rhel-8.9&package-id=7f4f6dff21c06351","type":"library","publisher":"Red Hat, Inc.","name":"libreport-filesystem","version":"2.9.5-15.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:libreport-filesystem:libreport-filesystem:2.9.5-15.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libreport-filesystem@2.9.5-15.el8?arch=aarch64&upstream=libreport-2.9.5-15.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:libreport-filesystem:libreport_filesystem:2.9.5-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libreport_filesystem:libreport-filesystem:2.9.5-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libreport_filesystem:libreport_filesystem:2.9.5-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libreport:libreport-filesystem:2.9.5-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libreport:libreport_filesystem:2.9.5-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libreport-filesystem:2.9.5-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libreport_filesystem:2.9.5-15.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"15.el8"},{"name":"syft:metadata:size","value":"0"},{"name":"syft:metadata:sourceRpm","value":"libreport-2.9.5-15.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/librhsm@0.0.3-5.el8?arch=aarch64&upstream=librhsm-0.0.3-5.el8.src.rpm&distro=rhel-8.9&package-id=e3c0d3478b7b8e51","type":"library","publisher":"Red Hat, Inc.","name":"librhsm","version":"0.0.3-5.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:librhsm:librhsm:0.0.3-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/librhsm@0.0.3-5.el8?arch=aarch64&upstream=librhsm-0.0.3-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:librhsm:0.0.3-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"96568"},{"name":"syft:metadata:sourceRpm","value":"librhsm-0.0.3-5.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libseccomp@2.5.2-1.el8?arch=aarch64&upstream=libseccomp-2.5.2-1.el8.src.rpm&distro=rhel-8.9&package-id=28b85dd04c7d601b","type":"library","publisher":"Red Hat, Inc.","name":"libseccomp","version":"2.5.2-1.el8","licenses":[{"license":{"name":"LGPLv2"}}],"cpe":"cpe:2.3:a:libseccomp:libseccomp:2.5.2-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libseccomp@2.5.2-1.el8?arch=aarch64&upstream=libseccomp-2.5.2-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libseccomp:2.5.2-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"177781"},{"name":"syft:metadata:sourceRpm","value":"libseccomp-2.5.2-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libselinux@2.9-8.el8?arch=aarch64&upstream=libselinux-2.9-8.el8.src.rpm&distro=rhel-8.9&package-id=7172b0c46cc7babf","type":"library","publisher":"Red Hat, Inc.","name":"libselinux","version":"2.9-8.el8","licenses":[{"license":{"name":"Public Domain"}}],"cpe":"cpe:2.3:a:libselinux:libselinux:2.9-8.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libselinux@2.9-8.el8?arch=aarch64&upstream=libselinux-2.9-8.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libselinux:2.9-8.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"8.el8"},{"name":"syft:metadata:size","value":"206336"},{"name":"syft:metadata:sourceRpm","value":"libselinux-2.9-8.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libsemanage@2.9-9.el8_6?arch=aarch64&upstream=libsemanage-2.9-9.el8_6.src.rpm&distro=rhel-8.9&package-id=48b6249b748b645e","type":"library","publisher":"Red Hat, Inc.","name":"libsemanage","version":"2.9-9.el8_6","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libsemanage:libsemanage:2.9-9.el8_6:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libsemanage@2.9-9.el8_6?arch=aarch64&upstream=libsemanage-2.9-9.el8_6.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libsemanage:2.9-9.el8_6:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"9.el8_6"},{"name":"syft:metadata:size","value":"308008"},{"name":"syft:metadata:sourceRpm","value":"libsemanage-2.9-9.el8_6.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libsepol@2.9-3.el8?arch=aarch64&upstream=libsepol-2.9-3.el8.src.rpm&distro=rhel-8.9&package-id=23111c13c752ccfa","type":"library","publisher":"Red Hat, Inc.","name":"libsepol","version":"2.9-3.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libsepol:libsepol:2.9-3.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libsepol@2.9-3.el8?arch=aarch64&upstream=libsepol-2.9-3.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libsepol:2.9-3.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8"},{"name":"syft:metadata:size","value":"769328"},{"name":"syft:metadata:sourceRpm","value":"libsepol-2.9-3.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libsigsegv@2.11-5.el8?arch=aarch64&upstream=libsigsegv-2.11-5.el8.src.rpm&distro=rhel-8.9&package-id=62f5d9b7fcf21e6d","type":"library","publisher":"Red Hat, Inc.","name":"libsigsegv","version":"2.11-5.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:libsigsegv:libsigsegv:2.11-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libsigsegv@2.11-5.el8?arch=aarch64&upstream=libsigsegv-2.11-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libsigsegv:2.11-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"99474"},{"name":"syft:metadata:sourceRpm","value":"libsigsegv-2.11-5.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libsmartcols@2.32.1-44.el8_9.1?arch=aarch64&upstream=util-linux-2.32.1-44.el8_9.1.src.rpm&distro=rhel-8.9&package-id=a6fbc06651853800","type":"library","publisher":"Red Hat, Inc.","name":"libsmartcols","version":"2.32.1-44.el8_9.1","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libsmartcols:libsmartcols:2.32.1-44.el8_9.1:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libsmartcols@2.32.1-44.el8_9.1?arch=aarch64&upstream=util-linux-2.32.1-44.el8_9.1.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libsmartcols:2.32.1-44.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"44.el8_9.1"},{"name":"syft:metadata:size","value":"297442"},{"name":"syft:metadata:sourceRpm","value":"util-linux-2.32.1-44.el8_9.1.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libsolv@0.7.20-6.el8?arch=aarch64&upstream=libsolv-0.7.20-6.el8.src.rpm&distro=rhel-8.9&package-id=6a66d79d5ca2317a","type":"library","publisher":"Red Hat, Inc.","name":"libsolv","version":"0.7.20-6.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:libsolv:libsolv:0.7.20-6.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libsolv@0.7.20-6.el8?arch=aarch64&upstream=libsolv-0.7.20-6.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libsolv:0.7.20-6.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"6.el8"},{"name":"syft:metadata:size","value":"811275"},{"name":"syft:metadata:sourceRpm","value":"libsolv-0.7.20-6.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libssh@0.9.6-13.el8_9?arch=aarch64&upstream=libssh-0.9.6-13.el8_9.src.rpm&distro=rhel-8.9&package-id=7821482fe505c4fe","type":"library","publisher":"Red Hat, Inc.","name":"libssh","version":"0.9.6-13.el8_9","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libssh:libssh:0.9.6-13.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libssh@0.9.6-13.el8_9?arch=aarch64&upstream=libssh-0.9.6-13.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libssh:0.9.6-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"13.el8_9"},{"name":"syft:metadata:size","value":"529823"},{"name":"syft:metadata:sourceRpm","value":"libssh-0.9.6-13.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libssh-config@0.9.6-13.el8_9?arch=noarch&upstream=libssh-0.9.6-13.el8_9.src.rpm&distro=rhel-8.9&package-id=e421ea75b9628fb8","type":"library","publisher":"Red Hat, Inc.","name":"libssh-config","version":"0.9.6-13.el8_9","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libssh-config:libssh-config:0.9.6-13.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libssh-config@0.9.6-13.el8_9?arch=noarch&upstream=libssh-0.9.6-13.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:libssh-config:libssh_config:0.9.6-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libssh_config:libssh-config:0.9.6-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libssh_config:libssh_config:0.9.6-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libssh:libssh-config:0.9.6-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:libssh:libssh_config:0.9.6-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libssh-config:0.9.6-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libssh_config:0.9.6-13.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"13.el8_9"},{"name":"syft:metadata:size","value":"277"},{"name":"syft:metadata:sourceRpm","value":"libssh-0.9.6-13.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libstdc%2B%2B@8.5.0-20.el8?arch=aarch64&upstream=gcc-8.5.0-20.el8.src.rpm&distro=rhel-8.9&package-id=b9a08321f611bc8b","type":"library","publisher":"Red Hat, Inc.","name":"libstdc++","version":"8.5.0-20.el8","licenses":[{"license":{"name":"GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD"}}],"cpe":"cpe:2.3:a:libstdc\\+\\+:libstdc\\+\\+:8.5.0-20.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libstdc%2B%2B@8.5.0-20.el8?arch=aarch64&upstream=gcc-8.5.0-20.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libstdc\\+\\+:8.5.0-20.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"20.el8"},{"name":"syft:metadata:size","value":"1850692"},{"name":"syft:metadata:sourceRpm","value":"gcc-8.5.0-20.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libtasn1@4.13-4.el8_7?arch=aarch64&upstream=libtasn1-4.13-4.el8_7.src.rpm&distro=rhel-8.9&package-id=ac6c28cd2f55bada","type":"library","publisher":"Red Hat, Inc.","name":"libtasn1","version":"4.13-4.el8_7","licenses":[{"license":{"name":"GPLv3+ and LGPLv2+"}}],"cpe":"cpe:2.3:a:libtasn1:libtasn1:4.13-4.el8_7:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libtasn1@4.13-4.el8_7?arch=aarch64&upstream=libtasn1-4.13-4.el8_7.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libtasn1:4.13-4.el8_7:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"4.el8_7"},{"name":"syft:metadata:size","value":"222461"},{"name":"syft:metadata:sourceRpm","value":"libtasn1-4.13-4.el8_7.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libtirpc@1.1.4-8.el8?arch=aarch64&upstream=libtirpc-1.1.4-8.el8.src.rpm&distro=rhel-8.9&package-id=876252529fc7b76e","type":"library","publisher":"Red Hat, Inc.","name":"libtirpc","version":"1.1.4-8.el8","licenses":[{"license":{"name":"SISSL and BSD"}}],"cpe":"cpe:2.3:a:libtirpc:libtirpc:1.1.4-8.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libtirpc@1.1.4-8.el8?arch=aarch64&upstream=libtirpc-1.1.4-8.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libtirpc:1.1.4-8.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"8.el8"},{"name":"syft:metadata:size","value":"281846"},{"name":"syft:metadata:sourceRpm","value":"libtirpc-1.1.4-8.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libunistring@0.9.9-3.el8?arch=aarch64&upstream=libunistring-0.9.9-3.el8.src.rpm&distro=rhel-8.9&package-id=2c74ca06ab8742c2","type":"library","publisher":"Red Hat, Inc.","name":"libunistring","version":"0.9.9-3.el8","licenses":[{"license":{"name":"GPLv2+ or LGPLv3+"}}],"cpe":"cpe:2.3:a:libunistring:libunistring:0.9.9-3.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libunistring@0.9.9-3.el8?arch=aarch64&upstream=libunistring-0.9.9-3.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libunistring:0.9.9-3.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8"},{"name":"syft:metadata:size","value":"1791092"},{"name":"syft:metadata:sourceRpm","value":"libunistring-0.9.9-3.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libusbx@1.0.23-4.el8?arch=aarch64&upstream=libusbx-1.0.23-4.el8.src.rpm&distro=rhel-8.9&package-id=b89de0fff864b8cc","type":"library","publisher":"Red Hat, Inc.","name":"libusbx","version":"1.0.23-4.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libusbx:libusbx:1.0.23-4.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libusbx@1.0.23-4.el8?arch=aarch64&upstream=libusbx-1.0.23-4.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libusbx:1.0.23-4.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"4.el8"},{"name":"syft:metadata:size","value":"178579"},{"name":"syft:metadata:sourceRpm","value":"libusbx-1.0.23-4.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libuser@0.62-25.el8?arch=aarch64&upstream=libuser-0.62-25.el8.src.rpm&distro=rhel-8.9&package-id=2c713efaae6457ce","type":"library","publisher":"Red Hat, Inc.","name":"libuser","version":"0.62-25.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libuser:libuser:0.62-25.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libuser@0.62-25.el8?arch=aarch64&upstream=libuser-0.62-25.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libuser:0.62-25.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"25.el8"},{"name":"syft:metadata:size","value":"2698083"},{"name":"syft:metadata:sourceRpm","value":"libuser-0.62-25.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libutempter@1.1.6-14.el8?arch=aarch64&upstream=libutempter-1.1.6-14.el8.src.rpm&distro=rhel-8.9&package-id=ab30a7530ca6bef4","type":"library","publisher":"Red Hat, Inc.","name":"libutempter","version":"1.1.6-14.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:libutempter:libutempter:1.1.6-14.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libutempter@1.1.6-14.el8?arch=aarch64&upstream=libutempter-1.1.6-14.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libutempter:1.1.6-14.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"14.el8"},{"name":"syft:metadata:size","value":"166413"},{"name":"syft:metadata:sourceRpm","value":"libutempter-1.1.6-14.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libuuid@2.32.1-44.el8_9.1?arch=aarch64&upstream=util-linux-2.32.1-44.el8_9.1.src.rpm&distro=rhel-8.9&package-id=98efffcf3be99a93","type":"library","publisher":"Red Hat, Inc.","name":"libuuid","version":"2.32.1-44.el8_9.1","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:libuuid:libuuid:2.32.1-44.el8_9.1:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libuuid@2.32.1-44.el8_9.1?arch=aarch64&upstream=util-linux-2.32.1-44.el8_9.1.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libuuid:2.32.1-44.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"44.el8_9.1"},{"name":"syft:metadata:size","value":"71808"},{"name":"syft:metadata:sourceRpm","value":"util-linux-2.32.1-44.el8_9.1.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libverto@0.3.2-2.el8?arch=aarch64&upstream=libverto-0.3.2-2.el8.src.rpm&distro=rhel-8.9&package-id=37f90af1ab0c2c49","type":"library","publisher":"Red Hat, Inc.","name":"libverto","version":"0.3.2-2.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:libverto:libverto:0.3.2-2.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libverto@0.3.2-2.el8?arch=aarch64&upstream=libverto-0.3.2-2.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libverto:0.3.2-2.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"2.el8"},{"name":"syft:metadata:size","value":"71245"},{"name":"syft:metadata:sourceRpm","value":"libverto-0.3.2-2.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libxcrypt@4.1.1-6.el8?arch=aarch64&upstream=libxcrypt-4.1.1-6.el8.src.rpm&distro=rhel-8.9&package-id=b3eb1a45b9083163","type":"library","publisher":"Red Hat, Inc.","name":"libxcrypt","version":"4.1.1-6.el8","licenses":[{"license":{"name":"LGPLv2+ and BSD and Public Domain"}}],"cpe":"cpe:2.3:a:libxcrypt:libxcrypt:4.1.1-6.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libxcrypt@4.1.1-6.el8?arch=aarch64&upstream=libxcrypt-4.1.1-6.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libxcrypt:4.1.1-6.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"6.el8"},{"name":"syft:metadata:size","value":"185684"},{"name":"syft:metadata:sourceRpm","value":"libxcrypt-4.1.1-6.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libxml2@2.9.7-18.el8_9?arch=aarch64&upstream=libxml2-2.9.7-18.el8_9.src.rpm&distro=rhel-8.9&package-id=5557110d38103149","type":"library","publisher":"Red Hat, Inc.","name":"libxml2","version":"2.9.7-18.el8_9","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:libxml2:libxml2:2.9.7-18.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libxml2@2.9.7-18.el8_9?arch=aarch64&upstream=libxml2-2.9.7-18.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libxml2:2.9.7-18.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"18.el8_9"},{"name":"syft:metadata:size","value":"1842594"},{"name":"syft:metadata:sourceRpm","value":"libxml2-2.9.7-18.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libyaml@0.1.7-5.el8?arch=aarch64&upstream=libyaml-0.1.7-5.el8.src.rpm&distro=rhel-8.9&package-id=636eb758f21cee96","type":"library","publisher":"Red Hat, Inc.","name":"libyaml","version":"0.1.7-5.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:libyaml:libyaml:0.1.7-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libyaml@0.1.7-5.el8?arch=aarch64&upstream=libyaml-0.1.7-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libyaml:0.1.7-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"139598"},{"name":"syft:metadata:sourceRpm","value":"libyaml-0.1.7-5.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/libzstd@1.4.4-1.el8?arch=aarch64&upstream=zstd-1.4.4-1.el8.src.rpm&distro=rhel-8.9&package-id=5da080584f9876c8","type":"library","publisher":"Red Hat, Inc.","name":"libzstd","version":"1.4.4-1.el8","licenses":[{"license":{"name":"BSD and GPLv2"}}],"cpe":"cpe:2.3:a:libzstd:libzstd:1.4.4-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/libzstd@1.4.4-1.el8?arch=aarch64&upstream=zstd-1.4.4-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:libzstd:1.4.4-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"619901"},{"name":"syft:metadata:sourceRpm","value":"zstd-1.4.4-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/lua-libs@5.3.4-12.el8?arch=aarch64&upstream=lua-5.3.4-12.el8.src.rpm&distro=rhel-8.9&package-id=aa9af6fbaf84a2ea","type":"library","publisher":"Red Hat, Inc.","name":"lua-libs","version":"5.3.4-12.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:lua-libs:lua-libs:5.3.4-12.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/lua-libs@5.3.4-12.el8?arch=aarch64&upstream=lua-5.3.4-12.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:lua-libs:lua_libs:5.3.4-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:lua_libs:lua-libs:5.3.4-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:lua_libs:lua_libs:5.3.4-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:lua-libs:5.3.4-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:lua_libs:5.3.4-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:lua:lua-libs:5.3.4-12.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:lua:lua_libs:5.3.4-12.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"12.el8"},{"name":"syft:metadata:size","value":"272152"},{"name":"syft:metadata:sourceRpm","value":"lua-5.3.4-12.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/lz4-libs@1.8.3-3.el8_4?arch=aarch64&upstream=lz4-1.8.3-3.el8_4.src.rpm&distro=rhel-8.9&package-id=ec0347f0653eb176","type":"library","publisher":"Red Hat, Inc.","name":"lz4-libs","version":"1.8.3-3.el8_4","licenses":[{"license":{"name":"GPLv2+ and BSD"}}],"cpe":"cpe:2.3:a:lz4-libs:lz4-libs:1.8.3-3.el8_4:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/lz4-libs@1.8.3-3.el8_4?arch=aarch64&upstream=lz4-1.8.3-3.el8_4.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:lz4-libs:lz4_libs:1.8.3-3.el8_4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:lz4_libs:lz4-libs:1.8.3-3.el8_4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:lz4_libs:lz4_libs:1.8.3-3.el8_4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:lz4-libs:1.8.3-3.el8_4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:lz4_libs:1.8.3-3.el8_4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:lz4:lz4-libs:1.8.3-3.el8_4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:lz4:lz4_libs:1.8.3-3.el8_4:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8_4"},{"name":"syft:metadata:size","value":"137255"},{"name":"syft:metadata:sourceRpm","value":"lz4-1.8.3-3.el8_4.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/mpfr@3.1.6-1.el8?arch=aarch64&upstream=mpfr-3.1.6-1.el8.src.rpm&distro=rhel-8.9&package-id=55a6a3f1f4ff1bc7","type":"library","publisher":"Red Hat, Inc.","name":"mpfr","version":"3.1.6-1.el8","licenses":[{"license":{"name":"LGPLv3+ and GPLv3+ and GFDL"}}],"cpe":"cpe:2.3:a:redhat:mpfr:3.1.6-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/mpfr@3.1.6-1.el8?arch=aarch64&upstream=mpfr-3.1.6-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:mpfr:mpfr:3.1.6-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"639849"},{"name":"syft:metadata:sourceRpm","value":"mpfr-3.1.6-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/ncurses-base@6.1-10.20180224.el8?arch=noarch&upstream=ncurses-6.1-10.20180224.el8.src.rpm&distro=rhel-8.9&package-id=d26b1db28074bac3","type":"library","publisher":"Red Hat, Inc.","name":"ncurses-base","version":"6.1-10.20180224.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:ncurses-base:ncurses-base:6.1-10.20180224.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/ncurses-base@6.1-10.20180224.el8?arch=noarch&upstream=ncurses-6.1-10.20180224.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:ncurses-base:ncurses_base:6.1-10.20180224.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ncurses_base:ncurses-base:6.1-10.20180224.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ncurses_base:ncurses_base:6.1-10.20180224.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ncurses:ncurses-base:6.1-10.20180224.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ncurses:ncurses_base:6.1-10.20180224.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:ncurses-base:6.1-10.20180224.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:ncurses_base:6.1-10.20180224.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"10.20180224.el8"},{"name":"syft:metadata:size","value":"290089"},{"name":"syft:metadata:sourceRpm","value":"ncurses-6.1-10.20180224.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/ncurses-libs@6.1-10.20180224.el8?arch=aarch64&upstream=ncurses-6.1-10.20180224.el8.src.rpm&distro=rhel-8.9&package-id=232325096aa243d9","type":"library","publisher":"Red Hat, Inc.","name":"ncurses-libs","version":"6.1-10.20180224.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:ncurses-libs:ncurses-libs:6.1-10.20180224.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/ncurses-libs@6.1-10.20180224.el8?arch=aarch64&upstream=ncurses-6.1-10.20180224.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:ncurses-libs:ncurses_libs:6.1-10.20180224.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ncurses_libs:ncurses-libs:6.1-10.20180224.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ncurses_libs:ncurses_libs:6.1-10.20180224.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ncurses:ncurses-libs:6.1-10.20180224.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ncurses:ncurses_libs:6.1-10.20180224.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:ncurses-libs:6.1-10.20180224.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:ncurses_libs:6.1-10.20180224.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"10.20180224.el8"},{"name":"syft:metadata:size","value":"1242384"},{"name":"syft:metadata:sourceRpm","value":"ncurses-6.1-10.20180224.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/nettle@3.4.1-7.el8?arch=aarch64&upstream=nettle-3.4.1-7.el8.src.rpm&distro=rhel-8.9&package-id=1f0e82177410fbe5","type":"library","publisher":"Red Hat, Inc.","name":"nettle","version":"3.4.1-7.el8","licenses":[{"license":{"name":"LGPLv3+ or GPLv2+"}}],"cpe":"cpe:2.3:a:nettle:nettle:3.4.1-7.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/nettle@3.4.1-7.el8?arch=aarch64&upstream=nettle-3.4.1-7.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:nettle:3.4.1-7.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"7.el8"},{"name":"syft:metadata:size","value":"604257"},{"name":"syft:metadata:sourceRpm","value":"nettle-3.4.1-7.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/nftables@1.0.4-4.el8_9?arch=aarch64&epoch=1&upstream=nftables-1.0.4-4.el8_9.src.rpm&distro=rhel-8.9&package-id=9c5743ba13aa6d9b","type":"library","publisher":"Red Hat, Inc.","name":"nftables","version":"1:1.0.4-4.el8_9","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:nftables:nftables:1\\:1.0.4-4.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/nftables@1.0.4-4.el8_9?arch=aarch64&epoch=1&upstream=nftables-1.0.4-4.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:nftables:1\\:1.0.4-4.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"1"},{"name":"syft:metadata:release","value":"4.el8_9"},{"name":"syft:metadata:size","value":"1053066"},{"name":"syft:metadata:sourceRpm","value":"nftables-1.0.4-4.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/npth@1.5-4.el8?arch=aarch64&upstream=npth-1.5-4.el8.src.rpm&distro=rhel-8.9&package-id=0491bab354bb49d1","type":"library","publisher":"Red Hat, Inc.","name":"npth","version":"1.5-4.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:redhat:npth:1.5-4.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/npth@1.5-4.el8?arch=aarch64&upstream=npth-1.5-4.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:npth:npth:1.5-4.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"4.el8"},{"name":"syft:metadata:size","value":"96517"},{"name":"syft:metadata:sourceRpm","value":"npth-1.5-4.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/openldap@2.4.46-18.el8?arch=aarch64&upstream=openldap-2.4.46-18.el8.src.rpm&distro=rhel-8.9&package-id=3600122a970d188c","type":"library","publisher":"Red Hat, Inc.","name":"openldap","version":"2.4.46-18.el8","licenses":[{"license":{"name":"OpenLDAP"}}],"cpe":"cpe:2.3:a:openldap:openldap:2.4.46-18.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/openldap@2.4.46-18.el8?arch=aarch64&upstream=openldap-2.4.46-18.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:openldap:2.4.46-18.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"18.el8"},{"name":"syft:metadata:size","value":"1062859"},{"name":"syft:metadata:sourceRpm","value":"openldap-2.4.46-18.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/openssl@1.1.1k-12.el8_9?arch=aarch64&epoch=1&upstream=openssl-1.1.1k-12.el8_9.src.rpm&distro=rhel-8.9&package-id=24c8b24d688705a6","type":"library","publisher":"Red Hat, Inc.","name":"openssl","version":"1:1.1.1k-12.el8_9","licenses":[{"license":{"name":"OpenSSL and ASL 2.0"}}],"cpe":"cpe:2.3:a:openssl:openssl:1\\:1.1.1k-12.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/openssl@1.1.1k-12.el8_9?arch=aarch64&epoch=1&upstream=openssl-1.1.1k-12.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:openssl:1\\:1.1.1k-12.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"1"},{"name":"syft:metadata:release","value":"12.el8_9"},{"name":"syft:metadata:size","value":"1180945"},{"name":"syft:metadata:sourceRpm","value":"openssl-1.1.1k-12.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/openssl-libs@1.1.1k-12.el8_9?arch=aarch64&epoch=1&upstream=openssl-1.1.1k-12.el8_9.src.rpm&distro=rhel-8.9&package-id=2b7cc2794b19962b","type":"library","publisher":"Red Hat, Inc.","name":"openssl-libs","version":"1:1.1.1k-12.el8_9","licenses":[{"license":{"name":"OpenSSL and ASL 2.0"}}],"cpe":"cpe:2.3:a:openssl-libs:openssl-libs:1\\:1.1.1k-12.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/openssl-libs@1.1.1k-12.el8_9?arch=aarch64&epoch=1&upstream=openssl-1.1.1k-12.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:openssl-libs:openssl_libs:1\\:1.1.1k-12.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openssl_libs:openssl-libs:1\\:1.1.1k-12.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openssl_libs:openssl_libs:1\\:1.1.1k-12.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openssl:openssl-libs:1\\:1.1.1k-12.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:openssl:openssl_libs:1\\:1.1.1k-12.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:openssl-libs:1\\:1.1.1k-12.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:openssl_libs:1\\:1.1.1k-12.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"1"},{"name":"syft:metadata:release","value":"12.el8_9"},{"name":"syft:metadata:size","value":"3660018"},{"name":"syft:metadata:sourceRpm","value":"openssl-1.1.1k-12.el8_9.src.rpm"}]},{"bom-ref":"pkg:maven/dev/org.eclipse.osgi@3.18.600.cl240520240506-1951?package-id=a261fe118ec73c3f","type":"library","group":"dev","name":"org.eclipse.osgi","version":"3.18.600.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:org.eclipse.osgi:org.eclipse.osgi:3.18.600.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/dev/org.eclipse.osgi@3.18.600.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"e525db6e4d898892dd579de215821e4c43d2236a"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:org.eclipse.osgi:platform:3.18.600.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:org.eclipse.osgi:3.18.600.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:org.eclipse.osgi:3.18.600.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:org.eclipse.osgi:osgi:3.18.600.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:org.eclipse.osgi:3.18.600.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:platform:3.18.600.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:platform:3.18.600.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:platform:3.18.600.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:osgi:3.18.600.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:eclipse:osgi:3.18.600.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:osgi:osgi:3.18.600.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/org.eclipse.osgi_3.18.600.jar"},{"name":"syft:metadata:-:artifactID","value":"org.eclipse.osgi"},{"name":"syft:metadata:-:groupID","value":"dev"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/org.eclipse.osgi_3.18.600.jar"}]},{"bom-ref":"pkg:rpm/rhel/p11-kit@0.23.22-1.el8?arch=aarch64&upstream=p11-kit-0.23.22-1.el8.src.rpm&distro=rhel-8.9&package-id=e6834f9837b2e371","type":"library","publisher":"Red Hat, Inc.","name":"p11-kit","version":"0.23.22-1.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:p11-kit:p11-kit:0.23.22-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/p11-kit@0.23.22-1.el8?arch=aarch64&upstream=p11-kit-0.23.22-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:p11-kit:p11_kit:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:p11_kit:p11-kit:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:p11_kit:p11_kit:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:p11-kit:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:p11_kit:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:p11:p11-kit:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:p11:p11_kit:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"1776087"},{"name":"syft:metadata:sourceRpm","value":"p11-kit-0.23.22-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/p11-kit-trust@0.23.22-1.el8?arch=aarch64&upstream=p11-kit-0.23.22-1.el8.src.rpm&distro=rhel-8.9&package-id=19aec8c99dd27a97","type":"library","publisher":"Red Hat, Inc.","name":"p11-kit-trust","version":"0.23.22-1.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:p11-kit-trust:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/p11-kit-trust@0.23.22-1.el8?arch=aarch64&upstream=p11-kit-0.23.22-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:p11-kit-trust:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:p11_kit_trust:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:p11_kit_trust:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:p11-kit:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:p11-kit:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:p11_kit:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:p11_kit:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:p11:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:p11:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"544689"},{"name":"syft:metadata:sourceRpm","value":"p11-kit-0.23.22-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/pam@1.3.1-27.el8?arch=aarch64&upstream=pam-1.3.1-27.el8.src.rpm&distro=rhel-8.9&package-id=1a2b3a2c4ec27a3a","type":"library","publisher":"Red Hat, Inc.","name":"pam","version":"1.3.1-27.el8","licenses":[{"license":{"name":"BSD and GPLv2+"}}],"cpe":"cpe:2.3:a:redhat:pam:1.3.1-27.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/pam@1.3.1-27.el8?arch=aarch64&upstream=pam-1.3.1-27.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:pam:pam:1.3.1-27.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"27.el8"},{"name":"syft:metadata:size","value":"5582219"},{"name":"syft:metadata:sourceRpm","value":"pam-1.3.1-27.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/passwd@0.80-4.el8?arch=aarch64&upstream=passwd-0.80-4.el8.src.rpm&distro=rhel-8.9&package-id=08609cc53c7e56fa","type":"library","publisher":"Red Hat, Inc.","name":"passwd","version":"0.80-4.el8","licenses":[{"license":{"name":"BSD or GPL+"}}],"cpe":"cpe:2.3:a:passwd:passwd:0.80-4.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/passwd@0.80-4.el8?arch=aarch64&upstream=passwd-0.80-4.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:passwd:0.80-4.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"4.el8"},{"name":"syft:metadata:size","value":"479133"},{"name":"syft:metadata:sourceRpm","value":"passwd-0.80-4.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/pcre@8.42-6.el8?arch=aarch64&upstream=pcre-8.42-6.el8.src.rpm&distro=rhel-8.9&package-id=c50319297c76c2f3","type":"library","publisher":"Red Hat, Inc.","name":"pcre","version":"8.42-6.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:redhat:pcre:8.42-6.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/pcre@8.42-6.el8?arch=aarch64&upstream=pcre-8.42-6.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:pcre:pcre:8.42-6.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"6.el8"},{"name":"syft:metadata:size","value":"566891"},{"name":"syft:metadata:sourceRpm","value":"pcre-8.42-6.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/pcre2@10.32-3.el8_6?arch=aarch64&upstream=pcre2-10.32-3.el8_6.src.rpm&distro=rhel-8.9&package-id=2da02822ff86c78d","type":"library","publisher":"Red Hat, Inc.","name":"pcre2","version":"10.32-3.el8_6","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:redhat:pcre2:10.32-3.el8_6:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/pcre2@10.32-3.el8_6?arch=aarch64&upstream=pcre2-10.32-3.el8_6.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:pcre2:pcre2:10.32-3.el8_6:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8_6"},{"name":"syft:metadata:size","value":"701390"},{"name":"syft:metadata:sourceRpm","value":"pcre2-10.32-3.el8_6.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/platform-python@3.6.8-56.el8_9.3?arch=aarch64&upstream=python3-3.6.8-56.el8_9.3.src.rpm&distro=rhel-8.9&package-id=6bdc36ac05de4fc3","type":"library","publisher":"Red Hat, Inc.","name":"platform-python","version":"3.6.8-56.el8_9.3","licenses":[{"license":{"name":"Python"}}],"cpe":"cpe:2.3:a:platform-python:platform-python:3.6.8-56.el8_9.3:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/platform-python@3.6.8-56.el8_9.3?arch=aarch64&upstream=python3-3.6.8-56.el8_9.3.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform-python:platform_python:3.6.8-56.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform_python:platform-python:3.6.8-56.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform_python:platform_python:3.6.8-56.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:platform-python:3.6.8-56.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:platform_python:3.6.8-56.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:platform-python:3.6.8-56.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:platform_python:3.6.8-56.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"56.el8_9.3"},{"name":"syft:metadata:size","value":"98558"},{"name":"syft:metadata:sourceRpm","value":"python3-3.6.8-56.el8_9.3.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/platform-python-setuptools@39.2.0-7.el8?arch=noarch&upstream=python-setuptools-39.2.0-7.el8.src.rpm&distro=rhel-8.9&package-id=c3d7b23b691d50ab","type":"library","publisher":"Red Hat, Inc.","name":"platform-python-setuptools","version":"39.2.0-7.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:platform-python-setuptools:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/platform-python-setuptools@39.2.0-7.el8?arch=noarch&upstream=python-setuptools-39.2.0-7.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform-python-setuptools:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform_python_setuptools:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform_python_setuptools:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform-python:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform-python:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform_python:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform_python:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:platform:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"7.el8"},{"name":"syft:metadata:size","value":"2930525"},{"name":"syft:metadata:sourceRpm","value":"python-setuptools-39.2.0-7.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/popt@1.18-1.el8?arch=aarch64&upstream=popt-1.18-1.el8.src.rpm&distro=rhel-8.9&package-id=073ebce4ad7116b1","type":"library","publisher":"Red Hat, Inc.","name":"popt","version":"1.18-1.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:redhat:popt:1.18-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/popt@1.18-1.el8?arch=aarch64&upstream=popt-1.18-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:popt:popt:1.18-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"142778"},{"name":"syft:metadata:sourceRpm","value":"popt-1.18-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/protobuf-c@1.3.0-8.el8?arch=aarch64&upstream=protobuf-c-1.3.0-8.el8.src.rpm&distro=rhel-8.9&package-id=4d1f6739f586cc49","type":"library","publisher":"Red Hat, Inc.","name":"protobuf-c","version":"1.3.0-8.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:protobuf-c:protobuf-c:1.3.0-8.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/protobuf-c@1.3.0-8.el8?arch=aarch64&upstream=protobuf-c-1.3.0-8.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:protobuf-c:protobuf_c:1.3.0-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:protobuf_c:protobuf-c:1.3.0-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:protobuf_c:protobuf_c:1.3.0-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:protobuf:protobuf-c:1.3.0-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:protobuf:protobuf_c:1.3.0-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:protobuf-c:1.3.0-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:protobuf_c:1.3.0-8.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"8.el8"},{"name":"syft:metadata:size","value":"90162"},{"name":"syft:metadata:sourceRpm","value":"protobuf-c-1.3.0-8.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/publicsuffix-list-dafsa@20180723-1.el8?arch=noarch&upstream=publicsuffix-list-20180723-1.el8.src.rpm&distro=rhel-8.9&package-id=2fd031ba65d84df8","type":"library","publisher":"Red Hat, Inc.","name":"publicsuffix-list-dafsa","version":"20180723-1.el8","licenses":[{"license":{"name":"MPLv2.0"}}],"cpe":"cpe:2.3:a:publicsuffix-list-dafsa:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/publicsuffix-list-dafsa@20180723-1.el8?arch=noarch&upstream=publicsuffix-list-20180723-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:publicsuffix-list-dafsa:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:publicsuffix_list_dafsa:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:publicsuffix_list_dafsa:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:publicsuffix-list:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:publicsuffix-list:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:publicsuffix_list:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:publicsuffix_list:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:publicsuffix:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:publicsuffix:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"64502"},{"name":"syft:metadata:sourceRpm","value":"publicsuffix-list-20180723-1.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/pyinotify@0.9.6?package-id=5b9ba6f2cb82bc84","type":"library","author":"Sebastien Martini ","name":"pyinotify","version":"0.9.6","licenses":[{"license":{"name":"MIT License"}}],"cpe":"cpe:2.3:a:sebastien_martini_project:python-pyinotify:0.9.6:*:*:*:*:*:*:*","purl":"pkg:pypi/pyinotify@0.9.6","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:sebastien_martini_project:python_pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sebastien_martiniproject:python-pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sebastien_martiniproject:python_pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sebastien_martini_project:pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sebastien_martini:python-pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sebastien_martini:python_pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sebastien_martiniproject:pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-pyinotify:python-pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-pyinotify:python_pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_pyinotify:python-pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_pyinotify:python_pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:seb_project:python-pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:seb_project:python_pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sebastien_martini:pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sebproject:python-pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sebproject:python_pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:pyinotify:python-pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:pyinotify:python_pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-pyinotify:pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_pyinotify:pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:seb_project:pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:seb:python-pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:seb:python_pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sebproject:pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:pyinotify:pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:seb:pyinotify:0.9.6:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:pypi/python-dateutil@2.6.1?package-id=37154c7c5bbb01f7","type":"library","author":"Paul Ganssle ","name":"python-dateutil","version":"2.6.1","licenses":[{"license":{"name":"Simplified BSD"}}],"cpe":"cpe:2.3:a:paul_ganssle_project:python-dateutil:2.6.1:*:*:*:*:*:*:*","purl":"pkg:pypi/python-dateutil@2.6.1","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:paul_ganssle_project:python_dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:paul_ganssleproject:python-dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:paul_ganssleproject:python_dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dateutil_project:python-dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dateutil_project:python_dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dateutilproject:python-dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dateutilproject:python_dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-dateutil:python-dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-dateutil:python_dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_dateutil:python-dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_dateutil:python_dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:paul_ganssle:python-dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:paul_ganssle:python_dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dateutil:python-dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:dateutil:python_dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_dateutil:2.6.1:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/python3-chardet@3.0.4-7.el8?arch=noarch&upstream=python-chardet-3.0.4-7.el8.src.rpm&distro=rhel-8.9&package-id=e8681a7736102a0c","type":"library","publisher":"Red Hat, Inc.","name":"python3-chardet","version":"3.0.4-7.el8","licenses":[{"license":{"name":"LGPLv2"}}],"cpe":"cpe:2.3:a:python3-chardet:python3-chardet:3.0.4-7.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-chardet@3.0.4-7.el8?arch=noarch&upstream=python-chardet-3.0.4-7.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-chardet:python3_chardet:3.0.4-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_chardet:python3-chardet:3.0.4-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_chardet:python3_chardet:3.0.4-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-chardet:3.0.4-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_chardet:3.0.4-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-chardet:3.0.4-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_chardet:3.0.4-7.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"7.el8"},{"name":"syft:metadata:size","value":"925538"},{"name":"syft:metadata:sourceRpm","value":"python-chardet-3.0.4-7.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-cloud-what@1.28.40-1.el8_9?arch=aarch64&upstream=subscription-manager-1.28.40-1.el8_9.src.rpm&distro=rhel-8.9&package-id=9b3e4c9719aab175","type":"library","publisher":"Red Hat, Inc.","name":"python3-cloud-what","version":"1.28.40-1.el8_9","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:python3-cloud-what:python3-cloud-what:1.28.40-1.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-cloud-what@1.28.40-1.el8_9?arch=aarch64&upstream=subscription-manager-1.28.40-1.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-cloud-what:python3_cloud_what:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_cloud_what:python3-cloud-what:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_cloud_what:python3_cloud_what:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-cloud:python3-cloud-what:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-cloud:python3_cloud_what:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_cloud:python3-cloud-what:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_cloud:python3_cloud_what:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-cloud-what:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_cloud_what:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-cloud-what:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_cloud_what:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8_9"},{"name":"syft:metadata:size","value":"74651"},{"name":"syft:metadata:sourceRpm","value":"subscription-manager-1.28.40-1.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-dateutil@2.6.1-6.el8?arch=noarch&epoch=1&upstream=python-dateutil-2.6.1-6.el8.src.rpm&distro=rhel-8.9&package-id=44d2c1242f4c25f4","type":"library","publisher":"Red Hat, Inc.","name":"python3-dateutil","version":"1:2.6.1-6.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:python3-dateutil:python3-dateutil:1\\:2.6.1-6.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-dateutil@2.6.1-6.el8?arch=noarch&epoch=1&upstream=python-dateutil-2.6.1-6.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-dateutil:python3_dateutil:1\\:2.6.1-6.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_dateutil:python3-dateutil:1\\:2.6.1-6.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_dateutil:python3_dateutil:1\\:2.6.1-6.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-dateutil:1\\:2.6.1-6.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_dateutil:1\\:2.6.1-6.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-dateutil:1\\:2.6.1-6.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_dateutil:1\\:2.6.1-6.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"1"},{"name":"syft:metadata:release","value":"6.el8"},{"name":"syft:metadata:size","value":"596677"},{"name":"syft:metadata:sourceRpm","value":"python-dateutil-2.6.1-6.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-dbus@1.2.4-15.el8?arch=aarch64&upstream=dbus-python-1.2.4-15.el8.src.rpm&distro=rhel-8.9&package-id=c843add6b857bea1","type":"library","publisher":"Red Hat, Inc.","name":"python3-dbus","version":"1.2.4-15.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:python3-dbus:python3-dbus:1.2.4-15.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-dbus@1.2.4-15.el8?arch=aarch64&upstream=dbus-python-1.2.4-15.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-dbus:python3_dbus:1.2.4-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_dbus:python3-dbus:1.2.4-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_dbus:python3_dbus:1.2.4-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-dbus:1.2.4-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_dbus:1.2.4-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-dbus:1.2.4-15.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_dbus:1.2.4-15.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"15.el8"},{"name":"syft:metadata:size","value":"602573"},{"name":"syft:metadata:sourceRpm","value":"dbus-python-1.2.4-15.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-decorator@4.2.1-2.el8?arch=noarch&upstream=python-decorator-4.2.1-2.el8.src.rpm&distro=rhel-8.9&package-id=78122c97130be6bd","type":"library","publisher":"Red Hat, Inc.","name":"python3-decorator","version":"4.2.1-2.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:python3-decorator:python3-decorator:4.2.1-2.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-decorator@4.2.1-2.el8?arch=noarch&upstream=python-decorator-4.2.1-2.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-decorator:python3_decorator:4.2.1-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_decorator:python3-decorator:4.2.1-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_decorator:python3_decorator:4.2.1-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-decorator:4.2.1-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_decorator:4.2.1-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-decorator:4.2.1-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_decorator:4.2.1-2.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"2.el8"},{"name":"syft:metadata:size","value":"47871"},{"name":"syft:metadata:sourceRpm","value":"python-decorator-4.2.1-2.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-dnf@4.7.0-19.el8?arch=noarch&upstream=dnf-4.7.0-19.el8.src.rpm&distro=rhel-8.9&package-id=c95a186e1c158089","type":"library","publisher":"Red Hat, Inc.","name":"python3-dnf","version":"4.7.0-19.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:python3-dnf:python3-dnf:4.7.0-19.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-dnf@4.7.0-19.el8?arch=noarch&upstream=dnf-4.7.0-19.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-dnf:python3_dnf:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_dnf:python3-dnf:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_dnf:python3_dnf:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-dnf:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_dnf:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-dnf:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_dnf:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"19.el8"},{"name":"syft:metadata:size","value":"1916937"},{"name":"syft:metadata:sourceRpm","value":"dnf-4.7.0-19.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-dnf-plugins-core@4.0.21-23.el8?arch=noarch&upstream=dnf-plugins-core-4.0.21-23.el8.src.rpm&distro=rhel-8.9&package-id=a78cf3b0f57a3928","type":"library","publisher":"Red Hat, Inc.","name":"python3-dnf-plugins-core","version":"4.0.21-23.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:python3-dnf-plugins-core:python3-dnf-plugins-core:4.0.21-23.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-dnf-plugins-core@4.0.21-23.el8?arch=noarch&upstream=dnf-plugins-core-4.0.21-23.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-dnf-plugins-core:python3_dnf_plugins_core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_dnf_plugins_core:python3-dnf-plugins-core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_dnf_plugins_core:python3_dnf_plugins_core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-dnf-plugins:python3-dnf-plugins-core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-dnf-plugins:python3_dnf_plugins_core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_dnf_plugins:python3-dnf-plugins-core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_dnf_plugins:python3_dnf_plugins_core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-dnf:python3-dnf-plugins-core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-dnf:python3_dnf_plugins_core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_dnf:python3-dnf-plugins-core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_dnf:python3_dnf_plugins_core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-dnf-plugins-core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_dnf_plugins_core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-dnf-plugins-core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_dnf_plugins_core:4.0.21-23.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"23.el8"},{"name":"syft:metadata:size","value":"907913"},{"name":"syft:metadata:sourceRpm","value":"dnf-plugins-core-4.0.21-23.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-ethtool@0.14-5.el8?arch=aarch64&upstream=python-ethtool-0.14-5.el8.src.rpm&distro=rhel-8.9&package-id=61efa5a69941a107","type":"library","publisher":"Red Hat, Inc.","name":"python3-ethtool","version":"0.14-5.el8","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:python3-ethtool:python3-ethtool:0.14-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-ethtool@0.14-5.el8?arch=aarch64&upstream=python-ethtool-0.14-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-ethtool:python3_ethtool:0.14-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_ethtool:python3-ethtool:0.14-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_ethtool:python3_ethtool:0.14-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-ethtool:0.14-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_ethtool:0.14-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-ethtool:0.14-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_ethtool:0.14-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"124856"},{"name":"syft:metadata:sourceRpm","value":"python-ethtool-0.14-5.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-gobject-base@3.28.3-2.el8?arch=aarch64&upstream=pygobject3-3.28.3-2.el8.src.rpm&distro=rhel-8.9&package-id=97131a488f32bc33","type":"library","publisher":"Red Hat, Inc.","name":"python3-gobject-base","version":"3.28.3-2.el8","licenses":[{"license":{"name":"LGPLv2+ and MIT"}}],"cpe":"cpe:2.3:a:python3-gobject-base:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-gobject-base@3.28.3-2.el8?arch=aarch64&upstream=pygobject3-3.28.3-2.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-gobject-base:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_gobject_base:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_gobject_base:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-gobject:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-gobject:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_gobject:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_gobject:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"2.el8"},{"name":"syft:metadata:size","value":"1124685"},{"name":"syft:metadata:sourceRpm","value":"pygobject3-3.28.3-2.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-gpg@1.13.1-11.el8?arch=aarch64&upstream=gpgme-1.13.1-11.el8.src.rpm&distro=rhel-8.9&package-id=365ec4cbd22b4e74","type":"library","publisher":"Red Hat, Inc.","name":"python3-gpg","version":"1.13.1-11.el8","licenses":[{"license":{"name":"LGPLv2+ and GPLv3+"}}],"cpe":"cpe:2.3:a:python3-gpg:python3-gpg:1.13.1-11.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-gpg@1.13.1-11.el8?arch=aarch64&upstream=gpgme-1.13.1-11.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-gpg:python3_gpg:1.13.1-11.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_gpg:python3-gpg:1.13.1-11.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_gpg:python3_gpg:1.13.1-11.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-gpg:1.13.1-11.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_gpg:1.13.1-11.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-gpg:1.13.1-11.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_gpg:1.13.1-11.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"11.el8"},{"name":"syft:metadata:size","value":"1440546"},{"name":"syft:metadata:sourceRpm","value":"gpgme-1.13.1-11.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-hawkey@0.63.0-17.el8_9?arch=aarch64&upstream=libdnf-0.63.0-17.el8_9.src.rpm&distro=rhel-8.9&package-id=cfb4e1de1200a667","type":"library","publisher":"Red Hat, Inc.","name":"python3-hawkey","version":"0.63.0-17.el8_9","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:python3-hawkey:python3-hawkey:0.63.0-17.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-hawkey@0.63.0-17.el8_9?arch=aarch64&upstream=libdnf-0.63.0-17.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-hawkey:python3_hawkey:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_hawkey:python3-hawkey:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_hawkey:python3_hawkey:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-hawkey:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_hawkey:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-hawkey:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_hawkey:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"17.el8_9"},{"name":"syft:metadata:size","value":"379808"},{"name":"syft:metadata:sourceRpm","value":"libdnf-0.63.0-17.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-idna@2.5-5.el8?arch=noarch&upstream=python-idna-2.5-5.el8.src.rpm&distro=rhel-8.9&package-id=055dc2c1d2f869a4","type":"library","publisher":"Red Hat, Inc.","name":"python3-idna","version":"2.5-5.el8","licenses":[{"license":{"name":"BSD and Python and Unicode"}}],"cpe":"cpe:2.3:a:python3-idna:python3-idna:2.5-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-idna@2.5-5.el8?arch=noarch&upstream=python-idna-2.5-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-idna:python3_idna:2.5-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_idna:python3-idna:2.5-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_idna:python3_idna:2.5-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-idna:2.5-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_idna:2.5-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-idna:2.5-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_idna:2.5-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"521503"},{"name":"syft:metadata:sourceRpm","value":"python-idna-2.5-5.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-iniparse@0.4-31.el8?arch=noarch&upstream=python-iniparse-0.4-31.el8.src.rpm&distro=rhel-8.9&package-id=236095196bf56751","type":"library","publisher":"Red Hat, Inc.","name":"python3-iniparse","version":"0.4-31.el8","licenses":[{"license":{"name":"MIT and Python"}}],"cpe":"cpe:2.3:a:python3-iniparse:python3-iniparse:0.4-31.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-iniparse@0.4-31.el8?arch=noarch&upstream=python-iniparse-0.4-31.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-iniparse:python3_iniparse:0.4-31.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_iniparse:python3-iniparse:0.4-31.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_iniparse:python3_iniparse:0.4-31.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-iniparse:0.4-31.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_iniparse:0.4-31.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-iniparse:0.4-31.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_iniparse:0.4-31.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"31.el8"},{"name":"syft:metadata:size","value":"108846"},{"name":"syft:metadata:sourceRpm","value":"python-iniparse-0.4-31.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-inotify@0.9.6-13.el8?arch=noarch&upstream=python-inotify-0.9.6-13.el8.src.rpm&distro=rhel-8.9&package-id=06c87e85644f49f5","type":"library","publisher":"Red Hat, Inc.","name":"python3-inotify","version":"0.9.6-13.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:python3-inotify:python3-inotify:0.9.6-13.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-inotify@0.9.6-13.el8?arch=noarch&upstream=python-inotify-0.9.6-13.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-inotify:python3_inotify:0.9.6-13.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_inotify:python3-inotify:0.9.6-13.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_inotify:python3_inotify:0.9.6-13.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-inotify:0.9.6-13.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_inotify:0.9.6-13.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-inotify:0.9.6-13.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_inotify:0.9.6-13.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"13.el8"},{"name":"syft:metadata:size","value":"248598"},{"name":"syft:metadata:sourceRpm","value":"python-inotify-0.9.6-13.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-libcomps@0.1.18-1.el8?arch=aarch64&upstream=libcomps-0.1.18-1.el8.src.rpm&distro=rhel-8.9&package-id=0a6a2e8c7314a20b","type":"library","publisher":"Red Hat, Inc.","name":"python3-libcomps","version":"0.1.18-1.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:python3-libcomps:python3-libcomps:0.1.18-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-libcomps@0.1.18-1.el8?arch=aarch64&upstream=libcomps-0.1.18-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-libcomps:python3_libcomps:0.1.18-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_libcomps:python3-libcomps:0.1.18-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_libcomps:python3_libcomps:0.1.18-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-libcomps:0.1.18-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_libcomps:0.1.18-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-libcomps:0.1.18-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_libcomps:0.1.18-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"159822"},{"name":"syft:metadata:sourceRpm","value":"libcomps-0.1.18-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-libdnf@0.63.0-17.el8_9?arch=aarch64&upstream=libdnf-0.63.0-17.el8_9.src.rpm&distro=rhel-8.9&package-id=8b587c5e94162159","type":"library","publisher":"Red Hat, Inc.","name":"python3-libdnf","version":"0.63.0-17.el8_9","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:python3-libdnf:python3-libdnf:0.63.0-17.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-libdnf@0.63.0-17.el8_9?arch=aarch64&upstream=libdnf-0.63.0-17.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-libdnf:python3_libdnf:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_libdnf:python3-libdnf:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_libdnf:python3_libdnf:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-libdnf:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_libdnf:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-libdnf:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_libdnf:0.63.0-17.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"17.el8_9"},{"name":"syft:metadata:size","value":"4227266"},{"name":"syft:metadata:sourceRpm","value":"libdnf-0.63.0-17.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-librepo@1.14.2-4.el8?arch=aarch64&upstream=librepo-1.14.2-4.el8.src.rpm&distro=rhel-8.9&package-id=68080b027e584e85","type":"library","publisher":"Red Hat, Inc.","name":"python3-librepo","version":"1.14.2-4.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:python3-librepo:python3-librepo:1.14.2-4.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-librepo@1.14.2-4.el8?arch=aarch64&upstream=librepo-1.14.2-4.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-librepo:python3_librepo:1.14.2-4.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_librepo:python3-librepo:1.14.2-4.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_librepo:python3_librepo:1.14.2-4.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-librepo:1.14.2-4.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_librepo:1.14.2-4.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-librepo:1.14.2-4.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_librepo:1.14.2-4.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"4.el8"},{"name":"syft:metadata:size","value":"183630"},{"name":"syft:metadata:sourceRpm","value":"librepo-1.14.2-4.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-libs@3.6.8-56.el8_9.3?arch=aarch64&upstream=python3-3.6.8-56.el8_9.3.src.rpm&distro=rhel-8.9&package-id=cb9bda48d80918b6","type":"library","publisher":"Red Hat, Inc.","name":"python3-libs","version":"3.6.8-56.el8_9.3","licenses":[{"license":{"name":"Python"}}],"cpe":"cpe:2.3:a:python3-libs:python3-libs:3.6.8-56.el8_9.3:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-libs@3.6.8-56.el8_9.3?arch=aarch64&upstream=python3-3.6.8-56.el8_9.3.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-libs:python3_libs:3.6.8-56.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_libs:python3-libs:3.6.8-56.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_libs:python3_libs:3.6.8-56.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-libs:3.6.8-56.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_libs:3.6.8-56.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-libs:3.6.8-56.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_libs:3.6.8-56.el8_9.3:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"56.el8_9.3"},{"name":"syft:metadata:size","value":"34655419"},{"name":"syft:metadata:sourceRpm","value":"python3-3.6.8-56.el8_9.3.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-pip-wheel@9.0.3-23.el8_9.1?arch=noarch&upstream=python-pip-9.0.3-23.el8_9.1.src.rpm&distro=rhel-8.9&package-id=713ac53780bc453e","type":"library","publisher":"Red Hat, Inc.","name":"python3-pip-wheel","version":"9.0.3-23.el8_9.1","licenses":[{"license":{"name":"MIT and Python and ASL 2.0 and BSD and ISC and LGPLv2 and MPLv2.0 and (ASL 2.0 or BSD)"}}],"cpe":"cpe:2.3:a:python3-pip-wheel:python3-pip-wheel:9.0.3-23.el8_9.1:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-pip-wheel@9.0.3-23.el8_9.1?arch=noarch&upstream=python-pip-9.0.3-23.el8_9.1.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-pip-wheel:python3_pip_wheel:9.0.3-23.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_pip_wheel:python3-pip-wheel:9.0.3-23.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_pip_wheel:python3_pip_wheel:9.0.3-23.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-pip:python3-pip-wheel:9.0.3-23.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-pip:python3_pip_wheel:9.0.3-23.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_pip:python3-pip-wheel:9.0.3-23.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_pip:python3_pip_wheel:9.0.3-23.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-pip-wheel:9.0.3-23.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_pip_wheel:9.0.3-23.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-pip-wheel:9.0.3-23.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_pip_wheel:9.0.3-23.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"23.el8_9.1"},{"name":"syft:metadata:size","value":"899549"},{"name":"syft:metadata:sourceRpm","value":"python-pip-9.0.3-23.el8_9.1.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-pysocks@1.6.8-3.el8?arch=noarch&upstream=python-pysocks-1.6.8-3.el8.src.rpm&distro=rhel-8.9&package-id=245ff9a302cddaeb","type":"library","publisher":"Red Hat, Inc.","name":"python3-pysocks","version":"1.6.8-3.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:python3-pysocks:python3-pysocks:1.6.8-3.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-pysocks@1.6.8-3.el8?arch=noarch&upstream=python-pysocks-1.6.8-3.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-pysocks:python3_pysocks:1.6.8-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_pysocks:python3-pysocks:1.6.8-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_pysocks:python3_pysocks:1.6.8-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-pysocks:1.6.8-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_pysocks:1.6.8-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-pysocks:1.6.8-3.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_pysocks:1.6.8-3.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8"},{"name":"syft:metadata:size","value":"77054"},{"name":"syft:metadata:sourceRpm","value":"python-pysocks-1.6.8-3.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-requests@2.20.0-3.el8_8?arch=noarch&upstream=python-requests-2.20.0-3.el8_8.src.rpm&distro=rhel-8.9&package-id=7dd2ba1179439b5e","type":"library","publisher":"Red Hat, Inc.","name":"python3-requests","version":"2.20.0-3.el8_8","licenses":[{"license":{"name":"ASL 2.0"}}],"cpe":"cpe:2.3:a:python3-requests:python3-requests:2.20.0-3.el8_8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-requests@2.20.0-3.el8_8?arch=noarch&upstream=python-requests-2.20.0-3.el8_8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-requests:python3_requests:2.20.0-3.el8_8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_requests:python3-requests:2.20.0-3.el8_8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_requests:python3_requests:2.20.0-3.el8_8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-requests:2.20.0-3.el8_8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_requests:2.20.0-3.el8_8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-requests:2.20.0-3.el8_8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_requests:2.20.0-3.el8_8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"3.el8_8"},{"name":"syft:metadata:size","value":"378047"},{"name":"syft:metadata:sourceRpm","value":"python-requests-2.20.0-3.el8_8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-rpm@4.14.3-28.el8_9?arch=aarch64&upstream=rpm-4.14.3-28.el8_9.src.rpm&distro=rhel-8.9&package-id=ca8813ac92dab5c4","type":"library","publisher":"Red Hat, Inc.","name":"python3-rpm","version":"4.14.3-28.el8_9","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:python3-rpm:python3-rpm:4.14.3-28.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-rpm@4.14.3-28.el8_9?arch=aarch64&upstream=rpm-4.14.3-28.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-rpm:python3_rpm:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_rpm:python3-rpm:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_rpm:python3_rpm:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-rpm:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_rpm:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-rpm:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_rpm:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"28.el8_9"},{"name":"syft:metadata:size","value":"745821"},{"name":"syft:metadata:sourceRpm","value":"rpm-4.14.3-28.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-setuptools-wheel@39.2.0-7.el8?arch=noarch&upstream=python-setuptools-39.2.0-7.el8.src.rpm&distro=rhel-8.9&package-id=eeb6459f3ac82ac7","type":"library","publisher":"Red Hat, Inc.","name":"python3-setuptools-wheel","version":"39.2.0-7.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:python3-setuptools-wheel:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-setuptools-wheel@39.2.0-7.el8?arch=noarch&upstream=python-setuptools-39.2.0-7.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-setuptools-wheel:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_setuptools_wheel:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_setuptools_wheel:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-setuptools:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-setuptools:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_setuptools:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_setuptools:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"7.el8"},{"name":"syft:metadata:size","value":"347736"},{"name":"syft:metadata:sourceRpm","value":"python-setuptools-39.2.0-7.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-six@1.11.0-8.el8?arch=noarch&upstream=python-six-1.11.0-8.el8.src.rpm&distro=rhel-8.9&package-id=559b290f84615373","type":"library","publisher":"Red Hat, Inc.","name":"python3-six","version":"1.11.0-8.el8","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:python3-six:python3-six:1.11.0-8.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-six@1.11.0-8.el8?arch=noarch&upstream=python-six-1.11.0-8.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-six:python3_six:1.11.0-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_six:python3-six:1.11.0-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_six:python3_six:1.11.0-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-six:1.11.0-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_six:1.11.0-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-six:1.11.0-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_six:1.11.0-8.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"8.el8"},{"name":"syft:metadata:size","value":"100282"},{"name":"syft:metadata:sourceRpm","value":"python-six-1.11.0-8.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-subscription-manager-rhsm@1.28.40-1.el8_9?arch=aarch64&upstream=subscription-manager-1.28.40-1.el8_9.src.rpm&distro=rhel-8.9&package-id=f679ec45e5a1ec74","type":"library","publisher":"Red Hat, Inc.","name":"python3-subscription-manager-rhsm","version":"1.28.40-1.el8_9","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:python3-subscription-manager-rhsm:python3-subscription-manager-rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-subscription-manager-rhsm@1.28.40-1.el8_9?arch=aarch64&upstream=subscription-manager-1.28.40-1.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-subscription-manager-rhsm:python3_subscription_manager_rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_subscription_manager_rhsm:python3-subscription-manager-rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_subscription_manager_rhsm:python3_subscription_manager_rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-subscription-manager:python3-subscription-manager-rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-subscription-manager:python3_subscription_manager_rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_subscription_manager:python3-subscription-manager-rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_subscription_manager:python3_subscription_manager_rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-subscription:python3-subscription-manager-rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-subscription:python3_subscription_manager_rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_subscription:python3-subscription-manager-rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_subscription:python3_subscription_manager_rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-subscription-manager-rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_subscription_manager_rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-subscription-manager-rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_subscription_manager_rhsm:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8_9"},{"name":"syft:metadata:size","value":"479793"},{"name":"syft:metadata:sourceRpm","value":"subscription-manager-1.28.40-1.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-syspurpose@1.28.40-1.el8_9?arch=aarch64&upstream=subscription-manager-1.28.40-1.el8_9.src.rpm&distro=rhel-8.9&package-id=776d9e33f324cf75","type":"library","publisher":"Red Hat, Inc.","name":"python3-syspurpose","version":"1.28.40-1.el8_9","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:python3-syspurpose:python3-syspurpose:1.28.40-1.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-syspurpose@1.28.40-1.el8_9?arch=aarch64&upstream=subscription-manager-1.28.40-1.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-syspurpose:python3_syspurpose:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_syspurpose:python3-syspurpose:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_syspurpose:python3_syspurpose:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-syspurpose:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_syspurpose:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-syspurpose:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_syspurpose:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8_9"},{"name":"syft:metadata:size","value":"167068"},{"name":"syft:metadata:sourceRpm","value":"subscription-manager-1.28.40-1.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-systemd@234-8.el8?arch=aarch64&upstream=python-systemd-234-8.el8.src.rpm&distro=rhel-8.9&package-id=5072459ea14fc65e","type":"library","publisher":"Red Hat, Inc.","name":"python3-systemd","version":"234-8.el8","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:python3-systemd:python3-systemd:234-8.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-systemd@234-8.el8?arch=aarch64&upstream=python-systemd-234-8.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-systemd:python3_systemd:234-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_systemd:python3-systemd:234-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_systemd:python3_systemd:234-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-systemd:234-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_systemd:234-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-systemd:234-8.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_systemd:234-8.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"8.el8"},{"name":"syft:metadata:size","value":"501185"},{"name":"syft:metadata:sourceRpm","value":"python-systemd-234-8.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/python3-urllib3@1.24.2-5.el8_9.2?arch=noarch&upstream=python-urllib3-1.24.2-5.el8_9.2.src.rpm&distro=rhel-8.9&package-id=3568dc6ee93c755d","type":"library","publisher":"Red Hat, Inc.","name":"python3-urllib3","version":"1.24.2-5.el8_9.2","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:python3-urllib3:python3-urllib3:1.24.2-5.el8_9.2:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/python3-urllib3@1.24.2-5.el8_9.2?arch=noarch&upstream=python-urllib3-1.24.2-5.el8_9.2.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3-urllib3:python3_urllib3:1.24.2-5.el8_9.2:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_urllib3:python3-urllib3:1.24.2-5.el8_9.2:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3_urllib3:python3_urllib3:1.24.2-5.el8_9.2:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3-urllib3:1.24.2-5.el8_9.2:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python3:python3_urllib3:1.24.2-5.el8_9.2:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3-urllib3:1.24.2-5.el8_9.2:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:python3_urllib3:1.24.2-5.el8_9.2:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5.el8_9.2"},{"name":"syft:metadata:size","value":"621874"},{"name":"syft:metadata:sourceRpm","value":"python-urllib3-1.24.2-5.el8_9.2.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/readline@7.0-10.el8?arch=aarch64&upstream=readline-7.0-10.el8.src.rpm&distro=rhel-8.9&package-id=d3150c380c65eb50","type":"library","publisher":"Red Hat, Inc.","name":"readline","version":"7.0-10.el8","licenses":[{"license":{"name":"GPLv3+"}}],"cpe":"cpe:2.3:a:readline:readline:7.0-10.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/readline@7.0-10.el8?arch=aarch64&upstream=readline-7.0-10.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:readline:7.0-10.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"10.el8"},{"name":"syft:metadata:size","value":"518161"},{"name":"syft:metadata:sourceRpm","value":"readline-7.0-10.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/redhat-release@8.9-0.1.el8?arch=aarch64&upstream=redhat-release-8.9-0.1.el8.src.rpm&distro=rhel-8.9&package-id=899da8b33d8eea99","type":"library","publisher":"Red Hat, Inc.","name":"redhat-release","version":"8.9-0.1.el8","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:redhat-release:redhat-release:8.9-0.1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/redhat-release@8.9-0.1.el8?arch=aarch64&upstream=redhat-release-8.9-0.1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat-release:redhat_release:8.9-0.1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat_release:redhat-release:8.9-0.1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat_release:redhat_release:8.9-0.1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:redhat-release:8.9-0.1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:redhat_release:8.9-0.1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"0.1.el8"},{"name":"syft:metadata:size","value":"56648"},{"name":"syft:metadata:sourceRpm","value":"redhat-release-8.9-0.1.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/requests@2.20.0?package-id=462fe8214cb055bf","type":"library","author":"Kenneth Reitz ","name":"requests","version":"2.20.0","licenses":[{"license":{"name":"Apache 2.0"}}],"cpe":"cpe:2.3:a:python:requests:2.20.0:*:*:*:*:*:*:*","purl":"pkg:pypi/requests@2.20.0","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/rootfiles@8.1-22.el8?arch=noarch&upstream=rootfiles-8.1-22.el8.src.rpm&distro=rhel-8.9&package-id=9d84439e748d5de1","type":"library","publisher":"Red Hat, Inc.","name":"rootfiles","version":"8.1-22.el8","licenses":[{"license":{"name":"Public Domain"}}],"cpe":"cpe:2.3:a:rootfiles:rootfiles:8.1-22.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/rootfiles@8.1-22.el8?arch=noarch&upstream=rootfiles-8.1-22.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:rootfiles:8.1-22.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"22.el8"},{"name":"syft:metadata:size","value":"599"},{"name":"syft:metadata:sourceRpm","value":"rootfiles-8.1-22.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/rpm@4.14.3?package-id=77870998b1c81ca0","type":"library","author":"UNKNOWN ","name":"rpm","version":"4.14.3","licenses":[{"license":{"name":"UNKNOWN"}}],"cpe":"cpe:2.3:a:rpm_maint_project:python-rpm:4.14.3:*:*:*:*:*:*:*","purl":"pkg:pypi/rpm@4.14.3","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_maint_project:python_rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_maintproject:python-rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_maintproject:python_rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:unknown_project:python-rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:unknown_project:python_rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:unknownproject:python-rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:unknownproject:python_rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-rpm:python-rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-rpm:python_rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_rpm:python-rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_rpm:python_rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_maint_project:rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm-maint:python-rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm-maint:python_rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_maint:python-rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_maint:python_rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_maintproject:rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:unknown_project:rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:unknown:python-rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:unknown:python_rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:unknownproject:rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-rpm:rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_rpm:rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm:python-rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm:python_rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm-maint:rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_maint:rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:unknown:rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm:rpm:4.14.3:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib64/python3.6/site-packages/rpm-4.14.3-py3.6.egg-info"}]},{"bom-ref":"pkg:rpm/rhel/rpm@4.14.3-28.el8_9?arch=aarch64&upstream=rpm-4.14.3-28.el8_9.src.rpm&distro=rhel-8.9&package-id=c2c7adcb09c1d033","type":"library","publisher":"Red Hat, Inc.","name":"rpm","version":"4.14.3-28.el8_9","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:redhat:rpm:4.14.3-28.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/rpm@4.14.3-28.el8_9?arch=aarch64&upstream=rpm-4.14.3-28.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm:rpm:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"28.el8_9"},{"name":"syft:metadata:size","value":"2348785"},{"name":"syft:metadata:sourceRpm","value":"rpm-4.14.3-28.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/rpm-build-libs@4.14.3-28.el8_9?arch=aarch64&upstream=rpm-4.14.3-28.el8_9.src.rpm&distro=rhel-8.9&package-id=f844e44ada237175","type":"library","publisher":"Red Hat, Inc.","name":"rpm-build-libs","version":"4.14.3-28.el8_9","licenses":[{"license":{"name":"GPLv2+ and LGPLv2+ with exceptions"}}],"cpe":"cpe:2.3:a:rpm-build-libs:rpm-build-libs:4.14.3-28.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/rpm-build-libs@4.14.3-28.el8_9?arch=aarch64&upstream=rpm-4.14.3-28.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm-build-libs:rpm_build_libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_build_libs:rpm-build-libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_build_libs:rpm_build_libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm-build:rpm-build-libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm-build:rpm_build_libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_build:rpm-build-libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_build:rpm_build_libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:rpm-build-libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:rpm_build_libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm:rpm-build-libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm:rpm_build_libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"28.el8_9"},{"name":"syft:metadata:size","value":"273528"},{"name":"syft:metadata:sourceRpm","value":"rpm-4.14.3-28.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/rpm-libs@4.14.3-28.el8_9?arch=aarch64&upstream=rpm-4.14.3-28.el8_9.src.rpm&distro=rhel-8.9&package-id=6a470ce4dbfe8e82","type":"library","publisher":"Red Hat, Inc.","name":"rpm-libs","version":"4.14.3-28.el8_9","licenses":[{"license":{"name":"GPLv2+ and LGPLv2+ with exceptions"}}],"cpe":"cpe:2.3:a:rpm-libs:rpm-libs:4.14.3-28.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/rpm-libs@4.14.3-28.el8_9?arch=aarch64&upstream=rpm-4.14.3-28.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm-libs:rpm_libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_libs:rpm-libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm_libs:rpm_libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:rpm-libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:rpm_libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm:rpm-libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:rpm:rpm_libs:4.14.3-28.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"28.el8_9"},{"name":"syft:metadata:size","value":"755208"},{"name":"syft:metadata:sourceRpm","value":"rpm-4.14.3-28.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/sed@4.5-5.el8?arch=aarch64&upstream=sed-4.5-5.el8.src.rpm&distro=rhel-8.9&package-id=20ad6470f718b8a3","type":"library","publisher":"Red Hat, Inc.","name":"sed","version":"4.5-5.el8","licenses":[{"license":{"name":"GPLv3+"}}],"cpe":"cpe:2.3:a:redhat:sed:4.5-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/sed@4.5-5.el8?arch=aarch64&upstream=sed-4.5-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:sed:sed:4.5-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"785214"},{"name":"syft:metadata:sourceRpm","value":"sed-4.5-5.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/setup@2.12.2-9.el8?arch=noarch&upstream=setup-2.12.2-9.el8.src.rpm&distro=rhel-8.9&package-id=b6459466cf803aaa","type":"library","publisher":"Red Hat, Inc.","name":"setup","version":"2.12.2-9.el8","licenses":[{"license":{"name":"Public Domain"}}],"cpe":"cpe:2.3:a:redhat:setup:2.12.2-9.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/setup@2.12.2-9.el8?arch=noarch&upstream=setup-2.12.2-9.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:setup:setup:2.12.2-9.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"9.el8"},{"name":"syft:metadata:size","value":"724747"},{"name":"syft:metadata:sourceRpm","value":"setup-2.12.2-9.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/setuptools@39.2.0?package-id=9d8e8f9c4d1bd61a","type":"library","author":"Python Packaging Authority ","name":"setuptools","version":"39.2.0","licenses":[{"license":{"name":"UNKNOWN"}}],"cpe":"cpe:2.3:a:python:setuptools:39.2.0:*:*:*:*:*:*:*","purl":"pkg:pypi/setuptools@39.2.0","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/METADATA"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/RECORD"},{"name":"syft:location:2:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:2:path","value":"/usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/shadow-utils@4.6-19.el8?arch=aarch64&epoch=2&upstream=shadow-utils-4.6-19.el8.src.rpm&distro=rhel-8.9&package-id=c644cd4da38e2071","type":"library","publisher":"Red Hat, Inc.","name":"shadow-utils","version":"2:4.6-19.el8","licenses":[{"license":{"name":"BSD and GPLv2+"}}],"cpe":"cpe:2.3:a:shadow-utils:shadow-utils:2\\:4.6-19.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/shadow-utils@4.6-19.el8?arch=aarch64&epoch=2&upstream=shadow-utils-4.6-19.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:shadow-utils:shadow_utils:2\\:4.6-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:shadow_utils:shadow-utils:2\\:4.6-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:shadow_utils:shadow_utils:2\\:4.6-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:shadow-utils:2\\:4.6-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:shadow_utils:2\\:4.6-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:shadow:shadow-utils:2\\:4.6-19.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:shadow:shadow_utils:2\\:4.6-19.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"2"},{"name":"syft:metadata:release","value":"19.el8"},{"name":"syft:metadata:size","value":"4731741"},{"name":"syft:metadata:sourceRpm","value":"shadow-utils-4.6-19.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/six@1.11.0?package-id=1758f8a08639095b","type":"library","author":"Benjamin Peterson ","name":"six","version":"1.11.0","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:benjamin_peterson_project:python-six:1.11.0:*:*:*:*:*:*:*","purl":"pkg:pypi/six@1.11.0","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjamin_peterson_project:python_six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjamin_petersonproject:python-six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjamin_petersonproject:python_six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjamin_peterson_project:six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjamin_peterson:python-six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjamin_peterson:python_six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjamin_petersonproject:six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjamin_project:python-six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjamin_project:python_six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjaminproject:python-six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjaminproject:python_six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjamin_peterson:six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-six:python-six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-six:python_six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_six:python-six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_six:python_six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjamin_project:six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjamin:python-six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjamin:python_six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjaminproject:six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-six:six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_six:six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:six:python-six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:six:python_six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:benjamin:six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:six:six:1.11.0:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib/python3.6/site-packages/six-1.11.0.dist-info/METADATA"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib/python3.6/site-packages/six-1.11.0.dist-info/RECORD"},{"name":"syft:location:2:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:2:path","value":"/usr/lib/python3.6/site-packages/six-1.11.0.dist-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/sqlite-libs@3.26.0-19.el8_9?arch=aarch64&upstream=sqlite-3.26.0-19.el8_9.src.rpm&distro=rhel-8.9&package-id=3e0605fc981a1aee","type":"library","publisher":"Red Hat, Inc.","name":"sqlite-libs","version":"3.26.0-19.el8_9","licenses":[{"license":{"name":"Public Domain"}}],"cpe":"cpe:2.3:a:sqlite-libs:sqlite-libs:3.26.0-19.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/sqlite-libs@3.26.0-19.el8_9?arch=aarch64&upstream=sqlite-3.26.0-19.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:sqlite-libs:sqlite_libs:3.26.0-19.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sqlite_libs:sqlite-libs:3.26.0-19.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sqlite_libs:sqlite_libs:3.26.0-19.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:sqlite-libs:3.26.0-19.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:sqlite_libs:3.26.0-19.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sqlite:sqlite-libs:3.26.0-19.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:sqlite:sqlite_libs:3.26.0-19.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"19.el8_9"},{"name":"syft:metadata:size","value":"1162329"},{"name":"syft:metadata:sourceRpm","value":"sqlite-3.26.0-19.el8_9.src.rpm"}]},{"bom-ref":"pkg:pypi/subscription-manager@1.28.40?package-id=68244325b89a4277","type":"library","author":"Adrian Likins ","name":"subscription-manager","version":"1.28.40","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:python-subscription-manager:python-subscription-manager:1.28.40:*:*:*:*:*:*:*","purl":"pkg:pypi/subscription-manager@1.28.40","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-subscription-manager:python_subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_subscription_manager:python-subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_subscription_manager:python_subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adrian_likins_project:python-subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adrian_likins_project:python_subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adrian_likinsproject:python-subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adrian_likinsproject:python_subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-subscription-manager:subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-subscription-manager:subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_subscription_manager:subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_subscription_manager:subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription-manager:python-subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription-manager:python_subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription_manager:python-subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription_manager:python_subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-subscription:python-subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-subscription:python_subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_subscription:python-subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_subscription:python_subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:alikins_project:python-subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:alikins_project:python_subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adrian_likins_project:subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adrian_likins_project:subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:alikinsproject:python-subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:alikinsproject:python_subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adrian_likins:python-subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adrian_likins:python_subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adrian_likinsproject:subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adrian_likinsproject:subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription-manager:subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription-manager:subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription_manager:subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription_manager:subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-subscription:subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-subscription:subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_subscription:subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_subscription:subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription:python-subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription:python_subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:alikins_project:subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:alikins_project:subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:alikins:python-subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:alikins:python_subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:alikinsproject:subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:alikinsproject:subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adrian_likins:subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:adrian_likins:subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription:subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription:subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:alikins:subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:alikins:subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:subscription-manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:subscription_manager:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib64/python3.6/site-packages/subscription_manager-1.28.40-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib64/python3.6/site-packages/subscription_manager-1.28.40-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/subscription-manager@1.28.40-1.el8_9?arch=aarch64&upstream=subscription-manager-1.28.40-1.el8_9.src.rpm&distro=rhel-8.9&package-id=dad3bfeb62fb47a6","type":"library","publisher":"Red Hat, Inc.","name":"subscription-manager","version":"1.28.40-1.el8_9","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:subscription-manager:subscription-manager:1.28.40-1.el8_9:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/subscription-manager@1.28.40-1.el8_9?arch=aarch64&upstream=subscription-manager-1.28.40-1.el8_9.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription-manager:subscription_manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription_manager:subscription-manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription_manager:subscription_manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription:subscription-manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription:subscription_manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:subscription-manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:subscription_manager:1.28.40-1.el8_9:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8_9"},{"name":"syft:metadata:size","value":"4359888"},{"name":"syft:metadata:sourceRpm","value":"subscription-manager-1.28.40-1.el8_9.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/subscription-manager-rhsm-certificates@20220623-1.el8?arch=noarch&upstream=subscription-manager-rhsm-certificates-20220623-1.el8.src.rpm&distro=rhel-8.9&package-id=d94168c89a13d74e","type":"library","publisher":"Red Hat, Inc.","name":"subscription-manager-rhsm-certificates","version":"20220623-1.el8","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:subscription-manager-rhsm-certificates:subscription-manager-rhsm-certificates:20220623-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/subscription-manager-rhsm-certificates@20220623-1.el8?arch=noarch&upstream=subscription-manager-rhsm-certificates-20220623-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription-manager-rhsm-certificates:subscription_manager_rhsm_certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription_manager_rhsm_certificates:subscription-manager-rhsm-certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription_manager_rhsm_certificates:subscription_manager_rhsm_certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription-manager-rhsm:subscription-manager-rhsm-certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription-manager-rhsm:subscription_manager_rhsm_certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription_manager_rhsm:subscription-manager-rhsm-certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription_manager_rhsm:subscription_manager_rhsm_certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription-manager:subscription-manager-rhsm-certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription-manager:subscription_manager_rhsm_certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription_manager:subscription-manager-rhsm-certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription_manager:subscription_manager_rhsm_certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription:subscription-manager-rhsm-certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:subscription:subscription_manager_rhsm_certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:subscription-manager-rhsm-certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:subscription_manager_rhsm_certificates:20220623-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"27808"},{"name":"syft:metadata:sourceRpm","value":"subscription-manager-rhsm-certificates-20220623-1.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/syspurpose@1.28.40?package-id=85a8385cd3327866","type":"library","author":"Chris Snyder ","name":"syspurpose","version":"1.28.40","licenses":[{"license":{"name":"GPLv2"}}],"cpe":"cpe:2.3:a:chris_snyder_project:python-syspurpose:1.28.40:*:*:*:*:*:*:*","purl":"pkg:pypi/syspurpose@1.28.40","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:chris_snyder_project:python_syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chris_snyderproject:python-syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chris_snyderproject:python_syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-syspurpose:python-syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-syspurpose:python_syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_syspurpose:python-syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_syspurpose:python_syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chainsaw_project:python-syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chainsaw_project:python_syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chainsawproject:python-syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chainsawproject:python_syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chris_snyder_project:syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chris_snyder:python-syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chris_snyder:python_syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chris_snyderproject:syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-syspurpose:syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_syspurpose:syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:syspurpose:python-syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:syspurpose:python_syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chainsaw_project:syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chainsaw:python-syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chainsaw:python_syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chainsawproject:syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chris_snyder:syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:syspurpose:syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:chainsaw:syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:syspurpose:1.28.40:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib/python3.6/site-packages/syspurpose-1.28.40-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib/python3.6/site-packages/syspurpose-1.28.40-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/systemd@239-78.el8?arch=aarch64&upstream=systemd-239-78.el8.src.rpm&distro=rhel-8.9&package-id=4c52d1c241a002cd","type":"library","publisher":"Red Hat, Inc.","name":"systemd","version":"239-78.el8","licenses":[{"license":{"name":"LGPLv2+ and MIT and GPLv2+"}}],"cpe":"cpe:2.3:a:systemd:systemd:239-78.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/systemd@239-78.el8?arch=aarch64&upstream=systemd-239-78.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:systemd:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"78.el8"},{"name":"syft:metadata:size","value":"13733535"},{"name":"syft:metadata:sourceRpm","value":"systemd-239-78.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/systemd-libs@239-78.el8?arch=aarch64&upstream=systemd-239-78.el8.src.rpm&distro=rhel-8.9&package-id=d309fb4895a29205","type":"library","publisher":"Red Hat, Inc.","name":"systemd-libs","version":"239-78.el8","licenses":[{"license":{"name":"LGPLv2+ and MIT"}}],"cpe":"cpe:2.3:a:systemd-libs:systemd-libs:239-78.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/systemd-libs@239-78.el8?arch=aarch64&upstream=systemd-239-78.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd-libs:systemd_libs:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_libs:systemd-libs:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_libs:systemd_libs:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd:systemd-libs:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd:systemd_libs:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:systemd-libs:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:systemd_libs:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"78.el8"},{"name":"syft:metadata:size","value":"4683398"},{"name":"syft:metadata:sourceRpm","value":"systemd-239-78.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/systemd-pam@239-78.el8?arch=aarch64&upstream=systemd-239-78.el8.src.rpm&distro=rhel-8.9&package-id=6e210e316bbd53d7","type":"library","publisher":"Red Hat, Inc.","name":"systemd-pam","version":"239-78.el8","licenses":[{"license":{"name":"LGPLv2+ and MIT and GPLv2+"}}],"cpe":"cpe:2.3:a:systemd-pam:systemd-pam:239-78.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/systemd-pam@239-78.el8?arch=aarch64&upstream=systemd-239-78.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd-pam:systemd_pam:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_pam:systemd-pam:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_pam:systemd_pam:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd:systemd-pam:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd:systemd_pam:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:systemd-pam:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:systemd_pam:239-78.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"78.el8"},{"name":"syft:metadata:size","value":"946448"},{"name":"syft:metadata:sourceRpm","value":"systemd-239-78.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/systemd-python@234?package-id=1e387794be3c4902","type":"library","author":"systemd developers ","name":"systemd-python","version":"234","licenses":[{"license":{"name":"LGPLv2+"}}],"cpe":"cpe:2.3:a:systemd_developers_project:python-systemd-python:234:*:*:*:*:*:*:*","purl":"pkg:pypi/systemd-python@234","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_developers_project:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_developersproject:python-systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_developersproject:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-systemd-python:python-systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-systemd-python:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_systemd_python:python-systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_systemd_python:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_devel_project:python-systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_devel_project:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_develproject:python-systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_develproject:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_developers_project:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_developers_project:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_developers:python-systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_developers:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_developersproject:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_developersproject:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-systemd-python:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-systemd-python:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-systemd:python-systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-systemd:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_systemd:python-systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_systemd:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_systemd_python:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_systemd_python:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd-python:python-systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd-python:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_devel_project:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_devel_project:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_python:python-systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_python:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd-devel:python-systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd-devel:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_devel:python-systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_devel:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_develproject:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_develproject:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_developers:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_developers:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-systemd:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python-systemd:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_systemd:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python_systemd:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd-python:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd-python:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd:python-systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_python:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_python:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python-systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:python_systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd-devel:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd-devel:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_devel:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd_devel:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:systemd:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:systemd-python:234:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:python:systemd_python:234:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib64/python3.6/site-packages/systemd_python-234-py3.6.egg-info"}]},{"bom-ref":"pkg:rpm/rhel/tar@1.30-9.el8?arch=aarch64&epoch=2&upstream=tar-1.30-9.el8.src.rpm&distro=rhel-8.9&package-id=3ca75f440e713e7e","type":"library","publisher":"Red Hat, Inc.","name":"tar","version":"2:1.30-9.el8","licenses":[{"license":{"name":"GPLv3+"}}],"cpe":"cpe:2.3:a:redhat:tar:2\\:1.30-9.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/tar@1.30-9.el8?arch=aarch64&epoch=2&upstream=tar-1.30-9.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:tar:tar:2\\:1.30-9.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"2"},{"name":"syft:metadata:release","value":"9.el8"},{"name":"syft:metadata:size","value":"2900565"},{"name":"syft:metadata:sourceRpm","value":"tar-1.30-9.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/tpm2-tss@2.3.2-5.el8?arch=aarch64&upstream=tpm2-tss-2.3.2-5.el8.src.rpm&distro=rhel-8.9&package-id=397f1ef8b63caaf1","type":"library","publisher":"Red Hat, Inc.","name":"tpm2-tss","version":"2.3.2-5.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:tpm2-tss:tpm2-tss:2.3.2-5.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/tpm2-tss@2.3.2-5.el8?arch=aarch64&upstream=tpm2-tss-2.3.2-5.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:tpm2-tss:tpm2_tss:2.3.2-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tpm2_tss:tpm2-tss:2.3.2-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tpm2_tss:tpm2_tss:2.3.2-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:tpm2-tss:2.3.2-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:tpm2_tss:2.3.2-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tpm2:tpm2-tss:2.3.2-5.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:tpm2:tpm2_tss:2.3.2-5.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"5.el8"},{"name":"syft:metadata:size","value":"1470606"},{"name":"syft:metadata:sourceRpm","value":"tpm2-tss-2.3.2-5.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/trousers@0.3.15-1.el8?arch=aarch64&upstream=trousers-0.3.15-1.el8.src.rpm&distro=rhel-8.9&package-id=5da7aead604066ea","type":"library","publisher":"Red Hat, Inc.","name":"trousers","version":"0.3.15-1.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:trousers:trousers:0.3.15-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/trousers@0.3.15-1.el8?arch=aarch64&upstream=trousers-0.3.15-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:trousers:0.3.15-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"404294"},{"name":"syft:metadata:sourceRpm","value":"trousers-0.3.15-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/trousers-lib@0.3.15-1.el8?arch=aarch64&upstream=trousers-0.3.15-1.el8.src.rpm&distro=rhel-8.9&package-id=da917d7d87c01d36","type":"library","publisher":"Red Hat, Inc.","name":"trousers-lib","version":"0.3.15-1.el8","licenses":[{"license":{"name":"BSD"}}],"cpe":"cpe:2.3:a:trousers-lib:trousers-lib:0.3.15-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/trousers-lib@0.3.15-1.el8?arch=aarch64&upstream=trousers-0.3.15-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:trousers-lib:trousers_lib:0.3.15-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:trousers_lib:trousers-lib:0.3.15-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:trousers_lib:trousers_lib:0.3.15-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:trousers:trousers-lib:0.3.15-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:trousers:trousers_lib:0.3.15-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:trousers-lib:0.3.15-1.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:trousers_lib:0.3.15-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"470309"},{"name":"syft:metadata:sourceRpm","value":"trousers-0.3.15-1.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/tzdata@2024a-1.el8?arch=noarch&upstream=tzdata-2024a-1.el8.src.rpm&distro=rhel-8.9&package-id=5e9c9c9cbe75d9e1","type":"library","publisher":"Red Hat, Inc.","name":"tzdata","version":"2024a-1.el8","licenses":[{"license":{"name":"Public Domain"}}],"cpe":"cpe:2.3:a:redhat:tzdata:2024a-1.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/tzdata@2024a-1.el8?arch=noarch&upstream=tzdata-2024a-1.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:tzdata:tzdata:2024a-1.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"1.el8"},{"name":"syft:metadata:size","value":"1780398"},{"name":"syft:metadata:sourceRpm","value":"tzdata-2024a-1.el8.src.rpm"}]},{"bom-ref":"pkg:pypi/urllib3@1.24.2?package-id=f712b65d79223c00","type":"library","author":"Andrey Petrov ","name":"urllib3","version":"1.24.2","licenses":[{"license":{"id":"MIT"}}],"cpe":"cpe:2.3:a:python:urllib3:1.24.2:*:*:*:*:*:*:*","purl":"pkg:pypi/urllib3@1.24.2","properties":[{"name":"syft:package:foundBy","value":"python-installed-package-cataloger"},{"name":"syft:package:language","value":"python"},{"name":"syft:package:type","value":"python"},{"name":"syft:package:metadataType","value":"python-package"},{"name":"syft:location:0:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:0:path","value":"/usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/PKG-INFO"},{"name":"syft:location:1:layerID","value":"sha256:7a2b39246d28ad6bab256f11e346ac22a58bb61a7e4b4293c3875c8fcb1ec2fe"},{"name":"syft:location:1:path","value":"/usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/top_level.txt"}]},{"bom-ref":"pkg:rpm/rhel/usermode@1.113-2.el8?arch=aarch64&upstream=usermode-1.113-2.el8.src.rpm&distro=rhel-8.9&package-id=03b61912b7a538d5","type":"library","publisher":"Red Hat, Inc.","name":"usermode","version":"1.113-2.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:usermode:usermode:1.113-2.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/usermode@1.113-2.el8?arch=aarch64&upstream=usermode-1.113-2.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:usermode:1.113-2.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"2.el8"},{"name":"syft:metadata:size","value":"935768"},{"name":"syft:metadata:sourceRpm","value":"usermode-1.113-2.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/util-linux@2.32.1-44.el8_9.1?arch=aarch64&upstream=util-linux-2.32.1-44.el8_9.1.src.rpm&distro=rhel-8.9&package-id=82575e79210f8de3","type":"library","publisher":"Red Hat, Inc.","name":"util-linux","version":"2.32.1-44.el8_9.1","licenses":[{"license":{"name":"GPLv2 and GPLv2+ and LGPLv2+ and BSD with advertising and Public Domain"}}],"cpe":"cpe:2.3:a:util-linux:util-linux:2.32.1-44.el8_9.1:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/util-linux@2.32.1-44.el8_9.1?arch=aarch64&upstream=util-linux-2.32.1-44.el8_9.1.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:util-linux:util_linux:2.32.1-44.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:util_linux:util-linux:2.32.1-44.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:util_linux:util_linux:2.32.1-44.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:util-linux:2.32.1-44.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:util_linux:2.32.1-44.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:util:util-linux:2.32.1-44.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:util:util_linux:2.32.1-44.el8_9.1:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"44.el8_9.1"},{"name":"syft:metadata:size","value":"15189341"},{"name":"syft:metadata:sourceRpm","value":"util-linux-2.32.1-44.el8_9.1.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/vim-minimal@8.0.1763-19.el8_6.4?arch=aarch64&epoch=2&upstream=vim-8.0.1763-19.el8_6.4.src.rpm&distro=rhel-8.9&package-id=65871156253de472","type":"library","publisher":"Red Hat, Inc.","name":"vim-minimal","version":"2:8.0.1763-19.el8_6.4","licenses":[{"license":{"name":"Vim and MIT"}}],"cpe":"cpe:2.3:a:vim-minimal:vim-minimal:2\\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/vim-minimal@8.0.1763-19.el8_6.4?arch=aarch64&epoch=2&upstream=vim-8.0.1763-19.el8_6.4.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:vim-minimal:vim_minimal:2\\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:vim_minimal:vim-minimal:2\\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:vim_minimal:vim_minimal:2\\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:vim-minimal:2\\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:vim_minimal:2\\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:vim:vim-minimal:2\\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:vim:vim_minimal:2\\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:epoch","value":"2"},{"name":"syft:metadata:release","value":"19.el8_6.4"},{"name":"syft:metadata:size","value":"1267532"},{"name":"syft:metadata:sourceRpm","value":"vim-8.0.1763-19.el8_6.4.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/virt-what@1.25-4.el8?arch=aarch64&upstream=virt-what-1.25-4.el8.src.rpm&distro=rhel-8.9&package-id=3210669657eaa170","type":"library","publisher":"Red Hat, Inc.","name":"virt-what","version":"1.25-4.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:virt-what:virt-what:1.25-4.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/virt-what@1.25-4.el8?arch=aarch64&upstream=virt-what-1.25-4.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:virt-what:virt_what:1.25-4.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:virt_what:virt-what:1.25-4.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:virt_what:virt_what:1.25-4.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:virt-what:1.25-4.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:virt_what:1.25-4.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:virt:virt-what:1.25-4.el8:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:virt:virt_what:1.25-4.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"4.el8"},{"name":"syft:metadata:size","value":"111222"},{"name":"syft:metadata:sourceRpm","value":"virt-what-1.25-4.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/which@2.21-20.el8?arch=aarch64&upstream=which-2.21-20.el8.src.rpm&distro=rhel-8.9&package-id=87cb63331aafb5c3","type":"library","publisher":"Red Hat, Inc.","name":"which","version":"2.21-20.el8","licenses":[{"license":{"name":"GPLv3"}}],"cpe":"cpe:2.3:a:redhat:which:2.21-20.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/which@2.21-20.el8?arch=aarch64&upstream=which-2.21-20.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:which:which:2.21-20.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"20.el8"},{"name":"syft:metadata:size","value":"124060"},{"name":"syft:metadata:sourceRpm","value":"which-2.21-20.el8.src.rpm"}]},{"bom-ref":"pkg:maven/com.ibm.ws.security.audit.reader.auditreader/ws-auditreader@1.0.89.cl240520240506-1951?package-id=a3bbafceccccb3be","type":"library","name":"ws-auditreader","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-auditreader:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.security.audit.reader.auditreader/ws-auditreader@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"101034481f931897b91c094a7097040400c725df"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-auditreader:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_auditreader:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_auditreader:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-auditreader:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_auditreader:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-auditreader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_auditreader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-auditreader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_auditreader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-auditreader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_auditreader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-auditreader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_auditreader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-auditreader.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-auditreader.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.security.audit.reader.auditreader/ws-auditreader@1.0.89.cl240520240506-1951?package-id=44aba48efb439a54","type":"library","name":"ws-auditreader","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-auditreader:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.security.audit.reader.auditreader/ws-auditreader@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"101034481f931897b91c094a7097040400c725df"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-auditreader:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_auditreader:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_auditreader:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-auditreader:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_auditreader:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-auditreader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_auditreader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-auditreader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_auditreader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-auditreader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_auditreader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-auditreader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_auditreader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:auditreader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:auditreader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:reader:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:reader:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:audit:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:audit:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.audit.reader_1.0.89.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.audit.reader_1.0.89.jar:OSGI-OPT/websphere/libs/ws-auditreader.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.logging.hpel.binarylogviewer/ws-binarylogviewer@1.0.89.cl240520240506-1951?package-id=47aaef5e5a2dffb9","type":"library","name":"ws-binarylogviewer","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-binarylogviewer:ws-binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.logging.hpel.binarylogviewer/ws-binarylogviewer@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"78d32139985882f42e8a87e0dba09c55e1771e26"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-binarylogviewer:ws_binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_binarylogviewer:ws-binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_binarylogviewer:ws_binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:binarylogviewer:ws-binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:binarylogviewer:ws_binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-binarylogviewer:binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_binarylogviewer:binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:binarylogviewer:binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:ws-binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:ws_binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-binarylogviewer:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_binarylogviewer:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:binarylogviewer:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:ws-binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:ws_binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-binarylogviewer:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_binarylogviewer:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-binarylogviewer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_binarylogviewer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:binarylogviewer:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:binarylogviewer:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:binarylogviewer:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:logging:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:logging:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:hpel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:hpel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-binarylogviewer.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-binarylogviewer.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.install.featureUtility.featureutil/ws-featureUtility@1.0.89.cl240520240506-1951?package-id=5a0768a92ec9ea73","type":"library","name":"ws-featureUtility","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-featureUtility:ws-featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.install.featureUtility.featureutil/ws-featureUtility@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"d3409d0982296c7bb1605fea9256200ecfaeeb7f"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-featureUtility:ws_featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_featureUtility:ws-featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_featureUtility:ws_featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:ws-featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:ws_featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-featureUtility:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_featureUtility:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureutil:ws-featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureutil:ws_featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-featureUtility:featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_featureUtility:featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureutil:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:ws-featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:ws_featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-featureUtility:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_featureUtility:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureutil:featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-featureUtility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_featureUtility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureutil:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureUtility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:featureUtility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featureutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:featureutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:install:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:install:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-featureUtility.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-featureUtility.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.kernel.feature.featurelist/ws-featurelist@1.0.89.cl240520240506-1951?package-id=a2071abbcc8f3958","type":"library","name":"ws-featurelist","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-featurelist:ws-featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.kernel.feature.featurelist/ws-featurelist@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"883aabc0d5b47e59789af30a9c282bff07f1c1e4"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-featurelist:ws_featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_featurelist:ws-featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_featurelist:ws_featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featurelist:ws-featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featurelist:ws_featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-featurelist:featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_featurelist:featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featurelist:featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:ws-featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:ws_featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-featurelist:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_featurelist:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws-featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws_featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-featurelist:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_featurelist:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featurelist:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featurelist:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-featurelist:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_featurelist:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:featurelist:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:featurelist:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:feature:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:feature:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-featurelist.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-featurelist.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.kernel.instrument.check/ws-javaagent@1.0.89.cl240520240506-1951?package-id=5acddb7b2ff1c4b1","type":"library","name":"ws-javaagent","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-javaagent:ws-javaagent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.kernel.instrument.check/ws-javaagent@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"5831398776a21f7fa251fdb7573d4156b3a30ecb"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-javaagent:ws_javaagent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_javaagent:ws-javaagent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_javaagent:ws_javaagent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:ws-javaagent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:ws_javaagent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-javaagent:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_javaagent:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws-javaagent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws_javaagent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-javaagent:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_javaagent:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:ws-javaagent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:ws_javaagent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-javaagent:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_javaagent:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-javaagent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_javaagent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-javaagent:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-javaagent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_javaagent:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_javaagent:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:instrument:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:instrument:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:check:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:check:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-javaagent.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-javaagent.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.kernel.boot.ws-launch/ws-launch@1.0.89.cl240520240506-1951?package-id=ada40eec05114e4a","type":"library","name":"ws-launch","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-launch:ws-launch:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.kernel.boot.ws-launch/ws-launch@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"00631bd19a1364359fdde322f41c5d7ad0e6b690"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-launch:ws_launch:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_launch:ws-launch:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_launch:ws_launch:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws-launch:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws_launch:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-launch:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_launch:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:ws-launch:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:ws_launch:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-launch:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_launch:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-launch:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_launch:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-launch:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-launch:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_launch:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_launch:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/ws-launch.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/ws-launch.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.product.utility.productutil/ws-productutil@1.0.89.cl240520240506-1951?package-id=cd701e973d976d52","type":"library","name":"ws-productutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-productutil:ws-productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.product.utility.productutil/ws-productutil@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"625cbfda86ce12a889194b71f59caba72696da35"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-productutil:ws_productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_productutil:ws-productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_productutil:ws_productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:ws-productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:ws_productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-productutil:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_productutil:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:ws-productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:ws_productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws-productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws_productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-productutil:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-productutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_productutil:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_productutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-productutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_productutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-productutil.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-productutil.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.product.utility.productutil/ws-productutil@1.0.89.cl240520240506-1951?package-id=de9a1361a75a1223","type":"library","name":"ws-productutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-productutil:ws-productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.product.utility.productutil/ws-productutil@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"625cbfda86ce12a889194b71f59caba72696da35"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-productutil:ws_productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_productutil:ws-productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_productutil:ws_productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:ws-productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:ws_productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-productutil:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_productutil:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:ws-productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:ws_productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws-productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws_productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-productutil:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-productutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_productutil:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_productutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-productutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_productutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:productutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:productutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:product:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:product:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.product.utility_1.0.89.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.product.utility_1.0.89.jar:OSGI-OPT/websphere/lib/ws-productutil.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.config.schemagen.schemagen/ws-schemagen@1.0.89.cl240520240506-1951?package-id=c51b84fd4bb1302d","type":"library","name":"ws-schemagen","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-schemagen:ws-schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.config.schemagen.schemagen/ws-schemagen@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"f84978d9d7e6bfb228a4641a5708b4d90ac408dc"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-schemagen:ws_schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_schemagen:ws-schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_schemagen:ws_schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:ws-schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:ws_schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-schemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_schemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws-schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws_schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-schemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_schemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-schemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_schemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-schemagen.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-schemagen.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.security.utility.securityutil/ws-securityutil@1.0.89.cl240520240506-1951?package-id=3e302d2c9144cc5d","type":"library","name":"ws-securityutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-securityutil:ws-securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.security.utility.securityutil/ws-securityutil@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"b35bc07ffc631347bb3da7b50db47752008768ce"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-securityutil:ws_securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_securityutil:ws-securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_securityutil:ws_securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:ws-securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:ws_securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-securityutil:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_securityutil:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws-securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws_securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-securityutil:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_securityutil:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws-securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws_securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-securityutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_securityutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-securityutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_securityutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-securityutil.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-securityutil.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.security.utility.securityutil/ws-securityutil@1.0.89.cl240520240506-1951?package-id=2ceb441d12c8a9b7","type":"library","name":"ws-securityutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-securityutil:ws-securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.security.utility.securityutil/ws-securityutil@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"b35bc07ffc631347bb3da7b50db47752008768ce"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-securityutil:ws_securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_securityutil:ws-securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_securityutil:ws_securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:ws-securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:ws_securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-securityutil:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_securityutil:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws-securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws_securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-securityutil:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_securityutil:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws-securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws_securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-securityutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_securityutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-securityutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_securityutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:securityutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:securityutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:security:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:security:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.security.utility_1.0.89.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.security.utility_1.0.89.jar:OSGI-OPT/websphere/lib/ws-securityutil.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.kernel.boot.ws-server/ws-server@1.0.89.cl240520240506-1951?package-id=b2b5217b72f5e7bf","type":"library","name":"ws-server","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-server:ws-server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.kernel.boot.ws-server/ws-server@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"e00c9db68499b57958869b239f9079fc8ebba2a2"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-server:ws_server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_server:ws-server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_server:ws_server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws-server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws_server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-server:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_server:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:ws-server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:ws_server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-server:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_server:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-server:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_server:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-server.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-server.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.kernel.boot.ws-server/ws-server@1.0.89.cl240520240506-1951?package-id=6ee6d3bd007945f5","type":"library","name":"ws-server","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-server:ws-server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.kernel.boot.ws-server/ws-server@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"e00c9db68499b57958869b239f9079fc8ebba2a2"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-server:ws_server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_server:ws-server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_server:ws_server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws-server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws_server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-server:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_server:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:ws-server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:ws_server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-server:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_server:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-server:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_server:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:kernel:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:kernel:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:boot:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:boot:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.boot_1.0.89.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.kernel.boot_1.0.89.jar:OSGI-OPT/websphere/bin/tools/ws-server.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.config.server.schemagen.serverschemagen/ws-serverSchemagen@1.0.89.cl240520240506-1951?package-id=821e997d9838d7ee","type":"library","name":"ws-serverSchemagen","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-serverSchemagen:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.config.server.schemagen.serverschemagen/ws-serverSchemagen@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"6be066de12fd84bdf097ac634dbbb44654cb287b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-serverSchemagen:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_serverSchemagen:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_serverSchemagen:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-serverSchemagen:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_serverSchemagen:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-serverSchemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_serverSchemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-serverSchemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-serverSchemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_serverSchemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_serverSchemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-serverSchemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_serverSchemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-serverSchemagen.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-serverSchemagen.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.config.server.schemagen.serverschemagen/ws-serverSchemagen@1.0.89.cl240520240506-1951?package-id=6492e45dd3c29cec","type":"library","name":"ws-serverSchemagen","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-serverSchemagen:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.config.server.schemagen.serverschemagen/ws-serverSchemagen@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"6be066de12fd84bdf097ac634dbbb44654cb287b"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-serverSchemagen:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_serverSchemagen:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_serverSchemagen:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-serverSchemagen:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_serverSchemagen:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-serverSchemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_serverSchemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-serverSchemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-serverSchemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_serverSchemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_serverSchemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-serverSchemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_serverSchemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_serverSchemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:serverschemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:serverschemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:schemagen:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:schemagen:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:config:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:server:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:config:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:server:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:7aebf6e3b1026bb60f6a20966f902dc484c33b0806ad9911c3313af5af0d36be"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.config.server.schemagen_1.0.89.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.config.server.schemagen_1.0.89.jar:OSGI-OPT/websphere/lib/ws-serverSchemagen.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.webserver.plugin.utility.webserverPluginutil/ws-webserverPluginutil@1.0.89.cl240520240506-1951?package-id=e1ad80f2ae15146d","type":"library","name":"ws-webserverPluginutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-webserverPluginutil:ws-webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.webserver.plugin.utility.webserverPluginutil/ws-webserverPluginutil@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"5481285a605bd197bf26d0ff11135ec69d7b50bd"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-webserverPluginutil:ws_webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_webserverPluginutil:ws-webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_webserverPluginutil:ws_webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:ws-webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:ws_webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-webserverPluginutil:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_webserverPluginutil:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:ws-webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:ws_webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-webserverPluginutil:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_webserverPluginutil:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws-webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws_webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-webserverPluginutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_webserverPluginutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-webserverPluginutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_webserverPluginutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/bin/tools/ws-webserverPluginutil.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/bin/tools/ws-webserverPluginutil.jar"}]},{"bom-ref":"pkg:maven/com.ibm.ws.webserver.plugin.utility.webserverPluginutil/ws-webserverPluginutil@1.0.89.cl240520240506-1951?package-id=189d2c8ca8369318","type":"library","name":"ws-webserverPluginutil","version":"1.0.89.cl240520240506-1951","licenses":[{"license":{"name":"Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/"}}],"cpe":"cpe:2.3:a:ws-webserverPluginutil:ws-webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*","purl":"pkg:maven/com.ibm.ws.webserver.plugin.utility.webserverPluginutil/ws-webserverPluginutil@1.0.89.cl240520240506-1951","externalReferences":[{"url":"","hashes":[{"alg":"SHA-1","content":"5481285a605bd197bf26d0ff11135ec69d7b50bd"}],"type":"build-meta"}],"properties":[{"name":"syft:package:foundBy","value":"java-archive-cataloger"},{"name":"syft:package:language","value":"java"},{"name":"syft:package:type","value":"java-archive"},{"name":"syft:package:metadataType","value":"java-archive"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-webserverPluginutil:ws_webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_webserverPluginutil:ws-webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_webserverPluginutil:ws_webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:ws-webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:ws_webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-webserverPluginutil:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_webserverPluginutil:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:ws-webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:ws_webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-webserverPluginutil:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_webserverPluginutil:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws-webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws_webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-webserverPluginutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_webserverPluginutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws-webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws_webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws-webserverPluginutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws-webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws_webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws_webserverPluginutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserverPluginutil:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webserverPluginutil:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:webserver:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:webserver:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:utility:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:utility:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ibm:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:ws:ws:1.0.89.cl240520240506-1951:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:95a0bd80f3567c62f7efdae76133ac170bf014e9b19e3b403b2b2c0773d27551"},{"name":"syft:location:0:path","value":"/opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.utility_1.0.89.jar"},{"name":"syft:metadata:virtualPath","value":"/opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.utility_1.0.89.jar:OSGI-OPT/websphere/lib/ws-webserverPluginutil.jar"}]},{"bom-ref":"pkg:rpm/rhel/xz-libs@5.2.4-4.el8_6?arch=aarch64&upstream=xz-5.2.4-4.el8_6.src.rpm&distro=rhel-8.9&package-id=2e2acadfb7e65abc","type":"library","publisher":"Red Hat, Inc.","name":"xz-libs","version":"5.2.4-4.el8_6","licenses":[{"license":{"name":"Public Domain"}}],"cpe":"cpe:2.3:a:xz-libs:xz-libs:5.2.4-4.el8_6:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/xz-libs@5.2.4-4.el8_6?arch=aarch64&upstream=xz-5.2.4-4.el8_6.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:xz-libs:xz_libs:5.2.4-4.el8_6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:xz_libs:xz-libs:5.2.4-4.el8_6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:xz_libs:xz_libs:5.2.4-4.el8_6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:xz-libs:5.2.4-4.el8_6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:redhat:xz_libs:5.2.4-4.el8_6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:xz:xz-libs:5.2.4-4.el8_6:*:*:*:*:*:*:*"},{"name":"syft:cpe23","value":"cpe:2.3:a:xz:xz_libs:5.2.4-4.el8_6:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"4.el8_6"},{"name":"syft:metadata:size","value":"206287"},{"name":"syft:metadata:sourceRpm","value":"xz-5.2.4-4.el8_6.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/yum@4.7.0-19.el8?arch=noarch&upstream=dnf-4.7.0-19.el8.src.rpm&distro=rhel-8.9&package-id=5b4ad04c42c49d4b","type":"library","publisher":"Red Hat, Inc.","name":"yum","version":"4.7.0-19.el8","licenses":[{"license":{"name":"GPLv2+"}}],"cpe":"cpe:2.3:a:redhat:yum:4.7.0-19.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/yum@4.7.0-19.el8?arch=noarch&upstream=dnf-4.7.0-19.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:yum:yum:4.7.0-19.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"19.el8"},{"name":"syft:metadata:size","value":"77901"},{"name":"syft:metadata:sourceRpm","value":"dnf-4.7.0-19.el8.src.rpm"}]},{"bom-ref":"pkg:rpm/rhel/zlib@1.2.11-25.el8?arch=aarch64&upstream=zlib-1.2.11-25.el8.src.rpm&distro=rhel-8.9&package-id=a66f59faeec26c10","type":"library","publisher":"Red Hat, Inc.","name":"zlib","version":"1.2.11-25.el8","licenses":[{"license":{"name":"zlib and Boost"}}],"cpe":"cpe:2.3:a:redhat:zlib:1.2.11-25.el8:*:*:*:*:*:*:*","purl":"pkg:rpm/rhel/zlib@1.2.11-25.el8?arch=aarch64&upstream=zlib-1.2.11-25.el8.src.rpm&distro=rhel-8.9","properties":[{"name":"syft:package:foundBy","value":"rpm-db-cataloger"},{"name":"syft:package:type","value":"rpm"},{"name":"syft:package:metadataType","value":"rpm-db-entry"},{"name":"syft:cpe23","value":"cpe:2.3:a:zlib:zlib:1.2.11-25.el8:*:*:*:*:*:*:*"},{"name":"syft:location:0:layerID","value":"sha256:e9298c677a10bb30881b0c7d1788e2881348b9f7be91a04e148c6a45a341c5f5"},{"name":"syft:location:0:path","value":"/var/lib/rpm/Packages"},{"name":"syft:metadata:release","value":"25.el8"},{"name":"syft:metadata:size","value":"236639"},{"name":"syft:metadata:sourceRpm","value":"zlib-1.2.11-25.el8.src.rpm"}]},{"bom-ref":"os:rhel@8.9","type":"operating-system","name":"rhel","version":"8.9","description":"Red Hat Enterprise Linux 8.9 (Ootpa)","cpe":"cpe:2.3:o:redhat:enterprise_linux:8:*:baseos:*:*:*:*:*","swid":{"tagId":"rhel","name":"rhel","version":"8.9"},"externalReferences":[{"url":"https://bugzilla.redhat.com/","type":"issue-tracker"},{"url":"https://www.redhat.com/","type":"website"}],"properties":[{"name":"syft:distro:id","value":"rhel"},{"name":"syft:distro:idLike:0","value":"fedora"},{"name":"syft:distro:prettyName","value":"Red Hat Enterprise Linux 8.9 (Ootpa)"},{"name":"syft:distro:versionID","value":"8.9"}]}],"dependencies":[{"ref":"pkg:generic/java/jdk@17.0.10%2B7?package-id=c445e0e56fe1c096","dependsOn":["pkg:rpm/rhel/glibc@2.28-236.el8_9.13?arch=aarch64&upstream=glibc-2.28-236.el8_9.13.src.rpm&distro=rhel-8.9&package-id=3c4cebedf9900b10","pkg:rpm/rhel/zlib@1.2.11-25.el8?arch=aarch64&upstream=zlib-1.2.11-25.el8.src.rpm&distro=rhel-8.9&package-id=a66f59faeec26c10"]},{"ref":"pkg:generic/java/jre@17.0.10%2B7?package-id=9ab6a4e8460955bf","dependsOn":["pkg:rpm/rhel/glibc@2.28-236.el8_9.13?arch=aarch64&upstream=glibc-2.28-236.el8_9.13.src.rpm&distro=rhel-8.9&package-id=3c4cebedf9900b10","pkg:rpm/rhel/zlib@1.2.11-25.el8?arch=aarch64&upstream=zlib-1.2.11-25.el8.src.rpm&distro=rhel-8.9&package-id=a66f59faeec26c10"]}]} diff --git a/dev/tekton/tasks/sbom/push-sbom.bak b/dev/tekton/tasks/sbom/push-sbom.bak new file mode 100644 index 0000000..ab77341 --- /dev/null +++ b/dev/tekton/tasks/sbom/push-sbom.bak @@ -0,0 +1,50 @@ +apiVersion: tekton.dev/v1 +kind: Task +metadata: + name: push-sbom + namespace: default +spec: + params: + - description: The name of sbom + name: sbom + type: string + - description: The deptrack-authorisation-key to upload the sbom, put in secret + name: deptrack-apiKey + type: string + - description: The name of the deptrack-project + name: deptrack-projectName + type: string + - description: The version of the deptrack-project + name: deptrack-projectVersion + type: string + steps: + - computeResources: {} + image: allardkrings/ubuntu-curl:1.0 + name: push-sbom + script: | + #!/usr/bin/env bash + if + curl -X POST \ + -H 'Content-Type: multipart/form-data; boundary=__X_BOM__' \ + -H "X-API-Key: odt_UPC8l0R9vzQILZIphSoK15J4u4Ns3HEy" \ + -F "autoCreate=true" \ + -F "projectName=olproperties" \ + -F "projectVersion=1.1" \ + -F "bom=@olproperties.sbom.json" \ + "https://deptracka-dev.allarddcs.nl/api/v1/bom" \ + | grep "token" + then + echo "sbom uploaded succesfully" + else + echo odt_UPC8l0R9vzQILZIphSoK15J4u4Ns3HEy + echo olproperties + echo 1.1 + echo olproperties.sbom.json + ls + echo "upload sbom failed" + exit -1 + fi + workingDir: $(workspaces.source-dir.path) + workspaces: + - name: source-dir + optional: true diff --git a/dev/tekton/tasks/sbom/push-sbom.new b/dev/tekton/tasks/sbom/push-sbom.new new file mode 100644 index 0000000..5ed4b3c --- /dev/null +++ b/dev/tekton/tasks/sbom/push-sbom.new @@ -0,0 +1,56 @@ +apiVersion: tekton.dev/v1 +kind: Task +metadata: + name: push-sbom + namespace: default +spec: + params: + - description: The name of sbom + name: sbom + type: string + - description: The deptrack-authorisation-key to upload the sbom, put in secret + name: deptrack-apiKey + type: string + - description: The name of the deptrack-project + name: deptrack-projectName + type: string + - description: The version of the deptrack-project + name: deptrack-projectVersion + type: string + - description: The URL of the DepTrack API + name: deptrack-url + type: string + steps: + - computeResources: {} + image: harbor-dev.allarddcs.nl/allard/curl:1.0 + name: push-sbom + script: | + #!/usr/bin/env bash + + # Run curl command and capture the output and error messages + response=$(curl -v -k -X POST \ + -H 'Content-Type: multipart/form-data; boundary=__X_BOM__' \ + -H "X-API-Key: $(params.deptrack-apiKey)" \ + -F "autoCreate=true" \ + -F "projectName=$(params.deptrack-projectName)" \ + -F "projectVersion=$(params.deptrack-projectVersion)" \ + -F "bom=@$(params.sbom)" \ + "$(params.deptrack-url)/api/v1/bom" 2>&1) + # Check the response for a specific token or success message + if echo "$response" | grep -q "token"; then + echo "SBOM uploaded successfully" + else + # Print the error response from curl to diagnose the failure + echo $(params.deptrack-url) + echo $(params.deptrack-apiKey) + echo $(params.deptrack-projectName) + echo $(params.deptrack-projectVersion) + echo $(params.sbom) + echo "Failed to upload SBOM. Response from curl:" + echo "$response" + exit 1 + fi + workingDir: $(workspaces.source-dir.path) + workspaces: + - name: source-dir + optional: true diff --git a/dev/tekton/tasks/sbom/push-sbom.yaml b/dev/tekton/tasks/sbom/push-sbom.yaml new file mode 100644 index 0000000..b534f0b --- /dev/null +++ b/dev/tekton/tasks/sbom/push-sbom.yaml @@ -0,0 +1,50 @@ +apiVersion: tekton.dev/v1 +kind: Task +metadata: + name: push-sbom + namespace: default +spec: + params: + - description: name of the image + name: image-reference + type: string + - description: The name of sbom + name: sbom + type: string + - description: The deptrack-authorisation-key to upload the sbom, put in secret + name: deptrack-apiKey + type: string + - description: The name of the deptrack-project + name: deptrack-projectName + type: string + - description: The version of the deptrack-project + name: deptrack-projectVersion + type: string + - description: The URL of the DepTrack API + name: deptrack-url + type: string + steps: + - computeResources: {} + image: harbor-dev.allarddcs.nl/allard/curl:1.0 + name: push-sbom + script: | + #!/usr/bin/env bash + if curl -k -X POST \ + -H 'Content-Type: multipart/form-data; boundary=__X_BOM__' \ + -H "X-API-Key: $(params.deptrack-apiKey)" \ + -F "autoCreate=true" \ + -F "projectName=$(params.deptrack-projectName)" \ + -F "projectVersion=$(params.deptrack-projectVersion)" \ + -F "bom=@$(params.sbom)" \ + "$(params.deptrack-url)/api/v1/bom" \ + | grep "token" + then + echo "sbom uploaded successfully" + else + echo "Failed to upload sbom" + exit -1 + fi + workingDir: $(workspaces.source-dir.path) + workspaces: + - name: source-dir + optional: true diff --git a/dev/tekton/tasks/sbom/syft-push-pipeline-run.yaml b/dev/tekton/tasks/sbom/syft-push-pipeline-run.yaml new file mode 100755 index 0000000..81de872 --- /dev/null +++ b/dev/tekton/tasks/sbom/syft-push-pipeline-run.yaml @@ -0,0 +1,30 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + generateName: syft-push-pipeline-run- +spec: + pipelineRef: + name: generate-and-push-sbom + params: + - name: image-reference + value: harbor-dev.allarddcs.nl/allard/olproperties:1.0 + - name: deptrack-url + value: http://deptrack-apiserver.deptrack.svc.cluster.local:8080 + - name: deptrack-projectName + value: olproperties + - name: deptrack-projectVersion + value: 1.1 + - name: deptrack-apiKey + value: odt_BRpq4el8T0XqdeunYMnefniaS0n8Yxd8 + - name: deptrack-options + value: + - "" + workspaces: + - name: shared-data + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi diff --git a/dev/tekton/tasks/sbom/syft-push-pipeline.yaml b/dev/tekton/tasks/sbom/syft-push-pipeline.yaml new file mode 100755 index 0000000..c2df8c8 --- /dev/null +++ b/dev/tekton/tasks/sbom/syft-push-pipeline.yaml @@ -0,0 +1,55 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: generate-and-push-sbom +spec: + description: | + This pipeline generates an sbom with syft and pushes the sbom to deptrack + params: + - name: image-reference + type: string + - name: deptrack-url + type: string + - name: deptrack-projectName + type: string + - name: deptrack-projectVersion + type: string + - name: deptrack-options + type: array + - name: deptrack-apiKey + type: string + workspaces: + - name: shared-data + tasks: + - name: syft + taskRef: + name: syft + params: + - name: ARGS + value: + - $(params.image-reference) + - --output + - cyclonedx-json=./$(params.deptrack-projectName).sbom.json + workspaces: + - name: source-dir + workspace: shared-data + + - name: push-sbom + runAfter: ["syft"] + taskref: + name: push-sbom + params: + - name: deptrack-url + value: $(params.deptrack-url) + - name: deptrack-apiKey + value: $(params.deptrack-apiKey) + - name: deptrack-projectName + value: $(params.deptrack-projectName) + - name: deptrack-projectVersion + value: $(params.deptrack-projectVersion) + - name: sbom + value: $(params.deptrack-projectName).sbom.json + workspaces: + - name: source-dir + workspace: shared-data + diff --git a/dev/tekton/tasks/sbom/upload-sbom.sh b/dev/tekton/tasks/sbom/upload-sbom.sh new file mode 100755 index 0000000..47c0a17 --- /dev/null +++ b/dev/tekton/tasks/sbom/upload-sbom.sh @@ -0,0 +1,24 @@ +#!/usr/bin/env bash +export deptrackapiKey=odt_BRpq4el8T0XqdeunYMnefniaS0n8Yxd8 +export deptrackprojectName=olproperties +export deptrackprojectVersion=1.1 +export sbom=olproperties.sbom.json +if + curl -X POST "https://deptracka-dev.allarddcs.nl/api/v1/bom" \ + -H 'Content-Type: multipart/form-data; boundary=__X_BOM__' \ + -H "X-API-Key: $deptrackapiKey" \ + -F "autoCreate=true" \ + -F "projectName=$deptrackprojectName" \ + -F "projectVersion=$deptrackprojectVersion" \ + -F "bom=@olproperties.sbom.json" \ + | grep "token" +then + echo "sbom uploaded succesfully" +else + echo $deptrackapiKey + echo $deptrackprojectName + echo $deptrackprojectVersion + echo $sbom + echo "upload sbom failed" + exit -1 +fi diff --git a/dev/tekton/tasks/syft-task.yaml b/dev/tekton/tasks/syft-task.yaml new file mode 100755 index 0000000..f63ac2a --- /dev/null +++ b/dev/tekton/tasks/syft-task.yaml @@ -0,0 +1,27 @@ +apiVersion: tekton.dev/v1 +kind: Task +metadata: + labels: + app.kubernetes.io/version: "0.1" + name: syft +spec: + description: CLI tool and library for generating a Software Bill of Materials from + container images and filesystems + params: + - description: The Arguments to be passed to Syft command. + name: ARGS + type: array + - default: docker.io/anchore/syft:v0.93.0 + description: Syft image to be used + name: SYFT_IMAGE + type: string + steps: + - args: + - $(params.ARGS) + computeResources: {} + image: $(params.SYFT_IMAGE) + name: syft + workingDir: $(workspaces.source-dir.path) + workspaces: + - name: source-dir + optional: true diff --git a/dev/tekton/tasks/timestamp/buildah.yaml b/dev/tekton/tasks/timestamp/buildah.yaml new file mode 100644 index 0000000..0390c36 --- /dev/null +++ b/dev/tekton/tasks/timestamp/buildah.yaml @@ -0,0 +1,93 @@ +apiVersion: tekton.dev/v1 +kind: Task +metadata: + name: buildah + namespace: default +spec: + description: |- + Buildah task builds source into a container image and then pushes it to a container registry. + Buildah Task builds source into a container image using Project Atomic's Buildah build tool.It uses Buildah's support for building from Dockerfiles, using its buildah bud command.This command executes the directives in the Dockerfile to assemble a container image, then pushes that image to a container registry. + params: + - description: Reference of the image buildah will produce. + name: IMAGE + type: string + - default: quay.io/buildah/stable:v1.23.3 + description: The location of the buildah builder image. + name: BUILDER_IMAGE + type: string + - default: overlay + description: Set buildah storage driver + name: STORAGE_DRIVER + type: string + - default: ./Dockerfile + description: Path to the Dockerfile to build. + name: DOCKERFILE + type: string + - default: . + description: Path to the directory to use as context. + name: CONTEXT + type: string + - default: "true" + description: Verify the TLS on the registry endpoint (for push/pull to a non-TLS + registry) + name: TLSVERIFY + type: string + - default: oci + description: The format of the built container, oci or docker + name: FORMAT + type: string + - default: "" + description: Extra parameters passed for the build command when building images. + name: BUILD_EXTRA_ARGS + type: string + - default: "" + description: Extra parameters passed for the push command when pushing images. + name: PUSH_EXTRA_ARGS + type: string + - default: "false" + description: Skip pushing the built image + name: SKIP_PUSH + type: string + results: + - description: Digest of the image just built. + name: IMAGE_DIGEST + type: string + - description: Image repository where the built image would be pushed to + name: IMAGE_URL + type: string + steps: + - computeResources: {} + image: $(params.BUILDER_IMAGE) + name: build + script: | + [[ "$(workspaces.sslcertdir.bound)" == "true" ]] && CERT_DIR_FLAG="--cert-dir $(workspaces.sslcertdir.path)" + [[ "$(workspaces.dockerconfig.bound)" == "true" ]] && export DOCKER_CONFIG="$(workspaces.dockerconfig.path)" + buildah ${CERT_DIR_FLAG} --storage-driver=$(params.STORAGE_DRIVER) bud \ + $(params.BUILD_EXTRA_ARGS) --format=$(params.FORMAT) \ + --tls-verify=$(params.TLSVERIFY) --no-cache \ + -f $(params.DOCKERFILE) -t $(params.IMAGE) $(params.CONTEXT) + [[ "$(params.SKIP_PUSH)" == "true" ]] && echo "Push skipped" && exit 0 + buildah ${CERT_DIR_FLAG} --storage-driver=$(params.STORAGE_DRIVER) push \ + $(params.PUSH_EXTRA_ARGS) --tls-verify=$(params.TLSVERIFY) \ + --digestfile /tmp/image-digest $(params.IMAGE) \ + docker://$(params.IMAGE) + cat /tmp/image-digest | tee $(results.IMAGE_DIGEST.path) + echo -n "$(params.IMAGE)" | tee $(results.IMAGE_URL.path) + securityContext: + privileged: true + volumeMounts: + - mountPath: /var/lib/containers + name: varlibcontainers + workingDir: $(workspaces.source.path) + volumes: + - emptyDir: {} + name: varlibcontainers + workspaces: + - name: source + - name: sslcertdir + optional: true + - description: An optional workspace that allows providing a .docker/config.json + file for Buildah to access the container registry. The file should be placed + at the root of the Workspace with name config.json. + name: dockerconfig + optional: true diff --git a/dev/tekton/tasks/timestamp/timestamp-pipeline-run.yaml b/dev/tekton/tasks/timestamp/timestamp-pipeline-run.yaml new file mode 100644 index 0000000..9cc7df1 --- /dev/null +++ b/dev/tekton/tasks/timestamp/timestamp-pipeline-run.yaml @@ -0,0 +1,7 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + generateName: timestamp- +spec: + pipelineRef: + name: timestamp diff --git a/dev/tekton/tasks/timestamp/timestamp-pipeline.yaml b/dev/tekton/tasks/timestamp/timestamp-pipeline.yaml new file mode 100644 index 0000000..7da8f63 --- /dev/null +++ b/dev/tekton/tasks/timestamp/timestamp-pipeline.yaml @@ -0,0 +1,11 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: timestamp +spec: + workspaces: + - name: shared-workspace + tasks: + - name: timestamp + taskRef: + name: timestamp diff --git a/dev/tekton/tasks/timestamp/timestamp-task.yaml b/dev/tekton/tasks/timestamp/timestamp-task.yaml new file mode 100644 index 0000000..9b00e20 --- /dev/null +++ b/dev/tekton/tasks/timestamp/timestamp-task.yaml @@ -0,0 +1,21 @@ +apiVersion: tekton.dev/v1beta1 +kind: Task +metadata: + name: timestamp +spec: + results: + - name: timestamp + steps: + - name: timestamp + image: busybox + script: | + #!/bin/sh + # Get the current date-time in YYYYMMDD_HHMMSS format + TIMESTAMP=$(date +"%d%h%m%s") + echo $TIMESTAMP > $(results.timestamp.path) + echo "TIMESTAMP= " $TIMESTAMP + if [[ "$TIMESTAMP" =~ ^[a-zA-Z0-9_.-]+$ ]]; then + echo "TIMESTAMP is valid" + else + echo "TIMESTAMP is invalid" + fi diff --git a/dev/tekton/tekton-triggers/README.md b/dev/tekton/tekton-triggers/README.md new file mode 100755 index 0000000..6b76a6b --- /dev/null +++ b/dev/tekton/tekton-triggers/README.md @@ -0,0 +1,6 @@ +#Tekton triggers: + +kubectl apply --filename \ +https://storage.googleapis.com/tekton-releases/triggers/latest/release.yaml +kubectl apply --filename \ +https://storage.googleapis.com/tekton-releases/triggers/latest/interceptors.yaml diff --git a/dev/traefik/README.md b/dev/traefik/README.md new file mode 100755 index 0000000..fb0b3fa --- /dev/null +++ b/dev/traefik/README.md @@ -0,0 +1,36 @@ +1) traefik installeren via helmchart: +helm repo add traefik https://helm.traefik.io/traefik +helm repo update +kubectl create namespace traefik + +2) persistent storage aanmaken: + +kubect apply -f traefik-pvc + +When enabling persistence for certificates, permissions on acme.json can be +lost when Traefik restarts. You can ensure correct permissions with an +initContainer. See https://github.com/traefik/traefik-helm-chart/blob/master/EXAMPLES.md#use-traefik-native-lets-encrypt-integration-without-cert-manager + +3) Installeren + +helm install traefik traefik/traefik -f values.yaml -n traefik + +CHECK OF PORTFORWARDING VAN POORT 80 en 443 OP DE ROUTER NAAR DE LOADBALANCER GOED STAAT! +HERSTART NA WIJZIGING DE KPN-ROUTER! + +4) TLS verzwaren (tlsoption.yml is afkomstig van whoami-voorbeeld) + +kubectl apply -f tlsoption.yaml + +7) Daschboard toegankelijk maken (dashboard.yaml is afkomstig van helm-documentatie van traefik zelf) + +kubectl apply -f ingressroute-dashboard.yaml - n traefik + +#migreren: + +kubectl apply -f https://raw.githubusercontent.com/traefik/traefik/v2.10/docs/content/reference/dynamic-configuration/kubernetes-crd-rbac.yml +kubectl apply -f https://raw.githubusercontent.com/traefik/traefik/v2.10/docs/content/reference/dynamic-configuration/kubernetes-crd-definition-v1.yml + + + + diff --git a/dev/traefik/catalog-info.yaml b/dev/traefik/catalog-info.yaml new file mode 100644 index 0000000..2de5b2b --- /dev/null +++ b/dev/traefik/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-traefik + title: traefik (dev) + description: traefik instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=traefik" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/traefik + title: traefik-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/traefik/clusterrole.yaml b/dev/traefik/clusterrole.yaml new file mode 100644 index 0000000..b05dc5c --- /dev/null +++ b/dev/traefik/clusterrole.yaml @@ -0,0 +1,11 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: traefik +rules: + - apiGroups: ["traefik.io"] + resources: ["ingressroutes", "ingressroutesstatus"] + verbs: ["get", "list", "watch", "create", "update", "delete"] + - apiGroups: [""] + resources: ["services", "endpoints", "pods", "secrets"] + verbs: ["get", "list", "watch"] diff --git a/dev/traefik/clusterrolebinding.yaml b/dev/traefik/clusterrolebinding.yaml new file mode 100644 index 0000000..25a61c9 --- /dev/null +++ b/dev/traefik/clusterrolebinding.yaml @@ -0,0 +1,12 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: traefik-ingressroute +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: traefik +subjects: + - kind: ServiceAccount + name: traefik + namespace: traefik diff --git a/dev/traefik/ingressroute-dashboard.yaml b/dev/traefik/ingressroute-dashboard.yaml new file mode 100755 index 0000000..b967b7c --- /dev/null +++ b/dev/traefik/ingressroute-dashboard.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: traefik-dashboard + namespace: traefik +spec: + entryPoints: + - websecure + routes: + - match: Host(`traefik-dev.allarddcs.nl`) && (PathPrefix(`/dashboard`) || PathPrefix(`/api`)) + kind: Rule + services: + - name: api@internal + kind: TraefikService diff --git a/dev/traefik/org.yaml b/dev/traefik/org.yaml new file mode 100644 index 0000000..2edeef5 --- /dev/null +++ b/dev/traefik/org.yaml @@ -0,0 +1,1085 @@ +# Default values for Traefik +# This is a YAML-formatted file. +# Declare variables to be passed into templates + +image: # @schema additionalProperties: false + # -- Traefik image host registry + registry: docker.io + # -- Traefik image repository + repository: traefik + # -- defaults to appVersion + tag: # @schema type:[string, null] + # -- Traefik image pull policy + pullPolicy: IfNotPresent + +# -- Add additional label to all resources +commonLabels: {} + +deployment: + # -- Enable deployment + enabled: true + # -- Deployment or DaemonSet + kind: Deployment + # -- Number of pods of the deployment (only applies when kind == Deployment) + replicas: 1 + # -- Number of old history to retain to allow rollback (If not set, default Kubernetes value is set to 10) + revisionHistoryLimit: # @schema type:[integer, null];minimum:0 + # -- Amount of time (in seconds) before Kubernetes will send the SIGKILL signal if Traefik does not shut down + terminationGracePeriodSeconds: 60 + # -- The minimum number of seconds Traefik needs to be up and running before the DaemonSet/Deployment controller considers it available + minReadySeconds: 0 + ## -- Override the liveness/readiness port. This is useful to integrate traefik + ## with an external Load Balancer that performs healthchecks. + ## Default: ports.traefik.port + healthchecksPort: # @schema type:[integer, null];minimum:0 + ## -- Override the liveness/readiness host. Useful for getting ping to respond on non-default entryPoint. + ## Default: ports.traefik.hostIP if set, otherwise Pod IP + healthchecksHost: "" + ## -- Override the liveness/readiness scheme. Useful for getting ping to + ## respond on websecure entryPoint. + healthchecksScheme: # @schema enum:[HTTP, HTTPS, null]; type:[string, null]; default: HTTP + ## -- Override the readiness path. + ## Default: /ping + readinessPath: "" + # -- Override the liveness path. + # Default: /ping + livenessPath: "" + # -- Additional deployment annotations (e.g. for jaeger-operator sidecar injection) + annotations: {} + # -- Additional deployment labels (e.g. for filtering deployment by custom labels) + labels: {} + # -- Additional pod annotations (e.g. for mesh injection or prometheus scraping) + # It supports templating. One can set it with values like traefik/name: '{{ template "traefik.name" . }}' + podAnnotations: {} + # -- Additional Pod labels (e.g. for filtering Pod by custom labels) + podLabels: {} + # -- Additional containers (e.g. for metric offloading sidecars) + additionalContainers: [] + # https://docs.datadoghq.com/developers/dogstatsd/unix_socket/?tab=host + # - name: socat-proxy + # image: alpine/socat:1.0.5 + # args: ["-s", "-u", "udp-recv:8125", "unix-sendto:/socket/socket"] + # volumeMounts: + # - name: dsdsocket + # mountPath: /socket + # -- Additional volumes available for use with initContainers and additionalContainers + additionalVolumes: [] + # - name: dsdsocket + # hostPath: + # path: /var/run/statsd-exporter + # -- Additional initContainers (e.g. for setting file permission as shown below) + initContainers: [] + # The "volume-permissions" init container is required if you run into permission issues. + # Related issue: https://github.com/traefik/traefik-helm-chart/issues/396 + # - name: volume-permissions + # image: busybox:latest + # command: ["sh", "-c", "touch /data/acme.json; chmod -v 600 /data/acme.json"] + # volumeMounts: + # - name: data + # mountPath: /data + # -- Use process namespace sharing + shareProcessNamespace: false + # -- Custom pod DNS policy. Apply if `hostNetwork: true` + dnsPolicy: "" + # -- Custom pod [DNS config](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.30/#poddnsconfig-v1-core) + dnsConfig: {} + # -- Custom [host aliases](https://kubernetes.io/docs/tasks/network/customize-hosts-file-for-pods/) + hostAliases: [] + # -- Pull secret for fetching traefik container image + imagePullSecrets: [] + # -- Pod lifecycle actions + lifecycle: {} + # preStop: + # exec: + # command: ["/bin/sh", "-c", "sleep 40"] + # postStart: + # httpGet: + # path: /ping + # port: 8080 + # host: localhost + # scheme: HTTP + # -- Set a runtimeClassName on pod + runtimeClassName: "" + +# -- [Pod Disruption Budget](https://kubernetes.io/docs/reference/kubernetes-api/policy-resources/pod-disruption-budget-v1/) +podDisruptionBudget: # @schema additionalProperties: false + enabled: false + maxUnavailable: # @schema type:[string, integer, null];minimum:0 + minAvailable: # @schema type:[string, integer, null];minimum:0 + +# -- Create a default IngressClass for Traefik +ingressClass: # @schema additionalProperties: false + enabled: true + isDefaultClass: true + name: "" + +core: # @schema additionalProperties: false + # -- Can be used to use globally v2 router syntax + # See https://doc.traefik.io/traefik/v3.0/migration/v2-to-v3/#new-v3-syntax-notable-changes + defaultRuleSyntax: "" + +# Traefik experimental features +experimental: + # -- Defines whether all plugins must be loaded successfully for Traefik to start + abortOnPluginFailure: false + fastProxy: + # -- Enables the FastProxy implementation. + enabled: false + # -- Enable debug mode for the FastProxy implementation. + debug: false + kubernetesGateway: + # -- Enable traefik experimental GatewayClass CRD + enabled: false + # -- Enable traefik experimental plugins + plugins: {} + # demo: + # moduleName: github.com/traefik/plugindemo + # version: v0.2.1 + +gateway: + # -- When providers.kubernetesGateway.enabled, deploy a default gateway + enabled: true + # -- Set a custom name to gateway + name: "" + # -- By default, Gateway is created in the same `Namespace` than Traefik. + namespace: "" + # -- Additional gateway annotations (e.g. for cert-manager.io/issuer) + annotations: {} + # -- [Infrastructure](https://kubernetes.io/blog/2023/11/28/gateway-api-ga/#gateway-infrastructure-labels) + infrastructure: {} + # -- Define listeners + listeners: + web: + # -- Port is the network port. Multiple listeners may use the same port, subject to the Listener compatibility rules. + # The port must match a port declared in ports section. + port: 8000 + # -- Optional hostname. See [Hostname](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.Hostname) + hostname: "" + # Specify expected protocol on this listener. See [ProtocolType](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.ProtocolType) + protocol: HTTP + # -- Routes are restricted to namespace of the gateway [by default](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.FromNamespaces + namespacePolicy: # @schema type:[string, null] + # websecure listener is disabled by default because certificateRefs needs to be added, + # or you may specify TLS protocol with Passthrough mode and add "--providers.kubernetesGateway.experimentalChannel=true" in additionalArguments section. + # websecure: + # # -- Port is the network port. Multiple listeners may use the same port, subject to the Listener compatibility rules. + # # The port must match a port declared in ports section. + # port: 8443 + # # -- Optional hostname. See [Hostname](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.Hostname) + # hostname: + # # Specify expected protocol on this listener See [ProtocolType](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.ProtocolType) + # protocol: HTTPS + # # -- Routes are restricted to namespace of the gateway [by default](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.FromNamespaces) + # namespacePolicy: + # # -- Add certificates for TLS or HTTPS protocols. See [GatewayTLSConfig](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io%2fv1.GatewayTLSConfig) + # certificateRefs: + # # -- TLS behavior for the TLS session initiated by the client. See [TLSModeType](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.TLSModeType). + # mode: + +gatewayClass: # @schema additionalProperties: false + # -- When providers.kubernetesGateway.enabled and gateway.enabled, deploy a default gatewayClass + enabled: true + # -- Set a custom name to GatewayClass + name: "" + # -- Additional gatewayClass labels (e.g. for filtering gateway objects by custom labels) + labels: {} + +ingressRoute: + dashboard: + # -- Create an IngressRoute for the dashboard + enabled: false + # -- Additional ingressRoute annotations (e.g. for kubernetes.io/ingress.class) + annotations: {} + # -- Additional ingressRoute labels (e.g. for filtering IngressRoute by custom labels) + labels: {} + # -- The router match rule used for the dashboard ingressRoute + matchRule: PathPrefix(`/dashboard`) || PathPrefix(`/api`) + # -- The internal service used for the dashboard ingressRoute + services: + - name: api@internal + kind: TraefikService + # -- Specify the allowed entrypoints to use for the dashboard ingress route, (e.g. traefik, web, websecure). + # By default, it's using traefik entrypoint, which is not exposed. + # /!\ Do not expose your dashboard without any protection over the internet /!\ + entryPoints: ["traefik"] + # -- Additional ingressRoute middlewares (e.g. for authentication) + middlewares: [] + # -- TLS options (e.g. secret containing certificate) + tls: {} + healthcheck: + # -- Create an IngressRoute for the healthcheck probe + enabled: false + # -- Additional ingressRoute annotations (e.g. for kubernetes.io/ingress.class) + annotations: {} + # -- Additional ingressRoute labels (e.g. for filtering IngressRoute by custom labels) + labels: {} + # -- The router match rule used for the healthcheck ingressRoute + matchRule: PathPrefix(`/ping`) + # -- The internal service used for the healthcheck ingressRoute + services: + - name: ping@internal + kind: TraefikService + # -- Specify the allowed entrypoints to use for the healthcheck ingress route, (e.g. traefik, web, websecure). + # By default, it's using traefik entrypoint, which is not exposed. + entryPoints: ["traefik"] + # -- Additional ingressRoute middlewares (e.g. for authentication) + middlewares: [] + # -- TLS options (e.g. secret containing certificate) + tls: {} + +updateStrategy: # @schema additionalProperties: false + # -- Customize updateStrategy of Deployment or DaemonSet + type: RollingUpdate + rollingUpdate: + maxUnavailable: 0 # @schema type:[integer, string, null] + maxSurge: 1 # @schema type:[integer, string, null] + +readinessProbe: # @schema additionalProperties: false + # -- The number of consecutive failures allowed before considering the probe as failed. + failureThreshold: 1 + # -- The number of seconds to wait before starting the first probe. + initialDelaySeconds: 2 + # -- The number of seconds to wait between consecutive probes. + periodSeconds: 10 + # -- The minimum consecutive successes required to consider the probe successful. + successThreshold: 1 + # -- The number of seconds to wait for a probe response before considering it as failed. + timeoutSeconds: 2 +livenessProbe: # @schema additionalProperties: false + # -- The number of consecutive failures allowed before considering the probe as failed. + failureThreshold: 3 + # -- The number of seconds to wait before starting the first probe. + initialDelaySeconds: 2 + # -- The number of seconds to wait between consecutive probes. + periodSeconds: 10 + # -- The minimum consecutive successes required to consider the probe successful. + successThreshold: 1 + # -- The number of seconds to wait for a probe response before considering it as failed. + timeoutSeconds: 2 + +# -- Define [Startup Probe](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#define-startup-probes) +startupProbe: {} + +providers: # @schema additionalProperties: false + kubernetesCRD: + # -- Load Kubernetes IngressRoute provider + enabled: true + # -- Allows IngressRoute to reference resources in namespace other than theirs + allowCrossNamespace: false + # -- Allows to reference ExternalName services in IngressRoute + allowExternalNameServices: false + # -- Allows to return 503 when there is no endpoints available + allowEmptyServices: true + # -- When the parameter is set, only resources containing an annotation with the same value are processed. Otherwise, resources missing the annotation, having an empty value, or the value traefik are processed. It will also set required annotation on Dashboard and Healthcheck IngressRoute when enabled. + ingressClass: "" + # labelSelector: environment=production,method=traefik + # -- Array of namespaces to watch. If left empty, Traefik watches all namespaces. + namespaces: [] + # -- Defines whether to use Native Kubernetes load-balancing mode by default. + nativeLBByDefault: false + + kubernetesIngress: + # -- Load Kubernetes Ingress provider + enabled: true + # -- Allows to reference ExternalName services in Ingress + allowExternalNameServices: false + # -- Allows to return 503 when there is no endpoints available + allowEmptyServices: true + # -- When ingressClass is set, only Ingresses containing an annotation with the same value are processed. Otherwise, Ingresses missing the annotation, having an empty value, or the value traefik are processed. + ingressClass: # @schema type:[string, null] + # labelSelector: environment=production,method=traefik + # -- Array of namespaces to watch. If left empty, Traefik watches all namespaces. + namespaces: [] + # IP used for Kubernetes Ingress endpoints + publishedService: + # -- Enable [publishedService](https://doc.traefik.io/traefik/providers/kubernetes-ingress/#publishedservice) + enabled: true + # -- Override path of Kubernetes Service used to copy status from. Format: namespace/servicename. + # Default to Service deployed with this Chart. + pathOverride: "" + # -- Defines whether to use Native Kubernetes load-balancing mode by default. + nativeLBByDefault: false + + kubernetesGateway: + # -- Enable Traefik Gateway provider for Gateway API + enabled: false + # -- Toggles support for the Experimental Channel resources (Gateway API release channels documentation). + # This option currently enables support for TCPRoute and TLSRoute. + experimentalChannel: false + # -- Array of namespaces to watch. If left empty, Traefik watches all namespaces. + namespaces: [] + # -- A label selector can be defined to filter on specific GatewayClass objects only. + labelselector: "" + # -- Defines whether to use Native Kubernetes load-balancing mode by default. + nativeLBByDefault: false + statusAddress: + # -- This IP will get copied to the Gateway status.addresses, and currently only supports one IP value (IPv4 or IPv6). + ip: "" + # -- This Hostname will get copied to the Gateway status.addresses. + hostname: "" + # -- The Kubernetes service to copy status addresses from. When using third parties tools like External-DNS, this option can be used to copy the service loadbalancer.status (containing the service's endpoints IPs) to the gateways. Default to Service of this Chart. + service: + enabled: true + name: "" + namespace: "" + + file: + # -- Create a file provider + enabled: false + # -- Allows Traefik to automatically watch for file changes + watch: true + # -- File content (YAML format, go template supported) (see https://doc.traefik.io/traefik/providers/file/) + content: "" + +# -- Add volumes to the traefik pod. The volume name will be passed to tpl. +# This can be used to mount a cert pair or a configmap that holds a config.toml file. +# After the volume has been mounted, add the configs into traefik by using the `additionalArguments` list below, eg: +# `additionalArguments: +# - "--providers.file.filename=/config/dynamic.toml" +# - "--ping" +# - "--ping.entrypoint=web"` +volumes: [] +# - name: public-cert +# mountPath: "/certs" +# type: secret +# - name: '{{ printf "%s-configs" .Release.Name }}' +# mountPath: "/config" +# type: configMap + +# -- Additional volumeMounts to add to the Traefik container +additionalVolumeMounts: [] +# -- For instance when using a logshipper for access logs +# - name: traefik-logs +# mountPath: /var/log/traefik + +logs: + general: + # -- Set [logs format](https://doc.traefik.io/traefik/observability/logs/#format) + format: # @schema enum:["common", "json", null]; type:[string, null]; default: "common" + # By default, the level is set to INFO. + # -- Alternative logging levels are TRACE, DEBUG, INFO, WARN, ERROR, FATAL, and PANIC. + level: "INFO" # @schema enum:[TRACE,DEBUG,INFO,WARN,ERROR,FATAL,PANIC]; default: "INFO" + # -- To write the logs into a log file, use the filePath option. + filePath: "" + # -- When set to true and format is common, it disables the colorized output. + noColor: false + access: + # -- To enable access logs + enabled: false + # -- Set [access log format](https://doc.traefik.io/traefik/observability/access-logs/#format) + format: # @schema enum:["common", "json", null]; type:[string, null]; default: "common" + # filePath: "/var/log/traefik/access.log + # -- Set [bufferingSize](https://doc.traefik.io/traefik/observability/access-logs/#bufferingsize) + bufferingSize: # @schema type:[integer, null] + # -- Set [filtering](https://docs.traefik.io/observability/access-logs/#filtering) + filters: # @schema additionalProperties: false + # -- Set statusCodes, to limit the access logs to requests with a status codes in the specified range + statuscodes: "" + # -- Set retryAttempts, to keep the access logs when at least one retry has happened + retryattempts: false + # -- Set minDuration, to keep access logs when requests take longer than the specified duration + minduration: "" + # -- Enables accessLogs for internal resources. Default: false. + addInternals: false + fields: + general: + # -- Set default mode for fields.names + defaultmode: keep # @schema enum:[keep, drop, redact]; default: keep + # -- Names of the fields to limit. + names: {} + # -- [Limit logged fields or headers](https://doc.traefik.io/traefik/observability/access-logs/#limiting-the-fieldsincluding-headers) + headers: + # -- Set default mode for fields.headers + defaultmode: drop # @schema enum:[keep, drop, redact]; default: drop + names: {} + +metrics: + # -- Enable metrics for internal resources. Default: false + addInternals: false + + ## Prometheus is enabled by default. + ## It can be disabled by setting "prometheus: null" + prometheus: + # -- Entry point used to expose metrics. + entryPoint: metrics + # -- Enable metrics on entry points. Default: true + addEntryPointsLabels: # @schema type:[boolean, null] + # -- Enable metrics on routers. Default: false + addRoutersLabels: # @schema type:[boolean, null] + # -- Enable metrics on services. Default: true + addServicesLabels: # @schema type:[boolean, null] + # -- Buckets for latency metrics. Default="0.1,0.3,1.2,5.0" + buckets: "" + # -- When manualRouting is true, it disables the default internal router in + ## order to allow creating a custom router for prometheus@internal service. + manualRouting: false + # -- Add HTTP header labels to metrics. See EXAMPLES.md or upstream doc for usage. + headerLabels: {} # @schema type:[object, null] + service: + # -- Create a dedicated metrics service to use with ServiceMonitor + enabled: false + labels: {} + annotations: {} + # -- When set to true, it won't check if Prometheus Operator CRDs are deployed + disableAPICheck: # @schema type:[boolean, null] + serviceMonitor: + # -- Enable optional CR for Prometheus Operator. See EXAMPLES.md for more details. + enabled: false + metricRelabelings: [] + relabelings: [] + jobLabel: "" + interval: "" + honorLabels: false + scrapeTimeout: "" + honorTimestamps: false + enableHttp2: false + followRedirects: false + additionalLabels: {} + namespace: "" + namespaceSelector: {} + prometheusRule: + # -- Enable optional CR for Prometheus Operator. See EXAMPLES.md for more details. + enabled: false + additionalLabels: {} + namespace: "" + + # datadog: + # ## Address instructs exporter to send metrics to datadog-agent at this address. + # address: "127.0.0.1:8125" + # ## The interval used by the exporter to push metrics to datadog-agent. Default=10s + # # pushInterval: 30s + # ## The prefix to use for metrics collection. Default="traefik" + # # prefix: traefik + # ## Enable metrics on entry points. Default=true + # # addEntryPointsLabels: false + # ## Enable metrics on routers. Default=false + # # addRoutersLabels: true + # ## Enable metrics on services. Default=true + # # addServicesLabels: false + # influxdb2: + # ## Address instructs exporter to send metrics to influxdb v2 at this address. + # address: localhost:8086 + # ## Token with which to connect to InfluxDB v2. + # token: xxx + # ## Organisation where metrics will be stored. + # org: "" + # ## Bucket where metrics will be stored. + # bucket: "" + # ## The interval used by the exporter to push metrics to influxdb. Default=10s + # # pushInterval: 30s + # ## Additional labels (influxdb tags) on all metrics. + # # additionalLabels: + # # env: production + # # foo: bar + # ## Enable metrics on entry points. Default=true + # # addEntryPointsLabels: false + # ## Enable metrics on routers. Default=false + # # addRoutersLabels: true + # ## Enable metrics on services. Default=true + # # addServicesLabels: false + # statsd: + # ## Address instructs exporter to send metrics to statsd at this address. + # address: localhost:8125 + # ## The interval used by the exporter to push metrics to influxdb. Default=10s + # # pushInterval: 30s + # ## The prefix to use for metrics collection. Default="traefik" + # # prefix: traefik + # ## Enable metrics on entry points. Default=true + # # addEntryPointsLabels: false + # ## Enable metrics on routers. Default=false + # # addRoutersLabels: true + # ## Enable metrics on services. Default=true + # # addServicesLabels: false + otlp: + # -- Set to true in order to enable the OpenTelemetry metrics + enabled: false + # -- Enable metrics on entry points. Default: true + addEntryPointsLabels: # @schema type:[boolean, null] + # -- Enable metrics on routers. Default: false + addRoutersLabels: # @schema type:[boolean, null] + # -- Enable metrics on services. Default: true + addServicesLabels: # @schema type:[boolean, null] + # -- Explicit boundaries for Histogram data points. Default: [.005, .01, .025, .05, .1, .25, .5, 1, 2.5, 5, 10] + explicitBoundaries: [] + # -- Interval at which metrics are sent to the OpenTelemetry Collector. Default: 10s + pushInterval: "" + http: + # -- Set to true in order to send metrics to the OpenTelemetry Collector using HTTP. + enabled: false + # -- Format: ://:. Default: http://localhost:4318/v1/metrics + endpoint: "" + # -- Additional headers sent with metrics by the reporter to the OpenTelemetry Collector. + headers: {} + ## Defines the TLS configuration used by the reporter to send metrics to the OpenTelemetry Collector. + tls: + # -- The path to the certificate authority, it defaults to the system bundle. + ca: "" + # -- The path to the public certificate. When using this option, setting the key option is required. + cert: "" + # -- The path to the private key. When using this option, setting the cert option is required. + key: "" + # -- When set to true, the TLS connection accepts any certificate presented by the server regardless of the hostnames it covers. + insecureSkipVerify: # @schema type:[boolean, null] + grpc: + # -- Set to true in order to send metrics to the OpenTelemetry Collector using gRPC + enabled: false + # -- Format: ://:. Default: http://localhost:4318/v1/metrics + endpoint: "" + # -- Allows reporter to send metrics to the OpenTelemetry Collector without using a secured protocol. + insecure: false + ## Defines the TLS configuration used by the reporter to send metrics to the OpenTelemetry Collector. + tls: + # -- The path to the certificate authority, it defaults to the system bundle. + ca: "" + # -- The path to the public certificate. When using this option, setting the key option is required. + cert: "" + # -- The path to the private key. When using this option, setting the cert option is required. + key: "" + # -- When set to true, the TLS connection accepts any certificate presented by the server regardless of the hostnames it covers. + insecureSkipVerify: false + +## Tracing +# -- https://doc.traefik.io/traefik/observability/tracing/overview/ +tracing: # @schema additionalProperties: false + # -- Enables tracing for internal resources. Default: false. + addInternals: false + # -- Service name used in selected backend. Default: traefik. + serviceName: # @schema type:[string, null] + # -- Defines additional resource attributes to be sent to the collector. + resourceAttributes: {} + # -- Defines the list of request headers to add as attributes. It applies to client and server kind spans. + capturedRequestHeaders: [] + # -- Defines the list of response headers to add as attributes. It applies to client and server kind spans. + capturedResponseHeaders: [] + # -- By default, all query parameters are redacted. Defines the list of query parameters to not redact. + safeQueryParams: [] + # -- The proportion of requests to trace, specified between 0.0 and 1.0. Default: 1.0. + sampleRate: # @schema type:[number, null]; minimum:0; maximum:1 + otlp: + # -- See https://doc.traefik.io/traefik/v3.0/observability/tracing/opentelemetry/ + enabled: false + http: + # -- Set to true in order to send metrics to the OpenTelemetry Collector using HTTP. + enabled: false + # -- Format: ://:. Default: http://localhost:4318/v1/metrics + endpoint: "" + # -- Additional headers sent with metrics by the reporter to the OpenTelemetry Collector. + headers: {} + ## Defines the TLS configuration used by the reporter to send metrics to the OpenTelemetry Collector. + tls: + # -- The path to the certificate authority, it defaults to the system bundle. + ca: "" + # -- The path to the public certificate. When using this option, setting the key option is required. + cert: "" + # -- The path to the private key. When using this option, setting the cert option is required. + key: "" + # -- When set to true, the TLS connection accepts any certificate presented by the server regardless of the hostnames it covers. + insecureSkipVerify: false + grpc: + # -- Set to true in order to send metrics to the OpenTelemetry Collector using gRPC + enabled: false + # -- Format: ://:. Default: http://localhost:4318/v1/metrics + endpoint: "" + # -- Allows reporter to send metrics to the OpenTelemetry Collector without using a secured protocol. + insecure: false + ## Defines the TLS configuration used by the reporter to send metrics to the OpenTelemetry Collector. + tls: + # -- The path to the certificate authority, it defaults to the system bundle. + ca: "" + # -- The path to the public certificate. When using this option, setting the key option is required. + cert: "" + # -- The path to the private key. When using this option, setting the cert option is required. + key: "" + # -- When set to true, the TLS connection accepts any certificate presented by the server regardless of the hostnames it covers. + insecureSkipVerify: false + +# -- Global command arguments to be passed to all traefik's pods +globalArguments: +- "--global.checknewversion" +- "--global.sendanonymoususage" + +# -- Additional arguments to be passed at Traefik's binary +# See [CLI Reference](https://docs.traefik.io/reference/static-configuration/cli/) +# Use curly braces to pass values: `helm install --set="additionalArguments={--providers.kubernetesingress.ingressclass=traefik-internal,--log.level=DEBUG}"` +additionalArguments: [] +# - "--providers.kubernetesingress.ingressclass=traefik-internal" +# - "--log.level=DEBUG" + +# -- Additional Environment variables to be passed to Traefik's binary +# @default -- See _values.yaml_ +env: [] + +# -- Environment variables to be passed to Traefik's binary from configMaps or secrets +envFrom: [] + +ports: + traefik: + port: 8080 + # -- Use hostPort if set. + hostPort: # @schema type:[integer, null]; minimum:0 + # -- Use hostIP if set. If not set, Kubernetes will default to 0.0.0.0, which + # means it's listening on all your interfaces and all your IPs. You may want + # to set this value if you need traefik to listen on specific interface + # only. + hostIP: # @schema type:[string, null] + + # Defines whether the port is exposed if service.type is LoadBalancer or + # NodePort. + # + # -- You SHOULD NOT expose the traefik port on production deployments. + # If you want to access it from outside your cluster, + # use `kubectl port-forward` or create a secure ingress + expose: + default: false + # -- The exposed port for this service + exposedPort: 8080 + # -- The port protocol (TCP/UDP) + protocol: TCP + web: + ## -- Enable this entrypoint as a default entrypoint. When a service doesn't explicitly set an entrypoint it will only use this entrypoint. + # asDefault: true + port: 8000 + # hostPort: 8000 + # containerPort: 8000 + expose: + default: true + exposedPort: 80 + ## -- Different target traefik port on the cluster, useful for IP type LB + targetPort: # @schema type:[string, integer, null]; minimum:0 + # The port protocol (TCP/UDP) + protocol: TCP + # -- See [upstream documentation](https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport) + nodePort: # @schema type:[integer, null]; minimum:0 + redirections: + # -- Port Redirections + # Added in 2.2, one can make permanent redirects via entrypoints. + # Same sets of parameters: to, scheme, permanent and priority. + # https://docs.traefik.io/routing/entrypoints/#redirection + entryPoint: {} + forwardedHeaders: + # -- Trust forwarded headers information (X-Forwarded-*). + trustedIPs: [] + insecure: false + proxyProtocol: + # -- Enable the Proxy Protocol header parsing for the entry point + trustedIPs: [] + insecure: false + # -- Set transport settings for the entrypoint; see also + # https://doc.traefik.io/traefik/routing/entrypoints/#transport + transport: + respondingTimeouts: + readTimeout: # @schema type:[string, integer, null] + writeTimeout: # @schema type:[string, integer, null] + idleTimeout: # @schema type:[string, integer, null] + lifeCycle: + requestAcceptGraceTimeout: # @schema type:[string, integer, null] + graceTimeOut: # @schema type:[string, integer, null] + keepAliveMaxRequests: # @schema type:[integer, null]; minimum:0 + keepAliveMaxTime: # @schema type:[string, integer, null] + websecure: + ## -- Enable this entrypoint as a default entrypoint. When a service doesn't explicitly set an entrypoint it will only use this entrypoint. + # asDefault: true + port: 8443 + hostPort: # @schema type:[integer, null]; minimum:0 + containerPort: # @schema type:[integer, null]; minimum:0 + expose: + default: true + exposedPort: 443 + ## -- Different target traefik port on the cluster, useful for IP type LB + targetPort: # @schema type:[string, integer, null]; minimum:0 + ## -- The port protocol (TCP/UDP) + protocol: TCP + # -- See [upstream documentation](https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport) + nodePort: # @schema type:[integer, null]; minimum:0 + # -- See [upstream documentation](https://kubernetes.io/docs/concepts/services-networking/service/#application-protocol) + appProtocol: # @schema type:[string, null] + # -- See [upstream documentation](https://doc.traefik.io/traefik/routing/entrypoints/#allowacmebypass) + allowACMEByPass: false + http3: + ## -- Enable HTTP/3 on the entrypoint + ## Enabling it will also enable http3 experimental feature + ## https://doc.traefik.io/traefik/routing/entrypoints/#http3 + ## There are known limitations when trying to listen on same ports for + ## TCP & UDP (Http3). There is a workaround in this chart using dual Service. + ## https://github.com/kubernetes/kubernetes/issues/47249#issuecomment-587960741 + enabled: false + advertisedPort: # @schema type:[integer, null]; minimum:0 + forwardedHeaders: + # -- Trust forwarded headers information (X-Forwarded-*). + trustedIPs: [] + insecure: false + proxyProtocol: + # -- Enable the Proxy Protocol header parsing for the entry point + trustedIPs: [] + insecure: false + # -- See [upstream documentation](https://doc.traefik.io/traefik/routing/entrypoints/#transport) + transport: + respondingTimeouts: + readTimeout: # @schema type:[string, integer, null] + writeTimeout: # @schema type:[string, integer, null] + idleTimeout: # @schema type:[string, integer, null] + lifeCycle: + requestAcceptGraceTimeout: # @schema type:[string, integer, null] + graceTimeOut: # @schema type:[string, integer, null] + keepAliveMaxRequests: # @schema type:[integer, null]; minimum:0 + keepAliveMaxTime: # @schema type:[string, integer, null] + # -- See [upstream documentation](https://doc.traefik.io/traefik/routing/entrypoints/#tls) + tls: + enabled: true + options: "" + certResolver: "" + domains: [] + # -- One can apply Middlewares on an entrypoint + # https://doc.traefik.io/traefik/middlewares/overview/ + # https://doc.traefik.io/traefik/routing/entrypoints/#middlewares + # -- /!\ It introduces here a link between your static configuration and your dynamic configuration /!\ + # It follows the provider naming convention: https://doc.traefik.io/traefik/providers/overview/#provider-namespace + # - namespace-name1@kubernetescrd + # - namespace-name2@kubernetescrd + middlewares: [] + metrics: + # -- When using hostNetwork, use another port to avoid conflict with node exporter: + # https://github.com/prometheus/prometheus/wiki/Default-port-allocations + port: 9100 + # -- You may not want to expose the metrics port on production deployments. + # If you want to access it from outside your cluster, + # use `kubectl port-forward` or create a secure ingress + expose: + default: false + # -- The exposed port for this service + exposedPort: 9100 + # -- The port protocol (TCP/UDP) + protocol: TCP + +# -- TLS Options are created as [TLSOption CRDs](https://doc.traefik.io/traefik/https/tls/#tls-options) +# When using `labelSelector`, you'll need to set labels on tlsOption accordingly. +# See EXAMPLE.md for details. +tlsOptions: {} + +# -- TLS Store are created as [TLSStore CRDs](https://doc.traefik.io/traefik/https/tls/#default-certificate). This is useful if you want to set a default certificate. See EXAMPLE.md for details. +tlsStore: {} + +service: + enabled: true + ## -- Single service is using `MixedProtocolLBService` feature gate. + ## -- When set to false, it will create two Service, one for TCP and one for UDP. + single: true + type: LoadBalancer + # -- Additional annotations applied to both TCP and UDP services (e.g. for cloud provider specific config) + annotations: {} + # -- Additional annotations for TCP service only + annotationsTCP: {} + # -- Additional annotations for UDP service only + annotationsUDP: {} + # -- Additional service labels (e.g. for filtering Service by custom labels) + labels: {} + # -- Additional entries here will be added to the service spec. + # -- Cannot contain type, selector or ports entries. + spec: {} + # externalTrafficPolicy: Cluster + # loadBalancerIP: "1.2.3.4" + # clusterIP: "2.3.4.5" + loadBalancerSourceRanges: [] + # - 192.168.0.1/32 + # - 172.16.0.0/16 + ## -- Class of the load balancer implementation + # loadBalancerClass: service.k8s.aws/nlb + externalIPs: [] + # - 1.2.3.4 + ## One of SingleStack, PreferDualStack, or RequireDualStack. + # ipFamilyPolicy: SingleStack + ## List of IP families (e.g. IPv4 and/or IPv6). + ## ref: https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services + # ipFamilies: + # - IPv4 + # - IPv6 + ## + additionalServices: {} + ## -- An additional and optional internal Service. + ## Same parameters as external Service + # internal: + # type: ClusterIP + # # labels: {} + # # annotations: {} + # # spec: {} + # # loadBalancerSourceRanges: [] + # # externalIPs: [] + # # ipFamilies: [ "IPv4","IPv6" ] + +autoscaling: + # -- Create HorizontalPodAutoscaler object. + # See EXAMPLES.md for more details. + enabled: false + +persistence: + # -- Enable persistence using Persistent Volume Claims + # ref: http://kubernetes.io/docs/user-guide/persistent-volumes/. + # It can be used to store TLS certificates along with `certificatesResolvers..acme.storage` option + enabled: false + name: data + existingClaim: "" + accessMode: ReadWriteOnce + size: 128Mi + storageClass: "" + volumeName: "" + path: /data + annotations: {} + # -- Only mount a subpath of the Volume into the pod + subPath: "" + +# -- Certificates resolvers configuration. +# Ref: https://doc.traefik.io/traefik/https/acme/#certificate-resolvers +# See EXAMPLES.md for more details. +certificatesResolvers: {} + +# -- If hostNetwork is true, runs traefik in the host network namespace +# To prevent unschedulable pods due to port collisions, if hostNetwork=true +# and replicas>1, a pod anti-affinity is recommended and will be set if the +# affinity is left as default. +hostNetwork: false + +# -- Whether Role Based Access Control objects like roles and rolebindings should be created +rbac: # @schema additionalProperties: false + enabled: true + # When set to true: + # 1. It switches respectively the use of `ClusterRole` and `ClusterRoleBinding` to `Role` and `RoleBinding`. + # 2. It adds `disableIngressClassLookup` on Kubernetes Ingress with Traefik Proxy v3 until v3.1.4 + # 3. It adds `disableClusterScopeResources` on Ingress and CRD (Kubernetes) providers with Traefik Proxy v3.1.2+ + # **NOTE**: `IngressClass`, `NodePortLB` and **Gateway** provider cannot be used with namespaced RBAC. + # See [upstream documentation](https://doc.traefik.io/traefik/providers/kubernetes-ingress/#disableclusterscoperesources) for more details. + namespaced: false + # Enable user-facing roles + # https://kubernetes.io/docs/reference/access-authn-authz/rbac/#user-facing-roles + aggregateTo: [] + # List of Kubernetes secrets that are accessible for Traefik. If empty, then access is granted to every secret. + secretResourceNames: [] + +# -- Enable to create a PodSecurityPolicy and assign it to the Service Account via RoleBinding or ClusterRoleBinding +podSecurityPolicy: + enabled: false + +# -- The service account the pods will use to interact with the Kubernetes API +serviceAccount: # @schema additionalProperties: false + # If set, an existing service account is used + # If not set, a service account is created automatically using the fullname template + name: "" + +# -- Additional serviceAccount annotations (e.g. for oidc authentication) +serviceAccountAnnotations: {} + +# -- [Resources](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) for `traefik` container. +resources: {} + +# -- This example pod anti-affinity forces the scheduler to put traefik pods +# -- on nodes where no other traefik pods are scheduled. +# It should be used when hostNetwork: true to prevent port conflicts +affinity: {} +# podAntiAffinity: +# requiredDuringSchedulingIgnoredDuringExecution: +# - labelSelector: +# matchLabels: +# app.kubernetes.io/name: '{{ template "traefik.name" . }}' +# app.kubernetes.io/instance: '{{ .Release.Name }}-{{ include "traefik.namespace" . }}' +# topologyKey: kubernetes.io/hostname + +# -- nodeSelector is the simplest recommended form of node selection constraint. +nodeSelector: {} +# -- Tolerations allow the scheduler to schedule pods with matching taints. +tolerations: [] +# -- You can use topology spread constraints to control +# how Pods are spread across your cluster among failure-domains. +topologySpreadConstraints: [] +# This example topologySpreadConstraints forces the scheduler to put traefik pods +# on nodes where no other traefik pods are scheduled. +# - labelSelector: +# matchLabels: +# app.kubernetes.io/name: '{{ template "traefik.name" . }}' +# maxSkew: 1 +# topologyKey: kubernetes.io/hostname +# whenUnsatisfiable: DoNotSchedule + +# -- [Pod Priority and Preemption](https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/) +priorityClassName: "" + +# -- [SecurityContext](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#security-context-1) +# @default -- See _values.yaml_ +securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: [ALL] + readOnlyRootFilesystem: true + +# -- [Pod Security Context](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#security-context) +# @default -- See _values.yaml_ +podSecurityContext: + runAsGroup: 65532 + runAsNonRoot: true + runAsUser: 65532 + +# +# -- Extra objects to deploy (value evaluated as a template) +# +# In some cases, it can avoid the need for additional, extended or adhoc deployments. +# See #595 for more details and traefik/tests/values/extra.yaml for example. +extraObjects: [] + +# -- This field override the default Release Namespace for Helm. +# It will not affect optional CRDs such as `ServiceMonitor` and `PrometheusRules` +namespaceOverride: "" + +## -- This field override the default app.kubernetes.io/instance label for all Objects. +instanceLabelOverride: "" + +# Traefik Hub configuration. See https://doc.traefik.io/traefik-hub/ +hub: + # -- Name of `Secret` with key 'token' set to a valid license token. + # It enables API Gateway. + token: "" + apimanagement: + # -- Set to true in order to enable API Management. Requires a valid license token. + enabled: false + admission: + # -- WebHook admission server listen address. Default: "0.0.0.0:9943". + listenAddr: "" + # -- Certificate of the WebHook admission server. Default: "hub-agent-cert". + secretName: "" + openApi: + # -- When set to true, it will only accept paths and methods that are explicitly defined in its OpenAPI specification + validateRequestMethodAndPath: false + + experimental: + # -- Set to true in order to enable AI Gateway. Requires a valid license token. + aigateway: false + providers: + consulCatalogEnterprise: + # -- Enable Consul Catalog Enterprise backend with default settings. + enabled: false + # -- Use local agent caching for catalog reads. + cache: false + # -- Enable Consul Connect support. + connectAware: false + # -- Consider every service as Connect capable by default. + connectByDefault: false + # -- Constraints is an expression that Traefik matches against the container's labels + constraints: "" + # -- Default rule. + defaultRule: "Host(`{{ normalize .Name }}`)" + endpoint: + # -- The address of the Consul server + address: "" + # -- Data center to use. If not provided, the default agent data center is used + datacenter: "" + # -- WaitTime limits how long a Watch will block. If not provided, the agent default + endpointWaitTime: 0 + httpauth: + # -- Basic Auth password + password: "" + # -- Basic Auth username + username: "" + # -- The URI scheme for the Consul server + scheme: "" + tls: + # -- TLS CA + ca: "" + # -- TLS cert + cert: "" + # -- TLS insecure skip verify + insecureSkipVerify: false + # -- TLS key + key: "" + # -- Token is used to provide a per-request ACL token which overrides the agent's + token: "" + # -- Expose containers by default. + exposedByDefault: true + # -- Sets the namespaces used to discover services (Consul Enterprise only). + namespaces: "" + # -- Sets the partition used to discover services (Consul Enterprise only). + partition: "" + # -- Prefix for consul service tags. + prefix: "traefik" + # -- Interval for check Consul API. + refreshInterval: 15 + # -- Forces the read to be fully consistent. + requireConsistent: false + # -- Name of the Traefik service in Consul Catalog (needs to be registered via the + serviceName: "traefik" + # -- Use stale consistency for catalog reads. + stale: false + # -- A list of service health statuses to allow taking traffic. + strictChecks: "passing, warning" + # -- Watch Consul API events. + watch: false + microcks: + # -- Enable Microcks provider. + enabled: false + auth: + # -- Microcks API client ID. + clientId: "" + # -- Microcks API client secret. + clientSecret: "" + # -- Microcks API endpoint. + endpoint: "" + # -- Microcks API token. + token: "" + # -- Microcks API endpoint. + endpoint: "" + # -- Polling interval for Microcks API. + pollInterval: 30 + # -- Polling timeout for Microcks API. + pollTimeout: 5 + tls: + # -- TLS CA + ca: "" + # -- TLS cert + cert: "" + # -- TLS insecure skip verify + insecureSkipVerify: false + # -- TLS key + key: "" + redis: + # -- Enable Redis Cluster. Default: true. + cluster: # @schema type:[boolean, null] + # -- Database used to store information. Default: "0". + database: # @schema type:[string, null] + # -- Endpoints of the Redis instances to connect to. Default: "". + endpoints: "" + # -- The username to use when connecting to Redis endpoints. Default: "". + username: "" + # -- The password to use when connecting to Redis endpoints. Default: "". + password: "" + sentinel: + # -- Name of the set of main nodes to use for main selection. Required when using Sentinel. Default: "". + masterset: "" + # -- Username to use for sentinel authentication (can be different from endpoint username). Default: "". + username: "" + # -- Password to use for sentinel authentication (can be different from endpoint password). Default: "". + password: "" + # -- Timeout applied on connection with redis. Default: "0s". + timeout: "" + tls: + # -- Path to the certificate authority used for the secured connection. + ca: "" + # -- Path to the public certificate used for the secure connection. + cert: "" + # -- Path to the private key used for the secure connection. + key: "" + # -- When insecureSkipVerify is set to true, the TLS connection accepts any certificate presented by the server. Default: false. + insecureSkipVerify: false + # Enable export of errors logs to the platform. Default: true. + sendlogs: # @schema type:[boolean, null] + + tracing: + # -- Tracing headers to duplicate. + # To configure the following, tracing.otlp.enabled needs to be set to true. + additionalTraceHeaders: + enabled: false + traceContext: + # -- Name of the header that will contain the parent-id header copy. + parentId: "" + # -- Name of the header that will contain the trace-id copy. + traceId: "" + # -- Name of the header that will contain the traceparent copy. + traceParent: "" + # -- Name of the header that will contain the tracestate copy. + traceState: "" + diff --git a/dev/traefik/tlsoption.yaml b/dev/traefik/tlsoption.yaml new file mode 100755 index 0000000..5a0c5b9 --- /dev/null +++ b/dev/traefik/tlsoption.yaml @@ -0,0 +1,8 @@ +apiVersion: traefik.io/v1alpha1 +kind: TLSOption +metadata: + name: tsloption + namespace: traefik +spec: + minVersion: VersionTLS12 + diff --git a/dev/traefik/traefik-pvc.yaml b/dev/traefik/traefik-pvc.yaml new file mode 100644 index 0000000..2e3ab81 --- /dev/null +++ b/dev/traefik/traefik-pvc.yaml @@ -0,0 +1,34 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: traefik-pv +spec: + storageClassName: "" + capacity: + storage: 128Mi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/traefik/dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: traefik-pvc + namespace: traefik +spec: + storageClassName: "" + volumeName: traefik-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 128Mi + diff --git a/dev/traefik/values.yaml b/dev/traefik/values.yaml new file mode 100755 index 0000000..081a1c4 --- /dev/null +++ b/dev/traefik/values.yaml @@ -0,0 +1,235 @@ +USER-SUPPLIED VALUES: +additionalArguments: [] +additionalVolumeMounts: [] +affinity: {} +autoscaling: + enabled: false +certificatesResolvers: + letsencrypt: + acme: + email: admin@allarddcs.nl + storage: /data/acme.json + httpChallenge: + entryPoint: web +commonLabels: {} +core: + defaultRuleSyntax: v2 +deployment: + additionalContainers: [] + additionalVolumes: [] + annotations: {} + dnsConfig: {} + enabled: true + imagePullSecrets: [] + initContainers: + - name: volume-permissions + image: busybox:latest + command: ["sh", "-c", "touch /data/acme.json; chmod -v 600 /data/acme.json"] + volumeMounts: + - mountPath: /data + name: data + kind: Deployment + labels: {} + lifecycle: {} + minReadySeconds: 0 + podAnnotations: {} + podLabels: {} + replicas: 1 + runtimeClassName: null + shareProcessNamespace: false + terminationGracePeriodSeconds: 60 +env: +envFrom: [] +experimental: + kubernetesGateway: + enabled: false + plugins: {} +extraObjects: [] +globalArguments: +- --global.checknewversion +- --global.sendanonymoususage +global: + # Adjust timeout settings for Traefik + timeout: + connect: 60s # Time to wait for a connection to establish (default: 30s) + read: 600s # Increase read timeout for longer responses (default: 60s) + write: 600s +hostNetwork: false +image: + pullPolicy: Always + registry: docker.io + repository: traefik + tag: "" +ingressClass: + enabled: true + isDefaultClass: true +ingressRoute: + dashboard: + annotations: {} + enabled: true + entryPoints: + - traefik + labels: {} + matchRule: PathPrefix(`/dashboard`) || PathPrefix(`/api`) + middlewares: [] + tls: {} + healthcheck: + annotations: {} + enabled: true + entryPoints: + - traefik + labels: {} + matchRule: PathPrefix(`/ping`) + middlewares: [] + tls: {} +livenessProbe: + failureThreshold: 3 + initialDelaySeconds: 2 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 2 +logs: + access: + enabled: false + fields: + general: + defaultmode: keep + names: {} + headers: + defaultmode: drop + names: {} + filters: {} + general: + level: ERROR +#metrics: +# prometheus: +# entryPoint: metrics +nodeSelector: {} +persistence: + enabled: true + existingClaim: traefik-pvc + path: /data +podDisruptionBudget: + enabled: false +podSecurityContext: + fsGroupChangePolicy: OnRootMismatch + runAsGroup: 65532 + runAsNonRoot: true + runAsUser: 65532 +podSecurityPolicy: + enabled: false +ports: +# metrics: +# exposedPort: 9100 +# port: 9100 +# protocol: TCP + traefik: + expose: + default: true + exposedPort: 9000 + port: 9000 + protocol: TCP + web: + expose: + default: true + exposedPort: 80 + port: 8000 + protocol: TCP + allowACMEByPass: true + websecure: + respondingTimeouts: + readTimeout: 600 + expose: + default: true + exposedPort: 443 + http3: + enabled: false + middlewares: [] + port: 8443 + protocol: TCP + allowACMEByPass: true + tls: + certResolver: "" + domains: [] + enabled: true + options: "" + transport: + respondingTimeouts: + readTimeout: 0 # @schema type:[string, integer, null] + writeTimeout: 0 # @schema type:[string, integer, null] + idleTimeout: 0 # @schema type:[string, integer, null] + lifeCycle: + requestAcceptGraceTimeout: # @schema type:[string, integer, null] + graceTimeOut: # @schema type:[string, integer, null] + keepAliveMaxRequests: # @schema type:[integer, null]; minimum:0 + keepAliveMaxTime: # @schema type:[string, integer, null] +priorityClassName: "" +providers: + file: + content: "" + enabled: false + watch: true + kubernetesCRD: + allowCrossNamespace: false + allowEmptyServices: false + allowExternalNameServices: false + enabled: true + namespaces: [] + kubernetesIngress: + allowEmptyServices: false + allowExternalNameServices: false + disableIngressClassLookup: false + enabled: true + namespaces: [] + publishedService: + enabled: false +rbac: + enabled: true + namespaced: false + secretResourceNames: [] +readinessProbe: + failureThreshold: 1 + initialDelaySeconds: 2 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 2 +resources: + requests: + memory: "512Mi" + cpu: "500m" + limits: + memory: "1Gi" + cpu: "1" +securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + readOnlyRootFilesystem: true +service: + additionalServices: {} + annotations: {} + annotationsTCP: {} + annotationsUDP: {} + enabled: true + externalIPs: [] + labels: {} + loadBalancerSourceRanges: [] + single: true + spec: {} + type: LoadBalancer +serviceAccount: + name: "" +serviceAccountAnnotations: {} +startupProbe: null +tlsOptions: {} +tlsStore: {} +tolerations: [] +topologySpreadConstraints: [] +tracing: {} +updateStrategy: + rollingUpdate: + maxSurge: 1 + maxUnavailable: 0 + type: RollingUpdate +volumes: [] diff --git a/dev/trivy/README.md b/dev/trivy/README.md new file mode 100755 index 0000000..54d0392 --- /dev/null +++ b/dev/trivy/README.md @@ -0,0 +1 @@ +helm repo add aquasecurity https://aquasecurity.github.io/helm-charts/ diff --git a/dev/trivy/catalog-info.yaml b/dev/trivy/catalog-info.yaml new file mode 100644 index 0000000..918ed6d --- /dev/null +++ b/dev/trivy/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-trivy + title: trivy (dev) + description: trivy instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=trivy" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/trivy + title: trivy-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/zabbix/README.md b/dev/zabbix/README.md new file mode 100755 index 0000000..0640618 --- /dev/null +++ b/dev/zabbix/README.md @@ -0,0 +1,2 @@ +- user : admin +- password: Zabbix01@ diff --git a/dev/zabbix/agent_values.yaml b/dev/zabbix/agent_values.yaml new file mode 100755 index 0000000..c6ac05c --- /dev/null +++ b/dev/zabbix/agent_values.yaml @@ -0,0 +1,18 @@ +zabbixAgent: + enabled: true + env: + - name: ZBX_PASSIVE_SERVERS + value: 0.0.0.0/0 +zabbixProxy: + enabled: true + env: + - name: ZBX_HOSTNAME + value: zabbix-proxy + - name: ZBX_SERVER_HOST + value: "zabbix-zabbix-server.monitoring:10051" + - name: ZBX_CACHESIZE + value: 256M + - name: ZBX_VALUECACHESIZE + value: 128M + - name: ZBX_CONFIGFREQUENCY + value: 60 diff --git a/dev/zabbix/catalog-info.yaml b/dev/zabbix/catalog-info.yaml new file mode 100644 index 0000000..de92348 --- /dev/null +++ b/dev/zabbix/catalog-info.yaml @@ -0,0 +1,19 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev-zabbix + title: zabbix (dev) + description: zabbix instance running in Kubernetes + annotations: + backstage.io/kubernetes-label-selector: "app=zabbix" + links: + - url: https://github.com/AllardKrings/kubernetes/dev/zabbix + title: zabbix-configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + subcomponentOf: component:default/DEV-cluster + diff --git a/dev/zabbix/ingressroute-dev-tls.yaml b/dev/zabbix/ingressroute-dev-tls.yaml new file mode 100755 index 0000000..5e138e2 --- /dev/null +++ b/dev/zabbix/ingressroute-dev-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: zabbix-dev-tls + namespace: monitoring +spec: + entryPoints: + - websecure + routes: + - match: Host(`zabbix-dev.allarddcs.nl`) + kind: Rule + services: + - name: zabbix-zabbix-web + port: 80 + tls: + certResolver: letsencrypt diff --git a/dev/zabbix/rpi/userparameter_rpi.conf b/dev/zabbix/rpi/userparameter_rpi.conf new file mode 100755 index 0000000..c367eb1 --- /dev/null +++ b/dev/zabbix/rpi/userparameter_rpi.conf @@ -0,0 +1,4 @@ +UserParameter=rpi.cpuClock,/opt/vc/bin/vcgencmd measure_clock arm|cut -d"=" -f2 +UserParameter=rpi.cpuVoltage,/opt/vc/bin/vcgencmd measure_volts | tr -d "volt=" | tr -d "V" +UserParameter=rpi.cpuTemperature,cat /sys/class/thermal/thermal_zone*/temp +UserParameter=rpi.cpuThrottled,/opt/vc/bin/vcgencmd get_throttled|cut -d'=' -f2 \ No newline at end of file diff --git a/dev/zabbix/rpi/zbx_template_rpi.xml b/dev/zabbix/rpi/zbx_template_rpi.xml new file mode 100755 index 0000000..5ad3ec3 --- /dev/null +++ b/dev/zabbix/rpi/zbx_template_rpi.xml @@ -0,0 +1,314 @@ + + + 4.0 + 2020-04-08T10:09:45Z + + + Templates + + + + + + + + {Raspberry Pi:rpi.cpuThrottled.iregexp("\b(0x0)\b")}=0 + 1 + {Raspberry Pi:rpi.cpuThrottled.iregexp("\b(0x0)\b")}=1 + CPU is throttling + 0 + + + 0 + 2 + + 0 + 0 + + + + + {Raspberry Pi:rpi.cpuTemperature.last()}>=70 + 0 + + CPU temperature is high + 0 + + + 0 + 2 + + 0 + 0 + + + + + diff --git a/dev/zabbix/server_values.yaml b/dev/zabbix/server_values.yaml new file mode 100644 index 0000000..9d67d6e --- /dev/null +++ b/dev/zabbix/server_values.yaml @@ -0,0 +1,540 @@ +# Default values for zabbix. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +# -- Zabbix components (server, agent, web frontend, ...) image tag to use. +#This helm chart is compatible with non-LTS version of Zabbix, that include important changes and functionalities. +#But by default this helm chart will install the latest LTS version (example: 6.0.x). +#See more info in [Zabbix Life Cycle & Release Policy](https://www.zabbix.com/life_cycle_and_release_policy) page +#When you want use a non-LTS version (example: 6.2.x), you have to set this yourself. You can change version +#here or overwrite in each component (example: zabbixserver.image.tag, etc). +zabbixImageTag: ubuntu-6.0.20 + +# **Zabbix Postgresql access / credentials** configurations +# with this dict, you can set unified PostgreSQL access credentials, IP and so on for both Zabbix Server and Zabbix web frontend +# you can either chose from having all this in one named (preexisting) secret or setting the values one by one with vars +# whatever set here overrides the credential settings within the "zabbixServer" and "zabbixWeb" sections. +postgresAccess: + # under this section you can configure PostgreSQL access and credentials centrally for the entire helm chart. + # All relevant components installed by this chart will respect it: zabbixServer, zabbixWeb and postgresql (if enabled) + # + # USING ONE SECRET CONTAINING ALL DB RELEVANT SETTINGS + # PostgreSQL access details all in one existing secret (matches the structure of secrets the CrunchyData pgo operator generates) + # if this option is chosen the below listed settings are being ignored + # the secret must contain the following keys: + # * host + # * port + # * user + # * password + # * database + # -- Whether to use the unified PostgreSQL access secret + useUnifiedSecret: false + # -- Name of one secret for unified configuration of PostgreSQL access + unifiedSecretName: zabbixdb-pguser-zabbix + # -- automatically create secret if not already present (works only in combination with postgresql.enabled=true) + unifiedSecretAutoCreate: true + # + # If you do NOT want to use one unified secret for all settings, you can still set the credentials manually here. + # These settings will be used for all components of this chart where it makes sense (zabbix server, postgresql, + # web frontend, ...) + # -- Address of database host - ignored if postgresql.enabled=true + host: "postgres14.postgres" + # -- Port of database host - ignored if postgresql.enabled=true + port: "5432" + # -- User of database + user: "zabbix" + # -- Name of a secret used for Postgres Password, if set, it overrules the POSTGRES_PASSWORD value + #passwordSecret: mysecret + # -- Key of the secret used for Postgres Password, requires POSTGRES_PASSWORD_SECRET, defaults to password + #passwordSecretKey: "password" + # -- Password of database - ignored if passwordSecret is set + password: "zabbix" + # -- Name of database + database: "zabbix" + +# **Zabbix Server** configurations +zabbixServer: + # -- Enables use of **Zabbix Server** + enabled: true + # -- Number of replicas of ``zabbixServer`` module + replicaCount: 1 + # -- set permissive podAntiAffinity to spread replicas over cluster nodes if replicaCount>1 + podAntiAffinity: true + # -- optional set true open a port direct on node where Zabbix Server runs + hostPort: false + # -- optional set hostIP different from 0.0.0.0 to open port only on this IP + hostIP: 0.0.0.0 + # -- Requests and limits of pod resources. See: [https://kubernetes.io/docs/concepts/configuration/manage-resources-containers](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers) + resources: {} + image: + # -- Zabbix Server Docker image name + repository: zabbix/zabbix-server-pgsql + # -- Zabbix Server Docker image tag, if you want to override zabbixImageTag + tag: null + # -- Pull policy of Docker image + pullPolicy: IfNotPresent + # -- List of dockerconfig secrets names to use when pulling images + pullSecrets: [] + # -- automatically clean orphaned ha nodes from ha_nodes db table + haNodesAutoClean: + enabled: true + image: + # -- Postgresql Docker image name: chose one of "postgres" or "timescale/timescaledb" + repository: postgres + # -- Tag of Docker image of Postgresql server, choice "15" for postgres "2.10.3-pg15" for timescaledb + # (Zabbix supports TimescaleDB 2.0.1-2.10.x. More info: https://www.zabbix.com/documentation/6.0/en/manual/installation/requirements) + # Added support for PostgreSQL versions 15.x since Zabbix 6.0.10 + tag: 15 + pullPolicy: IfNotPresent + pullSecrets: [] + schedule: "0 1 * * *" + deleteOlderThanSeconds: 3600 + # -- Extra environment variables. A list of additional environment variables. + extraEnv: [] + # -- additional volumeMounts to the cronjob hanodes autoclean + extraVolumeMounts: [] + # -- additional containers to start within the cronjob hanodes autoclean + extraContainers: [] + # -- additional init containers to start within the cronjob hanodes autoclean + extraInitContainers: [] + # -- additional volumes to make available to the cronjob hanodes autoclean + extraVolumes: [] + # -- additional specifications to the cronjob hanodes autoclean + extraPodSpecs: {} + service: + # -- Type of service in Kubernetes cluster + type: ClusterIP + # -- Cluster IP for Zabbix Server + # -- externalTrafficPolicy for Zabbix Server. "Local" to preserve sender's IP address. Please note that this might not work on multi-node clusters, depending on your network settings. + #externalTrafficPolicy: Local + # -- IPs if use service type LoadBalancer" + externalIPs: [] + loadBalancerIP: "" + clusterIP: + # -- Port of service in Kubernetes cluster + port: 10051 + # -- NodePort of service on each node + nodePort: 31051 + # -- Annotations for the zabbix-server service + annotations: {} + # metallb.universe.tf/address-pool: production-public-ips + # -- Extra environment variables. A list of additional environment variables. List can be extended with other environment variables listed here: https://github.com/zabbix/zabbix-docker/tree/6.0/Dockerfiles/server-pgsql/alpine#environment-variables. See example: https://github.com/zabbix-community/helm-zabbix/blob/master/charts/zabbix/docs/example/kind/values.yaml + extraEnv: [] + #- name: ENABLE_TIMESCALEDB + # value: "true" + # -- annotations to add to the deployment + deploymentAnnotations: {} + # -- annotations to add to the containers + containerAnnotations: {} + # -- additional volumeMounts to the Zabbix Server container + extraVolumeMounts: [] + # -- additional containers to start within the Zabbix Server pod + extraContainers: [] + # -- additional init containers to start within the Zabbix Server pod + extraInitContainers: [] + # -- additional volumes to make available to the Zabbix Server pod + extraVolumes: [] + # -- additional specifications to the Zabbix Server pod + extraPodSpecs: {} + +# **PostgreSQL** configurations +postgresql: + # -- Create a database using Postgresql + enabled: false + image: + # -- Postgresql Docker image name: chose one of "postgres" or "timescale/timescaledb" + repository: postgres + # -- Tag of Docker image of Postgresql server, choice "15" for postgres "2.11.1-pg15" for timescaledb + # (Zabbix supports TimescaleDB 2.0.1-2.11.x. More info: https://www.zabbix.com/documentation/6.0/en/manual/installation/requirements) + # Added support for PostgreSQL versions 15.x since Zabbix 6.0.10 + tag: 15 + # -- Pull policy of Docker image + pullPolicy: IfNotPresent + # -- List of dockerconfig secrets names to use when pulling images + pullSecrets: [] + persistence: + # -- whether to enable persistent storage for the postgres container or not + enabled: false + # -- existing persistent volume claim name to be used to store posgres data + existingClaimName: false + # -- size of the PVC to be automatically generated + storageSize: 5Gi + # -- storage PVC storageclass to use + #storageClass: my-storage-class + service: + # -- Type of service in Kubernetes cluster + type: ClusterIP + # -- Cluster IP for Zabbix Server + clusterIP: + # -- Port of service in Kubernetes cluster + port: 5432 + # -- Annotations for the zabbix-server service + annotations: {} + # metallb.universe.tf/address-pool: production-public-ips + # -- Extra Postgresql runtime parameters ("-c" options) + extraRuntimeParameters: + max_connections: 50 + # -- Extra environment variables. A list of additional environment variables. + extraEnv: [] + # -- annotations to add to the statefulset + statefulSetAnnotations: {} + # -- annotations to add to the containers + containerAnnotations: {} + # -- additional volumeMounts to the postgresql container + extraVolumeMounts: [] + # -- additional containers to start within the postgresql pod + extraContainers: [] + # -- additional init containers to start within the postgresql pod + extraInitContainers: [] + # -- additional volumes to make available to the postgresql pod + extraVolumes: [] + # -- additional specifications to the postgresql pod + extraPodSpecs: {} + +# **Zabbix Proxy** configurations +zabbixProxy: + # -- Enables use of **Zabbix Proxy** + enabled: false + # -- Number of replicas of ``zabbixProxy`` module + replicaCount: 1 + # -- Requests and limits of pod resources. See: [https://kubernetes.io/docs/concepts/configuration/manage-resources-containers](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers) + resources: {} + image: + # -- Zabbix Proxy Docker image name + repository: zabbix/zabbix-proxy-sqlite3 + # -- Zabbix Proxy Docker image tag, if you want to override zabbixImageTag + tag: null + # -- Pull policy of Docker image + pullPolicy: IfNotPresent + # -- List of dockerconfig secrets names to use when pulling images + pullSecrets: [] + # -- The variable allows to switch Zabbix Proxy mode. Bu default, value is 0 - active proxy. Allowed values are 0 and 1. + ZBX_PROXYMODE: 0 + # -- Zabbix Proxy hostname + # Case sensitive hostname + ZBX_HOSTNAME: zabbix-proxy # This variable is unique, case sensitive hostname. + # -- Zabbix Server host + ZBX_SERVER_HOST: zabbix-zabbix-server + # -- Zabbix Server port + ZBX_SERVER_PORT: 10051 + # ZBX_LOADMODULE: dummy1.so,dummy2.so # The variable is list of comma separated loadable Zabbix modules. It works with volume /var/lib/zabbix/modules. + # The variable is used to specify debug level, from 0 to 5 + ZBX_DEBUGLEVEL: 4 + # The variable is used to specify timeout for processing checks. By default, value is 4. + ZBX_TIMEOUT: 4 + # -- The variable enable communication with Zabbix Java Gateway to collect Java related checks. By default, value is false. + ZBX_JAVAGATEWAY_ENABLE: false + # -- Cache size + ZBX_VMWARECACHESIZE: 128M + service: + # -- Type of service for Zabbix Proxy + type: ClusterIP + # -- Cluster IP for Zabbix Proxy + clusterIP: + # -- Port to expose service + port: 10051 + # -- Annotations for the zabbix-proxy service + annotations: {} + # metallb.universe.tf/address-pool: production-public-ips + # -- Extra environment variables. A list of additional environment variables. List can be extended with other environment variables listed here: https://github.com/zabbix/zabbix-docker/tree/6.0/Dockerfiles/proxy-sqlite3/alpine#environment-variables. See example: https://github.com/zabbix-community/helm-zabbix/blob/master/charts/zabbix/docs/example/kind/values.yaml + extraEnv: [] + # -- annotations to add to the statefulset + statefulSetAnnotations: {} + # -- annotations to add to the containers + containerAnnotations: {} + # -- additional volumeMounts to the Zabbix Proxy container + extraVolumeMounts: [] + # -- additional containers to start within the Zabbix Proxy pod + extraContainers: [] + # -- additional init containers to start within the Zabbix Proxy pod + extraInitContainers: [] + # -- additional volumes to make available to the Zabbix Proxy pod + extraVolumes: [] + # -- additional specifications to the Zabbix Proxy pod + extraPodSpecs: {} + # -- extra volumeClaimTemplate for zabbixProxy statefulset + extraVolumeClaimTemplate: [] + +# **Zabbix Agent** configurations +zabbixAgent: + # -- Enables use of **Zabbix Agent** + enabled: true + # -- Its is a default mode. Zabbix-agent will run as sidecar in zabbix-server and zabbix-proxy pods. Disable this mode if you want to run zabbix-agent as daemonSet + runAsSidecar: true + # -- Enable this mode if you want to run zabbix-agent as daemonSet. The 'zabbixAgent.runAsSidecar' option must be false. + runAsDaemonSet: false + # -- Requests and limits of pod resources. See: [https://kubernetes.io/docs/concepts/configuration/manage-resources-containers](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers) + resources: {} + image: + # -- Zabbix Agent Docker image name. Can use zabbix/zabbix-agent or zabbix/zabbix-agent2 + repository: zabbix/zabbix-agent2 + # -- Zabbix Agent Docker image tag, if you want to override zabbixImageTag + tag: null + # -- Pull policy of Docker image + pullPolicy: IfNotPresent + # -- List of dockerconfig secrets names to use when pulling images + pullSecrets: [] + # -- Zabbix Server host + ZBX_SERVER_HOST: 0.0.0.0/0 + # -- Zabbix Server port + ZBX_SERVER_PORT: 10051 + # -- This variable is boolean (true or false) and enables or disables feature of passive checks. By default, value is true + ZBX_PASSIVE_ALLOW: true + # -- The variable is comma separated list of allowed Zabbix Server or proxy hosts for connections to Zabbix Agent container. Example: Server=127.0.0.1,192.168.1.0/24,::1,2001:db8::/32,zabbix.example.com + #ZBX_PASSIVESERVERS: '' + # -- This variable is boolean (true or false) and enables or disables feature of active checks + ZBX_ACTIVE_ALLOW: false + # -- The variable is comma separated list of allowed Zabbix Server or proxy hosts for connections to Zabbix Agent container. You may specify port. + #ZBX_ACTIVESERVERS: '' + # -- The variable is list of comma separated loadable Zabbix modules. It works with volume /var/lib/zabbix/modules. + #ZBX_LOADMODULE: dummy1.so,dummy2.so + # -- The variable is used to specify debug level, from 0 to 5 + ZBX_DEBUGLEVEL: 3 + # -- The variable is used to specify timeout for processing checks. By default, value is 4. + ZBX_TIMEOUT: 4 + service: + # -- Type of service for Zabbix Agent + type: ClusterIP + # -- Cluster IP for Zabbix Agent + clusterIP: + # -- Port to expose service + port: 10050 + # -- externalTrafficPolicy for Zabbix Agent service. "Local" to preserve sender's IP address. Please note that this might not work on multi-node clusters, depending on your network settings. + #externalTrafficPolicy: Local + listenOnAllInterfaces: true + # -- NodePort port to allocate (only if service.type = NodePort) + #nodePort: 31050 + # -- Annotations for the zabbix-agent service + annotations: {} + # metallb.universe.tf/address-pool: production-public-ips + # -- If true, agent pods mounts host / at /host/root + hostRootFsMount: true + # -- Extra environment variables. A list of additional environment variables. List can be extended with other environment variables listed here: https://github.com/zabbix/zabbix-docker/tree/6.0/Dockerfiles/agent2/alpine#environment-variables. See example: https://github.com/zabbix-community/helm-zabbix/blob/master/charts/zabbix/docs/example/kind/values.yaml + extraEnv: [] + # -- additional volumeMounts to the zabbix Agent container + extraVolumeMounts: [] + # -- annotations to add to the daemonSet + daemonSetAnnotations: {} + # -- annotations to add to the containers + containerAnnotations: {} + # -- additional containers to start within the Zabbix Agent pod + extraContainers: [] + # -- additional init containers to start within the Zabbix Agent pod + extraInitContainers: [] + # -- additional volumes to make available to the Zabbix Agent pod + extraVolumes: [] + # -- additional specifications to the Zabbix Agent pod + extraPodSpecs: {} + +# **Zabbix Web** configurations +zabbixWeb: + # -- Enables use of **Zabbix Web** + enabled: true + # -- Number of replicas of ``zabbixWeb`` module + replicaCount: 1 + # -- set permissive podAntiAffinity to spread replicas over cluster nodes if replicaCount>1 + podAntiAffinity: true + # -- Requests and limits of pod resources. See: [https://kubernetes.io/docs/concepts/configuration/manage-resources-containers](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers) + resources: {} + image: + # -- Zabbix Web Docker image name + repository: zabbix/zabbix-web-nginx-pgsql + # -- Zabbix Web Docker image tag, if you want to override zabbixImageTag + tag: null + # -- Pull policy of Docker image + pullPolicy: IfNotPresent + # -- List of dockerconfig secrets names to use when pulling images + pullSecrets: [] + # -- Certificate containing certificates for SAML configuration + #samlCertsSecretName: zabbix-web-samlcerts + service: + # -- Type of service for Zabbix Web + type: ClusterIP + # -- externalTrafficPolicy for Zabbix Web. "Local" to preserve sender's IP address. Please note that this might not work on multi-node clusters, depending on your network settings. + #externalTrafficPolicy: Local + # -- IPs if use service type LoadBalancer" + externalIPs: [] + loadBalancerIP: "" + # -- Cluster IP for Zabbix Web + clusterIP: + # -- Port to expose service + port: 80 + # -- NodePort port to allocate (only if service.type = NodePort) + #nodePort: 31080 + # -- Annotations for the Zabbix Web + annotations: {} + # metallb.universe.tf/address-pool: production-public-ips + # -- Extra environment variables. A list of additional environment variables. List can be extended with other environment variables listed here: https://github.com/zabbix/zabbix-docker/tree/6.0/Dockerfiles/web-apache-pgsql/alpine#environment-variables. See example: https://github.com/zabbix-community/helm-zabbix/blob/master/charts/zabbix/docs/example/kind/values.yaml + extraEnv: [] + #- name: ZBX_SSO_SETTINGS + # value: '{"baseurl": "https://zabbix.example.com"}' + #- name: ZBX_SERVER_NAME + # value: Demo Zabbix + # -- annotations to add to the deployment + deploymentAnnotations: {} + # -- annotations to add to the containers + containerAnnotations: {} + # -- additional volumeMounts to the Zabbix Web container + extraVolumeMounts: [] + # -- additional containers to start within the Zabbix Web pod + extraContainers: [] + # -- additional init containers to start within the Zabbix Web pod + extraInitContainers: [] + # -- additional volumes to make available to the Zabbix Web pod + extraVolumes: [] + # -- additional specifications to the Zabbix Web pod + extraPodSpecs: {} + livenessProbe: + # -- Path of health check of application + path: / + # -- Number of seconds after the container has started before liveness + initialDelaySeconds: 30 + # -- Specifies that the kubelet should perform a liveness probe every N seconds + periodSeconds: 10 + # -- Number of seconds after which the probe times out + timeoutSeconds: 5 + # -- When a probe fails, Kubernetes will try failureThreshold times before giving up. Giving up in case of liveness probe means restarting the container. In case of readiness probe the Pod will be marked Unready + failureThreshold: 6 + # -- Minimum consecutive successes for the probe to be considered successful after having failed + successThreshold: 1 + readinessProbe: + # -- Path of health check of application + path: / + # -- Number of seconds after the container has started before readiness + initialDelaySeconds: 5 + # -- Specifies that the kubelet should perform a readiness probe every N seconds + periodSeconds: 10 + # -- Number of seconds after which the probe times out + timeoutSeconds: 5 + # -- When a probe fails, Kubernetes will try failureThreshold times before giving up. Giving up in case of liveness probe means restarting the container. In case of readiness probe the Pod will be marked Unready + failureThreshold: 6 + # -- Minimum consecutive successes for the probe to be considered successful after having failed + successThreshold: 1 + +# **Zabbix Web Service** configurations +zabbixWebService: + # -- Enables use of **Zabbix Web Service** + enabled: true + # -- Number of replicas of ``zabbixWebService`` module + replicaCount: 1 + # -- set permissive podAntiAffinity to spread replicas over cluster nodes if replicaCount>1 + podAntiAffinity: true + # -- Requests and limits of pod resources. See: [https://kubernetes.io/docs/concepts/configuration/manage-resources-containers](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers) + resources: {} + image: + # -- Zabbix Webservice Docker image name + repository: zabbix/zabbix-web-service + # -- Zabbix Webservice Docker image tag, if you want to override zabbixImageTag + tag: null + # -- Pull policy of Docker image + pullPolicy: IfNotPresent + # -- List of dockerconfig secrets names to use when pulling images + pullSecrets: [] + # -- set the IgnoreURLCertErrors configuration setting of Zabbix Web Service + #ignoreURLCertErrors=1 + service: + # -- Type of service for Zabbix Web + type: ClusterIP + # -- Cluster IP for Zabbix Web + clusterIP: + # -- Port to expose service + port: 10053 + # -- Annotations for the Zabbix Web Service + annotations: {} + # metallb.universe.tf/address-pool: production-public-ips + # -- Extra environment variables. A list of additional environment variables. List can be extended with other environment variables listed here: https://github.com/zabbix/zabbix-docker/tree/6.0/Dockerfiles/web-service/alpine#environment-variables. See example: https://github.com/zabbix-community/helm-zabbix/blob/master/charts/zabbix/docs/example/kind/values.yaml + extraEnv: [] + # -- annotations to add to the deployment + deploymentAnnotations: {} + # -- annotations to add to the containers + containerAnnotations: {} + # -- additional volumeMounts to the Zabbix Web Service container + extraVolumeMounts: [] + # -- additional containers to start within the Zabbix Web Service pod + extraContainers: [] + # -- additional init containers to start within the Zabbix Web Service pod + extraInitContainers: [] + # -- additional volumes to make available to the Zabbix Web Service pod + extraVolumes: [] + # -- additional specifications to the Zabbix Web Service pod + extraPodSpecs: {} + +# Ingress configurations +ingress: + # -- Enables Ingress + enabled: false + # -- Ingress annotations + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + # -- Ingress hosts + hosts: + - host: chart-example.local + paths: + - path: / + pathType: ImplementationSpecific + # -- Ingress TLS configuration + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + # For Kubernetes >= 1.18 you should specify the ingress-controller via the field ingressClassName + # See https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/#specifying-the-class-of-an-ingress + # ingressClassName: nginx + # -- pathType is only for k8s >= 1.1= + pathType: Prefix + +# Ingress CRD object for the Traefik Ingresscontroller +ingressRoute: + # -- Enables Traefik IngressRoute + enabled: false + # -- IngressRoute annotations + annotations: {} + # -- Ingressroute entrypoints + entryPoints: + - websecure + # -- Ingressroute host name + hostName: chart-example.local + # -- IngressRoute TLS configuration + #tls: + # certResolver: myresolver + +route: + # -- Enables Route object for Openshift + enabled: false + # -- Host Name for the route. Can be left empty + hostName: chart-example.local + # -- Openshift Route wildcardPolicy + #wildcardPolicy: + # -- Openshift Route TLS settings + tls: + termination: edge + #insecureEdgeTerminationPolicy: Redirect + # -- Openshift Route extra annotations + annotations: {} + +# -- nodeSelector configurations. Reference: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ +nodeSelector: {} + +# -- Tolerations configurations. Reference: https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/ +tolerations: [] + +# -- Affinity configurations. Reference: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ +affinity: {} + +# -- Security Context configurations. Reference: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ +securityContext: {} + +karpenter: + # -- Enables support provisioner of Karpenter. Reference: https://karpenter.sh/. Tested only using EKS cluster 1.23 in AWS with Karpenter 0.19.2. + enabled: false + # -- Name of cluster. Change the term CHANGE_HERE by EKS cluster name if you want to use Karpenter. + clusterName: "CHANGE_HERE" + # -- Tag of discovery with name of cluster used by Karpenter. Change the term CHANGE_HERE by EKS cluster name if you want to use Karpenter. The cluster name, security group and subnets must have this tag. + tag: "karpenter.sh/discovery/CHANGE_HERE: CHANGE_HERE" + # -- Resource limits constrain the total size of the cluster. Limits prevent Karpenter from creating new instances once the limit is exceeded. + limits: + resources: + cpu: "1000" + memory: 1000Gi + diff --git a/diversen/catalog-info.yaml b/diversen/catalog-info.yaml new file mode 100644 index 0000000..0a06f40 --- /dev/null +++ b/diversen/catalog-info.yaml @@ -0,0 +1,10 @@ +apiVersion: backstage.io/v1alpha1 +kind: System +metadata: + name: diversen + title: Diversen System +spec: + owner: platform-team + partOf: + - ../catalog-info.yaml + subcomponents: diff --git a/diversen/fancontrol b/diversen/fancontrol new file mode 100644 index 0000000..546711d --- /dev/null +++ b/diversen/fancontrol @@ -0,0 +1,27 @@ +#I created a startup service that slows down the fan on Ubuntu after boot to speed setting 1, and that is inaudible. + +[Unit] +Description=RPI-startup Fan Control service +After=multi-user.target +[Service] +User=root +Type=oneshot +ExecStart=/bin/bash -c "echo '1' | tee -a /sys/class/thermal/cooling_device0/cur_state" & +[Install] +WantedBy=multi-user.target + +#Copy above content to a file /etc/systemd/system/fan.service. + +#And enable it by: + +sudo systemctl enable fan.service + +#That’s all, no reboot the Pi and Ubuntu will be silent. +#Remember the Raspberry Pi willl automatically throttle when reaching a temperature of 85°. So there is no danger in letting the fan run on speed 1 continuously. Even when your compiling the Linux Kernel. +#Off course you can always check the temperature with, and yes that works also in Ubuntu 23.10 on the Pi + +sudo vcgencmd measure_temp + +#You can always bump up the speed to 3 by issuing this in the terminal + +echo '3' | sudo tee -a /sys/class/thermal/cooling_device0/cur_state diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000..7a59363 --- /dev/null +++ b/docs/README.md @@ -0,0 +1 @@ +Dit is een catalogus van alle yamls en values in GITHUB die gebruikt worden in de clusters van AllardDCS diff --git a/docs/catalog-info.yaml b/docs/catalog-info.yaml new file mode 100644 index 0000000..e416d9e --- /dev/null +++ b/docs/catalog-info.yaml @@ -0,0 +1,10 @@ +apiVersion: backstage.io/v1alpha1 +kind: System +metadata: + name: docs + title: Docs System +spec: + owner: platform-team + partOf: + - ../catalog-info.yaml + subcomponents: diff --git a/docs/mkdocs.yaml b/docs/mkdocs.yaml new file mode 100644 index 0000000..272dd96 --- /dev/null +++ b/docs/mkdocs.yaml @@ -0,0 +1,8 @@ +site_name: AllardDCS +plugins: + - search + - awesome-pages + +# Optional theme +theme: + name: readthedocs diff --git a/generate-catalog-info.sh b/generate-catalog-info.sh new file mode 100755 index 0000000..a55f86d --- /dev/null +++ b/generate-catalog-info.sh @@ -0,0 +1,116 @@ +#!/usr/bin/env bash + +set -e + +ROOT_DOMAIN_NAME="infra-root" +OWNER="platform-team" + +echo "Generating Backstage catalog files..." + +# +# 1. Create root catalog-info.yaml +# +ROOT_FILE="catalog-info.yaml" + +if [[ -f "$ROOT_FILE" ]]; then + echo "Root catalog-info.yaml already exists — skipping" +else + echo "Creating root catalog-info.yaml" + cat > "$ROOT_FILE" <> "$ROOT_FILE" +for d in "${TOP_LEVEL_DIRS[@]}"; do + name=$(basename "$d") + echo " - ./${name}/catalog-info.yaml" >> "$ROOT_FILE" +done + + +# +# 2. Process each top-level directory as a System +# +for dir in "${TOP_LEVEL_DIRS[@]}"; do + SYS_NAME=$(basename "$dir") + SYS_FILE="${dir}/catalog-info.yaml" + + if [[ -f "$SYS_FILE" ]]; then + echo "System file already exists for $SYS_NAME — skipping" + else + echo "Creating system catalog-info.yaml for $SYS_NAME" + cat > "$SYS_FILE" <> "$SYS_FILE" + done + + + # + # 3. Create component files in subdirectories + # + for s in "${SUBDIRS[@]}"; do + SUB_NAME=$(basename "$s") + COMPONENT_FILE="${s}/catalog-info.yaml" + + if [[ -f "$COMPONENT_FILE" ]]; then + echo "Component file exists for $SYS_NAME/$SUB_NAME — skipping" + else + echo "Creating component file: $SYS_NAME/$SUB_NAME" + cat > "$COMPONENT_FILE" < +[picluster] +pirtrwsv01 192.168.40.100 +pisvrwsv01 192.168.40.101 +pisvrwsv02 192.168.40.102 +pisvrwsv03 192.168.40.103 +pisvrwsv04 192.168.40.104 +pisvrwsv05 192.168.40.105 +pisvrwsv06 192.168.40.106 diff --git a/kubernetes/ansible/playbooks/reboot.yml b/kubernetes/ansible/playbooks/reboot.yml new file mode 100755 index 0000000..b7ac830 --- /dev/null +++ b/kubernetes/ansible/playbooks/reboot.yml @@ -0,0 +1,15 @@ +--- +- name: Playbook for rebooting the RPis + hosts: picluster + gather_facts: no + tasks: + - name: 'Reboot RPi' + shell: shutdown -r now + async: 0 + poll: 0 + ignore_errors: true + become: true + + - name: "Wait for reboot to complete" + local_action: wait_for host={{ ansible_host }} port=22 state=started delay=10 + become: false diff --git a/kubernetes/ansible/playbooks/shutdown.yml b/kubernetes/ansible/playbooks/shutdown.yml new file mode 100755 index 0000000..da9a4c0 --- /dev/null +++ b/kubernetes/ansible/playbooks/shutdown.yml @@ -0,0 +1,15 @@ +--- +- name: Playbook for shutting down the RPis + hosts: picluster + gather_facts: no + tasks: + - name: 'Shutdown RPi' + shell: shutdown -h now + async: 0 + poll: 0 + ignore_errors: true + become: true + + - name: "Wait for shutdown to complete" + local_action: wait_for host={{ ansible_host }} port=22 state=stopped + become: false diff --git a/kubernetes/ansible/playbooks/update.yml b/kubernetes/ansible/playbooks/update.yml new file mode 100755 index 0000000..da4fbbd --- /dev/null +++ b/kubernetes/ansible/playbooks/update.yml @@ -0,0 +1,8 @@ +--- +- name: Playbook for managing the updates in RPi + hosts: picluster + tasks: + - name: 'Update apt package cache' + become: yes + apt: + update_cache=yes diff --git a/kubernetes/ansible/playbooks/upgrade.yml b/kubernetes/ansible/playbooks/upgrade.yml new file mode 100755 index 0000000..c3e07b7 --- /dev/null +++ b/kubernetes/ansible/playbooks/upgrade.yml @@ -0,0 +1,11 @@ +--- +- name: Playbook for upgrading the RPis + hosts: picluster + gather_facts: no + tasks: + - name: Update and upgrade apt packages + become: true + apt: + upgrade: yes + update_cache: yes + cache_valid_time: 86400 diff --git a/kubernetes/asus/catalog-info.yaml b/kubernetes/asus/catalog-info.yaml new file mode 100644 index 0000000..b329147 --- /dev/null +++ b/kubernetes/asus/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: kubernetes-asus + title: Asus (kubernetes) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/kubernetes/asus/mongodb-sharded/README.md b/kubernetes/asus/mongodb-sharded/README.md new file mode 100644 index 0000000..5f14b10 --- /dev/null +++ b/kubernetes/asus/mongodb-sharded/README.md @@ -0,0 +1,62 @@ +#VOORAF: +======== +De processor moet avx instructieset aankunnen. +Dit kun je controleren door het volgende commando uit te voeren in je virtualbx vm: + + cat /proc/cpuinfo | grep flags + +output: + + flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov + pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good + nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid + sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm + 3dnowprefetch pti fsgsbase bmi1 avx2 bmi2 invpcid rdseed adx clflushopt arat + +Je moet dan avx en sse4_2 tussen de flags zien staan: + +anders moet je op de windows host het commando + + bcdedit /set hypervisorlaunchtype off + +uitvoeren. + +#INSTALLATIE +============ +helm install mongodb bitnami/mongodb-sharded -n mongodb -f values.yaml + +OUTPUT: + +NAME: mongodb +LAST DEPLOYED: Mon Jul 7 09:10:41 2025 +NAMESPACE: mongodb +STATUS: deployed +REVISION: 1 +TEST SUITE: None +NOTES: +CHART NAME: mongodb-sharded +CHART VERSION: 9.1.1 +APP VERSION: 8.0.4 + +The MongoDB® Sharded cluster can be accessed via the Mongos instances in port 27017 on the following DNS name from within your cluster: + + mongodb-mongodb-sharded.mongodb.svc.cluster.local + +To get the root password run: + + export MONGODB_ROOT_PASSWORD=$(kubectl get secret --namespace mongodb mongodb-mongodb-sharded -o jsonpath="{.data.mongodb-root-password}" | base64 -d) + +To connect to your database run the following command: + + kubectl run --namespace mongodb mongodb-mongodb-sharded-client --rm --tty -i --restart='Never' --image docker.io/bitnami/mongodb-sharded:8.0.4-debian-12-r1 --command -- mongosh admin --host mongodb-mongodb-sharded --authenticationDatabase admin -u root -p $MONGODB_ROOT_PASSWORD + +To connect to your database from outside the cluster execute the following commands: + + kubectl port-forward --namespace mongodb svc/mongodb-mongodb-sharded 27017:27017 & + mongosh --host 127.0.0.1 --authenticationDatabase admin -p $MONGODB_ROOT_PASSWORD + +WARNING: There are "resources" sections in the chart not set. Using "resourcesPreset" is not recommended for production. For production installations, please set the following values according to your workload needs: + - configsvr.resources + - mongos.resources + - shardsvr.dataNode.resources ++info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ diff --git a/kubernetes/asus/mongodb-sharded/certificate.yaml b/kubernetes/asus/mongodb-sharded/certificate.yaml new file mode 100755 index 0000000..2abfe87 --- /dev/null +++ b/kubernetes/asus/mongodb-sharded/certificate.yaml @@ -0,0 +1,16 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: mongo-express-lp.allarddcs.nl-tls + namespace: mongodb +spec: + dnsNames: + - mongo-express-lp.allarddcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: mongo-express-lp.allarddcs.nl-tls + usages: + - digital signature + - key encipherment diff --git a/kubernetes/asus/mongodb-sharded/expose.yaml b/kubernetes/asus/mongodb-sharded/expose.yaml new file mode 100644 index 0000000..5205dd6 --- /dev/null +++ b/kubernetes/asus/mongodb-sharded/expose.yaml @@ -0,0 +1 @@ +microk8s kubectl expose deployment mongodb-mongodb-sharded --type=NodePort --name=mongodb-nodeport -n mongodb --port=27017 diff --git a/kubernetes/asus/mongodb-sharded/external-mongo-service.yaml b/kubernetes/asus/mongodb-sharded/external-mongo-service.yaml new file mode 100644 index 0000000..5d5fec9 --- /dev/null +++ b/kubernetes/asus/mongodb-sharded/external-mongo-service.yaml @@ -0,0 +1,22 @@ +apiVersion: v1 +kind: Service +metadata: + name: mongo + namespace: mongodb +spec: + ports: + - protocol: TCP + port: 27017 + targetPort: 27017 +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: mongo + namespace: mongodb +subsets: + - addresses: + - ip: 192.168.2.109 + ports: + - port: 30513 + diff --git a/kubernetes/asus/mongodb-sharded/mongo-express-lattepanda.yaml b/kubernetes/asus/mongodb-sharded/mongo-express-lattepanda.yaml new file mode 100644 index 0000000..164dc4a --- /dev/null +++ b/kubernetes/asus/mongodb-sharded/mongo-express-lattepanda.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: mongo-express +spec: + replicas: 1 + selector: + matchLabels: + app: mongo-express + template: + metadata: + labels: + app: mongo-express + spec: + containers: + - name: mongo-express + image: mongo-express + env: + - name: ME_CONFIG_MONGODB_URL + value: "mongodb://root:Mongodb01@192.168.2.109:30981" + ports: + - containerPort: 8081 +--- +apiVersion: v1 +kind: Service +metadata: + name: mongo-express +spec: + type: NodePort + ports: + - port: 8081 + targetPort: 8081 + nodePort: 30801 + selector: + app: mongo-express diff --git a/kubernetes/asus/mongodb-sharded/mongo-express-virtualbox.yaml b/kubernetes/asus/mongodb-sharded/mongo-express-virtualbox.yaml new file mode 100644 index 0000000..2776264 --- /dev/null +++ b/kubernetes/asus/mongodb-sharded/mongo-express-virtualbox.yaml @@ -0,0 +1,43 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: mongo-express + labels: + app: mongo-express +spec: + replicas: 1 + selector: + matchLabels: + app: mongo-express + template: + metadata: + labels: + app: mongo-express + spec: + containers: + - name: mongo-express + image: mongo-express:latest + env: + - name: ME_CONFIG_MONGODB_SERVER + value: "mongo.mongodb.svc.cluster.local" + - name: ME_CONFIG_MONGODB_PORT + value: "27017" + - name: ME_CONFIG_BASICAUTH_USERNAME + value: "admin" + - name: ME_CONFIG_BASICAUTH_PASSWORD + value: "pass" + ports: + - containerPort: 8081 +--- +apiVersion: v1 +kind: Service +metadata: + name: mongo-express +spec: + type: NodePort + ports: + - port: 8081 + targetPort: 8081 + nodePort: 30081 + selector: + app: mongo-express diff --git a/kubernetes/asus/mongodb-sharded/mongo-sharded-express.yaml b/kubernetes/asus/mongodb-sharded/mongo-sharded-express.yaml new file mode 100755 index 0000000..f7cc2dc --- /dev/null +++ b/kubernetes/asus/mongodb-sharded/mongo-sharded-express.yaml @@ -0,0 +1,63 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: mongo-sharded-express + namespace: nodejs + labels: + app: mongo-sharded-express +spec: + replicas: 1 + selector: + matchLabels: + app: mongo-sharded-express + template: + metadata: + labels: + app: mongo-sharded-express + spec: + containers: + - name: mongo-sharded-express + image: mongo-express + ports: + - containerPort: 8081 + env: + - name: ME_CONFIG_OPTIONS_EDITORTHEME + value: "ambiance" + - name: ME_CONFIG_BASICAUTH_USERNAME + value: "admin" + - name: ME_CONFIG_BASICAUTH_PASSWORD + value: "Mongodb01" + - name: ME_CONFIG_MONGODB_URL + value: "mongodb://root:Mongodb01@192.168.2.109:30981" +--- +apiVersion: v1 +kind: Service +metadata: + name: mongo-sharded-express + namespace: nodejs + labels: + name: mongo-sharded-express +spec: + type: ClusterIP + ports: + - port: 8081 + name: http + selector: + app: mongo-sharded-express +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: mongo-sharded-express-tls + namespace: nodejs +spec: + entryPoints: + - websecure + routes: + - match: Host(`mongoshardedexpress-prod.allarddcs.nl`) + kind: Rule + services: + - name: mongo-sharded-express + port: 8081 + tls: + certResolver: letsencrypt diff --git a/kubernetes/asus/mongodb-sharded/values.yaml b/kubernetes/asus/mongodb-sharded/values.yaml new file mode 100644 index 0000000..a9ad1dc --- /dev/null +++ b/kubernetes/asus/mongodb-sharded/values.yaml @@ -0,0 +1,1932 @@ +# Copyright Broadcom, Inc. All Rights Reserved. +# SPDX-License-Identifier: APACHE-2.0 + +## @section Global parameters +## Global Docker image parameters +## Please, note that this will override the image parameters, including dependencies, configured to use the global value +## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass +## + +## @param global.imageRegistry Global Docker image registry +## @param global.imagePullSecrets Global Docker registry secret names as an array +## @param global.defaultStorageClass Global default StorageClass for Persistent Volume(s) +## @param global.storageClass DEPRECATED: use global.defaultStorageClass instead +## +global: + imageRegistry: "" + ## E.g. + ## imagePullSecrets: + ## - myRegistryKeySecretName + ## + imagePullSecrets: [] + defaultStorageClass: "" + storageClass: "" + ## Security parameters + ## + security: + ## @param global.security.allowInsecureImages Allows skipping image verification + allowInsecureImages: false + ## Compatibility adaptations for Kubernetes platforms + ## + compatibility: + ## Compatibility adaptations for Openshift + ## + openshift: + ## @param global.compatibility.openshift.adaptSecurityContext Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) + ## + adaptSecurityContext: auto +## @section Common parameters +## + +## @param kubeVersion Override Kubernetes version +## +kubeVersion: "" +## @param nameOverride String to partially override common.names.name +## +nameOverride: "" +## @param fullnameOverride String to fully override common.names.fullname +## +fullnameOverride: "" +## @param namespaceOverride String to fully override common.names.namespace +## +namespaceOverride: "" +## @param commonLabels Labels to add to all deployed objects +## +commonLabels: {} +## @param commonAnnotations Annotations to add to all deployed objects +## +commonAnnotations: {} +## @param clusterDomain Kubernetes cluster domain name +## +clusterDomain: cluster.local +## @param extraDeploy Array of extra objects to deploy with the release +## +extraDeploy: [] +## Enable diagnostic mode in the deployment +## +diagnosticMode: + ## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden) + ## + enabled: false + ## @param diagnosticMode.command Command to override all containers in the deployment + ## + command: + - sleep + ## @param diagnosticMode.args Args to override all containers in the deployment + ## + args: + - infinity +## @section MongoDB(®) Sharded parameters +## + +## Bitnami MongoDB(®) Sharded image version +## ref: https://hub.docker.com/r/bitnami/mongodb-sharded/tags/ +## @param image.registry [default: REGISTRY_NAME] MongoDB(®) Sharded image registry +## @param image.repository [default: REPOSITORY_NAME/mongodb-sharded] MongoDB(®) Sharded Image name +## @skip image.tag MongoDB(®) Sharded image tag (immutable tags are recommended) +## @param image.digest MongoDB(®) Sharded image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag +## @param image.pullPolicy MongoDB(®) Sharded image pull policy +## @param image.pullSecrets Specify docker-registry secret names as an array +## @param image.debug Specify if debug logs should be enabled +## +image: + registry: docker.io + repository: bitnami/mongodb-sharded + tag: 8.0.10-debian-12-r2 + digest: "" + ## Specify a imagePullPolicy + ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Set to true if you would like to see extra information on logs + ## + debug: false +## MongoDB(®) Authentication parameters +## +auth: + ## @param auth.enabled Enable authentication + ## ref: https://docs.mongodb.com/manual/tutorial/enable-authentication/ + ## + enabled: true + ## @param auth.rootUser MongoDB(®) root user + ## + rootUser: root + ## @param auth.rootPassword MongoDB(®) root password + ## ref: https://github.com/bitnami/containers/tree/main/bitnami/mongodb#setting-the-root-user-and-password-on-first-run + ## + rootPassword: "Mongodb01" + ## @param auth.replicaSetKey Key used for authentication in the replicaset + ## + replicaSetKey: "" + ## @param auth.existingSecret Existing secret with MongoDB(®) credentials (keys: `mongodb-password`, `mongodb-root-password`, `mongodb-replica-set-key`) + ## NOTE: When it's set the previous parameters are ignored. + ## + existingSecret: "" + ## @param auth.usePasswordFiles Mount credentials as files instead of using environment variables + ## + usePasswordFiles: true +## @param shards Number of shards to be created +## ref: https://docs.mongodb.com/manual/core/sharded-cluster-shards/ +## +shards: 2 +## Properties for all of the pods in the cluster (shards, config servers and mongos) +## +common: + ## @param common.mongodbEnableNumactl Enable launch MongoDB instance prefixed with "numactl --interleave=all" + ## ref: https://docs.mongodb.com/manual/administration/production-notes/#mongodb-and-numa-hardware + ## + mongodbEnableNumactl: false + ## @param common.useHostnames Enable DNS hostnames in the replica set config + ## + useHostnames: true + ## @param common.mongodbEnableIPv6 Switch to enable/disable IPv6 on MongoDB® + ## ref: https://github.com/bitnami/containers/tree/main/bitnami/mongodb#enablingdisabling-ipv6 + ## + mongodbEnableIPv6: false + ## @param common.mongodbDirectoryPerDB Switch to enable/disable DirectoryPerDB on MongoDB® + ## ref: https://github.com/bitnami/containers/tree/main/bitnami/mongodb#enablingdisabling-directoryperdb + ## + mongodbDirectoryPerDB: false + ## @param common.mongodbSystemLogVerbosity MongoDB® system log verbosity level + ## ref: https://docs.mongodb.com/manual/reference/program/mongo/#cmdoption-mongo-ipv6 + ## + mongodbSystemLogVerbosity: 0 + ## @param common.mongodbDisableSystemLog Whether to disable MongoDB® system log or not + ## ref: https://github.com/bitnami/containers/tree/main/bitnami/mongodb#configuring-system-log-verbosity-level + ## + mongodbDisableSystemLog: false + ## @param common.mongodbInitRetryAttempts Maximum retries for checking the MongoDB® initialization status + ## + mongodbInitRetryAttempts: 24 + ## @param common.mongodbInitRetryDelay Time (in seconds) to wait between retries for checking the MongoDB® initialization status + ## + mongodbInitRetryDelay: 5 + ## @param common.initScriptsCM Configmap with init scripts to execute + ## + initScriptsCM: "" + ## @param common.initScriptsSecret Secret with init scripts to execute (for sensitive data) + ## + initScriptsSecret: "" + ## @param common.extraEnvVars An array to add extra env vars + ## For example: + ## extraEnvVars: + ## - name: KIBANA_ELASTICSEARCH_URL + ## value: test + ## + extraEnvVars: [] + ## @param common.extraEnvVarsCM Name of a ConfigMap containing extra env vars + ## + extraEnvVarsCM: "" + ## @param common.extraEnvVarsSecret Name of a Secret containing extra env vars + ## + extraEnvVarsSecret: "" + ## @param common.sidecars Add sidecars to the pod + ## For example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param common.initContainers Add init containers to the pod + ## For example: + ## initcontainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## + initContainers: [] + ## @param common.podAnnotations Additional pod annotations + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param common.podLabels Additional pod labels + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param common.extraVolumes Array to add extra volumes + ## + extraVolumes: [] + ## @param common.extraVolumeMounts Array to add extra mounts (normally used with extraVolumes) + ## + extraVolumeMounts: [] + ## @param common.containerPorts.mongodb MongoDB container port + ## + containerPorts: + mongodb: 27017 + ## K8s Service Account. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ## + serviceAccount: + ## @param common.serviceAccount.create Whether to create a Service Account for all pods automatically + ## + create: true + ## @param common.serviceAccount.name Name of a Service Account to be used by all Pods + ## If not set and create is true, a name is generated using the XXX.fullname template + ## + name: "" + ## @param common.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) + ## + annotations: {} + ## @param common.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## + automountServiceAccountToken: false +## Init containers parameters: +## volumePermissions: Change the owner and group of the persistent volume mountpoint to runAsUser:fsGroup values from the securityContext section. +## +volumePermissions: + ## @param volumePermissions.enabled Enable init container that changes volume permissions in the data directory (for cases where the default k8s `runAsUser` and `fsUser` values do not work) + ## + enabled: false + ## @param volumePermissions.image.registry [default: REGISTRY_NAME] Init container volume-permissions image registry + ## @param volumePermissions.image.repository [default: REPOSITORY_NAME/os-shell] Init container volume-permissions image name + ## @skip volumePermissions.image.tag Init container volume-permissions image tag + ## @param volumePermissions.image.digest Init container volume-permissions image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param volumePermissions.image.pullPolicy Init container volume-permissions image pull policy + ## @param volumePermissions.image.pullSecrets Init container volume-permissions image pull secrets + ## + image: + registry: docker.io + repository: bitnami/os-shell + tag: 12-debian-12-r40 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## @param volumePermissions.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if volumePermissions.resources is set (volumePermissions.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param volumePermissions.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} +## Kubernetes service type +## ref: https://kubernetes.io/docs/concepts/services-networking/service/ +## +service: + ## @param service.name Specify an explicit service name + ## + name: "" + ## @param service.annotations Additional service annotations (evaluate as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + annotations: {} + ## @param service.type Service type + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + ## + type: ClusterIP + ## @param service.externalTrafficPolicy External traffic policy + ## Enable client source IP preservation + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + ## + externalTrafficPolicy: Cluster + ## @param service.ports.mongodb MongoDB® service port + ## + ports: + mongodb: 27017 + ## @param service.clusterIP Static clusterIP or None for headless services + ## ref: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.16/#servicespec-v1-core + ## + clusterIP: "" + ## @param service.nodePorts.mongodb Specify the nodePort value for the LoadBalancer and NodePort service types. + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## + nodePorts: + mongodb: "" + ## @param service.externalIPs External IP list to use with ClusterIP service type + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#external-ips + ## + externalIPs: [] + ## @param service.loadBalancerIP Static IP Address to use for LoadBalancer service type + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#loadbalancer + ## + loadBalancerIP: "" + ## @param service.loadBalancerSourceRanges List of IP ranges allowed access to load balancer (if supported) + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## + loadBalancerSourceRanges: [] + ## @param service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same mongos Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## Headless service properties + ## + headless: + ## @param service.headless.annotations Annotations for the headless service. + ## + annotations: {} +## Network Policies +## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/ +## +networkPolicy: + ## @param networkPolicy.enabled Specifies whether a NetworkPolicy should be created + ## + enabled: true + ## @param networkPolicy.allowExternal Don't require server label for connections + ## The Policy model to apply. When set to false, only pods with the correct + ## server label will have network access to the ports server is listening + ## on. When true, server will accept connections from any source + ## (with the correct destination port). + ## + allowExternal: true + ## @param networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations. + ## + allowExternalEgress: true + ## @param networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy + ## e.g: + ## extraIngress: + ## - ports: + ## - port: 1234 + ## from: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + extraIngress: [] + ## @param networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy + ## e.g: + ## extraEgress: + ## - ports: + ## - port: 1234 + ## to: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + ## + extraEgress: [] + ## @param networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces + ## @param networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces + ## + ingressNSMatchLabels: {} + ingressNSPodMatchLabels: {} +## @section Config Server parameters +## + +## Config Server replica set properties +## ref: https://docs.mongodb.com/manual/core/sharded-cluster-config-servers/ +## +configsvr: + ## @param configsvr.replicaCount Number of nodes in the replica set (the first node will be primary) + ## + replicaCount: 1 + ## @param configsvr.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if configsvr.resources is set (configsvr.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "small" + ## @param configsvr.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## + resources: {} + ## @param configsvr.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: false + ## @param configsvr.hostAliases Deployment pod host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param configsvr.mongodbExtraFlags MongoDB® additional command line flags + ## Can be used to specify command line flags, for example: + ## mongodbExtraFlags: + ## - "--wiredTigerCacheSizeGB=2" + ## + mongodbExtraFlags: [] + ## @param configsvr.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param configsvr.priorityClassName Pod priority class name + ## https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ + ## + priorityClassName: "" + ## @param configsvr.podAffinityPreset Config Server Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param configsvr.podAntiAffinityPreset Config Server Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param configsvr.nodeAffinityPreset.type Config Server Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param configsvr.nodeAffinityPreset.key Config Server Node label key to match Ignored if `affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param configsvr.nodeAffinityPreset.values Config Server Node label values to match. Ignored if `affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param configsvr.affinity Config Server Affinity for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: configsvr.podAffinityPreset, configsvr.podAntiAffinityPreset, and configsvr.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param configsvr.nodeSelector Config Server Node labels for pod assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param configsvr.tolerations Config Server Tolerations for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param configsvr.podManagementPolicy Statefulset's pod management policy, allows parallel startup of pods + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies + ## + podManagementPolicy: OrderedReady + ## @param configsvr.updateStrategy.type updateStrategy for MongoDB® Primary, Secondary and Arbiter statefulsets + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + type: RollingUpdate + ## @param configsvr.config MongoDB® configuration file + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + config: "" + ## @param configsvr.configCM ConfigMap name with Config Server configuration file (cannot be used with configsvr.config) + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + configCM: "" + ## @param configsvr.extraEnvVars An array to add extra env vars + ## For example: + ## extraEnvVars: + ## - name: KIBANA_ELASTICSEARCH_URL + ## value: test + ## + extraEnvVars: [] + ## @param configsvr.extraEnvVarsCM Name of a ConfigMap containing extra env vars + ## + extraEnvVarsCM: "" + ## @param configsvr.extraEnvVarsSecret Name of a Secret containing extra env vars + ## + extraEnvVarsSecret: "" + ## @param configsvr.sidecars Add sidecars to the pod + ## For example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param configsvr.initContainers Add init containers to the pod + ## For example: + ## initcontainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## + initContainers: [] + ## @param configsvr.podAnnotations Additional pod annotations + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param configsvr.podLabels Additional pod labels + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param configsvr.extraVolumes Array to add extra volumes. Requires setting `extraVolumeMounts` + ## + extraVolumes: [] + ## @param configsvr.extraVolumeMounts Array to add extra mounts (normally used with extraVolumes). Normally used with `extraVolumes` + ## + extraVolumeMounts: [] + ## @param configsvr.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## Pod disruption budget + ## + pdb: + ## @param configsvr.pdb.create Enable pod disruption budget + ## + create: true + ## @param configsvr.pdb.minAvailable Minimum number of available config pods allowed (`0` to disable) + ## + minAvailable: 0 + ## @param configsvr.pdb.maxUnavailable Maximum number of unavailable config pods allowed (`0` to disable) + ## + maxUnavailable: 1 + ## Enable persistence using Persistent Volume Claims + ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/ + ## + persistence: + ## @param configsvr.persistence.enabled Use a PVC to persist data + ## + enabled: true + ## @param configsvr.persistence.mountPath Path to mount the volume at + ## MongoDB® images. + ## + mountPath: /bitnami/mongodb + ## @param configsvr.persistence.subPath Subdirectory of the volume to mount at (evaluated as a template) + ## Useful in dev environments and one PV for multiple services. + ## + subPath: "" + ## @param configsvr.persistence.storageClass Storage class of backing PVC + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + storageClass: "" + ## @param configsvr.persistence.accessModes Use volume as ReadOnly or ReadWrite + ## + accessModes: + - ReadWriteOnce + ## @param configsvr.persistence.size PersistentVolumeClaim size + ## + size: 8Gi + ## @param configsvr.persistence.annotations Persistent Volume annotations + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + annotations: {} + ## Persistent Volume Claim Retention Policy + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention + ## + persistentVolumeClaimRetentionPolicy: + ## @param configsvr.persistentVolumeClaimRetentionPolicy.enabled Enable Persistent volume retention policy for Config Server StatefulSet + ## + enabled: false + ## @param configsvr.persistentVolumeClaimRetentionPolicy.whenScaled Volume retention behavior when the replica count of the StatefulSet is reduced + ## + whenScaled: Retain + ## @param configsvr.persistentVolumeClaimRetentionPolicy.whenDeleted Volume retention behavior that applies when the StatefulSet is deleted + ## + whenDeleted: Retain + ## K8s Service Account. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ## + serviceAccount: + ## @param configsvr.serviceAccount.create Specifies whether a ServiceAccount should be created for Config Server + ## + create: true + ## @param configsvr.serviceAccount.name Name of a Service Account to be used by Config Server + ## If not set and create is true, a name is generated using the XXX.fullname template + ## + name: "" + ## @param configsvr.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) + ## + annotations: {} + ## @param configsvr.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## + automountServiceAccountToken: false + ## Use a external config server instead of deploying one + ## + external: + ## @param configsvr.external.host Primary node of an external Config Server replicaset + ## + host: "" + ## @param configsvr.external.rootPassword Root password of the external Config Server replicaset + ## + rootPassword: "" + ## @param configsvr.external.replicasetName Replicaset name of an external Config Server + ## + replicasetName: "" + ## @param configsvr.external.replicasetKey Replicaset key of an external Config Server + ## + replicasetKey: "" + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + ## @param configsvr.podSecurityContext.enabled Enable security context + ## @param configsvr.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param configsvr.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param configsvr.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param configsvr.podSecurityContext.fsGroup Group ID for the container + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param configsvr.containerSecurityContext.enabled Enabled containers' Security Context + ## @param configsvr.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param configsvr.containerSecurityContext.runAsUser Set containers' Security Context runAsUser + ## @param configsvr.containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup + ## @param configsvr.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot + ## @param configsvr.containerSecurityContext.privileged Set container's Security Context privileged + ## @param configsvr.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem + ## @param configsvr.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation + ## @param configsvr.containerSecurityContext.capabilities.drop List of capabilities to be dropped + ## @param configsvr.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + privileged: false + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## @param configsvr.command Override default container command (useful when using custom images) + ## + command: + - /bin/bash + - /entrypoint/replicaset-entrypoint.sh + ## @param configsvr.args Override default container args (useful when using custom images) + ## + args: [] + ## @param configsvr.terminationGracePeriodSeconds Seconds Redmine pod needs to terminate gracefully + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods + ## + terminationGracePeriodSeconds: "" + ## @param configsvr.lifecycleHooks for the Config Server container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## Configure extra options for liveness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param configsvr.livenessProbe.enabled Enable livenessProbe + ## @param configsvr.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param configsvr.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param configsvr.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param configsvr.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param configsvr.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 60 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 2 + successThreshold: 1 + ## Configure extra options for readiness probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param configsvr.readinessProbe.enabled Enable readinessProbe + ## @param configsvr.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param configsvr.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param configsvr.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param configsvr.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param configsvr.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 6 + successThreshold: 1 + ## Configure extra options for startup probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param configsvr.startupProbe.enabled Enable startupProbe + ## @param configsvr.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param configsvr.startupProbe.periodSeconds Period seconds for startupProbe + ## @param configsvr.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param configsvr.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param configsvr.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: true + initialDelaySeconds: 0 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 30 + successThreshold: 1 + ## @param configsvr.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param configsvr.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param configsvr.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} +## @section Mongos parameters +## + +## Mongos properties +## ref: https://docs.mongodb.com/manual/reference/program/mongos/#bin.mongos +## +mongos: + ## @param mongos.replicaCount Number of replicas + ## + replicaCount: 1 + ## @param mongos.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if mongos.resources is set (mongos.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "small" + ## @param mongos.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## + resources: {} + ## @param mongos.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: false + ## @param mongos.hostAliases Deployment pod host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param mongos.mongodbExtraFlags MongoDB® additional command line flags + ## Can be used to specify command line flags, for example: + ## mongodbExtraFlags: + ## - "--wiredTigerCacheSizeGB=2" + ## + mongodbExtraFlags: [] + ## @param mongos.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param mongos.priorityClassName Pod priority class name + ## https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ + ## + priorityClassName: "" + ## @param mongos.podAffinityPreset Mongos Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param mongos.podAntiAffinityPreset Mongos Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param mongos.nodeAffinityPreset.type Mongos Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param mongos.nodeAffinityPreset.key Mongos Node label key to match Ignored if `affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param mongos.nodeAffinityPreset.values Mongos Node label values to match. Ignored if `affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param mongos.affinity Mongos Affinity for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: mongos.podAffinityPreset, mongos.podAntiAffinityPreset, and mongos.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param mongos.nodeSelector Mongos Node labels for pod assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param mongos.tolerations Mongos Tolerations for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param mongos.podManagementPolicy Statefulsets pod management policy, allows parallel startup of pods + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies + ## + podManagementPolicy: OrderedReady + ## @param mongos.updateStrategy.type updateStrategy for MongoDB® Primary, Secondary and Arbiter statefulsets + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + type: RollingUpdate + ## @param mongos.config MongoDB® configuration file + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + config: "" + ## @param mongos.configCM ConfigMap name with MongoDB® configuration file (cannot be used with mongos.config) + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + configCM: "" + ## @param mongos.extraEnvVars An array to add extra env vars + ## For example: + ## extraEnvVars: + ## - name: KIBANA_ELASTICSEARCH_URL + ## value: test + ## + extraEnvVars: [] + ## @param mongos.extraEnvVarsCM Name of a ConfigMap containing extra env vars + ## + extraEnvVarsCM: "" + ## @param mongos.extraEnvVarsSecret Name of a Secret containing extra env vars + ## + extraEnvVarsSecret: "" + ## @param mongos.sidecars Add sidecars to the pod + ## For example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param mongos.initContainers Add init containers to the pod + ## For example: + ## initcontainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## + initContainers: [] + ## @param mongos.podAnnotations Additional pod annotations + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param mongos.podLabels Additional pod labels + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param mongos.extraVolumes Array to add extra volumes. Requires setting `extraVolumeMounts` + ## + extraVolumes: [] + ## @param mongos.extraVolumeMounts Array to add extra volume mounts. Normally used with `extraVolumes`. + ## + extraVolumeMounts: [] + ## @param mongos.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param mongos.useStatefulSet Use StatefulSet instead of Deployment + ## + useStatefulSet: false + ## When using a statefulset, you can enable one service per replica + ## This is useful when exposing the mongos through load balancers to make sure clients + ## connect to the same mongos and therefore can follow their cursors + ## + servicePerReplica: + ## @param mongos.servicePerReplica.enabled Create one service per mongos replica (must be used with statefulset) + ## + enabled: false + ## @param mongos.servicePerReplica.annotations Additional service annotations (evaluate as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + annotations: {} + ## @param mongos.servicePerReplica.type Service type + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + ## + type: ClusterIP + ## @param mongos.servicePerReplica.externalTrafficPolicy External traffic policy + ## Enable client source IP preservation + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + ## + externalTrafficPolicy: Cluster + ## @param mongos.servicePerReplica.port MongoDB® service port + ## + port: 27017 + ## @param mongos.servicePerReplica.clusterIPs Array of static clusterIPs for each MongoDB@reg; replica. Length must be the same as mongos.replicaCount + ## ref: https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.16/#servicespec-v1-core + ## + clusterIPs: [] + ## @param mongos.servicePerReplica.nodePorts Array of node ports used for each MongoDB@reg; replica. Length must be the same as mongos.replicaCount + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## + nodePorts: [] + ## @param mongos.servicePerReplica.externalIPs External IP list to use with ClusterIP service type + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#external-ips + ## + externalIPs: [] + ## @param mongos.servicePerReplica.loadBalancerIPs Array of static IP Address to use for each replica LoadBalancer service type. Length must be the same as mongos.replicaCount + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#loadbalancer + ## + loadBalancerIPs: [] + ## @param mongos.servicePerReplica.loadBalancerSourceRanges List of IP ranges allowed access to load balancer (if supported) + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## + loadBalancerSourceRanges: [] + ## @param mongos.servicePerReplica.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param mongos.servicePerReplica.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same mongos Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param mongos.servicePerReplica.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## Pod disruption budget + ## + pdb: + ## @param mongos.pdb.create Enable pod disruption budget + ## + create: true + ## @param mongos.pdb.minAvailable Minimum number of available mongo pods allowed (`0` to disable) + ## + minAvailable: 0 + ## @param mongos.pdb.maxUnavailable Maximum number of unavailable mongo pods allowed (`0` to disable) + ## + maxUnavailable: 1 + ## K8s Service Account. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ## + serviceAccount: + ## @param mongos.serviceAccount.create Whether to create a Service Account for mongos automatically + ## + create: true + ## @param mongos.serviceAccount.name Name of a Service Account to be used by mongos + ## If not set and create is true, a name is generated using the XXX.fullname template + ## + name: "" + ## @param mongos.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) + ## + annotations: {} + ## @param mongos.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## + automountServiceAccountToken: false + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + ## @param mongos.podSecurityContext.enabled Enable security context + ## @param mongos.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param mongos.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param mongos.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param mongos.podSecurityContext.fsGroup Group ID for the container + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param mongos.containerSecurityContext.enabled Enabled containers' Security Context + ## @param mongos.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param mongos.containerSecurityContext.runAsUser Set containers' Security Context runAsUser + ## @param mongos.containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup + ## @param mongos.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot + ## @param mongos.containerSecurityContext.privileged Set container's Security Context privileged + ## @param mongos.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem + ## @param mongos.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation + ## @param mongos.containerSecurityContext.capabilities.drop List of capabilities to be dropped + ## @param mongos.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + privileged: false + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## @param mongos.command Override default container command (useful when using custom images) + ## + command: [] + ## @param mongos.args Override default container args (useful when using custom images) + ## + args: [] + ## @param mongos.terminationGracePeriodSeconds Seconds Redmine pod needs to terminate gracefully + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods + ## + terminationGracePeriodSeconds: "" + ## @param mongos.lifecycleHooks for the Mongo container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## Configure extra options for liveness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param mongos.livenessProbe.enabled Enable livenessProbe + ## @param mongos.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param mongos.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param mongos.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param mongos.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param mongos.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 60 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 2 + successThreshold: 1 + ## Configure extra options for readiness probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param mongos.readinessProbe.enabled Enable readinessProbe + ## @param mongos.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param mongos.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param mongos.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param mongos.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param mongos.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 6 + successThreshold: 1 + ## Configure extra options for startup probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param mongos.startupProbe.enabled Enable startupProbe + ## @param mongos.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param mongos.startupProbe.periodSeconds Period seconds for startupProbe + ## @param mongos.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param mongos.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param mongos.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 0 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 30 + successThreshold: 1 + ## @param mongos.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param mongos.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param mongos.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} +## @section Shard configuration: Data node parameters +## + +## Shard replica set properties +## ref: https://docs.mongodb.com/manual/replication/index.html +## +shardsvr: + ## Properties for data nodes (primary and secondary) + ## + dataNode: + ## @param shardsvr.dataNode.replicaCount Number of nodes in each shard replica set (the first node will be primary) + ## + replicaCount: 1 + ## @param shardsvr.dataNode.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if shardsvr.dataNode.resources is set (shardsvr.dataNode.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "medium" + ## @param shardsvr.dataNode.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## + resources: {} + ## @param shardsvr.dataNode.mongodbExtraFlags MongoDB® additional command line flags + ## Can be used to specify command line flags, for example: + ## mongodbExtraFlags: + ## - "--wiredTigerCacheSizeGB=2" + ## + mongodbExtraFlags: [] + ## @param shardsvr.dataNode.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param shardsvr.dataNode.priorityClassName Pod priority class name + ## https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ + ## + priorityClassName: "" + ## @param shardsvr.dataNode.podAffinityPreset Data nodes Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param shardsvr.dataNode.podAntiAffinityPreset Data nodes Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param shardsvr.dataNode.nodeAffinityPreset.type Data nodes Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param shardsvr.dataNode.nodeAffinityPreset.key Data nodes Node label key to match Ignored if `affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param shardsvr.dataNode.nodeAffinityPreset.values Data nodes Node label values to match. Ignored if `affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param shardsvr.dataNode.affinity Data nodes Affinity for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## You can set dataNodeLoopId (or any other parameter) by setting the below code block under this 'affinity' section: + ## affinity: + ## matchLabels: + ## shard: "{{ .dataNodeLoopId }}" + ## + ## Note: shardsvr.dataNode.podAffinityPreset, shardsvr.dataNode.podAntiAffinityPreset, and shardsvr.dataNode.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param shardsvr.dataNode.nodeSelector Data nodes Node labels for pod assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## You can set dataNodeLoopId (or any other parameter) by setting the below code block under this 'nodeSelector' section: + ## nodeSelector: { shardId: "{{ .dataNodeLoopId }}" } + ## + nodeSelector: {} + ## @param shardsvr.dataNode.tolerations Data nodes Tolerations for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## You can set dataNodeLoopId (or any other parameter) by setting the below code block under this 'nodeSelector' section: + ## tolerations: + ## - key: "shardId" + ## operator: "Equal" + ## value: "{{ .dataNodeLoopId }}" + ## effect: "NoSchedule" + ## + tolerations: [] + ## @param shardsvr.dataNode.podManagementPolicy podManagementPolicy for the statefulset, allows parallel startup of pods + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies + ## + podManagementPolicy: OrderedReady + ## @param shardsvr.dataNode.updateStrategy.type updateStrategy for MongoDB® Primary, Secondary and Arbiter statefulsets + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + type: RollingUpdate + ## @param shardsvr.dataNode.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: false + ## @param shardsvr.dataNode.hostAliases Deployment pod host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param shardsvr.dataNode.config Entries for the MongoDB® config file + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + config: "" + ## @param shardsvr.dataNode.configCM ConfigMap name with MongoDB® configuration (cannot be used with shardsvr.dataNode.config) + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + configCM: "" + ## @param shardsvr.dataNode.extraEnvVars An array to add extra env vars + ## For example: + ## extraEnvVars: + ## - name: KIBANA_ELASTICSEARCH_URL + ## value: test + ## + extraEnvVars: [] + ## @param shardsvr.dataNode.extraEnvVarsCM Name of a ConfigMap containing extra env vars + ## + extraEnvVarsCM: "" + ## @param shardsvr.dataNode.extraEnvVarsSecret Name of a Secret containing extra env vars + ## + extraEnvVarsSecret: "" + ## @param shardsvr.dataNode.sidecars Attach additional containers (evaluated as a template) + ## For example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param shardsvr.dataNode.initContainers Add init containers to the pod + ## For example: + ## initcontainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## + initContainers: [] + ## @param shardsvr.dataNode.podAnnotations Additional pod annotations + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param shardsvr.dataNode.podLabels Additional pod labels + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param shardsvr.dataNode.extraVolumes Array to add extra volumes. Requires setting `extraVolumeMounts` + ## + extraVolumes: [] + ## @param shardsvr.dataNode.extraVolumeMounts Array to add extra mounts. Normally used with `extraVolumes` + ## + extraVolumeMounts: [] + ## @param shardsvr.dataNode.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## Pod disruption budget + ## + pdb: + ## @param shardsvr.dataNode.pdb.create Enable pod disruption budget + ## + create: true + ## @param shardsvr.dataNode.pdb.minAvailable Minimum number of available data pods allowed (`0` to disable) + ## + minAvailable: 0 + ## @param shardsvr.dataNode.pdb.maxUnavailable Maximum number of unavailable data pods allowed (`0` to disable) + ## + maxUnavailable: 1 + ## K8s Service Account. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ## + serviceAccount: + ## @param shardsvr.dataNode.serviceAccount.create Specifies whether a ServiceAccount should be created for shardsvr + ## + create: true + ## @param shardsvr.dataNode.serviceAccount.name Name of a Service Account to be used by shardsvr data pods + ## If not set and create is true, a name is generated using the XXX.fullname template + ## + name: "" + ## @param shardsvr.dataNode.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) + ## + annotations: {} + ## @param shardsvr.dataNode.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## + automountServiceAccountToken: false + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + ## @param shardsvr.dataNode.podSecurityContext.enabled Enable security context + ## @param shardsvr.dataNode.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param shardsvr.dataNode.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param shardsvr.dataNode.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param shardsvr.dataNode.podSecurityContext.fsGroup Group ID for the container + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param shardsvr.dataNode.containerSecurityContext.enabled Enabled containers' Security Context + ## @param shardsvr.dataNode.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param shardsvr.dataNode.containerSecurityContext.runAsUser Set containers' Security Context runAsUser + ## @param shardsvr.dataNode.containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup + ## @param shardsvr.dataNode.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot + ## @param shardsvr.dataNode.containerSecurityContext.privileged Set container's Security Context privileged + ## @param shardsvr.dataNode.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem + ## @param shardsvr.dataNode.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation + ## @param shardsvr.dataNode.containerSecurityContext.capabilities.drop List of capabilities to be dropped + ## @param shardsvr.dataNode.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + privileged: false + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## @param shardsvr.dataNode.command Override default container command (useful when using custom images) + ## + command: + - /bin/bash + - /entrypoint/replicaset-entrypoint.sh + ## @param shardsvr.dataNode.args Override default container args (useful when using custom images) + ## + args: [] + ## @param shardsvr.dataNode.terminationGracePeriodSeconds Seconds Redmine pod needs to terminate gracefully + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods + ## + terminationGracePeriodSeconds: "" + ## @param shardsvr.dataNode.lifecycleHooks for the Data container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## Configure extra options for liveness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param shardsvr.dataNode.livenessProbe.enabled Enable livenessProbe + ## @param shardsvr.dataNode.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param shardsvr.dataNode.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param shardsvr.dataNode.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param shardsvr.dataNode.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param shardsvr.dataNode.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 60 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 2 + successThreshold: 1 + ## Configure extra options for readiness probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param shardsvr.dataNode.readinessProbe.enabled Enable readinessProbe + ## @param shardsvr.dataNode.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param shardsvr.dataNode.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param shardsvr.dataNode.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param shardsvr.dataNode.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param shardsvr.dataNode.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 6 + successThreshold: 1 + ## Configure extra options for startup probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param shardsvr.dataNode.startupProbe.enabled Enable startupProbe + ## @param shardsvr.dataNode.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param shardsvr.dataNode.startupProbe.periodSeconds Period seconds for startupProbe + ## @param shardsvr.dataNode.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param shardsvr.dataNode.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param shardsvr.dataNode.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 0 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 30 + successThreshold: 1 + ## @param shardsvr.dataNode.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param shardsvr.dataNode.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param shardsvr.dataNode.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @section Shard configuration: Persistence parameters + ## + + ## Enable persistence using Persistent Volume Claims + ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/ + ## + persistence: + ## @param shardsvr.persistence.enabled Use a PVC to persist data + ## + enabled: true + ## @param shardsvr.persistence.mountPath The path the volume will be mounted at, useful when using different MongoDB® images. + ## + mountPath: /bitnami/mongodb + ## @param shardsvr.persistence.subPath Subdirectory of the volume to mount at (evaluated as a template) + ## Useful in development environments and one PV for multiple services. + ## + subPath: "" + ## @param shardsvr.persistence.storageClass Storage class of backing PVC + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + storageClass: "" + ## @param shardsvr.persistence.accessModes Use volume as ReadOnly or ReadWrite + ## + accessModes: + - ReadWriteOnce + ## @param shardsvr.persistence.size PersistentVolumeClaim size + ## + size: 8Gi + ## @param shardsvr.persistence.annotations Additional volume annotations + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + annotations: {} + ## Persistent Volume Claim Retention Policy + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention + ## + persistentVolumeClaimRetentionPolicy: + ## @param shardsvr.persistentVolumeClaimRetentionPolicy.enabled Enable Persistent volume retention policy for Shard replicas StatefulSet + ## + enabled: false + ## @param shardsvr.persistentVolumeClaimRetentionPolicy.whenScaled Volume retention behavior when the replica count of the StatefulSet is reduced + ## + whenScaled: Retain + ## @param shardsvr.persistentVolumeClaimRetentionPolicy.whenDeleted Volume retention behavior that applies when the StatefulSet is deleted + ## + whenDeleted: Retain + + ## @section Shard configuration: Arbiter parameters + ## + + ## Properties for arbiter nodes + ## ref: https://docs.mongodb.com/manual/tutorial/add-replica-set-arbiter/ + ## + arbiter: + ## @param shardsvr.arbiter.replicaCount Number of arbiters in each shard replica set (the first node will be primary) + ## + replicaCount: 0 + ## @param shardsvr.arbiter.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: false + ## @param shardsvr.arbiter.hostAliases Deployment pod host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param shardsvr.arbiter.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if shardsvr.arbiter.resources is set (shardsvr.arbiter.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "small" + ## @param shardsvr.arbiter.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## + resources: {} + ## @param shardsvr.arbiter.mongodbExtraFlags MongoDB® additional command line flags + ## Can be used to specify command line flags, for example: + ## mongodbExtraFlags: + ## - "--wiredTigerCacheSizeGB=2" + ## + mongodbExtraFlags: [] + ## @param shardsvr.arbiter.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param shardsvr.arbiter.priorityClassName Pod priority class name + ## https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ + ## + priorityClassName: "" + ## @param shardsvr.arbiter.podAffinityPreset Arbiter's Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param shardsvr.arbiter.podAntiAffinityPreset Arbiter's Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param shardsvr.arbiter.nodeAffinityPreset.type Arbiter's Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param shardsvr.arbiter.nodeAffinityPreset.key Arbiter's Node label key to match Ignored if `affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param shardsvr.arbiter.nodeAffinityPreset.values Arbiter's Node label values to match. Ignored if `affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param shardsvr.arbiter.affinity Arbiter's Affinity for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## You can set arbiterLoopId (or any other parameter) by setting the below code block under this 'affinity' section: + ## affinity: + ## matchLabels: + ## shard: "{{ .arbiterLoopId }}" + ## + ## Note: shardsvr.arbiter.podAffinityPreset, shardsvr.arbiter.podAntiAffinityPreset, and shardsvr.arbiter.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param shardsvr.arbiter.nodeSelector Arbiter's Node labels for pod assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param shardsvr.arbiter.tolerations Arbiter's Tolerations for pod assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param shardsvr.arbiter.podManagementPolicy Statefulset's pod management policy, allows parallel startup of pods + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies + ## + podManagementPolicy: OrderedReady + ## @param shardsvr.arbiter.updateStrategy.type updateStrategy for MongoDB® Primary, Secondary and Arbiter statefulsets + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + type: RollingUpdate + ## @param shardsvr.arbiter.config MongoDB® configuration file + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + config: "" + ## @param shardsvr.arbiter.configCM ConfigMap name with MongoDB® configuration file (cannot be used with shardsvr.arbiter.config) + ## ref: http://docs.mongodb.org/manual/reference/configuration-options/ + ## + configCM: "" + ## @param shardsvr.arbiter.extraEnvVars An array to add extra env vars + ## For example: + ## extraEnvVars: + ## - name: KIBANA_ELASTICSEARCH_URL + ## value: test + ## + extraEnvVars: [] + ## @param shardsvr.arbiter.extraEnvVarsCM Name of a ConfigMap containing extra env vars + ## + extraEnvVarsCM: "" + ## @param shardsvr.arbiter.extraEnvVarsSecret Name of a Secret containing extra env vars + ## + extraEnvVarsSecret: "" + ## @param shardsvr.arbiter.sidecars Add sidecars to the pod + ## For example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param shardsvr.arbiter.initContainers Add init containers to the pod + ## For example: + ## initcontainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## + initContainers: [] + ## @param shardsvr.arbiter.podAnnotations Additional pod annotations + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param shardsvr.arbiter.podLabels Additional pod labels + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param shardsvr.arbiter.extraVolumes Array to add extra volumes + ## + extraVolumes: [] + ## @param shardsvr.arbiter.extraVolumeMounts Array to add extra mounts (normally used with extraVolumes) + ## + extraVolumeMounts: [] + ## @param shardsvr.arbiter.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## K8s Service Account. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ## + serviceAccount: + ## @param shardsvr.arbiter.serviceAccount.create Specifies whether a ServiceAccount should be created for shardsvr arbiter nodes + ## + create: true + ## @param shardsvr.arbiter.serviceAccount.name Name of a Service Account to be used by shardsvr arbiter pods + ## If not set and create is true, a name is generated using the XXX.fullname template + ## + name: "" + ## @param shardsvr.arbiter.serviceAccount.annotations Additional Service Account annotations (evaluated as a template) + ## + annotations: {} + ## @param shardsvr.arbiter.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## + automountServiceAccountToken: false + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + ## @param shardsvr.arbiter.podSecurityContext.enabled Enable security context + ## @param shardsvr.arbiter.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param shardsvr.arbiter.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param shardsvr.arbiter.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param shardsvr.arbiter.podSecurityContext.fsGroup Group ID for the container + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param shardsvr.arbiter.containerSecurityContext.enabled Enabled containers' Security Context + ## @param shardsvr.arbiter.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param shardsvr.arbiter.containerSecurityContext.runAsUser Set containers' Security Context runAsUser + ## @param shardsvr.arbiter.containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup + ## @param shardsvr.arbiter.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot + ## @param shardsvr.arbiter.containerSecurityContext.privileged Set container's Security Context privileged + ## @param shardsvr.arbiter.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem + ## @param shardsvr.arbiter.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation + ## @param shardsvr.arbiter.containerSecurityContext.capabilities.drop List of capabilities to be dropped + ## @param shardsvr.arbiter.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + privileged: false + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## @param shardsvr.arbiter.command Override default container command (useful when using custom images) + ## + command: [] + ## @param shardsvr.arbiter.args Override default container args (useful when using custom images) + ## + args: [] + ## @param shardsvr.arbiter.terminationGracePeriodSeconds Seconds Redmine pod needs to terminate gracefully + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods + ## + terminationGracePeriodSeconds: "" + ## @param shardsvr.arbiter.lifecycleHooks for the arbiter container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## Configure extra options for liveness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param shardsvr.arbiter.livenessProbe.enabled Enable livenessProbe + ## @param shardsvr.arbiter.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param shardsvr.arbiter.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param shardsvr.arbiter.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param shardsvr.arbiter.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param shardsvr.arbiter.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 60 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 2 + successThreshold: 1 + ## Configure extra options for readiness probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param shardsvr.arbiter.readinessProbe.enabled Enable readinessProbe + ## @param shardsvr.arbiter.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param shardsvr.arbiter.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param shardsvr.arbiter.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param shardsvr.arbiter.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param shardsvr.arbiter.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 30 + timeoutSeconds: 20 + failureThreshold: 6 + successThreshold: 1 + ## Configure extra options for startup probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param shardsvr.arbiter.startupProbe.enabled Enable startupProbe + ## @param shardsvr.arbiter.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param shardsvr.arbiter.startupProbe.periodSeconds Period seconds for startupProbe + ## @param shardsvr.arbiter.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param shardsvr.arbiter.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param shardsvr.arbiter.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 0 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 30 + successThreshold: 1 + ## @param shardsvr.arbiter.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param shardsvr.arbiter.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param shardsvr.arbiter.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} +## @section Metrics parameters +## + +metrics: + ## @param metrics.enabled Start a side-car prometheus exporter + ## + enabled: false + ## @param metrics.image.registry [default: REGISTRY_NAME] MongoDB® exporter image registry + ## @param metrics.image.repository [default: REPOSITORY_NAME/mongodb-exporter] MongoDB® exporter image name + ## @skip metrics.image.tag MongoDB® exporter image tag + ## @param metrics.image.digest MongoDB® exporter image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param metrics.image.pullPolicy MongoDB® exporter image pull policy + ## @param metrics.image.pullSecrets MongoDB® exporter image pull secrets + ## + image: + registry: docker.io + repository: bitnami/mongodb-exporter + tag: 0.44.0-debian-12-r1 + digest: "" + pullPolicy: Always + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## @param metrics.useTLS Whether to connect to MongoDB® with TLS + ## + useTLS: false + ## @param metrics.extraArgs String with extra arguments to the metrics exporter + ## ref: https://github.com/percona/mongodb_exporter/blob/main/main.go + ## + extraArgs: "" + ## @param metrics.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if metrics.resources is set (metrics.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param metrics.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## + resources: {} + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param metrics.containerSecurityContext.enabled Enabled containers' Security Context + ## @param metrics.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param metrics.containerSecurityContext.runAsUser Set containers' Security Context runAsUser + ## @param metrics.containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup + ## @param metrics.containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot + ## @param metrics.containerSecurityContext.privileged Set container's Security Context privileged + ## @param metrics.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem + ## @param metrics.containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation + ## @param metrics.containerSecurityContext.capabilities.drop List of capabilities to be dropped + ## @param metrics.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + privileged: false + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## Metrics exporter liveness probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes) + ## @param metrics.livenessProbe.enabled Enable livenessProbe + ## @param metrics.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param metrics.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param metrics.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param metrics.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param metrics.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: false + initialDelaySeconds: 15 + periodSeconds: 5 + timeoutSeconds: 5 + failureThreshold: 3 + successThreshold: 1 + ## Metrics exporter liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes) + ## @param metrics.readinessProbe.enabled Enable readinessProbe + ## @param metrics.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param metrics.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param metrics.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param metrics.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param metrics.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 5 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## Configure extra options for startup probe + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param metrics.startupProbe.enabled Enable startupProbe + ## @param metrics.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param metrics.startupProbe.periodSeconds Period seconds for startupProbe + ## @param metrics.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param metrics.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param metrics.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 0 + periodSeconds: 5 + timeoutSeconds: 2 + failureThreshold: 15 + successThreshold: 1 + ## @param metrics.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param metrics.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param metrics.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param metrics.containerPorts.metrics Port of the Prometheus metrics container + ## + containerPorts: + metrics: 9216 + ## @param metrics.podAnnotations [object] Metrics exporter pod Annotation + ## + podAnnotations: + prometheus.io/scrape: "true" + prometheus.io/port: "{{ .Values.metrics.containerPort }}" + ## Prometheus Service Monitor + ## ref: https://github.com/coreos/prometheus-operator + ## https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + podMonitor: + ## @param metrics.podMonitor.enabled Create PodMonitor Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param metrics.podMonitor.namespace Namespace where podmonitor resource should be created + ## + namespace: monitoring + ## @param metrics.podMonitor.interval Specify the interval at which metrics should be scraped + ## + interval: 30s + ## @param metrics.podMonitor.scrapeTimeout Specify the timeout after which the scrape is ended + ## e.g: + ## scrapeTimeout: 30s + ## + scrapeTimeout: "" + ## @param metrics.podMonitor.additionalLabels Additional labels that can be used so PodMonitors will be discovered by Prometheus + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#prometheusspec + ## + additionalLabels: {} + diff --git a/kubernetes/catalog-importer.yaml b/kubernetes/catalog-importer.yaml new file mode 100644 index 0000000..3ad2716 --- /dev/null +++ b/kubernetes/catalog-importer.yaml @@ -0,0 +1,8 @@ +apiVersion: backstage.io/v1alpha1 +kind: Location +metadata: + name: kubernetes-recursive-import + description: "Recursively import all catalog-info.yaml files from this repo" +spec: + targets: + - ./**/catalog-info.yaml diff --git a/kubernetes/catalog-info.yaml b/kubernetes/catalog-info.yaml new file mode 100644 index 0000000..8562cd1 --- /dev/null +++ b/kubernetes/catalog-info.yaml @@ -0,0 +1,18 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: kubernetes-deployments-github + namespace: default + description: All deployment manifests for our Kubernetes apps + links: + - url: https://gitea-dev.allarddcs.nl/AllardDCS/kubernetes + title: AllardDCS Kubernetes Configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + - ./asus/catalog-info.yaml + - ./dev/catalog-info.yaml + - ./ansible/catalog-info.yaml diff --git a/kubernetes/dev/README.md b/kubernetes/dev/README.md new file mode 100644 index 0000000..9520a4f --- /dev/null +++ b/kubernetes/dev/README.md @@ -0,0 +1 @@ +Dit zijn alle configuraties van het DEV-cluster. diff --git a/kubernetes/dev/argocd/README.md b/kubernetes/dev/argocd/README.md new file mode 100755 index 0000000..6f5f781 --- /dev/null +++ b/kubernetes/dev/argocd/README.md @@ -0,0 +1,39 @@ +#Installatie: + +kubectl create ns argocd +helm install argocd -f values.yaml bitnami/argo-cd -n argocd +ingressroutes: +- door het PROD-cluster loopt een ingressrouteTCP met tls: passtrough: true. +- in het DEV-cluster is alleen de tls ingressroute nodig + +de helmchart: +- maakt Tls-certificaat aan +- de helm-chart maakt secret aan met user: admin, password: Argocd01@ + +#password opvragen: + +echo "Password: $(kubectl -n default get secret argocd-secret -o +jsonpath="{.data.clearPassword}" | base64 -d)" + +#gitea repository koppelen: + +Checken of de repository in git aanwezig is. + +project: default +https://gitea-dev.allarddcs.nl/AllardDCS/dev/olproperties (ZONDER.git!!!) +user: allard +password: Gitea01@ + +#applicatie toevoegen: + +repository invullen +pad toevoegen (olproperties) + +#task argocd-sync-and-wait installeren: + +kubectl apply -f argocd-task-sync-and-wait.yaml + + #testen kan met: +kubectl apply -f argocd-pipeline.yaml +kubectl create -f argocd-pipeline-run.yaml + diff --git a/kubernetes/dev/argocd/ingressroute-http.yaml b/kubernetes/dev/argocd/ingressroute-http.yaml new file mode 100755 index 0000000..36549b6 --- /dev/null +++ b/kubernetes/dev/argocd/ingressroute-http.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: argocd-http + namespace: argocd +spec: + entryPoints: + - web + routes: + - kind: Rule + match: Host("argocd-dev.allarddcs.nl") + priority: 10 + services: + - kind: Service + name: argocd-argo-cd-server + port: 80 diff --git a/kubernetes/dev/argocd/ingressroute-tls.yaml b/kubernetes/dev/argocd/ingressroute-tls.yaml new file mode 100755 index 0000000..d6b95f3 --- /dev/null +++ b/kubernetes/dev/argocd/ingressroute-tls.yaml @@ -0,0 +1,26 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: argocd-tls + namespace: argocd +spec: + entryPoints: + - websecure + routes: + - kind: Rule + match: Host(`argocd-dev.allarddcs.nl`) + priority: 10 + services: + - kind: Service + name: argocd-argo-cd-server + port: 80 + - kind: Rule + match: Host(`argocd-dev.allarddcs.nl`) && Headers(`Content-Type`, `application/grpc`) + priority: 11 + services: + - kind: Service + name: argocd-argo-cd-server + port: 80 + scheme: h2c + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/argocd/ingressrouteTCP-tls.yaml b/kubernetes/dev/argocd/ingressrouteTCP-tls.yaml new file mode 100755 index 0000000..fac96e7 --- /dev/null +++ b/kubernetes/dev/argocd/ingressrouteTCP-tls.yaml @@ -0,0 +1,22 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: argocd-route-tcp-tls + namespace: argocd +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`argocd-dev.allarddcs.nl`) + priority: 10 + services: + - name: argocd-argo-cd-server + port: 443 +# - match: HostSNI(`argocd.alldcs.nl`) && Headers(`Content-Type`, `application/grpc`) +# priority: 11 +# services: +# - name: argocd-argo-cd-server +# port: 443 + tls: + passthrough: true + diff --git a/kubernetes/dev/argocd/values-new.yaml b/kubernetes/dev/argocd/values-new.yaml new file mode 100644 index 0000000..43467b3 --- /dev/null +++ b/kubernetes/dev/argocd/values-new.yaml @@ -0,0 +1,4074 @@ +# Copyright Broadcom, Inc. All Rights Reserved. +# SPDX-License-Identifier: APACHE-2.0 + +## @section Global parameters +## Global Docker image parameters +## Please, note that this will override the image parameters, including dependencies, configured to use the global value +## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass + +## @param global.imageRegistry Global Docker image registry +## @param global.imagePullSecrets Global Docker registry secret names as an array +## @param global.storageClass Global StorageClass for Persistent Volume(s) +## +global: + imageRegistry: "" + ## E.g. + ## imagePullSecrets: + ## - myRegistryKeySecretName + ## + imagePullSecrets: [] + storageClass: "" + ## Compatibility adaptations for Kubernetes platforms + ## + compatibility: + ## Compatibility adaptations for Openshift + ## + openshift: + ## @param global.compatibility.openshift.adaptSecurityContext Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) + ## + adaptSecurityContext: auto +## @section Common parameters + +## @param kubeVersion Override Kubernetes version +## +kubeVersion: "" +## @param nameOverride String to partially override common.names.fullname +## +nameOverride: "" +## @param fullnameOverride String to fully override common.names.fullname +## +fullnameOverride: "" +## @param commonLabels Labels to add to all deployed objects +## +commonLabels: {} +## @param commonAnnotations Annotations to add to all deployed objects +## +commonAnnotations: {} +## @param clusterDomain Kubernetes cluster domain name +## +clusterDomain: cluster.local +## @param extraDeploy Array of extra objects to deploy with the release +## +extraDeploy: [] +## @section Argo CD image parameters + +## Bitnami Argo CD image +## ref: https://hub.docker.com/r/bitnami/argo-cd/tags/ +## @param image.registry [default: REGISTRY_NAME] Argo CD image registry +## @param image.repository [default: REPOSITORY_NAME/argo-cd] Argo CD image repository +## @skip image.tag Argo CD image tag (immutable tags are recommended) +## @param image.digest Argo CD image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag +## @param image.pullPolicy Argo CD image pull policy +## @param image.pullSecrets Argo CD image pull secrets +## @param image.debug Enable Argo CD image debug mode +## +image: + registry: docker.io + repository: bitnami/argo-cd + tag: 2.11.2-debian-12-r0 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false +## @section Argo CD application controller parameters + +## Argo CD Controller +## +controller: + ## @param controller.replicaCount Number of Argo CD replicas to deploy + ## + replicaCount: 1 + ## Configure extra options for Argo CD containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param controller.startupProbe.enabled Enable startupProbe on Argo CD nodes + ## @param controller.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param controller.startupProbe.periodSeconds Period seconds for startupProbe + ## @param controller.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param controller.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param controller.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param controller.livenessProbe.enabled Enable livenessProbe on Argo CD nodes + ## @param controller.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param controller.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param controller.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param controller.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param controller.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param controller.readinessProbe.enabled Enable readinessProbe on Argo CD nodes + ## @param controller.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param controller.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param controller.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param controller.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param controller.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param controller.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param controller.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param controller.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Argo CD resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param controller.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if controller.resources is set (controller.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "micro" + ## @param controller.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param controller.podSecurityContext.enabled Enabled Argo CD pods' Security Context + ## @param controller.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param controller.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param controller.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param controller.podSecurityContext.fsGroup Set Argo CD pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param controller.containerSecurityContext.enabled Enabled Argo CD containers' Security Context + ## @param controller.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param controller.containerSecurityContext.runAsUser Set Argo CD containers' Security Context runAsUser + ## @param controller.containerSecurityContext.runAsGroup Set Argo CD containers' Security Context runAsGroup + ## @param controller.containerSecurityContext.allowPrivilegeEscalation Set Argo CD containers' Security Context allowPrivilegeEscalation + ## @param controller.containerSecurityContext.capabilities.drop Set Argo CD containers' Security Context capabilities to be dropped + ## @param controller.containerSecurityContext.readOnlyRootFilesystem Set Argo CD containers' Security Context readOnlyRootFilesystem + ## @param controller.containerSecurityContext.runAsNonRoot Set Argo CD container's Security Context runAsNonRoot + ## @param controller.containerSecurityContext.privileged Set controller container's Security Context privileged + ## @param controller.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + privileged: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## ServiceAccount configuration for the Argo CD application controller + ## + serviceAccount: + ## @param controller.serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param controller.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param controller.serviceAccount.automountServiceAccountToken Automount service account token for the application controller service account + ## + automountServiceAccountToken: false + ## @param controller.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. + ## + annotations: {} + ## Enable admin clusterrole resources. Allows to Argo CD to deploy to the K8s cluster + ## @param controller.clusterAdminAccess Enable K8s cluster admin access for the application controller + ## + clusterAdminAccess: true + ## Enable Custom Rules for the Application Controller cluster role + ## @param controller.clusterRoleRules Use custom rules for the application controller's cluster role + ## + clusterRoleRules: [] + ## Argo CD application controller log format: text|json + ## @param controller.logFormat Format for the Argo CD application controller logs. Options: [text, json] + ## + logFormat: text + ## Argo CD application controller log level + ## @param controller.logLevel Log level for the Argo CD application controller + ## + logLevel: info + ## Argo CD application controller ports + ## @param controller.containerPorts.metrics Argo CD application controller metrics port number + containerPorts: + metrics: 8082 + ## Argo CD application controller service parameters + ## + service: + ## @param controller.service.type Argo CD service type + ## + type: ClusterIP + ## @param controller.service.ports.metrics Argo CD application controller service port + ## + ports: + metrics: 8082 + ## Node ports to expose + ## @param controller.service.nodePorts.metrics Node port for Argo CD application controller service + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + metrics: "" + ## @param controller.service.clusterIP Argo CD application controller service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param controller.service.loadBalancerIP Argo CD application controller service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param controller.service.loadBalancerSourceRanges Argo CD application controller service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param controller.service.externalTrafficPolicy Argo CD application controller service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param controller.service.annotations Additional custom annotations for Argo CD application controller service + ## + annotations: {} + ## @param controller.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param controller.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param controller.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + ## Network Policies + ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/ + ## + networkPolicy: + ## @param controller.networkPolicy.enabled Specifies whether a NetworkPolicy should be created + ## + enabled: true + ## @param controller.networkPolicy.allowExternal Don't require server label for connections + ## The Policy model to apply. When set to false, only pods with the correct + ## server label will have network access to the ports server is listening + ## on. When true, server will accept connections from any source + ## (with the correct destination port). + ## + allowExternal: true + ## @param controller.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations. + ## + allowExternalEgress: true + ## @param controller.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security) + ## + kubeAPIServerPorts: [443, 6443, 8443] + ## @param controller.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy + ## e.g: + ## extraIngress: + ## - ports: + ## - port: 1234 + ## from: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + extraIngress: [] + ## @param controller.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy (ignored if allowExternalEgress=true) + ## e.g: + ## extraEgress: + ## - ports: + ## - port: 1234 + ## to: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + ## + extraEgress: [] + ## @param controller.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces + ## @param controller.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces + ## + ingressNSMatchLabels: {} + ingressNSPodMatchLabels: {} + ## Metrics configuration for Argo CD application controller + ## + metrics: + ## @param controller.metrics.enabled Enable Argo CD application controller metrics + ## + enabled: false + service: + ## @param controller.metrics.service.type Argo CD application controller service type + ## + type: ClusterIP + ## @param controller.metrics.service.ports.metrics Argo CD application controller metrics service port + ## + ports: + metrics: 8082 + ## Node ports to expose + ## @param controller.metrics.service.nodePorts.metrics Node port for the application controller service + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + metrics: "" + ## @param controller.metrics.service.clusterIP Argo CD application controller metrics service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param controller.metrics.service.loadBalancerIP Argo CD application controller service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param controller.metrics.service.loadBalancerSourceRanges Argo CD application controller service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param controller.metrics.service.externalTrafficPolicy Argo CD application controller service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param controller.metrics.service.annotations Additional custom annotations for Argo CD application controller service + ## + annotations: {} + ## @param controller.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param controller.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + ## Argo CD application controller metrics service monitor configuration + ## + serviceMonitor: + ## @param controller.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param controller.metrics.serviceMonitor.namespace Namespace which Prometheus is running in + ## e.g: + ## namespace: monitoring + ## + namespace: "" + ## @param controller.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" + ## @param controller.metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: 30s + ## @param controller.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: 10s + ## @param controller.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + relabelings: [] + ## @param controller.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + metricRelabelings: [] + ## @param controller.metrics.serviceMonitor.selector ServiceMonitor selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + ## selector: + ## prometheus: my-prometheus + ## + selector: {} + ## @param controller.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels + ## + honorLabels: false + ## Rules for PrometheusRule object if enabled + ## + ## E.g. + ## @param controller.metrics.rules.enabled Enable render extra rules for PrometheusRule object + ## @param controller.metrics.rules.spec Rules to render into the PrometheusRule object + ## @param controller.metrics.rules.selector Selector for the PrometheusRule object + ## @param controller.metrics.rules.namespace Namespace where to create the PrometheusRule object + ## @param controller.metrics.rules.additionalLabels Additional lables to add to the PrometheusRule object + ## + rules: + enabled: false + ## E.g + ## - alert: ArgoAppMissing + ## expr: | + ## absent(argocd_app_info) + ## for: 15m + ## labels: + ## severity: critical + ## annotations: + ## summary: "[ArgoCD] No reported applications" + ## description: > + ## ArgoCD has not reported any applications data for the past 15 minutes which + ## means that it must be down or not functioning properly. This needs to be + ## resolved for this cloud to continue to maintain state. + ## - alert: ArgoAppNotSynced + ## expr: | + ## argocd_app_info{sync_status!="Synced"} == 1 + ## for: 12h + ## labels: + ## severity: warning + ## annotations: + ## summary: "[{{`{{ $labels.name }}`}}] Application not synchronized" + ## description: > + ## The application [{{`{{ $labels.name }}`}} has not been synchronized for over + ## 12 hours which means that the state of this cloud has drifted away from the + ## state inside Git. + ## + spec: [] + ## E.g + ## selector: + ## prometheus: kube-prometheus + ## + selector: {} + namespace: monitoring + additionalLabels: {} + ## @param controller.command Override default container command (useful when using custom images) + ## + command: [] + ## Arguments that will be used by default for the application controller + ## @param controller.defaultArgs.statusProcessors Default status processors for Argo CD controller + ## @param controller.defaultArgs.operationProcessors Default operation processors for Argo CD controller + ## @param controller.defaultArgs.appResyncPeriod Default application resync period for Argo CD controller + ## @param controller.defaultArgs.selfHealTimeout Default self heal timeout for Argo CD controller + ## + defaultArgs: + statusProcessors: "20" + operationProcessors: "10" + appResyncPeriod: "180" + selfHealTimeout: "5" + ## @param controller.args Override default container args (useful when using custom images). Overrides the defaultArgs. + ## + args: [] + ## @param controller.extraArgs Add extra arguments to the default arguments for the Argo CD controller + ## + extraArgs: [] + ## @param controller.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: true + ## @param controller.hostAliases Argo CD pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param controller.podLabels Extra labels for Argo CD pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param controller.podAnnotations Annotations for Argo CD pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param controller.podAffinityPreset Pod affinity preset. Ignored if `controller.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param controller.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `controller.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node controller.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param controller.nodeAffinityPreset.type Node affinity preset type. Ignored if `controller.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param controller.nodeAffinityPreset.key Node label key to match. Ignored if `controller.affinity` is set + ## + key: "" + ## @param controller.nodeAffinityPreset.values Node label values to match. Ignored if `controller.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param controller.affinity Affinity for Argo CD pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `controller.podAffinityPreset`, `controller.podAntiAffinityPreset`, and `controller.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param controller.nodeSelector Node labels for Argo CD pods assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param controller.tolerations Tolerations for Argo CD pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param controller.schedulerName Name of the k8s scheduler (other than default) + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param controller.shareProcessNamespace Enable shared process namespace in a pod. + ## If set to false (default), each container will run in separate namespace, controller will have PID=1. + ## If set to true, the /pause will run as init process and will reap any zombie PIDs, + ## for example, generated by a custom exec probe running longer than a probe timeoutSeconds. + ## Enable this only if customLivenessProbe or customReadinessProbe is used and zombie PIDs are accumulating. + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/ + ## + shareProcessNamespace: false + ## @param controller.topologySpreadConstraints Topology Spread Constraints for pod assignment + ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## The value is evaluated as a template + ## + topologySpreadConstraints: [] + ## @param controller.updateStrategy.type Argo CD statefulset strategy type + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + ## StrategyType + ## Can be set to RollingUpdate or OnDelete + ## + type: RollingUpdate + ## @param controller.priorityClassName Argo CD pods' priorityClassName + ## + priorityClassName: "" + ## @param controller.runtimeClassName Name of the runtime class to be used by pod(s) + ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/ + ## + runtimeClassName: "" + ## @param controller.lifecycleHooks for the Argo CD container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param controller.extraEnvVars Array with extra environment variables to add to Argo CD nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param controller.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD nodes + ## + extraEnvVarsCM: "" + ## @param controller.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD nodes + ## + extraEnvVarsSecret: "" + ## @param controller.extraVolumes Optionally specify extra list of additional volumes for the Argo CD pod(s) + ## + extraVolumes: [] + ## @param controller.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD container(s) + ## + extraVolumeMounts: [] + ## @param controller.sidecars Add additional sidecar containers to the Argo CD pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param controller.initContainers Add additional init containers to the Argo CD pod(s) + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## command: ['sh', '-c', 'echo "hello world"'] + ## + initContainers: [] +## @section Argo CD ApplicationSet controller parameters + +## ApplicationSet controller +## +applicationSet: + ## @param applicationSet.enabled Enable ApplicationSet controller + ## + enabled: false + ## @param applicationSet.replicaCount The number of ApplicationSet controller pods to run + ## + replicaCount: 1 + ## @param applicationSet.command Override default container command (useful when using custom images) + ## + command: [] + ## Arguments that will be used by default for the application controller + ## @param applicationSet.defaultArgs.enableLeaderElection Enable leader election + ## @param applicationSet.defaultArgs.policy Default policy + ## @param applicationSet.defaultArgs.debug Enable debug mode + ## @param applicationSet.defaultArgs.dryRun Enable dry-run mode + ## + defaultArgs: + enableLeaderElection: false + policy: "sync" + debug: false + dryRun: false + ## @param applicationSet.args Override default container args (useful when using custom images). Overrides the defaultArgs. + ## + args: [] + ## @param applicationSet.extraArgs Add extra arguments to the default arguments for the Argo CD applicationSet controller + ## + extraArgs: [] + ## Argo CD applicationSet controller log format: text|json + ## @param applicationSet.logFormat Format for the Argo CD applicationSet controller logs. Options: [text, json] + ## + logFormat: text + ## Argo CD applicationSet controller log level + ## @param applicationSet.logLevel Log level for the Argo CD applicationSet controller + ## + logLevel: info + ## Argo CD applicationSet controller ports + ## @param applicationSet.containerPorts.metrics Argo CD applicationSet controller metrics port number + ## @param applicationSet.containerPorts.probe Argo CD applicationSet controller probe port number + ## + containerPorts: + metrics: 8085 + probe: 8081 + ## Metrics configuration for Argo CD applicationSet controller + ## + metrics: + ## @param applicationSet.metrics.enabled Enable Argo CD applicationSet controller metrics + ## + enabled: false + service: + ## @param applicationSet.metrics.service.type Argo CD applicationSet controller service type + ## + type: ClusterIP + ## @param applicationSet.metrics.service.ports.metrics Argo CD applicationSet controller metrics service port + ## + ports: + metrics: 8085 + ## Node ports to expose + ## @param applicationSet.metrics.service.nodePorts.metrics Node port for the applicationSet controller service + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + metrics: "" + ## @param applicationSet.metrics.service.clusterIP Argo CD applicationSet controller metrics service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param applicationSet.metrics.service.loadBalancerIP Argo CD applicationSet controller service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param applicationSet.metrics.service.loadBalancerSourceRanges Argo CD applicationSet controller service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param applicationSet.metrics.service.externalTrafficPolicy Argo CD applicationSet controller service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param applicationSet.metrics.service.annotations Additional custom annotations for Argo CD applicationSet controller service + ## + annotations: {} + ## @param applicationSet.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param applicationSet.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## Argo CD applicationSet controller metrics service monitor configuration + ## + serviceMonitor: + ## @param applicationSet.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param applicationSet.metrics.serviceMonitor.namespace Namespace which Prometheus is running in + ## e.g: + ## namespace: monitoring + ## + namespace: "" + ## @param applicationSet.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" + ## @param applicationSet.metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: 30s + ## @param applicationSet.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: 10s + ## @param applicationSet.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + relabelings: [] + ## @param applicationSet.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + metricRelabelings: [] + ## @param applicationSet.metrics.serviceMonitor.selector ServiceMonitor selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + ## selector: + ## prometheus: my-prometheus + ## + selector: {} + ## @param applicationSet.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels + ## + honorLabels: false + ## Argo CD applicationSet controller service parameters + ## + service: + ## @param applicationSet.service.type Argo CD applicationSet controller service type + ## + type: ClusterIP + ## @param applicationSet.service.ports.webhook Argo CD applicationSet controller service port + ## + ports: + webhook: 7000 + ## Node ports to expose + ## @param applicationSet.service.nodePorts.webhook Node port for Argo CD applicationSet controller service + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + webhook: "" + ## @param applicationSet.service.clusterIP Argo CD applicationSet controller service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param applicationSet.service.loadBalancerIP Argo CD applicationSet controller service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param applicationSet.service.loadBalancerSourceRanges Argo CD applicationSet controller service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param applicationSet.service.externalTrafficPolicy Argo CD applicationSet controller service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param applicationSet.service.annotations Additional custom annotations for Argo CD applicationSet controller service + ## + annotations: {} + ## @param applicationSet.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param applicationSet.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param applicationSet.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## Network Policies + ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/ + ## + networkPolicy: + ## @param applicationSet.networkPolicy.enabled Specifies whether a NetworkPolicy should be created + ## + enabled: true + ## @param applicationSet.networkPolicy.allowExternal Don't require server label for connections + ## The Policy model to apply. When set to false, only pods with the correct + ## server label will have network access to the ports server is listening + ## on. When true, server will accept connections from any source + ## (with the correct destination port). + ## + allowExternal: true + ## @param applicationSet.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations. + ## + allowExternalEgress: true + ## @param applicationSet.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security) + ## + kubeAPIServerPorts: [443, 6443, 8443] + ## @param applicationSet.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy + ## e.g: + ## extraIngress: + ## - ports: + ## - port: 1234 + ## from: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + extraIngress: [] + ## @param applicationSet.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy (ignored if allowExternalEgress=true) + ## e.g: + ## extraEgress: + ## - ports: + ## - port: 1234 + ## to: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + ## + extraEgress: [] + ## @param applicationSet.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces + ## @param applicationSet.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces + ## + ingressNSMatchLabels: {} + ingressNSPodMatchLabels: {} + ## ServiceAccount configuration for the Argo CD applicationSet controller + ## + serviceAccount: + ## @param applicationSet.serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param applicationSet.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param applicationSet.serviceAccount.automountServiceAccountToken Automount service account token for the applicationSet controller service account + ## + automountServiceAccountToken: false + ## @param applicationSet.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. + ## + annotations: {} + ## @param applicationSet.podAffinityPreset Pod affinity preset. Ignored if `applicationSet.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param applicationSet.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `applicationSet.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node applicationSet.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param applicationSet.nodeAffinityPreset.type Node affinity preset type. Ignored if `applicationSet.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param applicationSet.nodeAffinityPreset.key Node label key to match. Ignored if `applicationSet.affinity` is set + ## + key: "" + ## @param applicationSet.nodeAffinityPreset.values Node label values to match. Ignored if `applicationSet.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param applicationSet.affinity Affinity for Argo CD applicationSet controller pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `applicationSet.podAffinityPreset`, `applicationSet.podAntiAffinityPreset`, and `applicationSet.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param applicationSet.podAnnotations Annotations for Argo CD applicationSet controller pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param applicationSet.podLabels Extra labels for Argo CD applicationSet controller pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param applicationSet.containerSecurityContext.enabled Enabled Argo CD applicationSet controller containers' Security Context + ## @param applicationSet.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param applicationSet.containerSecurityContext.runAsUser Set Argo CD applicationSet controller containers' Security Context runAsUser + ## @param applicationSet.containerSecurityContext.runAsGroup Set Argo CD applicationSet controller containers' Security Context runAsGroup + ## @param applicationSet.containerSecurityContext.allowPrivilegeEscalation Set Argo CD applicationSet controller containers' Security Context allowPrivilegeEscalation + ## @param applicationSet.containerSecurityContext.capabilities.drop Set Argo CD applicationSet controller containers' Security Context capabilities to be dropped + ## @param applicationSet.containerSecurityContext.readOnlyRootFilesystem Set Argo CD applicationSet controller containers' Security Context readOnlyRootFilesystem + ## @param applicationSet.containerSecurityContext.runAsNonRoot Set Argo CD applicationSet controller container's Security Context runAsNonRoot + ## @param applicationSet.containerSecurityContext.privileged Set applicationSet container's Security Context privileged + ## @param applicationSet.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + privileged: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## @param applicationSet.livenessProbe.enabled Enable livenessProbe on Argo CD applicationSet controller nodes + ## @param applicationSet.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param applicationSet.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param applicationSet.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param applicationSet.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param applicationSet.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param applicationSet.readinessProbe.enabled Enable readinessProbe on Argo CD applicationSet controller nodes + ## @param applicationSet.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param applicationSet.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param applicationSet.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param applicationSet.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param applicationSet.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param applicationSet.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param applicationSet.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Argo CD applicationSet controller resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param applicationSet.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if applicationSet.resources is set (applicationSet.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param applicationSet.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param applicationSet.podSecurityContext.enabled Enabled Argo CD applicationSet controller pods' Security Context + ## @param applicationSet.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param applicationSet.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param applicationSet.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param applicationSet.podSecurityContext.fsGroup Set Argo CD applicationSet controller pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## @param applicationSet.nodeSelector Node labels for Argo CD applicationSet controller pods assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param applicationSet.tolerations Tolerations for Argo CD applicationSet controller pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param applicationSet.updateStrategy.type Argo CD applicationSet controller statefulset strategy type + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + ## StrategyType + ## Can be set to RollingUpdate or OnDelete + ## + type: RollingUpdate + ## @param applicationSet.priorityClassName Argo CD applicationSet controller pods' priorityClassName + ## + priorityClassName: "" + ## @param applicationSet.extraVolumes Optionally specify extra list of additional volumes for the Argo CD applicationSet controller pod(s) + ## + extraVolumes: [] + ## @param applicationSet.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD applicationSet controller container(s) + ## + extraVolumeMounts: [] + ## @param applicationSet.extraEnvVars Array with extra environment variables to add to Argo CD applicationSet controller nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param applicationSet.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD applicationSet controller nodes + ## + extraEnvVarsCM: "" + ## @param applicationSet.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD applicationSet controller nodes + ## + extraEnvVarsSecret: "" + ## Webhook for the Git Generator + ## Ref: https://argocd-applicationset.readthedocs.io/en/master/Generators-Git/#webhook-configuration) + ## + webhook: + ingress: + ## @param applicationSet.webhook.ingress.enabled Enable an ingress resource for Webhooks + ## + enabled: false + ## DEPRECATED: Use server.ingress.annotations instead of server.ingress.certManager + ## certManager: false + ## + ## @param applicationSet.webhook.ingress.annotations Additional ingress annotations + ## + annotations: {} + ## @param applicationSet.webhook.ingress.labels Additional ingress labels + ## + labels: {} + ## @param applicationSet.webhook.ingress.ingressClassName Defines which ingress controller will implement the resource + ## + ingressClassName: "" + ## @param applicationSet.webhook.ingress.hostname Ingress hostname for the Argo CD applicationSet ingress + ## Hostname must be provided if Ingress is enabled. + ## + hostname: "" + ## @param applicationSet.webhook.ingress.path Argo CD applicationSet ingress path + ## + path: /api/webhook + ## @param applicationSet.webhook.ingress.pathType Ingress path type. One of `Exact`, `Prefix` or `ImplementationSpecific` + ## + pathType: Prefix + ## @param applicationSet.webhook.ingress.extraHosts Extra hosts array for the Argo CD applicationSet ingress + ## The list of additional hostnames to be covered with this ingress record. + ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array + ## + extraHosts: [] + ## @param applicationSet.webhook.ingress.extraPaths Extra paths for the Argo CD applicationSet ingress + ## Any additional arbitrary paths that may need to be added to the ingress under the main host. + ## For example: The ALB ingress controller requires a special rule for handling SSL redirection. + ## + extraPaths: [] + ## - path: /* + ## backend: + ## serviceName: ssl-redirect + ## servicePort: use-annotation + ## + ## @param applicationSet.webhook.ingress.extraTls Extra TLS configuration for the Argo CD applicationSet ingress + ## The tls configuration for additional hostnames to be covered with this ingress record. + ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls + ## + extraTls: [] + ## - hosts: + ## - argocd.server.local + ## secretName: argocd.server.local-tls + ## + ## @param applicationSet.webhook.ingress.tls Ingress TLS configuration + ## + tls: [] +## @section Argo CD notifications controller parameters + +## notifications controller +## +notifications: + ## @param notifications.enabled Enable notifications controller + ## + enabled: false + ## @param notifications.command Override default container command (useful when using custom images) + ## + command: [] + ## @param notifications.args Override default container args (useful when using custom images). + ## + args: [] + ## @param notifications.extraArgs Add extra arguments to the default arguments for the Argo CD notifications controller + ## + extraArgs: [] + ## @param notifications.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: true + ## Argo CD notifications controller log format: text|json + ## @param notifications.logFormat Format for the Argo CD notifications controller logs. Options: [text, json] + ## + logFormat: text + ## Argo CD notifications controller log level + ## @param notifications.logLevel Log level for the Argo CD notifications controller + ## + logLevel: info + ## Argo CD notifications controller ports + ## @param notifications.containerPorts.metrics Argo CD notifications controller metrics port number + ## + containerPorts: + metrics: 8085 + ## Metrics configuration for Argo CD notifications controller + ## + metrics: + ## @param notifications.metrics.enabled Enable Argo CD notifications controller metrics + ## + enabled: false + service: + ## @param notifications.metrics.service.type Argo CD notifications controller service type + ## + type: ClusterIP + ## @param notifications.metrics.service.ports.metrics Argo CD notifications controller metrics service port + ## + ports: + metrics: 8085 + ## Node ports to expose + ## @param notifications.metrics.service.nodePorts.metrics Node port for the notifications controller service + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + metrics: "" + ## @param notifications.metrics.service.clusterIP Argo CD notifications controller metrics service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param notifications.metrics.service.loadBalancerIP Argo CD notifications controller service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param notifications.metrics.service.loadBalancerSourceRanges Argo CD notifications controller service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param notifications.metrics.service.externalTrafficPolicy Argo CD notifications controller service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param notifications.metrics.service.annotations Additional custom annotations for Argo CD notifications controller service + ## + annotations: {} + ## @param notifications.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param notifications.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## Argo CD notifications controller metrics service monitor configuration + ## + serviceMonitor: + ## @param notifications.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param notifications.metrics.serviceMonitor.namespace Namespace which Prometheus is running in + ## e.g: + ## namespace: monitoring + ## + namespace: "" + ## @param notifications.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" + ## @param notifications.metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: 30s + ## @param notifications.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: 10s + ## @param notifications.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + relabelings: [] + ## @param notifications.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + metricRelabelings: [] + ## @param notifications.metrics.serviceMonitor.selector ServiceMonitor selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + ## selector: + ## prometheus: my-prometheus + ## + selector: {} + ## @param notifications.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels + ## + honorLabels: false + ## Network Policies + ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/ + ## + networkPolicy: + ## @param notifications.networkPolicy.enabled Specifies whether a NetworkPolicy should be created + ## + enabled: true + ## @param notifications.networkPolicy.allowExternal Don't require server label for connections + ## The Policy model to apply. When set to false, only pods with the correct + ## server label will have network access to the ports server is listening + ## on. When true, server will accept connections from any source + ## (with the correct destination port). + ## + allowExternal: true + ## @param notifications.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations. + ## + allowExternalEgress: true + ## @param notifications.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security) + ## + kubeAPIServerPorts: [443, 6443, 8443] + ## @param notifications.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy + ## e.g: + ## extraIngress: + ## - ports: + ## - port: 1234 + ## from: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + extraIngress: [] + ## @param notifications.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy (ignored if allowExternalEgress=true) + ## e.g: + ## extraEgress: + ## - ports: + ## - port: 1234 + ## to: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + ## + extraEgress: [] + ## @param notifications.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces + ## @param notifications.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces + ## + ingressNSMatchLabels: {} + ingressNSPodMatchLabels: {} + ## ServiceAccount configuration for the Argo CD notifications controller + ## + serviceAccount: + ## @param notifications.serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param notifications.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param notifications.serviceAccount.automountServiceAccountToken Automount service account token for the notifications controller service account + ## + automountServiceAccountToken: false + ## @param notifications.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. + ## + annotations: {} + ## @param notifications.podAffinityPreset Pod affinity preset. Ignored if `notifications.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param notifications.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `notifications.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node notifications.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param notifications.nodeAffinityPreset.type Node affinity preset type. Ignored if `notifications.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param notifications.nodeAffinityPreset.key Node label key to match. Ignored if `notifications.affinity` is set + ## + key: "" + ## @param notifications.nodeAffinityPreset.values Node label values to match. Ignored if `notifications.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param notifications.affinity Affinity for Argo CD notifications controller pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `notifications.podAffinityPreset`, `notifications.podAntiAffinityPreset`, and `notifications.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param notifications.podAnnotations Annotations for Argo CD notifications controller pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param notifications.podLabels Extra labels for Argo CD notifications controller pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param notifications.containerSecurityContext.enabled Enabled Argo CD notifications controller containers' Security Context + ## @param notifications.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param notifications.containerSecurityContext.runAsUser Set Argo CD notifications controller containers' Security Context runAsUser + ## @param notifications.containerSecurityContext.runAsGroup Set Argo CD notifications controller containers' Security Context runAsGroup + ## @param notifications.containerSecurityContext.allowPrivilegeEscalation Set Argo CD notifications controller containers' Security Context allowPrivilegeEscalation + ## @param notifications.containerSecurityContext.capabilities.drop Set Argo CD notifications controller containers' Security Context capabilities to be dropped + ## @param notifications.containerSecurityContext.readOnlyRootFilesystem Set Argo CD notifications controller containers' Security Context readOnlyRootFilesystem + ## @param notifications.containerSecurityContext.runAsNonRoot Set Argo CD notifications controller container's Security Context runAsNonRoot + ## @param notifications.containerSecurityContext.privileged Set notifications container's Security Context privileged + ## @param notifications.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + privileged: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## Argo CD notifications controller resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param notifications.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if notifications.resources is set (notifications.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param notifications.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param notifications.podSecurityContext.enabled Enabled Argo CD notifications controller pods' Security Context + ## @param notifications.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param notifications.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param notifications.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param notifications.podSecurityContext.fsGroup Set Argo CD notifications controller pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## @param notifications.nodeSelector Node labels for Argo CD notifications controller pods assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param notifications.tolerations Tolerations for Argo CD notifications controller pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param notifications.priorityClassName Argo CD notifications controller pods' priorityClassName + ## + priorityClassName: "" + ## @param notifications.extraVolumes Optionally specify extra list of additional volumes for the Argo CD notifications controller pod(s) + ## + extraVolumes: [] + ## @param notifications.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD notifications controller container(s) + ## + extraVolumeMounts: [] + ## @param notifications.extraEnvVars Array with extra environment variables to add to Argo CD notifications controller nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param notifications.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD notifications controller nodes + ## + extraEnvVarsCM: "" + ## @param notifications.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD notifications controller nodes + ## + extraEnvVarsSecret: "" + ## Configure extra options for Notification containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param notifications.startupProbe.enabled Enable startupProbe on Notification nodes + ## @param notifications.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param notifications.startupProbe.periodSeconds Period seconds for startupProbe + ## @param notifications.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param notifications.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param notifications.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param notifications.livenessProbe.enabled Enable livenessProbe on Notification nodes + ## @param notifications.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param notifications.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param notifications.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param notifications.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param notifications.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param notifications.readinessProbe.enabled Enable readinessProbe on Notification nodes + ## @param notifications.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param notifications.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param notifications.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param notifications.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param notifications.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param notifications.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param notifications.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param notifications.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Webhook for the Git Generator + ## Ref: https://argocd-notifications.readthedocs.io/en/master/Generators-Git/#webhook-configuration) + ## + webhook: + ingress: + ## @param notifications.webhook.ingress.enabled Enable an ingress resource for Webhooks + ## + enabled: false + ## DEPRECATED: Use server.ingress.annotations instead of server.ingress.certManager + ## certManager: false + ## + ## @param notifications.webhook.ingress.annotations Additional ingress annotations + ## + annotations: {} + ## @param notifications.webhook.ingress.labels Additional ingress labels + ## + labels: {} + ## @param notifications.webhook.ingress.ingressClassName Defines which ingress controller will implement the resource + ## + ingressClassName: "" + ## @param notifications.webhook.ingress.hostname Ingress hostname for the Argo CD notifications ingress + ## Hostname must be provided if Ingress is enabled. + ## + hostname: "" + ## @param notifications.webhook.ingress.path Argo CD notifications ingress path + ## + path: /api/webhook + ## @param notifications.webhook.ingress.pathType Ingress path type. One of `Exact`, `Prefix` or `ImplementationSpecific` + ## + pathType: Prefix + ## @param notifications.webhook.ingress.extraHosts Extra hosts array for the Argo CD notifications ingress + ## The list of additional hostnames to be covered with this ingress record. + ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array + ## + extraHosts: [] + ## @param notifications.webhook.ingress.extraPaths Extra paths for the Argo CD notifications ingress + ## Any additional arbitrary paths that may need to be added to the ingress under the main host. + ## For example: The ALB ingress controller requires a special rule for handling SSL redirection. + ## + extraPaths: [] + ## - path: /* + ## backend: + ## serviceName: ssl-redirect + ## servicePort: use-annotation + ## + ## @param notifications.webhook.ingress.extraTls Extra TLS configuration for the Argo CD notifications ingress + ## The tls configuration for additional hostnames to be covered with this ingress record. + ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls + ## + extraTls: [] + ## - hosts: + ## - argocd.server.local + ## secretName: argocd.server.local-tls + ## + ## @param notifications.webhook.ingress.tls Ingress TLS configuration + ## + tls: [] + ## The optional bot component simplifies managing subscriptions + ## For more information: https://argocd-notifications.readthedocs.io/en/stable/bots/overview/ + bots: + slack: + ## @param notifications.bots.slack.enabled Enable notifications controller + ## + enabled: false + ## @param notifications.bots.slack.command Override default container command (useful when using custom images) + ## + command: [] + ## @param notifications.bots.slack.args Override default container args (useful when using custom images). + ## + args: [] + ## @param notifications.bots.slack.extraArgs Add extra arguments to the default arguments for the Argo CD Slack bot + ## + extraArgs: [] + ## Argo CD Slack bot service parameters + ## + service: + ## @param notifications.bots.slack.service.type Argo CD Slack bot service type + ## + type: LoadBalancer + ## @param notifications.bots.slack.service.ports.http Argo CD Slack bot service port + ## + ports: + http: 80 + ## Node ports to expose + ## @param notifications.bots.slack.service.nodePorts.http Node port for Argo CD Slack bot service + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + http: "" + ## @param notifications.bots.slack.service.clusterIP Argo CD Slack bot service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param notifications.bots.slack.service.loadBalancerIP Argo CD Slack bot service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param notifications.bots.slack.service.loadBalancerSourceRanges Argo CD Slack bot service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param notifications.bots.slack.service.externalTrafficPolicy Argo CD Slack bot service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param notifications.bots.slack.service.annotations Additional custom annotations for Argo CD Slack bot service + ## + annotations: {} + ## @param notifications.bots.slack.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param notifications.bots.slack.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param notifications.bots.slack.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## Network Policies + ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/ + ## + networkPolicy: + ## @param notifications.bots.slack.networkPolicy.enabled Specifies whether a NetworkPolicy should be created + ## + enabled: true + ## @param notifications.bots.slack.networkPolicy.allowExternal Don't require server label for connections + ## The Policy model to apply. When set to false, only pods with the correct + ## server label will have network access to the ports server is listening + ## on. When true, server will accept connections from any source + ## (with the correct destination port). + ## + allowExternal: true + ## @param notifications.bots.slack.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations. + ## + allowExternalEgress: true + ## @param notifications.bots.slack.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security) + ## + kubeAPIServerPorts: [443, 6443, 8443] + ## @param notifications.bots.slack.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy + ## e.g: + ## extraIngress: + ## - ports: + ## - port: 1234 + ## from: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + extraIngress: [] + ## @param notifications.bots.slack.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy (ignored if allowExternalEgress=true) + ## e.g: + ## extraEgress: + ## - ports: + ## - port: 1234 + ## to: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + ## + extraEgress: [] + ## @param notifications.bots.slack.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces + ## @param notifications.bots.slack.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces + ## + ingressNSMatchLabels: {} + ingressNSPodMatchLabels: {} + ## ServiceAccount configuration for the Argo CD Slack bot + ## + serviceAccount: + ## @param notifications.bots.slack.serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param notifications.bots.slack.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param notifications.bots.slack.serviceAccount.automountServiceAccountToken Automount service account token for the notifications controller service account + ## + automountServiceAccountToken: false + ## @param notifications.bots.slack.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. + ## + annotations: {} + ## @param notifications.bots.slack.podAffinityPreset Pod affinity preset. Ignored if `notifications.bots.slack.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param notifications.bots.slack.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `notifications.bots.slack.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node notifications.bots.slack.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param notifications.bots.slack.nodeAffinityPreset.type Node affinity preset type. Ignored if `notifications.bots.slack.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param notifications.bots.slack.nodeAffinityPreset.key Node label key to match. Ignored if `notifications.bots.slack.affinity` is set + ## + key: "" + ## @param notifications.bots.slack.nodeAffinityPreset.values Node label values to match. Ignored if `notifications.bots.slack.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## Argo CD Slack Bot controller ports + ## @param notifications.bots.slack.containerPorts.metrics Slack Bot controller metrics port number + ## + containerPorts: + metrics: 9001 + ## Configure extra options for Slack Bot containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param notifications.bots.slack.startupProbe.enabled Enable startupProbe on Slack Bot nodes + ## @param notifications.bots.slack.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param notifications.bots.slack.startupProbe.periodSeconds Period seconds for startupProbe + ## @param notifications.bots.slack.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param notifications.bots.slack.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param notifications.bots.slack.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param notifications.bots.slack.livenessProbe.enabled Enable livenessProbe on Slack Bot nodes + ## @param notifications.bots.slack.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param notifications.bots.slack.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param notifications.bots.slack.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param notifications.bots.slack.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param notifications.bots.slack.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param notifications.bots.slack.readinessProbe.enabled Enable readinessProbe on Slack Bot nodes + ## @param notifications.bots.slack.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param notifications.bots.slack.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param notifications.bots.slack.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param notifications.bots.slack.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param notifications.bots.slack.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param notifications.bots.slack.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param notifications.bots.slack.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param notifications.bots.slack.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param notifications.bots.slack.affinity Affinity for Argo CD Slack bot pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `notifications.bots.slack.podAffinityPreset`, `notifications.bots.slack.podAntiAffinityPreset`, and `notifications.bots.slack.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param notifications.bots.slack.podAnnotations Annotations for Argo CD Slack bot pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param notifications.bots.slack.podLabels Extra labels for Argo CD Slack bot pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param notifications.bots.slack.containerSecurityContext.enabled Enabled Argo CD Slack bot containers' Security Context + ## @param notifications.bots.slack.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param notifications.bots.slack.containerSecurityContext.runAsUser Set Argo CD Slack bot containers' Security Context runAsUser + ## @param notifications.bots.slack.containerSecurityContext.runAsGroup Set Argo CD Slack bot containers' Security Context runAsGroup + ## @param notifications.bots.slack.containerSecurityContext.allowPrivilegeEscalation Set Argo CD Slack bot containers' Security Context allowPrivilegeEscalation + ## @param notifications.bots.slack.containerSecurityContext.capabilities.drop Set Argo CD Slack bot containers' Security Context capabilities to be dropped + ## @param notifications.bots.slack.containerSecurityContext.readOnlyRootFilesystem Set Argo CD Slack bot containers' Security Context readOnlyRootFilesystem + ## @param notifications.bots.slack.containerSecurityContext.runAsNonRoot Set Argo CD Slack bot container's Security Context runAsNonRoot + ## @param notifications.bots.slack.containerSecurityContext.privileged Set notifications container's Security Context privileged + ## @param notifications.bots.slack.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + privileged: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## Argo CD Slack bot resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param notifications.bots.slack.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if notifications.bots.slack.resources is set (notifications.bots.slack.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param notifications.bots.slack.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param notifications.bots.slack.podSecurityContext.enabled Enabled Argo CD Slack bot pods' Security Context + ## @param notifications.bots.slack.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param notifications.bots.slack.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param notifications.bots.slack.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param notifications.bots.slack.podSecurityContext.fsGroup Set Argo CD Slack bot pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## @param notifications.bots.slack.nodeSelector Node labels for Argo CD Slack bot pods assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param notifications.bots.slack.tolerations Tolerations for Argo CD Slack bot pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param notifications.bots.slack.priorityClassName Argo CD Slack bot pods' priorityClassName + ## + priorityClassName: "" + ## @param notifications.bots.slack.extraVolumes Optionally specify extra list of additional volumes for the Argo CD Slack bot pod(s) + ## + extraVolumes: [] + ## @param notifications.bots.slack.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD Slack bot container(s) + ## + extraVolumeMounts: [] + ## @param notifications.bots.slack.extraEnvVars Array with extra environment variables to add to Argo CD Slack bot nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param notifications.bots.slack.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD Slack bot nodes + ## + extraEnvVarsCM: "" + ## @param notifications.bots.slack.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD Slack bot nodes + ## + extraEnvVarsSecret: "" +## @section Argo CD server Parameters + +## Argo CD server configuration +## +server: + ## @param server.replicaCount Number of Argo CD server replicas to deploy + ## + replicaCount: 1 + ## Configure extra options for Argo CD server containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param server.startupProbe.enabled Enable startupProbe on Argo CD server nodes + ## @param server.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param server.startupProbe.periodSeconds Period seconds for startupProbe + ## @param server.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param server.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param server.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param server.livenessProbe.enabled Enable livenessProbe on Argo CD server nodes + ## @param server.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param server.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param server.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param server.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param server.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param server.readinessProbe.enabled Enable readinessProbe on Argo CD server nodes + ## @param server.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param server.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param server.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param server.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param server.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param server.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param server.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param server.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Argo CD server resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param server.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if server.resources is set (server.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param server.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param server.podSecurityContext.enabled Enabled Argo CD server pods' Security Context + ## @param server.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param server.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param server.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param server.podSecurityContext.fsGroup Set Argo CD server pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param server.containerSecurityContext.enabled Enabled Argo CD server containers' Security Context + ## @param server.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param server.containerSecurityContext.runAsUser Set Argo CD server containers' Security Context runAsUser + ## @param server.containerSecurityContext.runAsGroup Set Argo CD server containers' Security Context runAsGroup + ## @param server.containerSecurityContext.allowPrivilegeEscalation Set Argo CD server containers' Security Context allowPrivilegeEscalation + ## @param server.containerSecurityContext.capabilities.drop Set Argo CD containers' server Security Context capabilities to be dropped + ## @param server.containerSecurityContext.readOnlyRootFilesystem Set Argo CD containers' server Security Context readOnlyRootFilesystem + ## @param server.containerSecurityContext.runAsNonRoot Set Argo CD server containers' Security Context runAsNonRoot + ## @param server.containerSecurityContext.privileged Set server container's Security Context privileged + ## @param server.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + privileged: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## Argo CD server deployment autoscaling + ## @param server.autoscaling.enabled Enable Argo CD server deployment autoscaling + ## @param server.autoscaling.minReplicas Argo CD server deployment autoscaling minimum number of replicas + ## @param server.autoscaling.maxReplicas Argo CD server deployment autoscaling maximum number of replicas + ## @param server.autoscaling.targetCPU Argo CD server deployment autoscaling target CPU percentage + ## @param server.autoscaling.targetMemory Argo CD server deployment autoscaling target CPU memory + ## + autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 5 + targetCPU: 50 + targetMemory: 50 + ## Redirect all request to https + ## @param server.insecure Disable HTTPS redirection for Argo CD server + ## + insecure: false + ## @param server.logFormat ArgoCD server logs format. Options: [text, json] + ## + logFormat: text + ## @param server.logLevel ArgoCD server logs level + ## + logLevel: info + ## Argo CD server enable config + ## @param server.configEnabled Enable Argo CD server config + ## Ref: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/argocd-cm.yaml + ## + configEnabled: true + ## Argo CD server URL + ## @param server.url Argo CD server base URL. Required when configuring SSO. Required when enabling dex. + ## + url: "" + ## Argo CD server config. This object will be directly rendered + ## @param server.config [object] Argo CD server configuration that will end on the argocd-cm Config Map + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/user-management/ + ## E.g: + ## repositories: + ## - url: git@github.com:group/repo.git + ## sshPrivateKeySecret: + ## name: secret-name + ## key: sshPrivateKey + ## - type: helm + ## url: https://charts.helm.sh/stable + ## name: stable + ## - type: helm + ## url: https://argoproj.github.io/argo-helm + ## name: argo + ## oidc.config: + ## name: AzureAD + ## issuer: https://login.microsoftonline.com/TENANT_ID/v2.0 + ## clientID: CLIENT_ID + ## clientSecret: $oidc.azuread.clientSecret + ## requestedIDTokenClaims: + ## groups: + ## essential: true + ## requestedScopes: + ## - openid + ## - profile + ## - email + ## dex.config: + ## connectors: + ## # GitHub example + ## - type: github + ## id: github + ## name: GitHub + ## config: + ## clientID: aabbccddeeff00112233 + ## clientSecret: $dex.github.clientSecret + ## orgs: + ## - name: your-github-org + config: + ## Argo CD external base URL. Required when configuring SSO. Required when enabling dex. + ## E.g: + ## url: https://argocd.example.com + ## + url: "{{ .Values.server.url }}" + ## Argo CD instance label key + ## + application.instanceLabelKey: argocd.argoproj.io/instance + ## If Dex is enabled you need to add connectors here + ## dex.config: | + ## connectors: [] + ## + dex.config: "" + ## Configure the ingress for the Argo CD server + ## Ref: https://kubernetes.io/docs/concepts/services-networking/ingress/ + ## @param server.ingress.enabled Enable the creation of an ingress for the Argo CD server + ## @param server.ingress.pathType Path type for the Argo CD server ingress + ## @param server.ingress.apiVersion Ingress API version for the Argo CD server ingress + ## @param server.ingress.hostname Ingress hostname for the Argo CD server ingress + ## @param server.ingress.annotations Annotations for the Argo CD server ingress. To enable certificate autogeneration, place here your cert-manager annotations. + ## @param server.ingress.tls Enable TLS for the Argo CD server ingress + ## @param server.ingress.extraHosts Extra hosts array for the Argo CD server ingress + ## @param server.ingress.path Path array for the Argo CD server ingress + ## @param server.ingress.extraPaths Extra paths for the Argo CD server ingress + ## @param server.ingress.extraTls Extra TLS configuration for the Argo CD server ingress + ## @param server.ingress.secrets Secrets array to mount into the Ingress + ## @param server.ingress.ingressClassName IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+) + ## + ingress: + ## Set to true to enable ingress record generation + ## + enabled: false + ## @param server.ingress.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm + ## + selfSigned: false + ## DEPRECATED: Use server.ingress.annotations instead of server.ingress.certManager + ## certManager: false + ## + + ## Ingress Path type + ## + pathType: ImplementationSpecific + ## Override API Version (automatically detected if not set) + ## + apiVersion: "" + ## When the ingress is enabled, a host pointing to this will be created + ## + hostname: argocd.server.local + ## The Path to Argo CD server. You may need to set this to '/*' in order to use this + ## with ALB ingress controllers. + ## + path: / + ## For a full list of possible ingress annotations, please see + ## ref: https://github.com/kubernetes/ingress-nginx/blob/main/docs/user-guide/nginx-configuration/annotations.md + ## Use this parameter to set the required annotations for cert-manager, see + ## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations + ## + ## e.g: + ## annotations: + ## kubernetes.io/ingress.class: nginx + ## cert-manager.io/cluster-issuer: cluster-issuer-name + ## + annotations: {} + ## Enable TLS configuration for the hostname defined at ingress.hostname parameter + ## TLS certificates will be retrieved from a TLS secret with name: {{- printf "%s-tls" .Values.ingress.hostname }} + ## You can use the ingress.secrets parameter to create this TLS secret or rely on cert-manager to create it + ## + tls: false + ## The list of additional hostnames to be covered with this ingress record. + ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array + extraHosts: [] + ## - name: argocd.server.local + ## path: / + ## + + ## Any additional arbitrary paths that may need to be added to the ingress under the main host. + ## For example: The ALB ingress controller requires a special rule for handling SSL redirection. + extraPaths: [] + ## - path: /* + ## backend: + ## serviceName: ssl-redirect + ## servicePort: use-annotation + ## + + ## The tls configuration for additional hostnames to be covered with this ingress record. + ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls + extraTls: [] + ## - hosts: + ## - argocd.server.local + ## secretName: argocd.server.local-tls + ## + + ## If you're providing your own certificates, please use this to add the certificates as secrets + ## key and certificate should start with -----BEGIN CERTIFICATE----- or + ## -----BEGIN RSA PRIVATE KEY----- + ## + ## name should line up with a tlsSecret set further up + ## If you're using cert-manager, this is unneeded, as it will create the secret for you if it is not set + ## + ## It is also possible to create and manage the certificates outside of this helm chart + ## Please see README.md for more information + ## + secrets: [] + ## - name: argocd.server.local-tls + ## key: + ## certificate: + ## + + ## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster . + ## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/ + ## + ingressClassName: "" + ## @param server.ingress.extraRules Additional rules to be covered with this ingress record + ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-rules + ## e.g: + ## extraRules: + ## - host: example.local + ## http: + ## path: / + ## backend: + ## service: + ## name: example-svc + ## port: + ## name: http + ## + extraRules: [] + ## Metrics configuration for Argo CD server + ## + metrics: + ## Enable metrics for Argo CD server + ## @param server.metrics.enabled Enable metrics for the Argo CD server + ## + enabled: false + service: + ## @param server.metrics.service.type Argo CD server service type + ## + type: ClusterIP + ## @param server.metrics.service.ports.metrics Argo CD server metrics service port + ## + ports: + metrics: 8083 + ## Node ports to expose + ## @param server.metrics.service.nodePorts.metrics Node port for Argo CD server metrics service + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + metrics: "" + ## @param server.metrics.service.clusterIP Argo CD server metrics service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param server.metrics.service.loadBalancerIP Argo CD server service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param server.metrics.service.loadBalancerSourceRanges Argo CD server service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param server.metrics.service.externalTrafficPolicy Argo CD server service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param server.metrics.service.annotations Additional custom annotations for Argo CD server service + ## + annotations: {} + ## @param server.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param server.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + ## Argo CD server metrics service monitor configuration + ## + serviceMonitor: + ## @param server.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param server.metrics.serviceMonitor.namespace Namespace which Prometheus is running in + ## e.g: + ## namespace: monitoring + ## + namespace: "" + ## @param server.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" + ## @param server.metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: 30s + ## @param server.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: 10s + ## @param server.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + relabelings: [] + ## @param server.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + metricRelabelings: [] + ## @param server.metrics.serviceMonitor.selector ServiceMonitor selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + ## selector: + ## prometheus: my-prometheus + ## + selector: {} + ## @param server.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels + ## + honorLabels: false + ## Configure the ingress resource that allows you to access the Argo CD gRPC API + ## Ref: https://kubernetes.io/docs/concepts/services-networking/ingress/ + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/ + ## @param server.ingressGrpc.enabled Enable the creation of an ingress for the Argo CD gRPC server + ## @param server.ingressGrpc.pathType Path type for the Argo CD gRPC server ingress + ## @param server.ingressGrpc.apiVersion Ingress API version for the Argo CD gRPC server ingress + ## @param server.ingressGrpc.hostname Ingress hostname for the Argo CD gRPC server ingress + ## @param server.ingressGrpc.annotations Annotations for the Argo CD gRPC server ingress. To enable certificate autogeneration, place here your cert-manager annotations + ## @param server.ingressGrpc.tls Enable TLS for the Argo CD server ingress + ## @param server.ingressGrpc.extraHosts Extra hosts array for the Argo CD gRPC server ingress + ## @param server.ingressGrpc.path Path array for the Argo CD gRPC server ingress + ## @param server.ingressGrpc.extraPaths Extra paths for the Argo CD gRPC server ingress + ## @param server.ingressGrpc.extraTls Extra TLS configuration for the Argo CD gRPC server ingress + ## @param server.ingressGrpc.secrets Secrets array to mount into the Ingress + ## @param server.ingressGrpc.ingressClassName IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+) + ## + ingressGrpc: + ## Set to true to enable ingress record generation + ## + enabled: false + ## @param server.ingressGrpc.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm + ## + selfSigned: false + ## DEPRECATED: Use server.ingressGrpc.annotations instead of server.ingressGrpc.certManager + ## certManager: false + ## + + ## Ingress Path type + ## + pathType: ImplementationSpecific + ## Override API Version (automatically detected if not set) + ## + apiVersion: "" + ## When the ingress is enabled, a host pointing to this will be created + ## + hostname: argocd.server.local + ## The Path to Argo CD server gRPC API. You may need to set this to '/*' in order to use this + ## with ALB ingress controllers. + ## + path: / + ## For a full list of possible ingress annotations, please see + ## ref: https://github.com/kubernetes/ingress-nginx/blob/main/docs/user-guide/nginx-configuration/annotations.md + ## Use this parameter to set the required annotations for cert-manager, see + ## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations + ## + ## e.g: + ## annotations: + ## kubernetes.io/ingress.class: nginx + ## cert-manager.io/cluster-issuer: cluster-issuer-name + ## + annotations: {} + ## Enable TLS configuration for the hostname defined at ingress.hostname parameter + ## TLS certificates will be retrieved from a TLS secret with name: {{- printf "%s-tls" .Values.ingress.hostname }} + ## You can use the ingress.secrets parameter to create this TLS secret or relay on cert-manager to create it + ## + tls: false + ## The list of additional hostnames to be covered with this ingress record. + ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array + extraHosts: [] + ## - name: argocd.server.local + ## path: / + ## + + ## Any additional arbitrary paths that may need to be added to the ingress under the main host. + ## For example: The ALB ingress controller requires a special rule for handling SSL redirection. + extraPaths: [] + ## - path: /* + ## backend: + ## serviceName: ssl-redirect + ## servicePort: use-annotation + ## + + ## The tls configuration for additional hostnames to be covered with this ingress record. + ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls + extraTls: [] + ## - hosts: + ## - argocd.server.local + ## secretName: argocd.server.local-tls + ## + + ## If you're providing your own certificates, please use this to add the certificates as secrets + ## key and certificate should start with -----BEGIN CERTIFICATE----- or + ## -----BEGIN RSA PRIVATE KEY----- + ## + ## name should line up with a tlsSecret set further up + ## If you're using cert-manager, this is unneeded, as it will create the secret for you if it is not set + ## + ## It is also possible to create and manage the certificates outside of this helm chart + ## Please see README.md for more information + ## + secrets: [] + ## - name: argocd.server.local-tls + ## key: + ## certificate: + ## + + ## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster . + ## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/ + ## + ingressClassName: "" + ## @param server.ingressGrpc.extraRules Additional rules to be covered with this ingress record + ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-rules + ## e.g: + ## extraRules: + ## - host: example.server.local + ## http: + ## path: / + ## backend: + ## service: + ## name: example-svc + ## port: + ## name: http + ## + extraRules: [] + ## Argo CD server container port + ## @param server.containerPorts.http Argo CD server HTTP container port + ## @param server.containerPorts.https Argo CD server HTTPS container port + ## @param server.containerPorts.metrics Argo CD server metrics container port + containerPorts: + http: 8080 + https: 8443 + metrics: 8083 + ## Argo CD server service parameters + ## + service: + ## @param server.service.type Argo CD service type + ## + type: ClusterIP + ## @param server.service.ports.http HTTP port for the gRPC ingress when enabled + ## @param server.service.ports.https HTTPS port for the gRPC ingress when enabled + ## + ports: + http: 80 + https: 443 + ## Node ports to expose + ## @param server.service.nodePorts.http Node port for HTTP + ## @param server.service.nodePorts.https Node port for HTTPS + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + http: "" + https: "" + ## @param server.service.clusterIP Argo CD service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param server.service.loadBalancerIP Argo CD service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param server.service.loadBalancerSourceRanges Argo CD service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param server.service.externalTrafficPolicy Argo CD service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param server.service.annotations Additional custom annotations for Argo CD service + ## + annotations: {} + ## @param server.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param server.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param server.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + ## Network Policies + ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/ + ## + networkPolicy: + ## @param server.networkPolicy.enabled Specifies whether a NetworkPolicy should be created + ## + enabled: true + ## @param server.networkPolicy.allowExternal Don't require server label for connections + ## The Policy model to apply. When set to false, only pods with the correct + ## server label will have network access to the ports server is listening + ## on. When true, server will accept connections from any source + ## (with the correct destination port). + ## + allowExternal: true + ## @param server.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations. + ## + allowExternalEgress: true + ## @param server.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security) + ## + kubeAPIServerPorts: [443, 6443, 8443] + ## @param server.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy + ## e.g: + ## extraIngress: + ## - ports: + ## - port: 1234 + ## from: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + extraIngress: [] + ## @param server.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy (ignored if allowExternalEgress=true) + ## e.g: + ## extraEgress: + ## - ports: + ## - port: 1234 + ## to: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + ## + extraEgress: [] + ## @param server.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces + ## @param server.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces + ## + ingressNSMatchLabels: {} + ingressNSPodMatchLabels: {} + ## @param server.command Override default container command (useful when using custom images) + ## + command: [] + ## @param server.args Override default container args (useful when using custom images) + ## + args: [] + ## @param server.extraArgs concat to the default args + ## + extraArgs: [] + ## @param server.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: true + ## @param server.hostAliases Argo CD server pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param server.podLabels Extra labels for Argo CD server pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param server.podAnnotations Annotations for Argo CD server pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param server.podAffinityPreset Pod affinity preset. Ignored if `server.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param server.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `server.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node server.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param server.nodeAffinityPreset.type Node affinity preset type. Ignored if `server.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param server.nodeAffinityPreset.key Node label key to match. Ignored if `server.affinity` is set + ## + key: "" + ## @param server.nodeAffinityPreset.values Node label values to match. Ignored if `server.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param server.affinity Affinity for Argo CD server pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `server.podAffinityPreset`, `server.podAntiAffinityPreset`, and `server.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param server.nodeSelector Node labels for Argo CD server pods assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param server.tolerations Tolerations for Argo CD server pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param server.schedulerName Name of the k8s scheduler (other than default) + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param server.shareProcessNamespace Enable shared process namespace in a pod. + ## If set to false (default), each container will run in separate namespace, server will have PID=1. + ## If set to true, the /pause will run as init process and will reap any zombie PIDs, + ## for example, generated by a custom exec probe running longer than a probe timeoutSeconds. + ## Enable this only if customLivenessProbe or customReadinessProbe is used and zombie PIDs are accumulating. + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/ + ## + shareProcessNamespace: false + ## @param server.topologySpreadConstraints Topology Spread Constraints for pod assignment + ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## The value is evaluated as a template + ## + topologySpreadConstraints: [] + ## @param server.updateStrategy.type Argo CD server statefulset strategy type + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + ## StrategyType + ## Can be set to RollingUpdate or OnDelete + ## + type: RollingUpdate + ## @param server.priorityClassName Argo CD server pods' priorityClassName + ## + priorityClassName: "" + ## @param server.runtimeClassName Name of the runtime class to be used by pod(s) + ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/ + ## + runtimeClassName: "" + ## @param server.lifecycleHooks for the Argo CD server container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param server.extraEnvVars Array with extra environment variables to add to Argo CD server nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param server.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD server nodes + ## + extraEnvVarsCM: "" + ## @param server.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD server nodes + ## + extraEnvVarsSecret: "" + ## @param server.extraVolumes Optionally specify extra list of additional volumes for the Argo CD server pod(s) + ## + extraVolumes: [] + ## @param server.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD server container(s) + ## + extraVolumeMounts: [] + ## @param server.sidecars Add additional sidecar containers to the Argo CD server pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param server.initContainers Add additional init containers to the Argo CD server pod(s) + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## command: ['sh', '-c', 'echo "hello world"'] + ## + initContainers: [] + ## ServiceAccount configuration for the Argo CD server + ## + serviceAccount: + ## @param server.serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param server.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param server.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## + automountServiceAccountToken: false + ## @param server.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. + ## + annotations: {} +## @section Argo CD repo server Parameters + +## Argo CD repository server configuration +## +repoServer: + ## @param repoServer.replicaCount Number of Argo CD repo server replicas to deploy + ## + replicaCount: 1 + ## Configure extra options for Argo CD repo server containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param repoServer.startupProbe.enabled Enable startupProbe on Argo CD repo server nodes + ## @param repoServer.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param repoServer.startupProbe.periodSeconds Period seconds for startupProbe + ## @param repoServer.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param repoServer.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param repoServer.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param repoServer.livenessProbe.enabled Enable livenessProbe on Argo CD repo server nodes + ## @param repoServer.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param repoServer.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param repoServer.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param repoServer.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param repoServer.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param repoServer.readinessProbe.enabled Enable readinessProbe on Argo CD repo server nodes + ## @param repoServer.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param repoServer.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param repoServer.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param repoServer.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param repoServer.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param repoServer.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param repoServer.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param repoServer.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Argo CD repo server resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param repoServer.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if repoServer.resources is set (repoServer.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param repoServer.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param repoServer.podSecurityContext.enabled Enabled Argo CD repo server pods' Security Context + ## @param repoServer.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param repoServer.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param repoServer.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param repoServer.podSecurityContext.fsGroup Set Argo CD repo server pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param repoServer.containerSecurityContext.enabled Enabled Argo CD repo server containers' Security Context + ## @param repoServer.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param repoServer.containerSecurityContext.runAsUser Set Argo CD repo server containers' Security Context runAsUser + ## @param repoServer.containerSecurityContext.runAsGroup Set Argo CD repo server containers' Security Context runAsGroup + ## @param repoServer.containerSecurityContext.allowPrivilegeEscalation Set Argo CD repo server containers' Security Context allowPrivilegeEscalation + ## @param repoServer.containerSecurityContext.capabilities.drop Set Argo CD containers' repo server Security Context capabilities to be dropped + ## @param repoServer.containerSecurityContext.readOnlyRootFilesystem Set Argo CD containers' repo server Security Context readOnlyRootFilesystem + ## @param repoServer.containerSecurityContext.runAsNonRoot Set Argo CD repo server containers' Security Context runAsNonRoot + ## @param repoServer.containerSecurityContext.privileged Set repoServer container's Security Context privileged + ## @param repoServer.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + privileged: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## Repo server service parameters + ## + service: + ## @param repoServer.service.type Repo server service type + ## + type: ClusterIP + ## @param repoServer.service.ports.repoServer Repo server service port + ## + ports: + repoServer: 8081 + ## Node ports to expose + ## @param repoServer.service.nodePorts.repoServer Node port for the repo server service + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + repoServer: "" + ## @param repoServer.service.clusterIP Repo server service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param repoServer.service.loadBalancerIP Repo server service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param repoServer.service.loadBalancerSourceRanges Repo server service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param repoServer.service.externalTrafficPolicy Repo server service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param repoServer.service.annotations Additional custom annotations for Repo server service + ## + annotations: {} + ## @param repoServer.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param repoServer.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param repoServer.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + ## Network Policies + ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/ + ## + networkPolicy: + ## @param repoServer.networkPolicy.enabled Specifies whether a NetworkPolicy should be created + ## + enabled: true + ## @param repoServer.networkPolicy.allowExternal Don't require server label for connections + ## The Policy model to apply. When set to false, only pods with the correct + ## server label will have network access to the ports server is listening + ## on. When true, server will accept connections from any source + ## (with the correct destination port). + ## + allowExternal: true + ## @param repoServer.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations. + ## + allowExternalEgress: true + ## @param repoServer.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security) + ## + kubeAPIServerPorts: [443, 6443, 8443] + ## @param repoServer.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy + ## e.g: + ## extraIngress: + ## - ports: + ## - port: 1234 + ## from: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + extraIngress: [] + ## @param repoServer.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy (ignored if allowExternalEgress=true) + ## e.g: + ## extraEgress: + ## - ports: + ## - port: 1234 + ## to: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + ## + extraEgress: [] + ## @param repoServer.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces + ## @param repoServer.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces + ## + ingressNSMatchLabels: {} + ingressNSPodMatchLabels: {} + ## Argo CD repo server log format: text|json + ## @param repoServer.logFormat Format for the Argo CD repo server logs. Options: [text, json] + ## + logFormat: text + ## Argo CD application controller log level + ## @param repoServer.logLevel Log level for the Argo CD repo server + ## + logLevel: info + ## Argo CD repo server container port + ## @param repoServer.containerPorts.repoServer Container port for Argo CD repo server + ## @param repoServer.containerPorts.metrics Metrics port for Argo CD repo server + ## + containerPorts: + repoServer: 8081 + metrics: 8084 + ## Metrics configuration for Argo CD repo server + ## + metrics: + ## Enable metrics for Argo CD repo server + ## @param repoServer.metrics.enabled Enable metrics for the Argo CD repo server + ## + enabled: false + service: + ## @param repoServer.metrics.service.type Argo CD repo server service type + ## + type: ClusterIP + ## @param repoServer.metrics.service.ports.metrics Argo CD repo server metrics service port + ## + ports: + metrics: 8084 + ## Node ports to expose + ## @param repoServer.metrics.service.nodePorts.metrics Node port for the repo server metrics service + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + metrics: "" + ## @param repoServer.metrics.service.clusterIP Argo CD repo server metrics service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param repoServer.metrics.service.loadBalancerIP Argo CD repo server service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param repoServer.metrics.service.loadBalancerSourceRanges Argo CD repo server service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param repoServer.metrics.service.externalTrafficPolicy Argo CD repo server service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param repoServer.metrics.service.annotations Additional custom annotations for Argo CD repo server service + ## + annotations: {} + ## @param repoServer.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param repoServer.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + ## Argo CD repo server metrics service monitor configuration + ## + serviceMonitor: + ## @param repoServer.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param repoServer.metrics.serviceMonitor.namespace Namespace which Prometheus is running in + ## e.g: + ## namespace: monitoring + ## + namespace: "" + ## @param repoServer.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" + ## @param repoServer.metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: 30s + ## @param repoServer.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: 10s + ## @param repoServer.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + relabelings: [] + ## @param repoServer.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + metricRelabelings: [] + ## @param repoServer.metrics.serviceMonitor.selector ServiceMonitor selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + ## selector: + ## prometheus: my-prometheus + ## + selector: {} + ## @param repoServer.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels + ## + honorLabels: false + ## Argo CD repo server deployment autoscaling + ## @param repoServer.autoscaling.enabled Enable Argo CD repo server deployment autoscaling + ## @param repoServer.autoscaling.minReplicas Argo CD repo server deployment autoscaling minimum number of replicas + ## @param repoServer.autoscaling.maxReplicas Argo CD repo server deployment autoscaling maximum number of replicas + ## @param repoServer.autoscaling.targetCPU Argo CD repo server deployment autoscaling target CPU percentage + ## @param repoServer.autoscaling.targetMemory Argo CD repo server deployment autoscaling target CPU memory + ## + autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 5 + targetCPU: 50 + targetMemory: 50 + ## ServiceAccount configuration for the Argo CD repo server + ## + serviceAccount: + ## @param repoServer.serviceAccount.create Specifies whether a ServiceAccount for repo server should be created + ## + create: true + ## @param repoServer.serviceAccount.name The name of the ServiceAccount for repo server to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param repoServer.serviceAccount.automountServiceAccountToken Automount service account token for the repo server service account + ## + automountServiceAccountToken: false + ## @param repoServer.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. + ## + annotations: {} + ## @param repoServer.command Override default container command (useful when using custom images) + ## + command: [] + ## @param repoServer.args Override default container args (useful when using custom images) + ## + args: [] + ## @param repoServer.extraArgs Add extra args to the default repo server args + ## + extraArgs: [] + ## @param repoServer.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: true + ## @param repoServer.hostAliases Argo CD repo server pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param repoServer.podLabels Extra labels for Argo CD repo server pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param repoServer.podAnnotations Annotations for Argo CD repo server pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param repoServer.podAffinityPreset Pod affinity preset. Ignored if `repoServer.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param repoServer.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `repoServer.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node repoServer.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param repoServer.nodeAffinityPreset.type Node affinity preset type. Ignored if `repoServer.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param repoServer.nodeAffinityPreset.key Node label key to match. Ignored if `repoServer.affinity` is set + ## + key: "" + ## @param repoServer.nodeAffinityPreset.values Node label values to match. Ignored if `repoServer.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param repoServer.affinity Affinity for Argo CD repo server pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `repoServer.podAffinityPreset`, `repoServer.podAntiAffinityPreset`, and `repoServer.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param repoServer.nodeSelector Node labels for Argo CD repo server pods assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param repoServer.tolerations Tolerations for Argo CD repo server pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param repoServer.schedulerName Name of the k8s scheduler (other than default) + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param repoServer.shareProcessNamespace Enable shared process namespace in a pod. + ## If set to false (default), each container will run in separate namespace, repoServer will have PID=1. + ## If set to true, the /pause will run as init process and will reap any zombie PIDs, + ## for example, generated by a custom exec probe running longer than a probe timeoutSeconds. + ## Enable this only if customLivenessProbe or customReadinessProbe is used and zombie PIDs are accumulating. + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/ + ## + shareProcessNamespace: false + ## @param repoServer.topologySpreadConstraints Topology Spread Constraints for pod assignment + ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## The value is evaluated as a template + ## + topologySpreadConstraints: [] + ## @param repoServer.updateStrategy.type Argo CD repo server statefulset strategy type + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + ## StrategyType + ## Can be set to RollingUpdate or OnDelete + ## + type: RollingUpdate + ## @param repoServer.priorityClassName Argo CD repo server pods' priorityClassName + ## + priorityClassName: "" + ## @param repoServer.runtimeClassName Name of the runtime class to be used by pod(s) + ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/ + ## + runtimeClassName: "" + ## @param repoServer.lifecycleHooks for the Argo CD repo server container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param repoServer.extraEnvVars Array with extra environment variables to add to Argo CD repo server nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param repoServer.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD repo server nodes + ## + extraEnvVarsCM: "" + ## @param repoServer.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD repo server nodes + ## + extraEnvVarsSecret: "" + ## @param repoServer.extraVolumes Optionally specify extra list of additional volumes for the Argo CD repo server pod(s) + ## + extraVolumes: [] + ## @param repoServer.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD repo server container(s) + ## + extraVolumeMounts: [] + ## @param repoServer.sidecars Add additional sidecar containers to the Argo CD repo server pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param repoServer.initContainers Add additional init containers to the Argo CD repo server pod(s) + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## command: ['sh', '-c', 'echo "hello world"'] + ## + initContainers: [] +## @section Dex Parameters + +## Dex configuration +## +dex: + ## Bitnami Dex image + ## ref: https://hub.docker.com/r/bitnami/argo-cd/tags/ + ## @param dex.image.registry [default: REGISTRY_NAME] Dex image registry + ## @param dex.image.repository [default: REPOSITORY_NAME/dex] Dex image repository + ## @skip dex.image.tag Dex image tag (immutable tags are recommended) + ## @param dex.image.digest Dex image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param dex.image.pullPolicy Dex image pull policy + ## @param dex.image.pullSecrets Dex image pull secrets + ## @param dex.image.debug Enable Dex image debug mode + ## + image: + registry: docker.io + repository: bitnami/dex + tag: 2.39.1-debian-12-r6 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## Enable Dex deployment + ## @param dex.enabled Enable the creation of a Dex deployment for SSO + ## + enabled: false + ## @param dex.replicaCount Number of Dex replicas to deploy + ## + replicaCount: 1 + ## Configure extra options for Dex containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param dex.startupProbe.enabled Enable startupProbe on Dex nodes + ## @param dex.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param dex.startupProbe.periodSeconds Period seconds for startupProbe + ## @param dex.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param dex.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param dex.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param dex.livenessProbe.enabled Enable livenessProbe on Dex nodes + ## @param dex.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param dex.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param dex.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param dex.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param dex.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param dex.readinessProbe.enabled Enable readinessProbe on Dex nodes + ## @param dex.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param dex.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param dex.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param dex.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param dex.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param dex.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param dex.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param dex.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Dex resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param dex.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if dex.resources is set (dex.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param dex.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param dex.podSecurityContext.enabled Enabled Dex pods' Security Context + ## @param dex.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param dex.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param dex.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param dex.podSecurityContext.fsGroup Set Dex pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param dex.containerSecurityContext.enabled Enabled Dex containers' Security Context + ## @param dex.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param dex.containerSecurityContext.runAsUser Set Dex containers' Security Context runAsUser + ## @param dex.containerSecurityContext.runAsGroup Set Dex containers' Security Context runAsGroup + ## @param dex.containerSecurityContext.allowPrivilegeEscalation Set Dex containers' Security Context allowPrivilegeEscalation + ## @param dex.containerSecurityContext.readOnlyRootFilesystem Set Dex containers' server Security Context readOnlyRootFilesystem + ## @param dex.containerSecurityContext.runAsNonRoot Set Dex containers' Security Context runAsNonRoot + ## @param dex.containerSecurityContext.capabilities.drop Set Argo CD containers' repo server Security Context capabilities to be dropped + ## @param dex.containerSecurityContext.privileged Set dex container's Security Context privileged + ## @param dex.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + privileged: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + ## Dex service parameters + ## + service: + ## @param dex.service.type Dex service type + ## + type: ClusterIP + ## @param dex.service.ports.http Dex HTTP service port + ## @param dex.service.ports.grpc Dex grpc service port + ## + ports: + http: 5556 + grpc: 5557 + ## Node ports to expose + ## @param dex.service.nodePorts.http HTTP node port for the Dex service + ## @param dex.service.nodePorts.grpc gRPC node port for the Dex service + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + http: "" + grpc: "" + ## @param dex.service.clusterIP Dex service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param dex.service.loadBalancerIP Dex service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param dex.service.loadBalancerSourceRanges Dex service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param dex.service.externalTrafficPolicy Dex service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param dex.service.annotations Additional custom annotations for Dex service + ## + annotations: {} + ## @param dex.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param dex.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param dex.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + ## Network Policies + ## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/ + ## + networkPolicy: + ## @param dex.networkPolicy.enabled Specifies whether a NetworkPolicy should be created + ## + enabled: true + ## @param dex.networkPolicy.allowExternal Don't require server label for connections + ## The Policy model to apply. When set to false, only pods with the correct + ## server label will have network access to the ports server is listening + ## on. When true, server will accept connections from any source + ## (with the correct destination port). + ## + allowExternal: true + ## @param dex.networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations. + ## + allowExternalEgress: true + ## @param dex.networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security) + ## + kubeAPIServerPorts: [443, 6443, 8443] + ## @param dex.networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy + ## e.g: + ## extraIngress: + ## - ports: + ## - port: 1234 + ## from: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + extraIngress: [] + ## @param dex.networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy (ignored if allowExternalEgress=true) + ## e.g: + ## extraEgress: + ## - ports: + ## - port: 1234 + ## to: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + ## + extraEgress: [] + ## @param dex.networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces + ## @param dex.networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces + ## + ingressNSMatchLabels: {} + ingressNSPodMatchLabels: {} + ## Dex container ports + ## @param dex.containerPorts.http Dex container HTTP port + ## @param dex.containerPorts.grpc Dex gRPC port + ## @param dex.containerPorts.metrics Dex metrics port + ## + containerPorts: + http: 5556 + grpc: 5557 + metrics: 5558 + ## Metrics configuration for Dex + ## + metrics: + ## Enable metrics for Argo Dex + ## @param dex.metrics.enabled Enable metrics service for Dex + ## + enabled: false + service: + ## @param dex.metrics.service.type Dex service type + ## + type: ClusterIP + ## @param dex.metrics.service.ports.metrics Dex metrics service port + ## + ports: + metrics: 5558 + ## Node ports to expose + ## @param dex.metrics.service.nodePorts.metrics Node port for the Dex service + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + metrics: "" + ## @param dex.metrics.service.clusterIP Dex service metrics service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param dex.metrics.service.loadBalancerIP Dex service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param dex.metrics.service.loadBalancerSourceRanges Dex service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param dex.metrics.service.externalTrafficPolicy Dex service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param dex.metrics.service.annotations Additional custom annotations for Dex service + ## + annotations: {} + ## @param dex.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param dex.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + ## Dex metrics service monitor configuration + ## + serviceMonitor: + ## @param dex.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param dex.metrics.serviceMonitor.namespace Namespace which Prometheus is running in + ## e.g: + ## namespace: monitoring + ## + namespace: "" + ## @param dex.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" + ## @param dex.metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: 30s + ## @param dex.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: 10s + ## @param dex.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + relabelings: [] + ## @param dex.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + metricRelabelings: [] + ## @param dex.metrics.serviceMonitor.selector ServiceMonitor selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + ## selector: + ## prometheus: my-prometheus + ## + selector: {} + ## @param dex.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels + ## + honorLabels: false + ## ServiceAccount configuration for the Dex + ## + serviceAccount: + ## @param dex.serviceAccount.create Specifies whether a ServiceAccount should be created for Dex + ## + create: true + ## @param dex.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param dex.serviceAccount.automountServiceAccountToken Automount service account token for the Dex service account + ## + automountServiceAccountToken: false + ## @param dex.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. + ## + annotations: {} + ## @param dex.command Override default container command (useful when using custom images) + ## + command: [] + ## @param dex.args Override default container args (useful when using custom images) + ## + args: [] + ## @param dex.extraArgs Add extra args to the default args for Dex + ## + extraArgs: [] + ## @param dex.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: true + ## @param dex.hostAliases Dex pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param dex.podLabels Extra labels for Dex pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param dex.podAnnotations Annotations for Dex pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param dex.podAffinityPreset Pod affinity preset. Ignored if `dex.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param dex.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `dex.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node dex.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param dex.nodeAffinityPreset.type Node affinity preset type. Ignored if `dex.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param dex.nodeAffinityPreset.key Node label key to match. Ignored if `dex.affinity` is set + ## + key: "" + ## @param dex.nodeAffinityPreset.values Node label values to match. Ignored if `dex.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param dex.affinity Affinity for Dex pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `dex.podAffinityPreset`, `dex.podAntiAffinityPreset`, and `dex.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param dex.nodeSelector Node labels for Dex pods assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param dex.tolerations Tolerations for Dex pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param dex.schedulerName Name of the k8s scheduler (other than default) + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param dex.shareProcessNamespace Enable shared process namespace in a pod. + ## If set to false (default), each container will run in separate namespace, dex will have PID=1. + ## If set to true, the /pause will run as init process and will reap any zombie PIDs, + ## for example, generated by a custom exec probe running longer than a probe timeoutSeconds. + ## Enable this only if customLivenessProbe or customReadinessProbe is used and zombie PIDs are accumulating. + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/ + ## + shareProcessNamespace: false + ## @param dex.topologySpreadConstraints Topology Spread Constraints for pod assignment + ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## The value is evaluated as a template + ## + topologySpreadConstraints: [] + ## @param dex.updateStrategy.type Dex statefulset strategy type + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + ## StrategyType + ## Can be set to RollingUpdate or OnDelete + ## + type: RollingUpdate + ## @param dex.priorityClassName Dex pods' priorityClassName + ## + priorityClassName: "" + ## @param dex.runtimeClassName Name of the runtime class to be used by pod(s) + ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/ + ## + runtimeClassName: "" + ## @param dex.lifecycleHooks for the Dex container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param dex.extraEnvVars Array with extra environment variables to add to Dex nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param dex.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Dex nodes + ## + extraEnvVarsCM: "" + ## @param dex.extraEnvVarsSecret Name of existing Secret containing extra env vars for Dex nodes + ## + extraEnvVarsSecret: "" + ## @param dex.extraVolumes Optionally specify extra list of additional volumes for the Dex pod(s) + ## + extraVolumes: [] + ## @param dex.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Dex container(s) + ## + extraVolumeMounts: [] + ## @param dex.sidecars Add additional sidecar containers to the Dex pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param dex.initContainers Add additional init containers to the Dex pod(s) + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## command: ['sh', '-c', 'echo "hello world"'] + ## + initContainers: [] +## @section Shared config for Argo CD components +config: + ## @param config.knownHosts [string] Known hosts to be added to the known hosts list by default. Check the values to see the default value + ## + knownHosts: | + bitbucket.org ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAubiN81eDcafrgMeLzaFPsw2kNvEcqTKl/VqLat/MaB33pZy0y3rJZtnqwR2qOOvbwKZYKiEO1O6VqNEBxKvJJelCq0dTXWT5pbO2gDXC6h6QDXCaHo6pOHGPUy+YBaGQRGuSusMEASYiWunYN0vCAI8QaXnWMXNMdFP3jHAJH0eDsoiGnLPBlBp4TNm6rYI74nMzgz3B9IikW4WVK+dc8KZJZWYjAuORU3jc1c/NPskD2ASinf8v3xnfXeukU0sJ5N6m5E8VLjObPEO+mN2t/FZTMZLiFqPWc/ALSqnMnnhwrNi2rbfg/rd/IpL8Le3pSBne8+seeFVBoGqzHM9yXw== + github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== + gitlab.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFSMqzJeV9rUzU4kWitGjeR4PWSa29SPqJ1fVkhtj3Hw9xjLVXVYrU9QlYWrOLXBpQ6KWjbjTDTdDkoohFzgbEY= + gitlab.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAfuCHKVTjquxvt6CM6tdG4SLp1Btn/nOeHHE5UOzRdf + gitlab.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsj2bNKTBSpIYDEGk9KxsGh3mySTRgMtXL583qmBpzeQ+jqCMRgBqB98u3z++J1sKlXHWfM9dyhSevkMwSbhoR8XIq/U0tCNyokEi/ueaBMCvbcTHhO7FcwzY92WK4Yt0aGROY5qX2UKSeOvuP4D6TPqKF1onrSzH9bx9XUf2lEdWT/ia1NEKjunUqu1xOB/StKDHMoX4/OKyIzuS0q/T1zOATthvasJFoPrAjkohTyaDUz2LN5JoH839hViyEG82yB+MjcFV5MU3N1l1QL3cVUCh93xSaua1N85qivl+siMkPGbO5xR/En4iEY6K2XPASUEMaieWVNTRCtJ4S8H+9 + ssh.dev.azure.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7Hr1oTWqNqOlzGJOfGJ4NakVyIzf1rXYd4d7wo6jBlkLvCA4odBlL0mDUyZ0/QUfTTqeu+tm22gOsv+VrVTMk6vwRU75gY/y9ut5Mb3bR5BV58dKXyq9A9UeB5Cakehn5Zgm6x1mKoVyf+FFn26iYqXJRgzIZZcZ5V6hrE0Qg39kZm4az48o0AUbf6Sp4SLdvnuMa2sVNwHBboS7EJkm57XQPVU3/QpyNLHbWDdzwtrlS+ez30S3AdYhLKEOxAG8weOnyrtLJAUen9mTkol8oII1edf7mWWbWVf0nBmly21+nZcmCTISQBtdcyPaEno7fFQMDD26/s0lfKob4Kw8H + vs-ssh.visualstudio.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7Hr1oTWqNqOlzGJOfGJ4NakVyIzf1rXYd4d7wo6jBlkLvCA4odBlL0mDUyZ0/QUfTTqeu+tm22gOsv+VrVTMk6vwRU75gY/y9ut5Mb3bR5BV58dKXyq9A9UeB5Cakehn5Zgm6x1mKoVyf+FFn26iYqXJRgzIZZcZ5V6hrE0Qg39kZm4az48o0AUbf6Sp4SLdvnuMa2sVNwHBboS7EJkm57XQPVU3/QpyNLHbWDdzwtrlS+ez30S3AdYhLKEOxAG8weOnyrtLJAUen9mTkol8oII1edf7mWWbWVf0nBmly21+nZcmCTISQBtdcyPaEno7fFQMDD26/s0lfKob4Kw8H + ## @param config.extraKnownHosts Add extra known hosts to the known hosts list + ## E.g.: + ## extraKnownHosts: | + ## gitlab.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAfuCHKVTjquxvt6CM6tdG4SLp1Btn/nOeHHE5UOzRdf + ## gitlab.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsj2bNKTBSpIYDEGk9KxsGh3mySTRgMtXL583qmBpzeQ+jqCMRgBqB98u3z++J1sKlXHWfM9dyhSevkMwSbhoR8XIq/U0tCNyokEi/ueaBMCvbcTHhO7FcwzY92WK4Yt0aGROY5qX2UKSeOvuP4D6TPqKF1onrSzH9bx9XUf2lEdWT/ia1NEKjunUqu1xOB/StKDHMoX4/OKyIzuS0q/T1zOATthvasJFoPrAjkohTyaDUz2LN5JoH839hViyEG82yB+MjcFV5MU3N1l1QL3cVUCh93xSaua1N85qivl+siMkPGbO5xR/En4iEY6K2XPASUEMaieWVNTRCtJ4S8H+9 + ## + extraKnownHosts: "" + ## @param config.createExtraKnownHosts Whether to create or not the extra known hosts configmap + ## + createExtraKnownHosts: true + ## @param config.styles Custom CSS styles + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/custom-styles/ + ## E.g.: + ## styles: | + ## .nav-bar { + ## background: linear-gradient(to bottom, #999, #777, #333, #222, #111); + ## } + ## + styles: "" + ## @param config.existingStylesConfigmap Use an existing styles configmap + ## + existingStylesConfigmap: "" + ## @param config.tlsCerts TLS certificates used to verify the authenticity of the repository servers + ## Certificates will be generated by default if the values are not set. + ## E.g: + ## tlsCerts: + ## argocd-1.example.com: | + ## -----BEGIN CERTIFICATE----- + ## (...) + ## -----END CERTIFICATE----- + ## argocd-2.example.com: | + ## -----BEGIN CERTIFICATE----- + ## (...) + ## -----END CERTIFICATE----- + ## + tlsCerts: {} + ## @param config.gpgKeys GnuPG public keys to add to the keyring + ## Keys will be generated by default if the values are not set. + ## Note: Public keys should be exported with `gpg --export --armor ` + ## + gpgKeys: {} + # 4AEE18F83AFDEB23: | + # -----BEGIN PGP PUBLIC KEY BLOCK----- + # ... + # -----END PGP PUBLIC KEY BLOCK----- + + ## @param config.rbac Role-based authentication configuration + ## + rbac: {} + # policy.default: role:readonly + # policy.csv: | + # # Grant all members of the group 'my-org:team-alpha; the ability to sync apps in 'my-project' + # p, my-org:team-alpha, applications, sync, my-project/*, allow + # # Grant all members of 'my-org:team-beta' admins + # g, my-org:team-beta, role:admin + + ## Argo CD general secret configuration + ## + secret: + ## @param config.secret.create Whether to create or not the secret + ## + create: true + ## Annotations to be added to argocd-secret + ## @param config.secret.annotations General secret extra annotations + ## + annotations: {} + ## Webhook Configs + ## @param config.secret.githubSecret GitHub secret to configure webhooks + ## @param config.secret.gitlabSecret GitLab secret to configure webhooks + ## @param config.secret.bitbucketServerSecret BitBucket secret to configure webhooks + ## @param config.secret.bitbucketUUID BitBucket UUID to configure webhooks + ## @param config.secret.gogsSecret Gogs secret to configure webhooks + ## + githubSecret: "" + gitlabSecret: "" + bitbucketServerSecret: "" + bitbucketUUID: "" + gogsSecret: "" + ## Extra keys to add to the general config secret. Useful for injecting SSO secrets into environment variables. + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/user-management/#sso + ## @param config.secret.extra Extra keys to add to the configuration secret. + ## All values must be non-empty. + ## E.g: + ## LDAP_PASSWORD: "mypassword" + ## + extra: {} + ## Argo CD TLS Data. + ## @param config.secret.argocdServerTlsConfig.key TLS key for the Argo CD config secret + ## @param config.secret.argocdServerTlsConfig.crt TLS certificate for the Argo CD config secret + ## E.g: + ## key: + ## crt: | + ## -----BEGIN CERTIFICATE----- + ## + ## -----END CERTIFICATE----- + ## -----BEGIN CERTIFICATE----- + ## + ## -----END CERTIFICATE----- + ## + argocdServerTlsConfig: + key: "" + crt: "" + ## Argo admin password + ## @param config.secret.argocdServerAdminPassword Argo CD server admin password. Autogenerated by default. + ## + argocdServerAdminPassword: "" + ## Password modification time defaults to current time if not set + ## @param config.secret.argocdServerAdminPasswordMtime Argo CD server password modification time + ## E.g: + ## argocdServerAdminPasswordMtime: "2006-01-02T15:04:05Z" + ## + argocdServerAdminPasswordMtime: "" + ## Create a secret with optional repository credentials + ## @param config.secret.repositoryCredentials Repository credentials to add to the Argo CD server confgi secret + ## E.g. + ## repositoryCredentials: + ## sample-ssh-key: | + ## -----BEGIN RSA PRIVATE KEY----- + ## + ## -----END RSA PRIVATE KEY----- + ## + repositoryCredentials: {} + ## External Cluster Credentials + ## Refs: + ## - https://argo-cd.readthedocs.io/en/stable/operator-manual/declarative-setup/#clusters + ## - https://argo-cd.readthedocs.io/en/stable/operator-manual/security/#external-cluster-credentials + ## @param config.clusterCredentials Configure external cluster credentials + ## E.g + ## - name: mycluster + ## server: https://mycluster.com + ## labels: {} + ## annotations: {} + ## config: + ## bearerToken: "" + ## tlsClientConfig: + ## insecure: false + ## caData: "" + ## - name: mycluster2 + ## server: https://mycluster2.com + ## labels: {} + ## annotations: {} + ## namespaces: namespace1,namespace2 + ## config: + ## bearerToken: "" + ## tlsClientConfig: + ## insecure: false + ## caData: "" + ## + clusterCredentials: [] +## @section Init Container Parameters + +## 'volumePermissions' init container parameters +## Changes the owner and group of the persistent volume mount point to runAsUser:fsGroup values +## based on the *podSecurityContext/*containerSecurityContext parameters +## +volumePermissions: + ## @param volumePermissions.enabled Enable init container that changes the owner/group of the PV mount point to `runAsUser:fsGroup` + ## + enabled: false + ## OS Shell + Utility image + ## ref: https://hub.docker.com/r/bitnami/os-shell/tags/ + ## @param volumePermissions.image.registry [default: REGISTRY_NAME] OS Shell + Utility image registry + ## @param volumePermissions.image.repository [default: REPOSITORY_NAME/os-shell] OS Shell + Utility image repository + ## @skip volumePermissions.image.tag OS Shell + Utility image tag (immutable tags are recommended) + ## @param volumePermissions.image.digest OS Shell + Utility image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param volumePermissions.image.pullPolicy OS Shell + Utility image pull policy + ## @param volumePermissions.image.pullSecrets OS Shell + Utility image pull secrets + ## + image: + registry: docker.io + repository: bitnami/os-shell + tag: 12-debian-12-r21 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Init container's resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param volumePermissions.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if volumePermissions.resources is set (volumePermissions.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param volumePermissions.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Init container Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param volumePermissions.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param volumePermissions.containerSecurityContext.runAsUser Set init container's Security Context runAsUser + ## NOTE: when runAsUser is set to special value "auto", init container will try to chown the + ## data folder to auto-determined user&group, using commands: `id -u`:`id -G | cut -d" " -f2` + ## "auto" is especially useful for OpenShift which has scc with dynamic user ids (and 0 is not allowed) + ## + containerSecurityContext: + seLinuxOptions: {} + runAsUser: 0 +## @section Other Parameters + +## RBAC configuration +## +rbac: + ## @param rbac.create Specifies whether RBAC resources should be created + ## + create: true +## Redis parameters +## +redis: + ## Bitnami Redis image + ## ref: https://hub.docker.com/r/bitnami/redis/tags/ + ## @param redis.image.registry [default: REGISTRY_NAME] Redis image registry + ## @param redis.image.repository [default: REPOSITORY_NAME/redis] Redis image repository + ## @skip redis.image.tag Redis image tag (immutable tags are recommended) + ## @param redis.image.digest Redis image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param redis.image.pullPolicy Redis image pull policy + ## @param redis.image.pullSecrets Redis image pull secrets + ## + image: + registry: docker.io + repository: bitnami/redis + tag: 7.2.5-debian-12-r0 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## @param redis.enabled Enable Redis dependency + ## + enabled: true + ## @param redis.nameOverride Name override for the Redis dependency + ## + nameOverride: "" + ## @param redis.service.ports.redis Service port for Redis dependency + ## + service: + ports: + redis: 6379 + ## Use password authentication + ## @param redis.auth.enabled Enable Redis dependency authentication + ## @param redis.auth.existingSecret Existing secret to load redis dependency password + ## @param redis.auth.existingSecretPasswordKey Pasword key name inside the existing secret + ## + auth: + enabled: true + ## Name of existing secret object containing the password + ## + existingSecret: "" + ## + ## Password key to be retrieved from Redis® secret + ## + existingSecretPasswordKey: 'redis-password' + ## Cluster settings + ## @param redis.architecture Redis® architecture. Allowed values: `standalone` or `replication` + ## TODO(miguelaeh): We need to test the chart with redis sentinel, it seems to be supported at: https://github.com/argoproj/argo-cd/blob/2a410187565e15633b6f2a8c8d8da22cf02b257d/util/cache/cache.go#L40 + ## + architecture: standalone +## +## External Redis® +## +externalRedis: + ## Can be enabled after redisWait.enabled and redis.enabled are set to false + ## @param externalRedis.enabled Enables External Redis + ## + enabled: false + ## Redis® host + ## @param externalRedis.host External Redis host + ## + host: "" + ## Redis® port + ## @param externalRedis.port External Redis port + ## + port: 6379 + ## Redis® password for authentication + ## Ignored if existingSecret is set + ## @param externalRedis.password External Redis password + ## + password: "" + ## Name of existing secret object containing the password + ## @param externalRedis.existingSecret Existing secret for the external redis + ## + existingSecret: "" + ## Password key to be retrieved from Redis® secret + ## @param externalRedis.existingSecretPasswordKey Password key for the existing secret containing the external redis password + ## + existingSecretPasswordKey: 'redis-password' + ## Specify a label to use with the label selector + ## @param externalRedis.selector External Redis selector labels + ## + selector: {} + # + # selector: + # app.kubernetes.io/component: master + # app.kubernetes.io/instance: redis + # app.kubernetes.io/name: redis +## Wait-for-redis init container configuration +## +redisWait: + ## @param redisWait.enabled Enables waiting for redis + ## + enabled: true + ## @param redisWait.extraArgs Additional arguments for the redis-cli call, such as TLS + ## + extraArgs: '' + ## @param redisWait.containerSecurityContext.enabled Enabled Argo CD repo server containers' Security Context + ## @param redisWait.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param redisWait.containerSecurityContext.runAsUser Set Argo CD repo server containers' Security Context runAsUser + ## @param redisWait.containerSecurityContext.runAsGroup Set Argo CD repo server containers' Security Context runAsGroup + ## @param redisWait.containerSecurityContext.allowPrivilegeEscalation Set Argo CD repo server containers' Security Context allowPrivilegeEscalation + ## @param redisWait.containerSecurityContext.capabilities.drop Set Argo CD containers' repo server Security Context capabilities to be dropped + ## @param redisWait.containerSecurityContext.readOnlyRootFilesystem Set Argo CD containers' repo server Security Context readOnlyRootFilesystem + ## @param redisWait.containerSecurityContext.runAsNonRoot Set Argo CD repo server containers' Security Context runAsNonRoot + ## @param redisWait.containerSecurityContext.privileged Set redisWait container's Security Context privileged + ## @param redisWait.containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + readOnlyRootFilesystem: true + allowPrivilegeEscalation: false + privileged: false + capabilities: + drop: ["ALL"] + seccompProfile: + type: "RuntimeDefault" + diff --git a/kubernetes/dev/argocd/values.yaml b/kubernetes/dev/argocd/values.yaml new file mode 100755 index 0000000..9d29210 --- /dev/null +++ b/kubernetes/dev/argocd/values.yaml @@ -0,0 +1,3463 @@ +## @section Global parameters +## Global Docker image parameters +## Please, note that this will override the image parameters, including dependencies, configured to use the global value +## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass + +## @param global.imageRegistry Global Docker image registry +## @param global.imagePullSecrets Global Docker registry secret names as an array +## @param global.storageClass Global StorageClass for Persistent Volume(s) +## +global: + imageRegistry: "" + ## E.g. + ## imagePullSecrets: + ## - myRegistryKeySecretName + ## + imagePullSecrets: [] +# storageClass: "nfs-client" + storageClass: "" + +## @section Common parameters + +## @param kubeVersion Override Kubernetes version +## +kubeVersion: "" +## @param nameOverride String to partially override common.names.fullname +## +nameOverride: "" +## @param fullnameOverride String to fully override common.names.fullname +## +fullnameOverride: "" +## @param commonLabels Labels to add to all deployed objects +## +commonLabels: {} +## @param commonAnnotations Annotations to add to all deployed objects +## +commonAnnotations: {} +## @param clusterDomain Kubernetes cluster domain name +## +clusterDomain: cluster.local +## @param extraDeploy Array of extra objects to deploy with the release +## +extraDeploy: [] + +## @section Argo CD image parameters + +## Bitnami Argo CD image +## ref: https://hub.docker.com/r/bitnami/argo-cd/tags/ +## @param image.registry Argo CD image registry +## @param image.repository Argo CD image repository +## @param image.tag Argo CD image tag (immutable tags are recommended) +## @param image.digest Argo CD image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag +## @param image.pullPolicy Argo CD image pull policy +## @param image.pullSecrets Argo CD image pull secrets +## @param image.debug Enable Argo CD image debug mode +## +image: + registry: docker.io + repository: bitnami/argo-cd +# tag: 2.6.7-debian-11-r2 + tag: 2.11.2-debian-12-r0 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + +## @section Argo CD application controller parameters + +## Argo CD Controller +## +controller: + ## @param controller.replicaCount Number of Argo CD replicas to deploy + ## + replicaCount: 1 + ## Configure extra options for Argo CD containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param controller.startupProbe.enabled Enable startupProbe on Argo CD nodes + ## @param controller.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param controller.startupProbe.periodSeconds Period seconds for startupProbe + ## @param controller.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param controller.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param controller.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param controller.livenessProbe.enabled Enable livenessProbe on Argo CD nodes + ## @param controller.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param controller.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param controller.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param controller.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param controller.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param controller.readinessProbe.enabled Enable readinessProbe on Argo CD nodes + ## @param controller.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param controller.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param controller.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param controller.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param controller.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param controller.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param controller.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param controller.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Argo CD resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param controller.resources.limits The resources limits for the Argo CD containers + ## @param controller.resources.requests The requested resources for the Argo CD containers + ## + resources: + limits: {} + requests: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param controller.podSecurityContext.enabled Enabled Argo CD pods' Security Context + ## @param controller.podSecurityContext.fsGroup Set Argo CD pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param controller.containerSecurityContext.enabled Enabled Argo CD containers' Security Context + ## @param controller.containerSecurityContext.runAsUser Set Argo CD containers' Security Context runAsUser + ## @param controller.containerSecurityContext.allowPrivilegeEscalation Set Argo CD containers' Security Context allowPrivilegeEscalation + ## @param controller.containerSecurityContext.capabilities.drop Set Argo CD containers' Security Context capabilities to be dropped + ## @param controller.containerSecurityContext.readOnlyRootFilesystem Set Argo CD containers' Security Context readOnlyRootFilesystem + ## @param controller.containerSecurityContext.runAsNonRoot Set Argo CD container's Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + allowPrivilegeEscalation: false + capabilities: + drop: + - all + readOnlyRootFilesystem: false + runAsNonRoot: true + + ## ServiceAccount configuration for the Argo CD application controller + ## + serviceAccount: + ## @param controller.serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param controller.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param controller.serviceAccount.automountServiceAccountToken Automount service account token for the application controller service account + ## + automountServiceAccountToken: true + ## @param controller.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. + ## + annotations: {} + + ## Enable admin clusterrole resources. Allows to Argo CD to deploy to the K8s cluster + ## @param controller.clusterAdminAccess Enable K8s cluster admin access for the application controller + ## + clusterAdminAccess: true + + ## Enable Custom Rules for the Application Controller cluster role + ## @param controller.clusterRoleRules Use custom rules for the application controller's cluster role + ## + clusterRoleRules: [] + + ## Argo CD application controller log format: text|json + ## @param controller.logFormat Format for the Argo CD application controller logs. Options: [text, json] + ## + logFormat: text + ## Argo CD application controller log level + ## @param controller.logLevel Log level for the Argo CD application controller + ## + logLevel: info + + ## Argo CD application controller ports + ## @param controller.containerPorts.controller Argo CD application controller port number + ## @param controller.containerPorts.metrics Argo CD application controller metrics port number + containerPorts: + controller: 8082 + metrics: 8082 + + ## Argo CD application controller service parameters + ## + service: + ## @param controller.service.type Argo CD service type + ## + type: ClusterIP + ## @param controller.service.port Argo CD application controller service port + ## + port: 8082 + + ## Node ports to expose + ## @param controller.service.nodePort Node port for Argo CD application controller service + ## NOTE: choose port between <30000-32767> + ## + nodePort: "" + + ## @param controller.service.clusterIP Argo CD application controller service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param controller.service.loadBalancerIP Argo CD application controller service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param controller.service.loadBalancerSourceRanges Argo CD application controller service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param controller.service.externalTrafficPolicy Argo CD application controller service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param controller.service.annotations Additional custom annotations for Argo CD application controller service + ## + annotations: {} + ## @param controller.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param controller.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param controller.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + + ## Metrics configuration for Argo CD application controller + ## + metrics: + ## @param controller.metrics.enabled Enable Argo CD application controller metrics + ## + enabled: false + service: + ## @param controller.metrics.service.type Argo CD application controller service type + ## + type: ClusterIP + ## @param controller.metrics.service.port Argo CD application controller metrics service port + ## + port: 8082 + + ## Node ports to expose + ## @param controller.metrics.service.nodePort Node port for the application controller service + ## NOTE: choose port between <30000-32767> + ## + nodePort: "" + + ## @param controller.metrics.service.clusterIP Argo CD application controller metrics service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param controller.metrics.service.loadBalancerIP Argo CD application controller service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param controller.metrics.service.loadBalancerSourceRanges Argo CD application controller service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param controller.metrics.service.externalTrafficPolicy Argo CD application controller service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param controller.metrics.service.annotations Additional custom annotations for Argo CD application controller service + ## + annotations: {} + ## @param controller.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param controller.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + + ## Argo CD application controller metrics service monitor configuration + ## + serviceMonitor: + ## @param controller.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param controller.metrics.serviceMonitor.namespace Namespace which Prometheus is running in + ## e.g: + ## namespace: monitoring + ## + namespace: "" + ## @param controller.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" + ## @param controller.metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: 30s + ## @param controller.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: 10s + ## @param controller.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + relabelings: [] + ## @param controller.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + metricRelabelings: [] + ## @param controller.metrics.serviceMonitor.selector ServiceMonitor selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + ## selector: + ## prometheus: my-prometheus + ## + selector: {} + ## @param controller.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels + ## + honorLabels: false + + ## Rules for PrometheusRule object if enabled + ## + ## E.g. + ## @param controller.metrics.rules.enabled Enable render extra rules for PrometheusRule object + ## @param controller.metrics.rules.spec Rules to render into the PrometheusRule object + ## @param controller.metrics.rules.selector Selector for the PrometheusRule object + ## @param controller.metrics.rules.namespace Namespace where to create the PrometheusRule object + ## @param controller.metrics.rules.additionalLabels Additional lables to add to the PrometheusRule object + ## + rules: + enabled: false + ## E.g + ## - alert: ArgoAppMissing + ## expr: | + ## absent(argocd_app_info) + ## for: 15m + ## labels: + ## severity: critical + ## annotations: + ## summary: "[ArgoCD] No reported applications" + ## description: > + ## ArgoCD has not reported any applications data for the past 15 minutes which + ## means that it must be down or not functioning properly. This needs to be + ## resolved for this cloud to continue to maintain state. + ## - alert: ArgoAppNotSynced + ## expr: | + ## argocd_app_info{sync_status!="Synced"} == 1 + ## for: 12h + ## labels: + ## severity: warning + ## annotations: + ## summary: "[{{`{{ $labels.name }}`}}] Application not synchronized" + ## description: > + ## The application [{{`{{ $labels.name }}`}} has not been synchronized for over + ## 12 hours which means that the state of this cloud has drifted away from the + ## state inside Git. + ## + spec: [] + ## E.g + ## selector: + ## prometheus: kube-prometheus + ## + selector: {} + namespace: monitoring + additionalLabels: {} + + ## @param controller.command Override default container command (useful when using custom images) + ## + command: [] + + ## Arguments that will be used by default for the application controller + ## @param controller.defaultArgs.statusProcessors Default status processors for Argo CD controller + ## @param controller.defaultArgs.operationProcessors Default operation processors for Argo CD controller + ## @param controller.defaultArgs.appResyncPeriod Default application resync period for Argo CD controller + ## @param controller.defaultArgs.selfHealTimeout Default self heal timeout for Argo CD controller + ## + defaultArgs: + statusProcessors: "20" + operationProcessors: "10" + appResyncPeriod: "180" + selfHealTimeout: "5" + ## @param controller.args Override default container args (useful when using custom images). Overrides the defaultArgs. + ## + args: [] + ## @param controller.extraArgs Add extra arguments to the default arguments for the Argo CD controller + ## + extraArgs: [] + ## @param controller.hostAliases Argo CD pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param controller.podLabels Extra labels for Argo CD pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param controller.podAnnotations Annotations for Argo CD pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param controller.podAffinityPreset Pod affinity preset. Ignored if `controller.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param controller.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `controller.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node controller.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param controller.nodeAffinityPreset.type Node affinity preset type. Ignored if `controller.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param controller.nodeAffinityPreset.key Node label key to match. Ignored if `controller.affinity` is set + ## + key: "" + ## @param controller.nodeAffinityPreset.values Node label values to match. Ignored if `controller.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param controller.affinity Affinity for Argo CD pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `controller.podAffinityPreset`, `controller.podAntiAffinityPreset`, and `controller.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param controller.nodeSelector Node labels for Argo CD pods assignment + ## ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param controller.tolerations Tolerations for Argo CD pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param controller.schedulerName Name of the k8s scheduler (other than default) + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param controller.shareProcessNamespace Enable shared process namespace in a pod. + ## If set to false (default), each container will run in separate namespace, controller will have PID=1. + ## If set to true, the /pause will run as init process and will reap any zombie PIDs, + ## for example, generated by a custom exec probe running longer than a probe timeoutSeconds. + ## Enable this only if customLivenessProbe or customReadinessProbe is used and zombie PIDs are accumulating. + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/ + ## + shareProcessNamespace: false + ## @param controller.topologySpreadConstraints Topology Spread Constraints for pod assignment + ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## The value is evaluated as a template + ## + topologySpreadConstraints: [] + ## @param controller.updateStrategy.type Argo CD statefulset strategy type + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + ## StrategyType + ## Can be set to RollingUpdate or OnDelete + ## + type: RollingUpdate + ## @param controller.priorityClassName Argo CD pods' priorityClassName + ## + priorityClassName: "" + ## @param controller.runtimeClassName Name of the runtime class to be used by pod(s) + ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/ + ## + runtimeClassName: "" + ## @param controller.lifecycleHooks for the Argo CD container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param controller.extraEnvVars Array with extra environment variables to add to Argo CD nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param controller.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD nodes + ## + extraEnvVarsCM: "" + ## @param controller.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD nodes + ## + extraEnvVarsSecret: "" + ## @param controller.extraVolumes Optionally specify extra list of additional volumes for the Argo CD pod(s) + ## + extraVolumes: [] + ## @param controller.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD container(s) + ## + extraVolumeMounts: [] + ## @param controller.sidecars Add additional sidecar containers to the Argo CD pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param controller.initContainers Add additional init containers to the Argo CD pod(s) + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## command: ['sh', '-c', 'echo "hello world"'] + ## + initContainers: [] + +## @section Argo CD ApplicationSet controller parameters + +## ApplicationSet controller +## +applicationSet: + ## @param applicationSet.enabled Enable ApplicationSet controller + ## + enabled: false + ## @param applicationSet.replicaCount The number of ApplicationSet controller pods to run + ## + replicaCount: 1 + ## @param applicationSet.command Override default container command (useful when using custom images) + ## + command: [] + ## Arguments that will be used by default for the application controller + ## @param applicationSet.defaultArgs.enableLeaderElection Enable leader election + ## @param applicationSet.defaultArgs.policy Default policy + ## @param applicationSet.defaultArgs.debug Enable debug mode + ## @param applicationSet.defaultArgs.dryRun Enable dry-run mode + ## + defaultArgs: + enableLeaderElection: false + policy: "sync" + debug: false + dryRun: false + ## @param applicationSet.args Override default container args (useful when using custom images). Overrides the defaultArgs. + ## + args: [] + ## @param applicationSet.extraArgs Add extra arguments to the default arguments for the Argo CD applicationSet controller + ## + extraArgs: [] + ## Argo CD applicationSet controller log format: text|json + ## @param applicationSet.logFormat Format for the Argo CD applicationSet controller logs. Options: [text, json] + ## + logFormat: text + ## Argo CD applicationSet controller log level + ## @param applicationSet.logLevel Log level for the Argo CD applicationSet controller + ## + logLevel: info + ## Argo CD applicationSet controller ports + ## @param applicationSet.containerPorts.metrics Argo CD applicationSet controller metrics port number + ## @param applicationSet.containerPorts.probe Argo CD applicationSet controller probe port number + ## + containerPorts: + metrics: 8085 + probe: 8081 + ## Metrics configuration for Argo CD applicationSet controller + ## + metrics: + ## @param applicationSet.metrics.enabled Enable Argo CD applicationSet controller metrics + ## + enabled: false + service: + ## @param applicationSet.metrics.service.type Argo CD applicationSet controller service type + ## + type: ClusterIP + ## @param applicationSet.metrics.service.port Argo CD applicationSet controller metrics service port + ## + port: 8085 + ## Node ports to expose + ## @param applicationSet.metrics.service.nodePort Node port for the applicationSet controller service + ## NOTE: choose port between <30000-32767> + ## + nodePort: "" + ## @param applicationSet.metrics.service.clusterIP Argo CD applicationSet controller metrics service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param applicationSet.metrics.service.loadBalancerIP Argo CD applicationSet controller service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param applicationSet.metrics.service.loadBalancerSourceRanges Argo CD applicationSet controller service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param applicationSet.metrics.service.externalTrafficPolicy Argo CD applicationSet controller service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param applicationSet.metrics.service.annotations Additional custom annotations for Argo CD applicationSet controller service + ## + annotations: {} + ## @param applicationSet.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param applicationSet.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## Argo CD applicationSet controller metrics service monitor configuration + ## + serviceMonitor: + ## @param applicationSet.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param applicationSet.metrics.serviceMonitor.namespace Namespace which Prometheus is running in + ## e.g: + ## namespace: monitoring + ## + namespace: "" + ## @param applicationSet.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" + ## @param applicationSet.metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: 30s + ## @param applicationSet.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: 10s + ## @param applicationSet.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + relabelings: [] + ## @param applicationSet.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + metricRelabelings: [] + ## @param applicationSet.metrics.serviceMonitor.selector ServiceMonitor selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + ## selector: + ## prometheus: my-prometheus + ## + selector: {} + ## @param applicationSet.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels + ## + honorLabels: false + ## Argo CD applicationSet controller service parameters + ## + service: + ## @param applicationSet.service.type Argo CD applicationSet controller service type + ## + type: ClusterIP + ## @param applicationSet.service.port Argo CD applicationSet controller service port + ## + port: 7000 + + ## Node ports to expose + ## @param applicationSet.service.nodePort Node port for Argo CD applicationSet controller service + ## NOTE: choose port between <30000-32767> + ## + nodePort: "" + ## @param applicationSet.service.clusterIP Argo CD applicationSet controller service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param applicationSet.service.loadBalancerIP Argo CD applicationSet controller service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param applicationSet.service.loadBalancerSourceRanges Argo CD applicationSet controller service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param applicationSet.service.externalTrafficPolicy Argo CD applicationSet controller service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param applicationSet.service.annotations Additional custom annotations for Argo CD applicationSet controller service + ## + annotations: {} + ## @param applicationSet.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param applicationSet.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param applicationSet.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## ServiceAccount configuration for the Argo CD applicationSet controller + ## + serviceAccount: + ## @param applicationSet.serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param applicationSet.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param applicationSet.serviceAccount.automountServiceAccountToken Automount service account token for the applicationSet controller service account + ## + automountServiceAccountToken: true + ## @param applicationSet.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. + ## + annotations: {} + ## @param applicationSet.podAffinityPreset Pod affinity preset. Ignored if `applicationSet.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param applicationSet.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `applicationSet.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node applicationSet.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param applicationSet.nodeAffinityPreset.type Node affinity preset type. Ignored if `applicationSet.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param applicationSet.nodeAffinityPreset.key Node label key to match. Ignored if `applicationSet.affinity` is set + ## + key: "" + ## @param applicationSet.nodeAffinityPreset.values Node label values to match. Ignored if `applicationSet.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param applicationSet.affinity Affinity for Argo CD applicationSet controller pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `applicationSet.podAffinityPreset`, `applicationSet.podAntiAffinityPreset`, and `applicationSet.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param applicationSet.podAnnotations Annotations for Argo CD applicationSet controller pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param applicationSet.podLabels Extra labels for Argo CD applicationSet controller pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param applicationSet.containerSecurityContext.enabled Enabled Argo CD applicationSet controller containers' Security Context + ## @param applicationSet.containerSecurityContext.runAsUser Set Argo CD applicationSet controller containers' Security Context runAsUser + ## @param applicationSet.containerSecurityContext.allowPrivilegeEscalation Set Argo CD applicationSet controller containers' Security Context allowPrivilegeEscalation + ## @param applicationSet.containerSecurityContext.capabilities.drop Set Argo CD applicationSet controller containers' Security Context capabilities to be dropped + ## @param applicationSet.containerSecurityContext.readOnlyRootFilesystem Set Argo CD applicationSet controller containers' Security Context readOnlyRootFilesystem + ## @param applicationSet.containerSecurityContext.runAsNonRoot Set Argo CD applicationSet controller container's Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + allowPrivilegeEscalation: false + capabilities: + drop: + - all + readOnlyRootFilesystem: false + runAsNonRoot: true + ## @param applicationSet.livenessProbe.enabled Enable livenessProbe on Argo CD applicationSet controller nodes + ## @param applicationSet.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param applicationSet.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param applicationSet.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param applicationSet.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param applicationSet.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param applicationSet.readinessProbe.enabled Enable readinessProbe on Argo CD applicationSet controller nodes + ## @param applicationSet.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param applicationSet.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param applicationSet.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param applicationSet.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param applicationSet.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param applicationSet.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param applicationSet.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Argo CD applicationSet controller resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param applicationSet.resources.limits The resources limits for the Argo CD applicationSet controller containers + ## @param applicationSet.resources.requests The requested resources for the Argo CD applicationSet controller containers + ## + resources: + limits: {} + requests: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param applicationSet.podSecurityContext.enabled Enabled Argo CD applicationSet controller pods' Security Context + ## @param applicationSet.podSecurityContext.fsGroup Set Argo CD applicationSet controller pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## @param applicationSet.nodeSelector Node labels for Argo CD applicationSet controller pods assignment + ## ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param applicationSet.tolerations Tolerations for Argo CD applicationSet controller pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param applicationSet.updateStrategy.type Argo CD applicationSet controller statefulset strategy type + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + ## StrategyType + ## Can be set to RollingUpdate or OnDelete + ## + type: RollingUpdate + ## @param applicationSet.priorityClassName Argo CD applicationSet controller pods' priorityClassName + ## + priorityClassName: "" + ## @param applicationSet.extraVolumes Optionally specify extra list of additional volumes for the Argo CD applicationSet controller pod(s) + ## + extraVolumes: [] + ## @param applicationSet.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD applicationSet controller container(s) + ## + extraVolumeMounts: [] + ## @param applicationSet.extraEnvVars Array with extra environment variables to add to Argo CD applicationSet controller nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param applicationSet.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD applicationSet controller nodes + ## + extraEnvVarsCM: "" + ## @param applicationSet.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD applicationSet controller nodes + ## + extraEnvVarsSecret: "" + ## Webhook for the Git Generator + ## Ref: https://argocd-applicationset.readthedocs.io/en/master/Generators-Git/#webhook-configuration) + ## + webhook: + ingress: + ## @param applicationSet.webhook.ingress.enabled Enable an ingress resource for Webhooks + ## + enabled: false + ## DEPRECATED: Use server.ingress.annotations instead of server.ingress.certManager + ## certManager: false + ## + ## @param applicationSet.webhook.ingress.annotations Additional ingress annotations + ## + annotations: {} + ## @param applicationSet.webhook.ingress.labels Additional ingress labels + ## + labels: {} + ## @param applicationSet.webhook.ingress.ingressClassName Defines which ingress controller will implement the resource + ## + ingressClassName: "" + ## @param applicationSet.webhook.ingress.hostname Ingress hostname for the Argo CD applicationSet ingress + ## Hostname must be provided if Ingress is enabled. + ## + hostname: "" + ## @param applicationSet.webhook.ingress.path Argo CD applicationSet ingress path + ## + path: /api/webhook + ## @param applicationSet.webhook.ingress.pathType Ingress path type. One of `Exact`, `Prefix` or `ImplementationSpecific` + ## + pathType: Prefix + ## @param applicationSet.webhook.ingress.extraHosts Extra hosts array for the Argo CD applicationSet ingress + ## The list of additional hostnames to be covered with this ingress record. + ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array + ## + extraHosts: [] + ## @param applicationSet.webhook.ingress.extraPaths Extra paths for the Argo CD applicationSet ingress + ## Any additional arbitrary paths that may need to be added to the ingress under the main host. + ## For example: The ALB ingress controller requires a special rule for handling SSL redirection. + ## + extraPaths: [] + ## - path: /* + ## backend: + ## serviceName: ssl-redirect + ## servicePort: use-annotation + ## + ## @param applicationSet.webhook.ingress.extraTls Extra TLS configuration for the Argo CD applicationSet ingress + ## The tls configuration for additional hostnames to be covered with this ingress record. + ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls + ## + extraTls: [] + ## - hosts: + ## - argocd.server.local + ## secretName: argocd.server.local-tls + ## + ## @param applicationSet.webhook.ingress.tls Ingress TLS configuration + ## + tls: [] + +## @section Argo CD notifications controller parameters + +## notifications controller +## +notifications: + ## @param notifications.enabled Enable notifications controller + ## + enabled: false + ## @param notifications.command Override default container command (useful when using custom images) + ## + command: [] + ## @param notifications.args Override default container args (useful when using custom images). + ## + args: [] + ## @param notifications.extraArgs Add extra arguments to the default arguments for the Argo CD notifications controller + ## + extraArgs: [] + ## Argo CD notifications controller log format: text|json + ## @param notifications.logFormat Format for the Argo CD notifications controller logs. Options: [text, json] + ## + logFormat: text + ## Argo CD notifications controller log level + ## @param notifications.logLevel Log level for the Argo CD notifications controller + ## + logLevel: info + ## Argo CD notifications controller ports + ## @param notifications.containerPorts.metrics Argo CD notifications controller metrics port number + ## + containerPorts: + metrics: 8085 + ## Metrics configuration for Argo CD notifications controller + ## + metrics: + ## @param notifications.metrics.enabled Enable Argo CD notifications controller metrics + ## + enabled: false + service: + ## @param notifications.metrics.service.type Argo CD notifications controller service type + ## + type: ClusterIP + ## @param notifications.metrics.service.port Argo CD notifications controller metrics service port + ## + port: 8085 + ## Node ports to expose + ## @param notifications.metrics.service.nodePort Node port for the notifications controller service + ## NOTE: choose port between <30000-32767> + ## + nodePort: "" + ## @param notifications.metrics.service.clusterIP Argo CD notifications controller metrics service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param notifications.metrics.service.loadBalancerIP Argo CD notifications controller service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param notifications.metrics.service.loadBalancerSourceRanges Argo CD notifications controller service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param notifications.metrics.service.externalTrafficPolicy Argo CD notifications controller service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param notifications.metrics.service.annotations Additional custom annotations for Argo CD notifications controller service + ## + annotations: {} + ## @param notifications.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param notifications.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## Argo CD notifications controller metrics service monitor configuration + ## + serviceMonitor: + ## @param notifications.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param notifications.metrics.serviceMonitor.namespace Namespace which Prometheus is running in + ## e.g: + ## namespace: monitoring + ## + namespace: "" + ## @param notifications.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" + ## @param notifications.metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: 30s + ## @param notifications.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: 10s + ## @param notifications.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + relabelings: [] + ## @param notifications.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + metricRelabelings: [] + ## @param notifications.metrics.serviceMonitor.selector ServiceMonitor selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + ## selector: + ## prometheus: my-prometheus + ## + selector: {} + ## @param notifications.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels + ## + honorLabels: false + ## Argo CD notifications controller service parameters + ## + service: + ## @param notifications.service.type Argo CD notifications controller service type + ## + type: ClusterIP + ## @param notifications.service.port Argo CD notifications controller service port + ## + port: 7000 + + ## Node ports to expose + ## @param notifications.service.nodePort Node port for Argo CD notifications controller service + ## NOTE: choose port between <30000-32767> + ## + nodePort: "" + ## @param notifications.service.clusterIP Argo CD notifications controller service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param notifications.service.loadBalancerIP Argo CD notifications controller service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param notifications.service.loadBalancerSourceRanges Argo CD notifications controller service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param notifications.service.externalTrafficPolicy Argo CD notifications controller service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param notifications.service.annotations Additional custom annotations for Argo CD notifications controller service + ## + annotations: {} + ## @param notifications.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param notifications.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param notifications.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## ServiceAccount configuration for the Argo CD notifications controller + ## + serviceAccount: + ## @param notifications.serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param notifications.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param notifications.serviceAccount.automountServiceAccountToken Automount service account token for the notifications controller service account + ## + automountServiceAccountToken: true + ## @param notifications.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. + ## + annotations: {} + ## @param notifications.podAffinityPreset Pod affinity preset. Ignored if `notifications.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param notifications.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `notifications.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node notifications.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param notifications.nodeAffinityPreset.type Node affinity preset type. Ignored if `notifications.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param notifications.nodeAffinityPreset.key Node label key to match. Ignored if `notifications.affinity` is set + ## + key: "" + ## @param notifications.nodeAffinityPreset.values Node label values to match. Ignored if `notifications.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param notifications.affinity Affinity for Argo CD notifications controller pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `notifications.podAffinityPreset`, `notifications.podAntiAffinityPreset`, and `notifications.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param notifications.podAnnotations Annotations for Argo CD notifications controller pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param notifications.podLabels Extra labels for Argo CD notifications controller pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param notifications.containerSecurityContext.enabled Enabled Argo CD notifications controller containers' Security Context + ## @param notifications.containerSecurityContext.runAsUser Set Argo CD notifications controller containers' Security Context runAsUser + ## @param notifications.containerSecurityContext.allowPrivilegeEscalation Set Argo CD notifications controller containers' Security Context allowPrivilegeEscalation + ## @param notifications.containerSecurityContext.capabilities.drop Set Argo CD notifications controller containers' Security Context capabilities to be dropped + ## @param notifications.containerSecurityContext.readOnlyRootFilesystem Set Argo CD notifications controller containers' Security Context readOnlyRootFilesystem + ## @param notifications.containerSecurityContext.runAsNonRoot Set Argo CD notifications controller container's Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + allowPrivilegeEscalation: false + capabilities: + drop: + - all + readOnlyRootFilesystem: false + runAsNonRoot: true + ## Argo CD notifications controller resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param notifications.resources.limits The resources limits for the Argo CD notifications controller containers + ## @param notifications.resources.requests The requested resources for the Argo CD notifications controller containers + ## + resources: + limits: {} + requests: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param notifications.podSecurityContext.enabled Enabled Argo CD notifications controller pods' Security Context + ## @param notifications.podSecurityContext.fsGroup Set Argo CD notifications controller pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## @param notifications.nodeSelector Node labels for Argo CD notifications controller pods assignment + ## ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param notifications.tolerations Tolerations for Argo CD notifications controller pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param notifications.priorityClassName Argo CD notifications controller pods' priorityClassName + ## + priorityClassName: "" + ## @param notifications.extraVolumes Optionally specify extra list of additional volumes for the Argo CD notifications controller pod(s) + ## + extraVolumes: [] + ## @param notifications.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD notifications controller container(s) + ## + extraVolumeMounts: [] + ## @param notifications.extraEnvVars Array with extra environment variables to add to Argo CD notifications controller nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param notifications.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD notifications controller nodes + ## + extraEnvVarsCM: "" + ## @param notifications.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD notifications controller nodes + ## + extraEnvVarsSecret: "" + ## Webhook for the Git Generator + ## Ref: https://argocd-notifications.readthedocs.io/en/master/Generators-Git/#webhook-configuration) + ## + webhook: + ingress: + ## @param notifications.webhook.ingress.enabled Enable an ingress resource for Webhooks + ## + enabled: false + ## DEPRECATED: Use server.ingress.annotations instead of server.ingress.certManager + ## certManager: false + ## + ## @param notifications.webhook.ingress.annotations Additional ingress annotations + ## + annotations: {} + ## @param notifications.webhook.ingress.labels Additional ingress labels + ## + labels: {} + ## @param notifications.webhook.ingress.ingressClassName Defines which ingress controller will implement the resource + ## + ingressClassName: "" + ## @param notifications.webhook.ingress.hostname Ingress hostname for the Argo CD notifications ingress + ## Hostname must be provided if Ingress is enabled. + ## + hostname: "" + ## @param notifications.webhook.ingress.path Argo CD notifications ingress path + ## + path: /api/webhook + ## @param notifications.webhook.ingress.pathType Ingress path type. One of `Exact`, `Prefix` or `ImplementationSpecific` + ## + pathType: Prefix + ## @param notifications.webhook.ingress.extraHosts Extra hosts array for the Argo CD notifications ingress + ## The list of additional hostnames to be covered with this ingress record. + ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array + ## + extraHosts: [] + ## @param notifications.webhook.ingress.extraPaths Extra paths for the Argo CD notifications ingress + ## Any additional arbitrary paths that may need to be added to the ingress under the main host. + ## For example: The ALB ingress controller requires a special rule for handling SSL redirection. + ## + extraPaths: [] + ## - path: /* + ## backend: + ## serviceName: ssl-redirect + ## servicePort: use-annotation + ## + ## @param notifications.webhook.ingress.extraTls Extra TLS configuration for the Argo CD notifications ingress + ## The tls configuration for additional hostnames to be covered with this ingress record. + ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls + ## + extraTls: [] + ## - hosts: + ## - argocd.server.local + ## secretName: argocd.server.local-tls + ## + ## @param notifications.webhook.ingress.tls Ingress TLS configuration + ## + tls: [] + + ## The optional bot component simplifies managing subscriptions + ## For more information: https://argocd-notifications.readthedocs.io/en/stable/bots/overview/ + bots: + slack: + ## @param notifications.bots.slack.enabled Enable notifications controller + ## + enabled: false + + ## @param notifications.bots.slack.command Override default container command (useful when using custom images) + ## + command: [] + + ## @param notifications.bots.slack.args Override default container args (useful when using custom images). + ## + args: [] + + ## @param notifications.bots.slack.extraArgs Add extra arguments to the default arguments for the Argo CD Slack bot + ## + extraArgs: [] + + ## Argo CD Slack bot service parameters + ## + service: + ## @param notifications.bots.slack.service.type Argo CD Slack bot service type + ## + type: LoadBalancer + ## @param notifications.bots.slack.service.port Argo CD Slack bot service port + ## + port: 80 + + ## Node ports to expose + ## @param notifications.bots.slack.service.nodePort Node port for Argo CD Slack bot service + ## NOTE: choose port between <30000-32767> + ## + nodePort: "" + ## @param notifications.bots.slack.service.clusterIP Argo CD Slack bot service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param notifications.bots.slack.service.loadBalancerIP Argo CD Slack bot service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param notifications.bots.slack.service.loadBalancerSourceRanges Argo CD Slack bot service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param notifications.bots.slack.service.externalTrafficPolicy Argo CD Slack bot service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param notifications.bots.slack.service.annotations Additional custom annotations for Argo CD Slack bot service + ## + annotations: {} + ## @param notifications.bots.slack.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param notifications.bots.slack.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param notifications.bots.slack.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + + ## ServiceAccount configuration for the Argo CD Slack bot + ## + serviceAccount: + ## @param notifications.bots.slack.serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param notifications.bots.slack.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param notifications.bots.slack.serviceAccount.automountServiceAccountToken Automount service account token for the notifications controller service account + ## + automountServiceAccountToken: true + ## @param notifications.bots.slack.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. + ## + annotations: {} + + ## @param notifications.bots.slack.podAffinityPreset Pod affinity preset. Ignored if `notifications.bots.slack.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param notifications.bots.slack.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `notifications.bots.slack.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node notifications.bots.slack.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param notifications.bots.slack.nodeAffinityPreset.type Node affinity preset type. Ignored if `notifications.bots.slack.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param notifications.bots.slack.nodeAffinityPreset.key Node label key to match. Ignored if `notifications.bots.slack.affinity` is set + ## + key: "" + ## @param notifications.bots.slack.nodeAffinityPreset.values Node label values to match. Ignored if `notifications.bots.slack.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param notifications.bots.slack.affinity Affinity for Argo CD Slack bot pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `notifications.bots.slack.podAffinityPreset`, `notifications.bots.slack.podAntiAffinityPreset`, and `notifications.bots.slack.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param notifications.bots.slack.podAnnotations Annotations for Argo CD Slack bot pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param notifications.bots.slack.podLabels Extra labels for Argo CD Slack bot pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param notifications.bots.slack.containerSecurityContext.enabled Enabled Argo CD Slack bot containers' Security Context + ## @param notifications.bots.slack.containerSecurityContext.runAsUser Set Argo CD Slack bot containers' Security Context runAsUser + ## @param notifications.bots.slack.containerSecurityContext.allowPrivilegeEscalation Set Argo CD Slack bot containers' Security Context allowPrivilegeEscalation + ## @param notifications.bots.slack.containerSecurityContext.capabilities.drop Set Argo CD Slack bot containers' Security Context capabilities to be dropped + ## @param notifications.bots.slack.containerSecurityContext.readOnlyRootFilesystem Set Argo CD Slack bot containers' Security Context readOnlyRootFilesystem + ## @param notifications.bots.slack.containerSecurityContext.runAsNonRoot Set Argo CD Slack bot container's Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + allowPrivilegeEscalation: false + capabilities: + drop: + - all + readOnlyRootFilesystem: false + runAsNonRoot: true + ## Argo CD Slack bot resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param notifications.bots.slack.resources.limits The resources limits for the Argo CD Slack bot containers + ## @param notifications.bots.slack.resources.requests The requested resources for the Argo CD Slack bot containers + ## + resources: + limits: {} + requests: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param notifications.bots.slack.podSecurityContext.enabled Enabled Argo CD Slack bot pods' Security Context + ## @param notifications.bots.slack.podSecurityContext.fsGroup Set Argo CD Slack bot pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## @param notifications.bots.slack.nodeSelector Node labels for Argo CD Slack bot pods assignment + ## ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param notifications.bots.slack.tolerations Tolerations for Argo CD Slack bot pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param notifications.bots.slack.priorityClassName Argo CD Slack bot pods' priorityClassName + ## + priorityClassName: "" + ## @param notifications.bots.slack.extraVolumes Optionally specify extra list of additional volumes for the Argo CD Slack bot pod(s) + ## + extraVolumes: [] + ## @param notifications.bots.slack.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD Slack bot container(s) + ## + extraVolumeMounts: [] + ## @param notifications.bots.slack.extraEnvVars Array with extra environment variables to add to Argo CD Slack bot nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param notifications.bots.slack.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD Slack bot nodes + ## + extraEnvVarsCM: "" + ## @param notifications.bots.slack.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD Slack bot nodes + ## + extraEnvVarsSecret: "" + + +## @section Argo CD server Parameters + +## Argo CD server configuration +## +server: + ## @param server.replicaCount Number of Argo CD server replicas to deploy + ## + replicaCount: 1 + ## Configure extra options for Argo CD server containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param server.startupProbe.enabled Enable startupProbe on Argo CD server nodes + ## @param server.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param server.startupProbe.periodSeconds Period seconds for startupProbe + ## @param server.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param server.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param server.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param server.livenessProbe.enabled Enable livenessProbe on Argo CD server nodes + ## @param server.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param server.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param server.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param server.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param server.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param server.readinessProbe.enabled Enable readinessProbe on Argo CD server nodes + ## @param server.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param server.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param server.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param server.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param server.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param server.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param server.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param server.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Argo CD server resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param server.resources.limits The resources limits for the Argo CD server containers + ## @param server.resources.requests The requested resources for the Argo CD server containers + ## + resources: + limits: {} + requests: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param server.podSecurityContext.enabled Enabled Argo CD server pods' Security Context + ## @param server.podSecurityContext.fsGroup Set Argo CD server pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param server.containerSecurityContext.enabled Enabled Argo CD server containers' Security Context + ## @param server.containerSecurityContext.runAsUser Set Argo CD server containers' Security Context runAsUser + ## @param server.containerSecurityContext.allowPrivilegeEscalation Set Argo CD server containers' Security Context allowPrivilegeEscalation + ## @param server.containerSecurityContext.capabilities.drop Set Argo CD containers' server Security Context capabilities to be dropped + ## @param server.containerSecurityContext.readOnlyRootFilesystem Set Argo CD containers' server Security Context readOnlyRootFilesystem + ## @param server.containerSecurityContext.runAsNonRoot Set Argo CD server containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + allowPrivilegeEscalation: false + capabilities: + drop: + - all + readOnlyRootFilesystem: false + runAsNonRoot: true + + ## Argo CD server deployment autoscaling + ## @param server.autoscaling.enabled Enable Argo CD server deployment autoscaling + ## @param server.autoscaling.minReplicas Argo CD server deployment autoscaling minimum number of replicas + ## @param server.autoscaling.maxReplicas Argo CD server deployment autoscaling maximum number of replicas + ## @param server.autoscaling.targetCPU Argo CD server deployment autoscaling target CPU percentage + ## @param server.autoscaling.targetMemory Argo CD server deployment autoscaling target CPU memory + ## + autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 5 + targetCPU: 50 + targetMemory: 50 + + ## Redirect all request to https + ## @param server.insecure Disable HTTPS redirection for Argo CD server + ## + insecure: true + + ## @param server.logFormat ArgoCD server logs format. Options: [text, json] + ## + logFormat: text + ## @param server.logLevel ArgoCD server logs level + ## + logLevel: info + + ## Argo CD server enable config + ## @param server.configEnabled Enable Argo CD server config + ## Ref: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/argocd-cm.yaml + ## + configEnabled: true + + ## Argo CD server URL + ## @param server.url Argo CD server base URL. Required when configuring SSO. Required when enabling dex. + ## + url: "" + + ## Argo CD server config. This object will be directly rendered + ## @param server.config [object] Argo CD server configuration that will end on the argocd-cm Config Map + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/user-management/ + ## E.g: + ## repositories: + ## - url: git@github.com:group/repo.git + ## sshPrivateKeySecret: + ## name: secret-name + ## key: sshPrivateKey + ## - type: helm + ## url: https://charts.helm.sh/stable + ## name: stable + ## - type: helm + ## url: https://argoproj.github.io/argo-helm + ## name: argo + ## oidc.config: + ## name: AzureAD + ## issuer: https://login.microsoftonline.com/TENANT_ID/v2.0 + ## clientID: CLIENT_ID + ## clientSecret: $oidc.azuread.clientSecret + ## requestedIDTokenClaims: + ## groups: + ## essential: true + ## requestedScopes: + ## - openid + ## - profile + ## - email + ## dex.config: + ## connectors: + ## # GitHub example + ## - type: github + ## id: github + ## name: GitHub + ## config: + ## clientID: aabbccddeeff00112233 + ## clientSecret: $dex.github.clientSecret + ## orgs: + ## - name: your-github-org + config: + ## Argo CD external base URL. Required when configuring SSO. Required when enabling dex. + ## E.g: + ## url: https://argocd.example.com + ## + url: "{{ .Values.server.url }}" + ## Argo CD instance label key + ## + application.instanceLabelKey: argocd.argoproj.io/instance + ## If Dex is enabled you need to add connectors here + ## dex.config: | + ## connectors: [] + ## + dex.config: "" + + ## Configure the ingress for the Argo CD server + ## Ref: https://kubernetes.io/docs/user-guide/ingress/ + ## @param server.ingress.enabled Enable the creation of an ingress for the Argo CD server + ## @param server.ingress.pathType Path type for the Argo CD server ingress + ## @param server.ingress.apiVersion Ingress API version for the Argo CD server ingress + ## @param server.ingress.hostname Ingress hostname for the Argo CD server ingress + ## @param server.ingress.annotations Annotations for the Argo CD server ingress. To enable certificate autogeneration, place here your cert-manager annotations. + ## @param server.ingress.tls Enable TLS for the Argo CD server ingress + ## @param server.ingress.extraHosts Extra hosts array for the Argo CD server ingress + ## @param server.ingress.path Path array for the Argo CD server ingress + ## @param server.ingress.extraPaths Extra paths for the Argo CD server ingress + ## @param server.ingress.extraTls Extra TLS configuration for the Argo CD server ingress + ## @param server.ingress.secrets Secrets array to mount into the Ingress + ## @param server.ingress.ingressClassName IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+) + ## + ingress: + ## Set to true to enable ingress record generation + ## + enabled: false + + ## @param server.ingress.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm + ## + selfSigned: false + + ## DEPRECATED: Use server.ingress.annotations instead of server.ingress.certManager + ## certManager: false + ## + + ## Ingress Path type + ## + pathType: ImplementationSpecific + + ## Override API Version (automatically detected if not set) + ## + apiVersion: "" + + ## When the ingress is enabled, a host pointing to this will be created + ## + hostname: argocd-dev.allarddcs.nl + + ## The Path to Argo CD server. You may need to set this to '/*' in order to use this + ## with ALB ingress controllers. + ## + path: / + + ## For a full list of possible ingress annotations, please see + ## ref: https://github.com/kubernetes/ingress-nginx/blob/master/docs/user-guide/nginx-configuration/annotations.md + ## Use this parameter to set the required annotations for cert-manager, see + ## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations + ## + ## e.g: + ## annotations: + ## kubernetes.io/ingress.class: nginx + ## cert-manager.io/cluster-issuer: cluster-issuer-name + ## + annotations: + ingress.kubernetes.io/ssl-redirect: 'true' + ingress.kubernetes.io/proxy-body-size: '0' + nginx.ingress.kubernetes.io/ssl-redirect: 'true' + nginx.ingress.kubernetes.io/proxy-body-size: '0' + cert-manager.io/cluster-issuer: 'letsencrypt' + ## Enable TLS configuration for the hostname defined at ingress.hostname parameter + ## TLS certificates will be retrieved from a TLS secret with name: {{- printf "%s-tls" .Values.ingress.hostname }} + ## You can use the ingress.secrets parameter to create this TLS secret or rely on cert-manager to create it + ## + tls: true + + ## The list of additional hostnames to be covered with this ingress record. + ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array + extraHosts: [] + ## - name: argocd.server.local + ## path: / + ## + + ## Any additional arbitrary paths that may need to be added to the ingress under the main host. + ## For example: The ALB ingress controller requires a special rule for handling SSL redirection. + extraPaths: [] + ## - path: /* + ## backend: + ## serviceName: ssl-redirect + ## servicePort: use-annotation + ## + + ## The tls configuration for additional hostnames to be covered with this ingress record. + ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls + extraTls: [] + ## - hosts: + ## - argocd.server.local + ## secretName: argocd.server.local-tls + ## + + ## If you're providing your own certificates, please use this to add the certificates as secrets + ## key and certificate should start with -----BEGIN CERTIFICATE----- or + ## -----BEGIN RSA PRIVATE KEY----- + ## + ## name should line up with a tlsSecret set further up + ## If you're using cert-manager, this is unneeded, as it will create the secret for you if it is not set + ## + ## It is also possible to create and manage the certificates outside of this helm chart + ## Please see README.md for more information + ## + secrets: [] + ## - name: argocd.server.local-tls + ## key: + ## certificate: + ## + + ## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster . + ## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/ + ## + ingressClassName: "traefik" + ## @param server.ingress.extraRules Additional rules to be covered with this ingress record + ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-rules + ## e.g: + ## extraRules: + ## - host: example.local + ## http: + ## path: / + ## backend: + ## service: + ## name: example-svc + ## port: + ## name: http + ## + extraRules: [] + + ## Metrics configuration for Argo CD server + ## + metrics: + ## Enable metrics for Argo CD server + ## @param server.metrics.enabled Enable metrics for the Argo CD server + ## + enabled: false + service: + ## @param server.metrics.service.type Argo CD server service type + ## + type: ClusterIP + ## @param server.metrics.service.port Argo CD server metrics service port + ## + port: 8083 + + ## Node ports to expose + ## @param server.metrics.service.nodePort Node port for Argo CD server metrics service + ## NOTE: choose port between <30000-32767> + ## + nodePort: "" + + ## @param server.metrics.service.clusterIP Argo CD server metrics service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param server.metrics.service.loadBalancerIP Argo CD server service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param server.metrics.service.loadBalancerSourceRanges Argo CD server service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param server.metrics.service.externalTrafficPolicy Argo CD server service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param server.metrics.service.annotations Additional custom annotations for Argo CD server service + ## + annotations: {} + ## @param server.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param server.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + + ## Argo CD server metrics service monitor configuration + ## + serviceMonitor: + ## @param server.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param server.metrics.serviceMonitor.namespace Namespace which Prometheus is running in + ## e.g: + ## namespace: monitoring + ## + namespace: "" + ## @param server.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" + ## @param server.metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: 30s + ## @param server.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: 10s + ## @param server.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + relabelings: [] + ## @param server.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + metricRelabelings: [] + ## @param server.metrics.serviceMonitor.selector ServiceMonitor selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + ## selector: + ## prometheus: my-prometheus + ## + selector: {} + ## @param server.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels + ## + honorLabels: false + + ## Configure the ingress resource that allows you to access the Argo CD gRPC API + ## Ref: https://kubernetes.io/docs/user-guide/ingress/ + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/ingress/ + ## @param server.ingressGrpc.enabled Enable the creation of an ingress for the Argo CD gRPC server + ## @param server.ingressGrpc.pathType Path type for the Argo CD gRPC server ingress + ## @param server.ingressGrpc.apiVersion Ingress API version for the Argo CD gRPC server ingress + ## @param server.ingressGrpc.hostname Ingress hostname for the Argo CD gRPC server ingress + ## @param server.ingressGrpc.annotations Annotations for the Argo CD gRPC server ingress. To enable certificate autogeneration, place here your cert-manager annotations + ## @param server.ingressGrpc.tls Enable TLS for the Argo CD server ingress + ## @param server.ingressGrpc.extraHosts Extra hosts array for the Argo CD gRPC server ingress + ## @param server.ingressGrpc.path Path array for the Argo CD gRPC server ingress + ## @param server.ingressGrpc.extraPaths Extra paths for the Argo CD gRPC server ingress + ## @param server.ingressGrpc.extraTls Extra TLS configuration for the Argo CD gRPC server ingress + ## @param server.ingressGrpc.secrets Secrets array to mount into the Ingress + ## @param server.ingressGrpc.ingressClassName IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+) + ## + ingressGrpc: + ## Set to true to enable ingress record generation + ## + enabled: false + + ## @param server.ingressGrpc.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm + ## + selfSigned: false + + ## DEPRECATED: Use server.ingressGrpc.annotations instead of server.ingressGrpc.certManager + ## certManager: false + ## + + ## Ingress Path type + ## + pathType: ImplementationSpecific + + ## Override API Version (automatically detected if not set) + ## + apiVersion: "" + + ## When the ingress is enabled, a host pointing to this will be created + ## + hostname: argocd.server.local + + ## The Path to Argo CD server gRPC API. You may need to set this to '/*' in order to use this + ## with ALB ingress controllers. + ## + path: / + + ## For a full list of possible ingress annotations, please see + ## ref: https://github.com/kubernetes/ingress-nginx/blob/master/docs/user-guide/nginx-configuration/annotations.md + ## Use this parameter to set the required annotations for cert-manager, see + ## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations + ## + ## e.g: + ## annotations: + ## kubernetes.io/ingress.class: nginx + ## cert-manager.io/cluster-issuer: cluster-issuer-name + ## + annotations: {} + + ## Enable TLS configuration for the hostname defined at ingress.hostname parameter + ## TLS certificates will be retrieved from a TLS secret with name: {{- printf "%s-tls" .Values.ingress.hostname }} + ## You can use the ingress.secrets parameter to create this TLS secret or relay on cert-manager to create it + ## + tls: false + + ## The list of additional hostnames to be covered with this ingress record. + ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array + extraHosts: [] + ## - name: argocd.server.local + ## path: / + ## + + ## Any additional arbitrary paths that may need to be added to the ingress under the main host. + ## For example: The ALB ingress controller requires a special rule for handling SSL redirection. + extraPaths: [] + ## - path: /* + ## backend: + ## serviceName: ssl-redirect + ## servicePort: use-annotation + ## + + ## The tls configuration for additional hostnames to be covered with this ingress record. + ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls + extraTls: [] + ## - hosts: + ## - argocd.server.local + ## secretName: argocd.server.local-tls + ## + + ## If you're providing your own certificates, please use this to add the certificates as secrets + ## key and certificate should start with -----BEGIN CERTIFICATE----- or + ## -----BEGIN RSA PRIVATE KEY----- + ## + ## name should line up with a tlsSecret set further up + ## If you're using cert-manager, this is unneeded, as it will create the secret for you if it is not set + ## + ## It is also possible to create and manage the certificates outside of this helm chart + ## Please see README.md for more information + ## + secrets: [] + ## - name: argocd.server.local-tls + ## key: + ## certificate: + ## + + ## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster . + ## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/ + ## + ingressClassName: "" + ## @param server.ingressGrpc.extraRules Additional rules to be covered with this ingress record + ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-rules + ## e.g: + ## extraRules: + ## - host: example.server.local + ## http: + ## path: / + ## backend: + ## service: + ## name: example-svc + ## port: + ## name: http + ## + extraRules: [] + + ## Argo CD server container port + ## @param server.containerPorts.http Argo CD server HTTP container port + ## @param server.containerPorts.https Argo CD server HTTPS container port + ## @param server.containerPorts.metrics Argo CD server metrics container port + containerPorts: + http: 8080 + https: 8443 + metrics: 8083 + + ## Argo CD server service parameters + ## + service: + ## @param server.service.type Argo CD service type + ## + type: ClusterIP + ## @param server.service.ports.http HTTP port for the gRPC ingress when enabled + ## @param server.service.ports.https HTTPS port for the gRPC ingress when enabled + ## + ports: + http: 80 + https: 443 + + ## Node ports to expose + ## @param server.service.nodePorts.http Node port for HTTP + ## @param server.service.nodePorts.https Node port for HTTPS + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + http: "" + https: "" + + ## @param server.service.clusterIP Argo CD service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param server.service.loadBalancerIP Argo CD service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param server.service.loadBalancerSourceRanges Argo CD service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param server.service.externalTrafficPolicy Argo CD service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param server.service.annotations Additional custom annotations for Argo CD service + ## + annotations: {} + ## @param server.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param server.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param server.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + + ## @param server.command Override default container command (useful when using custom images) + ## + command: [] + ## @param server.args Override default container args (useful when using custom images) + ## + args: [] + ## @param server.extraArgs concat to the default args + ## + extraArgs: [] + ## @param server.hostAliases Argo CD server pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param server.podLabels Extra labels for Argo CD server pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param server.podAnnotations Annotations for Argo CD server pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param server.podAffinityPreset Pod affinity preset. Ignored if `server.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param server.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `server.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node server.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param server.nodeAffinityPreset.type Node affinity preset type. Ignored if `server.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param server.nodeAffinityPreset.key Node label key to match. Ignored if `server.affinity` is set + ## + key: "" + ## @param server.nodeAffinityPreset.values Node label values to match. Ignored if `server.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param server.affinity Affinity for Argo CD server pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `server.podAffinityPreset`, `server.podAntiAffinityPreset`, and `server.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param server.nodeSelector Node labels for Argo CD server pods assignment + ## ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param server.tolerations Tolerations for Argo CD server pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param server.schedulerName Name of the k8s scheduler (other than default) + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param server.shareProcessNamespace Enable shared process namespace in a pod. + ## If set to false (default), each container will run in separate namespace, server will have PID=1. + ## If set to true, the /pause will run as init process and will reap any zombie PIDs, + ## for example, generated by a custom exec probe running longer than a probe timeoutSeconds. + ## Enable this only if customLivenessProbe or customReadinessProbe is used and zombie PIDs are accumulating. + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/ + ## + shareProcessNamespace: false + ## @param server.topologySpreadConstraints Topology Spread Constraints for pod assignment + ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## The value is evaluated as a template + ## + topologySpreadConstraints: [] + ## @param server.updateStrategy.type Argo CD server statefulset strategy type + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + ## StrategyType + ## Can be set to RollingUpdate or OnDelete + ## + type: RollingUpdate + ## @param server.priorityClassName Argo CD server pods' priorityClassName + ## + priorityClassName: "" + ## @param server.runtimeClassName Name of the runtime class to be used by pod(s) + ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/ + ## + runtimeClassName: "" + ## @param server.lifecycleHooks for the Argo CD server container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param server.extraEnvVars Array with extra environment variables to add to Argo CD server nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param server.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD server nodes + ## + extraEnvVarsCM: "" + ## @param server.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD server nodes + ## + extraEnvVarsSecret: "" + ## @param server.extraVolumes Optionally specify extra list of additional volumes for the Argo CD server pod(s) + ## + extraVolumes: [] + ## @param server.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD server container(s) + ## + extraVolumeMounts: [] + ## @param server.sidecars Add additional sidecar containers to the Argo CD server pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param server.initContainers Add additional init containers to the Argo CD server pod(s) + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## command: ['sh', '-c', 'echo "hello world"'] + ## + initContainers: [] + + ## ServiceAccount configuration for the Argo CD server + ## + serviceAccount: + ## @param server.serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param server.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param server.serviceAccount.automountServiceAccountToken Automount service account token for the server service account + ## + automountServiceAccountToken: true + ## @param server.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. + ## + annotations: {} + +## @section Argo CD repo server Parameters + +## Argo CD repository server configuration +## +repoServer: + ## @param repoServer.replicaCount Number of Argo CD repo server replicas to deploy + ## + replicaCount: 1 + ## Configure extra options for Argo CD repo server containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param repoServer.startupProbe.enabled Enable startupProbe on Argo CD repo server nodes + ## @param repoServer.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param repoServer.startupProbe.periodSeconds Period seconds for startupProbe + ## @param repoServer.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param repoServer.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param repoServer.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param repoServer.livenessProbe.enabled Enable livenessProbe on Argo CD repo server nodes + ## @param repoServer.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param repoServer.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param repoServer.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param repoServer.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param repoServer.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param repoServer.readinessProbe.enabled Enable readinessProbe on Argo CD repo server nodes + ## @param repoServer.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param repoServer.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param repoServer.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param repoServer.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param repoServer.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param repoServer.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param repoServer.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param repoServer.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Argo CD repo server resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param repoServer.resources.limits The resources limits for the Argo CD repo server containers + ## @param repoServer.resources.requests The requested resources for the Argo CD repo server containers + ## + resources: + limits: {} + requests: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param repoServer.podSecurityContext.enabled Enabled Argo CD repo server pods' Security Context + ## @param repoServer.podSecurityContext.fsGroup Set Argo CD repo server pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param repoServer.containerSecurityContext.enabled Enabled Argo CD repo server containers' Security Context + ## @param repoServer.containerSecurityContext.runAsUser Set Argo CD repo server containers' Security Context runAsUser + ## @param repoServer.containerSecurityContext.allowPrivilegeEscalation Set Argo CD repo server containers' Security Context allowPrivilegeEscalation + ## @param repoServer.containerSecurityContext.capabilities.drop Set Argo CD containers' repo server Security Context capabilities to be dropped + ## @param repoServer.containerSecurityContext.readOnlyRootFilesystem Set Argo CD containers' repo server Security Context readOnlyRootFilesystem + ## @param repoServer.containerSecurityContext.runAsNonRoot Set Argo CD repo server containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + allowPrivilegeEscalation: false + capabilities: + drop: + - all + readOnlyRootFilesystem: false + runAsNonRoot: true + + ## Repo server service parameters + ## + service: + ## @param repoServer.service.type Repo server service type + ## + type: ClusterIP + ## @param repoServer.service.port Repo server service port + ## + port: 8081 + ## Node ports to expose + ## @param repoServer.service.nodePort Node port for the repo server service + ## NOTE: choose port between <30000-32767> + ## + nodePort: "" + + ## @param repoServer.service.clusterIP Repo server service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param repoServer.service.loadBalancerIP Repo server service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param repoServer.service.loadBalancerSourceRanges Repo server service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param repoServer.service.externalTrafficPolicy Repo server service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param repoServer.service.annotations Additional custom annotations for Repo server service + ## + annotations: {} + ## @param repoServer.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param repoServer.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param repoServer.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + + ## Argo CD repo server log format: text|json + ## @param repoServer.logFormat Format for the Argo CD repo server logs. Options: [text, json] + ## + logFormat: text + ## Argo CD application controller log level + ## @param repoServer.logLevel Log level for the Argo CD repo server + ## + logLevel: info + + ## Argo CD repo server container port + ## @param repoServer.containerPorts.repoServer Container port for Argo CD repo server + ## @param repoServer.containerPorts.metrics Metrics port for Argo CD repo server + ## + containerPorts: + repoServer: 8081 + metrics: 8084 + + ## Metrics configuration for Argo CD repo server + ## + metrics: + ## Enable metrics for Argo CD repo server + ## @param repoServer.metrics.enabled Enable metrics for the Argo CD repo server + ## + enabled: false + service: + ## @param repoServer.metrics.service.type Argo CD repo server service type + ## + type: ClusterIP + ## @param repoServer.metrics.service.port Argo CD repo server metrics service port + ## + port: 8084 + + ## Node ports to expose + ## @param repoServer.metrics.service.nodePort Node port for the repo server metrics service + ## NOTE: choose port between <30000-32767> + ## + nodePort: "" + + ## @param repoServer.metrics.service.clusterIP Argo CD repo server metrics service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param repoServer.metrics.service.loadBalancerIP Argo CD repo server service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param repoServer.metrics.service.loadBalancerSourceRanges Argo CD repo server service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param repoServer.metrics.service.externalTrafficPolicy Argo CD repo server service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param repoServer.metrics.service.annotations Additional custom annotations for Argo CD repo server service + ## + annotations: {} + ## @param repoServer.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param repoServer.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + + ## Argo CD repo server metrics service monitor configuration + ## + serviceMonitor: + ## @param repoServer.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param repoServer.metrics.serviceMonitor.namespace Namespace which Prometheus is running in + ## e.g: + ## namespace: monitoring + ## + namespace: "" + ## @param repoServer.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" + ## @param repoServer.metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: 30s + ## @param repoServer.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: 10s + ## @param repoServer.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + relabelings: [] + ## @param repoServer.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + metricRelabelings: [] + ## @param repoServer.metrics.serviceMonitor.selector ServiceMonitor selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + ## selector: + ## prometheus: my-prometheus + ## + selector: {} + ## @param repoServer.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels + ## + honorLabels: false + + ## Argo CD repo server deployment autoscaling + ## @param repoServer.autoscaling.enabled Enable Argo CD repo server deployment autoscaling + ## @param repoServer.autoscaling.minReplicas Argo CD repo server deployment autoscaling minimum number of replicas + ## @param repoServer.autoscaling.maxReplicas Argo CD repo server deployment autoscaling maximum number of replicas + ## @param repoServer.autoscaling.targetCPU Argo CD repo server deployment autoscaling target CPU percentage + ## @param repoServer.autoscaling.targetMemory Argo CD repo server deployment autoscaling target CPU memory + ## + autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 5 + targetCPU: 50 + targetMemory: 50 + + ## ServiceAccount configuration for the Argo CD repo server + ## + serviceAccount: + ## @param repoServer.serviceAccount.create Specifies whether a ServiceAccount for repo server should be created + ## + create: true + ## @param repoServer.serviceAccount.name The name of the ServiceAccount for repo server to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param repoServer.serviceAccount.automountServiceAccountToken Automount service account token for the repo server service account + ## + automountServiceAccountToken: true + ## @param repoServer.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. + ## + annotations: {} + + ## @param repoServer.command Override default container command (useful when using custom images) + ## + command: [] + ## @param repoServer.args Override default container args (useful when using custom images) + ## + args: [] + ## @param repoServer.extraArgs Add extra args to the default repo server args + ## + extraArgs: [] + ## @param repoServer.hostAliases Argo CD repo server pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param repoServer.podLabels Extra labels for Argo CD repo server pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param repoServer.podAnnotations Annotations for Argo CD repo server pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param repoServer.podAffinityPreset Pod affinity preset. Ignored if `repoServer.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param repoServer.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `repoServer.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node repoServer.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param repoServer.nodeAffinityPreset.type Node affinity preset type. Ignored if `repoServer.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param repoServer.nodeAffinityPreset.key Node label key to match. Ignored if `repoServer.affinity` is set + ## + key: "" + ## @param repoServer.nodeAffinityPreset.values Node label values to match. Ignored if `repoServer.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param repoServer.affinity Affinity for Argo CD repo server pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `repoServer.podAffinityPreset`, `repoServer.podAntiAffinityPreset`, and `repoServer.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param repoServer.nodeSelector Node labels for Argo CD repo server pods assignment + ## ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param repoServer.tolerations Tolerations for Argo CD repo server pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param repoServer.schedulerName Name of the k8s scheduler (other than default) + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param repoServer.shareProcessNamespace Enable shared process namespace in a pod. + ## If set to false (default), each container will run in separate namespace, repoServer will have PID=1. + ## If set to true, the /pause will run as init process and will reap any zombie PIDs, + ## for example, generated by a custom exec probe running longer than a probe timeoutSeconds. + ## Enable this only if customLivenessProbe or customReadinessProbe is used and zombie PIDs are accumulating. + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/ + ## + shareProcessNamespace: false + ## @param repoServer.topologySpreadConstraints Topology Spread Constraints for pod assignment + ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## The value is evaluated as a template + ## + topologySpreadConstraints: [] + ## @param repoServer.updateStrategy.type Argo CD repo server statefulset strategy type + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + ## StrategyType + ## Can be set to RollingUpdate or OnDelete + ## + type: RollingUpdate + ## @param repoServer.priorityClassName Argo CD repo server pods' priorityClassName + ## + priorityClassName: "" + ## @param repoServer.runtimeClassName Name of the runtime class to be used by pod(s) + ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/ + ## + runtimeClassName: "" + ## @param repoServer.lifecycleHooks for the Argo CD repo server container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param repoServer.extraEnvVars Array with extra environment variables to add to Argo CD repo server nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param repoServer.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Argo CD repo server nodes + ## + extraEnvVarsCM: "" + ## @param repoServer.extraEnvVarsSecret Name of existing Secret containing extra env vars for Argo CD repo server nodes + ## + extraEnvVarsSecret: "" + ## @param repoServer.extraVolumes Optionally specify extra list of additional volumes for the Argo CD repo server pod(s) + ## + extraVolumes: [] + ## @param repoServer.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Argo CD repo server container(s) + ## + extraVolumeMounts: [] + ## @param repoServer.sidecars Add additional sidecar containers to the Argo CD repo server pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param repoServer.initContainers Add additional init containers to the Argo CD repo server pod(s) + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## command: ['sh', '-c', 'echo "hello world"'] + ## + initContainers: [] + +## @section Dex Parameters + +## Dex configuration +## +dex: + ## Bitnami Dex image + ## ref: https://hub.docker.com/r/bitnami/argo-cd/tags/ + ## @param dex.image.registry Dex image registry + ## @param dex.image.repository Dex image repository + ## @param dex.image.tag Dex image tag (immutable tags are recommended) + ## @param dex.image.digest Dex image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param dex.image.pullPolicy Dex image pull policy + ## @param dex.image.pullSecrets Dex image pull secrets + ## @param dex.image.debug Enable Dex image debug mode + ## + image: + registry: docker.io + repository: bitnami/dex +# tag: 2.36.0-debian-11-r2 + tag: 2.39.1-debian-12-r6 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + + ## Enable Dex deployment + ## @param dex.enabled Enable the creation of a Dex deployment for SSO + ## + enabled: false + ## @param dex.replicaCount Number of Dex replicas to deploy + ## + replicaCount: 1 + ## Configure extra options for Dex containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param dex.startupProbe.enabled Enable startupProbe on Dex nodes + ## @param dex.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param dex.startupProbe.periodSeconds Period seconds for startupProbe + ## @param dex.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param dex.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param dex.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param dex.livenessProbe.enabled Enable livenessProbe on Dex nodes + ## @param dex.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param dex.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param dex.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param dex.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param dex.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param dex.readinessProbe.enabled Enable readinessProbe on Dex nodes + ## @param dex.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param dex.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param dex.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param dex.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param dex.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + successThreshold: 1 + ## @param dex.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param dex.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param dex.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Dex resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param dex.resources.limits The resources limits for the Dex containers + ## @param dex.resources.requests The requested resources for the Dex containers + ## + resources: + limits: {} + requests: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param dex.podSecurityContext.enabled Enabled Dex pods' Security Context + ## @param dex.podSecurityContext.fsGroup Set Dex pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param dex.containerSecurityContext.enabled Enabled Dex containers' Security Context + ## @param dex.containerSecurityContext.runAsUser Set Dex containers' Security Context runAsUser + ## @param dex.containerSecurityContext.allowPrivilegeEscalation Set Dex containers' Security Context allowPrivilegeEscalation + ## @param dex.containerSecurityContext.readOnlyRootFilesystem Set Dex containers' server Security Context readOnlyRootFilesystem + ## @param dex.containerSecurityContext.runAsNonRoot Set Dex containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + allowPrivilegeEscalation: false + readOnlyRootFilesystem: false + runAsNonRoot: true + + ## Dex service parameters + ## + service: + ## @param dex.service.type Dex service type + ## + type: ClusterIP + ## @param dex.service.ports.http Dex HTTP service port + ## @param dex.service.ports.grpc Dex grpc service port + ## + ports: + http: 5556 + grpc: 5557 + + ## Node ports to expose + ## @param dex.service.nodePorts.http HTTP node port for the Dex service + ## @param dex.service.nodePorts.grpc gRPC node port for the Dex service + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + http: "" + grpc: "" + + ## @param dex.service.clusterIP Dex service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param dex.service.loadBalancerIP Dex service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param dex.service.loadBalancerSourceRanges Dex service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param dex.service.externalTrafficPolicy Dex service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param dex.service.annotations Additional custom annotations for Dex service + ## + annotations: {} + ## @param dex.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param dex.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param dex.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + + ## Dex container ports + ## @param dex.containerPorts.http Dex container HTTP port + ## @param dex.containerPorts.grpc Dex gRPC port + ## @param dex.containerPorts.metrics Dex metrics port + ## + containerPorts: + http: 5556 + grpc: 5557 + metrics: 5558 + + ## Metrics configuration for Dex + ## + metrics: + ## Enable metrics for Argo Dex + ## @param dex.metrics.enabled Enable metrics for Dex + ## + enabled: false + service: + ## @param dex.metrics.service.type Dex service type + ## + type: ClusterIP + ## @param dex.metrics.service.port Dex metrics service port + ## + port: 5558 + + ## Node ports to expose + ## @param dex.metrics.service.nodePort Node port for the Dex service + ## NOTE: choose port between <30000-32767> + ## + nodePort: "" + + ## @param dex.metrics.service.clusterIP Dex service metrics service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param dex.metrics.service.loadBalancerIP Dex service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param dex.metrics.service.loadBalancerSourceRanges Dex service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param dex.metrics.service.externalTrafficPolicy Dex service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param dex.metrics.service.annotations Additional custom annotations for Dex service + ## + annotations: {} + ## @param dex.metrics.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param dex.metrics.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + sessionAffinityConfig: {} + + ## Dex metrics service monitor configuration + ## + serviceMonitor: + ## @param dex.metrics.serviceMonitor.enabled Create ServiceMonitor Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param dex.metrics.serviceMonitor.namespace Namespace which Prometheus is running in + ## e.g: + ## namespace: monitoring + ## + namespace: "" + ## @param dex.metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" + ## @param dex.metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: 30s + ## @param dex.metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: 10s + ## @param dex.metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + relabelings: [] + ## @param dex.metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#relabelconfig + ## + metricRelabelings: [] + ## @param dex.metrics.serviceMonitor.selector ServiceMonitor selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + ## selector: + ## prometheus: my-prometheus + ## + selector: {} + ## @param dex.metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels + ## + honorLabels: false + + ## ServiceAccount configuration for the Dex + ## + serviceAccount: + ## @param dex.serviceAccount.create Specifies whether a ServiceAccount should be created for Dex + ## + create: true + ## @param dex.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param dex.serviceAccount.automountServiceAccountToken Automount service account token for the Dex service account + ## + automountServiceAccountToken: true + ## @param dex.serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. + ## + annotations: {} + + ## @param dex.command Override default container command (useful when using custom images) + ## + command: [] + ## @param dex.args Override default container args (useful when using custom images) + ## + args: [] + ## @param dex.extraArgs Add extra args to the default args for Dex + ## + extraArgs: [] + ## @param dex.hostAliases Dex pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param dex.podLabels Extra labels for Dex pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param dex.podAnnotations Annotations for Dex pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param dex.podAffinityPreset Pod affinity preset. Ignored if `dex.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param dex.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `dex.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node dex.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param dex.nodeAffinityPreset.type Node affinity preset type. Ignored if `dex.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param dex.nodeAffinityPreset.key Node label key to match. Ignored if `dex.affinity` is set + ## + key: "" + ## @param dex.nodeAffinityPreset.values Node label values to match. Ignored if `dex.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param dex.affinity Affinity for Dex pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `dex.podAffinityPreset`, `dex.podAntiAffinityPreset`, and `dex.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param dex.nodeSelector Node labels for Dex pods assignment + ## ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param dex.tolerations Tolerations for Dex pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param dex.schedulerName Name of the k8s scheduler (other than default) + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param dex.shareProcessNamespace Enable shared process namespace in a pod. + ## If set to false (default), each container will run in separate namespace, dex will have PID=1. + ## If set to true, the /pause will run as init process and will reap any zombie PIDs, + ## for example, generated by a custom exec probe running longer than a probe timeoutSeconds. + ## Enable this only if customLivenessProbe or customReadinessProbe is used and zombie PIDs are accumulating. + ## Ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/ + ## + shareProcessNamespace: false + ## @param dex.topologySpreadConstraints Topology Spread Constraints for pod assignment + ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## The value is evaluated as a template + ## + topologySpreadConstraints: [] + ## @param dex.updateStrategy.type Dex statefulset strategy type + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + ## StrategyType + ## Can be set to RollingUpdate or OnDelete + ## + type: RollingUpdate + ## @param dex.priorityClassName Dex pods' priorityClassName + ## + priorityClassName: "" + ## @param dex.runtimeClassName Name of the runtime class to be used by pod(s) + ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/ + ## + runtimeClassName: "" + ## @param dex.lifecycleHooks for the Dex container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param dex.extraEnvVars Array with extra environment variables to add to Dex nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param dex.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Dex nodes + ## + extraEnvVarsCM: "" + ## @param dex.extraEnvVarsSecret Name of existing Secret containing extra env vars for Dex nodes + ## + extraEnvVarsSecret: "" + ## @param dex.extraVolumes Optionally specify extra list of additional volumes for the Dex pod(s) + ## + extraVolumes: [] + ## @param dex.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Dex container(s) + ## + extraVolumeMounts: [] + ## @param dex.sidecars Add additional sidecar containers to the Dex pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param dex.initContainers Add additional init containers to the Dex pod(s) + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## command: ['sh', '-c', 'echo "hello world"'] + ## + initContainers: [] + +## @section Shared config for Argo CD components +config: + ## @param config.knownHosts [string] Known hosts to be added to the known hosts list by default. Check the values to see the default value + ## + knownHosts: | + bitbucket.org ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAubiN81eDcafrgMeLzaFPsw2kNvEcqTKl/VqLat/MaB33pZy0y3rJZtnqwR2qOOvbwKZYKiEO1O6VqNEBxKvJJelCq0dTXWT5pbO2gDXC6h6QDXCaHo6pOHGPUy+YBaGQRGuSusMEASYiWunYN0vCAI8QaXnWMXNMdFP3jHAJH0eDsoiGnLPBlBp4TNm6rYI74nMzgz3B9IikW4WVK+dc8KZJZWYjAuORU3jc1c/NPskD2ASinf8v3xnfXeukU0sJ5N6m5E8VLjObPEO+mN2t/FZTMZLiFqPWc/ALSqnMnnhwrNi2rbfg/rd/IpL8Le3pSBne8+seeFVBoGqzHM9yXw== + github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== + gitlab.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFSMqzJeV9rUzU4kWitGjeR4PWSa29SPqJ1fVkhtj3Hw9xjLVXVYrU9QlYWrOLXBpQ6KWjbjTDTdDkoohFzgbEY= + gitlab.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAfuCHKVTjquxvt6CM6tdG4SLp1Btn/nOeHHE5UOzRdf + gitlab.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsj2bNKTBSpIYDEGk9KxsGh3mySTRgMtXL583qmBpzeQ+jqCMRgBqB98u3z++J1sKlXHWfM9dyhSevkMwSbhoR8XIq/U0tCNyokEi/ueaBMCvbcTHhO7FcwzY92WK4Yt0aGROY5qX2UKSeOvuP4D6TPqKF1onrSzH9bx9XUf2lEdWT/ia1NEKjunUqu1xOB/StKDHMoX4/OKyIzuS0q/T1zOATthvasJFoPrAjkohTyaDUz2LN5JoH839hViyEG82yB+MjcFV5MU3N1l1QL3cVUCh93xSaua1N85qivl+siMkPGbO5xR/En4iEY6K2XPASUEMaieWVNTRCtJ4S8H+9 + ssh.dev.azure.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7Hr1oTWqNqOlzGJOfGJ4NakVyIzf1rXYd4d7wo6jBlkLvCA4odBlL0mDUyZ0/QUfTTqeu+tm22gOsv+VrVTMk6vwRU75gY/y9ut5Mb3bR5BV58dKXyq9A9UeB5Cakehn5Zgm6x1mKoVyf+FFn26iYqXJRgzIZZcZ5V6hrE0Qg39kZm4az48o0AUbf6Sp4SLdvnuMa2sVNwHBboS7EJkm57XQPVU3/QpyNLHbWDdzwtrlS+ez30S3AdYhLKEOxAG8weOnyrtLJAUen9mTkol8oII1edf7mWWbWVf0nBmly21+nZcmCTISQBtdcyPaEno7fFQMDD26/s0lfKob4Kw8H + vs-ssh.visualstudio.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7Hr1oTWqNqOlzGJOfGJ4NakVyIzf1rXYd4d7wo6jBlkLvCA4odBlL0mDUyZ0/QUfTTqeu+tm22gOsv+VrVTMk6vwRU75gY/y9ut5Mb3bR5BV58dKXyq9A9UeB5Cakehn5Zgm6x1mKoVyf+FFn26iYqXJRgzIZZcZ5V6hrE0Qg39kZm4az48o0AUbf6Sp4SLdvnuMa2sVNwHBboS7EJkm57XQPVU3/QpyNLHbWDdzwtrlS+ez30S3AdYhLKEOxAG8weOnyrtLJAUen9mTkol8oII1edf7mWWbWVf0nBmly21+nZcmCTISQBtdcyPaEno7fFQMDD26/s0lfKob4Kw8H + + ## @param config.extraKnownHosts Add extra known hosts to the known hosts list + ## E.g.: + ## extraKnownHosts: | + ## gitlab.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAfuCHKVTjquxvt6CM6tdG4SLp1Btn/nOeHHE5UOzRdf + ## gitlab.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsj2bNKTBSpIYDEGk9KxsGh3mySTRgMtXL583qmBpzeQ+jqCMRgBqB98u3z++J1sKlXHWfM9dyhSevkMwSbhoR8XIq/U0tCNyokEi/ueaBMCvbcTHhO7FcwzY92WK4Yt0aGROY5qX2UKSeOvuP4D6TPqKF1onrSzH9bx9XUf2lEdWT/ia1NEKjunUqu1xOB/StKDHMoX4/OKyIzuS0q/T1zOATthvasJFoPrAjkohTyaDUz2LN5JoH839hViyEG82yB+MjcFV5MU3N1l1QL3cVUCh93xSaua1N85qivl+siMkPGbO5xR/En4iEY6K2XPASUEMaieWVNTRCtJ4S8H+9 + ## + extraKnownHosts: "" + + ## @param config.createExtraKnownHosts Whether to create or not the extra known hosts configmap + ## + createExtraKnownHosts: true + + ## @param config.styles Custom CSS styles + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/custom-styles/ + ## E.g.: + ## styles: | + ## .nav-bar { + ## background: linear-gradient(to bottom, #999, #777, #333, #222, #111); + ## } + ## + styles: "" + + ## @param config.existingStylesConfigmap Use an existing styles configmap + ## + existingStylesConfigmap: "" + + ## @param config.tlsCerts TLS certificates used to verify the authenticity of the repository servers + ## Certificates will be generated by default if the values are not set. + ## E.g: + ## tlsCerts: + ## argocd-1.example.com: | + ## -----BEGIN CERTIFICATE----- + ## (...) + ## -----END CERTIFICATE----- + ## argocd-2.example.com: | + ## -----BEGIN CERTIFICATE----- + ## (...) + ## -----END CERTIFICATE----- + ## + tlsCerts: {} + + ## @param config.gpgKeys GnuPG public keys to add to the keyring + ## Keys will be generated by default if the values are not set. + ## Note: Public keys should be exported with `gpg --export --armor ` + ## + gpgKeys: {} + # 4AEE18F83AFDEB23: | + # -----BEGIN PGP PUBLIC KEY BLOCK----- + # ... + # -----END PGP PUBLIC KEY BLOCK----- + + ## Argo CD general secret configuration + ## + secret: + ## @param config.secret.create Whether to create or not the secret + ## + create: true + ## Annotations to be added to argocd-secret + ## @param config.secret.annotations General secret extra annotations + ## + annotations: {} + + ## Webhook Configs + ## @param config.secret.githubSecret GitHub secret to configure webhooks + ## @param config.secret.gitlabSecret GitLab secret to configure webhooks + ## @param config.secret.bitbucketServerSecret BitBucket secret to configure webhooks + ## @param config.secret.bitbucketUUID BitBucket UUID to configure webhooks + ## @param config.secret.gogsSecret Gogs secret to configure webhooks + ## + githubSecret: "" + gitlabSecret: "" + bitbucketServerSecret: "" + bitbucketUUID: "" + gogsSecret: "" + + ## Extra keys to add to the general config secret. Useful for injecting SSO secrets into environment variables. + ## Ref: https://argo-cd.readthedocs.io/en/stable/operator-manual/user-management/#sso + ## @param config.secret.extra Extra keys to add to the configuration secret. + ## All values must be non-empty. + ## E.g: + ## LDAP_PASSWORD: "mypassword" + ## + extra: {} + + ## Argo CD TLS Data. + ## @param config.secret.argocdServerTlsConfig.key TLS key for the Argo CD config secret + ## @param config.secret.argocdServerTlsConfig.crt TLS certificate for the Argo CD config secret + ## E.g: + ## key: + ## crt: | + ## -----BEGIN CERTIFICATE----- + ## + ## -----END CERTIFICATE----- + ## -----BEGIN CERTIFICATE----- + ## + ## -----END CERTIFICATE----- + ## + argocdServerTlsConfig: + key: "" + crt: "" + + ## Argo admin password + ## @param config.secret.argocdServerAdminPassword Argo CD server admin password. Autogenerated by default. + ## + argocdServerAdminPassword: "Argocd01@" + ## Password modification time defaults to current time if not set + ## @param config.secret.argocdServerAdminPasswordMtime Argo CD server password modification time + ## E.g: + ## argocdServerAdminPasswordMtime: "2006-01-02T15:04:05Z" + ## + argocdServerAdminPasswordMtime: "" + + ## Create a secret with optional repository credentials + ## @param config.secret.repositoryCredentials Repository credentials to add to the Argo CD server confgi secret + ## E.g. + ## repositoryCredentials: + ## sample-ssh-key: | + ## -----BEGIN RSA PRIVATE KEY----- + ## + ## -----END RSA PRIVATE KEY----- + ## + repositoryCredentials: {} + + ## External Cluster Credentials + ## Refs: + ## - https://argo-cd.readthedocs.io/en/stable/operator-manual/declarative-setup/#clusters + ## - https://argo-cd.readthedocs.io/en/stable/operator-manual/security/#external-cluster-credentials + ## @param config.clusterCredentials Configure external cluster credentials + ## E.g + ## - name: mycluster + ## server: https://mycluster.com + ## labels: {} + ## annotations: {} + ## config: + ## bearerToken: "" + ## tlsClientConfig: + ## insecure: false + ## caData: "" + ## - name: mycluster2 + ## server: https://mycluster2.com + ## labels: {} + ## annotations: {} + ## namespaces: namespace1,namespace2 + ## config: + ## bearerToken: "" + ## tlsClientConfig: + ## insecure: false + ## caData: "" + ## + clusterCredentials: [] + +## @section Init Container Parameters + +## 'volumePermissions' init container parameters +## Changes the owner and group of the persistent volume mount point to runAsUser:fsGroup values +## based on the *podSecurityContext/*containerSecurityContext parameters +## +volumePermissions: + ## @param volumePermissions.enabled Enable init container that changes the owner/group of the PV mount point to `runAsUser:fsGroup` + ## + enabled: false + ## Bitnami Shell image + ## ref: https://hub.docker.com/r/bitnami/bitnami-shell/tags/ + ## @param volumePermissions.image.registry Bitnami Shell image registry + ## @param volumePermissions.image.repository Bitnami Shell image repository + ## @param volumePermissions.image.tag Bitnami Shell image tag (immutable tags are recommended) + ## @param volumePermissions.image.digest Bitnami Shell image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param volumePermissions.image.pullPolicy Bitnami Shell image pull policy + ## @param volumePermissions.image.pullSecrets Bitnami Shell image pull secrets + ## + image: + registry: docker.io +# repository: bitnami/bitnami-shell +# tag: 11-debian-11-r101 + repository: bitnami/os-shell + tag: 12-debian-12-r21 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Init container's resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param volumePermissions.resources.limits The resources limits for the init container + ## @param volumePermissions.resources.requests The requested resources for the init container + ## + resources: + limits: {} + requests: {} + ## Init container Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param volumePermissions.containerSecurityContext.runAsUser Set init container's Security Context runAsUser + ## NOTE: when runAsUser is set to special value "auto", init container will try to chown the + ## data folder to auto-determined user&group, using commands: `id -u`:`id -G | cut -d" " -f2` + ## "auto" is especially useful for OpenShift which has scc with dynamic user ids (and 0 is not allowed) + ## + containerSecurityContext: + runAsUser: 0 + +## @section Other Parameters + +## RBAC configuration +## +rbac: + ## @param rbac.create Specifies whether RBAC resources should be created + ## + create: true + +## Redis parameters +## +redis: + ## Bitnami Redis image + ## ref: https://hub.docker.com/r/bitnami/redis/tags/ + ## @param redis.image.registry Redis image registry + ## @param redis.image.repository Redis image repository + ## @param redis.image.tag Redis image tag (immutable tags are recommended) + ## @param redis.image.digest Redis image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param redis.image.pullPolicy Redis image pull policy + ## @param redis.image.pullSecrets Redis image pull secrets + ## + image: + registry: docker.io + repository: bitnami/redis +# tag: 7.0.10-debian-11-r3 + tag: 7.2.5-debian-12-r0 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + + ## @param redis.enabled Enable Redis dependency + ## + enabled: false + + ## @param redis.nameOverride Name override for the Redis dependency + ## + nameOverride: "" + ## @param redis.service.port Service port for Redis dependency + ## + service: + port: 6379 + + ## Use password authentication + ## @param redis.auth.enabled Enable Redis dependency authentication + ## @param redis.auth.existingSecret Existing secret to load redis dependency password + ## @param redis.auth.existingSecretPasswordKey Pasword key name inside the existing secret + ## + auth: + enabled: false + ## Name of existing secret object containing the password + ## + existingSecret: "" + ## + ## Password key to be retrieved from Redis® secret + ## + existingSecretPasswordKey: 'redis-password' + + ## Cluster settings + ## @param redis.architecture Redis® architecture. Allowed values: `standalone` or `replication` + ## TODO(miguelaeh): We need to test the chart with redis sentinel, it seems to be supported at: https://github.com/argoproj/argo-cd/blob/2a410187565e15633b6f2a8c8d8da22cf02b257d/util/cache/cache.go#L40 + ## + architecture: standalone + +## +## External Redis® +## +externalRedis: + ## Redis® host + ## @param externalRedis.host External Redis host + ## + host: "192.168.2.221" + ## Redis® port + ## @param externalRedis.port External Redis port + ## + port: 6379 + ## Redis® password for authentication + ## Ignored if existingSecret is set + ## @param externalRedis.password External Redis password + ## + password: "Redis01@" + ## Name of existing secret object containing the password + ## @param externalRedis.existingSecret Existing secret for the external redis + ## + existingSecret: "" + ## Password key to be retrieved from Redis® secret + ## @param externalRedis.existingSecretPasswordKey Password key for the existing secret containing the external redis password + ## + existingSecretPasswordKey: '' + +## Wait-for-redis init container configuration +## +redisWait: + ## @param redisWait.enabled Enables waiting for redis + ## + enabled: false + ## @param redisWait.extraArgs Additional arguments for the redis-cli call, such as TLS + ## + extraArgs: '' + ## @param redisWait.securityContext Security context for init container + ## + securityContext: {} diff --git a/kubernetes/dev/backstage/README.md b/kubernetes/dev/backstage/README.md new file mode 100644 index 0000000..2d59a5c --- /dev/null +++ b/kubernetes/dev/backstage/README.md @@ -0,0 +1,18 @@ +#installatie + +na installatie: + +#catalog toeviegen va GUI: + +url: + +https://gitea-dev.allarddcs.nl/allard/kubernetes/raw/branch/master/catalog-info.yaml + +#als database connectie nietw erkt controleren welke connectie-parameters geladen zijn door in de container: + +node -e "console.log(require('knex')({ + client: 'pg', + connection: process.env.DATABASE_URL +}).raw('select 1+1'))" + +uit te voeren. Als je dan "connection undefined" ziet weet je hoe laat het is. diff --git a/kubernetes/dev/backstage/backstage-secrets.yaml b/kubernetes/dev/backstage/backstage-secrets.yaml new file mode 100644 index 0000000..53cc788 --- /dev/null +++ b/kubernetes/dev/backstage/backstage-secrets.yaml @@ -0,0 +1,8 @@ +apiVersion: v1 +kind: Secret +metadata: + name: backstage-secrets + namespace: backstage +type: Opaque +data: + GITEA_TOKEN: N2MyODlkODliMDI0ODk5ODRmYzk4NTA0MTFiYjI2ZjZlZTRlOWQzNw== diff --git a/kubernetes/dev/backstage/backstage.yaml b/kubernetes/dev/backstage/backstage.yaml new file mode 100644 index 0000000..e82fb67 --- /dev/null +++ b/kubernetes/dev/backstage/backstage.yaml @@ -0,0 +1,84 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: backstage + namespace: backstage +spec: + replicas: 1 + selector: + matchLabels: + app: backstage + template: + metadata: + labels: + app: backstage + spec: + containers: + - name: backstage + image: allardkrings/backstage:1.1 +# image: ghcr.io/backstage/backstage + imagePullPolicy: IfNotPresent + env: + - name: PORT + value: "7007" + - name: POSTGRES_USER + value: backstage + - name: POSTGRES_PASSWORD + value: backstage + - name: POSTGRES_DB + value: backstage + - name: POSTGRES_SERVICE_HOST + value: postgres13.postgres.svc.cluster.local + - name: POSTGRES_SERVICE_PORT + value: "5432" + - name: APP_CONFIG_auth_environment + value: development + - name: NODE_ENV + value: development + - name: GITEA_TOKEN + value: "7c289d89b02489984fc9850411bb26f6ee4e9d37" + - name: GITHUB_TOKEN + valueFrom: + secretKeyRef: + name: github-token + key: GITHUB_TOKEN + volumeMounts: + - mountPath: /app/app-config.production.yaml + subPath: app-config.yaml + name: app-configmap + volumes: + - name: app-configmap + configMap: + name: backstage-app-config +--- +apiVersion: v1 +kind: Service +metadata: + name: backstage + namespace: backstage +spec: + type: ClusterIP + selector: + app: backstage + ports: + - name: http + port: 7007 + targetPort: 7007 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: backstage-tls + namespace: backstage +spec: + entryPoints: + - websecure + routes: + - match: Host(`backstage-dev.allarddcs.nl`) + kind: Rule + services: + - name: backstage + port: 7007 + tls: +# certResolver: letsencrypt + secretName: backstage-dev.allarddcs.nl-tls diff --git a/kubernetes/dev/backstage/catalog-info.yaml b/kubernetes/dev/backstage/catalog-info.yaml new file mode 100644 index 0000000..454e620 --- /dev/null +++ b/kubernetes/dev/backstage/catalog-info.yaml @@ -0,0 +1,12 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: backstage + description: Backstage-configuratie +spec: + type: service + owner: group:allarddcs + lifecycle: production + # TechDocs info + docs: + path: ./README.md diff --git a/kubernetes/dev/backstage/certificate.yaml b/kubernetes/dev/backstage/certificate.yaml new file mode 100755 index 0000000..25ce3b7 --- /dev/null +++ b/kubernetes/dev/backstage/certificate.yaml @@ -0,0 +1,16 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: backstage-dev.allarddcs.nl-tls + namespace: backstage +spec: + dnsNames: + - backstage-dev.allarddcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: backstage-dev.allarddcs.nl-tls + usages: + - digital signature + - key encipherment diff --git a/kubernetes/dev/backstage/clusterrolebinding.yaml b/kubernetes/dev/backstage/clusterrolebinding.yaml new file mode 100644 index 0000000..cac7e49 --- /dev/null +++ b/kubernetes/dev/backstage/clusterrolebinding.yaml @@ -0,0 +1,12 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: backstage-k8s-binding +subjects: + - kind: ServiceAccount + name: default # or your Backstage SA + namespace: backstage +roleRef: + kind: ClusterRole + name: backstage-k8s + apiGroup: rbac.authorization.k8s.io diff --git a/kubernetes/dev/backstage/configmap.yaml b/kubernetes/dev/backstage/configmap.yaml new file mode 100644 index 0000000..4dbc82f --- /dev/null +++ b/kubernetes/dev/backstage/configmap.yaml @@ -0,0 +1,134 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: backstage-app-config + namespace: backstage +data: + app-config.yaml: | + app: + title: Backstage AllardDCS + baseUrl: https://backstage-dev.allarddcs.nl + + backend: + baseUrl: https://backstage-dev.allarddcs.nl + listen: + port: 7007 + cors: + origin: https://backstage-dev.allarddcs.nl + methods: [GET, POST, PUT, DELETE, PATCH] + credentials: true + csp: + connect-src: ["'self'", 'http:', 'https:'] + database: + client: pg + connection: + host: ${POSTGRES_SERVICE_HOST} + port: ${POSTGRES_SERVICE_PORT} + user: ${POSTGRES_USER} + password: ${POSTGRES_PASSWORD} + database: ${POSTGRES_DB} + reading: + allow: + - host: raw.githubusercontent.com + paths: + - / + cache: + memory: {} + http: + auth: + environment: development + providers: + guest: + development: + allowEveryone: true + + protocol: https + trustProxy: true + + log: + level: debug + + logging: + logLevel: info + loggers: + catalog: + level: debug + backend: + level: debug + + techdocs: + builder: local + generator: + runIn: local + publisher: + type: local + + organization: + name: AllardDCS + + auth: + environment: development + providers: + guest: + development: + allowEveryone: true + + permission: + enabled: false # Disable permission enforcement + + integrations: + gitea: + - host: gitea-dev.allarddcs.nl + baseUrl: https://gitea-dev.allarddcs.nl + apiBaseUrl: https://gitea-dev.allarddcs.nl/api/v1 + token: + $env: GITEA_TOKEN + github: + - host: github.com + token: + $env: GITHUB_TOKEN + + catalog: + providers: + github: + myGithub: + organization: 'AllardKrings' + catalogPath: '/**/catalog-info.yaml' + filters: + branch: 'master' + repository: 'kubernetes' + schedule: + frequency: { minutes: 30 } + timeout: { minutes: 3 } + + gitea: + myGitea: + organization: 'allarddcs' + host: gitea-dev.allarddcs.nl + branch: 'master' + catalogFile: 'catalog-info.yaml' + schedule: + frequency: { minutes: 30 } + timeout: { minutes: 3 } + + locations: + - type: url + target: https://gitea-dev.allarddcs.nl/AllardDCS/kubernetes/raw/branch/master/group.yaml + rules: + - allow: [Group] + + processors: + gitea: + - host: gitea-dev.allarddcs.nl + apiBaseUrl: https://gitea-dev.allarddcs.nl/api/v1 + + kubernetes: + serviceLocatorMethod: + type: multiTenant + + clusterLocatorMethods: + - type: config + clusters: + - name: local-cluster + url: https://kubernetes.default.svc + authProvider: serviceAccount diff --git a/kubernetes/dev/backstage/gitea-token b/kubernetes/dev/backstage/gitea-token new file mode 100644 index 0000000..d500f28 --- /dev/null +++ b/kubernetes/dev/backstage/gitea-token @@ -0,0 +1 @@ +7c289d89b02489984fc9850411bb26f6ee4e9d37 diff --git a/kubernetes/dev/backstage/postgres-secrets.yaml b/kubernetes/dev/backstage/postgres-secrets.yaml new file mode 100644 index 0000000..efc063d --- /dev/null +++ b/kubernetes/dev/backstage/postgres-secrets.yaml @@ -0,0 +1,9 @@ +apiVersion: v1 +kind: Secret +metadata: + name: postgres-secrets + namespace: backstage +type: Opaque +data: + POSTGRES_USER: YmFja3N0YWdlCg== + POSTGRES_PASSWORD: YmFja3N0YWdlCg== diff --git a/kubernetes/dev/backstage/pvc.yaml b/kubernetes/dev/backstage/pvc.yaml new file mode 100644 index 0000000..8d2837a --- /dev/null +++ b/kubernetes/dev/backstage/pvc.yaml @@ -0,0 +1,34 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: backstage-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/backstage/dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: backstage-pvc + namespace: backstage +spec: + storageClassName: "" + volumeName: backstage-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/kubernetes/dev/backstage/restart.sh b/kubernetes/dev/backstage/restart.sh new file mode 100755 index 0000000..f4adc81 --- /dev/null +++ b/kubernetes/dev/backstage/restart.sh @@ -0,0 +1,3 @@ +microk8s kubectl delete -f backstage.yaml +microk8s kubectl apply -f configmap.yaml +microk8s kubectl apply -f backstage.yaml diff --git a/kubernetes/dev/camunda/README.md b/kubernetes/dev/camunda/README.md new file mode 100755 index 0000000..6ba6408 --- /dev/null +++ b/kubernetes/dev/camunda/README.md @@ -0,0 +1,2 @@ +userid: demo +password: demo diff --git a/kubernetes/dev/camunda/camunda.yaml b/kubernetes/dev/camunda/camunda.yaml new file mode 100755 index 0000000..86dafe0 --- /dev/null +++ b/kubernetes/dev/camunda/camunda.yaml @@ -0,0 +1,52 @@ +apiVersion: v1 +kind: Service +metadata: + name: camunda + namespace: camunda +spec: + selector: + app: camunda + ports: + - name: http + port: 8080 + targetPort: 8080 + type: LoadBalancer +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: camunda + namespace: camunda +spec: + replicas: 1 + selector: + matchLabels: + app: camunda + template: + metadata: + labels: + app: camunda + spec: + containers: + - name: camunda + image: allardkrings/camunda7-arm64v8 + ports: + - containerPort: 8080 + imagePullPolicy: IfNotPresent +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: camunda-tls + namespace: camunda +spec: + entryPoints: + - websecure + routes: + - match: Host(`camunda-prod.allarddcs.nl`) + kind: Rule + services: + - name: camunda + port: 8080 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/catalog-info.yaml b/kubernetes/dev/catalog-info.yaml new file mode 100644 index 0000000..096e261 --- /dev/null +++ b/kubernetes/dev/catalog-info.yaml @@ -0,0 +1,8 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: dev +spec: + type: service # or library, website, etc. + lifecycle: production + owner: admin@allarddcs.nl diff --git a/kubernetes/dev/cockroachdb/README.md b/kubernetes/dev/cockroachdb/README.md new file mode 100644 index 0000000..66f0085 --- /dev/null +++ b/kubernetes/dev/cockroachdb/README.md @@ -0,0 +1,26 @@ +#Installation: + +#apply the CRD: + +kubectl apply -f https://raw.githubusercontent.com/cockroachdb/cockroach-operator/v2.14.0/install/crds.yaml + +#install cockroachdb: + +kubectl apply -f cockroachdb.yaml + +#Initialiseren cluster: + +kubectl exec -it cockroachdb-0 \ +-- /cockroach/cockroach init \ +--certs-dir=/cockroach/cockroach-certs + +#Inloggen client: + +kubectl exec -it cockroachdb-client-secure \ +-- ./cockroach sql \ +--certs-dir=/cockroach-certs \ +--host=cockroachdb-public + +#Gebruiker aanmaken: + +CREATE USER roach WITH PASSWORD 'Cockroach01@'; diff --git a/kubernetes/dev/cockroachdb/certs/ca.crt b/kubernetes/dev/cockroachdb/certs/ca.crt new file mode 100644 index 0000000..7419c81 --- /dev/null +++ b/kubernetes/dev/cockroachdb/certs/ca.crt @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDJTCCAg2gAwIBAgIQa/0mCEqslZ2d107ceEr9ATANBgkqhkiG9w0BAQsFADAr +MRIwEAYDVQQKEwlDb2Nrcm9hY2gxFTATBgNVBAMTDENvY2tyb2FjaCBDQTAeFw0y +NTAxMjUyMDIzNDRaFw0zNTAyMDMyMDIzNDRaMCsxEjAQBgNVBAoTCUNvY2tyb2Fj +aDEVMBMGA1UEAxMMQ29ja3JvYWNoIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAvBJOTewyeYeWUncc7wx27bRCaDH7YawGyaltYypUzo93li+8K5Uw +VSYfy3mxNp47IQXebDPCQITct5pGq/EBTrWGJ/MLf8ZcCfPvvzylsqsesFFfS5y0 +sYof+JzyowDOJflWsQnJLIK5kD32fvupvc0dKY8q/4WN/Ra1kiUm6ZcFYWVKJx2s +2ZVWcDP5xh+obCgP3F4cTsLjo1mkoRPMSLw5w9M5x3AiDgi6zwkcw9aUVq0lBciA +lI4cAHC4Awc1AP3OazYV/E+cC6dtzS+55KRGQIYOp/pkgBKsTAd2ahuZTh8ZWXyS +p30X0luRUO9wBksGEt5ixx5QdtOd0jQWLQIDAQABo0UwQzAOBgNVHQ8BAf8EBAMC +AuQwEgYDVR0TAQH/BAgwBgEB/wIBATAdBgNVHQ4EFgQU5Olr9c4vu7OLVJrlGOtF +rdh5+qQwDQYJKoZIhvcNAQELBQADggEBALTZARd4BA0ke5O4a9G+1Om1P4L16fk9 +R2uICKW1MEGg/1zDXZS/6dX+2xJrLLp3xhFcpFge78zi0MVyBfnrl0j+Uk+eSPar +iubS9S/qN7LkMKcZM8l2hZnPQ0bu6WbaKcH9Bu2KNcWdowsCLb7vgIEXkNPlxoKM +Q+lOZHorpLZgQph1Se7nnjhuXuqxzhxv5NlPVVy/ZiuoJ1FUn5nbS3vIvpGGiGsO +2bGltS2ADsfBNmCsRfgj1HutHERpUG+cvMsa9Wf9o3wuohUOzguPxxaL/Hpbxwp+ +hnL13ksKb/bs45VHtYRQuZaUPoqTWvLRMIdMMxaLNMzE6Xyzc8h/dbA= +-----END CERTIFICATE----- diff --git a/kubernetes/dev/cockroachdb/certs/client.root.crt b/kubernetes/dev/cockroachdb/certs/client.root.crt new file mode 100644 index 0000000..eee6ecc --- /dev/null +++ b/kubernetes/dev/cockroachdb/certs/client.root.crt @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDIDCCAgigAwIBAgIQJwncfRDbHgMyuJKxK0dKCDANBgkqhkiG9w0BAQsFADAr +MRIwEAYDVQQKEwlDb2Nrcm9hY2gxFTATBgNVBAMTDENvY2tyb2FjaCBDQTAeFw0y +NTAxMjUyMDIzNTdaFw0zMDAxMzAyMDIzNTdaMCMxEjAQBgNVBAoTCUNvY2tyb2Fj +aDENMAsGA1UEAxMEcm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +ALzsZkbDiGNFg+jC16+eLzL5GvygvInkFljBgxJcrajRueq3KKfWlg1WTw6SqoiU ++c1uBiK8wiz17zkyo6K1lOabIlRutyAPZNnx7F+iBvhbMw8uzrlvWZKNCTWAJi4M +tLNDesSqmcCdEl+7ycJkGEmXyyDjGz+UtI6Bq5ax/MN9lc8CoKKAc6KzqiiYf0MR +6A2f5wwm8th8kT89HIt541LyElUr0JjttYOhrR0O82gF11Uf6OTYCxiySaHXTXpW +yYXXs6YsFaqm+Y3UZfnIk3jkwMPTYuQ3HoVe66YPB87JbPfMmiO4+NBGgqpSq2d9 +n+l87zGJumwUaFQcq2s/1yUCAwEAAaNIMEYwDgYDVR0PAQH/BAQDAgWgMBMGA1Ud +JQQMMAoGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFOTpa/XOL7uzi1Sa5RjrRa3Yefqk +MA0GCSqGSIb3DQEBCwUAA4IBAQAyygcCWS9hC2/HI59i5IwirXxO6NXUJLQIrooz +z187fhAdfVGioAT6K1cU+NrrJgoFc9Znle4USjAgiCttfOu8ZXXySpm8kpwzlPCa +m7tg76cpOHB9Gw1vt4DQdgjTjBDiIMjQIa8BRdIgvjC0VodFMe950cBuYpTrX27W +KdFpsqWfD423uWPyVMxO/8k1E0epuHnLxqNEX55+yPM24PxiHVxsm6YSeViIAxj0 +NXNXYSAoHQKob+8NysWT4QhrezdF8Cj6zbvlIrpJdmRiwcvbvBp4bnj6wg5OYAPM +pNqjII1A52ryOn5jVEfZvBb6s18ZIm9d/xGPugVsbJhBJy6S +-----END CERTIFICATE----- diff --git a/kubernetes/dev/cockroachdb/certs/client.root.key b/kubernetes/dev/cockroachdb/certs/client.root.key new file mode 100644 index 0000000..70371f7 --- /dev/null +++ b/kubernetes/dev/cockroachdb/certs/client.root.key @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEpQIBAAKCAQEAvOxmRsOIY0WD6MLXr54vMvka/KC8ieQWWMGDElytqNG56rco +p9aWDVZPDpKqiJT5zW4GIrzCLPXvOTKjorWU5psiVG63IA9k2fHsX6IG+FszDy7O +uW9Zko0JNYAmLgy0s0N6xKqZwJ0SX7vJwmQYSZfLIOMbP5S0joGrlrH8w32VzwKg +ooBzorOqKJh/QxHoDZ/nDCby2HyRPz0ci3njUvISVSvQmO21g6GtHQ7zaAXXVR/o +5NgLGLJJoddNelbJhdezpiwVqqb5jdRl+ciTeOTAw9Ni5DcehV7rpg8Hzsls98ya +I7j40EaCqlKrZ32f6XzvMYm6bBRoVByraz/XJQIDAQABAoIBAAVHOYhKmDnlzEyp +fOssKTdsXEOonfvgQnuSVH4j1ro7uc0D9v/Rb/nJaoYGtPsB5oTFySgZS/eDm35m +msnF9vYGaYwgV79ujqvEJY16cmVn7uJCtYXaxY7hn9s9zFNHCZlkjj6GYatO+B9y +mK10rHUJ56PwlGdPWUgN+WRJbr1rbXJ0XhaNlR7d39XxrxFFI4MOvw2DNOvAOG6g +foIpA4ZeLhcGYIjsZxqrOZqVh1br4w5rWEvGqONi6LCrvwtMuNLAWExASkLJKIzw +vQ9jHpxYNqak0PHpsrHtUx50WsMt0ea1u/ioMKPNXs/Lkj18eGYpVI+S1wxDgKV+ +m6K6uZUCgYEA9UKYCV1KiKAINTtwbTKHSa/vn/U6JKOLQUvPD2qpbVRdgS2R1mQS +soqeDW1d+Y4tRk/tnlmpolkuuNDxulr2CTm6wbgeU6TnF7pq7ClIZK3hv2VGTT3B +uXxx+cQ+zjqygAidopjLMUH/3aO7Ldw6gcuCLrjN1xEVJiD4IGTwxtsCgYEAxTJD +Fl9m5g3bCQPfpSfclI0weNPHIoVQ63IcqRHH+e0BR03YZWbq8lMl+t81q6G/rsIH +jD1Pl5RW9EhgguXOoMXeKVpT34M+gcJ0PdEI6+WZ3ZjJ0kwwPcypsA93aZmZx883 +iksC2ZfIKqpCwguDKyvb5EcLNzrDSnMAl7NZOf8CgYEAoVqKg76ohnIidEMCmBSi +BMyGrYm8Eta1iuPA+beGd7MFQTMluxJjaqrfiJ3nMYNkLdnvzjnW7EQYBOcR4TRu +oWslfsUOzqCymF3AclZGllX/KtgKBE8Y4FsK8PM3Dp53SNxiONKk+2ccWkiZoHY+ +1513rB1Q7qkCbO9LzqQZ8/kCgYEAgFAYPzKMrh1N7SvMFpc9fJvycmy7IsdExC9Y +XtrnGMUTE+afbDvvnQZlrDwZnDh/laNDbglnBObNPd7qjcIjFZIq4RWZhdLMlXqG +UML33ydjW0HT8TcKHOxTbfBibyA3ZEB9j0sH67ZL1Rc8oS8Ehs7fIkboEWP3NzZl +qFBXOtkCgYEAz9L2J9rpXQgwbPCOCjuPvm+zvAnGXdNgrUsVd8Tk1wczc5FyaBxw +DMgHo1BxELPETb0hNxEdQ0DdR83MXp0PZA1IG1XKcAH8CXloELwN3jpM+/6PHQRz +vdvkLPv3wM1Qdj4g6FlnPvlJHAlPytnDrUbSWxA6xMVYQJKw8na2Cm8= +-----END RSA PRIVATE KEY----- diff --git a/kubernetes/dev/cockroachdb/certs/node.crt b/kubernetes/dev/cockroachdb/certs/node.crt new file mode 100644 index 0000000..c387b0c --- /dev/null +++ b/kubernetes/dev/cockroachdb/certs/node.crt @@ -0,0 +1,24 @@ +-----BEGIN CERTIFICATE----- +MIID+jCCAuKgAwIBAgIQI/uQsaTfs97kfvVSTD400zANBgkqhkiG9w0BAQsFADAr +MRIwEAYDVQQKEwlDb2Nrcm9hY2gxFTATBgNVBAMTDENvY2tyb2FjaCBDQTAeFw0y +NTAxMjUyMDI0MTBaFw0zMDAxMzAyMDI0MTBaMCMxEjAQBgNVBAoTCUNvY2tyb2Fj +aDENMAsGA1UEAxMEbm9kZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +AJ8eplN7Xp2XZYJqlp+BvOh6sN0CqVo7tCbuXSt1ZpeC0EzRTU4u1j7cGhExzYSj +VUGootjPZIjB6OQu6JHzheubWUzYMXBC72PjKYbbwoE69b98GsIP9aJ3++0j5dln +TUP/SgiVf90w3ltb6MdlWX9VMpqsmCj3b1CqNfGT+Xc/pbSCN1oT7m5XUsaGkaux +BKp9QeI6Zii8q+qyt/U1+qFCE1AVMoJe/KRM3O3j+3G+90t/IKGnJj3wtSs8+BzC +FV2ZBPJcLsmL0are9yOVU+xhc8drLdefxZQiNL8nb3MgqQ/uVSfDhraMlna+mpxo +lLDm1Zm4AKlztwwxvIV+dT8CAwEAAaOCASAwggEcMA4GA1UdDwEB/wQEAwIFoDAd +BgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwHwYDVR0jBBgwFoAU5Olr9c4v +u7OLVJrlGOtFrdh5+qQwgckGA1UdEQSBwTCBvoIJbG9jYWxob3N0ghJjb2Nrcm9h +Y2hkYi1wdWJsaWOCGmNvY2tyb2FjaGRiLXB1YmxpYy5kZWZhdWx0gixjb2Nrcm9h +Y2hkYi1wdWJsaWMuZGVmYXVsdC5zdmMuY2x1c3Rlci5sb2NhbIINKi5jb2Nrcm9h +Y2hkYoIVKi5jb2Nrcm9hY2hkYi5kZWZhdWx0gicqLmNvY2tyb2FjaGRiLmRlZmF1 +bHQuc3ZjLmNsdXN0ZXIubG9jYWyHBH8AAAEwDQYJKoZIhvcNAQELBQADggEBAIth +4wIOZDDcuNDtsy3dxB2q/6miFaO0p2/iUyMci3b1nwlLTliKzWGgOCwNGGR4UXOM +zVQ1bu8I2w4zY5xF047xQDQR+ek4HyOayxLlua1fVCVq4jxv23vgJA4Gv0IhUbay +TfjnDDFhijy9URzBoVAwXAx2hGu1PlFmZ1bHjre13s1mTohO3nMTA+GsMGkLk8FB +M5wWDP8UKC9zmUXPSFLEscLWzjJ015Y/tqZUMFWB4bFsGKAxdkBR2PTWbnDETfrJ +7HymCOLBFinbMs8m+NPz1j+B8MGlwi0Eu5SWxiyWkt5FtczBdMcgnuVhZBWqqxko +E13Q6CHbMt+P3Ky3FMQ= +-----END CERTIFICATE----- diff --git a/kubernetes/dev/cockroachdb/certs/node.key b/kubernetes/dev/cockroachdb/certs/node.key new file mode 100644 index 0000000..c220abd --- /dev/null +++ b/kubernetes/dev/cockroachdb/certs/node.key @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEowIBAAKCAQEAnx6mU3tenZdlgmqWn4G86Hqw3QKpWju0Ju5dK3Vml4LQTNFN +Ti7WPtwaETHNhKNVQaii2M9kiMHo5C7okfOF65tZTNgxcELvY+MphtvCgTr1v3wa +wg/1onf77SPl2WdNQ/9KCJV/3TDeW1vox2VZf1UymqyYKPdvUKo18ZP5dz+ltII3 +WhPubldSxoaRq7EEqn1B4jpmKLyr6rK39TX6oUITUBUygl78pEzc7eP7cb73S38g +oacmPfC1Kzz4HMIVXZkE8lwuyYvRqt73I5VT7GFzx2st15/FlCI0vydvcyCpD+5V +J8OGtoyWdr6anGiUsObVmbgAqXO3DDG8hX51PwIDAQABAoIBAFvoOi3yDl58Ohew +NTwAlfq6Ezo09Vi3L4FlIM+fShitaF9WbY6BIyK/wxa3a3v3U6FPJHCSqgEL79cM ++SyEOpAx9Myb+0Jahyds6GmKubgnNBbcOiBpU3n6T7tThsmiD1D9PefjYi2CsoyW +c8foVF9l+Iq6slDHSraO+gWFcQxc/9CizRsInGqHA64anN6XvBZoVBLlu2Fowg4G +EducEOiGCekYLiOUDcLBegv57STIA/lTQ8pqFk7HcFYgg4NQhMFoS1E79zdlkZfq +j7X/DHMbt8zvRZIlWp1PrDYMysYVQVCT0PbaSd8+x9bUbDKkoMkgSj/NHsQXYn4a +muEhj+ECgYEAx8NZxZ9JU4NL5rNN2crfs/QPwxCgKp+BI41px9hqLOWKqDfMB7fI +EjOlLJveZ07sFF2Yf2gMkzCwdrmHc2g0Rj0Csqzss6Si3ppvD6EIwREnmziiJplR +mq6dQzgd5u1p9YcbIZhjzKFvRWy9JR4Kl/0A+h0zN8QupvxelRBslZkCgYEAy+ow +J9cTUqEeBL69BQU2CUTnc/MKCKGeTPRWqtKfODd7uglTaUgQ0DxDBoJxnS4ORcCN +9isT/UNJov8ufoZ1U8Kk+nBX++K5QFb46/TEomxeW+oabBg1+oLEPyqmd0H2p5er +JDsgsURUAcgKEV6ac11rzl2rwwfhgo9WVTB2+JcCgYEAwEeu32QFBpe4tWUdqGd4 +kBR6H36fTKeffAMgMLaE7JY9stGSWFN0BuEjOh8GIlZ7MtcsdGZIxFz3XjASyukg +eAM915JPfFMaWj44bMjKTlwezW/j1Fd7jvJIeW1IiwE3HphfayTt2wgAvMh//3w9 +IjLrf9QfeqwhY6ZDvCPFAPECgYBHUHfW9xkC5OYisrJYdyIWy8pGetEfg6ZhM3K7 ++z1D4+OZhHlvcIywxuKJ/ETPu7OyIU2Esjwjbszp/GS+SzftOz2HeJLMvNYc8k3L +96ZtR4kYjB8BftYh7mnDzZ66Ro+EvT5VRXiBhmv604Lx4CwT/LAfVBMl+jOb/ZUr +5e81sQKBgEmLXN7NBs/3TXukSBwxvcixZWmgFVJIfrUhXN34p1T0BjaFKaTKREDZ +ulpnWImY9p/Q5ey1dpNlC3b9c/ZNseBXwOfmSP6TkaWpWBWNgwVOWMa6r6gPDVgZ +TlEn2zeJH+4YjrMZga0Aoeg7HcJondSV0s8jQqBhRNVZFSMjF+tA +-----END RSA PRIVATE KEY----- diff --git a/kubernetes/dev/cockroachdb/cli/README.md b/kubernetes/dev/cockroachdb/cli/README.md new file mode 100644 index 0000000..11587a9 --- /dev/null +++ b/kubernetes/dev/cockroachdb/cli/README.md @@ -0,0 +1,3 @@ +sudo mkdir -p /usr/local/lib/cockroach +sudo cp -i lib/libgeos.so /usr/local/lib/cockroach/ +sudo cp -i lib/libgeos_c.so /usr/local/lib/cockroach/ diff --git a/kubernetes/dev/cockroachdb/cli/lib/libgeos.so b/kubernetes/dev/cockroachdb/cli/lib/libgeos.so new file mode 100644 index 0000000..fc070d6 Binary files /dev/null and b/kubernetes/dev/cockroachdb/cli/lib/libgeos.so differ diff --git a/kubernetes/dev/cockroachdb/cli/lib/libgeos_c.so b/kubernetes/dev/cockroachdb/cli/lib/libgeos_c.so new file mode 100644 index 0000000..758db31 Binary files /dev/null and b/kubernetes/dev/cockroachdb/cli/lib/libgeos_c.so differ diff --git a/kubernetes/dev/cockroachdb/cockroachdb.yaml b/kubernetes/dev/cockroachdb/cockroachdb.yaml new file mode 100644 index 0000000..f44da3e --- /dev/null +++ b/kubernetes/dev/cockroachdb/cockroachdb.yaml @@ -0,0 +1,289 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: cockroachdb +# namespace: cockroachdb + labels: + app: cockroachdb +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: cockroachdb +# namespace: cockroachdb + labels: + app: cockroachdb +rules: +- apiGroups: + - "" + resources: + - secrets + verbs: + - get +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: cockroachdb +# namespace: cockroachdb + labels: + app: cockroachdb +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: cockroachdb +subjects: +- kind: ServiceAccount + name: cockroachdb +# namespace: default +--- +apiVersion: v1 +kind: Service +metadata: + # This service is meant to be used by clients of the database. It exposes a ClusterIP that will + # automatically load balance connections to the different database pods. + name: cockroachdb-public +# namespace: cockroachdb + labels: + app: cockroachdb +spec: + ports: + # The main port, served by gRPC, serves Postgres-flavor SQL, internode + # traffic and the cli. + - port: 26257 + targetPort: 26257 + name: grpc + # The secondary port serves the UI as well as health and debug endpoints. + - port: 8080 + targetPort: 8080 + name: http + selector: + app: cockroachdb +--- +apiVersion: v1 +kind: Service +metadata: + # This service only exists to create DNS entries for each pod in the stateful + # set such that they can resolve each other's IP addresses. It does not + # create a load-balanced ClusterIP and should not be used directly by clients + # in most circumstances. + name: cockroachdb +# namespace: cockroachdb + labels: + app: cockroachdb + annotations: + # Use this annotation in addition to the actual publishNotReadyAddresses + # field below because the annotation will stop being respected soon but the + # field is broken in some versions of Kubernetes: + # https://github.com/kubernetes/kubernetes/issues/58662 + service.alpha.kubernetes.io/tolerate-unready-endpoints: "true" + # Enable automatic monitoring of all instances when Prometheus is running in the cluster. + prometheus.io/scrape: "true" + prometheus.io/path: "_status/vars" + prometheus.io/port: "8080" +spec: + ports: + - port: 26257 + targetPort: 26257 + name: grpc + - port: 8080 + targetPort: 8080 + name: http + # We want all pods in the StatefulSet to have their addresses published for + # the sake of the other CockroachDB pods even before they're ready, since they + # have to be able to talk to each other in order to become ready. + publishNotReadyAddresses: true + clusterIP: None + selector: + app: cockroachdb +--- +apiVersion: policy/v1 +kind: PodDisruptionBudget +metadata: + name: cockroachdb-budget +# namespace: cockroachdb + labels: + app: cockroachdb +spec: + selector: + matchLabels: + app: cockroachdb + maxUnavailable: 1 +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: cockroachdb +# namespace: cockroachdb +spec: + serviceName: "cockroachdb" + replicas: 3 + selector: + matchLabels: + app: cockroachdb + template: + metadata: + labels: + app: cockroachdb + spec: + serviceAccountName: cockroachdb + affinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - weight: 100 + podAffinityTerm: + labelSelector: + matchExpressions: + - key: app + operator: In + values: + - cockroachdb + topologyKey: kubernetes.io/hostname + containers: + - name: cockroachdb + image: cockroachdb/cockroach:v24.1.2 + imagePullPolicy: IfNotPresent + args: ["-- insecure"] + # TODO: Change these to appropriate values for the hardware that you're running. You can see + # the resources that can be allocated on each of your Kubernetes nodes by running: + # kubectl describe nodes + # Note that requests and limits should have identical values. + resources: + requests: + cpu: "2" + memory: "2Gi" + limits: + cpu: "2" + memory: "2Gi" + ports: + - containerPort: 26257 + name: grpc + - containerPort: 8080 + name: http +# We recommend that you do not configure a liveness probe on a production environment, as this can impact the availability of production databases. +# livenessProbe: +# httpGet: +# path: "/health" +# port: http +# scheme: HTTPS +# initialDelaySeconds: 30 +# periodSeconds: 5 + readinessProbe: + httpGet: + path: "/health?ready=1" + port: http + scheme: HTTPS + initialDelaySeconds: 10 + periodSeconds: 5 + failureThreshold: 2 + volumeMounts: + - name: datadir + mountPath: /cockroach/cockroach-data + - name: certs + mountPath: /cockroach/cockroach-certs + env: + - name: COCKROACH_CHANNEL + value: kubernetes-secure + - name: GOMAXPROCS + valueFrom: + resourceFieldRef: + resource: limits.cpu + divisor: "1" + - name: MEMORY_LIMIT_MIB + valueFrom: + resourceFieldRef: + resource: limits.memory + divisor: "1Mi" + command: + - "/bin/bash" + - "-ecx" + # The use of qualified `hostname -f` is crucial: + # Other nodes aren't able to look up the unqualified hostname. + - exec + /cockroach/cockroach + start + --logtostderr + --certs-dir /cockroach/cockroach-certs + --advertise-host $(hostname -f) + --http-addr 0.0.0.0 + --join cockroachdb-0.cockroachdb,cockroachdb-1.cockroachdb,cockroachdb-2.cockroachdb + --cache $(expr $MEMORY_LIMIT_MIB / 4)MiB + --max-sql-memory $(expr $MEMORY_LIMIT_MIB / 4)MiB + # No pre-stop hook is required, a SIGTERM plus some time is all that's + # needed for graceful shutdown of a node. + terminationGracePeriodSeconds: 60 + volumes: + - name: datadir + persistentVolumeClaim: + claimName: datadir + - name: certs + secret: + secretName: cockroachdb.node + defaultMode: 256 + podManagementPolicy: Parallel + updateStrategy: + type: RollingUpdate + volumeClaimTemplates: + - metadata: + name: datadir + spec: + accessModes: + - "ReadWriteOnce" + resources: + requests: + storage: 1Gi +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: cockroach-tls +# namespace: cockroachdb +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`cockroach-prod.allarddcs.nl`) + services: + - name: cockroachdb-public + port: 8080 + tls: + passthrough: true +--- +# Generated file, DO NOT EDIT. Source: cloud/kubernetes/templates/bring-your-own-certs/client.yaml +# This config file demonstrates how to connect to the CockroachDB StatefulSet +# defined in bring-your-own-certs-statefulset.yaml that uses certificates +# created outside of Kubernetes. See that file for why you may want to use it. +# You should be able to adapt the core ideas to deploy your own custom +# applications and connect them to the database similarly. +# +# The pod that this file defines will sleep in the cluster not using any +# resources. After creating the pod, you can use it to open up a SQL shell to +# the database by running: +# +# kubectl exec -it cockroachdb-client-secure -- ./cockroach sql --url="postgres://root@cockroachdb-public:26257/?sslmode=verify-full&sslcert=/cockroach-certs/client.root.crt&sslkey=/cockroach-certs/client.root.key&sslrootcert=/cockroach-certs/ca.crt" +apiVersion: v1 +kind: Pod +metadata: + name: cockroachdb-client-secure +# namespace: cockroachdb + labels: + app: cockroachdb-client +spec: + serviceAccountName: cockroachdb + containers: + - name: cockroachdb-client + image: cockroachdb/cockroach:v24.1.2 + # Keep a pod open indefinitely so kubectl exec can be used to get a shell to it + # and run cockroach client commands, such as cockroach sql, cockroach node status, etc. + command: + - sleep + - "2147483648" # 2^31 + volumeMounts: + - name: client-certs + mountPath: /cockroach-certs + volumes: + - name: client-certs + secret: + secretName: cockroachdb.client.root + defaultMode: 256 + diff --git a/kubernetes/dev/cockroachdb/install.sh b/kubernetes/dev/cockroachdb/install.sh new file mode 100755 index 0000000..e932193 --- /dev/null +++ b/kubernetes/dev/cockroachdb/install.sh @@ -0,0 +1,16 @@ +#!/bin/bash +rm -rf certs +rm -rf my-safe-directory +mkdir certs +mkdir my-safe-directory +cockroach cert create-ca --certs-dir=certs --ca-key=my-safe-directory/ca.key +cockroach cert create-client root --certs-dir=certs --ca-key=my-safe-directory/ca.key +#microk8s kubectl create ns cockroachdb +microk8s kubectl create secret generic cockroachdb.client.root --from-file=certs +cockroach cert create-node --certs-dir=certs --ca-key=my-safe-directory/ca.key localhost 127.0.0.1 cockroachdb-public cockroachdb-public.default cockroachdb-public.default.svc.cluster.local *.cockroachdb *.cockroachdb.default *.cockroachdb.default.svc.cluster.local +microk8s kubectl create secret generic cockroachdb.node --from-file=certs +microk8s kubectl create -f cockroachdb.yaml +microk8s kubectl get pod +microk8s kubectl exec -it cockroachdb-0 \ +-- /cockroach/cockroach init \ +--certs-dir=/cockroach/cockroach-certs diff --git a/kubernetes/dev/cockroachdb/my-safe-directory/ca.key b/kubernetes/dev/cockroachdb/my-safe-directory/ca.key new file mode 100644 index 0000000..2ef8b3d --- /dev/null +++ b/kubernetes/dev/cockroachdb/my-safe-directory/ca.key @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEowIBAAKCAQEAvBJOTewyeYeWUncc7wx27bRCaDH7YawGyaltYypUzo93li+8 +K5UwVSYfy3mxNp47IQXebDPCQITct5pGq/EBTrWGJ/MLf8ZcCfPvvzylsqsesFFf +S5y0sYof+JzyowDOJflWsQnJLIK5kD32fvupvc0dKY8q/4WN/Ra1kiUm6ZcFYWVK +Jx2s2ZVWcDP5xh+obCgP3F4cTsLjo1mkoRPMSLw5w9M5x3AiDgi6zwkcw9aUVq0l +BciAlI4cAHC4Awc1AP3OazYV/E+cC6dtzS+55KRGQIYOp/pkgBKsTAd2ahuZTh8Z +WXySp30X0luRUO9wBksGEt5ixx5QdtOd0jQWLQIDAQABAoIBAQCwnCQqap7vnxLb +t/1UwojAKeGehSlCjFAHefI+CFeBbhpnz8XNy5iKrXV4F3wCBU8TcLZxN524Bsxa +Iicxee23YyFrTIJE6BowQoGmPSaBBM6Z1qA9mhfZDRN+3KvBxJTR9jaho8Xl5ZCq +UnWyw1Of6Aj1qPtA3sL6oyO47OiAu3Ph2+jlXBTlpmNQlz3BjansHpV0l9IsYY0H +dhAieMY4piYzB6LIFQUBH8T7gxnToPvgulSWaKV1mG7Xw/lSoj1YpDXXWYWMfiDB +Xl55Pyrp44J8+cdATGFIgk+ln5aeDQNtVV3wLIHsSrZaZ6ojFFpBY3qj4LvYmRjS +0Sj79ErFAoGBAN/riyjNfgSRs2wqsMPcVwetKHmP7we5wA8WAWMj1glDfjhNfHo1 +J6gEYASc2ai44aK5P6XIGeAt1NmAAqaeJKKk1/fMUKbgCLLeG+Ds24Q9FTIigUpW +kMctLTHJ9mkr2xSNfBUrjwvsvnZKYox6tBcYPDsnpgj/lkEJ7S32S5MjAoGBANcD +/ElaTUHFOr/q6YALQUgw97xBSff1WLa5ESByUXrirpNyKchnU6hY1Ndo9snd4QZs +RZIsPEPBbR1hN2R/gTbUn2hVGPxLZ0wUs/IbsYPXAsunRD87g2gI0W++OR3sz5j4 +p/6NodgsRcOmAXG1pZwJAFAJLTqUkTF0yXg8dS5vAoGACK6MRbe59BlmGIKLOfzY +Dv8iu5veC7GjBbK3uQ1RpihMw4gVlHNtJzGMO4GNWuJYNUPzeM0KW8vLHee9spId +H4U+rmfolJ/JFo5QDGeCl1z67meyFZzHnkFdKDoJaMh/hQt7TSLUOAUk2VdG/OVh +CCgzZaPC50RpofntjUOoaHsCgYBORvoq7kAgCKCZy/jUD8TldkZKd+5o4h4472kn +ydaWCT6LGU3S0qMnL6fVADaQSUGp5/LwA0CxXhLOVl0nLjApeQDLp+dfukfR79uO +8bwPhlBTOgLjjlQJpOQybSs4FMWDKEtopcFdBMklMCNodTvkcXZ2rNCVeg7d1Wmf +Z0s16wKBgA8KPg/7fEdmXItkbcVd2tyngCOo1NNXyGmZ7SnrkoXilyiKzZwmeUZl +PN27ciS/VpKTb278tNdQudmlBs28/McKddz9SnAKvTP/WbUXAh3gpeDTX9KVD7++ +Z7wCBrQcb2z5WG2ojUwbYYZGjuouYJT2WGElDoOxRT4eCSbgj4kB +-----END RSA PRIVATE KEY----- diff --git a/kubernetes/dev/cockroachdb/pvc.yaml b/kubernetes/dev/cockroachdb/pvc.yaml new file mode 100755 index 0000000..2b98516 --- /dev/null +++ b/kubernetes/dev/cockroachdb/pvc.yaml @@ -0,0 +1,336 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: cockroachdb + namespace: cockroachdb + labels: + app: cockroachdb +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: cockroachdb + namespace: cockroachdb + labels: + app: cockroachdb +rules: +- apiGroups: + - "" + resources: + - secrets + verbs: + - get +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: cockroachdb + namespace: cockroachdb + labels: + app: cockroachdb +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: cockroachdb +subjects: +- kind: ServiceAccount + name: cockroachdb + namespace: default +--- +apiVersion: v1 +kind: Service +metadata: + # This service is meant to be used by clients of the database. It exposes a ClusterIP that will + # automatically load balance connections to the different database pods. + name: cockroachdb-public + namespace: cockroachdb + labels: + app: cockroachdb +spec: + ports: + # The main port, served by gRPC, serves Postgres-flavor SQL, internode + # traffic and the cli. + - port: 26257 + targetPort: 26257 + name: grpc + # The secondary port serves the UI as well as health and debug endpoints. + - port: 8080 + targetPort: 8080 + name: http + selector: + app: cockroachdb +--- +apiVersion: v1 +kind: Service +metadata: + # This service only exists to create DNS entries for each pod in the stateful + # set such that they can resolve each other's IP addresses. It does not + # create a load-balanced ClusterIP and should not be used directly by clients + # in most circumstances. + name: cockroachdb + namespace: cockroachdb + labels: + app: cockroachdb + annotations: + # Use this annotation in addition to the actual publishNotReadyAddresses + # field below because the annotation will stop being respected soon but the + # field is broken in some versions of Kubernetes: + # https://github.com/kubernetes/kubernetes/issues/58662 + service.alpha.kubernetes.io/tolerate-unready-endpoints: "true" + # Enable automatic monitoring of all instances when Prometheus is running in the cluster. + prometheus.io/scrape: "true" + prometheus.io/path: "_status/vars" + prometheus.io/port: "8080" +spec: + ports: + - port: 26257 + targetPort: 26257 + name: grpc + - port: 8080 + targetPort: 8080 + name: http + # We want all pods in the StatefulSet to have their addresses published for + # the sake of the other CockroachDB pods even before they're ready, since they + # have to be able to talk to each other in order to become ready. + publishNotReadyAddresses: true + clusterIP: None + selector: + app: cockroachdb +--- +apiVersion: policy/v1 +kind: PodDisruptionBudget +metadata: + name: cockroachdb-budget + namespace: cockroachdb + labels: + app: cockroachdb +spec: + selector: + matchLabels: + app: cockroachdb + maxUnavailable: 1 +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: cockroachdb + namespace: cockroachdb +spec: + serviceName: "cockroachdb" + replicas: 3 + selector: + matchLabels: + app: cockroachdb + template: + metadata: + labels: + app: cockroachdb + spec: + serviceAccountName: cockroachdb + affinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - weight: 100 + podAffinityTerm: + labelSelector: + matchExpressions: + - key: app + operator: In + values: + - cockroachdb + topologyKey: kubernetes.io/hostname + containers: + - name: cockroachdb + image: cockroachdb/cockroach:v24.1.2 + imagePullPolicy: IfNotPresent + # TODO: Change these to appropriate values for the hardware that you're running. You can see + # the resources that can be allocated on each of your Kubernetes nodes by running: + # kubectl describe nodes + # Note that requests and limits should have identical values. + resources: + requests: + cpu: "2" + memory: "2Gi" + limits: + cpu: "2" + memory: "2Gi" + ports: + - containerPort: 26257 + name: grpc + - containerPort: 8080 + name: http +# We recommend that you do not configure a liveness probe on a production environment, as this can impact the availability of production databases. +# livenessProbe: +# httpGet: +# path: "/health" +# port: http +# scheme: HTTPS +# initialDelaySeconds: 30 +# periodSeconds: 5 + readinessProbe: + httpGet: + path: "/health?ready=1" + port: http + scheme: HTTPS + initialDelaySeconds: 10 + periodSeconds: 5 + failureThreshold: 2 + volumeMounts: + - name: datadir + mountPath: /cockroach/cockroach-data + - name: certs + mountPath: /cockroach/cockroach-certs + env: + - name: COCKROACH_CHANNEL + value: kubernetes-secure + - name: GOMAXPROCS + valueFrom: + resourceFieldRef: + resource: limits.cpu + divisor: "1" + - name: MEMORY_LIMIT_MIB + valueFrom: + resourceFieldRef: + resource: limits.memory + divisor: "1Mi" + command: + - "/bin/bash" + - "-ecx" + # The use of qualified `hostname -f` is crucial: + # Other nodes aren't able to look up the unqualified hostname. + - exec + /cockroach/cockroach + start + --logtostderr + --certs-dir /cockroach/cockroach-certs + --advertise-host $(hostname -f) + --http-addr 0.0.0.0 + --join cockroachdb-0.cockroachdb,cockroachdb-1.cockroachdb,cockroachdb-2.cockroachdb + --cache $(expr $MEMORY_LIMIT_MIB / 4)MiB + --max-sql-memory $(expr $MEMORY_LIMIT_MIB / 4)MiB + # No pre-stop hook is required, a SIGTERM plus some time is all that's + # needed for graceful shutdown of a node. + terminationGracePeriodSeconds: 60 + volumes: + - name: datadir + persistentVolumeClaim: + claimName: datadir + - name: certs + secret: + secretName: cockroachdb.node + defaultMode: 256 + podManagementPolicy: Parallel + updateStrategy: + type: RollingUpdate + volumeClaimTemplates: + - metadata: + name: datadir + spec: + accessModes: + - "ReadWriteOnce" + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: datadir-cockroachdb-0 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/cockroachdb/0 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: datadir-cockroachdb-1 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/cockroachdb/1 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: datadir-cockroachdb-2 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/cockroachdb/2 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: datadir-cockroachdb-0 + namespace: cockroachdb +spec: + storageClassName: nfs-client + volumeName: datadir-cockroachdb-0 + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: datadir-cockroachdb-1 + namespace: cockroachdb +spec: + storageClassName: nfs-client + volumeName: datadir-cockroachdb-1 + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: datadir-cockroachdb-2 + namespace: cockroachdb +spec: + storageClassName: nfs-client + volumeName: datadir-cockroachdb-2 + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/kubernetes/dev/cockroachdb/run-server.sh b/kubernetes/dev/cockroachdb/run-server.sh new file mode 100644 index 0000000..c4f41a8 --- /dev/null +++ b/kubernetes/dev/cockroachdb/run-server.sh @@ -0,0 +1,41 @@ +#!/bin/bash + +launcherJar=( server/plugins/org.jkiss.dbeaver.launcher*.jar ) + +echo "Starting CloudBeaver Enterprise Server" + +[ ! -d "workspace/.metadata" ] && mkdir -p workspace/.metadata \ + && mkdir -p workspace/GlobalConfiguration/.dbeaver \ + && [ ! -f "workspace/GlobalConfiguration/.dbeaver/data-sources.json" ] \ + && cp conf/initial-data-sources.conf workspace/GlobalConfiguration/.dbeaver/data-sources.json + +exec java ${JAVA_OPTS} \ + -Dfile.encoding=UTF-8 \ + --add-modules=ALL-SYSTEM \ + --add-opens=java.base/java.io=ALL-UNNAMED \ + --add-opens=java.base/java.lang=ALL-UNNAMED \ + --add-opens=java.base/java.lang.reflect=ALL-UNNAMED \ + --add-opens=java.base/java.net=ALL-UNNAMED \ + --add-opens=java.base/java.nio=ALL-UNNAMED \ + --add-opens=java.base/java.nio.charset=ALL-UNNAMED \ + --add-opens=java.base/java.text=ALL-UNNAMED \ + --add-opens=java.base/java.time=ALL-UNNAMED \ + --add-opens=java.base/java.util=ALL-UNNAMED \ + --add-opens=java.base/java.util.concurrent=ALL-UNNAMED \ + --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED \ + --add-opens=java.base/jdk.internal.vm=ALL-UNNAMED \ + --add-opens=java.base/jdk.internal.misc=ALL-UNNAMED \ + --add-opens=java.base/sun.nio.ch=ALL-UNNAMED \ + --add-opens=java.base/sun.security.ssl=ALL-UNNAMED \ + --add-opens=java.base/sun.security.action=ALL-UNNAMED \ + --add-opens=java.base/sun.security.util=ALL-UNNAMED \ + --add-opens=java.security.jgss/sun.security.jgss=ALL-UNNAMED \ + --add-opens=java.security.jgss/sun.security.krb5=ALL-UNNAMED \ + --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED \ + --add-opens=java.sql/java.sql=ALL-UNNAMED \ + -jar ${launcherJar} \ + -product io.cloudbeaver.product.ee.product \ + -data ${workspacePath} \ + -web-config conf/cloudbeaver.conf \ + -nl en \ + -registryMultiLanguage diff --git a/kubernetes/dev/cockroachdb/uninstall.sh b/kubernetes/dev/cockroachdb/uninstall.sh new file mode 100755 index 0000000..e72dc03 --- /dev/null +++ b/kubernetes/dev/cockroachdb/uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash +microk8s kubectl delete -f cockroachdb.yaml +microk8s kubectl delete pvc datadir-cockroachdb-0 -n cockroachdb +microk8s kubectl delete pvc datadir-cockroachdb-1 -n cockroachdb +microk8s kubectl delete pvc datadir-cockroachdb-2 -n cockroachdb +microk8s kubectl delete secret cockroachdb.node -n cockroachdb +microk8s kubectl delete secret cockroachdb.client.root -n cockroachdb +microk8s kubectl delete ns cockroachdb +rm -rf certs +rm -rf my-safe-directory diff --git a/kubernetes/dev/cosign/README.md b/kubernetes/dev/cosign/README.md new file mode 100755 index 0000000..ba7193c --- /dev/null +++ b/kubernetes/dev/cosign/README.md @@ -0,0 +1,40 @@ +#signing image with sbom + +#generate sbom in spdx-format + +syft quay.alldcs.nl/allard/olproperties:master -o spdx > olproperties.spdx + +#attach the sbom to the image: + +cosign attach sbom --sbom olproperties.spdx quay.alldcs.nl/allard/olproperties:master + +WARNING: Attaching SBOMs this way does not sign them. If you want to sign them, use ' +cosign attest --predicate olproperties.spdx --key ' or 'cosign sign --key --attachment sbom ' + +Uploading SBOM file for [quay.alldcs.nl/allard/olproperties:master] to [quay.alldcs.nl/allard/olproperties:sha256-4d79a08eb15ea8c9730e77fc54bea37299b4ed21d8b875d95fd54cd78e3556c9.sbom] with mediaType [text/spdx]. + +#singn the sbom: + +cosing sign --key cosign.key quay.alldcs.nl/allard/olproperties:sha256-4d79a08eb15ea8c9730e77fc54bea37299b4ed21d8b875d95fd54cd78e3556c9.sbom + +- output: + +Enter password for private key: +WARNING: Image reference quay.alldcs.nl/allard/olproperties:sha256-4d79a08eb15ea8c9730e77fc54bea37299b4ed21d8b875d95fd54cd78e3556c9.sbom uses a tag, not a digest, to identify the image to sign. + This can lead you to sign a different image than the intended one. Please use a + digest (example.com/ubuntu@sha256:abc123...) rather than tag + (example.com/ubuntu:latest) for the input to cosign. The ability to refer to + images by tag will be removed in a future release. + + + The sigstore service, hosted by sigstore a Series of LF Projects, LLC, is provided pursuant to the Hosted Project Tools Terms of Use, available at https://lfprojects.org/policies/hosted-project-tools-terms-of-use/. + Note that if your submission includes personal data associated with this signed artifact, it will be part of an immutable record. + This may include the email address associated with the account with which you authenticate your contractual Agreement. + This information will be used for signing this artifact and will be stored in public transparency logs and cannot be removed later, and is subject to the Immutable Record notice at https://lfprojects.org/policies/hosted-project-tools-immutable-records/. + +By typing 'y', you attest that (1) you are not submitting the personal data of any other person; and (2) you understand and agree to the statement and the Agreement terms at the URLs listed above. +Are you sure you would like to continue? [y/N] y +tlog entry created with index: 41682114 +Pushing signature to: quay.alldcs.nl/allard/olproperties + +#attest diff --git a/kubernetes/dev/cosign/cosign.key b/kubernetes/dev/cosign/cosign.key new file mode 100755 index 0000000..867293c --- /dev/null +++ b/kubernetes/dev/cosign/cosign.key @@ -0,0 +1,11 @@ +-----BEGIN ENCRYPTED SIGSTORE PRIVATE KEY----- +eyJrZGYiOnsibmFtZSI6InNjcnlwdCIsInBhcmFtcyI6eyJOIjozMjc2OCwiciI6 +OCwicCI6MX0sInNhbHQiOiJxL1Fzdkk2di9JQlFjN096Z1N2aFhtNllYbGpHemVv +OFhDS2lRUE1jK0RvPSJ9LCJjaXBoZXIiOnsibmFtZSI6Im5hY2wvc2VjcmV0Ym94 +Iiwibm9uY2UiOiJ1T2h2c1AyMkh1d2M5RGF3OTZRNkVPcFNTTHhmbG5BKyJ9LCJj +aXBoZXJ0ZXh0IjoicHcxdm5BSENQUmgrZmMrM0t6UjVQTzdUU1hjcGRsMkEvdmhW +T3JHS2IzRWxtWGlNS2l3Wlo5M2pFT1MvdjZic3hjWXlOL3NKcmY0Ulc0TVQreDNw +SXJWd1duTlJCUWhmZ0VLb0xLZXhKNktOcnhTa1R0OE8zT25nZE1XNlBzSVZueldl +dTdZUWQrRW9KQnRxalVqb1dXYTBtTjcyNVZKVTFUNkNWNlh1K1UxVHNtYndKOWtB +TUpYVkttNmJyQys4MFJDL3dCS0x2dnZmTXc9PSJ9 +-----END ENCRYPTED SIGSTORE PRIVATE KEY----- diff --git a/kubernetes/dev/cosign/cosign.pub b/kubernetes/dev/cosign/cosign.pub new file mode 100755 index 0000000..69bcd06 --- /dev/null +++ b/kubernetes/dev/cosign/cosign.pub @@ -0,0 +1,4 @@ +-----BEGIN PUBLIC KEY----- +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEhvRXr/p/gE2ZVuf/aq+RktGqLWyR +fVHwC7ROAnfKL5zcsO3Deoao5nBXESQ9/6P/YB9Zjrw82ST2N4+e6bzFkA== +-----END PUBLIC KEY----- diff --git a/kubernetes/dev/cosign/olproperties.spdx b/kubernetes/dev/cosign/olproperties.spdx new file mode 100755 index 0000000..86c6d30 --- /dev/null +++ b/kubernetes/dev/cosign/olproperties.spdx @@ -0,0 +1,85579 @@ +SPDXVersion: SPDX-2.3 +DataLicense: CC0-1.0 +SPDXID: SPDXRef-DOCUMENT +DocumentName: quay.alldcs.nl/allard/olproperties +DocumentNamespace: https://anchore.com/syft/image/quay.alldcs.nl/allard/olproperties-61c53903-5d8d-4dab-a7de-0feb105774ff +LicenseListVersion: 3.21 +Creator: Organization: Anchore, Inc +Creator: Tool: syft-0.92.0 +Created: 2023-10-10T11:31:49Z + +##### Unpackaged files + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--about--.cpython-36.opt-1.pyc-7314dbf5dca99e34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--about--.cpython-36.opt-1.pyc-fc5230ffa4f95ec8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/__future__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--future--.cpython-36.opt-1.pyc-82e60336daa087c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/__future__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--future--.cpython-36.opt-2.pyc-a41ca6d27d308f6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-00c8ef91d429aa29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-0203baa8b6f189be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnfpluginscore/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-03d3fe8c77f50fd3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-0405a39da2708008 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/keylist/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-058fe2df355d8003 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-063e70a24c4fb099 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-09029d7e4fe8d0cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-0a7d6837e84d9c3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-12ed90316722ad3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-133d8ef687f8e7e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-1473ec0bdd42af92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-165995bed135e467 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-167327a68733a5a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-1982eebc0fc159c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/mainloop/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-1d0bd9b609d28c97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-2019a5e0338f3288 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-24105631a93ff688 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-2511a664dd30c890 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-26cb38fab61914a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-284dcca1964b9ef1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-28af62feb25c3bc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-29decca82df4f799 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/librepo/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-29ef19ba56d533e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-31f7a4b60f809010 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-32ea67152502e1e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3318f5a9f2808e87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-354ee15c23294564 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-378fedc1f8df93dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-397c6176322e5512 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3c92ac010f4a839a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3f30abb107278a66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3f93cf37a30614f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-41a9d75a8cf865fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-497e624491b24cf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4adcd7f1a48e8c12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4c5902d724a70931 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4d22e352e1974d50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4d95708de22d0f53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-502495156c470092 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/candlepin/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5501e1d157fec60f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-558a33dcb4220597 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/extern/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5759be629813113a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-578c0c52484b73c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5b888df91545e8ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5e8a13d5fbbe6a62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5fcc3a466c4cbaa1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-60f149ffaa24de75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-660b9c4a1d1cddb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-6711792db1cc38dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-67673167a92260b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-6a569ba60aa8046a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/zoneinfo/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-71e81aa26c2ad073 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/model/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-72020bcc4b9a2c94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-7229453558ea3dc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-732a58a88b2ff484 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-744232b454046932 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-7f7a3dfed1d5be99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-80f3d3dc0bda7ef8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/test/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-86d82e0098b045b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-88fec597c2d06493 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/data/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-8a03cbb86f6477e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-8a946590ec419f3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-90fbeee4b8c7be88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9206d9df3b36e7e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9828ecf2aec54cfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-991a943cc552a54c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9dd8ab68ae021173 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9fb93b5a8e5d5718 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a0d11256ccac47ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/branding/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a2fdee8d133d6a61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a383da6208c8e6c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/cli/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a3e27755e22c8c6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/repository/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a48bc122290710a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a4db67ac49b75764 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a511d9f21f12d702 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a67e2e376c2a47ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a7032fb3cc4e26f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a88541ab38d1f1f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a8b59012358588df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-aaadd09eac070481 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-abcbeaa554ba4e28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/compat/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-af11075ffe4f4bf0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b180d579c7541fcd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b2b93edd098f9876 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b36959984b232d12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b4198dc98f6ba853 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b54823917cdeaf35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b5c83f15c392af76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b601dee80609a284 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c295ad24803ef7c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c52927a4bbacf190 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/plugin/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c52aabcd8aed47e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c87cf7603aa77d4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c9b1f7c3e639a441 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-cd0add7c2de3763a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d1f4bee5a31001bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d29a23ca2810abd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d4b1afc98f2a74e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/tofu/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d7dee6bf1a6bc7f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/api/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d9edf31306aa5fc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-dadf5e4dbdd1f92c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-ddd2f9040fe85335 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-ddf2dbf8c234ce53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-dfc81911117e9a39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e08ea33543746d8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e3cdf232cd6d0f44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e8497428fa253090 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e938b0b6af22b8af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/ga_impls/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-eacae27c4b8a73e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-eb2f82046aa36632 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/backports/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-eb50c11fdf02196a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-ebe8ec569341c7e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-f2bd2b115dc7d334 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-f673343fdc230327 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/__pycache__/__init__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-1.pyc-f70d4e7364c6f38e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0585bf705180ceec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0a659e1ff826714a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0e59c2eace6a28ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0eaa7d2d6cd931c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0fde465ee16b4a5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-1831ce8d00923b12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-18c8e685b35b8e9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-2551da148a76630b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-2714fd2cfa8713ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-29d87d4eaa3ab29e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-2a4966480df0b688 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-394bbd2999551ef9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-4b327a11c084e4af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-5a80dfac812f4265 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-6db3b6dc9864dcb3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-7524c3abf5cb39ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-8545b1a9966f10b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-8b679c40f437d69d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-94230cc6a88b2e37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-97fe953b29e4dfde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-987ac8edc6924609 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-9d3aadf49edb8e1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-a41be7e9d3c1c206 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b01c6b82447c34ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b3868ca91bf45220 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b62972ed0d55164b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b7ad3f47be155e0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-bc26d3b536831a63 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-bd889e2df1447e76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-c683ca27748c7238 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-c7779a93be400030 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-cad93b6da68af350 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-d8a53622cc4f70a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-ddb8816b3ea67359 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-e200dece4692c59c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-e21df61fefea5bef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-e83df8f1804f05ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/__init__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--init--.cpython-36.opt-2.pyc-f3a08e520f8fc0e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/__main__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-1.pyc-1e3872f9404e7cd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/__main__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-1.pyc-c263ed9a97c27f4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/__main__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-1.pyc-eb534e8cbde32f26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__pycache__/__main__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-1.pyc-fd68f5476c2cfc36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/__main__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-2.pyc-233fd857b8a70671 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__pycache__/__main__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-2.pyc-27a8717d744c2b3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/__main__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-2.pyc-35865e243dd89df3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/__main__.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--main--.cpython-36.opt-2.pyc-df6a8ac571445dd2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/__phello__.foo.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--phello--.foo.cpython-36.opt-1.pyc-cdf091e7f1d4d9c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/__phello__.foo.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--phello--.foo.cpython-36.opt-2.pyc-39373982e138ae8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/__phello__.foo.cpython-36.pyc +SPDXID: SPDXRef-File-...--phello--.foo.cpython-36.pyc-a2f9287539caa86e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----about--.cpython-36.pyc-0cede162ca8e5e02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----about--.cpython-36.pyc-97a80f94464abbf8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/__future__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----future--.cpython-36.pyc-72ba3dfb08bfafed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/branding/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-00a9d4c170e10426 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0395c6a8f8d39ebb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0776f681adc97192 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-07b4378a4349c8e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-080c666f693cedaf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0a85a9fadd0431bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0b143480894caec4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0e4e38eb6ea8522c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/compat/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0fbdb4e61ef65c5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1af56c3b0c412a7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1b1232dfc5d46dc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1b49c6b81194c68c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1d17b31324dd368b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/repository/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1d24790747007727 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1d4ed8f2bd640cf7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/model/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1e8c733397d3acef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1f3bb5647e55e060 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2275d9b12f95ab80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-25d9da5db3b5c53e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2710be33ee8a249b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/candlepin/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-280c4d68292a8b17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/mainloop/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2a726ff5eebc3cfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2bfdc52c45f181e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/zoneinfo/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2cd1438f16771709 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2dd5656c4a045241 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/plugin/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-30a0f7eee95fa48d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-315264f5a5c4102f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-333b5b442d370332 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-34ea6e7e87928257 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-3ca1068fed2aa8f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-3e5f92c635e4cf9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-3f7706915bf470d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-430881cff1995c4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-44d5c4d6580bee2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-453a4258ac22674b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/tofu/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-46df96ad39cd366c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-48e41a74932617ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/librepo/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-4b988aceb8a5ca56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnfpluginscore/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-4ca67d14e7e85c91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-51e0d059c88d6d78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-51ff74a5e8088111 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/test/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-57402724ee7c8a07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5b89bf3798a50a71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5d4b079b51de6bf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5efbf95f6d4724ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5fe8fafdb95ad64b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-62e6b8f9bf6a7398 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-6370fb055dd402b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/backports/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-68a8eac98dd26e65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-6b2c16ef0d98162b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-6dd85856ca14078b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-757461db2a2d2d92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-78c680e3933ebe01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-7a046842b2d1a443 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-7bd0561def8d514c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-7e811b3b14538ce5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-801dab2ad7ca448f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-8106720db85c9ea2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/data/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-8675a0b2164add55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-89bbb842466bbb02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-8a7ae778ffac5971 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-9525571a5efa957c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-95490423f0e8362e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-9931ffd34cf3038e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-99bedb70f8f49c78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-9daeb0568d269716 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-a1fbcfc027b39a86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/api/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-a3ad8c5af0b398a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-a7662c3a634d10ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ad075b9273a66499 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/keylist/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ae3bd0c36f9be65d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-aedd9ecfe572c247 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-af0116cde64da19f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-af59d642bc4dfe41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-afbf96b973770ebb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/extern/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b09374768d34c840 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b1139e9c9619c90a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/cli/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b1d6823ef3c8ab3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b56ac2bdf8b4b30f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b6c26f1b59d0ac2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-bfa0723d249dc339 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c2561cfa174b5a16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c48251d3bbcd2181 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c5d6765d4f3574e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c91a3307660ff4ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ca84232d13da64db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-caaf3e2b3d45246b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-cfe8d056b8ff5be9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d221e000e82bc8b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d3925189185938c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d5adb37c6a63c4ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d5de2286697cfcd2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d63c204f605bf103 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d68c0f555bee6e9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d6c0bb56f2bf99d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d8d3d7017758f9ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d9c49a5a0c299888 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-de15d5cff3a09d38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e13c0d69b96e0e27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e4544562cde4e023 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e4c62cfa29f57324 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e6b4ab9dad9ed1c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e836bcad45c0759d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ea2888088990b4bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f03b7d59a78ca2e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f26e37a23a8111b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f7e606c2d1ee91e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f8282c467e8dcc04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f9af71a26830833d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/ga_impls/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-fd5d76d89b651662 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----init--.cpython-36.pyc-fd77032e6e161a29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__pycache__/__main__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----main--.cpython-36.pyc-2fa76ffa5edff89c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/__main__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----main--.cpython-36.pyc-c68874162263d457 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/__main__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----main--.cpython-36.pyc-d4c55792a29114f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/__main__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----main--.cpython-36.pyc-e9d2e4587cc46a27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/__version__.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache-----version--.cpython-36.pyc-e2957adc2add610e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/_base.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache----base.cpython-36.opt-1.pyc-09bab0e06d5edc54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/_base.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache----base.cpython-36.opt-2.pyc-dba9f2eeda54e6d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/_base.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----base.cpython-36.pyc-c2d9072427a9e8e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_bootlocale.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----bootlocale.cpython-36.pyc-b7ab44f9b756f79f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/_bootstrap.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----bootstrap.cpython-36.pyc-9131ebf4810273c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/_common.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----common.cpython-36.pyc-954eb6b4aea86724 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/_compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----compat.cpython-36.pyc-0a986677b22d0252 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----compat.cpython-36.pyc-6b850215a370f707 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----compat.cpython-36.pyc-abed07f78efa82d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_constants.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----constants.cpython-36.pyc-71825a1ff0e7861a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/_dbus.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache----dbus.cpython-36.opt-1.pyc-557d39414ac22cf6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/_endian.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----endian.cpython-36.pyc-64fc5760a5e80a82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/_exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----exceptions.cpython-36.pyc-b81a66595739f069 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_markupbase.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----markupbase.cpython-36.pyc-50bc24ca23c28b5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_parseaddr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----parseaddr.cpython-36.pyc-a339dec6837d4a6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_policybase.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----policybase.cpython-36.pyc-8180ac28d73020cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_pydecimal.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----pydecimal.cpython-36.pyc-b1f355a8bb9a2efc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_pyio.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache----pyio.cpython-36.opt-1.pyc-537bc39c75e8187c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_pyio.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache----pyio.cpython-36.opt-2.pyc-b3545a86bf0c9cef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_pyio.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----pyio.cpython-36.pyc-c6289ab6d1c5fd39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_strptime.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----strptime.cpython-36.pyc-c0c7f04687542c2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----structures.cpython-36.pyc-2b44f119b05667a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----structures.cpython-36.pyc-e0b06338884cf984 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/_uninstall.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----uninstall.cpython-36.pyc-6eb2f341b81d5415 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/_version.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----version.cpython-36.pyc-bbd244af629e83cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_weakrefset.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache----weakrefset.cpython-36.pyc-d3763885c3a6dc06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementPath.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ElementPath.cpython-36.pyc-d2b80e16568da6fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementTree.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ElementTree.cpython-36.pyc-c5f11efb2ba6ee8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/GLib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---GLib.cpython-36.opt-1.pyc-7204102418c03aec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/GLib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---GLib.cpython-36.pyc-c32af2c3793e4da3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/GObject.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---GObject.cpython-36.pyc-cc3cc2f678fd384b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Gdk.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---Gdk.cpython-36.opt-1.pyc-8dbafcabb1605bfb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Gdk.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---Gdk.cpython-36.pyc-24a19287eb690a8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Gio.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---Gio.cpython-36.opt-1.pyc-9a36088d0e5345bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Gio.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---Gio.cpython-36.pyc-6f76b19384748f68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Gtk.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---Gtk.cpython-36.opt-1.pyc-32e1b7896cb81752 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Gtk.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---Gtk.cpython-36.pyc-c872bba1932daff5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/NodeFilter.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---NodeFilter.cpython-36.pyc-44db5ad2250c4dd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Pango.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---Pango.cpython-36.opt-1.pyc-c89cf57abf393eb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/Pango.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---Pango.cpython-36.pyc-8c2be6045c695ceb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/abc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.opt-1.pyc-03dd786257dc5ee0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/abc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.opt-1.pyc-4f840c5842f6cec9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/__pycache__/abc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.opt-1.pyc-642684f4a9f7c1ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/abc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.opt-2.pyc-0cf64412c5f7aa72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/abc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.opt-2.pyc-35cab891507ef7be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/__pycache__/abc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.opt-2.pyc-67982876f8dea55c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/abc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.pyc-8701bb01b5564933 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/__pycache__/abc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.pyc-b4f88a0e06aefcb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/abc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---abc.cpython-36.pyc-e55afae9d822ba45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/adapters.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---adapters.cpython-36.pyc-1fa52738902ac8e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/aifc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---aifc.cpython-36.opt-1.pyc-978b1589337f113b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/aifc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---aifc.cpython-36.opt-2.pyc-50b5c834fa11426c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/aifc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---aifc.cpython-36.pyc-0627c92cdb0a5ad9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/alg_lists.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---alg-lists.cpython-36.pyc-9888708c54e158e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/__pycache__/alg_lists.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---alg-lists.cpython-36.pyc-b33e8eaa97ddee31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/alias.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---alias.cpython-36.opt-1.pyc-76c1db2fdf967bd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/alias.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---alias.cpython-36.opt-1.pyc-f432db200a6865a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/alias.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---alias.cpython-36.pyc-39063dd02484774f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/alias.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---alias.cpython-36.pyc-753ff8dad27eabc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/aliases.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---aliases.cpython-36.pyc-97e5f669db3c0c87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/all.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---all.cpython-36.opt-1.pyc-24582d68329fd7ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/antigravity.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---antigravity.cpython-36.pyc-5964c555ae0fe27c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/candlepin/__pycache__/api.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---api.cpython-36.opt-1.pyc-015a4bd67a43d85f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/api.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---api.cpython-36.opt-1.pyc-6c5b9a3788bfa65d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/candlepin/__pycache__/api.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---api.cpython-36.pyc-5cf6632fd00bca3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/api.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---api.cpython-36.pyc-5e553732bf78bc37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---appdirs.cpython-36.pyc-9d0b181b3e35fd6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/appengine.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---appengine.cpython-36.pyc-aef7de65f552e28d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/application.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---application.cpython-36.pyc-3960c6103e3f3d51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/argparse.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---argparse.cpython-36.pyc-beea762df550e61d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/ascii.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---ascii.cpython-36.opt-1.pyc-bd041d1851d52876 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/ascii.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---ascii.cpython-36.opt-1.pyc-cf796960997236cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/ascii.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---ascii.cpython-36.opt-2.pyc-65d9b614821211cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/ascii.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---ascii.cpython-36.opt-2.pyc-728d47d8b9d211be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/ascii.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ascii.cpython-36.pyc-281af4c9eed0af4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/ascii.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ascii.cpython-36.pyc-5aba3b285e341192 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ast.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---ast.cpython-36.opt-1.pyc-0ea8b16a2a30cef1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ast.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---ast.cpython-36.opt-2.pyc-e37ba81625bdc91d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ast.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ast.cpython-36.pyc-3a888321d0c45a28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/async_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---async-utils.cpython-36.pyc-92cc5d21ab5eceb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/asynchat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---asynchat.cpython-36.pyc-f46942a8c01bfd37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/asyncore.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---asyncore.cpython-36.pyc-0d49614246a1a82f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/attach.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---attach.cpython-36.pyc-3e4c60f2e8734d5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/attach.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---attach.cpython-36.pyc-e7fd2728d97cfb03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/audio.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---audio.cpython-36.opt-1.pyc-d45b07dc79aec119 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/audio.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---audio.cpython-36.opt-2.pyc-f3cc4e9d79c16314 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/auth.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---auth.cpython-36.opt-1.pyc-99b8974258be9cf7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/auth.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---auth.cpython-36.pyc-e360426b7623b852 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/autoremove.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---autoremove.cpython-36.pyc-a558111badf2e1fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/aws.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---aws.cpython-36.opt-1.pyc-0f1983210d754872 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/aws.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---aws.cpython-36.pyc-badde5b1374a4d0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/azure.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---azure.cpython-36.opt-1.pyc-04b672c445b7eb21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/azure.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---azure.cpython-36.pyc-1c49876508fb3494 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_events.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---base-events.cpython-36.pyc-00ebc42f7ac74c62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/base_object.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---base-object.cpython-36.pyc-a6f493eb8ed7c32c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/base_plugin.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---base-plugin.cpython-36.pyc-f0f33f5dccd8fab1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_tasks.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---base-tasks.cpython-36.pyc-8912b294461281b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/base.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---base.cpython-36.opt-1.pyc-006f6147dd0857c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/base.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---base.cpython-36.opt-1.pyc-7dd1340a6265bf62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/base.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---base.cpython-36.opt-1.pyc-cee6e3850b70ac32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/base.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---base.cpython-36.opt-2.pyc-5301b62421266df0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/base64.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---base64.cpython-36.pyc-79f264374bf370ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/base64mime.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---base64mime.cpython-36.pyc-40b7902e8801df2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bdb.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---bdb.cpython-36.opt-1.pyc-fb832a4bea0ad628 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bdb.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---bdb.cpython-36.opt-2.pyc-11042189a871eee7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bdb.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bdb.cpython-36.pyc-ba26190462d72aa6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_dumb.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bdist-dumb.cpython-36.pyc-b9938f4db7c9fcb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bdist-egg.cpython-36.pyc-36ea23ae56d1f78a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_msi.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bdist-msi.cpython-36.pyc-221213a46b18751e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_rpm.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bdist-rpm.cpython-36.pyc-440d2f52abf22848 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bdist-rpm.cpython-36.pyc-c1d0172ed333e9fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---bdist.cpython-36.opt-1.pyc-0f7a9907affd78f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---bdist.cpython-36.opt-2.pyc-91c7fa0b7144d7b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bdist.cpython-36.pyc-a1f9e6fed222f21f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/big5.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---big5.cpython-36.opt-1.pyc-d908cbc0646a1194 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/big5.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---big5.cpython-36.opt-2.pyc-9e86386ed99b153a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/big5.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---big5.cpython-36.pyc-231b88225f5e976f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/big5freq.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---big5freq.cpython-36.pyc-5fc062249ff0ac1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/big5hkscs.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---big5hkscs.cpython-36.pyc-bbbdded9e22ec658 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/big5prober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---big5prober.cpython-36.pyc-de2efe71ef2b5179 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/bind.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---bind.cpython-36.opt-1.pyc-f840df645a88e875 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/bind.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bind.cpython-36.pyc-56fbcba52c23f221 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bindings.cpython-36.pyc-ed041a04fcc62f3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/binhex.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---binhex.cpython-36.pyc-c0f31f46e84192a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bisect.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bisect.cpython-36.pyc-5b9e1b23c5ea85c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/bitstream.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bitstream.cpython-36.pyc-3dd45cbc0c2096bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/btm_matcher.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---btm-matcher.cpython-36.pyc-ffa172fd1bca28bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/btm_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---btm-utils.cpython-36.pyc-405d198e599efa18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/build_clib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build-clib.cpython-36.pyc-2643643781363bf6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_clib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build-clib.cpython-36.pyc-e2914b0c8e64bc85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/build_ext.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build-ext.cpython-36.pyc-5c0b90e6e35304b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_ext.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build-ext.cpython-36.pyc-ce2848eb1fedee75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/build_meta.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build-meta.cpython-36.pyc-15d91e9377d2337d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_py.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build-py.cpython-36.pyc-b935725573b9aa57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/build_py.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build-py.cpython-36.pyc-cc47b608c2c1e78f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---build.cpython-36.opt-1.pyc-7ac69d5082bcbdb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---build.cpython-36.opt-2.pyc-7f46ce515c462b06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---build.cpython-36.pyc-3a11d566b376cf4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/builddep.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---builddep.cpython-36.pyc-8597d5681bf439ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/bus.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---bus.cpython-36.opt-1.pyc-ad1f9af472e35ebf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/bz2_codec.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bz2-codec.cpython-36.pyc-551d4f372f32a161 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bz2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---bz2.cpython-36.opt-1.pyc-0f5db09c6302f426 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bz2.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---bz2.cpython-36.opt-2.pyc-e945b5b8f75286e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bz2.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---bz2.cpython-36.pyc-938daf1e42ce6965 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cProfile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cProfile.cpython-36.pyc-18cb72f6b88c5239 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cache.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cache.cpython-36.opt-1.pyc-3c71a2616316392e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cache.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cache.cpython-36.pyc-d6b9726a1e73acf0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/calendar.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---calendar.cpython-36.pyc-635ba7dee793fd7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/callback.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---callback.cpython-36.pyc-397552d6b0581657 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/callbacks.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---callbacks.cpython-36.pyc-87d3f4586a48ab25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/case.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---case.cpython-36.opt-1.pyc-0be4bc615292b360 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/case.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---case.cpython-36.opt-2.pyc-beab5831bf8ec0e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/case.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---case.cpython-36.pyc-17e9a1301235f73c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/ccompiler.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ccompiler.cpython-36.pyc-c71bcae162907c6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cert_sorter.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cert-sorter.cpython-36.pyc-bce0ac85293257e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/certificate.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---certificate.cpython-36.pyc-0a324636ddbf7d7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/certlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---certlib.cpython-36.pyc-65d89bdc30d0d628 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/certs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---certs.cpython-36.opt-1.pyc-8350081436c0e7b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/certs.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---certs.cpython-36.pyc-399bcbb9077a8469 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cgi.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cgi.cpython-36.opt-1.pyc-e11d50577bfab21b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cgi.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cgi.cpython-36.opt-2.pyc-ffb559ecc69cbba4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cgi.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cgi.cpython-36.pyc-9954779aa8c6a2fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cgitb.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cgitb.cpython-36.opt-1.pyc-54c2af1c9627fa75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cgitb.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cgitb.cpython-36.opt-2.pyc-5731a19b65de2617 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cgitb.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cgitb.cpython-36.pyc-223c7221d52606ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/changelog.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---changelog.cpython-36.pyc-3ea284e5df71390d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/cli/__pycache__/chardetect.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---chardetect.cpython-36.pyc-021306676da3ac2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/charmap.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---charmap.cpython-36.pyc-ba7d4c0b9c711b5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/charset.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---charset.cpython-36.pyc-3768579998bac900 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/check.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---check.cpython-36.opt-1.pyc-0e94a4ae6b6d6d8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/check.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---check.cpython-36.opt-1.pyc-dae45e9167458d5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/check.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---check.cpython-36.opt-2.pyc-6b7e95c143632a83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/check.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---check.cpython-36.pyc-2661715e01fc2027 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/check.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---check.cpython-36.pyc-e0f29c3b98f326af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/chunk.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---chunk.cpython-36.opt-1.pyc-aeb0600dd7ad91ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/chunk.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---chunk.cpython-36.opt-2.pyc-57ad5820ee472f21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/chunk.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---chunk.cpython-36.pyc-0d2f5623d09b76bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/clean.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---clean.cpython-36.opt-1.pyc-af5e4beee9a2d7ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/clean.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---clean.cpython-36.opt-1.pyc-d46eb3429c011e18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/clean.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---clean.cpython-36.opt-2.pyc-c508782d2f680d54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/clean.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---clean.cpython-36.pyc-449d32d7f2c02903 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/clean.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---clean.cpython-36.pyc-cc2b6470a10e0796 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/cleanup.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cleanup.cpython-36.pyc-d0f57a3b93fc764d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cli.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-051c86ff845bac4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/cli.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-11b3efc733f00ba1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/cli.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-4ed87de7e93ab353 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/__pycache__/cli.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-5c5be15c91500a69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/cli.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-b3f737d8a8f9769a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/cli.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.pyc-1ea30d4df51e6b96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/__pycache__/cli.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.pyc-92cb55c36b7fbc29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cli.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cli.cpython-36.pyc-f66c901ace0d476c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/client.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---client.cpython-36.pyc-04855f2d80e4c115 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/client.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---client.cpython-36.pyc-715e136b390fc69b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/cloud_facts.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cloud-facts.cpython-36.pyc-1f5d26ec8bdd054c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/cmd.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cmd.cpython-36.opt-1.pyc-8750d352ed61401c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cmd.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cmd.cpython-36.opt-1.pyc-a5761558af3b3900 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/cmd.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cmd.cpython-36.opt-2.pyc-468f15d7618297f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cmd.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cmd.cpython-36.opt-2.pyc-6cc1c44bb894cc9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/cmd.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cmd.cpython-36.pyc-1a30c389d097a20f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cmd.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cmd.cpython-36.pyc-2a78a4584395eb78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/code.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---code.cpython-36.opt-1.pyc-cdda0d5a0e701810 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/code.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---code.cpython-36.opt-2.pyc-488152d771d60729 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/code.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---code.cpython-36.pyc-5c18cf69e225a99b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/codec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---codec.cpython-36.opt-1.pyc-6f68f77b84fd660f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/codecs.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---codecs.cpython-36.pyc-67d6660957f8f468 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/codeop.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---codeop.cpython-36.pyc-7c5615e5230cda56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/collection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---collection.cpython-36.pyc-e9d8ce82384d322e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/collector.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---collector.cpython-36.pyc-95303a50700ed05f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/colorsys.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---colorsys.cpython-36.pyc-28285dbffa8629ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/commands.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---commands.cpython-36.pyc-8afd05e67c14c2e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---compat.cpython-36.pyc-7976c9c7869e0fef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---compat.cpython-36.pyc-a024e09ed94e6537 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---compat.cpython-36.pyc-cc4373645daf653c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---compat.cpython-36.pyc-ddc9819200a30bba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/compileall.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---compileall.cpython-36.pyc-6ae29b5a94775efc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/comps.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---comps.cpython-36.opt-1.pyc-eae723039bfef6b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/conf.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---conf.cpython-36.opt-1.pyc-fa01515187993ad0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---config.cpython-36.pyc-0aeefbb2fd97891f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---config.cpython-36.pyc-1b4cb13f863d66e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---config.cpython-36.pyc-85973b09c9f2ec30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---config.cpython-36.pyc-aecf31682c448d0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---config.cpython-36.pyc-c4bca7dd640c04e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---config.cpython-36.pyc-cf909a4cb9342d04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---config.cpython-36.pyc-d6b32c0f2ae99b12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/connection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---connection.cpython-36.pyc-014c8c615c1a2369 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/connection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---connection.cpython-36.pyc-0c111c4e08a739dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/__pycache__/connection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---connection.cpython-36.pyc-11d2d9443ed0d2a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/connection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---connection.cpython-36.pyc-76904ec1f3ece1b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/connection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---connection.cpython-36.pyc-7c835a34b96c186f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/connection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---connection.cpython-36.pyc-84a17137488311f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/connection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---connection.cpython-36.pyc-a5d48132499aef4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/const.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---const.cpython-36.opt-1.pyc-f23676cc1b7342fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/constants.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---constants.cpython-36.pyc-94a5f49121fe66ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/constants.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---constants.cpython-36.pyc-a7d5a36c7a4dd617 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/constants.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---constants.cpython-36.pyc-d09a1abe50b9290b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/consumer.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---consumer.cpython-36.pyc-3419ecd31d1d6385 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/consumer.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---consumer.cpython-36.pyc-f4f5680fabfbe81e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/context.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---context.cpython-36.pyc-4f8e984dc2ea1986 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/contextlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---contextlib.cpython-36.pyc-8a5539864cbd3149 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/conv.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---conv.cpython-36.opt-1.pyc-24d0dbd509770d7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/conv.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---conv.cpython-36.opt-2.pyc-04e1762ee149dd1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/cookiejar.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cookiejar.cpython-36.pyc-c2f78ed22b94563c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/cookies.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cookies.cpython-36.pyc-5c166b7f0d75ecc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/cookies.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cookies.cpython-36.pyc-f971f81d5553c456 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/copr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---copr.cpython-36.opt-1.pyc-c6e554301508f73c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/copr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---copr.cpython-36.pyc-3edd7203c15dffda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/copy.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---copy.cpython-36.opt-1.pyc-1d3ff7165c0de39a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/copy.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---copy.cpython-36.opt-2.pyc-0943e33d2bbb95e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/copy.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---copy.cpython-36.pyc-5830c78927a4eed0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/copyreg.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---copyreg.cpython-36.pyc-cc23b86087d12a10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/core.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---core.cpython-36.opt-1.pyc-24879659fcb09933 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/core.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---core.cpython-36.opt-1.pyc-6736b19ac8fb6e10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/core.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---core.cpython-36.opt-1.pyc-f85140e86efb7b4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/core.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---core.cpython-36.opt-2.pyc-ea4e32aa80f73d19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/core.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---core.cpython-36.pyc-9d33cec74d58699e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/coroutines.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---coroutines.cpython-36.pyc-f3a9e7312b01d44d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cp_provider.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp-provider.cpython-36.pyc-5713eede6635d8c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp037.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp037.cpython-36.opt-1.pyc-6c865aa7b69e4032 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp037.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp037.cpython-36.opt-2.pyc-acfa54de78215799 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp037.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp037.cpython-36.pyc-4c73902ef0cd5f47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1006.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1006.cpython-36.pyc-5148b403fce01cde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1026.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1026.cpython-36.pyc-471785cc98d03aa3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1125.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1125.cpython-36.pyc-2852fcf001355b8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1140.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1140.cpython-36.pyc-11284fe5751e4c34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1250.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1250.cpython-36.pyc-c5fb949e20f1da7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1251.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1251.cpython-36.pyc-3a7503b5a8b50e31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1252.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1252.cpython-36.pyc-efa2a35957bdc742 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1253.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1253.cpython-36.pyc-6e53eba16d83f4c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1254.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1254.cpython-36.pyc-be6c4771cf714db0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1255.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1255.cpython-36.pyc-c7fe652dcf1583c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1256.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1256.cpython-36.pyc-8b3eeb5802ef9cba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1257.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1257.cpython-36.pyc-525ee176207c29fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1258.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp1258.cpython-36.pyc-cc8180fd947ef563 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp273.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp273.cpython-36.opt-1.pyc-deb76eb59a4be0c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp273.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp273.cpython-36.opt-2.pyc-0da3edabcffb3168 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp273.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp273.cpython-36.pyc-f91f86f7e9e22a3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp424.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp424.cpython-36.opt-1.pyc-ae005c4d48fb6e79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp424.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp424.cpython-36.opt-2.pyc-c341efe664fc3def +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp424.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp424.cpython-36.pyc-bfaa1cc5bb788514 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp437.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp437.cpython-36.opt-1.pyc-9fb53a2f3ddf38f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp437.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp437.cpython-36.opt-2.pyc-de263606e9813722 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp437.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp437.cpython-36.pyc-f5a82b717c380f5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp500.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp500.cpython-36.opt-1.pyc-a76185c6cd0f08af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp500.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp500.cpython-36.opt-2.pyc-81f79925ced511a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp500.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp500.cpython-36.pyc-fe480023d4588d8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp65001.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp65001.cpython-36.pyc-20250c3924676733 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp720.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp720.cpython-36.opt-1.pyc-5baffcab5c788a25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp720.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp720.cpython-36.opt-2.pyc-63345ac34538bf7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp720.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp720.cpython-36.pyc-794352cb650d9a03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp737.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp737.cpython-36.opt-1.pyc-2e418b759e64947a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp737.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp737.cpython-36.opt-2.pyc-18ffb26b1a6b27e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp737.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp737.cpython-36.pyc-d792bdd457f4b498 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp775.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp775.cpython-36.opt-1.pyc-9ffe9e76676b0ce3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp775.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp775.cpython-36.opt-2.pyc-91d301b47e050bd8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp775.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp775.cpython-36.pyc-d566bb6b6d9a5043 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp850.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp850.cpython-36.opt-1.pyc-c597c30a30872953 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp850.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp850.cpython-36.opt-2.pyc-49055063ed5aba5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp850.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp850.cpython-36.pyc-ce9deedf0b66e7c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp852.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp852.cpython-36.opt-1.pyc-d2ab0f3f68ca11f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp852.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp852.cpython-36.opt-2.pyc-c3acb8dab78eed3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp852.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp852.cpython-36.pyc-d4a9c51fd75b9fe2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp855.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp855.cpython-36.opt-1.pyc-44dc44b00d6172fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp855.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp855.cpython-36.opt-2.pyc-9c959132c46e966e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp855.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp855.cpython-36.pyc-b2efdf59c0bc57f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp856.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp856.cpython-36.opt-1.pyc-fbe52fa751a3219c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp856.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp856.cpython-36.opt-2.pyc-6fe2143b19c8ca65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp856.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp856.cpython-36.pyc-2d7162cdc1e728b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp857.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp857.cpython-36.opt-1.pyc-199d59dfe244b373 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp857.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp857.cpython-36.opt-2.pyc-37b6baacfec8377e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp857.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp857.cpython-36.pyc-a8ae0e218b03f9aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp858.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp858.cpython-36.opt-1.pyc-bf934e353d4adf99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp858.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp858.cpython-36.opt-2.pyc-851a4a7c310fa8c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp858.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp858.cpython-36.pyc-74ac2a3060da9832 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp860.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp860.cpython-36.opt-1.pyc-0f5baef2b1d72e01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp860.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp860.cpython-36.opt-2.pyc-29db331e2887b7d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp860.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp860.cpython-36.pyc-12f3676a67263acb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp861.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp861.cpython-36.opt-1.pyc-18c558edbd9f4575 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp861.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp861.cpython-36.opt-2.pyc-1452c53861fd9112 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp861.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp861.cpython-36.pyc-50fadb0eb71dbdae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp862.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp862.cpython-36.opt-1.pyc-eb42b304852968d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp862.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp862.cpython-36.opt-2.pyc-c15cb7da203e7c8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp862.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp862.cpython-36.pyc-b341314650a687a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp863.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp863.cpython-36.opt-1.pyc-e4bf64c43be37816 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp863.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp863.cpython-36.opt-2.pyc-f09408d9c857c495 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp863.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp863.cpython-36.pyc-7a69b35e4199df10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp864.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp864.cpython-36.opt-1.pyc-e9b5a6472cec1335 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp864.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp864.cpython-36.opt-2.pyc-9f1f1281eed58bd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp864.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp864.cpython-36.pyc-9ce2575f690a610c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp865.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp865.cpython-36.opt-1.pyc-18a4ddb1ef3bcaf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp865.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp865.cpython-36.opt-2.pyc-24a7420746b938d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp865.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp865.cpython-36.pyc-06644093b7658ba7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp866.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp866.cpython-36.opt-1.pyc-5ea9807a4101da3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp866.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp866.cpython-36.opt-2.pyc-a01fd20e2873f816 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp866.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp866.cpython-36.pyc-331681447d29117c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp869.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp869.cpython-36.opt-1.pyc-54e099aec6193a14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp869.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp869.cpython-36.opt-2.pyc-719a352665e0d6b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp869.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp869.cpython-36.pyc-ee66023970d3ee9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp874.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp874.cpython-36.opt-1.pyc-105523802adcfd0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp874.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp874.cpython-36.opt-2.pyc-ddc09e4353ebcfa7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp874.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp874.cpython-36.pyc-770f62d2031711ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp875.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp875.cpython-36.opt-1.pyc-bf7b968cd3ca1e1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp875.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp875.cpython-36.opt-2.pyc-09765646b9a84873 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp875.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp875.cpython-36.pyc-811d81b62893a54b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp932.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp932.cpython-36.opt-1.pyc-3ae3fd11e6ca2dc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp932.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp932.cpython-36.opt-2.pyc-fe619d08e323b4a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp932.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp932.cpython-36.pyc-ffab37a5d331869b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp949.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp949.cpython-36.opt-1.pyc-4ce005ee3266e39e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp949.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp949.cpython-36.opt-2.pyc-2fc89cec411e84d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp949.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp949.cpython-36.pyc-7869b13e23715300 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/cp949prober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp949prober.cpython-36.pyc-036a0b06dc05cb5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp950.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---cp950.cpython-36.opt-1.pyc-9e6d3449813a2d1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp950.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---cp950.cpython-36.opt-2.pyc-e3aaeb450e038b9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp950.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cp950.cpython-36.pyc-7906fad138e7f712 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/cpuinfo.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cpuinfo.cpython-36.pyc-61957209304bc493 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cpuinfo.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---cpuinfo.cpython-36.pyc-c91403c0707df374 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/create.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---create.cpython-36.pyc-aed88758b062dddc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/crypt.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---crypt.cpython-36.opt-1.pyc-07812bdf3518874f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/crypt.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---crypt.cpython-36.opt-2.pyc-77148518d8c5fe44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/crypt.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---crypt.cpython-36.pyc-d646e890f7945e35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/csv.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---csv.cpython-36.opt-1.pyc-0e35f63e6fdd15c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/csv.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---csv.cpython-36.opt-2.pyc-2ed7c1fdaab5666d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/csv.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---csv.cpython-36.pyc-532e18d81ca49d9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/custom.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---custom.cpython-36.pyc-c11473d25cf42341 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/__pycache__/daemon.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---daemon.cpython-36.pyc-63d31ba6715b03b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/datetime.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---datetime.cpython-36.pyc-dd24f062a27d6591 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/dbapi2.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dbapi2.cpython-36.pyc-1a666520db10e319 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/dbus_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dbus-utils.cpython-36.pyc-875d59c6e793d50a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/debug.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---debug.cpython-36.opt-1.pyc-885d8924c0914807 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/debug.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---debug.cpython-36.opt-1.pyc-93f5914d19d9a116 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/debug.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---debug.cpython-36.opt-2.pyc-bce8c9c4bc25ffdf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/debug.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---debug.cpython-36.pyc-3fdc9d1c66bdde44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/debug.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---debug.cpython-36.pyc-9027acb34e40b097 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/decimal.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---decimal.cpython-36.pyc-e5ab1b3798d49407 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/decoder.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---decoder.cpython-36.pyc-6ec994dd0541be7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/decorator.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---decorator.cpython-36.pyc-64f28fd874896c57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/decorators.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---decorators.cpython-36.pyc-d6ef60a2f13845e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dep_util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dep-util.cpython-36.pyc-619f50d74e1387cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/dep_util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dep-util.cpython-36.pyc-64a1e0f35b2313ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/depends.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---depends.cpython-36.pyc-329b4469090b5a23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/deplist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---deplist.cpython-36.pyc-262830bc6024103d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/develop.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---develop.cpython-36.pyc-a85ec7e91b919622 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/difflib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---difflib.cpython-36.pyc-24f9c88f00ba0947 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dir_util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dir-util.cpython-36.pyc-b406bbeaeeafe0d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/dis.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---dis.cpython-36.opt-1.pyc-555fb0d2cf6b52b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/dis.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---dis.cpython-36.opt-2.pyc-7c234cfc17e204a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/dis.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dis.cpython-36.pyc-8eb32325219fc9a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/dist_info.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dist-info.cpython-36.pyc-e46cd84ed99866d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/dist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---dist.cpython-36.opt-1.pyc-97403fb2cdcf418c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---dist.cpython-36.opt-1.pyc-ff0cbde7a2dac45a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dist.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---dist.cpython-36.opt-2.pyc-9872bd83c1810c23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/dist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dist.cpython-36.pyc-0c83aeaa30d6ba42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dist.cpython-36.pyc-e4c61bc9d0d50c8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/distrosync.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---distrosync.cpython-36.pyc-37be5ad5c0dceea7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/__pycache__/dmidecode.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dmidecode.cpython-36.pyc-8e30921ebc349e05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/dmiinfo.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dmiinfo.cpython-36.pyc-a9ddf08816883be7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/docstring.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---docstring.cpython-36.pyc-76342b2280062e7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/doctest.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---doctest.cpython-36.pyc-1dffa4262e07f3ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/downgrade.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---downgrade.cpython-36.pyc-fe94b1ff07125492 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/download.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---download.cpython-36.pyc-facbc5ef6ba14a4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/driver.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---driver.cpython-36.pyc-788385517b66f029 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/drpm.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---drpm.cpython-36.opt-1.pyc-f1bf1546b586ac4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/__pycache__/drv_libxml2.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---drv-libxml2.cpython-36.pyc-1098db0637559b44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/dumb.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---dumb.cpython-36.opt-1.pyc-5eeb6eef163fc591 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/dumb.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---dumb.cpython-36.opt-2.pyc-b65cd26d7000ded0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/dump.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---dump.cpython-36.opt-1.pyc-3a1fd45673cf34ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/dump.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---dump.cpython-36.opt-2.pyc-3c078816498dfbcb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/dump.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dump.cpython-36.pyc-737cae48a9177400 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/dyld.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---dyld.cpython-36.opt-1.pyc-80f30cba5d986974 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/dyld.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---dyld.cpython-36.opt-2.pyc-428481bea0d0c24e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/dyld.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dyld.cpython-36.pyc-fa70c931bab109fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/dylib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---dylib.cpython-36.opt-1.pyc-1ba241c66b384f03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/dylib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---dylib.cpython-36.opt-2.pyc-1c1d062fc1636daf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/dylib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---dylib.cpython-36.pyc-1f05d5366da05a9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/easter.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---easter.cpython-36.pyc-a0cb7471ab289c13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/egg_info.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---egg-info.cpython-36.pyc-3f7ca3c9f62d282d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/encoder.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---encoder.cpython-36.pyc-4011448f3b9cedb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/encoders.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---encoders.cpython-36.pyc-7725e3f5d9f5450a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/data/__pycache__/encoding.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---encoding.cpython-36.pyc-f6a4fd42fcbc6406 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/model/__pycache__/ent_cert.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ent-cert.cpython-36.pyc-82c3eb260c1cc0a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/entbranding.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---entbranding.cpython-36.pyc-942517f2a0177473 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/entcertlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---entcertlib.cpython-36.pyc-e73cfd46fdd23057 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/entities.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---entities.cpython-36.pyc-6ab004e38ed712a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/entitlement.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---entitlement.cpython-36.pyc-83f359963a36c5e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/entitlement.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---entitlement.cpython-36.pyc-b915dbd2cfb05a43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/enum.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---enum.cpython-36.opt-1.pyc-1e2773019ce2e3de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/enum.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---enum.cpython-36.opt-2.pyc-2b257fc3a62acd70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/enum.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---enum.cpython-36.pyc-558d68353b035a85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/enums.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---enums.cpython-36.opt-1.pyc-14caf48a1f99f4b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/enums.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---enums.cpython-36.pyc-adad0f344df891ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/error.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---error.cpython-36.opt-1.pyc-724e5e4b3fdced1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/error.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---error.cpython-36.opt-1.pyc-77eef482d75a1cc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/error.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---error.cpython-36.opt-1.pyc-db9f0195c1d3adb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/error.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---error.cpython-36.opt-2.pyc-d009c31216cfe4aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/error.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---error.cpython-36.pyc-14d7696a2a17a83e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/error.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---error.cpython-36.pyc-713d7c162dfb7264 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/errors.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---errors.cpython-36.pyc-174ce5cdd7f822f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/errors.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---errors.cpython-36.pyc-e90abb835152542f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/escprober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---escprober.cpython-36.pyc-c114164f79d01fd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/escsm.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---escsm.cpython-36.opt-1.pyc-dd62f93107b82041 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/escsm.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---escsm.cpython-36.pyc-23add3b075a622a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jp.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---euc-jp.cpython-36.pyc-85b8e4b9fb32760a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_kr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---euc-kr.cpython-36.pyc-9b5435d0ff40bd55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/eucjpprober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---eucjpprober.cpython-36.pyc-a054dc26ea0ece40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euckrfreq.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---euckrfreq.cpython-36.pyc-548987825caab329 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euckrprober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---euckrprober.cpython-36.pyc-c946f7dfdc923455 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euctwfreq.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---euctwfreq.cpython-36.pyc-01ec29ed6b7dc91f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euctwprober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---euctwprober.cpython-36.pyc-2f2ec5bec4a67ce5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/event.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---event.cpython-36.opt-1.pyc-43a00089c59d0a5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/event.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---event.cpython-36.pyc-fa1c25f890d7ca81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/events.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---events.cpython-36.pyc-a0a3f2fb7cbcc63f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-24411cc0288a8eaa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-5b81bef3d2520328 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-5dce59fadf529d26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-64a065ad0b23d9f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-95e33392061c80b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-bf4b6c8a3f5f32cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-c39789defa526a69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/exceptions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-e5017e07aae456d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/__pycache__/expat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---expat.cpython-36.opt-1.pyc-01a1569e75f585c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/__pycache__/expat.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---expat.cpython-36.opt-2.pyc-a3c363fa2b2308d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/__pycache__/expat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---expat.cpython-36.pyc-f1a5a6452dd9a39e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/expatreader.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---expatreader.cpython-36.pyc-5933defebccd529d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/extension.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---extension.cpython-36.pyc-3ef3ea1b80dee5a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/extension.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---extension.cpython-36.pyc-95413be07260fe04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/factlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---factlib.cpython-36.pyc-43ad9984140da8aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/facts.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---facts.cpython-36.opt-1.pyc-28c3e56d3d3f75d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/facts.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---facts.cpython-36.pyc-0612d88cea68c62e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/feedparser.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---feedparser.cpython-36.pyc-ed1abcf59963a8fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/fields.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fields.cpython-36.pyc-c222f6e37bb53c31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/file_util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---file-util.cpython-36.pyc-f3e042818fe68383 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/filecmp.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---filecmp.cpython-36.pyc-7bbb8193a20d1096 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fileinput.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fileinput.cpython-36.pyc-da8b74a2431a30dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/filelist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---filelist.cpython-36.pyc-a98368723d571d60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/filepost.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---filepost.cpython-36.pyc-c92077418e47a6d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/files.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---files.cpython-36.opt-1.pyc-71d4cdc34dd29f94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/files.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---files.cpython-36.pyc-538ab6e7bca32cf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_apply.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-apply.cpython-36.pyc-f7ea63984376e3a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_asserts.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-asserts.cpython-36.pyc-d7264a7fcfdd678f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_buffer.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-buffer.cpython-36.pyc-3dc269dc4f850528 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_dict.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-dict.cpython-36.pyc-9b1cb2d61ab9df2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_except.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-except.cpython-36.pyc-e8b2e7ac6e3a26ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_exec.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-exec.cpython-36.pyc-090736cabc2ae8aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_filter.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-filter.cpython-36.pyc-a2404dfed8eb7f23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_future.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-future.cpython-36.pyc-993bb8a8747baab2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-getcwdu.cpython-36.pyc-165e26f389f26f30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_has_key.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-has-key.cpython-36.pyc-7156dbc2cffb16fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_idioms.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-idioms.cpython-36.pyc-7ee6191a4cf9f68c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_import.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-import.cpython-36.pyc-8410a166de247e60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_imports.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-imports.cpython-36.pyc-5f36759d30606375 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_input.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-input.cpython-36.pyc-f541424b57c1db2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_intern.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-intern.cpython-36.pyc-c2d2a9cf886f5916 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_long.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-long.cpython-36.pyc-8912fc739131d83d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_map.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-map.cpython-36.pyc-1038d67a40dae1d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_ne.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-ne.cpython-36.pyc-edd99f2c91a2a700 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_next.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-next.cpython-36.pyc-e9759f768edaf9e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_nonzero.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-nonzero.cpython-36.pyc-dd63753a8921b3eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_paren.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-paren.cpython-36.pyc-11d80520e9fca807 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_print.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-print.cpython-36.pyc-4ca2e145c923c1e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_raise.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-raise.cpython-36.pyc-a44beff10a3e6a4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_reduce.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-reduce.cpython-36.pyc-f28264653a13f9dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_reload.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-reload.cpython-36.pyc-c732ca3c3c556974 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_renames.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-renames.cpython-36.pyc-00ef89dbb94a89e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_repr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-repr.cpython-36.pyc-bc311e6123f79e3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-sys-exc.cpython-36.pyc-b33aaaf50efcb6ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_throw.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-throw.cpython-36.pyc-6c4e05cdfb0eafba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_types.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-types.cpython-36.pyc-a6317a255fb27b86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_unicode.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-unicode.cpython-36.pyc-20113d9d3e82a4ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_urllib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-urllib.cpython-36.pyc-4de058b825e4af6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_xrange.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-xrange.cpython-36.pyc-72ccdf30ddb083d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_zip.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fix-zip.cpython-36.pyc-72b95e7529823d92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/fixer_base.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fixer-base.cpython-36.pyc-dabbfb363ca687b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/fixer_util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fixer-util.cpython-36.pyc-786a87671868cbcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fnmatch.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fnmatch.cpython-36.pyc-13314d49907b024f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/forkserver.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---forkserver.cpython-36.pyc-88a42e183e9b90cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/formatter.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---formatter.cpython-36.pyc-cbea3cdb2339a68f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fractions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---fractions.cpython-36.pyc-d3bd44b9e1fc432c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/framework.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---framework.cpython-36.pyc-b97e035a1938664b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ftplib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ftplib.cpython-36.pyc-81010e542ccb98af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/functools.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---functools.cpython-36.pyc-f6bfe9983871916a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/futures.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---futures.cpython-36.pyc-418a984c59c4dbdc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/ga_impls/__pycache__/ga_gtk3.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ga-gtk3.cpython-36.pyc-2fd029ae46d26445 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/ga_loader.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ga-loader.cpython-36.pyc-89ba5bcb32221be7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gb18030.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gb18030.cpython-36.pyc-c30bb13146a55d85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gb2312.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gb2312.cpython-36.pyc-130b510042704dd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/gb2312freq.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gb2312freq.cpython-36.pyc-553cda828fdb4838 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gbk.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---gbk.cpython-36.opt-1.pyc-79def8e74b55c061 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gbk.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---gbk.cpython-36.opt-2.pyc-7588df83f2142140 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gbk.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gbk.cpython-36.pyc-0a9c5f4dc4c0d83f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/gcp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---gcp.cpython-36.opt-1.pyc-73c4981fb9543158 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__pycache__/gcp.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gcp.cpython-36.pyc-258633bf365032e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/general.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---general.cpython-36.pyc-06282da5f0398ccf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/generator.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---generator.cpython-36.pyc-1c1c7817bd20bc9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/genericpath.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---genericpath.cpython-36.pyc-8f52c844b501c1e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/getopt.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---getopt.cpython-36.pyc-9cf820677d9bf582 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/getpass.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---getpass.cpython-36.pyc-9ad4d99e407ae6b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/gettext.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gettext.cpython-36.pyc-ef8b4c09c5535b2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/gi_service.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gi-service.cpython-36.pyc-ffc9287080b7b73e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/glib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---glib.cpython-36.opt-1.pyc-5521343e22e8f000 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/mainloop/__pycache__/glib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---glib.cpython-36.opt-1.pyc-ad8366a3c1ea6681 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/mainloop/__pycache__/glib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---glib.cpython-36.pyc-073bf10418187009 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/glibc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---glibc.cpython-36.opt-1.pyc-7f115e7447e14a24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/glibc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---glibc.cpython-36.pyc-29e2af87460976b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/glob.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---glob.cpython-36.opt-1.pyc-8e9ed599ac80c37d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/glob.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---glob.cpython-36.opt-1.pyc-eeb03bb8ddfbc85b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/glob.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---glob.cpython-36.opt-2.pyc-9cecf7dc5bf38940 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/glob.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---glob.cpython-36.pyc-5049b2a9597c6b4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/glob.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---glob.cpython-36.pyc-79c28f0bde371046 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/gnu.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---gnu.cpython-36.opt-1.pyc-4fcf22834d315a5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/gnu.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---gnu.cpython-36.opt-2.pyc-5207067fed339953 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/gnutls.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gnutls.cpython-36.pyc-ffa6421733a4b64d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/goal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---goal.cpython-36.opt-1.pyc-44227711d41cf706 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/gpgme.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---gpgme.cpython-36.opt-1.pyc-3e074d757fd07303 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/grammar.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---grammar.cpython-36.pyc-e5a57622d753e74f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/__pycache__/group.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---group.cpython-36.opt-1.pyc-599535cf45df1f43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/group.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---group.cpython-36.opt-1.pyc-7f174726f1a079a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/group.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---group.cpython-36.pyc-2bded1c754d6c062 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/gzip.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---gzip.cpython-36.opt-1.pyc-9dcf3f12ca90434b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/gzip.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---gzip.cpython-36.opt-2.pyc-44cefbddb38c7e1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/gzip.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---gzip.cpython-36.pyc-f5fa52a0496f93ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/handlers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---handlers.cpython-36.pyc-1880deaa612f609f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/handlers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---handlers.cpython-36.pyc-2c28aeeb00245623 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/has_key.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---has-key.cpython-36.pyc-128c96367a4ee092 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/hashlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---hashlib.cpython-36.pyc-57c374946fc37916 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/header.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---header.cpython-36.pyc-fcaf37484233645d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/headers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---headers.cpython-36.pyc-358657713e34de1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/healinglib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---healinglib.cpython-36.pyc-a4c2aa4a1221a10e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/heap.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---heap.cpython-36.opt-1.pyc-6a4122c6eec23e6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/heap.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---heap.cpython-36.opt-2.pyc-b438ce8346a6f51a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/heap.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---heap.cpython-36.pyc-1d1a0d7f5299fa69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/heapq.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---heapq.cpython-36.opt-1.pyc-c34d4e1ac1d11724 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/heapq.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---heapq.cpython-36.opt-2.pyc-24598c66c62387a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/heapq.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---heapq.cpython-36.pyc-fef8299460013208 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/help.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---help.cpython-36.opt-1.pyc-24d38609e806d60a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/help.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---help.cpython-36.pyc-cd48581c97bc1c2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hex_codec.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---hex-codec.cpython-36.pyc-dc750dc06fca2ca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/history.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---history.cpython-36.pyc-e1b68708ca6cc24a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/hmac.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---hmac.cpython-36.opt-1.pyc-690147557ea1377c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/hmac.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---hmac.cpython-36.opt-2.pyc-c1356d180e837488 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/hmac.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---hmac.cpython-36.pyc-ce497702db1bce99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/hooks.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---hooks.cpython-36.opt-1.pyc-9d9ff7c6ed1d34dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/hooks.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---hooks.cpython-36.pyc-cc1595cd024f0dd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hp_roman8.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---hp-roman8.cpython-36.pyc-323fa28aa9164325 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/https.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---https.cpython-36.opt-1.pyc-17d1d302d17d254b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/huffman.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---huffman.cpython-36.pyc-4c814923c83a7231 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/hwprobe.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---hwprobe.cpython-36.pyc-6f04c5a3eb58c565 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hz.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---hz.cpython-36.opt-1.pyc-55f0f289bebbb349 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hz.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---hz.cpython-36.opt-2.pyc-6259fbdcfe798264 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hz.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---hz.cpython-36.pyc-a576855294bbb8d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/i18n.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---i18n.cpython-36.opt-1.pyc-9e58e8a3a854519d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/i18n.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---i18n.cpython-36.opt-1.pyc-e76e5bf39c5ecc57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/i18n.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---i18n.cpython-36.opt-1.pyc-f8bb6a0c900f165c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/i18n.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---i18n.cpython-36.pyc-c16eba93720c04d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/i18n.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---i18n.cpython-36.pyc-c98fb32731ac9426 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/identity.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---identity.cpython-36.pyc-4f62cd6e64060ea0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/idna.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---idna.cpython-36.opt-1.pyc-c995e3dde2cc01c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/idna.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---idna.cpython-36.opt-2.pyc-b8835a1e56248217 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/idna.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---idna.cpython-36.pyc-ca64f036ba7e8e75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/idnadata.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---idnadata.cpython-36.pyc-7802975a6acb28b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/image.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---image.cpython-36.opt-1.pyc-7bd242a2410b0f91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/image.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---image.cpython-36.opt-2.pyc-ccb5af553ea40f43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imaplib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---imaplib.cpython-36.pyc-3889f043cb0d192d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imghdr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---imghdr.cpython-36.pyc-5108c32a46321458 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---imp.cpython-36.opt-1.pyc-dd9498aab8f20086 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imp.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---imp.cpython-36.opt-2.pyc-1be899aa410f4db4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imp.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---imp.cpython-36.pyc-077e95e0756c823a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/import_type.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---import-type.cpython-36.pyc-43ee3fb4d4dade4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/ini.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---ini.cpython-36.opt-1.pyc-24cb5bfe1cd8ff8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/ini.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ini.cpython-36.pyc-45b3757d24af3e11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/injection.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---injection.cpython-36.pyc-36f3339419203a70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/insights.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---insights.cpython-36.pyc-28bf338555a787f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/inspect.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---inspect.cpython-36.pyc-acd75f8510ac0716 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_lib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---install-lib.cpython-36.pyc-48e0659e4d213cb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install_lib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---install-lib.cpython-36.pyc-d83159b7d1b54270 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---install.cpython-36.pyc-068b629037ea5a01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/install.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---install.cpython-36.pyc-1bb93db8f38cbdb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---install.cpython-36.pyc-24d9ccb3c0c29ff0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/intranges.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---intranges.cpython-36.pyc-59476696895ca4f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/io.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---io.cpython-36.opt-1.pyc-5415b95cba1ba8ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/io.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---io.cpython-36.opt-2.pyc-66076f8464c5ac46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/io.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---io.cpython-36.pyc-3a6c127baf3e302f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ipaddress.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ipaddress.cpython-36.pyc-67a7a9b26d482f99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso2022-jp.cpython-36.pyc-dc277dac5ddfe7e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_kr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso2022-kr.cpython-36.pyc-c3297b74fbe7aaf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_1.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-1.cpython-36.pyc-738128f6d80959c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_10.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-10.cpython-36.pyc-4b49d54ea8f0e337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_11.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-11.cpython-36.pyc-b13544e10bb49888 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_13.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-13.cpython-36.pyc-b6470b31017cdcca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_14.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-14.cpython-36.pyc-a02f6cb9111e43b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_15.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-15.cpython-36.pyc-9db9ae8bfd74e2a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_16.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-16.cpython-36.pyc-496be30149f56ad9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_2.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-2.cpython-36.pyc-596e93ff58a2dc80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_3.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-3.cpython-36.pyc-d397529e666d01dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_4.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-4.cpython-36.pyc-1b08258f820e3207 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_5.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-5.cpython-36.pyc-ab2463f9e699d331 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_6.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-6.cpython-36.pyc-fe516fb125ec8c37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_7.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-7.cpython-36.pyc-4874a313769308cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_8.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-8.cpython-36.pyc-d845067e63970a60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_9.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iso8859-9.cpython-36.pyc-e07d0e18dcff2373 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/isodate.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---isodate.cpython-36.pyc-95b2db07c87c45b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/iterators.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---iterators.cpython-36.pyc-dcf6635d6bb31097 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/java.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---java.cpython-36.opt-1.pyc-3849828b7d81ce41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/java.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---java.cpython-36.pyc-1004c9c8948a4c93 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/jisfreq.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---jisfreq.cpython-36.pyc-8084f996e6504216 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/johab.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---johab.cpython-36.opt-1.pyc-84ea933e8f592e93 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/johab.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---johab.cpython-36.opt-2.pyc-f21ffa5b241c507c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/johab.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---johab.cpython-36.pyc-400a367714f27046 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/__pycache__/journal.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---journal.cpython-36.pyc-3797a65777b162b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/jpcntx.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---jpcntx.cpython-36.pyc-12ba9770429e33cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/jsonwrapper.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---jsonwrapper.cpython-36.pyc-35b146ea416aeac4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/keysign.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---keysign.cpython-36.pyc-668409ebf746e911 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/keysyms.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---keysyms.cpython-36.pyc-a6b6fce7acfc37f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/keyword.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---keyword.cpython-36.pyc-a09ceb27d4925c67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_r.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---koi8-r.cpython-36.pyc-cf0c9a7c59b80379 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_t.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---koi8-t.cpython-36.pyc-84e1faaf7a2db5d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_u.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---koi8-u.cpython-36.pyc-7fad3a41e98965bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/kpatch.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---kpatch.cpython-36.pyc-bb8298191049386e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/krb5.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---krb5.cpython-36.opt-1.pyc-1f757904ada9346c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/krb5.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---krb5.cpython-36.pyc-561a24031375c987 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/kz1048.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---kz1048.cpython-36.pyc-bfe569c74b6141d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/latin_1.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---latin-1.cpython-36.pyc-35744ea300b517fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/launch.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---launch.cpython-36.pyc-c8c02dc0b3921646 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---lib2to3-ex.cpython-36.pyc-42b3d3722c6d4113 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/libreswan.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---libreswan.cpython-36.pyc-45194389d2140db1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/libssh.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---libssh.cpython-36.pyc-a600ac7b52f2bc78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/__pycache__/libxml2.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---libxml2.cpython-36.pyc-f9bb6be523342b89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/linecache.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---linecache.cpython-36.pyc-e0a8a5512822ba62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/listing.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---listing.cpython-36.pyc-4fe6a5750a709eb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/literals.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---literals.cpython-36.pyc-90c39b209962a52c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/loader.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---loader.cpython-36.pyc-caf719b0a5f56314 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/locale.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---locale.cpython-36.pyc-03487e20442b8e2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/lock.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---lock.cpython-36.opt-1.pyc-48b3ddc761372864 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/lock.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---lock.cpython-36.opt-1.pyc-5b5e093ce3ca06f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/lock.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---lock.cpython-36.pyc-1d518288e7ac39ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/locks.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---locks.cpython-36.opt-1.pyc-ed10631affce4457 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/locks.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---locks.cpython-36.opt-2.pyc-a8142f8f159fce54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/locks.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---locks.cpython-36.pyc-dbf23393cf82715a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/log.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---log.cpython-36.opt-1.pyc-615fb378d5b1d52d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/log.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---log.cpython-36.opt-1.pyc-f5fb490019f1f2e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/log.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---log.cpython-36.opt-2.pyc-88ab2903f6e3124f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/log.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---log.cpython-36.opt-2.pyc-dd2bb690439a3dd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/log.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---log.cpython-36.pyc-26b403633e943525 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/logutil.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---logutil.cpython-36.pyc-6e9dc51ac5c94353 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---low-level.cpython-36.pyc-8c4efcb365714e17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/lowlevel.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---lowlevel.cpython-36.pyc-c41da0382a704773 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/lzma.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---lzma.cpython-36.opt-1.pyc-723cdbe2afa10489 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/lzma.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---lzma.cpython-36.opt-2.pyc-7ad9367753826e9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/lzma.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---lzma.cpython-36.pyc-221467600935d141 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/m2cryptossl.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---m2cryptossl.cpython-36.pyc-a69ff3ac0ae372a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_arabic.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mac-arabic.cpython-36.pyc-e6e7838b12b700a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_farsi.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mac-farsi.cpython-36.pyc-ceb0fb5b4c01980a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_greek.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mac-greek.cpython-36.pyc-52745fded86c3882 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_iceland.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mac-iceland.cpython-36.pyc-682ce4cae6253f0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_latin2.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mac-latin2.cpython-36.pyc-cefaf107f4021fdf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_roman.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mac-roman.cpython-36.pyc-31b4f159ef20fbf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_turkish.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mac-turkish.cpython-36.pyc-3d21720127619fc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/machinery.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---machinery.cpython-36.pyc-6aba5bace683d17c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/macpath.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---macpath.cpython-36.pyc-fa2500beeef562ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/macurl2path.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---macurl2path.cpython-36.pyc-8734d069d83ea1f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mailbox.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mailbox.cpython-36.pyc-4f2310576f166603 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mailcap.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mailcap.cpython-36.pyc-eb6d25dfd8821c9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/main.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-0aa1896e4d7e2488 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/main.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-4c9ceb2cdf20187e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/main.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-91adf2474d30a1d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/main.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-df3035db9588b3be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/main.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-ff95a23337c1ffeb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/main.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.opt-2.pyc-2189498162d87848 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/main.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.opt-2.pyc-89d94565bef34c99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/main.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.pyc-31507d9b9358733e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/main.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.pyc-3a6ddb57f0a0b0b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/main.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.pyc-598aecd0ec5f8a94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/main.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---main.cpython-36.pyc-93c0d386f7bcc5f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/makecache.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---makecache.cpython-36.pyc-9ba0c03b6d94e219 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/backports/__pycache__/makefile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---makefile.cpython-36.pyc-28a18292451847ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/managercli.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---managercli.cpython-36.pyc-c956b1c425cad418 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/managerlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---managerlib.cpython-36.pyc-7bc8bddaff601f05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/managers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---managers.cpython-36.pyc-7b325c951825872b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/mark.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---mark.cpython-36.opt-1.pyc-df27432f872e5269 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/mark.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mark.cpython-36.pyc-45db95b9b14090d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---markers.cpython-36.pyc-7387a4232e87f592 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---markers.cpython-36.pyc-8a7511b42c58cf5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mbcs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---mbcs.cpython-36.opt-1.pyc-2fd868b965c7080c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mbcs.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---mbcs.cpython-36.opt-2.pyc-c1575eb64f73d148 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mbcs.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mbcs.cpython-36.pyc-88cacc5f991dda5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/mbcssm.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mbcssm.cpython-36.pyc-9975631a8b88776a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/md.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---md.cpython-36.opt-1.pyc-63a632a26016d43a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/md.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---md.cpython-36.pyc-2e996ac0575e59de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/message.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---message.cpython-36.pyc-32158e30fff433b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/message.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---message.cpython-36.pyc-3a7a578ba13dcd1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mimetypes.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mimetypes.cpython-36.pyc-4d0bbf59aa83cbea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/minicompat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---minicompat.cpython-36.pyc-3980dc765c4f376b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/__pycache__/misc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---misc.cpython-36.opt-1.pyc-45e4d47fdaa09ac5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/miscutils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---miscutils.cpython-36.pyc-72dd692fc7df3ed7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/mock.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---mock.cpython-36.opt-1.pyc-198e76441c8b8927 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/mock.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---mock.cpython-36.opt-2.pyc-ff04aa6a58f249d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/mock.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mock.cpython-36.pyc-c4b2554ff35797f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/__pycache__/mode.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---mode.cpython-36.opt-1.pyc-6ad5aa4142791521 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/keylist/__pycache__/mode.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---mode.cpython-36.opt-1.pyc-c7cec218ab910c4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/keylist/__pycache__/mode.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---mode.cpython-36.pyc-4d51436ee9789481 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/models.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---models.cpython-36.pyc-3c7cc8cd3e3aa352 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/__pycache__/module_base.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---module-base.cpython-36.pyc-557351f9efaee3ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/module.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---module.cpython-36.pyc-0e7f4d20983d3bc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/module.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---module.cpython-36.pyc-315c4767d134e990 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/monkey.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---monkey.cpython-36.pyc-9f1fabd0665e1036 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/msvc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---msvc.cpython-36.opt-1.pyc-ffcc6c330d926349 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/msvc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---msvc.cpython-36.pyc-afbbbb4979e51a14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/multipart.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---multipart.cpython-36.pyc-974199400cd9671d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/namespaces.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---namespaces.cpython-36.pyc-3d1e2b11a927ea17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/ndbm.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---ndbm.cpython-36.opt-1.pyc-4548f1673ef5278a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/ndbm.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---ndbm.cpython-36.opt-2.pyc-27523c1db83e7122 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/netrc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---netrc.cpython-36.opt-1.pyc-016c1c9683508489 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/netrc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---netrc.cpython-36.opt-2.pyc-2e70ce66a5563d6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/netrc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---netrc.cpython-36.pyc-bb1108a0fcbb89bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/nntplib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---nntplib.cpython-36.pyc-67a46eada0a0ae03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/__pycache__/notation.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---notation.cpython-36.pyc-27adffe15bacccc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/nss.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---nss.cpython-36.opt-1.pyc-347260bbd90e4e13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/nss.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---nss.cpython-36.pyc-8bd739c59f631a18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/ntlmpool.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ntlmpool.cpython-36.pyc-892c0f134e8d49ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ntpath.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ntpath.cpython-36.pyc-6696ac76053b5399 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/nturl2path.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---nturl2path.cpython-36.pyc-0d90897990f6dcf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/numbers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---numbers.cpython-36.pyc-c746d8ea9ef0525f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/oem.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---oem.cpython-36.opt-1.pyc-0ec5fdf76bf2beea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/oem.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---oem.cpython-36.opt-2.pyc-ce70799082f621f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/oem.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---oem.cpython-36.pyc-62552a9c222a6840 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/opcode.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---opcode.cpython-36.pyc-aff2aa2074bfa327 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/openssh.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---openssh.cpython-36.pyc-7dd5fc72d5b82468 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/openssl.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---openssl.cpython-36.pyc-b57fa93af26c8280 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/operator.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---operator.cpython-36.pyc-68dac8f86115dd80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/optparse.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---optparse.cpython-36.pyc-ebd33017171aebf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/os.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---os.cpython-36.opt-1.pyc-ba2d65053098516f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/os.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---os.cpython-36.opt-2.pyc-6285d9b08d159be3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/os.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---os.cpython-36.pyc-e7f0cdf2dddf6e3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/ourjson.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ourjson.cpython-36.pyc-0936052f1564141b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/overrides.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---overrides.cpython-36.pyc-e8c03036a9d7d527 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/packages.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---packages.cpython-36.pyc-3bb203cf0b154965 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/palmos.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---palmos.cpython-36.pyc-5e49d0ce99fee0ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/panel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---panel.cpython-36.opt-1.pyc-590a58492dddba5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/panel.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---panel.cpython-36.opt-2.pyc-6c674772f88f159a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/panel.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---panel.cpython-36.pyc-6df2fc2c44718d63 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/parse.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---parse.cpython-36.opt-1.pyc-5cb064f39fc90b9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/parse.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---parse.cpython-36.opt-1.pyc-8ca9f115df44f141 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/parse.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---parse.cpython-36.opt-2.pyc-7357f059d392802d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/parse.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---parse.cpython-36.opt-2.pyc-de0a33796484276c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/parse.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---parse.cpython-36.pyc-0a412bd510a94ebd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/parser.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---parser.cpython-36.pyc-42001bb6eb4eb071 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/parser.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---parser.cpython-36.pyc-87d455f03e8206f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/patcomp.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---patcomp.cpython-36.pyc-8e60a78592aab9ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pathlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pathlib.cpython-36.pyc-38fdaab3495f5c40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/pathtree.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pathtree.cpython-36.pyc-7a11b66f448a55bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pdb.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---pdb.cpython-36.opt-1.pyc-a9c4e61933ab1c90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pdb.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---pdb.cpython-36.opt-2.pyc-e7ceadecb50b0337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pdb.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pdb.cpython-36.pyc-c7463e9a2d54922b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/pep425tags.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pep425tags.cpython-36.pyc-eeaedcbfb7234938 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/persistor.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---persistor.cpython-36.pyc-dc5339c11d897946 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/pgen.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---pgen.cpython-36.opt-1.pyc-88bd7d7752d1b0f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/pgen.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---pgen.cpython-36.opt-2.pyc-36a2a7b4b3cecc8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pickle.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pickle.cpython-36.pyc-8f45fdec9c2ad095 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pickletools.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pickletools.cpython-36.pyc-e741ca749462c824 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pipes.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---pipes.cpython-36.opt-1.pyc-1d569b1c529ecfa9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pipes.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---pipes.cpython-36.opt-2.pyc-f8d169b75916213f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pipes.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pipes.cpython-36.pyc-26018d5d51f9ee98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/pk.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---pk.cpython-36.opt-1.pyc-057c9b6695ba5158 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/pk.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pk.cpython-36.pyc-bc8b09f4247a1b4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pkgutil.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pkgutil.cpython-36.pyc-2b0a31ea577b021c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/platform.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---platform.cpython-36.pyc-a6fced4321659e32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/plistlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---plistlib.cpython-36.pyc-7ced002fcd1ac0e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/plugins.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---plugins.cpython-36.pyc-d6af94093366c622 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/policy.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---policy.cpython-36.pyc-cb89fe50f6ca0684 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/pool.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---pool.cpython-36.opt-1.pyc-b63629e5cbdbb027 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/pool.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---pool.cpython-36.opt-2.pyc-6efe01d14676e41f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/pool.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pool.cpython-36.pyc-f89ff76fa23ae58e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/poolmanager.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---poolmanager.cpython-36.pyc-8a30563b0e2435c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_fork.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---popen-fork.cpython-36.pyc-7e8fe4d15df9e731 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/poplib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---poplib.cpython-36.pyc-c1b61dc8377b298e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/posixpath.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---posixpath.cpython-36.pyc-3689e613484cc57b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pprint.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pprint.cpython-36.pyc-e75d71b9c5a64056 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/printing.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---printing.cpython-36.pyc-86a3af916f40ced3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/process.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---process.cpython-36.pyc-9bb26be1a9367711 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/process.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---process.cpython-36.pyc-c313bc6b5ee8dd89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/product-id.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---product-id.cpython-36.pyc-5cf82b1ddd36dd92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/productid.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---productid.cpython-36.pyc-75239cad5e938319 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/products.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---products.cpython-36.pyc-1b0796678be7c1cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/products.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---products.cpython-36.pyc-609071b11c4e93bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/profile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---profile.cpython-36.pyc-5f6271ef3d0b0178 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/profile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---profile.cpython-36.pyc-ca61ad942ed21c38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/progress.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---progress.cpython-36.pyc-c7ed56d1bf89719a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/protocol.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---protocol.cpython-36.pyc-c94efeafd048aa94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/protocols.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---protocols.cpython-36.pyc-d765272f8b0c6181 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/provider.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---provider.cpython-36.pyc-c71b63f1b4893c4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/proxies.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---proxies.cpython-36.pyc-e1ceb9bef3292147 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pstats.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pstats.cpython-36.pyc-2007ab25b1902510 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/ptcp154.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ptcp154.cpython-36.pyc-4884511e1b623890 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pty.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---pty.cpython-36.opt-1.pyc-e097b771965f063a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pty.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---pty.cpython-36.opt-2.pyc-5c5c8290c30991a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pty.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pty.cpython-36.pyc-341ae30c15ad6c1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/punycode.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---punycode.cpython-36.pyc-4c5d3bd6a77bf3e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/py_compile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---py-compile.cpython-36.pyc-2ca284d2039a0f00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py27compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---py27compat.cpython-36.pyc-25dd341123d92fce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py31compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---py31compat.cpython-36.pyc-09b7a1151b315873 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/__pycache__/py31compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---py31compat.cpython-36.pyc-34314531462dd898 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py33compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---py33compat.cpython-36.pyc-5df8687ed5486689 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py36compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---py36compat.cpython-36.pyc-0be4266156ef6b45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/py36compat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---py36compat.cpython-36.pyc-94796c94efdc5e5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pyclbr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pyclbr.cpython-36.pyc-9a3c6780ef5ba6c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pydoc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---pydoc.cpython-36.opt-1.pyc-a80bf96e7f51f6dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pydoc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---pydoc.cpython-36.opt-2.pyc-f468ffd5af567995 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pydoc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pydoc.cpython-36.pyc-5310b5d050f8e0d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/pygram.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pygram.cpython-36.pyc-07ea66df14ff8ba7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/pygtkcompat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pygtkcompat.cpython-36.pyc-2700436d18aa43c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/__pycache__/pygtkcompat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pygtkcompat.cpython-36.pyc-506dd9bdd5b7173d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/pyinotify.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pyinotify.cpython-36.pyc-59098d108c6a6e3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pyopenssl.cpython-36.pyc-58cc00ba0e6b46b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pyparsing.cpython-36.pyc-6b21ae47e937c43e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pyparsing.cpython-36.pyc-8f9685e6501bccd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/pytree.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---pytree.cpython-36.pyc-c1ac973e815dd8a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/query.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---query.cpython-36.opt-1.pyc-1dd9c5ffca7cf891 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/queue.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---queue.cpython-36.opt-1.pyc-3a0a3da86ae89392 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/queue.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---queue.cpython-36.opt-1.pyc-83902ee327dc3a0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/queue.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---queue.cpython-36.opt-2.pyc-ed410657d3cb9249 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/queue.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---queue.cpython-36.pyc-b31aed4e33c7b066 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/queues.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---queues.cpython-36.pyc-63d3dd4642770d8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/queues.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---queues.cpython-36.pyc-d1519045b979c759 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/quopri.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---quopri.cpython-36.pyc-a8193883efd62de5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/quoprimime.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---quoprimime.cpython-36.pyc-650ee14b50d1368a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/random.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---random.cpython-36.pyc-d3c5e102fb4c59e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rct.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---rct.cpython-36.opt-1.pyc-fafae58617363932 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/re.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---re.cpython-36.opt-1.pyc-2993d287419d68c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/re.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---re.cpython-36.opt-2.pyc-0af55c36aec703cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/re.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---re.cpython-36.pyc-a4360b20c12fc74a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/read.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---read.cpython-36.opt-1.pyc-a5f1204c53cd5641 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/reasons.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---reasons.cpython-36.pyc-2be39de054f8e22f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/zoneinfo/__pycache__/rebuild.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rebuild.cpython-36.pyc-2857066dcfcc9882 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/reduction.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---reduction.cpython-36.pyc-ea79529c67049c50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/refactor.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---refactor.cpython-36.pyc-eb75187f102973f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/refresh.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---refresh.cpython-36.pyc-10722e5cff5743d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/register.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---register.cpython-36.pyc-7ed6ccad31c01225 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/register.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---register.cpython-36.pyc-bfa8461996e8dd3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/register.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---register.cpython-36.pyc-f53666f10a961a4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/register.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---register.cpython-36.pyc-f86e2fda304d7c0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/reinstall.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---reinstall.cpython-36.pyc-630a1a8acb7b10d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/release.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---release.cpython-36.pyc-64f067429ffa36bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/remove.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---remove.cpython-36.pyc-505332668dfff967 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/repo.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---repo.cpython-36.opt-1.pyc-000ff4a7f62f3421 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/repo.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---repo.cpython-36.opt-1.pyc-c8b3c387378c411a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repoclosure.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repoclosure.cpython-36.pyc-fa76c4b1b9eef291 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/repodict.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repodict.cpython-36.pyc-838d50e06408095c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repodiff.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repodiff.cpython-36.pyc-27afce78dfe699a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/repofile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repofile.cpython-36.pyc-1511fb6eb770062c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repograph.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repograph.cpython-36.pyc-7432fd592f2081e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/repolib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repolib.cpython-36.pyc-976f3a7b0cc2b04a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/repolist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repolist.cpython-36.pyc-4d7b7e4ceed53e34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repomanage.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repomanage.cpython-36.pyc-cb3c8650a3731d28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/repoquery.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---repoquery.cpython-36.pyc-6e180141c29c3e84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/api/__pycache__/repos.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---repos.cpython-36.opt-1.pyc-aab253cb69db2ffd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/reposync.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---reposync.cpython-36.pyc-08f7dd0a7125b30b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/reprlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---reprlib.cpython-36.pyc-59b61f3623c9317d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/request.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---request.cpython-36.pyc-3817cf66058539ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/request.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---request.cpython-36.pyc-5462ed366e4a00e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/request.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---request.cpython-36.pyc-c676eb81873e4ed4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/response.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---response.cpython-36.pyc-181c842ac6751007 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/response.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---response.cpython-36.pyc-4b6c8dc16e0e164d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/response.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---response.cpython-36.pyc-ca67d03dd800e085 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/result.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---result.cpython-36.pyc-f64a13799e05144d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/retry.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---retry.cpython-36.opt-1.pyc-3f16a51fdc5ae681 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/rhelproduct.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rhelproduct.cpython-36.pyc-5cf813f46ef3db1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsm_debug.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rhsm-debug.cpython-36.pyc-51b223adebc5a696 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/rlcompleter.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rlcompleter.cpython-36.pyc-0fc43e4f991d53ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/robotparser.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---robotparser.cpython-36.pyc-18c220c9cea70eed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/rot_13.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rot-13.cpython-36.pyc-57765b3d9e45cf9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/rotate.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rotate.cpython-36.pyc-a0f8d7312924ab70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/__pycache__/rpmtrans.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rpmtrans.cpython-36.pyc-d82813346941f141 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/rrule.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---rrule.cpython-36.opt-1.pyc-b727818b7cd63eed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/rrule.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rrule.cpython-36.pyc-a909bcb174f66612 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/rules.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---rules.cpython-36.opt-1.pyc-bab9321ba297f98e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/rules.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---rules.cpython-36.pyc-eb7278e003ad755f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/runner.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---runner.cpython-36.pyc-d37b69d00f5f5dca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/runpy.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---runpy.cpython-36.opt-1.pyc-dd7a3fe206fd51d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/runpy.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---runpy.cpython-36.opt-2.pyc-c4dee6574a2bf65c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/runpy.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---runpy.cpython-36.pyc-06e6fe5d3f31f456 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/sack.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---sack.cpython-36.opt-1.pyc-c47164ea9ef90b6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/sandbox.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sandbox.cpython-36.pyc-25385efd89c6dd5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/sat5to6.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sat5to6.cpython-36.pyc-ec8192f694fffda5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/saveopts.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---saveopts.cpython-36.pyc-5f5fe5791a17c103 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/saxutils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---saxutils.cpython-36.pyc-c310769e44dcd1bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/scanner.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---scanner.cpython-36.pyc-aad8eb84e01bf00d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sched.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---sched.cpython-36.opt-1.pyc-8be1c7cf03da0965 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sched.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---sched.cpython-36.opt-2.pyc-e3909aecf6373496 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sched.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sched.cpython-36.pyc-6473ce6626135337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/scope.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---scope.cpython-36.opt-1.pyc-3980da1db80e1709 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/scope.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---scope.cpython-36.pyc-ae595fa5ef6393f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/sdist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---sdist.cpython-36.opt-1.pyc-16786b9a58933d4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/sdist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---sdist.cpython-36.opt-1.pyc-2bd1098d9a5f7a2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/sdist.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---sdist.cpython-36.opt-2.pyc-9fcdb02df11f97c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/sdist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sdist.cpython-36.pyc-72a94aa4f38de346 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/sdist.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sdist.cpython-36.pyc-e77218776bc227e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/search.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---search.cpython-36.pyc-8dabc8107be9bce2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/secrets.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---secrets.cpython-36.pyc-3c247f9a9cd33c7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/selector.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---selector.cpython-36.pyc-047ef222097cadbb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/selectors.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---selectors.cpython-36.pyc-a2863a43d09bbcc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/server.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---server.cpython-36.pyc-053126d7053b3394 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/service.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---service.cpython-36.pyc-d9d55e0c06b8406a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/sessions.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sessions.cpython-36.pyc-7bab152c5c102c46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/setopt.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---setopt.cpython-36.pyc-068ca03dc96ba7bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/setup.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---setup.cpython-36.opt-1.pyc-6c15b595776fc446 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/setup.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---setup.cpython-36.pyc-cf1f8d334eaa87d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/shell.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---shell.cpython-36.opt-1.pyc-a0c2afbd30d60f44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/shell.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---shell.cpython-36.pyc-475ceeeab1eb832b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shelve.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---shelve.cpython-36.pyc-ea7a8db82f4f7ed8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jis.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---shift-jis.cpython-36.pyc-5649e6f6602f8bef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shlex.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---shlex.cpython-36.opt-1.pyc-5f1963f495521757 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shlex.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---shlex.cpython-36.opt-2.pyc-ab23a565769556f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shlex.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---shlex.cpython-36.pyc-b403215fb17e88e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shutil.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---shutil.cpython-36.pyc-ff624ececa18fb94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/signal.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---signal.cpython-36.pyc-7addc8b22f85de1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/signals.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---signals.cpython-36.pyc-bbfea4e26d2af868 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/sigsum.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sigsum.cpython-36.pyc-f4922ec0737a8c60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/site-patch.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---site-patch.cpython-36.pyc-0eff47e5ce77064b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/site.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---site.cpython-36.opt-1.pyc-d7e29f4364a02e88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/site.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---site.cpython-36.opt-2.pyc-c498599d72c96082 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/site.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---site.cpython-36.pyc-6fd17c125e105947 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/six.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---six.cpython-36.opt-1.pyc-19f6d698a9b3b961 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---six.cpython-36.opt-1.pyc-88b9108aa3bb0bc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/__pycache__/six.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---six.cpython-36.opt-1.pyc-e646091bc7cd44f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/six.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---six.cpython-36.pyc-397819a76dd784a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/sjisprober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sjisprober.cpython-36.pyc-5c66e54d0b9ebb0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/smartcols.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---smartcols.cpython-36.pyc-4e2e87465e185b88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/smtpd.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---smtpd.cpython-36.opt-1.pyc-5d7534d0e02e4804 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/smtpd.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---smtpd.cpython-36.opt-2.pyc-70a2ded37975c96c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/smtpd.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---smtpd.cpython-36.pyc-81f5e5f9c4f0b5a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/smtplib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---smtplib.cpython-36.pyc-d852e3f13746c174 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sndhdr.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sndhdr.cpython-36.pyc-c979f13da1f59a1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/socket.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---socket.cpython-36.pyc-074ccc0ea81ff3d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/socks.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---socks.cpython-36.opt-1.pyc-82d71b534c71565b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/socks.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---socks.cpython-36.opt-1.pyc-af2de359b6303b7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/socks.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---socks.cpython-36.pyc-119ae5c8ff9312b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/socks.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---socks.cpython-36.pyc-cd2f2357b8eb9267 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/spawn.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---spawn.cpython-36.opt-1.pyc-b7061aec7ca6ab0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/spawn.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---spawn.cpython-36.opt-1.pyc-e13cc669bc51964c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/spawn.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---spawn.cpython-36.opt-2.pyc-3f442e285663ec1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/spawn.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---spawn.cpython-36.opt-2.pyc-bdb708757448c7e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/spawn.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---spawn.cpython-36.pyc-2facf87d098fe3f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/spawn.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---spawn.cpython-36.pyc-862205e36098e396 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---specifiers.cpython-36.pyc-524b2af929d3fb89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---specifiers.cpython-36.pyc-ef934e3e921f2ac4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_compile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sre-compile.cpython-36.pyc-0a6f3a1e10e2316a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_parse.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sre-parse.cpython-36.pyc-d8bfe2fe0fe40c85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/ssl_.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---ssl-.cpython-36.opt-1.pyc-b5645bb10d56e762 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/ssl_support.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ssl-support.cpython-36.pyc-67db056ce9cbbb16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ssl.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---ssl.cpython-36.opt-1.pyc-230b5d69d5007aa2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ssl.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---ssl.cpython-36.opt-2.pyc-7a8889b38f3f8099 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ssl.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---ssl.cpython-36.pyc-c8d3472c55bcb211 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/sslproto.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sslproto.cpython-36.pyc-24599da6a0df37ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/stat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---stat.cpython-36.opt-1.pyc-de4f607a86454131 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/stat.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---stat.cpython-36.opt-2.pyc-ee1026349a5d1d76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/stat.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---stat.cpython-36.pyc-366bc92b84dcab20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/statistics.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---statistics.cpython-36.pyc-66bcf77f8e916e23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/status.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---status.cpython-36.pyc-2f505bf727ce5785 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/streams.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---streams.cpython-36.pyc-7087fec6e9ffd049 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/string.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---string.cpython-36.pyc-05f1bbef8dc8b070 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/stringprep.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---stringprep.cpython-36.pyc-e51da88a90e67100 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/struct.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---struct.cpython-36.pyc-7fbbc326184994bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/structures.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---structures.cpython-36.pyc-19dc6001b089a5e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/subprocess.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---subprocess.cpython-36.pyc-7e8e5df570f69c0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/subprocess.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---subprocess.cpython-36.pyc-d8786bd3bb243352 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/suite.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---suite.cpython-36.opt-1.pyc-47c3cbe842e36f1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/suite.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---suite.cpython-36.opt-2.pyc-acfbb9d091b18230 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/suite.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---suite.cpython-36.pyc-de10535d02dd41d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sunau.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---sunau.cpython-36.opt-1.pyc-976171311ccb1375 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sunau.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---sunau.cpython-36.opt-2.pyc-6a050517c1fb8c9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sunau.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sunau.cpython-36.pyc-5c8879eacf4fc22c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/swap.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---swap.cpython-36.opt-1.pyc-9db8ed01f5cf1122 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/swap.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---swap.cpython-36.pyc-c35b6166b2b25d8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/symbol.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---symbol.cpython-36.pyc-4b43a393b89479d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/symtable.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---symtable.cpython-36.pyc-72fa660a904eba31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/synchronize.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---synchronize.cpython-36.pyc-a638b9b8f77a7b31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sysconfig.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sysconfig.cpython-36.pyc-70784c85eb69633f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/sysconfig.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---sysconfig.cpython-36.pyc-875692ddbd17905e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/syspurpose.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---syspurpose.cpython-36.pyc-34b0b62cda4d916c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/syspurpose.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---syspurpose.cpython-36.pyc-82e93f7b796fe509 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tabnanny.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tabnanny.cpython-36.pyc-2f60d4ec7d06a4b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tarfile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tarfile.cpython-36.pyc-258e2c824700f319 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/tasks.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---tasks.cpython-36.opt-1.pyc-2c6db6592877f2db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/tasks.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---tasks.cpython-36.opt-2.pyc-041bff7b0b3ceebb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/tasks.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tasks.cpython-36.pyc-f294925d936bd3bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/telnetlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---telnetlib.cpython-36.pyc-3d3517d31b221be7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tempfile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tempfile.cpython-36.pyc-f1863becf54a2f29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/term.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---term.cpython-36.opt-1.pyc-f17d9c64af4efa69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/__pycache__/test_daemon.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---test-daemon.cpython-36.pyc-c21a64f9f731a18d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/__pycache__/test_login.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---test-login.cpython-36.pyc-3c925badfccce117 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/test_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---test-utils.cpython-36.pyc-d5aa2e945298c1f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/test.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---test.cpython-36.opt-1.pyc-9e9aa9f80b526797 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/test.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---test.cpython-36.pyc-7000dbcd7430b0d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/testresult.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---testresult.cpython-36.pyc-7b8a63a84ba60d41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/text_file.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---text-file.cpython-36.pyc-b90858d09fecc5cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/text.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---text.cpython-36.opt-1.pyc-a6b544f5a84c7521 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/text.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---text.cpython-36.opt-2.pyc-0a586fde76cced40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/textpad.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---textpad.cpython-36.pyc-83332deb5ec019b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/textwrap.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---textwrap.cpython-36.pyc-41a857f0d37c74f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/this.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---this.cpython-36.opt-1.pyc-0760d8f27edd4aeb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/this.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---this.cpython-36.opt-2.pyc-12a3175d7bfcdf9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/this.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---this.cpython-36.pyc-5c2d24b4fdff7d14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/thread.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---thread.cpython-36.pyc-8b1a677a1559fb44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/threading.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---threading.cpython-36.pyc-e17f50e715621edf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/timeit.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---timeit.cpython-36.pyc-ccb0ce3e5f021788 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/timeout.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---timeout.cpython-36.pyc-aaeb9c791681cd1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/tis_620.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tis-620.cpython-36.pyc-1a084cd12182405f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/token.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---token.cpython-36.opt-1.pyc-82c9cee6a7de18bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/token.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---token.cpython-36.opt-1.pyc-998859b7ddd79eef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/token.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---token.cpython-36.opt-2.pyc-1a6455cb3879d790 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/token.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---token.cpython-36.opt-2.pyc-451d3c16a1e2f7e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/token.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---token.cpython-36.pyc-8461bab02f784100 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/tokenize.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tokenize.cpython-36.pyc-43116e9521e0fac7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tokenize.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tokenize.cpython-36.pyc-fe3b9fe2bbf9e2ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/tool.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---tool.cpython-36.opt-1.pyc-8f6e83f2e807dba4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/tool.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---tool.cpython-36.opt-2.pyc-d0db017cb971bb44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/__pycache__/topics.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---topics.cpython-36.pyc-8578e33db9816815 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/trace.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---trace.cpython-36.opt-1.pyc-9a802f4d2de33a09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/trace.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---trace.cpython-36.opt-2.pyc-0b83de2c7cf53af9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/trace.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---trace.cpython-36.pyc-b03240054321a3bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/traceback.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---traceback.cpython-36.pyc-0ecae02d200306b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tracemalloc.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tracemalloc.cpython-36.pyc-0bc35860aecd24ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/__pycache__/transaction.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---transaction.cpython-36.pyc-1faf9dc9e4650d0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/transaction.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---transaction.cpython-36.pyc-954075378a857790 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/transaction.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---transaction.cpython-36.pyc-a9555597364cf4e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/transaction.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---transaction.cpython-36.pyc-fff4020a9b59eab7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/transports.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---transports.cpython-36.pyc-b15a4ad67a37b8cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tty.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---tty.cpython-36.opt-1.pyc-dd42e25cb7520334 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tty.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---tty.cpython-36.opt-2.pyc-4bf1bb3c4d77b1c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tty.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tty.cpython-36.pyc-3b3890f517d92216 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/types.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---types.cpython-36.opt-1.pyc-3c64a70b08cf5c2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/types.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---types.cpython-36.opt-1.pyc-6b04a818e62849c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/types.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---types.cpython-36.opt-1.pyc-b7d621791737748f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/types.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---types.cpython-36.opt-2.pyc-fa1996df12fe1fb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/types.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---types.cpython-36.pyc-f728fcdefd675462 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/typing.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---typing.cpython-36.pyc-dbbd5c011bd11875 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/tzwin.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---tzwin.cpython-36.opt-1.pyc-fb8abfbadb50fa28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/tzwin.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---tzwin.cpython-36.pyc-e8312a78628c3e0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/undefined.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---undefined.cpython-36.pyc-c18525ddf9d33d34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/unix_events.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---unix-events.cpython-36.pyc-3e7044b5409fba94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/unregister.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---unregister.cpython-36.pyc-8f3d5a5f101c30b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/unregister.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---unregister.cpython-36.pyc-babf2f00c98fb1a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/updateinfo.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---updateinfo.cpython-36.pyc-63309467643ac91b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/upgrade.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---upgrade.cpython-36.pyc-d53e04f34c737c20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/upload_docs.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---upload-docs.cpython-36.pyc-b1b23f5ad8646652 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/upload.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---upload.cpython-36.pyc-53eff3312532da78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/upload.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---upload.cpython-36.pyc-be81d050eaf81cf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/url.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---url.cpython-36.opt-1.pyc-a82eb069bae80e10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16_be.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-16-be.cpython-36.pyc-f08ab9348e289b2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16_le.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-16-le.cpython-36.pyc-47b6852d8ea772cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-16.cpython-36.pyc-9e09620fff44e023 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32_be.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-32-be.cpython-36.pyc-baab7a4fdec77630 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32_le.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-32-le.cpython-36.pyc-961709030ceefc5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-32.cpython-36.pyc-e2a6678af59a9596 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_7.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utf-7.cpython-36.opt-1.pyc-ba0286d9d8933901 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_7.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---utf-7.cpython-36.opt-2.pyc-91092a391be68b32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_7.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-7.cpython-36.pyc-d21253c4e6a6cdb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_8_sig.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-8-sig.cpython-36.pyc-6479d21f0d09542e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_8.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utf-8.cpython-36.opt-1.pyc-211842dc65562bb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_8.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---utf-8.cpython-36.opt-2.pyc-d5c40e91791974e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_8.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf-8.cpython-36.pyc-695dac83ef7524a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/utf8prober.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utf8prober.cpython-36.pyc-896f11f4c393377a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-010be6e638bc766a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-105d61f4667fbd2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-510def62e5c07565 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-537093e41088f7d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-6560370f96feb385 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-6c6c7f977b3269b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-ac11cc1c39799106 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-d56c80f999fc0076 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-f085f362fb8839b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-216f5cb84751866e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-62dfca322ab5b7c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-8b0837b70ec7358d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-8e89930d4dca01d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-ebfd585065d2b956 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-f27724ad5d30be3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.pyc-05e4485bdbf84981 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.pyc-4bbab8827434bef5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.pyc-55dc60e6c4917421 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.pyc-b2f7c8db336c67d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---util.cpython-36.pyc-e626eca7cff4204e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-00c7678a0465dc8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-38e1bb4a31f86fef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-3a7a37b46084b2d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-4334655ae16fbabe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-61f6da82a15caecc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-6ec4dc729c1f7a32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-9873cb24c1403865 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-b1507c4f4f359d0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-b5cf72fa375e785a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-ffc2c3fa72149155 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/utils.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.opt-2.pyc-cbef5f5729c40e49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.pyc-306502d8e4e17a47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.pyc-4850a291da5c5b7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.pyc-93a7f5a8c292ff86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.pyc-a4a925b64e8cd962 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.pyc-b195fcac439ef9fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.pyc-d7a255f8e91d61f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---utils.cpython-36.pyc-deb553c0dfe4a890 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/uts46data.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---uts46data.cpython-36.pyc-68d6633e7b9cafa3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/uu_codec.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---uu-codec.cpython-36.pyc-1995b1caaac5256c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/uu.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---uu.cpython-36.opt-1.pyc-bb10259bf139c25b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/uu.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---uu.cpython-36.opt-2.pyc-fec546195f19bd2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/uu.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---uu.cpython-36.pyc-0aeefa3dd51fc744 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/uuid.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---uuid.cpython-36.opt-1.pyc-ea4b9ce3264ba332 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/uuid.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---uuid.cpython-36.opt-2.pyc-8c6081c3571e1279 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/uuid.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---uuid.cpython-36.pyc-71e8d9fc8db55711 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/validate.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---validate.cpython-36.pyc-a736ba22e82827d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/validity.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---validity.cpython-36.pyc-a98741a21a5c3e7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/validity.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---validity.cpython-36.pyc-f76f8c655af030a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---version.cpython-36.pyc-54d69ae0d3490211 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---version.cpython-36.pyc-abafa25e1b22da10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---version.cpython-36.pyc-c12b7fb88434e33c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---version.cpython-36.pyc-cc67b9d66407028e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---version.cpython-36.pyc-ee4276565912c304 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---version.cpython-36.pyc-f0c51154c06f5a30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/virt.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---virt.cpython-36.opt-1.pyc-d7af69f90cc5c479 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/wait.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---wait.cpython-36.opt-1.pyc-1ab2abfca343e04e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/warnings.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---warnings.cpython-36.pyc-3bcd433a7c622273 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/wave.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---wave.cpython-36.opt-1.pyc-845fb9308613bcfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/wave.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...--pycache---wave.cpython-36.opt-2.pyc-28b624d07810872c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/wave.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---wave.cpython-36.pyc-7d87be9c332caf2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/weakref.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---weakref.cpython-36.pyc-cf7a6f629a4cf3a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/webbrowser.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---webbrowser.cpython-36.pyc-acd9a396d4d842f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/wheel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---wheel.cpython-36.opt-1.pyc-a46cb6a2b07397cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/wheel.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---wheel.cpython-36.pyc-6339043bd7ffca89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/win.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--pycache---win.cpython-36.opt-1.pyc-dd9df900b9b94393 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/wintypes.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---wintypes.cpython-36.pyc-03b2d49d6dfce96b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/xdrlib.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---xdrlib.cpython-36.pyc-2802a95c17319bb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/xmlbuilder.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---xmlbuilder.cpython-36.pyc-9e598584e64dca5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/xmlreader.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---xmlreader.cpython-36.pyc-f0bbcae11f312ddc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/zipapp.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---zipapp.cpython-36.pyc-7ab904bc1e09ff85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/zipfile.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---zipfile.cpython-36.pyc-90ea6c4df28193ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/zlib_codec.cpython-36.pyc +SPDXID: SPDXRef-File-...--pycache---zlib-codec.cpython-36.pyc-b1cc75199425683e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/__version__.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...--version--.cpython-36.opt-1.pyc-8485a437f300d785 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-appengine-environ.cpython-36.opt-1.pyc-5e501a9a6a9fc28f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-36.pyc +SPDXID: SPDXRef-File-...-appengine-environ.cpython-36.pyc-5f2a9c0d61412433 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_asyncio.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-asyncio.cpython-36m-x86-64-linux-gnu.so-9cc3b0306414dbeb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/_base_provider.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-base-provider.cpython-36.opt-1.pyc-93a176e56b27a9e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/_base_provider.cpython-36.pyc +SPDXID: SPDXRef-File-...-base-provider.cpython-36.pyc-4d824cadc75b614d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_bisect.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-bisect.cpython-36m-x86-64-linux-gnu.so-2690072667cfc04e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-blake2.cpython-36m-x86-64-linux-gnu.so-f702c8fb3de18e46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_bootlocale.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-bootlocale.cpython-36.opt-1.pyc-2ee5e41ea11d0ee0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_bootlocale.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-bootlocale.cpython-36.opt-2.pyc-96aab7a7a7c4914a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/_bootstrap_external.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-bootstrap-external.cpython-36.opt-1.pyc-288775a41cc7dc8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/_bootstrap_external.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-bootstrap-external.cpython-36.opt-2.pyc-62a91ee634295040 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/_bootstrap_external.cpython-36.pyc +SPDXID: SPDXRef-File-...-bootstrap-external.cpython-36.pyc-727817e4f5f0df1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/_bootstrap.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-bootstrap.cpython-36.opt-1.pyc-da5d74d44938430a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/_bootstrap.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-bootstrap.cpython-36.opt-2.pyc-14a89d427ad41e5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-bz2.cpython-36m-x86-64-linux-gnu.so-67d0fe0803bbe75e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/_certificate.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-certificate.cpython-36m-x86-64-linux-gnu.so-bd2007c0144efb98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_codecs_cn.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-codecs-cn.cpython-36m-x86-64-linux-gnu.so-ddd0be7f610b1555 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_codecs_hk.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-codecs-hk.cpython-36m-x86-64-linux-gnu.so-fb9220c8bfd5e1ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_codecs_iso2022.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-codecs-iso2022.cpython-36m-x86-64-linux-gnu.so-c6db402aa02d2ea7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_codecs_jp.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-codecs-jp.cpython-36m-x86-64-linux-gnu.so-78a7bb281d7404b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_codecs_kr.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-codecs-kr.cpython-36m-x86-64-linux-gnu.so-5d23934f2034df27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_codecs_tw.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-codecs-tw.cpython-36m-x86-64-linux-gnu.so-44d8850e5fc3273e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_collections_abc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-collections-abc.cpython-36.opt-1.pyc-175262bec90dbeae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_collections_abc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-collections-abc.cpython-36.opt-2.pyc-ed76eb9ebd60eadc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_collections_abc.cpython-36.pyc +SPDXID: SPDXRef-File-...-collections-abc.cpython-36.pyc-e00ce4fbbfbfc347 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/_collections.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-collections.cpython-36.opt-1.pyc-b5b147530221a2e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/_collections.cpython-36.pyc +SPDXID: SPDXRef-File-...-collections.cpython-36.pyc-bce1262bbbf10c4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/_common.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-common.cpython-36.opt-1.pyc-9fcf6e708c14c890 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/_common.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-common.cpython-36.opt-1.pyc-e14c2f166a84083a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_compat_pickle.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-compat-pickle.cpython-36.opt-1.pyc-1ec8e676bd95eca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_compat_pickle.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-compat-pickle.cpython-36.opt-2.pyc-11b6f964e6c9e54e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_compat_pickle.cpython-36.pyc +SPDXID: SPDXRef-File-...-compat-pickle.cpython-36.pyc-1173da7986d22c1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-compat.cpython-36.opt-1.pyc-30511abd7c1ff577 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-compat.cpython-36.opt-1.pyc-48b6c5909c29a2ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/_compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-compat.cpython-36.opt-1.pyc-b23e56ede00547aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_compression.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-compression.cpython-36.opt-1.pyc-502c38358d1b28a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_compression.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-compression.cpython-36.opt-2.pyc-ed45ffc6bdbf8648 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_compression.cpython-36.pyc +SPDXID: SPDXRef-File-...-compression.cpython-36.pyc-b2f228d38b1b37bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_constants.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-constants.cpython-36.opt-1.pyc-87c88c22b0ea831b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_crypt.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-crypt.cpython-36m-x86-64-linux-gnu.so-77d00405e28ae9e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-csv.cpython-36m-x86-64-linux-gnu.so-d3fd3f12d78803e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_ctypes.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-ctypes.cpython-36m-x86-64-linux-gnu.so-3a0addca4fa65722 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_curses_panel.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-curses-panel.cpython-36m-x86-64-linux-gnu.so-95c0fe85813a161c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_curses.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-curses.cpython-36m-x86-64-linux-gnu.so-219c6338fee13b1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/_daemon.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-daemon.cpython-36m-x86-64-linux-gnu.so-9fb20285e6c23f2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-datetime.cpython-36m-x86-64-linux-gnu.so-b82f90825ad99861 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_dbm.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-dbm.cpython-36m-x86-64-linux-gnu.so-8b638929cbabdece +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_decimal.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-decimal.cpython-36m-x86-64-linux-gnu.so-659784d80e2bd250 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_dummy_thread.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-dummy-thread.cpython-36.opt-1.pyc-00be3f674be8c6c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_dummy_thread.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-dummy-thread.cpython-36.opt-2.pyc-da0041f03f7a1e70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_dummy_thread.cpython-36.pyc +SPDXID: SPDXRef-File-...-dummy-thread.cpython-36.pyc-267b3db000c0d2a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_elementtree.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-elementtree.cpython-36m-x86-64-linux-gnu.so-8dec126c4688208c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_encoded_words.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-encoded-words.cpython-36.opt-1.pyc-b51186919b0129b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_encoded_words.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-encoded-words.cpython-36.opt-2.pyc-de060fab1acaf35f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_encoded_words.cpython-36.pyc +SPDXID: SPDXRef-File-...-encoded-words.cpython-36.pyc-1d51a0af06f64e0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/_endian.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-endian.cpython-36.opt-1.pyc-d491f989b653f8d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/_endian.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-endian.cpython-36.opt-2.pyc-f89a4d2885d93c3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_error.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-error.cpython-36.opt-1.pyc-656ac6a3f5e64ada +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/_exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-exceptions.cpython-36.opt-1.pyc-8a9104c40944937b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/_exceptions.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-exceptions.cpython-36.opt-2.pyc-4a056210788d89bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/_expat_introspect_parser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-expat-introspect-parser.cpython-36.opt-1.pyc-325431f79329a3f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/_expat_introspect_parser.cpython-36.pyc +SPDXID: SPDXRef-File-...-expat-introspect-parser.cpython-36.pyc-53efe168e7a9bc85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_gdbm.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-gdbm.cpython-36m-x86-64-linux-gnu.so-3c6870e48986ad76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/_gpgme.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-gpgme.cpython-36m-x86-64-linux-gnu.so-0fb42b583610e8e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-hashlib.cpython-36m-x86-64-linux-gnu.so-d250c8e5093a38ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_header_value_parser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-header-value-parser.cpython-36.opt-1.pyc-87d3b31fbf6c333e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_header_value_parser.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-header-value-parser.cpython-36.opt-2.pyc-90eaf3a87576f65e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_header_value_parser.cpython-36.pyc +SPDXID: SPDXRef-File-...-header-value-parser.cpython-36.pyc-b16712c9dbc5a72a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_heapq.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-heapq.cpython-36m-x86-64-linux-gnu.so-14e2e25de99b80a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_hmacopenssl.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-hmacopenssl.cpython-36m-x86-64-linux-gnu.so-dddda1b9941eae7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/_internal_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-internal-utils.cpython-36.opt-1.pyc-ce164cc4431b8b65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/_internal_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...-internal-utils.cpython-36.pyc-49691aa0896fd585 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/_journal.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-journal.cpython-36m-x86-64-linux-gnu.so-f0197f6bc3fa3349 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-json.cpython-36m-x86-64-linux-gnu.so-3cc090b46925bb76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_lsprof.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-lsprof.cpython-36m-x86-64-linux-gnu.so-dc8374dfea5b4a42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_lzma.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-lzma.cpython-36m-x86-64-linux-gnu.so-7e285d5fcc14470b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_markupbase.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-markupbase.cpython-36.opt-1.pyc-69ef5455cda69a0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_markupbase.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-markupbase.cpython-36.opt-2.pyc-64b59cc440048a76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/_msvccompiler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-msvccompiler.cpython-36.opt-1.pyc-ac087815b2384ec8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/_msvccompiler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-msvccompiler.cpython-36.opt-2.pyc-4ee637a7941178e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/_msvccompiler.cpython-36.pyc +SPDXID: SPDXRef-File-...-msvccompiler.cpython-36.pyc-a01438352fab49b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_multibytecodec.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-multibytecodec.cpython-36m-x86-64-linux-gnu.so-b059bede5b977fd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_multiprocessing.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-multiprocessing.cpython-36m-x86-64-linux-gnu.so-8c494fdc6a0b36ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_opcode.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-opcode.cpython-36m-x86-64-linux-gnu.so-3409c0f2ea9fd5ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_option.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-option.cpython-36.opt-1.pyc-44c36c23b2f13e67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_ossighelper.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-ossighelper.cpython-36.opt-1.pyc-1419cc6907be8857 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_ossighelper.cpython-36.pyc +SPDXID: SPDXRef-File-...-ossighelper.cpython-36.pyc-c62121e22cac93a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_osx_support.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-osx-support.cpython-36.opt-1.pyc-2895d22a3d4c3cd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_osx_support.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-osx-support.cpython-36.opt-2.pyc-e62265ee81279841 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_osx_support.cpython-36.pyc +SPDXID: SPDXRef-File-...-osx-support.cpython-36.pyc-e5de1c0033ffd4bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_parseaddr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-parseaddr.cpython-36.opt-1.pyc-d4dc6794c4040e0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_parseaddr.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-parseaddr.cpython-36.opt-2.pyc-24ddde1456f480a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_pickle.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-pickle.cpython-36m-x86-64-linux-gnu.so-826e4782ceceb14e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_policybase.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-policybase.cpython-36.opt-1.pyc-5767026000f61b09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/_policybase.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-policybase.cpython-36.opt-2.pyc-ff44c1105cc5cf07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_posixsubprocess.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-posixsubprocess.cpython-36m-x86-64-linux-gnu.so-f4f3ae750ecddc97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_propertyhelper.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-propertyhelper.cpython-36.opt-1.pyc-f629911f346aad0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_propertyhelper.cpython-36.pyc +SPDXID: SPDXRef-File-...-propertyhelper.cpython-36.pyc-bc86d05c758d0d0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_pydecimal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-pydecimal.cpython-36.opt-1.pyc-8e843399b10c18a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_pydecimal.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-pydecimal.cpython-36.opt-2.pyc-df65ebbc3889e3e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_random.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-random.cpython-36m-x86-64-linux-gnu.so-ca3b31a1f1fe23e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/_reader.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-reader.cpython-36m-x86-64-linux-gnu.so-297daec878fc5d62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/_rpm.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-rpm.cpython-36m-x86-64-linux-gnu.so-2e3be79a136d31d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/_rpmb.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-rpmb.cpython-36m-x86-64-linux-gnu.so-ef1aa2ba5dbe1e2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/_rpms.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-rpms.cpython-36m-x86-64-linux-gnu.so-396fdbcd74cdfcfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_sd_hosts_or_user_at_host +SPDXID: SPDXRef-File-...-sd-hosts-or-user-at-host-76a93bdf7f16f97e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-sha3.cpython-36m-x86-64-linux-gnu.so-72e1d545dd96bf3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_signalhelper.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-signalhelper.cpython-36.opt-1.pyc-f08dc062e0adcf7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_signalhelper.cpython-36.pyc +SPDXID: SPDXRef-File-...-signalhelper.cpython-36.pyc-f83ecdf22f060f92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sitebuiltins.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-sitebuiltins.cpython-36.opt-1.pyc-92827bbfc50fff36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sitebuiltins.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-sitebuiltins.cpython-36.opt-2.pyc-2aac4f844be013dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sitebuiltins.cpython-36.pyc +SPDXID: SPDXRef-File-...-sitebuiltins.cpython-36.pyc-d479bbc1119579bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_socket.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-socket.cpython-36m-x86-64-linux-gnu.so-a9f90be048b37e46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_sqlite3.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-sqlite3.cpython-36m-x86-64-linux-gnu.so-733257dc45681e53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-ssl.cpython-36m-x86-64-linux-gnu.so-7b12f5bd3a9eb6a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_strptime.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-strptime.cpython-36.opt-1.pyc-d86fd81bb5a49991 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_strptime.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-strptime.cpython-36.opt-2.pyc-4c9bbc5c30f1f41f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-struct.cpython-36m-x86-64-linux-gnu.so-81c94347e7c1bbeb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-structures.cpython-36.opt-1.pyc-6128aad193f7faca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-structures.cpython-36.opt-1.pyc-8486396cec099c6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sysconfigdata_dm_linux_x86_64-linux-gnu.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.cpython-36.opt-1.pyc-738975737fc635d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sysconfigdata_dm_linux_x86_64-linux-gnu.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.cpython-36.opt-2.pyc-5c3f11f148a18e65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sysconfigdata_dm_linux_x86_64-linux-gnu.cpython-36.pyc +SPDXID: SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.cpython-36.pyc-a4f725b7c75e229d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_sysconfigdata_dm_linux_x86_64-linux-gnu.py +SPDXID: SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.py-9d01a19c893aab44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.cpython-36.opt-1.pyc-9eca55df5280a2eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.cpython-36.opt-2.pyc-d0318d6e4f25fafd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.pyc +SPDXID: SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.cpython-36.pyc-317c2b43a0b5e1bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_sysconfigdata_m_linux_x86_64-linux-gnu.py +SPDXID: SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.py-05171172ff5fdfe0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/_testmultiphase.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...-testmultiphase.cpython-36m-x86-64-linux-gnu.so-72d56e02352d45b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_threading_local.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-threading-local.cpython-36.opt-1.pyc-14c4ee96ce99227f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_threading_local.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-threading-local.cpython-36.opt-2.pyc-dd04759d7fc7fcc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_threading_local.cpython-36.pyc +SPDXID: SPDXRef-File-...-threading-local.cpython-36.pyc-de8324a64df93fb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/_uninstall.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-uninstall.cpython-36.opt-1.pyc-387cf54fefafaa73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__pycache__/_uninstall.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-uninstall.cpython-36.opt-2.pyc-9043dc456429b692 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-36.pyc +SPDXID: SPDXRef-File-...-vendor---pycache---six.cpython-36.pyc-2beddbb6b479eedd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/__pycache__/six.cpython-36.pyc +SPDXID: SPDXRef-File-...-vendor---pycache---six.cpython-36.pyc-2fd17c1525fbfe07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__about__.py +SPDXID: SPDXRef-File-...-vendor-packaging---about--.py-7e5576ab3932eff9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__about__.py +SPDXID: SPDXRef-File-...-vendor-packaging---about--.py-f4f2a4432fa82a19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__init__.py +SPDXID: SPDXRef-File-...-vendor-packaging---init--.py-ba298ee74a740146 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__init__.py +SPDXID: SPDXRef-File-...-vendor-packaging---init--.py-cb295c2a0febdbe4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/_compat.py +SPDXID: SPDXRef-File-...-vendor-packaging--compat.py-4757fb8c9cb02aa9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/_compat.py +SPDXID: SPDXRef-File-...-vendor-packaging--compat.py-c2a8d58dc8aea80c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/_structures.py +SPDXID: SPDXRef-File-...-vendor-packaging--structures.py-45b8d139a49b0fd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/_structures.py +SPDXID: SPDXRef-File-...-vendor-packaging--structures.py-cabb727bc033321c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/markers.py +SPDXID: SPDXRef-File-...-vendor-packaging-markers.py-89546a514b2e7a66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/markers.py +SPDXID: SPDXRef-File-...-vendor-packaging-markers.py-b6293737b4d065ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/requirements.py +SPDXID: SPDXRef-File-...-vendor-packaging-requirements.py-51f697fcc3743ac8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/requirements.py +SPDXID: SPDXRef-File-...-vendor-packaging-requirements.py-dc6c16bfc172c205 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/specifiers.py +SPDXID: SPDXRef-File-...-vendor-packaging-specifiers.py-7940b867bf216d93 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/specifiers.py +SPDXID: SPDXRef-File-...-vendor-packaging-specifiers.py-de8f1b1620fc45b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/utils.py +SPDXID: SPDXRef-File-...-vendor-packaging-utils.py-c1a4983606b55d39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/version.py +SPDXID: SPDXRef-File-...-vendor-packaging-version.py-b6fe6bb04a9a41d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/version.py +SPDXID: SPDXRef-File-...-vendor-packaging-version.py-f25b6fdcce76fd18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/_version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-version.cpython-36.opt-1.pyc-e834c3e00625abb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_weakrefset.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...-weakrefset.cpython-36.opt-1.pyc-1f89d2d499295638 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/_weakrefset.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...-weakrefset.cpython-36.opt-2.pyc-9520ad66593f3aac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/fontconfig/conf.avail/20-unhint-small-dejavu-sans.conf +SPDXID: SPDXRef-File-...20-unhint-small-dejavu-sans.conf-9d3636a5938a4ea9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /opt/ol/wlp/output/defaultServer/workarea/org.eclipse.osgi/201/data/boot-proxy.jar +SPDXID: SPDXRef-File-...201-data-boot-proxy.jar-d10719d1dcea600a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator +SPDXID: SPDXRef-File-...30-systemd-environment-d-generator-8ae9cd39f6749863 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-preset/85-display-manager.preset +SPDXID: SPDXRef-File-...85-display-manager.preset-49e4aa8176f9d504 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-preset/99-default-disable.preset +SPDXID: SPDXRef-File-...99-default-disable.preset-17ed4cd03af30f32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Buenos_Aires +SPDXID: SPDXRef-File-...America-Argentina-Buenos-Aires-ac260416c9b812ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/ComodRivadavia +SPDXID: SPDXRef-File-...America-Argentina-ComodRivadavia-032b27be534605d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Rio_Gallegos +SPDXID: SPDXRef-File-...America-Argentina-Rio-Gallegos-d6c1e9b09c944ec8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/North_Dakota/New_Salem +SPDXID: SPDXRef-File-...America-North-Dakota-New-Salem-90f509aeb07dd049 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...C.utf8-LC-MESSAGES-SYS-LC-MESSAGES-359857bfac54ae1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/swid/CA/redhat.com/redhatcodesignca.cert +SPDXID: SPDXRef-File-...CA-redhat.com-redhatcodesignca.cert-e6b482b09e0cf9b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/opensshserver.txt +SPDXID: SPDXRef-File-...DEFAULT-opensshserver.txt-a5d99fa248b62ef2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/DESCRIPTION.rst +SPDXID: SPDXRef-File-...DESCRIPTION.rst-3e7b3f6ee0a01014 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/fonts/dejavu/DejaVuSansCondensed-BoldOblique.ttf +SPDXID: SPDXRef-File-...DejaVuSansCondensed-BoldOblique.ttf-541c04277b575faa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/crypto-policies/EMPTY/opensshserver.txt +SPDXID: SPDXRef-File-...EMPTY-opensshserver.txt-ccd8e8040b3aaa9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementInclude.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ElementInclude.cpython-36.opt-1.pyc-98300b0bcd9dc8a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementInclude.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ElementInclude.cpython-36.opt-2.pyc-46405f86d68ee460 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementInclude.cpython-36.pyc +SPDXID: SPDXRef-File-...ElementInclude.cpython-36.pyc-433cfc2f1b3f8f30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementPath.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ElementPath.cpython-36.opt-1.pyc-9cca28bbd5b7a742 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementPath.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ElementPath.cpython-36.opt-2.pyc-5965c2847fcd8a53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementTree.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ElementTree.cpython-36.opt-1.pyc-c6868a1b3bc04313 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/ElementTree.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ElementTree.cpython-36.opt-2.pyc-ae30b0eeabef9887 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/opensshserver.txt +SPDXID: SPDXRef-File-...FUTURE-opensshserver.txt-373174adedd701a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/GIMarshallingTests.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...GIMarshallingTests.cpython-36.opt-1.pyc-852b08ded866e621 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/GIMarshallingTests.cpython-36.pyc +SPDXID: SPDXRef-File-...GIMarshallingTests.cpython-36.pyc-45eabaa5ad5d950b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/GIRepository-2.0.typelib +SPDXID: SPDXRef-File-...GIRepository-2.0.typelib-8a8f617a2477a505 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/GObject.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...GObject.cpython-36.opt-1.pyc-d3bc2519aaefab29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...LC-MESSAGES-SYS-LC-MESSAGES-4dd8eeb04117903e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/crypto-policies/LEGACY/opensshserver.txt +SPDXID: SPDXRef-File-...LEGACY-opensshserver.txt-e56563b020042f2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/LICENSE.txt +SPDXID: SPDXRef-File-...LICENSE.txt-b5a02f76151a197f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/NodeFilter.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...NodeFilter.cpython-36.opt-1.pyc-57ab035dc05e21af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/NodeFilter.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...NodeFilter.cpython-36.opt-2.pyc-3cf25ca0c750563a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose-1.28.36-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-26f5dca0b03dd114 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus_python-1.2.4-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-7a7b9cef2a4515d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-800441630b142ce6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-869376688539b0c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-bd28bed913903e91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-bf244285e2e636bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps-0.1.18-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-c60bef20b2e47cf0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PKG-INFO-d9e8b274b2c0eda7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/PatternGrammar3.6.8.final.0.pickle +SPDXID: SPDXRef-File-...PatternGrammar3.6.8.final.0.pickle-fd10cfbd14dec8f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/PySocks-1.6.8-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...PySocks-1.6.8-py3.6.egg-info-PKG-INFO-8b161028d1df54f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-0bb58d96ebc6af20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/ethtool-0.14-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-4a1f3f1d66efdd6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/PySocks-1.6.8-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-629f04842ad8f7d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus_python-1.2.4-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-6302d665915fb284 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-68321575d6cc1a16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-799722ea4617dfc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-93cff17b12ad307e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose-1.28.36-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-a77c6d35cc0debc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-bdc33693ab3ab980 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-cc8d407a55da3cd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-d0ab41071d72ef91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps-0.1.18-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-dfeb7dc8a22e77be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...SOURCES.txt-fe8a299ef2e9c9c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/X11/xinit/xinitrc.d/50-systemd-user.sh +SPDXID: SPDXRef-File-...X11-xinit-xinitrc.d-50-systemd-user.sh-f3b66277067c1b3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/action_client.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...action-client.cpython-36.opt-1.pyc-2cdb70453e7a2085 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/action_client.cpython-36.pyc +SPDXID: SPDXRef-File-...action-client.cpython-36.pyc-da986cffcb45f437 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/com.redhat.RHSM1.Facts.policy +SPDXID: SPDXRef-File-...actions-com.redhat.RHSM1.Facts.policy-55b55ce3a9cfe817 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/com.redhat.RHSM1.policy +SPDXID: SPDXRef-File-...actions-com.redhat.RHSM1.policy-f3bc1d932f655153 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/org.freedesktop.locale1.policy +SPDXID: SPDXRef-File-...actions-org.freedesktop.locale1.policy-3364b261c3333181 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/org.freedesktop.login1.policy +SPDXID: SPDXRef-File-...actions-org.freedesktop.login1.policy-8bb77ef3dae1e211 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/adapters.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...adapters.cpython-36.opt-1.pyc-c26e1a235f4df88d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/__pycache__/alg_lists.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...alg-lists.cpython-36.opt-1.pyc-ad41eec24e66b748 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/alg_lists.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...alg-lists.cpython-36.opt-1.pyc-f370bee54b8111c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/aliases.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...aliases.cpython-36.opt-1.pyc-22d0f51b50f469e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/aliases.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...aliases.cpython-36.opt-1.pyc-d8c18ffce3de4ba9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/aliases.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...aliases.cpython-36.opt-2.pyc-7db55c376bb62509 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/antigravity.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...antigravity.cpython-36.opt-1.pyc-a7e59ac452de53e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/antigravity.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...antigravity.cpython-36.opt-2.pyc-7baf19d02583494a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/api/__pycache__/repos.cpython-36.pyc +SPDXID: SPDXRef-File-...api---pycache---repos.cpython-36.pyc-ad37d452f1f8f4a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...appdirs.cpython-36.opt-1.pyc-9fa7d5f43be9ff43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/appengine.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...appengine.cpython-36.opt-1.pyc-6494d51b7bfbd0f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/application.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...application.cpython-36.opt-1.pyc-a49d9755597222e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/application.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...application.cpython-36.opt-2.pyc-c5ffcc60aff2ceff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/usr/servers/defaultServer/apps/guide-getting-started.war +SPDXID: SPDXRef-File-...apps-guide-getting-started.war-9c540d94dd610a8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/archive_util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...archive-util.cpython-36.opt-1.pyc-90eb08fe47c251d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/archive_util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...archive-util.cpython-36.opt-1.pyc-bc103eee57f1df34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/archive_util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...archive-util.cpython-36.opt-2.pyc-42d4f5dbf9aa0b58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/archive_util.cpython-36.pyc +SPDXID: SPDXRef-File-...archive-util.cpython-36.pyc-4208ed9c309e37d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/archive_util.cpython-36.pyc +SPDXID: SPDXRef-File-...archive-util.cpython-36.pyc-efa90c06f2117af5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/argparse.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...argparse.cpython-36.opt-1.pyc-990ec5789df88912 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/argparse.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...argparse.cpython-36.opt-2.pyc-847c4ee6efbc94ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/array.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...array.cpython-36m-x86-64-linux-gnu.so-86b7e0e3572d38a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/async_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...async-utils.cpython-36.opt-1.pyc-1d10df9eb3ae8ab7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/asynchat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...asynchat.cpython-36.opt-1.pyc-0356b07ec474d67d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/asynchat.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...asynchat.cpython-36.opt-2.pyc-1d2396ced0d44d99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/log.cpython-36.pyc +SPDXID: SPDXRef-File-...asyncio---pycache---log.cpython-36.pyc-14cf2cee855eec84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/asyncore.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...asyncore.cpython-36.opt-1.pyc-326d1aa47cb41f32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/asyncore.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...asyncore.cpython-36.opt-2.pyc-819f61f32bfb64d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/attach.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...attach.cpython-36.opt-1.pyc-63526e7a0b72793e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/attach.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...attach.cpython-36.opt-1.pyc-724e54f76a4526c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/audioop.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...audioop.cpython-36m-x86-64-linux-gnu.so-0967a307166ddc24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/autoremove.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...autoremove.cpython-36.opt-1.pyc-ee911a28dbb859d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/bind.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-bind.config-a8397b2c83999f6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/gnutls.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-gnutls.config-a69d908cc5d0bff5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/java.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-java.config-4e46ff2eece86b69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/krb5.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-krb5.config-9845f9ab6cb2daff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/libreswan.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-libreswan.config-e1b268d981488933 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/libssh.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-libssh.config-f984898a31daa7a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/nss.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-nss.config-2d4375d8043994dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/openssh.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-openssh.config-86cfd3270f8186e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/opensshserver.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-opensshserver.config-55ddfe487693493b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/openssl.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-openssl.config-d75669bbfd7f99ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/DEFAULT/opensslcnf.config +SPDXID: SPDXRef-File-...back-ends-DEFAULT-opensslcnf.config-7d8ec13905994220 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/bind.config +SPDXID: SPDXRef-File-...back-ends-FIPS-bind.config-e0a56aafc6a74691 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/gnutls.config +SPDXID: SPDXRef-File-...back-ends-FIPS-gnutls.config-8eb8c2a422cc8171 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/java.config +SPDXID: SPDXRef-File-...back-ends-FIPS-java.config-077afe5bfa1ce8d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/krb5.config +SPDXID: SPDXRef-File-...back-ends-FIPS-krb5.config-7ec78608c9e249ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/libreswan.config +SPDXID: SPDXRef-File-...back-ends-FIPS-libreswan.config-70225bebe9311558 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/libssh.config +SPDXID: SPDXRef-File-...back-ends-FIPS-libssh.config-3887547c7daa62f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/nss.config +SPDXID: SPDXRef-File-...back-ends-FIPS-nss.config-c525294e8d49bb81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/openssh.config +SPDXID: SPDXRef-File-...back-ends-FIPS-openssh.config-4fc5ec119fb25df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/opensshserver.config +SPDXID: SPDXRef-File-...back-ends-FIPS-opensshserver.config-e2c85fb27ef1e37f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/openssl.config +SPDXID: SPDXRef-File-...back-ends-FIPS-openssl.config-fb984036c7bd3e21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FIPS/opensslcnf.config +SPDXID: SPDXRef-File-...back-ends-FIPS-opensslcnf.config-15cb1cffd1004d52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/bind.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-bind.config-4ef790b274d901cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/gnutls.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-gnutls.config-3dbd0a80dd01bafb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/java.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-java.config-c10f535734511b04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/krb5.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-krb5.config-4947eb9ebaebd789 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/libreswan.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-libreswan.config-e65788c8a188872e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/libssh.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-libssh.config-d157fc4fa7324605 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/nss.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-nss.config-6288a2c337b26e22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/openssh.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-openssh.config-1b640f3502c79778 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/opensshserver.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-opensshserver.config-9680180e24a509b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/openssl.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-openssl.config-faa27545967db140 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/FUTURE/opensslcnf.config +SPDXID: SPDXRef-File-...back-ends-FUTURE-opensslcnf.config-2fd9dfb1d605fd82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/bind.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-bind.config-1fa70fc9d8f807be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/gnutls.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-gnutls.config-00d41282c039e6a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/java.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-java.config-d8719147b6288df1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/krb5.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-krb5.config-0d9d9f8b3878e1fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/libreswan.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-libreswan.config-4ba1ebbfa107e92d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/libssh.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-libssh.config-f9b48db8e1c14592 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/nss.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-nss.config-18140d9a745968db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/openssh.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-openssh.config-8f74cfe195f82837 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/opensshserver.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-opensshserver.config-0ce74952d083e1df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/openssl.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-openssl.config-9b28a0bdb753ba76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/back-ends/LEGACY/opensslcnf.config +SPDXID: SPDXRef-File-...back-ends-LEGACY-opensslcnf.config-06de8a105e140f2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/base_action_client.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base-action-client.cpython-36.opt-1.pyc-3188ea90dbc086a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/base_action_client.cpython-36.pyc +SPDXID: SPDXRef-File-...base-action-client.cpython-36.pyc-ce61d1001c87f6ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/base_action_client.py +SPDXID: SPDXRef-File-...base-action-client.py-ea0590f75013f59d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_events.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base-events.cpython-36.opt-1.pyc-96cee469d6ea8758 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_events.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...base-events.cpython-36.opt-2.pyc-e0c05b47ad18ee63 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_futures.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base-futures.cpython-36.opt-1.pyc-854b24dfe7e02486 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_futures.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...base-futures.cpython-36.opt-2.pyc-8d8cbbc2a1a583fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_futures.cpython-36.pyc +SPDXID: SPDXRef-File-...base-futures.cpython-36.pyc-e3237be203ab82c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/base_object.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base-object.cpython-36.opt-1.pyc-07074e238092ad3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/base_plugin.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base-plugin.cpython-36.opt-1.pyc-5b3ade2d2778f468 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_subprocess.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base-subprocess.cpython-36.opt-1.pyc-c195af47a598f294 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_subprocess.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...base-subprocess.cpython-36.opt-2.pyc-1856a0442e662483 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_subprocess.cpython-36.pyc +SPDXID: SPDXRef-File-...base-subprocess.cpython-36.pyc-a083b7e634ca52b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_tasks.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base-tasks.cpython-36.opt-1.pyc-c650dbb5affcb50b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/base_tasks.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...base-tasks.cpython-36.opt-2.pyc-18c7f1382c209dd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/base64_codec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base64-codec.cpython-36.opt-1.pyc-856c74ef6bf60365 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/base64_codec.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...base64-codec.cpython-36.opt-2.pyc-d6f865ad8b467f0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/base64_codec.cpython-36.pyc +SPDXID: SPDXRef-File-...base64-codec.cpython-36.pyc-439218b7fc0a01b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/base64.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base64.cpython-36.opt-1.pyc-9a54c11cc3152aab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/base64.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...base64.cpython-36.opt-2.pyc-e5f593d523092f05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/base64mime.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...base64mime.cpython-36.opt-1.pyc-8d0b1c084c89777f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/base64mime.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...base64mime.cpython-36.opt-2.pyc-3a7e52822ea02869 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/addpart +SPDXID: SPDXRef-File-...bash-completion-completions-addpart-42a73d91dcf5a53f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/blkdiscard +SPDXID: SPDXRef-File-...bash-completion-completions-blkdiscard-83dfc2de62395006 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/blkid +SPDXID: SPDXRef-File-...bash-completion-completions-blkid-f2a427905b520cff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/blkzone +SPDXID: SPDXRef-File-...bash-completion-completions-blkzone-5f33c245bbb53a4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/blockdev +SPDXID: SPDXRef-File-...bash-completion-completions-blockdev-b6e3a4ad205ca263 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/busctl +SPDXID: SPDXRef-File-...bash-completion-completions-busctl-8374e71bd5cc9523 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/cfdisk +SPDXID: SPDXRef-File-...bash-completion-completions-cfdisk-3db23fe184ad3cf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/chcpu +SPDXID: SPDXRef-File-...bash-completion-completions-chcpu-5d45f654f0278ad8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/chmem +SPDXID: SPDXRef-File-...bash-completion-completions-chmem-947d40733436a708 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/colcrt +SPDXID: SPDXRef-File-...bash-completion-completions-colcrt-0fb8b96448b70908 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/colrm +SPDXID: SPDXRef-File-...bash-completion-completions-colrm-cb8608a95c9a66b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/column +SPDXID: SPDXRef-File-...bash-completion-completions-column-0151eb4ffb2838fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/ctrlaltdel +SPDXID: SPDXRef-File-...bash-completion-completions-ctrlaltdel-9d9780b99ab2944e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/delpart +SPDXID: SPDXRef-File-...bash-completion-completions-delpart-cb46c71515f19452 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/dmesg +SPDXID: SPDXRef-File-...bash-completion-completions-dmesg-2b377c93f58288fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/eject +SPDXID: SPDXRef-File-...bash-completion-completions-eject-7547d67de4f69dc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fallocate +SPDXID: SPDXRef-File-...bash-completion-completions-fallocate-915daa07c316065f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fdformat +SPDXID: SPDXRef-File-...bash-completion-completions-fdformat-b74153f64fadf3f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fdisk +SPDXID: SPDXRef-File-...bash-completion-completions-fdisk-52f8cb702e31efd8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fincore +SPDXID: SPDXRef-File-...bash-completion-completions-fincore-7ee9158014cd30f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/findfs +SPDXID: SPDXRef-File-...bash-completion-completions-findfs-181697daf2d23e54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/findmnt +SPDXID: SPDXRef-File-...bash-completion-completions-findmnt-f794499269e45fda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/flock +SPDXID: SPDXRef-File-...bash-completion-completions-flock-20de0265d9ee6bec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fsck.minix +SPDXID: SPDXRef-File-...bash-completion-completions-fsck.minix-b69872cb9dd036c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fsfreeze +SPDXID: SPDXRef-File-...bash-completion-completions-fsfreeze-6b54a400cffd3794 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fstrim +SPDXID: SPDXRef-File-...bash-completion-completions-fstrim-873db4bbfae54631 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/gdbus +SPDXID: SPDXRef-File-...bash-completion-completions-gdbus-51ecee8f3b4de042 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/getopt +SPDXID: SPDXRef-File-...bash-completion-completions-getopt-94d68091bfec53de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/gsettings +SPDXID: SPDXRef-File-...bash-completion-completions-gsettings-e9f9c8acbde8abd8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/hexdump +SPDXID: SPDXRef-File-...bash-completion-completions-hexdump-b8196b81f13837c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/hwclock +SPDXID: SPDXRef-File-...bash-completion-completions-hwclock-7851780290f5206b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/ionice +SPDXID: SPDXRef-File-...bash-completion-completions-ionice-b5f1240d76066374 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/ipcmk +SPDXID: SPDXRef-File-...bash-completion-completions-ipcmk-a599f9c7867d5013 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/ipcrm +SPDXID: SPDXRef-File-...bash-completion-completions-ipcrm-60e25949684d020b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/isosize +SPDXID: SPDXRef-File-...bash-completion-completions-isosize-32d67f523f7cb5a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/journalctl +SPDXID: SPDXRef-File-...bash-completion-completions-journalctl-501b603eec98fe3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/ldattach +SPDXID: SPDXRef-File-...bash-completion-completions-ldattach-60836ff1c9ea17a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/localectl +SPDXID: SPDXRef-File-...bash-completion-completions-localectl-e965a05b8dc814a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/logger +SPDXID: SPDXRef-File-...bash-completion-completions-logger-b0b08627102a01b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/loginctl +SPDXID: SPDXRef-File-...bash-completion-completions-loginctl-64e75cbcc451ab3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/losetup +SPDXID: SPDXRef-File-...bash-completion-completions-losetup-9cccb7602611be56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/lsblk +SPDXID: SPDXRef-File-...bash-completion-completions-lsblk-a613fbb0fb1b75f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/lscpu +SPDXID: SPDXRef-File-...bash-completion-completions-lscpu-03f0c0b2da6f97c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/lsipc +SPDXID: SPDXRef-File-...bash-completion-completions-lsipc-c5b3b8743182b91e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/lslocks +SPDXID: SPDXRef-File-...bash-completion-completions-lslocks-36aa5a43e76c589b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/lslogins +SPDXID: SPDXRef-File-...bash-completion-completions-lslogins-e5324a207a67117e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/lsmem +SPDXID: SPDXRef-File-...bash-completion-completions-lsmem-5d2f5c55111f293e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/mcookie +SPDXID: SPDXRef-File-...bash-completion-completions-mcookie-5ec66cca7c95f4f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/mkfs.minix +SPDXID: SPDXRef-File-...bash-completion-completions-mkfs.minix-e0ea5186eb5d5eae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/mkswap +SPDXID: SPDXRef-File-...bash-completion-completions-mkswap-1efa1a7a07e87a21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/mountpoint +SPDXID: SPDXRef-File-...bash-completion-completions-mountpoint-60d73a132d70817f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/namei +SPDXID: SPDXRef-File-...bash-completion-completions-namei-02a28998b737030d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/nsenter +SPDXID: SPDXRef-File-...bash-completion-completions-nsenter-74e34397f2efed8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/p11-kit +SPDXID: SPDXRef-File-...bash-completion-completions-p11-kit-5186ae069aab5e63 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/partx +SPDXID: SPDXRef-File-...bash-completion-completions-partx-6105797b34696fd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/pivot_root +SPDXID: SPDXRef-File-...bash-completion-completions-pivot-root-044aa0992967cad0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/prlimit +SPDXID: SPDXRef-File-...bash-completion-completions-prlimit-c61c618011e56de7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rename +SPDXID: SPDXRef-File-...bash-completion-completions-rename-43392add584bbfd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/renice +SPDXID: SPDXRef-File-...bash-completion-completions-renice-54b02297e6a2456a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/resizepart +SPDXID: SPDXRef-File-...bash-completion-completions-resizepart-940d83463e0238af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/resolvectl +SPDXID: SPDXRef-File-...bash-completion-completions-resolvectl-29f111fb596d0c0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rfkill +SPDXID: SPDXRef-File-...bash-completion-completions-rfkill-859d3540564702e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rhsm-debug +SPDXID: SPDXRef-File-...bash-completion-completions-rhsm-debug-fa28bcf296e48e99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rhsmcertd +SPDXID: SPDXRef-File-...bash-completion-completions-rhsmcertd-40ff3eae3072bf74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rtcwake +SPDXID: SPDXRef-File-...bash-completion-completions-rtcwake-0572c707bcf108ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/script +SPDXID: SPDXRef-File-...bash-completion-completions-script-1e8d831fdaaf366a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/setarch +SPDXID: SPDXRef-File-...bash-completion-completions-setarch-b2ea50b45a902402 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/setpriv +SPDXID: SPDXRef-File-...bash-completion-completions-setpriv-30958e193354fdde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/setsid +SPDXID: SPDXRef-File-...bash-completion-completions-setsid-e67bb29eb0634edc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/setterm +SPDXID: SPDXRef-File-...bash-completion-completions-setterm-4412aa0fef05e2b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/sfdisk +SPDXID: SPDXRef-File-...bash-completion-completions-sfdisk-a015a59ee7fe55c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/swaplabel +SPDXID: SPDXRef-File-...bash-completion-completions-swaplabel-7c448e00f4028724 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/swapoff +SPDXID: SPDXRef-File-...bash-completion-completions-swapoff-9c9926344b7ffeef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/swapon +SPDXID: SPDXRef-File-...bash-completion-completions-swapon-033ac11209c8080f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/syspurpose +SPDXID: SPDXRef-File-...bash-completion-completions-syspurpose-04c72526b0376275 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemctl +SPDXID: SPDXRef-File-...bash-completion-completions-systemctl-95733c641f37ac09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/taskset +SPDXID: SPDXRef-File-...bash-completion-completions-taskset-784e8106bef7db6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/trust +SPDXID: SPDXRef-File-...bash-completion-completions-trust-344d6e12a0ee7993 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/unshare +SPDXID: SPDXRef-File-...bash-completion-completions-unshare-a1915de01860ac22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/utmpdump +SPDXID: SPDXRef-File-...bash-completion-completions-utmpdump-3dbfd5ebf103b777 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/uuidgen +SPDXID: SPDXRef-File-...bash-completion-completions-uuidgen-591b2becb413549c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/uuidparse +SPDXID: SPDXRef-File-...bash-completion-completions-uuidparse-25cfadc72252baa2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/wdctl +SPDXID: SPDXRef-File-...bash-completion-completions-wdctl-c902730044ac1a2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/whereis +SPDXID: SPDXRef-File-...bash-completion-completions-whereis-340b0a956199b919 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/wipefs +SPDXID: SPDXRef-File-...bash-completion-completions-wipefs-e887fb34d8808a47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/write +SPDXID: SPDXRef-File-...bash-completion-completions-write-6cd2fe28886811a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/zramctl +SPDXID: SPDXRef-File-...bash-completion-completions-zramctl-eb69510bf1db58d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/bcppcompiler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bcppcompiler.cpython-36.opt-1.pyc-6bd44ffe84f86193 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/bcppcompiler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...bcppcompiler.cpython-36.opt-2.pyc-b12e56b6f3abc211 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/bcppcompiler.cpython-36.pyc +SPDXID: SPDXRef-File-...bcppcompiler.cpython-36.pyc-dc3ee262f54415e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_dumb.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bdist-dumb.cpython-36.opt-1.pyc-6082fc2c0beda77f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_dumb.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...bdist-dumb.cpython-36.opt-2.pyc-9b43e385b90d4b71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bdist-egg.cpython-36.opt-1.pyc-18490b4629d7192e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_msi.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bdist-msi.cpython-36.opt-1.pyc-d508615a7161eb68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_msi.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...bdist-msi.cpython-36.opt-2.pyc-36b9ab18889c248d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_rpm.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bdist-rpm.cpython-36.opt-1.pyc-65d1f55e762e6d42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bdist-rpm.cpython-36.opt-1.pyc-d448b53e63fc0a9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_rpm.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...bdist-rpm.cpython-36.opt-2.pyc-7d07f9ffae0b9eed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_wininst.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bdist-wininst.cpython-36.opt-1.pyc-2bfce4f8af7ab87c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/bdist_wininst.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bdist-wininst.cpython-36.opt-1.pyc-a409d9dea637b2b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_wininst.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...bdist-wininst.cpython-36.opt-2.pyc-e381d2f93496b3ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/bdist_wininst.cpython-36.pyc +SPDXID: SPDXRef-File-...bdist-wininst.cpython-36.pyc-6e5b90308de926bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/bdist_wininst.cpython-36.pyc +SPDXID: SPDXRef-File-...bdist-wininst.cpython-36.pyc-fe8646beb2b9c33b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/big5freq.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...big5freq.cpython-36.opt-1.pyc-f8c662d8371ca277 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/big5hkscs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...big5hkscs.cpython-36.opt-1.pyc-0c91bcf8968772d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/big5hkscs.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...big5hkscs.cpython-36.opt-2.pyc-a3dd043ab8fc9a20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/big5prober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...big5prober.cpython-36.opt-1.pyc-dbc1f1059b2f9296 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-update-activation-environment +SPDXID: SPDXRef-File-...bin-dbus-update-activation-environment-f686ef501f9755b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/bin/tools/ws-webserverPluginutil.jar +SPDXID: SPDXRef-File-...bin-tools-ws-webserverPluginutil.jar-50f2a2192da7580b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /usr/lib64/python3.6/lib-dynload/binascii.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...binascii.cpython-36m-x86-64-linux-gnu.so-f5f3f80cfb4af64e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bindings.cpython-36.opt-1.pyc-dfc7b1e905ceb7d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/binhex.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...binhex.cpython-36.opt-1.pyc-e9d2adfa4aa5e9d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/binhex.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...binhex.cpython-36.opt-2.pyc-34be0ac8b736e90d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bisect.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bisect.cpython-36.opt-1.pyc-a999edc4526ba8b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/bisect.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...bisect.cpython-36.opt-2.pyc-2ff4da4dd389fdcd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/bitstream.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bitstream.cpython-36.opt-1.pyc-05ba05489294a279 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/branding/__init__.py +SPDXID: SPDXRef-File-...branding---init--.py-36c65341752e0eaa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/branding/redhat_branding.py +SPDXID: SPDXRef-File-...branding-redhat-branding.py-22280c5befe4c32b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/btm_matcher.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...btm-matcher.cpython-36.opt-1.pyc-fc6d6df3e0bb5b73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/btm_matcher.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...btm-matcher.cpython-36.opt-2.pyc-14e8232add708339 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/btm_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...btm-utils.cpython-36.opt-1.pyc-75951ec65b5ff5a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/btm_utils.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...btm-utils.cpython-36.opt-2.pyc-ce222e4035ce30df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_clib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-clib.cpython-36.opt-1.pyc-192dcdbe8799786a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/build_clib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-clib.cpython-36.opt-1.pyc-8522bdd03e9d5815 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_clib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...build-clib.cpython-36.opt-2.pyc-a33ba6fbd50bcc13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/__pycache__/build-crypto-policies.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-crypto-policies.cpython-36.opt-1.pyc-7f473f78a6e4a0b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/__pycache__/build-crypto-policies.cpython-36.pyc +SPDXID: SPDXRef-File-...build-crypto-policies.cpython-36.pyc-887cc52667a566a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_ext.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-ext.cpython-36.opt-1.pyc-4b72c983ad45fbc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/build_ext.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-ext.cpython-36.opt-1.pyc-a466e115febd5ac8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_ext.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...build-ext.cpython-36.opt-2.pyc-ab6793df05400c9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/build_meta.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-meta.cpython-36.opt-1.pyc-39186fc1337e108d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_py.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-py.cpython-36.opt-1.pyc-266e0cadb97d0cfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/build_py.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-py.cpython-36.opt-1.pyc-d488d86d8b96e2cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_py.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...build-py.cpython-36.opt-2.pyc-024155713c3c9fc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_scripts.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...build-scripts.cpython-36.opt-1.pyc-1032a808f9730741 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_scripts.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...build-scripts.cpython-36.opt-2.pyc-c900e1f423a5a00e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/build_scripts.cpython-36.pyc +SPDXID: SPDXRef-File-...build-scripts.cpython-36.pyc-66045853ee05d586 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/builddep.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...builddep.cpython-36.opt-1.pyc-e394aca5ebc82cbb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/bz2_codec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...bz2-codec.cpython-36.opt-1.pyc-9fbba98eb3d2a6fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/bz2_codec.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...bz2-codec.cpython-36.opt-2.pyc-0f04c66db679c2cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/cElementTree.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cElementTree.cpython-36.opt-1.pyc-6e1fa583d04a9e09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/cElementTree.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cElementTree.cpython-36.opt-2.pyc-257245dd53019ff7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__pycache__/cElementTree.cpython-36.pyc +SPDXID: SPDXRef-File-...cElementTree.cpython-36.pyc-5f3aef64c25374bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cProfile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cProfile.cpython-36.opt-1.pyc-1237744e1eff2cc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/cProfile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cProfile.cpython-36.opt-2.pyc-b3ffcd93227e909e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/pki/ca-trust-legacy/ca-bundle.legacy.default.crt +SPDXID: SPDXRef-File-...ca-bundle.legacy.default.crt-2366fa373c9550b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/pki/ca-trust-legacy/ca-bundle.legacy.disable.crt +SPDXID: SPDXRef-File-...ca-bundle.legacy.disable.crt-c8ab04ad02c2908d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/pki/ca-trust-source/ca-bundle.trust.p11-kit +SPDXID: SPDXRef-File-...ca-bundle.trust.p11-kit-ab5fa56a58a54116 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rhsm/ca/redhat-entitlement-authority.pem +SPDXID: SPDXRef-File-...ca-redhat-entitlement-authority.pem-3595f63cb19ab7cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/edk2/cacerts.bin +SPDXID: SPDXRef-File-...ca-trust-extracted-edk2-cacerts.bin-79568197b9801373 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/calendar.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...calendar.cpython-36.opt-1.pyc-3dd25d74bf56ac1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/calendar.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...calendar.cpython-36.opt-2.pyc-ac1e3b3a9189471e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/callback.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...callback.cpython-36.opt-1.pyc-59c4decbbf1e166f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/callbacks.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...callbacks.cpython-36.opt-1.pyc-c78968ac91f3ebb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.be@latin.catalog +SPDXID: SPDXRef-File-...catalog-systemd.be-latin.catalog-f0781f26a8905154 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/ccompiler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ccompiler.cpython-36.opt-1.pyc-4047f7cbdb49e567 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/ccompiler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ccompiler.cpython-36.opt-2.pyc-7f2e802a015d3eda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/cert_commands.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cert-commands.cpython-36.opt-1.pyc-a934f62dfd28ebed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/cert_commands.cpython-36.pyc +SPDXID: SPDXRef-File-...cert-commands.cpython-36.pyc-8dd005cce22b25ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cert_sorter.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cert-sorter.cpython-36.opt-1.pyc-d95cb9747208aa5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/certdirectory.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...certdirectory.cpython-36.opt-1.pyc-1a7547a53c0963a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/certdirectory.cpython-36.pyc +SPDXID: SPDXRef-File-...certdirectory.cpython-36.pyc-09445c2ec66ca56d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/certificate.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...certificate.cpython-36.opt-1.pyc-3af58bbad1e70c5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/certificate2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...certificate2.cpython-36.opt-1.pyc-993235f0ed0a1c75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/certificate2.cpython-36.pyc +SPDXID: SPDXRef-File-...certificate2.cpython-36.pyc-f267e771ee91fda9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/certlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...certlib.cpython-36.opt-1.pyc-91147e2f782516a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/changelog.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...changelog.cpython-36.opt-1.pyc-18f74be3a57809ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...chardet-3.0.4-py3.6.egg-info-PKG-INFO-944ffd667cc9db41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/chardistribution.py +SPDXID: SPDXRef-File-...chardet-chardistribution.py-9af06b5487ec8414 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/charsetgroupprober.py +SPDXID: SPDXRef-File-...chardet-charsetgroupprober.py-c2ac137fbbbf4827 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/cli/chardetect.py +SPDXID: SPDXRef-File-...chardet-cli-chardetect.py-52b805fe7364f955 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/codingstatemachine.py +SPDXID: SPDXRef-File-...chardet-codingstatemachine.py-568f3507c4831e9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/langbulgarianmodel.py +SPDXID: SPDXRef-File-...chardet-langbulgarianmodel.py-7a8a63ca4f8a6838 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/langcyrillicmodel.py +SPDXID: SPDXRef-File-...chardet-langcyrillicmodel.py-2af0335aa3d37b56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/langgreekmodel.py +SPDXID: SPDXRef-File-...chardet-langgreekmodel.py-f5c0a0517b485775 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/langhebrewmodel.py +SPDXID: SPDXRef-File-...chardet-langhebrewmodel.py-1910e46ebc396a3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/langhungarianmodel.py +SPDXID: SPDXRef-File-...chardet-langhungarianmodel.py-18073081b68a426e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/langturkishmodel.py +SPDXID: SPDXRef-File-...chardet-langturkishmodel.py-cf6a24a0d5dfd507 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/mbcharsetprober.py +SPDXID: SPDXRef-File-...chardet-mbcharsetprober.py-d7758d23b20b448f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/mbcsgroupprober.py +SPDXID: SPDXRef-File-...chardet-mbcsgroupprober.py-e34e84952974b9d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/sbcharsetprober.py +SPDXID: SPDXRef-File-...chardet-sbcharsetprober.py-842683127bc2fa68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/sbcsgroupprober.py +SPDXID: SPDXRef-File-...chardet-sbcsgroupprober.py-6e9572a23062eaae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/universaldetector.py +SPDXID: SPDXRef-File-...chardet-universaldetector.py-ce856d8f42868c6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/cli/__pycache__/chardetect.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...chardetect.cpython-36.opt-1.pyc-b0f2949cdb9efa6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/chardistribution.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...chardistribution.cpython-36.opt-1.pyc-61b102bcc639c94b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/chardistribution.cpython-36.pyc +SPDXID: SPDXRef-File-...chardistribution.cpython-36.pyc-e5d45547f87068be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/charmap.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...charmap.cpython-36.opt-1.pyc-4907992b0d460a4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/charmap.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...charmap.cpython-36.opt-2.pyc-e524b07c5fbb9170 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/charset.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...charset.cpython-36.opt-1.pyc-a96cea6cfa55bff7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/charset.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...charset.cpython-36.opt-2.pyc-49c997fab77e5d16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/charsetgroupprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...charsetgroupprober.cpython-36.opt-1.pyc-b58dee54b498fefd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/charsetgroupprober.cpython-36.pyc +SPDXID: SPDXRef-File-...charsetgroupprober.cpython-36.pyc-a34378488fbb1c6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/charsetprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...charsetprober.cpython-36.opt-1.pyc-e2c3a2635db75f0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/charsetprober.cpython-36.pyc +SPDXID: SPDXRef-File-...charsetprober.cpython-36.pyc-0cf46994b9835531 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/cleanup.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cleanup.cpython-36.opt-1.pyc-d3bb6ef11a72b48d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/aliases.cpython-36.pyc +SPDXID: SPDXRef-File-...cli---pycache---aliases.cpython-36.pyc-9816a0fd3fbced6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/demand.cpython-36.pyc +SPDXID: SPDXRef-File-...cli---pycache---demand.cpython-36.pyc-8672375d166d0502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/format.cpython-36.pyc +SPDXID: SPDXRef-File-...cli---pycache---format.cpython-36.pyc-b27896835f2daf59 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/main.cpython-36.pyc +SPDXID: SPDXRef-File-...cli---pycache---main.cpython-36.pyc-1728d6580654be15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/output.cpython-36.pyc +SPDXID: SPDXRef-File-...cli---pycache---output.cpython-36.pyc-7bce6b010aaa653f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/term.cpython-36.pyc +SPDXID: SPDXRef-File-...cli---pycache---term.cpython-36.pyc-ae69fea3ad3a580f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...cli---pycache---utils.cpython-36.pyc-5ed71843863c8a46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/client.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...client.cpython-36.opt-1.pyc-0cb5fe00f5df65f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/client.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...client.cpython-36.opt-1.pyc-8d78d7e1e89f9cb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/client.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...client.cpython-36.opt-1.pyc-9382156f3d7d33b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/client.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...client.cpython-36.opt-2.pyc-5a8dcaeb07488a42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/client.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...client.cpython-36.opt-2.pyc-6bf21217050773f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/cloud_facts.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cloud-facts.cpython-36.opt-1.pyc-ecbf29e81ac521f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/_base_provider.py +SPDXID: SPDXRef-File-...cloud-what--base-provider.py-5c5dde0cf2aed132 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/fact_collector.py +SPDXID: SPDXRef-File-...cloud-what-fact-collector.py-059c321df3a32280 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/__init__.py +SPDXID: SPDXRef-File-...cloud-what-providers---init--.py-3d5a1e43ca982c18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/aws.py +SPDXID: SPDXRef-File-...cloud-what-providers-aws.py-2816a0279321cd93 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/azure.py +SPDXID: SPDXRef-File-...cloud-what-providers-azure.py-7f3d7437ef85c772 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/providers/gcp.py +SPDXID: SPDXRef-File-...cloud-what-providers-gcp.py-9ccf5794bf1a7399 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/cmath.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...cmath.cpython-36m-x86-64-linux-gnu.so-92ce74d804984e5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/codecs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...codecs.cpython-36.opt-1.pyc-4e46c7698fefa9e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/codecs.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...codecs.cpython-36.opt-2.pyc-c4a13021bb7decd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/codeop.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...codeop.cpython-36.opt-1.pyc-fac8b28cfebff2f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/codeop.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...codeop.cpython-36.opt-2.pyc-dcc340f6c164f764 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/codingstatemachine.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...codingstatemachine.cpython-36.opt-1.pyc-55c35a28c3ee2159 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/codingstatemachine.cpython-36.pyc +SPDXID: SPDXRef-File-...codingstatemachine.cpython-36.pyc-d46531d8ea3bbe8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/collection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...collection.cpython-36.opt-1.pyc-46c59428a4dddead +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/collector.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...collector.cpython-36.opt-1.pyc-b5fbdafc5548ffe3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/colorsys.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...colorsys.cpython-36.opt-1.pyc-62fd5978df09083f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/colorsys.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...colorsys.cpython-36.opt-2.pyc-cd33b0a086fb8079 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/lib/com.ibm.rls.jdbc.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.rls.jdbc.jakarta-1.0.81.jar-5538796d2660d732 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.basics_1.4.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.basics-1.4.81.jar-00605df85686e2c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.config_1.2.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.config-1.2.81.jar-d78fc23f82ac0cf7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.distributedMap_2.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.distributedMap-2.0.81.jar-faf2e170c3ad3f4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.endpoint_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.endpoint-1.0.81.jar-83238c71f4047c25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.hpel_2.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.hpel-2.0.81.jar-db4651692d448f54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.json_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.json-1.0.81.jar-dab5ce270ff355ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.kernel.service_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.kernel.service-1.1.81.jar-bf23c2abe81e7ad7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.monitor_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.monitor-1.1.81.jar-cbb12be1c28f0a7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.security.spnego_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.security.spnego-1.1.81.jar-af60242b9612b3c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.sessionstats_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.sessionstats-1.0.81.jar-2069e7d0cc7ed243 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.ssl_1.5.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.api.ssl-1.5.81.jar-9037cb65e8f378f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.anno_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.anno-1.1.81.jar-18a6f815c8767cfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.application_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.application-1.1.81.jar-2ced5dfcfb5b2dcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.artifact_1.2.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.artifact-1.2.81.jar-3e1850474b015dc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.classloading_1.4.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.classloading-1.4.81.jar-c421757311bdb945 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.containerServices_4.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.containerServices-4.0.81.jar-1505b09ac51969ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.httptransport_4.2.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.httptransport-4.2.81.jar-015bc3e9670e677a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.javaeedd_1.7.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.javaeedd-1.7.81.jar-d16bc499155f81c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.embeddable_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.embeddable-1.1.81.jar-fb628820b43b5c28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.filemonitor_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.filemonitor-1.0.81.jar-dda1699e6f79dc00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.metatype_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.metatype-1.0.81.jar-0ce64112c9304df6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.service_1.8.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.service-1.8.81.jar-81fcdeddee0d0f8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.logging_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.logging-1.1.81.jar-361f629061009b52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.ssl_1.5.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.ssl-1.5.81.jar-0ee4a6e722e22f10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.threading_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.threading-1.1.81.jar-88cd16be02d351c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.transaction_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.appserver.spi.transaction-1.1.81.jar-bc330c7d1af04ac5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/com.ibm.websphere.javaee.activity.1.0_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.javaee.activity.1.0-1.0.81.jar-dfbabb310ca0c677 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.websphere.javaee.jcache.1.1.core.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.javaee.jcache.1.1.core.jakarta-1.0.81.jar-7321e500575d8af3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/com.ibm.websphere.javaee.jsonp.1.0_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.javaee.jsonp.1.0-1.0.81.jar-e0ec2b7af27e6287 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.websphere.jsonsupport_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.jsonsupport-1.0.81.jar-73a8961d53249d3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/stable/com.ibm.websphere.org.reactivestreams.reactive-streams.1.0_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.org.reactivestreams.reactive-streams.1.0-1.1.81.jar-bdb04312bd1a7d12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.websphere.rest.handler_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.rest.handler-1.0.81.jar-e2c6105bbb674308 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.websphere.security_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.security-1.1.81.jar-b1f2f0fb0c6dadfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.websphere.security.authentication_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.security.authentication-1.0.81.jar-ae6b7e37f8b4c225 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.websphere.security.impl_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.websphere.security.impl-1.0.81.jar-b125d98c471afcf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.adaptable.module_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.adaptable.module-1.0.81.jar-f08a5a4060540b5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.app.manager.lifecycle_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.app.manager.lifecycle-1.0.81.jar-c911c9dac217d462 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.app.manager.module_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.app.manager.module-1.0.81.jar-939b6904aa1353b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.app.manager.ready_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.app.manager.ready-1.0.81.jar-f682a30ecad6dc0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.app.manager.wab.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.app.manager.wab.jakarta-1.0.81.jar-f6e84fa2d4205419 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.app.manager.war.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.app.manager.war.jakarta-1.0.81.jar-6fb5a10a31b0d48f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact.bundle_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.artifact.bundle-1.0.81.jar-0982cf16138a6eaa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact.equinox.module_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.artifact.equinox.module-1.0.81.jar-32f241197a65e965 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact.file_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.artifact.file-1.0.81.jar-b2cdc51fea663cd3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact.loose_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.artifact.loose-1.0.81.jar-40c9afa825d7cd32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact.overlay_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.artifact.overlay-1.0.81.jar-a59c585148f50cc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.cdi.interfaces.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.cdi.interfaces.jakarta-1.0.81.jar-42b88f93823e8034 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.cdi.internal.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.cdi.internal.jakarta-1.0.81.jar-5154d278b0325d24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.cdi.jndi.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.cdi.jndi.jakarta-1.0.81.jar-3176ae3a323b3898 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.cdi.transaction.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.cdi.transaction.jakarta-1.0.81.jar-e9eb18fdb5da6e9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.cdi.web.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.cdi.web.jakarta-1.0.81.jar-cdc702ca5ba52723 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.cdi.weld.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.cdi.weld.jakarta-1.0.81.jar-d0a1cba265beed50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.classloader.context_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.classloader.context-1.0.81.jar-fb5d2f4623401edb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.classloading.configuration_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.classloading.configuration-1.0.81.jar-43220197fe5d6cd2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.collector.manager_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.collector.manager-1.0.81.jar-0dffa7576ee4c7e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.config.schemagen_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.config.schemagen-1.0.81.jar-fff7598d8c4aab16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.config.server.schemagen_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.config.server.schemagen-1.0.81.jar-03932bf40ecb0eb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.container.service_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.container.service-1.0.81.jar-30a4298d6116e93d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.crypto.certificate.creator.selfsigned_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.crypto.certificate.creator.selfsigned-1.0.81.jar-dd550de26b46bed4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.crypto.certificateutil_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.crypto.certificateutil-1.0.81.jar-dbdf8948b0c5e84f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.crypto.ltpakeyutil_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.crypto.ltpakeyutil-1.0.81.jar-c38314545dc44464 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.crypto.passwordutil_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.crypto.passwordutil-1.0.81.jar-4cd275cd3f4a6e1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.dynacache.monitor_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.dynacache.monitor-1.0.81.jar-59fff79cff650dc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.dynamic.bundle_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.dynamic.bundle-1.0.81.jar-ef93cc389aa3c695 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.eba.wab.integrator_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.eba.wab.integrator-1.0.81.jar-b38dc8096af5f2f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.http.plugin.merge_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.http.plugin.merge-1.0.81.jar-753d1d333a39618f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.injection.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.injection.jakarta-1.0.81.jar-64310fabe5169329 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.install.featureUtility_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.install.featureUtility-1.0.81.jar-1cdd43728057c16d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.dd.common_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.dd.common-1.1.81.jar-af2a6109841fb6c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.dd.ejb_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.dd.ejb-1.1.81.jar-764a3090e8e80c10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.ddmodel_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.ddmodel-1.0.81.jar-deb18579eaa4659f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.metadata.context_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.metadata.context-1.0.81.jar-e54c4be548eb5158 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.defaultresource_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.platform.defaultresource-1.0.81.jar-9826e4fcf3d4d00a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v7_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.platform.v7-1.0.81.jar-caded2919b31b48a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v7.jndi_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.platform.v7.jndi-1.0.81.jar-1969be499675deac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v8_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.platform.v8-1.0.81.jar-04a9ec6be4f0400f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.version_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.javaee.version-1.0.81.jar-f311d0b09f6cbe10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.jaxrs.2.x.config_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.jaxrs.2.x.config-1.0.81.jar-270d0a13811c5349 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.jaxrs.2.x.monitor.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.jaxrs.2.x.monitor.jakarta-1.0.81.jar-f93a38504e2a0d0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta-1.0.81.jar-ecfd17b0ea10f69f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.jndi.url.contexts_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.jndi.url.contexts-1.0.81.jar-f374774c6f46170b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.jsonb.service_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.jsonb.service-1.0.81.jar-2f0df6f3e2cc539a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.boot.archive_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.kernel.boot.archive-1.0.81.jar-88cc1e1259942caf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.cmdline_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.kernel.cmdline-1.0.81.jar-84cfc54d80dbb8fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.equinox.module_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.kernel.equinox.module-1.0.81.jar-0849764e1a973fad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.feature_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.kernel.feature-1.0.81.jar-6f462ab14f382e67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.filemonitor_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.kernel.filemonitor-1.0.81.jar-3f098f8b03ee629e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.metatype.helper_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.kernel.metatype.helper-1.0.81.jar-5ed3d5c92d2fec9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.service_1.3.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.kernel.service-1.3.81.jar-b6b931108d3c289c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.logging.hpel.osgi_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.logging.hpel.osgi-1.0.81.jar-69155660b1c476a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.managedobject_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.managedobject-1.0.81.jar-80cce54a959a2bd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.management.security_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.management.security-1.0.81.jar-3fb3c0f680c08baa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.microprofile.metrics.common_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.microprofile.metrics.common-1.0.81.jar-e4810f72921ec667 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jmx.api_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.aries.jmx.api-1.0.81.jar-5e7d77ec0d4786f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jmx.core.whiteboard_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.aries.jmx.core.whiteboard-1.0.81.jar-7aaba9559fc7e14e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jndi.api_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.aries.jndi.api-1.1.81.jar-4b7fe2405e59cbb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jndi.core_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.aries.jndi.core-1.1.81.jar-7ac128df1dcb478d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.util_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.aries.util-1.0.81.jar-ccccbeb428f76166 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.fileupload.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.commons.fileupload.jakarta-1.0.81.jar-f5be64dd99a12b13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.io_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.commons.io-1.0.81.jar-499b323d163e6d08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.lang3_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.commons.lang3-1.0.81.jar-002f7dd0dab45221 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.felix.scr_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.felix.scr-1.0.81.jar-60f3a296227d451a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.apache.httpcomponents_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.apache.httpcomponents-1.0.81.jar-036cfeb850991b73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.coordinator_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.eclipse.equinox.coordinator-1.0.81.jar-fa52a88314f6d4b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.metatype_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.eclipse.equinox.metatype-1.0.81.jar-2ae9fe0fefeb5634 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.region_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.eclipse.equinox.region-1.0.81.jar-c9e9c9d13566294f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.glassfish.json.1.0_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.glassfish.json.1.0-1.0.81.jar-9093987fcfef1f4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.jboss.jandex_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.jboss.jandex-1.0.81.jar-fb1771b5193ae197 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.jboss.jdeparser.1.0.0_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.jboss.jdeparser.1.0.0-1.0.81.jar-fd55b6e6c2bddf7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.jboss.logging_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.jboss.logging-1.0.81.jar-3a155ad9afd00976 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.joda.time.1.6.2_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.joda.time.1.6.2-1.0.81.jar-f27a7f9ec07699cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.objectweb.asm_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.objectweb.asm-1.0.81.jar-68705c0159056edd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.slf4j.api_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.slf4j.api-1.0.81.jar-892b65e425346a86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.org.slf4j.jdk14_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.org.slf4j.jdk14-1.0.81.jar-eee7c7b7c3548f85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.product.utility_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.product.utility-1.0.81.jar-61ccc7854aca503d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.repository.liberty_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.repository.liberty-1.0.81.jar-caae228d9c07ff34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.repository.parsers_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.repository.parsers-1.0.81.jar-7c7a78f9a07e021b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.repository.resolver_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.repository.resolver-1.0.81.jar-b178255111028459 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.request.probes_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.request.probes-1.0.81.jar-7bd44141116226e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.rest.handler.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.rest.handler.jakarta-1.0.81.jar-32c50a3816bc7463 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.runtime.update_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.runtime.update-1.0.81.jar-42bccd5d4a8e2d5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.audit.reader_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.audit.reader-1.0.81.jar-30697d64d9c46b5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.authentication_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.authentication-1.0.81.jar-ea0c109db6342fa9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.authorization_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.authorization-1.0.81.jar-4fa0f72a4d54b694 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.authorization.builtin_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.authorization.builtin-1.0.81.jar-53541811010d5d82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.context_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.context-1.0.81.jar-f4f8bde80c8c49cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.credentials_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.credentials-1.0.81.jar-ea03d1d65fdc8e87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.credentials.ssotoken_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.credentials.ssotoken-1.0.81.jar-1972379e558ae781 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.credentials.wscred_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.credentials.wscred-1.0.81.jar-36868e365448ff66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.java2sec_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.java2sec-1.0.81.jar-c7a49a8e3c87ab3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.kerberos.auth_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.kerberos.auth-1.0.81.jar-7f9e26148f78528b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.mp.jwt.proxy_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.mp.jwt.proxy-1.0.81.jar-fefb10301ec0392d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.quickstart_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.quickstart-1.0.81.jar-48af24264190fe3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.ready.service_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.ready.service-1.0.81.jar-218557d4e69f80ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.registry_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.registry-1.0.81.jar-a647e1cee84a5e7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.registry.basic_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.registry.basic-1.0.81.jar-55db95d181ccd6ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.token_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.token-1.0.81.jar-03daa98abac235cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.token.ltpa_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.token.ltpa-1.0.81.jar-8c0b26f973842303 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.token.s4u2_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.token.s4u2-1.0.81.jar-8c8a1f4be4fc788a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security.utility_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.security.utility-1.0.81.jar-e732363ee439e80e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.serialization_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.serialization-1.0.81.jar-c1244b1cc9f607e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.session.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.session.jakarta-1.0.81.jar-e3244273a32f6cba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.session.monitor_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.session.monitor-1.0.81.jar-d2cb83b5af171cb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.transaction.context.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.transaction.context.jakarta-1.0.81.jar-6f42634e94743d6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.transaction.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.transaction.jakarta-1.0.81.jar-0c7e30cceec59763 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.transport.http_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.transport.http-1.0.81.jar-2418357cc9cb45a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.tx.embeddable.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.tx.embeddable.jakarta-1.0.81.jar-e9f2cdc13b4689f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.tx.jta.extensions.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.tx.jta.extensions.jakarta-1.0.81.jar-bb4017814aaf6c4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.cors.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webcontainer.cors.jakarta-1.0.81.jar-f96dfd4e1c8d5376 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.jakarta_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webcontainer.jakarta-1.1.81.jar-a54c566cbcbb484b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.monitor.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webcontainer.monitor.jakarta-1.0.81.jar-d64367108172feb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.security.admin_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webcontainer.security.admin-1.0.81.jar-282b6fc3ab9aba1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.security.feature_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webcontainer.security.feature-1.0.81.jar-001ba78f09c106c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.servlet.3.1.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webcontainer.servlet.3.1.jakarta-1.0.81.jar-39a4dbf51a0557bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.servlet.4.0.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webcontainer.servlet.4.0.jakarta-1.0.81.jar-2b9191ad3daace5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.runtime.interfaces_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webserver.plugin.runtime.interfaces-1.0.81.jar-61b4bf074cc63805 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.runtime.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webserver.plugin.runtime.jakarta-1.0.81.jar-8b58fd7c62646596 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.utility_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.ws.webserver.plugin.utility-1.0.81.jar-0616e8863c89967a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.core_1.2.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.core-1.2.81.jar-8e6f85f3eca08889 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.namespace.service_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.namespace.service-1.0.81.jar-c3524ae3f0bb574d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.cm_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.cm-1.1.81.jar-d05f79a88e8f768e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.component_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.component-1.1.81.jar-f97cdd1b2eb7bb1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.component.annotations_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.component.annotations-1.0.81.jar-9ab69e6b3654a243 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.coordinator_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.coordinator-1.0.81.jar-d0743a60ecec3268 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.event_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.event-1.0.81.jar-d83d5f46cae30c59 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.log_1.2.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.log-1.2.81.jar-d2a74b7d8fb90df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.metatype_1.1.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.metatype-1.1.81.jar-0f7f6bedce5e8750 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.metatype.annotations_1.0.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.org.osgi.service.metatype.annotations-1.0.81.jar-fb92666d08e1aa2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/dev/spi/third-party/com.ibm.wsspi.thirdparty.equinox_1.3.81.jar +SPDXID: SPDXRef-File-...com.ibm.wsspi.thirdparty.equinox-1.3.81.jar-f787b00868727742 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /usr/lib/swidtag/redhat.com/com.redhat.RHEL-8-x86_64.swidtag +SPDXID: SPDXRef-File-...com.redhat.RHEL-8-x86-64.swidtag-7090fb698b60be0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/swidtag/redhat.com/com.redhat.RHEL-8.8-x86_64.swidtag +SPDXID: SPDXRef-File-...com.redhat.RHEL-8.8-x86-64.swidtag-e31018fb0d6a14c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/com.redhat.RHSM1.Facts.service +SPDXID: SPDXRef-File-...com.redhat.RHSM1.Facts.service-76b8bd02481adc83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/com.redhat.RHSM1.service +SPDXID: SPDXRef-File-...com.redhat.RHSM1.service-896f622ce465a1e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/launcher manifest.xml +SPDXID: SPDXRef-File-...command-launcher-manifest.xml-fa36a58e016fdd87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/commands.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...commands.cpython-36.opt-1.pyc-2b44df32cacbe3e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/common_types.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...common-types.cpython-36.opt-1.pyc-2bdf298c6f3b2d7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/common_types.cpython-36.pyc +SPDXID: SPDXRef-File-...common-types.cpython-36.pyc-87c4f22e7553e98f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...compat.cpython-36.opt-1.pyc-51227cd82c255ecd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...compat.cpython-36.opt-1.pyc-56b160ae49476576 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...compat.cpython-36.opt-1.pyc-7ea539257f4e1c27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...compat.cpython-36.opt-1.pyc-d0038fd788b945d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...compat.cpython-36.opt-1.pyc-f0d4efd23146804a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/compat.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...compat.cpython-36.opt-2.pyc-9bb2ceddfaa23d51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/compileall.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...compileall.cpython-36.opt-1.pyc-16bd3613a9b88d9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/compileall.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...compileall.cpython-36.opt-2.pyc-f34064ad5be4a6f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/completion_helper.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...completion-helper.cpython-36.opt-1.pyc-90f1f87db5ab760c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/completion_helper.cpython-36.pyc +SPDXID: SPDXRef-File-...completion-helper.cpython-36.pyc-ddebd9462e97926e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/coredumpctl +SPDXID: SPDXRef-File-...completions-coredumpctl-f62e329a4ae3fa21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fsck.cramfs +SPDXID: SPDXRef-File-...completions-fsck.cramfs-481da53eaf8d20d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/gapplication +SPDXID: SPDXRef-File-...completions-gapplication-41c7e8b4f1ae563b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/hostnamectl +SPDXID: SPDXRef-File-...completions-hostnamectl-d9a48ced8beff4b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/mkfs.cramfs +SPDXID: SPDXRef-File-...completions-mkfs.cramfs-c67ce8f72a6a0142 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/portablectl +SPDXID: SPDXRef-File-...completions-portablectl-d198d31de1533d29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/readprofile +SPDXID: SPDXRef-File-...completions-readprofile-647a5e93a4a6d1ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/scriptreplay +SPDXID: SPDXRef-File-...completions-scriptreplay-3495569413d6d469 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/subscription-manager +SPDXID: SPDXRef-File-...completions-subscription-manager-21308883461a7452 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-analyze +SPDXID: SPDXRef-File-...completions-systemd-analyze-1e19e08a1c852477 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-cat +SPDXID: SPDXRef-File-...completions-systemd-cat-6c596df986f8125c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-cgls +SPDXID: SPDXRef-File-...completions-systemd-cgls-20896b16555f270d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-cgtop +SPDXID: SPDXRef-File-...completions-systemd-cgtop-b2e5c23479c8134c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-delta +SPDXID: SPDXRef-File-...completions-systemd-delta-113014ebac05d0c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-detect-virt +SPDXID: SPDXRef-File-...completions-systemd-detect-virt-2698434d7ff5f438 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-path +SPDXID: SPDXRef-File-...completions-systemd-path-ea914ee9fbfbd872 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-resolve +SPDXID: SPDXRef-File-...completions-systemd-resolve-724b9b514255bf40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/systemd-run +SPDXID: SPDXRef-File-...completions-systemd-run-18248c5cba8cc091 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/timedatectl +SPDXID: SPDXRef-File-...completions-timedatectl-c32c5923788dfd00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__init__.py +SPDXID: SPDXRef-File-...concurrent-futures---init--.py-71341eae3d843d83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/process.py +SPDXID: SPDXRef-File-...concurrent-futures-process.py-0de461b43ec7f4ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...conf---pycache---config.cpython-36.pyc-55a4cdca0d713a2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/read.cpython-36.pyc +SPDXID: SPDXRef-File-...conf---pycache---read.cpython-36.pyc-f264fe260177feb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/fontconfig/conf.avail/10-hinting-full.conf +SPDXID: SPDXRef-File-...conf.avail-10-hinting-full.conf-a28b50cbb64c6373 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-hinting-medium.conf +SPDXID: SPDXRef-File-...conf.avail-10-hinting-medium.conf-d4bd022fe7ce3c8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-hinting-none.conf +SPDXID: SPDXRef-File-...conf.avail-10-hinting-none.conf-978db3c104c6381d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-hinting-slight.conf +SPDXID: SPDXRef-File-...conf.avail-10-hinting-slight.conf-755568bbb96cc759 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-no-sub-pixel.conf +SPDXID: SPDXRef-File-...conf.avail-10-no-sub-pixel.conf-9117d4da3793e56e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf +SPDXID: SPDXRef-File-...conf.avail-10-scale-bitmap-fonts.conf-bbcfc32a1eb7e26d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf +SPDXID: SPDXRef-File-...conf.avail-10-sub-pixel-bgr.conf-3c875c213e7e28ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf +SPDXID: SPDXRef-File-...conf.avail-10-sub-pixel-rgb.conf-5b6fcf3fd529ad78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf +SPDXID: SPDXRef-File-...conf.avail-10-sub-pixel-vbgr.conf-6a425c075f71bf0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf +SPDXID: SPDXRef-File-...conf.avail-10-sub-pixel-vrgb.conf-aebc2d8b8639a8da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf +SPDXID: SPDXRef-File-...conf.avail-11-lcdfilter-default.conf-128a9adad30fe5d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf +SPDXID: SPDXRef-File-...conf.avail-11-lcdfilter-legacy.conf-d3aee102dd226900 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/11-lcdfilter-light.conf +SPDXID: SPDXRef-File-...conf.avail-11-lcdfilter-light.conf-5ec8259e64366658 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf +SPDXID: SPDXRef-File-...conf.avail-20-unhint-small-vera.conf-2229f74d3965bb92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/25-unhint-nonlatin.conf +SPDXID: SPDXRef-File-...conf.avail-25-unhint-nonlatin.conf-e01b74c0b724899e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/30-metric-aliases.conf +SPDXID: SPDXRef-File-...conf.avail-30-metric-aliases.conf-e4d4e64106df6dde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/49-sansserif.conf +SPDXID: SPDXRef-File-...conf.avail-49-sansserif.conf-47fe978d4ff84707 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/57-dejavu-sans.conf +SPDXID: SPDXRef-File-...conf.avail-57-dejavu-sans.conf-4474dc1985af1290 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/65-fonts-persian.conf +SPDXID: SPDXRef-File-...conf.avail-65-fonts-persian.conf-016594a31cc81ab6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/70-no-bitmaps.conf +SPDXID: SPDXRef-File-...conf.avail-70-no-bitmaps.conf-50775690e31f87b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/70-yes-bitmaps.conf +SPDXID: SPDXRef-File-...conf.avail-70-yes-bitmaps.conf-c9a1af80cc4a540a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/80-delicious.conf +SPDXID: SPDXRef-File-...conf.avail-80-delicious.conf-be742a98b07c7196 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/90-synthetic.conf +SPDXID: SPDXRef-File-...conf.avail-90-synthetic.conf-ad4861d60c32c08f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/config-3.6m-x86_64-linux-gnu/Makefile +SPDXID: SPDXRef-File-...config-3.6m-x86-64-linux-gnu-Makefile-60b0929b7adfbd28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/config_manager.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config-manager.cpython-36.opt-1.pyc-eafab434f140b254 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/config_manager.cpython-36.pyc +SPDXID: SPDXRef-File-...config-manager.cpython-36.pyc-db9cb27fd80f09e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-1eda49d877373753 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-45ecf0686d88ade4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-791d567dca2dd2b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-834052b96a3ea148 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-87a5179fb8c0d2b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-9b2b1c72d59356b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-acb27124d1b5e395 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-b2475befcf858602 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/config.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-1.pyc-dc492f434bb8b38b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/config.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-2.pyc-555f5f263c8033eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/config.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-2.pyc-81e057b8db977fff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/config.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...config.cpython-36.opt-2.pyc-d3d2b8cded7612b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/configgenerator.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...configgenerator.cpython-36.opt-1.pyc-434bff073b01f224 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/configgenerator.cpython-36.pyc +SPDXID: SPDXRef-File-...configgenerator.cpython-36.pyc-934ba161c127a9fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/configparser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...configparser.cpython-36.opt-1.pyc-59952d647636ddda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/configparser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...configparser.cpython-36.opt-1.pyc-70822d4b3e0c9e08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/configparser.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...configparser.cpython-36.opt-2.pyc-74c010a78eb7c28b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/configparser.cpython-36.pyc +SPDXID: SPDXRef-File-...configparser.cpython-36.pyc-9fbc26f6d5c2ec68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__pycache__/configparser.cpython-36.pyc +SPDXID: SPDXRef-File-...configparser.cpython-36.pyc-d26f9fa05d810852 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/connection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-1.pyc-11ddad0a4e9803ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/connection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-1.pyc-328dbf4c726993e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/connection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-1.pyc-495f88c81cd867c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/__pycache__/connection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-1.pyc-53bc8e7fa31f8d58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/connection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-1.pyc-77c80c9971a7a7ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/connection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-1.pyc-cc549009937e0af3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/connection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-1.pyc-f3afc782bf553906 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/connection.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-2.pyc-236c80ee973c29e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/__pycache__/connection.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...connection.cpython-36.opt-2.pyc-27d6e0f225a19301 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/connectionpool.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...connectionpool.cpython-36.opt-1.pyc-c362cf719443706c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/connectionpool.cpython-36.pyc +SPDXID: SPDXRef-File-...connectionpool.cpython-36.pyc-ea95ab5bff9c6edc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/console.apps/subscription-manager +SPDXID: SPDXRef-File-...console.apps-subscription-manager-c79a3e544afff38d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/constants.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...constants.cpython-36.opt-1.pyc-4f460df8caec3d0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/constants.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...constants.cpython-36.opt-1.pyc-769da245044daffb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/constants.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...constants.cpython-36.opt-1.pyc-7f122a197a99fac9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/constants.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...constants.cpython-36.opt-2.pyc-ba1f836af27fe571 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/consumer.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...consumer.cpython-36.opt-1.pyc-237a65089c75f5de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/consumer.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...consumer.cpython-36.opt-1.pyc-23d41ced3bb35cf5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/content_action_client.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...content-action-client.cpython-36.opt-1.pyc-d8f46e36e70b9e20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/content_action_client.cpython-36.pyc +SPDXID: SPDXRef-File-...content-action-client.cpython-36.pyc-36f6c95c79fb302c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/content_action_client.py +SPDXID: SPDXRef-File-...content-action-client.py-2b19dd8c87191dae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/contentmanager.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...contentmanager.cpython-36.opt-1.pyc-eb31eddefceed172 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/contentmanager.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...contentmanager.cpython-36.opt-2.pyc-d31d24278d15ba09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/contentmanager.cpython-36.pyc +SPDXID: SPDXRef-File-...contentmanager.cpython-36.pyc-00a60ce4c06cd018 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/context.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...context.cpython-36.opt-1.pyc-b89e2f48427dfcc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/context.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...context.cpython-36.opt-2.pyc-ce2072c59e54c195 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/contextlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...contextlib.cpython-36.opt-1.pyc-cbd11f1e2316f44c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/contextlib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...contextlib.cpython-36.opt-2.pyc-b0ffa058c9b7b407 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__init__.py +SPDXID: SPDXRef-File-...contrib--securetransport---init--.py-6dc0c77c225bafed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/bindings.py +SPDXID: SPDXRef-File-...contrib--securetransport-bindings.py-8bc8ea7d431a0002 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/low_level.py +SPDXID: SPDXRef-File-...contrib--securetransport-low-level.py-8d30db1858480ffa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/cookiejar.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cookiejar.cpython-36.opt-1.pyc-dc9facbf15b93efc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/cookiejar.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cookiejar.cpython-36.opt-2.pyc-ac5299b89bbfa99e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/cookies.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cookies.cpython-36.opt-1.pyc-976dc8ee05ad13da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/cookies.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cookies.cpython-36.opt-1.pyc-9fedcaa3421d2b28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/cookies.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cookies.cpython-36.opt-2.pyc-6071197af0f2295d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/copyreg.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...copyreg.cpython-36.opt-1.pyc-2a061099a13569c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/copyreg.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...copyreg.cpython-36.opt-2.pyc-9595c661f7189637 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/coroutines.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...coroutines.cpython-36.opt-1.pyc-de237772a3eb1043 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/coroutines.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...coroutines.cpython-36.opt-2.pyc-8e214b21bb9885e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cp_provider.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp-provider.cpython-36.opt-1.pyc-b88c20b7a6ffe6f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1006.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1006.cpython-36.opt-1.pyc-2f268d5706d34dca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1006.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1006.cpython-36.opt-2.pyc-63b2e7404701e7ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1026.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1026.cpython-36.opt-1.pyc-2080d5b3e613a89e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1026.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1026.cpython-36.opt-2.pyc-435b1416a2b79987 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1125.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1125.cpython-36.opt-1.pyc-34bc060ac4ebb000 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1125.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1125.cpython-36.opt-2.pyc-5189ec492595217d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1140.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1140.cpython-36.opt-1.pyc-91401c2dac19069a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1140.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1140.cpython-36.opt-2.pyc-713af15603d27b8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1250.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1250.cpython-36.opt-1.pyc-cc00d788bcb0b963 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1250.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1250.cpython-36.opt-2.pyc-20795cf3170051ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1251.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1251.cpython-36.opt-1.pyc-d034e8054169b152 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1251.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1251.cpython-36.opt-2.pyc-6c7edd3c54cb6ba0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1252.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1252.cpython-36.opt-1.pyc-140054c1d99fed84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1252.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1252.cpython-36.opt-2.pyc-a3013b315e178136 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1253.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1253.cpython-36.opt-1.pyc-8a75f422da71d1ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1253.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1253.cpython-36.opt-2.pyc-8035187f133155a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1254.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1254.cpython-36.opt-1.pyc-c23983f38aca1178 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1254.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1254.cpython-36.opt-2.pyc-1ee87f4428916dbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1255.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1255.cpython-36.opt-1.pyc-e6baddeb6d287877 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1255.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1255.cpython-36.opt-2.pyc-f097ccc91602d867 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1256.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1256.cpython-36.opt-1.pyc-212267b7e57f5d20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1256.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1256.cpython-36.opt-2.pyc-eec243dd1bf75c18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1257.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1257.cpython-36.opt-1.pyc-9ad68c400374431f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1257.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1257.cpython-36.opt-2.pyc-eb6235add718a510 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1258.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp1258.cpython-36.opt-1.pyc-0a2e203fcca778cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp1258.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp1258.cpython-36.opt-2.pyc-6377c3d22f4f3eb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp65001.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp65001.cpython-36.opt-1.pyc-5df3e59c72f2376c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/cp65001.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cp65001.cpython-36.opt-2.pyc-8bbf279b829ccd71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/cp949prober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cp949prober.cpython-36.opt-1.pyc-997094c4ea4db302 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/cpuinfo.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cpuinfo.cpython-36.opt-1.pyc-2fa88b2966e4a20a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/cpuinfo.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cpuinfo.cpython-36.opt-1.pyc-64bc052f5e0c1842 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/create.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...create.cpython-36.opt-1.pyc-1016f72f3d3568d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /tmp/usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...crit-3.18-py3.6.egg-info-PKG-INFO-4820f3c33a6f53c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:ae8ca4ad3728bc07e1f5c89dff6565942d9109266a15e7c45a983d6130a2615a + +FileName: /usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...crit-3.18-py3.6.egg-info-PKG-INFO-c2616591addfe5cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:ae8ca4ad3728bc07e1f5c89dff6565942d9109266a15e7c45a983d6130a2615a + +FileName: /usr/share/licenses/crypto-policies/COPYING.LESSER +SPDXID: SPDXRef-File-...crypto-policies-COPYING.LESSER-6f985d0e502f9b76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/gnutls.txt +SPDXID: SPDXRef-File-...crypto-policies-DEFAULT-gnutls.txt-4ed81240a0256911 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/libreswan.txt +SPDXID: SPDXRef-File-...crypto-policies-DEFAULT-libreswan.txt-880f7f8a3a33a064 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/libssh.txt +SPDXID: SPDXRef-File-...crypto-policies-DEFAULT-libssh.txt-fdeadfaf140b67f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/openssh.txt +SPDXID: SPDXRef-File-...crypto-policies-DEFAULT-openssh.txt-b5fbd9a86079aeba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/openssl.txt +SPDXID: SPDXRef-File-...crypto-policies-DEFAULT-openssl.txt-69a01dcddb25be7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/opensslcnf.txt +SPDXID: SPDXRef-File-...crypto-policies-DEFAULT-opensslcnf.txt-dc2fbe4908ea1a9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/libreswan.txt +SPDXID: SPDXRef-File-...crypto-policies-EMPTY-libreswan.txt-f887fbfad8a81b67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/openssh.txt +SPDXID: SPDXRef-File-...crypto-policies-EMPTY-openssh.txt-625f0811c40879d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/openssl.txt +SPDXID: SPDXRef-File-...crypto-policies-EMPTY-openssl.txt-d56eaf0891b08172 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/opensslcnf.txt +SPDXID: SPDXRef-File-...crypto-policies-EMPTY-opensslcnf.txt-6ec5536f089d3fda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/libreswan.txt +SPDXID: SPDXRef-File-...crypto-policies-FIPS-libreswan.txt-e5e8994ba6add4a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/opensshserver.txt +SPDXID: SPDXRef-File-...crypto-policies-FIPS-opensshserver.txt-84357976b52479bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/opensslcnf.txt +SPDXID: SPDXRef-File-...crypto-policies-FIPS-opensslcnf.txt-faf9f9f2ccc08fe9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/gnutls.txt +SPDXID: SPDXRef-File-...crypto-policies-FUTURE-gnutls.txt-3eb07f0b14f46d8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/libreswan.txt +SPDXID: SPDXRef-File-...crypto-policies-FUTURE-libreswan.txt-f71391c2ab23d794 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/libssh.txt +SPDXID: SPDXRef-File-...crypto-policies-FUTURE-libssh.txt-c589d2f32d9e822a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/openssh.txt +SPDXID: SPDXRef-File-...crypto-policies-FUTURE-openssh.txt-14f19ad4d282d335 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/openssl.txt +SPDXID: SPDXRef-File-...crypto-policies-FUTURE-openssl.txt-b496120634f40348 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/opensslcnf.txt +SPDXID: SPDXRef-File-...crypto-policies-FUTURE-opensslcnf.txt-822335635f34bd0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/gnutls.txt +SPDXID: SPDXRef-File-...crypto-policies-LEGACY-gnutls.txt-71ebabcf1397433b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/libreswan.txt +SPDXID: SPDXRef-File-...crypto-policies-LEGACY-libreswan.txt-7c5d756c782c5fc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/libssh.txt +SPDXID: SPDXRef-File-...crypto-policies-LEGACY-libssh.txt-ddc60b77d93cfc9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/openssh.txt +SPDXID: SPDXRef-File-...crypto-policies-LEGACY-openssh.txt-9c55ae11ea9b8e66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/openssl.txt +SPDXID: SPDXRef-File-...crypto-policies-LEGACY-openssl.txt-cc73448fa988e95c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/opensslcnf.txt +SPDXID: SPDXRef-File-...crypto-policies-LEGACY-opensslcnf.txt-5546bc355b95d6cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/DEFAULT.pol +SPDXID: SPDXRef-File-...crypto-policies-policies-DEFAULT.pol-1c80323d610449f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/EMPTY.pol +SPDXID: SPDXRef-File-...crypto-policies-policies-EMPTY.pol-59c4e118c8ebbdf3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/FIPS.pol +SPDXID: SPDXRef-File-...crypto-policies-policies-FIPS.pol-3e1d24f4b1b8cb54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/FUTURE.pol +SPDXID: SPDXRef-File-...crypto-policies-policies-FUTURE.pol-8e19949a286d114d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/LEGACY.pol +SPDXID: SPDXRef-File-...crypto-policies-policies-LEGACY.pol-512deec5f01186fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/crypto.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...crypto.cpython-36.opt-1.pyc-d0c3ba32f49127dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/cryptopolicies.py +SPDXID: SPDXRef-File-...cryptopolicies-cryptopolicies.py-99cc9b97a4c1f508 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__init__.py +SPDXID: SPDXRef-File-...cryptopolicies-validation---init--.py-b09489edf8e14aa3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/alg_lists.py +SPDXID: SPDXRef-File-...cryptopolicies-validation-alg-lists.py-0cc067d410ef6e43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/general.py +SPDXID: SPDXRef-File-...cryptopolicies-validation-general.py-ede17ec118c1352e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/rules.py +SPDXID: SPDXRef-File-...cryptopolicies-validation-rules.py-da8ef223f187d10d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/scope.py +SPDXID: SPDXRef-File-...cryptopolicies-validation-scope.py-17ffaa27f9c2d5df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/__pycache__/cryptopolicies.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cryptopolicies.cpython-36.opt-1.pyc-c592f9fc78ec3ca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/__pycache__/cryptopolicies.cpython-36.pyc +SPDXID: SPDXRef-File-...cryptopolicies.cpython-36.pyc-0ac76676ef1989d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...ctypes---pycache---util.cpython-36.pyc-78673e4722d078fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/README.ctypes +SPDXID: SPDXRef-File-...ctypes-macholib-README.ctypes-6fe79a7828a7f67e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/fetch_macholib +SPDXID: SPDXRef-File-...ctypes-macholib-fetch-macholib-9762a508d71641dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/custom.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...custom.cpython-36.opt-1.pyc-5f561bcd3d1498c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/cygwinccompiler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...cygwinccompiler.cpython-36.opt-1.pyc-0a93f2bb231d8adc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/cygwinccompiler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...cygwinccompiler.cpython-36.opt-2.pyc-a4ef842abe4ab5fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/cygwinccompiler.cpython-36.pyc +SPDXID: SPDXRef-File-...cygwinccompiler.cpython-36.pyc-13250819df86afbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/__pycache__/daemon.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...daemon.cpython-36.opt-1.pyc-7c21c169f39c4cf3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/datetime.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...datetime.cpython-36.opt-1.pyc-4cd6c7e5facd50fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/datetime.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...datetime.cpython-36.opt-2.pyc-93d492bf2b9dbebc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/relativedelta.py +SPDXID: SPDXRef-File-...dateutil-relativedelta.py-e14b38f846cc878b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/zoneinfo/__init__.py +SPDXID: SPDXRef-File-...dateutil-zoneinfo---init--.py-cf71c2e0bc3c5d12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/zoneinfo/rebuild.py +SPDXID: SPDXRef-File-...dateutil-zoneinfo-rebuild.py-7b873306602e8f7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...db---pycache-----init--.cpython-36.pyc-7ad730d1a4e13d30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/__pycache__/group.cpython-36.pyc +SPDXID: SPDXRef-File-...db---pycache---group.cpython-36.pyc-e56516076701c03d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/__pycache__/history.cpython-36.pyc +SPDXID: SPDXRef-File-...db---pycache---history.cpython-36.pyc-a13cb7fd253399e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/dbapi2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dbapi2.cpython-36.opt-1.pyc-9d8cbbf6d4fd00e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__pycache__/dbapi2.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...dbapi2.cpython-36.opt-2.pyc-fdcfd95e1ef70d11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/dumb.cpython-36.pyc +SPDXID: SPDXRef-File-...dbm---pycache---dumb.cpython-36.pyc-dbeab38e244cfd3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/gnu.cpython-36.pyc +SPDXID: SPDXRef-File-...dbm---pycache---gnu.cpython-36.pyc-edc2e82da2169c14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__pycache__/ndbm.cpython-36.pyc +SPDXID: SPDXRef-File-...dbm---pycache---ndbm.cpython-36.pyc-07eaf989abc978c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/_dbus.cpython-36.pyc +SPDXID: SPDXRef-File-...dbus---pycache----dbus.cpython-36.pyc-7e363825c85cebe4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/bus.cpython-36.pyc +SPDXID: SPDXRef-File-...dbus---pycache---bus.cpython-36.pyc-4958fd0d11cbc945 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/glib.cpython-36.pyc +SPDXID: SPDXRef-File-...dbus---pycache---glib.cpython-36.pyc-f96efced44ce6b2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/server.cpython-36.pyc +SPDXID: SPDXRef-File-...dbus---pycache---server.cpython-36.pyc-b847465e3d3c5142 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/server.cpython-36.pyc +SPDXID: SPDXRef-File-...dbus---pycache---server.cpython-36.pyc-de57585b43802b89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/types.cpython-36.pyc +SPDXID: SPDXRef-File-...dbus---pycache---types.cpython-36.pyc-0441077c0be5b569 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...dbus---pycache---util.cpython-36.pyc-2df2f8e588452125 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/_expat_introspect_parser.py +SPDXID: SPDXRef-File-...dbus--expat-introspect-parser.py-a7e059f8050b04db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/dbus-1/dbus-daemon-launch-helper +SPDXID: SPDXRef-File-...dbus-1-dbus-daemon-launch-helper-5863faf90c99be6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dbus-1/system.d/com.redhat.RHSM1.conf +SPDXID: SPDXRef-File-...dbus-1-system.d-com.redhat.RHSM1.conf-ff740cbacd5e792e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/mainloop/__init__.py +SPDXID: SPDXRef-File-...dbus-mainloop---init--.py-fa358622cf429120 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/dbus_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dbus-utils.cpython-36.opt-1.pyc-fa86baf384b7be37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/__pycache__/debug_commands.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...debug-commands.cpython-36.opt-1.pyc-5cf471762f8d8973 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/__pycache__/debug_commands.cpython-36.pyc +SPDXID: SPDXRef-File-...debug-commands.cpython-36.pyc-1fe66f8419d5402b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/debuginfo-install.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...debuginfo-install.cpython-36.opt-1.pyc-5cb963fc78abd3ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/debuginfo-install.cpython-36.pyc +SPDXID: SPDXRef-File-...debuginfo-install.cpython-36.pyc-c08deeaa98d5747a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/decimal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...decimal.cpython-36.opt-1.pyc-5d029f26c0d98c7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/decimal.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...decimal.cpython-36.opt-2.pyc-2b4744523e723828 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/decoder.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...decoder.cpython-36.opt-1.pyc-5f017112302a37b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/decoder.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...decoder.cpython-36.opt-2.pyc-10c8debc35e85eb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/decorator.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...decorator.cpython-36.opt-1.pyc-97694482de89b68d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/decorators.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...decorators.cpython-36.opt-1.pyc-fade188fc6255d69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/fonts/dejavu/DejaVuSans-BoldOblique.ttf +SPDXID: SPDXRef-File-...dejavu-DejaVuSans-BoldOblique.ttf-c0afdc59bb070502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fonts/dejavu/DejaVuSansCondensed-Bold.ttf +SPDXID: SPDXRef-File-...dejavu-DejaVuSansCondensed-Bold.ttf-d89882d1dffe22ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fonts/dejavu/DejaVuSansCondensed-Oblique.ttf +SPDXID: SPDXRef-File-...dejavu-DejaVuSansCondensed-Oblique.ttf-51f6ce074236e223 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/demand.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...demand.cpython-36.opt-1.pyc-485d5bf28937de75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dep_util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dep-util.cpython-36.opt-1.pyc-333afb963650bf52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/dep_util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dep-util.cpython-36.opt-1.pyc-4248eca29b9bbb3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dep_util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...dep-util.cpython-36.opt-2.pyc-da14ce6f9ad8cbc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-14fe012b4cd3807d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps-0.1.18-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-211bdaaad35cd8be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-34208653ef4c7e36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-379d0970069ebe1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-3e6e46be29490151 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-58f8360c81712d54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus_python-1.2.4-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-5e0d5e09fa6e94ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/ethtool-0.14-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-6c7bd81899114741 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-b7a4cfb1cf3a3b0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-bc00342a2928bf4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-d1c092fed42f7817 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose-1.28.36-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-decf0b32a6cb7618 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/PySocks-1.6.8-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-f0fb793f7323e763 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-f27452b7efbe0cad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna-2.5-py3.6.egg-info/dependency_links.txt +SPDXID: SPDXRef-File-...dependency-links.txt-fd59f52b038d8043 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/depends.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...depends.cpython-36.opt-1.pyc-1d92ce43171f6543 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/deplist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...deplist.cpython-36.opt-1.pyc-a0c445b898769e58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/develop.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...develop.cpython-36.opt-1.pyc-f0e16d008a871902 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/device-mapper-libs/COPYING.LIB +SPDXID: SPDXRef-File-...device-mapper-libs-COPYING.LIB-e49e596eeda4f478 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/difflib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...difflib.cpython-36.opt-1.pyc-ec1964b926b87aae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/difflib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...difflib.cpython-36.opt-2.pyc-24c8a96e414c0ed0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dir_util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dir-util.cpython-36.opt-1.pyc-b4a7403dc8dae727 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/dir_util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...dir-util.cpython-36.opt-2.pyc-3eb022087680e203 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/dist_info.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dist-info.cpython-36.opt-1.pyc-214e3d411bf071e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/distrosync.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...distrosync.cpython-36.opt-1.pyc-1f5dcc0bdb509660 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__init__.py +SPDXID: SPDXRef-File-...distutils-command---init--.py-bed43f927b1ecb58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/bdist_dumb.py +SPDXID: SPDXRef-File-...distutils-command-bdist-dumb.py-100b1042661218de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/bdist_msi.py +SPDXID: SPDXRef-File-...distutils-command-bdist-msi.py-0e194f467d303c29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/bdist_rpm.py +SPDXID: SPDXRef-File-...distutils-command-bdist-rpm.py-17fae6d3eac01a1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/bdist_wininst.py +SPDXID: SPDXRef-File-...distutils-command-bdist-wininst.py-507ec29a6d6f74e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/build_clib.py +SPDXID: SPDXRef-File-...distutils-command-build-clib.py-98686918137b753a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/build_ext.py +SPDXID: SPDXRef-File-...distutils-command-build-ext.py-61fc513e7cbb0c72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/build_py.py +SPDXID: SPDXRef-File-...distutils-command-build-py.py-a0460ce404f1a1b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/build_scripts.py +SPDXID: SPDXRef-File-...distutils-command-build-scripts.py-af4e34d9e3ccc76a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/command_template +SPDXID: SPDXRef-File-...distutils-command-command-template-c27000e35ecdade4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/install_data.py +SPDXID: SPDXRef-File-...distutils-command-install-data.py-c464873185cefd27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/install_egg_info.py +SPDXID: SPDXRef-File-...distutils-command-install-egg-info.py-0c6972e2a65e1dc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/install_headers.py +SPDXID: SPDXRef-File-...distutils-command-install-headers.py-475a25c6273dd975 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/install_lib.py +SPDXID: SPDXRef-File-...distutils-command-install-lib.py-ee15c2a6b592e445 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/install_scripts.py +SPDXID: SPDXRef-File-...distutils-command-install-scripts.py-19f5a88a54ab233a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/register.py +SPDXID: SPDXRef-File-...distutils-command-register.py-e294e5aab66d112f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/versionpredicate.py +SPDXID: SPDXRef-File-...distutils-versionpredicate.py-722e9647f512ddab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/__pycache__/dmidecode.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dmidecode.cpython-36.opt-1.pyc-d36b92a48b7b5e9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dmidecodemod.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...dmidecodemod.cpython-36m-x86-64-linux-gnu.so-c2dae78ddcd94469 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/dmiinfo.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dmiinfo.cpython-36.opt-1.pyc-ba710e9ce328a13e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/base.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---base.cpython-36.pyc-d3037198d53e2bd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/comps.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---comps.cpython-36.pyc-b6d63207aaf3ab5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/const.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---const.cpython-36.pyc-4c20d40b03d76551 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/crypto.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---crypto.cpython-36.pyc-51d3c89522fd68f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/dnssec.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---dnssec.cpython-36.pyc-2933f8f9b7763a6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/drpm.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---drpm.cpython-36.pyc-f94f5ce12d3c86c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/goal.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---goal.cpython-36.pyc-599997576b4c27bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/history.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---history.cpython-36.pyc-d419def234a54b6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/i18n.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---i18n.cpython-36.pyc-8bd8ca7cd4947efe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/lock.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---lock.cpython-36.pyc-0bc47ff4e566f3bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/logging.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---logging.cpython-36.pyc-5fdc886fe0031345 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/package.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---package.cpython-36.pyc-2c93cf7a05aee956 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/plugin.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---plugin.cpython-36.pyc-1985c1f7111dc797 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/pycomp.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---pycomp.cpython-36.pyc-d7b7bceaeea66163 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/query.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---query.cpython-36.pyc-7edb1f1d9c5cb8a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/repo.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---repo.cpython-36.pyc-03422275b1396cca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/sack.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---sack.cpython-36.pyc-0e15f18befeaa602 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/subject.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---subject.cpython-36.pyc-791fbec357f70ef6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf---pycache---util.cpython-36.pyc-53cbad5e69ba5176 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/cli.cpython-36.pyc +SPDXID: SPDXRef-File-...dnf-cli---pycache---cli.cpython-36.pyc-73cd03ccbb9848c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__init__.py +SPDXID: SPDXRef-File-...dnf-cli-commands---init--.py-a7659c5ffc25c094 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/alias.py +SPDXID: SPDXRef-File-...dnf-cli-commands-alias.py-d8ac939e3a19c5d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/autoremove.py +SPDXID: SPDXRef-File-...dnf-cli-commands-autoremove.py-5135419935dbc959 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/check.py +SPDXID: SPDXRef-File-...dnf-cli-commands-check.py-c0b60e7e87889de4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/clean.py +SPDXID: SPDXRef-File-...dnf-cli-commands-clean.py-38a8c3fb28190884 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/deplist.py +SPDXID: SPDXRef-File-...dnf-cli-commands-deplist.py-dc7b732d53c3a095 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/distrosync.py +SPDXID: SPDXRef-File-...dnf-cli-commands-distrosync.py-5afa8f9047a8e2cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/downgrade.py +SPDXID: SPDXRef-File-...dnf-cli-commands-downgrade.py-6a6eb765c74f4e62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/group.py +SPDXID: SPDXRef-File-...dnf-cli-commands-group.py-372a4f51245affc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/history.py +SPDXID: SPDXRef-File-...dnf-cli-commands-history.py-498d5952bff47324 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/install.py +SPDXID: SPDXRef-File-...dnf-cli-commands-install.py-06a80341b58be448 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/makecache.py +SPDXID: SPDXRef-File-...dnf-cli-commands-makecache.py-793faf3264cba9d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/module.py +SPDXID: SPDXRef-File-...dnf-cli-commands-module.py-07c2c79c41fccced +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/reinstall.py +SPDXID: SPDXRef-File-...dnf-cli-commands-reinstall.py-97f1a465ab16c054 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/remove.py +SPDXID: SPDXRef-File-...dnf-cli-commands-remove.py-401d4e38ab2c2e4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/repolist.py +SPDXID: SPDXRef-File-...dnf-cli-commands-repolist.py-a9b957504581acbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/repoquery.py +SPDXID: SPDXRef-File-...dnf-cli-commands-repoquery.py-46b1a34cc04bfaf5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/search.py +SPDXID: SPDXRef-File-...dnf-cli-commands-search.py-bd067c8ecf1227bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/shell.py +SPDXID: SPDXRef-File-...dnf-cli-commands-shell.py-6bf46fbe5a693307 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/updateinfo.py +SPDXID: SPDXRef-File-...dnf-cli-commands-updateinfo.py-54ea780415b7dfa0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/upgrade.py +SPDXID: SPDXRef-File-...dnf-cli-commands-upgrade.py-317e3998338ce4bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/upgrademinimal.py +SPDXID: SPDXRef-File-...dnf-cli-commands-upgrademinimal.py-6be47d4abbfb5d03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/completion_helper.py +SPDXID: SPDXRef-File-...dnf-cli-completion-helper.py-faccc2c17e25511f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/substitutions.py +SPDXID: SPDXRef-File-...dnf-conf-substitutions.py-2e96d67433c81a8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/module_base.py +SPDXID: SPDXRef-File-...dnf-module-module-base.py-447a0c64e148faf5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/config_manager.py +SPDXID: SPDXRef-File-...dnf-plugins-config-manager.py-b71e8709bb6f931c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/debuginfo-install.py +SPDXID: SPDXRef-File-...dnf-plugins-debuginfo-install.py-c380efe423dcaac0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/groups_manager.py +SPDXID: SPDXRef-File-...dnf-plugins-groups-manager.py-f1ae2d9359db4712 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/needs_restarting.py +SPDXID: SPDXRef-File-...dnf-plugins-needs-restarting.py-c3e7b3fc5be2ec9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/product-id.py +SPDXID: SPDXRef-File-...dnf-plugins-product-id.py-1c96678d7341250f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/repoclosure.py +SPDXID: SPDXRef-File-...dnf-plugins-repoclosure.py-5602da6012595251 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/repomanage.py +SPDXID: SPDXRef-File-...dnf-plugins-repomanage.py-34d4d3750138041c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/plugins/subscription-manager.conf +SPDXID: SPDXRef-File-...dnf-plugins-subscription-manager.conf-05b964ac3d5fa1b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/subscription-manager.py +SPDXID: SPDXRef-File-...dnf-plugins-subscription-manager.py-74a655d94fe63010 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/system_upgrade.py +SPDXID: SPDXRef-File-...dnf-plugins-system-upgrade.py-054025bc184fdbe9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/upload-profile.py +SPDXID: SPDXRef-File-...dnf-plugins-upload-profile.py-575a87656dc3face +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/protected.d/redhat-release.conf +SPDXID: SPDXRef-File-...dnf-protected.d-redhat-release.conf-d2cb17d269cff348 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dnf-system-upgrade-cleanup.service +SPDXID: SPDXRef-File-...dnf-system-upgrade-cleanup.service-ed5c05c7a540501e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnfpluginscore/__init__.py +SPDXID: SPDXRef-File-...dnfpluginscore---init--.py-5cab0afd5e2854ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/dnssec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dnssec.cpython-36.opt-1.pyc-116cd6771bf58e60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/doc/dejavu-fonts-common/status.txt.bz2 +SPDXID: SPDXRef-File-...doc-dejavu-fonts-common-status.txt.bz2-2d1afaa42e4ac5b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/dejavu-fonts-common/unicover.txt +SPDXID: SPDXRef-File-...doc-dejavu-fonts-common-unicover.txt-f0729876bcc5e656 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/fontconfig/fontconfig-user.html +SPDXID: SPDXRef-File-...doc-fontconfig-fontconfig-user.html-14c1cb398678c2a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/fontconfig/fontconfig-user.txt +SPDXID: SPDXRef-File-...doc-fontconfig-fontconfig-user.txt-3985533ea47ce64c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/nftables/examples/ct_helpers.nft +SPDXID: SPDXRef-File-...doc-nftables-examples-ct-helpers.nft-c0fac319263f2de3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/nftables/examples/secmark.nft +SPDXID: SPDXRef-File-...doc-nftables-examples-secmark.nft-0070656fedb6f7ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/docstring.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...docstring.cpython-36.opt-1.pyc-877891c9edd45e50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/doctest.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...doctest.cpython-36.opt-1.pyc-df866f5cf7a3a1a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/doctest.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...doctest.cpython-36.opt-2.pyc-e50397b3301102c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/domreg.cpython-36.pyc +SPDXID: SPDXRef-File-...dom---pycache---domreg.cpython-36.pyc-7dda240aac7efee9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/minidom.cpython-36.pyc +SPDXID: SPDXRef-File-...dom---pycache---minidom.cpython-36.pyc-4168b6c252a2f18e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/pulldom.cpython-36.pyc +SPDXID: SPDXRef-File-...dom---pycache---pulldom.cpython-36.pyc-1f62cef0ad6ff6a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/domreg.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...domreg.cpython-36.opt-1.pyc-91dd47a4baaf4102 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/domreg.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...domreg.cpython-36.opt-2.pyc-448f11b85db849d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/downgrade.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...downgrade.cpython-36.opt-1.pyc-42d204e56c841b23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/download.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...download.cpython-36.opt-1.pyc-667d5a89969f538f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/driver.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...driver.cpython-36.opt-1.pyc-660eb9f8b6e84b1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/driver.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...driver.cpython-36.opt-2.pyc-213cb67db7f46bb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/__pycache__/drv_libxml2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...drv-libxml2.cpython-36.opt-1.pyc-3fe5d44bcd702d88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/dummy_threading.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...dummy-threading.cpython-36.opt-1.pyc-014512e0c66dbd93 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/dummy_threading.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...dummy-threading.cpython-36.opt-2.pyc-d96ba4ad68e36aec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/dummy_threading.cpython-36.pyc +SPDXID: SPDXRef-File-...dummy-threading.cpython-36.pyc-722cf505d6441cc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/easter.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...easter.cpython-36.opt-1.pyc-b28705384ac5cac5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/easy_install.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...easy-install.cpython-36.opt-1.pyc-1c51cd382ff24c8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/easy_install.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...easy-install.cpython-36.opt-1.pyc-59e55f61ba8524cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/easy_install.cpython-36.pyc +SPDXID: SPDXRef-File-...easy-install.cpython-36.pyc-8e76f5ec539afb01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/easy_install.cpython-36.pyc +SPDXID: SPDXRef-File-...easy-install.cpython-36.pyc-ada4ee8b5eb73166 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/egg_info.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...egg-info.cpython-36.opt-1.pyc-af6d8df4e6c95eee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/elfutils-libelf/COPYING-LGPLV3 +SPDXID: SPDXRef-File-...elfutils-libelf-COPYING-LGPLV3-bc7dcd87acd02afb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...email---pycache---utils.cpython-36.pyc-de7285b210fbafc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/_header_value_parser.py +SPDXID: SPDXRef-File-...email--header-value-parser.py-659810e3746e97e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_AG/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...en-AG-LC-MESSAGES-SYS-LC-MESSAGES-d9629137742a772c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...en-AU-LC-MESSAGES-SYS-LC-MESSAGES-2613807ab4a8057d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...en-CA-LC-MESSAGES-SYS-LC-MESSAGES-8dabc08bc9dfbf3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA.utf8/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...en-CA.utf8-LC-MESSAGES-SYS-LC-MESSAGES-9c71c428eda55c83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...en-DK-LC-MESSAGES-SYS-LC-MESSAGES-08b0e51d392c493e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK.utf8/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...en-DK.utf8-LC-MESSAGES-SYS-LC-MESSAGES-48ec458afb1f8b82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/json-glib-1.0.mo +SPDXID: SPDXRef-File-...en-GB-LC-MESSAGES-json-glib-1.0.mo-0a062e0adc7ba9c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...en-GB.iso885915-LC-IDENTIFICATION-5f2e756c1021af61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.iso885915/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...en-US.iso885915-LC-IDENTIFICATION-bf235af607ae2985 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZM/LC_MESSAGES/SYS_LC_MESSAGES +SPDXID: SPDXRef-File-...en-ZM-LC-MESSAGES-SYS-LC-MESSAGES-12589b2621e10b89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/json/__pycache__/encoder.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...encoder.cpython-36.opt-1.pyc-cf53a4f0629620ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/encoder.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...encoder.cpython-36.opt-2.pyc-c9a1891bd0292e68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/encoders.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...encoders.cpython-36.opt-1.pyc-427bdbb4e68d9bfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/encoders.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...encoders.cpython-36.opt-2.pyc-2776007c4695fe64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/data/__pycache__/encoding.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...encoding.cpython-36.opt-1.pyc-d4fde4949f0e0e03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/raw_unicode_escape.py +SPDXID: SPDXRef-File-...encodings-raw-unicode-escape.py-627c252ec9c7604e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/unicode_internal.py +SPDXID: SPDXRef-File-...encodings-unicode-internal.py-9582b18d44ab70a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/model/__pycache__/ent_cert.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ent-cert.cpython-36.opt-1.pyc-c40c30180451b9df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/entbranding.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...entbranding.cpython-36.opt-1.pyc-a118ae7493a783c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/entcertlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...entcertlib.cpython-36.opt-1.pyc-d328993abca86549 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/entities.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...entities.cpython-36.opt-1.pyc-2f50509d10d1d30c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/entities.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...entities.cpython-36.opt-2.pyc-4a8793c5dc0501a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/entitlement.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...entitlement.cpython-36.opt-1.pyc-7759caf41624230c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/entitlement.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...entitlement.cpython-36.opt-1.pyc-d874ce322c03b6bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/entry_points.txt +SPDXID: SPDXRef-File-...entry-points.txt-093084c6b1da5e44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/entry_points.txt +SPDXID: SPDXRef-File-...entry-points.txt-5b09e5e7a661613f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose-1.28.36-py3.6.egg-info/entry_points.txt +SPDXID: SPDXRef-File-...entry-points.txt-87ab44d2b959a6dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/entry_points.txt +SPDXID: SPDXRef-File-...entry-points.txt-8c482f773e30b202 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/entry_points.txt +SPDXID: SPDXRef-File-...entry-points.txt-a859889535112d8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/errors.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...errors.cpython-36.opt-1.pyc-087d140030f03114 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/errors.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...errors.cpython-36.opt-1.pyc-8a5a4d5f7121ddfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/errors.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...errors.cpython-36.opt-1.pyc-a2147fadca5f4954 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/errors.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...errors.cpython-36.opt-2.pyc-9cf119103c96b829 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/errors.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...errors.cpython-36.opt-2.pyc-a980f28d141035b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/escprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...escprober.cpython-36.opt-1.pyc-246c61b273b3150b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/ethtool-0.14-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...ethtool-0.14-py3.6.egg-info-PKG-INFO-2738b5642c2848f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/ethtool.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...ethtool.cpython-36m-x86-64-linux-gnu.so-52f4ae7d1d842047 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jis_2004.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euc-jis-2004.cpython-36.opt-1.pyc-084107cf09d755d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jis_2004.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...euc-jis-2004.cpython-36.opt-2.pyc-56671edccf6b2533 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jis_2004.cpython-36.pyc +SPDXID: SPDXRef-File-...euc-jis-2004.cpython-36.pyc-c4a4378caa5a3c96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jisx0213.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euc-jisx0213.cpython-36.opt-1.pyc-9cdebadaac6a98fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jisx0213.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...euc-jisx0213.cpython-36.opt-2.pyc-f5fb645643001e1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jisx0213.cpython-36.pyc +SPDXID: SPDXRef-File-...euc-jisx0213.cpython-36.pyc-37d8693d8a8228dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euc-jp.cpython-36.opt-1.pyc-a8eedb8080ec08c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_jp.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...euc-jp.cpython-36.opt-2.pyc-11e80806884ab512 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_kr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euc-kr.cpython-36.opt-1.pyc-6e947e5780a7d1cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/euc_kr.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...euc-kr.cpython-36.opt-2.pyc-97da1f9ea717c844 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/eucjpprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...eucjpprober.cpython-36.opt-1.pyc-8c9f3f3c1c795b35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euckrfreq.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euckrfreq.cpython-36.opt-1.pyc-6c9334caefcc9279 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euckrprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euckrprober.cpython-36.opt-1.pyc-9c9187b485f11e81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euctwfreq.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euctwfreq.cpython-36.opt-1.pyc-35c4bda7afbc4bf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/euctwprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...euctwprober.cpython-36.opt-1.pyc-d43d4fd63188f808 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/events.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...events.cpython-36.opt-1.pyc-0a4ea1f37ecb1797 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/events.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...events.cpython-36.opt-2.pyc-143ceaab53723c73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-34e54a5f6cb733f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-3d2ec590cfbd1980 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-621f91c07a4c871b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-800f7d59225ae2af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-a628f578ce14207c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-ba97889a9069218e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-de94f03f7d461a0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/exceptions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-fc42c6df844b1200 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/expatbuilder.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...expatbuilder.cpython-36.opt-1.pyc-6e659e01fcea3308 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/expatbuilder.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...expatbuilder.cpython-36.opt-2.pyc-ffb1ba147f8eda86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/expatbuilder.cpython-36.pyc +SPDXID: SPDXRef-File-...expatbuilder.cpython-36.pyc-2d5727a7b26ca391 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/expatreader.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...expatreader.cpython-36.opt-1.pyc-d7f810497ed2632c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/expatreader.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...expatreader.cpython-36.opt-2.pyc-22857f76a9ecc5dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/extension.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...extension.cpython-36.opt-1.pyc-396c38c29316d5e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/extension.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...extension.cpython-36.opt-1.pyc-4a214e0bb5487235 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/extension.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...extension.cpython-36.opt-2.pyc-71b8bc30b612ea01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/openssl/ca-bundle.trust.crt +SPDXID: SPDXRef-File-...extracted-openssl-ca-bundle.trust.crt-9e1cd1d76d37f0f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/pem/email-ca-bundle.pem +SPDXID: SPDXRef-File-...extracted-pem-email-ca-bundle.pem-2de4791551b51b77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/pem/objsign-ca-bundle.pem +SPDXID: SPDXRef-File-...extracted-pem-objsign-ca-bundle.pem-dd080ef41e7e5f71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem +SPDXID: SPDXRef-File-...extracted-pem-tls-ca-bundle.pem-74339ef2e9a3f27c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/fact_collector.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fact-collector.cpython-36.opt-1.pyc-fa67a2c2ed7a3737 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/fact_collector.cpython-36.pyc +SPDXID: SPDXRef-File-...fact-collector.cpython-36.pyc-d972fc8847e76682 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/factlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...factlib.cpython-36.opt-1.pyc-2f3454b57fff8927 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/all.cpython-36.pyc +SPDXID: SPDXRef-File-...facts---pycache---all.cpython-36.pyc-7979e632a139555d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__pycache__/base.cpython-36.pyc +SPDXID: SPDXRef-File-...facts---pycache---base.cpython-36.pyc-0bd8f013f68fcecf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/virt.cpython-36.pyc +SPDXID: SPDXRef-File-...facts---pycache---virt.cpython-36.pyc-0ea71c12e82c39e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/fancy_getopt.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fancy-getopt.cpython-36.opt-1.pyc-54d2658edb5e0615 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/fancy_getopt.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fancy-getopt.cpython-36.opt-2.pyc-035e59b22a90d5ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/fancy_getopt.cpython-36.pyc +SPDXID: SPDXRef-File-...fancy-getopt.cpython-36.pyc-7fd672a149b0e121 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/fcntl.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...fcntl.cpython-36m-x86-64-linux-gnu.so-6d1cf68354431adb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/feedparser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...feedparser.cpython-36.opt-1.pyc-0634e4c1ae72699e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/feedparser.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...feedparser.cpython-36.opt-2.pyc-8e14ea5893e61b2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/fields.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fields.cpython-36.opt-1.pyc-849476945284f5b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/__pycache__/file_monitor.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...file-monitor.cpython-36.opt-1.pyc-670ab17ec3e53e97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/__pycache__/file_monitor.cpython-36.pyc +SPDXID: SPDXRef-File-...file-monitor.cpython-36.pyc-15ffd87e58599a5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/file_util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...file-util.cpython-36.opt-1.pyc-2a755d6cea6a309a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/file_util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...file-util.cpython-36.opt-2.pyc-b8b54fb28b215ca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/filecmp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...filecmp.cpython-36.opt-1.pyc-8fa938d2778ae322 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/filecmp.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...filecmp.cpython-36.opt-2.pyc-ec2720e7ce58206b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fileinput.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fileinput.cpython-36.opt-1.pyc-779bbc879b920c40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fileinput.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fileinput.cpython-36.opt-2.pyc-f38e055353d5127f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/filelist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...filelist.cpython-36.opt-1.pyc-1261131f8e60e18c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/filelist.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...filelist.cpython-36.opt-2.pyc-694ac4580b640571 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/filepost.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...filepost.cpython-36.opt-1.pyc-4416c3a817e5b151 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/firmware_info.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...firmware-info.cpython-36.opt-1.pyc-ff0ae1a601c5cff7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/firmware_info.cpython-36.pyc +SPDXID: SPDXRef-File-...firmware-info.cpython-36.pyc-29892b931b6c28cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_apply.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-apply.cpython-36.opt-1.pyc-f121e2126211c594 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_apply.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-apply.cpython-36.opt-2.pyc-6697931afa841ad1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_asserts.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-asserts.cpython-36.opt-1.pyc-b6b846cc8dbe9431 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_asserts.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-asserts.cpython-36.opt-2.pyc-9625f46dcf612722 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_basestring.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-basestring.cpython-36.opt-1.pyc-49eefa870209bea8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_basestring.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-basestring.cpython-36.opt-2.pyc-81a7c2e1825e17e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_basestring.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-basestring.cpython-36.pyc-a482e8623b57db7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_buffer.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-buffer.cpython-36.opt-1.pyc-422a48ec03e89665 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_buffer.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-buffer.cpython-36.opt-2.pyc-066f413cabf84c35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_dict.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-dict.cpython-36.opt-1.pyc-378d330f5c7428ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_dict.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-dict.cpython-36.opt-2.pyc-98599f060feec627 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_except.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-except.cpython-36.opt-1.pyc-d249ce1f121703ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_except.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-except.cpython-36.opt-2.pyc-82cbac9663e80bd2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_exec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-exec.cpython-36.opt-1.pyc-cf9d0d605cd04bc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_exec.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-exec.cpython-36.opt-2.pyc-8dc9774b5928c124 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_execfile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-execfile.cpython-36.opt-1.pyc-9534904df965f5e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_execfile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-execfile.cpython-36.opt-2.pyc-a2595f039cc47acd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_execfile.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-execfile.cpython-36.pyc-1bcaf31096e488b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-exitfunc.cpython-36.opt-1.pyc-07633aa7f11caccc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-exitfunc.cpython-36.opt-2.pyc-ba3409483eefbda4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-exitfunc.cpython-36.pyc-3a10d8cca48ceaa5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_filter.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-filter.cpython-36.opt-1.pyc-ddbc7cddc07dc21f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_filter.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-filter.cpython-36.opt-2.pyc-22b80a0cd07a82df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-funcattrs.cpython-36.opt-1.pyc-9172865bd09f7269 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-funcattrs.cpython-36.opt-2.pyc-d983e70c82bd4f38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-funcattrs.cpython-36.pyc-250c54388f687557 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_future.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-future.cpython-36.opt-1.pyc-11c3611fab12f6c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_future.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-future.cpython-36.opt-2.pyc-610bafa742484a7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-getcwdu.cpython-36.opt-1.pyc-0b77f0686f75960c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-getcwdu.cpython-36.opt-2.pyc-8a8e267ced8fd4ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_has_key.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-has-key.cpython-36.opt-1.pyc-eae9ba54e653d565 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_has_key.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-has-key.cpython-36.opt-2.pyc-d7e6ebc7a293e4e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_idioms.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-idioms.cpython-36.opt-1.pyc-8e3f6ab83db8d644 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_idioms.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-idioms.cpython-36.opt-2.pyc-724c77a457ed5df3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_import.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-import.cpython-36.opt-1.pyc-fd8aa8fd1faf5045 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_import.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-import.cpython-36.opt-2.pyc-460f636619278cee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_imports.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-imports.cpython-36.opt-1.pyc-cc4551171a9f6c9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_imports.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-imports.cpython-36.opt-2.pyc-d510d04d3f5c30e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_imports2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-imports2.cpython-36.opt-1.pyc-e26b135c704776a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_imports2.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-imports2.cpython-36.opt-2.pyc-e38eb6115b87c242 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_imports2.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-imports2.cpython-36.pyc-055bf9fe3892d30d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_input.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-input.cpython-36.opt-1.pyc-aa4d992dd04f72de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_input.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-input.cpython-36.opt-2.pyc-784ebe0795bc49b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_intern.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-intern.cpython-36.opt-1.pyc-ae4b5bf1e9d26fa9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_intern.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-intern.cpython-36.opt-2.pyc-1f6ed588dc47ea2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_isinstance.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-isinstance.cpython-36.opt-1.pyc-99d05780dbcaebde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_isinstance.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-isinstance.cpython-36.opt-2.pyc-488d38b5ecb4b22a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_isinstance.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-isinstance.cpython-36.pyc-db06949423d73bd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-itertools-imports.cpython-36.opt-1.pyc-d1a7379a913b23d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-itertools-imports.cpython-36.opt-2.pyc-8026178ecbd541d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-itertools-imports.cpython-36.pyc-e1451478ee570b61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_itertools.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-itertools.cpython-36.opt-1.pyc-15f658efd780abef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_itertools.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-itertools.cpython-36.opt-2.pyc-b913d57537661ba7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_itertools.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-itertools.cpython-36.pyc-d32ffaeb2c1c9f05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_long.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-long.cpython-36.opt-1.pyc-daa82719c8f16c8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_long.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-long.cpython-36.opt-2.pyc-75a9d3ef453b21d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_map.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-map.cpython-36.opt-1.pyc-e6ff881fee8649e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_map.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-map.cpython-36.opt-2.pyc-70cb053f991a4b1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_metaclass.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-metaclass.cpython-36.opt-1.pyc-d8041d5e14920450 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_metaclass.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-metaclass.cpython-36.opt-2.pyc-270552cb5e8cff2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_metaclass.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-metaclass.cpython-36.pyc-a769344489ff593a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-methodattrs.cpython-36.opt-1.pyc-dd44fb74b235691e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-methodattrs.cpython-36.opt-2.pyc-784e588cdafe4da8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-methodattrs.cpython-36.pyc-232e1f51820f57d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_ne.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-ne.cpython-36.opt-1.pyc-a08815f9662b1e89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_ne.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-ne.cpython-36.opt-2.pyc-1427307aa73974fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_next.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-next.cpython-36.opt-1.pyc-936a4ac55e92b68b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_next.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-next.cpython-36.opt-2.pyc-a74245157f5c6aad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_nonzero.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-nonzero.cpython-36.opt-1.pyc-dd5e0f332f803231 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_nonzero.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-nonzero.cpython-36.opt-2.pyc-c019cc38769d286c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_numliterals.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-numliterals.cpython-36.opt-1.pyc-26c42ee620325ddf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_numliterals.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-numliterals.cpython-36.opt-2.pyc-8d83a389494aee01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_numliterals.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-numliterals.cpython-36.pyc-793d167b365ea532 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_operator.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-operator.cpython-36.opt-1.pyc-b1b73f797074773c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_operator.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-operator.cpython-36.opt-2.pyc-5c03bc22120e8372 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_operator.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-operator.cpython-36.pyc-4f30263a85ba357f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_paren.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-paren.cpython-36.opt-1.pyc-9cc76678398ea299 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_paren.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-paren.cpython-36.opt-2.pyc-38d36ccda313918a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_print.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-print.cpython-36.opt-1.pyc-bea9c67f89b81afe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_print.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-print.cpython-36.opt-2.pyc-b3ee159e67e6da87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_raise.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-raise.cpython-36.opt-1.pyc-8c663cc0b1c4552a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_raise.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-raise.cpython-36.opt-2.pyc-affad52cb3a4b7c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_raw_input.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-raw-input.cpython-36.opt-1.pyc-81106415fa99f65e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_raw_input.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-raw-input.cpython-36.opt-2.pyc-37878624a079d396 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_raw_input.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-raw-input.cpython-36.pyc-7a5a2f626134b0da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_reduce.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-reduce.cpython-36.opt-1.pyc-71e5aeda9b4f623d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_reduce.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-reduce.cpython-36.opt-2.pyc-ae03c5a6538300a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_reload.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-reload.cpython-36.opt-1.pyc-25183c5e9d130b11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_reload.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-reload.cpython-36.opt-2.pyc-3e739afc4d9961ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_renames.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-renames.cpython-36.opt-1.pyc-3bd99f453a719d3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_renames.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-renames.cpython-36.opt-2.pyc-4f64c23d82c6c084 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_repr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-repr.cpython-36.opt-1.pyc-097c83f792a0c8c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_repr.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-repr.cpython-36.opt-2.pyc-0b5bcf4e12fe0198 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_set_literal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-set-literal.cpython-36.opt-1.pyc-6e5df839c002b1ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_set_literal.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-set-literal.cpython-36.opt-2.pyc-0f1d57be89541813 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_set_literal.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-set-literal.cpython-36.pyc-a109e810d794b934 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_standarderror.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-standarderror.cpython-36.opt-1.pyc-434bf55e16a70671 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_standarderror.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-standarderror.cpython-36.opt-2.pyc-47d7971ca4108a36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_standarderror.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-standarderror.cpython-36.pyc-b7b63c3c63ea7a5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-sys-exc.cpython-36.opt-1.pyc-5825199974733b6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-sys-exc.cpython-36.opt-2.pyc-02a85d7838319cfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_throw.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-throw.cpython-36.opt-1.pyc-b55b7ec1228c19fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_throw.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-throw.cpython-36.opt-2.pyc-034664401ee77fb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-tuple-params.cpython-36.opt-1.pyc-814e91f31c5e0784 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-tuple-params.cpython-36.opt-2.pyc-fb1f9015e7db0ae6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-tuple-params.cpython-36.pyc-854f9c58d46b11ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_types.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-types.cpython-36.opt-1.pyc-fcef363244b37f04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_types.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-types.cpython-36.opt-2.pyc-246d9e20920843b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_unicode.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-unicode.cpython-36.opt-1.pyc-0f9cd36964aa1cb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_unicode.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-unicode.cpython-36.opt-2.pyc-b49466550b2bcfe2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_urllib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-urllib.cpython-36.opt-1.pyc-b976ba9129e82770 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_urllib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-urllib.cpython-36.opt-2.pyc-6634bb2a18e8db68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-ws-comma.cpython-36.opt-1.pyc-e5716948ef167e6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-ws-comma.cpython-36.opt-2.pyc-248090898631148c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-ws-comma.cpython-36.pyc-2b7bb12c0e6431d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_xrange.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-xrange.cpython-36.opt-1.pyc-3c61f1e57ec5a73e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_xrange.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-xrange.cpython-36.opt-2.pyc-be6be097bfad0e72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-xreadlines.cpython-36.opt-1.pyc-eefd2dedb214913f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-xreadlines.cpython-36.opt-2.pyc-75dc36536cfcd3dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-36.pyc +SPDXID: SPDXRef-File-...fix-xreadlines.cpython-36.pyc-02f00a22db19bdc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_zip.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fix-zip.cpython-36.opt-1.pyc-47ec6fdace7912d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__pycache__/fix_zip.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fix-zip.cpython-36.opt-2.pyc-7079f3fa245ef075 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/fixer_base.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fixer-base.cpython-36.opt-1.pyc-0d817f757d1d81b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/fixer_base.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fixer-base.cpython-36.opt-2.pyc-d905d60bd5bd6341 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/fixer_util.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fixer-util.cpython-36.opt-1.pyc-cac05b352d88fe5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/fixer_util.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fixer-util.cpython-36.opt-2.pyc-cbba8c2a43b04bdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fnmatch.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fnmatch.cpython-36.opt-1.pyc-2e26014996cb64bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fnmatch.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fnmatch.cpython-36.opt-2.pyc-6fb7818177531c25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/fontconfig-2.0.typelib +SPDXID: SPDXRef-File-...fontconfig-2.0.typelib-c51918866a709546 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/fontconfig/conf.avail/10-autohint.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-10-autohint.conf-a72910a255b21d6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/10-unhinted.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-10-unhinted.conf-0a143f82975232e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/40-nonlatin.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-40-nonlatin.conf-9524683e2a7ad0e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/45-generic.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-45-generic.conf-a485f97d1f252997 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/45-latin.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-45-latin.conf-b2d5db3c81a50037 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/50-user.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-50-user.conf-c329acc0ab92a5e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/51-local.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-51-local.conf-240d77f0a243f3ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/60-generic.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-60-generic.conf-6f367f5fd3e6c7d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/60-latin.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-60-latin.conf-0939a55bd44e2390 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/65-khmer.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-65-khmer.conf-9980d7aeecacd4cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/65-nonlatin.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-65-nonlatin.conf-2c761a67a43515ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fontconfig/conf.avail/69-unifont.conf +SPDXID: SPDXRef-File-...fontconfig-conf.avail-69-unifont.conf-21e995f228891de2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fonts/dejavu/DejaVuSans-ExtraLight.ttf +SPDXID: SPDXRef-File-...fonts-dejavu-DejaVuSans-ExtraLight.ttf-84f0d3033eaad11a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fonts/dejavu/DejaVuSans-Oblique.ttf +SPDXID: SPDXRef-File-...fonts-dejavu-DejaVuSans-Oblique.ttf-4eb60c0b65f373fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/fonts/dejavu/DejaVuSansCondensed.ttf +SPDXID: SPDXRef-File-...fonts-dejavu-DejaVuSansCondensed.ttf-e329709be25c634c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/forkserver.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...forkserver.cpython-36.opt-1.pyc-49a4afe8d9f13e25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/forkserver.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...forkserver.cpython-36.opt-2.pyc-6db6adc68f160eed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/format.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...format.cpython-36.opt-1.pyc-e63d7d796316219c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/formatter.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...formatter.cpython-36.opt-1.pyc-b1ec48a6df1d65d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/formatter.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...formatter.cpython-36.opt-2.pyc-e16dee9d6b2c2bc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fractions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...fractions.cpython-36.opt-1.pyc-f0de359990f81f95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/fractions.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...fractions.cpython-36.opt-2.pyc-55838c4ebb96fa92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/framework.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...framework.cpython-36.opt-1.pyc-db0d7c2c356be6f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__pycache__/framework.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...framework.cpython-36.opt-2.pyc-36c9aa05cf6f47cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ftplib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ftplib.cpython-36.opt-1.pyc-d4f00e754a0dad4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ftplib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ftplib.cpython-36.opt-2.pyc-41256db0f4059f2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/functools.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...functools.cpython-36.opt-1.pyc-4d6c9ecae8012895 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/functools.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...functools.cpython-36.opt-2.pyc-e0062e77d286e320 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/futures.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...futures.cpython-36.opt-1.pyc-640befac8cb52f91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/futures.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...futures.cpython-36.opt-2.pyc-55e1149e56234021 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/ga_impls/__pycache__/ga_gtk3.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ga-gtk3.cpython-36.opt-1.pyc-e82fabb28224bf5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/ga_impls/__init__.py +SPDXID: SPDXRef-File-...ga-impls---init--.py-d99aa0b6869f5020 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/ga_impls/ga_gtk3.py +SPDXID: SPDXRef-File-...ga-impls-ga-gtk3.py-b1e9a4ff37d62c6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/ga_loader.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ga-loader.cpython-36.opt-1.pyc-474e11414355265f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gb18030.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...gb18030.cpython-36.opt-1.pyc-ca1de2281a497411 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gb18030.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...gb18030.cpython-36.opt-2.pyc-f574b7bb1e0afff3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gb2312.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...gb2312.cpython-36.opt-1.pyc-590f591886bfd596 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/gb2312.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...gb2312.cpython-36.opt-2.pyc-789f4563c510abf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/gb2312freq.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...gb2312freq.cpython-36.opt-1.pyc-7fc82cd97f76ce1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/gb2312prober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...gb2312prober.cpython-36.opt-1.pyc-1da7123b5113e842 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/gb2312prober.cpython-36.pyc +SPDXID: SPDXRef-File-...gb2312prober.cpython-36.pyc-b4dfd5cf66ce8ba3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/__init__.py +SPDXID: SPDXRef-File-...gcc-8-python-libstdcxx---init--.py-d91bc8c4128a4e70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/__init__.py +SPDXID: SPDXRef-File-...gcc-8-python-libstdcxx-v6---init--.py-d4d8beacc9474116 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/printers.py +SPDXID: SPDXRef-File-...gcc-8-python-libstdcxx-v6-printers.py-2af752d878122828 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/xmethods.py +SPDXID: SPDXRef-File-...gcc-8-python-libstdcxx-v6-xmethods.py-ee831f25156e5dd9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/validation/__pycache__/general.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...general.cpython-36.opt-1.pyc-7c736fdcfe459f90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/generate_completion_cache.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...generate-completion-cache.cpython-36.opt-1.pyc-fbc3c8b227ea1f87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/generate_completion_cache.cpython-36.pyc +SPDXID: SPDXRef-File-...generate-completion-cache.cpython-36.pyc-359cf7d5666d362d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/generate_completion_cache.py +SPDXID: SPDXRef-File-...generate-completion-cache.py-e9640ecc53ef1715 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/generator.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...generator.cpython-36.opt-1.pyc-236acb15330faec3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/generator.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...generator.cpython-36.opt-2.pyc-8450e987ec4572fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/genericpath.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...genericpath.cpython-36.opt-1.pyc-a85250ae830bbbe2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/genericpath.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...genericpath.cpython-36.opt-2.pyc-4c8b0befc49d35fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/__pycache__/generictreemodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...generictreemodel.cpython-36.opt-1.pyc-d769729b234ec73f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/__pycache__/generictreemodel.cpython-36.pyc +SPDXID: SPDXRef-File-...generictreemodel.cpython-36.pyc-c1289a1e19b8803e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/getopt.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...getopt.cpython-36.opt-1.pyc-553e7fe64b3c2875 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/getopt.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...getopt.cpython-36.opt-2.pyc-715ebf17bd0993fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/getpass.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...getpass.cpython-36.opt-1.pyc-97ce2ea5f70ff831 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/getpass.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...getpass.cpython-36.opt-2.pyc-a7af394a2c56edf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/gettext.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...gettext.cpython-36.opt-1.pyc-f4decf54efa66884 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/gettext.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...gettext.cpython-36.opt-2.pyc-02366ab56a4de059 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...gi---pycache-----init--.cpython-36.pyc-0d3930eb6551b17d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_error.cpython-36.pyc +SPDXID: SPDXRef-File-...gi---pycache----error.cpython-36.pyc-48d55611062ec6f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/_option.cpython-36.pyc +SPDXID: SPDXRef-File-...gi---pycache----option.cpython-36.pyc-3a4c893b11baa36a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/importer.cpython-36.pyc +SPDXID: SPDXRef-File-...gi---pycache---importer.cpython-36.pyc-c7798c3b620348e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/module.cpython-36.pyc +SPDXID: SPDXRef-File-...gi---pycache---module.cpython-36.pyc-c014e57b0363e3a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/types.cpython-36.pyc +SPDXID: SPDXRef-File-...gi---pycache---types.cpython-36.pyc-cb2d375bd766f51a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...gi--gi.cpython-36m-x86-64-linux-gnu.so-a3d3e88ec83b7e96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/GIMarshallingTests.py +SPDXID: SPDXRef-File-...gi-overrides-GIMarshallingTests.py-9325bca5bca008f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/repository/__init__.py +SPDXID: SPDXRef-File-...gi-repository---init--.py-08f744cdc82957ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/gi_service.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...gi-service.cpython-36.opt-1.pyc-647df989897a0362 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/DBus-1.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-DBus-1.0.typelib-1bebea4cb0e61bc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/DBusGLib-1.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-DBusGLib-1.0.typelib-b6daa90daf0418fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/GLib-2.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-GLib-2.0.typelib-cdfadcac60999734 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/GModule-2.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-GModule-2.0.typelib-28fe89c5d76b0fda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/GObject-2.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-GObject-2.0.typelib-a5cb41ac71e52c68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/Json-1.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-Json-1.0.typelib-71dce22bc827cd88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/Modulemd-2.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-Modulemd-2.0.typelib-7dd8603e9e37430a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/cairo-1.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-cairo-1.0.typelib-61836658d0745006 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/freetype2-2.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-freetype2-2.0.typelib-7e415f1a5f78e39f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/libxml2-2.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-libxml2-2.0.typelib-59280c0eb5a8dd2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/win32-1.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-win32-1.0.typelib-ff08a8ba9ffd2b79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/xfixes-4.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-xfixes-4.0.typelib-01f88093deb9ae8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/xlib-2.0.typelib +SPDXID: SPDXRef-File-...girepository-1.0-xlib-2.0.typelib-a5157e3576a31a85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/xrandr-1.3.typelib +SPDXID: SPDXRef-File-...girepository-1.0-xrandr-1.3.typelib-5d4dc0866ec20a77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/gnutls.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...gnutls.cpython-36.opt-1.pyc-78102a3f6b86e179 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/core.cpython-36.pyc +SPDXID: SPDXRef-File-...gpg---pycache---core.cpython-36.pyc-693c7390167184b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/errors.cpython-36.pyc +SPDXID: SPDXRef-File-...gpg---pycache---errors.cpython-36.pyc-c641bcea594d9ab5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/gpgme.cpython-36.pyc +SPDXID: SPDXRef-File-...gpg---pycache---gpgme.cpython-36.pyc-009f9314e3f5f94d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/results.cpython-36.pyc +SPDXID: SPDXRef-File-...gpg---pycache---results.cpython-36.pyc-b55a38f9745c5abe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/util.cpython-36.pyc +SPDXID: SPDXRef-File-...gpg---pycache---util.cpython-36.pyc-006323b9c10a6675 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...gpg---pycache---version.cpython-36.pyc-56d246cd4bfac3bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg-1.13.1-py3.6.egg-info +SPDXID: SPDXRef-File-...gpg-1.13.1-py3.6.egg-info-da7717d7cf43e5e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__init__.py +SPDXID: SPDXRef-File-...gpg-constants---init--.py-b52d57b21175bf58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/data/__init__.py +SPDXID: SPDXRef-File-...gpg-constants-data---init--.py-547aa19715941390 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/data/encoding.py +SPDXID: SPDXRef-File-...gpg-constants-data-encoding.py-ebea7cbad3e1afa0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/import_type.py +SPDXID: SPDXRef-File-...gpg-constants-import-type.py-bd4b678ac3d8143b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/keylist/__init__.py +SPDXID: SPDXRef-File-...gpg-constants-keylist---init--.py-312085910975516b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/keylist/mode.py +SPDXID: SPDXRef-File-...gpg-constants-keylist-mode.py-bc34c229b5ce82ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/protocol.py +SPDXID: SPDXRef-File-...gpg-constants-protocol.py-686f5683f74a1b2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/__init__.py +SPDXID: SPDXRef-File-...gpg-constants-sig---init--.py-23a43b1aa1887dda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/mode.py +SPDXID: SPDXRef-File-...gpg-constants-sig-mode.py-0e59fbe30d7db75d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/notation.py +SPDXID: SPDXRef-File-...gpg-constants-sig-notation.py-64017266c2d25e54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/tofu/__init__.py +SPDXID: SPDXRef-File-...gpg-constants-tofu---init--.py-1f0aef71d771e992 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/tofu/policy.py +SPDXID: SPDXRef-File-...gpg-constants-tofu-policy.py-56cc8f0d32e9627c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/validity.py +SPDXID: SPDXRef-File-...gpg-constants-validity.py-c1468068592f70f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/grammar.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...grammar.cpython-36.opt-1.pyc-c6d6ed54283ab1c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/grammar.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...grammar.cpython-36.opt-2.pyc-36c912c29a0bfba8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/groups_manager.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...groups-manager.cpython-36.opt-1.pyc-7ea036bfd84efa7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/groups_manager.cpython-36.pyc +SPDXID: SPDXRef-File-...groups-manager.cpython-36.pyc-c1b750efef5027b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/grp.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...grp.cpython-36m-x86-64-linux-gnu.so-944b2785ef93a5c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/handler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...handler.cpython-36.opt-1.pyc-fd06fc4498071636 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/handler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...handler.cpython-36.opt-2.pyc-9038bda4cf0eb295 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/handlers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...handlers.cpython-36.opt-1.pyc-5ceb6f85713c3cdc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/handlers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...handlers.cpython-36.opt-1.pyc-7aa19a5b576a30d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__pycache__/handlers.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...handlers.cpython-36.opt-2.pyc-1e3219c8a9c5b755 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/handlers.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...handlers.cpython-36.opt-2.pyc-7312bde4b63535cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/has_key.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...has-key.cpython-36.opt-1.pyc-44c49154906f49b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/has_key.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...has-key.cpython-36.opt-2.pyc-f150b62adb875b34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/hashlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...hashlib.cpython-36.opt-1.pyc-b00bed8ce6a4e1b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/hashlib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...hashlib.cpython-36.opt-2.pyc-d5adb3989dfdc0b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/test/_hawkey_test.so +SPDXID: SPDXRef-File-...hawkey-test--hawkey-test.so-b4c826f17e36b169 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/header.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...header.cpython-36.opt-1.pyc-cbed6bf3ad1dd832 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/header.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...header.cpython-36.opt-2.pyc-f98187d60f4455fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/headerregistry.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...headerregistry.cpython-36.opt-1.pyc-c9863dba914a2809 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/headerregistry.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...headerregistry.cpython-36.opt-2.pyc-8b93d97242c0349d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/headerregistry.cpython-36.pyc +SPDXID: SPDXRef-File-...headerregistry.cpython-36.pyc-693f37d7fa3b40cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/headers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...headers.cpython-36.opt-1.pyc-fb1554322402e787 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/headers.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...headers.cpython-36.opt-2.pyc-5852b6715988ae6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/healinglib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...healinglib.cpython-36.opt-1.pyc-1eb5ce2247c2938c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/hebrewprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...hebrewprober.cpython-36.opt-1.pyc-420875c2d006ba8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/hebrewprober.cpython-36.pyc +SPDXID: SPDXRef-File-...hebrewprober.cpython-36.pyc-d886077e0ebd8313 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hex_codec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...hex-codec.cpython-36.opt-1.pyc-d068f0b2be182abc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hex_codec.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...hex-codec.cpython-36.opt-2.pyc-0bbfb0da9b7d879e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/history.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...history.cpython-36.opt-1.pyc-182a1ad6922b4835 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/history.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...history.cpython-36.opt-1.pyc-a2c4059fc467287c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/__pycache__/history.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...history.cpython-36.opt-1.pyc-cab1c4e919461336 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/host_collector.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...host-collector.cpython-36.opt-1.pyc-33df45ea1c9b4a19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/host_collector.cpython-36.pyc +SPDXID: SPDXRef-File-...host-collector.cpython-36.pyc-f09fb466278c87a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hp_roman8.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...hp-roman8.cpython-36.opt-1.pyc-9559926516aeb149 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/hp_roman8.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...hp-roman8.cpython-36.opt-2.pyc-24ac4a63f86b0b1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/parser.cpython-36.pyc +SPDXID: SPDXRef-File-...html---pycache---parser.cpython-36.pyc-88ca05da8605d6f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/client.cpython-36.pyc +SPDXID: SPDXRef-File-...http---pycache---client.cpython-36.pyc-9dd3fae7ad68a537 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/server.cpython-36.pyc +SPDXID: SPDXRef-File-...http---pycache---server.cpython-36.pyc-e0bd6dffd19ec80f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/huffman.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...huffman.cpython-36.opt-1.pyc-0c609c4a1ece42b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/hwprobe.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...hwprobe.cpython-36.opt-1.pyc-d17d03ba2dddda50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/i18n_argparse.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...i18n-argparse.cpython-36.opt-1.pyc-6b5f13a79c2ded79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/i18n_argparse.cpython-36.pyc +SPDXID: SPDXRef-File-...i18n-argparse.cpython-36.pyc-970387e4b2c51d52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/dev/spi/ibm/io.openliberty.cdi.spi_1.1.81.jar +SPDXID: SPDXRef-File-...ibm-io.openliberty.cdi.spi-1.1.81.jar-75d26c6b1106c10e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/io.openliberty.jaxrs30_1.0.81.jar +SPDXID: SPDXRef-File-...ibm-io.openliberty.jaxrs30-1.0.81.jar-95dfcb4f6e420701 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/io.openliberty.security_1.3.81.jar +SPDXID: SPDXRef-File-...ibm-io.openliberty.security-1.3.81.jar-51798608285d4446 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /usr/lib64/python3.6/site-packages/systemd/id128.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...id128.cpython-36m-x86-64-linux-gnu.so-95d91c07ef7ee17b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/identity.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...identity.cpython-36.opt-1.pyc-89e064967e6a8718 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/identitycertlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...identitycertlib.cpython-36.opt-1.pyc-c817683025451839 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/identitycertlib.cpython-36.pyc +SPDXID: SPDXRef-File-...identitycertlib.cpython-36.pyc-45cd675ebcbc73cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/identitycertlib.py +SPDXID: SPDXRef-File-...identitycertlib.py-a3c629d2f8052cce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/codec.cpython-36.pyc +SPDXID: SPDXRef-File-...idna---pycache---codec.cpython-36.pyc-10c3c749983c2a10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/compat.cpython-36.pyc +SPDXID: SPDXRef-File-...idna---pycache---compat.cpython-36.pyc-219c1c062014ad3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/core.cpython-36.pyc +SPDXID: SPDXRef-File-...idna---pycache---core.cpython-36.pyc-543ae3229ed5a2af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna-2.5-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...idna-2.5-py3.6.egg-info-PKG-INFO-d2899fc2d56f719e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna-2.5-py3.6.egg-info/SOURCES.txt +SPDXID: SPDXRef-File-...idna-2.5-py3.6.egg-info-SOURCES.txt-168350ae20ce2e41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna-2.5-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...idna-2.5-py3.6.egg-info-top-level.txt-7e49ae50ecbd5ca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/idnadata.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...idnadata.cpython-36.opt-1.pyc-825a50ad7aa5a2e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imaplib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...imaplib.cpython-36.opt-1.pyc-5e739be3a00c132b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imaplib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...imaplib.cpython-36.opt-2.pyc-8099f92a8f4daa9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imghdr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...imghdr.cpython-36.opt-1.pyc-f090a9f1a0b7a130 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/imghdr.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...imghdr.cpython-36.opt-2.pyc-cd33268b2aed5aee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/import_type.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...import-type.cpython-36.opt-1.pyc-87f9ddc2aeaaf9b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/importer.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...importer.cpython-36.opt-1.pyc-96a74b3602a48def +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/_bootstrap_external.py +SPDXID: SPDXRef-File-...importlib--bootstrap-external.py-c985b3f458d53630 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...iniparse-0.4-py3.6.egg-info-PKG-INFO-5f333130ccbc4458 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/injection.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...injection.cpython-36.opt-1.pyc-d5708b9e90783368 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/injectioninit.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...injectioninit.cpython-36.opt-1.pyc-730f29490945a7d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/injectioninit.cpython-36.pyc +SPDXID: SPDXRef-File-...injectioninit.cpython-36.pyc-7de475d05f41e576 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/insights.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...insights.cpython-36.opt-1.pyc-baa82d6233f540a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/inspect.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...inspect.cpython-36.opt-1.pyc-0872c70a19dbde03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/inspect.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...inspect.cpython-36.opt-2.pyc-ebf968cb7038859a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_data.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-data.cpython-36.opt-1.pyc-205369de55cbc682 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_data.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...install-data.cpython-36.opt-2.pyc-c8a08e414c5d0fd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_data.cpython-36.pyc +SPDXID: SPDXRef-File-...install-data.cpython-36.pyc-1e42b50c41f79bd3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-egg-info.cpython-36.opt-1.pyc-2bc4db77a86747f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_egg_info.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-egg-info.cpython-36.opt-1.pyc-2c2af296ebcbf779 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_egg_info.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...install-egg-info.cpython-36.opt-2.pyc-78121a41214ad6ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_egg_info.cpython-36.pyc +SPDXID: SPDXRef-File-...install-egg-info.cpython-36.pyc-387ff8fda6da001f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-36.pyc +SPDXID: SPDXRef-File-...install-egg-info.cpython-36.pyc-b6c29d924518d783 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_headers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-headers.cpython-36.opt-1.pyc-17718e3c0172c34d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_headers.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...install-headers.cpython-36.opt-2.pyc-1b18f5c81ef35a4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_headers.cpython-36.pyc +SPDXID: SPDXRef-File-...install-headers.cpython-36.pyc-f228277e2274ff95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install_lib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-lib.cpython-36.opt-1.pyc-739d1345127b484f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_lib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-lib.cpython-36.opt-1.pyc-da557f455cc0722f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_lib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...install-lib.cpython-36.opt-2.pyc-333594b67cd2c2e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_scripts.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-scripts.cpython-36.opt-1.pyc-094de77cd137b80f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install_scripts.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install-scripts.cpython-36.opt-1.pyc-cf8dfc4296e79475 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_scripts.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...install-scripts.cpython-36.opt-2.pyc-01f437d0d96a41f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install_scripts.cpython-36.pyc +SPDXID: SPDXRef-File-...install-scripts.cpython-36.pyc-b72278cc990d5b7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install_scripts.cpython-36.pyc +SPDXID: SPDXRef-File-...install-scripts.cpython-36.pyc-ef2c535a1ab2d760 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/install.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install.cpython-36.opt-1.pyc-7925ccabf4ef50ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/install.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install.cpython-36.opt-1.pyc-a1b8a5603f14c857 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...install.cpython-36.opt-1.pyc-d18187d6fed93d33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/install.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...install.cpython-36.opt-2.pyc-ff1a26b6229adad0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/installedproductslib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...installedproductslib.cpython-36.opt-1.pyc-7b8b5cbe8813bbe7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/installedproductslib.cpython-36.pyc +SPDXID: SPDXRef-File-...installedproductslib.cpython-36.pyc-8b15e0c415873ba8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/installedproductslib.py +SPDXID: SPDXRef-File-...installedproductslib.py-40f78aa6fcafc114 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/intranges.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...intranges.cpython-36.opt-1.pyc-792ed7f718ca01ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/lib/io.openliberty.accesslists.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.accesslists.internal-1.0.81.jar-a4f57d2a8539555b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.interfaces_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.cdi.4.0.interfaces-1.0.81.jar-6393cff2f998def7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.services.fragment_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.cdi.4.0.internal.services.fragment-1.0.81.jar-fc1b6e08bf9fbcff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.web_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.cdi.4.0.internal.web-1.0.81.jar-ae594f61545ed4c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.weld_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.cdi.4.0.internal.weld-1.0.81.jar-6d90932b3c67cb36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/third-party/io.openliberty.cdi.4.0.thirdparty_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.cdi.4.0.thirdparty-1.0.81.jar-36082487486261fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.checkpoint_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.checkpoint-1.0.81.jar-b4528c44eac1a589 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/io.openliberty.dynacache.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.dynacache.internal-1.0.81.jar-5cfab70da35221e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.el.internal.cdi.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.el.internal.cdi.jakarta-1.0.81.jar-2f6361eb33adf0ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.io.micrometer_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.io.micrometer-1.0.81.jar-253f658bf8d5ef42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.io.netty.ssl_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.io.netty.ssl-1.0.81.jar-79ec4d9a028f1cf0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.io.smallrye.common.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.io.smallrye.common.jakarta-1.0.81.jar-0e1ca4473ef22abc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.io.smallrye.config.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.io.smallrye.config.jakarta-1.0.81.jar-03f846e4d48fbd7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.io.smallrye.metrics_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.io.smallrye.metrics-1.0.81.jar-e7028b1a666d998f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.activation.2.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.activation.2.1-1.0.81.jar-7e4ddb9dfbc08d12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.annotation.2.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.annotation.2.1-1.0.81.jar-29c86f9b5c7b30e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.cdi.4.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.cdi.4.0-1.0.81.jar-7b3d8afece7a00e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.connectors.2.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.connectors.2.1-1.0.81.jar-023b7d626ae3d945 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.enterpriseBeans.4.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.enterpriseBeans.4.0-1.0.81.jar-4bac58477431d801 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.expressionLanguage.5.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.expressionLanguage.5.0-1.0.81.jar-eeab502ee7013eff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.interceptor.2.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.interceptor.2.1-1.0.81.jar-0f6a5248af8c6df3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.jsonb.3.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.jsonb.3.0-1.0.81.jar-6416f8e14fec8e90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.jsonp.2.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.jsonp.2.1-1.0.81.jar-6294411e0a5e34c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.mail.2.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.mail.2.1-1.0.81.jar-a9b4dd70c1247053 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.pages.3.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.pages.3.1-1.0.81.jar-4f21a9e821b46007 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.persistence.3.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.persistence.3.1-1.0.81.jar-eba7779ce765f3e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.jakarta.persistence.api.3.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.persistence.api.3.1-1.0.81.jar-ae41084a4f7616f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.restfulWS.3.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.restfulWS.3.1-1.0.81.jar-bfd622da86425be6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.servlet.6.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.servlet.6.0-1.0.81.jar-4349a4209c8b3484 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.soap.3.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.soap.3.0-1.0.81.jar-27d53554e2df5be1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.transaction.2.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.transaction.2.0-1.0.81.jar-dfdf7b3124803b64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.validation.3.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.validation.3.0-1.0.81.jar-00bcf0d9e36382cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.xmlBinding.4.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.xmlBinding.4.0-1.0.81.jar-81a52a01a936b593 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.xmlWS.4.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakarta.xmlWS.4.0-1.0.81.jar-6f22fe1b15536d02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.jakartaee.platform.v10_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakartaee.platform.v10-1.0.81.jar-ecee344bd7844d6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.jakartaee.platform.v9_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jakartaee.platform.v9-1.0.81.jar-79455cec71ad77d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.java11.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.java11.internal-1.0.81.jar-8f0bbd106d0e608a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.jcache.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.jcache.internal-1.0.81.jar-50ed96c0669043a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.microprofile.config.internal.common_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.microprofile.config.internal.common-1.0.81.jar-5756037321c9d6c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.microprofile.config.internal.serverxml_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.microprofile.config.internal.serverxml-1.0.81.jar-eaf87bd3958e5f2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.microprofile.health.3.1.internal.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.microprofile.health.3.1.internal.jakarta-1.0.81.jar-74e186d2a2c2a8a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.internal-1.0.81.jar-6434924c5b8d99fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.monitor.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.monitor.internal-1.0.81.jar-791dac2205f89200 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.private.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.private.internal-1.0.81.jar-9a459551e0eccfb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.public.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.public.internal-1.0.81.jar-27702236041b1855 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.netty.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.netty.internal-1.0.81.jar-137a843309eb2c1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.netty.internal.tls.impl_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.netty.internal.tls.impl-1.0.81.jar-70833247a6606926 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.apache.commons.codec_1.15.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.apache.commons.codec-1.15.81.jar-15b2c566b3b30f40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.apache.commons.logging_1.2.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.apache.commons.logging-1.2.81.jar-f755f06cf7d38ddb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.eclipse.angus.activation_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.eclipse.angus.activation-1.0.81.jar-714344ab9ba7af12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.config.3.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.eclipse.microprofile.config.3.0-1.0.81.jar-3efbf5011ae43394 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.health.4.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.eclipse.microprofile.health.4.0-1.0.81.jar-f658f4c9a08996b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.metrics.5.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.eclipse.microprofile.metrics.5.0-1.0.81.jar-448ff8e3a12316ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.eclipse.parsson.1.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.eclipse.parsson.1.1-1.0.81.jar-87f382f57dea1937 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.eclipse.persistence-3.1_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.eclipse.persistence-3.1-1.0.81.jar-9b046c9928656fc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.eclipse.yasson.3.0_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.eclipse.yasson.3.0-1.0.81.jar-88a673dfbb6a6a14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.glassfish.hk2.osgi-resource-locator_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.glassfish.hk2.osgi-resource-locator-1.0.81.jar-45bf0b29511bcec5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.jboss.classfilewriter.1.3_1.3.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.jboss.classfilewriter.1.3-1.3.81.jar-1fe80f34d7cd41b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.jboss.logging35_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.jboss.logging35-1.0.81.jar-05e0c7b2da85f719 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.cdi.ee10_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.jboss.resteasy.cdi.ee10-1.0.81.jar-2665f82bf39cedf8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.common.ee10_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.jboss.resteasy.common.ee10-1.0.81.jar-44e873a0b3006e0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.server.ee10_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.jboss.resteasy.server.ee10-1.0.81.jar-2f0c2fc0af19d358 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.jboss.weld5_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.jboss.weld5-1.0.81.jar-c6bf066b5f46b83f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.org.jboss.weld5.se_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.org.jboss.weld5.se-1.0.81.jar-4d74162fb0fed5ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.restfulWS.internal.ssl_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.restfulWS.internal.ssl-1.0.81.jar-867bd14a668f0553 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.restfulWS.mpMetrics.filter_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.restfulWS.mpMetrics.filter-1.0.81.jar-7d43960d8a09e9aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.restfulWS30.jsonb20provider_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.restfulWS30.jsonb20provider-1.0.81.jar-fdd076c2cb0f0254 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.security.authentication.internal.builtin_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.security.authentication.internal.builtin-1.0.81.jar-896a0fec6f26324d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.security.authentication.internal.filter_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.security.authentication.internal.filter-1.0.81.jar-b7d60e1bce2dd3f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.security.authentication.internal.tai_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.security.authentication.internal.tai-1.0.81.jar-7ba9b2b4a183a86f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.security.jaas.internal.common_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.security.jaas.internal.common-1.0.81.jar-d850e02edc56f08f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.security.sso.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.security.sso.internal-1.0.81.jar-39e55c2b44fa7ce2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.session.6.0.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.session.6.0.internal-1.0.81.jar-7191ca1cf58ce7c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/dev/api/ibm/io.openliberty.transaction_1.1.81.jar +SPDXID: SPDXRef-File-...io.openliberty.transaction-1.1.81.jar-25c287b5ad4b9d21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.transaction.internal.cdi20.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.transaction.internal.cdi20.jakarta-1.0.81.jar-5ec26bbd6f6c6c6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.webcontainer.security.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.webcontainer.security.internal-1.0.81.jar-914a2371aef03ce8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.webcontainer.servlet.6.0.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.webcontainer.servlet.6.0.internal-1.0.81.jar-38b72e8f08282bdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.webcontainer.servlet.6.0.internal.factories_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.webcontainer.servlet.6.0.internal.factories-1.0.81.jar-d31c8fbdaee11ac4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.wsoc.ssl.internal_1.0.81.jar +SPDXID: SPDXRef-File-...io.openliberty.wsoc.ssl.internal-1.0.81.jar-ca2172ab26960f71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /usr/lib64/python3.6/__pycache__/ipaddress.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ipaddress.cpython-36.opt-1.pyc-3ebf907640a18e30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ipaddress.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ipaddress.cpython-36.opt-2.pyc-cc4fdda90adcd7f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_1.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso2022-jp-1.cpython-36.opt-1.pyc-8712dc33e1d7a9f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_1.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso2022-jp-1.cpython-36.opt-2.pyc-c8e8cd4ce2eedf8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_1.cpython-36.pyc +SPDXID: SPDXRef-File-...iso2022-jp-1.cpython-36.pyc-022fc5bfef70c6d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso2022-jp-2.cpython-36.opt-1.pyc-0650e82714bea79f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_2.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso2022-jp-2.cpython-36.opt-2.pyc-a83eacfebbc7ec7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_2.cpython-36.pyc +SPDXID: SPDXRef-File-...iso2022-jp-2.cpython-36.pyc-5e6dc96fea56cf73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_2004.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso2022-jp-2004.cpython-36.opt-1.pyc-e653386b95413945 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_2004.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso2022-jp-2004.cpython-36.opt-2.pyc-bc85c377eb5a060f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_2004.cpython-36.pyc +SPDXID: SPDXRef-File-...iso2022-jp-2004.cpython-36.pyc-fee69e3ed460b8f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_3.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso2022-jp-3.cpython-36.opt-1.pyc-88a523995ac5b7f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_3.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso2022-jp-3.cpython-36.opt-2.pyc-44b2d11f82168b08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_3.cpython-36.pyc +SPDXID: SPDXRef-File-...iso2022-jp-3.cpython-36.pyc-1c0b28b95e888fc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_ext.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso2022-jp-ext.cpython-36.opt-1.pyc-7793d28a301c0ab7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_ext.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso2022-jp-ext.cpython-36.opt-2.pyc-8ffd2fc86316d626 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp_ext.cpython-36.pyc +SPDXID: SPDXRef-File-...iso2022-jp-ext.cpython-36.pyc-64279906aa1f2e64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso2022-jp.cpython-36.opt-1.pyc-d03e3be5916ea374 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_jp.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso2022-jp.cpython-36.opt-2.pyc-bf2b9ea11ce77057 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_kr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso2022-kr.cpython-36.opt-1.pyc-08adc15808c19be4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso2022_kr.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso2022-kr.cpython-36.opt-2.pyc-eaa785dd346813ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_1.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-1.cpython-36.opt-1.pyc-bb95832565df780c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_1.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-1.cpython-36.opt-2.pyc-e269f637b78d7b5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_10.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-10.cpython-36.opt-1.pyc-c896c339c6e07991 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_10.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-10.cpython-36.opt-2.pyc-50787c22a903ef91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_11.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-11.cpython-36.opt-1.pyc-08f5a36a0d217c6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_11.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-11.cpython-36.opt-2.pyc-4cc667563ce9b325 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_13.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-13.cpython-36.opt-1.pyc-be27d42eb6257ac4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_13.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-13.cpython-36.opt-2.pyc-bf3f5e993ec8528a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_14.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-14.cpython-36.opt-1.pyc-7870984773062fbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_14.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-14.cpython-36.opt-2.pyc-be0e6d8b6c6519d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_15.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-15.cpython-36.opt-1.pyc-5a120e239492e44b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_15.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-15.cpython-36.opt-2.pyc-115c0986360e8bce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_16.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-16.cpython-36.opt-1.pyc-4f61de9049087ec8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_16.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-16.cpython-36.opt-2.pyc-3d68a7bd4f4060c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-2.cpython-36.opt-1.pyc-d8a1556bab8d030b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_2.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-2.cpython-36.opt-2.pyc-5f3f6d97e96229a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_3.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-3.cpython-36.opt-1.pyc-54abff259268b2ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_3.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-3.cpython-36.opt-2.pyc-e3499ae70a1694df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_4.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-4.cpython-36.opt-1.pyc-f0694945dfeabec6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_4.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-4.cpython-36.opt-2.pyc-5867565c0ce36dee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_5.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-5.cpython-36.opt-1.pyc-241c5a75a6959398 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_5.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-5.cpython-36.opt-2.pyc-fba1a1c0e815f6be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_6.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-6.cpython-36.opt-1.pyc-220c9530a65b9acf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_6.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-6.cpython-36.opt-2.pyc-e5b1de26441127cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_7.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-7.cpython-36.opt-1.pyc-6d6abac45a0a3eb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_7.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-7.cpython-36.opt-2.pyc-975d91145c1c3d7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_8.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-8.cpython-36.opt-1.pyc-b9c5b6a64406d01b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_8.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-8.cpython-36.opt-2.pyc-ff0c1acdefe2a286 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_9.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iso8859-9.cpython-36.opt-1.pyc-271e2fbd4e1ab04f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/iso8859_9.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iso8859-9.cpython-36.opt-2.pyc-93dbf0028ff53b1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/isodate.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...isodate.cpython-36.opt-1.pyc-181a9865f7149874 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/iterators.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...iterators.cpython-36.opt-1.pyc-210a829e8f45c7e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/iterators.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...iterators.cpython-36.opt-2.pyc-ec86418cb51ad278 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/jisfreq.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...jisfreq.cpython-36.opt-1.pyc-8e84eafda54c21f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/__pycache__/journal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...journal.cpython-36.opt-1.pyc-f6e46166dbd5d354 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/jpcntx.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...jpcntx.cpython-36.opt-1.pyc-4ef1c74e47f92fc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/tool.cpython-36.pyc +SPDXID: SPDXRef-File-...json---pycache---tool.cpython-36.pyc-6e4c98889592fdb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/jsonwrapper.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...jsonwrapper.cpython-36.opt-1.pyc-7c9c220e46510bf8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/keysign.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...keysign.cpython-36.opt-1.pyc-95862abcc30e4edb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__pycache__/keysyms.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...keysyms.cpython-36.opt-1.pyc-54a79976851c5c46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/keyword.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...keyword.cpython-36.opt-1.pyc-033bcb9f57952e1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/keyword.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...keyword.cpython-36.opt-2.pyc-eb08e6dc482f1922 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_r.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...koi8-r.cpython-36.opt-1.pyc-b444ed542d8daba1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_r.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...koi8-r.cpython-36.opt-2.pyc-216d572f417898be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_t.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...koi8-t.cpython-36.opt-1.pyc-455aea9cc76e4e92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_t.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...koi8-t.cpython-36.opt-2.pyc-2a05f33c492c2ffe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_u.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...koi8-u.cpython-36.opt-1.pyc-a5277283e37d29e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/koi8_u.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...koi8-u.cpython-36.opt-2.pyc-1588a8c256075234 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__pycache__/kpatch.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...kpatch.cpython-36.opt-1.pyc-b65c79af25c74b9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/kz1048.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...kz1048.cpython-36.opt-1.pyc-a0cece8897011b11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/kz1048.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...kz1048.cpython-36.opt-2.pyc-2f6f052d96a1e12f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langbulgarianmodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...langbulgarianmodel.cpython-36.opt-1.pyc-3c3cad204266878d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langbulgarianmodel.cpython-36.pyc +SPDXID: SPDXRef-File-...langbulgarianmodel.cpython-36.pyc-ad14a1628de3ac96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langcyrillicmodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...langcyrillicmodel.cpython-36.opt-1.pyc-9e0e73402d269897 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langcyrillicmodel.cpython-36.pyc +SPDXID: SPDXRef-File-...langcyrillicmodel.cpython-36.pyc-ad1332265a008256 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langgreekmodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...langgreekmodel.cpython-36.opt-1.pyc-f2142b82c6cb5b8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langgreekmodel.cpython-36.pyc +SPDXID: SPDXRef-File-...langgreekmodel.cpython-36.pyc-7880d6776d906dd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langhebrewmodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...langhebrewmodel.cpython-36.opt-1.pyc-c5a1314a69aa0a47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langhebrewmodel.cpython-36.pyc +SPDXID: SPDXRef-File-...langhebrewmodel.cpython-36.pyc-0cff3d20f6be00be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langhungarianmodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...langhungarianmodel.cpython-36.opt-1.pyc-d9bf6f3addf3fd45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langhungarianmodel.cpython-36.pyc +SPDXID: SPDXRef-File-...langhungarianmodel.cpython-36.pyc-c1fee2ad84e5e557 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langthaimodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...langthaimodel.cpython-36.opt-1.pyc-6cab9377f73f5cb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langthaimodel.cpython-36.pyc +SPDXID: SPDXRef-File-...langthaimodel.cpython-36.pyc-489587cfc2f465af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langturkishmodel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...langturkishmodel.cpython-36.opt-1.pyc-5ae01334eadf7aea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/langturkishmodel.cpython-36.pyc +SPDXID: SPDXRef-File-...langturkishmodel.cpython-36.pyc-92411396dbff78ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/latin_1.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...latin-1.cpython-36.opt-1.pyc-adf6751d8cb44e15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/latin_1.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...latin-1.cpython-36.opt-2.pyc-8a28db6339490152 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/latin1prober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...latin1prober.cpython-36.opt-1.pyc-ec145475e303db5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/latin1prober.cpython-36.pyc +SPDXID: SPDXRef-File-...latin1prober.cpython-36.pyc-0fdc25fe63fb0e8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/launch.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...launch.cpython-36.opt-1.pyc-1a15f6c843b5450b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/lib/com.ibm.tx.jta.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.tx.jta.jakarta-1.0.81.jar-929222e05121a521 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.tx.util.jakarta_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.tx.util.jakarta-1.0.81.jar-d637e9500906e9cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.app.manager_1.1.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.app.manager-1.1.81.jar-a2c6abb966c1213b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact.url_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.artifact.url-1.0.81.jar-94e72c018599974c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact.zip_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.artifact.zip-1.0.81.jar-518251f252a041c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.channel.ssl_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.channel.ssl-1.0.81.jar-4583b55abcf194ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.channelfw_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.channelfw-1.0.81.jar-df43e1afa895c76e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.classloading_1.1.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.classloading-1.1.81.jar-34345d73098fcafd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.diagnostics_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.diagnostics-1.0.81.jar-1e382bfe288892f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.install.map_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.install.map-1.0.81.jar-b72a391100b4c61d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.javaee.dd_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.javaee.dd-1.0.81.jar-d640a9ed9d369834 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.kernel.boot_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.kernel.boot-1.0.81.jar-d95b1236acd055fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.logging.hpel_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.logging.hpel-1.0.81.jar-9e8a57b02663df52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.logging.osgi_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.logging.osgi-1.0.81.jar-c1e19a239d94571b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.recoverylog_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.recoverylog-1.0.81.jar-95e343ce57f526a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.repository_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.repository-1.0.81.jar-1c94cf1cca4f01a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.threading_1.1.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.threading-1.1.81.jar-a288d22610fe3a1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.wsbytebuffer_1.0.81.jar +SPDXID: SPDXRef-File-...lib-com.ibm.ws.wsbytebuffer-1.0.81.jar-802c4b1e8193136b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.endpoint_1.0.81.jar +SPDXID: SPDXRef-File-...lib-io.openliberty.endpoint-1.0.81.jar-6e522216f6cd5d1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/io.openliberty.io.netty_1.0.81.jar +SPDXID: SPDXRef-File-...lib-io.openliberty.io.netty-1.0.81.jar-24b54418e6323c7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /usr/lib/locale/C.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...lib-locale-C.utf8-LC-IDENTIFICATION-5678c4e0e1c656c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_ADDRESS +SPDXID: SPDXRef-File-...lib-locale-en-GB.iso885915-LC-ADDRESS-14efa0e1c5b6129d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_COLLATE +SPDXID: SPDXRef-File-...lib-locale-en-GB.iso885915-LC-COLLATE-e6f2d6c7d056f94c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_CTYPE +SPDXID: SPDXRef-File-...lib-locale-en-GB.iso885915-LC-CTYPE-7806d7a2767297ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_MONETARY +SPDXID: SPDXRef-File-...lib-locale-en-GB.iso885915-LC-MONETARY-c175f40bbda0dbb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_NUMERIC +SPDXID: SPDXRef-File-...lib-locale-en-GB.iso885915-LC-NUMERIC-67c98038685bd622 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_PAPER +SPDXID: SPDXRef-File-...lib-locale-en-GB.iso885915-LC-PAPER-67b332bc717e90bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.iso885915/LC_ADDRESS +SPDXID: SPDXRef-File-...lib-locale-en-US.iso885915-LC-ADDRESS-f92a68a5283720dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.iso885915/LC_MONETARY +SPDXID: SPDXRef-File-...lib-locale-en-US.iso885915-LC-MONETARY-2738e8abd5b733fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.iso885915/LC_PAPER +SPDXID: SPDXRef-File-...lib-locale-en-US.iso885915-LC-PAPER-b969e04f4329b6e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.utf8/LC_MEASUREMENT +SPDXID: SPDXRef-File-...lib-locale-en-US.utf8-LC-MEASUREMENT-f682071750cb8b01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/python3.6/site-packages/socks.py +SPDXID: SPDXRef-File-...lib-python3.6-site-packages-socks.py-e81bd9ddf844cff3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/aarch64-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-aarch64-linux-macros-eafbcea0513b9a66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/alpha-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-alpha-linux-macros-5b8e9d00407d68bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/alphaev5-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-alphaev5-linux-macros-2bf033ef8c0a051a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/alphaev6-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-alphaev6-linux-macros-91407ed8b2d0ab78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/amd64-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-amd64-linux-macros-0129a3e49a5456b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv3l-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv3l-linux-macros-02ad4f528e7ceb9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv4b-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv4b-linux-macros-253cff719d761295 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv4l-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv4l-linux-macros-a3bd73753d2e64cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv5tel-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv5tel-linux-macros-a4948e20da6cfc9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv5tl-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv5tl-linux-macros-6a0d81d2dc38ea02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv6hl-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv6hl-linux-macros-e9380b67e53303c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv6l-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv6l-linux-macros-d4166ccec323f733 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv7hl-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv7hl-linux-macros-1d1788e5837771b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv7hnl-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv7hnl-linux-macros-627e130e55590397 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv7l-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-armv7l-linux-macros-ecb0fc5793d57175 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/athlon-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-athlon-linux-macros-0bbee84af18c39cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/geode-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-geode-linux-macros-48cb6c98dc681e92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ia32e-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-ia32e-linux-macros-397c7883c94f92c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mips64-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-mips64-linux-macros-5d6752546e995f4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mips64el-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-mips64el-linux-macros-aed4971ffd1d2108 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mips64r6-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-mips64r6-linux-macros-10fa89e40d44a7e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mipsel-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-mipsel-linux-macros-1904d86f9c52f5e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mipsr6-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-mipsr6-linux-macros-a111546ffd95efb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mipsr6el-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-mipsr6el-linux-macros-608ded62e456db06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/noarch-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-noarch-linux-macros-e4e29d9e3f33b21b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/pentium3-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-pentium3-linux-macros-3b46e102f6b12368 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/pentium4-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-pentium4-linux-macros-178b7cd37f9ace75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc32dy4-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-ppc32dy4-linux-macros-ae49a2341dbd5d4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc64-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-ppc64-linux-macros-f503067933d7714d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc64le-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-ppc64le-linux-macros-be33ec7be582993e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc64p7-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-ppc64p7-linux-macros-df523be0ee7b6d7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc8260-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-ppc8260-linux-macros-bce90afe326888fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc8560-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-ppc8560-linux-macros-b3ccc04eb15a526c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/riscv64-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-riscv64-linux-macros-0499084d58da627c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/s390x-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-s390x-linux-macros-f1d20d31bcc4e077 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sparc-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-sparc-linux-macros-79f0541e0c8e337c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sparc64-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-sparc64-linux-macros-91ee56aae9a98efa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sparc64v-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-sparc64v-linux-macros-614bf24761e205e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sparcv8-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-sparcv8-linux-macros-db4206162a3e9d29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sparcv9-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-sparcv9-linux-macros-e19bececcea397d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sparcv9v-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-sparcv9v-linux-macros-a9d4efab8f0fa48a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/x86_64-linux/macros +SPDXID: SPDXRef-File-...lib-rpm-platform-x86-64-linux-macros-0bf0f1284193bf76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.be.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.be.catalog-c2da0344bfb4fb6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.bg.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.bg.catalog-ce37c76d8fa4c0c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.catalog-13b371a7879c3e19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.de.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.de.catalog-20c81276c974f91a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.fr.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.fr.catalog-fa3bb02cefba96b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.it.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.it.catalog-c99c9e2c6be33cd9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.pl.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.pl.catalog-807761e2427c14be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.ru.catalog +SPDXID: SPDXRef-File-...lib-systemd-catalog-systemd.ru.catalog-dfda49c9b71bcd0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/libsystemd-shared-239.so +SPDXID: SPDXRef-File-...lib-systemd-libsystemd-shared-239.so-f702fc8f6c35df64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/bluetooth.target +SPDXID: SPDXRef-File-...lib-systemd-system-bluetooth.target-125b99d02d3745b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/debug-shell.service +SPDXID: SPDXRef-File-...lib-systemd-system-debug-shell.service-e27bfa36ee3248ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dev-hugepages.mount +SPDXID: SPDXRef-File-...lib-systemd-system-dev-hugepages.mount-7bc027ef1b7cf975 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dev-mqueue.mount +SPDXID: SPDXRef-File-...lib-systemd-system-dev-mqueue.mount-1a09a51638e9f9d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dnf-makecache.timer +SPDXID: SPDXRef-File-...lib-systemd-system-dnf-makecache.timer-1aa1f909a4e0339f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/emergency.service +SPDXID: SPDXRef-File-...lib-systemd-system-emergency.service-eca72e93e4c5c9b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/emergency.target +SPDXID: SPDXRef-File-...lib-systemd-system-emergency.target-3390623168a2def0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/getty-pre.target +SPDXID: SPDXRef-File-...lib-systemd-system-getty-pre.target-6e6c618118da02c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/graphical.target +SPDXID: SPDXRef-File-...lib-systemd-system-graphical.target-8a3bf1a57ba4e680 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/halt-local.service +SPDXID: SPDXRef-File-...lib-systemd-system-halt-local.service-4515cf557dea0130 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd-fs.target +SPDXID: SPDXRef-File-...lib-systemd-system-initrd-fs.target-83e3d799fcd7db17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/ldconfig.service +SPDXID: SPDXRef-File-...lib-systemd-system-ldconfig.service-9a321e96d1e79282 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/local-fs-pre.target +SPDXID: SPDXRef-File-...lib-systemd-system-local-fs-pre.target-1f5aaa8505a1f637 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/multi-user.target +SPDXID: SPDXRef-File-...lib-systemd-system-multi-user.target-6c7ad3cb5669ac6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/network-pre.target +SPDXID: SPDXRef-File-...lib-systemd-system-network-pre.target-a33179f52a344e86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/nftables.service +SPDXID: SPDXRef-File-...lib-systemd-system-nftables.service-9c1eb611e12c69e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/systemd/system/nss-lookup.target +SPDXID: SPDXRef-File-...lib-systemd-system-nss-lookup.target-1cd5a5982b246494 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/rc-local.service +SPDXID: SPDXRef-File-...lib-systemd-system-rc-local.service-7d3ea7e050e43a7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/remote-fs.target +SPDXID: SPDXRef-File-...lib-systemd-system-remote-fs.target-3e5820ad4e7eef34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/rhsm-facts.service +SPDXID: SPDXRef-File-...lib-systemd-system-rhsm-facts.service-5984ef7844ded846 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/rhsmcertd.service +SPDXID: SPDXRef-File-...lib-systemd-system-rhsmcertd.service-2c94802b4b674504 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/smartcard.target +SPDXID: SPDXRef-File-...lib-systemd-system-smartcard.target-bf699119dc241dae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/time-sync.target +SPDXID: SPDXRef-File-...lib-systemd-system-time-sync.target-45b9e33951a5efb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-user-runtime-dir +SPDXID: SPDXRef-File-...lib-systemd-systemd-user-runtime-dir-3f1784f78cb5deff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/gpg-agent-ssh.socket +SPDXID: SPDXRef-File-...lib-systemd-user-gpg-agent-ssh.socket-be1a05434219e72b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/systemd-exit.service +SPDXID: SPDXRef-File-...lib-systemd-user-systemd-exit.service-eb03fcd257955956 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/systemd-nologin.conf +SPDXID: SPDXRef-File-...lib-tmpfiles.d-systemd-nologin.conf-5f8327952cae6ec1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/udev/rules.d/95-dm-notify.rules +SPDXID: SPDXRef-File-...lib-udev-rules.d-95-dm-notify.rules-6d3596fbec794f95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/Grammar3.6.8.final.0.pickle +SPDXID: SPDXRef-File-...lib2to3-Grammar3.6.8.final.0.pickle-937141d3a06103c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...lib2to3-ex.cpython-36.opt-1.pyc-fdc50ad497d18a47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_basestring.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-basestring.py-e3486ce7ce638c13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_execfile.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-execfile.py-f16b9af2adb54096 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_exitfunc.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-exitfunc.py-fc3d851fa862b15a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_funcattrs.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-funcattrs.py-c7748c274a6a18c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_imports2.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-imports2.py-846bf08330cb507e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_isinstance.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-isinstance.py-dc752f1c3446e62e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_itertools_imports.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-itertools-imports.py-74bc15cfd2f19793 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_itertools.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-itertools.py-2875921312f9fd6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_metaclass.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-metaclass.py-1b815a4715478c08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_methodattrs.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-methodattrs.py-eea47490228bee9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_numliterals.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-numliterals.py-c0a17d4a7f964f3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_operator.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-operator.py-d365dedd146e5baa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_raw_input.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-raw-input.py-752b2e3c1d706069 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_set_literal.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-set-literal.py-c25b3433cd001ed3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_standarderror.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-standarderror.py-74ef0aafd7968e5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_tuple_params.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-tuple-params.py-5237d720d028207b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_ws_comma.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-ws-comma.py-ba3c76fe18472106 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_xreadlines.py +SPDXID: SPDXRef-File-...lib2to3-fixes-fix-xreadlines.py-f707fc6e270d2552 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/fipscheck/libgmp.so.10.3.2.hmac +SPDXID: SPDXRef-File-...lib64-fipscheck-libgmp.so.10.3.2.hmac-54cb231af4e39120 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/GL-1.0.typelib +SPDXID: SPDXRef-File-...lib64-girepository-1.0-GL-1.0.typelib-646a52d9b53ea1ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/Gio-2.0.typelib +SPDXID: SPDXRef-File-...lib64-girepository-1.0-Gio-2.0.typelib-79adba79459aac24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/girepository-1.0/xft-2.0.typelib +SPDXID: SPDXRef-File-...lib64-girepository-1.0-xft-2.0.typelib-75d02293523d704d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/krb5/plugins/preauth/spake.so +SPDXID: SPDXRef-File-...lib64-krb5-plugins-preauth-spake.so-c86702582253b66b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libibverbs/libbnxt_re-rdmav34.so +SPDXID: SPDXRef-File-...lib64-libibverbs-libbnxt-re-rdmav34.so-8df65b6ed85671bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libibverbs/libcxgb4-rdmav34.so +SPDXID: SPDXRef-File-...lib64-libibverbs-libcxgb4-rdmav34.so-bd7577063c47c01e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libibverbs/libirdma-rdmav34.so +SPDXID: SPDXRef-File-...lib64-libibverbs-libirdma-rdmav34.so-df179fdf2a36d24b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libibverbs/libqedr-rdmav34.so +SPDXID: SPDXRef-File-...lib64-libibverbs-libqedr-rdmav34.so-a4f8e583a8e20f2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libnetfilter_conntrack.so.3.6.0 +SPDXID: SPDXRef-File-...lib64-libnetfilter-conntrack.so.3.6.0-840bc9deb414f17f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/_collections_abc.py +SPDXID: SPDXRef-File-...lib64-python3.6--collections-abc.py-8d89a92d18c37b23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_threading_local.py +SPDXID: SPDXRef-File-...lib64-python3.6--threading-local.py-85247986c4b6c27e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio---init--.py-f268af3266a2eb89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/base_events.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-base-events.py-2948d902a6774165 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/base_tasks.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-base-tasks.py-42d7033485ace213 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/constants.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-constants.py-c1c647105da18d44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/coroutines.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-coroutines.py-97d6455892cb39f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/protocols.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-protocols.py-8f85e047b5f229b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/sslproto.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-sslproto.py-8cc70e5f782b61a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/subprocess.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-subprocess.py-b848addd2afeccf8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/test_utils.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-test-utils.py-b88663bcc48ff553 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/transports.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-transports.py-c4d4d13d891652d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/unix_events.py +SPDXID: SPDXRef-File-...lib64-python3.6-asyncio-unix-events.py-16d944b1927862ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-concurrent---init--.py-c05e34a402626ba4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils---init--.py-6881a3065ea4ed8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/ccompiler.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-ccompiler.py-5991ba3b3dc4fbe8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/config.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-config.py-bdc5dddeb0550935 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/dep_util.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-dep-util.py-ebf45bcd27bbc7c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/dir_util.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-dir-util.py-7f66d64109fbb470 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/errors.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-errors.py-524d78849e0ca834 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/extension.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-extension.py-718f58480a9afafb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/file_util.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-file-util.py-6c063ace76f2c225 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/filelist.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-filelist.py-1204071e2909e9ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/sysconfig.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-sysconfig.py-05c7b4d8a4816490 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/text_file.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-text-file.py-89cdb5c8b04d1a02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/version.py +SPDXID: SPDXRef-File-...lib64-python3.6-distutils-version.py-de2bf8c9a121d9c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/_parseaddr.py +SPDXID: SPDXRef-File-...lib64-python3.6-email--parseaddr.py-152120eb5f1135f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/_policybase.py +SPDXID: SPDXRef-File-...lib64-python3.6-email--policybase.py-00c67feebe00e0b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/base64mime.py +SPDXID: SPDXRef-File-...lib64-python3.6-email-base64mime.py-c78220666ae3f64a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/feedparser.py +SPDXID: SPDXRef-File-...lib64-python3.6-email-feedparser.py-216fb172b8d3c889 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-email-mime---init--.py-79ac401330bd3d36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/audio.py +SPDXID: SPDXRef-File-...lib64-python3.6-email-mime-audio.py-19e538a88dde6d97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/image.py +SPDXID: SPDXRef-File-...lib64-python3.6-email-mime-image.py-396fd10afdabc26e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/message.py +SPDXID: SPDXRef-File-...lib64-python3.6-email-mime-message.py-b2c4a34bcedaab30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/quoprimime.py +SPDXID: SPDXRef-File-...lib64-python3.6-email-quoprimime.py-90cb298be75629ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings---init--.py-b7fac0e9dbd3773e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/aliases.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-aliases.py-8439325b412b6630 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/big5hkscs.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-big5hkscs.py-3e52fade3080c429 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/bz2_codec.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-bz2-codec.py-5c48f163602ce34b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/charmap.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-charmap.py-9c10f2a1cb1f1e10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1006.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1006.py-9609a4c0633c345e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1026.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1026.py-f51abdec02552398 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1125.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1125.py-05ff9cd3aa921406 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1140.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1140.py-81e4e0ff2eadcc1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1250.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1250.py-d790a22e560080c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1251.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1251.py-467ba5c0890e8eec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1252.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1252.py-6b4c0147a000fa32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1253.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1253.py-0b578c8fbd67e002 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1254.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1254.py-e0a1030b409f60f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1255.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1255.py-cb97b7fdce31bcc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1256.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1256.py-3936babf07896997 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1257.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1257.py-5f81205338982a8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp1258.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp1258.py-c4292a4626885580 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp65001.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-cp65001.py-6e1c0899c57f27a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/euc_jp.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-euc-jp.py-b1f5ad5ea840e27d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/euc_kr.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-euc-kr.py-9e08af2794eb9930 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/gb18030.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-gb18030.py-f284ccbbfd239341 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/gb2312.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-gb2312.py-6ec6e259c6c19627 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/hex_codec.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-hex-codec.py-c39b0d2966dcb59c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/hp_roman8.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-hp-roman8.py-7b063b9efa47dfff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_1.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-1.py-cab65f19e8062ae2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_2.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-2.py-5ead108d5b38d1d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_3.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-3.py-751946916436201e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_4.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-4.py-e75b91de8c57ec47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_5.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-5.py-fc45820722ef2905 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_6.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-6.py-ec52004fa7cb7e15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_7.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-7.py-90d2e567fa1611b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_8.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-8.py-017aa5368459759f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_9.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-iso8859-9.py-64df6d1d050ed140 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/koi8_r.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-koi8-r.py-1452210bb3a0434a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/koi8_t.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-koi8-t.py-57fbbe952a0453e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/koi8_u.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-koi8-u.py-ba5e906227fb3717 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/kz1048.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-kz1048.py-2767e28aa81ebe02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/latin_1.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-latin-1.py-11cbb77f70b08fac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_farsi.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-mac-farsi.py-10ca6257e43e61f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_greek.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-mac-greek.py-3d4cea5d70d7086d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_roman.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-mac-roman.py-135ba8bacf135817 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/palmos.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-palmos.py-47ec110ebc1974a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/ptcp154.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-ptcp154.py-d93ac59f22784472 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/punycode.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-punycode.py-78d2472008447794 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/rot_13.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-rot-13.py-65309baedaa731d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/shift_jis.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-shift-jis.py-a151304e48309e21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/tis_620.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-tis-620.py-109da836f019dcf7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/undefined.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-undefined.py-a73a99b9b26b9f9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_16_be.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-utf-16-be.py-7ffa9ec3045a0549 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_16_le.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-utf-16-le.py-36a385164ac944e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_16.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-utf-16.py-5e67cc1e89eb5e85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_32_be.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-utf-32-be.py-8253b0839c077bdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_32_le.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-utf-32-le.py-d7a065f4ad87559e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_32.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-utf-32.py-f3627cff1ffb0925 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_8_sig.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-utf-8-sig.py-103371f92f4b2bba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/uu_codec.py +SPDXID: SPDXRef-File-...lib64-python3.6-encodings-uu-codec.py-09ce51faae9a48f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-ensurepip---init--.py-1a6dea977939785e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/__main__.py +SPDXID: SPDXRef-File-...lib64-python3.6-ensurepip---main--.py-3b5402c85cd24247 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-importlib---init--.py-5f85b6d1e7096ca9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/machinery.py +SPDXID: SPDXRef-File-...lib64-python3.6-importlib-machinery.py-7a6f2662f9a2974e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3---init--.py-91ed042cf42e4072 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__main__.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3---main--.py-0384ebb0f50aeaf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/Grammar.txt +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-Grammar.txt-2d0afa80b0371619 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/btm_matcher.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-btm-matcher.py-c1935e7d0a30d3ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/btm_utils.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-btm-utils.py-32e71a602a21bb04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixer_base.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-fixer-base.py-44db598c0bed6318 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixer_util.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-fixer-util.py-f2c584c5dbbbf04e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/conv.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-conv.py-eecc12042fafd7c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/parse.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-parse.py-9c19541e06e381e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/pgen.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-pgen.py-82ae5253404a7011 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/token.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-token.py-ad793a9963de4bbe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/refactor.py +SPDXID: SPDXRef-File-...lib64-python3.6-lib2to3-refactor.py-a9e297e001dca034 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-logging---init--.py-020bb135ff64a7fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/handlers.py +SPDXID: SPDXRef-File-...lib64-python3.6-logging-handlers.py-cd42d73c28de6431 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-pydoc-data---init--.py-967e23f66b3ae8b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/_pydoc.css +SPDXID: SPDXRef-File-...lib64-python3.6-pydoc-data--pydoc.css-4827f5ae6ff5c61e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/topics.py +SPDXID: SPDXRef-File-...lib64-python3.6-pydoc-data-topics.py-577a580b0c9f76bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-sqlite3---init--.py-aab24a03ae4a9b94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-unittest---init--.py-0a8f0e346ebf5816 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__main__.py +SPDXID: SPDXRef-File-...lib64-python3.6-unittest---main--.py-d02159ff059cb1ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/signals.py +SPDXID: SPDXRef-File-...lib64-python3.6-unittest-signals.py-172e767df57e8fa5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/robotparser.py +SPDXID: SPDXRef-File-...lib64-python3.6-urllib-robotparser.py-049e3c44751bd0c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-wsgiref---init--.py-56a1f232a8907635 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/handlers.py +SPDXID: SPDXRef-File-...lib64-python3.6-wsgiref-handlers.py-472a74d54d599393 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/validate.py +SPDXID: SPDXRef-File-...lib64-python3.6-wsgiref-validate.py-464f33c548b4179e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-dom---init--.py-bb44c09411fe818c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/NodeFilter.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-dom-NodeFilter.py-d84fb8132efe5f46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/minicompat.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-dom-minicompat.py-b156907c787e40d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/xmlbuilder.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-dom-xmlbuilder.py-0a085298f62a8f87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-etree---init--.py-0b6019f8ef78e0da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/expat.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-parsers-expat.py-f562f6ab6871314b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__init__.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-sax---init--.py-dc7c6b9aaaa938c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/_exceptions.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-sax--exceptions.py-845c9892dbf71eaa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/expatreader.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-sax-expatreader.py-daa92c4f133f6986 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/saxutils.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-sax-saxutils.py-7d0a5b933bc2eca9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/xmlreader.py +SPDXID: SPDXRef-File-...lib64-python3.6-xml-sax-xmlreader.py-5b4710cc5cc5da6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_filter/upperLOWER +SPDXID: SPDXRef-File-...lib64-security-pam-filter-upperLOWER-22110c00c13cb26f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/xtables/libip6t_MASQUERADE.so +SPDXID: SPDXRef-File-...lib64-xtables-libip6t-MASQUERADE.so-c97297d37a177cee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_ipv6header.so +SPDXID: SPDXRef-File-...lib64-xtables-libip6t-ipv6header.so-b0869edc65e94731 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/conf.cpython-36.pyc +SPDXID: SPDXRef-File-...libdnf---pycache---conf.cpython-36.pyc-681db22609cf0ca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/repo.cpython-36.pyc +SPDXID: SPDXRef-File-...libdnf---pycache---repo.cpython-36.pyc-6327ef76428f055e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/getconf/POSIX_V6_LP64_OFF64 +SPDXID: SPDXRef-File-...libexec-getconf-POSIX-V6-LP64-OFF64-ef810a1d0ae96183 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/getconf/POSIX_V7_LP64_OFF64 +SPDXID: SPDXRef-File-...libexec-getconf-POSIX-V7-LP64-OFF64-43024eaee2d9cd1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/p11-kit/trust-extract-compat +SPDXID: SPDXRef-File-...libexec-p11-kit-trust-extract-compat-b701e74a00c19bd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libibverbs/libhfi1verbs-rdmav34.so +SPDXID: SPDXRef-File-...libibverbs-libhfi1verbs-rdmav34.so-48c373697106ea68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libibverbs/libvmw_pvrdma-rdmav34.so +SPDXID: SPDXRef-File-...libibverbs-libvmw-pvrdma-rdmav34.so-c18ce21e044f1821 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/libnetfilter_conntrack/COPYING +SPDXID: SPDXRef-File-...libnetfilter-conntrack-COPYING-ee0323e77b3a853e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libreport/events.d/collect_dnf.conf +SPDXID: SPDXRef-File-...libreport-events.d-collect-dnf.conf-3f01ae444977b153 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/libreswan.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...libreswan.cpython-36.opt-1.pyc-c703492749d08b6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/libssh.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...libssh.cpython-36.opt-1.pyc-8a69c6e890e5f224 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gdb/auto-load/usr/lib64/__pycache__/libstdc++.so.6.0.25-gdb.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...libstdc--.so.6.0.25-gdb.cpython-36.opt-1.pyc-cf1403ff057a7d17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gdb/auto-load/usr/lib64/__pycache__/libstdc++.so.6.0.25-gdb.cpython-36.pyc +SPDXID: SPDXRef-File-...libstdc--.so.6.0.25-gdb.cpython-36.pyc-e92909bf6b6947b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/__pycache__/libxml2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...libxml2.cpython-36.opt-1.pyc-397126dcab780ca9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/coreutils-single/COPYING +SPDXID: SPDXRef-File-...licenses-coreutils-single-COPYING-fed2b2c6919dd923 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/cryptsetup-libs/COPYING.LGPL +SPDXID: SPDXRef-File-...licenses-cryptsetup-libs-COPYING.LGPL-c4ec8307d91dc10d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/device-mapper/COPYING.LIB +SPDXID: SPDXRef-File-...licenses-device-mapper-COPYING.LIB-37b2524242e455fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/device-mapper-libs/COPYING +SPDXID: SPDXRef-File-...licenses-device-mapper-libs-COPYING-c5e5155c78392c9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/elfutils-libelf/COPYING-GPLV2 +SPDXID: SPDXRef-File-...licenses-elfutils-libelf-COPYING-GPLV2-11613efeb64d51e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/elfutils-libs/COPYING-GPLV2 +SPDXID: SPDXRef-File-...licenses-elfutils-libs-COPYING-GPLV2-0e31a34ab999b66c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/elfutils-libs/COPYING-LGPLV3 +SPDXID: SPDXRef-File-...licenses-elfutils-libs-COPYING-LGPLV3-48a70c0542973304 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gobject-introspection/COPYING +SPDXID: SPDXRef-File-...licenses-gobject-introspection-COPYING-9c3fb9c489228424 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/keyutils-libs/LICENCE.LGPL +SPDXID: SPDXRef-File-...licenses-keyutils-libs-LICENCE.LGPL-b73164a895e10f80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libfdisk/COPYING.LGPLv2.1 +SPDXID: SPDXRef-File-...licenses-libfdisk-COPYING.LGPLv2.1-32ad7b1a810f0fd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgpg-error/COPYING.LIB +SPDXID: SPDXRef-File-...licenses-libgpg-error-COPYING.LIB-ea3c6828fc87e12f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libidn2/COPYING.LESSERv3 +SPDXID: SPDXRef-File-...licenses-libidn2-COPYING.LESSERv3-c636c58590ba3c29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libmount/COPYING.LGPLv2.1 +SPDXID: SPDXRef-File-...licenses-libmount-COPYING.LGPLv2.1-3ed42538f352af51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libsmartcols/COPYING.LGPLv2.1 +SPDXID: SPDXRef-File-...licenses-libsmartcols-COPYING.LGPLv2.1-41a962b3605e7b6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libunistring/COPYING.LIB +SPDXID: SPDXRef-File-...licenses-libunistring-COPYING.LIB-0aaaf2d5e89adfa9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python-iniparse/LICENSE-PSF +SPDXID: SPDXRef-File-...licenses-python-iniparse-LICENSE-PSF-b183dd336e12f252 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-dateutil/LICENSE +SPDXID: SPDXRef-File-...licenses-python3-dateutil-LICENSE-c9bb7a28c1416fb3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-decorator/LICENSE.txt +SPDXID: SPDXRef-File-...licenses-python3-decorator-LICENSE.txt-8e8ee2da69c10561 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-dmidecode/AUTHORS +SPDXID: SPDXRef-File-...licenses-python3-dmidecode-AUTHORS-3fd9e95e70af8985 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-dmidecode/LICENSE +SPDXID: SPDXRef-File-...licenses-python3-dmidecode-LICENSE-9059e0c8f5555f2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-gobject-base/COPYING +SPDXID: SPDXRef-File-...licenses-python3-gobject-base-COPYING-cee0c632d76d1b00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-idna/LICENSE.rst +SPDXID: SPDXRef-File-...licenses-python3-idna-LICENSE.rst-5969e315fe5bc0dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-pip-wheel/LICENSE.txt +SPDXID: SPDXRef-File-...licenses-python3-pip-wheel-LICENSE.txt-4aea6b6de1488527 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-requests/LICENSE +SPDXID: SPDXRef-File-...licenses-python3-requests-LICENSE-4e730620a8625e87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-systemd/LICENSE.txt +SPDXID: SPDXRef-File-...licenses-python3-systemd-LICENSE.txt-f348287d137e3139 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-urllib3/LICENSE.txt +SPDXID: SPDXRef-File-...licenses-python3-urllib3-LICENSE.txt-cefc386016f03f5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/shadow-utils/gpl-2.0.txt +SPDXID: SPDXRef-File-...licenses-shadow-utils-gpl-2.0.txt-c9b3d4e1970a5a6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/shadow-utils/shadow-bsd.txt +SPDXID: SPDXRef-File-...licenses-shadow-utils-shadow-bsd.txt-3d94ebd79d6bc361 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/util-linux/COPYING.BSD-3 +SPDXID: SPDXRef-File-...licenses-util-linux-COPYING.BSD-3-060a755da54e559d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/util-linux/COPYING.GPLv2 +SPDXID: SPDXRef-File-...licenses-util-linux-COPYING.GPLv2-823983abf08c357f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/util-linux/COPYING.LGPLv2.1 +SPDXID: SPDXRef-File-...licenses-util-linux-COPYING.LGPLv2.1-b12dab56f2c4b278 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/linecache.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...linecache.cpython-36.opt-1.pyc-829ddef374238a56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/linecache.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...linecache.cpython-36.opt-2.pyc-80739798bc982348 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/listing.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...listing.cpython-36.opt-1.pyc-d83f5b19b3e50dbe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/literals.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...literals.cpython-36.opt-1.pyc-be1a3adbffcc425e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/literals.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...literals.cpython-36.opt-2.pyc-e83e65040d1ecf49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/loader.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...loader.cpython-36.opt-1.pyc-bd650b9cacb57c07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/loader.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...loader.cpython-36.opt-2.pyc-d238f4c7028a9613 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_AU.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-AU.utf8-LC-IDENTIFICATION-596c75a6c89074bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-BW.utf8-LC-IDENTIFICATION-f5fb7a6c1d6c11af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/locale/en_CA/LC_MESSAGES/glib20.mo +SPDXID: SPDXRef-File-...locale-en-CA-LC-MESSAGES-glib20.mo-9a8424607ee14d24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_CA.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-CA.utf8-LC-IDENTIFICATION-a0c27f21adf787f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-DK.utf8-LC-IDENTIFICATION-c0fd73f774aa80e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/Linux-PAM.mo +SPDXID: SPDXRef-File-...locale-en-GB-LC-MESSAGES-Linux-PAM.mo-9275c31734f7d705 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/chkconfig.mo +SPDXID: SPDXRef-File-...locale-en-GB-LC-MESSAGES-chkconfig.mo-1a162369497c3492 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/glib20.mo +SPDXID: SPDXRef-File-...locale-en-GB-LC-MESSAGES-glib20.mo-87f6373b20ca3eec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/libuser.mo +SPDXID: SPDXRef-File-...locale-en-GB-LC-MESSAGES-libuser.mo-5982164573bd37d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/p11-kit.mo +SPDXID: SPDXRef-File-...locale-en-GB-LC-MESSAGES-p11-kit.mo-831b3a4da9a880c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/passwd.mo +SPDXID: SPDXRef-File-...locale-en-GB-LC-MESSAGES-passwd.mo-d87806068c537ccf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/usermode.mo +SPDXID: SPDXRef-File-...locale-en-GB-LC-MESSAGES-usermode.mo-5a408c76245d264a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_MEASUREMENT +SPDXID: SPDXRef-File-...locale-en-GB.iso885915-LC-MEASUREMENT-7e9bb1c060133a31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_TELEPHONE +SPDXID: SPDXRef-File-...locale-en-GB.iso885915-LC-TELEPHONE-dea6d787fac48ab2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-GB.utf8-LC-IDENTIFICATION-71ff28e2019ebd95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-HK.utf8-LC-IDENTIFICATION-f73007afa8b1dad8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE@euro/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-IE-euro-LC-IDENTIFICATION-f3dd3b1a0199ddf6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-IE.utf8-LC-IDENTIFICATION-4fa5f0b1794cac2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-NZ.utf8-LC-IDENTIFICATION-c625bebaf2ae40c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-PH.utf8-LC-IDENTIFICATION-b94a5e0748b4b440 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SC.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-SC.utf8-LC-IDENTIFICATION-67d7fd54d5d9eb01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-SG.utf8-LC-IDENTIFICATION-c3ba938185dfd0dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/locale/en_US/LC_MESSAGES/mit-krb5.mo +SPDXID: SPDXRef-File-...locale-en-US-LC-MESSAGES-mit-krb5.mo-3f4c6669e92f25c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_US.iso885915/LC_MEASUREMENT +SPDXID: SPDXRef-File-...locale-en-US.iso885915-LC-MEASUREMENT-68cdd5260ac9670f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.iso885915/LC_TELEPHONE +SPDXID: SPDXRef-File-...locale-en-US.iso885915-LC-TELEPHONE-ec8ac8e57e44d74b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-US.utf8-LC-IDENTIFICATION-7e276f8b7514d1c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-ZA.utf8-LC-IDENTIFICATION-7a5d1a8432766b6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW.utf8/LC_IDENTIFICATION +SPDXID: SPDXRef-File-...locale-en-ZW.utf8-LC-IDENTIFICATION-3cd91ec58fe212d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/__pycache__/locale.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...locale.cpython-36.opt-1.pyc-063b2aa5c4a48b0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/locale.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...locale.cpython-36.opt-2.pyc-81e4758c05a3b208 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/logging.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...logging.cpython-36.opt-1.pyc-af76629dd006b8be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/login.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...login.cpython-36m-x86-64-linux-gnu.so-0c10436627d1f534 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/logutil.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...logutil.cpython-36.opt-1.pyc-0c6c3e0c350392c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...low-level.cpython-36.opt-1.pyc-bb147f6e9219e293 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/lowlevel.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...lowlevel.cpython-36.opt-1.pyc-7f30c7fa04ce6795 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/m2cryptohttp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...m2cryptohttp.cpython-36.opt-1.pyc-f3ce615434e55ac5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/m2cryptohttp.cpython-36.pyc +SPDXID: SPDXRef-File-...m2cryptohttp.cpython-36.pyc-59178187bcde1cc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/m2cryptossl.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...m2cryptossl.cpython-36.opt-1.pyc-be40d8853534eb68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_arabic.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-arabic.cpython-36.opt-1.pyc-5002a3c1cd286e43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_arabic.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-arabic.cpython-36.opt-2.pyc-750a6ab12e0cb5b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_centeuro.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-centeuro.cpython-36.opt-1.pyc-4b8a6d9b03e147b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_centeuro.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-centeuro.cpython-36.opt-2.pyc-3de6e51c3078523e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_centeuro.cpython-36.pyc +SPDXID: SPDXRef-File-...mac-centeuro.cpython-36.pyc-1b9428575c2d6b31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_croatian.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-croatian.cpython-36.opt-1.pyc-2c889b5dd97cf65d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_croatian.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-croatian.cpython-36.opt-2.pyc-05833b838df14e2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_croatian.cpython-36.pyc +SPDXID: SPDXRef-File-...mac-croatian.cpython-36.pyc-78c0a933426ac8ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_cyrillic.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-cyrillic.cpython-36.opt-1.pyc-ce383a95b535bcdf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_cyrillic.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-cyrillic.cpython-36.opt-2.pyc-a1775f82a56d3f8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_cyrillic.cpython-36.pyc +SPDXID: SPDXRef-File-...mac-cyrillic.cpython-36.pyc-c8f10f47d71b5276 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_farsi.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-farsi.cpython-36.opt-1.pyc-dbb1a4256248240c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_farsi.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-farsi.cpython-36.opt-2.pyc-fa0dd431b9f23ca8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_greek.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-greek.cpython-36.opt-1.pyc-8dcc8df6ae1e976f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_greek.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-greek.cpython-36.opt-2.pyc-c980952cd786801a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_iceland.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-iceland.cpython-36.opt-1.pyc-1b72ff621bf51a46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_iceland.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-iceland.cpython-36.opt-2.pyc-0431f858e66bef15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_latin2.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-latin2.cpython-36.opt-1.pyc-22eabdf7a83ebb75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_latin2.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-latin2.cpython-36.opt-2.pyc-ebbf2349f0059770 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_roman.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-roman.cpython-36.opt-1.pyc-b29bf8883ca79e4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_roman.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-roman.cpython-36.opt-2.pyc-a259b57dd86492be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_romanian.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-romanian.cpython-36.opt-1.pyc-30f783f08099f74e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_romanian.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-romanian.cpython-36.opt-2.pyc-435d9016982677fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_romanian.cpython-36.pyc +SPDXID: SPDXRef-File-...mac-romanian.cpython-36.pyc-d42b8803dac84412 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_turkish.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mac-turkish.cpython-36.opt-1.pyc-f3d39e56d326ca56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/mac_turkish.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mac-turkish.cpython-36.opt-2.pyc-18f1c7d7498d3280 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/machinery.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...machinery.cpython-36.opt-1.pyc-358707bd6b5c60d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/__pycache__/machinery.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...machinery.cpython-36.opt-2.pyc-1e5b03f2fbbc5905 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/macpath.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...macpath.cpython-36.opt-1.pyc-388343091ed4111e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/macpath.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...macpath.cpython-36.opt-2.pyc-1bd398c9fe778328 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/macurl2path.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...macurl2path.cpython-36.opt-1.pyc-09abbf3704ba4ac3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/macurl2path.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...macurl2path.cpython-36.opt-2.pyc-b95cd2816b8a4f1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mailbox.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mailbox.cpython-36.opt-1.pyc-7d847a75020fccec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mailbox.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mailbox.cpython-36.opt-2.pyc-bfc1744b1655036f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mailcap.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mailcap.cpython-36.opt-1.pyc-1bd005cbc3999032 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mailcap.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mailcap.cpython-36.opt-2.pyc-d9942ea5af7e5b48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/makecache.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...makecache.cpython-36.opt-1.pyc-90afa71d25bbf805 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/backports/__pycache__/makefile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...makefile.cpython-36.opt-1.pyc-2be9a3acee613ee1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/man/man7/EVP_KDF_TLS1_PRF.7ssl.gz +SPDXID: SPDXRef-File-...man-man7-EVP-KDF-TLS1-PRF.7ssl.gz-1dab765d034c273e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/passphrase-encoding.7ssl.gz +SPDXID: SPDXRef-File-...man-man7-passphrase-encoding.7ssl.gz-c2410cf80a9010e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/proxy-certificates.7ssl.gz +SPDXID: SPDXRef-File-...man-man7-proxy-certificates.7ssl.gz-8333505228626385 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/ip6tables-translate.8.gz +SPDXID: SPDXRef-File-...man-man8-ip6tables-translate.8.gz-08362a4905205a33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/iptables-extensions.8.gz +SPDXID: SPDXRef-File-...man-man8-iptables-extensions.8.gz-7391d90529e349d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/ip6tables-restore-translate.8.gz +SPDXID: SPDXRef-File-...man8-ip6tables-restore-translate.8.gz-2501faa41adff774 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/iptables-restore-translate.8.gz +SPDXID: SPDXRef-File-...man8-iptables-restore-translate.8.gz-da6ca0ce93942d3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/managercli.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...managercli.cpython-36.opt-1.pyc-30372b844810701b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/managerlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...managerlib.cpython-36.opt-1.pyc-1fe09eff23045593 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/managers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...managers.cpython-36.opt-1.pyc-af7d9931da633725 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/managers.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...managers.cpython-36.opt-2.pyc-b0ed08e102b929b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/manifest_commands.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...manifest-commands.cpython-36.opt-1.pyc-a9adfbd42fdae29e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/manifest_commands.cpython-36.pyc +SPDXID: SPDXRef-File-...manifest-commands.cpython-36.pyc-3bbcbc87c82378b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...markers.cpython-36.opt-1.pyc-a7551b5bb3538926 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...markers.cpython-36.opt-1.pyc-e03e70277105ce47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/match_counter.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...match-counter.cpython-36.opt-1.pyc-128d62c776a9fa24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/match_counter.cpython-36.pyc +SPDXID: SPDXRef-File-...match-counter.cpython-36.pyc-9f3d662b652f2cbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/math.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...math.cpython-36m-x86-64-linux-gnu.so-4acd9d5ae5df23fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/mbcharsetprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mbcharsetprober.cpython-36.opt-1.pyc-b8a38f7167e22e44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/mbcharsetprober.cpython-36.pyc +SPDXID: SPDXRef-File-...mbcharsetprober.cpython-36.pyc-caf247091c838d96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/mbcsgroupprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mbcsgroupprober.cpython-36.opt-1.pyc-17d702cacac850c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/mbcsgroupprober.cpython-36.pyc +SPDXID: SPDXRef-File-...mbcsgroupprober.cpython-36.pyc-3395ba24a146b8d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/mbcssm.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mbcssm.cpython-36.opt-1.pyc-cca7615f470c9c4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/message.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...message.cpython-36.opt-1.pyc-028f53dd48d11158 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/message.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...message.cpython-36.opt-1.pyc-1062391a578b2506 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/message.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...message.cpython-36.opt-2.pyc-504ab0e0e9d4a057 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/message.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...message.cpython-36.opt-2.pyc-eb18c3e162dd1759 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/metadata.json +SPDXID: SPDXRef-File-...metadata.json-7610bf23d0a1df03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/audio.cpython-36.pyc +SPDXID: SPDXRef-File-...mime---pycache---audio.cpython-36.pyc-30d8020328bdb007 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/base.cpython-36.pyc +SPDXID: SPDXRef-File-...mime---pycache---base.cpython-36.pyc-28502f4cfef0f9a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/image.cpython-36.pyc +SPDXID: SPDXRef-File-...mime---pycache---image.cpython-36.pyc-7dbbd4193d852485 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/text.cpython-36.pyc +SPDXID: SPDXRef-File-...mime---pycache---text.cpython-36.pyc-6c93413ee4191c62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mimetypes.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...mimetypes.cpython-36.opt-1.pyc-da845b42cc8e05b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/mimetypes.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...mimetypes.cpython-36.opt-2.pyc-5b8a32d9d1523b38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/minicompat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...minicompat.cpython-36.opt-1.pyc-04ce6bf9c81edba2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/minicompat.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...minicompat.cpython-36.opt-2.pyc-f6482f964e6027ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/minidom.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...minidom.cpython-36.opt-1.pyc-cb272d9ae023048b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/minidom.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...minidom.cpython-36.opt-2.pyc-fba05059b58e40c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/miscutils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...miscutils.cpython-36.opt-1.pyc-bb1aa45888575450 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...mmap.cpython-36m-x86-64-linux-gnu.so-573fb38a259e20c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/models.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...models.cpython-36.opt-1.pyc-f0663522e62f8e15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/__pycache__/module_base.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...module-base.cpython-36.opt-1.pyc-facd32c2414f35fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/module.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...module.cpython-36.opt-1.pyc-30252ce4bf0dbd4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/module.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...module.cpython-36.opt-1.pyc-b0b4eb46a22cd4f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/module.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...module.cpython-36.opt-1.pyc-b7af0d9d338128d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/modulefinder.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...modulefinder.cpython-36.opt-1.pyc-d8bf7fb7b1bd2a84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/modulefinder.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...modulefinder.cpython-36.opt-2.pyc-5f84051e792b1d63 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/modulefinder.cpython-36.pyc +SPDXID: SPDXRef-File-...modulefinder.cpython-36.pyc-1555e3e6610c0bd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/monkey.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...monkey.cpython-36.opt-1.pyc-1856a3f1eb2eb866 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/msvc9compiler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...msvc9compiler.cpython-36.opt-1.pyc-94f97e3f915582c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/msvc9compiler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...msvc9compiler.cpython-36.opt-2.pyc-16eaf5e40861e096 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/msvc9compiler.cpython-36.pyc +SPDXID: SPDXRef-File-...msvc9compiler.cpython-36.pyc-3cfa919278611167 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/msvccompiler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...msvccompiler.cpython-36.opt-1.pyc-dc47b488a1183fdd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/msvccompiler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...msvccompiler.cpython-36.opt-2.pyc-312b0c62d957d776 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/msvccompiler.cpython-36.pyc +SPDXID: SPDXRef-File-...msvccompiler.cpython-36.pyc-6ef68aeb6d3d1556 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/multipart.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...multipart.cpython-36.opt-1.pyc-12344b6af28c5768 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/multipart.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...multipart.cpython-36.opt-2.pyc-5e5f60f7a77302ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/connection.py +SPDXID: SPDXRef-File-...multiprocessing-connection.py-338c4c5b106545ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/__init__.py +SPDXID: SPDXRef-File-...multiprocessing-dummy---init--.py-43c8173616038998 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/dummy/connection.py +SPDXID: SPDXRef-File-...multiprocessing-dummy-connection.py-933c6c84efb59409 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/forkserver.py +SPDXID: SPDXRef-File-...multiprocessing-forkserver.py-eae6cf988f874064 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/popen_fork.py +SPDXID: SPDXRef-File-...multiprocessing-popen-fork.py-4f972ec61d81033c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/popen_forkserver.py +SPDXID: SPDXRef-File-...multiprocessing-popen-forkserver.py-098226301531417f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/popen_spawn_posix.py +SPDXID: SPDXRef-File-...multiprocessing-popen-spawn-posix.py-eef0b57ee7ebb5ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/popen_spawn_win32.py +SPDXID: SPDXRef-File-...multiprocessing-popen-spawn-win32.py-b2e4b05969461b6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/resource_sharer.py +SPDXID: SPDXRef-File-...multiprocessing-resource-sharer.py-d1811b0cd2355651 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/semaphore_tracker.py +SPDXID: SPDXRef-File-...multiprocessing-semaphore-tracker.py-55d103c53491d584 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/sharedctypes.py +SPDXID: SPDXRef-File-...multiprocessing-sharedctypes.py-56990a2578be8b91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/synchronize.py +SPDXID: SPDXRef-File-...multiprocessing-synchronize.py-8b26e9120ca0fdb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/namespaces.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...namespaces.cpython-36.opt-1.pyc-6a63f687534f8d31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/needs_restarting.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...needs-restarting.cpython-36.opt-1.pyc-662c9929ad56c525 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/needs_restarting.cpython-36.pyc +SPDXID: SPDXRef-File-...needs-restarting.cpython-36.pyc-374d0b7aa5503484 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/doc/nftables/examples/load_balancing.nft +SPDXID: SPDXRef-File-...nftables-examples-load-balancing.nft-11b08391036faa3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/nftables/examples/sets_and_maps.nft +SPDXID: SPDXRef-File-...nftables-examples-sets-and-maps.nft-94b3afcc42cbd91d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/python3.6/lib-dynload/nis.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...nis.cpython-36m-x86-64-linux-gnu.so-ee542b2b1ae1abc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/nntplib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...nntplib.cpython-36.opt-1.pyc-4ad0c72539e966b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/nntplib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...nntplib.cpython-36.opt-2.pyc-42ad008df44b1cfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/nonmultipart.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...nonmultipart.cpython-36.opt-1.pyc-00dd930f20ed5df0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/nonmultipart.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...nonmultipart.cpython-36.opt-2.pyc-9e07d2eb280978fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/__pycache__/nonmultipart.cpython-36.pyc +SPDXID: SPDXRef-File-...nonmultipart.cpython-36.pyc-26f4c0e160b437c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/not-zip-safe +SPDXID: SPDXRef-File-...not-zip-safe-070b608c5c268c50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/not-zip-safe +SPDXID: SPDXRef-File-...not-zip-safe-555c50a9a914ca66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/__pycache__/notation.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...notation.cpython-36.opt-1.pyc-db0c429f4bc96837 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/ntlmpool.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ntlmpool.cpython-36.opt-1.pyc-313bba81af9088fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ntpath.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ntpath.cpython-36.opt-1.pyc-432e61149674328e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/ntpath.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ntpath.cpython-36.opt-2.pyc-09627abaf5855362 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/nturl2path.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...nturl2path.cpython-36.opt-1.pyc-cb7ea1ba5ee9ecc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/nturl2path.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...nturl2path.cpython-36.opt-2.pyc-3a453eb5e33a67b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/numbers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...numbers.cpython-36.opt-1.pyc-f5b6ea6c3f96d2b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/numbers.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...numbers.cpython-36.opt-2.pyc-97b0817f42521ed7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/bin/tools/ws-auditreader.jar +SPDXID: SPDXRef-File-...ol-wlp-bin-tools-ws-auditreader.jar-dac94bd442e85e0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/bin/tools/ws-featureUtility.jar +SPDXID: SPDXRef-File-...ol-wlp-bin-tools-ws-featureUtility.jar-92a26802a6d3517b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/bin/tools/ws-featurelist.jar +SPDXID: SPDXRef-File-...ol-wlp-bin-tools-ws-featurelist.jar-4c721027cdcb4451 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/bin/tools/ws-productutil.jar +SPDXID: SPDXRef-File-...ol-wlp-bin-tools-ws-productutil.jar-ed699c86ff9a98ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/bin/tools/ws-securityutil.jar +SPDXID: SPDXRef-File-...ol-wlp-bin-tools-ws-securityutil.jar-d47265613f76c274 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.json4j_1.0.81.jar +SPDXID: SPDXRef-File-...ol-wlp-lib-com.ibm.json4j-1.0.81.jar-9d86d72954b6bd05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.anno_1.1.81.jar +SPDXID: SPDXRef-File-...ol-wlp-lib-com.ibm.ws.anno-1.1.81.jar-0955563bba5dace9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.event_1.0.81.jar +SPDXID: SPDXRef-File-...ol-wlp-lib-com.ibm.ws.event-1.0.81.jar-1667fd4b324baaa0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.jmx_1.0.81.jar +SPDXID: SPDXRef-File-...ol-wlp-lib-com.ibm.ws.jmx-1.0.81.jar-067e93124bf92e0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.jndi_1.0.81.jar +SPDXID: SPDXRef-File-...ol-wlp-lib-com.ibm.ws.jndi-1.0.81.jar-390f3f72accbfbb3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.ssl_1.5.81.jar +SPDXID: SPDXRef-File-...ol-wlp-lib-com.ibm.ws.ssl-1.5.81.jar-597666d860d03a81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.timer_1.0.81.jar +SPDXID: SPDXRef-File-...ol-wlp-lib-com.ibm.ws.timer-1.0.81.jar-6c0fba7301d80ca9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /usr/lib64/python3.6/__pycache__/opcode.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...opcode.cpython-36.opt-1.pyc-7934171ab66dfe1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/opcode.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...opcode.cpython-36.opt-2.pyc-a305f0317b214977 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/openssh.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...openssh.cpython-36.opt-1.pyc-b2de5591b9dcc64c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__pycache__/openssl.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...openssl.cpython-36.opt-1.pyc-c59ec02ce9b08a3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/operator.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...operator.cpython-36.opt-1.pyc-3ef3ffdbe1891469 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/operator.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...operator.cpython-36.opt-2.pyc-bcb3fc3ea1255fe7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/option_parser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...option-parser.cpython-36.opt-1.pyc-322c9ca2c77c4ae4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/option_parser.cpython-36.pyc +SPDXID: SPDXRef-File-...option-parser.cpython-36.pyc-3d40e26891565636 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/optparse.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...optparse.cpython-36.opt-1.pyc-ead76a791cd35bc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/optparse.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...optparse.cpython-36.opt-2.pyc-9636df361df87719 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/metainfo/org.fedoraproject.LangPack-en.metainfo.xml +SPDXID: SPDXRef-File-...org.fedoraproject.LangPack-en.metainfo.xml-bf9a80417c82a0ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.d/org.freedesktop.hostname1.conf +SPDXID: SPDXRef-File-...org.freedesktop.hostname1.conf-6f13f0c0913fd58d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/org.freedesktop.hostname1.policy +SPDXID: SPDXRef-File-...org.freedesktop.hostname1.policy-18972c9da55b6ace +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/org.freedesktop.hostname1.service +SPDXID: SPDXRef-File-...org.freedesktop.hostname1.service-f21d3483a068a1e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/org.freedesktop.locale1.service +SPDXID: SPDXRef-File-...org.freedesktop.locale1.service-d8d2ae8c3e23ee97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/org.freedesktop.login1.service +SPDXID: SPDXRef-File-...org.freedesktop.login1.service-bbc32b35800a4d14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.d/org.freedesktop.portable1.conf +SPDXID: SPDXRef-File-...org.freedesktop.portable1.conf-5b0c0c1569d165a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/org.freedesktop.portable1.policy +SPDXID: SPDXRef-File-...org.freedesktop.portable1.policy-5ee143c0081ca3b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/org.freedesktop.portable1.service +SPDXID: SPDXRef-File-...org.freedesktop.portable1.service-2941264291f6d9d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/org.freedesktop.resolve1.policy +SPDXID: SPDXRef-File-...org.freedesktop.resolve1.policy-ebc714ea1d4353d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/org.freedesktop.resolve1.service +SPDXID: SPDXRef-File-...org.freedesktop.resolve1.service-2539154e0047b90a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/org.freedesktop.systemd1.policy +SPDXID: SPDXRef-File-...org.freedesktop.systemd1.policy-88b4154b912d2af1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/org.freedesktop.systemd1.service +SPDXID: SPDXRef-File-...org.freedesktop.systemd1.service-37c2b9f96351a64c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.d/org.freedesktop.timedate1.conf +SPDXID: SPDXRef-File-...org.freedesktop.timedate1.conf-c1ea4c3636b6cd23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/polkit-1/actions/org.freedesktop.timedate1.policy +SPDXID: SPDXRef-File-...org.freedesktop.timedate1.policy-cd42d58d51c3dd8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system-services/org.freedesktop.timedate1.service +SPDXID: SPDXRef-File-...org.freedesktop.timedate1.service-c830a14a90b26e6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/ossaudiodev.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...ossaudiodev.cpython-36m-x86-64-linux-gnu.so-6207e66c7857be8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/ourjson.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ourjson.cpython-36.opt-1.pyc-832d0162dc2d027f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/output.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...output.cpython-36.opt-1.pyc-77b609e075b04b47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/overrides.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...overrides.cpython-36.opt-1.pyc-fad383de793af3fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/p11-kit/modules/p11-kit-trust.module +SPDXID: SPDXRef-File-...p11-kit-modules-p11-kit-trust.module-be11d4f39c846246 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/package_index.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...package-index.cpython-36.opt-1.pyc-78726b82d803c42f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/package_index.cpython-36.pyc +SPDXID: SPDXRef-File-...package-index.cpython-36.pyc-3e7699d6145e2ffb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/package_profile_upload.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...package-profile-upload.cpython-36.opt-1.pyc-52bd7711d00ee52a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/package_profile_upload.cpython-36.pyc +SPDXID: SPDXRef-File-...package-profile-upload.cpython-36.pyc-9f81a097f045b35f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/package.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...package.cpython-36.opt-1.pyc-32d28ea693bf5c79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/packageprofilelib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...packageprofilelib.cpython-36.opt-1.pyc-a0034c5dc2a8d1af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/packageprofilelib.cpython-36.pyc +SPDXID: SPDXRef-File-...packageprofilelib.cpython-36.pyc-03ebc9391e5338ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/packageprofilelib.py +SPDXID: SPDXRef-File-...packageprofilelib.py-4a0430d918037391 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/packages.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...packages.cpython-36.opt-1.pyc-f37406686bedda01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/palmos.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...palmos.cpython-36.opt-1.pyc-528ca901d0ad583e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/palmos.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...palmos.cpython-36.opt-2.pyc-07f0e21b86c2cf33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/parser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...parser.cpython-36.opt-1.pyc-05eda4ade2646a0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/parser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...parser.cpython-36.opt-1.pyc-0ce396519213b5a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/parser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...parser.cpython-36.opt-1.pyc-6b428cc38961ddcd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__pycache__/parser.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...parser.cpython-36.opt-2.pyc-9131c2a7ea24c075 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/parser.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...parser.cpython-36.opt-2.pyc-f268ed1e9d6c5f60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/parser.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...parser.cpython-36m-x86-64-linux-gnu.so-3ea85947ec598bc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/patcomp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...patcomp.cpython-36.opt-1.pyc-db7553a9287560b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/patcomp.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...patcomp.cpython-36.opt-2.pyc-f64a5fca6cc54b53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pathlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pathlib.cpython-36.opt-1.pyc-e864b63dde8ba5b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pathlib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pathlib.cpython-36.opt-2.pyc-5371677bdbabdae7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/pathtree.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pathtree.cpython-36.opt-1.pyc-ef73d7ae28d3ba69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/pbr.json +SPDXID: SPDXRef-File-...pbr.json-a7a5d5a958e59d31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/pep425tags.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pep425tags.cpython-36.opt-1.pyc-f6f955bd182e4af8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/persistor.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...persistor.cpython-36.opt-1.pyc-31166b4a8bcac161 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/conv.cpython-36.pyc +SPDXID: SPDXRef-File-...pgen2---pycache---conv.cpython-36.pyc-a7d5a33f7bd999ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/parse.cpython-36.pyc +SPDXID: SPDXRef-File-...pgen2---pycache---parse.cpython-36.pyc-0ec908c642253866 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/pgen.cpython-36.pyc +SPDXID: SPDXRef-File-...pgen2---pycache---pgen.cpython-36.pyc-7357b6ce0fa4fac6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/token.cpython-36.pyc +SPDXID: SPDXRef-File-...pgen2---pycache---token.cpython-36.pyc-a2bf4df52bed1303 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pickle.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pickle.cpython-36.opt-1.pyc-0fc180b425422e4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pickle.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pickle.cpython-36.opt-2.pyc-92f096ae58a40215 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pickletools.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pickletools.cpython-36.opt-1.pyc-864cb568eb390105 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pickletools.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pickletools.cpython-36.opt-2.pyc-e7debf12d68061ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/python3-wheels/pip-9.0.3-py2.py3-none-any.whl +SPDXID: SPDXRef-File-...pip-9.0.3-py2.py3-none-any.whl-59ea201cb5923978 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/__init__.py +SPDXID: SPDXRef-File-...pkg-resources---init--.py-5b3d2cb76ee0e91e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__init__.py +SPDXID: SPDXRef-File-...pkg-resources--vendor---init--.py-7c8d8fc19abfa393 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/appdirs.py +SPDXID: SPDXRef-File-...pkg-resources--vendor-appdirs.py-cf1746f589bdffc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/pyparsing.py +SPDXID: SPDXRef-File-...pkg-resources--vendor-pyparsing.py-1ed0c1347dcba0ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/six.py +SPDXID: SPDXRef-File-...pkg-resources--vendor-six.py-d6dc6b9217bfba35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/extern/__init__.py +SPDXID: SPDXRef-File-...pkg-resources-extern---init--.py-c2f0b9ff97cdbaed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/py31compat.py +SPDXID: SPDXRef-File-...pkg-resources-py31compat.py-41393cfb9d5e5d9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pkgutil.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pkgutil.cpython-36.opt-1.pyc-eeae2cb31f08cc7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pkgutil.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pkgutil.cpython-36.opt-2.pyc-6e0a909683a88bae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/java/cacerts +SPDXID: SPDXRef-File-...pki-ca-trust-extracted-java-cacerts-086386e3e9bb80b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/openssl/README +SPDXID: SPDXRef-File-...pki-ca-trust-extracted-openssl-README-f9bf72482ca4bf28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/rpm-gpg/ISV-Container-signing-key +SPDXID: SPDXRef-File-...pki-rpm-gpg-ISV-Container-signing-key-3fadd4a1ca57118c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-beta +SPDXID: SPDXRef-File-...pki-rpm-gpg-RPM-GPG-KEY-redhat-beta-e22d24acdc4e9a0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release +SPDXID: SPDXRef-File-...pki-rpm-gpg-RPM-GPG-KEY-redhat-release-aa1b380587abd12a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/platform-python-setuptools/LICENSE +SPDXID: SPDXRef-File-...platform-python-setuptools-LICENSE-c93c535151e969e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/platform.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...platform.cpython-36.opt-1.pyc-eafda0172d30d173 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/platform.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...platform.cpython-36.opt-2.pyc-2b2cd28111ae0c34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/plistlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...plistlib.cpython-36.opt-1.pyc-dd7093cb4dade069 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/plistlib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...plistlib.cpython-36.opt-2.pyc-6380f0bd1961f063 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/plugin/__init__.py +SPDXID: SPDXRef-File-...plugin---init--.py-ff981de0798146fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/plugin.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...plugin.cpython-36.opt-1.pyc-2fa70ebc5ce6d099 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/plugins.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...plugins.cpython-36.opt-1.pyc-ff2e26cc368719f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/modules/AD-SUPPORT.pmod +SPDXID: SPDXRef-File-...policies-modules-AD-SUPPORT.pmod-4126a538a2e68d05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/modules/ECDHE-ONLY.pmod +SPDXID: SPDXRef-File-...policies-modules-ECDHE-ONLY.pmod-2a004eb9054a1d6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/modules/NO-CAMELLIA.pmod +SPDXID: SPDXRef-File-...policies-modules-NO-CAMELLIA.pmod-05cb030413e7d0e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/modules/NO-SHA1.pmod +SPDXID: SPDXRef-File-...policies-modules-NO-SHA1.pmod-ccc101911cc2e3f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/policies/modules/OSPP.pmod +SPDXID: SPDXRef-File-...policies-modules-OSPP.pmod-3a2b32a189ee6706 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/policy.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...policy.cpython-36.opt-1.pyc-8b0dd6a49454e2f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/tofu/__pycache__/policy.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...policy.cpython-36.opt-1.pyc-a873b1f413ba6502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/policy.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...policy.cpython-36.opt-2.pyc-cc0f8feb18baa3bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/configgenerator.py +SPDXID: SPDXRef-File-...policygenerators-configgenerator.py-83ead8e5282678bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/poolmanager.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...poolmanager.cpython-36.opt-1.pyc-f83d6f2660215dbb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_fork.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...popen-fork.cpython-36.opt-1.pyc-aff4baab7680e1ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_fork.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...popen-fork.cpython-36.opt-2.pyc-48686a648eeb5493 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_forkserver.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...popen-forkserver.cpython-36.opt-1.pyc-704a9afc35b4c19a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_forkserver.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...popen-forkserver.cpython-36.opt-2.pyc-e2bf634b3027b3b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_forkserver.cpython-36.pyc +SPDXID: SPDXRef-File-...popen-forkserver.cpython-36.pyc-effb314ef1c79097 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_spawn_posix.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...popen-spawn-posix.cpython-36.opt-1.pyc-62c07aadffdf1e83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_spawn_posix.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...popen-spawn-posix.cpython-36.opt-2.pyc-d50c849bb9512327 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_spawn_posix.cpython-36.pyc +SPDXID: SPDXRef-File-...popen-spawn-posix.cpython-36.pyc-d8a38d26f6c8ec23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_spawn_win32.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...popen-spawn-win32.cpython-36.opt-1.pyc-c8e13a78b5a06ed2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_spawn_win32.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...popen-spawn-win32.cpython-36.opt-2.pyc-8b73fda6f9adc520 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/popen_spawn_win32.cpython-36.pyc +SPDXID: SPDXRef-File-...popen-spawn-win32.cpython-36.pyc-2f43f95aa6088671 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/poplib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...poplib.cpython-36.opt-1.pyc-3fbae515cfc48a2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/poplib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...poplib.cpython-36.opt-2.pyc-288bf837caf03c15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/portable/profile/default/service.conf +SPDXID: SPDXRef-File-...portable-profile-default-service.conf-6630e6ce6d02b6a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/portable/profile/strict/service.conf +SPDXID: SPDXRef-File-...portable-profile-strict-service.conf-c5dfc7118f750df7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/portable/profile/trusted/service.conf +SPDXID: SPDXRef-File-...portable-profile-trusted-service.conf-3b0ea2e50a1ca85d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Buenos_Aires +SPDXID: SPDXRef-File-...posix-America-Argentina-Buenos-Aires-eaf9ebe0294e5a68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Catamarca +SPDXID: SPDXRef-File-...posix-America-Argentina-Catamarca-bc2fde7e466916de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/ComodRivadavia +SPDXID: SPDXRef-File-...posix-America-Argentina-ComodRivadavia-f65780a75c58f840 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Cordoba +SPDXID: SPDXRef-File-...posix-America-Argentina-Cordoba-816a00b60479885b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/La_Rioja +SPDXID: SPDXRef-File-...posix-America-Argentina-La-Rioja-0ac3a1161de06d79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Mendoza +SPDXID: SPDXRef-File-...posix-America-Argentina-Mendoza-be561c81cd000e34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Rio_Gallegos +SPDXID: SPDXRef-File-...posix-America-Argentina-Rio-Gallegos-568e5baeda02402f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/San_Juan +SPDXID: SPDXRef-File-...posix-America-Argentina-San-Juan-2b4c99ed3cd79f5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/San_Luis +SPDXID: SPDXRef-File-...posix-America-Argentina-San-Luis-8e116060197b9e5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Tucuman +SPDXID: SPDXRef-File-...posix-America-Argentina-Tucuman-0385ba7706c3c10c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Ushuaia +SPDXID: SPDXRef-File-...posix-America-Argentina-Ushuaia-8426a38cc390b6d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Indianapolis +SPDXID: SPDXRef-File-...posix-America-Indiana-Indianapolis-e39fd5fb01fba60d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Petersburg +SPDXID: SPDXRef-File-...posix-America-Indiana-Petersburg-f96ef00e52fa5d80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Tell_City +SPDXID: SPDXRef-File-...posix-America-Indiana-Tell-City-ea92544cadea52e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Vincennes +SPDXID: SPDXRef-File-...posix-America-Indiana-Vincennes-7c0d719153de5bdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Kentucky/Louisville +SPDXID: SPDXRef-File-...posix-America-Kentucky-Louisville-16d998cf456e7504 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Kentucky/Monticello +SPDXID: SPDXRef-File-...posix-America-Kentucky-Monticello-39e8f2c71a7956ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/North_Dakota/Beulah +SPDXID: SPDXRef-File-...posix-America-North-Dakota-Beulah-8274a18e97089120 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/North_Dakota/Center +SPDXID: SPDXRef-File-...posix-America-North-Dakota-Center-e5d5244845ccd7d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/North_Dakota/New_Salem +SPDXID: SPDXRef-File-...posix-America-North-Dakota-New-Salem-c6d2e6e21b0dc678 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/DumontDUrville +SPDXID: SPDXRef-File-...posix-Antarctica-DumontDUrville-ce692e890036e731 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/posixpath.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...posixpath.cpython-36.opt-1.pyc-b45c623a865dc2b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/posixpath.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...posixpath.cpython-36.opt-2.pyc-2dfe7ffbdfc19c72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pprint.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pprint.cpython-36.opt-1.pyc-77e2912b2b289d32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pprint.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pprint.cpython-36.opt-2.pyc-13415533391bd39a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/__pycache__/printers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...printers.cpython-36.opt-1.pyc-71a0bdeb5372bee2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/printing_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...printing-utils.cpython-36.opt-1.pyc-6de29c7e27124337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/printing_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...printing-utils.cpython-36.pyc-e00e12c1b9111e8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/printing.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...printing.cpython-36.opt-1.pyc-6539e8abb7aee4a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/proactor_events.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...proactor-events.cpython-36.opt-1.pyc-3eac7060e6de952a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/proactor_events.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...proactor-events.cpython-36.opt-2.pyc-abf14f55dbcd6b24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/proactor_events.cpython-36.pyc +SPDXID: SPDXRef-File-...proactor-events.cpython-36.pyc-bc622bc35316a39a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/proc-sys-fs-binfmt_misc.automount +SPDXID: SPDXRef-File-...proc-sys-fs-binfmt-misc.automount-484478b9866be9b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/process.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...process.cpython-36.opt-1.pyc-8c20f1d046977771 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/process.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...process.cpython-36.opt-1.pyc-a881056bba8576fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/process.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...process.cpython-36.opt-2.pyc-8c3b775f0625f65e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/process.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...process.cpython-36.opt-2.pyc-f7dc1f24e0fc53ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/product-id.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...product-id.cpython-36.opt-1.pyc-05dd831de5858d89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/productid.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...productid.cpython-36.opt-1.pyc-71b8b71193b30c06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/products.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...products.cpython-36.opt-1.pyc-7047e830799188a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/products.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...products.cpython-36.opt-1.pyc-c94607c60b71e58b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/portable/profile/nonetwork/service.conf +SPDXID: SPDXRef-File-...profile-nonetwork-service.conf-d95f5ed0f4e6e091 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/profile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...profile.cpython-36.opt-1.pyc-b383c310acc414ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/profile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...profile.cpython-36.opt-1.pyc-ecf011d2fdd6a7e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/profile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...profile.cpython-36.opt-2.pyc-3888c4a5e88a4f78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__pycache__/progress.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...progress.cpython-36.opt-1.pyc-5bc95e7947421f24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/protocol.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...protocol.cpython-36.opt-1.pyc-529e1c2ed8f954d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/protocols.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...protocols.cpython-36.opt-1.pyc-6db7ca22d8dfa377 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/protocols.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...protocols.cpython-36.opt-2.pyc-d268eacc6db24cac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__pycache__/provider.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...provider.cpython-36.opt-1.pyc-db1e5098450b6a49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/proxies.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...proxies.cpython-36.opt-1.pyc-a00dae9dafe26e9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pstats.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pstats.cpython-36.opt-1.pyc-783a2ba413dcfa82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pstats.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pstats.cpython-36.opt-2.pyc-9ce4aa85e981d878 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/ptcp154.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ptcp154.cpython-36.opt-1.pyc-c0f93e31b5d2bf7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/ptcp154.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...ptcp154.cpython-36.opt-2.pyc-17305d81cd1018d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/publicsuffix-list-dafsa/COPYING +SPDXID: SPDXRef-File-...publicsuffix-list-dafsa-COPYING-bc2c8696daaa6275 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/publicsuffix/public_suffix_list.dafsa +SPDXID: SPDXRef-File-...publicsuffix-public-suffix-list.dafsa-057a683215eedd04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/pulldom.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pulldom.cpython-36.opt-1.pyc-06916a116103b2ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/pulldom.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pulldom.cpython-36.opt-2.pyc-ae13d6ef60d51cd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/punycode.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...punycode.cpython-36.opt-1.pyc-e09f807fbb164866 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/punycode.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...punycode.cpython-36.opt-2.pyc-18079e9467afe7cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/py_compile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...py-compile.cpython-36.opt-1.pyc-7d80c697e646a9bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/py_compile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...py-compile.cpython-36.opt-2.pyc-be331f23dba635bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py27compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...py27compat.cpython-36.opt-1.pyc-2f756eb99a21ed03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/__pycache__/py31compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...py31compat.cpython-36.opt-1.pyc-406dfe0e644c75c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py31compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...py31compat.cpython-36.opt-1.pyc-65070c5d3f50db99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py33compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...py33compat.cpython-36.opt-1.pyc-db55caa0581ac55a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/py36compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...py36compat.cpython-36.opt-1.pyc-97cdb22e5cbee9e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/py36compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...py36compat.cpython-36.opt-1.pyc-dead9ac7585fe549 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pyclbr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pyclbr.cpython-36.opt-1.pyc-92a62cd1116d1d0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/pyclbr.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pyclbr.cpython-36.opt-2.pyc-2a66c09d6c790f06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/pycomp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pycomp.cpython-36.opt-1.pyc-dbb8aceba1d600ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/pyexpat.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...pyexpat.cpython-36m-x86-64-linux-gnu.so-40c4942813e709fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygobject-3.28.3-py3.6.egg-info +SPDXID: SPDXRef-File-...pygobject-3.28.3-py3.6.egg-info-1d5f71a5d0b43e6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/pygram.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pygram.cpython-36.opt-1.pyc-7eec1d509b001724 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/pygram.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pygram.cpython-36.opt-2.pyc-7bf8a9426f81c8fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/generictreemodel.py +SPDXID: SPDXRef-File-...pygtkcompat-generictreemodel.py-eb709269a8cf9cbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/pygtkcompat.py +SPDXID: SPDXRef-File-...pygtkcompat-pygtkcompat.py-f6e50818fe4e2437 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/__pycache__/pygtkcompat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pygtkcompat.cpython-36.opt-1.pyc-392f8a72f8d62552 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__pycache__/pygtkcompat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pygtkcompat.cpython-36.opt-1.pyc-701e4522cc14990c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/pyinotify.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pyinotify.cpython-36.opt-1.pyc-1c630e002b98378b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pyopenssl.cpython-36.opt-1.pyc-57129258403fbc14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pyparsing.cpython-36.opt-1.pyc-760816225615e007 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pyparsing.cpython-36.opt-1.pyc-9ffc34e224f9cc2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/build-crypto-policies.py +SPDXID: SPDXRef-File-...python-build-crypto-policies.py-9d37b396750383e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/__init__.py +SPDXID: SPDXRef-File-...python-cryptopolicies---init--.py-7b737d3badecd828 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/cryptopolicies/alg_lists.py +SPDXID: SPDXRef-File-...python-cryptopolicies-alg-lists.py-31848d1869680cb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/python_dmidecode-3.12.2-py3.6.egg-info +SPDXID: SPDXRef-File-...python-dmidecode-3.12.2-py3.6.egg-info-48a8a1d3752813a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/__init__.py +SPDXID: SPDXRef-File-...python-policygenerators---init--.py-adbd2da8d9cc19ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/bind.py +SPDXID: SPDXRef-File-...python-policygenerators-bind.py-dadc44b4d8da59c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/gnutls.py +SPDXID: SPDXRef-File-...python-policygenerators-gnutls.py-96217e5e1e9a00cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/java.py +SPDXID: SPDXRef-File-...python-policygenerators-java.py-d4ed8e278eb0e2d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/krb5.py +SPDXID: SPDXRef-File-...python-policygenerators-krb5.py-a975ee3afb0b3d7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/libreswan.py +SPDXID: SPDXRef-File-...python-policygenerators-libreswan.py-c749c622048e5642 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/libssh.py +SPDXID: SPDXRef-File-...python-policygenerators-libssh.py-db4cb51ce64c645b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/nss.py +SPDXID: SPDXRef-File-...python-policygenerators-nss.py-de0d63a443328f52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/openssh.py +SPDXID: SPDXRef-File-...python-policygenerators-openssh.py-d9c14c8d753e22a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/policygenerators/openssl.py +SPDXID: SPDXRef-File-...python-policygenerators-openssl.py-3100f596ad343dad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/update-crypto-policies.py +SPDXID: SPDXRef-File-...python-update-crypto-policies.py-8dcb318ef2f3c0e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-dmidecode/AUTHORS.upstream +SPDXID: SPDXRef-File-...python3-dmidecode-AUTHORS.upstream-1b5490199a1471c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-dnf-plugins-core/COPYING +SPDXID: SPDXRef-File-...python3-dnf-plugins-core-COPYING-7ff4007a367a4aa4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-setuptools-wheel/LICENSE +SPDXID: SPDXRef-File-...python3-setuptools-wheel-LICENSE-7c82c126a1a287d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/base_futures.py +SPDXID: SPDXRef-File-...python3.6-asyncio-base-futures.py-94895ea88222da7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/base_subprocess.py +SPDXID: SPDXRef-File-...python3.6-asyncio-base-subprocess.py-91e4e763477bb557 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/proactor_events.py +SPDXID: SPDXRef-File-...python3.6-asyncio-proactor-events.py-08ab407b779b855e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/selector_events.py +SPDXID: SPDXRef-File-...python3.6-asyncio-selector-events.py-07e4f66f677ed2b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/windows_events.py +SPDXID: SPDXRef-File-...python3.6-asyncio-windows-events.py-bb56fd71715f640b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/windows_utils.py +SPDXID: SPDXRef-File-...python3.6-asyncio-windows-utils.py-4c67350300d3cb0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/__init__.py +SPDXID: SPDXRef-File-...python3.6-collections---init--.py-3553884e04560c1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/_base.py +SPDXID: SPDXRef-File-...python3.6-concurrent-futures--base.py-229a434344f31135 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/thread.py +SPDXID: SPDXRef-File-...python3.6-concurrent-futures-thread.py-e159613eceeb5db2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/__init__.py +SPDXID: SPDXRef-File-...python3.6-ctypes-macholib---init--.py-e84ee162acdaf58f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/dyld.py +SPDXID: SPDXRef-File-...python3.6-ctypes-macholib-dyld.py-af9e54826b669e22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/dylib.py +SPDXID: SPDXRef-File-...python3.6-ctypes-macholib-dylib.py-4839955a1ad2688f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/macholib/framework.py +SPDXID: SPDXRef-File-...python3.6-ctypes-macholib-framework.py-82dcb34ba82e6f56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/_msvccompiler.py +SPDXID: SPDXRef-File-...python3.6-distutils--msvccompiler.py-275b22f6a0d97d6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/archive_util.py +SPDXID: SPDXRef-File-...python3.6-distutils-archive-util.py-589423a014139ed7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/bcppcompiler.py +SPDXID: SPDXRef-File-...python3.6-distutils-bcppcompiler.py-defa050ab27b82c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/bdist.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-bdist.py-31b773b8a43c6cb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/build.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-build.py-9932d0b7dec83edc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/check.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-check.py-3b2dfa69a7b0f5f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/clean.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-clean.py-bec406833ef3b30c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/config.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-config.py-1550e45b6cce467c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/install.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-install.py-ee34d993fe0b7e2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/sdist.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-sdist.py-18c9db7412e334d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/upload.py +SPDXID: SPDXRef-File-...python3.6-distutils-command-upload.py-fb5f87c417e5f135 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/cygwinccompiler.py +SPDXID: SPDXRef-File-...python3.6-distutils-cygwinccompiler.py-46c1986be11a848c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/fancy_getopt.py +SPDXID: SPDXRef-File-...python3.6-distutils-fancy-getopt.py-0a9e8ec8dbb279a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/msvc9compiler.py +SPDXID: SPDXRef-File-...python3.6-distutils-msvc9compiler.py-0defcce09ed5af90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/msvccompiler.py +SPDXID: SPDXRef-File-...python3.6-distutils-msvccompiler.py-daa6c4d7ed27eb42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/unixccompiler.py +SPDXID: SPDXRef-File-...python3.6-distutils-unixccompiler.py-02ded7963c0d3883 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/_encoded_words.py +SPDXID: SPDXRef-File-...python3.6-email--encoded-words.py-6123441cacaa3196 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/contentmanager.py +SPDXID: SPDXRef-File-...python3.6-email-contentmanager.py-2609a43953eea9d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/headerregistry.py +SPDXID: SPDXRef-File-...python3.6-email-headerregistry.py-23bda9b4f63ea309 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/application.py +SPDXID: SPDXRef-File-...python3.6-email-mime-application.py-0e842ae6f8303f8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/multipart.py +SPDXID: SPDXRef-File-...python3.6-email-mime-multipart.py-2b3c8c50f0655fce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/nonmultipart.py +SPDXID: SPDXRef-File-...python3.6-email-mime-nonmultipart.py-10edf039724b5ab2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/base64_codec.py +SPDXID: SPDXRef-File-...python3.6-encodings-base64-codec.py-5ed776d2c404af42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/euc_jis_2004.py +SPDXID: SPDXRef-File-...python3.6-encodings-euc-jis-2004.py-a9246c60271e281c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/euc_jisx0213.py +SPDXID: SPDXRef-File-...python3.6-encodings-euc-jisx0213.py-117486bb05b63b12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso2022_jp_1.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso2022-jp-1.py-f023a8bfff31e7f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso2022_jp_2.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso2022-jp-2.py-dd249c741319f054 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso2022_jp_2004.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso2022-jp-2004.py-81483d15da581d8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso2022_jp_3.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso2022-jp-3.py-973e716720e10ec2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso2022_jp_ext.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso2022-jp-ext.py-c62a6c60a5de26fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso2022_jp.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso2022-jp.py-df5be53a93e9027b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso2022_kr.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso2022-kr.py-1de62ba92640e9cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_10.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso8859-10.py-75a9a0cfd82f13c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_11.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso8859-11.py-46c82d552ee609a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_13.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso8859-13.py-2913d1ae53cf312c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_14.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso8859-14.py-b571a8cc2c3cfcc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_15.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso8859-15.py-e920633dcf2e3d08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/iso8859_16.py +SPDXID: SPDXRef-File-...python3.6-encodings-iso8859-16.py-8925d5418e78ddb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_arabic.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-arabic.py-b76d8ae4e8cf2575 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_centeuro.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-centeuro.py-75ff6b95196b1b43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_croatian.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-croatian.py-672aae807bd212af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_cyrillic.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-cyrillic.py-f8f762bb1a1c7583 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_iceland.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-iceland.py-dbd4e3991c8f3413 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_latin2.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-latin2.py-c06ff2b06c5e048f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_romanian.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-romanian.py-759dffc3f6c05508 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mac_turkish.py +SPDXID: SPDXRef-File-...python3.6-encodings-mac-turkish.py-ac43304b2aeb06aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/quopri_codec.py +SPDXID: SPDXRef-File-...python3.6-encodings-quopri-codec.py-068aa26c5bedf67e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/shift_jis_2004.py +SPDXID: SPDXRef-File-...python3.6-encodings-shift-jis-2004.py-6c9134b3cc245fb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/shift_jisx0213.py +SPDXID: SPDXRef-File-...python3.6-encodings-shift-jisx0213.py-440126cdee815acf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/unicode_escape.py +SPDXID: SPDXRef-File-...python3.6-encodings-unicode-escape.py-2a1363289944580b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/zlib_codec.py +SPDXID: SPDXRef-File-...python3.6-encodings-zlib-codec.py-af4f0b773b6dfac4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ensurepip/_uninstall.py +SPDXID: SPDXRef-File-...python3.6-ensurepip--uninstall.py-44438aa1a2acca35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/_bootstrap.py +SPDXID: SPDXRef-File-...python3.6-importlib--bootstrap.py-1a645b5dd5a6ff5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/PatternGrammar.txt +SPDXID: SPDXRef-File-...python3.6-lib2to3-PatternGrammar.txt-373a19bd420593ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/__init__.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes---init--.py-042cba1b9f03682e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_apply.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-apply.py-b18c9a51441f8319 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_asserts.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-asserts.py-a15b717ebd282fcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_buffer.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-buffer.py-a7bca3bdf8f15643 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_dict.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-dict.py-8f25bad08294bb40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_except.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-except.py-f685a0464a31538e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_exec.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-exec.py-53a069a3613f6e1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_filter.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-filter.py-5a8e76a543f4b002 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_future.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-future.py-088e29646ab49c47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_getcwdu.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-getcwdu.py-229fe853c0f0f580 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_has_key.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-has-key.py-80e554359f50f476 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_idioms.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-idioms.py-dfa2851daa11a349 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_import.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-import.py-b74240204e725fcf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_imports.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-imports.py-91f8a9ced650787c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_input.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-input.py-3fc6cfe9437adeaf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_intern.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-intern.py-bf606240f92753be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_long.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-long.py-026560f39610ae99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_map.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-map.py-c29f0be9bd6a5c8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_ne.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-ne.py-9a0d721e49f1448b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_next.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-next.py-9256b12f1e72b0a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_nonzero.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-nonzero.py-033b63ea80d8e272 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_paren.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-paren.py-e5c3c846bebece2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_print.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-print.py-d02f1efc4a5506c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_raise.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-raise.py-86b20b05e854ea05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_reduce.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-reduce.py-b04fec266be9e4eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_reload.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-reload.py-3b3b470738240b89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_renames.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-renames.py-3c5e1d15cc0f3d76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_repr.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-repr.py-bbceae03e4b5e6fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_sys_exc.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-sys-exc.py-b7575b30f813ca36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_throw.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-throw.py-7326fffbd7d8a317 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_types.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-types.py-af209d9bdfe32545 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_unicode.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-unicode.py-00df4884f11814bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_urllib.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-urllib.py-acc8409cd96c02db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_xrange.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-xrange.py-f543372ea8df88d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/fixes/fix_zip.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-fixes-fix-zip.py-e781174afdf7aadc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__init__.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-pgen2---init--.py-3ae069d7d31ca215 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/driver.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-pgen2-driver.py-34c92731a7dfe1ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/grammar.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-pgen2-grammar.py-030c6606aba8b084 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/literals.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-pgen2-literals.py-93d6ddfefa81ebdd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/tokenize.py +SPDXID: SPDXRef-File-...python3.6-lib2to3-pgen2-tokenize.py-2d64b315de60beb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__init__.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing---init--.py-b64176d04f044403 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/context.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-context.py-a5b34db9fd89ec56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/heap.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-heap.py-3afb0f6de2fb35f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/managers.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-managers.py-875cb31bbd0a06e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/pool.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-pool.py-0032433f0e5c2159 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/process.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-process.py-f0afa15f7ddb741e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/queues.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-queues.py-5a664c902551b46c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/reduction.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-reduction.py-ca83d1b2f3a74859 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/spawn.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-spawn.py-9cc202352a917c6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/util.py +SPDXID: SPDXRef-File-...python3.6-multiprocessing-util.py-41302a79b976d14a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/README.txt +SPDXID: SPDXRef-File-...python3.6-site-packages-README.txt-292d545864c05a0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/_dbus.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dbus--dbus.py-d6f5077e0458390d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/bus.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dbus-bus.py-5bde95bf22410c99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/glib.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dbus-glib.py-8136d2fcb1e41460 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/server.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dbus-server.py-9ada2482ffe7897a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/types.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dbus-types.py-bbdf441e88f4df12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/decorator.py +SPDXID: SPDXRef-File-...python3.6-site-packages-decorator.py-82b6559637b0740f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dmidecode.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dmidecode.py-758cc19dd423d505 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/base.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-base.py-f6e7d6a2e5e6cf8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/cli.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-cli-cli.py-6f498cdf056f6094 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/comps.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-comps.py-6124f2ce2e687167 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/const.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-const.py-b3ca8554ccbb7d90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/crypto.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-crypto.py-1bde3289b6ac0bc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/dnssec.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-dnssec.py-9daa809abbd884b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/drpm.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-drpm.py-5416c87398c66e95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/goal.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-goal.py-91146f909fcc21ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/history.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-history.py-5e8541bd2b4a4de8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/i18n.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-i18n.py-11042d64e1fc5daa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/lock.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-lock.py-f774af1ef07c31ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/logging.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-logging.py-f2c55526f4931326 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/package.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-package.py-8f52be1825471443 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/plugin.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-plugin.py-970d14eba055734a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/pycomp.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-pycomp.py-ce82cafd0f4ffd21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/query.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-query.py-37beffbff4a8f559 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/repo.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-repo.py-bf77464330f030a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/sack.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-sack.py-35a13e587abc55e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/subject.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-subject.py-455d7e14d5003d46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/util.py +SPDXID: SPDXRef-File-...python3.6-site-packages-dnf-util.py-b695c4a34784d8d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/drv_libxml2.py +SPDXID: SPDXRef-File-...python3.6-site-packages-drv-libxml2.py-3c1f22e03788606a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/__init__.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gi---init--.py-da6015be81246769 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/_error.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gi--error.py-3f7bf8049452598b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/_option.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gi--option.py-9648d54b9889e245 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/importer.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gi-importer.py-aca621f2980e97cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/module.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gi-module.py-30935a7046ec1e66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/types.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gi-types.py-5fdfd2376af5d92e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/core.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gpg-core.py-d87c22c6ae6c74bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/errors.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gpg-errors.py-a399ab8b16cb5327 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/gpgme.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gpg-gpgme.py-a59309da917b1c80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/results.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gpg-results.py-142df2fa7990e6c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/util.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gpg-util.py-94daa32cccbc488a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/version.py +SPDXID: SPDXRef-File-...python3.6-site-packages-gpg-version.py-086e09896c711c32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/codec.py +SPDXID: SPDXRef-File-...python3.6-site-packages-idna-codec.py-5956dcaa4bc05026 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/compat.py +SPDXID: SPDXRef-File-...python3.6-site-packages-idna-compat.py-47a63ff497614214 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/core.py +SPDXID: SPDXRef-File-...python3.6-site-packages-idna-core.py-7868eab39b971be4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/conf.py +SPDXID: SPDXRef-File-...python3.6-site-packages-libdnf-conf.py-d35df845d1602ea7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/repo.py +SPDXID: SPDXRef-File-...python3.6-site-packages-libdnf-repo.py-3f9594db9abf9eae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libxml2.py +SPDXID: SPDXRef-File-...python3.6-site-packages-libxml2.py-d9c50d50e7c61164 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libxml2mod.so +SPDXID: SPDXRef-File-...python3.6-site-packages-libxml2mod.so-67c8647f521d5f3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pyinotify.py +SPDXID: SPDXRef-File-...python3.6-site-packages-pyinotify.py-4d85ba64a4cf5e3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/cli.py +SPDXID: SPDXRef-File-...python3.6-site-packages-rct-cli.py-9903a351ff55f47b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/version.py +SPDXID: SPDXRef-File-...python3.6-site-packages-rct-version.py-cc2b927d445b1b7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/config.py +SPDXID: SPDXRef-File-...python3.6-site-packages-rhsm-config.py-afacaf102033d30e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/https.py +SPDXID: SPDXRef-File-...python3.6-site-packages-rhsm-https.py-b8ee76de7a811176 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/utils.py +SPDXID: SPDXRef-File-...python3.6-site-packages-rhsm-utils.py-648308bac9b094d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/_rpm.so +SPDXID: SPDXRef-File-...python3.6-site-packages-rpm--rpm.so-fb5c16a8dd3e1c0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/_rpmb.so +SPDXID: SPDXRef-File-...python3.6-site-packages-rpm--rpmb.so-03d081fa7402fb6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/_rpms.so +SPDXID: SPDXRef-File-...python3.6-site-packages-rpm--rpms.so-4bf790f8500ff406 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__init__.py +SPDXID: SPDXRef-File-...python3.6-test-support---init--.py-368fef5f6ac8bcd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/testresult.py +SPDXID: SPDXRef-File-...python3.6-test-support-testresult.py-944cb5f0133a4fbb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/scripts/common/activate +SPDXID: SPDXRef-File-...python3.6-venv-scripts-common-activate-99d8ec5e3b63c47f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/simple_server.py +SPDXID: SPDXRef-File-...python3.6-wsgiref-simple-server.py-59cc3079f3e3ae5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/expatbuilder.py +SPDXID: SPDXRef-File-...python3.6-xml-dom-expatbuilder.py-48a5da5165279bc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/ElementInclude.py +SPDXID: SPDXRef-File-...python3.6-xml-etree-ElementInclude.py-5da7692d1af59519 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/ElementPath.py +SPDXID: SPDXRef-File-...python3.6-xml-etree-ElementPath.py-403dda3323428623 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/ElementTree.py +SPDXID: SPDXRef-File-...python3.6-xml-etree-ElementTree.py-c6f8c4db4c4a3ca5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/etree/cElementTree.py +SPDXID: SPDXRef-File-...python3.6-xml-etree-cElementTree.py-8fcc1bed246e37af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/parsers/__init__.py +SPDXID: SPDXRef-File-...python3.6-xml-parsers---init--.py-cddb82b0a8ea12ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/pytree.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...pytree.cpython-36.opt-1.pyc-fcab62136f526f30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/pytree.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...pytree.cpython-36.opt-2.pyc-80509a8a513885e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/queues.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...queues.cpython-36.opt-1.pyc-8de88954cecd1c20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/queues.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...queues.cpython-36.opt-1.pyc-ea0e85528d79e041 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/queues.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...queues.cpython-36.opt-2.pyc-b86886092ed04763 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/queues.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...queues.cpython-36.opt-2.pyc-c2a2867a8d5b9b1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/quopri_codec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...quopri-codec.cpython-36.opt-1.pyc-840c0cb7a279676f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/quopri_codec.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...quopri-codec.cpython-36.opt-2.pyc-f6fdafcfde99e740 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/quopri_codec.cpython-36.pyc +SPDXID: SPDXRef-File-...quopri-codec.cpython-36.pyc-2bc284fe23930016 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/quopri.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...quopri.cpython-36.opt-1.pyc-486e874e765380a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/quopri.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...quopri.cpython-36.opt-2.pyc-dcc60d3008bb3c20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/quoprimime.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...quoprimime.cpython-36.opt-1.pyc-8fb2b0ca9c987e3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__pycache__/quoprimime.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...quoprimime.cpython-36.opt-2.pyc-f532c9c7d3fe5916 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/random.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...random.cpython-36.opt-1.pyc-2d7d983a91d18ab5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/random.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...random.cpython-36.opt-2.pyc-aa9d68c189fc629c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/raw_unicode_escape.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...raw-unicode-escape.cpython-36.opt-1.pyc-30613024e5c7cc71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/raw_unicode_escape.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...raw-unicode-escape.cpython-36.opt-2.pyc-099c377f78cd7888 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/raw_unicode_escape.cpython-36.pyc +SPDXID: SPDXRef-File-...raw-unicode-escape.cpython-36.pyc-b36204b6cc3be122 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/cli.cpython-36.pyc +SPDXID: SPDXRef-File-...rct---pycache---cli.cpython-36.pyc-faac9dba8ddd425b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/version.cpython-36.pyc +SPDXID: SPDXRef-File-...rct---pycache---version.cpython-36.pyc-540c552565eb007e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/readline.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...readline.cpython-36m-x86-64-linux-gnu.so-e3f8bd576a4ce957 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/reasons.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...reasons.cpython-36.opt-1.pyc-bdfbefda19d42459 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/zoneinfo/__pycache__/rebuild.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rebuild.cpython-36.opt-1.pyc-0010a8c8a75efe7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/branding/__pycache__/redhat_branding.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...redhat-branding.cpython-36.opt-1.pyc-1003f9e23de65ca7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/branding/__pycache__/redhat_branding.cpython-36.pyc +SPDXID: SPDXRef-File-...redhat-branding.cpython-36.pyc-ddf38d689b02016c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/reduction.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...reduction.cpython-36.opt-1.pyc-c15492e39fc261f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/reduction.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...reduction.cpython-36.opt-2.pyc-c699229b0a0757a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/refactor.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...refactor.cpython-36.opt-1.pyc-f70ae63920793018 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/__pycache__/refactor.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...refactor.cpython-36.opt-2.pyc-9df2f36f0b0339ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/refresh.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...refresh.cpython-36.opt-1.pyc-c187c7c5813d6836 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/register.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...register.cpython-36.opt-1.pyc-135deb21b541851b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/register.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...register.cpython-36.opt-1.pyc-70caa0f18234264e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/register.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...register.cpython-36.opt-1.pyc-9a069c6a427e7189 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/register.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...register.cpython-36.opt-1.pyc-a4307b15c640b3bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/register.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...register.cpython-36.opt-2.pyc-74c4a6806b5f88b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/reinstall.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...reinstall.cpython-36.opt-1.pyc-316d2ad932910939 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/relativedelta.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...relativedelta.cpython-36.opt-1.pyc-1acee4cdb05f9701 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__pycache__/relativedelta.cpython-36.pyc +SPDXID: SPDXRef-File-...relativedelta.cpython-36.pyc-43f015a479dd2f24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/release.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...release.cpython-36.opt-1.pyc-72d05fdf1e08199f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/remove.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...remove.cpython-36.opt-1.pyc-f0ec1b87a2720391 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repoclosure.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repoclosure.cpython-36.opt-1.pyc-891a8434ba383360 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/repodict.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repodict.cpython-36.opt-1.pyc-40b08e4efc1f335a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repodiff.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repodiff.cpython-36.opt-1.pyc-33bf606073528454 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/repofile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repofile.cpython-36.opt-1.pyc-58ca3014af8e77ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repograph.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repograph.cpython-36.opt-1.pyc-fb7ccac3c37abd4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/repolib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repolib.cpython-36.opt-1.pyc-21b7c1aaf4d863e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/repolist.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repolist.cpython-36.opt-1.pyc-0593e160660a364a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/repomanage.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repomanage.cpython-36.opt-1.pyc-809824dd7d330a30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/repoquery.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...repoquery.cpython-36.opt-1.pyc-57eb9537dffa5bb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/reposync.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...reposync.cpython-36.opt-1.pyc-117ff75138b4ed82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/reprlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...reprlib.cpython-36.opt-1.pyc-8277075c83e88d55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/reprlib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...reprlib.cpython-36.opt-2.pyc-0884a22cda576df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/request.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...request.cpython-36.opt-1.pyc-346aa1ac8d816d33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/request.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...request.cpython-36.opt-1.pyc-48d4569ac1ca4001 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/request.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...request.cpython-36.opt-1.pyc-c3d21daa24c951c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/request.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...request.cpython-36.opt-2.pyc-26b3d60f225b66cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/_internal_utils.py +SPDXID: SPDXRef-File-...requests--internal-utils.py-dc2259ba1e4c9127 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...requirements.cpython-36.opt-1.pyc-614e69e60e258007 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...requirements.cpython-36.opt-1.pyc-957f05abd56c590d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-36.pyc +SPDXID: SPDXRef-File-...requirements.cpython-36.pyc-21e8fa6b2562a43f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-36.pyc +SPDXID: SPDXRef-File-...requirements.cpython-36.pyc-5b5e9bcd8e87de29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/requires.txt +SPDXID: SPDXRef-File-...requires.txt-0016d62ca95073aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/requires.txt +SPDXID: SPDXRef-File-...requires.txt-6541fc354c5775c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/requires.txt +SPDXID: SPDXRef-File-...requires.txt-7ce0fd65fc3e83ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/requires.txt +SPDXID: SPDXRef-File-...requires.txt-8daaa7e7679cdbe4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/requires.txt +SPDXID: SPDXRef-File-...requires.txt-a60c35d0dda93d62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/resource_sharer.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...resource-sharer.cpython-36.opt-1.pyc-55c600c318c364fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/resource_sharer.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...resource-sharer.cpython-36.opt-2.pyc-15aacd0abe61885f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/resource_sharer.cpython-36.pyc +SPDXID: SPDXRef-File-...resource-sharer.cpython-36.pyc-f72b49462f486b0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/resource.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...resource.cpython-36m-x86-64-linux-gnu.so-76ad8d297afe2fa8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/response.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...response.cpython-36.opt-1.pyc-2eff7a310bbd21b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__pycache__/response.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...response.cpython-36.opt-1.pyc-99f6f039947476f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/response.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...response.cpython-36.opt-1.pyc-bd2fae1ca6044a19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/response.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...response.cpython-36.opt-2.pyc-9e887b76f4cc0d37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/result.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...result.cpython-36.opt-1.pyc-57225a961956d5be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/result.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...result.cpython-36.opt-2.pyc-5cddc62495f27aee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/results.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...results.cpython-36.opt-1.pyc-24f5d24afb8202e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/rhelentbranding.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rhelentbranding.cpython-36.opt-1.pyc-73fa210d75f2b8dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/rhelentbranding.cpython-36.pyc +SPDXID: SPDXRef-File-...rhelentbranding.cpython-36.pyc-9623069f5ac42d11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/rhelentbranding.py +SPDXID: SPDXRef-File-...rhelentbranding.py-93f779744ed8da78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/rhelproduct.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rhelproduct.cpython-36.opt-1.pyc-f7454225aa29b2d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rhn-migrate-classic-to-rhsm +SPDXID: SPDXRef-File-...rhn-migrate-classic-to-rhsm-579b9abd50ab220c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhn_migrate_classic_to_rhsm.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rhn-migrate-classic-to-rhsm.cpython-36.opt-1.pyc-6f61be425ec76520 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhn_migrate_classic_to_rhsm.cpython-36.pyc +SPDXID: SPDXRef-File-...rhn-migrate-classic-to-rhsm.cpython-36.pyc-0787c7274859b34c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/config.cpython-36.pyc +SPDXID: SPDXRef-File-...rhsm---pycache---config.cpython-36.pyc-b5e89e39c7d75ff5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/https.cpython-36.pyc +SPDXID: SPDXRef-File-...rhsm---pycache---https.cpython-36.pyc-99886d4947b8a20f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__pycache__/utils.cpython-36.pyc +SPDXID: SPDXRef-File-...rhsm---pycache---utils.cpython-36.pyc-44c17ab5e35115a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/debug_commands.py +SPDXID: SPDXRef-File-...rhsm-debug-debug-commands.py-a8a3ab6a478d7eef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsm_debug.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rhsm-debug.cpython-36.opt-1.pyc-e38f31f81b6628f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsm_facts_service.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rhsm-facts-service.cpython-36.opt-1.pyc-a2b44073a80564c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsm_facts_service.cpython-36.pyc +SPDXID: SPDXRef-File-...rhsm-facts-service.cpython-36.pyc-ce32cf8be204e388 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsm_service.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rhsm-service.cpython-36.opt-1.pyc-c048e9203f30eed7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsm_service.cpython-36.pyc +SPDXID: SPDXRef-File-...rhsm-service.cpython-36.pyc-13ec0a41a00fafb3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsmcertd_worker.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rhsmcertd-worker.cpython-36.opt-1.pyc-a26c1e76d1eff394 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rhsmcertd_worker.cpython-36.pyc +SPDXID: SPDXRef-File-...rhsmcertd-worker.cpython-36.pyc-08ff659057f5bcd9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/candlepin/__init__.py +SPDXID: SPDXRef-File-...rhsmlib-candlepin---init--.py-5f2ffb72232b713d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/compat/__init__.py +SPDXID: SPDXRef-File-...rhsmlib-compat---init--.py-3eccd932267e9421 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/compat/subprocess_compat.py +SPDXID: SPDXRef-File-...rhsmlib-compat-subprocess-compat.py-25d33fa528bf485b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/base_object.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-base-object.py-fa1e0f10d949c898 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/constants.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-constants.py-431cdec7050ff25d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/dbus_utils.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-dbus-utils.py-cee386adc41caac1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/exceptions.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-exceptions.py-779313b265ca4802 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/__init__.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-facts---init--.py-0047b422d5bd2532 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/base.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-facts-base.py-68a63769f524c68a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/client.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-facts-client.py-4e42ad7ba5f3aaa2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/facts/constants.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-facts-constants.py-3b500c04541a57ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__init__.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects---init--.py-2f7055bd65d8ed7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/attach.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-attach.py-c060d31cf163a5f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/config.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-config.py-ac2895ac11ec4fb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/consumer.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-consumer.py-17361911eaa6c2cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/entitlement.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-entitlement.py-5cf0caa2a913114f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/main.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-main.py-3afafb1aa1f3f7c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/products.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-products.py-70f8633ac32db2d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/register.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-register.py-9470a73ed5f20dc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/syspurpose.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-syspurpose.py-47169e0fe3a89036 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/unregister.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-objects-unregister.py-4b54bd7974dd09c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/service_wrapper.py +SPDXID: SPDXRef-File-...rhsmlib-dbus-service-wrapper.py-f551eb6de8585d7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/__init__.py +SPDXID: SPDXRef-File-...rhsmlib-facts---init--.py-b7ce3066101bc2d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/cloud_facts.py +SPDXID: SPDXRef-File-...rhsmlib-facts-cloud-facts.py-75d7c3a54a459b13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/collection.py +SPDXID: SPDXRef-File-...rhsmlib-facts-collection.py-f2f4daa1b064e5ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/collector.py +SPDXID: SPDXRef-File-...rhsmlib-facts-collector.py-f6302d2264ff079a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/firmware_info.py +SPDXID: SPDXRef-File-...rhsmlib-facts-firmware-info.py-d26b1f446b726877 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/host_collector.py +SPDXID: SPDXRef-File-...rhsmlib-facts-host-collector.py-94bb70f3c0e98e3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/insights.py +SPDXID: SPDXRef-File-...rhsmlib-facts-insights.py-7e2853d26f834e65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__init__.py +SPDXID: SPDXRef-File-...rhsmlib-services---init--.py-746dc23d2a70c14d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/attach.py +SPDXID: SPDXRef-File-...rhsmlib-services-attach.py-903e42ec4bad746b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/config.py +SPDXID: SPDXRef-File-...rhsmlib-services-config.py-88834236fd3575cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/consumer.py +SPDXID: SPDXRef-File-...rhsmlib-services-consumer.py-a7f58e151d379b5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/entitlement.py +SPDXID: SPDXRef-File-...rhsmlib-services-entitlement.py-844d3186e2904bb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/exceptions.py +SPDXID: SPDXRef-File-...rhsmlib-services-exceptions.py-e26c00113c72e066 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/products.py +SPDXID: SPDXRef-File-...rhsmlib-services-products.py-fe720d912c405170 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/refresh.py +SPDXID: SPDXRef-File-...rhsmlib-services-refresh.py-18d578497eb0f621 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/register.py +SPDXID: SPDXRef-File-...rhsmlib-services-register.py-de4681094d70267f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/syspurpose.py +SPDXID: SPDXRef-File-...rhsmlib-services-syspurpose.py-cef7d8f7f8c5a34f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/unregister.py +SPDXID: SPDXRef-File-...rhsmlib-services-unregister.py-f76cbfbb9e1c3009 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Buenos_Aires +SPDXID: SPDXRef-File-...right-America-Argentina-Buenos-Aires-c1a53a0134fb0f5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Catamarca +SPDXID: SPDXRef-File-...right-America-Argentina-Catamarca-5d93f225e3326eb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/ComodRivadavia +SPDXID: SPDXRef-File-...right-America-Argentina-ComodRivadavia-d2411d71004e83bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Cordoba +SPDXID: SPDXRef-File-...right-America-Argentina-Cordoba-1b56f5a7079ae723 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/La_Rioja +SPDXID: SPDXRef-File-...right-America-Argentina-La-Rioja-6a8c366800cd7aee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Mendoza +SPDXID: SPDXRef-File-...right-America-Argentina-Mendoza-16b9cb50f4dfab9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Rio_Gallegos +SPDXID: SPDXRef-File-...right-America-Argentina-Rio-Gallegos-1a9024ffef609999 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/San_Juan +SPDXID: SPDXRef-File-...right-America-Argentina-San-Juan-6323d4e22deb918b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/San_Luis +SPDXID: SPDXRef-File-...right-America-Argentina-San-Luis-b394ea575daa3e03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Tucuman +SPDXID: SPDXRef-File-...right-America-Argentina-Tucuman-8664aee025a91762 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Ushuaia +SPDXID: SPDXRef-File-...right-America-Argentina-Ushuaia-e30e102c9f3e3d94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Indianapolis +SPDXID: SPDXRef-File-...right-America-Indiana-Indianapolis-df47c9ad0519de3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Petersburg +SPDXID: SPDXRef-File-...right-America-Indiana-Petersburg-a8bfbaa1276152dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Tell_City +SPDXID: SPDXRef-File-...right-America-Indiana-Tell-City-747c746cce9ee41f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Vincennes +SPDXID: SPDXRef-File-...right-America-Indiana-Vincennes-767be5aab3358683 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Kentucky/Louisville +SPDXID: SPDXRef-File-...right-America-Kentucky-Louisville-8cef8ac1eafd310f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Kentucky/Monticello +SPDXID: SPDXRef-File-...right-America-Kentucky-Monticello-67225c702b2b63f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/North_Dakota/Beulah +SPDXID: SPDXRef-File-...right-America-North-Dakota-Beulah-9666a449e658c088 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/North_Dakota/Center +SPDXID: SPDXRef-File-...right-America-North-Dakota-Center-25800cb069d6d1a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/North_Dakota/New_Salem +SPDXID: SPDXRef-File-...right-America-North-Dakota-New-Salem-8a5d80a683b7abe7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/DumontDUrville +SPDXID: SPDXRef-File-...right-Antarctica-DumontDUrville-6ffc9218d4d16457 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/rlcompleter.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rlcompleter.cpython-36.opt-1.pyc-235d6546bd6d6e86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/rlcompleter.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...rlcompleter.cpython-36.opt-2.pyc-6e44cb3abff892f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/robotparser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...robotparser.cpython-36.opt-1.pyc-79c7e633b4af610e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__pycache__/robotparser.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...robotparser.cpython-36.opt-2.pyc-df606fa5ab57ee91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/rot_13.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rot-13.cpython-36.opt-1.pyc-78be170941135a9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/rot_13.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...rot-13.cpython-36.opt-2.pyc-56297d7e19473d69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/rotate.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rotate.cpython-36.opt-1.pyc-c717c2f43a6a3911 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/error.cpython-36.pyc +SPDXID: SPDXRef-File-...rpm---pycache---error.cpython-36.pyc-384d19217f6f9353 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm-4.14.3-py3.6.egg-info +SPDXID: SPDXRef-File-...rpm-4.14.3-py3.6.egg-info-8792eff33893e83c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/alphaev56-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-alphaev56-linux-macros-411b6ebd8b65ece9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/alphaev67-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-alphaev67-linux-macros-e7dce1b9fc2940fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/alphapca56-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-alphapca56-linux-macros-a1624ea903793264 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/armv5tejl-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-armv5tejl-linux-macros-7a8f9d3cde60fc2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mips64r6el-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-mips64r6el-linux-macros-9d2b4debadbebee4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc64iseries-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-ppc64iseries-linux-macros-6d80168f3660ee62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc64pseries-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-ppc64pseries-linux-macros-cf353b9e37e1f754 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppciseries-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-ppciseries-linux-macros-35b6c78b766fe4fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppcpseries-linux/macros +SPDXID: SPDXRef-File-...rpm-platform-ppcpseries-linux-macros-0171aed9205a5f07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/__pycache__/rpmtrans.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...rpmtrans.cpython-36.opt-1.pyc-2eb0dde0f0a0264e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/runner.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...runner.cpython-36.opt-1.pyc-2d8f106fe2a32aa6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/runner.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...runner.cpython-36.opt-2.pyc-aa41ae8b5489e375 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/sandbox.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sandbox.cpython-36.opt-1.pyc-22062d31a229ee12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/sat5to6.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sat5to6.cpython-36.opt-1.pyc-98af6ae139f62d58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/saveopts.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...saveopts.cpython-36.opt-1.pyc-031fff9688bf595d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/handler.cpython-36.pyc +SPDXID: SPDXRef-File-...sax---pycache---handler.cpython-36.pyc-f9878c5d068978e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/saxutils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...saxutils.cpython-36.opt-1.pyc-845571b15f50a4e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/saxutils.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...saxutils.cpython-36.opt-2.pyc-ae4415fa1ff2eb90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/sbcharsetprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sbcharsetprober.cpython-36.opt-1.pyc-3af0d10fdecb79ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/sbcharsetprober.cpython-36.pyc +SPDXID: SPDXRef-File-...sbcharsetprober.cpython-36.pyc-4b7b3d6f50cb5a77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/sbcsgroupprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sbcsgroupprober.cpython-36.opt-1.pyc-9c6398ab3688d09a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/sbcsgroupprober.cpython-36.pyc +SPDXID: SPDXRef-File-...sbcsgroupprober.cpython-36.pyc-fed766634c35c156 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/scanner.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...scanner.cpython-36.opt-1.pyc-dc89d272d0c8c34f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__pycache__/scanner.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...scanner.cpython-36.opt-2.pyc-18d97205f04bd122 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/script_helper.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...script-helper.cpython-36.opt-1.pyc-c07c6b63c941b060 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/script_helper.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...script-helper.cpython-36.opt-2.pyc-2bc7c23acfd81fe0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/script_helper.cpython-36.pyc +SPDXID: SPDXRef-File-...script-helper.cpython-36.pyc-2fec3a8033c7d13b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__init__.py +SPDXID: SPDXRef-File-...scripts---init--.py-8a52f77df222d771 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/rct.cpython-36.pyc +SPDXID: SPDXRef-File-...scripts---pycache---rct.cpython-36.pyc-df5b7e8071eadffe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/package_profile_upload.py +SPDXID: SPDXRef-File-...scripts-package-profile-upload.py-fee00451ce123d99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/rhn_migrate_classic_to_rhsm.py +SPDXID: SPDXRef-File-...scripts-rhn-migrate-classic-to-rhsm.py-2f5b6c1ae2cf30df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/rhsm_debug.py +SPDXID: SPDXRef-File-...scripts-rhsm-debug.py-eda076a202a4a869 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/rhsm_facts_service.py +SPDXID: SPDXRef-File-...scripts-rhsm-facts-service.py-180643e66df8bb79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/rhsm_service.py +SPDXID: SPDXRef-File-...scripts-rhsm-service.py-2102c98d4203bd59 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/rhsmcertd_worker.py +SPDXID: SPDXRef-File-...scripts-rhsmcertd-worker.py-7cd271e1d130f025 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/sat5to6.py +SPDXID: SPDXRef-File-...scripts-sat5to6.py-0574570e9a9ac181 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/subscription_manager_gui.py +SPDXID: SPDXRef-File-...scripts-subscription-manager-gui.py-90eea1f9e61fb49a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/subscription_manager.py +SPDXID: SPDXRef-File-...scripts-subscription-manager.py-02f344850d4012d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/search.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...search.cpython-36.opt-1.pyc-2dd4538300ae1af7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/secrets.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...secrets.cpython-36.opt-1.pyc-5f0a794e71eec41f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/secrets.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...secrets.cpython-36.opt-2.pyc-c5cb0bfcc592bd29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/securetransport.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...securetransport.cpython-36.opt-1.pyc-58f2fc032ffa0fe6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__pycache__/securetransport.cpython-36.pyc +SPDXID: SPDXRef-File-...securetransport.cpython-36.pyc-4d346e40f0429137 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/select.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...select.cpython-36m-x86-64-linux-gnu.so-66ba274b153df873 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/selector_events.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...selector-events.cpython-36.opt-1.pyc-a61a7fcd9bd87b9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/selector_events.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...selector-events.cpython-36.opt-2.pyc-637d777265954940 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/selector_events.cpython-36.pyc +SPDXID: SPDXRef-File-...selector-events.cpython-36.pyc-964975e63f1623a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/selector.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...selector.cpython-36.opt-1.pyc-7ff31d284e9c7aad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/selectors.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...selectors.cpython-36.opt-1.pyc-e1b385dce4320820 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/selectors.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...selectors.cpython-36.opt-2.pyc-6c19d9dd16a418f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/semaphore_tracker.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...semaphore-tracker.cpython-36.opt-1.pyc-d1dd2c28a9195878 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/semaphore_tracker.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...semaphore-tracker.cpython-36.opt-2.pyc-4cefd636bd9c27ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/semaphore_tracker.cpython-36.pyc +SPDXID: SPDXRef-File-...semaphore-tracker.cpython-36.pyc-1c2802a36a54c889 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/server.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...server.cpython-36.opt-1.pyc-2ca93309455ffbbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/server.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...server.cpython-36.opt-1.pyc-5eda238c44bf62c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/server.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...server.cpython-36.opt-1.pyc-779a47a0e07d7f44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/server.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...server.cpython-36.opt-1.pyc-964c2271a5dbc6e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__pycache__/server.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...server.cpython-36.opt-2.pyc-4dc212e9431ffa75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__pycache__/server.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...server.cpython-36.opt-2.pyc-b7ff35df978560a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/service_wrapper.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...service-wrapper.cpython-36.opt-1.pyc-fb44a6ad0b9b90a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__pycache__/service_wrapper.cpython-36.pyc +SPDXID: SPDXRef-File-...service-wrapper.cpython-36.pyc-32d3bf18b2946dde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__pycache__/service.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...service.cpython-36.opt-1.pyc-847673b3ee7d6959 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/sessions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sessions.cpython-36.opt-1.pyc-9d02720bc1b62bb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/setopt.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...setopt.cpython-36.opt-1.pyc-47eb939df05349df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/__init__.py +SPDXID: SPDXRef-File-...setuptools--vendor---init--.py-61edf1bb8c213a01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/utils.py +SPDXID: SPDXRef-File-...setuptools--vendor-packaging-utils.py-fd04a072afe206fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/pyparsing.py +SPDXID: SPDXRef-File-...setuptools--vendor-pyparsing.py-3870856a39832a2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/six.py +SPDXID: SPDXRef-File-...setuptools--vendor-six.py-6add234b33337f12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/python3-wheels/setuptools-39.2.0-py2.py3-none-any.whl +SPDXID: SPDXRef-File-...setuptools-39.2.0-py2.py3-none-any.whl-5a892c898d067ef6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/INSTALLER +SPDXID: SPDXRef-File-...setuptools-39.2.0.dist-info-INSTALLER-be96468f8c8bc395 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/METADATA +SPDXID: SPDXRef-File-...setuptools-39.2.0.dist-info-METADATA-2a25a6c384b85697 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/RECORD +SPDXID: SPDXRef-File-...setuptools-39.2.0.dist-info-RECORD-f4c2df7bbbe4ae48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/WHEEL +SPDXID: SPDXRef-File-...setuptools-39.2.0.dist-info-WHEEL-a20d6b80cae28f3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/zip-safe +SPDXID: SPDXRef-File-...setuptools-39.2.0.dist-info-zip-safe-da00492d0450490d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/archive_util.py +SPDXID: SPDXRef-File-...setuptools-archive-util.py-a3fe3b7d533312f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__init__.py +SPDXID: SPDXRef-File-...setuptools-command---init--.py-5dbbec1dddd97a66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/alias.py +SPDXID: SPDXRef-File-...setuptools-command-alias.py-2b2177a4e012a396 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/bdist_egg.py +SPDXID: SPDXRef-File-...setuptools-command-bdist-egg.py-ed921f5043e1a4a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/bdist_rpm.py +SPDXID: SPDXRef-File-...setuptools-command-bdist-rpm.py-0d854bb8cf714161 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/bdist_wininst.py +SPDXID: SPDXRef-File-...setuptools-command-bdist-wininst.py-01c5e7f0bc962cfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/build_clib.py +SPDXID: SPDXRef-File-...setuptools-command-build-clib.py-b4c878d9b7e7daf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/build_ext.py +SPDXID: SPDXRef-File-...setuptools-command-build-ext.py-3703845066e40f6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/build_py.py +SPDXID: SPDXRef-File-...setuptools-command-build-py.py-e336f581428f49f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/develop.py +SPDXID: SPDXRef-File-...setuptools-command-develop.py-e04a20582440d037 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/dist_info.py +SPDXID: SPDXRef-File-...setuptools-command-dist-info.py-c3f63b9301021b50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/easy_install.py +SPDXID: SPDXRef-File-...setuptools-command-easy-install.py-eb7b9d5c4ccd0dfb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/egg_info.py +SPDXID: SPDXRef-File-...setuptools-command-egg-info.py-cbf6ce2212866df7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/install_egg_info.py +SPDXID: SPDXRef-File-...setuptools-command-install-egg-info.py-f6bc7239c46835a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/install_lib.py +SPDXID: SPDXRef-File-...setuptools-command-install-lib.py-8df91e571a110dc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/install_scripts.py +SPDXID: SPDXRef-File-...setuptools-command-install-scripts.py-33921b1fb561c3ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/install.py +SPDXID: SPDXRef-File-...setuptools-command-install.py-e86d98b7f1ef5eb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/py36compat.py +SPDXID: SPDXRef-File-...setuptools-command-py36compat.py-db5c6c2d8ce9bad3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/register.py +SPDXID: SPDXRef-File-...setuptools-command-register.py-68310a952c36c597 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/rotate.py +SPDXID: SPDXRef-File-...setuptools-command-rotate.py-ff2e4b2b36032308 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/saveopts.py +SPDXID: SPDXRef-File-...setuptools-command-saveopts.py-f343a27f9bb163d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/sdist.py +SPDXID: SPDXRef-File-...setuptools-command-sdist.py-ce165968df4439e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/setopt.py +SPDXID: SPDXRef-File-...setuptools-command-setopt.py-c551de5364d2559a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/test.py +SPDXID: SPDXRef-File-...setuptools-command-test.py-af7f0a12c22b2e0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/upload_docs.py +SPDXID: SPDXRef-File-...setuptools-command-upload-docs.py-e1b4b57d71940825 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/upload.py +SPDXID: SPDXRef-File-...setuptools-command-upload.py-bbdae0fc7c385fdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/extern/__init__.py +SPDXID: SPDXRef-File-...setuptools-extern---init--.py-242cea71a8c8fb3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/package_index.py +SPDXID: SPDXRef-File-...setuptools-package-index.py-7ec9de6d102fd649 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/script (dev).tmpl +SPDXID: SPDXRef-File-...setuptools-script--dev-.tmpl-cfc909e564a65fe3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/ssl_support.py +SPDXID: SPDXRef-File-...setuptools-ssl-support.py-4fd689abdb8b052d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/unicode_utils.py +SPDXID: SPDXRef-File-...setuptools-unicode-utils.py-207e23fd28d96eb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/windows_support.py +SPDXID: SPDXRef-File-...setuptools-windows-support.py-ff6433a2d0595f98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/appdata/dejavu-sans.metainfo.xml +SPDXID: SPDXRef-File-...share-appdata-dejavu-sans.metainfo.xml-fc43020972e78acd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/bash-completion/completions/cal +SPDXID: SPDXRef-File-...share-bash-completion-completions-cal-0ba8029737b4bc05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/chrt +SPDXID: SPDXRef-File-...share-bash-completion-completions-chrt-77459fde93cc87b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/col +SPDXID: SPDXRef-File-...share-bash-completion-completions-col-ef8c3e760c0de377 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/dnf +SPDXID: SPDXRef-File-...share-bash-completion-completions-dnf-53943a082ad0c5d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/fsck +SPDXID: SPDXRef-File-...share-bash-completion-completions-fsck-62bda2762ffcf742 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/ipcs +SPDXID: SPDXRef-File-...share-bash-completion-completions-ipcs-3288c42649695af9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/last +SPDXID: SPDXRef-File-...share-bash-completion-completions-last-4fd8de0c6f5e6405 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/look +SPDXID: SPDXRef-File-...share-bash-completion-completions-look-d7d4ff8bc3a7d3b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/lsns +SPDXID: SPDXRef-File-...share-bash-completion-completions-lsns-ebdd6e63a5a5f598 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/mesg +SPDXID: SPDXRef-File-...share-bash-completion-completions-mesg-b6eed2a89ed498a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/mkfs +SPDXID: SPDXRef-File-...share-bash-completion-completions-mkfs-3c08e35f2aa818b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/more +SPDXID: SPDXRef-File-...share-bash-completion-completions-more-346b462a8f0c914d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/raw +SPDXID: SPDXRef-File-...share-bash-completion-completions-raw-f27956c90fc3c92b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rct +SPDXID: SPDXRef-File-...share-bash-completion-completions-rct-c01267cebf010579 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/rev +SPDXID: SPDXRef-File-...share-bash-completion-completions-rev-29f9c01eab75843a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/su +SPDXID: SPDXRef-File-...share-bash-completion-completions-su-bc68697fda446d5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/ul +SPDXID: SPDXRef-File-...share-bash-completion-completions-ul-df5d691e77bb9704 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/bash-completion/completions/wall +SPDXID: SPDXRef-File-...share-bash-completion-completions-wall-17413ae09c697fde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/bind.txt +SPDXID: SPDXRef-File-...share-crypto-policies-DEFAULT-bind.txt-0cdc9ea98bbd2896 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/java.txt +SPDXID: SPDXRef-File-...share-crypto-policies-DEFAULT-java.txt-52f135410a8fb00c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/krb5.txt +SPDXID: SPDXRef-File-...share-crypto-policies-DEFAULT-krb5.txt-d6b290fd2cfa04cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/DEFAULT/nss.txt +SPDXID: SPDXRef-File-...share-crypto-policies-DEFAULT-nss.txt-36ce92bc8b65a6d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/bind.txt +SPDXID: SPDXRef-File-...share-crypto-policies-EMPTY-bind.txt-07a575d3a9934013 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/gnutls.txt +SPDXID: SPDXRef-File-...share-crypto-policies-EMPTY-gnutls.txt-060406ab506e02eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/java.txt +SPDXID: SPDXRef-File-...share-crypto-policies-EMPTY-java.txt-05ddf5239c9dc576 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/krb5.txt +SPDXID: SPDXRef-File-...share-crypto-policies-EMPTY-krb5.txt-37a804988f11b614 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/libssh.txt +SPDXID: SPDXRef-File-...share-crypto-policies-EMPTY-libssh.txt-3f608bf9d6b95e5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/EMPTY/nss.txt +SPDXID: SPDXRef-File-...share-crypto-policies-EMPTY-nss.txt-79dd90ea75c4e967 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/bind.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FIPS-bind.txt-60761712558c6541 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/gnutls.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FIPS-gnutls.txt-c69ab7663a1a3a0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/java.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FIPS-java.txt-be786f14bc65129e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/krb5.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FIPS-krb5.txt-f9783e10324e53a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/libssh.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FIPS-libssh.txt-a069543ecd45a1f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/openssh.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FIPS-openssh.txt-388a4884f2ec2297 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/openssl.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FIPS-openssl.txt-8360ca87ef3c90aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/bind.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FUTURE-bind.txt-9ee7d28eb60992f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/java.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FUTURE-java.txt-46a14c04ff37b6e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/krb5.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FUTURE-krb5.txt-e74cc380240cd2aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FUTURE/nss.txt +SPDXID: SPDXRef-File-...share-crypto-policies-FUTURE-nss.txt-8a5cf6cc360a04dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/bind.txt +SPDXID: SPDXRef-File-...share-crypto-policies-LEGACY-bind.txt-034d8ada8c368cae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/java.txt +SPDXID: SPDXRef-File-...share-crypto-policies-LEGACY-java.txt-f4d4cee6210df460 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/krb5.txt +SPDXID: SPDXRef-File-...share-crypto-policies-LEGACY-krb5.txt-f6f6de897dd507ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/LEGACY/nss.txt +SPDXID: SPDXRef-File-...share-crypto-policies-LEGACY-nss.txt-464f71da0d9e9823 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/default-config +SPDXID: SPDXRef-File-...share-crypto-policies-default-config-58a363c11dc7b0af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/reload-cmds.sh +SPDXID: SPDXRef-File-...share-crypto-policies-reload-cmds.sh-7336478926a86d5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/doc/dejavu-fonts-common/AUTHORS +SPDXID: SPDXRef-File-...share-doc-dejavu-fonts-common-AUTHORS-7b7879e4d3623757 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/dejavu-fonts-common/LICENSE +SPDXID: SPDXRef-File-...share-doc-dejavu-fonts-common-LICENSE-94c6ad568bd95d10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/dejavu-fonts-common/README +SPDXID: SPDXRef-File-...share-doc-dejavu-fonts-common-README-ba48cce40b2f07f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/iptables/INCOMPATIBILITIES +SPDXID: SPDXRef-File-...share-doc-iptables-INCOMPATIBILITIES-4772ff2675dd3ef8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/openssl/Makefile.certificate +SPDXID: SPDXRef-File-...share-doc-openssl-Makefile.certificate-eec8462583aace83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/factory/etc/pam.d/system-auth +SPDXID: SPDXRef-File-...share-factory-etc-pam.d-system-auth-0625c804045ec446 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/fonts/dejavu/DejaVuSans-Bold.ttf +SPDXID: SPDXRef-File-...share-fonts-dejavu-DejaVuSans-Bold.ttf-acec86fc66246420 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/gnupg/sks-keyservers.netCA.pem +SPDXID: SPDXRef-File-...share-gnupg-sks-keyservers.netCA.pem-fb48183f47c81a54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/audit-libs/lgpl-2.1.txt +SPDXID: SPDXRef-File-...share-licenses-audit-libs-lgpl-2.1.txt-6e91cec0e26f7fb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/cracklib/COPYING.LIB +SPDXID: SPDXRef-File-...share-licenses-cracklib-COPYING.LIB-a225e1610abf435e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/cryptsetup-libs/COPYING +SPDXID: SPDXRef-File-...share-licenses-cryptsetup-libs-COPYING-bec3a053183070e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/cyrus-sasl-lib/COPYING +SPDXID: SPDXRef-File-...share-licenses-cyrus-sasl-lib-COPYING-907fe9822af0db96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/device-mapper/COPYING +SPDXID: SPDXRef-File-...share-licenses-device-mapper-COPYING-a3d1ce96fc761366 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/dnf/PACKAGE-LICENSING +SPDXID: SPDXRef-File-...share-licenses-dnf-PACKAGE-LICENSING-1e6a857e58f598cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/freetype/LICENSE.TXT +SPDXID: SPDXRef-File-...share-licenses-freetype-LICENSE.TXT-3f239787609c008d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/gmp/COPYING.LESSERv3 +SPDXID: SPDXRef-File-...share-licenses-gmp-COPYING.LESSERv3-8883c65e02c6768e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gnutls/COPYING.LESSER +SPDXID: SPDXRef-File-...share-licenses-gnutls-COPYING.LESSER-50a7702dcd35cc6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gpgme/COPYING.LESSER +SPDXID: SPDXRef-File-...share-licenses-gpgme-COPYING.LESSER-aee333a719c63551 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/ima-evm-utils/COPYING +SPDXID: SPDXRef-File-...share-licenses-ima-evm-utils-COPYING-5ec0b2e0e8c79e44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libassuan/COPYING.LIB +SPDXID: SPDXRef-File-...share-licenses-libassuan-COPYING.LIB-835f625ffadbdc80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libcap-ng/COPYING.LIB +SPDXID: SPDXRef-File-...share-licenses-libcap-ng-COPYING.LIB-0f1f32e8196b5670 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgcc/COPYING.RUNTIME +SPDXID: SPDXRef-File-...share-licenses-libgcc-COPYING.RUNTIME-0815da2e94d3741e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgcrypt/COPYING.LIB +SPDXID: SPDXRef-File-...share-licenses-libgcrypt-COPYING.LIB-769ee9977bc7dd64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgpg-error/COPYING +SPDXID: SPDXRef-File-...share-licenses-libgpg-error-COPYING-b3f84ce5234a5d5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libidn2/COPYING.unicode +SPDXID: SPDXRef-File-...share-licenses-libidn2-COPYING.unicode-77f5cdb623a4912c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libksba/COPYING.GPLv2 +SPDXID: SPDXRef-File-...share-licenses-libksba-COPYING.GPLv2-991c75c855bc6374 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libksba/COPYING.GPLv3 +SPDXID: SPDXRef-File-...share-licenses-libksba-COPYING.GPLv3-deea9c69f8d63720 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libksba/COPYING.LGPLv3 +SPDXID: SPDXRef-File-...share-licenses-libksba-COPYING.LGPLv3-c76e89269e08066e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libnfnetlink/COPYING +SPDXID: SPDXRef-File-...share-licenses-libnfnetlink-COPYING-c594affcf4e382a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/libpwquality/COPYING +SPDXID: SPDXRef-File-...share-licenses-libpwquality-COPYING-64f5b8acefc4574f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libsmartcols/COPYING +SPDXID: SPDXRef-File-...share-licenses-libsmartcols-COPYING-2f004eaa79c7fc12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libtasn1/COPYING.LIB +SPDXID: SPDXRef-File-...share-licenses-libtasn1-COPYING.LIB-baab74cf8584e16d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libunistring/COPYING +SPDXID: SPDXRef-File-...share-licenses-libunistring-COPYING-f97b584506063ae3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libuuid/COPYING.BSD-3 +SPDXID: SPDXRef-File-...share-licenses-libuuid-COPYING.BSD-3-a9d6cd0bebc7ae3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libxcrypt/COPYING.LIB +SPDXID: SPDXRef-File-...share-licenses-libxcrypt-COPYING.LIB-623c53f89b47349f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/ncurses-base/COPYING +SPDXID: SPDXRef-File-...share-licenses-ncurses-base-COPYING-1c153009ab95459a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/nettle/COPYING.LESSERv3 +SPDXID: SPDXRef-File-...share-licenses-nettle-COPYING.LESSERv3-5d37d8321938e311 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/openssl-libs/LICENSE +SPDXID: SPDXRef-File-...share-licenses-openssl-libs-LICENSE-bf37d205b33febd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/platform-python/LICENSE +SPDXID: SPDXRef-File-...share-licenses-platform-python-LICENSE-0afb474413d35ee9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python-iniparse/LICENSE +SPDXID: SPDXRef-File-...share-licenses-python-iniparse-LICENSE-d8cbf5f0afad466e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-chardet/LICENSE +SPDXID: SPDXRef-File-...share-licenses-python3-chardet-LICENSE-3616888ab83fbf26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-dbus/COPYING +SPDXID: SPDXRef-File-...share-licenses-python3-dbus-COPYING-0d4ca85d14f4854a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-ethtool/COPYING +SPDXID: SPDXRef-File-...share-licenses-python3-ethtool-COPYING-92ec5d58bd3c8909 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-inotify/COPYING +SPDXID: SPDXRef-File-...share-licenses-python3-inotify-COPYING-96a145b0de26d8c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-libs/LICENSE +SPDXID: SPDXRef-File-...share-licenses-python3-libs-LICENSE-ad2aaba3951726a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-pysocks/LICENSE +SPDXID: SPDXRef-File-...share-licenses-python3-pysocks-LICENSE-0ae6c6deb9ba3195 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/systemd/LICENSE.GPL2 +SPDXID: SPDXRef-File-...share-licenses-systemd-LICENSE.GPL2-3ae2b4f3f4cf3550 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/systemd/LICENSE.LGPL2.1 +SPDXID: SPDXRef-File-...share-licenses-systemd-LICENSE.LGPL2.1-0989646e069c1a21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/util-linux/COPYING.ISC +SPDXID: SPDXRef-File-...share-licenses-util-linux-COPYING.ISC-bcec15e77221b3df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/util-linux/COPYING.UCB +SPDXID: SPDXRef-File-...share-licenses-util-linux-COPYING.UCB-c80a10fac29eb44e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/en_GB/LC_MESSAGES/dnf.mo +SPDXID: SPDXRef-File-...share-locale-en-GB-LC-MESSAGES-dnf.mo-21984a59091bd9b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/man/man5/libnftables-json.5.gz +SPDXID: SPDXRef-File-...share-man-man5-libnftables-json.5.gz-cedf7382ec8d9999 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man5/x509v3_config.5ssl.gz +SPDXID: SPDXRef-File-...share-man-man5-x509v3-config.5ssl.gz-d42aaa2c40fac859 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/EVP_KDF_HKDF.7ssl.gz +SPDXID: SPDXRef-File-...share-man-man7-EVP-KDF-HKDF.7ssl.gz-1765cc2a8a9682bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/EVP_KDF_KRB5KDF.7ssl.gz +SPDXID: SPDXRef-File-...share-man-man7-EVP-KDF-KRB5KDF.7ssl.gz-196bb74b3ab5a352 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/EVP_KDF_PBKDF2.7ssl.gz +SPDXID: SPDXRef-File-...share-man-man7-EVP-KDF-PBKDF2.7ssl.gz-8815451eb114cf5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/EVP_KDF_SCRYPT.7ssl.gz +SPDXID: SPDXRef-File-...share-man-man7-EVP-KDF-SCRYPT.7ssl.gz-1bf3dd4635f779ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/EVP_KDF_SSHKDF.7ssl.gz +SPDXID: SPDXRef-File-...share-man-man7-EVP-KDF-SSHKDF.7ssl.gz-2b00c2eb6b3b9e10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/ossl_store-file.7ssl.gz +SPDXID: SPDXRef-File-...share-man-man7-ossl-store-file.7ssl.gz-101d014d5dabe2c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/ip6tables-restore.8.gz +SPDXID: SPDXRef-File-...share-man-man8-ip6tables-restore.8.gz-3b5e00199539c1f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/iptables-restore.8.gz +SPDXID: SPDXRef-File-...share-man-man8-iptables-restore.8.gz-b2a7980ab4411f02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/iptables-translate.8.gz +SPDXID: SPDXRef-File-...share-man-man8-iptables-translate.8.gz-bf55eb2b6b63c2b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/xtables-monitor.8.gz +SPDXID: SPDXRef-File-...share-man-man8-xtables-monitor.8.gz-9b062c970c82f8ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/xtables-translate.8.gz +SPDXID: SPDXRef-File-...share-man-man8-xtables-translate.8.gz-3e83b3b511f9ad90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/ru/man5/semanage.conf.5.gz +SPDXID: SPDXRef-File-...share-man-ru-man5-semanage.conf.5.gz-512e0fcb47511046 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/systemd/language-fallback-map +SPDXID: SPDXRef-File-...share-systemd-language-fallback-map-1417f84d816493f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-cygwin-native +SPDXID: SPDXRef-File-...share-terminfo-r-rxvt-cygwin-native-7673c83047eb0754 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.putty-256color +SPDXID: SPDXRef-File-...share-terminfo-s-screen.putty-256color-5b9eb5d82d6833c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.vte-256color +SPDXID: SPDXRef-File-...share-terminfo-s-screen.vte-256color-a891f8b91e6c5bad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.xterm-256color +SPDXID: SPDXRef-File-...share-terminfo-s-screen.xterm-256color-7b1bb12b6d43fa2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.xterm-xfree86 +SPDXID: SPDXRef-File-...share-terminfo-s-screen.xterm-xfree86-2a44489eaa479241 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Dar_es_Salaam +SPDXID: SPDXRef-File-...share-zoneinfo-Africa-Dar-es-Salaam-0c4542a2762eb6cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Jujuy +SPDXID: SPDXRef-File-...share-zoneinfo-America-Argentina-Jujuy-e99d04a4108fc549 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Salta +SPDXID: SPDXRef-File-...share-zoneinfo-America-Argentina-Salta-39ff4cc58df91cc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Bahia_Banderas +SPDXID: SPDXRef-File-...share-zoneinfo-America-Bahia-Banderas-6f4b0bcc5dc69ea2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Blanc-Sablon +SPDXID: SPDXRef-File-...share-zoneinfo-America-Blanc-Sablon-be2aab5fba77f017 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Buenos_Aires +SPDXID: SPDXRef-File-...share-zoneinfo-America-Buenos-Aires-6e0f51c99af7b957 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Cambridge_Bay +SPDXID: SPDXRef-File-...share-zoneinfo-America-Cambridge-Bay-ab39d5c4cadd8a6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Campo_Grande +SPDXID: SPDXRef-File-...share-zoneinfo-America-Campo-Grande-c1961cf40430f883 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Ciudad_Juarez +SPDXID: SPDXRef-File-...share-zoneinfo-America-Ciudad-Juarez-a14a1a8ee880b7fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Coral_Harbour +SPDXID: SPDXRef-File-...share-zoneinfo-America-Coral-Harbour-e2bd4642bec00870 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Danmarkshavn +SPDXID: SPDXRef-File-...share-zoneinfo-America-Danmarkshavn-45952689fcaaf592 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Dawson_Creek +SPDXID: SPDXRef-File-...share-zoneinfo-America-Dawson-Creek-135b0b9d550f37cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Knox +SPDXID: SPDXRef-File-...share-zoneinfo-America-Indiana-Knox-74c9534dbe502e9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Marengo +SPDXID: SPDXRef-File-...share-zoneinfo-America-Indiana-Marengo-1c12dcafbbcaec35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Vevay +SPDXID: SPDXRef-File-...share-zoneinfo-America-Indiana-Vevay-ccccc6f2963b38cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Winamac +SPDXID: SPDXRef-File-...share-zoneinfo-America-Indiana-Winamac-181493b59bb4433d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indianapolis +SPDXID: SPDXRef-File-...share-zoneinfo-America-Indianapolis-563968570163fac2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Lower_Princes +SPDXID: SPDXRef-File-...share-zoneinfo-America-Lower-Princes-40fbb205cc3f7307 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Port-au-Prince +SPDXID: SPDXRef-File-...share-zoneinfo-America-Port-au-Prince-6ac5924c5b2e160a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Port_of_Spain +SPDXID: SPDXRef-File-...share-zoneinfo-America-Port-of-Spain-3ff7b89b740b4db9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Punta_Arenas +SPDXID: SPDXRef-File-...share-zoneinfo-America-Punta-Arenas-e4a51840e51e5569 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Rankin_Inlet +SPDXID: SPDXRef-File-...share-zoneinfo-America-Rankin-Inlet-d2418ce6124a2d95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Santa_Isabel +SPDXID: SPDXRef-File-...share-zoneinfo-America-Santa-Isabel-9b819ead05d51da7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Santo_Domingo +SPDXID: SPDXRef-File-...share-zoneinfo-America-Santo-Domingo-b0a2a4533d2a52a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Scoresbysund +SPDXID: SPDXRef-File-...share-zoneinfo-America-Scoresbysund-8d21bdb78c7fcce5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/St_Barthelemy +SPDXID: SPDXRef-File-...share-zoneinfo-America-St-Barthelemy-14e929ab523610e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Swift_Current +SPDXID: SPDXRef-File-...share-zoneinfo-America-Swift-Current-9804a94ed987d37a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Macquarie +SPDXID: SPDXRef-File-...share-zoneinfo-Antarctica-Macquarie-fc01909904cec67f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/South_Pole +SPDXID: SPDXRef-File-...share-zoneinfo-Antarctica-South-Pole-e31ce88f7e5ebf83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/South_Georgia +SPDXID: SPDXRef-File-...share-zoneinfo-Atlantic-South-Georgia-58240b54fa5415af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Broken_Hill +SPDXID: SPDXRef-File-...share-zoneinfo-Australia-Broken-Hill-54baa9ef6dc73dcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Queensland +SPDXID: SPDXRef-File-...share-zoneinfo-Australia-Queensland-e8d347dad156abff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Yancowinna +SPDXID: SPDXRef-File-...share-zoneinfo-Australia-Yancowinna-9f181b4678c0a6e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Bougainville +SPDXID: SPDXRef-File-...share-zoneinfo-Pacific-Bougainville-91f364eb044a3bd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Port_Moresby +SPDXID: SPDXRef-File-...share-zoneinfo-Pacific-Port-Moresby-1e24569b725b1337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Abidjan +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Abidjan-be9602d5270660c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Algiers +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Algiers-874c040608e723f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Blantyre +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Blantyre-1b3f0812e38b039f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Bujumbura +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Bujumbura-20be0341e66ecb55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Casablanca +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Casablanca-5689ca090dc73ad8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Conakry +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Conakry-73a82059b4ccb7f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Djibouti +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Djibouti-a5c0f9a66030b4b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/El_Aaiun +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-El-Aaiun-d23a562f7a9fe131 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Freetown +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Freetown-b4204ba69bbf03ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Gaborone +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Gaborone-9fdb7bd9aeaa8871 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Kampala +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Kampala-518e8d848af181f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Khartoum +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Khartoum-09672186f1989ec2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Kinshasa +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Kinshasa-0448c44282669c29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Libreville +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Libreville-3cf213f2ebcc5860 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Lubumbashi +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Lubumbashi-eda0b3c5282e4cc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Mbabane +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Mbabane-8fbcba5d4035f79c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Mogadishu +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Mogadishu-fb2c9bb793b5d024 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Monrovia +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Monrovia-13428ab314a81843 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Nairobi +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Nairobi-1270c277f39c64c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Ndjamena +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Ndjamena-32e92432b5621c30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Nouakchott +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Nouakchott-410089a062211282 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Porto-Novo +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Porto-Novo-49f4c5f1e125038d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Sao_Tome +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Sao-Tome-759cc5596a953169 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Timbuktu +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Timbuktu-9226033f84f3968c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Tripoli +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Tripoli-af14c0d49b3c42d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Windhoek +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Africa-Windhoek-8c8489fb6b92d4b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Anchorage +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Anchorage-1889d51e039106d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Anguilla +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Anguilla-0863b8d22f369311 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Antigua +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Antigua-1fe3bee8a9a0be0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Araguaina +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Araguaina-166ecb38f0934449 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Asuncion +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Asuncion-f9cb4aefd8bc5ea7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Atikokan +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Atikokan-af0bd8db85abebe2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Barbados +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Barbados-bb0d624da24d7af2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Belize +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Belize-4cf1fefeed4539dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Boa_Vista +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Boa-Vista-19ad88ce04808460 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Bogota +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Bogota-bb34f097c6dd5e52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Cancun +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Cancun-2944a46f237a2f58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Caracas +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Caracas-9723a0cb53918349 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Catamarca +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Catamarca-5f1dd1ffe9560911 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Cayenne +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Cayenne-6dc4802cbfb295f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Cayman +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Cayman-621f3a84d37fb3ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Chicago +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Chicago-a135cd2aea5c7dfb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Chihuahua +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Chihuahua-47776c32c7107e40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Cordoba +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Cordoba-5d6b97aac39d8000 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Creston +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Creston-4d5bb98c8a3cabdd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Cuiaba +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Cuiaba-fce14edc205037c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Curacao +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Curacao-b5e93b27aea825d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Dawson +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Dawson-36a3544aad21684d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Denver +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Denver-0334c5fb0613f662 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Detroit +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Detroit-4b54686d88aba994 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Dominica +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Dominica-5ea1122234e58bda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Edmonton +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Edmonton-19054ffc33cb2615 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Eirunepe +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Eirunepe-07db564c66623e84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Ensenada +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Ensenada-f54fab344c589154 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Fortaleza +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Fortaleza-9f834af7d550cc95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Glace_Bay +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Glace-Bay-e23c4fd0551f370a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Godthab +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Godthab-d060cd22cb24e8dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Goose_Bay +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Goose-Bay-4e8b21ffef0b892e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Grenada +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Grenada-ce9caa7dddcafa4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Guatemala +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Guatemala-457971516c5e6bf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Guayaquil +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Guayaquil-f2cff911ce94b25b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Guyana +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Guyana-6ecc9b08daddbd75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Halifax +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Halifax-bfe7b0706ee007ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Havana +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Havana-cc539447ed2585e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Inuvik +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Inuvik-ebd368215f3b2e2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Iqaluit +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Iqaluit-1485838d7fd16be1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Jamaica +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Jamaica-9da108fc07051013 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Juneau +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Juneau-729069155a0854ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Knox_IN +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Knox-IN-b5f70d422e2a8a13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/La_Paz +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-La-Paz-94971856cad96a01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Maceio +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Maceio-8edf7ba1c193b263 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Managua +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Managua-fe730b4d526c4506 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Manaus +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Manaus-c764be80a800a81e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Marigot +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Marigot-459baa1d89886fe6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Matamoros +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Matamoros-b457cae4774d2f05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Mazatlan +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Mazatlan-52c888e362b7af06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Mendoza +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Mendoza-64d68116d61b8e7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Menominee +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Menominee-2fd706135a597bbe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Merida +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Merida-9515da959b577b5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Miquelon +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Miquelon-b8886359f1c30665 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Moncton +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Moncton-e46c4cdda28861ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Monterrey +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Monterrey-4a9320c352e80802 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Montreal +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Montreal-8b0f2a7543d30938 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Nassau +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Nassau-56aa206dbf9d095a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/New_York +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-New-York-f5ac51c915881bfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Nipigon +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Nipigon-0527cc317d4edf44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Noronha +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Noronha-2761fedb6ceaa6bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Ojinaga +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Ojinaga-07abaf5c5e6b1ba0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Panama +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Panama-3fbf0f3bb41b87a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Phoenix +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Phoenix-5d5dfedd582f2bcf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Recife +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Recife-d69f86f677ca2e22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Regina +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Regina-27293109a82a497b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Resolute +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Resolute-9f7d142ccfe42ce8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Rosario +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Rosario-df280260e03d0676 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Santarem +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Santarem-550f96d9cccec32b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Santiago +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Santiago-728866521cf0232f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Sao_Paulo +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Sao-Paulo-96521f0a833d01b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Shiprock +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Shiprock-5827fa0db3e7db3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/St_Johns +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-St-Johns-2db2f18ced86e58e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/St_Kitts +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-St-Kitts-eace2e5e90e967e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/St_Lucia +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-St-Lucia-80022d8554ad1c7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/St_Thomas +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-St-Thomas-d94511567d1d7619 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Tijuana +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Tijuana-95feec09e783dd86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Toronto +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Toronto-999f27741626236b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Tortola +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Tortola-4546323687b17806 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Vancouver +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Vancouver-543a6f53eb2712f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Virgin +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Virgin-28cc465d9be00d26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Winnipeg +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Winnipeg-f4f761245b0a0122 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Yakutat +SPDXID: SPDXRef-File-...share-zoneinfo-posix-America-Yakutat-6568ad9bed5ae3ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Casey +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Antarctica-Casey-1fdeaeb28ae5a7ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Davis +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Antarctica-Davis-92e4439329f1adcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Mawson +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Antarctica-Mawson-67851b4bc7a5dfae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Palmer +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Antarctica-Palmer-a28f6c7c08a843f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Syowa +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Antarctica-Syowa-33387c86cedea37c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Troll +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Antarctica-Troll-04ce07761b67e05c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Vostok +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Antarctica-Vostok-b333ea710a547821 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Ashkhabad +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Ashkhabad-bb9d937e46c5a7e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Choibalsan +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Choibalsan-f58d50c9d240d99f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Chongqing +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Chongqing-eaa37810c7504ee2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Chungking +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Chungking-2e8b816a94007abd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Famagusta +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Famagusta-37070496a660cfa0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Ho_Chi_Minh +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Ho-Chi-Minh-61408cdbec1c31fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Hong_Kong +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Hong-Kong-e665ed7aa729b7c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Jerusalem +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Jerusalem-acb56c574e17dcec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kamchatka +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Kamchatka-bb66e6d0f67021c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kathmandu +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Kathmandu-687ab76255e18557 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Krasnoyarsk +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Krasnoyarsk-3993d88bd9e85b9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kuala_Lumpur +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Kuala-Lumpur-1faa2019498ea8e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Novokuznetsk +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Novokuznetsk-f8f6e629903c2f82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Novosibirsk +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Novosibirsk-c4c1aac97f0b68bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Phnom_Penh +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Phnom-Penh-ece3088ba8a745a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Pontianak +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Pontianak-5cb16d7c75c34a0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Pyongyang +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Pyongyang-9e55df322adb1568 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Qyzylorda +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Qyzylorda-c0ce30b5bbe8ff3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Samarkand +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Samarkand-9b88f48ab96025e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Singapore +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Singapore-04538cd4160818cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Ulaanbaatar +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Ulaanbaatar-0e88b89b45dd0408 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Ulan_Bator +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Ulan-Bator-5dcc5d362b90abca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Vientiane +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Vientiane-a7eb3af5063e741f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Vladivostok +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Asia-Vladivostok-26e000b41ea077c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Azores +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Atlantic-Azores-4606a90378372651 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Bermuda +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Atlantic-Bermuda-9aec64eb81acfff5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Canary +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Atlantic-Canary-8dca9f956af63d9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Faeroe +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Atlantic-Faeroe-d4b2071ac7788553 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Faroe +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Atlantic-Faroe-4401e2189272667d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Madeira +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Atlantic-Madeira-4a02a63c3228e96c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Stanley +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Atlantic-Stanley-bce2ba69d93a0110 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Currie +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-Currie-3293382a535dbb0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Darwin +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-Darwin-74ac86d6d2e2a308 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Eucla +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-Eucla-abff752269a5aeb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Hobart +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-Hobart-1c507cffa0ad09d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/North +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-North-fe54c8b9bec9b870 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Perth +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-Perth-82fbd3b418545009 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/South +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-South-ab8e8ff22de7ddd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Sydney +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-Sydney-71ee42b213d3102e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/West +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Australia-West-38639a4d80aaafb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Brazil/DeNoronha +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Brazil-DeNoronha-3543d2358113b157 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Atlantic +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Canada-Atlantic-77832710d60503e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Central +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Canada-Central-61eeae6ebde29512 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Eastern +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Canada-Eastern-00942610af2155b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Mountain +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Canada-Mountain-23137ffb4801c106 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Pacific +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Canada-Pacific-bd0b65e7c53cd28c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Chile/Continental +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Chile-Continental-efa323dda7cbe0a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Amsterdam +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Amsterdam-138911b2d7c410c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Andorra +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Andorra-1f3825ed4311a1a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Astrakhan +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Astrakhan-e83a71484783e817 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Belfast +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Belfast-d81caae6307f7fb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Belgrade +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Belgrade-bea63c6e3542d1d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Bratislava +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Bratislava-5e682cbb6fe86598 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Brussels +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Brussels-1fdf69c7ee6c9d45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Bucharest +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Bucharest-e05393ea9f0a112e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Budapest +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Budapest-813fc1b5a61fbea7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Busingen +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Busingen-73621d80c32671a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Chisinau +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Chisinau-9e49f761c2286efc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Copenhagen +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Copenhagen-74ad115417e3300b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Gibraltar +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Gibraltar-44546d00736caae2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Guernsey +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Guernsey-218cd77876dc89dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Helsinki +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Helsinki-21b7e70b0519d87a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Istanbul +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Istanbul-ad61b18372ade36a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Ljubljana +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Ljubljana-39fb474a08323b7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Luxembourg +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Luxembourg-d635f7e531aa5422 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Mariehamn +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Mariehamn-55ca287dcea1ca4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Nicosia +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Nicosia-227ac3c5ee34f234 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Podgorica +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Podgorica-326d2aec816a9baf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/San_Marino +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-San-Marino-7ab964126e69c426 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Sarajevo +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Sarajevo-f3d7989f8cff3cda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Saratov +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Saratov-9e9562006a94d7d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Simferopol +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Simferopol-711fac02f9bc3d2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Stockholm +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Stockholm-802a0b2c2236a5f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Tallinn +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Tallinn-a5dd9413af91a371 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Tiraspol +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Tiraspol-0ad0e811c4325ff7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Ulyanovsk +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Ulyanovsk-eae3e50c71d6e65d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Uzhgorod +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Uzhgorod-627dc0b215bdf2dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Vatican +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Vatican-a4eea54d85ec3b3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Vilnius +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Vilnius-11bb9caacd17fdfb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Volgograd +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Volgograd-ae1a3d9ce6f1e2ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Zaporozhye +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Europe-Zaporozhye-1ba117426930b124 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Christmas +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Indian-Christmas-84c67ef3ae054dee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Kerguelen +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Indian-Kerguelen-d74449d9c487518e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Maldives +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Indian-Maldives-7daffab09ffbe4ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Mauritius +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Indian-Mauritius-9c0fd727bb572bd8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Mayotte +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Indian-Mayotte-dd0f973f64af02d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Reunion +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Indian-Reunion-e8879ecfe722a5d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Mexico/BajaNorte +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Mexico-BajaNorte-66ccb5b20a14ad39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Mexico/BajaSur +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Mexico-BajaSur-f585bbc1724601ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Mexico/General +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Mexico-General-74640391886f889d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Auckland +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Auckland-b57477d6e23b2a7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Chatham +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Chatham-a08485743c80ce59 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Easter +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Easter-280f212716129455 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Enderbury +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Enderbury-7c5a62607aec4366 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Fakaofo +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Fakaofo-ad87177ccc40c266 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Funafuti +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Funafuti-7c436fa92f3ef6b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Galapagos +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Galapagos-a9f79e653817938f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Gambier +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Gambier-24a2d8a183fd8f0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Honolulu +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Honolulu-91af410b0888de03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Johnston +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Johnston-641c3b8d7b1870ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Kanton +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Kanton-6952af4b47a7d774 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Kosrae +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Kosrae-61ca1be299070bcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Kwajalein +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Kwajalein-eeb5db21eebb8bfd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Majuro +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Majuro-48559e907089abfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Marquesas +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Marquesas-3829d92678b111e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Midway +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Midway-14c621c7fa1bef3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Norfolk +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Norfolk-8ea5aad41de30fe5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Noumea +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Noumea-3399b18cf51964e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Pago_Pago +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Pago-Pago-14c508a51e3dcf5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Pitcairn +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Pitcairn-0dbc38d891d3222f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Pohnpei +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Pohnpei-d6abab62e8b463e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Ponape +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Ponape-00d5aa992ab5ac52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Rarotonga +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Rarotonga-1b6cb2a0023f4405 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Saipan +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Saipan-05b662cc02b5fcf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Tahiti +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Tahiti-ae749513dfe213a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Tarawa +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Tarawa-b0b14641995f3853 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Tongatapu +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Tongatapu-65d83d726e0ab93b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Wallis +SPDXID: SPDXRef-File-...share-zoneinfo-posix-Pacific-Wallis-41be956657fbc419 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/East-Indiana +SPDXID: SPDXRef-File-...share-zoneinfo-posix-US-East-Indiana-826f3f150863b0d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Indiana-Starke +SPDXID: SPDXRef-File-...share-zoneinfo-posix-US-Indiana-Starke-74ae0be3628f0cb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Abidjan +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Abidjan-b80d09f476625e85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Algiers +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Algiers-12fca1c5dfb3e0ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Blantyre +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Blantyre-7c2e5d17d2ca288c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Bujumbura +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Bujumbura-d234e8a159f0f620 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Casablanca +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Casablanca-d86026b8ffeac7a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Conakry +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Conakry-c6181ac8d29d4bc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Djibouti +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Djibouti-06d8d5e23c6eed45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/El_Aaiun +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-El-Aaiun-8a5b799dea1999f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Freetown +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Freetown-6a09ed84692c1140 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Gaborone +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Gaborone-a751bafdaf2f817b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Kampala +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Kampala-50826c9cf6c8d4b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Khartoum +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Khartoum-db86bdd03106ae64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Kinshasa +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Kinshasa-06c05a2e48431dc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Libreville +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Libreville-f6273bdbb8823c5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Lubumbashi +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Lubumbashi-232b91931ea9b187 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Mbabane +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Mbabane-7fb105dba71dfdc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Mogadishu +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Mogadishu-685218501c807e12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Monrovia +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Monrovia-1dc0ae255bd1a999 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Nairobi +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Nairobi-4b5ac54d13a2f2be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Ndjamena +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Ndjamena-4664f15c5812c699 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Nouakchott +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Nouakchott-aea73a9ee4ee0c42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Porto-Novo +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Porto-Novo-d4860f946bf2cb53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Sao_Tome +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Sao-Tome-63a6356698e04fb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Timbuktu +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Timbuktu-6ac8d8433baf23d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Tripoli +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Tripoli-e8d9ac88fb1df47e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Windhoek +SPDXID: SPDXRef-File-...share-zoneinfo-right-Africa-Windhoek-eba24c8f704c85c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Anchorage +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Anchorage-62cb06fc6b0a682d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Anguilla +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Anguilla-12291477623e1194 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Antigua +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Antigua-e44e20525adcfe97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Araguaina +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Araguaina-9a7b7f518953e7c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Asuncion +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Asuncion-003c680b42232863 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Atikokan +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Atikokan-eeaa010b839d2301 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Barbados +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Barbados-d13afce26471f9ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Belize +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Belize-6f2fa424f2131790 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Boa_Vista +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Boa-Vista-6bc18dedb1193307 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Bogota +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Bogota-ee03fb9442438dfd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Cancun +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Cancun-9752014b049cfdcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Caracas +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Caracas-72553e16e0c29996 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Catamarca +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Catamarca-ec3dc8716b84df1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Cayenne +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Cayenne-46b32dabc1a26b90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Cayman +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Cayman-4e4e948b3323dabb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Chicago +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Chicago-1466708ee8677185 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Chihuahua +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Chihuahua-8ab3d5e240b04204 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Cordoba +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Cordoba-625b752d60dc5d7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Creston +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Creston-c15a1aff4b4fe84d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Cuiaba +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Cuiaba-f8420aedd589be6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Curacao +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Curacao-28d77943ed7d5f55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Dawson +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Dawson-b550db08d2ef9c3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Denver +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Denver-c07a184605dde1a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Detroit +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Detroit-d8b75f27ecb30e39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Dominica +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Dominica-3be40fab8b7c674f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Edmonton +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Edmonton-04233e5990e60b9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Eirunepe +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Eirunepe-bb11da9be14836b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Ensenada +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Ensenada-07bf407b147f7056 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Fortaleza +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Fortaleza-ea2a9b242568dbe9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Glace_Bay +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Glace-Bay-09f1365a0b22ab6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Godthab +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Godthab-ec1332af1b1eef51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Goose_Bay +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Goose-Bay-530550394b90c5b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Grenada +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Grenada-95bcdfbf5b9a28ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Guatemala +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Guatemala-28de39c895c89696 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Guayaquil +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Guayaquil-f63114445a87743d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Guyana +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Guyana-6621c6b1e67b467c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Halifax +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Halifax-4c6e2bdd27055093 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Havana +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Havana-136ce26a5bb746c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Inuvik +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Inuvik-c939eebf4f29e143 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Iqaluit +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Iqaluit-ab2aa89bb678fb29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Jamaica +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Jamaica-7ead5c2695d88379 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Juneau +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Juneau-b1498e5bd967cafa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Knox_IN +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Knox-IN-b1d3c56b34732dfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/La_Paz +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-La-Paz-48ed9d69971de18e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Maceio +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Maceio-f4dff9266e70b80f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Managua +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Managua-73d73a1ff4d0997b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Manaus +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Manaus-455d4dd192930f02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Marigot +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Marigot-d27b5432fa844884 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Matamoros +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Matamoros-905af1e8fb2e6084 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Mazatlan +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Mazatlan-6eaa123f1066007e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Mendoza +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Mendoza-6366605ff76644e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Menominee +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Menominee-3a4d29594b3a7711 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Merida +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Merida-2aa437bc3c5546b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Miquelon +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Miquelon-6c763a10ad82213c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Moncton +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Moncton-807b283410ef8e15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Monterrey +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Monterrey-7ca2bd0b44f5d554 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Montreal +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Montreal-e2a50172684722e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Nassau +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Nassau-d87d9e8898812e24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/New_York +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-New-York-9f2605a9cf725d57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Nipigon +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Nipigon-1d0b5bc0869a6553 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Noronha +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Noronha-fd943e89303e6bda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Ojinaga +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Ojinaga-7c15d9fd241c93c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Panama +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Panama-6f9dd849e37bf814 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Phoenix +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Phoenix-11a2267bb6bb43f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Recife +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Recife-edde3ac40ad7844b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Regina +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Regina-51c660e06867c76e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Resolute +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Resolute-383792b66183304e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Rosario +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Rosario-844edda99a41b2bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Santarem +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Santarem-6b021e730bae6a29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Santiago +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Santiago-2c452c47894e94b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Sao_Paulo +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Sao-Paulo-b8b93d8a429a388b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Shiprock +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Shiprock-0b708831d48b9ee9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/St_Johns +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-St-Johns-d239912d3debb20c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/St_Kitts +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-St-Kitts-ae98e6776e138180 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/St_Lucia +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-St-Lucia-087ec5a67db9aa91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/St_Thomas +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-St-Thomas-7db9a547a0b01952 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Tijuana +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Tijuana-0423274d67d39fc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Toronto +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Toronto-6ed05552fad28446 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Tortola +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Tortola-a3c5e9d1f7a6ca14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Vancouver +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Vancouver-13e4fda82b5871ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Virgin +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Virgin-88eb52e1cf076e89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Winnipeg +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Winnipeg-f9337571e58918bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Yakutat +SPDXID: SPDXRef-File-...share-zoneinfo-right-America-Yakutat-bb003f47678aa40d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Casey +SPDXID: SPDXRef-File-...share-zoneinfo-right-Antarctica-Casey-54718e9967256a52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Davis +SPDXID: SPDXRef-File-...share-zoneinfo-right-Antarctica-Davis-5eb804051a6161b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Mawson +SPDXID: SPDXRef-File-...share-zoneinfo-right-Antarctica-Mawson-54905f3430f04f41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Palmer +SPDXID: SPDXRef-File-...share-zoneinfo-right-Antarctica-Palmer-9aee00d327d1d44c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Syowa +SPDXID: SPDXRef-File-...share-zoneinfo-right-Antarctica-Syowa-d1a370764ca7856c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Troll +SPDXID: SPDXRef-File-...share-zoneinfo-right-Antarctica-Troll-22d9b6c02588299a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Vostok +SPDXID: SPDXRef-File-...share-zoneinfo-right-Antarctica-Vostok-58ff4f29f91a8f26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Ashkhabad +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Ashkhabad-32c483e27e83a309 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Choibalsan +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Choibalsan-02a98f1ff8b3c8d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Chongqing +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Chongqing-39ea4bda04179646 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Chungking +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Chungking-4ce1cad9a7f5df7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Famagusta +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Famagusta-0fece72f94b879c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Ho_Chi_Minh +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Ho-Chi-Minh-ad07d6993ad6f03b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Hong_Kong +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Hong-Kong-985c6a52e2aa1cdd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Jerusalem +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Jerusalem-c7b597398bf58186 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kamchatka +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Kamchatka-b7cdd6ead0689e94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kathmandu +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Kathmandu-8a5df7e182b0b617 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Krasnoyarsk +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Krasnoyarsk-76ac0f2d0f168ca6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kuala_Lumpur +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Kuala-Lumpur-ee5130b6663a4502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Novokuznetsk +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Novokuznetsk-bc6796345ceefe85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Novosibirsk +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Novosibirsk-db3afa97612c1629 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Phnom_Penh +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Phnom-Penh-8ef08b0e96757f4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Pontianak +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Pontianak-762c830aed047f33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Pyongyang +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Pyongyang-2440bece316519af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Qyzylorda +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Qyzylorda-e05b5dbee2a3bf65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Samarkand +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Samarkand-b84e3047148d0f86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Singapore +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Singapore-b553e03a91486ecf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Ulaanbaatar +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Ulaanbaatar-28bb4ffd64064506 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Ulan_Bator +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Ulan-Bator-765d45eb3e4915c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Vientiane +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Vientiane-9a821800559cfe38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Vladivostok +SPDXID: SPDXRef-File-...share-zoneinfo-right-Asia-Vladivostok-ba30b5ee4bf3045d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Azores +SPDXID: SPDXRef-File-...share-zoneinfo-right-Atlantic-Azores-45c4be6789cc1785 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Bermuda +SPDXID: SPDXRef-File-...share-zoneinfo-right-Atlantic-Bermuda-88048cfe5c84a351 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Canary +SPDXID: SPDXRef-File-...share-zoneinfo-right-Atlantic-Canary-aa9d1491644952cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Faeroe +SPDXID: SPDXRef-File-...share-zoneinfo-right-Atlantic-Faeroe-d8e626f5c3e9adce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Faroe +SPDXID: SPDXRef-File-...share-zoneinfo-right-Atlantic-Faroe-4118b3bccf3ed34e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Madeira +SPDXID: SPDXRef-File-...share-zoneinfo-right-Atlantic-Madeira-41686067185fbac9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Stanley +SPDXID: SPDXRef-File-...share-zoneinfo-right-Atlantic-Stanley-a984459c5e802f4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Currie +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-Currie-20a5e65c7102121e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Darwin +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-Darwin-aca7be17188e3f7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Eucla +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-Eucla-aa559e2c5bf7cd10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Hobart +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-Hobart-b7ed10eb774e2592 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/North +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-North-33fbb27c28647017 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Perth +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-Perth-cd98e6b68f5ff529 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/South +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-South-786fbd4623b07b56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Sydney +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-Sydney-a957118c6a3dfe7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/West +SPDXID: SPDXRef-File-...share-zoneinfo-right-Australia-West-57ea9e932b4568ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Brazil/DeNoronha +SPDXID: SPDXRef-File-...share-zoneinfo-right-Brazil-DeNoronha-a45ffb795c3b1d0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Atlantic +SPDXID: SPDXRef-File-...share-zoneinfo-right-Canada-Atlantic-81e6cdf18244c129 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Central +SPDXID: SPDXRef-File-...share-zoneinfo-right-Canada-Central-ac8184fcb6861c60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Eastern +SPDXID: SPDXRef-File-...share-zoneinfo-right-Canada-Eastern-4bf06a131f0e4ef7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Mountain +SPDXID: SPDXRef-File-...share-zoneinfo-right-Canada-Mountain-4ee8b3f81d98161f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Pacific +SPDXID: SPDXRef-File-...share-zoneinfo-right-Canada-Pacific-b90f9080613fcccf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Chile/Continental +SPDXID: SPDXRef-File-...share-zoneinfo-right-Chile-Continental-8590f5c6f156abc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Amsterdam +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Amsterdam-9c8b07319094ada8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Andorra +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Andorra-740730165141fd6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Astrakhan +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Astrakhan-cac39eebe9577e81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Belfast +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Belfast-dec4d522eb3bebf3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Belgrade +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Belgrade-02e9cbc2469ab58a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Bratislava +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Bratislava-835f25632da51918 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Brussels +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Brussels-60ca8beba4bb2d3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Bucharest +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Bucharest-17307dff268c109a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Budapest +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Budapest-a8b21370f2d5b534 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Busingen +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Busingen-44ae0f2a3f3826ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Chisinau +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Chisinau-1d41f19b565068af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Copenhagen +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Copenhagen-dfc125df56791e97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Gibraltar +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Gibraltar-e1b95b8bd4958133 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Guernsey +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Guernsey-1767270ff8c46a99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Helsinki +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Helsinki-4f70d6951bd368aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Istanbul +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Istanbul-cbdebb38eb204d78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Ljubljana +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Ljubljana-238c0461d1bde231 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Luxembourg +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Luxembourg-ad07402a6e95abe6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Mariehamn +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Mariehamn-c0c7f0920c217d73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Nicosia +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Nicosia-2c4d89205bf81989 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Podgorica +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Podgorica-7df6422067177ef7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/San_Marino +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-San-Marino-44d653fc10d35699 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Sarajevo +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Sarajevo-19827dc071b2aefc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Saratov +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Saratov-05eca189f07bbd5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Simferopol +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Simferopol-0d956028838b4d14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Stockholm +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Stockholm-8baabde4ebd42a26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Tallinn +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Tallinn-981700920bb6ca4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Tiraspol +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Tiraspol-2ebf573548ca15c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Ulyanovsk +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Ulyanovsk-ca530d84f6d17f4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Uzhgorod +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Uzhgorod-178bd0ea370ee3ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Vatican +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Vatican-17da8b75feb3435e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Vilnius +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Vilnius-df9ee898f3ddfdad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Volgograd +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Volgograd-f7404b525877f069 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Zaporozhye +SPDXID: SPDXRef-File-...share-zoneinfo-right-Europe-Zaporozhye-cad0f0a33f2ab0e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Christmas +SPDXID: SPDXRef-File-...share-zoneinfo-right-Indian-Christmas-ec519075f3bdf8d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Kerguelen +SPDXID: SPDXRef-File-...share-zoneinfo-right-Indian-Kerguelen-adac339c5fe796ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Maldives +SPDXID: SPDXRef-File-...share-zoneinfo-right-Indian-Maldives-5dbf504a642cc576 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Mauritius +SPDXID: SPDXRef-File-...share-zoneinfo-right-Indian-Mauritius-d399c8e48ad68bbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Mayotte +SPDXID: SPDXRef-File-...share-zoneinfo-right-Indian-Mayotte-12d19dab29b9555a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Reunion +SPDXID: SPDXRef-File-...share-zoneinfo-right-Indian-Reunion-09dda6cc2a053bf7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Mexico/BajaNorte +SPDXID: SPDXRef-File-...share-zoneinfo-right-Mexico-BajaNorte-930fc6a190a03c44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Mexico/BajaSur +SPDXID: SPDXRef-File-...share-zoneinfo-right-Mexico-BajaSur-ec1a1f251f085d6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Mexico/General +SPDXID: SPDXRef-File-...share-zoneinfo-right-Mexico-General-aba4f4115601b339 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Auckland +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Auckland-7363904f9180f056 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Chatham +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Chatham-fad5a1156e5e40a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Easter +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Easter-a567892ebe04bf2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Enderbury +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Enderbury-db4a84238f4ca2a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Fakaofo +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Fakaofo-388329d0b9ca83f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Funafuti +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Funafuti-ffac86c666b9298e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Galapagos +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Galapagos-bbbe0dc1b0f1b072 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Gambier +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Gambier-1122ee3d3cd41963 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Honolulu +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Honolulu-8649597e0f5497e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Johnston +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Johnston-d4b7e226ec564841 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Kanton +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Kanton-38dbe121a0bcf4b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Kosrae +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Kosrae-cbcc38e041551cad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Kwajalein +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Kwajalein-db6256e8e65940cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Majuro +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Majuro-9d36ee43c31e7ce4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Marquesas +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Marquesas-1ab29fa32ad6dec1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Midway +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Midway-74503a3af204f929 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Norfolk +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Norfolk-e719f705636d263c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Noumea +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Noumea-6fb59859fd17c85a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Pago_Pago +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Pago-Pago-ee7aa1a64911f8de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Pitcairn +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Pitcairn-af5f2b2eecd6ba11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Pohnpei +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Pohnpei-1ec6af00d02c10a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Ponape +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Ponape-01a39b3d385de6de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Rarotonga +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Rarotonga-24997e138e66693d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Saipan +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Saipan-294d1decd61097dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Tahiti +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Tahiti-90922de3e0fff3b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Tarawa +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Tarawa-5f4278105172be5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Tongatapu +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Tongatapu-4863c3759bac9c01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Wallis +SPDXID: SPDXRef-File-...share-zoneinfo-right-Pacific-Wallis-0891036530ab5e84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/East-Indiana +SPDXID: SPDXRef-File-...share-zoneinfo-right-US-East-Indiana-912250e96f3d9099 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Indiana-Starke +SPDXID: SPDXRef-File-...share-zoneinfo-right-US-Indiana-Starke-c1c983a553f31543 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_coredumpctl +SPDXID: SPDXRef-File-...share-zsh-site-functions--coredumpctl-1fe9bfff00e83111 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_hostnamectl +SPDXID: SPDXRef-File-...share-zsh-site-functions--hostnamectl-e2fbfc56d0f42fea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_journalctl +SPDXID: SPDXRef-File-...share-zsh-site-functions--journalctl-cb1da11ec6c255b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_localectl +SPDXID: SPDXRef-File-...share-zsh-site-functions--localectl-35465143acd5d29d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_sd_machines +SPDXID: SPDXRef-File-...share-zsh-site-functions--sd-machines-6d1687fa2784b026 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemctl +SPDXID: SPDXRef-File-...share-zsh-site-functions--systemctl-d20036f360edbe0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemd-run +SPDXID: SPDXRef-File-...share-zsh-site-functions--systemd-run-77c9269387d4b1eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_timedatectl +SPDXID: SPDXRef-File-...share-zsh-site-functions--timedatectl-4a5db7a10ba435fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/sharedctypes.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sharedctypes.cpython-36.opt-1.pyc-19b7a09704366c4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/sharedctypes.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sharedctypes.cpython-36.opt-2.pyc-b51a755b1d57a75f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/sharedctypes.cpython-36.pyc +SPDXID: SPDXRef-File-...sharedctypes.cpython-36.pyc-fa3c2416bfaaac42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shelve.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...shelve.cpython-36.opt-1.pyc-f4d3182856f7d8be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shelve.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...shelve.cpython-36.opt-2.pyc-21b7fbd65fcb57a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jis_2004.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...shift-jis-2004.cpython-36.opt-1.pyc-d3e6332273e4f864 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jis_2004.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...shift-jis-2004.cpython-36.opt-2.pyc-3155bbb4c2427683 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jis_2004.cpython-36.pyc +SPDXID: SPDXRef-File-...shift-jis-2004.cpython-36.pyc-5b590a1a9ec979f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jis.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...shift-jis.cpython-36.opt-1.pyc-c38a15144f86e829 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jis.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...shift-jis.cpython-36.opt-2.pyc-bbd5e77c39423cb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jisx0213.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...shift-jisx0213.cpython-36.opt-1.pyc-1c5639d85e4f5150 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jisx0213.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...shift-jisx0213.cpython-36.opt-2.pyc-7b7688733e9033c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/shift_jisx0213.cpython-36.pyc +SPDXID: SPDXRef-File-...shift-jisx0213.cpython-36.pyc-1cc042796016db4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shutil.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...shutil.cpython-36.opt-1.pyc-8af1e2dd685fadaa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/shutil.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...shutil.cpython-36.opt-2.pyc-7fdd1513b6a58fae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sig/__pycache__/mode.cpython-36.pyc +SPDXID: SPDXRef-File-...sig---pycache---mode.cpython-36.pyc-81479874552ee83e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/signal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...signal.cpython-36.opt-1.pyc-c79968342f25f1b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/signal.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...signal.cpython-36.opt-2.pyc-379d23dedafae02a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/signals.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...signals.cpython-36.opt-1.pyc-bd529ac6eaa7af6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/__pycache__/signals.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...signals.cpython-36.opt-2.pyc-e0b177af2f13918a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/sigsum.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sigsum.cpython-36.opt-1.pyc-2cfbf0eafb825904 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/simple_server.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...simple-server.cpython-36.opt-1.pyc-e5f3f8faa6e2b378 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/simple_server.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...simple-server.cpython-36.opt-2.pyc-243d500c2c992944 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/simple_server.cpython-36.pyc +SPDXID: SPDXRef-File-...simple-server.cpython-36.pyc-736f186640fdf2f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/_dbus_bindings.so +SPDXID: SPDXRef-File-...site-packages--dbus-bindings.so-9713811758c46231 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/_dbus_glib_bindings.so +SPDXID: SPDXRef-File-...site-packages--dbus-glib-bindings.so-9eaf3ff26456fd27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__init__.py +SPDXID: SPDXRef-File-...site-packages-chardet---init--.py-b233a87ee2864281 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/big5freq.py +SPDXID: SPDXRef-File-...site-packages-chardet-big5freq.py-785b984e7f856e1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/big5prober.py +SPDXID: SPDXRef-File-...site-packages-chardet-big5prober.py-d7b24a180a3dcb41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/charsetprober.py +SPDXID: SPDXRef-File-...site-packages-chardet-charsetprober.py-9eccef2b20601d1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/cli/__init__.py +SPDXID: SPDXRef-File-...site-packages-chardet-cli---init--.py-3f2d107ac70bad08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/compat.py +SPDXID: SPDXRef-File-...site-packages-chardet-compat.py-df58ff3dfbebeba8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/cp949prober.py +SPDXID: SPDXRef-File-...site-packages-chardet-cp949prober.py-14ecbdf95218eeca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/enums.py +SPDXID: SPDXRef-File-...site-packages-chardet-enums.py-bd3955311fc5f4f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/escprober.py +SPDXID: SPDXRef-File-...site-packages-chardet-escprober.py-735974d53e13832a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/escsm.py +SPDXID: SPDXRef-File-...site-packages-chardet-escsm.py-b748feed553f81f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/eucjpprober.py +SPDXID: SPDXRef-File-...site-packages-chardet-eucjpprober.py-48833a787df52f17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/euckrfreq.py +SPDXID: SPDXRef-File-...site-packages-chardet-euckrfreq.py-117b36287525800d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/euckrprober.py +SPDXID: SPDXRef-File-...site-packages-chardet-euckrprober.py-23f0db76aab5b05d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/euctwfreq.py +SPDXID: SPDXRef-File-...site-packages-chardet-euctwfreq.py-7836f65cc043a2f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/euctwprober.py +SPDXID: SPDXRef-File-...site-packages-chardet-euctwprober.py-f9504d477e9fa2d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/gb2312freq.py +SPDXID: SPDXRef-File-...site-packages-chardet-gb2312freq.py-f79fc118407a4044 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/gb2312prober.py +SPDXID: SPDXRef-File-...site-packages-chardet-gb2312prober.py-cb6d1eb9bd047000 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/hebrewprober.py +SPDXID: SPDXRef-File-...site-packages-chardet-hebrewprober.py-b8b21a721b4afba9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/jisfreq.py +SPDXID: SPDXRef-File-...site-packages-chardet-jisfreq.py-92478905f1bfa757 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/jpcntx.py +SPDXID: SPDXRef-File-...site-packages-chardet-jpcntx.py-9ce8763aa56e3a0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/langthaimodel.py +SPDXID: SPDXRef-File-...site-packages-chardet-langthaimodel.py-5ec2d1d9b7c66d69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/latin1prober.py +SPDXID: SPDXRef-File-...site-packages-chardet-latin1prober.py-1edc209670cd00a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/mbcssm.py +SPDXID: SPDXRef-File-...site-packages-chardet-mbcssm.py-f3d53240b96685d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/sjisprober.py +SPDXID: SPDXRef-File-...site-packages-chardet-sjisprober.py-bda4de4f382e401c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/utf8prober.py +SPDXID: SPDXRef-File-...site-packages-chardet-utf8prober.py-d7b4ea1ade196b51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/version.py +SPDXID: SPDXRef-File-...site-packages-chardet-version.py-b88482637a98a3b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/__init__.py +SPDXID: SPDXRef-File-...site-packages-cloud-what---init--.py-d4db3db5ae02e54d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/provider.py +SPDXID: SPDXRef-File-...site-packages-cloud-what-provider.py-fbc5c1025ff902e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/cloud_what/setup.py +SPDXID: SPDXRef-File-...site-packages-cloud-what-setup.py-19ffdae447de5c09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/__init__.py +SPDXID: SPDXRef-File-...site-packages-dateutil---init--.py-4aea0d87a0b8aeb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/_common.py +SPDXID: SPDXRef-File-...site-packages-dateutil--common.py-8928a87ee3f4305e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/_version.py +SPDXID: SPDXRef-File-...site-packages-dateutil--version.py-1f3270bd970f50fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/easter.py +SPDXID: SPDXRef-File-...site-packages-dateutil-easter.py-1505fb7a62adb01b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/parser.py +SPDXID: SPDXRef-File-...site-packages-dateutil-parser.py-3a793d83ff7d424a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/rrule.py +SPDXID: SPDXRef-File-...site-packages-dateutil-rrule.py-d75305a28d0d4ddc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__init__.py +SPDXID: SPDXRef-File-...site-packages-dateutil-tz---init--.py-de9175af3627488e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/_common.py +SPDXID: SPDXRef-File-...site-packages-dateutil-tz--common.py-ced2bf09e199500a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/tz.py +SPDXID: SPDXRef-File-...site-packages-dateutil-tz-tz.py-cfa2bd214f6eb5f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/win.py +SPDXID: SPDXRef-File-...site-packages-dateutil-tz-win.py-9b194251bbb719b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tzwin.py +SPDXID: SPDXRef-File-...site-packages-dateutil-tzwin.py-3da187ff439e81a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/__init__.py +SPDXID: SPDXRef-File-...site-packages-dbus---init--.py-0cb76e8e6115c452 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/_compat.py +SPDXID: SPDXRef-File-...site-packages-dbus--compat.py-8da49a558aeeacbe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/connection.py +SPDXID: SPDXRef-File-...site-packages-dbus-connection.py-1a1dae64eb98bc88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/decorators.py +SPDXID: SPDXRef-File-...site-packages-dbus-decorators.py-af076c8ebcd08032 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/exceptions.py +SPDXID: SPDXRef-File-...site-packages-dbus-exceptions.py-12d03fb4782bee36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/gi_service.py +SPDXID: SPDXRef-File-...site-packages-dbus-gi-service.py-475347b057b0c7e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/lowlevel.py +SPDXID: SPDXRef-File-...site-packages-dbus-lowlevel.py-6ff69df20019f4f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/mainloop/glib.py +SPDXID: SPDXRef-File-...site-packages-dbus-mainloop-glib.py-eb2d0ab7041f3b56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/proxies.py +SPDXID: SPDXRef-File-...site-packages-dbus-proxies.py-b5ea491d65f20dc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus/service.py +SPDXID: SPDXRef-File-...site-packages-dbus-service.py-e4813acf4686447f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__init__.py +SPDXID: SPDXRef-File-...site-packages-dnf---init--.py-6c5355011fa0f007 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/callback.py +SPDXID: SPDXRef-File-...site-packages-dnf-callback.py-51e3f5f61a64ac78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/__init__.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli---init--.py-05822f7e73948350 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/aliases.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-aliases.py-6afb6745a44b8a95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/mark.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-commands-mark.py-182a7e144ce5ea52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/swap.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-commands-swap.py-7c0ff1f7784d886c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/demand.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-demand.py-6413ffa869811762 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/format.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-format.py-d3cc77b0e5ef5dba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/main.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-main.py-f8d45a36c9bc659d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/option_parser.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-option-parser.py-6f8bc26954c5b3ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/output.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-output.py-dbf356f8e33953f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/progress.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-progress.py-b9986da631339c8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/term.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-term.py-819a8a5ea7c2b28d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/utils.py +SPDXID: SPDXRef-File-...site-packages-dnf-cli-utils.py-f4a02f4dd2839cc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__init__.py +SPDXID: SPDXRef-File-...site-packages-dnf-conf---init--.py-cee531368360561d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/config.py +SPDXID: SPDXRef-File-...site-packages-dnf-conf-config.py-431e9bcf6e0aa7e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/read.py +SPDXID: SPDXRef-File-...site-packages-dnf-conf-read.py-29e079893cdf14ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/__init__.py +SPDXID: SPDXRef-File-...site-packages-dnf-db---init--.py-2787429543e9434f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/group.py +SPDXID: SPDXRef-File-...site-packages-dnf-db-group.py-6432680506170247 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/db/history.py +SPDXID: SPDXRef-File-...site-packages-dnf-db-history.py-350416ec80f4e833 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/exceptions.py +SPDXID: SPDXRef-File-...site-packages-dnf-exceptions.py-5466e17bb6d714b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/match_counter.py +SPDXID: SPDXRef-File-...site-packages-dnf-match-counter.py-b7062421359d830c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/__init__.py +SPDXID: SPDXRef-File-...site-packages-dnf-module---init--.py-03eeede8583196dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/module/exceptions.py +SPDXID: SPDXRef-File-...site-packages-dnf-module-exceptions.py-df87253c2daa0724 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/persistor.py +SPDXID: SPDXRef-File-...site-packages-dnf-persistor.py-36ef8ff52871a085 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/builddep.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-builddep.py-8182d904fabf2296 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/changelog.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-changelog.py-69709b3c978e7ba7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/copr.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-copr.py-56ff46dbfd2e5613 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/debug.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-debug.py-82c0252439103f56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/download.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-download.py-54a8e2b04d83cfe1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/repodiff.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-repodiff.py-8fad5bd22d8f5bb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/repograph.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-repograph.py-168c2db14e9d296c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/reposync.py +SPDXID: SPDXRef-File-...site-packages-dnf-plugins-reposync.py-a2b94040bb2fa621 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/repodict.py +SPDXID: SPDXRef-File-...site-packages-dnf-repodict.py-bb6a43a34d964abe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__init__.py +SPDXID: SPDXRef-File-...site-packages-dnf-rpm---init--.py-5d5556a6e9691ccd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/connection.py +SPDXID: SPDXRef-File-...site-packages-dnf-rpm-connection.py-d6193c104bfe9f26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/error.py +SPDXID: SPDXRef-File-...site-packages-dnf-rpm-error.py-4c0281d9b80caf39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/miscutils.py +SPDXID: SPDXRef-File-...site-packages-dnf-rpm-miscutils.py-57cbebdce76c91cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/transaction.py +SPDXID: SPDXRef-File-...site-packages-dnf-rpm-transaction.py-4d844137c07f992c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/selector.py +SPDXID: SPDXRef-File-...site-packages-dnf-selector.py-ee7c9fc0a48027cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/transaction_sr.py +SPDXID: SPDXRef-File-...site-packages-dnf-transaction-sr.py-c45158a768e1933f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/transaction.py +SPDXID: SPDXRef-File-...site-packages-dnf-transaction.py-738a20cf4c5f8f96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/__init__.py +SPDXID: SPDXRef-File-...site-packages-dnf-yum---init--.py-5393d7ae28d7212a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/misc.py +SPDXID: SPDXRef-File-...site-packages-dnf-yum-misc.py-e898678338845a39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/rpmtrans.py +SPDXID: SPDXRef-File-...site-packages-dnf-yum-rpmtrans.py-c9f8ccc3a41bdc28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/easy_install.py +SPDXID: SPDXRef-File-...site-packages-easy-install.py-42f389ec35f3ea32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/_constants.py +SPDXID: SPDXRef-File-...site-packages-gi--constants.py-8226255dca65c16b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/_ossighelper.py +SPDXID: SPDXRef-File-...site-packages-gi--ossighelper.py-72ab285a8e0a5070 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/_propertyhelper.py +SPDXID: SPDXRef-File-...site-packages-gi--propertyhelper.py-72897f3152673167 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/_signalhelper.py +SPDXID: SPDXRef-File-...site-packages-gi--signalhelper.py-53b3d080702ae2f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/docstring.py +SPDXID: SPDXRef-File-...site-packages-gi-docstring.py-d18938519e168eec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/__init__.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides---init--.py-7bee3df00f17b653 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/GLib.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides-GLib.py-719484b8576568ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/GObject.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides-GObject.py-cc08ac9cf7589868 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/Gdk.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides-Gdk.py-8979ff1a446a8872 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/Gio.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides-Gio.py-9182aa0368982269 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/Gtk.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides-Gtk.py-38260fa4703685a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/Pango.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides-Pango.py-4a802b75426e372c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/overrides/keysyms.py +SPDXID: SPDXRef-File-...site-packages-gi-overrides-keysyms.py-cf92e44a71621f62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gi/pygtkcompat.py +SPDXID: SPDXRef-File-...site-packages-gi-pygtkcompat.py-5bcce6bcaa91f4f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__init__.py +SPDXID: SPDXRef-File-...site-packages-gpg---init--.py-c3d733d6f371e99a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/callbacks.py +SPDXID: SPDXRef-File-...site-packages-gpg-callbacks.py-e65cbced916bd891 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/create.py +SPDXID: SPDXRef-File-...site-packages-gpg-constants-create.py-b4e61a8720c7daaf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/event.py +SPDXID: SPDXRef-File-...site-packages-gpg-constants-event.py-f4771a9d5d811f44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/keysign.py +SPDXID: SPDXRef-File-...site-packages-gpg-constants-keysign.py-097bb99af31d4f10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/md.py +SPDXID: SPDXRef-File-...site-packages-gpg-constants-md.py-e7120909c9c1cc8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/pk.py +SPDXID: SPDXRef-File-...site-packages-gpg-constants-pk.py-82ecf9c7c90cb292 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/sigsum.py +SPDXID: SPDXRef-File-...site-packages-gpg-constants-sigsum.py-0546504b1c11cdc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/status.py +SPDXID: SPDXRef-File-...site-packages-gpg-constants-status.py-0c56ce162cadf1e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/__init__.py +SPDXID: SPDXRef-File-...site-packages-hawkey---init--.py-715cba7d67cd2ba1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/_hawkey.so +SPDXID: SPDXRef-File-...site-packages-hawkey--hawkey.so-0cccbb25cf7ece8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/hawkey/test/__init__.py +SPDXID: SPDXRef-File-...site-packages-hawkey-test---init--.py-d402b2db36795682 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__init__.py +SPDXID: SPDXRef-File-...site-packages-idna---init--.py-b81d853b86b76688 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/idnadata.py +SPDXID: SPDXRef-File-...site-packages-idna-idnadata.py-99639ddf43521fbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/intranges.py +SPDXID: SPDXRef-File-...site-packages-idna-intranges.py-8c562e1a9d58cf4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/uts46data.py +SPDXID: SPDXRef-File-...site-packages-idna-uts46data.py-137fb2036a30eb3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/__init__.py +SPDXID: SPDXRef-File-...site-packages-iniparse---init--.py-5063a2a1f5310ffe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/compat.py +SPDXID: SPDXRef-File-...site-packages-iniparse-compat.py-12654e2e0bd76f00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/config.py +SPDXID: SPDXRef-File-...site-packages-iniparse-config.py-ae01e426b744ae46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/configparser.py +SPDXID: SPDXRef-File-...site-packages-iniparse-configparser.py-c4508a868fc3cb32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/ini.py +SPDXID: SPDXRef-File-...site-packages-iniparse-ini.py-b312f411894e7d3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse/utils.py +SPDXID: SPDXRef-File-...site-packages-iniparse-utils.py-39443a08a76b3c48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps/__init__.py +SPDXID: SPDXRef-File-...site-packages-libcomps---init--.py-8cf67f3548dd05ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps/_libpycomps.so +SPDXID: SPDXRef-File-...site-packages-libcomps--libpycomps.so-e9eed799c4e41c3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__init__.py +SPDXID: SPDXRef-File-...site-packages-libdnf---init--.py-1f3e59cc675b05f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_common_types.so +SPDXID: SPDXRef-File-...site-packages-libdnf--common-types.so-c6d468b9854a490f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_conf.so +SPDXID: SPDXRef-File-...site-packages-libdnf--conf.so-3fd167c7e4c2cf66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_error.so +SPDXID: SPDXRef-File-...site-packages-libdnf--error.so-dd2ce70ad6a9ed5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_module.so +SPDXID: SPDXRef-File-...site-packages-libdnf--module.so-7fd0f53da4471d4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_repo.so +SPDXID: SPDXRef-File-...site-packages-libdnf--repo.so-7871c95e0e7d2026 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_smartcols.so +SPDXID: SPDXRef-File-...site-packages-libdnf--smartcols.so-745cb2bdd7bb210c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_transaction.so +SPDXID: SPDXRef-File-...site-packages-libdnf--transaction.so-25247fb5d5e7d603 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/_utils.so +SPDXID: SPDXRef-File-...site-packages-libdnf--utils.so-4167da513290feb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/common_types.py +SPDXID: SPDXRef-File-...site-packages-libdnf-common-types.py-6f1099127a2ca0d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/error.py +SPDXID: SPDXRef-File-...site-packages-libdnf-error.py-643468cd4df07ebe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/module.py +SPDXID: SPDXRef-File-...site-packages-libdnf-module.py-9dc08549b3815a4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/smartcols.py +SPDXID: SPDXRef-File-...site-packages-libdnf-smartcols.py-2b2f98c09e70acc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/transaction.py +SPDXID: SPDXRef-File-...site-packages-libdnf-transaction.py-460fbc3f07d5d042 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/utils.py +SPDXID: SPDXRef-File-...site-packages-libdnf-utils.py-94c4eac4dfe87b7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/librepo/__init__.py +SPDXID: SPDXRef-File-...site-packages-librepo---init--.py-77a6b3c15c888046 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/librepo/_librepo.so +SPDXID: SPDXRef-File-...site-packages-librepo--librepo.so-b1fda36290cdc11a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/pygtkcompat/__init__.py +SPDXID: SPDXRef-File-...site-packages-pygtkcompat---init--.py-64c4475f98aded71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__init__.py +SPDXID: SPDXRef-File-...site-packages-rct---init--.py-85f13e3d14c6f8f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/cert_commands.py +SPDXID: SPDXRef-File-...site-packages-rct-cert-commands.py-937f090a2eb521a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/commands.py +SPDXID: SPDXRef-File-...site-packages-rct-commands.py-9e0ca07b091f93d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/manifest_commands.py +SPDXID: SPDXRef-File-...site-packages-rct-manifest-commands.py-18ee3ac68980c797 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/printing.py +SPDXID: SPDXRef-File-...site-packages-rct-printing.py-10214f9bad60846e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__init__.py +SPDXID: SPDXRef-File-...site-packages-requests---init--.py-103baf4281f1f7f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__version__.py +SPDXID: SPDXRef-File-...site-packages-requests---version--.py-9954b72fc7e766a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/adapters.py +SPDXID: SPDXRef-File-...site-packages-requests-adapters.py-d5254ff5f86f0ce3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/api.py +SPDXID: SPDXRef-File-...site-packages-requests-api.py-334b45d5a91d61eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/auth.py +SPDXID: SPDXRef-File-...site-packages-requests-auth.py-c20b0c9cf54c7928 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/certs.py +SPDXID: SPDXRef-File-...site-packages-requests-certs.py-861f957628c434ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/compat.py +SPDXID: SPDXRef-File-...site-packages-requests-compat.py-8a62885b205eb10b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/cookies.py +SPDXID: SPDXRef-File-...site-packages-requests-cookies.py-ed6ba72091c2026f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/exceptions.py +SPDXID: SPDXRef-File-...site-packages-requests-exceptions.py-eb76c3800314c510 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/help.py +SPDXID: SPDXRef-File-...site-packages-requests-help.py-26056549dfa9763f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/hooks.py +SPDXID: SPDXRef-File-...site-packages-requests-hooks.py-43393de073c9ef9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/models.py +SPDXID: SPDXRef-File-...site-packages-requests-models.py-c296cb05da1d9a00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/packages.py +SPDXID: SPDXRef-File-...site-packages-requests-packages.py-720121ab3860f581 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/sessions.py +SPDXID: SPDXRef-File-...site-packages-requests-sessions.py-691a8050eb317b1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/status_codes.py +SPDXID: SPDXRef-File-...site-packages-requests-status-codes.py-dd530938f5685da7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/structures.py +SPDXID: SPDXRef-File-...site-packages-requests-structures.py-23542046f2e11dd9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/utils.py +SPDXID: SPDXRef-File-...site-packages-requests-utils.py-d437bf78b7df01bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/__init__.py +SPDXID: SPDXRef-File-...site-packages-rhsm---init--.py-2ca38ae01e5c8f4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/bitstream.py +SPDXID: SPDXRef-File-...site-packages-rhsm-bitstream.py-a4765f588f5d7897 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/certificate.py +SPDXID: SPDXRef-File-...site-packages-rhsm-certificate.py-a4e189ddac998dc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/certificate2.py +SPDXID: SPDXRef-File-...site-packages-rhsm-certificate2.py-ab1552628de260a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/connection.py +SPDXID: SPDXRef-File-...site-packages-rhsm-connection.py-3f1cc26b529013af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/__init__.py +SPDXID: SPDXRef-File-...site-packages-rhsm-debug---init--.py-3fcbd5443c7f8fc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm_debug/cli.py +SPDXID: SPDXRef-File-...site-packages-rhsm-debug-cli.py-8f4c4e2995a920f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/huffman.py +SPDXID: SPDXRef-File-...site-packages-rhsm-huffman.py-f5c0a5ad07e2b730 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/logutil.py +SPDXID: SPDXRef-File-...site-packages-rhsm-logutil.py-2a10b36747e053f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/m2cryptohttp.py +SPDXID: SPDXRef-File-...site-packages-rhsm-m2cryptohttp.py-36975be258600118 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/m2cryptossl.py +SPDXID: SPDXRef-File-...site-packages-rhsm-m2cryptossl.py-08c311aa8596c8df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/ourjson.py +SPDXID: SPDXRef-File-...site-packages-rhsm-ourjson.py-c8b160808df8a8e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/pathtree.py +SPDXID: SPDXRef-File-...site-packages-rhsm-pathtree.py-0cf57ed033cfd574 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsm/profile.py +SPDXID: SPDXRef-File-...site-packages-rhsm-profile.py-32c453b713b47926 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/__init__.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib---init--.py-1ca1b18a6eb8a387 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/candlepin/api.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-candlepin-api.py-895f6ac94a5f2241 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/__init__.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-dbus---init--.py-15b5fdc781ac1f6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/server.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-dbus-server.py-636fc8fecd2e507c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/util.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-dbus-util.py-61f1ddff176dc560 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/all.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-all.py-c5a3deacab657085 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/cleanup.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-cleanup.py-fb4960d89460175b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/cpuinfo.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-cpuinfo.py-d07aad3916a1b747 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/custom.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-custom.py-6e01cc68d29b34ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/dmiinfo.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-dmiinfo.py-a3a43fdd567524f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/hwprobe.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-hwprobe.py-24b252969bdd0062 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/kpatch.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-kpatch.py-0bbbcf6df73be708 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/facts/virt.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-facts-virt.py-2f782d18ac071c04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/file_monitor.py +SPDXID: SPDXRef-File-...site-packages-rhsmlib-file-monitor.py-b17a556420f5482d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/__init__.py +SPDXID: SPDXRef-File-...site-packages-rpm---init--.py-1e2144e761f14abe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/transaction.py +SPDXID: SPDXRef-File-...site-packages-rpm-transaction.py-12644e8588f79c53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__init__.py +SPDXID: SPDXRef-File-...site-packages-setuptools---init--.py-c5a4bb2af7efe9d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/build_meta.py +SPDXID: SPDXRef-File-...site-packages-setuptools-build-meta.py-fc04745fa4e287e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/config.py +SPDXID: SPDXRef-File-...site-packages-setuptools-config.py-f7313d5d1b853cb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/dep_util.py +SPDXID: SPDXRef-File-...site-packages-setuptools-dep-util.py-5abe4089bf7ffdb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/depends.py +SPDXID: SPDXRef-File-...site-packages-setuptools-depends.py-5fede8f015baecc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/dist.py +SPDXID: SPDXRef-File-...site-packages-setuptools-dist.py-710aaafe8d63d136 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/extension.py +SPDXID: SPDXRef-File-...site-packages-setuptools-extension.py-9abef593e0116135 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/glibc.py +SPDXID: SPDXRef-File-...site-packages-setuptools-glibc.py-c9079f8a7d643294 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/glob.py +SPDXID: SPDXRef-File-...site-packages-setuptools-glob.py-1aa6201e77bc7244 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/launch.py +SPDXID: SPDXRef-File-...site-packages-setuptools-launch.py-8999122ec2cd656c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/lib2to3_ex.py +SPDXID: SPDXRef-File-...site-packages-setuptools-lib2to3-ex.py-755649c78846b274 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/monkey.py +SPDXID: SPDXRef-File-...site-packages-setuptools-monkey.py-ace93678954727d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/msvc.py +SPDXID: SPDXRef-File-...site-packages-setuptools-msvc.py-b82883d5a37fb26b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/namespaces.py +SPDXID: SPDXRef-File-...site-packages-setuptools-namespaces.py-1fb67e475f11f762 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/pep425tags.py +SPDXID: SPDXRef-File-...site-packages-setuptools-pep425tags.py-6b9493eb0bc0137c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/py27compat.py +SPDXID: SPDXRef-File-...site-packages-setuptools-py27compat.py-b3013b87cf63df68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/py31compat.py +SPDXID: SPDXRef-File-...site-packages-setuptools-py31compat.py-b250d8ffcfffe034 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/py33compat.py +SPDXID: SPDXRef-File-...site-packages-setuptools-py33compat.py-3280f492baa90485 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/py36compat.py +SPDXID: SPDXRef-File-...site-packages-setuptools-py36compat.py-52738668879b36ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/sandbox.py +SPDXID: SPDXRef-File-...site-packages-setuptools-sandbox.py-2c76bd9f279009bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/script.tmpl +SPDXID: SPDXRef-File-...site-packages-setuptools-script.tmpl-53363999b650fce6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/site-patch.py +SPDXID: SPDXRef-File-...site-packages-setuptools-site-patch.py-c73aeebc10b99328 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/version.py +SPDXID: SPDXRef-File-...site-packages-setuptools-version.py-51c4b0280afb78a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/wheel.py +SPDXID: SPDXRef-File-...site-packages-setuptools-wheel.py-04b4752a1d746162 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/sockshandler.py +SPDXID: SPDXRef-File-...site-packages-sockshandler.py-cd3fe14814ee7495 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/__init__.py +SPDXID: SPDXRef-File-...site-packages-syspurpose---init--.py-31cd169f5e08bef9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/cli.py +SPDXID: SPDXRef-File-...site-packages-syspurpose-cli.py-6189f593eb0c22fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/files.py +SPDXID: SPDXRef-File-...site-packages-syspurpose-files.py-cfc0a00ca4348a64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/i18n.py +SPDXID: SPDXRef-File-...site-packages-syspurpose-i18n.py-dec7076f1952259c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/main.py +SPDXID: SPDXRef-File-...site-packages-syspurpose-main.py-f38f10ebc17098e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose/utils.py +SPDXID: SPDXRef-File-...site-packages-syspurpose-utils.py-ed3d1e293a2470c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/__init__.py +SPDXID: SPDXRef-File-...site-packages-systemd---init--.py-e8a1a47eabe519ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/daemon.py +SPDXID: SPDXRef-File-...site-packages-systemd-daemon.py-74bb220df3378134 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/journal.py +SPDXID: SPDXRef-File-...site-packages-systemd-journal.py-ee6f43a8668bc749 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/__init__.py +SPDXID: SPDXRef-File-...site-packages-urllib3---init--.py-6e95091b1a74d0fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/_collections.py +SPDXID: SPDXRef-File-...site-packages-urllib3--collections.py-dfe560765f37456e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/connection.py +SPDXID: SPDXRef-File-...site-packages-urllib3-connection.py-ec54e8f24dccd219 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/socks.py +SPDXID: SPDXRef-File-...site-packages-urllib3-contrib-socks.py-caaac9b3160c465f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/exceptions.py +SPDXID: SPDXRef-File-...site-packages-urllib3-exceptions.py-8e2b419d68e43120 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/fields.py +SPDXID: SPDXRef-File-...site-packages-urllib3-fields.py-dace5cb0cad0e0ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/filepost.py +SPDXID: SPDXRef-File-...site-packages-urllib3-filepost.py-d1321068bc21254f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/poolmanager.py +SPDXID: SPDXRef-File-...site-packages-urllib3-poolmanager.py-0bb8ea5c22c6b1d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/request.py +SPDXID: SPDXRef-File-...site-packages-urllib3-request.py-cf60990b84de5105 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/response.py +SPDXID: SPDXRef-File-...site-packages-urllib3-response.py-304b130e478a2dd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__init__.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util---init--.py-02267dabdc6d35af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/queue.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-queue.py-db8d21a104831045 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/request.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-request.py-e7165c770f79b6f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/response.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-response.py-927503beebedcda5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/retry.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-retry.py-2fa73c332acc98a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/ssl_.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-ssl-.py-d2d0f058fe01887b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/timeout.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-timeout.py-8b362937880f2a4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/url.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-url.py-f4fe625f2fae7936 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/wait.py +SPDXID: SPDXRef-File-...site-packages-urllib3-util-wait.py-729bf9a94015367d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/site-patch.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...site-patch.cpython-36.opt-1.pyc-25ccdda4735656e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/DESCRIPTION.rst +SPDXID: SPDXRef-File-...six-1.11.0.dist-info-DESCRIPTION.rst-d26a92ac05c8d2c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/INSTALLER +SPDXID: SPDXRef-File-...six-1.11.0.dist-info-INSTALLER-81e44b435428b1fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/METADATA +SPDXID: SPDXRef-File-...six-1.11.0.dist-info-METADATA-8762652a2c9d4459 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/RECORD +SPDXID: SPDXRef-File-...six-1.11.0.dist-info-RECORD-620d2cb46f556c95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/WHEEL +SPDXID: SPDXRef-File-...six-1.11.0.dist-info-WHEEL-2a0952a3d177f8b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/metadata.json +SPDXID: SPDXRef-File-...six-1.11.0.dist-info-metadata.json-994f66f4e5fca615 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/top_level.txt +SPDXID: SPDXRef-File-...six-1.11.0.dist-info-top-level.txt-e266b79b516ae32c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/sjisprober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sjisprober.cpython-36.opt-1.pyc-64dcd5d6aba17bf0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/smartcols.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...smartcols.cpython-36.opt-1.pyc-98415a4e227cdfda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/smtplib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...smtplib.cpython-36.opt-1.pyc-7ef5365ea420a576 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/smtplib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...smtplib.cpython-36.opt-2.pyc-d753247ccc2b6b2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sndhdr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sndhdr.cpython-36.opt-1.pyc-7163ee0a75c82ada +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sndhdr.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sndhdr.cpython-36.opt-2.pyc-e4a84615f4ac9238 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/socket.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...socket.cpython-36.opt-1.pyc-3b74b5252437c637 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/socket.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...socket.cpython-36.opt-2.pyc-1f56a0eb7b26a4a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/socketserver.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...socketserver.cpython-36.opt-1.pyc-8571f7ec89fb4b5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/socketserver.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...socketserver.cpython-36.opt-2.pyc-ce332ebeb1ffe674 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/socketserver.cpython-36.pyc +SPDXID: SPDXRef-File-...socketserver.cpython-36.pyc-a07a128e051c54be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/sockshandler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sockshandler.cpython-36.opt-1.pyc-7e3b89230e54d32a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/__pycache__/sockshandler.cpython-36.pyc +SPDXID: SPDXRef-File-...sockshandler.cpython-36.pyc-95006809f3b97586 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...specifiers.cpython-36.opt-1.pyc-0f1829c57b3cb260 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...specifiers.cpython-36.opt-1.pyc-b0ccaba183052078 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/spwd.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...spwd.cpython-36m-x86-64-linux-gnu.so-158fc412af1fb7df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_compile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sre-compile.cpython-36.opt-1.pyc-d7472848f809ef50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_compile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sre-compile.cpython-36.opt-2.pyc-7fbb12dd1e56f2af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_constants.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sre-constants.cpython-36.opt-1.pyc-2dd0d413488ff3b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_constants.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sre-constants.cpython-36.opt-2.pyc-38aa3ddd0dcd5a3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_constants.cpython-36.pyc +SPDXID: SPDXRef-File-...sre-constants.cpython-36.pyc-010854311f8dc557 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_parse.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sre-parse.cpython-36.opt-1.pyc-99631b94e0aaeeff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sre_parse.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sre-parse.cpython-36.opt-2.pyc-4a78ffef0fc30195 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/__pycache__/ssl_match_hostname.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ssl-match-hostname.cpython-36.opt-1.pyc-667efab3379c8f98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/__pycache__/ssl_match_hostname.cpython-36.pyc +SPDXID: SPDXRef-File-...ssl-match-hostname.cpython-36.pyc-f997e72ff1073983 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/ssl_support.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...ssl-support.cpython-36.opt-1.pyc-e4c41f623f614d5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/sslproto.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sslproto.cpython-36.opt-1.pyc-0feb70cc39d89987 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/sslproto.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sslproto.cpython-36.opt-2.pyc-1561f2c6f408c54b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/statistics.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...statistics.cpython-36.opt-1.pyc-994ccf13e4ebb0b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/statistics.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...statistics.cpython-36.opt-2.pyc-49c2f883f49c76df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/status_codes.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...status-codes.cpython-36.opt-1.pyc-acffa332919158ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/status_codes.cpython-36.pyc +SPDXID: SPDXRef-File-...status-codes.cpython-36.pyc-3042e71b05ea2857 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/status.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...status.cpython-36.opt-1.pyc-b8b7f3280c874b9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/streams.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...streams.cpython-36.opt-1.pyc-187292eacfb54abb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/streams.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...streams.cpython-36.opt-2.pyc-1deab74a4407de86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/string.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...string.cpython-36.opt-1.pyc-8ea6b04cd7300cf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/string.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...string.cpython-36.opt-2.pyc-77d10b7772f4bd7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/stringprep.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...stringprep.cpython-36.opt-1.pyc-78c660bdc00bc82c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/stringprep.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...stringprep.cpython-36.opt-2.pyc-fb9e11e49cd730e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/struct.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...struct.cpython-36.opt-1.pyc-af63d7294336a840 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/struct.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...struct.cpython-36.opt-2.pyc-1f58f1e8832dbaac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests/__pycache__/structures.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...structures.cpython-36.opt-1.pyc-d7b049ac3e8c7530 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/subject.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...subject.cpython-36.opt-1.pyc-62e71bf69d8e4b81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/compat/__pycache__/subprocess_compat.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...subprocess-compat.cpython-36.opt-1.pyc-a35989dc2e012a1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/compat/__pycache__/subprocess_compat.cpython-36.pyc +SPDXID: SPDXRef-File-...subprocess-compat.cpython-36.pyc-0289633ddc9512a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/subprocess.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...subprocess.cpython-36.opt-1.pyc-37c49b805ca5ac8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/subprocess.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...subprocess.cpython-36.opt-1.pyc-89a9540e813817f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/subprocess.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...subprocess.cpython-36.opt-2.pyc-4a67f198a4910808 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/subprocess.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...subprocess.cpython-36.opt-2.pyc-f1453d22cb51839e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__init__.py +SPDXID: SPDXRef-File-...subscription-manager---init--.py-0c25f94c144ca453 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/action_client.py +SPDXID: SPDXRef-File-...subscription-manager-action-client.py-93a33d2ee640ab9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/api/__init__.py +SPDXID: SPDXRef-File-...subscription-manager-api---init--.py-c6650269d36fe020 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/api/repos.py +SPDXID: SPDXRef-File-...subscription-manager-api-repos.py-5cda6b951de64e38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/async_utils.py +SPDXID: SPDXRef-File-...subscription-manager-async-utils.py-a9c1940e8a90a959 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/base_plugin.py +SPDXID: SPDXRef-File-...subscription-manager-base-plugin.py-0872ea2cd9680f8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/cache.py +SPDXID: SPDXRef-File-...subscription-manager-cache.py-3d9c1354cd5901a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/cert_sorter.py +SPDXID: SPDXRef-File-...subscription-manager-cert-sorter.py-16365fa079b98336 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/certdirectory.py +SPDXID: SPDXRef-File-...subscription-manager-certdirectory.py-72d39653d075928c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/certlib.py +SPDXID: SPDXRef-File-...subscription-manager-certlib.py-914501d72efea9dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/cli.py +SPDXID: SPDXRef-File-...subscription-manager-cli.py-4e5f46db0b6f9a0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/cp_provider.py +SPDXID: SPDXRef-File-...subscription-manager-cp-provider.py-7d19733fa6adeeda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/cpuinfo.py +SPDXID: SPDXRef-File-...subscription-manager-cpuinfo.py-1dc7728868105b76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/entbranding.py +SPDXID: SPDXRef-File-...subscription-manager-entbranding.py-26f6d0b9bbba5465 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/entcertlib.py +SPDXID: SPDXRef-File-...subscription-manager-entcertlib.py-f83f6999df8f91a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/exceptions.py +SPDXID: SPDXRef-File-...subscription-manager-exceptions.py-32955e1920ff2779 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/factlib.py +SPDXID: SPDXRef-File-...subscription-manager-factlib.py-61a68cb908305f1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/facts.py +SPDXID: SPDXRef-File-...subscription-manager-facts.py-d35a2a3b38417599 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/ga_loader.py +SPDXID: SPDXRef-File-...subscription-manager-ga-loader.py-cf08729147545744 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/subscription_manager_gui.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...subscription-manager-gui.cpython-36.opt-1.pyc-a183abdf81ad4ac5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/subscription_manager_gui.cpython-36.pyc +SPDXID: SPDXRef-File-...subscription-manager-gui.cpython-36.pyc-494ecbc8fa8063a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/healinglib.py +SPDXID: SPDXRef-File-...subscription-manager-healinglib.py-25bc94d817160d56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/i18n_argparse.py +SPDXID: SPDXRef-File-...subscription-manager-i18n-argparse.py-a50be5ebef638562 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/i18n.py +SPDXID: SPDXRef-File-...subscription-manager-i18n.py-486b057bc62ef9df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/identity.py +SPDXID: SPDXRef-File-...subscription-manager-identity.py-a4d9db194cee2f34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/injection.py +SPDXID: SPDXRef-File-...subscription-manager-injection.py-88694d235281709e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/injectioninit.py +SPDXID: SPDXRef-File-...subscription-manager-injectioninit.py-2aff206f55e1710a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/isodate.py +SPDXID: SPDXRef-File-...subscription-manager-isodate.py-870d0c4bf3130bf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/jsonwrapper.py +SPDXID: SPDXRef-File-...subscription-manager-jsonwrapper.py-d1a0a1f174c1cad2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/listing.py +SPDXID: SPDXRef-File-...subscription-manager-listing.py-48b675f6f36ea5fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/lock.py +SPDXID: SPDXRef-File-...subscription-manager-lock.py-48a035f7c03a45d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/managercli.py +SPDXID: SPDXRef-File-...subscription-manager-managercli.py-ad6112292d1f4720 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/managerlib.py +SPDXID: SPDXRef-File-...subscription-manager-managerlib.py-13ffefda7e7f7093 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/model/__init__.py +SPDXID: SPDXRef-File-...subscription-manager-model---init--.py-7cfdbd2673666531 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/model/ent_cert.py +SPDXID: SPDXRef-File-...subscription-manager-model-ent-cert.py-e09663414796cc53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/overrides.py +SPDXID: SPDXRef-File-...subscription-manager-overrides.py-aa8be5e35d503a1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/plugins.py +SPDXID: SPDXRef-File-...subscription-manager-plugins.py-06f8a02b3c5f7a24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/printing_utils.py +SPDXID: SPDXRef-File-...subscription-manager-printing-utils.py-41c0c8181316afbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/productid.py +SPDXID: SPDXRef-File-...subscription-manager-productid.py-70eb3bda758c8d37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/reasons.py +SPDXID: SPDXRef-File-...subscription-manager-reasons.py-95429fa2b2869687 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/release.py +SPDXID: SPDXRef-File-...subscription-manager-release.py-1e99a6beb66f4395 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/repofile.py +SPDXID: SPDXRef-File-...subscription-manager-repofile.py-ad489cffe026ecd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/repolib.py +SPDXID: SPDXRef-File-...subscription-manager-repolib.py-1d136a6e2deeba2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/rhelproduct.py +SPDXID: SPDXRef-File-...subscription-manager-rhelproduct.py-b3a32a9b3a3d1b65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/rct.py +SPDXID: SPDXRef-File-...subscription-manager-scripts-rct.py-0071f07382791faf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/syspurposelib.py +SPDXID: SPDXRef-File-...subscription-manager-syspurposelib.py-ffc6fb59f6408e06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/unicode_width.py +SPDXID: SPDXRef-File-...subscription-manager-unicode-width.py-7e66c40f66e3b07f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/utils.py +SPDXID: SPDXRef-File-...subscription-manager-utils.py-41367cb87426cc0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/validity.py +SPDXID: SPDXRef-File-...subscription-manager-validity.py-08273bf4eaae8374 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/version.py +SPDXID: SPDXRef-File-...subscription-manager-version.py-b4207f60f9408492 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/subscription_manager.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...subscription-manager.cpython-36.opt-1.pyc-e071192b03f358e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/subscription-manager.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...subscription-manager.cpython-36.opt-1.pyc-e46c6db1cd165a49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/subscription-manager.cpython-36.pyc +SPDXID: SPDXRef-File-...subscription-manager.cpython-36.pyc-6daf6bfea71f2661 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/scripts/__pycache__/subscription_manager.cpython-36.pyc +SPDXID: SPDXRef-File-...subscription-manager.cpython-36.pyc-7fc024b8a04767ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/substitutions.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...substitutions.cpython-36.opt-1.pyc-6513861e07db070e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/conf/__pycache__/substitutions.cpython-36.pyc +SPDXID: SPDXRef-File-...substitutions.cpython-36.pyc-1b59f1abe691c21f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/symbol.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...symbol.cpython-36.opt-1.pyc-d35dd0d800db4a40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/symbol.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...symbol.cpython-36.opt-2.pyc-1bcc6b4b0e5e96c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/symtable.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...symtable.cpython-36.opt-1.pyc-fe79c415af2a515f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/symtable.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...symtable.cpython-36.opt-2.pyc-23f8aad8654b2fd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/synchronize.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...synchronize.cpython-36.opt-1.pyc-7528e9038e1ee8e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/multiprocessing/__pycache__/synchronize.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...synchronize.cpython-36.opt-2.pyc-87aad1cc07071f3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sysconfig.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sysconfig.cpython-36.opt-1.pyc-60486df9d0ae4301 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/sysconfig.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...sysconfig.cpython-36.opt-1.pyc-b0e55ea3cb813771 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/sysconfig.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sysconfig.cpython-36.opt-2.pyc-67a11e9412b8432f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/sysconfig.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...sysconfig.cpython-36.opt-2.pyc-f62e299ae948f85c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/sysctl.d/10-default-yama-scope.conf +SPDXID: SPDXRef-File-...sysctl.d-10-default-yama-scope.conf-0587b7a6fa24498d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/syslog.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...syslog.cpython-36m-x86-64-linux-gnu.so-053acd63a64a34b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/syspurpose.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...syspurpose.cpython-36.opt-1.pyc-1ce561671cac9149 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/syspurpose.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...syspurpose.cpython-36.opt-1.pyc-97161ed176fcc6b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/syspurposelib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...syspurposelib.cpython-36.opt-1.pyc-5d9e8faff2b65750 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/syspurposelib.cpython-36.pyc +SPDXID: SPDXRef-File-...syspurposelib.cpython-36.pyc-547ecd5af85f2782 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/container-getty@.service +SPDXID: SPDXRef-File-...system-container-getty-.service-d925c64777a431d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dnf-system-upgrade.service +SPDXID: SPDXRef-File-...system-dnf-system-upgrade.service-1edad3b5be6116a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd-parse-etc.service +SPDXID: SPDXRef-File-...system-initrd-parse-etc.service-4382aa0cc5546971 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd-root-device.target +SPDXID: SPDXRef-File-...system-initrd-root-device.target-d708f88d5d949138 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd-switch-root.service +SPDXID: SPDXRef-File-...system-initrd-switch-root.service-513b5afb5d9a4c07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd-switch-root.target +SPDXID: SPDXRef-File-...system-initrd-switch-root.target-6108121cf50b4acb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-preset/90-default.preset +SPDXID: SPDXRef-File-...system-preset-90-default.preset-690de0f76885d281 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-preset/90-systemd.preset +SPDXID: SPDXRef-File-...system-preset-90-systemd.preset-83d366511402e499 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/proc-sys-fs-binfmt_misc.mount +SPDXID: SPDXRef-File-...system-proc-sys-fs-binfmt-misc.mount-a60a432c5131e9b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/sys-fs-fuse-connections.mount +SPDXID: SPDXRef-File-...system-sys-fs-fuse-connections.mount-7505d55c6f6d1ab3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/system-update-cleanup.service +SPDXID: SPDXRef-File-...system-system-update-cleanup.service-337531757dadeb29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/system-update-pre.target +SPDXID: SPDXRef-File-...system-system-update-pre.target-24c9d287a8779847 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-ask-password-wall.path +SPDXID: SPDXRef-File-...system-systemd-ask-password-wall.path-5930683aede7e63e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-coredump@.service +SPDXID: SPDXRef-File-...system-systemd-coredump-.service-cde805e24a050be7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-firstboot.service +SPDXID: SPDXRef-File-...system-systemd-firstboot.service-84f4cf2fb4d518d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-fsck-root.service +SPDXID: SPDXRef-File-...system-systemd-fsck-root.service-a402eb0c4487d10a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-hostnamed.service +SPDXID: SPDXRef-File-...system-systemd-hostnamed.service-0735b674bd619a5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-journal-flush.service +SPDXID: SPDXRef-File-...system-systemd-journal-flush.service-5dbc459ffb27b6bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-journald-audit.socket +SPDXID: SPDXRef-File-...system-systemd-journald-audit.socket-b42c2c7ed70850be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-journald-dev-log.socket +SPDXID: SPDXRef-File-...system-systemd-journald-dev-log.socket-e7f1ff713433aa32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-journald.service +SPDXID: SPDXRef-File-...system-systemd-journald.service-c8b5732aee857ed1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-portabled.service +SPDXID: SPDXRef-File-...system-systemd-portabled.service-791118e71c2593e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-poweroff.service +SPDXID: SPDXRef-File-...system-systemd-poweroff.service-b0d6718250735408 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-resolved.service +SPDXID: SPDXRef-File-...system-systemd-resolved.service-eff9aff1a3cdfec3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-sysusers.service +SPDXID: SPDXRef-File-...system-systemd-sysusers.service-245c72c831cfc04c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-timedated.service +SPDXID: SPDXRef-File-...system-systemd-timedated.service-7edfd6b7035e6f27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-tmpfiles-clean.service +SPDXID: SPDXRef-File-...system-systemd-tmpfiles-clean.service-f2a885a466af9331 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-tmpfiles-clean.timer +SPDXID: SPDXRef-File-...system-systemd-tmpfiles-clean.timer-906b6ba2e3e93165 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-tmpfiles-setup.service +SPDXID: SPDXRef-File-...system-systemd-tmpfiles-setup.service-92b0afc24470b8a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-update-done.service +SPDXID: SPDXRef-File-...system-systemd-update-done.service-e9d1cbac0396836f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-update-utmp.service +SPDXID: SPDXRef-File-...system-systemd-update-utmp.service-071285e817f600ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-user-sessions.service +SPDXID: SPDXRef-File-...system-systemd-user-sessions.service-bec5aa14f768ead9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-volatile-root.service +SPDXID: SPDXRef-File-...system-systemd-volatile-root.service-9ae9648f0538d20c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/system_upgrade.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...system-upgrade.cpython-36.opt-1.pyc-ead57863ff1055db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/system_upgrade.cpython-36.pyc +SPDXID: SPDXRef-File-...system-upgrade.cpython-36.pyc-2b961109804441f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/user-.slice.d/10-defaults.conf +SPDXID: SPDXRef-File-...system-user-.slice.d-10-defaults.conf-24e4fd7613ff4e56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/user-runtime-dir@.service +SPDXID: SPDXRef-File-...system-user-runtime-dir-.service-0b916bcf41ef8191 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dbus-1/system.d/com.redhat.RHSM1.Facts.conf +SPDXID: SPDXRef-File-...system.d-com.redhat.RHSM1.Facts.conf-75131ac648ad9e00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.d/org.freedesktop.locale1.conf +SPDXID: SPDXRef-File-...system.d-org.freedesktop.locale1.conf-680ee49a3e29931b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.d/org.freedesktop.login1.conf +SPDXID: SPDXRef-File-...system.d-org.freedesktop.login1.conf-ab9b545e98b8bc17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.d/org.freedesktop.resolve1.conf +SPDXID: SPDXRef-File-...system.d-org.freedesktop.resolve1.conf-dd279202ea5207f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.d/org.freedesktop.systemd1.conf +SPDXID: SPDXRef-File-...system.d-org.freedesktop.systemd1.conf-5de99c49af05653e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-ask-password-console.path +SPDXID: SPDXRef-File-...systemd-ask-password-console.path-609852362308432d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-ask-password-console.service +SPDXID: SPDXRef-File-...systemd-ask-password-console.service-049444b884732ec2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-ask-password-wall.service +SPDXID: SPDXRef-File-...systemd-ask-password-wall.service-fffc3d60490c63de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.pt_BR.catalog +SPDXID: SPDXRef-File-...systemd-catalog-systemd.pt-BR.catalog-e8623a2f4ddd644b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.zh_CN.catalog +SPDXID: SPDXRef-File-...systemd-catalog-systemd.zh-CN.catalog-e6ea2ec9ebef7b33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/catalog/systemd.zh_TW.catalog +SPDXID: SPDXRef-File-...systemd-catalog-systemd.zh-TW.catalog-304bf1518c99482a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-generators/systemd-debug-generator +SPDXID: SPDXRef-File-...systemd-debug-generator-a1e9f69a948a64d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-generators/systemd-fstab-generator +SPDXID: SPDXRef-File-...systemd-fstab-generator-f0e772ae6bb276c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-generators/systemd-getty-generator +SPDXID: SPDXRef-File-...systemd-getty-generator-ec5ce24802a7909c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-journal-catalog-update.service +SPDXID: SPDXRef-File-...systemd-journal-catalog-update.service-c90c65181d778a80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-machine-id-commit.service +SPDXID: SPDXRef-File-...systemd-machine-id-commit.service-9a5985c5479b5d30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd_python-234-py3.6.egg-info +SPDXID: SPDXRef-File-...systemd-python-234-py3.6.egg-info-bf1d1b655be7d33d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-generators/systemd-rc-local-generator +SPDXID: SPDXRef-File-...systemd-rc-local-generator-f279cc11c0d38f84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/boot-complete.target +SPDXID: SPDXRef-File-...systemd-system-boot-complete.target-561f48bc6de4f911 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/console-getty.service +SPDXID: SPDXRef-File-...systemd-system-console-getty.service-6dcdffb53674b29d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dnf-makecache.service +SPDXID: SPDXRef-File-...systemd-system-dnf-makecache.service-e958fe25483b76cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd-cleanup.service +SPDXID: SPDXRef-File-...systemd-system-initrd-cleanup.service-98c955036b369ed3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd-root-fs.target +SPDXID: SPDXRef-File-...systemd-system-initrd-root-fs.target-970c43a7f0a40c1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/network-online.target +SPDXID: SPDXRef-File-...systemd-system-network-online.target-2a5d2d06acee7994 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/nss-user-lookup.target +SPDXID: SPDXRef-File-...systemd-system-nss-user-lookup.target-f45fd1b432e21c86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/remote-fs-pre.target +SPDXID: SPDXRef-File-...systemd-system-remote-fs-pre.target-409a9a362d25411a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/serial-getty@.service +SPDXID: SPDXRef-File-...systemd-system-serial-getty-.service-3a512a0e654153b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/sys-kernel-config.mount +SPDXID: SPDXRef-File-...systemd-system-sys-kernel-config.mount-61df0f9630a0292b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/sys-kernel-debug.mount +SPDXID: SPDXRef-File-...systemd-system-sys-kernel-debug.mount-583704cf1c33fa6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/system-update.target +SPDXID: SPDXRef-File-...systemd-system-system-update.target-3c30d5a02abd27d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-binfmt.service +SPDXID: SPDXRef-File-...systemd-system-systemd-binfmt.service-e68d70ebd1832f86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-coredump.socket +SPDXID: SPDXRef-File-...systemd-system-systemd-coredump.socket-e8100dfb73a3882b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-exit.service +SPDXID: SPDXRef-File-...systemd-system-systemd-exit.service-9fd00c0c6d21904a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-fsck@.service +SPDXID: SPDXRef-File-...systemd-system-systemd-fsck-.service-0c635f2635f73fc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-halt.service +SPDXID: SPDXRef-File-...systemd-system-systemd-halt.service-15e0d2919b84419d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-initctl.service +SPDXID: SPDXRef-File-...systemd-system-systemd-initctl.service-c6506a31bb2e0e06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-initctl.socket +SPDXID: SPDXRef-File-...systemd-system-systemd-initctl.socket-60faa7e37e0aa090 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-journald.socket +SPDXID: SPDXRef-File-...systemd-system-systemd-journald.socket-23d09b3d8ddf9790 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-kexec.service +SPDXID: SPDXRef-File-...systemd-system-systemd-kexec.service-40b997c61a20afb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-localed.service +SPDXID: SPDXRef-File-...systemd-system-systemd-localed.service-6fc00670696a5c30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-logind.service +SPDXID: SPDXRef-File-...systemd-system-systemd-logind.service-b22b7ff70d84d9b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-pstore.service +SPDXID: SPDXRef-File-...systemd-system-systemd-pstore.service-3206f030e860ce2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-reboot.service +SPDXID: SPDXRef-File-...systemd-system-systemd-reboot.service-dc43b2cdfe0e444d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-sysctl.service +SPDXID: SPDXRef-File-...systemd-system-systemd-sysctl.service-82dcc4fc1402a4a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-generators/systemd-system-update-generator +SPDXID: SPDXRef-File-...systemd-system-update-generator-d8a74b60cb716fb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-generators/systemd-sysv-generator +SPDXID: SPDXRef-File-...systemd-sysv-generator-ed0ba623929e1a46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/test_daemon.py +SPDXID: SPDXRef-File-...systemd-test-test-daemon.py-59a8db29407b77ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/test_journal.py +SPDXID: SPDXRef-File-...systemd-test-test-journal.py-25ef83b25cbe8473 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/test_login.py +SPDXID: SPDXRef-File-...systemd-test-test-login.py-8109fa06d1cbe382 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/systemd-update-utmp-runlevel.service +SPDXID: SPDXRef-File-...systemd-update-utmp-runlevel.service-88c0719d4ccf5f9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/gpg-agent-browser.socket +SPDXID: SPDXRef-File-...systemd-user-gpg-agent-browser.socket-5b8cf2e32b168d0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/gpg-agent-extra.socket +SPDXID: SPDXRef-File-...systemd-user-gpg-agent-extra.socket-a57da2f4b43273ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/graphical-session.target +SPDXID: SPDXRef-File-...systemd-user-graphical-session.target-270ccbdcfee3d637 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user-preset/90-systemd.preset +SPDXID: SPDXRef-File-...systemd-user-preset-90-systemd.preset-9cf3cd66b745bd9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system-generators/systemd-veritysetup-generator +SPDXID: SPDXRef-File-...systemd-veritysetup-generator-eeb848c8fd95c950 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tabnanny.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tabnanny.cpython-36.opt-1.pyc-d43631e5bacd6da3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tabnanny.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...tabnanny.cpython-36.opt-2.pyc-88b283a2427e651a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tarfile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tarfile.cpython-36.opt-1.pyc-4b948fc9ad3d35bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tarfile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...tarfile.cpython-36.opt-2.pyc-5e39902bc6858b8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/telnetlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...telnetlib.cpython-36.opt-1.pyc-000458c29363eed2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/telnetlib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...telnetlib.cpython-36.opt-2.pyc-476f6f433bc114dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tempfile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tempfile.cpython-36.opt-1.pyc-7a0245a5f010546d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tempfile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...tempfile.cpython-36.opt-2.pyc-1f7da75ec427945b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.konsole-256color +SPDXID: SPDXRef-File-...terminfo-s-screen.konsole-256color-2c2a28adc513956a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.mlterm-256color +SPDXID: SPDXRef-File-...terminfo-s-screen.mlterm-256color-1bbcae5aa21e4da1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/termios.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...termios.cpython-36m-x86-64-linux-gnu.so-8ee6723ccfb86510 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/__pycache__/test_daemon.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...test-daemon.cpython-36.opt-1.pyc-95c8d24d38911a0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/__pycache__/test_journal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...test-journal.cpython-36.opt-1.pyc-5952e41acf588361 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/__pycache__/test_journal.cpython-36.pyc +SPDXID: SPDXRef-File-...test-journal.cpython-36.pyc-0c8bb0bc4c3a94b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/systemd/test/__pycache__/test_login.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...test-login.cpython-36.opt-1.pyc-1e42e86cada3746d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/script_helper.py +SPDXID: SPDXRef-File-...test-support-script-helper.py-6cd40ab5f0a00071 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/test_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...test-utils.cpython-36.opt-1.pyc-bf8b99ef3615ee69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/test_utils.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...test-utils.cpython-36.opt-2.pyc-160c3a4a95d7eb35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/testresult.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...testresult.cpython-36.opt-1.pyc-f2e58e239137c3bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/support/__pycache__/testresult.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...testresult.cpython-36.opt-2.pyc-230468b928c01842 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/text_file.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...text-file.cpython-36.opt-1.pyc-865af2b51c7894e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/text_file.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...text-file.cpython-36.opt-2.pyc-db15a9a51a182a30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/textpad.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...textpad.cpython-36.opt-1.pyc-2a2c54fe2c5391df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__pycache__/textpad.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...textpad.cpython-36.opt-2.pyc-576419154bff9910 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/textwrap.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...textwrap.cpython-36.opt-1.pyc-762b79add18a1915 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/textwrap.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...textwrap.cpython-36.opt-2.pyc-46db29fd40da516c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/thread.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...thread.cpython-36.opt-1.pyc-6babbf59ac9210fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/concurrent/futures/__pycache__/thread.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...thread.cpython-36.opt-2.pyc-96a0a96c3b1bf369 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/threading.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...threading.cpython-36.opt-1.pyc-d9bee8988ba6268f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/threading.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...threading.cpython-36.opt-2.pyc-16cd012f62ba4fd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/timeit.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...timeit.cpython-36.opt-1.pyc-659b4911aca7072a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/timeit.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...timeit.cpython-36.opt-2.pyc-f1d364e614be9de0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/timeout.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...timeout.cpython-36.opt-1.pyc-68690eccf6899cf7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/tis_620.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tis-620.cpython-36.opt-1.pyc-17df460f7a5b6d93 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/tis_620.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...tis-620.cpython-36.opt-2.pyc-fd46a7e3a08cd2e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/subscription-manager.conf +SPDXID: SPDXRef-File-...tmpfiles.d-subscription-manager.conf-9468a353bfc942ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/tofu/__pycache__/policy.cpython-36.pyc +SPDXID: SPDXRef-File-...tofu---pycache---policy.cpython-36.pyc-bd017b73cbc27fe8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/tokenize.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tokenize.cpython-36.opt-1.pyc-2663db19c2c79c34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tokenize.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tokenize.cpython-36.opt-1.pyc-cc7fd05f167489d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pgen2/__pycache__/tokenize.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...tokenize.cpython-36.opt-2.pyc-c8171c1b63a8f5a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tokenize.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...tokenize.cpython-36.opt-2.pyc-f99fc27b327d211e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-1ba04c959109600a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-45b1b0808b2235e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-4dea0b623aa55407 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libcomps-0.1.18-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-551e8cb471cc247b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/ethtool-0.14-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-63568b39c201fdcd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/PySocks-1.6.8-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-685ddbd4b437b8ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-95a8ec1d16083751 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/syspurpose-1.28.36-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-99a62eb9d87042c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-9e0fc58cb2f8c225 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-a01aee50d0a8ec7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-a3ab0284f6f24fb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-c8655973f7893a80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-cb4c5d137c1d7af6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/dbus_python-1.2.4-py3.6.egg-info/top_level.txt +SPDXID: SPDXRef-File-...top-level.txt-e58da4bfa855c077 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/__pycache__/topics.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...topics.cpython-36.opt-1.pyc-2ea3cd68468fc2be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc_data/__pycache__/topics.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...topics.cpython-36.opt-2.pyc-55235221e7011f9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/traceback.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...traceback.cpython-36.opt-1.pyc-9441c22585dfb001 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/traceback.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...traceback.cpython-36.opt-2.pyc-8771b3363c4bd035 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tracemalloc.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tracemalloc.cpython-36.opt-1.pyc-7d639a8d13d950f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/tracemalloc.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...tracemalloc.cpython-36.opt-2.pyc-92cf89656d19878c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/transaction_sr.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...transaction-sr.cpython-36.opt-1.pyc-8f91cf46cc23c362 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/transaction_sr.cpython-36.pyc +SPDXID: SPDXRef-File-...transaction-sr.cpython-36.pyc-07583e92e9cb88e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/__pycache__/transaction.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...transaction.cpython-36.opt-1.pyc-07f09f8ae904b2c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rpm/__pycache__/transaction.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...transaction.cpython-36.opt-1.pyc-14d87bb59e07b5e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/rpm/__pycache__/transaction.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...transaction.cpython-36.opt-1.pyc-da247976a74bcc72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/libdnf/__pycache__/transaction.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...transaction.cpython-36.opt-1.pyc-fa9f268233d4dc92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/transports.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...transports.cpython-36.opt-1.pyc-c3a3eef044341764 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/transports.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...transports.cpython-36.opt-2.pyc-cbb2fa4c7c2b75c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/typing.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...typing.cpython-36.opt-1.pyc-a118c74b8120ce17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/typing.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...typing.cpython-36.opt-2.pyc-be03b233286ede83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...tz---pycache-----init--.cpython-36.pyc-42de64ff20bfb1a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/_common.cpython-36.pyc +SPDXID: SPDXRef-File-...tz---pycache----common.cpython-36.pyc-933f3eded4c6bb50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/tz.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...tz---pycache---tz.cpython-36.opt-1.pyc-af87abaeadf4aae3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/tz.cpython-36.pyc +SPDXID: SPDXRef-File-...tz---pycache---tz.cpython-36.pyc-0a202bf29fcc7a18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/tz/__pycache__/win.cpython-36.pyc +SPDXID: SPDXRef-File-...tz---pycache---win.cpython-36.pyc-67ad6ae594a7b943 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/undefined.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...undefined.cpython-36.opt-1.pyc-855b147b35a33bcb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/undefined.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...undefined.cpython-36.opt-2.pyc-4fbdfae2332c2e55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/unicode_escape.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unicode-escape.cpython-36.opt-1.pyc-0f6095ec907bba0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/unicode_escape.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...unicode-escape.cpython-36.opt-2.pyc-152925052088b152 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/unicode_escape.cpython-36.pyc +SPDXID: SPDXRef-File-...unicode-escape.cpython-36.pyc-c3f152591a6e5eeb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/unicode_internal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unicode-internal.cpython-36.opt-1.pyc-0a4fb5930cf584ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/unicode_internal.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...unicode-internal.cpython-36.opt-2.pyc-beac41b1029c3903 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/unicode_internal.cpython-36.pyc +SPDXID: SPDXRef-File-...unicode-internal.cpython-36.pyc-16431ff2395ff240 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/unicode_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unicode-utils.cpython-36.opt-1.pyc-1a2372817271dd4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/unicode_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...unicode-utils.cpython-36.pyc-db3ed331e804d57d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/unicode_width.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unicode-width.cpython-36.opt-1.pyc-0ef32e2a68420933 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/unicode_width.cpython-36.pyc +SPDXID: SPDXRef-File-...unicode-width.cpython-36.pyc-3f0a70cacd650230 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/unicodedata.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...unicodedata.cpython-36m-x86-64-linux-gnu.so-bd590998912b6c9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/universaldetector.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...universaldetector.cpython-36.opt-1.pyc-7effd3b8f9fe4e2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/universaldetector.cpython-36.pyc +SPDXID: SPDXRef-File-...universaldetector.cpython-36.pyc-36367aed0dd54928 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/unix_events.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unix-events.cpython-36.opt-1.pyc-b411e25e9fc5df42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/unix_events.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...unix-events.cpython-36.opt-2.pyc-164c859e3be638d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/unixccompiler.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unixccompiler.cpython-36.opt-1.pyc-907da87f887cd274 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/unixccompiler.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...unixccompiler.cpython-36.opt-2.pyc-9888c65ed6e00abf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/unixccompiler.cpython-36.pyc +SPDXID: SPDXRef-File-...unixccompiler.cpython-36.pyc-e49aff8eccc058f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/services/__pycache__/unregister.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unregister.cpython-36.opt-1.pyc-4489462acc30aef4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rhsmlib/dbus/objects/__pycache__/unregister.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...unregister.cpython-36.opt-1.pyc-c5b9f2bd23779761 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/__pycache__/update-crypto-policies.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...update-crypto-policies.cpython-36.opt-1.pyc-fa0ac0fa4cdc142a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/python/__pycache__/update-crypto-policies.cpython-36.pyc +SPDXID: SPDXRef-File-...update-crypto-policies.cpython-36.pyc-df8668f1a87096ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/updateinfo.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...updateinfo.cpython-36.opt-1.pyc-0ddec09c228ebb1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/upgrade.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...upgrade.cpython-36.opt-1.pyc-fbb33fc7c5565f1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/upgrademinimal.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...upgrademinimal.cpython-36.opt-1.pyc-aed128b02c909830 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/cli/commands/__pycache__/upgrademinimal.cpython-36.pyc +SPDXID: SPDXRef-File-...upgrademinimal.cpython-36.pyc-9d753bbf4831d481 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/upload_docs.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...upload-docs.cpython-36.opt-1.pyc-c82453389888a221 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/upload-profile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...upload-profile.cpython-36.opt-1.pyc-e373c8c611ec4ae2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf-plugins/__pycache__/upload-profile.cpython-36.pyc +SPDXID: SPDXRef-File-...upload-profile.cpython-36.pyc-285dee68c6fc3fa8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/upload.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...upload.cpython-36.opt-1.pyc-213cded80e613321 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/command/__pycache__/upload.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...upload.cpython-36.opt-1.pyc-c9bcd450bf7bf366 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/command/__pycache__/upload.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...upload.cpython-36.opt-2.pyc-b29186e149c69bfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/PKG-INFO +SPDXID: SPDXRef-File-...urllib3-1.24.2-py3.6.egg-info-PKG-INFO-4731163b373c6e55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/connectionpool.py +SPDXID: SPDXRef-File-...urllib3-connectionpool.py-9317658d5b2ffb6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/__init__.py +SPDXID: SPDXRef-File-...urllib3-contrib---init--.py-835c5cc130729dc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/_appengine_environ.py +SPDXID: SPDXRef-File-...urllib3-contrib--appengine-environ.py-b35ef51c10f79da5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/appengine.py +SPDXID: SPDXRef-File-...urllib3-contrib-appengine.py-d6e6e53a4e56509c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/ntlmpool.py +SPDXID: SPDXRef-File-...urllib3-contrib-ntlmpool.py-0b903a7d57fadfca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/pyopenssl.py +SPDXID: SPDXRef-File-...urllib3-contrib-pyopenssl.py-95621e83ea6a51ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/contrib/securetransport.py +SPDXID: SPDXRef-File-...urllib3-contrib-securetransport.py-a0acee4743b80f31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/__init__.py +SPDXID: SPDXRef-File-...urllib3-packages---init--.py-c5b9d6441926a6fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/backports/__init__.py +SPDXID: SPDXRef-File-...urllib3-packages-backports---init--.py-01edf366734c6204 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/backports/makefile.py +SPDXID: SPDXRef-File-...urllib3-packages-backports-makefile.py-fb8e46c4274bf84e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/packages/ssl_match_hostname.py +SPDXID: SPDXRef-File-...urllib3-packages-ssl-match-hostname.py-d5ea983e3423d32c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/connection.py +SPDXID: SPDXRef-File-...urllib3-util-connection.py-4e4536c8b7a0aec9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/graphical-session-pre.target +SPDXID: SPDXRef-File-...user-graphical-session-pre.target-1839e0124df89ef4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/systemd-tmpfiles-clean.service +SPDXID: SPDXRef-File-...user-systemd-tmpfiles-clean.service-9259040d53a74882 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/systemd-tmpfiles-clean.timer +SPDXID: SPDXRef-File-...user-systemd-tmpfiles-clean.timer-b36e1aa87fd756a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/systemd-tmpfiles-setup.service +SPDXID: SPDXRef-File-...user-systemd-tmpfiles-setup.service-2217457b5fcc2c41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gdb/auto-load/usr/lib64/libstdc++.so.6.0.25-gdb.py +SPDXID: SPDXRef-File-...usr-lib64-libstdc--.so.6.0.25-gdb.py-4e3b9f530c1e6f6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16_be.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf-16-be.cpython-36.opt-1.pyc-7636dc4eb23f4af7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16_be.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...utf-16-be.cpython-36.opt-2.pyc-29d9c212255986d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16_le.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf-16-le.cpython-36.opt-1.pyc-8622b4a6aa3cc1f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16_le.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...utf-16-le.cpython-36.opt-2.pyc-c7ab20ea312bc4bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf-16.cpython-36.opt-1.pyc-3a2605e557baf01d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_16.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...utf-16.cpython-36.opt-2.pyc-93756152423119d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32_be.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf-32-be.cpython-36.opt-1.pyc-b6f1cb9025a3e931 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32_be.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...utf-32-be.cpython-36.opt-2.pyc-08c7d65f1cbd3637 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32_le.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf-32-le.cpython-36.opt-1.pyc-9b27b83f2d4da338 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32_le.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...utf-32-le.cpython-36.opt-2.pyc-5dcd1e52f8ffe249 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf-32.cpython-36.opt-1.pyc-38692dda682fc101 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_32.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...utf-32.cpython-36.opt-2.pyc-32ad241d7676b905 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_8_sig.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf-8-sig.cpython-36.opt-1.pyc-5b2c2ac4ff4357ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/utf_8_sig.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...utf-8-sig.cpython-36.opt-2.pyc-9d6cbe7c4dd73edb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/utf8prober.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...utf8prober.cpython-36.opt-1.pyc-0df7a3f12e4fddaa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/queue.cpython-36.pyc +SPDXID: SPDXRef-File-...util---pycache---queue.cpython-36.pyc-6828db9d42a73817 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/retry.cpython-36.pyc +SPDXID: SPDXRef-File-...util---pycache---retry.cpython-36.pyc-c8669f0a1b682be4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/ssl_.cpython-36.pyc +SPDXID: SPDXRef-File-...util---pycache---ssl-.cpython-36.pyc-9352d1974afbcd3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/url.cpython-36.pyc +SPDXID: SPDXRef-File-...util---pycache---url.cpython-36.pyc-d5bdaa712b669b37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/urllib3/util/__pycache__/wait.cpython-36.pyc +SPDXID: SPDXRef-File-...util---pycache---wait.cpython-36.pyc-c8c31d86e50687b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/idna/__pycache__/uts46data.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...uts46data.cpython-36.opt-1.pyc-16a93f453b6015a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/uu_codec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...uu-codec.cpython-36.opt-1.pyc-f2c75385b16f5ab0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/uu_codec.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...uu-codec.cpython-36.opt-2.pyc-7855be196903aa4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/__pycache__/__init__.cpython-36.pyc +SPDXID: SPDXRef-File-...v6---pycache-----init--.cpython-36.pyc-55a7559c5150863b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/__pycache__/printers.cpython-36.pyc +SPDXID: SPDXRef-File-...v6---pycache---printers.cpython-36.pyc-94313d2f3d63dc20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/__pycache__/xmethods.cpython-36.pyc +SPDXID: SPDXRef-File-...v6---pycache---xmethods.cpython-36.pyc-d0a2fb112fb6e0b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/validate.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...validate.cpython-36.opt-1.pyc-cf63114f1860ea08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/__pycache__/validate.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...validate.cpython-36.opt-2.pyc-124edf12615024fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/constants/__pycache__/validity.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...validity.cpython-36.opt-1.pyc-1b9dae516173509f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/validity.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...validity.cpython-36.opt-1.pyc-59602a9532342e7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/scripts/posix/activate.csh +SPDXID: SPDXRef-File-...venv-scripts-posix-activate.csh-3d7ae30540e8b7fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/scripts/posix/activate.fish +SPDXID: SPDXRef-File-...venv-scripts-posix-activate.fish-654df972ddbb8835 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/subscription_manager/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-0f97d4852ad2ac69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-35d44b125d4dd88e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/chardet/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-59bc3c44c60fe58d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-757a776f5ef95e92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-8a14b00aa1fa5899 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/gpg/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-8b3adb7cbf896bb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site-packages/rct/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-94a999b108608791 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/version.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-1.pyc-bee703a389bd1eff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/version.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...version.cpython-36.opt-2.pyc-480e30ec46faa9e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/versionpredicate.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...versionpredicate.cpython-36.opt-1.pyc-4f611e230f16b6d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/versionpredicate.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...versionpredicate.cpython-36.opt-2.pyc-a5fe6499fbd1881e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/__pycache__/versionpredicate.cpython-36.pyc +SPDXID: SPDXRef-File-...versionpredicate.cpython-36.pyc-b32c6eecfbf7f682 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/warnings.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...warnings.cpython-36.opt-1.pyc-8a3e68c00b4324b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/warnings.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...warnings.cpython-36.opt-2.pyc-46b19002654e806d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/weakref.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...weakref.cpython-36.opt-1.pyc-e0ce32177a3792a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/weakref.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...weakref.cpython-36.opt-2.pyc-450f97066c8636f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/webbrowser.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...webbrowser.cpython-36.opt-1.pyc-a4d6032399b52d4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/webbrowser.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...webbrowser.cpython-36.opt-2.pyc-8eb270940142701a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/windows_events.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...windows-events.cpython-36.opt-1.pyc-34d61aeab9e76ebe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/windows_events.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...windows-events.cpython-36.opt-2.pyc-6de0e98ac0963cde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/windows_events.cpython-36.pyc +SPDXID: SPDXRef-File-...windows-events.cpython-36.pyc-0c38905fcc819375 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/windows_support.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...windows-support.cpython-36.opt-1.pyc-c5ce1249af33b34d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/setuptools/__pycache__/windows_support.cpython-36.pyc +SPDXID: SPDXRef-File-...windows-support.cpython-36.pyc-a56d0f0e55835e19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/windows_utils.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...windows-utils.cpython-36.opt-1.pyc-da26dc7a03d17886 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/windows_utils.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...windows-utils.cpython-36.opt-2.pyc-5fd695a5fdbf9af9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/__pycache__/windows_utils.cpython-36.pyc +SPDXID: SPDXRef-File-...windows-utils.cpython-36.pyc-83ac29f9f092a198 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/wintypes.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...wintypes.cpython-36.opt-1.pyc-b0cdd00286e84023 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__pycache__/wintypes.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...wintypes.cpython-36.opt-2.pyc-ee7be1210d78c2e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /opt/ol/wlp/bin/tools/ws-binarylogviewer.jar +SPDXID: SPDXRef-File-...wlp-bin-tools-ws-binarylogviewer.jar-6b8a1c0c8ae07228 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/bin/tools/ws-serverSchemagen.jar +SPDXID: SPDXRef-File-...wlp-bin-tools-ws-serverSchemagen.jar-7abceac531a8cf7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.artifact_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.artifact-1.0.81.jar-a142ab488a8d452b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.config_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.config-1.0.81.jar-d4df66677e16213e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.context_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.context-1.0.81.jar-13b2f4b84e4ab3f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.install_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.install-1.0.81.jar-a44ba1964661b299 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.logging_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.logging-1.0.81.jar-84621c5e78ab4598 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/com.ibm.ws.monitor_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.monitor-1.0.81.jar-09ec11a080b99478 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.resource_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.resource-1.0.81.jar-654889404142e3fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/com.ibm.ws.security_1.0.81.jar +SPDXID: SPDXRef-File-...wlp-lib-com.ibm.ws.security-1.0.81.jar-e61ce55d7adc91f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:77f56fdd196321b43cee02d4ff956b448b758bf8c62e4da088f8f9fb87cc5112 + +FileName: /opt/ol/wlp/lib/org.eclipse.osgi_3.18.300.jar +SPDXID: SPDXRef-File-...wlp-lib-org.eclipse.osgi-3.18.300.jar-3fa98d9efa9af05e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /usr/lib64/python3.6/__pycache__/xdrlib.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...xdrlib.cpython-36.opt-1.pyc-4a87263abcfe5f07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/xdrlib.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...xdrlib.cpython-36.opt-2.pyc-a7d010d57a66d482 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gcc-8/python/libstdcxx/v6/__pycache__/xmethods.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...xmethods.cpython-36.opt-1.pyc-6a790ce66409e07b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/xmlbuilder.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...xmlbuilder.cpython-36.opt-1.pyc-6c547a4a955d1c8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/__pycache__/xmlbuilder.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...xmlbuilder.cpython-36.opt-2.pyc-bec5b3fe1f35270d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/xmlreader.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...xmlreader.cpython-36.opt-1.pyc-1749b0ef2acde99c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/__pycache__/xmlreader.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...xmlreader.cpython-36.opt-2.pyc-fb67b22b5b7de6c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/xxlimited.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...xxlimited.cpython-36m-x86-64-linux-gnu.so-d7cba40be30c30e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dnf/yum/__pycache__/misc.cpython-36.pyc +SPDXID: SPDXRef-File-...yum---pycache---misc.cpython-36.pyc-bb35d60e9d4e8a0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/zip-safe +SPDXID: SPDXRef-File-...zip-safe-d76b95ff73fd1bab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/zipapp.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...zipapp.cpython-36.opt-1.pyc-b5cf15872b6994a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/zipapp.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...zipapp.cpython-36.opt-2.pyc-e6c0e1235d6be3d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/zipfile.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...zipfile.cpython-36.opt-1.pyc-6765e60661020e8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__pycache__/zipfile.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...zipfile.cpython-36.opt-2.pyc-20df91aee8f5a93c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/zlib_codec.cpython-36.opt-1.pyc +SPDXID: SPDXRef-File-...zlib-codec.cpython-36.opt-1.pyc-4333b65bf836712c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/__pycache__/zlib_codec.cpython-36.opt-2.pyc +SPDXID: SPDXRef-File-...zlib-codec.cpython-36.opt-2.pyc-2151f14d1aa92847 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so +SPDXID: SPDXRef-File-...zlib.cpython-36m-x86-64-linux-gnu.so-afe962c63cb68f6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Catamarca +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-Catamarca-c93c382667dd9b58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Cordoba +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-Cordoba-5f0a542cc4265710 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/La_Rioja +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-La-Rioja-d5278a54e24249ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Mendoza +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-Mendoza-0419a537cf8c187a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/San_Juan +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-San-Juan-4abb8574586cff9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/San_Luis +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-San-Luis-785997dea3730112 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Tucuman +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-Tucuman-c75982e533c61d3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Argentina/Ushuaia +SPDXID: SPDXRef-File-...zoneinfo-America-Argentina-Ushuaia-14d4b85e90b338c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Indianapolis +SPDXID: SPDXRef-File-...zoneinfo-America-Indiana-Indianapolis-b40f5254b641b6fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Petersburg +SPDXID: SPDXRef-File-...zoneinfo-America-Indiana-Petersburg-c6a6c79b9fba63b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Tell_City +SPDXID: SPDXRef-File-...zoneinfo-America-Indiana-Tell-City-d8178d1fa10659e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Indiana/Vincennes +SPDXID: SPDXRef-File-...zoneinfo-America-Indiana-Vincennes-ecbe3ea60a4b6f75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Kentucky/Louisville +SPDXID: SPDXRef-File-...zoneinfo-America-Kentucky-Louisville-8c0b98513f3ab0a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Kentucky/Monticello +SPDXID: SPDXRef-File-...zoneinfo-America-Kentucky-Monticello-a5f9809dc27ec638 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/North_Dakota/Beulah +SPDXID: SPDXRef-File-...zoneinfo-America-North-Dakota-Beulah-62104c0a4c4c6d91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/North_Dakota/Center +SPDXID: SPDXRef-File-...zoneinfo-America-North-Dakota-Center-f456edf71f63cf67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/DumontDUrville +SPDXID: SPDXRef-File-...zoneinfo-Antarctica-DumontDUrville-0a802f28eefb2bfd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz +SPDXID: SPDXRef-File-...zoneinfo-dateutil-zoneinfo.tar.gz-675048e4d802e089 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Addis_Ababa +SPDXID: SPDXRef-File-...zoneinfo-posix-Africa-Addis-Ababa-659044aa54ff11a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Brazzaville +SPDXID: SPDXRef-File-...zoneinfo-posix-Africa-Brazzaville-28fbf884163c36ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Dar_es_Salaam +SPDXID: SPDXRef-File-...zoneinfo-posix-Africa-Dar-es-Salaam-67a1665464eac612 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Johannesburg +SPDXID: SPDXRef-File-...zoneinfo-posix-Africa-Johannesburg-d5d90604412f7250 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Ouagadougou +SPDXID: SPDXRef-File-...zoneinfo-posix-Africa-Ouagadougou-54a93d5eff67d6c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Jujuy +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Argentina-Jujuy-744783083fdd46d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Argentina/Salta +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Argentina-Salta-8c9ff1a9c99f2331 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Bahia_Banderas +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Bahia-Banderas-8c6d6295e524cd82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Blanc-Sablon +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Blanc-Sablon-2a5e132532c056ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Buenos_Aires +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Buenos-Aires-6297f670770fe380 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Cambridge_Bay +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Cambridge-Bay-5e75625a9e91fe36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Campo_Grande +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Campo-Grande-56cdfffead9c1583 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Ciudad_Juarez +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Ciudad-Juarez-b68540147460d35b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Coral_Harbour +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Coral-Harbour-ed904b5eec65d6d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Costa_Rica +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Costa-Rica-72097263ca4fa3b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Danmarkshavn +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Danmarkshavn-5552e86da393911e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Dawson_Creek +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Dawson-Creek-c76521be78a9512f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/El_Salvador +SPDXID: SPDXRef-File-...zoneinfo-posix-America-El-Salvador-19e6626712601854 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Fort_Nelson +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Fort-Nelson-91d4567eee8a326e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Fort_Wayne +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Fort-Wayne-2b85d00f0995079f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Grand_Turk +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Grand-Turk-dc0b29cf00349586 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Guadeloupe +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Guadeloupe-cf67b9610614b2c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Hermosillo +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Hermosillo-7495dd6bf9a86b4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Knox +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Indiana-Knox-bf5b940188da1fad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Marengo +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Indiana-Marengo-0967658bf23b5164 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Vevay +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Indiana-Vevay-184941de491dde61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indiana/Winamac +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Indiana-Winamac-2b31993f187cffd2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Indianapolis +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Indianapolis-79f4623a9a093d23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Kralendijk +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Kralendijk-7fbfaa1b0bca495b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Los_Angeles +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Los-Angeles-d34d60cd03314b84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Louisville +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Louisville-b3700922b8c593f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Lower_Princes +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Lower-Princes-266bddcc157731a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Martinique +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Martinique-ea280b928b29765e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Metlakatla +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Metlakatla-63807a1516f5cb9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Mexico_City +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Mexico-City-401cd1cc1766be45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Montevideo +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Montevideo-5efc090b56574580 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Montserrat +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Montserrat-00abe2ad80990845 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Pangnirtung +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Pangnirtung-b7abeef507f855ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Paramaribo +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Paramaribo-f956386a9a279b87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Port-au-Prince +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Port-au-Prince-2af0412addb5e7ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Port_of_Spain +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Port-of-Spain-9567d512216e91d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Porto_Acre +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Porto-Acre-1c61690a5d11c684 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Porto_Velho +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Porto-Velho-e1d144dde5f5ffab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Puerto_Rico +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Puerto-Rico-fa5a97068088bf2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Punta_Arenas +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Punta-Arenas-0d21a61b66afbcd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Rainy_River +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Rainy-River-8209a442d7ca625c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Rankin_Inlet +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Rankin-Inlet-bd4fa151ba6382b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Rio_Branco +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Rio-Branco-1068f363c55efdd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Santa_Isabel +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Santa-Isabel-dfdd2d7f707dcaa7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Santo_Domingo +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Santo-Domingo-94ce4ad4b3a032f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Scoresbysund +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Scoresbysund-9efc60ad3d282460 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/St_Barthelemy +SPDXID: SPDXRef-File-...zoneinfo-posix-America-St-Barthelemy-d7e82b452fd64f0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/St_Vincent +SPDXID: SPDXRef-File-...zoneinfo-posix-America-St-Vincent-15417edacc7a0308 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Swift_Current +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Swift-Current-372a787485debc14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Tegucigalpa +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Tegucigalpa-c24ee3269c517a3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Thunder_Bay +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Thunder-Bay-e15c699568dbae72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Whitehorse +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Whitehorse-078958a3288ea521 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Yellowknife +SPDXID: SPDXRef-File-...zoneinfo-posix-America-Yellowknife-9c086a2e9d6371cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Macquarie +SPDXID: SPDXRef-File-...zoneinfo-posix-Antarctica-Macquarie-6f8f1b173853a284 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/McMurdo +SPDXID: SPDXRef-File-...zoneinfo-posix-Antarctica-McMurdo-0e1c87957cbdd2b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/Rothera +SPDXID: SPDXRef-File-...zoneinfo-posix-Antarctica-Rothera-88121c1d6d4162c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Antarctica/South_Pole +SPDXID: SPDXRef-File-...zoneinfo-posix-Antarctica-South-Pole-d64fbf3c032eef89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Arctic/Longyearbyen +SPDXID: SPDXRef-File-...zoneinfo-posix-Arctic-Longyearbyen-e78d93cf91d35fe6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Srednekolymsk +SPDXID: SPDXRef-File-...zoneinfo-posix-Asia-Srednekolymsk-f13d65c4d148c12c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Ujung_Pandang +SPDXID: SPDXRef-File-...zoneinfo-posix-Asia-Ujung-Pandang-0cb0f3890d32c746 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Yekaterinburg +SPDXID: SPDXRef-File-...zoneinfo-posix-Asia-Yekaterinburg-c0aea23a8c418205 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Cape_Verde +SPDXID: SPDXRef-File-...zoneinfo-posix-Atlantic-Cape-Verde-50ef553952fd6515 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Jan_Mayen +SPDXID: SPDXRef-File-...zoneinfo-posix-Atlantic-Jan-Mayen-7ffbfd137e10ad5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/Reykjavik +SPDXID: SPDXRef-File-...zoneinfo-posix-Atlantic-Reykjavik-2cc77d80150be7c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/South_Georgia +SPDXID: SPDXRef-File-...zoneinfo-posix-Atlantic-South-Georgia-5ac1887fb704ecc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Atlantic/St_Helena +SPDXID: SPDXRef-File-...zoneinfo-posix-Atlantic-St-Helena-97f94511a525956b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Adelaide +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Adelaide-1b8d6ecbd34b96ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Brisbane +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Brisbane-d3bde231fe10ae84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Broken_Hill +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Broken-Hill-83fc910e78033f79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Canberra +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Canberra-368d46a647345965 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Lindeman +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Lindeman-db80c29270690f39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Lord_Howe +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Lord-Howe-ac271e431624bb14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Melbourne +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Melbourne-8167e8ed6319763b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Queensland +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Queensland-e11361145c781915 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Tasmania +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Tasmania-01d47de016b4e77c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Victoria +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Victoria-747225694891ed1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/Yancowinna +SPDXID: SPDXRef-File-...zoneinfo-posix-Australia-Yancowinna-7801ee8d23711636 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Newfoundland +SPDXID: SPDXRef-File-...zoneinfo-posix-Canada-Newfoundland-d6978e7061980e6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Saskatchewan +SPDXID: SPDXRef-File-...zoneinfo-posix-Canada-Saskatchewan-f897300ee4e28938 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Chile/EasterIsland +SPDXID: SPDXRef-File-...zoneinfo-posix-Chile-EasterIsland-373b403b952c6668 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Isle_of_Man +SPDXID: SPDXRef-File-...zoneinfo-posix-Europe-Isle-of-Man-ee8e7c898465e014 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Kaliningrad +SPDXID: SPDXRef-File-...zoneinfo-posix-Europe-Kaliningrad-66ac8e4814f93ef7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Antananarivo +SPDXID: SPDXRef-File-...zoneinfo-posix-Indian-Antananarivo-1984cc84b574372e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Bougainville +SPDXID: SPDXRef-File-...zoneinfo-posix-Pacific-Bougainville-745eafdc14f770cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Guadalcanal +SPDXID: SPDXRef-File-...zoneinfo-posix-Pacific-Guadalcanal-cc3f0bf903b6a49a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Kiritimati +SPDXID: SPDXRef-File-...zoneinfo-posix-Pacific-Kiritimati-d40d6fa3212aca6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Port_Moresby +SPDXID: SPDXRef-File-...zoneinfo-posix-Pacific-Port-Moresby-206077bc713cab18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Addis_Ababa +SPDXID: SPDXRef-File-...zoneinfo-right-Africa-Addis-Ababa-0b5737de65bf4a4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Brazzaville +SPDXID: SPDXRef-File-...zoneinfo-right-Africa-Brazzaville-e4d1940983cd44a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Dar_es_Salaam +SPDXID: SPDXRef-File-...zoneinfo-right-Africa-Dar-es-Salaam-f555b54f497e445f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Johannesburg +SPDXID: SPDXRef-File-...zoneinfo-right-Africa-Johannesburg-9b91cf0885717a5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Ouagadougou +SPDXID: SPDXRef-File-...zoneinfo-right-Africa-Ouagadougou-6fcba9e89391a44b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Jujuy +SPDXID: SPDXRef-File-...zoneinfo-right-America-Argentina-Jujuy-e100893d7d8bcb57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Argentina/Salta +SPDXID: SPDXRef-File-...zoneinfo-right-America-Argentina-Salta-1fedb3403c63ef8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Bahia_Banderas +SPDXID: SPDXRef-File-...zoneinfo-right-America-Bahia-Banderas-04ad9d22e445b5ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Blanc-Sablon +SPDXID: SPDXRef-File-...zoneinfo-right-America-Blanc-Sablon-ad809808b5329a5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Buenos_Aires +SPDXID: SPDXRef-File-...zoneinfo-right-America-Buenos-Aires-3c9bff9fcdb145f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Cambridge_Bay +SPDXID: SPDXRef-File-...zoneinfo-right-America-Cambridge-Bay-5db99e5750e3caae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Campo_Grande +SPDXID: SPDXRef-File-...zoneinfo-right-America-Campo-Grande-1c0e7b83ab672459 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Ciudad_Juarez +SPDXID: SPDXRef-File-...zoneinfo-right-America-Ciudad-Juarez-c24a96416b2b0ab8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Coral_Harbour +SPDXID: SPDXRef-File-...zoneinfo-right-America-Coral-Harbour-581cb39a00f59c89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Costa_Rica +SPDXID: SPDXRef-File-...zoneinfo-right-America-Costa-Rica-6c7bf881913e5a6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Danmarkshavn +SPDXID: SPDXRef-File-...zoneinfo-right-America-Danmarkshavn-3a53e075fd72856b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Dawson_Creek +SPDXID: SPDXRef-File-...zoneinfo-right-America-Dawson-Creek-a421442c7af6a65d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/El_Salvador +SPDXID: SPDXRef-File-...zoneinfo-right-America-El-Salvador-720cbcce8ec3055c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Fort_Nelson +SPDXID: SPDXRef-File-...zoneinfo-right-America-Fort-Nelson-1c3d89cd7967c0ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Fort_Wayne +SPDXID: SPDXRef-File-...zoneinfo-right-America-Fort-Wayne-52f2294de5aba540 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Grand_Turk +SPDXID: SPDXRef-File-...zoneinfo-right-America-Grand-Turk-7e601a46db28dd6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Guadeloupe +SPDXID: SPDXRef-File-...zoneinfo-right-America-Guadeloupe-0d9dda2c3e68085a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Hermosillo +SPDXID: SPDXRef-File-...zoneinfo-right-America-Hermosillo-65860e84b462e67f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Knox +SPDXID: SPDXRef-File-...zoneinfo-right-America-Indiana-Knox-c11ca4f7c850c9cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Marengo +SPDXID: SPDXRef-File-...zoneinfo-right-America-Indiana-Marengo-eb8afcac2580f0f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Vevay +SPDXID: SPDXRef-File-...zoneinfo-right-America-Indiana-Vevay-2cec56a2016b35b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indiana/Winamac +SPDXID: SPDXRef-File-...zoneinfo-right-America-Indiana-Winamac-13062c229607de32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Indianapolis +SPDXID: SPDXRef-File-...zoneinfo-right-America-Indianapolis-3de1632e3aa1005d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Kralendijk +SPDXID: SPDXRef-File-...zoneinfo-right-America-Kralendijk-192f42122c02433e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Los_Angeles +SPDXID: SPDXRef-File-...zoneinfo-right-America-Los-Angeles-bf72a7406560df47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Louisville +SPDXID: SPDXRef-File-...zoneinfo-right-America-Louisville-19ed3f73478ac685 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Lower_Princes +SPDXID: SPDXRef-File-...zoneinfo-right-America-Lower-Princes-55c9bf2f1df80f46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Martinique +SPDXID: SPDXRef-File-...zoneinfo-right-America-Martinique-d358412f7693bca1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Metlakatla +SPDXID: SPDXRef-File-...zoneinfo-right-America-Metlakatla-1d93f6e8d037c847 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Mexico_City +SPDXID: SPDXRef-File-...zoneinfo-right-America-Mexico-City-4f940af3e5c9e20d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Montevideo +SPDXID: SPDXRef-File-...zoneinfo-right-America-Montevideo-249e3cbf6e90cef6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Montserrat +SPDXID: SPDXRef-File-...zoneinfo-right-America-Montserrat-98efc091d040c84e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Pangnirtung +SPDXID: SPDXRef-File-...zoneinfo-right-America-Pangnirtung-f99ed9f92195ba11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Paramaribo +SPDXID: SPDXRef-File-...zoneinfo-right-America-Paramaribo-f7bd30322eee62aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Port-au-Prince +SPDXID: SPDXRef-File-...zoneinfo-right-America-Port-au-Prince-58cb01538c337fa4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Port_of_Spain +SPDXID: SPDXRef-File-...zoneinfo-right-America-Port-of-Spain-25ff1541b58db4c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Porto_Acre +SPDXID: SPDXRef-File-...zoneinfo-right-America-Porto-Acre-09d0bb4d9630ea2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Porto_Velho +SPDXID: SPDXRef-File-...zoneinfo-right-America-Porto-Velho-8656598f79436b12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Puerto_Rico +SPDXID: SPDXRef-File-...zoneinfo-right-America-Puerto-Rico-3dbdda115e95a0e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Punta_Arenas +SPDXID: SPDXRef-File-...zoneinfo-right-America-Punta-Arenas-b65d0f4755ead389 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Rainy_River +SPDXID: SPDXRef-File-...zoneinfo-right-America-Rainy-River-da30c37c3fbf35e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Rankin_Inlet +SPDXID: SPDXRef-File-...zoneinfo-right-America-Rankin-Inlet-c5cd0b7ff12d409b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Rio_Branco +SPDXID: SPDXRef-File-...zoneinfo-right-America-Rio-Branco-55feb0e8f6274aab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Santa_Isabel +SPDXID: SPDXRef-File-...zoneinfo-right-America-Santa-Isabel-8e8c368fb20e9837 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Santo_Domingo +SPDXID: SPDXRef-File-...zoneinfo-right-America-Santo-Domingo-7c37049773f60fe5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Scoresbysund +SPDXID: SPDXRef-File-...zoneinfo-right-America-Scoresbysund-12e0cda21b20acaf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/St_Barthelemy +SPDXID: SPDXRef-File-...zoneinfo-right-America-St-Barthelemy-2927fea5d8da5cbb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/St_Vincent +SPDXID: SPDXRef-File-...zoneinfo-right-America-St-Vincent-b1ac1004b8e060af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Swift_Current +SPDXID: SPDXRef-File-...zoneinfo-right-America-Swift-Current-be992afee149fdb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Tegucigalpa +SPDXID: SPDXRef-File-...zoneinfo-right-America-Tegucigalpa-5832e3b87a40fcba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Thunder_Bay +SPDXID: SPDXRef-File-...zoneinfo-right-America-Thunder-Bay-4d93c16ae804ebad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Whitehorse +SPDXID: SPDXRef-File-...zoneinfo-right-America-Whitehorse-88c304b67ac75926 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Yellowknife +SPDXID: SPDXRef-File-...zoneinfo-right-America-Yellowknife-cca72e2778613e9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Macquarie +SPDXID: SPDXRef-File-...zoneinfo-right-Antarctica-Macquarie-7be6a7f67890598e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/McMurdo +SPDXID: SPDXRef-File-...zoneinfo-right-Antarctica-McMurdo-250166ac4c11b8e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/Rothera +SPDXID: SPDXRef-File-...zoneinfo-right-Antarctica-Rothera-12047db722f9bc01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Antarctica/South_Pole +SPDXID: SPDXRef-File-...zoneinfo-right-Antarctica-South-Pole-40a54feab7b7d1dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Arctic/Longyearbyen +SPDXID: SPDXRef-File-...zoneinfo-right-Arctic-Longyearbyen-cc95bca5cf84fbf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Srednekolymsk +SPDXID: SPDXRef-File-...zoneinfo-right-Asia-Srednekolymsk-db91d5592f0d6de1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Ujung_Pandang +SPDXID: SPDXRef-File-...zoneinfo-right-Asia-Ujung-Pandang-cb219c1f2f1411c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Yekaterinburg +SPDXID: SPDXRef-File-...zoneinfo-right-Asia-Yekaterinburg-5bfb36bbd0556f32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Cape_Verde +SPDXID: SPDXRef-File-...zoneinfo-right-Atlantic-Cape-Verde-6137ebbac86afc20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Jan_Mayen +SPDXID: SPDXRef-File-...zoneinfo-right-Atlantic-Jan-Mayen-18e9526b8eaee251 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/Reykjavik +SPDXID: SPDXRef-File-...zoneinfo-right-Atlantic-Reykjavik-147b63bcd8916862 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/South_Georgia +SPDXID: SPDXRef-File-...zoneinfo-right-Atlantic-South-Georgia-9b266b86a5142562 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Atlantic/St_Helena +SPDXID: SPDXRef-File-...zoneinfo-right-Atlantic-St-Helena-1097b76a12a71ab8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Adelaide +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Adelaide-9c7cc86eb922fe81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Brisbane +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Brisbane-aa13dc5da67c3443 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Broken_Hill +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Broken-Hill-9f77e3b751f2dc15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Canberra +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Canberra-3d3598da4068b2d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Lindeman +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Lindeman-e002ae66a3b29e28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Lord_Howe +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Lord-Howe-22f9a52447763804 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Melbourne +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Melbourne-42aec64a52cecb6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Queensland +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Queensland-6b6975887d31a7a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Tasmania +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Tasmania-e0674137f1f2c7c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Victoria +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Victoria-788e46dc0878eeb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/Yancowinna +SPDXID: SPDXRef-File-...zoneinfo-right-Australia-Yancowinna-d22a63c1e24bea8d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Newfoundland +SPDXID: SPDXRef-File-...zoneinfo-right-Canada-Newfoundland-c8e2dc1c161b2087 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Saskatchewan +SPDXID: SPDXRef-File-...zoneinfo-right-Canada-Saskatchewan-cda3d702fd9bdbf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Chile/EasterIsland +SPDXID: SPDXRef-File-...zoneinfo-right-Chile-EasterIsland-ea29c7dabde26c3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Isle_of_Man +SPDXID: SPDXRef-File-...zoneinfo-right-Europe-Isle-of-Man-f908e7ee3977d1f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Kaliningrad +SPDXID: SPDXRef-File-...zoneinfo-right-Europe-Kaliningrad-64353765c5a8f5bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Antananarivo +SPDXID: SPDXRef-File-...zoneinfo-right-Indian-Antananarivo-511460194a5120c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Bougainville +SPDXID: SPDXRef-File-...zoneinfo-right-Pacific-Bougainville-0f17b5dd7036bfe1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Guadalcanal +SPDXID: SPDXRef-File-...zoneinfo-right-Pacific-Guadalcanal-bb0ddea73dc858f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Kiritimati +SPDXID: SPDXRef-File-...zoneinfo-right-Pacific-Kiritimati-4edd692e162a9ced +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Port_Moresby +SPDXID: SPDXRef-File-...zoneinfo-right-Pacific-Port-Moresby-ea7bfe22f503b380 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_sd_outputmodes +SPDXID: SPDXRef-File-...zsh-site-functions--sd-outputmodes-2d9b397db7a05ec3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_sd_unit_files +SPDXID: SPDXRef-File-...zsh-site-functions--sd-unit-files-32c43a8a50b01764 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemd-analyze +SPDXID: SPDXRef-File-...zsh-site-functions--systemd-analyze-6a5812a63b1a0a5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemd-delta +SPDXID: SPDXRef-File-...zsh-site-functions--systemd-delta-69980daaf61481dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemd-inhibit +SPDXID: SPDXRef-File-...zsh-site-functions--systemd-inhibit-590d5a72b3eb38f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemd-resolve +SPDXID: SPDXRef-File-...zsh-site-functions--systemd-resolve-ff2d7690c8b146cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemd-tmpfiles +SPDXID: SPDXRef-File-...zsh-site-functions--systemd-tmpfiles-cab0381335a345b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/GREP_COLORS +SPDXID: SPDXRef-File-etc-GREP-COLORS-bacb11fa373e1fc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/X11/xorg.conf.d/00-keyboard.conf +SPDXID: SPDXRef-File-etc-X11-xorg.conf.d-00-keyboard.conf-acfb6e6b7ef715d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/adjtime +SPDXID: SPDXRef-File-etc-adjtime-4ed0ab6e822df583 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/aliases +SPDXID: SPDXRef-File-etc-aliases-9e22cbe417ad2ab4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/bashrc +SPDXID: SPDXRef-File-etc-bashrc-ece2de793a0c1a36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/bindresvport.blacklist +SPDXID: SPDXRef-File-etc-bindresvport.blacklist-405c1878215d01e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/crypto-policies/config +SPDXID: SPDXRef-File-etc-crypto-policies-config-2023d233a19ba276 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/crypto-policies/state/CURRENT.pol +SPDXID: SPDXRef-File-etc-crypto-policies-state-CURRENT.pol-6ffd2ba288fe5ebf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/crypto-policies/state/current +SPDXID: SPDXRef-File-etc-crypto-policies-state-current-8fca46800dea9d86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/crypttab +SPDXID: SPDXRef-File-etc-crypttab-dee8380495a4cf86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/csh.cshrc +SPDXID: SPDXRef-File-etc-csh.cshrc-09f80283e76590cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/csh.login +SPDXID: SPDXRef-File-etc-csh.login-be19e5f9f668bde2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dbus-1/session.conf +SPDXID: SPDXRef-File-etc-dbus-1-session.conf-44c8f8cbf4737db1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dbus-1/system.conf +SPDXID: SPDXRef-File-etc-dbus-1-system.conf-3243a3319d33a9c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/default/useradd +SPDXID: SPDXRef-File-etc-default-useradd-4ce18e0c0164a351 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/dnf.conf +SPDXID: SPDXRef-File-etc-dnf-dnf.conf-5415cd13736cacdc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/plugins/copr.conf +SPDXID: SPDXRef-File-etc-dnf-plugins-copr.conf-d2a260212379547c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/plugins/debuginfo-install.conf +SPDXID: SPDXRef-File-etc-dnf-plugins-debuginfo-install.conf-f1df741709ca019e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/plugins/product-id.conf +SPDXID: SPDXRef-File-etc-dnf-plugins-product-id.conf-54bb6445b2fad991 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/protected.d/dnf.conf +SPDXID: SPDXRef-File-etc-dnf-protected.d-dnf.conf-e1a23125cb6c7590 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/protected.d/setup.conf +SPDXID: SPDXRef-File-etc-dnf-protected.d-setup.conf-3a4253edbba81e76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/protected.d/systemd.conf +SPDXID: SPDXRef-File-etc-dnf-protected.d-systemd.conf-a64e2b295f8b9eb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/dnf/protected.d/yum.conf +SPDXID: SPDXRef-File-etc-dnf-protected.d-yum.conf-0187943b2e5f307a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/environment +SPDXID: SPDXRef-File-etc-environment-8ef58ba6d912c968 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/ethertypes +SPDXID: SPDXRef-File-etc-ethertypes-03fcab9483d4a32b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/exports +SPDXID: SPDXRef-File-etc-exports-626f02fbaf5d9f4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/filesystems +SPDXID: SPDXRef-File-etc-filesystems-910b481e67e71ac7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/fonts/conf.d/README +SPDXID: SPDXRef-File-etc-fonts-conf.d-README-fd67fb715fb7558c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/fonts/fonts.conf +SPDXID: SPDXRef-File-etc-fonts-fonts.conf-8e59c78284664d67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/gcrypt/random.conf +SPDXID: SPDXRef-File-etc-gcrypt-random.conf-5f30328f0d2f5a54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/group +SPDXID: SPDXRef-File-etc-group-126b5168e4d9fd8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/gshadow +SPDXID: SPDXRef-File-etc-gshadow-c42f3b0bb60d8196 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/host.conf +SPDXID: SPDXRef-File-etc-host.conf-4868ec58da1c90fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/hostname +SPDXID: SPDXRef-File-etc-hostname-f646fcb09c277d5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/hosts +SPDXID: SPDXRef-File-etc-hosts-313360aadb479c12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:5c5a862c379058833cd6994589e6ad90ab08faea472d8dc2dac046acd815a70a + +FileName: /etc/inittab +SPDXID: SPDXRef-File-etc-inittab-16d6c0f35c6b085a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/inputrc +SPDXID: SPDXRef-File-etc-inputrc-bf07b00e4f485257 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/issue +SPDXID: SPDXRef-File-etc-issue-1a6139587efc9b4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/issue.net +SPDXID: SPDXRef-File-etc-issue.net-bb609963d8224cf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/krb5.conf +SPDXID: SPDXRef-File-etc-krb5.conf-e08585469b0e61f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/ld.so.cache +SPDXID: SPDXRef-File-etc-ld.so.cache-a3a49bcf68803b4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:ae8ca4ad3728bc07e1f5c89dff6565942d9109266a15e7c45a983d6130a2615a + +FileName: /etc/ld.so.conf +SPDXID: SPDXRef-File-etc-ld.so.conf-9d4d2315b8159d40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/libaudit.conf +SPDXID: SPDXRef-File-etc-libaudit.conf-0ef20fca5a22065c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/libibverbs.d/bnxt_re.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-bnxt-re.driver-22692f255a41b5c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/cxgb4.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-cxgb4.driver-3f1bbc604146b111 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/efa.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-efa.driver-f5a6f21b6305e635 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/hfi1verbs.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-hfi1verbs.driver-bb630a8f2dd1da3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/hns.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-hns.driver-ec3abbb8d734ad8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/irdma.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-irdma.driver-343310c3d2906c6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/mlx4.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-mlx4.driver-ded7e7df7db67c23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/mlx5.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-mlx5.driver-082705b227a5250a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/qedr.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-qedr.driver-01fffe9b90024450 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/rxe.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-rxe.driver-ffd177095d134fc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/siw.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-siw.driver-d5ab1d058e4c67b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libibverbs.d/vmw_pvrdma.driver +SPDXID: SPDXRef-File-etc-libibverbs.d-vmw-pvrdma.driver-8c5e7562fcfb5e40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/libnl/classid +SPDXID: SPDXRef-File-etc-libnl-classid-e662cd7ecdb55d7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/libnl/pktloc +SPDXID: SPDXRef-File-etc-libnl-pktloc-de85d4fb5d3c1678 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/libssh/libssh_client.config +SPDXID: SPDXRef-File-etc-libssh-libssh-client.config-31e32e16fdea192f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/libssh/libssh_server.config +SPDXID: SPDXRef-File-etc-libssh-libssh-server.config-f97a5eb4e503b165 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/libuser.conf +SPDXID: SPDXRef-File-etc-libuser.conf-25cd23f43e125928 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/locale.conf +SPDXID: SPDXRef-File-etc-locale.conf-6787ccab017a9caf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/login.defs +SPDXID: SPDXRef-File-etc-login.defs-46c7f883387232ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/logrotate.d/dnf +SPDXID: SPDXRef-File-etc-logrotate.d-dnf-8ca272940c14476e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/logrotate.d/subscription-manager +SPDXID: SPDXRef-File-etc-logrotate.d-subscription-manager-9f20476ba4dad8b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/machine-id +SPDXID: SPDXRef-File-etc-machine-id-1d2eeb6c35de9827 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/motd +SPDXID: SPDXRef-File-etc-motd-ce9469b8cab5279c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/netconfig +SPDXID: SPDXRef-File-etc-netconfig-bdf9caf37ce103ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/networks +SPDXID: SPDXRef-File-etc-networks-afa1e4a0d8a9e142 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/nftables/main.nft +SPDXID: SPDXRef-File-etc-nftables-main.nft-1d998067f80fd5f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/nftables/nat.nft +SPDXID: SPDXRef-File-etc-nftables-nat.nft-5e0c3b6bdb8b0ac1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/nftables/osf/pf.os +SPDXID: SPDXRef-File-etc-nftables-osf-pf.os-466ba07e05bd8df5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/nftables/router.nft +SPDXID: SPDXRef-File-etc-nftables-router.nft-683eb59791d91368 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/nsswitch.conf +SPDXID: SPDXRef-File-etc-nsswitch.conf-c23113a191f1b1d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/openldap/ldap.conf +SPDXID: SPDXRef-File-etc-openldap-ldap.conf-91eb039632dbcf78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/config-util +SPDXID: SPDXRef-File-etc-pam.d-config-util-44a1b1d83b2dc66a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/fingerprint-auth +SPDXID: SPDXRef-File-etc-pam.d-fingerprint-auth-dadc09b3c82832f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/login +SPDXID: SPDXRef-File-etc-pam.d-login-f31db323edd73e9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/other +SPDXID: SPDXRef-File-etc-pam.d-other-7bfc13e464be593b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/passwd +SPDXID: SPDXRef-File-etc-pam.d-passwd-541957eabc00bbdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/password-auth +SPDXID: SPDXRef-File-etc-pam.d-password-auth-e4b04599401de0b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/postlogin +SPDXID: SPDXRef-File-etc-pam.d-postlogin-358f093208a17aec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/remote +SPDXID: SPDXRef-File-etc-pam.d-remote-7b5e7d32cf09e008 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/runuser +SPDXID: SPDXRef-File-etc-pam.d-runuser-6f6b006da29629cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/runuser-l +SPDXID: SPDXRef-File-etc-pam.d-runuser-l-2fa9493d98dc27d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/smartcard-auth +SPDXID: SPDXRef-File-etc-pam.d-smartcard-auth-3975d6f6d6f30a67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/su +SPDXID: SPDXRef-File-etc-pam.d-su-c8a5c816f064afb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/su-l +SPDXID: SPDXRef-File-etc-pam.d-su-l-26fe759d840dee6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/subscription-manager +SPDXID: SPDXRef-File-etc-pam.d-subscription-manager-4710ab729ebf1497 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/system-auth +SPDXID: SPDXRef-File-etc-pam.d-system-auth-28c3b67509a115a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pam.d/systemd-user +SPDXID: SPDXRef-File-etc-pam.d-systemd-user-f1eef627e5d1fcc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/passwd +SPDXID: SPDXRef-File-etc-passwd-90de2d8634cc64c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:711a6bcc74697eeea01e778a93f515669fcd6cbb945fdd12446e4c6440802d2b + +FileName: /etc/pki/ca-trust/README +SPDXID: SPDXRef-File-etc-pki-ca-trust-README-96ecf6ead68d0c25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/ca-legacy.conf +SPDXID: SPDXRef-File-etc-pki-ca-trust-ca-legacy.conf-941143020d563d10 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/README +SPDXID: SPDXRef-File-etc-pki-ca-trust-extracted-README-80ed41260332a1ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/edk2/README +SPDXID: SPDXRef-File-etc-pki-ca-trust-extracted-edk2-README-d28ed8243b83d2ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/java/README +SPDXID: SPDXRef-File-etc-pki-ca-trust-extracted-java-README-0bb6f1c96969abef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/extracted/pem/README +SPDXID: SPDXRef-File-etc-pki-ca-trust-extracted-pem-README-1d2ecb57de6d58ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/ca-trust/source/README +SPDXID: SPDXRef-File-etc-pki-ca-trust-source-README-ef036ffb48058105 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/product-default/479.pem +SPDXID: SPDXRef-File-etc-pki-product-default-479.pem-03a11ebe10f77ea2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/tls/ct_log_list.cnf +SPDXID: SPDXRef-File-etc-pki-tls-ct-log-list.cnf-8fbba57cc0ef9365 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/pki/tls/openssl.cnf +SPDXID: SPDXRef-File-etc-pki-tls-openssl.cnf-7a7377c66d7f25a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/printcap +SPDXID: SPDXRef-File-etc-printcap-798f42720575d83a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile +SPDXID: SPDXRef-File-etc-profile-5a7d895563e2a4b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/colorgrep.csh +SPDXID: SPDXRef-File-etc-profile.d-colorgrep.csh-d9db08ce5c03e386 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/colorgrep.sh +SPDXID: SPDXRef-File-etc-profile.d-colorgrep.sh-17e0e4a63748c690 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/colorzgrep.csh +SPDXID: SPDXRef-File-etc-profile.d-colorzgrep.csh-c4a6f677e5533a33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/colorzgrep.sh +SPDXID: SPDXRef-File-etc-profile.d-colorzgrep.sh-59cbe5208d0b48cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/csh.local +SPDXID: SPDXRef-File-etc-profile.d-csh.local-d7f2266219ea533b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/gawk.csh +SPDXID: SPDXRef-File-etc-profile.d-gawk.csh-1266f3467c6bae09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/gawk.sh +SPDXID: SPDXRef-File-etc-profile.d-gawk.sh-4ed9805d3069a9f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/lang.csh +SPDXID: SPDXRef-File-etc-profile.d-lang.csh-0187bc6ea2b5ac9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/lang.sh +SPDXID: SPDXRef-File-etc-profile.d-lang.sh-cbde1e30082ef996 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/sh.local +SPDXID: SPDXRef-File-etc-profile.d-sh.local-bfb9288815fc2000 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/which2.csh +SPDXID: SPDXRef-File-etc-profile.d-which2.csh-14d29d124494fdad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/profile.d/which2.sh +SPDXID: SPDXRef-File-etc-profile.d-which2.sh-5d10f15a57b32e67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/protocols +SPDXID: SPDXRef-File-etc-protocols-b60ff1f0bea24ce5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rc.d/init.d/README +SPDXID: SPDXRef-File-etc-rc.d-init.d-README-40c859900b4b760f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rc.d/rc.local +SPDXID: SPDXRef-File-etc-rc.d-rc.local-e1bf31ef47fc3222 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/redhat-release +SPDXID: SPDXRef-File-etc-redhat-release-ef6d52083fa32a5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rhsm/ca/redhat-uep.pem +SPDXID: SPDXRef-File-etc-rhsm-ca-redhat-uep.pem-16429a5a5c7f5b74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rhsm/logging.conf +SPDXID: SPDXRef-File-etc-rhsm-logging.conf-e6dc5e722b02acec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rhsm/rhsm.conf +SPDXID: SPDXRef-File-etc-rhsm-rhsm.conf-33ee4e49801a8939 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rhsm/syspurpose/valid_fields.json +SPDXID: SPDXRef-File-etc-rhsm-syspurpose-valid-fields.json-370e95071e132f85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rpc +SPDXID: SPDXRef-File-etc-rpc-a6dec8bf69c4b476 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/rpm/macros.dist +SPDXID: SPDXRef-File-etc-rpm-macros.dist-ff878d87d85b98fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/access.conf +SPDXID: SPDXRef-File-etc-security-access.conf-483f4355e19fef17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/chroot.conf +SPDXID: SPDXRef-File-etc-security-chroot.conf-6f592c2e4aa427f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/console.apps/config-util +SPDXID: SPDXRef-File-etc-security-console.apps-config-util-06ffec58708307c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/console.handlers +SPDXID: SPDXRef-File-etc-security-console.handlers-8cddc3102cb9ca9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/console.perms +SPDXID: SPDXRef-File-etc-security-console.perms-043e8634a0965656 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/faillock.conf +SPDXID: SPDXRef-File-etc-security-faillock.conf-46ab6fb3e4330c07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/group.conf +SPDXID: SPDXRef-File-etc-security-group.conf-32e6e0ce38bfb61e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/limits.conf +SPDXID: SPDXRef-File-etc-security-limits.conf-10126cd3ee8b5dd2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/namespace.conf +SPDXID: SPDXRef-File-etc-security-namespace.conf-188f8fd7f08df7cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/namespace.init +SPDXID: SPDXRef-File-etc-security-namespace.init-7972ad94002ec0d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/opasswd +SPDXID: SPDXRef-File-etc-security-opasswd-4ea39fc2dc18f4f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/pam_env.conf +SPDXID: SPDXRef-File-etc-security-pam-env.conf-ee927e4398f8442d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/pwhistory.conf +SPDXID: SPDXRef-File-etc-security-pwhistory.conf-1071f06d7e3b0a7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/pwquality.conf +SPDXID: SPDXRef-File-etc-security-pwquality.conf-aa5a752bcc77345b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/sepermit.conf +SPDXID: SPDXRef-File-etc-security-sepermit.conf-d23184be304121e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/security/time.conf +SPDXID: SPDXRef-File-etc-security-time.conf-c0625510190528e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/selinux/semanage.conf +SPDXID: SPDXRef-File-etc-selinux-semanage.conf-94ebbbbebf9a3cd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/services +SPDXID: SPDXRef-File-etc-services-4af93d739636ab4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/shadow +SPDXID: SPDXRef-File-etc-shadow-bd97c6978c250f04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:711a6bcc74697eeea01e778a93f515669fcd6cbb945fdd12446e4c6440802d2b + +FileName: /etc/shells +SPDXID: SPDXRef-File-etc-shells-02d9af0b38cd98e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/skel/.bash_logout +SPDXID: SPDXRef-File-etc-skel-.bash-logout-3e12cf6d425eca40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/skel/.bash_profile +SPDXID: SPDXRef-File-etc-skel-.bash-profile-e9bf8b015bb2b301 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/skel/.bashrc +SPDXID: SPDXRef-File-etc-skel-.bashrc-88051a122bc4794a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/subgid +SPDXID: SPDXRef-File-etc-subgid-1fb40ae1ef6f69b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/subuid +SPDXID: SPDXRef-File-etc-subuid-161015d5ebfe405f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/sysconfig/ip6tables-config +SPDXID: SPDXRef-File-etc-sysconfig-ip6tables-config-a06418242fac8a81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/sysconfig/iptables-config +SPDXID: SPDXRef-File-etc-sysconfig-iptables-config-da84a8dbe12db1fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/sysconfig/nftables.conf +SPDXID: SPDXRef-File-etc-sysconfig-nftables.conf-cbba7caadf5b2db4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /etc/sysctl.conf +SPDXID: SPDXRef-File-etc-sysctl.conf-22ac3ca910f56d15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/system-release-cpe +SPDXID: SPDXRef-File-etc-system-release-cpe-088e463ba7ac1c7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/systemd/coredump.conf +SPDXID: SPDXRef-File-etc-systemd-coredump.conf-0fa0d53ca5d64690 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/systemd/journald.conf +SPDXID: SPDXRef-File-etc-systemd-journald.conf-161587aead4f30d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/systemd/logind.conf +SPDXID: SPDXRef-File-etc-systemd-logind.conf-a0a588c35da35e14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/systemd/pstore.conf +SPDXID: SPDXRef-File-etc-systemd-pstore.conf-11250dcdaa00a5e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/systemd/resolved.conf +SPDXID: SPDXRef-File-etc-systemd-resolved.conf-5c642b3598ef12ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/systemd/system.conf +SPDXID: SPDXRef-File-etc-systemd-system.conf-03bfb375b2b507e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/systemd/user.conf +SPDXID: SPDXRef-File-etc-systemd-user.conf-f7cdc2be6ae2c773 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/virc +SPDXID: SPDXRef-File-etc-virc-5e8e0527a1b4ef7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/xattr.conf +SPDXID: SPDXRef-File-etc-xattr.conf-bbf6f2936807a965 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /etc/yum.repos.d/redhat.repo +SPDXID: SPDXRef-File-etc-yum.repos.d-redhat.repo-7c883101633cb685 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /opt/java/openjdk/bin/java +SPDXID: SPDXRef-File-opt-java-openjdk-bin-java-9aa898fbd0b3e993 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:d8dad3122a723d8dcf08bb4beccac632acdcbff8186f700d79f526f4cc486fb9 + +FileName: /opt/java/openjdk/lib/jrt-fs.jar +SPDXID: SPDXRef-File-opt-java-openjdk-lib-jrt-fs.jar-096fcaf7da0ab64c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:d8dad3122a723d8dcf08bb4beccac632acdcbff8186f700d79f526f4cc486fb9 + +FileName: /opt/ol/wlp/bin/tools/ws-javaagent.jar +SPDXID: SPDXRef-File-opt-ol-wlp-bin-tools-ws-javaagent.jar-cc78d3904194e910 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/bin/tools/ws-schemagen.jar +SPDXID: SPDXRef-File-opt-ol-wlp-bin-tools-ws-schemagen.jar-2549f9f3b480549c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/bin/tools/ws-server.jar +SPDXID: SPDXRef-File-opt-ol-wlp-bin-tools-ws-server.jar-9a239fa39b4fd6f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/bootstrap-agent.jar +SPDXID: SPDXRef-File-opt-ol-wlp-lib-bootstrap-agent.jar-b2c0aa2b346923b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /opt/ol/wlp/lib/ws-launch.jar +SPDXID: SPDXRef-File-opt-ol-wlp-lib-ws-launch.jar-d46337f79f64e601 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:e014798e5826e905f806aa894841f11b852210e983b7bc131a00a02205f5dbdd + +FileName: /root/.bash_logout +SPDXID: SPDXRef-File-root-.bash-logout-20745bd95ce05027 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /root/.bash_profile +SPDXID: SPDXRef-File-root-.bash-profile-6cb0a62f87e9d043 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /root/.bashrc +SPDXID: SPDXRef-File-root-.bashrc-f73edd36ace924c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /root/.cshrc +SPDXID: SPDXRef-File-root-.cshrc-a0519b5a2f52e968 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /root/.tcshrc +SPDXID: SPDXRef-File-root-.tcshrc-f8f2924eed0d9ed3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/[ +SPDXID: SPDXRef-File-usr-bin---5d50a5c7733a5443 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/alias +SPDXID: SPDXRef-File-usr-bin-alias-301ca1facbefe794 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/arch +SPDXID: SPDXRef-File-usr-bin-arch-d98ca7ef721130c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/b2sum +SPDXID: SPDXRef-File-usr-bin-b2sum-1ff010ac94b35573 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/base32 +SPDXID: SPDXRef-File-usr-bin-base32-6b094c42bb45261b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/base64 +SPDXID: SPDXRef-File-usr-bin-base64-8650ff0e272bcd68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/basename +SPDXID: SPDXRef-File-usr-bin-basename-25411a7a4026c6d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/bash +SPDXID: SPDXRef-File-usr-bin-bash-11695f5bbf42dad4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/bashbug-64 +SPDXID: SPDXRef-File-usr-bin-bashbug-64-a8059e84dae3f45c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/bg +SPDXID: SPDXRef-File-usr-bin-bg-4e8cfe258ce5cf3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/brotli +SPDXID: SPDXRef-File-usr-bin-brotli-23ef24a434020a35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/busctl +SPDXID: SPDXRef-File-usr-bin-busctl-1c42670385f918db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ca-legacy +SPDXID: SPDXRef-File-usr-bin-ca-legacy-ecd8ff85d3189ae4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/cal +SPDXID: SPDXRef-File-usr-bin-cal-2852b38da693aa65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/cat +SPDXID: SPDXRef-File-usr-bin-cat-91170b79ac19796f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/catchsegv +SPDXID: SPDXRef-File-usr-bin-catchsegv-c003dbceb8d7986f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/cd +SPDXID: SPDXRef-File-usr-bin-cd-f6ed4278910f843d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chacl +SPDXID: SPDXRef-File-usr-bin-chacl-0ecbb8cf3a13bcfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chage +SPDXID: SPDXRef-File-usr-bin-chage-395c90859219267a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chardetect +SPDXID: SPDXRef-File-usr-bin-chardetect-d6e390daf0ddc264 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chcon +SPDXID: SPDXRef-File-usr-bin-chcon-16fe8720c443b6ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chgrp +SPDXID: SPDXRef-File-usr-bin-chgrp-7ad81929fdf95bcb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chmem +SPDXID: SPDXRef-File-usr-bin-chmem-8ca3d461256c79ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chmod +SPDXID: SPDXRef-File-usr-bin-chmod-c7be14c5570f6999 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chown +SPDXID: SPDXRef-File-usr-bin-chown-1787a3ad14a9330f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/chrt +SPDXID: SPDXRef-File-usr-bin-chrt-4bf45dee53cf37a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/cksum +SPDXID: SPDXRef-File-usr-bin-cksum-a56e605bada7d4e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/col +SPDXID: SPDXRef-File-usr-bin-col-3982383c75bdbb11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/colcrt +SPDXID: SPDXRef-File-usr-bin-colcrt-c8ea70a4dc80234c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/colrm +SPDXID: SPDXRef-File-usr-bin-colrm-1d310e1701246d60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/column +SPDXID: SPDXRef-File-usr-bin-column-6f562d86e906c4b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/comm +SPDXID: SPDXRef-File-usr-bin-comm-38ea875ccd8489e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/command +SPDXID: SPDXRef-File-usr-bin-command-f50418d637798502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/consolehelper +SPDXID: SPDXRef-File-usr-bin-consolehelper-f0cf2a189ff3bb74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/coredumpctl +SPDXID: SPDXRef-File-usr-bin-coredumpctl-83a6a5615297f00b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/coreutils +SPDXID: SPDXRef-File-usr-bin-coreutils-4e66195c80e76d94 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/cp +SPDXID: SPDXRef-File-usr-bin-cp-2332a40d37410d35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/csplit +SPDXID: SPDXRef-File-usr-bin-csplit-fd73a92f0d4d0cf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/curl +SPDXID: SPDXRef-File-usr-bin-curl-952ce60cd528f93b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/cut +SPDXID: SPDXRef-File-usr-bin-cut-c53581bf8686266a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/date +SPDXID: SPDXRef-File-usr-bin-date-53713e3f5331fdb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_archive +SPDXID: SPDXRef-File-usr-bin-db-archive-5d04b942779cf002 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_checkpoint +SPDXID: SPDXRef-File-usr-bin-db-checkpoint-e0402bdf3ce616d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_deadlock +SPDXID: SPDXRef-File-usr-bin-db-deadlock-eee43bdf68f59995 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_dump +SPDXID: SPDXRef-File-usr-bin-db-dump-309b5968b0c9d3f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_dump185 +SPDXID: SPDXRef-File-usr-bin-db-dump185-35759986b592c159 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_hotbackup +SPDXID: SPDXRef-File-usr-bin-db-hotbackup-e6b838ddf7bfa68f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_load +SPDXID: SPDXRef-File-usr-bin-db-load-37fce3b95279ce2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_log_verify +SPDXID: SPDXRef-File-usr-bin-db-log-verify-9ba3ed6b9cb07290 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_printlog +SPDXID: SPDXRef-File-usr-bin-db-printlog-82dba6d842794a67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_recover +SPDXID: SPDXRef-File-usr-bin-db-recover-4a98d4bab1fed412 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_replicate +SPDXID: SPDXRef-File-usr-bin-db-replicate-b00eeae663331b27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_stat +SPDXID: SPDXRef-File-usr-bin-db-stat-0983830ed9a58de2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_tuner +SPDXID: SPDXRef-File-usr-bin-db-tuner-4c2bfde9885512ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_upgrade +SPDXID: SPDXRef-File-usr-bin-db-upgrade-e37bfb93c36042ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/db_verify +SPDXID: SPDXRef-File-usr-bin-db-verify-faa44758f54565f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-binding-tool +SPDXID: SPDXRef-File-usr-bin-dbus-binding-tool-41c76be09a3e351c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-cleanup-sockets +SPDXID: SPDXRef-File-usr-bin-dbus-cleanup-sockets-1b0ed22a7a0487cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-daemon +SPDXID: SPDXRef-File-usr-bin-dbus-daemon-5fa75d17886df743 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-monitor +SPDXID: SPDXRef-File-usr-bin-dbus-monitor-feab5640aefebea5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-run-session +SPDXID: SPDXRef-File-usr-bin-dbus-run-session-d8e9e023831ad290 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-send +SPDXID: SPDXRef-File-usr-bin-dbus-send-fab90d42fa53c741 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-test-tool +SPDXID: SPDXRef-File-usr-bin-dbus-test-tool-6c0ab134ab5fb082 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dbus-uuidgen +SPDXID: SPDXRef-File-usr-bin-dbus-uuidgen-d1ce41e14afce8ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dd +SPDXID: SPDXRef-File-usr-bin-dd-05f9b9b2c9519bb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/df +SPDXID: SPDXRef-File-usr-bin-df-f7312bdcc796fb5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dir +SPDXID: SPDXRef-File-usr-bin-dir-6b6dd0f9f77cb524 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dircolors +SPDXID: SPDXRef-File-usr-bin-dircolors-b79550bde7c2d093 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dirmngr +SPDXID: SPDXRef-File-usr-bin-dirmngr-85ed1bf6225dce74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dirmngr-client +SPDXID: SPDXRef-File-usr-bin-dirmngr-client-b517ff400bdfe5b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dirname +SPDXID: SPDXRef-File-usr-bin-dirname-a7b100debaeadb2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dmesg +SPDXID: SPDXRef-File-usr-bin-dmesg-0f7031e436f0168f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/dnf-3 +SPDXID: SPDXRef-File-usr-bin-dnf-3-16175176c3acd9d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/du +SPDXID: SPDXRef-File-usr-bin-du-4897d0f00b625ce6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/echo +SPDXID: SPDXRef-File-usr-bin-echo-4355567056fd4dfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/egrep +SPDXID: SPDXRef-File-usr-bin-egrep-aed92999cfb17304 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/eject +SPDXID: SPDXRef-File-usr-bin-eject-9f6eda36d568d6f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/env +SPDXID: SPDXRef-File-usr-bin-env-60488a7730f12e31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/evmctl +SPDXID: SPDXRef-File-usr-bin-evmctl-8187e18523fad015 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/expand +SPDXID: SPDXRef-File-usr-bin-expand-8057aea9011ad58e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/expr +SPDXID: SPDXRef-File-usr-bin-expr-1ca0551b969d1b12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/factor +SPDXID: SPDXRef-File-usr-bin-factor-1f1905a717803039 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fallocate +SPDXID: SPDXRef-File-usr-bin-fallocate-ade54647f9a37905 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/false +SPDXID: SPDXRef-File-usr-bin-false-fc6eebb70e0daf0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fc +SPDXID: SPDXRef-File-usr-bin-fc-52da7ab3b20e783d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fc-cache +SPDXID: SPDXRef-File-usr-bin-fc-cache-45e1370509e37260 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-cache-64 +SPDXID: SPDXRef-File-usr-bin-fc-cache-64-0b13f3e18cfd3249 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-cat +SPDXID: SPDXRef-File-usr-bin-fc-cat-9bac35ace24999f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-conflist +SPDXID: SPDXRef-File-usr-bin-fc-conflist-87489a904cbaf170 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-list +SPDXID: SPDXRef-File-usr-bin-fc-list-9e987c5cde6fc5d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-match +SPDXID: SPDXRef-File-usr-bin-fc-match-9f650f46f435e2a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-pattern +SPDXID: SPDXRef-File-usr-bin-fc-pattern-9bc515d2c84af8f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-query +SPDXID: SPDXRef-File-usr-bin-fc-query-ea3b26791dfb86d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-scan +SPDXID: SPDXRef-File-usr-bin-fc-scan-664196b1474edff7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fc-validate +SPDXID: SPDXRef-File-usr-bin-fc-validate-f358adee20bc97f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/fg +SPDXID: SPDXRef-File-usr-bin-fg-e7b1b69f1775fc04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fgrep +SPDXID: SPDXRef-File-usr-bin-fgrep-cc0ea280a1dd78f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fincore +SPDXID: SPDXRef-File-usr-bin-fincore-d024d61a48b1bd97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/find +SPDXID: SPDXRef-File-usr-bin-find-b98291df748fd65b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/findmnt +SPDXID: SPDXRef-File-usr-bin-findmnt-a3357bf98e79859c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fips-finish-install +SPDXID: SPDXRef-File-usr-bin-fips-finish-install-8d969bae039eecce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fips-mode-setup +SPDXID: SPDXRef-File-usr-bin-fips-mode-setup-f8f6febfa034e893 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/flock +SPDXID: SPDXRef-File-usr-bin-flock-99181d8d187ab597 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fmt +SPDXID: SPDXRef-File-usr-bin-fmt-e1e473e89be5f240 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/fold +SPDXID: SPDXRef-File-usr-bin-fold-3cb198d50f1e5a0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/g13 +SPDXID: SPDXRef-File-usr-bin-g13-b853cdbd34c603ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gapplication +SPDXID: SPDXRef-File-usr-bin-gapplication-fc933c4ddc7dc091 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gawk +SPDXID: SPDXRef-File-usr-bin-gawk-ccf8149a99c484d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gdbm_dump +SPDXID: SPDXRef-File-usr-bin-gdbm-dump-0fc47f63e96ddf65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gdbm_load +SPDXID: SPDXRef-File-usr-bin-gdbm-load-cb419ab4bbd6f08a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gdbmtool +SPDXID: SPDXRef-File-usr-bin-gdbmtool-30bfe4b875f52080 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gdbserver +SPDXID: SPDXRef-File-usr-bin-gdbserver-8d21c3fb379aee6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gdbus +SPDXID: SPDXRef-File-usr-bin-gdbus-8ab18f0efb7e01ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gencat +SPDXID: SPDXRef-File-usr-bin-gencat-57ba352f84ca9c20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/getconf +SPDXID: SPDXRef-File-usr-bin-getconf-05eb3796b00473d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/getent +SPDXID: SPDXRef-File-usr-bin-getent-b4027803010b6686 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/getfacl +SPDXID: SPDXRef-File-usr-bin-getfacl-2c9cb1d15ce83fab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/getopt +SPDXID: SPDXRef-File-usr-bin-getopt-da8dba53247ee783 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/getopts +SPDXID: SPDXRef-File-usr-bin-getopts-9d12602cbc4e5861 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gio +SPDXID: SPDXRef-File-usr-bin-gio-03aae959a4a7002b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gio-querymodules-64 +SPDXID: SPDXRef-File-usr-bin-gio-querymodules-64-18d81c4c967d50c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/glib-compile-schemas +SPDXID: SPDXRef-File-usr-bin-glib-compile-schemas-42ee867c7551575b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpasswd +SPDXID: SPDXRef-File-usr-bin-gpasswd-677e1db91b5b7fb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpg-agent +SPDXID: SPDXRef-File-usr-bin-gpg-agent-ff38d93d254ce4c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpg-connect-agent +SPDXID: SPDXRef-File-usr-bin-gpg-connect-agent-4bcacd9cf972bfc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpg-error +SPDXID: SPDXRef-File-usr-bin-gpg-error-901be8daec8d0325 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpg +SPDXID: SPDXRef-File-usr-bin-gpg-fdf0a57b39a3a17a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpg-wks-server +SPDXID: SPDXRef-File-usr-bin-gpg-wks-server-1899695bd68127ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpg-zip +SPDXID: SPDXRef-File-usr-bin-gpg-zip-552c13ca996257ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpgconf +SPDXID: SPDXRef-File-usr-bin-gpgconf-24cd0f11ee72ff7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpgme-json +SPDXID: SPDXRef-File-usr-bin-gpgme-json-d26572c526407a05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpgparsemail +SPDXID: SPDXRef-File-usr-bin-gpgparsemail-519046b8f9193063 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpgsplit +SPDXID: SPDXRef-File-usr-bin-gpgsplit-6df406738099b6cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gpgv +SPDXID: SPDXRef-File-usr-bin-gpgv-01bda67dd8f9b423 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/grep +SPDXID: SPDXRef-File-usr-bin-grep-974ba8f294bb0dde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/groups +SPDXID: SPDXRef-File-usr-bin-groups-fa279371f3022794 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gsettings +SPDXID: SPDXRef-File-usr-bin-gsettings-013e656dcfcac800 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gunzip +SPDXID: SPDXRef-File-usr-bin-gunzip-fb01a37017cc5581 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gzexe +SPDXID: SPDXRef-File-usr-bin-gzexe-b57fa495b2db7dc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/gzip +SPDXID: SPDXRef-File-usr-bin-gzip-06f34d6435b7d12e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/hash +SPDXID: SPDXRef-File-usr-bin-hash-af4d693097f83e4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/head +SPDXID: SPDXRef-File-usr-bin-head-6d5648ad903746e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/hexdump +SPDXID: SPDXRef-File-usr-bin-hexdump-2f1932acbdc2a337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/hostid +SPDXID: SPDXRef-File-usr-bin-hostid-700af32eae66742a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/hostnamectl +SPDXID: SPDXRef-File-usr-bin-hostnamectl-76e93c0a34e3aa52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/iconv +SPDXID: SPDXRef-File-usr-bin-iconv-1cf9a78ec9f64d75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/id +SPDXID: SPDXRef-File-usr-bin-id-f8cb6de5c9aa2782 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/info +SPDXID: SPDXRef-File-usr-bin-info-efee99e7ff1a6ae5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/install +SPDXID: SPDXRef-File-usr-bin-install-99bb7aabd6e12173 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ionice +SPDXID: SPDXRef-File-usr-bin-ionice-98f52df29925a2ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ipcmk +SPDXID: SPDXRef-File-usr-bin-ipcmk-995355ef666d81e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ipcrm +SPDXID: SPDXRef-File-usr-bin-ipcrm-9bd3109355f40501 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ipcs +SPDXID: SPDXRef-File-usr-bin-ipcs-57b3a454ab9f1a0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/isosize +SPDXID: SPDXRef-File-usr-bin-isosize-1c7f906bf5efb946 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/jobs +SPDXID: SPDXRef-File-usr-bin-jobs-c644dbad088b725d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/join +SPDXID: SPDXRef-File-usr-bin-join-62a518d6985e2090 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/journalctl +SPDXID: SPDXRef-File-usr-bin-journalctl-693a41101780608c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/kill +SPDXID: SPDXRef-File-usr-bin-kill-0a6dce09e397dd4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/last +SPDXID: SPDXRef-File-usr-bin-last-5a98fd9f5363dfed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lastlog +SPDXID: SPDXRef-File-usr-bin-lastlog-32a377518867f99f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lchfn +SPDXID: SPDXRef-File-usr-bin-lchfn-635f75ad5ebd35bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lchsh +SPDXID: SPDXRef-File-usr-bin-lchsh-51753e1a6da3121e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ldd +SPDXID: SPDXRef-File-usr-bin-ldd-6ce038fb9ee081d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/link +SPDXID: SPDXRef-File-usr-bin-link-ac9a2302a076862c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ln +SPDXID: SPDXRef-File-usr-bin-ln-b6a6b77fb4a18dd8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/locale +SPDXID: SPDXRef-File-usr-bin-locale-cc62172f88b769bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/localectl +SPDXID: SPDXRef-File-usr-bin-localectl-a0650745365c0754 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/localedef +SPDXID: SPDXRef-File-usr-bin-localedef-4c87c226994103f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/logger +SPDXID: SPDXRef-File-usr-bin-logger-fe9aacca01b178d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/login +SPDXID: SPDXRef-File-usr-bin-login-a5820c55a0acf341 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/loginctl +SPDXID: SPDXRef-File-usr-bin-loginctl-51e12304b5f021cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/logname +SPDXID: SPDXRef-File-usr-bin-logname-a284cbfd2521da6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/look +SPDXID: SPDXRef-File-usr-bin-look-b698a3ef25836dc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ls +SPDXID: SPDXRef-File-usr-bin-ls-45acbaeafa7483b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lsblk +SPDXID: SPDXRef-File-usr-bin-lsblk-28ca6dc9d4da6c85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lscpu +SPDXID: SPDXRef-File-usr-bin-lscpu-bb3ae1fbb8b7e6c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lsipc +SPDXID: SPDXRef-File-usr-bin-lsipc-9b5bbd32ae4bf16c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lslocks +SPDXID: SPDXRef-File-usr-bin-lslocks-dce2decadcc007be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lslogins +SPDXID: SPDXRef-File-usr-bin-lslogins-977d6948ffd5d218 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lsmem +SPDXID: SPDXRef-File-usr-bin-lsmem-de6c82a5fde8dcda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/lsns +SPDXID: SPDXRef-File-usr-bin-lsns-859c0e31fe4d5956 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/make-dummy-cert +SPDXID: SPDXRef-File-usr-bin-make-dummy-cert-04704039b6f2f087 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/makedb +SPDXID: SPDXRef-File-usr-bin-makedb-941cb55c1d25b8c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mcookie +SPDXID: SPDXRef-File-usr-bin-mcookie-81f2ffbfa2fc0d45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/md5sum +SPDXID: SPDXRef-File-usr-bin-md5sum-76c4d79d89ac1a27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mesg +SPDXID: SPDXRef-File-usr-bin-mesg-66a9d3a557f8fc34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mkdir +SPDXID: SPDXRef-File-usr-bin-mkdir-eba5192a4985f7f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mkfifo +SPDXID: SPDXRef-File-usr-bin-mkfifo-6ec5c1bd07d07e5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mknod +SPDXID: SPDXRef-File-usr-bin-mknod-4b2314978fecf976 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mktemp +SPDXID: SPDXRef-File-usr-bin-mktemp-0f0af3c607475367 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/modulemd-validator +SPDXID: SPDXRef-File-usr-bin-modulemd-validator-d9ef2fee55f31fe9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/more +SPDXID: SPDXRef-File-usr-bin-more-5780c124c1d6624a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mount +SPDXID: SPDXRef-File-usr-bin-mount-50b059aaba1de796 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mountpoint +SPDXID: SPDXRef-File-usr-bin-mountpoint-f335290dafe737ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/mv +SPDXID: SPDXRef-File-usr-bin-mv-cd9ae67ae8663eb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/namei +SPDXID: SPDXRef-File-usr-bin-namei-a03176721663d4ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/newgidmap +SPDXID: SPDXRef-File-usr-bin-newgidmap-e25f16725e941183 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/newgrp +SPDXID: SPDXRef-File-usr-bin-newgrp-ce1b81db2983ae25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/newuidmap +SPDXID: SPDXRef-File-usr-bin-newuidmap-f7a69fcc550d39d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/nice +SPDXID: SPDXRef-File-usr-bin-nice-dba8b2ded58211a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/nl +SPDXID: SPDXRef-File-usr-bin-nl-465b691c25595e4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/nohup +SPDXID: SPDXRef-File-usr-bin-nohup-9ebe7583f5c021e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/nproc +SPDXID: SPDXRef-File-usr-bin-nproc-d7038d804df947b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/nsenter +SPDXID: SPDXRef-File-usr-bin-nsenter-fcc1ee9365e772ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/numfmt +SPDXID: SPDXRef-File-usr-bin-numfmt-4574fc253a7e3b27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/od +SPDXID: SPDXRef-File-usr-bin-od-236f3d245b1416e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/openssl +SPDXID: SPDXRef-File-usr-bin-openssl-bd2dbf10c7834d86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/p11-kit +SPDXID: SPDXRef-File-usr-bin-p11-kit-e60d47020480b040 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/passwd +SPDXID: SPDXRef-File-usr-bin-passwd-1cd78e2d3dab3466 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/paste +SPDXID: SPDXRef-File-usr-bin-paste-9f568728818a5ba6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pathchk +SPDXID: SPDXRef-File-usr-bin-pathchk-7ff26038ed0cf74d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pinky +SPDXID: SPDXRef-File-usr-bin-pinky-9632538ee6a35e39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pldd +SPDXID: SPDXRef-File-usr-bin-pldd-6451af671105ffcf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pr +SPDXID: SPDXRef-File-usr-bin-pr-866203e429d4243f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/printenv +SPDXID: SPDXRef-File-usr-bin-printenv-318c0192064b0d77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/printf +SPDXID: SPDXRef-File-usr-bin-printf-e76e52b963f7cde4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/prlimit +SPDXID: SPDXRef-File-usr-bin-prlimit-3553163f1e1cf4b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ptx +SPDXID: SPDXRef-File-usr-bin-ptx-e3180520209a6f06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pwd +SPDXID: SPDXRef-File-usr-bin-pwd-ea806065cab44fd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pwmake +SPDXID: SPDXRef-File-usr-bin-pwmake-35d44fa1766eaf3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pwscore +SPDXID: SPDXRef-File-usr-bin-pwscore-caaaa279f05cbedd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pydoc3.6 +SPDXID: SPDXRef-File-usr-bin-pydoc3.6-a72e09cc63751932 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pyinotify +SPDXID: SPDXRef-File-usr-bin-pyinotify-b422e9b17baa5577 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/pyvenv-3.6 +SPDXID: SPDXRef-File-usr-bin-pyvenv-3.6-5e7590a0dfe7a76a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/raw +SPDXID: SPDXRef-File-usr-bin-raw-9d7530a13080c3cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rct +SPDXID: SPDXRef-File-usr-bin-rct-cb405c6a1c4083f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/read +SPDXID: SPDXRef-File-usr-bin-read-da5bdaeee82a7e6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/readlink +SPDXID: SPDXRef-File-usr-bin-readlink-1e50830c82baf114 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/realpath +SPDXID: SPDXRef-File-usr-bin-realpath-762610ce02febbb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rename +SPDXID: SPDXRef-File-usr-bin-rename-070abff6a1e619d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/renew-dummy-cert +SPDXID: SPDXRef-File-usr-bin-renew-dummy-cert-7657542d0f9202df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/bin/renice +SPDXID: SPDXRef-File-usr-bin-renice-1fae36cba99a6c69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/resolvectl +SPDXID: SPDXRef-File-usr-bin-resolvectl-b9af0cf3c8f456c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rev +SPDXID: SPDXRef-File-usr-bin-rev-5f5b1442375b7f83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rhsm-debug +SPDXID: SPDXRef-File-usr-bin-rhsm-debug-ee7fab936296c48c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rhsmcertd +SPDXID: SPDXRef-File-usr-bin-rhsmcertd-41abed6856a450d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rm +SPDXID: SPDXRef-File-usr-bin-rm-8c1484caa71064f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rmdir +SPDXID: SPDXRef-File-usr-bin-rmdir-3ab9a59fb1b2cc3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rpm +SPDXID: SPDXRef-File-usr-bin-rpm-35b0a05eb8dff726 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rpm2archive +SPDXID: SPDXRef-File-usr-bin-rpm2archive-778fb6512f57b6f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rpm2cpio +SPDXID: SPDXRef-File-usr-bin-rpm2cpio-ff6863f05a2b1336 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rpmdb +SPDXID: SPDXRef-File-usr-bin-rpmdb-3f192d9492039852 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/rpmkeys +SPDXID: SPDXRef-File-usr-bin-rpmkeys-b164e73bc5ab2621 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/runcon +SPDXID: SPDXRef-File-usr-bin-runcon-d58684550c2b31cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/script +SPDXID: SPDXRef-File-usr-bin-script-f792c5f19f362d42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/scriptreplay +SPDXID: SPDXRef-File-usr-bin-scriptreplay-70c3702a776423c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sed +SPDXID: SPDXRef-File-usr-bin-sed-1d81a12e3b9399c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/seq +SPDXID: SPDXRef-File-usr-bin-seq-fdf9f500f7d1e42d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/setarch +SPDXID: SPDXRef-File-usr-bin-setarch-9067e5b8f29dca3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/setfacl +SPDXID: SPDXRef-File-usr-bin-setfacl-66f18fad398d5b78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/setpriv +SPDXID: SPDXRef-File-usr-bin-setpriv-7600f093c229e3ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/setsid +SPDXID: SPDXRef-File-usr-bin-setsid-609b24b70007e15e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/setterm +SPDXID: SPDXRef-File-usr-bin-setterm-08063f4ff4442c92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sha1sum +SPDXID: SPDXRef-File-usr-bin-sha1sum-62047354d50f8cfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sha224sum +SPDXID: SPDXRef-File-usr-bin-sha224sum-238d6f941c60a430 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sha256sum +SPDXID: SPDXRef-File-usr-bin-sha256sum-88bb9228526be95c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sha384sum +SPDXID: SPDXRef-File-usr-bin-sha384sum-803f165ab6396d0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sha512sum +SPDXID: SPDXRef-File-usr-bin-sha512sum-c7d806f83ead0503 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/shred +SPDXID: SPDXRef-File-usr-bin-shred-c0cef5e6ca300d0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/shuf +SPDXID: SPDXRef-File-usr-bin-shuf-08e2035826b6be8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sleep +SPDXID: SPDXRef-File-usr-bin-sleep-d9e8d65f67fb5c6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sort +SPDXID: SPDXRef-File-usr-bin-sort-8ede684d0d34f802 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sotruss +SPDXID: SPDXRef-File-usr-bin-sotruss-d01224775e07a109 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/split +SPDXID: SPDXRef-File-usr-bin-split-22027b26a486d831 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sprof +SPDXID: SPDXRef-File-usr-bin-sprof-31f84a9d41863861 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/stat +SPDXID: SPDXRef-File-usr-bin-stat-f82d167f47eb9065 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/stdbuf +SPDXID: SPDXRef-File-usr-bin-stdbuf-e46e301e8d38d4c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/stty +SPDXID: SPDXRef-File-usr-bin-stty-9fe4a4cf929a4710 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/su +SPDXID: SPDXRef-File-usr-bin-su-30fbc07000cf1543 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sum +SPDXID: SPDXRef-File-usr-bin-sum-b6c683a42386dbf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/sync +SPDXID: SPDXRef-File-usr-bin-sync-47ff3f787fbace1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemctl +SPDXID: SPDXRef-File-usr-bin-systemctl-1564c2ea89ec1b49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-analyze +SPDXID: SPDXRef-File-usr-bin-systemd-analyze-81277f2b418a456d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-ask-password +SPDXID: SPDXRef-File-usr-bin-systemd-ask-password-2e04e801f28d2eb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-cat +SPDXID: SPDXRef-File-usr-bin-systemd-cat-035bdf353a8b313f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-cgls +SPDXID: SPDXRef-File-usr-bin-systemd-cgls-d44480593fc481d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-cgtop +SPDXID: SPDXRef-File-usr-bin-systemd-cgtop-0d4daeead478177a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-delta +SPDXID: SPDXRef-File-usr-bin-systemd-delta-18ae2df6f3f03b0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-detect-virt +SPDXID: SPDXRef-File-usr-bin-systemd-detect-virt-19d730827aa04c98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-escape +SPDXID: SPDXRef-File-usr-bin-systemd-escape-c9250b19bbcf5241 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-firstboot +SPDXID: SPDXRef-File-usr-bin-systemd-firstboot-3a52f1a05f7e3000 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-inhibit +SPDXID: SPDXRef-File-usr-bin-systemd-inhibit-918537602c0f894b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-machine-id-setup +SPDXID: SPDXRef-File-usr-bin-systemd-machine-id-setup-7be90e8a26725f1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-mount +SPDXID: SPDXRef-File-usr-bin-systemd-mount-cf3f06c5ae18643a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-notify +SPDXID: SPDXRef-File-usr-bin-systemd-notify-41e3d86a17e84805 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-path +SPDXID: SPDXRef-File-usr-bin-systemd-path-09f7964127cbe019 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-run +SPDXID: SPDXRef-File-usr-bin-systemd-run-bf94f69bb0f0b820 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-socket-activate +SPDXID: SPDXRef-File-usr-bin-systemd-socket-activate-49bcce7809a1e948 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-stdio-bridge +SPDXID: SPDXRef-File-usr-bin-systemd-stdio-bridge-eb33ca6b6cd1a4b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-sysusers +SPDXID: SPDXRef-File-usr-bin-systemd-sysusers-8e24bf0cb49b3dd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-tmpfiles +SPDXID: SPDXRef-File-usr-bin-systemd-tmpfiles-dcb7cc973a77c416 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/systemd-tty-ask-password-agent +SPDXID: SPDXRef-File-usr-bin-systemd-tty-ask-password-agent-64129f155943b17b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tac +SPDXID: SPDXRef-File-usr-bin-tac-98cf606b1f230f38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tail +SPDXID: SPDXRef-File-usr-bin-tail-e9b3a3f11c2f8989 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tar +SPDXID: SPDXRef-File-usr-bin-tar-fa580debc9d7492c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/taskset +SPDXID: SPDXRef-File-usr-bin-taskset-28be5ff07210a8b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tee +SPDXID: SPDXRef-File-usr-bin-tee-895c5829d1157a32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/test +SPDXID: SPDXRef-File-usr-bin-test-6f0f7a126883399a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/timedatectl +SPDXID: SPDXRef-File-usr-bin-timedatectl-11a6a3fb9b1b851d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/timeout +SPDXID: SPDXRef-File-usr-bin-timeout-e48683b79b81b0b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/touch +SPDXID: SPDXRef-File-usr-bin-touch-b0c54409730dae57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tr +SPDXID: SPDXRef-File-usr-bin-tr-715604516e76aeab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/true +SPDXID: SPDXRef-File-usr-bin-true-6eae799d1ca0173d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/truncate +SPDXID: SPDXRef-File-usr-bin-truncate-195a2e61d0eb0eab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/trust +SPDXID: SPDXRef-File-usr-bin-trust-0b067f094056a8d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tsort +SPDXID: SPDXRef-File-usr-bin-tsort-4325d9fd20a617e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tty +SPDXID: SPDXRef-File-usr-bin-tty-c4f9a1872c9dad07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/type +SPDXID: SPDXRef-File-usr-bin-type-721ea5dac09f0b24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/tzselect +SPDXID: SPDXRef-File-usr-bin-tzselect-ba5bd5bfee958294 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ul +SPDXID: SPDXRef-File-usr-bin-ul-9e6d9734e9732b42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/ulimit +SPDXID: SPDXRef-File-usr-bin-ulimit-e7b0b129462e3189 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/umask +SPDXID: SPDXRef-File-usr-bin-umask-7e3496199b83518e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/umount +SPDXID: SPDXRef-File-usr-bin-umount-5aea5226ee5fd5d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/unalias +SPDXID: SPDXRef-File-usr-bin-unalias-6be4cb11aed17376 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/uname +SPDXID: SPDXRef-File-usr-bin-uname-84e53df46b5a1375 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/unexpand +SPDXID: SPDXRef-File-usr-bin-unexpand-427c3d371505ce07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/uniq +SPDXID: SPDXRef-File-usr-bin-uniq-818d44b9e94fe725 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/unlink +SPDXID: SPDXRef-File-usr-bin-unlink-9aea3e58dd1b1a13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/unshare +SPDXID: SPDXRef-File-usr-bin-unshare-5a0461df5bc958fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/update-ca-trust +SPDXID: SPDXRef-File-usr-bin-update-ca-trust-0c25b618daa533c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/update-crypto-policies +SPDXID: SPDXRef-File-usr-bin-update-crypto-policies-f2176860a09dd330 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/users +SPDXID: SPDXRef-File-usr-bin-users-d51072ffe70e5227 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/utmpdump +SPDXID: SPDXRef-File-usr-bin-utmpdump-f161bb18cb40c3de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/uuidgen +SPDXID: SPDXRef-File-usr-bin-uuidgen-66064aac965af476 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/uuidparse +SPDXID: SPDXRef-File-usr-bin-uuidparse-e16a061d1a02f583 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/vdir +SPDXID: SPDXRef-File-usr-bin-vdir-676177514717507e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/vi +SPDXID: SPDXRef-File-usr-bin-vi-1e293eaa12aef215 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/wait +SPDXID: SPDXRef-File-usr-bin-wait-f3419a226cc821f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/wall +SPDXID: SPDXRef-File-usr-bin-wall-a5fb1370842c469d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/watchgnupg +SPDXID: SPDXRef-File-usr-bin-watchgnupg-52453ca259438ad6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/wc +SPDXID: SPDXRef-File-usr-bin-wc-a09ac9cd19ae1062 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/wdctl +SPDXID: SPDXRef-File-usr-bin-wdctl-eac394b4c5871511 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/whereis +SPDXID: SPDXRef-File-usr-bin-whereis-668c4ccd9025d12f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/which +SPDXID: SPDXRef-File-usr-bin-which-bbc3d2f2014a88ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/who +SPDXID: SPDXRef-File-usr-bin-who-6d4928d4d2d5ad9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/whoami +SPDXID: SPDXRef-File-usr-bin-whoami-8f37af6cd04cbf66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/write +SPDXID: SPDXRef-File-usr-bin-write-f61682145fda874c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/xargs +SPDXID: SPDXRef-File-usr-bin-xargs-f3571069e15bd862 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/xmlcatalog +SPDXID: SPDXRef-File-usr-bin-xmlcatalog-f2a74834d35f0919 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/xmllint +SPDXID: SPDXRef-File-usr-bin-xmllint-a213f35a75ac05ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/xmlwf +SPDXID: SPDXRef-File-usr-bin-xmlwf-3d3c8f387c936adf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/yes +SPDXID: SPDXRef-File-usr-bin-yes-882cba3c3703702e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zcat +SPDXID: SPDXRef-File-usr-bin-zcat-be2b8596ff764e1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zcmp +SPDXID: SPDXRef-File-usr-bin-zcmp-5a44d19348a1d47e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zdiff +SPDXID: SPDXRef-File-usr-bin-zdiff-4b3640ff665ea58d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zegrep +SPDXID: SPDXRef-File-usr-bin-zegrep-88685e006381f799 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zfgrep +SPDXID: SPDXRef-File-usr-bin-zfgrep-7144d81e60b4344b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zforce +SPDXID: SPDXRef-File-usr-bin-zforce-3346e80100b79bf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zgrep +SPDXID: SPDXRef-File-usr-bin-zgrep-10ed544e03c1bcb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zless +SPDXID: SPDXRef-File-usr-bin-zless-1f190d5d92ce93f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/zmore +SPDXID: SPDXRef-File-usr-bin-zmore-6c71d895d8b23f6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/bin/znew +SPDXID: SPDXRef-File-usr-bin-znew-b5d7fca1d959f9ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/include/python3.6m/pyconfig-64.h +SPDXID: SPDXRef-File-usr-include-python3.6m-pyconfig-64.h-87f75a0c69079270 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-ADDRESS-1fd32ac4d065a7cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_COLLATE +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-COLLATE-09af79f2ca234748 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_CTYPE +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-CTYPE-69de207c4f5570a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_MEASUREMENT +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-MEASUREMENT-dedc119633386903 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-MONETARY-6fc4930073dab20e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-NAME-954e32b29f2c0091 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-NUMERIC-bfc0351061dc4756 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_PAPER +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-PAPER-0144b56250caa36e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-TELEPHONE-2422032a4b95d04b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/C.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-C.utf8-LC-TIME-7685769238c4432d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/locale/en_AG/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-ADDRESS-86828ea3a614793e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_COLLATE +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-COLLATE-d68e6a00c74688b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-IDENTIFICATION-acc0fe47e33101c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_MEASUREMENT +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-MEASUREMENT-6b49a0bf1af82e96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-MONETARY-f1c9dd81ff852452 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-NAME-14c997a4f59ba3fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-NUMERIC-2dadb402b7f0a575 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_PAPER +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-PAPER-0c663ebffa76eca3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-TELEPHONE-5fb0900b759781c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AG/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-AG-LC-TIME-8ac2294cb383a4d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-ADDRESS-3dcfa47bf37ac895 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_COLLATE +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-COLLATE-c27609ef2ef0e834 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_CTYPE +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-CTYPE-5fa42eb8d6d6fb5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-IDENTIFICATION-13d894943df07c7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_MEASUREMENT +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-MEASUREMENT-31b37f01c39ec6c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-MONETARY-2a4f3094355cd9bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-NAME-26b1cf0f2cd01332 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-NUMERIC-8dcc033c07e1ff54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_PAPER +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-PAPER-8016a781f0058752 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-TELEPHONE-5fbab395cb323bac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-AU-LC-TIME-8a1c3ac2bf6b3953 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-ADDRESS-c628438e48ac358f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-MONETARY-cc6e534865cfcc8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU.utf8/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-NAME-7e56328537fc2fbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-TELEPHONE-0b1750e180b5c4e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_AU.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-TIME-628cc7420743e170 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-BW-LC-ADDRESS-f61dc050627a2d2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-BW-LC-IDENTIFICATION-02c856c925fa2570 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-BW-LC-MONETARY-1edc0f9c6f5d56fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-BW-LC-TELEPHONE-52d15f233a83c660 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-BW-LC-TIME-2f1d1825f61b7378 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-ADDRESS-4100b14dc11c2542 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-MONETARY-515335621fbab38e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-TELEPHONE-6b9bb67343162edd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_BW.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-TIME-1c40b2690827e9b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-CA-LC-ADDRESS-91bb9f2a188c548e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_COLLATE +SPDXID: SPDXRef-File-usr-lib-locale-en-CA-LC-COLLATE-5e8b4efacf3979ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-CA-LC-IDENTIFICATION-44b88b9f31a63c17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-CA-LC-MONETARY-608d711669f7c25f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_PAPER +SPDXID: SPDXRef-File-usr-lib-locale-en-CA-LC-PAPER-803a799ee628b488 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-CA-LC-TELEPHONE-d9f8389e38e5e12b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-CA-LC-TIME-50b504658e3a6a22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-ADDRESS-aac40d89a6a834bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA.utf8/LC_COLLATE +SPDXID: SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-COLLATE-60a9976dd3b860e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-MONETARY-6a1eb3a2f418f48b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA.utf8/LC_PAPER +SPDXID: SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-PAPER-93e8ab04db42fa92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_CA.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-TIME-7f765efea9260172 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-DK-LC-ADDRESS-72405d972f0bb9ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-DK-LC-IDENTIFICATION-5c6da5382ff79c24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-DK-LC-MONETARY-f66638a5e6f00905 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-en-DK-LC-NUMERIC-710f99a698f27ebb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-DK-LC-TELEPHONE-d14eb414191b3ea2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-DK-LC-TIME-8c119b8916a00a76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-ADDRESS-1305e9da969269e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-MONETARY-aeecdfcf9d37affb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK.utf8/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-NUMERIC-482c63500b4a519e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-TELEPHONE-b1be887187f1a8ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_DK.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-TIME-38c0371dc134cc3b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-GB-LC-ADDRESS-b574181d2b2f27d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-GB-LC-IDENTIFICATION-65e23fdcbef8e660 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-GB-LC-MONETARY-3c2eb16ad40a0208 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-GB-LC-NAME-a693349f1137e78f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-GB-LC-TELEPHONE-28a937e487469af5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-GB-LC-TIME-cde5cd993d62a784 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-GB.iso885915-LC-NAME-d61fcf3e6989e938 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.iso885915/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-GB.iso885915-LC-TIME-2942fbadea9ba406 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-ADDRESS-8bc645939cf86893 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-MONETARY-52173a7352f8e839 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-TELEPHONE-5b6470f7016a2968 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_GB.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-TIME-0ea9e57d2326c4b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-HK-LC-ADDRESS-e7ae266076536640 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-HK-LC-IDENTIFICATION-8aa4bdd32288f291 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-HK-LC-MONETARY-6424687ed70e2ede +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-HK-LC-NAME-8eb24ff2cdd806ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-en-HK-LC-NUMERIC-1c2178cc71e23bd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-HK-LC-TELEPHONE-4fe2949c0499a612 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-HK-LC-TIME-f15951354cbc3a80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-ADDRESS-f918a2f971f50419 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-MONETARY-2f94ee69888154c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK.utf8/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-NAME-27eff88af3ac2e39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK.utf8/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-NUMERIC-35c2f956157e7797 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-TELEPHONE-0e03dc68b171217e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_HK.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-TIME-783ab1550b9ad5c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-LC-ADDRESS-9b3675e43cc2bb5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-LC-IDENTIFICATION-8f5ec9080c777e0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-LC-MONETARY-72cf68b177f5796f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-LC-TELEPHONE-164a7b6581d88b80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-LC-TIME-aaca2f5914f58533 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE@euro/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-euro-LC-ADDRESS-c363cc35c6fadb6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE@euro/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-euro-LC-MONETARY-f151e691a71b3804 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE@euro/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-euro-LC-NAME-8fd0db66ab1d7565 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE@euro/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-euro-LC-TELEPHONE-e7f8c4c2e3854a7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE@euro/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-IE-euro-LC-TIME-ea5be04751285400 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-ADDRESS-c0ad68c1c43cd2b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-MONETARY-471b6ac89f9478cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-TELEPHONE-8520a5b3fcae748a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IE.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-TIME-a07e1524f82b245b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IL/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-IL-LC-ADDRESS-daeec6d2fdad9f1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IL/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-IL-LC-IDENTIFICATION-b1f91dfd818a338d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IL/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-IL-LC-MONETARY-cc3261a69746de7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IL/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-IL-LC-TELEPHONE-89600bbc05482652 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IL/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-IL-LC-TIME-f1ec9cf9cd4c6573 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IN/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-IN-LC-ADDRESS-0a344062d13c7ac6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IN/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-IN-LC-IDENTIFICATION-9947cde3a2f55722 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IN/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-IN-LC-MONETARY-423941758b580b5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IN/LC_NUMERIC +SPDXID: SPDXRef-File-usr-lib-locale-en-IN-LC-NUMERIC-b6ae3bc99dd49e41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IN/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-IN-LC-TELEPHONE-22adce6dcc339152 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_IN/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-IN-LC-TIME-377e3bdc8bd2548a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NG/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-NG-LC-ADDRESS-2443ee6a312a58e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NG/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-NG-LC-IDENTIFICATION-a9040f1a04694a29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NG/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-NG-LC-MONETARY-56f8ebb8d1cac10c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NG/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-NG-LC-TELEPHONE-00efc990e28968b6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NG/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-NG-LC-TIME-52763d4286924020 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-NZ-LC-ADDRESS-9af5e9b54d963f18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-NZ-LC-IDENTIFICATION-f615006208df8bb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-NZ-LC-MONETARY-a0ab980258aa49fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-NZ-LC-TELEPHONE-93088bc95deaad17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-NZ.utf8-LC-ADDRESS-de0297a9dfc4724c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-NZ.utf8-LC-MONETARY-59c0aa6709578525 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_NZ.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-NZ.utf8-LC-TELEPHONE-5b60c4183a67cdcf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-PH-LC-ADDRESS-ccc9a5bd5671ad09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-PH-LC-IDENTIFICATION-3a7f34ef7fd2cf4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-PH-LC-MONETARY-3cd1166737635a1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-PH-LC-NAME-a4013572779b61a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-PH-LC-TELEPHONE-80281cf0594fe089 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-PH-LC-TIME-1fe310fad9d86aca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-ADDRESS-66e40f2bb555d667 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-MONETARY-c7931ef20bf3ef72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH.utf8/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-NAME-0b9bbab53980635a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-TELEPHONE-44f8c28f5f15246e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_PH.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-TIME-e61dab623df4dc97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SC.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-SC.utf8-LC-ADDRESS-b4e862c23b0f5360 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SC.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-SC.utf8-LC-MONETARY-29a833e48badb967 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SC.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-SC.utf8-LC-TELEPHONE-684b44048fd1ed61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-SG-LC-ADDRESS-801de6318ac70996 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-SG-LC-IDENTIFICATION-58d8f48c4fc91c74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-SG-LC-MONETARY-5be75a92c2fd3056 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-SG-LC-TELEPHONE-832b0e2d9ed7cf87 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-SG-LC-TIME-5afac03645e1d825 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-ADDRESS-d03723b21f32e6ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-MONETARY-4f38eb7755b21428 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-TELEPHONE-5fbc57665ffa5d3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_SG.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-TIME-e2314cc05884a9dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-US-LC-ADDRESS-c9a0dd78fc466c88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-US-LC-IDENTIFICATION-6124c9b5ac9a2bd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US/LC_MEASUREMENT +SPDXID: SPDXRef-File-usr-lib-locale-en-US-LC-MEASUREMENT-68c649530a57887a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-US-LC-MONETARY-671ff83b9313c5f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-US-LC-TELEPHONE-ac5e48056406d81d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-US-LC-TIME-ca1e05730eccbda0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.iso885915/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-US.iso885915-LC-TIME-67bb460ec8a7eda4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-US.utf8-LC-ADDRESS-64d95d0753b167f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-US.utf8-LC-MONETARY-137e091ea8212536 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-US.utf8-LC-TELEPHONE-2dce36a110bd1c95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.utf8/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-US.utf8-LC-TIME-3e4e6df0aac90b0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_US.utf8@ampm/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-US.utf8-ampm-LC-TIME-12c50bf117b13cd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA-LC-ADDRESS-d82c3300e4d4fbec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA-LC-IDENTIFICATION-997d76d46412c6b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA-LC-MONETARY-c64f096edd98c7ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA-LC-NAME-7a3f3dbf8aa6b15c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA-LC-TELEPHONE-fa93fd1a7e284018 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-ADDRESS-d201cb7c2088ae8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-MONETARY-abcb90c2976d9471 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA.utf8/LC_NAME +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-NAME-fc89c22b3315d614 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZA.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-TELEPHONE-d247b7e4c4b8e7f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZM/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-ZM-LC-ADDRESS-df360e9309f25736 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZM/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-ZM-LC-IDENTIFICATION-980e3fbaaab39c26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZM/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-ZM-LC-MONETARY-18cf98ff17cdf888 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZM/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-ZM-LC-TELEPHONE-3663f004bf919b11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZM/LC_TIME +SPDXID: SPDXRef-File-usr-lib-locale-en-ZM-LC-TIME-aea1159f9f2d0641 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-ZW-LC-ADDRESS-fba65845604a3b85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW/LC_IDENTIFICATION +SPDXID: SPDXRef-File-usr-lib-locale-en-ZW-LC-IDENTIFICATION-74b710fc4b5b01ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-ZW-LC-MONETARY-ec3f46083c424969 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-ZW-LC-TELEPHONE-f398309ba8a7d662 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW.utf8/LC_ADDRESS +SPDXID: SPDXRef-File-usr-lib-locale-en-ZW.utf8-LC-ADDRESS-4c42fb49ae71e9d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW.utf8/LC_MONETARY +SPDXID: SPDXRef-File-usr-lib-locale-en-ZW.utf8-LC-MONETARY-d2ffdf62ea89f7b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/locale/en_ZW.utf8/LC_TELEPHONE +SPDXID: SPDXRef-File-usr-lib-locale-en-ZW.utf8-LC-TELEPHONE-637bbcc2d311e1e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib/os-release +SPDXID: SPDXRef-File-usr-lib-os-release-7216a1736d1cee0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/python3.6/site-packages/six.py +SPDXID: SPDXRef-File-usr-lib-python3.6-site-packages-six.py-3dd7b2cfe1100d24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/macros +SPDXID: SPDXRef-File-usr-lib-rpm-macros-9414fcbf02dea404 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/macros.d/macros.info +SPDXID: SPDXRef-File-usr-lib-rpm-macros.d-macros.info-78dc00ffd65e7db6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/macros.d/macros.systemd +SPDXID: SPDXRef-File-usr-lib-rpm-macros.d-macros.systemd-b45ed309582c2b47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/i386-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-i386-linux-macros-9599cfd7154b21f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/i486-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-i486-linux-macros-6d49efe80151e72f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/i586-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-i586-linux-macros-e788b5cf0758d53c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/i686-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-i686-linux-macros-1d89630752f22eb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ia64-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-ia64-linux-macros-6468c626c76c5e11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/m68k-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-m68k-linux-macros-ff9370a17b6a3963 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/mips-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-mips-linux-macros-7280b811ef117214 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/ppc-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-ppc-linux-macros-0a7d23c0f1483674 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/s390-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-s390-linux-macros-3f01a6ad78fa56de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sh-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-sh-linux-macros-3866e3d137f7c797 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sh3-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-sh3-linux-macros-d3c65ced064bca1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sh4-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-sh4-linux-macros-a47eed1cfc699d47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/platform/sh4a-linux/macros +SPDXID: SPDXRef-File-usr-lib-rpm-platform-sh4a-linux-macros-32f9e830cb9cfdd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/python-macro-helper +SPDXID: SPDXRef-File-usr-lib-rpm-python-macro-helper-9d87a57191c5cd65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/rpm.daily +SPDXID: SPDXRef-File-usr-lib-rpm-rpm.daily-cf1868bf28a6d3de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/rpm.log +SPDXID: SPDXRef-File-usr-lib-rpm-rpm.log-19fc6ea01d2683ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/rpm.supp +SPDXID: SPDXRef-File-usr-lib-rpm-rpm.supp-c026cafcff5ed4d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/rpm2cpio.sh +SPDXID: SPDXRef-File-usr-lib-rpm-rpm2cpio.sh-6de2c6b4d36c3815 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/rpmdb_loadcvt +SPDXID: SPDXRef-File-usr-lib-rpm-rpmdb-loadcvt-59f9dd2b0628515d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/rpmpopt-4.14.3 +SPDXID: SPDXRef-File-usr-lib-rpm-rpmpopt-4.14.3-753d45e8154ab4d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/rpmrc +SPDXID: SPDXRef-File-usr-lib-rpm-rpmrc-cf5ba301cc07a6f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/rpm/tgpg +SPDXID: SPDXRef-File-usr-lib-rpm-tgpg-12f60d796ce29c4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/sysctl.d/50-coredump.conf +SPDXID: SPDXRef-File-usr-lib-sysctl.d-50-coredump.conf-20bd96ed271d11f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/sysctl.d/50-default.conf +SPDXID: SPDXRef-File-usr-lib-sysctl.d-50-default.conf-d8b22cbbdbb48f5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/sysctl.d/50-pid-max.conf +SPDXID: SPDXRef-File-usr-lib-sysctl.d-50-pid-max.conf-da2cc44ea36b37a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/portablectl +SPDXID: SPDXRef-File-usr-lib-systemd-portablectl-337576440289ca4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/purge-nobody-user +SPDXID: SPDXRef-File-usr-lib-systemd-purge-nobody-user-db3319c378aeb53b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/resolv.conf +SPDXID: SPDXRef-File-usr-lib-systemd-resolv.conf-bbaca72b6adb88a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/basic.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-basic.target-c85b858817fde218 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dbus.service +SPDXID: SPDXRef-File-usr-lib-systemd-system-dbus.service-c74695f3debdbf81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/dbus.socket +SPDXID: SPDXRef-File-usr-lib-systemd-system-dbus.socket-c116c7c34ec110ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/exit.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-exit.target-3a2867cf74c58d24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/final.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-final.target-5365441a966abb7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/fstrim.service +SPDXID: SPDXRef-File-usr-lib-systemd-system-fstrim.service-d7e1e208fccf0fc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/fstrim.timer +SPDXID: SPDXRef-File-usr-lib-systemd-system-fstrim.timer-6ece0c810adc1c2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/getty@.service +SPDXID: SPDXRef-File-usr-lib-systemd-system-getty-.service-61ef701d61a94330 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/getty.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-getty.target-b0e9ddb6e54e859e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/halt.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-halt.target-8304f1e6ede8381b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/initrd.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-initrd.target-33f90c8bf43f6b18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/kexec.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-kexec.target-4ceaf2602dcdef43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/local-fs.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-local-fs.target-c2cfe732ff89eafe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/network.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-network.target-69cf0bc9caa986b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/paths.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-paths.target-61c02f8148a062db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/poweroff.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-poweroff.target-2463ec591887664c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/printer.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-printer.target-79e6a01fa957f98e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/reboot.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-reboot.target-f7a74152dade036d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/rescue.service +SPDXID: SPDXRef-File-usr-lib-systemd-system-rescue.service-2c92c65e558a29f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/rescue.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-rescue.target-468d60086b7fa3fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/rhsm.service +SPDXID: SPDXRef-File-usr-lib-systemd-system-rhsm.service-facdebd80012518b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/rpcbind.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-rpcbind.target-92465d891dc8e52e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/shutdown.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-shutdown.target-202f787593e4696f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/sigpwr.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-sigpwr.target-ac065cdb6da61d17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/slices.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-slices.target-005bfe32fadcc17f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/sockets.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-sockets.target-41ba3a17121c4500 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/sound.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-sound.target-9c2d172e166fd24e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/swap.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-swap.target-ccdd13025b5d8b37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/sysinit.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-sysinit.target-d42e0600a897e31e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/syslog.socket +SPDXID: SPDXRef-File-usr-lib-systemd-system-syslog.socket-668a7f9e5fa70411 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/timers.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-timers.target-929eaec84ef987fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/tmp.mount +SPDXID: SPDXRef-File-usr-lib-systemd-system-tmp.mount-3dbe5b92e7a72e39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/umount.target +SPDXID: SPDXRef-File-usr-lib-systemd-system-umount.target-f176471009588c6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/user@.service +SPDXID: SPDXRef-File-usr-lib-systemd-system-user-.service-e425e2639d305773 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/system/user.slice +SPDXID: SPDXRef-File-usr-lib-systemd-system-user.slice-900d7cce6da082a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-ac-power +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-ac-power-58eb277540db9eb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-binfmt +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-binfmt-e52baafee9060a9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-ccc612058f7dbbe6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-cgroups-agent +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-cgroups-agent-b46f5ca2afb4fbc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-coredump +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-coredump-f52f3d3553d84ced +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-dissect +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-dissect-c531adeb1335c2b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-export +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-export-f2f0e8103355c4b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-fsck +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-fsck-dd5ac7f2a16804ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-hostnamed +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-hostnamed-94560331c94e978b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-initctl +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-initctl-ddd60c0b4f53caf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-journald +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-journald-a646406f8732f88b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-localed +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-localed-8266062d67f7f6a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-logind +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-logind-bb8a3d35349654a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-portabled +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-portabled-1c7fd3eaf244a8d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-pstore +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-pstore-121a6962926ef182 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-reply-password +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-reply-password-11f896318f5cea88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-resolved +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-resolved-e6312e0f0ea49da8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-shutdown +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-shutdown-595c6f1d4f134756 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-socket-proxyd +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-socket-proxyd-4df39a58f37a0f48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-sulogin-shell +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-sulogin-shell-dac2afda3a77719f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-sysctl +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-sysctl-ff20d3c2b2aa5416 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-timedated +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-timedated-99e00bf006968659 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-update-done +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-update-done-20266d67288202fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-update-utmp +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-update-utmp-6e50e04a0d7551e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-user-sessions +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-user-sessions-6de18a6998d14e55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-veritysetup +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-veritysetup-6db62e83c52fc36e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/systemd-volatile-root +SPDXID: SPDXRef-File-usr-lib-systemd-systemd-volatile-root-9d50d70fb5cd30c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/basic.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-basic.target-1c466cc7298294b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/bluetooth.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-bluetooth.target-d9639f4a8ec416c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/dbus.service +SPDXID: SPDXRef-File-usr-lib-systemd-user-dbus.service-f20257ef9246b0eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/dbus.socket +SPDXID: SPDXRef-File-usr-lib-systemd-user-dbus.socket-aada9b0f53723150 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/default.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-default.target-bce4071f29b318af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/dirmngr.service +SPDXID: SPDXRef-File-usr-lib-systemd-user-dirmngr.service-e8137eed05f36fac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/dirmngr.socket +SPDXID: SPDXRef-File-usr-lib-systemd-user-dirmngr.socket-500c8ec87369a5b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/exit.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-exit.target-361dc31dbc4b5c4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/gpg-agent.service +SPDXID: SPDXRef-File-usr-lib-systemd-user-gpg-agent.service-1224a0120f462823 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/gpg-agent.socket +SPDXID: SPDXRef-File-usr-lib-systemd-user-gpg-agent.socket-4982709a39849fb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/paths.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-paths.target-87d486c87b003283 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/printer.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-printer.target-4e69481fa9bce474 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/shutdown.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-shutdown.target-a4831f8091db5952 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/smartcard.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-smartcard.target-c4364605ca95b004 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/sockets.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-sockets.target-278c148e0f6cc45e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/sound.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-sound.target-745888844c7c3e2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/systemd/user/timers.target +SPDXID: SPDXRef-File-usr-lib-systemd-user-timers.target-055ce4e14c6e4367 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/sysusers.d/basic.conf +SPDXID: SPDXRef-File-usr-lib-sysusers.d-basic.conf-e236b2c4c29aba7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/sysusers.d/dbus.conf +SPDXID: SPDXRef-File-usr-lib-sysusers.d-dbus.conf-6f36638e025d0b1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/sysusers.d/systemd.conf +SPDXID: SPDXRef-File-usr-lib-sysusers.d-systemd.conf-20b91d58dba8dc01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/cryptsetup.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-cryptsetup.conf-2eed818b41d9a1c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/dbus.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-dbus.conf-d7168470fa567c65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/dnf.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-dnf.conf-cd29427268b72efc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/etc.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-etc.conf-ac279c0824d88bfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/home.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-home.conf-9120017858eab67c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/journal-nocow.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-journal-nocow.conf-870a034d7bea6ba7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/legacy.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-legacy.conf-297a27226b56ddf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/libselinux.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-libselinux.conf-cb3db5165b47c6b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/pam.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-pam.conf-a30f196ff0d68ec9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/portables.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-portables.conf-024bf2095af272fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/rpm.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-rpm.conf-e2acff19b673c2ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/systemd.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-systemd.conf-09a0e9e4bfbb7b73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/tmp.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-tmp.conf-b8d54264461a4bcb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/var.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-var.conf-84d0b993eaf35a85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/tmpfiles.d/x11.conf +SPDXID: SPDXRef-File-usr-lib-tmpfiles.d-x11.conf-a67d2ee36373dd8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/udev/rules.d/10-dm.rules +SPDXID: SPDXRef-File-usr-lib-udev-rules.d-10-dm.rules-ce438bd662f8eecf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/udev/rules.d/13-dm-disk.rules +SPDXID: SPDXRef-File-usr-lib-udev-rules.d-13-dm-disk.rules-80e9d9d6722a9dad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/udev/rules.d/60-raw.rules +SPDXID: SPDXRef-File-usr-lib-udev-rules.d-60-raw.rules-27021ff96152c0ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib/udev/rules.d/60-tpm-udev.rules +SPDXID: SPDXRef-File-usr-lib-udev-rules.d-60-tpm-udev.rules-162951a761239d8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/.libcrypt.so.1.1.0.hmac +SPDXID: SPDXRef-File-usr-lib64-.libcrypt.so.1.1.0.hmac-779030f247b5a35b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/.libcrypto.so.1.1.1k.hmac +SPDXID: SPDXRef-File-usr-lib64-.libcrypto.so.1.1.1k.hmac-084024821f89e983 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/.libgcrypt.so.20.hmac +SPDXID: SPDXRef-File-usr-lib64-.libgcrypt.so.20.hmac-6092d9df36ada5b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/.libgnutls.so.30.28.2.hmac +SPDXID: SPDXRef-File-usr-lib64-.libgnutls.so.30.28.2.hmac-a636f094e6365f89 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/.libhogweed.so.4.5.hmac +SPDXID: SPDXRef-File-usr-lib64-.libhogweed.so.4.5.hmac-eb06b32f81646290 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/.libnettle.so.6.5.hmac +SPDXID: SPDXRef-File-usr-lib64-.libnettle.so.6.5.hmac-e9716a5ea2978295 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/.libssl.so.1.1.1k.hmac +SPDXID: SPDXRef-File-usr-lib64-.libssl.so.1.1.1k.hmac-08bd6b7f68a82faa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/audit/sotruss-lib.so +SPDXID: SPDXRef-File-usr-lib64-audit-sotruss-lib.so-a781e72b447d9590 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/engines-1.1/afalg.so +SPDXID: SPDXRef-File-usr-lib64-engines-1.1-afalg.so-a34191bfb7b1991f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/engines-1.1/capi.so +SPDXID: SPDXRef-File-usr-lib64-engines-1.1-capi.so-5076d229e861461e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/engines-1.1/padlock.so +SPDXID: SPDXRef-File-usr-lib64-engines-1.1-padlock.so-88bacab0d5f2bfde +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/filefuncs.so +SPDXID: SPDXRef-File-usr-lib64-gawk-filefuncs.so-1f4fe69ff6f2d839 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/fnmatch.so +SPDXID: SPDXRef-File-usr-lib64-gawk-fnmatch.so-afc8ffb5c6835149 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/fork.so +SPDXID: SPDXRef-File-usr-lib64-gawk-fork.so-433fd37021fd394e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/inplace.so +SPDXID: SPDXRef-File-usr-lib64-gawk-inplace.so-5b3e463a12052aa4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/intdiv.so +SPDXID: SPDXRef-File-usr-lib64-gawk-intdiv.so-e919f9a093a171e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/ordchr.so +SPDXID: SPDXRef-File-usr-lib64-gawk-ordchr.so-ddad3f739bf562ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/readdir.so +SPDXID: SPDXRef-File-usr-lib64-gawk-readdir.so-e91b9b9aa807282e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/readfile.so +SPDXID: SPDXRef-File-usr-lib64-gawk-readfile.so-0f91658ccbd6a65e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/revoutput.so +SPDXID: SPDXRef-File-usr-lib64-gawk-revoutput.so-337e61571be315d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/revtwoway.so +SPDXID: SPDXRef-File-usr-lib64-gawk-revtwoway.so-f343f4c17452b404 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/rwarray.so +SPDXID: SPDXRef-File-usr-lib64-gawk-rwarray.so-511269d7664d00cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gawk/time.so +SPDXID: SPDXRef-File-usr-lib64-gawk-time.so-b137a8ca5032eb80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/ANSI_X3.110.so +SPDXID: SPDXRef-File-usr-lib64-gconv-ANSI-X3.110.so-7fff974fab11676f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/CP1252.so +SPDXID: SPDXRef-File-usr-lib64-gconv-CP1252.so-4b52f65c9a85f387 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/ISO8859-1.so +SPDXID: SPDXRef-File-usr-lib64-gconv-ISO8859-1.so-b6ae37f627f28c6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/ISO8859-15.so +SPDXID: SPDXRef-File-usr-lib64-gconv-ISO8859-15.so-f2136decf7325108 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/UNICODE.so +SPDXID: SPDXRef-File-usr-lib64-gconv-UNICODE.so-a4eb3960005c3c1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/UTF-16.so +SPDXID: SPDXRef-File-usr-lib64-gconv-UTF-16.so-24f07e0b0fe72e57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/UTF-32.so +SPDXID: SPDXRef-File-usr-lib64-gconv-UTF-32.so-02b6b936c2ebacea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/UTF-7.so +SPDXID: SPDXRef-File-usr-lib64-gconv-UTF-7.so-6e4369b347788539 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/gconv-modules +SPDXID: SPDXRef-File-usr-lib64-gconv-gconv-modules-ab74bb86da2b760f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/gconv/gconv-modules.cache +SPDXID: SPDXRef-File-usr-lib64-gconv-gconv-modules.cache-c86440fc1aeb5b4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/krb5/plugins/tls/k5tls.so +SPDXID: SPDXRef-File-usr-lib64-krb5-plugins-tls-k5tls.so-7b2dbc2f9413ebc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/ld-2.28.so +SPDXID: SPDXRef-File-usr-lib64-ld-2.28.so-899b84a654a23ae4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libBrokenLocale-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libBrokenLocale-2.28.so-f40f77d58ff4b49f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libSegFault.so +SPDXID: SPDXRef-File-usr-lib64-libSegFault.so-d418374ee72bcf95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libacl.so.1.1.2253 +SPDXID: SPDXRef-File-usr-lib64-libacl.so.1.1.2253-94789880a76395d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libanl-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libanl-2.28.so-7f4a06cca86fac08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libarchive.so.13.3.3 +SPDXID: SPDXRef-File-usr-lib64-libarchive.so.13.3.3-5decaba694c6a7a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libasm-0.188.so +SPDXID: SPDXRef-File-usr-lib64-libasm-0.188.so-00329a2ca370ef08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libassuan.so.0.8.1 +SPDXID: SPDXRef-File-usr-lib64-libassuan.so.0.8.1-81e6e3a717179fa4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libattr.so.1.1.2448 +SPDXID: SPDXRef-File-usr-lib64-libattr.so.1.1.2448-7fceac1eb0d89f52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libaudit.so.1.0.0 +SPDXID: SPDXRef-File-usr-lib64-libaudit.so.1.0.0-fa101d079f1e5239 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libauparse.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libauparse.so.0.0.0-1246382363eb489d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libblkid.so.1.1.0 +SPDXID: SPDXRef-File-usr-lib64-libblkid.so.1.1.0-3dce829bd26ca4a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libbrotlicommon.so.1.0.6 +SPDXID: SPDXRef-File-usr-lib64-libbrotlicommon.so.1.0.6-f1d529308b232dfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libbrotlidec.so.1.0.6 +SPDXID: SPDXRef-File-usr-lib64-libbrotlidec.so.1.0.6-4e0d3f231bee2a1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libbrotlienc.so.1.0.6 +SPDXID: SPDXRef-File-usr-lib64-libbrotlienc.so.1.0.6-ed007d468a36596b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libbz2.so.1.0.6 +SPDXID: SPDXRef-File-usr-lib64-libbz2.so.1.0.6-d497d96e06de5d98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libc-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libc-2.28.so-8a0216ba1339ecc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcap-ng.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libcap-ng.so.0.0.0-75b4fdfee98ab106 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcap.so.2.48 +SPDXID: SPDXRef-File-usr-lib64-libcap.so.2.48-dca963abeacb99d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcom_err.so.2.1 +SPDXID: SPDXRef-File-usr-lib64-libcom-err.so.2.1-5e37c45025c6f81a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcomps.so.0 +SPDXID: SPDXRef-File-usr-lib64-libcomps.so.0-a4e1dd52875ac0fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcrack.so.2.9.0 +SPDXID: SPDXRef-File-usr-lib64-libcrack.so.2.9.0-e16c1ec46c8d019b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcrypt.so.1.1.0 +SPDXID: SPDXRef-File-usr-lib64-libcrypt.so.1.1.0-cdeba8918acb87e6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcrypto.so.1.1.1k +SPDXID: SPDXRef-File-usr-lib64-libcrypto.so.1.1.1k-2313000baaf2d3f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcryptsetup.so.12.6.0 +SPDXID: SPDXRef-File-usr-lib64-libcryptsetup.so.12.6.0-cb2e4894d41bc322 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libcurl.so.4.5.0 +SPDXID: SPDXRef-File-usr-lib64-libcurl.so.4.5.0-f6319e635e085bad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdb-5.3.so +SPDXID: SPDXRef-File-usr-lib64-libdb-5.3.so-37019ffd38bbe2c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdbus-1.so.3.19.7 +SPDXID: SPDXRef-File-usr-lib64-libdbus-1.so.3.19.7-b6210e1c04c468ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdbus-glib-1.so.2.3.4 +SPDXID: SPDXRef-File-usr-lib64-libdbus-glib-1.so.2.3.4-017d3f1b219e5313 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdevmapper.so.1.02 +SPDXID: SPDXRef-File-usr-lib64-libdevmapper.so.1.02-ee27af79a82201e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdl-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libdl-2.28.so-3caae6eda12c8a53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdnf/plugins/README +SPDXID: SPDXRef-File-usr-lib64-libdnf-plugins-README-852a5bf38a3c880d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdnf/plugins/product-id.so +SPDXID: SPDXRef-File-usr-lib64-libdnf-plugins-product-id.so-6bc92bb3c8954ee5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdnf.so.2 +SPDXID: SPDXRef-File-usr-lib64-libdnf.so.2-ec311eba8f23c49c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libdw-0.188.so +SPDXID: SPDXRef-File-usr-lib64-libdw-0.188.so-323035c43657a141 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libefa.so.1.2.44.0 +SPDXID: SPDXRef-File-usr-lib64-libefa.so.1.2.44.0-14f64c0df7f78e7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libelf-0.188.so +SPDXID: SPDXRef-File-usr-lib64-libelf-0.188.so-453c61fee9b983ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libexpat.so.1.6.7 +SPDXID: SPDXRef-File-usr-lib64-libexpat.so.1.6.7-9a1c827816a8e840 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libfdisk.so.1.1.0 +SPDXID: SPDXRef-File-usr-lib64-libfdisk.so.1.1.0-bc587e0f4d28153a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libffi.so.6.0.2 +SPDXID: SPDXRef-File-usr-lib64-libffi.so.6.0.2-54964a8807c8d848 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libfontconfig.so.1.12.0 +SPDXID: SPDXRef-File-usr-lib64-libfontconfig.so.1.12.0-5f288ae5f818ef3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libform.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libform.so.6.1-3d1f69182dc01243 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libformw.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libformw.so.6.1-e1c6b379a1a891a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libfreetype.so.6.16.1 +SPDXID: SPDXRef-File-usr-lib64-libfreetype.so.6.16.1-7c4f273d62d09444 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libgcc_s-8-20210514.so.1 +SPDXID: SPDXRef-File-usr-lib64-libgcc-s-8-20210514.so.1-c14e75cb80e20c1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgcrypt.so.20.2.5 +SPDXID: SPDXRef-File-usr-lib64-libgcrypt.so.20.2.5-220ef3d54c35f495 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgdbm_compat.so.4.0.0 +SPDXID: SPDXRef-File-usr-lib64-libgdbm-compat.so.4.0.0-958e504d250f6ce7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgdbm.so.6.0.0 +SPDXID: SPDXRef-File-usr-lib64-libgdbm.so.6.0.0-5ff81c04ddf8f15b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgio-2.0.so.0.5600.4 +SPDXID: SPDXRef-File-usr-lib64-libgio-2.0.so.0.5600.4-16accb16969b5172 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgirepository-1.0.so.1.0.0 +SPDXID: SPDXRef-File-usr-lib64-libgirepository-1.0.so.1.0.0-bcb171dd709b6ebe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libglib-2.0.so.0.5600.4 +SPDXID: SPDXRef-File-usr-lib64-libglib-2.0.so.0.5600.4-e3821fcda866e7c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgmodule-2.0.so.0.5600.4 +SPDXID: SPDXRef-File-usr-lib64-libgmodule-2.0.so.0.5600.4-783079b2953be1ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgmp.so.10.3.2 +SPDXID: SPDXRef-File-usr-lib64-libgmp.so.10.3.2-1899997b9f57f364 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgnutls.so.30.28.2 +SPDXID: SPDXRef-File-usr-lib64-libgnutls.so.30.28.2-5bad2a698fea7652 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgobject-2.0.so.0.5600.4 +SPDXID: SPDXRef-File-usr-lib64-libgobject-2.0.so.0.5600.4-6f35ae6103bcaf83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgpg-error.so.0.24.2 +SPDXID: SPDXRef-File-usr-lib64-libgpg-error.so.0.24.2-eebe04898dc1104f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgpgme.so.11.22.1 +SPDXID: SPDXRef-File-usr-lib64-libgpgme.so.11.22.1-9288129581acc3da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgssapi_krb5.so.2.2 +SPDXID: SPDXRef-File-usr-lib64-libgssapi-krb5.so.2.2-7f052cb37d632add +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgssrpc.so.4.2 +SPDXID: SPDXRef-File-usr-lib64-libgssrpc.so.4.2-bfcf362178edf7aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libgthread-2.0.so.0.5600.4 +SPDXID: SPDXRef-File-usr-lib64-libgthread-2.0.so.0.5600.4-108c4a7209cc9898 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libhistory.so.7.0 +SPDXID: SPDXRef-File-usr-lib64-libhistory.so.7.0-ec352d20a1ffe247 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libhogweed.so.4.5 +SPDXID: SPDXRef-File-usr-lib64-libhogweed.so.4.5-634a7713f3653dea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libibverbs/libhns-rdmav34.so +SPDXID: SPDXRef-File-usr-lib64-libibverbs-libhns-rdmav34.so-3e97e717bd682439 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libibverbs/librxe-rdmav34.so +SPDXID: SPDXRef-File-usr-lib64-libibverbs-librxe-rdmav34.so-1bb60ef064846090 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libibverbs/libsiw-rdmav34.so +SPDXID: SPDXRef-File-usr-lib64-libibverbs-libsiw-rdmav34.so-278ef80f6a61902b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libibverbs.so.1.14.44.0 +SPDXID: SPDXRef-File-usr-lib64-libibverbs.so.1.14.44.0-f1fab28dadecec42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libidn2.so.0.3.6 +SPDXID: SPDXRef-File-usr-lib64-libidn2.so.0.3.6-8fb1776496cda610 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libimaevm.so.2.0.0 +SPDXID: SPDXRef-File-usr-lib64-libimaevm.so.2.0.0-e6196edfc93d483f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libinproctrace.so +SPDXID: SPDXRef-File-usr-lib64-libinproctrace.so-3ea6d7eef0a84230 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libip4tc.so.0.1.0 +SPDXID: SPDXRef-File-usr-lib64-libip4tc.so.0.1.0-a35f6c5e272ae6a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libip4tc.so.2.0.0 +SPDXID: SPDXRef-File-usr-lib64-libip4tc.so.2.0.0-5b7cda72ed734d0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libip6tc.so.0.1.0 +SPDXID: SPDXRef-File-usr-lib64-libip6tc.so.0.1.0-089d553126f0404d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libip6tc.so.2.0.0 +SPDXID: SPDXRef-File-usr-lib64-libip6tc.so.2.0.0-1dccb800ab8e7196 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libiptc.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libiptc.so.0.0.0-0e78b29a8e248258 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libjansson.so.4.14.0 +SPDXID: SPDXRef-File-usr-lib64-libjansson.so.4.14.0-49b29d0e6f8499a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libjson-c.so.4.0.0 +SPDXID: SPDXRef-File-usr-lib64-libjson-c.so.4.0.0-3517408a541ae959 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libjson-glib-1.0.so.0.400.4 +SPDXID: SPDXRef-File-usr-lib64-libjson-glib-1.0.so.0.400.4-957ae7df7a8165cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libk5crypto.so.3.1 +SPDXID: SPDXRef-File-usr-lib64-libk5crypto.so.3.1-c67bd535442fe9d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libkdb5.so.10.0 +SPDXID: SPDXRef-File-usr-lib64-libkdb5.so.10.0-41901b776dba1616 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libkeyutils.so.1.6 +SPDXID: SPDXRef-File-usr-lib64-libkeyutils.so.1.6-03b3f1eeafa779d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libkmod.so.2.3.3 +SPDXID: SPDXRef-File-usr-lib64-libkmod.so.2.3.3-6193f781697e9ec6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libkrad.so.0.0 +SPDXID: SPDXRef-File-usr-lib64-libkrad.so.0.0-7a277395db789653 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libkrb5.so.3.3 +SPDXID: SPDXRef-File-usr-lib64-libkrb5.so.3.3-b3579c1cb88fdfc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libkrb5support.so.0.1 +SPDXID: SPDXRef-File-usr-lib64-libkrb5support.so.0.1-b2aaf38478c3e571 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libksba.so.8.11.6 +SPDXID: SPDXRef-File-usr-lib64-libksba.so.8.11.6-acd6fe3137a6f760 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/liblber-2.4.so.2.10.9 +SPDXID: SPDXRef-File-usr-lib64-liblber-2.4.so.2.10.9-cdc99235b436ebf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libldap-2.4.so.2.10.9 +SPDXID: SPDXRef-File-usr-lib64-libldap-2.4.so.2.10.9-29575a76c3e82ee6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libldap_r-2.4.so.2.10.9 +SPDXID: SPDXRef-File-usr-lib64-libldap-r-2.4.so.2.10.9-864ee657bdff9863 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/liblua-5.3.so +SPDXID: SPDXRef-File-usr-lib64-liblua-5.3.so-94a6f82d097cf8c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/liblz4.so.1.8.3 +SPDXID: SPDXRef-File-usr-lib64-liblz4.so.1.8.3-6538e09e53fe38c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/liblzma.so.5.2.4 +SPDXID: SPDXRef-File-usr-lib64-liblzma.so.5.2.4-1171f4f0625d4f8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libm-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libm-2.28.so-24bb340519ffb940 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmagic.so.1.0.0 +SPDXID: SPDXRef-File-usr-lib64-libmagic.so.1.0.0-5ebcf188c0e92ed7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmemusage.so +SPDXID: SPDXRef-File-usr-lib64-libmemusage.so-d803b9467e850822 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmenu.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libmenu.so.6.1-57fa1e003baafada +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmenuw.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libmenuw.so.6.1-d8a60710014b77f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmlx4.so.1.0.44.0 +SPDXID: SPDXRef-File-usr-lib64-libmlx4.so.1.0.44.0-ffece5b753c16a03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libmlx5.so.1.24.44.0 +SPDXID: SPDXRef-File-usr-lib64-libmlx5.so.1.24.44.0-574b9ab233702d56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libmnl.so.0.2.0 +SPDXID: SPDXRef-File-usr-lib64-libmnl.so.0.2.0-3ab98c003875068a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libmodulemd.so.2.13.0 +SPDXID: SPDXRef-File-usr-lib64-libmodulemd.so.2.13.0-2451e16dc8f4a035 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmount.so.1.1.0 +SPDXID: SPDXRef-File-usr-lib64-libmount.so.1.1.0-2b35e1b59b0dc3aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmpfr.so.4.1.6 +SPDXID: SPDXRef-File-usr-lib64-libmpfr.so.4.1.6-3f1fddb396fa99ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libmvec-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libmvec-2.28.so-b7fba42a357d605f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libncurses.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libncurses.so.6.1-0aae8e6195124e9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libncursesw.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libncursesw.so.6.1-6edcde95db46ed40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnet.so.1.7.0 +SPDXID: SPDXRef-File-usr-lib64-libnet.so.1.7.0-9687d900dcb3f0f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libnettle.so.6.5 +SPDXID: SPDXRef-File-usr-lib64-libnettle.so.6.5-6cfd6bb62d2d4e22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnfnetlink.so.0.2.0 +SPDXID: SPDXRef-File-usr-lib64-libnfnetlink.so.0.2.0-2ce876764332ca25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libnftables.so.1.0.0 +SPDXID: SPDXRef-File-usr-lib64-libnftables.so.1.0.0-6321b173391448af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libnftnl.so.11.2.0 +SPDXID: SPDXRef-File-usr-lib64-libnftnl.so.11.2.0-dcff648f0ec23380 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libnghttp2.so.14.17.0 +SPDXID: SPDXRef-File-usr-lib64-libnghttp2.so.14.17.0-b870740cb07defb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnl-3.so.200.26.0 +SPDXID: SPDXRef-File-usr-lib64-libnl-3.so.200.26.0-55e59b1e8dc8b290 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnl-genl-3.so.200.26.0 +SPDXID: SPDXRef-File-usr-lib64-libnl-genl-3.so.200.26.0-4e7d061a5a5a181a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnl-idiag-3.so.200.26.0 +SPDXID: SPDXRef-File-usr-lib64-libnl-idiag-3.so.200.26.0-dfebde06cf412245 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnl-nf-3.so.200.26.0 +SPDXID: SPDXRef-File-usr-lib64-libnl-nf-3.so.200.26.0-2425b6d6b605f038 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnl-route-3.so.200.26.0 +SPDXID: SPDXRef-File-usr-lib64-libnl-route-3.so.200.26.0-9f0a90493b3899b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnl-xfrm-3.so.200.26.0 +SPDXID: SPDXRef-File-usr-lib64-libnl-xfrm-3.so.200.26.0-950333b5d611211b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnpth.so.0.1.1 +SPDXID: SPDXRef-File-usr-lib64-libnpth.so.0.1.1-b61444a39103cffd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnsl.so.2.0.0 +SPDXID: SPDXRef-File-usr-lib64-libnsl.so.2.0.0-e655338bf8ec0f08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnss_compat-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libnss-compat-2.28.so-e4d96cebebb6d32e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnss_dns-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libnss-dns-2.28.so-41ce653f5ef31968 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnss_files-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libnss-files-2.28.so-d83d87f4af9a1559 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnss_myhostname.so.2 +SPDXID: SPDXRef-File-usr-lib64-libnss-myhostname.so.2-eadaf7adf0562383 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnss_resolve.so.2 +SPDXID: SPDXRef-File-usr-lib64-libnss-resolve.so.2-d5be9b064c76fa9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libnss_systemd.so.2 +SPDXID: SPDXRef-File-usr-lib64-libnss-systemd.so.2-33785ffd6be6e700 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libp11-kit.so.0.3.0 +SPDXID: SPDXRef-File-usr-lib64-libp11-kit.so.0.3.0-db20a3f7cd7eed74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpam_misc.so.0.82.1 +SPDXID: SPDXRef-File-usr-lib64-libpam-misc.so.0.82.1-0db726a9969c81ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpam.so.0.84.2 +SPDXID: SPDXRef-File-usr-lib64-libpam.so.0.84.2-a513b77a9d5ba81f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpamc.so.0.82.1 +SPDXID: SPDXRef-File-usr-lib64-libpamc.so.0.82.1-c0ad484d57d20408 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpanel.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libpanel.so.6.1-dd875c471ad6e188 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpanelw.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libpanelw.so.6.1-930ed1b769034773 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpcap.so.1.9.1 +SPDXID: SPDXRef-File-usr-lib64-libpcap.so.1.9.1-136fa4c57ca16fcb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libpcprofile.so +SPDXID: SPDXRef-File-usr-lib64-libpcprofile.so-d8a0502a08dc3460 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpcre.so.1.2.10 +SPDXID: SPDXRef-File-usr-lib64-libpcre.so.1.2.10-54d89969af7ae7f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpcre2-8.so.0.7.1 +SPDXID: SPDXRef-File-usr-lib64-libpcre2-8.so.0.7.1-4088ef734a94853d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpcre2-posix.so.2.0.1 +SPDXID: SPDXRef-File-usr-lib64-libpcre2-posix.so.2.0.1-1f5722aab24ff725 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpcreposix.so.0.0.6 +SPDXID: SPDXRef-File-usr-lib64-libpcreposix.so.0.0.6-ae2e023dddc5d116 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpng16.so.16.34.0 +SPDXID: SPDXRef-File-usr-lib64-libpng16.so.16.34.0-0873f4ad6c406ec1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libpopt.so.0.0.1 +SPDXID: SPDXRef-File-usr-lib64-libpopt.so.0.0.1-a7289540b2a9a5de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libprotobuf-c.so.1.0.0 +SPDXID: SPDXRef-File-usr-lib64-libprotobuf-c.so.1.0.0-8467b5514cd3b16f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libpsl.so.5.3.1 +SPDXID: SPDXRef-File-usr-lib64-libpsl.so.5.3.1-5355b2c50198f794 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpsx.so.2.48 +SPDXID: SPDXRef-File-usr-lib64-libpsx.so.2.48-04e2149fee5a9c83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpthread-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libpthread-2.28.so-70feb92e73b56b2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpwquality.so.1.0.2 +SPDXID: SPDXRef-File-usr-lib64-libpwquality.so.1.0.2-90515a61f8906424 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpython3.6m.so.1.0 +SPDXID: SPDXRef-File-usr-lib64-libpython3.6m.so.1.0-851a17b2ed448e0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libpython3.so +SPDXID: SPDXRef-File-usr-lib64-libpython3.so-7a8bc2db5eee3933 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libreadline.so.7.0 +SPDXID: SPDXRef-File-usr-lib64-libreadline.so.7.0-57f1940fa0d79773 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/librepo.so.0 +SPDXID: SPDXRef-File-usr-lib64-librepo.so.0-88a6717f70af5bc3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libresolv-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libresolv-2.28.so-46d22700607cd625 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/librhsm.so.0 +SPDXID: SPDXRef-File-usr-lib64-librhsm.so.0-6911efcc5dc2efdc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/librpm.so.8.2.0 +SPDXID: SPDXRef-File-usr-lib64-librpm.so.8.2.0-cfdf6db416ac4262 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/librpmbuild.so.8.2.0 +SPDXID: SPDXRef-File-usr-lib64-librpmbuild.so.8.2.0-0cbd8132fba619ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/librpmio.so.8.2.0 +SPDXID: SPDXRef-File-usr-lib64-librpmio.so.8.2.0-8157c60607216bdf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/librpmsign.so.8.2.0 +SPDXID: SPDXRef-File-usr-lib64-librpmsign.so.8.2.0-f441e4f8cb1c595a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/librt-2.28.so +SPDXID: SPDXRef-File-usr-lib64-librt-2.28.so-166d2681a2aaf47a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libsasl2.so.3.0.0 +SPDXID: SPDXRef-File-usr-lib64-libsasl2.so.3.0.0-69807fd5b97e2105 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libseccomp.so.2.5.2 +SPDXID: SPDXRef-File-usr-lib64-libseccomp.so.2.5.2-37fbde766f7b4a09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libselinux.so.1 +SPDXID: SPDXRef-File-usr-lib64-libselinux.so.1-4c159e60a3275e03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libsemanage.so.1 +SPDXID: SPDXRef-File-usr-lib64-libsemanage.so.1-d167d0fbef027dc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libsepol.so.1 +SPDXID: SPDXRef-File-usr-lib64-libsepol.so.1-b0adcd91f9a2da70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libsigsegv.so.2.0.4 +SPDXID: SPDXRef-File-usr-lib64-libsigsegv.so.2.0.4-ac649c3c8a88e058 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libslapi-2.4.so.2.10.9 +SPDXID: SPDXRef-File-usr-lib64-libslapi-2.4.so.2.10.9-f239ed9a52120052 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libsmartcols.so.1.1.0 +SPDXID: SPDXRef-File-usr-lib64-libsmartcols.so.1.1.0-61fc215af7cfea5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libsolv.so.1 +SPDXID: SPDXRef-File-usr-lib64-libsolv.so.1-df84155aa89b6cfd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libsolvext.so.1 +SPDXID: SPDXRef-File-usr-lib64-libsolvext.so.1-4d080f6408830d5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libsqlite3.so.0.8.6 +SPDXID: SPDXRef-File-usr-lib64-libsqlite3.so.0.8.6-1001f1ca1b9f052a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libssh.so.4.8.7 +SPDXID: SPDXRef-File-usr-lib64-libssh.so.4.8.7-e74b3b6fed85c878 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libssl.so.1.1.1k +SPDXID: SPDXRef-File-usr-lib64-libssl.so.1.1.1k-5631740cb75108b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libstdc++.so.6.0.25 +SPDXID: SPDXRef-File-usr-lib64-libstdc--.so.6.0.25-034b2109703b1348 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libsystemd.so.0.23.0 +SPDXID: SPDXRef-File-usr-lib64-libsystemd.so.0.23.0-c448e97380cca779 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtasn1.so.6.5.5 +SPDXID: SPDXRef-File-usr-lib64-libtasn1.so.6.5.5-81040f537b17d369 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libthread_db-1.0.so +SPDXID: SPDXRef-File-usr-lib64-libthread-db-1.0.so-960d931eb58ce757 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtic.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libtic.so.6.1-0f343f181e99fdfd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtinfo.so.6.1 +SPDXID: SPDXRef-File-usr-lib64-libtinfo.so.6.1-3cd192028d2a0392 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtirpc.so.3.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtirpc.so.3.0.0-f39ef9386a75a676 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtss2-esys.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtss2-esys.so.0.0.0-e67737a6033c3746 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtss2-mu.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtss2-mu.so.0.0.0-1d34ae6d4d2bb35c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtss2-rc.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtss2-rc.so.0.0.0-3ab17b6f5e1d10a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtss2-sys.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtss2-sys.so.0.0.0-4f6ad189b060b89b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtss2-tcti-device.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtss2-tcti-device.so.0.0.0-1ae6e1f7602c626a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtss2-tcti-mssim.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtss2-tcti-mssim.so.0.0.0-6c66315b7971aeb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libtss2-tctildr.so.0.0.0 +SPDXID: SPDXRef-File-usr-lib64-libtss2-tctildr.so.0.0.0-c19c62089caa5fca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libudev.so.1.6.11 +SPDXID: SPDXRef-File-usr-lib64-libudev.so.1.6.11-0db2b037980b7bd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libunistring.so.2.1.0 +SPDXID: SPDXRef-File-usr-lib64-libunistring.so.2.1.0-cbe392533bc6cfd8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libusb-1.0.so.0.2.0 +SPDXID: SPDXRef-File-usr-lib64-libusb-1.0.so.0.2.0-680dfded82e3d639 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libuser/libuser_files.so +SPDXID: SPDXRef-File-usr-lib64-libuser-libuser-files.so-a2af7276d240f86f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libuser/libuser_ldap.so +SPDXID: SPDXRef-File-usr-lib64-libuser-libuser-ldap.so-9e2e49ece79f5dce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libuser/libuser_shadow.so +SPDXID: SPDXRef-File-usr-lib64-libuser-libuser-shadow.so-236b6a23e8719107 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libuser.so.1.5.2 +SPDXID: SPDXRef-File-usr-lib64-libuser.so.1.5.2-185719423f9af73a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libutempter.so.1.1.6 +SPDXID: SPDXRef-File-usr-lib64-libutempter.so.1.1.6-e2009bfa4c17a8e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libutil-2.28.so +SPDXID: SPDXRef-File-usr-lib64-libutil-2.28.so-14604828ae84b1c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libuuid.so.1.3.0 +SPDXID: SPDXRef-File-usr-lib64-libuuid.so.1.3.0-79b4f8f2f7be14cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libverto.so.1.0.0 +SPDXID: SPDXRef-File-usr-lib64-libverto.so.1.0.0-3a7163f90f9f5919 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libxml2.so.2.9.7 +SPDXID: SPDXRef-File-usr-lib64-libxml2.so.2.9.7-43b74e13e28c79a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libxtables.so.12.2.0 +SPDXID: SPDXRef-File-usr-lib64-libxtables.so.12.2.0-62c47b82c901c8a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/libyaml-0.so.2.0.5 +SPDXID: SPDXRef-File-usr-lib64-libyaml-0.so.2.0.5-5037ddf99a79f5ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libz.so.1.2.11 +SPDXID: SPDXRef-File-usr-lib64-libz.so.1.2.11-51932d6e34adcaff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/libzstd.so.1.4.4 +SPDXID: SPDXRef-File-usr-lib64-libzstd.so.1.4.4-0a800f0500000ff2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/pkcs11/p11-kit-trust.so +SPDXID: SPDXRef-File-usr-lib64-pkcs11-p11-kit-trust.so-c21a87826612dd6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__future__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6---future--.py-879e861f647b32f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/__phello__.foo.py +SPDXID: SPDXRef-File-usr-lib64-python3.6---phello--.foo.py-be5c01ddec805889 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_bootlocale.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--bootlocale.py-35239f9e9460a643 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_compat_pickle.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--compat-pickle.py-db189bca068d2635 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_compression.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--compression.py-ff2ddbaa150c9505 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_dummy_thread.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--dummy-thread.py-fdf5ef797dbcd00e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_markupbase.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--markupbase.py-61902fe48286c220 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_osx_support.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--osx-support.py-6236080f51102596 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_pydecimal.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--pydecimal.py-c1fdc1c439c6c222 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_pyio.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--pyio.py-054b9a7ba5c711c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_sitebuiltins.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--sitebuiltins.py-427dda9cb5cc42dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_strptime.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--strptime.py-d6e287aab24fd302 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/_weakrefset.py +SPDXID: SPDXRef-File-usr-lib64-python3.6--weakrefset.py-be96b4615ca6fb06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/abc.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-abc.py-fa8b00f29a41f0f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/aifc.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-aifc.py-97e6c2ba605d3c4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/antigravity.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-antigravity.py-ad05c2801549cb49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/argparse.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-argparse.py-e001122abd387d34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ast.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ast.py-4bf5c962573be648 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asynchat.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asynchat.py-ab5ae4878f342cd3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/compat.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-compat.py-e6b59d95f2ceebe6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/events.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-events.py-1d8699c2bf3d29fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/futures.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-futures.py-32d3a8c3dc845e1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/locks.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-locks.py-fec66c6d67fe9bac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/log.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-log.py-26876d0d21485603 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/queues.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-queues.py-139ad237ab09001d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/streams.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-streams.py-534f5fd7a6852def +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncio/tasks.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncio-tasks.py-fbbc5e4ecedaea51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/asyncore.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-asyncore.py-9ce7cf13b7919b45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/base64.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-base64.py-8f8f935f1629c374 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/bdb.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-bdb.py-5500cf5165444015 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/binhex.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-binhex.py-069c936486418cb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/bisect.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-bisect.py-2ed2fa67151f07b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/bz2.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-bz2.py-c77bc96861678ff1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/cProfile.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-cProfile.py-540b17d1a43e5e4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/calendar.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-calendar.py-552cf4908e399e1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/cgi.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-cgi.py-1e763187ed9a854b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/cgitb.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-cgitb.py-bc94a0c6a6ef855a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/chunk.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-chunk.py-dbee829555253f80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/cmd.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-cmd.py-32096e08e2233cac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/code.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-code.py-62c8047b75881cec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/codecs.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-codecs.py-ab7b0ee1892183c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/codeop.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-codeop.py-64078ab4e8821d5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/collections/abc.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-collections-abc.py-734d8f6b52b5383e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/colorsys.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-colorsys.py-74601a6b4140701f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/compileall.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-compileall.py-3cb2cb9ae67b5bd0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/configparser.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-configparser.py-d8718a58bacb5733 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/contextlib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-contextlib.py-44532df0a4ef9845 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/copy.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-copy.py-4c2743bb78d1d034 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/copyreg.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-copyreg.py-4f139750e80215be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/crypt.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-crypt.py-efbb5c3c6380fc78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/csv.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-csv.py-6a3a318d41f92fb3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ctypes---init--.py-4aa08ba1d6f60374 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/_endian.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ctypes--endian.py-688c3d8e5b73a2d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/util.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ctypes-util.py-e4ebdf3391db06aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ctypes/wintypes.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ctypes-wintypes.py-6078998f6c5559fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-curses---init--.py-732bde4ab613221a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/ascii.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-curses-ascii.py-3f9b378806ca425d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/has_key.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-curses-has-key.py-b6a98a91f6215ce7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/panel.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-curses-panel.py-59d9b5c6e90153a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/curses/textpad.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-curses-textpad.py-a0a3fe6f2a22af09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/datetime.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-datetime.py-f75ce6b655f1499e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-dbm---init--.py-ab5e1259201b8c9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/dumb.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-dbm-dumb.py-5af0e66af85035ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/gnu.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-dbm-gnu.py-0d1532324ae2fb79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dbm/ndbm.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-dbm-ndbm.py-f5ab756d60283e64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/decimal.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-decimal.py-3e5ba83dd51af313 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/difflib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-difflib.py-c1f665277991ccc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dis.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-dis.py-79cc4184a1550e5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/README +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-README-4067d5cb80c8e0d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/cmd.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-cmd.py-f48bb4b80c0fc914 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/core.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-core.py-0ccbf8f33a907de0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/debug.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-debug.py-4ed346a854cb5176 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/dist.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-dist.py-b1c4879dad7c9b1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/log.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-log.py-71f6fc187d47ca74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/spawn.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-spawn.py-2b4d404e8a991e0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/distutils/util.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-distutils-util.py-970d3fe1072507c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/doctest.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-doctest.py-08a9528d8632e6aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/dummy_threading.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-dummy-threading.py-e24fce9704f531f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email---init--.py-718e91499485f0bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/charset.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-charset.py-d7e36ea904f49459 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/encoders.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-encoders.py-798b189ab8ae7ff1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/errors.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-errors.py-1891a00a72874302 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/generator.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-generator.py-70eb949beb52f03c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/header.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-header.py-bb2e337fc7bc25d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/iterators.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-iterators.py-2f2af03930dc63b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/message.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-message.py-87f8692c7c859f74 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/base.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-mime-base.py-05caae5634d8c3df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/mime/text.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-mime-text.py-871616b476c35750 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/parser.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-parser.py-27f591562b6f184e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/policy.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-policy.py-61ff80d847994f1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/email/utils.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-email-utils.py-411636a2d3611bdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/ascii.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-ascii.py-4a115e72a894aa49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/big5.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-big5.py-cf7d8448d7e7c293 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp037.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp037.py-47a820d875ad566f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp273.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp273.py-ee725f6bc618a16a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp424.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp424.py-bc9906886de49c71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp437.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp437.py-ed012004b534ab4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp500.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp500.py-06d4de53df74ddc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp720.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp720.py-67e85f731f09ac9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp737.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp737.py-9c40b6c416355d37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp775.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp775.py-de06a79609ecc24b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp850.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp850.py-8fac0fa310bcf7d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp852.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp852.py-b40d6a19dc47fd5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp855.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp855.py-e08f5d669acbf408 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp856.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp856.py-71a606aeeff86d6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp857.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp857.py-a9f000fcfb657377 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp858.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp858.py-e2823fec5a0651ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp860.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp860.py-0917b0d945e44de3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp861.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp861.py-4f55761c09cfee69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp862.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp862.py-f8f6628c3b78806f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp863.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp863.py-33a362932c24ad43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp864.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp864.py-18def1083aa057b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp865.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp865.py-b9f1a37deb39a672 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp866.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp866.py-13780e94901cd261 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp869.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp869.py-8a96706c678d447e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp874.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp874.py-9351c7a4c77c670e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp875.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp875.py-62c4422acea4809f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp932.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp932.py-da122815fbcef99c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp949.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp949.py-2e4d5ed275283cea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/cp950.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-cp950.py-e5d90f665090dbc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/gbk.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-gbk.py-657ff27fc1f9c295 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/hz.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-hz.py-e5d1f6d81990d41e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/idna.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-idna.py-43b0b18bb64c0467 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/johab.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-johab.py-4c6adf346fc72e33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/mbcs.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-mbcs.py-0fe511cb3ae06b44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/oem.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-oem.py-7a77b5772c975089 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_7.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-utf-7.py-7fcf8cf9d42dd357 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/encodings/utf_8.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-encodings-utf-8.py-a7dde49b6c41e684 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/enum.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-enum.py-23c6065ffe6f1ddf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/filecmp.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-filecmp.py-4d80643532839b07 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/fileinput.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-fileinput.py-6a2f01fe7b7adbbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/fnmatch.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-fnmatch.py-b5926719a37394d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/formatter.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-formatter.py-ec284befe416d6f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/fractions.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-fractions.py-6b68fa744f027b8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ftplib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ftplib.py-31a82430a2ee3e49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/functools.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-functools.py-851d9125a873134e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/genericpath.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-genericpath.py-2187635b43eb6864 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/getopt.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-getopt.py-82ee261275faf8a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/getpass.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-getpass.py-21529cfd13defe47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/gettext.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-gettext.py-6992bbd4fb6da725 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/glob.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-glob.py-d603b5874ea7cc3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/gzip.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-gzip.py-1e801a412a675d41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/hashlib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-hashlib.py-06e2ab1d9a5b1d85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/heapq.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-heapq.py-e95612c0d54c2b17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/hmac.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-hmac.py-d5f1f8d83f205ecb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-html---init--.py-27a803ec6e32df63 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/entities.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-html-entities.py-516f1d3eef04a8b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/html/parser.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-html-parser.py-57c2f55f5e6d8215 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-http---init--.py-fdd2b2106b93a9af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/client.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-http-client.py-b1960373aefd7f61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/cookiejar.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-http-cookiejar.py-cf6e80d544210195 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/cookies.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-http-cookies.py-370e4c3bbad410fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/http/server.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-http-server.py-941de174aff4a3b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/imaplib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-imaplib.py-936e69ccbceab213 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/imghdr.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-imghdr.py-2579789324ac7520 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/imp.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-imp.py-8e67b1c991fa1447 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/abc.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-importlib-abc.py-d20ed7b1ed709533 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/importlib/util.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-importlib-util.py-e2037a49509f59b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/inspect.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-inspect.py-b2c91e796aa5ee77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/io.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-io.py-0c9d9239a8cfdd33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ipaddress.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ipaddress.py-0a9612c585191df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-json---init--.py-7f43fe086974199b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/decoder.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-json-decoder.py-02163774d9b1c6db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/encoder.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-json-encoder.py-49895eb15aa6e135 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/scanner.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-json-scanner.py-825eac73410c41da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/json/tool.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-json-tool.py-fa3c4855ab032823 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/keyword.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-keyword.py-cf84656467927494 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/main.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-lib2to3-main.py-36e99774f5ff51d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/patcomp.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-lib2to3-patcomp.py-ee829611eb3c184c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pygram.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-lib2to3-pygram.py-7d5094e345a4215a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lib2to3/pytree.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-lib2to3-pytree.py-1096aa56b26b9608 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/linecache.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-linecache.py-f6739fb7e6fbc714 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/locale.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-locale.py-2c02490578c2660f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/logging/config.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-logging-config.py-c13cb7a36918c56a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/lzma.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-lzma.py-c83f4fe641177aba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/macpath.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-macpath.py-0fd44fc0d4d6d390 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/macurl2path.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-macurl2path.py-65eff5ea054b5368 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/mailbox.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-mailbox.py-e09fd04bfc2dc1ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/mailcap.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-mailcap.py-9caa52ee4a91d3be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/mimetypes.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-mimetypes.py-610a7b38c7a93421 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/modulefinder.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-modulefinder.py-4ae899c7412672b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/netrc.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-netrc.py-bf40314d7d89feca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/nntplib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-nntplib.py-70fe835bedcdc15e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ntpath.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ntpath.py-617a09ddd70bc2b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/nturl2path.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-nturl2path.py-a27fc4173b818da1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/numbers.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-numbers.py-9df233d8a5a44e0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/opcode.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-opcode.py-f0f954dbb2833801 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/operator.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-operator.py-aa01c4acab93367c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/optparse.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-optparse.py-1c76ad647e6c87f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/os.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-os.py-cefd00f42764160a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pathlib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pathlib.py-5a4b1e0a332dfa13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pdb.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pdb.py-55761d069cd97f29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pickle.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pickle.py-11748e5644dc6475 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pickletools.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pickletools.py-f1e5b5edcb6b0a13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pipes.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pipes.py-da5cdbfe5f8bb0e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pkgutil.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pkgutil.py-89bf9f8b88c574ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/platform.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-platform.py-57a25d1dce76446c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/plistlib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-plistlib.py-92cf809cf7dbf858 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/poplib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-poplib.py-0622b94a5fd4d8f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/posixpath.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-posixpath.py-3c32119e9243b6c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pprint.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pprint.py-3d30c73246052e8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/profile.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-profile.py-552c3fc70d804b5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pstats.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pstats.py-c0a6c16d8afc10d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pty.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pty.py-f69611f56baba1ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/py_compile.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-py-compile.py-bd99ebc18fe1e1fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pyclbr.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pyclbr.py-f3dad685c9147987 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/pydoc.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-pydoc.py-5a09657abfa45c53 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/queue.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-queue.py-044e307e912a3a48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/quopri.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-quopri.py-4e6ba7df977f1505 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/random.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-random.py-f3fc631ef8241c18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/re.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-re.py-12710e79b8e766fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/reprlib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-reprlib.py-b6e0eec06143f4a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/rlcompleter.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-rlcompleter.py-f6b9181db5b08ca5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/runpy.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-runpy.py-260a9ccdb31657a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sched.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sched.py-5daed23910f888e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/secrets.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-secrets.py-a3cde4aaa8d87cf8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/selectors.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-selectors.py-09c539644f97d9cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/shelve.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-shelve.py-0c6695e786e8d1bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/shlex.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-shlex.py-f8950486a423cb6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/shutil.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-shutil.py-b4baf93cb37e4be5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/signal.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-signal.py-2aa4c12a76cf2e3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/site.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-site.py-bfc47ea4416c5f3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/smtpd.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-smtpd.py-c755b1de1c727ca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/smtplib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-smtplib.py-ddf85bfd81411449 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sndhdr.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sndhdr.py-28f417a9b0a98b1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/socket.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-socket.py-0ff8cce2b3d13913 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/socketserver.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-socketserver.py-ab99febe5f06b9ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/dbapi2.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sqlite3-dbapi2.py-334cbc47c6fb3d08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sqlite3/dump.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sqlite3-dump.py-c210627074393021 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sre_compile.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sre-compile.py-74c2b1c54ed2ebc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sre_constants.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sre-constants.py-e1447512bb65e032 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sre_parse.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sre-parse.py-a3b224d784ef0f7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/ssl.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-ssl.py-56fd1a43cd8dba11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/stat.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-stat.py-79a0ce7cb16b589b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/statistics.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-statistics.py-cbef0356c6384f0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/string.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-string.py-cd4ba999747aab1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/stringprep.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-stringprep.py-5f67ec6b05806eb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/struct.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-struct.py-9558fc919a7ab54f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/subprocess.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-subprocess.py-8f26e35c4a9ae2e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sunau.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sunau.py-f75f3879c69aa675 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/symbol.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-symbol.py-4f269c9a458308e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/symtable.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-symtable.py-86a1fb71442a4a2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/sysconfig.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-sysconfig.py-0a9171b9b3e0ff1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/tabnanny.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-tabnanny.py-515bb779113c2033 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/tarfile.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-tarfile.py-0bdfacff06d7c160 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/telnetlib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-telnetlib.py-26fb4824366dd59f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/tempfile.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-tempfile.py-e36c1317dba5574e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/test/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-test---init--.py-e9b535545651bffc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/textwrap.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-textwrap.py-25a97194295334a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/this.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-this.py-bdfc5fbf773523a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/threading.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-threading.py-93db38c2556ead09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/timeit.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-timeit.py-10fbdbe9d74b6d57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/token.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-token.py-baa8310d71e39288 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/tokenize.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-tokenize.py-1c02e61ea043314e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/trace.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-trace.py-d8caaad719ba9664 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/traceback.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-traceback.py-d388c14d403c7e5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/tracemalloc.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-tracemalloc.py-48800194b3482e1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/tty.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-tty.py-d85c295cfc1338dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/types.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-types.py-4c282b8aaf207ee8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/typing.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-typing.py-bfee7c1206a991cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/case.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-case.py-f1b9f55a23af9ac2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/loader.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-loader.py-6a061981abe4bac0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/main.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-main.py-af788d0e67700fdc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/mock.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-mock.py-2c82be888ec6e0c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/result.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-result.py-c9152b00a3454b83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/runner.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-runner.py-32b2677948a5f488 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/suite.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-suite.py-78d919b5103b2d08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/unittest/util.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-unittest-util.py-4094885fd243cebc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-urllib---init--.py-044c715ab330502e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/error.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-urllib-error.py-4b60a25b2fa27a43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/parse.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-urllib-parse.py-277d17ca3e359bd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/request.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-urllib-request.py-af43c3af2e9d7f69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/urllib/response.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-urllib-response.py-170182a58d9eceac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/uu.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-uu.py-ef369ac33d126ab4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/uuid.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-uuid.py-6f42e49919bef2fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-venv---init--.py-8000c93773906909 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/venv/__main__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-venv---main--.py-d251d8d2b8e9b735 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/warnings.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-warnings.py-d40bb397f07e6d37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wave.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-wave.py-f7fbca4fa03e5c75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/weakref.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-weakref.py-ac505d18c3fced6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/webbrowser.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-webbrowser.py-ef64e4a74481a03c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/headers.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-wsgiref-headers.py-47e68f7c6ae95155 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/wsgiref/util.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-wsgiref-util.py-9dc8046edb72598a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xdrlib.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xdrlib.py-b4d9c07b41ba6f7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xml---init--.py-8a30aec408d41672 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/domreg.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xml-dom-domreg.py-363b33f2a7ce5381 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/minidom.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xml-dom-minidom.py-808ba63ac0a956a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/dom/pulldom.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xml-dom-pulldom.py-3d67c18377455043 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xml/sax/handler.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xml-sax-handler.py-9de38776c3d5a460 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/__init__.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xmlrpc---init--.py-c9a92994b229b992 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/client.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xmlrpc-client.py-db762ea816e6ce67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/xmlrpc/server.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-xmlrpc-server.py-0ef533fe6c831d62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/zipapp.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-zipapp.py-5d78c46fc96adbc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/python3.6/zipfile.py +SPDXID: SPDXRef-File-usr-lib64-python3.6-zipfile.py-4c08e738bbfbf6d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/sasl2/libanonymous.so.3.0.0 +SPDXID: SPDXRef-File-usr-lib64-sasl2-libanonymous.so.3.0.0-5eea771844241fb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/sasl2/libsasldb.so.3.0.0 +SPDXID: SPDXRef-File-usr-lib64-sasl2-libsasldb.so.3.0.0-4bf81599d5ea07f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_access.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-access.so-87823db11acd6602 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_cap.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-cap.so-aa9f3a65b0d59615 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_chroot.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-chroot.so-c71e371b3ee1940c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_console.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-console.so-cd85ddf22c9349c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_cracklib.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-cracklib.so-64005b7deee04f19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_debug.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-debug.so-70d203bf1aeb8d3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_deny.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-deny.so-00e5913a07655ba7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_echo.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-echo.so-90645347a2fa1074 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_env.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-env.so-73d395c297e22df7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_exec.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-exec.so-adcbda368a953d35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_faildelay.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-faildelay.so-dc4aadd1706c255b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_faillock.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-faillock.so-f4b6fa503861cd0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_filter.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-filter.so-5bddb4a93a1a2ffb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_ftp.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-ftp.so-53580c4c4f7aba80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_group.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-group.so-f7a6d9d9f46b3704 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_issue.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-issue.so-f5c5ec502ac86160 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_keyinit.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-keyinit.so-32f8a7096c7faaa7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_lastlog.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-lastlog.so-90095ff7cc7b3232 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_limits.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-limits.so-6df41fd69b0ef4d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_listfile.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-listfile.so-3628bdf0a29a6653 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_localuser.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-localuser.so-8be941c227ec764a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_loginuid.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-loginuid.so-ace18675f7488ca2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_mail.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-mail.so-f7858403c0d56667 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_mkhomedir.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-mkhomedir.so-6527bf955d2e1ecd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_motd.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-motd.so-5ac09dc80b53be2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_namespace.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-namespace.so-f4a0d51dcbeefb13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_nologin.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-nologin.so-968e8e0f92136fb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_permit.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-permit.so-2a9680a57044a433 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_postgresok.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-postgresok.so-cf2304a2eb474695 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_pwhistory.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-pwhistory.so-bd22fc79d6f23314 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_pwquality.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-pwquality.so-ddc31ff8d1f5f1e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_rhosts.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-rhosts.so-839c4ed204d9c47b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_rootok.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-rootok.so-a6187098c7283231 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_securetty.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-securetty.so-90e76874e098b219 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_selinux.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-selinux.so-ebe9e36c22a0438f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_sepermit.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-sepermit.so-c019470aeed8f918 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_shells.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-shells.so-5bc7ea2d216e4cdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_stress.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-stress.so-8984a8f34c1a6e5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_succeed_if.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-succeed-if.so-c806778baa7a5951 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_systemd.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-systemd.so-fb867478ee7279dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_time.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-time.so-d8dc945ff6e14c16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_timestamp.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-timestamp.so-59bb3f54e43771f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_tty_audit.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-tty-audit.so-5f9917408b8c3fb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_umask.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-umask.so-c1c790756ac251a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_unix.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-unix.so-f24672afcd9ce839 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_userdb.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-userdb.so-68e2b6b0aab4291e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_usertype.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-usertype.so-965cc6407a44d0ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_warn.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-warn.so-82e42e4d3d21523b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_wheel.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-wheel.so-74044d0fe410f3d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/security/pam_xauth.so +SPDXID: SPDXRef-File-usr-lib64-security-pam-xauth.so-7d8676abf64f8298 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/lib64/xtables/libarpt_mangle.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libarpt-mangle.so-0a8989aebe15b04a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_802_3.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-802-3.so-2bf0c88f4ee41ab6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_among.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-among.so-6fcf8bdd08ad879e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_arp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-arp.so-a8c2ed928f0e064e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_arpreply.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-arpreply.so-dc38354148e873f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_dnat.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-dnat.so-4f819261fe50da09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_ip.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-ip.so-0b70d68ae29ac990 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_ip6.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-ip6.so-a3b64975261d949a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_log.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-log.so-66be005f517802c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_mark_m.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-mark-m.so-aa56a47e66797194 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_mark.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-mark.so-8dc0419f37f5a341 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_nflog.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-nflog.so-3d19885b5a79b64f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_pkttype.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-pkttype.so-ce53e362a2da11ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_redirect.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-redirect.so-6c239620beca3472 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_snat.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-snat.so-1450f2bacd3cc1ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_stp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-stp.so-2e1b4fcf1feea383 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libebt_vlan.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libebt-vlan.so-71452a7158acb0a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_DNAT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-DNAT.so-5b1db53fe63f5a67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_DNPT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-DNPT.so-499789cda4db14b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_HL.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-HL.so-322b603a32e1cdc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_LOG.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-LOG.so-257d97acd7a47902 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_NETMAP.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-NETMAP.so-23e15242e2ffdaec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_REDIRECT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-REDIRECT.so-bc95f60ff4577312 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_REJECT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-REJECT.so-d1cde2bfc13478b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_SNAT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-SNAT.so-973d5fefbb2126e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_SNPT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-SNPT.so-8fd1ec94183473c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_ah.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-ah.so-7edeb75b70485888 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_dst.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-dst.so-e976e35a12d919df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_eui64.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-eui64.so-8d277d77046d755e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_frag.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-frag.so-522ab760cf9e1023 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_hbh.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-hbh.so-3432aeb718ccd262 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_hl.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-hl.so-54ef27b59a338e36 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_icmp6.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-icmp6.so-26be7c5cc18ff324 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_mh.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-mh.so-ffbc06d58d9eb899 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_rt.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-rt.so-28e2fff509f904c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libip6t_srh.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libip6t-srh.so-cc123181e9bac9ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_CLUSTERIP.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-CLUSTERIP.so-93c5c8783030c32d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_DNAT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-DNAT.so-94bfb7091c286773 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_ECN.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-ECN.so-5c534e4a0e5f2259 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_LOG.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-LOG.so-64bbe0a075c82fb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_MASQUERADE.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-MASQUERADE.so-629963d3272c111a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_NETMAP.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-NETMAP.so-9f72b2afb20b9f7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_REDIRECT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-REDIRECT.so-ffdbcbb2c369e85a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_REJECT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-REJECT.so-b7c2f4e6d2514e48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_SNAT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-SNAT.so-f901e3ad51b18b2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_TTL.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-TTL.so-169929e53ecd3e99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_ULOG.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-ULOG.so-eafb8c858bb469c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_ah.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-ah.so-9c47300989f10cbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_icmp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-icmp.so-fca94ed86b96b7c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_realm.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-realm.so-4f010fe4f183b60c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libipt_ttl.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libipt-ttl.so-298fd1f9dc3ca481 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_AUDIT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-AUDIT.so-e3527fb795c5e22f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_CHECKSUM.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-CHECKSUM.so-d6ca3894ac858dd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_CLASSIFY.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-CLASSIFY.so-df98792a174f5280 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_CONNMARK.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-CONNMARK.so-ef586e360b5c4cfa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_CONNSECMARK.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-CONNSECMARK.so-1a62b6fac74ab2ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_CT.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-CT.so-d2bc299ec48387bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_DSCP.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-DSCP.so-2143b6d37bb1331a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_HMARK.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-HMARK.so-db4ef7b178b1821b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_IDLETIMER.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-IDLETIMER.so-2ad9c43e2173da00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_LED.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-LED.so-2723b40a6d864e81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_MARK.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-MARK.so-ececa36c3e7cbc0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_NFLOG.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-NFLOG.so-aeefbd299efc91bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_NFQUEUE.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-NFQUEUE.so-b802b01e1297e628 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_RATEEST.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-RATEEST.so-654be8c0e858c7b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_SECMARK.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-SECMARK.so-4f03efdb9035d5e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_SET.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-SET.so-0e1850b770228a49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_SYNPROXY.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-SYNPROXY.so-62ea1162397dc409 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_TCPMSS.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-TCPMSS.so-8c4c798d036dacf0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_TCPOPTSTRIP.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-TCPOPTSTRIP.so-a5477362a06c343e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_TEE.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-TEE.so-b1f6d6ed4de93d3d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_TOS.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-TOS.so-e49d1822ab908333 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_TPROXY.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-TPROXY.so-d7ea2b70bc107a2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_TRACE.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-TRACE.so-313c839fa367c688 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_addrtype.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-addrtype.so-93f53d05b301b3bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_bpf.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-bpf.so-d19a5b228d2d996d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_cgroup.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-cgroup.so-7f442ce604dbd4bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_cluster.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-cluster.so-ab0b3c98f1abfc24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_comment.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-comment.so-a68574d7c43140a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_connbytes.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-connbytes.so-480199ed4d48d1eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_connlabel.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-connlabel.so-9d8ef1974f0d1b6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_connlimit.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-connlimit.so-b0b90b5cd7413d75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_connmark.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-connmark.so-a44fda4cfcd906b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_conntrack.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-conntrack.so-4435c2520fd42d4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_cpu.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-cpu.so-cf728d398f60cc0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_dccp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-dccp.so-c63d744544ba2ec4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_devgroup.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-devgroup.so-1f4cd59acd0f7f9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_dscp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-dscp.so-888a840c06a3a57b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_ecn.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-ecn.so-c02189c5ad7ae7c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_esp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-esp.so-8d2197fc9080c165 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_hashlimit.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-hashlimit.so-d89a5fcc6d0d0a18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_helper.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-helper.so-c93b15d9c91928b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_ipcomp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-ipcomp.so-b4ec4233b95a7cf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_iprange.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-iprange.so-5c255766e50b13dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_ipvs.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-ipvs.so-920a47022e3ecdf0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_length.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-length.so-fb98ff4038d0ddcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_limit.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-limit.so-41fb99b093645c2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_mac.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-mac.so-b22828d2efd7ee4e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_mark.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-mark.so-d4dd3e664600733e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_multiport.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-multiport.so-ef757d9b66df9291 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_nfacct.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-nfacct.so-d58f9dd89c0277eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_osf.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-osf.so-7f92015105c1057d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_owner.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-owner.so-97d2041ee7eb9412 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_physdev.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-physdev.so-3d57f1df03239025 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_pkttype.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-pkttype.so-22db963a40dbcea3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_policy.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-policy.so-bc91fa3c5d868f2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_quota.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-quota.so-ae6e22b2fe9daffe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_rateest.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-rateest.so-cb8da67b71705cec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_recent.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-recent.so-27882b2b4c2c550f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_rpfilter.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-rpfilter.so-a408d25cfb0952c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_sctp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-sctp.so-1a45ca421cc01c9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_set.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-set.so-1eadf6c55d37ed15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_socket.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-socket.so-8d5f275ff4222448 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_standard.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-standard.so-acf01d9eb409539a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_statistic.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-statistic.so-6559f23febcbeb58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_string.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-string.so-dc1658892f39d831 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_tcp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-tcp.so-a0ee4a1232b1502b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_tcpmss.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-tcpmss.so-639d66770ad6e012 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_time.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-time.so-8eff4cb494c2ca3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_tos.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-tos.so-573cce1653aca3eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_u32.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-u32.so-8200e706124b85eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/lib64/xtables/libxt_udp.so +SPDXID: SPDXRef-File-usr-lib64-xtables-libxt-udp.so-debe34d906d0694f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/libexec/awk/grcat +SPDXID: SPDXRef-File-usr-libexec-awk-grcat-df55418deebcbbbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/awk/pwcat +SPDXID: SPDXRef-File-usr-libexec-awk-pwcat-4347f7e43eaa69a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/coreutils/libstdbuf.so +SPDXID: SPDXRef-File-usr-libexec-coreutils-libstdbuf.so-d9115f3032342a46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/dirmngr_ldap +SPDXID: SPDXRef-File-usr-libexec-dirmngr-ldap-14a0a3f9fcdb8f73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/getconf/XBS5_LP64_OFF64 +SPDXID: SPDXRef-File-usr-libexec-getconf-XBS5-LP64-OFF64-d20abff376e0f337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/gpg-check-pattern +SPDXID: SPDXRef-File-usr-libexec-gpg-check-pattern-6a8855dbb1c51ef3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/gpg-preset-passphrase +SPDXID: SPDXRef-File-usr-libexec-gpg-preset-passphrase-15b764792cb9d0a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/gpg-protect-tool +SPDXID: SPDXRef-File-usr-libexec-gpg-protect-tool-1a358d25ad4f1328 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/gpg-wks-client +SPDXID: SPDXRef-File-usr-libexec-gpg-wks-client-aa56150aaa78286d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/grepconf.sh +SPDXID: SPDXRef-File-usr-libexec-grepconf.sh-39ecc07b25165ca0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/no-python +SPDXID: SPDXRef-File-usr-libexec-no-python-e34fc456a28a2b81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/p11-kit/p11-kit-remote +SPDXID: SPDXRef-File-usr-libexec-p11-kit-p11-kit-remote-bacfcdb6a40947d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/platform-python3.6 +SPDXID: SPDXRef-File-usr-libexec-platform-python3.6-1f9aa3174ddc7a7f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/platform-python3.6m +SPDXID: SPDXRef-File-usr-libexec-platform-python3.6m-b0dda77b764f2159 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/rhsm-facts-service +SPDXID: SPDXRef-File-usr-libexec-rhsm-facts-service-f85ae7c2a0b61a7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/rhsm-service +SPDXID: SPDXRef-File-usr-libexec-rhsm-service-12b73d530c000089 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/rhsmcertd-worker +SPDXID: SPDXRef-File-usr-libexec-rhsmcertd-worker-a25534fa34908b06 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/scdaemon +SPDXID: SPDXRef-File-usr-libexec-scdaemon-46695b70b6cf7ccf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/utempter/utempter +SPDXID: SPDXRef-File-usr-libexec-utempter-utempter-ddb7833ec5aed11f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/libexec/virt-what-cpuid-helper +SPDXID: SPDXRef-File-usr-libexec-virt-what-cpuid-helper-52c610d2ce7df1a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/addgnupghome +SPDXID: SPDXRef-File-usr-sbin-addgnupghome-95d62c800eca5c03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/addpart +SPDXID: SPDXRef-File-usr-sbin-addpart-6f6555e8dfd27c6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/agetty +SPDXID: SPDXRef-File-usr-sbin-agetty-112cebe4e1dc89e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/alternatives +SPDXID: SPDXRef-File-usr-sbin-alternatives-6d125db4bb60a9dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/applygnupgdefaults +SPDXID: SPDXRef-File-usr-sbin-applygnupgdefaults-d305fe8d07d0f600 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/biosdecode +SPDXID: SPDXRef-File-usr-sbin-biosdecode-a5c23a6ff80c8f15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/blkdeactivate +SPDXID: SPDXRef-File-usr-sbin-blkdeactivate-aa86b3251a52a033 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/blkdiscard +SPDXID: SPDXRef-File-usr-sbin-blkdiscard-d4b91db236adf9ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/blkid +SPDXID: SPDXRef-File-usr-sbin-blkid-6487755e02cf2a6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/blkzone +SPDXID: SPDXRef-File-usr-sbin-blkzone-259b604f5327a25b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/blockdev +SPDXID: SPDXRef-File-usr-sbin-blockdev-d24e432f3d090856 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/capsh +SPDXID: SPDXRef-File-usr-sbin-capsh-a685d3cb1164f864 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/cfdisk +SPDXID: SPDXRef-File-usr-sbin-cfdisk-c65d3eeb78b83463 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/chcpu +SPDXID: SPDXRef-File-usr-sbin-chcpu-fd423957f82b59f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/chgpasswd +SPDXID: SPDXRef-File-usr-sbin-chgpasswd-b27ca77cb4e04682 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/chkconfig +SPDXID: SPDXRef-File-usr-sbin-chkconfig-09c7a81dac1cff44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/chpasswd +SPDXID: SPDXRef-File-usr-sbin-chpasswd-e21ffa82d3f56fc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/chroot +SPDXID: SPDXRef-File-usr-sbin-chroot-49ccacce511dbb56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/cracklib-check +SPDXID: SPDXRef-File-usr-sbin-cracklib-check-44fb50efdc6e3f98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/cracklib-format +SPDXID: SPDXRef-File-usr-sbin-cracklib-format-5c9ba3451440e818 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/cracklib-packer +SPDXID: SPDXRef-File-usr-sbin-cracklib-packer-30a254ccb5506d00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/cracklib-unpacker +SPDXID: SPDXRef-File-usr-sbin-cracklib-unpacker-af6a1a3ebb75f441 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/create-cracklib-dict +SPDXID: SPDXRef-File-usr-sbin-create-cracklib-dict-a3d3c852c66c8daa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/ctrlaltdel +SPDXID: SPDXRef-File-usr-sbin-ctrlaltdel-c749c3e507136791 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/delpart +SPDXID: SPDXRef-File-usr-sbin-delpart-af8f75195c9a0fb3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/dmfilemapd +SPDXID: SPDXRef-File-usr-sbin-dmfilemapd-9aa799f0659cde86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/dmidecode +SPDXID: SPDXRef-File-usr-sbin-dmidecode-c9214f440da5bc4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/dmsetup +SPDXID: SPDXRef-File-usr-sbin-dmsetup-9bf778f24c5ba40e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/faillock +SPDXID: SPDXRef-File-usr-sbin-faillock-e11d94a700e3be29 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fdformat +SPDXID: SPDXRef-File-usr-sbin-fdformat-c9e5aca7ff3c7924 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fdisk +SPDXID: SPDXRef-File-usr-sbin-fdisk-6b2b3ff70df7fcbc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/findfs +SPDXID: SPDXRef-File-usr-sbin-findfs-4b2624fafeccacd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fix-info-dir +SPDXID: SPDXRef-File-usr-sbin-fix-info-dir-f76397cfe121f349 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fsck +SPDXID: SPDXRef-File-usr-sbin-fsck-40c85f07e8bfae86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fsck.cramfs +SPDXID: SPDXRef-File-usr-sbin-fsck.cramfs-6735ebd2d754f820 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fsck.minix +SPDXID: SPDXRef-File-usr-sbin-fsck.minix-3a841f1e7aa1bdc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fsfreeze +SPDXID: SPDXRef-File-usr-sbin-fsfreeze-0f58d1dfdfbeb412 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/fstrim +SPDXID: SPDXRef-File-usr-sbin-fstrim-a5cb1dd627e53633 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/g13-syshelp +SPDXID: SPDXRef-File-usr-sbin-g13-syshelp-63bca89e606f2ef1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/getcap +SPDXID: SPDXRef-File-usr-sbin-getcap-02c9adff932e7ba7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/getpcaps +SPDXID: SPDXRef-File-usr-sbin-getpcaps-4058609c2022fae5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/groupadd +SPDXID: SPDXRef-File-usr-sbin-groupadd-2dbf845c572259d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/groupdel +SPDXID: SPDXRef-File-usr-sbin-groupdel-944deb58373f0bcd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/groupmems +SPDXID: SPDXRef-File-usr-sbin-groupmems-aa5c7fbf92d2015c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/groupmod +SPDXID: SPDXRef-File-usr-sbin-groupmod-a86e343ed25abfa9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/grpck +SPDXID: SPDXRef-File-usr-sbin-grpck-c0a2a782bc0aed75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/grpconv +SPDXID: SPDXRef-File-usr-sbin-grpconv-a44a2ef8547b1597 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/grpunconv +SPDXID: SPDXRef-File-usr-sbin-grpunconv-43e3afd5c68951c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/hwclock +SPDXID: SPDXRef-File-usr-sbin-hwclock-aa928fed8ce1861e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/iconvconfig +SPDXID: SPDXRef-File-usr-sbin-iconvconfig-a1f3cfb0bf0faa13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/install-info +SPDXID: SPDXRef-File-usr-sbin-install-info-7021998d7eaddeb9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/iptables-apply +SPDXID: SPDXRef-File-usr-sbin-iptables-apply-a935472c79b22928 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/sbin/lchage +SPDXID: SPDXRef-File-usr-sbin-lchage-2162f4d2e57b0ab7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/ldattach +SPDXID: SPDXRef-File-usr-sbin-ldattach-107697624a4be73c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/ldconfig +SPDXID: SPDXRef-File-usr-sbin-ldconfig-e01d507d6a915ec9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/lgroupadd +SPDXID: SPDXRef-File-usr-sbin-lgroupadd-d3a353481522a4b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/lgroupdel +SPDXID: SPDXRef-File-usr-sbin-lgroupdel-ecf2d4b8f6b0dab4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/lgroupmod +SPDXID: SPDXRef-File-usr-sbin-lgroupmod-fb3f2d0f21612c17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/lid +SPDXID: SPDXRef-File-usr-sbin-lid-7cedb312f5bd0d01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/lnewusers +SPDXID: SPDXRef-File-usr-sbin-lnewusers-566050323d7c4642 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/losetup +SPDXID: SPDXRef-File-usr-sbin-losetup-49aac265a149e3ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/lpasswd +SPDXID: SPDXRef-File-usr-sbin-lpasswd-753a5cd30265bdb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/luseradd +SPDXID: SPDXRef-File-usr-sbin-luseradd-0ecaddc71a29b93c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/luserdel +SPDXID: SPDXRef-File-usr-sbin-luserdel-2c4e473485168570 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/lusermod +SPDXID: SPDXRef-File-usr-sbin-lusermod-d756e74179ada97e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/mkfs +SPDXID: SPDXRef-File-usr-sbin-mkfs-91722e570b578747 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/mkfs.cramfs +SPDXID: SPDXRef-File-usr-sbin-mkfs.cramfs-d1897f06e8b71dd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/mkfs.minix +SPDXID: SPDXRef-File-usr-sbin-mkfs.minix-56be8d5c05fe13bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/mkhomedir_helper +SPDXID: SPDXRef-File-usr-sbin-mkhomedir-helper-9c25bbf0eae65fc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/mkswap +SPDXID: SPDXRef-File-usr-sbin-mkswap-bfe51e7cf5130a72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/newusers +SPDXID: SPDXRef-File-usr-sbin-newusers-17a55fb0983aa27e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/nft +SPDXID: SPDXRef-File-usr-sbin-nft-bb6c1623b69e66b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/sbin/nologin +SPDXID: SPDXRef-File-usr-sbin-nologin-03ac757b944026bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/ownership +SPDXID: SPDXRef-File-usr-sbin-ownership-3d7f9425a773e02b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pam_console_apply +SPDXID: SPDXRef-File-usr-sbin-pam-console-apply-50421397d10ac33b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pam_timestamp_check +SPDXID: SPDXRef-File-usr-sbin-pam-timestamp-check-f3328110d5a8f2f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/partx +SPDXID: SPDXRef-File-usr-sbin-partx-78868d9be079f88e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pethtool +SPDXID: SPDXRef-File-usr-sbin-pethtool-855a4e8d0dc38ed6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pifconfig +SPDXID: SPDXRef-File-usr-sbin-pifconfig-d11a72bb2dc6e8a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pivot_root +SPDXID: SPDXRef-File-usr-sbin-pivot-root-0f7971a159b75136 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pwck +SPDXID: SPDXRef-File-usr-sbin-pwck-c1ca1fd8d7b3335f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pwconv +SPDXID: SPDXRef-File-usr-sbin-pwconv-a59004f305f8cc04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pwhistory_helper +SPDXID: SPDXRef-File-usr-sbin-pwhistory-helper-43fc92df59e31231 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/pwunconv +SPDXID: SPDXRef-File-usr-sbin-pwunconv-996b4ddc0dff6b4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/readprofile +SPDXID: SPDXRef-File-usr-sbin-readprofile-e8693201d892cc2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/resizepart +SPDXID: SPDXRef-File-usr-sbin-resizepart-98bd78f17c3b198e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/rfkill +SPDXID: SPDXRef-File-usr-sbin-rfkill-effcc8364debbad7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/rtcwake +SPDXID: SPDXRef-File-usr-sbin-rtcwake-840b523e87c03fc5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/runuser +SPDXID: SPDXRef-File-usr-sbin-runuser-c9650eaaf887fad3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/sasldblistusers2 +SPDXID: SPDXRef-File-usr-sbin-sasldblistusers2-6e9ddbc51d8ab773 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/saslpasswd2 +SPDXID: SPDXRef-File-usr-sbin-saslpasswd2-b88467bd5697f120 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/setcap +SPDXID: SPDXRef-File-usr-sbin-setcap-38a06c75fd582191 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/sfdisk +SPDXID: SPDXRef-File-usr-sbin-sfdisk-5e02da231537b556 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/subscription-manager +SPDXID: SPDXRef-File-usr-sbin-subscription-manager-413bef9dc01e328e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/sulogin +SPDXID: SPDXRef-File-usr-sbin-sulogin-6ee94c4694ebcb0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/swaplabel +SPDXID: SPDXRef-File-usr-sbin-swaplabel-5868135abd7ab36d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/swapoff +SPDXID: SPDXRef-File-usr-sbin-swapoff-4bf8755ffc071e6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/swapon +SPDXID: SPDXRef-File-usr-sbin-swapon-1ad224cfca362ab1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/switch_root +SPDXID: SPDXRef-File-usr-sbin-switch-root-ea31943e7e27398c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/syspurpose +SPDXID: SPDXRef-File-usr-sbin-syspurpose-b40cfa1da3b7ad47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/unix_chkpwd +SPDXID: SPDXRef-File-usr-sbin-unix-chkpwd-61f482f1e76008ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/unix_update +SPDXID: SPDXRef-File-usr-sbin-unix-update-5c61705ca8597ede +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/useradd +SPDXID: SPDXRef-File-usr-sbin-useradd-bdf0602370255068 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/userdel +SPDXID: SPDXRef-File-usr-sbin-userdel-a6d7d896270ba7fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/userhelper +SPDXID: SPDXRef-File-usr-sbin-userhelper-f22001a49ea90934 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/usermod +SPDXID: SPDXRef-File-usr-sbin-usermod-394cd426db35541f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/vipw +SPDXID: SPDXRef-File-usr-sbin-vipw-04c01be4c8ffa4c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/virt-what +SPDXID: SPDXRef-File-usr-sbin-virt-what-f384c47acbc017e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/vpddecode +SPDXID: SPDXRef-File-usr-sbin-vpddecode-2825a01200dd5222 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/wipefs +SPDXID: SPDXRef-File-usr-sbin-wipefs-197a4168542157a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/xtables-nft-multi +SPDXID: SPDXRef-File-usr-sbin-xtables-nft-multi-60c6987e55db8b5c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/sbin/zdump +SPDXID: SPDXRef-File-usr-sbin-zdump-ba674b217a4fa67c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/zic +SPDXID: SPDXRef-File-usr-sbin-zic-6e44a79e99cd0e2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/sbin/zramctl +SPDXID: SPDXRef-File-usr-sbin-zramctl-8199e7439b4ac4d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/appdata/dejavu.metainfo.xml +SPDXID: SPDXRef-File-usr-share-appdata-dejavu.metainfo.xml-17e8279fea1d8d35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/awk/assert.awk +SPDXID: SPDXRef-File-usr-share-awk-assert.awk-f91c6ed6a45a0255 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/bits2str.awk +SPDXID: SPDXRef-File-usr-share-awk-bits2str.awk-d88ffa74f0eff1d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/cliff_rand.awk +SPDXID: SPDXRef-File-usr-share-awk-cliff-rand.awk-e22d35c56b593ef6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/ctime.awk +SPDXID: SPDXRef-File-usr-share-awk-ctime.awk-ab74e7127b4f63d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/ftrans.awk +SPDXID: SPDXRef-File-usr-share-awk-ftrans.awk-44114a83b5979810 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/getopt.awk +SPDXID: SPDXRef-File-usr-share-awk-getopt.awk-2b1fdc1077dcc342 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/gettime.awk +SPDXID: SPDXRef-File-usr-share-awk-gettime.awk-08a15cbc1bc2bf65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/group.awk +SPDXID: SPDXRef-File-usr-share-awk-group.awk-5771879b57c7ef44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/have_mpfr.awk +SPDXID: SPDXRef-File-usr-share-awk-have-mpfr.awk-10f61487aa4521a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/inplace.awk +SPDXID: SPDXRef-File-usr-share-awk-inplace.awk-741b54c4e3e69390 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/intdiv0.awk +SPDXID: SPDXRef-File-usr-share-awk-intdiv0.awk-8a9fbdd38aacd07f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/join.awk +SPDXID: SPDXRef-File-usr-share-awk-join.awk-c7dbc647a58dabc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/libintl.awk +SPDXID: SPDXRef-File-usr-share-awk-libintl.awk-b2db0632380ebe40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/noassign.awk +SPDXID: SPDXRef-File-usr-share-awk-noassign.awk-e0733a78555e7645 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/ord.awk +SPDXID: SPDXRef-File-usr-share-awk-ord.awk-1430150663429a70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/passwd.awk +SPDXID: SPDXRef-File-usr-share-awk-passwd.awk-9e3c177fad7092d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/processarray.awk +SPDXID: SPDXRef-File-usr-share-awk-processarray.awk-257444d49f5b5db1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/quicksort.awk +SPDXID: SPDXRef-File-usr-share-awk-quicksort.awk-21019387d1860cf6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/readable.awk +SPDXID: SPDXRef-File-usr-share-awk-readable.awk-b70069a3e665b138 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/readfile.awk +SPDXID: SPDXRef-File-usr-share-awk-readfile.awk-2e5d249532999902 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/rewind.awk +SPDXID: SPDXRef-File-usr-share-awk-rewind.awk-b8c57b670106503b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/round.awk +SPDXID: SPDXRef-File-usr-share-awk-round.awk-3164d60fd0a331a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/shellquote.awk +SPDXID: SPDXRef-File-usr-share-awk-shellquote.awk-184e9700110d06c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/strtonum.awk +SPDXID: SPDXRef-File-usr-share-awk-strtonum.awk-f0548bc6bc6e499a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/walkarray.awk +SPDXID: SPDXRef-File-usr-share-awk-walkarray.awk-1373a93451f765df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/awk/zerofile.awk +SPDXID: SPDXRef-File-usr-share-awk-zerofile.awk-1915efe071a896f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/cracklib/cracklib-small.hwm +SPDXID: SPDXRef-File-usr-share-cracklib-cracklib-small.hwm-ba259b112cc6fdcf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/cracklib/cracklib-small.pwd +SPDXID: SPDXRef-File-usr-share-cracklib-cracklib-small.pwd-aef83d5715318e32 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/cracklib/cracklib-small.pwi +SPDXID: SPDXRef-File-usr-share-cracklib-cracklib-small.pwi-a251949a8ba39e31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/cracklib/cracklib.magic +SPDXID: SPDXRef-File-usr-share-cracklib-cracklib.magic-07b3c000f80881ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/cracklib/pw_dict.hwm +SPDXID: SPDXRef-File-usr-share-cracklib-pw-dict.hwm-9fc982e75a44303b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/cracklib/pw_dict.pwd +SPDXID: SPDXRef-File-usr-share-cracklib-pw-dict.pwd-6fefb2799b190e56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/cracklib/pw_dict.pwi +SPDXID: SPDXRef-File-usr-share-cracklib-pw-dict.pwi-7e5103942b133fe1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/crypto-policies/FIPS/nss.txt +SPDXID: SPDXRef-File-usr-share-crypto-policies-FIPS-nss.txt-32bb273f37c5dce3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/session.conf +SPDXID: SPDXRef-File-usr-share-dbus-1-session.conf-4b66d7377a4595a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/dbus-1/system.conf +SPDXID: SPDXRef-File-usr-share-dbus-1-system.conf-7c250a6c32657e70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/doc/dejavu-fonts-common/BUGS +SPDXID: SPDXRef-File-usr-share-doc-dejavu-fonts-common-BUGS-348d3071955dd979 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/dejavu-fonts-common/NEWS +SPDXID: SPDXRef-File-usr-share-doc-dejavu-fonts-common-NEWS-212697fb7bb1cb18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/fontconfig/AUTHORS +SPDXID: SPDXRef-File-usr-share-doc-fontconfig-AUTHORS-1ce8db0073822ab8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/fontconfig/README +SPDXID: SPDXRef-File-usr-share-doc-fontconfig-README-4df10b06fdadb1f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/freetype/README +SPDXID: SPDXRef-File-usr-share-doc-freetype-README-166cb698158e879e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/jansson/CHANGES +SPDXID: SPDXRef-File-usr-share-doc-jansson-CHANGES-9656507ea58788b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/jansson/LICENSE +SPDXID: SPDXRef-File-usr-share-doc-jansson-LICENSE-4ab711e8fe621d69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libmnl/README +SPDXID: SPDXRef-File-usr-share-doc-libmnl-README-3613fb6e9971cf98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libnet/CHANGELOG +SPDXID: SPDXRef-File-usr-share-doc-libnet-CHANGELOG-b012ddf73e4a28d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libnet/CONTRIB +SPDXID: SPDXRef-File-usr-share-doc-libnet-CONTRIB-1cf554a08647a884 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libnet/COPYING +SPDXID: SPDXRef-File-usr-share-doc-libnet-COPYING-6ee8d8e4426e35fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libnet/README +SPDXID: SPDXRef-File-usr-share-doc-libnet-README-0b3f832626119b0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libnfnetlink/README +SPDXID: SPDXRef-File-usr-share-doc-libnfnetlink-README-05012c2130998b1b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libnftnl/COPYING +SPDXID: SPDXRef-File-usr-share-doc-libnftnl-COPYING-b55311e627103956 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libpcap/CHANGES +SPDXID: SPDXRef-File-usr-share-doc-libpcap-CHANGES-b140499f342fe180 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libpcap/CREDITS +SPDXID: SPDXRef-File-usr-share-doc-libpcap-CREDITS-e46850b0a3d26a91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libpcap/README.md +SPDXID: SPDXRef-File-usr-share-doc-libpcap-README.md-9b6ee4c364c070bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/libsolv/README +SPDXID: SPDXRef-File-usr-share-doc-libsolv-README-b64cbfa4f5e5c06e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/openssl/FAQ +SPDXID: SPDXRef-File-usr-share-doc-openssl-FAQ-c4e4bc2587067835 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/openssl/NEWS +SPDXID: SPDXRef-File-usr-share-doc-openssl-NEWS-c38ca20a7d336103 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/openssl/README +SPDXID: SPDXRef-File-usr-share-doc-openssl-README-75e6abd7e83af940 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/openssl/README.FIPS +SPDXID: SPDXRef-File-usr-share-doc-openssl-README.FIPS-e6b8e01e725c5051 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/protobuf-c/ChangeLog +SPDXID: SPDXRef-File-usr-share-doc-protobuf-c-ChangeLog-832626f9174eea4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/protobuf-c/LICENSE +SPDXID: SPDXRef-File-usr-share-doc-protobuf-c-LICENSE-be15fe4e5026a818 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/protobuf-c/TODO +SPDXID: SPDXRef-File-usr-share-doc-protobuf-c-TODO-3ead4bb5e64b21be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/rdma-core/libibverbs.md +SPDXID: SPDXRef-File-usr-share-doc-rdma-core-libibverbs.md-b9115564528b9217 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/doc/xz/COPYING +SPDXID: SPDXRef-File-usr-share-doc-xz-COPYING-a2630286ca6e8e0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/factory/etc/nsswitch.conf +SPDXID: SPDXRef-File-usr-share-factory-etc-nsswitch.conf-1f4783fe4e3bd4a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/factory/etc/pam.d/other +SPDXID: SPDXRef-File-usr-share-factory-etc-pam.d-other-fe114eda0fdfd632 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/fonts/dejavu/DejaVuSans.ttf +SPDXID: SPDXRef-File-usr-share-fonts-dejavu-DejaVuSans.ttf-715c7e6cffbd9e0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/gnupg/distsigkey.gpg +SPDXID: SPDXRef-File-usr-share-gnupg-distsigkey.gpg-ebbac8997b1c4bd8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.be.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.be.txt-025d29736299ea4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.ca.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.ca.txt-3708e1f6c04cf5d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.cs.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.cs.txt-4aeafd58863e19ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.da.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.da.txt-65f7b7c4bfd3d6a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.de.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.de.txt-54d81c390bc25451 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.el.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.el.txt-446bfb105d1dc7a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.eo.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.eo.txt-adfa5d45663496fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.es.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.es.txt-d2c077a6492a5752 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.et.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.et.txt-775023be180b8e7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.fi.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.fi.txt-e8d6c8aa94c72894 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.fr.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.fr.txt-d448935108c4548f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.gl.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.gl.txt-d8ed03e48f0f3f7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.hu.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.hu.txt-078f6e3e0700f6c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.id.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.id.txt-77df6b15e7316aa5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.it.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.it.txt-d37f64171ca956a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.ja.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.ja.txt-4583aec7d7faded8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.nb.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.nb.txt-72a06a96b275bd8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.pl.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.pl.txt-ab0bd7f409de934f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.pt_BR.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.pt-BR.txt-eb17c631f010cbec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.pt.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.pt.txt-77cdfdf2d060ab51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.ro.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.ro.txt-6969421d4c2c897f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.ru.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.ru.txt-0ea32e037ef95b92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.sk.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.sk.txt-95023049180bccc2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.sv.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.sv.txt-098d5f59f560320a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.tr.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.tr.txt-96756a67a9f72923 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.txt-37b54befc1be3802 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.zh_CN.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.zh-CN.txt-d5810c8b3ace4f38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/gnupg/help.zh_TW.txt +SPDXID: SPDXRef-File-usr-share-gnupg-help.zh-TW.txt-d0ec5af3603924fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/info/dir +SPDXID: SPDXRef-File-usr-share-info-dir-60ee52a9659bb512 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/info/dir.old +SPDXID: SPDXRef-File-usr-share-info-dir.old-22645fda9aaa5181 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/libgpg-error/errorref.txt +SPDXID: SPDXRef-File-usr-share-libgpg-error-errorref.txt-7a0d8a55fc820f96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/acl/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-acl-COPYING-b6b0bc755a2683f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/acl/COPYING.LGPL +SPDXID: SPDXRef-File-usr-share-licenses-acl-COPYING.LGPL-820047b4468ceb9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/bash/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-bash-COPYING-de53e201f8f9f9ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/brotli/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-brotli-LICENSE-65386193ff1c3a9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/bzip2-libs/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-bzip2-libs-LICENSE-294ae9a2ea0f2824 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/chkconfig/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-chkconfig-COPYING-9f15a49442943a45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/dbus-daemon/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-dbus-daemon-COPYING-650d3eb15814efbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/dbus-glib/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-dbus-glib-COPYING-51c1cb7f52e0c249 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/dbus-libs/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-dbus-libs-COPYING-b7e2cfeae6b2c9da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/dbus-tools/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-dbus-tools-COPYING-d03d68231c1058f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/dmidecode/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-dmidecode-LICENSE-24d84dde8e782a20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/dnf/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-dnf-COPYING-2b04a7f24c4aa6ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/expat/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-expat-COPYING-ad7b37d0a575f4cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/file-libs/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-file-libs-COPYING-3459d60d81a56cb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/findutils/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-findutils-COPYING-ca864457434e5214 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/fontconfig/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-fontconfig-COPYING-f5a9c6adfb07d43d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/freetype/FTL.TXT +SPDXID: SPDXRef-File-usr-share-licenses-freetype-FTL.TXT-844cb04e50af26cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/freetype/GPLv2.TXT +SPDXID: SPDXRef-File-usr-share-licenses-freetype-GPLv2.TXT-fac998f0094c9c5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/gawk/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-gawk-COPYING-2af9cae2bd34e3d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gawk/LICENSE.BSD +SPDXID: SPDXRef-File-usr-share-licenses-gawk-LICENSE.BSD-12ebb69e5e86d7f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gawk/LICENSE.GPLv2 +SPDXID: SPDXRef-File-usr-share-licenses-gawk-LICENSE.GPLv2-f0bd1cf4dcfe5398 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gawk/LICENSE.LGPLv2 +SPDXID: SPDXRef-File-usr-share-licenses-gawk-LICENSE.LGPLv2-b895a937ec301d0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gdbm-libs/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-gdbm-libs-COPYING-3da27d23b4dbf44b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/glib2/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-glib2-COPYING-f01954096e9d888e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/glibc/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-glibc-COPYING-a30e0b6e02b9527a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/glibc/COPYING.LIB +SPDXID: SPDXRef-File-usr-share-licenses-glibc-COPYING.LIB-cf3f34cec7a83caf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/glibc/LICENSES +SPDXID: SPDXRef-File-usr-share-licenses-glibc-LICENSES-fd4e99dd9b2a9828 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gmp/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-gmp-COPYING-c49f8de17f10b633 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gmp/COPYINGv2 +SPDXID: SPDXRef-File-usr-share-licenses-gmp-COPYINGv2-df1b3b1da0ca29dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gmp/COPYINGv3 +SPDXID: SPDXRef-File-usr-share-licenses-gmp-COPYINGv3-7e9e1bf0e86073a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gnupg2/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-gnupg2-COPYING-7789de3156cab373 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gnutls/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-gnutls-COPYING-ae8e616d685e7187 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gnutls/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-gnutls-LICENSE-93d7049a14bc07ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gpgme/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-gpgme-COPYING-c6143780d3b875f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gpgme/LICENSES +SPDXID: SPDXRef-File-usr-share-licenses-gpgme-LICENSES-e53f45b6f8796abf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/grep/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-grep-COPYING-92b86ff1dbaf0377 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gzip/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-gzip-COPYING-6fce93e7a41cd8e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/gzip/fdl-1.3.txt +SPDXID: SPDXRef-File-usr-share-licenses-gzip-fdl-1.3.txt-10717af3075e8dac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/info/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-info-COPYING-4fc071846ccf8f09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/iptables/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-iptables-COPYING-ae3ff39e09daac37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/json-c/AUTHORS +SPDXID: SPDXRef-File-usr-share-licenses-json-c-AUTHORS-557fa83d87a9b427 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/json-c/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-json-c-COPYING-bc6d053356401aba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/json-glib/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-json-glib-COPYING-a87f1884f6ee71fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/kmod-libs/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-kmod-libs-COPYING-cf851846017e82f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/krb5-libs/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-krb5-libs-LICENSE-b36fdf5277da3e35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libarchive/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libarchive-COPYING-da0c301351d5b2ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libassuan/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libassuan-COPYING-873fc7c4ce1d7eaa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libcap/License +SPDXID: SPDXRef-File-usr-share-licenses-libcap-License-b5f4d9eda66a2fdd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libcom_err/NOTICE +SPDXID: SPDXRef-File-usr-share-licenses-libcom-err-NOTICE-e0a04622497bf779 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libcomps/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libcomps-COPYING-08b078b961c3e048 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libcurl/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libcurl-COPYING-08a1d1a91d48c03d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libdb/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libdb-LICENSE-4b72e538c28ae765 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libdb/lgpl-2.1.txt +SPDXID: SPDXRef-File-usr-share-licenses-libdb-lgpl-2.1.txt-ef3268d7b2eea0b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libdnf/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libdnf-COPYING-5165a23ed804ca7b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libfdisk/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libfdisk-COPYING-8ce923042ea368f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libffi/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libffi-LICENSE-c33d49f7d1866c3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgcc/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libgcc-COPYING-2254c6e368622d0a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgcc/COPYING.LIB +SPDXID: SPDXRef-File-usr-share-licenses-libgcc-COPYING.LIB-6acc8769ccebe8ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgcc/COPYING3 +SPDXID: SPDXRef-File-usr-share-licenses-libgcc-COPYING3-6fe322cd37f28f60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libgcc/COPYING3.LIB +SPDXID: SPDXRef-File-usr-share-licenses-libgcc-COPYING3.LIB-367fef6219975bdc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libidn2/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libidn2-COPYING-eea0f276ab7de75c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libidn2/COPYINGv2 +SPDXID: SPDXRef-File-usr-share-licenses-libidn2-COPYINGv2-a59e496b3569301b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libksba/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libksba-COPYING-ecb9cbf009a9c06f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libmnl/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libmnl-COPYING-0567d87d9293d094 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/libmodulemd/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libmodulemd-COPYING-f0f30c22fec63858 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libmount/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libmount-COPYING-1077891aec096a0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libnghttp2/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libnghttp2-COPYING-82799547f1993398 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libnsl2/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libnsl2-COPYING-b4c33fc0f483d181 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libpcap/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libpcap-LICENSE-e4c2e07283d0b7b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/libpng/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libpng-LICENSE-8eb176a3aee2920e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/libpsl/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libpsl-COPYING-44c907be9a26eeef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/librepo/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-librepo-COPYING-314dfe1e241c6b6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/librhsm/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-librhsm-COPYING-e20b4ca22f004cd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libseccomp/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libseccomp-LICENSE-a6bcf740b8b25082 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libselinux/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libselinux-LICENSE-3e2247315b7dfac2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libsemanage/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libsemanage-COPYING-8125a3ce8fdb1aa7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/libsepol/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libsepol-COPYING-861f062dbead7042 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libsigsegv/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libsigsegv-COPYING-615cc83212ce4daa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libsolv/LICENSE.BSD +SPDXID: SPDXRef-File-usr-share-licenses-libsolv-LICENSE.BSD-b8e78439d99ed502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/libssh/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libssh-COPYING-8f53894d6cee6bd1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libtasn1/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libtasn1-COPYING-a01cd30f476e1b50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libusbx/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libusbx-COPYING-ff9a81353433763f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libuser/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libuser-COPYING-8ecbe618f2b81a69 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libutempter/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libutempter-COPYING-572609dd307d17bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libuuid/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libuuid-COPYING-9300a569e8de31ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libverto/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libverto-COPYING-8babef6f55bd5568 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libxcrypt/AUTHORS +SPDXID: SPDXRef-File-usr-share-licenses-libxcrypt-AUTHORS-c2c5a2a10c92ba20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libxcrypt/LICENSING +SPDXID: SPDXRef-File-usr-share-licenses-libxcrypt-LICENSING-8df5c44b0a2c6aed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libxml2/Copyright +SPDXID: SPDXRef-File-usr-share-licenses-libxml2-Copyright-79d097ee18d64582 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libyaml/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libyaml-LICENSE-f0f43ebf288ce518 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libzstd/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-libzstd-COPYING-be00669b48fb5d12 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/libzstd/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-libzstd-LICENSE-37124f71f1346822 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/mpfr/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-mpfr-COPYING-dc377766b4c3d428 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/mpfr/COPYING.LESSER +SPDXID: SPDXRef-File-usr-share-licenses-mpfr-COPYING.LESSER-80cd1ace42e47cf2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/nettle/COPYINGv2 +SPDXID: SPDXRef-File-usr-share-licenses-nettle-COPYINGv2-14c391e6daf59c5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/nftables/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-nftables-COPYING-e5bb6a147c8980c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/npth/COPYING.LIB +SPDXID: SPDXRef-File-usr-share-licenses-npth-COPYING.LIB-546832545ae59d9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/openldap/COPYRIGHT +SPDXID: SPDXRef-File-usr-share-licenses-openldap-COPYRIGHT-3c26c6e373ac9693 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/openldap/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-openldap-LICENSE-568e33503ff18f13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/openssl/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-openssl-LICENSE-651b55083af77470 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/licenses/p11-kit/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-p11-kit-COPYING-e5c66c8ca710cb17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/pam/Copyright +SPDXID: SPDXRef-File-usr-share-licenses-pam-Copyright-e0ead8bec01d7231 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/pam/gpl-2.0.txt +SPDXID: SPDXRef-File-usr-share-licenses-pam-gpl-2.0.txt-958d782a021aba03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/passwd/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-passwd-COPYING-a295bdc63bb09db3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/pcre/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-pcre-COPYING-84ef21562d09300b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/pcre/LICENCE +SPDXID: SPDXRef-File-usr-share-licenses-pcre-LICENCE-2024cbee757274b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/pcre2/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-pcre2-COPYING-dd3842a2b6cdb2b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/pcre2/LICENCE +SPDXID: SPDXRef-File-usr-share-licenses-pcre2-LICENCE-40736386285f68cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/popt/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-popt-COPYING-c54dbeb5cb63ee97 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/python3-six/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-python3-six-LICENSE-5db3cc28b6f7cd43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/readline/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-readline-COPYING-e1a7a6136ffde8bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/readline/USAGE +SPDXID: SPDXRef-File-usr-share-licenses-readline-USAGE-d920170b5d9e5907 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/rpm/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-rpm-COPYING-3a005342e17732bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/sed/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-sed-COPYING-bb9753ca8d21083c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/setup/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-setup-COPYING-b1697b974ab84c60 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/tar/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-tar-COPYING-a0248b7b9ad2f646 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/tpm2-tss/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-tpm2-tss-LICENSE-ff39a3bb7f481309 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/tzdata/LICENSE +SPDXID: SPDXRef-File-usr-share-licenses-tzdata-LICENSE-a4ebb53ea1ad14d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/which/COPYING +SPDXID: SPDXRef-File-usr-share-licenses-which-COPYING-f227d4a1c98a6181 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/licenses/zlib/README +SPDXID: SPDXRef-File-usr-share-licenses-zlib-README-40d4951b973bd41a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/locale/locale.alias +SPDXID: SPDXRef-File-usr-share-locale-locale.alias-672cfb4202427c09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/man/man1/asn1parse.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-asn1parse.1ssl.gz-6ceb0fd6c957cef7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/ca.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-ca.1ssl.gz-c5dbbe77d420f8c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/ciphers.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-ciphers.1ssl.gz-b5763aa23286b9f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/cms.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-cms.1ssl.gz-b907d67c4088d504 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/crl.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-crl.1ssl.gz-756d3215fcb45dce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/crl2pkcs7.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-crl2pkcs7.1ssl.gz-f9bb38fcc91f96df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/dgst.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-dgst.1ssl.gz-cfb33bda3e5bcb4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/dhparam.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-dhparam.1ssl.gz-5cfd039d5d2cbc23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/dsa.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-dsa.1ssl.gz-dd6fd638b12ee4c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/dsaparam.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-dsaparam.1ssl.gz-41282c83b8f70957 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/ec.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-ec.1ssl.gz-f1ea6f6a5a7e6aa0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/ecparam.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-ecparam.1ssl.gz-7f4f4e163ce5f7af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/enc.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-enc.1ssl.gz-45f445734a1c7547 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/engine.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-engine.1ssl.gz-58fb7d68e733b8cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/errstr.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-errstr.1ssl.gz-4e9bd25ddb96dcbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-cache.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-cache.1.gz-bdca42b293ea35a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-cat.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-cat.1.gz-6d4550c9e8ad2366 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-conflist.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-conflist.1.gz-5f65c9ad6bfde265 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-list.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-list.1.gz-ef1ffb79dd3e768e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-match.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-match.1.gz-b05a32901284c2b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-pattern.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-pattern.1.gz-dcd911bf4cde60c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-query.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-query.1.gz-d8ba7fbe8babdcb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-scan.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-scan.1.gz-068073dc3a769c71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/fc-validate.1.gz +SPDXID: SPDXRef-File-usr-share-man-man1-fc-validate.1.gz-be02b7ff0bb1cacb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/gendsa.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-gendsa.1ssl.gz-7607390736dc7e52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/genpkey.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-genpkey.1ssl.gz-b103d553bdb6f1a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/genrsa.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-genrsa.1ssl.gz-088c49754957903b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/list.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-list.1ssl.gz-88daee10954a1294 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/nseq.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-nseq.1ssl.gz-4f900a6a619b779d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/ocsp.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-ocsp.1ssl.gz-d2afb4ff1e6dd089 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/openssl.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-openssl.1ssl.gz-2d53e404c37ada4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/pkcs12.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-pkcs12.1ssl.gz-9c40ee6d215b1d65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/pkcs7.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-pkcs7.1ssl.gz-6f88d08133e3a411 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/pkcs8.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-pkcs8.1ssl.gz-5f8a671a0fa32cd7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/pkey.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-pkey.1ssl.gz-b432e7a714fdde13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/pkeyparam.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-pkeyparam.1ssl.gz-7dc34f2091d5df9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/pkeyutl.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-pkeyutl.1ssl.gz-8bc6faac5591ad5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/prime.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-prime.1ssl.gz-30e28211efeca463 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/rehash.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-rehash.1ssl.gz-c1b66f911b283de0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/req.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-req.1ssl.gz-57fccbfb2a03040d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/rsa.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-rsa.1ssl.gz-efa17e46cda3f428 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/rsautl.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-rsautl.1ssl.gz-9e8d39452d3462b9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/s_client.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-s-client.1ssl.gz-dcd201437b4dbd03 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/s_server.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-s-server.1ssl.gz-ac156d2dc033416b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/s_time.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-s-time.1ssl.gz-e591200a1638a7aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/sess_id.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-sess-id.1ssl.gz-a47429666fcb1158 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/smime.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-smime.1ssl.gz-8ab2acc7ee159e14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/speed.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-speed.1ssl.gz-82ebf54b9e4d7789 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/spkac.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-spkac.1ssl.gz-cc0cb932a614f791 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/srp.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-srp.1ssl.gz-65735719efe05cc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/sslpasswd.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-sslpasswd.1ssl.gz-65c9db6741a409ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/sslrand.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-sslrand.1ssl.gz-217e23c7710baee5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/storeutl.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-storeutl.1ssl.gz-f4e1d97825d7f995 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/ts.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-ts.1ssl.gz-31b545f1e2c48e8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/verify.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-verify.1ssl.gz-be0f85604424e7d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/version.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-version.1ssl.gz-dce030745973af44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man1/x509.1ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man1-x509.1ssl.gz-f06d83124616e0cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man5/config.5ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man5-config.5ssl.gz-405d93d96f88969f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man5/fonts-conf.5.gz +SPDXID: SPDXRef-File-usr-share-man-man5-fonts-conf.5.gz-e2f8f6d300bafbd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man5/png.5.gz +SPDXID: SPDXRef-File-usr-share-man-man5-png.5.gz-1c082c7e345c0cd9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man5/semanage.conf.5.gz +SPDXID: SPDXRef-File-usr-share-man-man5-semanage.conf.5.gz-d179f9aacdd95fc4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/EVP_KDF_KB.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-EVP-KDF-KB.7ssl.gz-d9b6366124a99f6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/EVP_KDF_SS.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-EVP-KDF-SS.7ssl.gz-bdf98dc1b80bf078 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/Ed25519.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-Ed25519.7ssl.gz-57abdd292bd018fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/RAND_DRBG.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-RAND-DRBG.7ssl.gz-edf02b7bf9d4d298 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/RAND.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-RAND.7ssl.gz-3f5f7bfb90e80ebd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/RSA-PSS.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-RSA-PSS.7ssl.gz-7b0f5037e76d4a59 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/SM2.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-SM2.7ssl.gz-f9bea0b736dad495 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/X25519.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-X25519.7ssl.gz-fcf4123d0db3f5d8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/bio.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-bio.7ssl.gz-dbc5f9cf014f2888 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/crypto.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-crypto.7ssl.gz-caee55d467057d16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/ct.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-ct.7ssl.gz-f73e38eb07fa2161 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/des_modes.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-des-modes.7ssl.gz-c4c4bd00eeaed837 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/evp.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-evp.7ssl.gz-2e78e6c6e15a7bb3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/ossl_store.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-ossl-store.7ssl.gz-8bd1451cd7bde956 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/pcap-filter.7.gz +SPDXID: SPDXRef-File-usr-share-man-man7-pcap-filter.7.gz-2e0e60872e34bdcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/pcap-linktype.7.gz +SPDXID: SPDXRef-File-usr-share-man-man7-pcap-linktype.7.gz-fa450d4562216d43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/pcap-tstamp.7.gz +SPDXID: SPDXRef-File-usr-share-man-man7-pcap-tstamp.7.gz-37bb347d7d9bda82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/scrypt.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-scrypt.7ssl.gz-fc886d5137f2cdfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/ssl.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-ssl.7ssl.gz-c94256b8af98ff76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man7/x509.7ssl.gz +SPDXID: SPDXRef-File-usr-share-man-man7-x509.7ssl.gz-d7d2b2745d2d410d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/ip6tables-save.8.gz +SPDXID: SPDXRef-File-usr-share-man-man8-ip6tables-save.8.gz-cabb3d49566b03bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/ip6tables.8.gz +SPDXID: SPDXRef-File-usr-share-man-man8-ip6tables.8.gz-bb005ff015988835 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/iptables-apply.8.gz +SPDXID: SPDXRef-File-usr-share-man-man8-iptables-apply.8.gz-4a82f6eef9ec44bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/iptables-save.8.gz +SPDXID: SPDXRef-File-usr-share-man-man8-iptables-save.8.gz-7311ffe30b62ac92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/iptables.8.gz +SPDXID: SPDXRef-File-usr-share-man-man8-iptables.8.gz-8ba8e3abaf3908c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/nft.8.gz +SPDXID: SPDXRef-File-usr-share-man-man8-nft.8.gz-69d6e490cd8ee7de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/man/man8/xtables-nft.8.gz +SPDXID: SPDXRef-File-usr-share-man-man8-xtables-nft.8.gz-0076c02b3f109a86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/misc/magic +SPDXID: SPDXRef-File-usr-share-misc-magic-b76d9d9e31ebadce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/misc/magic.mgc +SPDXID: SPDXRef-File-usr-share-misc-magic.mgc-ea408c7b5912acaf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/pkgconfig/systemd.pc +SPDXID: SPDXRef-File-usr-share-pkgconfig-systemd.pc-ff2ca5d52b2ad9b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/pkgconfig/udev.pc +SPDXID: SPDXRef-File-usr-share-pkgconfig-udev.pc-91d223df393d8b84 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/pki/ca-trust-source/README +SPDXID: SPDXRef-File-usr-share-pki-ca-trust-source-README-c5df098e511c8911 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/python-dmidecode/pymap.xml +SPDXID: SPDXRef-File-usr-share-python-dmidecode-pymap.xml-74a2dce3084c0d2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/systemd/kbd-model-map +SPDXID: SPDXRef-File-usr-share-systemd-kbd-model-map-4f968b8e5789c421 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/tabset/std +SPDXID: SPDXRef-File-usr-share-tabset-std-0601e56c179ca54c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/tabset/stdcrt +SPDXID: SPDXRef-File-usr-share-tabset-stdcrt-389c97d54a3f7d15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/tabset/vt100 +SPDXID: SPDXRef-File-usr-share-tabset-vt100-98fabed2880a6a55 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/tabset/vt300 +SPDXID: SPDXRef-File-usr-share-tabset-vt300-dfc562df8c9afa8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/A/Apple_Terminal +SPDXID: SPDXRef-File-usr-share-terminfo-A-Apple-Terminal-bf0c97d738b05b6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/E/Eterm-256color +SPDXID: SPDXRef-File-usr-share-terminfo-E-Eterm-256color-8079f7537cc4f92e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/E/Eterm +SPDXID: SPDXRef-File-usr-share-terminfo-E-Eterm-5c36e55895fda695 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/E/Eterm-88color +SPDXID: SPDXRef-File-usr-share-terminfo-E-Eterm-88color-e088641be4c7de77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/E/Eterm-color +SPDXID: SPDXRef-File-usr-share-terminfo-E-Eterm-color-6a8e76d95c493723 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/a/ansi +SPDXID: SPDXRef-File-usr-share-terminfo-a-ansi-b74077d2d9e47a6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/a/ansi80x25 +SPDXID: SPDXRef-File-usr-share-terminfo-a-ansi80x25-a0da2d34e983faec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/a/ansis +SPDXID: SPDXRef-File-usr-share-terminfo-a-ansis-5cb4af1eda171299 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/a/aterm +SPDXID: SPDXRef-File-usr-share-terminfo-a-aterm-e4f83ba0f1f0962c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/b/bterm +SPDXID: SPDXRef-File-usr-share-terminfo-b-bterm-f8cdf9d727319f67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/c/cons25 +SPDXID: SPDXRef-File-usr-share-terminfo-c-cons25-56bf5b4074398af9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/c/cygwin +SPDXID: SPDXRef-File-usr-share-terminfo-c-cygwin-022a2d3fb19de022 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/d/dumb +SPDXID: SPDXRef-File-usr-share-terminfo-d-dumb-6f741566fce62cd4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/e/eterm +SPDXID: SPDXRef-File-usr-share-terminfo-e-eterm-3af9134a11d37f70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/e/eterm-color +SPDXID: SPDXRef-File-usr-share-terminfo-e-eterm-color-3467776397234902 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/g/gnome-256color +SPDXID: SPDXRef-File-usr-share-terminfo-g-gnome-256color-326d6d8cf37de313 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/g/gnome +SPDXID: SPDXRef-File-usr-share-terminfo-g-gnome-5cd1dc4992e2f234 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/h/hurd +SPDXID: SPDXRef-File-usr-share-terminfo-h-hurd-1dafc1246000f513 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/j/jfbterm +SPDXID: SPDXRef-File-usr-share-terminfo-j-jfbterm-6251c13e778bbfd3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/k/kon +SPDXID: SPDXRef-File-usr-share-terminfo-k-kon-a2f403d86e0e70f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/k/kon2 +SPDXID: SPDXRef-File-usr-share-terminfo-k-kon2-c1e55e5e77d2b981 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/k/konsole-256color +SPDXID: SPDXRef-File-usr-share-terminfo-k-konsole-256color-9cb14e3887ea7885 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/k/konsole +SPDXID: SPDXRef-File-usr-share-terminfo-k-konsole-2e3bf270d499cd73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/l/linux +SPDXID: SPDXRef-File-usr-share-terminfo-l-linux-cec34df49a89dc86 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/m/mach-bold +SPDXID: SPDXRef-File-usr-share-terminfo-m-mach-bold-d0591ebb3267c49c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/m/mach-color +SPDXID: SPDXRef-File-usr-share-terminfo-m-mach-color-cc891254d2e02b14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/m/mach +SPDXID: SPDXRef-File-usr-share-terminfo-m-mach-d56e39d5b5876fa4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/m/mach-gnu +SPDXID: SPDXRef-File-usr-share-terminfo-m-mach-gnu-23b60373da2ddc76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/m/mach-gnu-color +SPDXID: SPDXRef-File-usr-share-terminfo-m-mach-gnu-color-acc6dd925fe347bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/m/mlterm +SPDXID: SPDXRef-File-usr-share-terminfo-m-mlterm-18339fe4bfd46847 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/m/mrxvt +SPDXID: SPDXRef-File-usr-share-terminfo-m-mrxvt-563ec1402711dcc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/n/nsterm +SPDXID: SPDXRef-File-usr-share-terminfo-n-nsterm-7824da4a5e60ba42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/n/nxterm +SPDXID: SPDXRef-File-usr-share-terminfo-n-nxterm-064f0f9e87ebde6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/p/pcansi +SPDXID: SPDXRef-File-usr-share-terminfo-p-pcansi-f6098fe27af5542f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/p/putty-256color +SPDXID: SPDXRef-File-usr-share-terminfo-p-putty-256color-0ab5338e56fdb9b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/p/putty +SPDXID: SPDXRef-File-usr-share-terminfo-p-putty-5bfff9a23bc7a9e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-0bb70b801a1bd9a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-16color +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-16color-d4b8586fab01ea26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-256color +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-256color-187cb5843387b086 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-88color +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-88color-5f774efa70be7727 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-basic +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-basic-a96dcc7e7b036734 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-color +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-color-08019ecd06dd4c1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-cygwin +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-cygwin-b38aea14808b4fb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-unicode +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-unicode-0482e06816801320 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/r/rxvt-xpm +SPDXID: SPDXRef-File-usr-share-terminfo-r-rxvt-xpm-8a8a1155677934c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen-16color +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen-16color-4e170ee94a866841 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen-256color +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen-256color-66f98a83c9a99058 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen-dde79a383a09d776 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.Eterm +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.Eterm-49f222f62b2ef70c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.gnome +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.gnome-56cee7543a6c70ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.konsole +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.konsole-12b72cddb695e4b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.linux +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.linux-66b5b28e1b45745e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.mlterm +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.mlterm-2c662d5871b64cba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.mrxvt +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.mrxvt-3670b65f3c7fb009 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.putty +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.putty-65d58180cb0744ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.rxvt +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.rxvt-eef34bb2e95fe2ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.teraterm +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.teraterm-8027572b48475e7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.vte +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.vte-6dde0eff7e86d579 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.xterm-new +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.xterm-new-58a0975089c93016 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/screen.xterm-r6 +SPDXID: SPDXRef-File-usr-share-terminfo-s-screen.xterm-r6-c9ed3174e165a54c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/st-16color +SPDXID: SPDXRef-File-usr-share-terminfo-s-st-16color-127fe09de2553da4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/st-256color +SPDXID: SPDXRef-File-usr-share-terminfo-s-st-256color-411fc61bbb5c0ff6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/st +SPDXID: SPDXRef-File-usr-share-terminfo-s-st-9c169a3a80293007 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/stterm-16color +SPDXID: SPDXRef-File-usr-share-terminfo-s-stterm-16color-8d14d4ab0c9a90c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/stterm-256color +SPDXID: SPDXRef-File-usr-share-terminfo-s-stterm-256color-37c4bb7ab75deffd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/stterm +SPDXID: SPDXRef-File-usr-share-terminfo-s-stterm-67262e90f89870ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/sun +SPDXID: SPDXRef-File-usr-share-terminfo-s-sun-8f8b76a51516fe71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/sun1 +SPDXID: SPDXRef-File-usr-share-terminfo-s-sun1-7ed7c3941670a596 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/s/sun2 +SPDXID: SPDXRef-File-usr-share-terminfo-s-sun2-b29cfd74c1a828d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/t/teraterm +SPDXID: SPDXRef-File-usr-share-terminfo-t-teraterm-0bf4077a32ccd5e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/t/teraterm2.3 +SPDXID: SPDXRef-File-usr-share-terminfo-t-teraterm2.3-0968991a09bb26a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/t/tmux-256color +SPDXID: SPDXRef-File-usr-share-terminfo-t-tmux-256color-e19e872323b94513 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/t/tmux +SPDXID: SPDXRef-File-usr-share-terminfo-t-tmux-af248ea2538319fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vs100 +SPDXID: SPDXRef-File-usr-share-terminfo-v-vs100-e87a3f4d03be548b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vt100 +SPDXID: SPDXRef-File-usr-share-terminfo-v-vt100-7bf06233cf19aa13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vt100-am +SPDXID: SPDXRef-File-usr-share-terminfo-v-vt100-am-42f5470e95dc5d4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vt100-nav +SPDXID: SPDXRef-File-usr-share-terminfo-v-vt100-nav-b5e1d2a5bad09380 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vt102 +SPDXID: SPDXRef-File-usr-share-terminfo-v-vt102-8015889519693330 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vt200 +SPDXID: SPDXRef-File-usr-share-terminfo-v-vt200-920308582bac7479 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vt220 +SPDXID: SPDXRef-File-usr-share-terminfo-v-vt220-ddcab038b98f0ed4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vt52 +SPDXID: SPDXRef-File-usr-share-terminfo-v-vt52-b28c885ce811647d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vte-256color +SPDXID: SPDXRef-File-usr-share-terminfo-v-vte-256color-a9b4842e40b9ffba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vte +SPDXID: SPDXRef-File-usr-share-terminfo-v-vte-87928dcd7e1b1045 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/v/vwmterm +SPDXID: SPDXRef-File-usr-share-terminfo-v-vwmterm-1429572ecdc92212 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/w/wsvt25 +SPDXID: SPDXRef-File-usr-share-terminfo-w-wsvt25-a2e8952006879bf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/w/wsvt25m +SPDXID: SPDXRef-File-usr-share-terminfo-w-wsvt25m-2d377b7a9a913722 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xfce +SPDXID: SPDXRef-File-usr-share-terminfo-x-xfce-a7b752d5bade4480 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-031104521fc21fc9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-1002 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-1002-90692680f3c921d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-1003 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-1003-a8d12247bcbab41d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-1005 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-1005-0fa1916a0103d64e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-1006 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-1006-2a61970a223ddf68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-16color +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-16color-de8f1c0dd96f4e47 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-24 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-24-cbb9ef2d95e96f0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-256color +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-256color-c4e60500c8bd1a5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-88color +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-88color-f03a1cbb12729bb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-8bit +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-8bit-6afbdb5c6c58208d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-basic +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-basic-7aee846ff92d1953 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-bold +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-bold-2b9229c0dfc61890 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-color +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-color-aa7719b5d5385e99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-direct +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-direct-a7b7c0f952d600ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-direct2 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-direct2-db47ed5d56527a43 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-hp +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-hp-1db10c90c941438c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-new +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-new-0417a7571d361596 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-nic +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-nic-ef26ce3199c699ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-noapp +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-noapp-5a7ecb53116643a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-old +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-old-64eaa13dc582e538 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-pcolor +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-pcolor-8654f4396a5f6ece +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-r5 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-r5-c34c63e65da2f03b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-r6 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-r6-4b80715f75cae38b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-sco +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-sco-34496067479fea31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-sun +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-sun-fd5c82e8b5b0457b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-utf8 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-utf8-fb85e3b03682e11f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-vt220 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-vt220-3a3579d21756beaf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-vt52 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-vt52-d9eacb9fd5fcfde1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-x10mouse +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-x10mouse-981ac444ee600e8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-x11hilite +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-x11hilite-50ab9485cf504537 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-x11mouse +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-x11mouse-cfddef43a9317759 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xf86-v32 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v32-14b658d292d717f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xf86-v33 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v33-00dbb75140f7ce52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xf86-v333 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v333-633540a6e67e157f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xf86-v40 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v40-62241a46a0cbe63e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xf86-v43 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v43-ddadf4dd8b4d645b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xf86-v44 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v44-0ab95e08bdd5daeb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xfree86 +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xfree86-946184bb85d598d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterm-xi +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterm-xi-24da9a3a06420e0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/terminfo/x/xterms +SPDXID: SPDXRef-File-usr-share-terminfo-x-xterms-e86c468ba26eb2e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/xml/fontconfig/fonts.dtd +SPDXID: SPDXRef-File-usr-share-xml-fontconfig-fonts.dtd-9f03c0e178ff762a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /usr/share/zoneinfo/Africa/Abidjan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Abidjan-e844c340f31121f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Accra +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Accra-f2b5202ef23964a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Addis_Ababa +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Addis-Ababa-cf49509eb2a836a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Algiers +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Algiers-4aebc7f59afa0606 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Asmara +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Asmara-54b0360df67a03ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Asmera +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Asmera-72975ac0b11b23ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Bamako +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Bamako-5bc1fdfb65e5378a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Bangui +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Bangui-f3b97d30a6671ac9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Banjul +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Banjul-18dc6cb0929e67bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Bissau +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Bissau-7bba4604f8a1f416 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Blantyre +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Blantyre-5b855ca6b0b9fa9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Brazzaville +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Brazzaville-fbb751c2ce6f471b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Bujumbura +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Bujumbura-188f01f2c8b22689 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Cairo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Cairo-e0662aad7fcdf02c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Casablanca +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Casablanca-774b70dcd677d2bc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Ceuta +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Ceuta-0804495e1fe0cf1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Conakry +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Conakry-3ec767167a81b9c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Dakar +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Dakar-f1634eb1b5441878 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Djibouti +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Djibouti-8c3a9ada91d5c3ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Douala +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Douala-71aab6294e7b73e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/El_Aaiun +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-El-Aaiun-e3ee023d147e84c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Freetown +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Freetown-372c68bf984fcba9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Gaborone +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Gaborone-1e93affc718e7426 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Harare +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Harare-2436f266dc6c612a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Johannesburg +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Johannesburg-48eb081449ca7ef2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Juba +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Juba-774a78be340961d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Kampala +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Kampala-fa9f06d723857df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Khartoum +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Khartoum-828138d63a193c2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Kigali +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Kigali-ca04255831de384c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Kinshasa +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Kinshasa-20ae6e9beb9734c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Lagos +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Lagos-7056959757e1c598 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Libreville +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Libreville-642bf1023df0a871 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Lome +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Lome-7a5982aea5ddb98f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Luanda +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Luanda-f90dd834739e5922 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Lubumbashi +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Lubumbashi-b74f32bae7ed8614 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Lusaka +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Lusaka-fa353ff05b94c7ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Malabo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Malabo-987ae299795477c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Maputo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Maputo-d890512dd0728489 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Maseru +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Maseru-93c61101becf7139 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Mbabane +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Mbabane-fe4585c9f4b6d91a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Mogadishu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Mogadishu-6fc60e182c2d9cfc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Monrovia +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Monrovia-bcc624e6afeeb999 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Nairobi +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Nairobi-62d02f0fb4bdfb6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Ndjamena +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Ndjamena-0a46fa509bda5b1f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Niamey +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Niamey-3edb39c3415ad29e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Nouakchott +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Nouakchott-16fdb74febd26c17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Ouagadougou +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Ouagadougou-d69addbdb7488dda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Porto-Novo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Porto-Novo-1be88c57878d4f15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Sao_Tome +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Sao-Tome-0f90240ee850d6b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Timbuktu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Timbuktu-9e0071b29846eba5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Tripoli +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Tripoli-1e9aa26023ad0bca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Tunis +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Tunis-499949bdf298590d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Africa/Windhoek +SPDXID: SPDXRef-File-usr-share-zoneinfo-Africa-Windhoek-9d16e6859b46eb65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Adak +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Adak-56888919780bb315 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Anchorage +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Anchorage-5ea24487e8643121 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Anguilla +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Anguilla-8fb76ebe7b17c556 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Antigua +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Antigua-95eecab58ad115bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Araguaina +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Araguaina-3f96c593e5ac8a3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Aruba +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Aruba-aff28a215db18ceb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Asuncion +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Asuncion-a230400091d01caa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Atikokan +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Atikokan-78556b64d7cfc0bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Atka +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Atka-0289d757a20650e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Bahia +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Bahia-95620767acd9a2b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Barbados +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Barbados-b840afcaf626c81d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Belem +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Belem-e17563ff2a43e8d4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Belize +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Belize-5ade69e6b8c04841 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Boa_Vista +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Boa-Vista-df508f1e010eadce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Bogota +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Bogota-bc7b87ef610a71a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Boise +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Boise-f429c5404e2b47a4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Cancun +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Cancun-ae264860e0414d63 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Caracas +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Caracas-a979b42e6ffe32cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Catamarca +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Catamarca-bd6e420cfc281133 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Cayenne +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Cayenne-b1432f174ee2c70d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Cayman +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Cayman-ce41494a4bd57e62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Chicago +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Chicago-0b1794ca87ca0b2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Chihuahua +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Chihuahua-b36a062583b00216 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Cordoba +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Cordoba-cc579c096e438e82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Costa_Rica +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Costa-Rica-85a9893343bb49c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Creston +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Creston-674ec88030ffc5f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Cuiaba +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Cuiaba-9b1286a34d8bde5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Curacao +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Curacao-28108c46e5f22ad6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Dawson +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Dawson-449124f98ece733e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Denver +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Denver-0aa31e32ab0246be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Detroit +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Detroit-95cc79ce8b8e8f8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Dominica +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Dominica-d723bb79e2c26c18 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Edmonton +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Edmonton-6a65e1c53227ed3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Eirunepe +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Eirunepe-b4435c4a16073a0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/El_Salvador +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-El-Salvador-234b33f759927a9b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Ensenada +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Ensenada-3485fdb16b23df8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Fort_Nelson +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Fort-Nelson-4432b7ce601eb4c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Fort_Wayne +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Fort-Wayne-7e62e93e18b33008 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Fortaleza +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Fortaleza-fb4da518a93eb1c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Glace_Bay +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Glace-Bay-29c5c1e9da22f6f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Godthab +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Godthab-94ce5a62b5ba852f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Goose_Bay +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Goose-Bay-6307fa13196ce256 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Grand_Turk +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Grand-Turk-e8596956e725beae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Grenada +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Grenada-408c42d802df48df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Guadeloupe +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Guadeloupe-8c7ed0a7500a3946 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Guatemala +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Guatemala-920ea51a6225a645 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Guayaquil +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Guayaquil-4be4541e759d80d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Guyana +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Guyana-88cd4f7f4f5ffb0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Halifax +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Halifax-625c572f8911b4be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Havana +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Havana-327eebc2f63e692e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Hermosillo +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Hermosillo-3fe7d2ffea943a0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Inuvik +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Inuvik-9187aaa5d0bbdb98 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Iqaluit +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Iqaluit-7f313e20c6b0c094 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Jamaica +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Jamaica-8bcca8da56ecc437 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Jujuy +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Jujuy-20349837aabb0b4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Juneau +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Juneau-3939a9ace55745a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Knox_IN +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Knox-IN-716f9771506b7bf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Kralendijk +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Kralendijk-a39389dd818bf2e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/La_Paz +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-La-Paz-cb909cfa542a1649 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Lima +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Lima-34fcbcb107e4062e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Los_Angeles +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Los-Angeles-9d67bf17cb85c8ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Louisville +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Louisville-2608682775c817cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Maceio +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Maceio-4d2fa9df11fbb13d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Managua +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Managua-42d8771f9e1febfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Manaus +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Manaus-0a11a907933bd2a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Marigot +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Marigot-4ae71f07667d1bb7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Martinique +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Martinique-b4d111e044420c4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Matamoros +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Matamoros-de373411e185a1aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Mazatlan +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Mazatlan-c93de14541209fac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Mendoza +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Mendoza-52f9aceda80e260d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Menominee +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Menominee-c70a9d2c06ed2a7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Merida +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Merida-b5319251f60c5796 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Metlakatla +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Metlakatla-722724e488266ec6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Mexico_City +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Mexico-City-2ef10345a51981ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Miquelon +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Miquelon-bcd0b3be8d95d5a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Moncton +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Moncton-fd3e4b30bcdadd08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Monterrey +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Monterrey-9ef7eb484729837c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Montevideo +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Montevideo-b65722f47f710302 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Montreal +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Montreal-942a4ab1724f982e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Montserrat +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Montserrat-5cb778c1e7aa7ddc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Nassau +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Nassau-84f865eff3e7bd0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/New_York +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-New-York-728a0f4a0b50324d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Nipigon +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Nipigon-c90f1818114568ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Nome +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Nome-85ce1771d189646c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Noronha +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Noronha-b90775fae20a4731 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Nuuk +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Nuuk-e0304f2f3eeaaf48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Ojinaga +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Ojinaga-10d71eaa2f313ed2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Panama +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Panama-32cb9340e338ff20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Pangnirtung +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Pangnirtung-eccec01f5eb24823 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Paramaribo +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Paramaribo-cc2e2bc6f081c99e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Phoenix +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Phoenix-81735e1ef3a0be09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Porto_Acre +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Porto-Acre-6f7224eeb8092123 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Porto_Velho +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Porto-Velho-2b29045b89ff9a8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Puerto_Rico +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Puerto-Rico-e30ab90edfc9d465 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Rainy_River +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Rainy-River-49ccb49b2b022661 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Recife +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Recife-a91c809fd9e93bc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Regina +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Regina-cf7deb9a927fd49a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Resolute +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Resolute-93bc54e0758f1df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Rio_Branco +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Rio-Branco-bdcef3f8fda1ee95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Rosario +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Rosario-b45817f92d3df27d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Santarem +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Santarem-5d89f6e3931479c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Santiago +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Santiago-1a4135234908249f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Sao_Paulo +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Sao-Paulo-9c4f9a2c0691d421 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Shiprock +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Shiprock-b48ac55188ee6f2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Sitka +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Sitka-faa8bf84bfb04362 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/St_Johns +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-St-Johns-551b5f36e5485bf5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/St_Kitts +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-St-Kitts-3ba9ab5bc541c1c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/St_Lucia +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-St-Lucia-14c8407cddb7d5e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/St_Thomas +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-St-Thomas-84a1ab0c77301728 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/St_Vincent +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-St-Vincent-9369fac9f9031db4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Tegucigalpa +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Tegucigalpa-3053441ffc35ead9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Thule +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Thule-8e423888c82d7879 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Thunder_Bay +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Thunder-Bay-088a2b05c07842f5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Tijuana +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Tijuana-69de8ce0e9257632 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Toronto +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Toronto-93d0e265395abe4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Tortola +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Tortola-339e2c7bbd77b500 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Vancouver +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Vancouver-cdb3e92c39b22f33 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Virgin +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Virgin-49bdef6eb959c5c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Whitehorse +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Whitehorse-71febde24feb1362 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Winnipeg +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Winnipeg-b6712421c0267fd9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Yakutat +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Yakutat-f3f04fb3e6c6b611 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/America/Yellowknife +SPDXID: SPDXRef-File-usr-share-zoneinfo-America-Yellowknife-147685d94cbd9b48 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Casey +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Casey-719eb20a39899618 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Davis +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Davis-57d3c048a034f2bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Mawson +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Mawson-ee6a7dfea9c76691 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/McMurdo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-McMurdo-401a1a5046485b0e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Palmer +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Palmer-aadde2bd5518ac13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Rothera +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Rothera-8ecd3a98b92fa3c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Syowa +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Syowa-cd13ce2bef65a37a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Troll +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Troll-2577657527f82415 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Antarctica/Vostok +SPDXID: SPDXRef-File-usr-share-zoneinfo-Antarctica-Vostok-de3b5f50d4b71b61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Arctic/Longyearbyen +SPDXID: SPDXRef-File-usr-share-zoneinfo-Arctic-Longyearbyen-df4afe953541bb64 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Aden +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Aden-8c22ea8707f29f8a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Almaty +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Almaty-0541772cbe00552b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Amman +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Amman-32052d70176a708d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Anadyr +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Anadyr-241a8b8fabdbed9e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Aqtau +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Aqtau-88e23db4d40a2424 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Aqtobe +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Aqtobe-ff2d8dcb56fdca1c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Ashgabat +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Ashgabat-7b84a94447e71bb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Ashkhabad +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Ashkhabad-47feb79c1ce72398 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Atyrau +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Atyrau-fa2ea4fc75514409 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Baghdad +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Baghdad-170689e25e9dd4ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Bahrain +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Bahrain-c785a86fa751b8bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Baku +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Baku-119f4f57f1f87f92 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Bangkok +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Bangkok-36602e19a58016ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Barnaul +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Barnaul-960eb4ef639409d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Beirut +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Beirut-1f36f4d844cf3c2b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Bishkek +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Bishkek-f0dc73329256437f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Brunei +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Brunei-1503652a1f47f37e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Calcutta +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Calcutta-8820866a7ca061b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Chita +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Chita-d5ba06dd27cb7f24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Choibalsan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Choibalsan-ff671b208af6cb0f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Chongqing +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Chongqing-c44b6fff862d65cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Chungking +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Chungking-1e0aaea19c1cc1be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Colombo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Colombo-c92cd497813d08d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Dacca +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Dacca-ced2a94eaa29444f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Damascus +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Damascus-ecbe429fd08047ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Dhaka +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Dhaka-3803e3b8238dec3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Dili +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Dili-4bfe56e60f9bfcf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Dubai +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Dubai-7ed1ebabd73e1a72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Dushanbe +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Dushanbe-51aa99aa630646ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Famagusta +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Famagusta-74de5e9f4012fc96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Gaza +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Gaza-ac884b9a1aa18cba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Harbin +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Harbin-5e610367147eb744 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Hebron +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Hebron-06c1311ea01b8b46 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Ho_Chi_Minh +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Ho-Chi-Minh-f798a26e1a86b16a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Hong_Kong +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Hong-Kong-a7f3e0e1d0b854de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Hovd +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Hovd-191bf3ffb05fc9c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Irkutsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Irkutsk-1be3069410c02184 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Istanbul +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Istanbul-050da865134d1cbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Jakarta +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Jakarta-5642744effba1582 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Jayapura +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Jayapura-647ed30c16038a8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Jerusalem +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Jerusalem-3c7bb0a76ec9dc27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kabul +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kabul-628f5b3e98429f5a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kamchatka +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kamchatka-766bfaa69907bad4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Karachi +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Karachi-9ec6977c8ce3c1e2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kashgar +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kashgar-2285e5247d746513 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kathmandu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kathmandu-673f9ee1396b2c62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Katmandu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Katmandu-017738821feb19da +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Khandyga +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Khandyga-0be875eaf0311f35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kolkata +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kolkata-d5f0081be0bbbe05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Krasnoyarsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Krasnoyarsk-93f3d32c69b1a813 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kuala_Lumpur +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kuala-Lumpur-312f19413e2b2148 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kuching +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kuching-c83c541f92943c2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Kuwait +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Kuwait-b81639f59cc78feb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Macao +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Macao-a724d58e48b6d6e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Macau +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Macau-59b16ae3f91e56b4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Magadan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Magadan-057979f8d766e0c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Makassar +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Makassar-ae392a3ab9c44011 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Manila +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Manila-144063691ef783d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Muscat +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Muscat-b5c27f3e6f3e4df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Nicosia +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Nicosia-6a9c73bf16c8aaa3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Novokuznetsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Novokuznetsk-2e224340b7c92ba6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Novosibirsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Novosibirsk-c9541edd9fddb44c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Omsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Omsk-fe17256b26a285c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Oral +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Oral-9925c98e7916ee1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Phnom_Penh +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Phnom-Penh-1a95c9d2b2804b5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Pontianak +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Pontianak-4524f823e222ae31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Pyongyang +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Pyongyang-ba5989c1b27da58e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Qatar +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Qatar-f4aae74afaf49cc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Qostanay +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Qostanay-c855ccd16be31ef2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Qyzylorda +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Qyzylorda-3df6d9a21b7f5fe5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Rangoon +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Rangoon-2ccced84071ea25b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Riyadh +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Riyadh-9c4111075f32b21a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Saigon +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Saigon-91da65835aa971a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Sakhalin +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Sakhalin-926955718186fc96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Samarkand +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Samarkand-9b201456461d298d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Seoul +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Seoul-21890701938195d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Shanghai +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Shanghai-72002c1fab2ac6b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Singapore +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Singapore-0370498d656047ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Srednekolymsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Srednekolymsk-67fa0ead71d03404 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Taipei +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Taipei-b81b7678b5daad70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Tashkent +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Tashkent-3110bf6044c9beeb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Tbilisi +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Tbilisi-3d29edbaed9b8fc8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Tehran +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Tehran-aeb96463187db6a3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Tel_Aviv +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Tel-Aviv-1e12d53500fe43de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Thimbu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Thimbu-55b5bbac87b14a2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Thimphu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Thimphu-8d2726d5fe198daf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Tokyo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Tokyo-7ee5ee499f2427ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Tomsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Tomsk-78d40efea3283dac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Ujung_Pandang +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Ujung-Pandang-2867f71841cf22ad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Ulaanbaatar +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Ulaanbaatar-8b34d5a7d8700043 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Ulan_Bator +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Ulan-Bator-e0a3bb9460447656 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Urumqi +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Urumqi-1c7a4162b493786e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Ust-Nera +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Ust-Nera-4f1d22d54d08c488 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Vientiane +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Vientiane-daf207336cdea015 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Vladivostok +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Vladivostok-57efd17c0a58ca08 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Yakutsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Yakutsk-aa1ea76866bd9bb1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Yangon +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Yangon-df45b8adcbbb21fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Yekaterinburg +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Yekaterinburg-21a7738a0a4101ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Asia/Yerevan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Asia-Yerevan-9d1e020687589b14 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Azores +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Azores-1147e08d324e17d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Bermuda +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Bermuda-43647d92f468e6d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Canary +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Canary-08b01398d83cf9f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Cape_Verde +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Cape-Verde-944ad4ea783d13d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Faeroe +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Faeroe-5d43bf03000a8163 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Faroe +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Faroe-266ce6243af8bc4a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Jan_Mayen +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Jan-Mayen-a67eb7be1b3d26c4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Madeira +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Madeira-c8d0ce73fd39384b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Reykjavik +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Reykjavik-020a708a593c7df7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/St_Helena +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-St-Helena-203b57e16808548f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Atlantic/Stanley +SPDXID: SPDXRef-File-usr-share-zoneinfo-Atlantic-Stanley-df5451a770345f6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/ACT +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-ACT-201c2b776cd1a9a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Adelaide +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Adelaide-02bb9e230fe5f223 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Brisbane +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Brisbane-99c31a488b587c2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Canberra +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Canberra-a9f380d45bc484a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Currie +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Currie-78053081b06d4ba2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Darwin +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Darwin-c0864e0c484054c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Eucla +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Eucla-d1b1c20bab0e7927 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Hobart +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Hobart-3e764c85c1c157d1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/LHI +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-LHI-5490f829de19ae23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Lindeman +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Lindeman-3eec59952581475b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Lord_Howe +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Lord-Howe-3ef337ddb4c3f693 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Melbourne +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Melbourne-24dee5f709564c23 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/NSW +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-NSW-856341d08b7eb912 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/North +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-North-a40966ef528107e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Perth +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Perth-8371217cf12047c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/South +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-South-0df8fb3712e8da70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Sydney +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Sydney-6c6b0f0b5f374820 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Tasmania +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Tasmania-51448140b3e47c3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/Victoria +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-Victoria-22d1af21175bae24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Australia/West +SPDXID: SPDXRef-File-usr-share-zoneinfo-Australia-West-18ed295d22ed1cd3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Brazil/Acre +SPDXID: SPDXRef-File-usr-share-zoneinfo-Brazil-Acre-91df7805b726ccb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Brazil/DeNoronha +SPDXID: SPDXRef-File-usr-share-zoneinfo-Brazil-DeNoronha-36a6fbc8af624685 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Brazil/East +SPDXID: SPDXRef-File-usr-share-zoneinfo-Brazil-East-58b45f1c430e6197 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Brazil/West +SPDXID: SPDXRef-File-usr-share-zoneinfo-Brazil-West-5454132613de2eec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/CET +SPDXID: SPDXRef-File-usr-share-zoneinfo-CET-62bfceef606d61f6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/CST6CDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-CST6CDT-5c0f414dca0c263d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Atlantic +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Atlantic-1153dc7a6e58cc8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Central +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Central-b46fbb8e2224b794 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Eastern +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Eastern-9f9c532c1881489a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Mountain +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Mountain-5d731bd4969b475c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Newfoundland +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Newfoundland-46d00f14d2b364c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Pacific +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Pacific-890c10148be33e82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Saskatchewan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Saskatchewan-6fbc2191935affa2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Canada/Yukon +SPDXID: SPDXRef-File-usr-share-zoneinfo-Canada-Yukon-ecff106822079bdb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Chile/Continental +SPDXID: SPDXRef-File-usr-share-zoneinfo-Chile-Continental-910debf509f542a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Chile/EasterIsland +SPDXID: SPDXRef-File-usr-share-zoneinfo-Chile-EasterIsland-393f0231a60920e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Cuba +SPDXID: SPDXRef-File-usr-share-zoneinfo-Cuba-9e8ac6d0f9abd7ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/EET +SPDXID: SPDXRef-File-usr-share-zoneinfo-EET-26e9936a5af8d1ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/EST +SPDXID: SPDXRef-File-usr-share-zoneinfo-EST-f1b5fa151d52ce31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/EST5EDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-EST5EDT-08cb860d1c1ba1db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Egypt +SPDXID: SPDXRef-File-usr-share-zoneinfo-Egypt-8ec0d4806cdfeea1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Eire +SPDXID: SPDXRef-File-usr-share-zoneinfo-Eire-57daa95a0e7bc272 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-0-c53c5f53cbbc87b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-0-df0d1d88dc23264d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-1 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-1-2adf31daff893c6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+1 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-1-ff0069181e975bf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-10 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-10-8dd578e3f3c18215 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+10 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-10-9175aa1cdd8b48b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-11 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-11-a1cf6ab26382eefa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+11 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-11-c2086c656309d5b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+12 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-12-ab38f130300be930 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-12 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-12-efdf00715db4016d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-13 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-13-e305cc26d1e97076 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-14 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-14-5697affaba3c768f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+2 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-2-63dcf82bd00e621b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-2 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-2-8d4f1cc70f26da4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+3 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-3-5ccd04c593322c54 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-3 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-3-f01fd3905d9b144d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-4 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-4-29829823ee5fe4ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+4 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-4-99081208c7e387b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-5 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-5-3850151e2f177aba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+5 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-5-d752d147595a1665 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-6 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-6-7d2bef599e0f1904 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+6 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-6-94468bbd5c81e4cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-7 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-7-e344b37a164e6607 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+7 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-7-e74f4f9de1b3706e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-8 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-8-3d05d78f87852ac1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+8 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-8-970f0f2188587d5f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT-9 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-9-49a01234e6d2846a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT+9 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-9-dcd107f4f4e9b958 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT-c07f61f581633097 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/GMT0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-GMT0-4aa8ba12db5baa31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/Greenwich +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-Greenwich-f7b8e018b5f96a8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/UCT +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-UCT-906dd4cc44e2488b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/UTC +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-UTC-cef2b18440be2b49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/Universal +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-Universal-b7f0784a9e3bc300 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Etc/Zulu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Etc-Zulu-faa87798374b9dfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Amsterdam +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Amsterdam-e68d94781cbd43d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Andorra +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Andorra-da2dfd396225f081 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Astrakhan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Astrakhan-7b41217bf4bb92a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Athens +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Athens-6ec7d4ea17c65daf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Belfast +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Belfast-51fdd53e06649d95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Belgrade +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Belgrade-76a08d4003980237 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Berlin +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Berlin-a065c74722873c39 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Bratislava +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Bratislava-0481cd006eb762d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Brussels +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Brussels-d5f20cbb66d835fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Bucharest +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Bucharest-2aec9f1dafec6c09 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Budapest +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Budapest-2ef1a748afe0fdd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Busingen +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Busingen-9c17217ee2d884ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Chisinau +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Chisinau-c69bb6cf22a3aab0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Copenhagen +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Copenhagen-8981c5295df0e0ee +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Dublin +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Dublin-2b58bb49f79f51f1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Gibraltar +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Gibraltar-2920bd2b7999611d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Guernsey +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Guernsey-a80784a1889f9e71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Helsinki +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Helsinki-a8f6505771b1eff7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Isle_of_Man +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Isle-of-Man-f3e3659b57d2f535 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Istanbul +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Istanbul-7cc78538eb768ef9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Jersey +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Jersey-26217464fe5261b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Kaliningrad +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Kaliningrad-e9899d501c3600a9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Kiev +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Kiev-5bc041d608932156 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Kirov +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Kirov-a76a9f653922fd15 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Kyiv +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Kyiv-291f3d5076993b3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Lisbon +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Lisbon-f76c29648b4b4a61 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Ljubljana +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Ljubljana-3e06798328ee350b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/London +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-London-246723dc606355fe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Luxembourg +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Luxembourg-1efe0d4ff6d61d35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Madrid +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Madrid-2d78764e431384c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Malta +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Malta-268bfe1a478f3146 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Mariehamn +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Mariehamn-31188bccfc3a0177 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Minsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Minsk-1620241ca1099350 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Monaco +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Monaco-bd5f51b699deae0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Moscow +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Moscow-1933daa93ce44e2c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Nicosia +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Nicosia-f2fc78f6b6ab4c77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Oslo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Oslo-60f535480d74dc66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Paris +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Paris-19536490aafe1d41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Podgorica +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Podgorica-0eabf71968af88b5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Prague +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Prague-3a761bc83ccc5eac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Riga +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Riga-0c7914b9293531b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Rome +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Rome-42a510b7d1f55676 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Samara +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Samara-4881a211c0ab8ebf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/San_Marino +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-San-Marino-77ee845c884d8003 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Sarajevo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Sarajevo-0916b3dcb2f76aa2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Saratov +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Saratov-8af843352b418947 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Simferopol +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Simferopol-7e7b40a65fd43fe4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Skopje +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Skopje-0e277ed9604060a8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Sofia +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Sofia-d708aa6a7e50b8e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Stockholm +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Stockholm-1d34b7133993b2e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Tallinn +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Tallinn-8009b26ed73bd581 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Tirane +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Tirane-f96cc18187a4fc81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Tiraspol +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Tiraspol-ac7e4623da10a913 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Ulyanovsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Ulyanovsk-80674ff3684b239d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Uzhgorod +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Uzhgorod-c87fb596ea6f7c81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Vaduz +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Vaduz-e21da58e5d2909c5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Vatican +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Vatican-6232db13d8bd5b57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Vienna +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Vienna-9b491d2d4ccaf792 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Vilnius +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Vilnius-d4fa6089d240032b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Volgograd +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Volgograd-53818f6ac6aa49ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Warsaw +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Warsaw-4128ca431885bf20 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Zagreb +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Zagreb-f20dc3993e34a535 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Zaporozhye +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Zaporozhye-51f5fd6ecf68d958 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Europe/Zurich +SPDXID: SPDXRef-File-usr-share-zoneinfo-Europe-Zurich-d99914e5962e535b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/GB +SPDXID: SPDXRef-File-usr-share-zoneinfo-GB-51d2e9887d931d21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/GB-Eire +SPDXID: SPDXRef-File-usr-share-zoneinfo-GB-Eire-6590396946380b5e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/GMT+0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-GMT-0-4ad901179383bdc7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/GMT-0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-GMT-0-fac9d61cbd3e774a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/GMT +SPDXID: SPDXRef-File-usr-share-zoneinfo-GMT-c739dfbdf01937e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/GMT0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-GMT0-c298a2e6e73d3817 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Greenwich +SPDXID: SPDXRef-File-usr-share-zoneinfo-Greenwich-892aee4bd2cf479b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/HST +SPDXID: SPDXRef-File-usr-share-zoneinfo-HST-a16f8e0b71f13058 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Hongkong +SPDXID: SPDXRef-File-usr-share-zoneinfo-Hongkong-3f0807c4d3747489 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Iceland +SPDXID: SPDXRef-File-usr-share-zoneinfo-Iceland-987d28238ce37b27 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Antananarivo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Antananarivo-5d1d29e1891bc3fd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Chagos +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Chagos-7fe17e4538cb38ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Christmas +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Christmas-fd4bb7fb9aa102f0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Cocos +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Cocos-ec3edb8e2baf30ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Comoro +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Comoro-e15b3d1e1d9066ce +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Kerguelen +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Kerguelen-6f9670d8f1015fb4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Mahe +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Mahe-1c37c8b18e967809 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Maldives +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Maldives-4fd87c560c1a04c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Mauritius +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Mauritius-e145e060347d3b6c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Mayotte +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Mayotte-83a6cabb3df54de7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Indian/Reunion +SPDXID: SPDXRef-File-usr-share-zoneinfo-Indian-Reunion-3a580ec9f4271474 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Iran +SPDXID: SPDXRef-File-usr-share-zoneinfo-Iran-0b4429c239b44826 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Israel +SPDXID: SPDXRef-File-usr-share-zoneinfo-Israel-f3accc5b5834bfbd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Jamaica +SPDXID: SPDXRef-File-usr-share-zoneinfo-Jamaica-87298a51e1bc7166 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Japan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Japan-f15ca447042e77dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Kwajalein +SPDXID: SPDXRef-File-usr-share-zoneinfo-Kwajalein-d563bbd086791581 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Libya +SPDXID: SPDXRef-File-usr-share-zoneinfo-Libya-780a9254d2fc7681 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/MET +SPDXID: SPDXRef-File-usr-share-zoneinfo-MET-3cd59da1990aab21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/MST +SPDXID: SPDXRef-File-usr-share-zoneinfo-MST-3368173408cf4b7a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/MST7MDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-MST7MDT-7c7d86a7ef2747fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Mexico/BajaNorte +SPDXID: SPDXRef-File-usr-share-zoneinfo-Mexico-BajaNorte-3d961170a2969258 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Mexico/BajaSur +SPDXID: SPDXRef-File-usr-share-zoneinfo-Mexico-BajaSur-16d1d9492191ec9d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Mexico/General +SPDXID: SPDXRef-File-usr-share-zoneinfo-Mexico-General-90d7d0d832dfb1f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/NZ-CHAT +SPDXID: SPDXRef-File-usr-share-zoneinfo-NZ-CHAT-932094120e0b183d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/NZ +SPDXID: SPDXRef-File-usr-share-zoneinfo-NZ-ca5ac15c579c3e01 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Navajo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Navajo-3895d6efb7ac9bac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/PRC +SPDXID: SPDXRef-File-usr-share-zoneinfo-PRC-b3790c52aeaca5bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/PST8PDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-PST8PDT-470fc5f124bd67b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Apia +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Apia-643588cb9409b477 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Auckland +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Auckland-6f9587474de18f34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Chatham +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Chatham-7c4888eb36ea237d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Chuuk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Chuuk-3e9198a5c6847fa6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Easter +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Easter-6aea10e63b21784f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Efate +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Efate-938e13c492c907a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Enderbury +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Enderbury-fa9bd3e68836fbf4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Fakaofo +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Fakaofo-aee7eb2409ec24ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Fiji +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Fiji-7b5e185aa600849f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Funafuti +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Funafuti-3ddc076efde91965 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Galapagos +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Galapagos-8d1c86f32b44c575 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Gambier +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Gambier-07f41ad2ecaea786 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Guadalcanal +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Guadalcanal-364e6dd86506c8ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Guam +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Guam-717cb3ecb9a5caa1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Honolulu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Honolulu-41dcdfdcae87de7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Johnston +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Johnston-c77ad49ab8ea7148 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Kanton +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Kanton-219067de458d1d62 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Kiritimati +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Kiritimati-1fb9e4f73350f6fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Kosrae +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Kosrae-758cade5b32b708b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Kwajalein +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Kwajalein-79bba1373c100e82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Majuro +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Majuro-02f5386f67d7f8cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Marquesas +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Marquesas-d4ac91462fa78d5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Midway +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Midway-5ae5785b4966dfcc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Nauru +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Nauru-42c96f4a558b05cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Niue +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Niue-5c5394f9a99b260f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Norfolk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Norfolk-d43d74e42fcb3fa8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Noumea +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Noumea-257aef7ec3a8dbb2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Pago_Pago +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Pago-Pago-be894274d5d625d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Palau +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Palau-023dc3a4b2d330b8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Pitcairn +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Pitcairn-a6297fd5a3b25f7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Pohnpei +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Pohnpei-eaee9b76002f5175 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Ponape +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Ponape-25d1c18134a200c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Rarotonga +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Rarotonga-66ac0ca01c77fb05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Saipan +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Saipan-e62bcf7b8ff96d3c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Samoa +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Samoa-741f52f6e2294226 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Tahiti +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Tahiti-2785674ce2356037 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Tarawa +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Tarawa-b97929b57d330b2e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Tongatapu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Tongatapu-e52e1a231f866b2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Truk +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Truk-53014a5b1bf25db1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Wake +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Wake-5824ec52ea1bd91c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Wallis +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Wallis-230fba9ace3c2b41 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Pacific/Yap +SPDXID: SPDXRef-File-usr-share-zoneinfo-Pacific-Yap-19d7793ecc39a6af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Poland +SPDXID: SPDXRef-File-usr-share-zoneinfo-Poland-0c107ebfa2ec04cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Portugal +SPDXID: SPDXRef-File-usr-share-zoneinfo-Portugal-b962c0206734f201 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/ROC +SPDXID: SPDXRef-File-usr-share-zoneinfo-ROC-25cf014b3c1522dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/ROK +SPDXID: SPDXRef-File-usr-share-zoneinfo-ROK-68db8c6f045205ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Singapore +SPDXID: SPDXRef-File-usr-share-zoneinfo-Singapore-3b28f28a9a8551dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Turkey +SPDXID: SPDXRef-File-usr-share-zoneinfo-Turkey-04a6b174b2d6c975 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/UCT +SPDXID: SPDXRef-File-usr-share-zoneinfo-UCT-b273e0ce60655708 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Alaska +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Alaska-4b21c26949e02337 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Aleutian +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Aleutian-e9a2b36c4daf73ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Arizona +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Arizona-11a739fc43d5c6d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Central +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Central-26c1fab77e10a8a7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/East-Indiana +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-East-Indiana-2074371500bcea40 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Eastern +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Eastern-2e92a3d8a5053f80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Hawaii +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Hawaii-bb0af169c921bf2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Indiana-Starke +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Indiana-Starke-6d06fadd70a63341 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Michigan +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Michigan-10e1f6a2fc6f1fc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Mountain +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Mountain-76479f575f33d370 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Pacific +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Pacific-15dee03eec155d6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/US/Samoa +SPDXID: SPDXRef-File-usr-share-zoneinfo-US-Samoa-0c0cf4da1c455741 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/UTC +SPDXID: SPDXRef-File-usr-share-zoneinfo-UTC-9e23415b179e7e80 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Universal +SPDXID: SPDXRef-File-usr-share-zoneinfo-Universal-e83414d8e03daf73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/W-SU +SPDXID: SPDXRef-File-usr-share-zoneinfo-W-SU-e60cdbf81505b08d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/WET +SPDXID: SPDXRef-File-usr-share-zoneinfo-WET-bcd79e4f281897d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/Zulu +SPDXID: SPDXRef-File-usr-share-zoneinfo-Zulu-92260da33b6f4f2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/iso3166.tab +SPDXID: SPDXRef-File-usr-share-zoneinfo-iso3166.tab-8c7a55f3ff22879d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/leap-seconds.list +SPDXID: SPDXRef-File-usr-share-zoneinfo-leap-seconds.list-aa1b5b92d7dbffdd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/leapseconds +SPDXID: SPDXRef-File-usr-share-zoneinfo-leapseconds-ed5ec5c150cdc474 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Accra +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Accra-35472a3b4ddade71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Asmara +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Asmara-d6ef1ce0409c2cc1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Asmera +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Asmera-abd650c63a995cb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Bamako +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Bamako-8df4e25281318b19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Bangui +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Bangui-d03cdb554a4c9b17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Banjul +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Banjul-4b34010267742fa8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Bissau +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Bissau-fb1b19edf0d7aa04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Cairo +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Cairo-ba8cfcad91664531 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Ceuta +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Ceuta-89da3e8ed05c7daa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Dakar +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Dakar-1709828541b698d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Douala +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Douala-4d038aaf9fdb812e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Harare +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Harare-2b838406ac5e4299 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Juba +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Juba-bea70a295a4361df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Kigali +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Kigali-72b8c0d22bfce723 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Lagos +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Lagos-4da90629b73370e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Lome +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Lome-8efed044c61c6490 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Luanda +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Luanda-99a9485d08e2e8d7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Lusaka +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Lusaka-a735e3ea1e7b1db5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Malabo +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Malabo-09142a3a8edbaf2a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Maputo +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Maputo-c5de490d6899f926 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Maseru +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Maseru-d1a910246b1d8d19 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Niamey +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Niamey-e33b9c91c0a76edc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Africa/Tunis +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Africa-Tunis-454d2cd86962dec6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Adak +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Adak-013d914fa07d1ad6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Aruba +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Aruba-464cf9ca03b172a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Atka +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Atka-41b8524eeace248d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Bahia +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Bahia-015e3518d7d601a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Belem +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Belem-fc4d3ce1fa67a1bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Boise +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Boise-6b1f171fb535fd79 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Jujuy +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Jujuy-22b29de1df30daff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Lima +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Lima-6421a1d71b24cd6e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Nome +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Nome-db4e5164f025c851 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Nuuk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Nuuk-cb912ed2ad3c38d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Sitka +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Sitka-1ba317ba59b5afdf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/America/Thule +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-America-Thule-0e8b8b61513e9bb8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Aden +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Aden-7e9c8fddaa45f6dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Almaty +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Almaty-c74a3ffd617ddc78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Amman +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Amman-46e8c3f76ff8a2d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Anadyr +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Anadyr-7330033c81cb88ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Aqtau +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Aqtau-85c65a3136e62ed6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Aqtobe +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Aqtobe-b406a7f97bfb14ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Ashgabat +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Ashgabat-0aef82807d7a2bfe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Atyrau +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Atyrau-a3bfa479b3971f4d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Baghdad +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Baghdad-bf7335c0644060e4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Bahrain +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Bahrain-a24bc218412d3400 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Baku +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Baku-4c6dc29155afc906 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Bangkok +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Bangkok-a65d947460818570 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Barnaul +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Barnaul-94e95117b4787394 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Beirut +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Beirut-ccc40b569b11c67e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Bishkek +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Bishkek-5065310af17cd5e5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Brunei +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Brunei-cf6646e826cbc22a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Calcutta +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Calcutta-27735bed13e399af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Chita +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Chita-990c45e6523e1dda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Colombo +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Colombo-ce628e3dd1e748c3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Dacca +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dacca-85860637ad7f71dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Damascus +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Damascus-fad8ad1eafe5d63e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Dhaka +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dhaka-bb9e7ec63b61f276 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Dili +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dili-74cbc3051f5c33d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Dubai +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dubai-f10cbcef7a9cf1ed +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Dushanbe +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dushanbe-7b9c9f6d4968f1c1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Gaza +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Gaza-af1571c1f57767fb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Harbin +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Harbin-bb1b9fcbea7c3b7d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Hebron +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Hebron-6e44876215173aff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Hovd +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Hovd-2cdadb3fee17c638 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Irkutsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Irkutsk-bc78a06577793c26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Istanbul +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Istanbul-17575eef3a3291d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Jakarta +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Jakarta-8e348b2ff0979487 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Jayapura +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Jayapura-3d538709bfcd53b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kabul +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kabul-b9dedb80610152a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Karachi +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Karachi-416defe194325a42 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kashgar +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kashgar-69ee2571570d2277 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Katmandu +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Katmandu-4b83d6659489ca34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Khandyga +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Khandyga-86c3bbd27ecb713e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kolkata +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kolkata-7ab5aa8633c6c502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kuching +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kuching-6b6f0424cd3addea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Kuwait +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kuwait-4f0bb8f685116ba5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Macao +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Macao-0754bbcb28e990dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Macau +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Macau-aff66468edb2bb11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Magadan +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Magadan-8d4d9ddd5e6ce9d6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Makassar +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Makassar-3abea07201f1e5d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Manila +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Manila-fdbf117a51bce9de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Muscat +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Muscat-65afbbc155b79c17 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Nicosia +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Nicosia-6862972a7f5f6166 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Omsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Omsk-7bf5685c3dff4f5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Oral +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Oral-80858a8e11fa804d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Qatar +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Qatar-4b09ef3c6babd48e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Qostanay +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Qostanay-2ab4c62dbb0f1cba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Rangoon +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Rangoon-3b84fe87e6e0cbae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Riyadh +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Riyadh-45e09243aedbad82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Saigon +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Saigon-438174f383716723 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Sakhalin +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Sakhalin-1162960dcdd2dc83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Seoul +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Seoul-60f9a06215973d82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Shanghai +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Shanghai-526f6335b2259104 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Taipei +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Taipei-773968568fa63230 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Tashkent +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tashkent-fae95515cb95f8ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Tbilisi +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tbilisi-a212434f6c04a7c8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Tehran +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tehran-5a7fa98750d8c726 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Tel_Aviv +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tel-Aviv-dd7ad1f02aea6454 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Thimbu +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Thimbu-f5b6c0a0b2aa4fac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Thimphu +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Thimphu-17bf43b1d8538e05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Tokyo +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tokyo-8b4b32128481b775 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Tomsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tomsk-52c2237f1185a732 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Urumqi +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Urumqi-499d60b43e850386 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Ust-Nera +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Ust-Nera-9d0d8b49e8368d35 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Yakutsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Yakutsk-3810f48e859beca6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Yangon +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Yangon-d39bbe91d9e6f3be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Asia/Yerevan +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Asia-Yerevan-67d4fe9c56ad9b58 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/ACT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Australia-ACT-a20ab4c0e0876ea4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/LHI +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Australia-LHI-1a2bc9f326778c25 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Australia/NSW +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Australia-NSW-0331e31cff1d9609 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Brazil/Acre +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Brazil-Acre-b0bd8ad937b77531 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Brazil/East +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Brazil-East-a7cfbf15307a13af +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Brazil/West +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Brazil-West-de3548468eef9d16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/CET +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-CET-7bc6fba9df3a43e1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/CST6CDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-CST6CDT-b4fd9e520e4dd502 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Canada/Yukon +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Canada-Yukon-4bda1351952f98f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Cuba +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Cuba-58f3d65572f4eb45 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/EET +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-EET-e5cebc84f0f5e7be +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/EST +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-EST-5a0209e81490fe5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/EST5EDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-EST5EDT-3e8566e58fe2c564 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Egypt +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Egypt-c0e23811624c7950 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Eire +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Eire-67ab35365cd6127a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-0-5e4f5a8f15b312aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-0-c36b2b8f45e2032c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-1 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-1-144df7ff4407aa96 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+1 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-1-e713c56aa924f7a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-10 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-10-2b9c68337a5157dc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+10 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-10-477f5b09a6dc4b34 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-11 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-11-2e35d83e5d1a40cf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+11 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-11-9437439d01a58037 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+12 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-12-4c69523ed27ecf9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-12 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-12-e1d5cf18af6c09ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-13 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-13-9577d534f0e1fadc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-14 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-14-0c579cfcb119922e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-2 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-2-5b907ecab5e48bf3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+2 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-2-b2cd59b4d7c77c3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-2a706eb6c59ffe77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+3 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-3-76aca26f926713c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-3 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-3-de019b8653c19713 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-4 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-4-acb8f2c9c3dd924e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+4 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-4-bcff92c6a1511738 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+5 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-5-97a5056dcfd1a599 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-5 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-5-bb7d0183c1099041 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-6 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-6-a662e2cad9177e4b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+6 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-6-faedd473c070466d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-7 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-7-c93d3af8a9dbcb44 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+7 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-7-f85f5509f20c3435 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+8 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-8-d5bc5615789db9b3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-8 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-8-f81b7f0667e18573 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT-9 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-9-1fec84bf32e87402 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT+9 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-9-bf0fb8645e02a849 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/GMT0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT0-3e877f1fa7e98819 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/Greenwich +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-Greenwich-6abfe5b8c011c3d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/UCT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-UCT-93c1ddf0eea31941 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/UTC +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-UTC-96868400dd7d81bd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/Universal +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-Universal-937bfef42e0254cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Etc/Zulu +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Etc-Zulu-5ef12954b9125c00 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Athens +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Athens-d6d18a984d313af6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Berlin +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Berlin-59fa08cef5f4f4f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Dublin +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Dublin-235532ac5bf57be2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Jersey +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Jersey-1a676ab68e5a8ad8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Kiev +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Kiev-61e80adf5fddbbad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Kirov +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Kirov-d343079f25777e38 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Kyiv +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Kyiv-6915b4c7a6a81c95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Lisbon +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Lisbon-75096177a14b702c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/London +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-London-93e726a0baf071ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Madrid +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Madrid-fe119658f548a6ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Malta +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Malta-ed69e55e541c8c56 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Minsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Minsk-8c1bfc837e7be8e8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Monaco +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Monaco-ca2f56ec2ae54e65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Moscow +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Moscow-37a1191c2951728c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Oslo +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Oslo-f89cc3d7b95218dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Paris +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Paris-17d0bf02966f2df9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Prague +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Prague-5422ddaa6143b23c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Riga +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Riga-dd4c109f2e01e281 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Rome +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Rome-37062e3eb6ddbb3f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Samara +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Samara-f08bb013a41d1a90 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Skopje +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Skopje-70d334a464e91064 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Sofia +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Sofia-5a9bcd63aa05866c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Tirane +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Tirane-ddf7ca51bcb03d1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Vaduz +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Vaduz-d45d61469b2f775b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Vienna +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Vienna-708e75796a4e7c11 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Warsaw +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Warsaw-0115ee4c707c898e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Zagreb +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Zagreb-0ca1ad9171619b22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Europe/Zurich +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Europe-Zurich-b26883232ec71c75 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/GB-Eire +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-GB-Eire-f94d7805574631cb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/GB +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-GB-a2d3c3e1ab387e77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/GMT-0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-GMT-0-67af0d0d503efc49 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/GMT+0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-GMT-0-efc7985082dec0ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/GMT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-GMT-47ad46f3e74adbf8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/GMT0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-GMT0-6e1e41f4a6ca905e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Greenwich +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Greenwich-23b95b752e0936ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/HST +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-HST-535d7a438c39faa6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Hongkong +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Hongkong-cd4de9de3d862046 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Iceland +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Iceland-3cc51e65e13ba4a6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Chagos +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Indian-Chagos-e95941e8c711003d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Cocos +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Indian-Cocos-f1a8e296000c4054 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Comoro +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Indian-Comoro-d16d537fadbc5166 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Indian/Mahe +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Indian-Mahe-a4763d0ebde86708 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Iran +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Iran-5a8f58bc671c42ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Israel +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Israel-2323fb3a2d256c4f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Jamaica +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Jamaica-70ee34e14a9217dd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Japan +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Japan-754580e4e2086e67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Kwajalein +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Kwajalein-4a0806302f3890a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Libya +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Libya-13a79918eb3b935e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/MET +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-MET-24640c2cdd47585e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/MST +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-MST-64062123ef767c78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/MST7MDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-MST7MDT-00c366afc971a1a2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/NZ +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-NZ-31ce4fc18f21b208 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/NZ-CHAT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-NZ-CHAT-cc2b7cc555452129 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Navajo +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Navajo-f5043da34fb69f6f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/PRC +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-PRC-38d0929dcdc91144 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/PST8PDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-PST8PDT-55f856f568c39e73 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Apia +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Apia-f4d0f752c7086584 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Chuuk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Chuuk-2ac4a1f2913a5e6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Efate +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Efate-9e4a3f89aebc1f8e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Fiji +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Fiji-a46a3e7b88955e6b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Guam +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Guam-7660466e2ab29afb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Nauru +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Nauru-2c0e1cd0693a7dba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Niue +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Niue-c8b53e5a80e74cc0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Palau +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Palau-dd5e2afe7d72b06d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Samoa +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Samoa-ce1920ca156b5ac9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Truk +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Truk-b0de0999340923b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Wake +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Wake-344e09fd88454948 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Pacific/Yap +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Yap-1f507cc07289bae6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Poland +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Poland-eb465867301e1d95 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Portugal +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Portugal-0f3cc47a5fd68966 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/ROC +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-ROC-90a2d661c9569338 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/ROK +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-ROK-262e46b2929816c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Singapore +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Singapore-1745cc4f97c3ebff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Turkey +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Turkey-14b55f125aa001b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/UCT +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-UCT-21a1d29e5e1db8db +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Alaska +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Alaska-01f4b0d40ab7dc28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Aleutian +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Aleutian-43dbb89d7a63753e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Arizona +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Arizona-3d00fc9e1eac2708 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Central +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Central-1509abcf0c62f332 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Eastern +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Eastern-b80a228730a5438a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Hawaii +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Hawaii-319339c882f7438b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Michigan +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Michigan-ba383ec1c00cddfd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Mountain +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Mountain-fb3d146c3d21d461 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Pacific +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Pacific-90c8f9782fd9f216 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/US/Samoa +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-US-Samoa-2fc9a40924f11bb5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/UTC +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-UTC-4143142a4203541a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Universal +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Universal-5df1e76fbdf33844 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/W-SU +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-W-SU-de344113da5da2de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/WET +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-WET-570d51419e400a21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posix/Zulu +SPDXID: SPDXRef-File-usr-share-zoneinfo-posix-Zulu-9d1192080c48fe28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/posixrules +SPDXID: SPDXRef-File-usr-share-zoneinfo-posixrules-52ae4f71c6edf4aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Accra +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Accra-d35b4e25af52b33a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Asmara +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Asmara-108e0ddb4821b2eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Asmera +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Asmera-e76c327509c1b7ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Bamako +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Bamako-ba79439521a9c6a5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Bangui +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Bangui-0e5d3713f22c401d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Banjul +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Banjul-b61aa7d5282613e0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Bissau +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Bissau-1c221c7a17905aa8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Cairo +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Cairo-4862f46b509265fc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Ceuta +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Ceuta-efaf41cb4752e7ab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Dakar +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Dakar-88222fdcb8fcfacb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Douala +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Douala-72cd9483796db162 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Harare +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Harare-baec36dfc8704334 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Juba +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Juba-4a41097eb172dd6a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Kigali +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Kigali-46258ef6e3aaaf1a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Lagos +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Lagos-a788a31364f41eec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Lome +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Lome-a78bb7d1dc213075 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Luanda +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Luanda-8dd9f212c3d5250e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Lusaka +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Lusaka-4755a07d29ff3075 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Malabo +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Malabo-1e57803675767ab6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Maputo +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Maputo-93fdc7d163b77b37 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Maseru +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Maseru-11b7fceacfb96136 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Niamey +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Niamey-bafbb9f89ff1ff82 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Africa/Tunis +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Africa-Tunis-10b4d7ca6f41bc51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Adak +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Adak-adbfa52b0d4e9aa3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Aruba +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Aruba-621d1c7ed14f6583 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Atka +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Atka-423040b70699eb8f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Bahia +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Bahia-0fc48e4982431c66 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Belem +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Belem-51556efc948da496 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Boise +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Boise-a737ce434a5bcdf9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Jujuy +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Jujuy-f1c4fae62f35d8ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Lima +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Lima-884c85eb91e8204e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Nome +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Nome-f40ed9b257055cb0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Nuuk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Nuuk-91d179d1f3dd1c67 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Sitka +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Sitka-8a2f4647b566d39e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/America/Thule +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-America-Thule-0c748304cdbba179 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Aden +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Aden-b768b9129fda10c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Almaty +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Almaty-bd435cb0c4c034ec +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Amman +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Amman-2d6a1e8f88d65c31 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Anadyr +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Anadyr-3c960511fcdd47fa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Aqtau +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Aqtau-b5d0cccf57108fc6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Aqtobe +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Aqtobe-7e2e60c3fda8c102 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Ashgabat +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Ashgabat-ad9d53fee825429a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Atyrau +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Atyrau-b75a4245a691ec88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Baghdad +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Baghdad-01d8a8175839bfd6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Bahrain +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Bahrain-a1e04af90ec16537 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Baku +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Baku-0286235926410bba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Bangkok +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Bangkok-9d32b6974c36f821 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Barnaul +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Barnaul-6b01704c60b4d25b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Beirut +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Beirut-be269c915ca60248 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Bishkek +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Bishkek-c406e1204f613950 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Brunei +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Brunei-062fdb6b1bcc31ca +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Calcutta +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Calcutta-83b875cb03f1ea70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Chita +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Chita-333bd5817f89c73f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Colombo +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Colombo-c1a2402565bb33c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Dacca +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Dacca-ef0d8ee42927ebad +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Damascus +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Damascus-5f752eb1c1d23838 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Dhaka +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Dhaka-30cec014e97ccb83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Dili +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Dili-d78599e031b8dec5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Dubai +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Dubai-9e31ee55e21762e7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Dushanbe +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Dushanbe-4053d07a6eb81b72 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Gaza +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Gaza-f67f77f9e03dd3d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Harbin +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Harbin-6661de30a0204d70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Hebron +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Hebron-e6053ee9b858f2de +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Hovd +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Hovd-ba56764975f0a45e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Irkutsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Irkutsk-850cd9a46d755e5d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Istanbul +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Istanbul-6e732c690e1c0e77 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Jakarta +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Jakarta-2991879746649a4c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Jayapura +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Jayapura-f60f4fc2e81816f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kabul +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Kabul-61be725119ff0019 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Karachi +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Karachi-23243538b76889bf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kashgar +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Kashgar-580b124d1ceedef4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Katmandu +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Katmandu-d0d3e795b2606ccd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Khandyga +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Khandyga-1889556fafd481df +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kolkata +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Kolkata-f4100ba843feb3c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kuching +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Kuching-e9c3c540281373c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Kuwait +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Kuwait-c80ac9c0dcd0051d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Macao +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Macao-a02cad65076117aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Macau +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Macau-80cd147d8134efe7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Magadan +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Magadan-0082357688edb68f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Makassar +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Makassar-a0b6c79de3c769b0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Manila +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Manila-1d4b672014c59333 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Muscat +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Muscat-a10c69bc43ce1fe4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Nicosia +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Nicosia-580795629bb3205c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Omsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Omsk-20301fe9591ece91 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Oral +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Oral-4b39a377ae3bf5d2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Qatar +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Qatar-0a4fd2c8fcc88812 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Qostanay +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Qostanay-b161517c36141812 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Rangoon +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Rangoon-9d6f78257236f210 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Riyadh +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Riyadh-aa3c1ad832595979 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Saigon +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Saigon-6b069e554143f1e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Sakhalin +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Sakhalin-09efa9be0f09c3f2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Seoul +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Seoul-2a602ccdc4845dbf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Shanghai +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Shanghai-4d5f8e4eceaaae24 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Taipei +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Taipei-2b755866e7d8b336 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Tashkent +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Tashkent-0fe2de6373fbb939 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Tbilisi +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Tbilisi-a45329db137c6e5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Tehran +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Tehran-543f32c1efd57e1e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Tel_Aviv +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Tel-Aviv-a4390f8a80782a0d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Thimbu +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Thimbu-dce2eeed2bd27688 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Thimphu +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Thimphu-58e1a336ec8207d5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Tokyo +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Tokyo-51b3a71fe124da0c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Tomsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Tomsk-58d11efa51b24e28 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Urumqi +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Urumqi-4463d266ec284c81 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Ust-Nera +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Ust-Nera-1754ef6e12ae3fa4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Yakutsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Yakutsk-d67004226137393f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Yangon +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Yangon-89632d752e95bbab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Asia/Yerevan +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Asia-Yerevan-377ba20d8d2345b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/ACT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Australia-ACT-1dbc106844b1c3c7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/LHI +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Australia-LHI-0ae0b40ff4e7dada +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Australia/NSW +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Australia-NSW-9fd6127320584926 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Brazil/Acre +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Brazil-Acre-d75ffbce10d4eada +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Brazil/East +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Brazil-East-dd6e8c14e0ece3c6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Brazil/West +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Brazil-West-79e5a17cd8eb1f3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/CET +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-CET-eaaa87321f866292 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/CST6CDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-CST6CDT-8e47d03ec8d76a04 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Canada/Yukon +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Canada-Yukon-1cdbd81a676c6558 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Cuba +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Cuba-e918976becca4cd5 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/EET +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-EET-8345e008a2843d16 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/EST +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-EST-4d1b9ae80facc188 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/EST5EDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-EST5EDT-6116226833a90880 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Egypt +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Egypt-7e1d7274f6960a71 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Eire +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Eire-1c08c52afcb4be65 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-0-06aae8efaf00524b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-0-9b1c00da20caa601 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+1 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-1-ca0a712f99e32df8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-1 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-1-ec6982b2a2172134 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-10 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-10-4383eda2848aad7e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+10 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-10-517d27986ddfd61c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+11 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-11-649e502fd9f8b908 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-11 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-11-a8df065c5bdc1caf +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-12 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-12-1748451f3712b64a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+12 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-12-2fb15230c176976e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-13 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-13-d6f735de940b4df4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-14 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-14-53dfb2e022ef32aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-2 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-2-25f086c750889259 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+2 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-2-c843cc9009d01d9a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-3 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-3-8c57f75ac59f678d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+3 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-3-d3d718743c9f9599 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+4 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-4-18c133d8eb5f2a9c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-4 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-4-dba0788a1f0e2c70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-5 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-5-889b834d65e2e5ac +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+5 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-5-a79858945570dc70 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-6 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-6-3b98429817250f83 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+6 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-6-e6b47f5f87fa6241 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-69739dfdee06b830 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+7 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-7-081d8cc465c090ff +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-7 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-7-23244af0b5120335 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+8 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-8-38a34c169fc5a24d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-8 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-8-fd19f00d6d414d85 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT+9 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-9-10f0fb4e5732619a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT-9 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-9-12d6724675fa5be7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/GMT0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT0-fac85ed1531168c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/Greenwich +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-Greenwich-b395830de260bad4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/UCT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-UCT-29f898e4d8fa055f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/UTC +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-UTC-b1259359b4378936 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/Universal +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-Universal-cef5e0bd76ab90ae +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Etc/Zulu +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Etc-Zulu-8b985e439b088880 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Athens +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Athens-19f0f0004784db2f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Berlin +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Berlin-ff3c4c572d1b7fa8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Dublin +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Dublin-19e52b9324a96c88 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Jersey +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Jersey-2d7c7a3d1dd274eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Kiev +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Kiev-8d27e4884e7aaab9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Kirov +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Kirov-f60de5d7eca277eb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Kyiv +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Kyiv-47994db90d0f8271 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Lisbon +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Lisbon-b0f61e1d4fbab911 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/London +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-London-8312a657da639b2d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Madrid +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Madrid-98b7daa0b03e2c30 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Malta +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Malta-346e2fe80ca553ba +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Minsk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Minsk-a4b717635b2fc2aa +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Monaco +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Monaco-9b024aa55f55dea3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Moscow +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Moscow-666d5bb1665d9b3a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Oslo +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Oslo-64d7436737292b26 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Paris +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Paris-727aefc051221ba4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Prague +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Prague-d6eaf29e3f3a2c76 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Riga +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Riga-df210f363d0e0cb6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Rome +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Rome-8f869860d9a7f32f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Samara +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Samara-6d38d7ae9a19aa8b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Skopje +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Skopje-a1dd47e04244f39a +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Sofia +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Sofia-8297bbb21a47279e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Tirane +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Tirane-c26248af8fc07064 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Vaduz +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Vaduz-6399fe450c11ccf1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Vienna +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Vienna-5e2f37b9b5e79f50 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Warsaw +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Warsaw-313e03a59459df5b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Zagreb +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Zagreb-4557e54abb2e55cc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Europe/Zurich +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Europe-Zurich-47b3878072e84128 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/GB +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-GB-635a2e0237a3cbf7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/GB-Eire +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-GB-Eire-1565f07ef971ced6 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/GMT-0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-GMT-0-2f7bbb58ac71d6f7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/GMT+0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-GMT-0-be5232ef2c6d8c0b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/GMT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-GMT-33e9aa11cd5885f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/GMT0 +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-GMT0-76eb0da79433643d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Greenwich +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Greenwich-8bb80866ad4e6533 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/HST +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-HST-c74d531a1a26ad6d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Hongkong +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Hongkong-86847aebaf4f1246 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Iceland +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Iceland-40cc8cd95d56fe8c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Chagos +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Indian-Chagos-b44572a450a0f80b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Cocos +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Indian-Cocos-5e26a7ba9f942258 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Comoro +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Indian-Comoro-591a16a4ccdae862 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Indian/Mahe +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Indian-Mahe-eb6cb9925197e241 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Iran +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Iran-6d570c99b1995144 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Israel +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Israel-e379158171887084 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Jamaica +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Jamaica-3627ffd003a361d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Japan +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Japan-9c93bdc7bb4c2412 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Kwajalein +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Kwajalein-81b62ed0539c9b52 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Libya +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Libya-b25de5ca2cd5a439 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/MET +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-MET-000209debf32d521 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/MST +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-MST-49cfb0bcf4419a57 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/MST7MDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-MST7MDT-f96ff3e1fc11f3ea +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/NZ +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-NZ-514728702c80b2a1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/NZ-CHAT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-NZ-CHAT-5f0597ae3dfa60f9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Navajo +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Navajo-08e88cfdfff16878 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/PRC +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-PRC-5a13e8813c7c1c13 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/PST8PDT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-PST8PDT-4602163d7aa7d075 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Apia +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Apia-2685d47955771160 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Chuuk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Chuuk-a490f110773cb7cd +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Efate +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Efate-200bf72242205191 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Fiji +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Fiji-e8c2813f7bf5f76c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Guam +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Guam-3d2e00a47fbd6fd3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Nauru +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Nauru-8f327c8d15d9c198 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Niue +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Niue-210cf11541d79ac3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Palau +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Palau-3608ae6589178a51 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Samoa +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Samoa-2b90ad239bc964bb +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Truk +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Truk-dde8f3f7e3209dd2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Wake +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Wake-8f18b6eefc1e6863 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Pacific/Yap +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Pacific-Yap-46d386603ff28a3e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Poland +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Poland-757026fbe68680e3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Portugal +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Portugal-7dd7eea79b7bbf9f +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/ROC +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-ROC-666c13058413cc99 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/ROK +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-ROK-09254b090ed34351 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Singapore +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Singapore-9ff5933e02286c93 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Turkey +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Turkey-c79cf4b76a072618 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/UCT +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-UCT-137bf97f3363cb22 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Alaska +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Alaska-eb3ce691a44950d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Aleutian +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Aleutian-d375c2fcca0252e9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Arizona +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Arizona-2842ae6c00f723c9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Central +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Central-67447bde0f9c4073 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Eastern +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Eastern-04e89206574110f3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Hawaii +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Hawaii-807221df948060b2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Michigan +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Michigan-f54e1c916d9a0431 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Mountain +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Mountain-2a564386078f9c21 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Pacific +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Pacific-9a9c4db000f39fda +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/US/Samoa +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-US-Samoa-13f8f6f4672faebe +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/UTC +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-UTC-4570f6de40469f1d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Universal +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Universal-64d78b24d5f3b9f8 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/W-SU +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-W-SU-c382a06ea74a8f78 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/WET +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-WET-bce8c94782109871 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/right/Zulu +SPDXID: SPDXRef-File-usr-share-zoneinfo-right-Zulu-627976a30f13eb68 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/tzdata.zi +SPDXID: SPDXRef-File-usr-share-zoneinfo-tzdata.zi-1a9ae2057bbf8f02 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/zone.tab +SPDXID: SPDXRef-File-usr-share-zoneinfo-zone.tab-e8055321d356644e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zoneinfo/zone1970.tab +SPDXID: SPDXRef-File-usr-share-zoneinfo-zone1970.tab-07a98333bb6ccc05 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_busctl +SPDXID: SPDXRef-File-usr-share-zsh-site-functions--busctl-52976729c76be3b7 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_curl +SPDXID: SPDXRef-File-usr-share-zsh-site-functions--curl-b56b385ca9f3c90c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_loginctl +SPDXID: SPDXRef-File-usr-share-zsh-site-functions--loginctl-7180243402407104 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /usr/share/zsh/site-functions/_systemd +SPDXID: SPDXRef-File-usr-share-zsh-site-functions--systemd-fcd0017775beb102 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /var/cache/dnf/packages.db +SPDXID: SPDXRef-File-var-cache-dnf-packages.db-8df50c35e25349ef +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +FileName: /var/cache/ldconfig/aux-cache +SPDXID: SPDXRef-File-var-cache-ldconfig-aux-cache-fa12b0fd3a460fab +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:ae8ca4ad3728bc07e1f5c89dff6565942d9109266a15e7c45a983d6130a2615a + +FileName: /var/lib/rpm/__db.001 +SPDXID: SPDXRef-File-var-lib-rpm---db.001-fba0623d0a8391d0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +FileName: /var/lib/rpm/__db.002 +SPDXID: SPDXRef-File-var-lib-rpm---db.002-fb895eea6da2d1d3 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +FileName: /var/lib/rpm/__db.003 +SPDXID: SPDXRef-File-var-lib-rpm---db.003-3e496f62e4fc12d9 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +FileName: /var/lib/rpm/Basenames +SPDXID: SPDXRef-File-var-lib-rpm-Basenames-1e8d242de9e8ccbc +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Conflictname +SPDXID: SPDXRef-File-var-lib-rpm-Conflictname-4ae4e37472c7390e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Dirnames +SPDXID: SPDXRef-File-var-lib-rpm-Dirnames-8048d3bd44bebf7c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Group +SPDXID: SPDXRef-File-var-lib-rpm-Group-85e82b7f69e79be1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Installtid +SPDXID: SPDXRef-File-var-lib-rpm-Installtid-2e88407d08a91510 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Name +SPDXID: SPDXRef-File-var-lib-rpm-Name-429f333e5847d3f4 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Obsoletename +SPDXID: SPDXRef-File-var-lib-rpm-Obsoletename-0a002bd80923378b +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Packages +SPDXID: SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Providename +SPDXID: SPDXRef-File-var-lib-rpm-Providename-194bb06f4d5ac255 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Requirename +SPDXID: SPDXRef-File-var-lib-rpm-Requirename-11e7c6ce0b01e781 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Sha1header +SPDXID: SPDXRef-File-var-lib-rpm-Sha1header-91fc8c66fa9b878e +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Sigmd5 +SPDXID: SPDXRef-File-var-lib-rpm-Sigmd5-455e32ded7479296 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/rpm/Triggername +SPDXID: SPDXRef-File-var-lib-rpm-Triggername-76ed42315129371d +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:05506a29b0eb6bbea4e419dcd3714323fc3ada5f6f6a75440eaa6723948d77e8 + +FileName: /var/lib/systemd/catalog/database +SPDXID: SPDXRef-File-var-lib-systemd-catalog-database-e34c9b8d121e62a0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:4f16824046fe531a901ddf7c37fd7074341381edc679b5d2c3a2171e71c32831 + +FileName: /var/log/dnf.librepo.log +SPDXID: SPDXRef-File-var-log-dnf.librepo.log-ad6b7fec418d15b1 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +FileName: /var/log/dnf.log +SPDXID: SPDXRef-File-var-log-dnf.log-b04fd137817fe243 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +FileName: /var/log/dnf.rpm.log +SPDXID: SPDXRef-File-var-log-dnf.rpm.log-cc0590da116b02c0 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +FileName: /var/log/hawkey.log +SPDXID: SPDXRef-File-var-log-hawkey.log-ac57c936cbd2e4c2 +FileChecksum: SHA1: 0000000000000000000000000000000000000000 +LicenseConcluded: NOASSERTION +FileComment: layerID: sha256:df199fc197d4d527dd16d3fc5722d4a560fac928d0d9da31b187b9feaaa6a022 + +##### Package: quay.alldcs.nl/allard/olproperties + +PackageName: quay.alldcs.nl/allard/olproperties +SPDXID: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties +PackageVersion: master +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +PrimaryPackagePurpose: CONTAINER +FilesAnalyzed: false +PackageChecksum: SHA256: c7e4f6cf8d22d75928fd04c44585176b4dbb24b466b62c17a24da865ccb6cb6c +ExternalRef: PACKAGE-MANAGER purl pkg:oci/quay.alldcs.nl/allard/olproperties@sha256:c7e4f6cf8d22d75928fd04c44585176b4dbb24b466b62c17a24da865ccb6cb6c?arch=amd64&tag=master + +##### Package: java + +PackageName: java +SPDXID: SPDXRef-Package-binary-java-d9e23e0b1de302e4 +PackageVersion: 17.0.8.1+1 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from the following paths: /opt/java/openjdk/bin/java +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:oracle:openjdk:17.0.8.1\+1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java:java:17.0.8.1\+1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:generic/java@17.0.8.1+1 + +##### Package: Apache Commons Daemon Service Runner + +PackageName: Apache Commons Daemon Service Runner +SPDXID: SPDXRef-Package-dotnet-Apache-Commons-Daemon-Service-Runner-108b9d9123e75ddd +PackageVersion: 1.2.2.0 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from dotnet project assets file: /opt/ol/wlp/bin/tools/win/prunsrv.exe +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Apache_Commons_Daemon_Service_Runner:Apache_Commons_Daemon_Service_Runner:1.2.2.0:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:nuget/Apache%20Commons%20Daemon%20Service%20Runner@1.2.2.0 + +##### Package: boot-proxy + +PackageName: boot-proxy +SPDXID: SPDXRef-Package-java-archive-boot-proxy-1aba7eb0d811ebb9 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2de77cbb170cd3982dd4f6a9b889f256f161323a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/output/defaultServer/workarea/org.eclipse.osgi/201/data/boot-proxy.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot-proxy:boot-proxy:*:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot-proxy:boot_proxy:*:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot_proxy:boot-proxy:*:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot_proxy:boot_proxy:*:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot-proxy:*:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot_proxy:*:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/boot-proxy/boot-proxy + +##### Package: bootstrap-agent + +PackageName: bootstrap-agent +SPDXID: SPDXRef-Package-java-archive-bootstrap-agent-df89313d7d4ebec4 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e1ea9927a0e6325988beca765c41ed0ce2ac741e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/bootstrap-agent.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap-agent:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap-agent:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap_agent:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap_agent:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap-agent:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap_agent:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap-agent:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap_agent:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap-agent:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap_agent:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap-agent:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap_agent:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:bootstrap-agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:bootstrap_agent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bootstrap:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.kernel.instrument.check/bootstrap-agent@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.json4j + +PackageName: com.ibm.json4j +SPDXID: SPDXRef-Package-java-archive-com.ibm.json4j-cfae675b723f2735 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 671d21e0c22890a6410bcfc9d6551efb729add36 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.json4j_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.json4j:com.ibm.json4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.json4j:json4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json4j:com.ibm.json4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.json4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json4j:json4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:json4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.json4j@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.rls.jdbc.jakarta + +PackageName: com.ibm.rls.jdbc.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.rls.jdbc.jakarta-75e3781a87aab322 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: eb89149715a9ff75af7239c598722566c9baa5e2 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.rls.jdbc.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.rls.jdbc.jakarta:com.ibm.rls.jdbc.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.rls.jdbc.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.rls.jdbc.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.rls.jdbc.jakarta:jdbc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdbc:com.ibm.rls.jdbc.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.rls.jdbc.jakarta:rls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.rls.jdbc.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rls:com.ibm.rls.jdbc.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jdbc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdbc:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:rls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rls:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdbc:jdbc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jdbc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdbc:rls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rls:jdbc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:rls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rls:rls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.rls.jdbc.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.tx.jta.jakarta + +PackageName: com.ibm.tx.jta.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.tx.jta.jakarta-f61867c065c3c5fe +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1cecced4edb1ae1d92de14835e6e4ec4b75ee6b9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.tx.jta.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.jta.jakarta:com.ibm.tx.jta.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:TxBundleTools:com.ibm.tx.jta.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.jta.jakarta:TxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.jta.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.tx.jta.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:TxBundleTools:TxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.jta.jakarta:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:com.ibm.tx.jta.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.jta.jakarta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.tx.jta.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:com.ibm.tx.jta.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.jta.jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:com.ibm.tx.jta.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:TxBundleTools:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:TxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:TxBundleTools:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:TxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:TxBundleTools:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:TxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:TxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:TxBundleTools:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:TxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.tx.jta.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.tx.util.jakarta + +PackageName: com.ibm.tx.util.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.tx.util.jakarta-22a2d52242f0b82a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cad52d8a6aace0d665f8f6008bc7ab818569e48c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.tx.util.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.util.jakarta:com.ibm.tx.util.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.util.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.tx.util.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.util.jakarta:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:com.ibm.tx.util.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.tx.util.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.tx.util.jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:com.ibm.tx.util.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.tx.util.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.basics + +PackageName: com.ibm.websphere.appserver.api.basics +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.basics-9f1f28ba07ffddec +PackageVersion: 1.4.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d6b90ea373ebf3613d8d870f096043e1eb658912 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.basics_1.4.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.basics:com.ibm.websphere.appserver.api.basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.basics:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.basics:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basics:com.ibm.websphere.appserver.api.basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.basics:basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.basics:api:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basics:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basics:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basics:basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basics:api:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:basics:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.basics@1.4.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.config + +PackageName: com.ibm.websphere.appserver.api.config +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.config-66ddfec1c99641dc +PackageVersion: 1.2.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cd2ead89d62580864af3476b3d3c1d6ce142a3ea +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.config_1.2.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.config:com.ibm.websphere.appserver.api.config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.config:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.config:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.config:config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.websphere.appserver.api.config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.config:api:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:api:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.config@1.2.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.distributedMap + +PackageName: com.ibm.websphere.appserver.api.distributedMap +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.distributedMap-ade50b3b5247ec64 +PackageVersion: 2.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2b711c9bc138a9647fc2da8917d3f2c38636d5c2 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.distributedMap_2.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:com.ibm.websphere.appserver.api.distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distributedMap:com.ibm.websphere.appserver.api.distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.distributedMap:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distributedMap:distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distributedMap:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distributedMap:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distributedMap:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:distributedMap:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.distributedMap@2.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.endpoint + +PackageName: com.ibm.websphere.appserver.api.endpoint +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.endpoint-66ab3ac228472eda +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 359b018521cfe04e906f8f423016e72401c19e98 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.endpoint_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:com.ibm.websphere.appserver.api.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:endpoint:com.ibm.websphere.appserver.api.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.endpoint:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:endpoint:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:endpoint:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:endpoint:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:endpoint:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.endpoint@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.hpel + +PackageName: com.ibm.websphere.appserver.api.hpel +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.hpel-c429f58b8034c2cc +PackageVersion: 2.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ec948f859cc07ddf7dcad3b67dd40699d02aca1c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.hpel_2.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:com.ibm.websphere.appserver.api.hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:com.ibm.websphere.appserver.api.hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.hpel:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:hpel:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:2.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.hpel@2.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.json + +PackageName: com.ibm.websphere.appserver.api.json +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.json-cc9cae007144d249 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cd334eab216545b357b2272f722b4db8eb5a7e99 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.json_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.json:com.ibm.websphere.appserver.api.json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.json:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.json:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.json:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:com.ibm.websphere.appserver.api.json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.json:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.json@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.kernel.service + +PackageName: com.ibm.websphere.appserver.api.kernel.service +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.kernel.service-d939ed5bedb62843 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 403c6043d6d4b77a5320954ebe22c349403eff9d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.kernel.service_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:com.ibm.websphere.appserver.api.kernel.service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.kernel.service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.kernel.service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.websphere.appserver.api.kernel.service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.websphere.appserver.api.kernel.service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.kernel.service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.kernel.service:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.kernel.service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.kernel.service@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.monitor + +PackageName: com.ibm.websphere.appserver.api.monitor +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.monitor-e1a15f5cd55c4cbd +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 01d6ca956231ad5e637b3f41bfc9b7cb9f7ac2c0 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.monitor_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:com.ibm.websphere.appserver.api.monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:com.ibm.websphere.appserver.api.monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.monitor:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:monitor:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.monitor@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.security.spnego + +PackageName: com.ibm.websphere.appserver.api.security.spnego +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.security.spnego-4ae53050e4fe0d56 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 826b2e6e9e2962f90546999a7bf7906c396602ec +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.security.spnego_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:com.ibm.websphere.appserver.api.security.spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.security.spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.security.spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.websphere.appserver.api.security.spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spnego:com.ibm.websphere.appserver.api.security.spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.security.spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.security.spnego:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.security.spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spnego:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spnego:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spnego:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spnego:spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spnego:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spnego:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.security.spnego@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.sessionstats + +PackageName: com.ibm.websphere.appserver.api.sessionstats +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.sessionstats-2a94d6299aad479a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 22815e77ef2c1679ed1a5b75abf3094674d7e245 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.sessionstats_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:com.ibm.websphere.appserver.api.sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sessionstats:com.ibm.websphere.appserver.api.sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.sessionstats:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sessionstats:sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sessionstats:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sessionstats:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:sessionstats:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sessionstats:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.sessionstats@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.api.ssl + +PackageName: com.ibm.websphere.appserver.api.ssl +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.ssl-1b9b8e246bb01d2c +PackageVersion: 1.5.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 39beb4dca62e7ee4d4d6a41cb6a0fe925838faae +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/com.ibm.websphere.appserver.api.ssl_1.5.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:com.ibm.websphere.appserver.api.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.api.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.api.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.websphere.appserver.api.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:api:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.api.ssl:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.api.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:com.ibm.websphere.appserver.api.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:api:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:api:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:api:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.api.ssl@1.5.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.anno + +PackageName: com.ibm.websphere.appserver.spi.anno +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.anno-3fb825ea1e85acd7 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6f1f5157ed3c55c59226c37a4366b5de8cd26e0f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.anno_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:com.ibm.websphere.appserver.spi.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:com.ibm.websphere.appserver.spi.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.anno:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.anno@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.application + +PackageName: com.ibm.websphere.appserver.spi.application +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.application-748abe5518b3314e +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 93e5a263fe39639ae355f7aa9ce3ecfc8b37377b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.application_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.application:com.ibm.websphere.appserver.spi.application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:application:com.ibm.websphere.appserver.spi.application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.application:application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.application:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.application:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.application:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:application:application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:application:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:application:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:application:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:application:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.application@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.artifact + +PackageName: com.ibm.websphere.appserver.spi.artifact +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.artifact-2173cd741b62f5a5 +PackageVersion: 1.2.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 4294c45e7247858312f3b1fa2421af517952e919 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.artifact_1.2.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:com.ibm.websphere.appserver.spi.artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.websphere.appserver.spi.artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.artifact:spi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:spi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:artifact:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.artifact@1.2.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.classloading + +PackageName: com.ibm.websphere.appserver.spi.classloading +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.classloading-75c7e061c7ba2305 +PackageVersion: 1.4.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 02857642dbd4049e3b5b546c2b9bdbc5de401e1b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.classloading_1.4.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:com.ibm.websphere.appserver.spi.classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:com.ibm.websphere.appserver.spi.classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.classloading:spi:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:spi:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:classloading:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.4.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.classloading@1.4.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.containerServices + +PackageName: com.ibm.websphere.appserver.spi.containerServices +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.containerServices-32bf4b13c197596c +PackageVersion: 4.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ff1677ce2adaf676c2836fe1758e57e65c734258 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.containerServices_4.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:com.ibm.websphere.appserver.spi.containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:containerServices:com.ibm.websphere.appserver.spi.containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:appserver:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:websphere:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.containerServices:spi:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:containerServices:containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:containerServices:appserver:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:containerServices:websphere:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:containerServices:spi:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:containerServices:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:4.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.containerServices@4.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.httptransport + +PackageName: com.ibm.websphere.appserver.spi.httptransport +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.httptransport-d8fb12885ef56ff7 +PackageVersion: 4.2.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 41d269555163fb3692e1c2d38ca4e4f054b4add0 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.httptransport_4.2.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:com.ibm.websphere.appserver.spi.httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:httptransport:com.ibm.websphere.appserver.spi.httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:appserver:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:websphere:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.httptransport:spi:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:httptransport:httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:httptransport:appserver:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:httptransport:websphere:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:httptransport:spi:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:httptransport:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:4.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.httptransport@4.2.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.javaeedd + +PackageName: com.ibm.websphere.appserver.spi.javaeedd +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.javaeedd-8aaadc0ff19db6ad +PackageVersion: 1.7.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 72049f13a798727af28394f94d827cb638f14306 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.javaeedd_1.7.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:com.ibm.websphere.appserver.spi.javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:appserver:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:websphere:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaeedd:com.ibm.websphere.appserver.spi.javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.javaeedd:spi:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaeedd:appserver:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaeedd:websphere:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaeedd:javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaeedd:spi:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:javaeedd:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.7.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.javaeedd@1.7.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.kernel.embeddable + +PackageName: com.ibm.websphere.appserver.spi.kernel.embeddable +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.embeddable-3b8d907fb16b2e94 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: fe61b7ede706688cebe2a2dd3d57b6cf0620a52f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.embeddable_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.embeddable:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.kernel.embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:embeddable:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:kernel:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.embeddable@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.kernel.filemonitor + +PackageName: com.ibm.websphere.appserver.spi.kernel.filemonitor +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.filemonitor-ff50a675f87deefb +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f8779aff6c0004745b77829c0f167377d4fadf3b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.filemonitor_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.filemonitor:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.filemonitor@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.kernel.metatype + +PackageName: com.ibm.websphere.appserver.spi.kernel.metatype +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.metatype-e2bb1263effc3a69 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 29d6b191e31c1681b04b62a067e88b17ebc58a90 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.metatype_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.metatype:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.kernel.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.metatype@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.kernel.service + +PackageName: com.ibm.websphere.appserver.spi.kernel.service +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.service-421932a8e40184c4 +PackageVersion: 1.8.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 018f74fd2fb7216a0f135724cf7a7fe4d169e835 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.kernel.service_1.8.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:com.ibm.websphere.appserver.spi.kernel.service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.kernel.service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:appserver:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:websphere:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.kernel.service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.websphere.appserver.spi.kernel.service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:kernel:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.websphere.appserver.spi.kernel.service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.kernel.service:spi:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.kernel.service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.kernel.service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:appserver:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:websphere:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:kernel:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:appserver:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:websphere:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:kernel:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:kernel:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:spi:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:service:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:spi:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:kernel:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.8.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.kernel.service@1.8.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.logging + +PackageName: com.ibm.websphere.appserver.spi.logging +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.logging-d6690f2ff1085822 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cfef2f02bdba998faece9efda283dccd5540d71b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.logging_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:com.ibm.websphere.appserver.spi.logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:com.ibm.websphere.appserver.spi.logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.logging:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:logging:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.logging@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.ssl + +PackageName: com.ibm.websphere.appserver.spi.ssl +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.ssl-3a6d9f1416bf3550 +PackageVersion: 1.5.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 280ebc20e8c622adddc568fec386cdd760c52f18 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.ssl_1.5.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:com.ibm.websphere.appserver.spi.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:spi:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.ssl:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:com.ibm.websphere.appserver.spi.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:appserver:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:websphere:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:spi:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.ssl@1.5.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.threading + +PackageName: com.ibm.websphere.appserver.spi.threading +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.threading-cbfaa03416eb5740 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1bddc89a6817160c5c7269b11fe9877f00e0b422 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.threading_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:com.ibm.websphere.appserver.spi.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:com.ibm.websphere.appserver.spi.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.threading:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.threading@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.appserver.spi.transaction + +PackageName: com.ibm.websphere.appserver.spi.transaction +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.transaction-40203f0f030d57c8 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 91eba92a32263b556019227acc644b65154419d0 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/com.ibm.websphere.appserver.spi.transaction_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:com.ibm.websphere.appserver.spi.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:com.ibm.websphere.appserver.spi.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:com.ibm.websphere.appserver.spi.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.appserver.spi.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.appserver.spi.transaction:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.appserver.spi.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:com.ibm.websphere.appserver.spi.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:appserver:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:appserver:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.appserver.spi.transaction@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.javaee.activity.1.0 + +PackageName: com.ibm.websphere.javaee.activity.1.0 +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.javaee.activity.1.0-539b5585a68d881c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: fc346222f84c758ad8abfd77c8ec1fb0666b23cb +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/com.ibm.websphere.javaee.activity.1.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:com.ibm.websphere.javaee.activity.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.javaee.activity.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activity:com.ibm.websphere.javaee.activity.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:activity:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.websphere.javaee.activity.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.javaee.activity.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:com.ibm.websphere.javaee.activity.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.websphere.javaee.activity.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.activity.1.0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activity:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:activity:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activity:activity:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activity:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:activity:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:activity:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:activity:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:activity:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activity:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activity:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.javaee.activity.1.0@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.javaee.jcache.1.1.core.jakarta + +PackageName: com.ibm.websphere.javaee.jcache.1.1.core.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.javaee.jcache.1.1.core.jakarta-a1abca5528994e35 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 22b1cd581d3d184235c3384c9718e5b859926922 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.websphere.javaee.jcache.1.1.core.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jcache.1.1.core.jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.javaee.jcache.1.1.core.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.javaee.jsonp.1.0 + +PackageName: com.ibm.websphere.javaee.jsonp.1.0 +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.javaee.jsonp.1.0-ad3879053f00036f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 30a6c97ff3351ccbeeb94cb5c752c2507d000bef +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/com.ibm.websphere.javaee.jsonp.1.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:com.ibm.websphere.javaee.jsonp.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.javaee.jsonp.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.websphere.javaee.jsonp.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:com.ibm.websphere.javaee.jsonp.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.javaee.jsonp.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:com.ibm.websphere.javaee.jsonp.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.websphere.javaee.jsonp.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.javaee.jsonp.1.0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.javaee.jsonp.1.0@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.jsonsupport + +PackageName: com.ibm.websphere.jsonsupport +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.jsonsupport-6dbb9365dfff79bc +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 403bf1230d804e32c363e7c2e4b2dac41e7c31b3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.websphere.jsonsupport_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.jsonsupport:com.ibm.websphere.jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.jsonsupport:jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonsupport:com.ibm.websphere.jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.jsonsupport:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonsupport:jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonsupport:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jsonsupport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.jsonsupport@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.org.reactivestreams.reactive-streams.1.0 + +PackageName: com.ibm.websphere.org.reactivestreams.reactive-streams.1.0 +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.org.reactivestreams.reactive-streams.1.0-b58b9bc35a4e1a74 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: dd28585928a10f38d107e21d6419f4887d7535c6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/stable/com.ibm.websphere.org.reactivestreams.reactive-streams.1.0_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive-streams.1.0:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive_streams.1.0:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.org.reactivestreams.reactive:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:reactive-streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:reactive_streams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive-streams:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive_streams:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:reactivestreams:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactivestreams:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reactive:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:0:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.org.reactivestreams.reactive-streams.1.0@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.rest.handler + +PackageName: com.ibm.websphere.rest.handler +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.rest.handler-8d1aec4aea85fc8e +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 117062cabeeb8d01aae4bd098df3e12c1590403b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.websphere.rest.handler_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.rest.handler:com.ibm.websphere.rest.handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.rest.handler:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.rest.handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.rest.handler:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:com.ibm.websphere.rest.handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.rest.handler:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:com.ibm.websphere.rest.handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.rest.handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.rest.handler@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.security + +PackageName: com.ibm.websphere.security +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.security-2d6fc057b2b6172c +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 77cc95fa52298ebf9a62f15df29f989f9b75549c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.websphere.security_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security:com.ibm.websphere.security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.websphere.security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.security@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.security.authentication + +PackageName: com.ibm.websphere.security.authentication +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.security.authentication-6623a069c33c5778 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 53faa379b03427c23ce28364cfa2044000fc380c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.websphere.security.authentication_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.authentication:com.ibm.websphere.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:com.ibm.websphere.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.authentication:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.authentication:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.authentication:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.websphere.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.security.authentication@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.websphere.security.impl + +PackageName: com.ibm.websphere.security.impl +SPDXID: SPDXRef-Package-java-archive-com.ibm.websphere.security.impl-c0196b7635519e5b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 06d42d249b1541bb543b004ba2195815bc91ac97 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.websphere.security.impl_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.impl:com.ibm.websphere.security.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.impl:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:com.ibm.websphere.security.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.impl:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.websphere.security.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.websphere.security.impl:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:com.ibm.websphere.security.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.websphere.security.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:websphere:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:websphere:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.websphere.security.impl@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.adaptable.module + +PackageName: com.ibm.ws.adaptable.module +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.adaptable.module-d193330201a8bc44 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 84d7653c875461405b1677f278afa9f4e1ba2f32 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.adaptable.module_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.adaptable.module:com.ibm.ws.adaptable.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adaptable:com.ibm.ws.adaptable.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.adaptable.module:adaptable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.adaptable.module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:com.ibm.ws.adaptable.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.adaptable.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.adaptable.module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.adaptable.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adaptable:adaptable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adaptable:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:adaptable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:adaptable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adaptable:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:adaptable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.adaptable.module@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.anno + +PackageName: com.ibm.ws.anno +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.anno-9b254ddbce79a975 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 9db780722d9a64eed651c8e5bc8a8f4315bf4428 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.anno_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.anno:com.ibm.ws.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:com.ibm.ws.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.anno:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.anno:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anno:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:anno:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.anno@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.app.manager + +PackageName: com.ibm.ws.app.manager +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.app.manager-b2135968a1d4f442 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e99a635f056c757d0a2fefa606b03bd2dbc1d035 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.app.manager_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager:com.ibm.ws.app.manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager:manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:com.ibm.ws.app.manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:com.ibm.ws.app.manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager:app:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.app.manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.app.manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:app:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:manager:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:app:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:app:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:app:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.app.manager@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.app.manager.lifecycle + +PackageName: com.ibm.ws.app.manager.lifecycle +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.lifecycle-34c625553449efde +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 9cda205c9e581e3ec636c4d91febb9ffe6a25d6d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.app.manager.lifecycle_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:com.ibm.ws.app.manager.lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lifecycle:com.ibm.ws.app.manager.lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:com.ibm.ws.app.manager.lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:com.ibm.ws.app.manager.lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.app.manager.lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.lifecycle:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.app.manager.lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lifecycle:lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lifecycle:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lifecycle:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lifecycle:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:lifecycle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.app.manager.lifecycle@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.app.manager.module + +PackageName: com.ibm.ws.app.manager.module +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.module-b83da2c1a8fe06d1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f8f3fd86742508ba42ad1780f7d79aef33397870 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.app.manager.module_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.module:com.ibm.ws.app.manager.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.module:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:com.ibm.ws.app.manager.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:com.ibm.ws.app.manager.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:com.ibm.ws.app.manager.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.module:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.app.manager.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.app.manager.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.app.manager.module@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.app.manager.ready + +PackageName: com.ibm.ws.app.manager.ready +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.ready-098086dd3d8df3a3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 70e31f6be9efd51d477ebe976b5ca24983657375 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.app.manager.ready_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.ready:com.ibm.ws.app.manager.ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:AppManagerActivator:com.ibm.ws.app.manager.ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.ready:AppManagerActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:AppManagerActivator:AppManagerActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.ready:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:com.ibm.ws.app.manager.ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.ready:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:com.ibm.ws.app.manager.ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:com.ibm.ws.app.manager.ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.ready:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.app.manager.ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.ready:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.app.manager.ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:AppManagerActivator:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:AppManagerActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:AppManagerActivator:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:AppManagerActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:AppManagerActivator:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:AppManagerActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:AppManagerActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:AppManagerActivator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:AppManagerActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.app.manager.ready@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.app.manager.wab.jakarta + +PackageName: com.ibm.ws.app.manager.wab.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.wab.jakarta-99f6997896fda028 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f83ec61cc677221dce99dc52ef2795d1c3eb2e8e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.app.manager.wab.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:com.ibm.ws.app.manager.wab.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.app.manager.wab.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:com.ibm.ws.app.manager.wab.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:com.ibm.ws.app.manager.wab.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.app.manager.wab.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:com.ibm.ws.app.manager.wab.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.wab.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.app.manager.wab.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.app.manager.wab.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.app.manager.war.jakarta + +PackageName: com.ibm.ws.app.manager.war.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.war.jakarta-2c425a89cc925a53 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 810d2b51234a2521d0896ad567abb9e53689ca2a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.app.manager.war.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:com.ibm.ws.app.manager.war.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.app.manager.war.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:com.ibm.ws.app.manager.war.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:com.ibm.ws.app.manager.war.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:war:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.app.manager.war.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:war:com.ibm.ws.app.manager.war.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.app.manager.war.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.app.manager.war.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:war:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:war:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:war:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:war:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:war:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:war:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:war:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:war:war:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:app:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:war:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:app:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:war:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.app.manager.war.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact + +PackageName: com.ibm.ws.artifact +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact-b7b24dc61fcbabde +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6a60943d1782a8ffce61724d22891eff3448781f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact:com.ibm.ws.artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact.bundle + +PackageName: com.ibm.ws.artifact.bundle +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact.bundle-7ca57299f4ce7827 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 87808dbc1c4d91bde56ef7a6b06a720328ac22ca +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact.bundle_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.bundle:com.ibm.ws.artifact.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.bundle:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:com.ibm.ws.artifact.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.bundle:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.bundle:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact.bundle@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact.equinox.module + +PackageName: com.ibm.ws.artifact.equinox.module +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact.equinox.module-95cb364cc6fdeb96 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6a1ba35594c64de9f967ecc3caab82be018ea9ad +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact.equinox.module_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.equinox.module:com.ibm.ws.artifact.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.equinox.module:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.equinox.module:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:com.ibm.ws.artifact.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.equinox.module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:com.ibm.ws.artifact.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.equinox.module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact.equinox.module@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact.file + +PackageName: com.ibm.ws.artifact.file +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact.file-98f364289079cd2b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: bcef01bab2137650f4229529933840c63a993ff5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact.file_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.file:com.ibm.ws.artifact.file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact.file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.file:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.file:file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file:com.ibm.ws.artifact.file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact.file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.file:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact.file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file:file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:file:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact.file@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact.loose + +PackageName: com.ibm.ws.artifact.loose +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact.loose-dcb472bff679f387 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ed814cf093242a965833088f83f0cc85cb578f95 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact.loose_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.loose:com.ibm.ws.artifact.loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact.loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.loose:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.loose:loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:loose:com.ibm.ws.artifact.loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact.loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.loose:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact.loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:loose:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:loose:loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:loose:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:loose:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact.loose@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact.overlay + +PackageName: com.ibm.ws.artifact.overlay +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact.overlay-52e797606b454ca3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 69f1715b4752ad7d854c1a296d74170715a1ecfb +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact.overlay_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.overlay:com.ibm.ws.artifact.overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact.overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.overlay:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.overlay:overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:overlay:com.ibm.ws.artifact.overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact.overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.overlay:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact.overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:overlay:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:overlay:overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:overlay:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:overlay:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact.overlay@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact.url + +PackageName: com.ibm.ws.artifact.url +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact.url-e2baf4271fb4cdcb +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: b80f512680f02c03db3e4004be29e4a1c084b53d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact.url_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.url:com.ibm.ws.artifact.url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact.url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.url:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.url:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact.url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:com.ibm.ws.artifact.url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.url:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact.url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact.url@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.artifact.zip + +PackageName: com.ibm.ws.artifact.zip +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.artifact.zip-327efb05b0ed769a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 44c3d7f17c62fcd3d7cca56f2340fcf1c0bf2058 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.artifact.zip_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.zip:com.ibm.ws.artifact.zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:com.ibm.ws.artifact.zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.zip:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.zip:zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.artifact.zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:zip:com.ibm.ws.artifact.zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.artifact.zip:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.artifact.zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:zip:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:artifact:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:artifact:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:zip:zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:zip:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:zip:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.artifact.zip@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.cdi.interfaces.jakarta + +PackageName: com.ibm.ws.cdi.interfaces.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.cdi.interfaces.jakarta-04ae30f55385e266 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 707282d02a0e30962a3fe0aa57884a3cd85b675d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.cdi.interfaces.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:com.ibm.ws.cdi.interfaces.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:com.ibm.ws.cdi.interfaces.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.cdi.interfaces.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:com.ibm.ws.cdi.interfaces.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.cdi.interfaces.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.interfaces.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.cdi.interfaces.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.cdi.interfaces.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.cdi.internal.jakarta + +PackageName: com.ibm.ws.cdi.internal.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.cdi.internal.jakarta-b074d85e1d289f1c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 5a54d849651ccd7e8643925e45127a19eb1bd11e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.cdi.internal.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:com.ibm.ws.cdi.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:com.ibm.ws.cdi.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.cdi.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:com.ibm.ws.cdi.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.cdi.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.internal.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.cdi.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.cdi.internal.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.cdi.jndi.jakarta + +PackageName: com.ibm.ws.cdi.jndi.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.cdi.jndi.jakarta-5828db872bd83d8d +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6cf45d5a10498c8f8bf097f02b6fe37136e09ff2 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.cdi.jndi.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:com.ibm.ws.cdi.jndi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.cdi.jndi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:com.ibm.ws.cdi.jndi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:com.ibm.ws.cdi.jndi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.cdi.jndi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.jndi.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.cdi.jndi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.cdi.jndi.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.cdi.transaction.jakarta + +PackageName: com.ibm.ws.cdi.transaction.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.cdi.transaction.jakarta-cca3ac184a383b1a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 73f0c09c9ffe1b2f5f677e7a0491bd9310b387a3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.cdi.transaction.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:com.ibm.ws.cdi.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:com.ibm.ws.cdi.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.cdi.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:com.ibm.ws.cdi.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.cdi.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.transaction.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.cdi.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.cdi.transaction.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.cdi.web.jakarta + +PackageName: com.ibm.ws.cdi.web.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.cdi.web.jakarta-11311d79d2229e78 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3796194e175c833349c3b640397b59327ec06978 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.cdi.web.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:com.ibm.ws.cdi.web.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.cdi.web.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:com.ibm.ws.cdi.web.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.cdi.web.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:com.ibm.ws.cdi.web.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.web.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.cdi.web.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.cdi.web.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.cdi.weld.jakarta + +PackageName: com.ibm.ws.cdi.weld.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.cdi.weld.jakarta-3fb2f035da57ce2b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 9fec55d2765020b02a0a6166940356aafa32a83f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.cdi.weld.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:com.ibm.ws.cdi.weld.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.cdi.weld.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:com.ibm.ws.cdi.weld.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:com.ibm.ws.cdi.weld.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.cdi.weld.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.cdi.weld.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.cdi.weld.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.cdi.weld.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.channel.ssl + +PackageName: com.ibm.ws.channel.ssl +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.channel.ssl-8d1607111dc76bf7 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 79d3e97c3b0e526cdb94c9f61176539f742347e2 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.channel.ssl_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.channel.ssl:com.ibm.ws.channel.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:channel:com.ibm.ws.channel.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.channel.ssl:channel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.channel.ssl:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.channel.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:com.ibm.ws.channel.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.channel.ssl:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.channel.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:channel:channel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:channel:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:channel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:channel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:channel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:channel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.channel.ssl@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.channelfw + +PackageName: com.ibm.ws.channelfw +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.channelfw-66b968e18db97e3f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8b4330389e02a9bef597fa05001cfa4dacf31e5b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.channelfw_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.channelfw:com.ibm.ws.channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:channelfw:com.ibm.ws.channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.channelfw:channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.channelfw:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:channelfw:channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:channelfw:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:channelfw:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.channelfw@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.classloader.context + +PackageName: com.ibm.ws.classloader.context +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.classloader.context-cef214e61d25941e +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f606207cab89407ff74a4d85445c326022b69ca5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.classloader.context_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloader.context:com.ibm.ws.classloader.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloader:com.ibm.ws.classloader.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloader.context:classloader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloader.context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:com.ibm.ws.classloader.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.classloader.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloader.context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.classloader.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloader:classloader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloader:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:classloader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:classloader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:classloader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.classloader.context@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.classloading + +PackageName: com.ibm.ws.classloading +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.classloading-450cd0896f16afba +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ebc8cd298b700627159bdb43c4a3e07dba20c36d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.classloading_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloading:com.ibm.ws.classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:com.ibm.ws.classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloading:classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloading:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:classloading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.classloading@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.classloading.configuration + +PackageName: com.ibm.ws.classloading.configuration +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.classloading.configuration-bbede9faa7a4ef54 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: adc8b4fc9f11f71bbd839c43a12fe75f960990ff +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.classloading.configuration_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloading.configuration:com.ibm.ws.classloading.configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloading.configuration:configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:configuration:com.ibm.ws.classloading.configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:com.ibm.ws.classloading.configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloading.configuration:classloading:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.classloading.configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.classloading.configuration:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.classloading.configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:configuration:configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:configuration:classloading:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:classloading:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:configuration:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:classloading:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:configuration:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classloading:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:classloading:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.classloading.configuration@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.collector.manager + +PackageName: com.ibm.ws.collector.manager +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.collector.manager-a105a18389d8c866 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2e9cfbeaf33018ca0c4e0e2214e98cbee57da4e4 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.collector.manager_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.collector.manager:com.ibm.ws.collector.manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:collector:com.ibm.ws.collector.manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.collector.manager:collector:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.collector.manager:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:com.ibm.ws.collector.manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.collector.manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.collector.manager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.collector.manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:collector:collector:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:collector:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:collector:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:collector:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:collector:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:collector:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:manager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:manager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.collector.manager@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.config + +PackageName: com.ibm.ws.config +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.config-61e900efa362f9e1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ed9dcd3bf97a70589f9be530ff37918f4ad09e7f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.config_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:WSConfigActivator:WSConfigActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:WSConfigActivator:com.ibm.ws.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config:WSConfigActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config:com.ibm.ws.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:WSConfigActivator:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:WSConfigActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:com.ibm.ws.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:WSConfigActivator:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:WSConfigActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.ws.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:WSConfigActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:WSConfigActivator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:WSConfigActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.config@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.config.schemagen + +PackageName: com.ibm.ws.config.schemagen +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.config.schemagen-5b76b2736b884d7f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ed41eebf63c57874e6e5362fae30608f12c6f935 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.config.schemagen_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen:com.ibm.ws.config.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:com.ibm.ws.config.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.ws.config.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.config.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.config.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.config.schemagen@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.config.schemagen.schemagen + +PackageName: com.ibm.ws.config.schemagen.schemagen +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.config.schemagen.schemagen-1e60349c3d000cd5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-schemagen.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen.schemagen:com.ibm.ws.config.schemagen.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen.schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:com.ibm.ws.config.schemagen.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen.schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.ws.config.schemagen.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.config.schemagen.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.schemagen.schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.config.schemagen.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.config.schemagen.schemagen@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.config.server.schemagen + +PackageName: com.ibm.ws.config.server.schemagen +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen-94107ffafc593492 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: adccb56c996d148af7524e4bb3006d0388922c94 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.config.server.schemagen_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen:com.ibm.ws.config.server.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:com.ibm.ws.config.server.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.ws.config.server.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:com.ibm.ws.config.server.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.config.server.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.config.server.schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.config.server.schemagen@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.config.server.schemagen.serverschemagen + +PackageName: com.ibm.ws.config.server.schemagen.serverschemagen +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen.serverschemagen-1fed813f3c643120 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.config.server.schemagen_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.config.server.schemagen.serverschemagen@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.config.server.schemagen.serverschemagen + +PackageName: com.ibm.ws.config.server.schemagen.serverschemagen +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen.serverschemagen-216aa4500d7ed9bf +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-serverSchemagen.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.config.server.schemagen.serverschemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.config.server.schemagen.serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.config.server.schemagen.serverschemagen@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.container.service + +PackageName: com.ibm.ws.container.service +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.container.service-260b772a916e1f2e +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2fc2976818c703d940251e393cd313e1052e6f18 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.container.service_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.container.service:com.ibm.ws.container.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.container.service:container:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:container:com.ibm.ws.container.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.container.service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.ws.container.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.container.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.container.service:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.container.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:container:container:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:container:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:container:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:container:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:container:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:container:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.container.service@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.context + +PackageName: com.ibm.ws.context +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.context-922a1685924c2e6b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a33fb4001a9fc0c9b4cf1aa0040113f1a3fae140 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.context_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.context:com.ibm.ws.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:com.ibm.ws.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.context@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.crypto.certificate.creator.selfsigned + +PackageName: com.ibm.ws.crypto.certificate.creator.selfsigned +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.crypto.certificate.creator.selfsigned-cb1e6649f2a5d34a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 46f5176cac0a470384da8ef49f1abffacf54cfaf +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.crypto.certificate.creator.selfsigned_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificate:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:certificate:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:selfsigned:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:creator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:creator:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificate.creator.selfsigned:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.crypto.certificate.creator.selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificate:certificate:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificate:selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:selfsigned:certificate:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:selfsigned:selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificate:creator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:creator:certificate:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificate:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:creator:selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:certificate:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:selfsigned:creator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:selfsigned:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:creator:creator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:certificate:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificate:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:creator:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:creator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:certificate:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:selfsigned:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:selfsigned:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:creator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:creator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:creator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.crypto.certificate.creator.selfsigned@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.crypto.certificateutil + +PackageName: com.ibm.ws.crypto.certificateutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.crypto.certificateutil-12307a2b3786915d +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3098e9a70394588e389a80b261e537b6504027ea +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.crypto.certificateutil_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificateutil:com.ibm.ws.crypto.certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificateutil:com.ibm.ws.crypto.certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificateutil:certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificateutil:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:com.ibm.ws.crypto.certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.crypto.certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.certificateutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.crypto.certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificateutil:certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificateutil:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:certificateutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:certificateutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.crypto.certificateutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.crypto.ltpakeyutil + +PackageName: com.ibm.ws.crypto.ltpakeyutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.crypto.ltpakeyutil-4b995684ce6a3be1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 91864d56f938d69ba929148259e27d7024086e55 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.crypto.ltpakeyutil_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.ltpakeyutil:com.ibm.ws.crypto.ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.ltpakeyutil:ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpakeyutil:com.ibm.ws.crypto.ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.ltpakeyutil:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:com.ibm.ws.crypto.ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.crypto.ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.ltpakeyutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.crypto.ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpakeyutil:ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpakeyutil:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpakeyutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ltpakeyutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.crypto.ltpakeyutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.crypto.passwordutil + +PackageName: com.ibm.ws.crypto.passwordutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.crypto.passwordutil-459d93e4c1fee5fc +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7fb27157726ef854a9755100e9e3eab3a8420c8a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.crypto.passwordutil_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.passwordutil:com.ibm.ws.crypto.passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.passwordutil:passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:passwordutil:com.ibm.ws.crypto.passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.passwordutil:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:com.ibm.ws.crypto.passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.crypto.passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.crypto.passwordutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.crypto.passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:passwordutil:passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:passwordutil:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:passwordutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:passwordutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:crypto:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.crypto.passwordutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.diagnostics + +PackageName: com.ibm.ws.diagnostics +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.diagnostics-3ce69f18c6c57288 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 131b88bbbccfc7940b9ed770944297c55158a0a5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.diagnostics_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.diagnostics:com.ibm.ws.diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.diagnostics:diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:diagnostics:com.ibm.ws.diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.diagnostics:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:diagnostics:diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:diagnostics:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:diagnostics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.diagnostics@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.dynacache.monitor + +PackageName: com.ibm.ws.dynacache.monitor +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.dynacache.monitor-6d9200f29816f7ff +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: c28505e12e6e9203bcef51ba076c961a75c5e2f1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.dynacache.monitor_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynacache.monitor:com.ibm.ws.dynacache.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynacache.monitor:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynacache:com.ibm.ws.dynacache.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynacache.monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:com.ibm.ws.dynacache.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.dynacache.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynacache.monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.dynacache.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynacache:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynacache:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynacache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.dynacache.monitor@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.dynamic.bundle + +PackageName: com.ibm.ws.dynamic.bundle +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.dynamic.bundle-08d6cd9d800f0b92 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e8837556fb04232345cd2163494ad8998bfefd2f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.dynamic.bundle_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynamic.bundle:com.ibm.ws.dynamic.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynamic.bundle:dynamic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynamic:com.ibm.ws.dynamic.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:com.ibm.ws.dynamic.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynamic.bundle:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.dynamic.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.dynamic.bundle:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.dynamic.bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynamic:dynamic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:dynamic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynamic:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:dynamic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynamic:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:dynamic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bundle:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:bundle:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.dynamic.bundle@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.eba.wab.integrator + +PackageName: com.ibm.ws.eba.wab.integrator +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.eba.wab.integrator-e0f862f96f48f23e +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6eae03aab8984957c88c02f3ea317b913b8e65f3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.eba.wab.integrator_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.eba.wab.integrator:com.ibm.ws.eba.wab.integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.eba.wab.integrator:integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:integrator:com.ibm.ws.eba.wab.integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.eba.wab.integrator:eba:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.eba.wab.integrator:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eba:com.ibm.ws.eba.wab.integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.eba.wab.integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:com.ibm.ws.eba.wab.integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.eba.wab.integrator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.eba.wab.integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:integrator:integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eba:integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:integrator:eba:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:integrator:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:integrator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:integrator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eba:eba:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eba:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:eba:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:eba:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eba:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wab:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:eba:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:wab:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.eba.wab.integrator@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.event + +PackageName: com.ibm.ws.event +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.event-9764d1dd8f849ae9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 9fa2525a26da1c89c9dbbddafa6b9e60e0c5576f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.event_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.event:com.ibm.ws.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.event:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:com.ibm.ws.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.event:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.event@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.http.plugin.merge + +PackageName: com.ibm.ws.http.plugin.merge +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.http.plugin.merge-bc7d4d738b60c216 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e78542a4a0b0009b383c171bb236eeaca49e0fd9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.http.plugin.merge_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.http.plugin.merge:com.ibm.ws.http.plugin.merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.http.plugin.merge:merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:merge:com.ibm.ws.http.plugin.merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.http.plugin.merge:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:com.ibm.ws.http.plugin.merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.http.plugin.merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.http.plugin.merge:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.http.plugin.merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:merge:merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:merge:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:merge:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:merge:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.http.plugin.merge@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.injection.jakarta + +PackageName: com.ibm.ws.injection.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.injection.jakarta-b9aa8a8ead0ffdfa +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 14b44244f250327554ea3dc38af3d1f4c4c8859f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.injection.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.injection.jakarta:com.ibm.ws.injection.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.injection.jakarta:injection:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:injection:com.ibm.ws.injection.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.injection.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.injection.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.injection.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.injection.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.injection.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:injection:injection:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:injection:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:injection:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:injection:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:injection:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:injection:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.injection.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.install + +PackageName: com.ibm.ws.install +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.install-0ae3e531f18a4587 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d8fade8419b39721d27ca64513b3955228281714 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.install_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install:com.ibm.ws.install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:com.ibm.ws.install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.install@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.install.featureUtility + +PackageName: com.ibm.ws.install.featureUtility +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.install.featureUtility-4071c9e1c073c1e5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: dde3b4ff525794450bf35356ffbacca9dadcb5b8 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.install.featureUtility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility:com.ibm.ws.install.featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:com.ibm.ws.install.featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:com.ibm.ws.install.featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.install.featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.install.featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.install.featureUtility@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.install.featureUtility.featureutil + +PackageName: com.ibm.ws.install.featureUtility.featureutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.install.featureUtility.featureutil-8baec303d4720fdf +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-featureUtility.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:com.ibm.ws.install.featureUtility.featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:com.ibm.ws.install.featureUtility.featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:com.ibm.ws.install.featureUtility.featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:com.ibm.ws.install.featureUtility.featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.install.featureUtility.featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.featureUtility.featureutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.install.featureUtility.featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.install.featureUtility.featureutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.install.map + +PackageName: com.ibm.ws.install.map +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.install.map-48c15cc676df1319 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 81d8efd11749c738f9d9155f22c5c700052a25f4 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.install.map_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.map:com.ibm.ws.install.map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.map:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:com.ibm.ws.install.map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.map:map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.install.map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:map:com.ibm.ws.install.map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.install.map:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.install.map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:map:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:map:map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:map:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:map:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.install.map@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.dd + +PackageName: com.ibm.ws.javaee.dd +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd-bf6dfa85944c5918 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1b42bbedb516310c86dfc0786f628af3f78de232 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.dd_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd:com.ibm.ws.javaee.dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd:dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:com.ibm.ws.javaee.dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:dd:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.dd@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.dd.common + +PackageName: com.ibm.ws.javaee.dd.common +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd.common-16857c35ba5e7e3a +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d231f31772fc9ac43272ed4c823f01a7b9bf516a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.dd.common_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.common:com.ibm.ws.javaee.dd.common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.common:common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.common:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:com.ibm.ws.javaee.dd.common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.dd.common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.dd.common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.common:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.common:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:com.ibm.ws.javaee.dd.common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.dd.common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:common:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.dd.common@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.dd.ejb + +PackageName: com.ibm.ws.javaee.dd.ejb +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd.ejb-7dcf65ebe120bcf4 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cca675369ef342feb230068753b6f08c1d763c1b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.dd.ejb_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:com.ibm.ws.javaee.dd.ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.dd.ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ejb:com.ibm.ws.javaee.dd.ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.dd.ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.dd.ejb:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:com.ibm.ws.javaee.dd.ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.dd.ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ejb:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ejb:ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ejb:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ejb:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ejb:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dd:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:dd:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.dd.ejb@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.ddmodel + +PackageName: com.ibm.ws.javaee.ddmodel +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.ddmodel-0e8d48788588149a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ba9034eb7407669a9a5bee89b8c06e9b56fd382f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.ddmodel_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.ddmodel:com.ibm.ws.javaee.ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.ddmodel:ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ddmodel:com.ibm.ws.javaee.ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.ddmodel:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.ddmodel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ddmodel:ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ddmodel:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ddmodel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ddmodel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.ddmodel@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.metadata.context + +PackageName: com.ibm.ws.javaee.metadata.context +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.metadata.context-5ca4d7a2c0d58f0f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8b1ffeacccf6dcbb6d9cf9d34b8d48d2aaa858dd +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.metadata.context_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.metadata.context:com.ibm.ws.javaee.metadata.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.metadata.context:metadata:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metadata:com.ibm.ws.javaee.metadata.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.metadata.context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:com.ibm.ws.javaee.metadata.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.metadata.context:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.metadata.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.metadata.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.metadata.context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.metadata.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metadata:metadata:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:metadata:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metadata:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:metadata:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metadata:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:metadata:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metadata:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:metadata:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.metadata.context@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.platform.defaultresource + +PackageName: com.ibm.ws.javaee.platform.defaultresource +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.defaultresource-007af3d81d7f48a8 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0c5936055672ba7d017ebc92e5c1f996f0034dc6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.defaultresource_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:com.ibm.ws.javaee.platform.defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultresource:com.ibm.ws.javaee.platform.defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:com.ibm.ws.javaee.platform.defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.platform.defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.platform.defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.defaultresource:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.platform.defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultresource:defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultresource:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultresource:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultresource:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:defaultresource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.platform.defaultresource@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.platform.v7 + +PackageName: com.ibm.ws.javaee.platform.v7 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v7-da0ec5e73a05a42c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 86eb441f639747dec5ec94c3f5a7bf0155a07d71 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v7_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7:com.ibm.ws.javaee.platform.v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:com.ibm.ws.javaee.platform.v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.platform.v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.platform.v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:com.ibm.ws.javaee.platform.v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.platform.v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.platform.v7@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.platform.v7.jndi + +PackageName: com.ibm.ws.javaee.platform.v7.jndi +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v7.jndi-8041251ba24ed52a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8b924b2223dfe014534881cca16ec0fa995967d9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v7.jndi_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:com.ibm.ws.javaee.platform.v7.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:com.ibm.ws.javaee.platform.v7.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.platform.v7.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:com.ibm.ws.javaee.platform.v7.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.platform.v7.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v7.jndi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:com.ibm.ws.javaee.platform.v7.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.platform.v7.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v7:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:v7:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.platform.v7.jndi@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.platform.v8 + +PackageName: com.ibm.ws.javaee.platform.v8 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v8-6a88cbf3eaed3be1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 5ec20ee7f80fd0d7c0a0cf9152e935f9a8b0ce36 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.platform.v8_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v8:com.ibm.ws.javaee.platform.v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v8:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:com.ibm.ws.javaee.platform.v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v8:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.platform.v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.platform.v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v8:v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.platform.v8:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v8:com.ibm.ws.javaee.platform.v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.platform.v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v8:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v8:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v8:v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v8:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:v8:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.platform.v8@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.javaee.version + +PackageName: com.ibm.ws.javaee.version +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.javaee.version-f3a507f45bcb3758 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: c58d78c82c794150287d7968354a3a60352e1107 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.javaee.version_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.version:com.ibm.ws.javaee.version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.version:version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:version:com.ibm.ws.javaee.version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.version:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:com.ibm.ws.javaee.version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.javaee.version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.javaee.version:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.javaee.version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:version:version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:version:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:version:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:version:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:javaee:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:javaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.javaee.version@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.jaxrs.2.x.config + +PackageName: com.ibm.ws.jaxrs.2.x.config +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.2.x.config-09182df796a8cd3c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 83f3bd720a563132fdc7b702d54cdba4d024c661 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.jaxrs.2.x.config_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:com.ibm.ws.jaxrs.2.x.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:com.ibm.ws.jaxrs.2.x.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:com.ibm.ws.jaxrs.2.x.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.jaxrs.2.x.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.jaxrs.2.x.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:com.ibm.ws.jaxrs.2.x.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.config:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:com.ibm.ws.jaxrs.2.x.config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.jaxrs.2.x.config@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.jaxrs.2.x.monitor.jakarta + +PackageName: com.ibm.ws.jaxrs.2.x.monitor.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.2.x.monitor.jakarta-faa672b91802dbce +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: bdba4122f438eca8b99d04899f2dfce2320fded9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.jaxrs.2.x.monitor.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.2.x.monitor.jakarta:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:com.ibm.ws.jaxrs.2.x.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:x:x:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.jaxrs.2.x.monitor.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta + +PackageName: com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta-b09eadc72583ddc7 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 599dd5265c45a80af0d3c9be718781e23979106f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:defaultexceptionmapper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultexceptionmapper:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultexceptionmapper:defaultexceptionmapper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultexceptionmapper:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:defaultexceptionmapper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultexceptionmapper:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:defaultexceptionmapper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:defaultexceptionmapper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:defaultexceptionmapper:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:defaultexceptionmapper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jaxrs:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.jmx + +PackageName: com.ibm.ws.jmx +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.jmx-191229ab7f2a419b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0944b9275ed825163d6d9245e1fd99c473872a28 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.jmx_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jmx:com.ibm.ws.jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jmx:jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jmx:com.ibm.ws.jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jmx:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jmx:jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jmx:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.jmx@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.jndi + +PackageName: com.ibm.ws.jndi +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.jndi-104523a570fd0157 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7479b709a730372b384a301463a61ba6f6485752 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.jndi_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JNDIServiceBinderManager:JNDIServiceBinderManager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JNDIServiceBinderManager:com.ibm.ws.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi:JNDIServiceBinderManager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JNDIServiceBinderManager:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:JNDIServiceBinderManager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi:com.ibm.ws.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JNDIServiceBinderManager:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:JNDIServiceBinderManager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:JNDIServiceBinderManager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JNDIServiceBinderManager:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:JNDIServiceBinderManager:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:com.ibm.ws.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:com.ibm.ws.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.jndi@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.jndi.url.contexts + +PackageName: com.ibm.ws.jndi.url.contexts +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.jndi.url.contexts-82055f4f911ddd86 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: bc5b4026a224bba4fbd8bc81a7f8d258d5b1e2e4 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.jndi.url.contexts_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi.url.contexts:com.ibm.ws.jndi.url.contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi.url.contexts:contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:contexts:com.ibm.ws.jndi.url.contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi.url.contexts:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:com.ibm.ws.jndi.url.contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi.url.contexts:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.jndi.url.contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:com.ibm.ws.jndi.url.contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jndi.url.contexts:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.jndi.url.contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:contexts:contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:contexts:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:contexts:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:contexts:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:contexts:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jndi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jndi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:url:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:url:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.jndi.url.contexts@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.jsonb.service + +PackageName: com.ibm.ws.jsonb.service +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.jsonb.service-9834690d13a040c2 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: db2f63951b86c52c19beee3ad5f56d7e6eb7ab46 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.jsonb.service_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jsonb.service:com.ibm.ws.jsonb.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jsonb.service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.ws.jsonb.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jsonb.service:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:com.ibm.ws.jsonb.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.jsonb.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.jsonb.service:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.jsonb.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.jsonb.service@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.boot + +PackageName: com.ibm.ws.kernel.boot +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot-38c971b780108cd4 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3e81cbfe7bc3b7cc4a2e45cbbe0c35d8e7438345 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.boot_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot:com.ibm.ws.kernel.boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.boot@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.boot.archive + +PackageName: com.ibm.ws.kernel.boot.archive +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.archive-a0bf24de56dfbcf3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d80d467c2833bf5a305875ebba806d0da0e91261 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.boot.archive_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.archive:com.ibm.ws.kernel.boot.archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:archive:com.ibm.ws.kernel.boot.archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.archive:archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.archive:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot.archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.archive:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.archive:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot.archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:archive:archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:archive:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:archive:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:archive:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:archive:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.boot.archive@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.boot.ws-launch + +PackageName: com.ibm.ws.kernel.boot.ws-launch +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-launch-b56eff31af2b3397 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/ws-launch.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-launch:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-launch:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_launch:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_launch:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-launch:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-launch:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_launch:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_launch:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-launch:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_launch:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-launch:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_launch:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-launch:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_launch:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot.ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot.ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.boot.ws-launch@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.boot.ws-server + +PackageName: com.ibm.ws.kernel.boot.ws-server +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-server-05c89cd1d469dd04 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-server.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.boot.ws-server@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.boot.ws-server + +PackageName: com.ibm.ws.kernel.boot.ws-server +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-server-cba6c2753995ba98 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.boot_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws-server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws_server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot.ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.boot.ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.boot.ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.boot.ws-server@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.cmdline + +PackageName: com.ibm.ws.kernel.cmdline +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.cmdline-81359e29cf6d4224 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: b4176bb0a0451c80e079cc7a72efdee5a86d8ea7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.cmdline_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.cmdline:com.ibm.ws.kernel.cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cmdline:com.ibm.ws.kernel.cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.cmdline:cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.cmdline:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.cmdline:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cmdline:cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cmdline:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cmdline:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cmdline:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.cmdline@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.equinox.module + +PackageName: com.ibm.ws.kernel.equinox.module +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.equinox.module-3c7f2e9024265206 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f9115ed053e9a0fd852ba50c14ff323cbc1f42c6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.equinox.module_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.equinox.module:com.ibm.ws.kernel.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.equinox.module:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:com.ibm.ws.kernel.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.equinox.module:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.equinox.module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:com.ibm.ws.kernel.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.equinox.module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.equinox.module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:module:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:module:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.equinox.module@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.feature + +PackageName: com.ibm.ws.kernel.feature +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.feature-892614febcd1ae20 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1328d667bb69d439428b63fa26a6bc31526610f5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.feature_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature:com.ibm.ws.kernel.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:com.ibm.ws.kernel.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.feature@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.feature.featurelist + +PackageName: com.ibm.ws.kernel.feature.featurelist +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.feature.featurelist-7eec3f00c5332c79 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-featurelist.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature.featurelist:com.ibm.ws.kernel.feature.featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature.featurelist:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:com.ibm.ws.kernel.feature.featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature.featurelist:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:com.ibm.ws.kernel.feature.featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature.featurelist:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.feature.featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.feature.featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.feature.featurelist:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.feature.featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.feature.featurelist@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.filemonitor + +PackageName: com.ibm.ws.kernel.filemonitor +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.filemonitor-87273f3743c0754c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 98c2a840c33aef513e13bfbcc9b2a018265cc2c9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.filemonitor_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.filemonitor:com.ibm.ws.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.filemonitor:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:com.ibm.ws.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.filemonitor:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.filemonitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filemonitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:filemonitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.filemonitor@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.instrument.check + +PackageName: com.ibm.ws.kernel.instrument.check +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.instrument.check-04ae0a0c5ffc5c19 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-javaagent.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.instrument.check@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.instrument.check + +PackageName: com.ibm.ws.kernel.instrument.check +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.instrument.check-4a71efdb15f8f29b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/bootstrap-agent.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.instrument.check:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.instrument.check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.instrument.check@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.metatype.helper + +PackageName: com.ibm.ws.kernel.metatype.helper +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.metatype.helper-22148fb06e54b25c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: feafb1eaa7cc93127d381c718b6f93c82412ff56 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.metatype.helper_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:com.ibm.ws.kernel.metatype.helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:com.ibm.ws.kernel.metatype.helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:helper:com.ibm.ws.kernel.metatype.helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.metatype.helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.metatype.helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.metatype.helper:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.metatype.helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:helper:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:helper:helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:helper:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:helper:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:helper:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.metatype.helper@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.kernel.service + +PackageName: com.ibm.ws.kernel.service +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.kernel.service-eaf511615c27e802 +PackageVersion: 1.3.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a954f54b7a8d86271ac76f882a20e2c4d56f23b1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.service_1.3.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.service:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.service:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.service:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.service:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:location:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.service:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.service:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.kernel.service:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.kernel.service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:location:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:location:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:location:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:location:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:location:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:Activator:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:location:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:internal:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:location:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:service:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.kernel.service@1.3.81.cl230920230904-1158 + +##### Package: com.ibm.ws.logging + +PackageName: com.ibm.ws.logging +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.logging-f5f0aa8c366d2ac0 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e652214e91a36c411cebd9fcb588774d130dcd09 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.logging_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging:com.ibm.ws.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:com.ibm.ws.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.logging@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.logging.hpel + +PackageName: com.ibm.ws.logging.hpel +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel-0ab750de1add5f0e +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f46d0284ebc56ce89103bfecfab6aaf3ea4edb26 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.logging.hpel_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel:com.ibm.ws.logging.hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:com.ibm.ws.logging.hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:com.ibm.ws.logging.hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.logging.hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.logging.hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.logging.hpel@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.logging.hpel.binarylogviewer + +PackageName: com.ibm.ws.logging.hpel.binarylogviewer +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel.binarylogviewer-c2f211fa6a49c56b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-binarylogviewer.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:com.ibm.ws.logging.hpel.binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:com.ibm.ws.logging.hpel.binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:com.ibm.ws.logging.hpel.binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:com.ibm.ws.logging.hpel.binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.logging.hpel.binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.binarylogviewer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.logging.hpel.binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.logging.hpel.binarylogviewer@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.logging.hpel.osgi + +PackageName: com.ibm.ws.logging.hpel.osgi +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel.osgi-65135ef5c209f133 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: fc3b71545ec11b337bd6f622e2a2e92206cae7ad +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.logging.hpel.osgi_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.hpel.osgi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.logging.hpel.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.logging.hpel.osgi@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.logging.osgi + +PackageName: com.ibm.ws.logging.osgi +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.logging.osgi-54f6582cba8dbf38 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2798d6848592ac5ee89747414916f647ef2e42b5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.logging.osgi_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.osgi:com.ibm.ws.logging.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:com.ibm.ws.logging.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.osgi:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.osgi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:com.ibm.ws.logging.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.osgi:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:com.ibm.ws.logging.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.ws.logging.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.logging.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.logging.osgi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.logging.osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.logging.osgi@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.managedobject + +PackageName: com.ibm.ws.managedobject +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.managedobject-1981498e7cecd9ca +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: c892fccd3a949b404a69a577e51af296ffa8de53 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.managedobject_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.managedobject:com.ibm.ws.managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.managedobject:managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:managedobject:com.ibm.ws.managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.managedobject:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:managedobject:managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:managedobject:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:managedobject:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.managedobject@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.management.security + +PackageName: com.ibm.ws.management.security +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.management.security-e1a35fbc676a3bb4 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 770029fb294b37c0bd3aaec00567b61ac55bcebf +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.management.security_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.management.security:com.ibm.ws.management.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.management.security:management:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:management:com.ibm.ws.management.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.management.security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.management.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.management.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.management.security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.management.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:management:management:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:management:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:management:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:management:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:management:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:management:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.management.security@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.microprofile.metrics.common + +PackageName: com.ibm.ws.microprofile.metrics.common +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.microprofile.metrics.common-5269865d0e23c8d4 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e884c4262bc6c2de6c8c5e4a5935f2790ffbff7a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.microprofile.metrics.common_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:com.ibm.ws.microprofile.metrics.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:com.ibm.ws.microprofile.metrics.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:com.ibm.ws.microprofile.metrics.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:com.ibm.ws.microprofile.metrics.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.microprofile.metrics.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.microprofile.metrics.common:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.microprofile.metrics.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.microprofile.metrics.common@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.monitor + +PackageName: com.ibm.ws.monitor +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.monitor-c6fe46100ac575fb +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 5e5d6e3effdaca52b4954e1c0ba2cf282268308d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.monitor_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.monitor:com.ibm.ws.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:com.ibm.ws.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.monitor@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.aries.jmx.api + +PackageName: com.ibm.ws.org.apache.aries.jmx.api +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jmx.api-7978c68156986b68 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 87797273bc0d311d1425a39873fa4562b672aa62 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jmx.api_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.jmx.api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:aries:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.aries.jmx.api@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.aries.jmx.core.whiteboard + +PackageName: com.ibm.ws.org.apache.aries.jmx.core.whiteboard +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jmx.core.whiteboard-d024df8930f6e14c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 02be1bb97f699eac6f621d9ef90b5d8f3e0d1511 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jmx.core.whiteboard_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.jmx.core.whiteboard:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:whiteboard:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:aries:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:core:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:jmx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.aries.jmx.core.whiteboard@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.aries.jndi.api + +PackageName: com.ibm.ws.org.apache.aries.jndi.api +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jndi.api-577ed84398f4dabd +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7c5c1bf34d9c83cae3453f779b4402c48405ca76 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jndi.api_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.jndi.api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:aries:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:jndi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:api:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.aries.jndi.api@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.aries.jndi.core + +PackageName: com.ibm.ws.org.apache.aries.jndi.core +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jndi.core-52167c6e9be82da5 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f1c7a9554d7039b0508f4cf7233ef3c66eb60991 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.jndi.core_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.jndi.core:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:Activator:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:startup:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:aries:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:core:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:jndi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.aries.jndi.core@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.aries.util + +PackageName: com.ibm.ws.org.apache.aries.util +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.util-7253c13a1b5cf358 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0acf243201841b703a3f11d08ff72613ba20b2b8 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.aries.util_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.aries.util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:aries:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:util:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.aries.util@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.commons.fileupload.jakarta + +PackageName: com.ibm.ws.org.apache.commons.fileupload.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.fileupload.jakarta-d64e9df37e550aa3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 972d3e751ffbf003d9125716811807d6f7349fb9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.fileupload.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-https---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.commons.fileupload.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:fileupload:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:commons:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.commons.fileupload.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.commons.io + +PackageName: com.ibm.ws.org.apache.commons.io +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.io-810c3481a6caaad2 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 577f25f5ad7e9cdf27721354148f28be101c0375 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.io_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-https---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.commons.io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:commons:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.commons.io@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.commons.lang3 + +PackageName: com.ibm.ws.org.apache.commons.lang3 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.lang3-052888805a0ba73d +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: c8913294bb3f020341dc835da4ef064a1da9cc92 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.commons.lang3_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-https---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.commons.lang3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:commons:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:lang3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.commons.lang3@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.felix.scr + +PackageName: com.ibm.ws.org.apache.felix.scr +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.felix.scr-b877b2749da70824 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: b1545286bd71bcbd006424683934b6d7f1e23fea +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.felix.scr_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-https---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.felix.scr:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:felix:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:scr:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.felix.scr@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.apache.httpcomponents + +PackageName: com.ibm.ws.org.apache.httpcomponents +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.httpcomponents-0838e8dbedcbabcb +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 838e1d8fc7af7bbd427f3b4aa790341d6fc3e08e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.apache.httpcomponents_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:com.ibm.ws.org.apache.httpcomponents:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:httpcomponents:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.apache.httpcomponents@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.eclipse.equinox.coordinator + +PackageName: com.ibm.ws.org.eclipse.equinox.coordinator +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.coordinator-cae4dfa1a0a38c81 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ca3f84c36a220233e7a43e61a990ca4143523479 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.coordinator_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.coordinator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.eclipse.equinox.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.eclipse.equinox.coordinator@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.eclipse.equinox.metatype + +PackageName: com.ibm.ws.org.eclipse.equinox.metatype +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.metatype-e23255d2a858b2a3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6cea00593e57d2e7fdab985963a89c65f2d0a01d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.metatype_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.metatype:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.eclipse.equinox.metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.eclipse.equinox.metatype@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.eclipse.equinox.region + +PackageName: com.ibm.ws.org.eclipse.equinox.region +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.region-a2e99083c724d408 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 295fa2ba9e087d4536925b845af42d08616542af +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.eclipse.equinox.region_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:com.ibm.ws.org.eclipse.equinox.region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:com.ibm.ws.org.eclipse.equinox.region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:com.ibm.ws.org.eclipse.equinox.region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:region:com.ibm.ws.org.eclipse.equinox.region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.eclipse.equinox.region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.eclipse.equinox.region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.eclipse.equinox.region:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.eclipse.equinox.region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:region:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:region:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:region:region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:region:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:equinox:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:region:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:region:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.eclipse.equinox.region@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.glassfish.json.1.0 + +PackageName: com.ibm.ws.org.glassfish.json.1.0 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.glassfish.json.1.0-200bede0300ec3f9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 342ca4abd03ac9b90c0dbb87a402bf3687555ef7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.glassfish.json.1.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-https---glassfish.java.net-public-CDDL-GPL-1-1.html +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.ws.org.glassfish.json.1.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.glassfish.json.1.0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:json:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.glassfish.json.1.0@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.jboss.jandex + +PackageName: com.ibm.ws.org.jboss.jandex +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.jandex-c79f42367d823002 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 387f1384aa0d8d127bf4a9202d2f9cdc800a915b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.jboss.jandex_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jandex:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jandex:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jandex:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jandex:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jandex:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jandex:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.jboss.jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jandex:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jandex:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jandex:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jandex:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jandex:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.jboss.jandex@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.jboss.jdeparser.1.0.0 + +PackageName: com.ibm.ws.org.jboss.jdeparser.1.0.0 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.jdeparser.1.0.0-1aa60d6e4bfef0f5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d4717a86dde79200c5702981b2e087536ba75268 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.jboss.jdeparser.1.0.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdeparser:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.ws.org.jboss.jdeparser.1.0.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.jdeparser.1.0.0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdeparser:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdeparser:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdeparser:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdeparser:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jdeparser:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdeparser:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdeparser:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.jboss.jdeparser.1.0.0@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.jboss.logging + +PackageName: com.ibm.ws.org.jboss.logging +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.logging-8dc23917d07e91e9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: efa069f0f8a8e5cbbc2312d04cacdc4f30582cc7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.jboss.logging_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.logging:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.logging:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.logging:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.jboss.logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.jboss.logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.jboss.logging@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.joda.time.1.6.2 + +PackageName: com.ibm.ws.org.joda.time.1.6.2 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.joda.time.1.6.2-5a454c453f632e06 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6156878b15c26c23c94aa4ba423cab443182a509 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.joda.time.1.6.2_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Apache-2.0 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:com.ibm.ws.org.joda.time.1.6.2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.joda.time.1.6.2:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda-org:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda_org:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:joda:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:time:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:joda:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:time:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.joda.time.1.6.2@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.objectweb.asm + +PackageName: com.ibm.ws.org.objectweb.asm +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.objectweb.asm-27b96bbbf02de19c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 55933bb3f2def54f6804c8e4f51683abb00e7a4b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.objectweb.asm_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-3-Clause-link-https---asm.ow2.io-LICENSE.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.objectweb.asm:com.ibm.ws.org.objectweb.asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.objectweb.asm:objectweb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:objectweb:com.ibm.ws.org.objectweb.asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:asm:com.ibm.ws.org.objectweb.asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.objectweb.asm:asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.objectweb.asm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.objectweb.asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.objectweb.asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.objectweb.asm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.objectweb.asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:objectweb:objectweb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:asm:objectweb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:objectweb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:objectweb:asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:objectweb:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:objectweb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:objectweb:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:objectweb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:asm:asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:asm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:asm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:asm:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.objectweb.asm@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.slf4j.api + +PackageName: com.ibm.ws.org.slf4j.api +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.slf4j.api-bf59116b0f585960 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a0b5aa45993405bdb23e9fc9cd57cbaad7f6f60f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.slf4j.api_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.api:com.ibm.ws.org.slf4j.api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.api:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:com.ibm.ws.org.slf4j.api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:com.ibm.ws.org.slf4j.api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.api:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.api:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.slf4j.api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.slf4j.api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.api:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.slf4j.api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.slf4j.api@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.org.slf4j.jdk14 + +PackageName: com.ibm.ws.org.slf4j.jdk14 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.org.slf4j.jdk14-90998235881dddab +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 75bbdedbba3cfdd3c83b2ee67ef2cd1e555c6e03 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.org.slf4j.jdk14_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:com.ibm.ws.org.slf4j.jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdk14:com.ibm.ws.org.slf4j.jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:com.ibm.ws.org.slf4j.jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.org.slf4j.jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.ws.org.slf4j.jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.org.slf4j.jdk14:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.org.slf4j.jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdk14:jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdk14:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdk14:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jdk14:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:slf4j:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jdk14:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:slf4j:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.org.slf4j.jdk14@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.product.utility + +PackageName: com.ibm.ws.product.utility +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.product.utility-0a677035ad8b6950 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6156fea3f9e597463c38e846551019780119d18b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.product.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility:com.ibm.ws.product.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:com.ibm.ws.product.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.product.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.product.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.product.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.product.utility@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.product.utility.productutil + +PackageName: com.ibm.ws.product.utility.productutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.product.utility.productutil-2bb22c41f2f6d52f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-productutil.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.product.utility.productutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.product.utility.productutil + +PackageName: com.ibm.ws.product.utility.productutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.product.utility.productutil-42ba1f36b46a3a6a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.product.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.product.utility.productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.product.utility.productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.product.utility.productutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.recoverylog + +PackageName: com.ibm.ws.recoverylog +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.recoverylog-c1e8dd8d006d5bfd +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2328751c1fe75a6f29593b06a253765c22273288 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.recoverylog_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.recoverylog:com.ibm.ws.recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.recoverylog:recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:recoverylog:com.ibm.ws.recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.recoverylog:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:recoverylog:recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:recoverylog:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:recoverylog:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.recoverylog@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.repository + +PackageName: com.ibm.ws.repository +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.repository-052eacb4e345a6af +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: c9eb78ef50036574583f913209d78af273a393a3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.repository_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository:com.ibm.ws.repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:com.ibm.ws.repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.repository@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.repository.liberty + +PackageName: com.ibm.ws.repository.liberty +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.repository.liberty-b3fcdb956d882ddd +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8c05f1ddebcf0e0681c6148c6c34f81c489e2190 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.repository.liberty_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.liberty:com.ibm.ws.repository.liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.liberty:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:com.ibm.ws.repository.liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.liberty:liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:liberty:com.ibm.ws.repository.liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.repository.liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.liberty:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.repository.liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:liberty:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:liberty:liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:liberty:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:liberty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.repository.liberty@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.repository.parsers + +PackageName: com.ibm.ws.repository.parsers +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.repository.parsers-7936172742d614b5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 173e705273955488f94760293b7c9819366a38b0 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.repository.parsers_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.parsers:com.ibm.ws.repository.parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.parsers:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:com.ibm.ws.repository.parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.parsers:parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsers:com.ibm.ws.repository.parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.repository.parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.parsers:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.repository.parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsers:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsers:parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsers:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:parsers:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.repository.parsers@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.repository.resolver + +PackageName: com.ibm.ws.repository.resolver +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.repository.resolver-ae97e246e90df2d3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d3af0d04ca7aaf42b467f19e5077db56a34352c6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.repository.resolver_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.resolver:com.ibm.ws.repository.resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.resolver:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:com.ibm.ws.repository.resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.resolver:resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resolver:com.ibm.ws.repository.resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.repository.resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.repository.resolver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.repository.resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resolver:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resolver:resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:repository:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:repository:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resolver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:resolver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.repository.resolver@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.request.probes + +PackageName: com.ibm.ws.request.probes +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.request.probes-f9d7dc75bc346030 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 9af6a9ae039778986059cb467ec8f0351d61cd74 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.request.probes_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.request.probes:com.ibm.ws.request.probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.request.probes:request:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:request:com.ibm.ws.request.probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.request.probes:probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:probes:com.ibm.ws.request.probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.request.probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.request.probes:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.request.probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:request:request:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:probes:request:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:request:probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:probes:probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:request:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:request:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:request:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:probes:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:probes:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.request.probes@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.resource + +PackageName: com.ibm.ws.resource +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.resource-463ae47b7545e2c0 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f3a983f2b9d560bc7d70da0e61de11a8db32a951 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.resource_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.resource:com.ibm.ws.resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.resource:resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resource:com.ibm.ws.resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.resource:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resource:resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resource:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:resource:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.resource@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.rest.handler.jakarta + +PackageName: com.ibm.ws.rest.handler.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.rest.handler.jakarta-c0f39d8ab2cc8940 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1655ef04f5173ef27573e1be0e42ec1efcc18a67 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.rest.handler.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:com.ibm.ws.rest.handler.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:com.ibm.ws.rest.handler.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.rest.handler.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:com.ibm.ws.rest.handler.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.rest.handler.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.rest.handler.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.rest.handler.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:handler:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:handler:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rest:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:rest:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.rest.handler.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.runtime.update + +PackageName: com.ibm.ws.runtime.update +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.runtime.update-c1298107964cccd5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 5ff97fdaba4b111a4ae58885e92752dc07a4d564 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.runtime.update_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.runtime.update:com.ibm.ws.runtime.update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.runtime.update:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:com.ibm.ws.runtime.update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.runtime.update:update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:update:com.ibm.ws.runtime.update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.runtime.update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.runtime.update:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.runtime.update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:update:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:update:update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:update:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:update:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.runtime.update@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security + +PackageName: com.ibm.ws.security +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security-df4334c69aab9582 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 723a5a95f0e9b74c68db7741a26f9234540e45cd +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security:com.ibm.ws.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.audit.reader + +PackageName: com.ibm.ws.security.audit.reader +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader-b0f068fb82bfd1a3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3f7e7603fc76b4d0c2f170a36a80d8adf1ef7d0c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.audit.reader_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader:com.ibm.ws.security.audit.reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.audit.reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:com.ibm.ws.security.audit.reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:com.ibm.ws.security.audit.reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.audit.reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.audit.reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.audit.reader@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.audit.reader.auditreader + +PackageName: com.ibm.ws.security.audit.reader.auditreader +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader.auditreader-8f344506f25c58af +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.audit.reader_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.audit.reader.auditreader@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.audit.reader.auditreader + +PackageName: com.ibm.ws.security.audit.reader.auditreader +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader.auditreader-c61c4f9d07369217 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-auditreader.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.audit.reader.auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.audit.reader.auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.audit.reader.auditreader@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.authentication + +PackageName: com.ibm.ws.security.authentication +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.authentication-3a8a7a13c07386b2 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f91c48967f12eba1d927a99ff1fd61b19254e9c6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.authentication_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authentication:com.ibm.ws.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:com.ibm.ws.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authentication:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authentication:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authentication:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.authentication@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.authorization + +PackageName: com.ibm.ws.security.authorization +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.authorization-a3796fae4626fb20 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a7b492eb95a6089483ff96c8da60f012fb6c272b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.authorization_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization:com.ibm.ws.security.authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:com.ibm.ws.security.authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.authorization@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.authorization.builtin + +PackageName: com.ibm.ws.security.authorization.builtin +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.authorization.builtin-9a610721379b7e83 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d562b0592eb088459018b96e33687fdd0aa27c82 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.authorization.builtin_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization.builtin:com.ibm.ws.security.authorization.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:com.ibm.ws.security.authorization.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization.builtin:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization.builtin:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.authorization.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:com.ibm.ws.security.authorization.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization.builtin:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.authorization.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.authorization.builtin:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.authorization.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authorization:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:authorization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.authorization.builtin@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.context + +PackageName: com.ibm.ws.security.context +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.context-ee9fcf16b4c39d41 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 859e0d78ab4290f04c3aa3934d51bac7f3fd378d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.context_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.context:com.ibm.ws.security.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.context:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:com.ibm.ws.security.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.context@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.credentials + +PackageName: com.ibm.ws.security.credentials +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.credentials-54204e2affa36dd6 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f021d494776f23b161d42312c5cb4843af30dad4 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.credentials_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials:com.ibm.ws.security.credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:com.ibm.ws.security.credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.credentials@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.credentials.ssotoken + +PackageName: com.ibm.ws.security.credentials.ssotoken +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.credentials.ssotoken-5f5fa197584cf032 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2ecf89a9556e3cc40d963d3df1b0c50929b00621 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.credentials.ssotoken_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:com.ibm.ws.security.credentials.ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:com.ibm.ws.security.credentials.ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.credentials.ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssotoken:com.ibm.ws.security.credentials.ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.credentials.ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.ssotoken:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.credentials.ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssotoken:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssotoken:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssotoken:ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssotoken:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ssotoken:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.credentials.ssotoken@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.credentials.wscred + +PackageName: com.ibm.ws.security.credentials.wscred +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.credentials.wscred-7d2973745a28b886 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d28e5dc9155a412006e6a8fb5be3fa3ae93f2466 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.credentials.wscred_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.wscred:com.ibm.ws.security.credentials.wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.wscred:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:com.ibm.ws.security.credentials.wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.wscred:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.credentials.wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.wscred:wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wscred:com.ibm.ws.security.credentials.wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.credentials.wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.credentials.wscred:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.credentials.wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wscred:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wscred:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:credentials:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:credentials:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wscred:wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:wscred:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wscred:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.credentials.wscred@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.java2sec + +PackageName: com.ibm.ws.security.java2sec +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.java2sec-e8286830825febc9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 136dc76b4d36afa06fc4061f5fe45c88c0dc8174 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.java2sec_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.java2sec:com.ibm.ws.security.java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.java2sec:java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.java2sec:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java2sec:com.ibm.ws.security.java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.java2sec:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java2sec:java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java2sec:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java2sec:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:java2sec:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.java2sec@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.kerberos.auth + +PackageName: com.ibm.ws.security.kerberos.auth +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.kerberos.auth-8307eb5847190739 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e2f594247d3516f7345409d5dea3d916bec8f4d1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.kerberos.auth_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.kerberos.auth:com.ibm.ws.security.kerberos.auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.kerberos.auth:kerberos:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.kerberos.auth:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kerberos:com.ibm.ws.security.kerberos.auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.kerberos.auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auth:com.ibm.ws.security.kerberos.auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.kerberos.auth:auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.kerberos.auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.kerberos.auth:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.kerberos.auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kerberos:kerberos:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kerberos:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:kerberos:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auth:kerberos:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auth:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kerberos:auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kerberos:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kerberos:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kerberos:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auth:auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auth:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:auth:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.kerberos.auth@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.mp.jwt.proxy + +PackageName: com.ibm.ws.security.mp.jwt.proxy +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.mp.jwt.proxy-8f00f2ec2e3f6b5b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 87d6d98f5d0f24ca0860befab640a9e1c80bde1e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.mp.jwt.proxy_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:com.ibm.ws.security.mp.jwt.proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.mp.jwt.proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:proxy:com.ibm.ws.security.mp.jwt.proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:jwt:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.mp.jwt.proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jwt:com.ibm.ws.security.mp.jwt.proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:mp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.mp.jwt.proxy:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mp:com.ibm.ws.security.mp.jwt.proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.mp.jwt.proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:proxy:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jwt:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:jwt:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mp:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:proxy:proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:mp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jwt:proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:proxy:jwt:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mp:proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:proxy:mp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:proxy:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:proxy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jwt:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jwt:jwt:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:mp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jwt:mp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jwt:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mp:jwt:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jwt:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mp:mp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mp:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:mp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.mp.jwt.proxy@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.quickstart + +PackageName: com.ibm.ws.security.quickstart +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.quickstart-2bd4ccbf2bffd031 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 46b47e64570c215ab208a3ae3cd3d83afe1f4a71 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.quickstart_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.quickstart:com.ibm.ws.security.quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.quickstart:quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:quickstart:com.ibm.ws.security.quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.quickstart:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.quickstart:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:quickstart:quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:quickstart:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:quickstart:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:quickstart:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.quickstart@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.ready.service + +PackageName: com.ibm.ws.security.ready.service +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.ready.service-886a7e9cecc0f6d5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 82e5df38d2a6e70da26444a97808c3d48a624479 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.ready.service_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.ready.service:com.ibm.ws.security.ready.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.ready.service:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.ready.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.ready.service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.ws.security.ready.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.ready.service:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:com.ibm.ws.security.ready.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.ready.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.ready.service:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.ready.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ready:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ready:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.ready.service@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.registry + +PackageName: com.ibm.ws.security.registry +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.registry-09a30f3c6fafe647 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7378905a18bb28036edbb73c60182cdf20002002 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.registry_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry:com.ibm.ws.security.registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:com.ibm.ws.security.registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.registry@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.registry.basic + +PackageName: com.ibm.ws.security.registry.basic +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.registry.basic-b27fa9bc88ae39a8 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3f3a4b73b977b8d78faa4459122f53225fa7f6cb +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.registry.basic_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry.basic:com.ibm.ws.security.registry.basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry.basic:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry.basic:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:com.ibm.ws.security.registry.basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.registry.basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basic:com.ibm.ws.security.registry.basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry.basic:basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.registry.basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.registry.basic:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.registry.basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basic:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basic:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basic:basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:registry:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:registry:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basic:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:basic:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.registry.basic@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.token + +PackageName: com.ibm.ws.security.token +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.token-67dbeeeb433ba94a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 238c6979a34b333ee998c5dfdd63349d5873dbdc +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.token_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token:com.ibm.ws.security.token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:com.ibm.ws.security.token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.token@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.token.ltpa + +PackageName: com.ibm.ws.security.token.ltpa +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.token.ltpa-622231ba9c844d7f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 45af23f7e5a2423782da9e66108f4e61222f3e25 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.token.ltpa_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.ltpa:com.ibm.ws.security.token.ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.ltpa:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.token.ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.ltpa:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:com.ibm.ws.security.token.ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.ltpa:ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpa:com.ibm.ws.security.token.ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.token.ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.ltpa:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.token.ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpa:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpa:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpa:ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ltpa:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ltpa:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.token.ltpa@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.token.s4u2 + +PackageName: com.ibm.ws.security.token.s4u2 +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.token.s4u2-d4ce9269292633b7 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 953217a25fe083ccad39a2c6980522266702e395 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.token.s4u2_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.s4u2:com.ibm.ws.security.token.s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.s4u2:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.token.s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.s4u2:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:com.ibm.ws.security.token.s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.s4u2:s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:s4u2:com.ibm.ws.security.token.s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.token.s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.token.s4u2:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.token.s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:s4u2:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:s4u2:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:s4u2:s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:token:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:token:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:s4u2:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:s4u2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.token.s4u2@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.utility + +PackageName: com.ibm.ws.security.utility +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.utility-f53bcf3b45eef75f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1df450390bf72cba248790e11664d894c7050655 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility:com.ibm.ws.security.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.security.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.utility@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.utility.securityutil + +PackageName: com.ibm.ws.security.utility.securityutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.utility.securityutil-98d95b7cb8d7f646 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-securityutil.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.utility.securityutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.security.utility.securityutil + +PackageName: com.ibm.ws.security.utility.securityutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.security.utility.securityutil-ca8b9d721e9a1e1d +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.security.utility.securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.security.utility.securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.security.utility.securityutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.serialization + +PackageName: com.ibm.ws.serialization +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.serialization-f64d70a534b67721 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f55438fc6aada25f42842c0a4ae5a6b6b8973da1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.serialization_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.serialization:com.ibm.ws.serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.serialization:serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serialization:com.ibm.ws.serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.serialization:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serialization:serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serialization:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:serialization:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.serialization@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.session.jakarta + +PackageName: com.ibm.ws.session.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.session.jakarta-27113c1d16fd556f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f345fc55038c34baa94da815629bc6bcb635dc72 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.session.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.jakarta:com.ibm.ws.session.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.jakarta:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.session.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:com.ibm.ws.session.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.session.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.session.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.session.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.session.monitor + +PackageName: com.ibm.ws.session.monitor +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.session.monitor-6df330efa7adaf70 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 172f33ced64c30ca8c6aa086ab10a8f562e834fe +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.session.monitor_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.monitor:com.ibm.ws.session.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.monitor:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:com.ibm.ws.session.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:com.ibm.ws.session.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.session.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.session.monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.session.monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.session.monitor@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.ssl + +PackageName: com.ibm.ws.ssl +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.ssl-5ec6a973db6a521a +PackageVersion: 1.5.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2a08dea8265848da1f3882c44015101cd126f8bc +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.ssl_1.5.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.ssl:com.ibm.ws.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.ssl:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:com.ibm.ws.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.ssl:ws:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ws:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ssl:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.5.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.ssl@1.5.81.cl230920230904-1158 + +##### Package: com.ibm.ws.threading + +PackageName: com.ibm.ws.threading +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.threading-04a82de306980599 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: aa2939f0ebf05cb02ad13ce67df9ee262165b717 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.threading_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.threading:com.ibm.ws.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.threading:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:com.ibm.ws.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.threading:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:threading:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:threading:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.threading@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.timer + +PackageName: com.ibm.ws.timer +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.timer-de9e29e7df6d7ef9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6f4d50ffd12ee6b3b6999f7928237fe6f6e4223e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.timer_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.timer:com.ibm.ws.timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.timer:timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:timer:com.ibm.ws.timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.timer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:timer:timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:timer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:timer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.timer@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.transaction.context.jakarta + +PackageName: com.ibm.ws.transaction.context.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.transaction.context.jakarta-655cfebbb0413977 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0370e6d83b82cba65ef98c09e97c215c715488ad +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.transaction.context.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:com.ibm.ws.transaction.context.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:com.ibm.ws.transaction.context.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:com.ibm.ws.transaction.context.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.transaction.context.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.transaction.context.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.context.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.transaction.context.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:context:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:context:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.transaction.context.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.transaction.jakarta + +PackageName: com.ibm.ws.transaction.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.transaction.jakarta-8fb81778b3027ede +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 932f83495b8a7c8149c7e66ad9057eaaeae35d86 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.transaction.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.jakarta:com.ibm.ws.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:com.ibm.ws.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transaction.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.transaction.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.transaction.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.transport.http + +PackageName: com.ibm.ws.transport.http +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.transport.http-9ecc2b0be781ef45 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d8a71124a7f3e18db14d2c9b584369ea8b8b1f62 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.transport.http_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transport.http:com.ibm.ws.transport.http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:HttpChannelProvider:com.ibm.ws.transport.http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transport.http:HttpChannelProvider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:HttpChannelProvider:HttpChannelProvider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transport.http:transport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transport:com.ibm.ws.transport.http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transport.http:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:com.ibm.ws.transport.http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transport.http:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:com.ibm.ws.transport.http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:HttpChannelProvider:transport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.transport.http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transport:HttpChannelProvider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:HttpChannelProvider:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.transport.http:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:HttpChannelProvider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.transport.http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:HttpChannelProvider:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:HttpChannelProvider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:HttpChannelProvider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:HttpChannelProvider:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:HttpChannelProvider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transport:transport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:transport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transport:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:transport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transport:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:transport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transport:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:transport:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:http:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:http:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.transport.http@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.tx.embeddable.jakarta + +PackageName: com.ibm.ws.tx.embeddable.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.tx.embeddable.jakarta-6a0218b35e4c54bb +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 13ae25def53790312fcf6f83a3c9ea3cfcaa48c7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.tx.embeddable.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.embeddable.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.tx.embeddable.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:EmbeddableTxBundleTools:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:EmbeddableTxBundleTools:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:embeddable:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:embeddable:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.tx.embeddable.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.tx.jta.extensions.jakarta + +PackageName: com.ibm.ws.tx.jta.extensions.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.tx.jta.extensions.jakarta-cc2e0c21ecbb7fd1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7d019026f75ff6eb4f5ce2df94112b0191494c04 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.tx.jta.extensions.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:com.ibm.ws.tx.jta.extensions.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:extensions:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:extensions:com.ibm.ws.tx.jta.extensions.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.tx.jta.extensions.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.tx.jta.extensions.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:com.ibm.ws.tx.jta.extensions.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.tx.jta.extensions.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:com.ibm.ws.tx.jta.extensions.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.tx.jta.extensions.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:extensions:extensions:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:extensions:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:extensions:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:extensions:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:extensions:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:extensions:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:extensions:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:extensions:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:extensions:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:extensions:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tx:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:tx:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.tx.jta.extensions.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webcontainer.cors.jakarta + +PackageName: com.ibm.ws.webcontainer.cors.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.cors.jakarta-19e84b0297f47f72 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 690c7b9b4c20a399e7515cf3fb379993def0f7ce +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.cors.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:com.ibm.ws.webcontainer.cors.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.cors.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.cors.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:cors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cors:com.ibm.ws.webcontainer.cors.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webcontainer.cors.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.cors.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webcontainer.cors.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cors:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:cors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cors:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cors:cors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cors:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:cors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webcontainer.cors.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webcontainer.jakarta + +PackageName: com.ibm.ws.webcontainer.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.jakarta-57169466f7c5ad89 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 715acbd87a6859ac0039af3985fae59c466d9597 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.jakarta_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.jakarta:com.ibm.ws.webcontainer.jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.jakarta:webcontainer:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.jakarta:jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webcontainer.jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.jakarta:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webcontainer.jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:webcontainer:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webcontainer:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webcontainer:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webcontainer.jakarta@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webcontainer.monitor.jakarta + +PackageName: com.ibm.ws.webcontainer.monitor.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.monitor.jakarta-42a0bfb4d82d0246 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 9c716016a21942599f6eb39b694ef4b7bbb11aa9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.monitor.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:com.ibm.ws.webcontainer.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:com.ibm.ws.webcontainer.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webcontainer.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.monitor.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webcontainer.monitor.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webcontainer.monitor.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webcontainer.security.admin + +PackageName: com.ibm.ws.webcontainer.security.admin +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.security.admin-cac3f63abeadad89 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 363f72ff40a48fd383deb11bd9348904de15937c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.security.admin_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:com.ibm.ws.webcontainer.security.admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.security.admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.webcontainer.security.admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:admin:com.ibm.ws.webcontainer.security.admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webcontainer.security.admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.admin:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webcontainer.security.admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:admin:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:admin:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:admin:admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:admin:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:admin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webcontainer.security.admin@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webcontainer.security.feature + +PackageName: com.ibm.ws.webcontainer.security.feature +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.security.feature-4219f8419578111a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cb15303906618edb6ce71666b9a08aca5fda021a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.security.feature_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:com.ibm.ws.webcontainer.security.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.security.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:com.ibm.ws.webcontainer.security.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:com.ibm.ws.webcontainer.security.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webcontainer.security.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.security.feature:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webcontainer.security.feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webcontainer.security.feature@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webcontainer.servlet.3.1.jakarta + +PackageName: com.ibm.ws.webcontainer.servlet.3.1.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.servlet.3.1.jakarta-ecc39995894e0901 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 4017b8ca1d52234f7046e8761e540f74b3cb6bca +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.servlet.3.1.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.3.1.jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webcontainer.servlet.3.1.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webcontainer.servlet.4.0.jakarta + +PackageName: com.ibm.ws.webcontainer.servlet.4.0.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.servlet.4.0.jakarta-ee075dcb42a7385a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3fd6ff5e43d071cb1406d2193d0e533e2c5bc95f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webcontainer.servlet.4.0.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:com.ibm.ws.webcontainer.servlet.4.0.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webcontainer.servlet.4.0.jakarta:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webcontainer.servlet.4.0.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webserver.plugin.runtime.interfaces + +PackageName: com.ibm.ws.webserver.plugin.runtime.interfaces +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.runtime.interfaces-d8f7c7f67ed53663 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2bbd8aa7e4b14df0ef9dc3dcd059e2619137548c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.runtime.interfaces_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.interfaces:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.runtime.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webserver.plugin.runtime.interfaces@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webserver.plugin.runtime.jakarta + +PackageName: com.ibm.ws.webserver.plugin.runtime.jakarta +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.runtime.jakarta-7ff3c6a91e9abb3c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f88feba89c16597e90c7ab3f741355975f1635d5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.runtime.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.runtime.jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.runtime.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:runtime:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:runtime:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webserver.plugin.runtime.jakarta@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webserver.plugin.utility + +PackageName: com.ibm.ws.webserver.plugin.utility +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility-00312ca50eae702c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 176db395ed6376a3f6b6c68b2ad5495255c158fd +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility:com.ibm.ws.webserver.plugin.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.webserver.plugin.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webserver.plugin.utility@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webserver.plugin.utility.webserverPluginutil + +PackageName: com.ibm.ws.webserver.plugin.utility.webserverPluginutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility.webserverPluginutil-5fc7d895c5805927 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webserver.plugin.utility.webserverPluginutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.webserver.plugin.utility.webserverPluginutil + +PackageName: com.ibm.ws.webserver.plugin.utility.webserverPluginutil +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility.webserverPluginutil-c06c8f49c4752a37 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-webserverPluginutil.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.webserver.plugin.utility.webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.webserver.plugin.utility.webserverPluginutil@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.ws.wsbytebuffer + +PackageName: com.ibm.ws.wsbytebuffer +SPDXID: SPDXRef-Package-java-archive-com.ibm.ws.wsbytebuffer-d6d7aedfbda2c7a6 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 089ea2dd867ce519a04d05a55e8500d83ea51fe5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.wsbytebuffer_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.wsbytebuffer:com.ibm.ws.wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.wsbytebuffer:wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsbytebuffer:com.ibm.ws.wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.ws.wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.ws.wsbytebuffer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:com.ibm.ws.wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsbytebuffer:wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:wsbytebuffer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsbytebuffer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.ws.wsbytebuffer@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.core + +PackageName: com.ibm.wsspi.org.osgi.core +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.core-cc10e4e4ad879773 +PackageVersion: 1.2.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: aed7b88c63eb08b86bca9effa26152b97513d982 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.core_1.2.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-b522309a0902b9c2edf0e43791a497ee72dc820dd9db8cbaf3839d3421e541cc +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.core:com.ibm.wsspi.org.osgi.core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.core:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.core:core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.core:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:com.ibm.wsspi.org.osgi.core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.core:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:core:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:core:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.core@1.2.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.namespace.service + +PackageName: com.ibm.wsspi.org.osgi.namespace.service +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.namespace.service-933eff1b00233d81 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 806396d2e152c0eb33fec2926462507efe0c0af4 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.namespace.service_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-84987e62fcaab3858aed0bafe7f4e32a774f0dc234322f0e1200e4b7a10780cc +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:com.ibm.wsspi.org.osgi.namespace.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:namespace:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:namespace:com.ibm.wsspi.org.osgi.namespace.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.namespace.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.namespace.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.namespace.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.namespace.service:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.namespace.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.namespace.service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:namespace:namespace:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:namespace:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:namespace:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:namespace:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:namespace:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:namespace:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:namespace:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:namespace:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:namespace:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:namespace:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.namespace.service@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.cm + +PackageName: com.ibm.wsspi.org.osgi.service.cm +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.cm-e580e9d14c9a9896 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 20559b89f4fe21e5e7e2561d73ef7a325ef5d0c8 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.cm_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-e361ddcfb3f97c3adb1f3b354c6e025142dd9103569c956cf43a08d9908b2d8c +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:com.ibm.wsspi.org.osgi.service.cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cm:com.ibm.wsspi.org.osgi.service.cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.cm:cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cm:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cm:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cm:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cm:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cm:cm:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.cm@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.component + +PackageName: com.ibm.wsspi.org.osgi.service.component +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.component-3f51d271514f2837 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d47c893be298b26cb745ff7866189d5a8ffc73b1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.component_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-b8a5b49031798281d934c96178d7e9b482b25662154407659a04874cda1893b0 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:com.ibm.wsspi.org.osgi.service.component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:com.ibm.wsspi.org.osgi.service.component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:component:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.component@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.component.annotations + +PackageName: com.ibm.wsspi.org.osgi.service.component.annotations +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.component.annotations-c04b9599d1184dc9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 9436424b146096c7c72f2b06a7e2928323aac3a0 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.component.annotations_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-e361ddcfb3f97c3adb1f3b354c6e025142dd9103569c956cf43a08d9908b2d8c +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.component.annotations:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.component.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:component:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:component:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.component.annotations@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.coordinator + +PackageName: com.ibm.wsspi.org.osgi.service.coordinator +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.coordinator-3c4d4100ae462734 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 83fa4d5b4282733cec74a343cf0e683ad6dc4cfa +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.coordinator_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-84987e62fcaab3858aed0bafe7f4e32a774f0dc234322f0e1200e4b7a10780cc +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:com.ibm.wsspi.org.osgi.service.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:com.ibm.wsspi.org.osgi.service.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.coordinator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coordinator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:coordinator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.coordinator@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.event + +PackageName: com.ibm.wsspi.org.osgi.service.event +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.event-b4eae56772edbbe1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: b66ef1d454a4aa606a1f0d47bb0327305cd604bd +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.event_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-84987e62fcaab3858aed0bafe7f4e32a774f0dc234322f0e1200e4b7a10780cc +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:com.ibm.wsspi.org.osgi.service.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:com.ibm.wsspi.org.osgi.service.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.event:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:event:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:event:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.event@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.log + +PackageName: com.ibm.wsspi.org.osgi.service.log +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.log-01f1ee8c9ddfe34c +PackageVersion: 1.2.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a5129cb36924ddb0c144ac9d371868b2b5d3f2d1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.log_1.2.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-b522309a0902b9c2edf0e43791a497ee72dc820dd9db8cbaf3839d3421e541cc +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:com.ibm.wsspi.org.osgi.service.log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:service:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.log:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:log:com.ibm.wsspi.org.osgi.service.log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:log:service:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:log:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:log:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:log:log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:log:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:log:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.log@1.2.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.metatype + +PackageName: com.ibm.wsspi.org.osgi.service.metatype +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.metatype-dba6e3c5aebc2417 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e1f54e18f12d906a44ef022a2bbbf5ff5128b480 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.metatype_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-e361ddcfb3f97c3adb1f3b354c6e025142dd9103569c956cf43a08d9908b2d8c +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:com.ibm.wsspi.org.osgi.service.metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:com.ibm.wsspi.org.osgi.service.metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:metatype:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.metatype@1.1.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.org.osgi.service.metatype.annotations + +PackageName: com.ibm.wsspi.org.osgi.service.metatype.annotations +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.metatype.annotations-57608e27b67eb2a0 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 660d3641d78440636e3ecb244aa0e3b88d04d2b4 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/spec/com.ibm.wsspi.org.osgi.service.metatype.annotations_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-e361ddcfb3f97c3adb1f3b354c6e025142dd9103569c956cf43a08d9908b2d8c +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.org.osgi.service.metatype.annotations:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:com.ibm.wsspi.org.osgi.service.metatype.annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotations:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:annotations:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metatype:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:metatype:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:service:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:service:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:wsspi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.org.osgi.service.metatype.annotations@1.0.81.cl230920230904-1158 + +##### Package: com.ibm.wsspi.thirdparty.equinox + +PackageName: com.ibm.wsspi.thirdparty.equinox +SPDXID: SPDXRef-Package-java-archive-com.ibm.wsspi.thirdparty.equinox-f00552568d914797 +PackageVersion: 1.3.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e9d2574355cd1fb59201b23b52148095d1c11375 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/third-party/com.ibm.wsspi.thirdparty.equinox_1.3.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.thirdparty.equinox:com.ibm.wsspi.thirdparty.equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.thirdparty.equinox:thirdparty:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:com.ibm.wsspi.thirdparty.equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.thirdparty.equinox:equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:com.ibm.wsspi.thirdparty.equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:com.ibm.wsspi.thirdparty.equinox:wsspi:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:com.ibm.wsspi.thirdparty.equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:com.ibm.wsspi.thirdparty.equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:thirdparty:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:thirdparty:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:wsspi:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:thirdparty:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:thirdparty:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:equinox:wsspi:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:equinox:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsspi:wsspi:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:wsspi:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/com.ibm.wsspi.thirdparty.equinox@1.3.81.cl230920230904-1158 + +##### Package: guide-getting-started + +PackageName: guide-getting-started +SPDXID: SPDXRef-Package-java-archive-guide-getting-started-0470a2ffe7a4f194 +PackageVersion: 1.0-SNAPSHOT +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 433deb47a8caf983cc7faeff107639c6e3b02e5e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/usr/servers/defaultServer/apps/guide-getting-started.war +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide-getting-started:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide-getting-started:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide_getting_started:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide_getting_started:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide-getting:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide-getting:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide_getting:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide_getting:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guides:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guides:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide:guide-getting-started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:guide:guide_getting_started:1.0-SNAPSHOT:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/io.openliberty.guides/guide-getting-started@1.0-SNAPSHOT + +##### Package: io.openliberty.accesslists.internal + +PackageName: io.openliberty.accesslists.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.accesslists.internal-348779c8b4c0f3c7 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ea9f2321fd65960ac9f2247f3baaaa0502ca6dda +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.accesslists.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.accesslists.internal:io.openliberty.accesslists.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:accesslists:io.openliberty.accesslists.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.accesslists.internal:accesslists:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.accesslists.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.accesslists.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.accesslists.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:accesslists:accesslists:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:accesslists:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:accesslists:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:accesslists:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.accesslists.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.cdi.4.0.interfaces + +PackageName: io.openliberty.cdi.4.0.interfaces +SPDXID: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.interfaces-c16434037d8f3889 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d558d596f7bc75be2134a4e123d1fd66979806b3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.interfaces_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.interfaces:io.openliberty.cdi.4.0.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:io.openliberty.cdi.4.0.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.interfaces:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.cdi.4.0.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.interfaces:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.cdi.4.0.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.cdi.4.0.interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.interfaces:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.interfaces:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:interfaces:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interfaces:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.cdi.4.0.interfaces@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.cdi.4.0.internal.services.fragment + +PackageName: io.openliberty.cdi.4.0.internal.services.fragment +SPDXID: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.services.fragment-edeab00c7cfe155f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8abe6b7ab1389e685d6a39bd1d50feed8a3ba819 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.services.fragment_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fragment:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:services:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.cdi.4.0.internal.services.fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.services.fragment:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fragment:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fragment:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fragment:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:services:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:services:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:services:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fragment:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:services:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:fragment:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:services:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fragment:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fragment:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:services:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:services:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.cdi.4.0.internal.services.fragment@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.cdi.4.0.internal.web + +PackageName: io.openliberty.cdi.4.0.internal.web +SPDXID: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.web-f67ab33a049816c4 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: e052a2f2cac5c5858294858787c11f1543a055b2 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.web_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:io.openliberty.cdi.4.0.internal.web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.internal.web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.cdi.4.0.internal.web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.cdi.4.0.internal.web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:io.openliberty.cdi.4.0.internal.web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.cdi.4.0.internal.web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.cdi.4.0.internal.web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.web:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:web:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:web:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.cdi.4.0.internal.web@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.cdi.4.0.internal.weld + +PackageName: io.openliberty.cdi.4.0.internal.weld +SPDXID: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.weld-48ed937a7e69e891 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: dba0f9a1eac2367eefa2dafa7bf65d20c2276a33 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.cdi.4.0.internal.weld_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:io.openliberty.cdi.4.0.internal.weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.internal.weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.cdi.4.0.internal.weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:io.openliberty.cdi.4.0.internal.weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.cdi.4.0.internal.weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.cdi.4.0.internal.weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.cdi.4.0.internal.weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.internal.weld:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:weld:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.cdi.4.0.internal.weld@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.cdi.4.0.thirdparty + +PackageName: io.openliberty.cdi.4.0.thirdparty +SPDXID: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.thirdparty-c560a9497a9dc8cb +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: b13a7dead238da446187d5e92b53b6dd2c0fb5ca +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/third-party/io.openliberty.cdi.4.0.thirdparty_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:io.openliberty.cdi.4.0.thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.cdi.4.0.thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:io.openliberty.cdi.4.0.thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.cdi.4.0.thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.cdi.4.0.thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.cdi.4.0.thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.4.0.thirdparty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:thirdparty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:thirdparty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.cdi.4.0.thirdparty@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.cdi.spi + +PackageName: io.openliberty.cdi.spi +SPDXID: SPDXRef-Package-java-archive-io.openliberty.cdi.spi-5769548082bfa726 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ad49c6e06e76480ba0e513a7384b584c58712d90 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/spi/ibm/io.openliberty.cdi.spi_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.spi:io.openliberty.cdi.spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.cdi.spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.cdi.spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.spi:cdi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.cdi.spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:io.openliberty.cdi.spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:cdi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:spi:spi:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.cdi.spi@1.1.81.cl230920230904-1158 + +##### Package: io.openliberty.checkpoint + +PackageName: io.openliberty.checkpoint +SPDXID: SPDXRef-Package-java-archive-io.openliberty.checkpoint-8a542215f307aab5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: aded8ec34b4ccb0250bc39d4f9a25a9fa52babc6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.checkpoint_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.checkpoint:io.openliberty.checkpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.checkpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:checkpoint:io.openliberty.checkpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.checkpoint:checkpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:checkpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:checkpoint:checkpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.checkpoint@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.dynacache.internal + +PackageName: io.openliberty.dynacache.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.dynacache.internal-3679127cfbf6d051 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 028f734657e452656a84f65297e3a2cd54b55e13 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.dynacache.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.dynacache.internal:io.openliberty.dynacache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.dynacache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynacache:io.openliberty.dynacache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.dynacache.internal:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.dynacache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.dynacache.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynacache:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dynacache:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:dynacache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.dynacache.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.el.internal.cdi.jakarta + +PackageName: io.openliberty.el.internal.cdi.jakarta +SPDXID: SPDXRef-Package-java-archive-io.openliberty.el.internal.cdi.jakarta-62e27c792932b3ae +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 449b794931b7399eadfc5e29a443dd8d9c502e20 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.el.internal.cdi.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:io.openliberty.el.internal.cdi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.el.internal.cdi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.el.internal.cdi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.el.internal.cdi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.el.internal.cdi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:el:io.openliberty.el.internal.cdi.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.el.internal.cdi.jakarta:el:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:el:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:el:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:el:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:el:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:el:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:el:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:el:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:el:el:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.el.internal.cdi.jakarta@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.endpoint + +PackageName: io.openliberty.endpoint +SPDXID: SPDXRef-Package-java-archive-io.openliberty.endpoint-f29f09d31d83d248 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6bd01d73db96287dc340a0576ed87a4bbfb958a5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.endpoint_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.endpoint:io.openliberty.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:endpoint:io.openliberty.endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.endpoint:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:endpoint:endpoint:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.endpoint@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.io.micrometer + +PackageName: io.openliberty.io.micrometer +SPDXID: SPDXRef-Package-java-archive-io.openliberty.io.micrometer-fb2cb7cf2d6ef540 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 38316988134ec7f26ce8a7bd8c4e82b7aa6653a7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.io.micrometer_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.micrometer:io.openliberty.io.micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.io.micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.micrometer:micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:micrometer:io.openliberty.io.micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.micrometer:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io.openliberty.io.micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:micrometer:micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:micrometer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:micrometer:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.io.micrometer@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.io.netty + +PackageName: io.openliberty.io.netty +SPDXID: SPDXRef-Package-java-archive-io.openliberty.io.netty-b10b2643bdb5f826 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 698a7681bf5a82ae07a15b20f3def12c2c52b8cc +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.io.netty_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.netty:io.openliberty.io.netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.io.netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.netty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:io.openliberty.io.netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.netty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io.openliberty.io.netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.io.netty@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.io.netty.ssl + +PackageName: io.openliberty.io.netty.ssl +SPDXID: SPDXRef-Package-java-archive-io.openliberty.io.netty.ssl-77a0ac5be06a4317 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 253b8884930517e7384c83dfbd4a47cbf462422a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.io.netty.ssl_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.netty.ssl:io.openliberty.io.netty.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.io.netty.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.netty.ssl:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:io.openliberty.io.netty.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.netty.ssl:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:io.openliberty.io.netty.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.netty.ssl:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io.openliberty.io.netty.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.io.netty.ssl@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.io.smallrye.common.jakarta + +PackageName: io.openliberty.io.smallrye.common.jakarta +SPDXID: SPDXRef-Package-java-archive-io.openliberty.io.smallrye.common.jakarta-1f8abfb0200823fe +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7dcd341f66df037f440b3fa311a04be1b5872740 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.io.smallrye.common.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:io.openliberty.io.smallrye.common.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.io.smallrye.common.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:io.openliberty.io.smallrye.common.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.io.smallrye.common.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:io.openliberty.io.smallrye.common.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.common.jakarta:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io.openliberty.io.smallrye.common.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.io.smallrye.common.jakarta@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.io.smallrye.config.jakarta + +PackageName: io.openliberty.io.smallrye.config.jakarta +SPDXID: SPDXRef-Package-java-archive-io.openliberty.io.smallrye.config.jakarta-a6c64dde369a4bd1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 5f65aea85cb92413cc5db86a40d7650bf9a5c6f4 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.io.smallrye.config.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:io.openliberty.io.smallrye.config.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.io.smallrye.config.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:io.openliberty.io.smallrye.config.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.io.smallrye.config.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:io.openliberty.io.smallrye.config.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.config.jakarta:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io.openliberty.io.smallrye.config.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.io.smallrye.config.jakarta@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.io.smallrye.metrics + +PackageName: io.openliberty.io.smallrye.metrics +SPDXID: SPDXRef-Package-java-archive-io.openliberty.io.smallrye.metrics-1981bbe28a0d2bf1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0caa2857d900fa910006770b321cadeba33ea42c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.io.smallrye.metrics_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.metrics:io.openliberty.io.smallrye.metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.io.smallrye.metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.metrics:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:io.openliberty.io.smallrye.metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:io.openliberty.io.smallrye.metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.io.smallrye.metrics:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io.openliberty.io.smallrye.metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:smallrye:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:smallrye:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io:io:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.io.smallrye.metrics@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.activation.2.1 + +PackageName: io.openliberty.jakarta.activation.2.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.activation.2.1-a0e0435368e50251 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 5da928179c970351d93963cf9a09f4d3690664a7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.activation.2.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.activation.2.1:io.openliberty.jakarta.activation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.activation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:io.openliberty.jakarta.activation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.activation.2.1:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.activation.2.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.activation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.activation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:io.openliberty.jakarta.activation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.activation.2.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.activation.2.1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.activation.2.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.annotation.2.1 + +PackageName: io.openliberty.jakarta.annotation.2.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.annotation.2.1-b6edbcb5e9053be2 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f6bca45e40a919f6fdc227018d6090c95badb2fa +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.annotation.2.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:io.openliberty.jakarta.annotation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.annotation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotation:io.openliberty.jakarta.annotation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:annotation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.annotation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.annotation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:io.openliberty.jakarta.annotation.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.annotation.2.1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:annotation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotation:annotation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotation:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:annotation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:annotation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:annotation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotation:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:annotation:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.annotation.2.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.cdi.4.0 + +PackageName: io.openliberty.jakarta.cdi.4.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.cdi.4.0-00400792c1da6a4a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0d8aba74053c0e46e7b5f665c82927a4ec33e3dd +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.cdi.4.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:io.openliberty.jakarta.cdi.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.cdi.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.cdi.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.jakarta.cdi.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.cdi.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.jakarta.cdi.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.cdi.4.0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.cdi.4.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.connectors.2.1 + +PackageName: io.openliberty.jakarta.connectors.2.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.connectors.2.1-e76868f2573e0ea9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 570547cd9bc78390f41c3e35640ffcf91714286b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.connectors.2.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:io.openliberty.jakarta.connectors.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.connectors.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:connectors:io.openliberty.jakarta.connectors.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:connectors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.connectors.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.connectors.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:io.openliberty.jakarta.connectors.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.connectors.2.1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:connectors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:connectors:connectors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:connectors:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:connectors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:connectors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:connectors:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:connectors:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:connectors:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.connectors.2.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.enterpriseBeans.4.0 + +PackageName: io.openliberty.jakarta.enterpriseBeans.4.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.enterpriseBeans.4.0-2e6d7754bdcf7906 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 62fdb23b5bd66484dfc80d59beb14e23a7254b31 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.enterpriseBeans.4.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:enterpriseBeans:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:enterpriseBeans:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.jakarta.enterpriseBeans.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.enterpriseBeans.4.0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:enterpriseBeans:enterpriseBeans:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:enterpriseBeans:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:enterpriseBeans:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:enterpriseBeans:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:enterpriseBeans:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:enterpriseBeans:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:enterpriseBeans:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:enterpriseBeans:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.enterpriseBeans.4.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.expressionLanguage.5.0 + +PackageName: io.openliberty.jakarta.expressionLanguage.5.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.expressionLanguage.5.0-d237df2857b8cf70 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6f614bba26cc3cc768f739797ee85fb249be0b65 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.expressionLanguage.5.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:io.openliberty.jakarta.expressionLanguage.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:expressionLanguage:io.openliberty.jakarta.expressionLanguage.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:expressionLanguage:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.expressionLanguage.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.expressionLanguage.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.expressionLanguage.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:io.openliberty.jakarta.expressionLanguage.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.expressionLanguage.5.0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:expressionLanguage:expressionLanguage:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:expressionLanguage:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:expressionLanguage:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:expressionLanguage:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:expressionLanguage:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:expressionLanguage:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:expressionLanguage:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:expressionLanguage:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.expressionLanguage.5.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.interceptor.2.1 + +PackageName: io.openliberty.jakarta.interceptor.2.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.interceptor.2.1-78069b28c25a1408 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f76fcf3d571a1a54e195c1a1e534ddb99a573908 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.interceptor.2.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:io.openliberty.jakarta.interceptor.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interceptor:io.openliberty.jakarta.interceptor.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:interceptor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.interceptor.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.interceptor.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.interceptor.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:io.openliberty.jakarta.interceptor.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.interceptor.2.1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interceptor:interceptor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:interceptor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interceptor:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:interceptor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:interceptor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:interceptor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interceptor:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:interceptor:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.interceptor.2.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.jsonb.3.0 + +PackageName: io.openliberty.jakarta.jsonb.3.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.jsonb.3.0-9dd0dc9b16e624f7 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 88fb55f7702b3547fb283d59c3c7cfab1663df9a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.jsonb.3.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:io.openliberty.jakarta.jsonb.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.jsonb.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.jsonb.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:io.openliberty.jakarta.jsonb.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.jsonb.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.jakarta.jsonb.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonb.3.0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jsonb:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.jsonb.3.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.jsonp.2.1 + +PackageName: io.openliberty.jakarta.jsonp.2.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.jsonp.2.1-a9f126779846a343 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 600b2ff80a6a5a1eaef97bf9a29aed708b26ec81 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.jsonp.2.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:io.openliberty.jakarta.jsonp.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.jsonp.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.jsonp.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:io.openliberty.jakarta.jsonp.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.jsonp.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:io.openliberty.jakarta.jsonp.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.jsonp.2.1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jsonp:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonp:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.jsonp.2.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.mail.2.1 + +PackageName: io.openliberty.jakarta.mail.2.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.mail.2.1-2ab37d9ff119e432 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 4b8d7f012d2c2deaf25916df9add6029c45829e7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.mail.2.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.mail.2.1:io.openliberty.jakarta.mail.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.mail.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.mail.2.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.mail.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.mail.2.1:mail:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mail:io.openliberty.jakarta.mail.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.mail.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:io.openliberty.jakarta.mail.2.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.mail.2.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.mail.2.1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:mail:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:mail:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mail:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mail:mail:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:mail:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:mail:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mail:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mail:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.mail.2.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.pages.3.1 + +PackageName: io.openliberty.jakarta.pages.3.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.pages.3.1-128193a06618afaf +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 4faf3d5e290d6c3a3d3176104b4f1e5202de0fff +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.pages.3.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.pages.3.1:io.openliberty.jakarta.pages.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.pages.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.pages.3.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.pages.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.pages.3.1:pages:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pages:io.openliberty.jakarta.pages.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.pages.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.jakarta.pages.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.pages.3.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.pages.3.1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:pages:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:pages:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pages:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pages:pages:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:pages:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:pages:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pages:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pages:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.pages.3.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.persistence.3.1 + +PackageName: io.openliberty.jakarta.persistence.3.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.persistence.3.1-52af0fd25b633d19 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 4986ce5b27977030908c1778ebdb043b6f704e4c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.persistence.3.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.jakarta.persistence.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.3.1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.persistence.3.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.persistence.api.3.1 + +PackageName: io.openliberty.jakarta.persistence.api.3.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.persistence.api.3.1-ca362583b374a441 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6da72084de2ac752bbb1a3155fceacec1a28c062 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.jakarta.persistence.api.3.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:io.openliberty.jakarta.persistence.api.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.persistence.api.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:io.openliberty.jakarta.persistence.api.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.persistence.api.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:io.openliberty.jakarta.persistence.api.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.persistence.api.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.jakarta.persistence.api.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.persistence.api.3.1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:api:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:api:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.persistence.api.3.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.restfulWS.3.1 + +PackageName: io.openliberty.jakarta.restfulWS.3.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.restfulWS.3.1-7ccdfa2119281541 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8c9de69561ec2a1185ea631894572f7f79f3109b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.restfulWS.3.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:io.openliberty.jakarta.restfulWS.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.restfulWS.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:io.openliberty.jakarta.restfulWS.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.restfulWS.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.jakarta.restfulWS.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.jakarta.restfulWS.3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.restfulWS.3.1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.restfulWS.3.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.servlet.6.0 + +PackageName: io.openliberty.jakarta.servlet.6.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.servlet.6.0-4b40cefce58f0cac +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 01434105ca315d834039b38f660ba5091cd7c749 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.servlet.6.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:io.openliberty.jakarta.servlet.6.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.servlet.6.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.servlet.6.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:io.openliberty.jakarta.servlet.6.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.servlet.6.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:io.openliberty.jakarta.servlet.6.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.servlet.6.0:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.servlet.6.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.soap.3.0 + +PackageName: io.openliberty.jakarta.soap.3.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.soap.3.0-4d1af385604efc57 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6a37fca52245d12e8058ac69db1eb94c34464f97 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.soap.3.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.soap.3.0:io.openliberty.jakarta.soap.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.soap.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.soap.3.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.soap.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.soap.3.0:soap:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:soap:io.openliberty.jakarta.soap.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.soap.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.jakarta.soap.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.soap.3.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.soap.3.0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:soap:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:soap:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:soap:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:soap:soap:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:soap:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:soap:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:soap:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:soap:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.soap.3.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.transaction.2.0 + +PackageName: io.openliberty.jakarta.transaction.2.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.transaction.2.0-de6a4493c1f4ec7b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 5dd012a0b81e52b6642cf3e9a1c22e4422197e86 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.transaction.2.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:io.openliberty.jakarta.transaction.2.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.transaction.2.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:io.openliberty.jakarta.transaction.2.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.transaction.2.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.transaction.2.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:io.openliberty.jakarta.transaction.2.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.transaction.2.0:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:2:2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.transaction.2.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.validation.3.0 + +PackageName: io.openliberty.jakarta.validation.3.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.validation.3.0-27e05000e02b06ac +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 77d31a3e095dbe4cbf6a78dc1c04b5fad8ff653f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.validation.3.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.validation.3.0:io.openliberty.jakarta.validation.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.validation.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.validation.3.0:validation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:validation:io.openliberty.jakarta.validation.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.validation.3.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.validation.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.validation.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.jakarta.validation.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.validation.3.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.validation.3.0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:validation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:validation:validation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:validation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:validation:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:validation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:validation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:validation:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:validation:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.validation.3.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.xmlBinding.4.0 + +PackageName: io.openliberty.jakarta.xmlBinding.4.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.xmlBinding.4.0-9f8511fbe5569dad +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 731f0590053b4fcf9462a6808833119f0d40a667 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.xmlBinding.4.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:io.openliberty.jakarta.xmlBinding.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.xmlBinding.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:xmlBinding:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlBinding:io.openliberty.jakarta.xmlBinding.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.xmlBinding.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.xmlBinding.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.jakarta.xmlBinding.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlBinding.4.0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:xmlBinding:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlBinding:xmlBinding:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:xmlBinding:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlBinding:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:xmlBinding:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:xmlBinding:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlBinding:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlBinding:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.xmlBinding.4.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakarta.xmlWS.4.0 + +PackageName: io.openliberty.jakarta.xmlWS.4.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakarta.xmlWS.4.0-7e12bdbf180c8b67 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8582b7ba64bf095be13ec2c676f50a3656e88530 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/spec/io.openliberty.jakarta.xmlWS.4.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:io.openliberty.jakarta.xmlWS.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakarta.xmlWS.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.jakarta.xmlWS.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:xmlWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlWS:io.openliberty.jakarta.xmlWS.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.jakarta.xmlWS.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.jakarta.xmlWS.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakarta.xmlWS.4.0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:xmlWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:xmlWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlWS:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlWS:xmlWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:xmlWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:xmlWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlWS:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xmlWS:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakarta.xmlWS.4.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakartaee.platform.v10 + +PackageName: io.openliberty.jakartaee.platform.v10 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakartaee.platform.v10-20733c6463dd687a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 348063905c4857f6fdce0c5a892aa136fe6cb703 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.jakartaee.platform.v10_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v10:io.openliberty.jakartaee.platform.v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakartaee.platform.v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v10:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:io.openliberty.jakartaee.platform.v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v10:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:io.openliberty.jakartaee.platform.v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v10:v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v10:io.openliberty.jakartaee.platform.v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v10:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v10:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v10:v10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakartaee.platform.v10@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jakartaee.platform.v9 + +PackageName: io.openliberty.jakartaee.platform.v9 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jakartaee.platform.v9-4281e9510ade84e9 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f4ba617f393e657ebe2a81b9bf3cb5abfe36930e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.jakartaee.platform.v9_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v9:io.openliberty.jakartaee.platform.v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jakartaee.platform.v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v9:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:io.openliberty.jakartaee.platform.v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v9:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:io.openliberty.jakartaee.platform.v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jakartaee.platform.v9:v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v9:io.openliberty.jakartaee.platform.v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakartaee:v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v9:jakartaee:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v9:platform:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:v9:v9:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jakartaee.platform.v9@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.java11.internal + +PackageName: io.openliberty.java11.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.java11.internal-38ddfeb1154186b8 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 30f58efe4bd9b199e4f85dc03deb57784c30c70c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.java11.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.java11.internal:io.openliberty.java11.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.java11.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.java11.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.java11.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.java11.internal:java11:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java11:io.openliberty.java11.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:java11:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:java11:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java11:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:java11:java11:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.java11.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jaxrs30 + +PackageName: io.openliberty.jaxrs30 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jaxrs30-e775cebf7062ff5c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: b888a8585d5c77b542e141db0cf1ef3884023939 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/io.openliberty.jaxrs30_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jaxrs30:io.openliberty.jaxrs30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jaxrs30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jaxrs30:jaxrs30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs30:io.openliberty.jaxrs30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jaxrs30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaxrs30:jaxrs30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jaxrs30@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.jcache.internal + +PackageName: io.openliberty.jcache.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.jcache.internal-65a05a3bf42e0221 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3ac78fb4dd8634a3555df67d67c5ce85b1351128 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.jcache.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jcache.internal:io.openliberty.jcache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.jcache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.jcache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jcache.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.jcache.internal:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:io.openliberty.jcache.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jcache:jcache:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.jcache.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.microprofile.config.internal.common + +PackageName: io.openliberty.microprofile.config.internal.common +SPDXID: SPDXRef-Package-java-archive-io.openliberty.microprofile.config.internal.common-7354fb61a26e927e +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1683a9245c648f7cadb2d3d61d9d1764ee48e25b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.microprofile.config.internal.common_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.common:io.openliberty.microprofile.config.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.common:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.microprofile.config.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.microprofile.config.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.microprofile.config.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.common:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:io.openliberty.microprofile.config.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:io.openliberty.microprofile.config.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.common:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.microprofile.config.internal.common@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.microprofile.config.internal.serverxml + +PackageName: io.openliberty.microprofile.config.internal.serverxml +SPDXID: SPDXRef-Package-java-archive-io.openliberty.microprofile.config.internal.serverxml-6abea41833808907 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0bbce9be3a1b8c33d70fc7233fe2beda271d5fc9 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.microprofile.config.internal.serverxml_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:io.openliberty.microprofile.config.internal.serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.microprofile.config.internal.serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.microprofile.config.internal.serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverxml:io.openliberty.microprofile.config.internal.serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.microprofile.config.internal.serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:io.openliberty.microprofile.config.internal.serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.config.internal.serverxml:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverxml:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverxml:serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverxml:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:serverxml:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverxml:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.microprofile.config.internal.serverxml@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.microprofile.health.3.1.internal.jakarta + +PackageName: io.openliberty.microprofile.health.3.1.internal.jakarta +SPDXID: SPDXRef-Package-java-archive-io.openliberty.microprofile.health.3.1.internal.jakarta-8dbab8314d5b8152 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0150eda80144cf67eafd5208fbfbbd941a60c57c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.microprofile.health.3.1.internal.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.microprofile.health.3.1.internal.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.health.3.1.internal.jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.microprofile.health.3.1.internal.jakarta@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.microprofile.metrics.5.0.internal + +PackageName: io.openliberty.microprofile.metrics.5.0.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.internal-aa29e6c851679007 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 75f44fa3ab07c18f67370940b5f87ac9d92d8931 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:io.openliberty.microprofile.metrics.5.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.microprofile.metrics.5.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.microprofile.metrics.5.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.microprofile.metrics.5.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:io.openliberty.microprofile.metrics.5.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.microprofile.metrics.5.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:io.openliberty.microprofile.metrics.5.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.microprofile.metrics.5.0.monitor.internal + +PackageName: io.openliberty.microprofile.metrics.5.0.monitor.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.monitor.internal-a00da8d5e98c46b3 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: be68c14f28952f6a029fe5d54226c22927dc4b13 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.monitor.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:io.openliberty.microprofile.metrics.5.0.monitor.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.monitor.internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:monitor:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:monitor:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.monitor.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.microprofile.metrics.5.0.private.internal + +PackageName: io.openliberty.microprofile.metrics.5.0.private.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.private.internal-6b73b703db0b4142 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d89ea59f225f74b9f8801c13af04cb06de1012c7 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.private.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:private:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:io.openliberty.microprofile.metrics.5.0.private.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.private.internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:private:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:private:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:private:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:private:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:private:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:private:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:private:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.private.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.microprofile.metrics.5.0.public.internal + +PackageName: io.openliberty.microprofile.metrics.5.0.public.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.public.internal-ab489b83add53d04 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6651592c5a5dd169431ae962031171362a494c6e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.microprofile.metrics.5.0.public.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:public:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:io.openliberty.microprofile.metrics.5.0.public.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.microprofile.metrics.5.0.public.internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:public:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:public:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:public:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:public:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:public:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:public:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:public:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.microprofile.metrics.5.0.public.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.netty.internal + +PackageName: io.openliberty.netty.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.netty.internal-bf9bec02f2693337 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 388c33a47df9ed5f0724ff027968aab73ea1ca0e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.netty.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal:io.openliberty.netty.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.netty.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.netty.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:io.openliberty.netty.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.netty.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.netty.internal.tls.impl + +PackageName: io.openliberty.netty.internal.tls.impl +SPDXID: SPDXRef-Package-java-archive-io.openliberty.netty.internal.tls.impl-618277a2b604b791 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3a2e909afc5ba18b03e2cf51525ed50e0acdd76a +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.netty.internal.tls.impl_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal.tls.impl:io.openliberty.netty.internal.tls.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.netty.internal.tls.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.netty.internal.tls.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal.tls.impl:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal.tls.impl:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:io.openliberty.netty.internal.tls.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:io.openliberty.netty.internal.tls.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal.tls.impl:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.netty.internal.tls.impl:tls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tls:io.openliberty.netty.internal.tls.impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:tls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:tls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tls:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:netty:tls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tls:netty:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:impl:tls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tls:impl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tls:tls:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.netty.internal.tls.impl@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.apache.commons.codec + +PackageName: io.openliberty.org.apache.commons.codec +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.apache.commons.codec-a44140855947d054 +PackageVersion: 1.15.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d757c6d041ee20a581d548165ecdac00e38a5eef +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.apache.commons.codec_1.15.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-https---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:io.openliberty.org.apache.commons.codec:1.15.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:commons:1.15.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.15.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:codec:1.15.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.15.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.apache.commons.codec@1.15.81.cl230920230904-1158 + +##### Package: io.openliberty.org.apache.commons.logging + +PackageName: io.openliberty.org.apache.commons.logging +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.apache.commons.logging-31c3e284ec109962 +PackageVersion: 1.2.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 279c6e2aeb7bc063c8a89b3888e91405b76b9bf3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.apache.commons.logging_1.2.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:io.openliberty.org.apache.commons.logging:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:commons:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:logging:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:apache:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:apache:org:1.2.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.apache.commons.logging@1.2.81.cl230920230904-1158 + +##### Package: io.openliberty.org.eclipse.angus.activation + +PackageName: io.openliberty.org.eclipse.angus.activation +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.angus.activation-83344f32bf0da0b4 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 61fd83498039f3a5148621b5d8bddd089a3502ca +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.eclipse.angus.activation_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:io.openliberty.org.eclipse.angus.activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.angus.activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:io.openliberty.org.eclipse.angus.activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.angus.activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:angus:io.openliberty.org.eclipse.angus.activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:angus:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.angus.activation:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.angus.activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:angus:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:angus:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:angus:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:activation:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:activation:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:angus:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:angus:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:angus:angus:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:angus:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:angus:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.eclipse.angus.activation@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.eclipse.microprofile.config.3.0 + +PackageName: io.openliberty.org.eclipse.microprofile.config.3.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.config.3.0-e6925c5839937e85 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 82a87ef7328be3acf5e241fdf190ac5d554d03cd +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.config.3.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.org.eclipse.microprofile.config.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.config.3.0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.eclipse.microprofile.config.3.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.eclipse.microprofile.health.4.0 + +PackageName: io.openliberty.org.eclipse.microprofile.health.4.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.health.4.0-de255c121c78305a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d7bdad438ae273a9832e6b50bcdc206797cd2935 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.health.4.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:io.openliberty.org.eclipse.microprofile.health.4.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.health.4.0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:health:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:health:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:4:4:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.eclipse.microprofile.health.4.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.eclipse.microprofile.metrics.5.0 + +PackageName: io.openliberty.org.eclipse.microprofile.metrics.5.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.metrics.5.0-fcb825d727397a08 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: af846df8b48e4ef61618aac55d5e5a5bc8589598 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/stable/io.openliberty.org.eclipse.microprofile.metrics.5.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:io.openliberty.org.eclipse.microprofile.metrics.5.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.microprofile.metrics.5.0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:microprofile:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:microprofile:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:metrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:metrics:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:5:5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.eclipse.microprofile.metrics.5.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.eclipse.parsson.1.1 + +PackageName: io.openliberty.org.eclipse.parsson.1.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.parsson.1.1-1bb0c08cba48bbd4 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cd6e21087835ad34204fdf63c9aaa66e8339423c +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.eclipse.parsson.1.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-12fb2ee089bfd860136a5dc94e5a1990ee9cc0e49396da51c2a58d0552aa370b +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:io.openliberty.org.eclipse.parsson.1.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.parsson.1.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.parsson.1.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:parsson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsson:io.openliberty.org.eclipse.parsson.1.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.parsson.1.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.org.eclipse.parsson.1.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.parsson.1.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:parsson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:parsson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsson:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsson:parsson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:parsson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsson:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:parsson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:parsson:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.eclipse.parsson.1.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.eclipse.persistence-3.1 + +PackageName: io.openliberty.org.eclipse.persistence-3.1 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.persistence-3.1-012f8ad4fa8efe92 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7ac9a2cd7ee99b646e01c47c7cd91c447fd9aa54 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.eclipse.persistence-3.1_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.org.eclipse.persistence-3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.org.eclipse.persistence_3.1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence-3.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence_3.1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.persistence:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:JakartaPersistenceActivator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:JakartaPersistenceActivator:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:persistence-3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:persistence_3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence-3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence_3:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:persistence:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:persistence:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.eclipse.persistence-3.1@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.eclipse.yasson.3.0 + +PackageName: io.openliberty.org.eclipse.yasson.3.0 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.yasson.3.0-882143b6eaf54e26 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: b586ad0a5a9f7433fc47b88bcca626798418d4db +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.eclipse.yasson.3.0_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-61844448b5d7c01d6d8b1e440ffbfaddcb562b77af86d4b0eda5607a169affb8 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:io.openliberty.org.eclipse.yasson.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.eclipse.yasson.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:io.openliberty.org.eclipse.yasson.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:yasson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:yasson:io.openliberty.org.eclipse.yasson.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.eclipse.yasson.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.org.eclipse.yasson.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.org.eclipse.yasson.3.0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.eclipse.yasson.3.0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:yasson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:yasson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:yasson:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:yasson:yasson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:yasson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:yasson:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:eclipse:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:yasson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:yasson:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:yasson:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:yasson:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.eclipse.yasson.3.0@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.glassfish.hk2.osgi-resource-locator + +PackageName: io.openliberty.org.glassfish.hk2.osgi-resource-locator +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.glassfish.hk2.osgi-resource-locator-2dd36d13eb338803 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 54dfdbe849208a2d5b4d394b014009240a0cd930 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.glassfish.hk2.osgi-resource-locator_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource-locator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource_locator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.glassfish.hk2.osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.glassfish.hk2.osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi-resource:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi_resource:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.glassfish.hk2.osgi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi-resource-locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgi_resource_locator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource-locator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource_locator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:osgiresourcelocator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgiresourcelocator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi-resource:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi_resource:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:Activator:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glassfish:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:Activator:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:glassfish:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hk2:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:hk2:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.glassfish.hk2.osgi-resource-locator@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.jboss.classfilewriter.1.3 + +PackageName: io.openliberty.org.jboss.classfilewriter.1.3 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.jboss.classfilewriter.1.3-2400266da2e70a6d +PackageVersion: 1.3.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: c928fd1ee45eb69b327e01ce884b3de54bef75f3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.jboss.classfilewriter.1.3_1.3.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classfilewriter:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:io.openliberty.org.jboss.classfilewriter.1.3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.classfilewriter.1.3:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classfilewriter:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classfilewriter:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classfilewriter:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:classfilewriter:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classfilewriter:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:classfilewriter:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:jboss:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:org:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:1:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:1:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:3:3:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.jboss.classfilewriter.1.3@1.3.81.cl230920230904-1158 + +##### Package: io.openliberty.org.jboss.logging35 + +PackageName: io.openliberty.org.jboss.logging35 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.jboss.logging35-6f5042d0577c4190 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f8736a8ce3f6f7686e4a6bb4ffafaa4428e0d3fe +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.jboss.logging35_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-https---www.apache.org-licenses-LICENSE-2.0.txt +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.logging35:io.openliberty.org.jboss.logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:io.openliberty.org.jboss.logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:io.openliberty.org.jboss.logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.jboss.logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.logging35:logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging35:io.openliberty.org.jboss.logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.logging35:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:io.openliberty.org.jboss.logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.logging35:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.jboss.logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss-by-red-hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss_by_red_hat:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging35:logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging35:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging35:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:logging35:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.jboss.logging35@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.jboss.resteasy.cdi.ee10 + +PackageName: io.openliberty.org.jboss.resteasy.cdi.ee10 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.cdi.ee10-e78953ee8df3990f +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 0d23fe9e3b6dd8e4cd6ae815e676d201f030c9ae +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.cdi.ee10_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.cdi.ee10:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.jboss.resteasy.cdi.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:cdi:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.jboss.resteasy.cdi.ee10@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.jboss.resteasy.common.ee10 + +PackageName: io.openliberty.org.jboss.resteasy.common.ee10 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.common.ee10-5dc2391a0014e80d +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: dd369314f26c84f4ae932e72a7be883fcd596228 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.common.ee10_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:io.openliberty.org.jboss.resteasy.common.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.jboss.resteasy.common.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:io.openliberty.org.jboss.resteasy.common.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:io.openliberty.org.jboss.resteasy.common.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:io.openliberty.org.jboss.resteasy.common.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:io.openliberty.org.jboss.resteasy.common.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.common.ee10:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.jboss.resteasy.common.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.jboss.resteasy.common.ee10@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.jboss.resteasy.server.ee10 + +PackageName: io.openliberty.org.jboss.resteasy.server.ee10 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.server.ee10-be66d3c87069f1f6 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1a26bb7ece7f688f303eb06ce6441e45b043ff98 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.jboss.resteasy.server.ee10_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:io.openliberty.org.jboss.resteasy.server.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.jboss.resteasy.server.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:io.openliberty.org.jboss.resteasy.server.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:io.openliberty.org.jboss.resteasy.server.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:io.openliberty.org.jboss.resteasy.server.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:io.openliberty.org.jboss.resteasy.server.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.resteasy.server.ee10:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.jboss.resteasy.server.ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:resteasy:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:resteasy:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ee10:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:ee10:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.jboss.resteasy.server.ee10@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.jboss.weld5 + +PackageName: io.openliberty.org.jboss.weld5 +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.jboss.weld5-42d3117b8c69897a +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8592d52e48da3f67458b30efec3e7e4cbca9125b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.jboss.weld5_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.html +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5:io.openliberty.org.jboss.weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.jboss.weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:io.openliberty.org.jboss.weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:io.openliberty.org.jboss.weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.jboss.weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.jboss.weld5@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.org.jboss.weld5.se + +PackageName: io.openliberty.org.jboss.weld5.se +SPDXID: SPDXRef-Package-java-archive-io.openliberty.org.jboss.weld5.se-fbad8c9ad57d9307 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 682175ab3157695e910d5ed88f08cc7097913f2b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.org.jboss.weld5.se_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5.se:io.openliberty.org.jboss.weld5.se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.org.jboss.weld5.se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5.se:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5.se:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:io.openliberty.org.jboss.weld5.se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:io.openliberty.org.jboss.weld5.se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5.se:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:io.openliberty.org.jboss.weld5.se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.org.jboss.weld5.se:se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:se:io.openliberty.org.jboss.weld5.se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jboss:se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:se:jboss:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:se:weld5:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:weld5:se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org:se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:se:org:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:se:se:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.org.jboss.weld5.se@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.restfulWS.internal.ssl + +PackageName: io.openliberty.restfulWS.internal.ssl +SPDXID: SPDXRef-Package-java-archive-io.openliberty.restfulWS.internal.ssl-83e65ff9b0b27acb +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f1b41a2fe620aed188f3cc7b775c716adda8daeb +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.restfulWS.internal.ssl_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.internal.ssl:io.openliberty.restfulWS.internal.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.restfulWS.internal.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.internal.ssl:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:io.openliberty.restfulWS.internal.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.restfulWS.internal.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.internal.ssl:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.internal.ssl:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:io.openliberty.restfulWS.internal.ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.restfulWS.internal.ssl@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.restfulWS.mpMetrics.filter + +PackageName: io.openliberty.restfulWS.mpMetrics.filter +SPDXID: SPDXRef-Package-java-archive-io.openliberty.restfulWS.mpMetrics.filter-b921929bb8e9c339 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 3664b136dd3c8afe2d5b013d50fd33a7dd36f527 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.restfulWS.mpMetrics.filter_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.mpMetrics.filter:io.openliberty.restfulWS.mpMetrics.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.restfulWS.mpMetrics.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.mpMetrics.filter:mpMetrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.mpMetrics.filter:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mpMetrics:io.openliberty.restfulWS.mpMetrics.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:io.openliberty.restfulWS.mpMetrics.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:io.openliberty.restfulWS.mpMetrics.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS.mpMetrics.filter:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:mpMetrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mpMetrics:mpMetrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mpMetrics:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:mpMetrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:mpMetrics:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:restfulWS:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mpMetrics:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.restfulWS.mpMetrics.filter@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.restfulWS30.jsonb20provider + +PackageName: io.openliberty.restfulWS30.jsonb20provider +SPDXID: SPDXRef-Package-java-archive-io.openliberty.restfulWS30.jsonb20provider-79b622081ee5a476 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 94027de1e2e8ca0975da0ca41bdb6d37c744b63d +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.restfulWS30.jsonb20provider_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS30.jsonb20provider:io.openliberty.restfulWS30.jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS30.jsonb20provider:jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb20provider:io.openliberty.restfulWS30.jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.restfulWS30.jsonb20provider:restfulWS30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.restfulWS30.jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS30:io.openliberty.restfulWS30.jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb20provider:jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jsonb20provider:restfulWS30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS30:jsonb20provider:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:restfulWS30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:restfulWS30:restfulWS30:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.restfulWS30.jsonb20provider@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.security + +PackageName: io.openliberty.security +SPDXID: SPDXRef-Package-java-archive-io.openliberty.security-338956fc7ac5ebb9 +PackageVersion: 1.3.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8d90e54083da2b106780485f2eac3f89021ddef8 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/io.openliberty.security_1.3.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security:io.openliberty.security:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.security:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security:security:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:io.openliberty.security:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:security:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.3.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.security@1.3.81.cl230920230904-1158 + +##### Package: io.openliberty.security.authentication.internal.builtin + +PackageName: io.openliberty.security.authentication.internal.builtin +SPDXID: SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.builtin-5463bf749e0971ce +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 11a8607e1ac245b4248725f2a7ef5c52a26bcc49 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.security.authentication.internal.builtin_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:io.openliberty.security.authentication.internal.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:io.openliberty.security.authentication.internal.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.security.authentication.internal.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.security.authentication.internal.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:io.openliberty.security.authentication.internal.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:io.openliberty.security.authentication.internal.builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.builtin:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:builtin:builtin:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.security.authentication.internal.builtin@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.security.authentication.internal.filter + +PackageName: io.openliberty.security.authentication.internal.filter +SPDXID: SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.filter-ad8eaf70eb144d78 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 75ecb2a58afd5bb11c90f8c9381105d9f4343456 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.security.authentication.internal.filter_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.filter:io.openliberty.security.authentication.internal.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:io.openliberty.security.authentication.internal.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.filter:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.security.authentication.internal.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.security.authentication.internal.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.filter:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.filter:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:io.openliberty.security.authentication.internal.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:io.openliberty.security.authentication.internal.filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.filter:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filter:filter:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.security.authentication.internal.filter@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.security.authentication.internal.tai + +PackageName: io.openliberty.security.authentication.internal.tai +SPDXID: SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.tai-13af1a248263e9c5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a282f996e08863d582518a88ea8a0d11bb69801e +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.security.authentication.internal.tai_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.tai:io.openliberty.security.authentication.internal.tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:io.openliberty.security.authentication.internal.tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.tai:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.security.authentication.internal.tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.security.authentication.internal.tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.tai:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.tai:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:io.openliberty.security.authentication.internal.tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.authentication.internal.tai:tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tai:io.openliberty.security.authentication.internal.tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:authentication:tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tai:authentication:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tai:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tai:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tai:tai:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.security.authentication.internal.tai@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.security.jaas.internal.common + +PackageName: io.openliberty.security.jaas.internal.common +SPDXID: SPDXRef-Package-java-archive-io.openliberty.security.jaas.internal.common-99399c598d276da1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a09abadfc8316c5d16c0756023e4b716ae7d9bcb +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.security.jaas.internal.common_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.jaas.internal.common:io.openliberty.security.jaas.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.security.jaas.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.security.jaas.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.jaas.internal.common:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.jaas.internal.common:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:io.openliberty.security.jaas.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:io.openliberty.security.jaas.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.jaas.internal.common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.jaas.internal.common:jaas:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaas:io.openliberty.security.jaas.internal.common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jaas:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jaas:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaas:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaas:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:jaas:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:common:jaas:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaas:common:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jaas:jaas:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.security.jaas.internal.common@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.security.sso.internal + +PackageName: io.openliberty.security.sso.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.security.sso.internal-d6187fd248cce2ce +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 2851ee968221c18e5918fb41fe93a9c3cfff5378 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.security.sso.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.sso.internal:io.openliberty.security.sso.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.security.sso.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.security.sso.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.sso.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.sso.internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:io.openliberty.security.sso.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.security.sso.internal:sso:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sso:io.openliberty.security.sso.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:sso:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:sso:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:sso:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sso:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sso:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sso:sso:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.security.sso.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.session.6.0.internal + +PackageName: io.openliberty.session.6.0.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.session.6.0.internal-1c350314002feaf1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1eb0059e9faf44de786bead0ba88f7b579f37f61 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.session.6.0.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.session.6.0.internal:io.openliberty.session.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.session.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.session.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.session.6.0.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.session.6.0.internal:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:io.openliberty.session.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.session.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:io.openliberty.session.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.session.6.0.internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.session.6.0.internal:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:session:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:session:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.session.6.0.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.transaction + +PackageName: io.openliberty.transaction +SPDXID: SPDXRef-Package-java-archive-io.openliberty.transaction-8a165dac8620c5e9 +PackageVersion: 1.1.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 7b3438ddf373774703b3b60de39900301bf0131f +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/dev/api/ibm/io.openliberty.transaction_1.1.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.transaction:io.openliberty.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.transaction:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:io.openliberty.transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:transaction:1.1.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.transaction@1.1.81.cl230920230904-1158 + +##### Package: io.openliberty.transaction.internal.cdi20.jakarta + +PackageName: io.openliberty.transaction.internal.cdi20.jakarta +SPDXID: SPDXRef-Package-java-archive-io.openliberty.transaction.internal.cdi20.jakarta-b5fc44809a53b473 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 4c5074ab61f40e54b75f1b3e8524b38254d64880 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.transaction.internal.cdi20.jakarta_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:io.openliberty.transaction.internal.cdi20.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.transaction.internal.cdi20.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:io.openliberty.transaction.internal.cdi20.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.transaction.internal.cdi20.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:io.openliberty.transaction.internal.cdi20.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi20:io.openliberty.transaction.internal.cdi20.jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.transaction.internal.cdi20.jakarta:cdi20:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi20:transaction:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:cdi20:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:transaction:cdi20:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi20:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:cdi20:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi20:jakarta:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jakarta:cdi20:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cdi20:cdi20:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.transaction.internal.cdi20.jakarta@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.webcontainer.security.internal + +PackageName: io.openliberty.webcontainer.security.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.webcontainer.security.internal-3d1dbec5aaae7993 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8a75bf6d953aed59a8aaf93b199cfac202ff9dca +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.webcontainer.security.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.security.internal:io.openliberty.webcontainer.security.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.security.internal:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:io.openliberty.webcontainer.security.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.webcontainer.security.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.webcontainer.security.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.security.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.security.internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:io.openliberty.webcontainer.security.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.webcontainer.security.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.webcontainer.servlet.6.0.internal + +PackageName: io.openliberty.webcontainer.servlet.6.0.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.webcontainer.servlet.6.0.internal-dbeb836c22275336 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 8b14f75a7e76af8b308d8296e28cd92e85457691 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.webcontainer.servlet.6.0.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:io.openliberty.webcontainer.servlet.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:io.openliberty.webcontainer.servlet.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.webcontainer.servlet.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.webcontainer.servlet.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:io.openliberty.webcontainer.servlet.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.webcontainer.servlet.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:io.openliberty.webcontainer.servlet.6.0.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.webcontainer.servlet.6.0.internal@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.webcontainer.servlet.6.0.internal.factories + +PackageName: io.openliberty.webcontainer.servlet.6.0.internal.factories +SPDXID: SPDXRef-Package-java-archive-io.openliberty.webcontainer.servlet.6.0.internal.factories-54be295232b23485 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1066aa5399c2dc76e7afbc19b19caf980fa7f5f5 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.webcontainer.servlet.6.0.internal.factories_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:factories:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:io.openliberty.webcontainer.servlet.6.0.internal.factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.webcontainer.servlet.6.0.internal.factories:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:factories:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:factories:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:factories:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:factories:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:webcontainer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webcontainer:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:factories:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:factories:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:factories:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:servlet:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:servlet:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:0:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:0:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:6:6:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.webcontainer.servlet.6.0.internal.factories@1.0.81.cl230920230904-1158 + +##### Package: io.openliberty.wsoc.ssl.internal + +PackageName: io.openliberty.wsoc.ssl.internal +SPDXID: SPDXRef-Package-java-archive-io.openliberty.wsoc.ssl.internal-8e0e00ee38279d62 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: d4e0c38ba43381cb0bb5b6708350a68457d6ec04 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/io.openliberty.wsoc.ssl.internal_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.wsoc.ssl.internal:io.openliberty.wsoc.ssl.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:io.openliberty.wsoc.ssl.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:io.openliberty.wsoc.ssl.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.wsoc.ssl.internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.wsoc.ssl.internal:wsoc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsoc:io.openliberty.wsoc.ssl.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:io.openliberty.wsoc.ssl.internal:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:io.openliberty.wsoc.ssl.internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:wsoc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openliberty:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:wsoc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsoc:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:internal:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsoc:wsoc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:wsoc:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:wsoc:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ssl:ssl:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/io.openliberty.wsoc.ssl.internal@1.0.81.cl230920230904-1158 + +##### Package: jrt-fs + +PackageName: jrt-fs +SPDXID: SPDXRef-Package-java-archive-jrt-fs-b5a4068828245f9c +PackageVersion: 17.0.8.1 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: cb9b98d3ed84334a85714a98bd28294cdd45f745 +PackageSourceInfo: acquired package info from installed java archive: /opt/java/openjdk/lib/jrt-fs.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: NOASSERTION +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:oracle-corporation:jrt-fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:oracle-corporation:jrt_fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:oracle_corporation:jrt-fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:oracle_corporation:jrt_fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm-corporation:jrt-fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm-corporation:jrt_fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm_corporation:jrt-fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm_corporation:jrt_fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jrt-fs:jrt-fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jrt-fs:jrt_fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jrt_fs:jrt-fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jrt_fs:jrt_fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jrt:jrt-fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jrt:jrt_fs:17.0.8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/jrt-fs/jrt-fs@17.0.8.1 + +##### Package: org.eclipse.osgi + +PackageName: org.eclipse.osgi +SPDXID: SPDXRef-Package-java-archive-org.eclipse.osgi-98c62e474bd18238 +PackageVersion: 3.18.300.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 019063c54256283568372296659695a9ceae6808 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/org.eclipse.osgi_3.18.300.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:SystemBundleActivator:SystemBundleActivator:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:SystemBundleActivator:org.eclipse.osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org.eclipse.osgi:SystemBundleActivator:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org.eclipse.osgi:org.eclipse.osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:SystemBundleActivator:framework:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:framework:SystemBundleActivator:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:SystemBundleActivator:internal:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:SystemBundleActivator:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:SystemBundleActivator:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:SystemBundleActivator:osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:framework:org.eclipse.osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org.eclipse.osgi:framework:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:SystemBundleActivator:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:org.eclipse.osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org.eclipse.osgi:internal:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:org.eclipse.osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:org.eclipse.osgi:osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:org.eclipse.osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:framework:framework:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:framework:internal:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:framework:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:framework:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:internal:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:internal:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:framework:osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:framework:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:internal:osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:internal:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:eclipse:osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:osgi:osgi:3.18.300.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/dev/org.eclipse.osgi@3.18.300.cl230920230904-1158 + +##### Package: ws-auditreader + +PackageName: ws-auditreader +SPDXID: SPDXRef-Package-java-archive-ws-auditreader-2cb4d0d746cdae86 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a0bde2758989386487d5135c5aa44c83df71e8a1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-auditreader.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.security.audit.reader.auditreader/ws-auditreader@1.0.81.cl230920230904-1158 + +##### Package: ws-auditreader + +PackageName: ws-auditreader +SPDXID: SPDXRef-Package-java-archive-ws-auditreader-f510d73363ff9447 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a0bde2758989386487d5135c5aa44c83df71e8a1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.audit.reader_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:auditreader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:auditreader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:reader:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:reader:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:audit:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.security.audit.reader.auditreader/ws-auditreader@1.0.81.cl230920230904-1158 + +##### Package: ws-binarylogviewer + +PackageName: ws-binarylogviewer +SPDXID: SPDXRef-Package-java-archive-ws-binarylogviewer-ad2bec3dc6b298dd +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: c91b678962771431ded4369398444edc2442c296 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-binarylogviewer.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-binarylogviewer:ws-binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-binarylogviewer:ws_binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_binarylogviewer:ws-binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_binarylogviewer:ws_binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:ws-binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:ws_binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-binarylogviewer:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_binarylogviewer:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws-binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws_binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-binarylogviewer:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_binarylogviewer:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:ws-binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:ws_binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-binarylogviewer:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_binarylogviewer:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-binarylogviewer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_binarylogviewer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:binarylogviewer:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:binarylogviewer:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:logging:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:logging:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:hpel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:hpel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.logging.hpel.binarylogviewer/ws-binarylogviewer@1.0.81.cl230920230904-1158 + +##### Package: ws-featureUtility + +PackageName: ws-featureUtility +SPDXID: SPDXRef-Package-java-archive-ws-featureUtility-1c587851fc967577 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: eedd908592392e0943cdb93429c34f74b1dc6d77 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-featureUtility.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featureUtility:ws-featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featureUtility:ws_featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featureUtility:ws-featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featureUtility:ws_featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:ws-featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:ws_featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featureUtility:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featureUtility:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:ws-featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:ws_featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featureUtility:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featureUtility:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:ws-featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:ws_featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featureUtility:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featureUtility:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featureUtility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featureUtility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureUtility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:featureUtility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featureutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:featureutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:install:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:install:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.install.featureUtility.featureutil/ws-featureUtility@1.0.81.cl230920230904-1158 + +##### Package: ws-featurelist + +PackageName: ws-featurelist +SPDXID: SPDXRef-Package-java-archive-ws-featurelist-db745e443214a1e2 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: af3abc47687a9ebe72045b42c15251af60365ca1 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-featurelist.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featurelist:ws-featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featurelist:ws_featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featurelist:ws-featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featurelist:ws_featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:ws-featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:ws_featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featurelist:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featurelist:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:ws-featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:ws_featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featurelist:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featurelist:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featurelist:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featurelist:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-featurelist:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_featurelist:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:featurelist:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:featurelist:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:feature:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:feature:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.kernel.feature.featurelist/ws-featurelist@1.0.81.cl230920230904-1158 + +##### Package: ws-javaagent + +PackageName: ws-javaagent +SPDXID: SPDXRef-Package-java-archive-ws-javaagent-286db1a1f1423963 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: f943bc25281f17cd228becf29f5d50eaedb89f01 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-javaagent.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-javaagent:ws-javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-javaagent:ws_javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_javaagent:ws-javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_javaagent:ws_javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:ws-javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:ws_javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-javaagent:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_javaagent:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-javaagent:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_javaagent:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:ws-javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:ws_javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-javaagent:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_javaagent:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-javaagent:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_javaagent:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_javaagent:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:instrument:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:instrument:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:check:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:check:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.kernel.instrument.check/ws-javaagent@1.0.81.cl230920230904-1158 + +##### Package: ws-launch + +PackageName: ws-launch +SPDXID: SPDXRef-Package-java-archive-ws-launch-22d346fb8340a3c1 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 6fc615ac75e09a7bf51e921c019fbb5aac09af1b +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/ws-launch.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-launch:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_launch:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_launch:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.kernel.boot.ws-launch/ws-launch@1.0.81.cl230920230904-1158 + +##### Package: ws-productutil + +PackageName: ws-productutil +SPDXID: SPDXRef-Package-java-archive-ws-productutil-af521fee7557a77b +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1d07129bec393f82d159e8bcfa85154dbaac2fab +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.product.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.product.utility.productutil/ws-productutil@1.0.81.cl230920230904-1158 + +##### Package: ws-productutil + +PackageName: ws-productutil +SPDXID: SPDXRef-Package-java-archive-ws-productutil-b3b1a307ad9a854d +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1d07129bec393f82d159e8bcfa85154dbaac2fab +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-productutil.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:productutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:productutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:product:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:product:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.product.utility.productutil/ws-productutil@1.0.81.cl230920230904-1158 + +##### Package: ws-schemagen + +PackageName: ws-schemagen +SPDXID: SPDXRef-Package-java-archive-ws-schemagen-2643abaf60e0638d +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 1c91aaabb2496ae4289f77dd7a2c4ac0e3b0ce01 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-schemagen.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-schemagen:ws-schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-schemagen:ws_schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_schemagen:ws-schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_schemagen:ws_schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws-schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws_schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws-schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws_schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.config.schemagen.schemagen/ws-schemagen@1.0.81.cl230920230904-1158 + +##### Package: ws-securityutil + +PackageName: ws-securityutil +SPDXID: SPDXRef-Package-java-archive-ws-securityutil-248c284f10d70274 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a362ef0999760bb9a2aa8d92488994c6da1c54f3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-securityutil.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.security.utility.securityutil/ws-securityutil@1.0.81.cl230920230904-1158 + +##### Package: ws-securityutil + +PackageName: ws-securityutil +SPDXID: SPDXRef-Package-java-archive-ws-securityutil-df187fb4fe4c3522 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: a362ef0999760bb9a2aa8d92488994c6da1c54f3 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.security.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:securityutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:securityutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:security:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:security:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.security.utility.securityutil/ws-securityutil@1.0.81.cl230920230904-1158 + +##### Package: ws-server + +PackageName: ws-server +SPDXID: SPDXRef-Package-java-archive-ws-server-c24a2dabb7438137 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: 743a5264078f15e77bf0a2f330fc193fee24fca6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-server.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.kernel.boot.ws-server/ws-server@1.0.81.cl230920230904-1158 + +##### Package: ws-server + +PackageName: ws-server +SPDXID: SPDXRef-Package-java-archive-ws-server-e4dbd36ed2832fe2 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: dfa587e5e1c5de74cb3bafab467fc9527eb4a749 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.kernel.boot_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kernel:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:kernel:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:boot:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:boot:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.kernel.boot.ws-server/ws-server@1.0.81.cl230920230904-1158 + +##### Package: ws-serverSchemagen + +PackageName: ws-serverSchemagen +SPDXID: SPDXRef-Package-java-archive-ws-serverSchemagen-03f4a941773d92c5 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: beb544e1110d445cf29c07b22eeb2468598009e2 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-serverSchemagen.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.config.server.schemagen.serverschemagen/ws-serverSchemagen@1.0.81.cl230920230904-1158 + +##### Package: ws-serverSchemagen + +PackageName: ws-serverSchemagen +SPDXID: SPDXRef-Package-java-archive-ws-serverSchemagen-9b02db7a319b708c +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: beb544e1110d445cf29c07b22eeb2468598009e2 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.config.server.schemagen_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-serverSchemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_serverSchemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_serverSchemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:serverschemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:serverschemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:schemagen:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:schemagen:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:config:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:server:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:config:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:server:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.config.server.schemagen.serverschemagen/ws-serverSchemagen@1.0.81.cl230920230904-1158 + +##### Package: ws-webserverPluginutil + +PackageName: ws-webserverPluginutil +SPDXID: SPDXRef-Package-java-archive-ws-webserverPluginutil-1733bf66d2879f15 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ac849f18e907fe23afa96cc9fcb0f2e9f76cb3f6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/lib/com.ibm.ws.webserver.plugin.utility_1.0.81.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.webserver.plugin.utility.webserverPluginutil/ws-webserverPluginutil@1.0.81.cl230920230904-1158 + +##### Package: ws-webserverPluginutil + +PackageName: ws-webserverPluginutil +SPDXID: SPDXRef-Package-java-archive-ws-webserverPluginutil-5138594310b74d46 +PackageVersion: 1.0.81.cl230920230904-1158 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageChecksum: SHA1: ac849f18e907fe23afa96cc9fcb0f2e9f76cb3f6 +PackageSourceInfo: acquired package info from installed java archive: /opt/ol/wlp/bin/tools/ws-webserverPluginutil.jar +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws-webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws-webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws_webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws_webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserverPluginutil:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserverPluginutil:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:webserver:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:webserver:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:utility:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:utility:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ibm:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ws:ws:1.0.81.cl230920230904-1158:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:maven/com.ibm.ws.webserver.plugin.utility.webserverPluginutil/ws-webserverPluginutil@1.0.81.cl230920230904-1158 + +##### Package: PyGObject + +PackageName: PyGObject +SPDXID: SPDXRef-Package-python-PyGObject-026a55989515496e +PackageVersion: 3.28.3 +PackageSupplier: Person: James Henstridge (james@daa.com.au) +PackageOriginator: Person: James Henstridge (james@daa.com.au) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/pygobject-3.28.3-py3.6.egg-info +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GNU-LGPL +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridge_project:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridge_project:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridgeproject:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridgeproject:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridge_project:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridge:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridge:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridgeproject:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-PyGObject:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-PyGObject:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_PyGObject:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_PyGObject:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_project:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_project:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jamesproject:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jamesproject:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:PyGObject:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:PyGObject:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_henstridge:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-PyGObject:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_PyGObject:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james_project:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james:python-PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james:python_PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jamesproject:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:PyGObject:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:james:PyGObject:3.28.3:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/PyGObject@3.28.3 + +##### Package: PySocks + +PackageName: PySocks +SPDXID: SPDXRef-Package-python-PySocks-9a572bb052f6e9e4 +PackageVersion: 1.6.8 +PackageSupplier: Person: Anorov (anorov.vorona@gmail.com) +PackageOriginator: Person: Anorov (anorov.vorona@gmail.com) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/PySocks-1.6.8-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/PySocks-1.6.8-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_vorona_project:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_vorona_project:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_voronaproject:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_voronaproject:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_project:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_project:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_vorona_project:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-PySocks:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-PySocks:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_PySocks:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_PySocks:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov-vorona:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov-vorona:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_vorona:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_vorona:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_voronaproject:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorovproject:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorovproject:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:PySocks:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:PySocks:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_project:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-PySocks:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_PySocks:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov-vorona:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov_vorona:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorovproject:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:PySocks:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:anorov:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:PySocks:1.6.8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/PySocks@1.6.8 + +##### Package: chardet + +PackageName: chardet +SPDXID: SPDXRef-Package-python-chardet-ff941a34dc8ad898 +PackageVersion: 3.0.4 +PackageSupplier: Person: Mark Pilgrim (mark@diveintomark.org) +PackageOriginator: Person: Mark Pilgrim (mark@diveintomark.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/chardet-3.0.4-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPL +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrim_project:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrim_project:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrimproject:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrimproject:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-chardet:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-chardet:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_chardet:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_chardet:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrim_project:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrim:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrim:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrimproject:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_project:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_project:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:markproject:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:markproject:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chardet:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chardet:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-chardet:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_chardet:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_pilgrim:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark_project:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark:python-chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark:python_chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:markproject:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chardet:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mark:chardet:3.0.4:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/chardet@3.0.4 + +##### Package: crit + +PackageName: crit +SPDXID: SPDXRef-Package-python-crit-93303bae4b0d7b38 +PackageVersion: 3.18 +PackageSupplier: Person: CRIU team (criu@openvz.org) +PackageOriginator: Person: CRIU team (criu@openvz.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/PKG-INFO, /usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/installed-files.txt, /usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team_project:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team_project:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_teamproject:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_teamproject:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_project:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_project:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criuproject:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criuproject:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-crit:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-crit:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_crit:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_crit:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team_project:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_teamproject:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_project:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crit:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crit:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criuproject:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-crit:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_crit:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crit:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu:crit:3.18:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/crit@3.18 + +##### Package: crit + +PackageName: crit +SPDXID: SPDXRef-Package-python-crit-9d9ae1c0b26b6359 +PackageVersion: 3.18 +PackageSupplier: Person: CRIU team (criu@openvz.org) +PackageOriginator: Person: CRIU team (criu@openvz.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /tmp/usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/PKG-INFO, /tmp/usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/installed-files.txt, /tmp/usr/local/lib/python3.6/site-packages/crit-3.18-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team_project:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team_project:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_teamproject:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_teamproject:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_project:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_project:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criuproject:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criuproject:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-crit:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-crit:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_crit:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_crit:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team_project:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_teamproject:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_project:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crit:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crit:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu:python-crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu:python_crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criuproject:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-crit:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_crit:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu_team:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crit:crit:3.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:criu:crit:3.18:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/crit@3.18 + +##### Package: dbus-python + +PackageName: dbus-python +SPDXID: SPDXRef-Package-python-dbus-python-9a2539d64666884c +PackageVersion: 1.2.4 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/dbus_python-1.2.4-py3.6.egg-info/PKG-INFO, /usr/lib64/python3.6/site-packages/dbus_python-1.2.4-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Expat--MIT-X11- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus-python:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus-python:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus_python:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus_python:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-python:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-python:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_python:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_python:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus-python:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus-python:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus_python:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus_python:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-python:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-python:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:python-dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:python_dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_python:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_python:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dbus:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dbus:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus-python:1.2.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus_python:1.2.4:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/dbus-python@1.2.4 + +##### Package: decorator + +PackageName: decorator +SPDXID: SPDXRef-Package-python-decorator-64ad1a0dc4b7f605 +PackageVersion: 4.2.1 +PackageSupplier: Person: Michele Simionato (michele.simionato@gmail.com) +PackageOriginator: Person: Michele Simionato (michele.simionato@gmail.com) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-new-BSD-License +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:decorator:4.2.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/decorator@4.2.1 + +##### Package: ethtool + +PackageName: ethtool +SPDXID: SPDXRef-Package-python-ethtool-47e0eb55544e9981 +PackageVersion: 0.14 +PackageSupplier: Person: Harald Hoyer, Arnaldo Carvalho de Melo, David Sommerseth (davids@redhat.com) +PackageOriginator: Person: Harald Hoyer, Arnaldo Carvalho de Melo, David Sommerseth (davids@redhat.com) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/ethtool-0.14-py3.6.egg-info/PKG-INFO, /usr/lib64/python3.6/site-packages/ethtool-0.14-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: GPL-2.0-only +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommerseth_project:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommerseth_project:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommersethproject:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommersethproject:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommerseth_project:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommerseth:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommerseth:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommersethproject:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:harald_hoyer\,_arnaldo_carvalho_de_melo\,_david_sommerseth:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davids_project:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davids_project:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-ethtool:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-ethtool:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_ethtool:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_ethtool:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davidsproject:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davidsproject:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davids_project:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ethtool:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ethtool:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-ethtool:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_ethtool:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davids:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davids:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davidsproject:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ethtool:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:davids:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:ethtool:0.14:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/ethtool@0.14 + +##### Package: gpg + +PackageName: gpg +SPDXID: SPDXRef-Package-python-gpg-176c74855eaee639 +PackageVersion: 1.13.1 +PackageSupplier: Person: The GnuPG hackers (gnupg-devel@gnupg.org) +PackageOriginator: Person: The GnuPG hackers (gnupg-devel@gnupg.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/gpg-1.13.1-py3.6.egg-info +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPL2.1---the-library---GPL2---tests-and-examples- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackers_project:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackers_project:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackersproject:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackersproject:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_devel_project:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_devel_project:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_develproject:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_develproject:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackers_project:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackers:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackers:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackersproject:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_devel_project:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg-devel:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg-devel:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_devel:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_devel:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_develproject:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-gpg:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-gpg:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_gpg:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_gpg:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_hackers:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg-devel:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg_devel:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg:python-gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg:python_gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-gpg:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_gpg:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg:gpg:1.13.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/gpg@1.13.1 + +##### Package: idna + +PackageName: idna +SPDXID: SPDXRef-Package-python-idna-df327da7f0a4a959 +PackageVersion: 2.5 +PackageSupplier: Person: Kim Davies (kim@cynosure.com.au) +PackageOriginator: Person: Kim Davies (kim@cynosure.com.au) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/idna-2.5-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/idna-2.5-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-like +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_davies_project:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_davies_project:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_daviesproject:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_daviesproject:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_davies_project:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_project:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_project:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-idna:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-idna:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_idna:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_idna:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_davies:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_davies:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_daviesproject:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kimproject:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kimproject:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:idna:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:idna:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_project:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-idna:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_idna:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim:python-idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim:python_idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim_davies:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kimproject:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:idna:idna:2.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kim:idna:2.5:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/idna@2.5 + +##### Package: iniparse + +PackageName: iniparse +SPDXID: SPDXRef-Package-python-iniparse-b1ac8ab06cf60d46 +PackageVersion: 0.4 +PackageSupplier: Person: Paramjit Oberoi (param@cs.wisc.edu) +PackageOriginator: Person: Paramjit Oberoi (param@cs.wisc.edu) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/iniparse-0.4-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoi_project:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoi_project:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoiproject:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoiproject:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoi_project:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoi:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoi:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoiproject:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-iniparse:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-iniparse:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_iniparse:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_iniparse:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:param_project:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:param_project:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramproject:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramproject:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iniparse:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iniparse:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramjit_oberoi:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-iniparse:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_iniparse:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:param_project:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:param:python-iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:param:python_iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paramproject:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iniparse:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:param:iniparse:0.4:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/iniparse@0.4 + +##### Package: libcomps + +PackageName: libcomps +SPDXID: SPDXRef-Package-python-libcomps-08b412214951d9e5 +PackageVersion: 0.1.18 +PackageSupplier: Person: RPM Software Management (rpm-ecosystem@lists.rpm.org) +PackageOriginator: Person: RPM Software Management (rpm-ecosystem@lists.rpm.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/libcomps-0.1.18-py3.6.egg-info/PKG-INFO, /usr/lib64/python3.6/site-packages/libcomps-0.1.18-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_management_project:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_management_project:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_managementproject:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_managementproject:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_management_project:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_management:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_management:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_managementproject:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystem_project:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystem_project:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystemproject:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystemproject:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_software_management:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-libcomps:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-libcomps:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_libcomps:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_libcomps:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystem_project:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-ecosystem:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-ecosystem:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystem:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystem:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystemproject:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcomps:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcomps:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-libcomps:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_libcomps:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-ecosystem:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_ecosystem:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcomps:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:libcomps:0.1.18:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/libcomps@0.1.18 + +##### Package: pyinotify + +PackageName: pyinotify +SPDXID: SPDXRef-Package-python-pyinotify-2cc0497e30b46d84 +PackageVersion: 0.9.6 +PackageSupplier: Person: Sebastien Martini (seb@dbzteam.org) +PackageOriginator: Person: Sebastien Martini (seb@dbzteam.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/pyinotify-0.9.6-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-MIT-License +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martini_project:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martini_project:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martiniproject:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martiniproject:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martini_project:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martini:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martini:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martiniproject:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-pyinotify:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-pyinotify:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_pyinotify:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_pyinotify:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:seb_project:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:seb_project:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebastien_martini:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebproject:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebproject:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pyinotify:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pyinotify:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-pyinotify:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_pyinotify:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:seb_project:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:seb:python-pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:seb:python_pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sebproject:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pyinotify:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:seb:pyinotify:0.9.6:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/pyinotify@0.9.6 + +##### Package: python-dateutil + +PackageName: python-dateutil +SPDXID: SPDXRef-Package-python-python-dateutil-509a860043c6af7b +PackageVersion: 2.6.1 +PackageSupplier: Person: Paul Ganssle (dateutil@python.org) +PackageOriginator: Person: Paul Ganssle (dateutil@python.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/python_dateutil-2.6.1-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Simplified-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paul_ganssle_project:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paul_ganssle_project:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paul_ganssleproject:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paul_ganssleproject:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dateutil_project:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dateutil_project:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dateutilproject:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dateutilproject:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dateutil:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dateutil:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dateutil:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dateutil:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paul_ganssle:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:paul_ganssle:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dateutil:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dateutil:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_dateutil:2.6.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/python-dateutil@2.6.1 + +##### Package: python-dmidecode + +PackageName: python-dmidecode +SPDXID: SPDXRef-Package-python-python-dmidecode-9f1510382966a14d +PackageVersion: 3.12.2 +PackageSupplier: Person: Nima Talebi & David Sommerseth (nima@it.net.au, davids@redhat.com) +PackageOriginator: Person: Nima Talebi & David Sommerseth (nima@it.net.au, davids@redhat.com) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/python_dmidecode-3.12.2-py3.6.egg-info +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: GPL-2.0-only +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_talebi_\&_david_sommerseth_project:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_talebi_\&_david_sommerseth_project:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_talebi_\&_david_sommersethproject:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_talebi_\&_david_sommersethproject:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_talebi_\&_david_sommerseth:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_talebi_\&_david_sommerseth:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dmidecode:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-dmidecode:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dmidecode:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_dmidecode:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_project:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima_project:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nimaproject:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nimaproject:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima:python-dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nima:python_dmidecode:3.12.2:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/python-dmidecode@3.12.2 + +##### Package: requests + +PackageName: requests +SPDXID: SPDXRef-Package-python-requests-69c379e96a25693b +PackageVersion: 2.20.0 +PackageSupplier: Person: Kenneth Reitz (me@kennethreitz.org) +PackageOriginator: Person: Kenneth Reitz (me@kennethreitz.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/requests-2.20.0-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Apache-2.0 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitz_project:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitz_project:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitzproject:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitzproject:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-requests:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-requests:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_requests:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_requests:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitz_project:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitz:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitz:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitzproject:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:me_project:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:me_project:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:meproject:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:meproject:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-requests:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_requests:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:requests:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:requests:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kenneth_reitz:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:me_project:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:me:python-requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:me:python_requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:meproject:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:requests:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:me:requests:2.20.0:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/requests@2.20.0 + +##### Package: rpm + +PackageName: rpm +SPDXID: SPDXRef-Package-python-rpm-a5c78e59349331b5 +PackageVersion: 4.14.3 +PackageSupplier: Person: UNKNOWN (rpm-maint@lists.rpm.org) +PackageOriginator: Person: UNKNOWN (rpm-maint@lists.rpm.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/rpm-4.14.3-py3.6.egg-info +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-UNKNOWN +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maint_project:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maint_project:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maintproject:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maintproject:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknown_project:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknown_project:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknownproject:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknownproject:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-rpm:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-rpm:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_rpm:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_rpm:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maint_project:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-maint:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-maint:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maint:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maint:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maintproject:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknown_project:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknown:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknown:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknownproject:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-rpm:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_rpm:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:python-rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:python_rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-maint:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_maint:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:unknown:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:rpm:4.14.3:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/rpm@4.14.3 + +##### Package: setuptools + +PackageName: setuptools +SPDXID: SPDXRef-Package-python-setuptools-70ad73e984ff17a3 +PackageVersion: 39.2.0 +PackageSupplier: Person: Python Packaging Authority (distutils-sig@python.org) +PackageOriginator: Person: Python Packaging Authority (distutils-sig@python.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/METADATA, /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/RECORD, /usr/lib/python3.6/site-packages/setuptools-39.2.0.dist-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-UNKNOWN +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authority_project:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authority_project:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authorityproject:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authorityproject:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authority_project:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authority:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authority:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authorityproject:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sig_project:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sig_project:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sigproject:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sigproject:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_packaging_authority:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-setuptools:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-setuptools:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_setuptools:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_setuptools:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sig_project:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils-sig:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils-sig:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sig:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sig:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sigproject:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-setuptools:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_setuptools:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:setuptools:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:setuptools:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils-sig:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:distutils_sig:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:setuptools:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:setuptools:39.2.0:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/setuptools@39.2.0 + +##### Package: six + +PackageName: six +SPDXID: SPDXRef-Package-python-six-e4e7ee91fea80cd9 +PackageVersion: 1.11.0 +PackageSupplier: Person: Benjamin Peterson (benjamin@python.org) +PackageOriginator: Person: Benjamin Peterson (benjamin@python.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/METADATA, /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/RECORD, /usr/lib/python3.6/site-packages/six-1.11.0.dist-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_peterson_project:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_peterson_project:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_petersonproject:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_petersonproject:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_peterson_project:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_peterson:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_peterson:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_petersonproject:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_project:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_project:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjaminproject:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjaminproject:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_peterson:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-six:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-six:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_six:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_six:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin_project:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjaminproject:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-six:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_six:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:six:python-six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:six:python_six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:benjamin:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:six:six:1.11.0:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/six@1.11.0 + +##### Package: subscription-manager + +PackageName: subscription-manager +SPDXID: SPDXRef-Package-python-subscription-manager-7276605e595d4096 +PackageVersion: 1.28.36 +PackageSupplier: Person: Adrian Likins (alikins@redhat.com) +PackageOriginator: Person: Adrian Likins (alikins@redhat.com) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/PKG-INFO, /usr/lib64/python3.6/site-packages/subscription_manager-1.28.36-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription-manager:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription-manager:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription_manager:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription_manager:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins_project:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins_project:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likinsproject:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likinsproject:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription-manager:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription-manager:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription_manager:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription_manager:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins_project:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins_project:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins_project:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins_project:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikinsproject:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikinsproject:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likinsproject:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likinsproject:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-subscription:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_subscription:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins_project:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins_project:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikinsproject:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikinsproject:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:adrian_likins:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:alikins:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:subscription-manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:subscription_manager:1.28.36:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/subscription-manager@1.28.36 + +##### Package: syspurpose + +PackageName: syspurpose +SPDXID: SPDXRef-Package-python-syspurpose-c2c79d0712654121 +PackageVersion: 1.28.36 +PackageSupplier: Person: Chris Snyder (chainsaw@redhat.com) +PackageOriginator: Person: Chris Snyder (chainsaw@redhat.com) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/syspurpose-1.28.36-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/syspurpose-1.28.36-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyder_project:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyder_project:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyderproject:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyderproject:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-syspurpose:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-syspurpose:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_syspurpose:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_syspurpose:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsaw_project:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsaw_project:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsawproject:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsawproject:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyder_project:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyder:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyder:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyderproject:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-syspurpose:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_syspurpose:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:syspurpose:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:syspurpose:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsaw_project:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsaw:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsaw:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsawproject:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chris_snyder:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:syspurpose:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chainsaw:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:syspurpose:1.28.36:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/syspurpose@1.28.36 + +##### Package: systemd-python + +PackageName: systemd-python +SPDXID: SPDXRef-Package-python-systemd-python-7d3d321f514748f5 +PackageVersion: 234 +PackageSupplier: Person: systemd developers (systemd-devel@lists.freedesktop.org) +PackageOriginator: Person: systemd developers (systemd-devel@lists.freedesktop.org) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib64/python3.6/site-packages/systemd_python-234-py3.6.egg-info +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers_project:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers_project:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developersproject:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developersproject:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd-python:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd-python:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd_python:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd_python:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel_project:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel_project:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_develproject:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_develproject:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers_project:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers_project:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developersproject:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developersproject:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd-python:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd-python:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd_python:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd_python:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-python:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-python:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel_project:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel_project:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_python:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_python:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-devel:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-devel:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_develproject:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_develproject:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_developers:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python-systemd:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python_systemd:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-python:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-python:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_python:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_python:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python-systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:python_systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-devel:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-devel:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_devel:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:systemd-python:234:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:systemd_python:234:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/systemd-python@234 + +##### Package: urllib3 + +PackageName: urllib3 +SPDXID: SPDXRef-Package-python-urllib3-8ede639981c11081 +PackageVersion: 1.24.2 +PackageSupplier: Person: Andrey Petrov (andrey.petrov@shazow.net) +PackageOriginator: Person: Andrey Petrov (andrey.petrov@shazow.net) +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from installed python package manifest file: /usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/PKG-INFO, /usr/lib/python3.6/site-packages/urllib3-1.24.2-py3.6.egg-info/top_level.txt +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python:urllib3:1.24.2:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:pypi/urllib3@1.24.2 + +##### Package: acl + +PackageName: acl +SPDXID: SPDXRef-Package-rpm-acl-45fd7a3cd138b877 +PackageVersion: 2.2.53-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:acl:2.2.53-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:acl:acl:2.2.53-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/acl@2.2.53-1.el8?arch=x86_64&upstream=acl-2.2.53-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: audit-libs + +PackageName: audit-libs +SPDXID: SPDXRef-Package-rpm-audit-libs-a8759a9d0a3b60da +PackageVersion: 3.0.7-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit-libs:audit-libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit-libs:audit_libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit_libs:audit-libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit_libs:audit_libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:audit-libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:audit_libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:audit-libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:audit:audit_libs:3.0.7-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/audit-libs@3.0.7-4.el8?arch=x86_64&upstream=audit-3.0.7-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: basesystem + +PackageName: basesystem +SPDXID: SPDXRef-Package-rpm-basesystem-423a8fdad2b882bb +PackageVersion: 11-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:basesystem:basesystem:11-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:basesystem:11-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/basesystem@11-5.el8?arch=noarch&upstream=basesystem-11-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: bash + +PackageName: bash +SPDXID: SPDXRef-Package-rpm-bash-044e31d699b18d1a +PackageVersion: 4.4.20-4.el8_6 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:bash:4.4.20-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bash:bash:4.4.20-4.el8_6:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/bash@4.4.20-4.el8_6?arch=x86_64&upstream=bash-4.4.20-4.el8_6.src.rpm&distro=rhel-8.8 + +##### Package: brotli + +PackageName: brotli +SPDXID: SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a +PackageVersion: 1.0.6-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:brotli:brotli:1.0.6-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:brotli:1.0.6-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/brotli@1.0.6-3.el8?arch=x86_64&upstream=brotli-1.0.6-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: bzip2-libs + +PackageName: bzip2-libs +SPDXID: SPDXRef-Package-rpm-bzip2-libs-17acab8822026709 +PackageVersion: 1.0.6-26.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bzip2-libs:bzip2-libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bzip2-libs:bzip2_libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bzip2_libs:bzip2-libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bzip2_libs:bzip2_libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:bzip2-libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:bzip2_libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bzip2:bzip2-libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:bzip2:bzip2_libs:1.0.6-26.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/bzip2-libs@1.0.6-26.el8?arch=x86_64&upstream=bzip2-1.0.6-26.el8.src.rpm&distro=rhel-8.8 + +##### Package: ca-certificates + +PackageName: ca-certificates +SPDXID: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d +PackageVersion: 2023.2.60_v7.0.306-80.0.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ca-certificates:ca-certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ca-certificates:ca_certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ca_certificates:ca-certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ca_certificates:ca_certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ca-certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ca_certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ca:ca-certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ca:ca_certificates:2023.2.60_v7.0.306-80.0.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/ca-certificates@2023.2.60_v7.0.306-80.0.el8_8?arch=noarch&upstream=ca-certificates-2023.2.60_v7.0.306-80.0.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: chkconfig + +PackageName: chkconfig +SPDXID: SPDXRef-Package-rpm-chkconfig-cc7797317bf6a1e2 +PackageVersion: 1.19.1-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:chkconfig:chkconfig:1.19.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:chkconfig:1.19.1-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/chkconfig@1.19.1-1.el8?arch=x86_64&upstream=chkconfig-1.19.1-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: coreutils-single + +PackageName: coreutils-single +SPDXID: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d +PackageVersion: 8.30-15.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coreutils-single:coreutils-single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coreutils-single:coreutils_single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coreutils_single:coreutils-single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coreutils_single:coreutils_single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coreutils:coreutils-single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:coreutils:coreutils_single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:coreutils-single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:coreutils_single:8.30-15.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/coreutils-single@8.30-15.el8?arch=x86_64&upstream=coreutils-8.30-15.el8.src.rpm&distro=rhel-8.8 + +##### Package: cracklib + +PackageName: cracklib +SPDXID: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d +PackageVersion: 2.9.6-15.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cracklib:cracklib:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:cracklib:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/cracklib@2.9.6-15.el8?arch=x86_64&upstream=cracklib-2.9.6-15.el8.src.rpm&distro=rhel-8.8 + +##### Package: cracklib-dicts + +PackageName: cracklib-dicts +SPDXID: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 +PackageVersion: 2.9.6-15.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cracklib-dicts:cracklib-dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cracklib-dicts:cracklib_dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cracklib_dicts:cracklib-dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cracklib_dicts:cracklib_dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cracklib:cracklib-dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cracklib:cracklib_dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:cracklib-dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:cracklib_dicts:2.9.6-15.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/cracklib-dicts@2.9.6-15.el8?arch=x86_64&upstream=cracklib-2.9.6-15.el8.src.rpm&distro=rhel-8.8 + +##### Package: crypto-policies + +PackageName: crypto-policies +SPDXID: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d +PackageVersion: 20221215-1.gitece0092.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto-policies:crypto-policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto-policies:crypto_policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto_policies:crypto-policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto_policies:crypto_policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto-policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto_policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:crypto-policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:crypto_policies:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/crypto-policies@20221215-1.gitece0092.el8?arch=noarch&upstream=crypto-policies-20221215-1.gitece0092.el8.src.rpm&distro=rhel-8.8 + +##### Package: crypto-policies-scripts + +PackageName: crypto-policies-scripts +SPDXID: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e +PackageVersion: 20221215-1.gitece0092.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto-policies-scripts:crypto-policies-scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto-policies-scripts:crypto_policies_scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto_policies_scripts:crypto-policies-scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto_policies_scripts:crypto_policies_scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto-policies:crypto-policies-scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto-policies:crypto_policies_scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto_policies:crypto-policies-scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto_policies:crypto_policies_scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto-policies-scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:crypto:crypto_policies_scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:crypto-policies-scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:crypto_policies_scripts:20221215-1.gitece0092.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/crypto-policies-scripts@20221215-1.gitece0092.el8?arch=noarch&upstream=crypto-policies-20221215-1.gitece0092.el8.src.rpm&distro=rhel-8.8 + +##### Package: cryptsetup-libs + +PackageName: cryptsetup-libs +SPDXID: SPDXRef-Package-rpm-cryptsetup-libs-a97447baebc7eca3 +PackageVersion: 2.3.7-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--and-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cryptsetup-libs:cryptsetup-libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cryptsetup-libs:cryptsetup_libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cryptsetup_libs:cryptsetup-libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cryptsetup_libs:cryptsetup_libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cryptsetup:cryptsetup-libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cryptsetup:cryptsetup_libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:cryptsetup-libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:cryptsetup_libs:2.3.7-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/cryptsetup-libs@2.3.7-5.el8?arch=x86_64&upstream=cryptsetup-2.3.7-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: curl + +PackageName: curl +SPDXID: SPDXRef-Package-rpm-curl-2ac75dd8cdd82d1d +PackageVersion: 7.61.1-30.el8_8.3 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:curl:7.61.1-30.el8_8.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:curl:curl:7.61.1-30.el8_8.3:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/curl@7.61.1-30.el8_8.3?arch=x86_64&upstream=curl-7.61.1-30.el8_8.3.src.rpm&distro=rhel-8.8 + +##### Package: cyrus-sasl-lib + +PackageName: cyrus-sasl-lib +SPDXID: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 +PackageVersion: 2.1.27-6.el8_5 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-with-advertising +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus-sasl-lib:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus-sasl-lib:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus_sasl_lib:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus_sasl_lib:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus-sasl:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus-sasl:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus_sasl:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus_sasl:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus:cyrus-sasl-lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:cyrus:cyrus_sasl_lib:2.1.27-6.el8_5:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/cyrus-sasl-lib@2.1.27-6.el8_5?arch=x86_64&upstream=cyrus-sasl-2.1.27-6.el8_5.src.rpm&distro=rhel-8.8 + +##### Package: dbus + +PackageName: dbus +SPDXID: SPDXRef-Package-rpm-dbus-1cb6510238ba5dd8 +PackageVersion: 1:1.12.8-24.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef--GPLv2--or-AFL--and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dbus@1.12.8-24.el8_8.1?arch=x86_64&epoch=1&upstream=dbus-1.12.8-24.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: dbus-common + +PackageName: dbus-common +SPDXID: SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 +PackageVersion: 1:1.12.8-24.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef--GPLv2--or-AFL--and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-common:dbus-common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-common:dbus_common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_common:dbus-common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_common:dbus_common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus-common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus_common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus-common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus_common:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dbus-common@1.12.8-24.el8_8.1?arch=noarch&epoch=1&upstream=dbus-1.12.8-24.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: dbus-daemon + +PackageName: dbus-daemon +SPDXID: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d +PackageVersion: 1:1.12.8-24.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef--GPLv2--or-AFL--and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-daemon:dbus-daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-daemon:dbus_daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_daemon:dbus-daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_daemon:dbus_daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus-daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus_daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus-daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus_daemon:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dbus-daemon@1.12.8-24.el8_8.1?arch=x86_64&epoch=1&upstream=dbus-1.12.8-24.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: dbus-glib + +PackageName: dbus-glib +SPDXID: SPDXRef-Package-rpm-dbus-glib-93aad31cdc4b7d7c +PackageVersion: 0.110-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-AFL-and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-glib:dbus-glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-glib:dbus_glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_glib:dbus-glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_glib:dbus_glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus-glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus_glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus-glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus_glib:0.110-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dbus-glib@0.110-2.el8?arch=x86_64&upstream=dbus-glib-0.110-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: dbus-libs + +PackageName: dbus-libs +SPDXID: SPDXRef-Package-rpm-dbus-libs-6491607d041784b9 +PackageVersion: 1:1.12.8-24.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef--GPLv2--or-AFL--and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-libs:dbus-libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-libs:dbus_libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_libs:dbus-libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_libs:dbus_libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus-libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus_libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus-libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus_libs:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dbus-libs@1.12.8-24.el8_8.1?arch=x86_64&epoch=1&upstream=dbus-1.12.8-24.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: dbus-tools + +PackageName: dbus-tools +SPDXID: SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 +PackageVersion: 1:1.12.8-24.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef--GPLv2--or-AFL--and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-tools:dbus-tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus-tools:dbus_tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_tools:dbus-tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus_tools:dbus_tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus-tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dbus_tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus-tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dbus:dbus_tools:1\:1.12.8-24.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dbus-tools@1.12.8-24.el8_8.1?arch=x86_64&epoch=1&upstream=dbus-1.12.8-24.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: dejavu-fonts-common + +PackageName: dejavu-fonts-common +SPDXID: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 +PackageVersion: 2.35-7.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Bitstream-Vera-and-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-fonts-common:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-fonts-common:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_fonts_common:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_fonts_common:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-fonts:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-fonts:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_fonts:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_fonts:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dejavu-fonts-common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dejavu_fonts_common:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dejavu-fonts-common@2.35-7.el8?arch=noarch&upstream=dejavu-fonts-2.35-7.el8.src.rpm&distro=rhel-8.8 + +##### Package: dejavu-sans-fonts + +PackageName: dejavu-sans-fonts +SPDXID: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 +PackageVersion: 2.35-7.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Bitstream-Vera-and-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-sans-fonts:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-sans-fonts:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_sans_fonts:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_sans_fonts:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-sans:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu-sans:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_sans:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu_sans:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dejavu:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dejavu-sans-fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dejavu_sans_fonts:2.35-7.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dejavu-sans-fonts@2.35-7.el8?arch=noarch&upstream=dejavu-fonts-2.35-7.el8.src.rpm&distro=rhel-8.8 + +##### Package: device-mapper + +PackageName: device-mapper +SPDXID: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 +PackageVersion: 8:1.02.181-9.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device-mapper:device-mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device-mapper:device_mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device_mapper:device-mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device_mapper:device_mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device:device-mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device:device_mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:device-mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:device_mapper:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/device-mapper@1.02.181-9.el8?arch=x86_64&epoch=8&upstream=lvm2-2.03.14-9.el8.src.rpm&distro=rhel-8.8 + +##### Package: device-mapper-libs + +PackageName: device-mapper-libs +SPDXID: SPDXRef-Package-rpm-device-mapper-libs-c05ce4d7f437decf +PackageVersion: 8:1.02.181-9.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device-mapper-libs:device-mapper-libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device-mapper-libs:device_mapper_libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device_mapper_libs:device-mapper-libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device_mapper_libs:device_mapper_libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device-mapper:device-mapper-libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device-mapper:device_mapper_libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device_mapper:device-mapper-libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device_mapper:device_mapper_libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device:device-mapper-libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:device:device_mapper_libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:device-mapper-libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:device_mapper_libs:8\:1.02.181-9.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/device-mapper-libs@1.02.181-9.el8?arch=x86_64&epoch=8&upstream=lvm2-2.03.14-9.el8.src.rpm&distro=rhel-8.8 + +##### Package: dmidecode + +PackageName: dmidecode +SPDXID: SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 +PackageVersion: 1:3.3-4.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dmidecode:dmidecode:1\:3.3-4.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dmidecode:1\:3.3-4.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dmidecode@3.3-4.el8_8.1?arch=x86_64&epoch=1&upstream=dmidecode-3.3-4.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: dnf + +PackageName: dnf +SPDXID: SPDXRef-Package-rpm-dnf-4418429efe47422c +PackageVersion: 4.7.0-16.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf:dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dnf@4.7.0-16.el8_8?arch=noarch&upstream=dnf-4.7.0-16.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: dnf-data + +PackageName: dnf-data +SPDXID: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 +PackageVersion: 4.7.0-16.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-data:dnf-data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-data:dnf_data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_data:dnf-data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_data:dnf_data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dnf-data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dnf_data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf:dnf-data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf:dnf_data:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dnf-data@4.7.0-16.el8_8?arch=noarch&upstream=dnf-4.7.0-16.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: dnf-plugin-subscription-manager + +PackageName: dnf-plugin-subscription-manager +SPDXID: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e +PackageVersion: 1.28.36-3.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-plugin-subscription-manager:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-plugin-subscription-manager:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_plugin_subscription_manager:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_plugin_subscription_manager:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-plugin-subscription:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-plugin-subscription:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_plugin_subscription:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_plugin_subscription:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-plugin:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf-plugin:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_plugin:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf_plugin:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf:dnf-plugin-subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:dnf:dnf_plugin_subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/dnf-plugin-subscription-manager@1.28.36-3.el8_8?arch=x86_64&upstream=subscription-manager-1.28.36-3.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: elfutils-default-yama-scope + +PackageName: elfutils-default-yama-scope +SPDXID: SPDXRef-Package-rpm-elfutils-default-yama-scope-8056e0aae345bdf9 +PackageVersion: 0.188-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--or-LGPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-default-yama-scope:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-default-yama-scope:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_default_yama_scope:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_default_yama_scope:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-default-yama:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-default-yama:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_default_yama:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_default_yama:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-default:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-default:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_default:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_default:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:elfutils-default-yama-scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:elfutils_default_yama_scope:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/elfutils-default-yama-scope@0.188-3.el8?arch=noarch&upstream=elfutils-0.188-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: elfutils-libelf + +PackageName: elfutils-libelf +SPDXID: SPDXRef-Package-rpm-elfutils-libelf-1490683b1177d120 +PackageVersion: 0.188-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--or-LGPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-libelf:elfutils-libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-libelf:elfutils_libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_libelf:elfutils-libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_libelf:elfutils_libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils:elfutils-libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils:elfutils_libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:elfutils-libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:elfutils_libelf:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/elfutils-libelf@0.188-3.el8?arch=x86_64&upstream=elfutils-0.188-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: elfutils-libs + +PackageName: elfutils-libs +SPDXID: SPDXRef-Package-rpm-elfutils-libs-62f17b42f3fcff45 +PackageVersion: 0.188-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--or-LGPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-libs:elfutils-libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils-libs:elfutils_libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_libs:elfutils-libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils_libs:elfutils_libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils:elfutils-libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:elfutils:elfutils_libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:elfutils-libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:elfutils_libs:0.188-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/elfutils-libs@0.188-3.el8?arch=x86_64&upstream=elfutils-0.188-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: expat + +PackageName: expat +SPDXID: SPDXRef-Package-rpm-expat-580d0138d97ae889 +PackageVersion: 2.2.5-11.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:expat:2.2.5-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:expat:expat:2.2.5-11.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/expat@2.2.5-11.el8?arch=x86_64&upstream=expat-2.2.5-11.el8.src.rpm&distro=rhel-8.8 + +##### Package: file-libs + +PackageName: file-libs +SPDXID: SPDXRef-Package-rpm-file-libs-a73849bc58ff0d0c +PackageVersion: 5.33-24.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file-libs:file-libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file-libs:file_libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file_libs:file-libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file_libs:file_libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:file-libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:file_libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file:file-libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:file:file_libs:5.33-24.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/file-libs@5.33-24.el8?arch=x86_64&upstream=file-5.33-24.el8.src.rpm&distro=rhel-8.8 + +##### Package: filesystem + +PackageName: filesystem +SPDXID: SPDXRef-Package-rpm-filesystem-179398b43587ad72 +PackageVersion: 3.8-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:filesystem:filesystem:3.8-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:filesystem:3.8-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/filesystem@3.8-6.el8?arch=x86_64&upstream=filesystem-3.8-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: findutils + +PackageName: findutils +SPDXID: SPDXRef-Package-rpm-findutils-0c5e4ad061cf8e7d +PackageVersion: 1:4.6.0-20.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:findutils:findutils:1\:4.6.0-20.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:findutils:1\:4.6.0-20.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/findutils@4.6.0-20.el8_8.1?arch=x86_64&epoch=1&upstream=findutils-4.6.0-20.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: fontconfig + +PackageName: fontconfig +SPDXID: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 +PackageVersion: 2.13.1-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-MIT-and-Public-Domain-and-UCD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fontconfig:fontconfig:2.13.1-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:fontconfig:2.13.1-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/fontconfig@2.13.1-4.el8?arch=x86_64&upstream=fontconfig-2.13.1-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: fontpackages-filesystem + +PackageName: fontpackages-filesystem +SPDXID: SPDXRef-Package-rpm-fontpackages-filesystem-f296bbcdecba4614 +PackageVersion: 1.44-22.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fontpackages-filesystem:fontpackages-filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fontpackages-filesystem:fontpackages_filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fontpackages_filesystem:fontpackages-filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fontpackages_filesystem:fontpackages_filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fontpackages:fontpackages-filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:fontpackages:fontpackages_filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:fontpackages-filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:fontpackages_filesystem:1.44-22.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/fontpackages-filesystem@1.44-22.el8?arch=noarch&upstream=fontpackages-1.44-22.el8.src.rpm&distro=rhel-8.8 + +##### Package: freetype + +PackageName: freetype +SPDXID: SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d +PackageVersion: 2.9.1-9.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-80a0f05e17641589a96d3170725af37b98a6fe1cfaabf90db4f4259ec0914fdf +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:freetype:freetype:2.9.1-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:freetype:2.9.1-9.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/freetype@2.9.1-9.el8?arch=x86_64&upstream=freetype-2.9.1-9.el8.src.rpm&distro=rhel-8.8 + +##### Package: gawk + +PackageName: gawk +SPDXID: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 +PackageVersion: 4.2.1-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3--and-GPLv2--and-LGPLv2--and-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gawk:4.2.1-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gawk:gawk:4.2.1-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gawk@4.2.1-4.el8?arch=x86_64&upstream=gawk-4.2.1-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: gdb-gdbserver + +PackageName: gdb-gdbserver +SPDXID: SPDXRef-Package-rpm-gdb-gdbserver-b09f80b040ee2d01 +PackageVersion: 8.2-19.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-3ec43172950c15b1a1e5e626ac065b88ced800063bd77f89878f87073df8a5ae +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdb-gdbserver:gdb-gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdb-gdbserver:gdb_gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdb_gdbserver:gdb-gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdb_gdbserver:gdb_gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gdb-gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gdb_gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdb:gdb-gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdb:gdb_gdbserver:8.2-19.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gdb-gdbserver@8.2-19.el8?arch=x86_64&upstream=gdb-8.2-19.el8.src.rpm&distro=rhel-8.8 + +##### Package: gdbm + +PackageName: gdbm +SPDXID: SPDXRef-Package-rpm-gdbm-5f248ec8dffe726e +PackageVersion: 1:1.18-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gdbm:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdbm:gdbm:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gdbm@1.18-2.el8?arch=x86_64&epoch=1&upstream=gdbm-1.18-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: gdbm-libs + +PackageName: gdbm-libs +SPDXID: SPDXRef-Package-rpm-gdbm-libs-a01746ed3caeb940 +PackageVersion: 1:1.18-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdbm-libs:gdbm-libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdbm-libs:gdbm_libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdbm_libs:gdbm-libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdbm_libs:gdbm_libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gdbm-libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gdbm_libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdbm:gdbm-libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gdbm:gdbm_libs:1\:1.18-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gdbm-libs@1.18-2.el8?arch=x86_64&epoch=1&upstream=gdbm-1.18-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: glib2 + +PackageName: glib2 +SPDXID: SPDXRef-Package-rpm-glib2-a1907d769a35de0a +PackageVersion: 2.56.4-161.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glib2:2.56.4-161.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glib2:glib2:2.56.4-161.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/glib2@2.56.4-161.el8?arch=x86_64&upstream=glib2-2.56.4-161.el8.src.rpm&distro=rhel-8.8 + +##### Package: glibc-common + +PackageName: glibc-common +SPDXID: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e +PackageVersion: 2.28-225.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-cedbc2fa4301332b3d3569627696d986a63b3f3a293a2759a611c7c3deebd428 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-common:glibc-common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-common:glibc_common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_common:glibc-common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_common:glibc_common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glibc-common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glibc_common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc:glibc-common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc:glibc_common:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/glibc-common@2.28-225.el8?arch=x86_64&upstream=glibc-2.28-225.el8.src.rpm&distro=rhel-8.8 + +##### Package: glibc + +PackageName: glibc +SPDXID: SPDXRef-Package-rpm-glibc-f7093d600015666c +PackageVersion: 2.28-225.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-cedbc2fa4301332b3d3569627696d986a63b3f3a293a2759a611c7c3deebd428 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glibc:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc:glibc:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/glibc@2.28-225.el8?arch=x86_64&upstream=glibc-2.28-225.el8.src.rpm&distro=rhel-8.8 + +##### Package: glibc-langpack-en + +PackageName: glibc-langpack-en +SPDXID: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 +PackageVersion: 2.28-225.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-cedbc2fa4301332b3d3569627696d986a63b3f3a293a2759a611c7c3deebd428 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-langpack-en:glibc-langpack-en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-langpack-en:glibc_langpack_en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_langpack_en:glibc-langpack-en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_langpack_en:glibc_langpack_en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-langpack:glibc-langpack-en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-langpack:glibc_langpack_en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_langpack:glibc-langpack-en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_langpack:glibc_langpack_en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glibc-langpack-en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glibc_langpack_en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc:glibc-langpack-en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc:glibc_langpack_en:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/glibc-langpack-en@2.28-225.el8?arch=x86_64&upstream=glibc-2.28-225.el8.src.rpm&distro=rhel-8.8 + +##### Package: glibc-minimal-langpack + +PackageName: glibc-minimal-langpack +SPDXID: SPDXRef-Package-rpm-glibc-minimal-langpack-a4d2f9b09ae44069 +PackageVersion: 2.28-225.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-cedbc2fa4301332b3d3569627696d986a63b3f3a293a2759a611c7c3deebd428 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-minimal-langpack:glibc-minimal-langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-minimal-langpack:glibc_minimal_langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_minimal_langpack:glibc-minimal-langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_minimal_langpack:glibc_minimal_langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-minimal:glibc-minimal-langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc-minimal:glibc_minimal_langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_minimal:glibc-minimal-langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc_minimal:glibc_minimal_langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glibc-minimal-langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:glibc_minimal_langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc:glibc-minimal-langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:glibc:glibc_minimal_langpack:2.28-225.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/glibc-minimal-langpack@2.28-225.el8?arch=x86_64&upstream=glibc-2.28-225.el8.src.rpm&distro=rhel-8.8 + +##### Package: gmp + +PackageName: gmp +SPDXID: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf +PackageVersion: 1:6.1.2-10.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv3--or-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gmp:1\:6.1.2-10.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gmp:gmp:1\:6.1.2-10.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gmp@6.1.2-10.el8?arch=x86_64&epoch=1&upstream=gmp-6.1.2-10.el8.src.rpm&distro=rhel-8.8 + +##### Package: gnupg2 + +PackageName: gnupg2 +SPDXID: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 +PackageVersion: 2.2.20-3.el8_6 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnupg2:gnupg2:2.2.20-3.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gnupg2:2.2.20-3.el8_6:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gnupg2@2.2.20-3.el8_6?arch=x86_64&upstream=gnupg2-2.2.20-3.el8_6.src.rpm&distro=rhel-8.8 + +##### Package: gnutls + +PackageName: gnutls +SPDXID: SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 +PackageVersion: 3.6.16-6.el8_7 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3--and-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gnutls:gnutls:3.6.16-6.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gnutls:3.6.16-6.el8_7:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gnutls@3.6.16-6.el8_7?arch=x86_64&upstream=gnutls-3.6.16-6.el8_7.src.rpm&distro=rhel-8.8 + +##### Package: gobject-introspection + +PackageName: gobject-introspection +SPDXID: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 +PackageVersion: 1.56.1-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2---LGPLv2---MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gobject-introspection:gobject-introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gobject-introspection:gobject_introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gobject_introspection:gobject-introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gobject_introspection:gobject_introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gobject:gobject-introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gobject:gobject_introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gobject-introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gobject_introspection:1.56.1-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gobject-introspection@1.56.1-1.el8?arch=x86_64&upstream=gobject-introspection-1.56.1-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: gpg-pubkey + +PackageName: gpg-pubkey +SPDXID: SPDXRef-Package-rpm-gpg-pubkey-f11cf456670bc682 +PackageVersion: fd431d51-4ae0493b +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-pubkey +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg-pubkey:gpg-pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg-pubkey:gpg_pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg_pubkey:gpg-pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg_pubkey:gpg_pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg:gpg-pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg:gpg_pubkey:fd431d51-4ae0493b:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gpg-pubkey@fd431d51-4ae0493b?distro=rhel-8.8 + +##### Package: gpg-pubkey + +PackageName: gpg-pubkey +SPDXID: SPDXRef-Package-rpm-gpg-pubkey-fd1087723a227e81 +PackageVersion: d4082792-5b32db75 +PackageSupplier: NOASSERTION +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-pubkey +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg-pubkey:gpg-pubkey:d4082792-5b32db75:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg-pubkey:gpg_pubkey:d4082792-5b32db75:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg_pubkey:gpg-pubkey:d4082792-5b32db75:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg_pubkey:gpg_pubkey:d4082792-5b32db75:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg:gpg-pubkey:d4082792-5b32db75:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpg:gpg_pubkey:d4082792-5b32db75:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gpg-pubkey@d4082792-5b32db75?distro=rhel-8.8 + +##### Package: gpgme + +PackageName: gpgme +SPDXID: SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 +PackageVersion: 1.13.1-11.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gpgme:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gpgme:gpgme:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gpgme@1.13.1-11.el8?arch=x86_64&upstream=gpgme-1.13.1-11.el8.src.rpm&distro=rhel-8.8 + +##### Package: grep + +PackageName: grep +SPDXID: SPDXRef-Package-rpm-grep-0328ffc80d53f10e +PackageVersion: 3.1-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:grep:3.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:grep:grep:3.1-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/grep@3.1-6.el8?arch=x86_64&upstream=grep-3.1-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: gzip + +PackageName: gzip +SPDXID: SPDXRef-Package-rpm-gzip-96776ea0534048fb +PackageVersion: 1.9-13.el8_5 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3--and-GFDL +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:gzip:1.9-13.el8_5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:gzip:gzip:1.9-13.el8_5:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/gzip@1.9-13.el8_5?arch=x86_64&upstream=gzip-1.9-13.el8_5.src.rpm&distro=rhel-8.8 + +##### Package: ima-evm-utils + +PackageName: ima-evm-utils +SPDXID: SPDXRef-Package-rpm-ima-evm-utils-dfd6cbe7443a229f +PackageVersion: 1.3.2-12.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima-evm-utils:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima-evm-utils:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima_evm_utils:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima_evm_utils:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima-evm:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima-evm:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima_evm:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima_evm:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima:ima-evm-utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ima:ima_evm_utils:1.3.2-12.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/ima-evm-utils@1.3.2-12.el8?arch=x86_64&upstream=ima-evm-utils-1.3.2-12.el8.src.rpm&distro=rhel-8.8 + +##### Package: info + +PackageName: info +SPDXID: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 +PackageVersion: 6.5-7.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:info:6.5-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:info:info:6.5-7.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/info@6.5-7.el8?arch=x86_64&upstream=texinfo-6.5-7.el8.src.rpm&distro=rhel-8.8 + +##### Package: iptables + +PackageName: iptables +SPDXID: SPDXRef-Package-rpm-iptables-48db2896eea2df43 +PackageVersion: 1.8.4-24.el8_8.2 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2-and-Artistic-2.0-and-ISC +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iptables:iptables:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:iptables:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/iptables@1.8.4-24.el8_8.2?arch=x86_64&upstream=iptables-1.8.4-24.el8_8.2.src.rpm&distro=rhel-8.8 + +##### Package: iptables-libs + +PackageName: iptables-libs +SPDXID: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 +PackageVersion: 1.8.4-24.el8_8.2 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2-and-Artistic-2.0-and-ISC +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iptables-libs:iptables-libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iptables-libs:iptables_libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iptables_libs:iptables-libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iptables_libs:iptables_libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iptables:iptables-libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:iptables:iptables_libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:iptables-libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:iptables_libs:1.8.4-24.el8_8.2:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/iptables-libs@1.8.4-24.el8_8.2?arch=x86_64&upstream=iptables-1.8.4-24.el8_8.2.src.rpm&distro=rhel-8.8 + +##### Package: jansson + +PackageName: jansson +SPDXID: SPDXRef-Package-rpm-jansson-a6e466f321d3c5ff +PackageVersion: 2.14-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:jansson:jansson:2.14-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:jansson:2.14-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/jansson@2.14-1.el8?arch=x86_64&upstream=jansson-2.14-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: json-c + +PackageName: json-c +SPDXID: SPDXRef-Package-rpm-json-c-399cffcbd42f5af6 +PackageVersion: 0.13.1-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json-c:json-c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json-c:json_c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json_c:json-c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json_c:json_c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:json-c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:json_c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:json-c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:json_c:0.13.1-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/json-c@0.13.1-3.el8?arch=x86_64&upstream=json-c-0.13.1-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: json-glib + +PackageName: json-glib +SPDXID: SPDXRef-Package-rpm-json-glib-fb5800e4b9214ebd +PackageVersion: 1.4.4-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json-glib:json-glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json-glib:json_glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json_glib:json-glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json_glib:json_glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:json-glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:json_glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:json-glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:json:json_glib:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/json-glib@1.4.4-1.el8?arch=x86_64&upstream=json-glib-1.4.4-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: keyutils-libs + +PackageName: keyutils-libs +SPDXID: SPDXRef-Package-rpm-keyutils-libs-885dca71d492333b +PackageVersion: 1.5.10-9.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--and-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:keyutils-libs:keyutils-libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:keyutils-libs:keyutils_libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:keyutils_libs:keyutils-libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:keyutils_libs:keyutils_libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:keyutils:keyutils-libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:keyutils:keyutils_libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:keyutils-libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:keyutils_libs:1.5.10-9.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/keyutils-libs@1.5.10-9.el8?arch=x86_64&upstream=keyutils-1.5.10-9.el8.src.rpm&distro=rhel-8.8 + +##### Package: kmod-libs + +PackageName: kmod-libs +SPDXID: SPDXRef-Package-rpm-kmod-libs-dce662a72db32ee1 +PackageVersion: 25-19.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kmod-libs:kmod-libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kmod-libs:kmod_libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kmod_libs:kmod-libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kmod_libs:kmod_libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:kmod-libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:kmod_libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kmod:kmod-libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:kmod:kmod_libs:25-19.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/kmod-libs@25-19.el8?arch=x86_64&upstream=kmod-25-19.el8.src.rpm&distro=rhel-8.8 + +##### Package: krb5-libs + +PackageName: krb5-libs +SPDXID: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 +PackageVersion: 1.18.2-25.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:krb5-libs:krb5-libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:krb5-libs:krb5_libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:krb5_libs:krb5-libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:krb5_libs:krb5_libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:krb5-libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:krb5_libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:krb5:krb5-libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:krb5:krb5_libs:1.18.2-25.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/krb5-libs@1.18.2-25.el8_8?arch=x86_64&upstream=krb5-1.18.2-25.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: langpacks-en + +PackageName: langpacks-en +SPDXID: SPDXRef-Package-rpm-langpacks-en-b921e0dabe7fe84e +PackageVersion: 1.0-12.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:langpacks-en:langpacks-en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:langpacks-en:langpacks_en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:langpacks_en:langpacks-en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:langpacks_en:langpacks_en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:langpacks:langpacks-en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:langpacks:langpacks_en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:langpacks-en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:langpacks_en:1.0-12.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/langpacks-en@1.0-12.el8?arch=noarch&upstream=langpacks-1.0-12.el8.src.rpm&distro=rhel-8.8 + +##### Package: libacl + +PackageName: libacl +SPDXID: SPDXRef-Package-rpm-libacl-1e60fab75e8d074c +PackageVersion: 2.2.53-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libacl:libacl:2.2.53-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libacl:2.2.53-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libacl@2.2.53-1.el8?arch=x86_64&upstream=acl-2.2.53-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libarchive + +PackageName: libarchive +SPDXID: SPDXRef-Package-rpm-libarchive-d2fcf670d209798e +PackageVersion: 3.3.3-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libarchive:libarchive:3.3.3-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libarchive:3.3.3-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libarchive@3.3.3-5.el8?arch=x86_64&upstream=libarchive-3.3.3-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libassuan + +PackageName: libassuan +SPDXID: SPDXRef-Package-rpm-libassuan-9166c1f313ff431e +PackageVersion: 2.5.1-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libassuan:libassuan:2.5.1-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libassuan:2.5.1-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libassuan@2.5.1-3.el8?arch=x86_64&upstream=libassuan-2.5.1-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: libattr + +PackageName: libattr +SPDXID: SPDXRef-Package-rpm-libattr-d77f66c9b8b51965 +PackageVersion: 2.4.48-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libattr:libattr:2.4.48-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libattr:2.4.48-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libattr@2.4.48-3.el8?arch=x86_64&upstream=attr-2.4.48-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: libblkid + +PackageName: libblkid +SPDXID: SPDXRef-Package-rpm-libblkid-2984dcc387f1f22a +PackageVersion: 2.32.1-42.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libblkid:libblkid:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libblkid:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libblkid@2.32.1-42.el8_8?arch=x86_64&upstream=util-linux-2.32.1-42.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libcap + +PackageName: libcap +SPDXID: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c +PackageVersion: 2.48-5.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-or-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcap:libcap:2.48-5.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libcap:2.48-5.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libcap@2.48-5.el8_8?arch=x86_64&upstream=libcap-2.48-5.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libcap-ng + +PackageName: libcap-ng +SPDXID: SPDXRef-Package-rpm-libcap-ng-51cf02126f09a3ef +PackageVersion: 0.7.11-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcap-ng:libcap-ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcap-ng:libcap_ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcap_ng:libcap-ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcap_ng:libcap_ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcap:libcap-ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcap:libcap_ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libcap-ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libcap_ng:0.7.11-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libcap-ng@0.7.11-1.el8?arch=x86_64&upstream=libcap-ng-0.7.11-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libcom_err + +PackageName: libcom_err +SPDXID: SPDXRef-Package-rpm-libcom-err-5810f3c8a99f4bcd +PackageVersion: 1.45.6-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcom-err:libcom-err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcom-err:libcom_err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcom_err:libcom-err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcom_err:libcom_err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcom:libcom-err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcom:libcom_err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libcom-err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libcom_err:1.45.6-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libcom_err@1.45.6-5.el8?arch=x86_64&upstream=e2fsprogs-1.45.6-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libcomps + +PackageName: libcomps +SPDXID: SPDXRef-Package-rpm-libcomps-a4decf888fcc52e4 +PackageVersion: 0.1.18-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcomps:libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libcomps@0.1.18-1.el8?arch=x86_64&upstream=libcomps-0.1.18-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libcurl + +PackageName: libcurl +SPDXID: SPDXRef-Package-rpm-libcurl-be0041c760e1b43f +PackageVersion: 7.61.1-30.el8_8.3 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libcurl:libcurl:7.61.1-30.el8_8.3:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libcurl:7.61.1-30.el8_8.3:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libcurl@7.61.1-30.el8_8.3?arch=x86_64&upstream=curl-7.61.1-30.el8_8.3.src.rpm&distro=rhel-8.8 + +##### Package: libdb + +PackageName: libdb +SPDXID: SPDXRef-Package-rpm-libdb-cdeffe58cdcf475e +PackageVersion: 5.3.28-42.el8_4 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-and-LGPLv2-and-Sleepycat +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libdb:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdb:libdb:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libdb@5.3.28-42.el8_4?arch=x86_64&upstream=libdb-5.3.28-42.el8_4.src.rpm&distro=rhel-8.8 + +##### Package: libdb-utils + +PackageName: libdb-utils +SPDXID: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 +PackageVersion: 5.3.28-42.el8_4 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-and-LGPLv2-and-Sleepycat +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdb-utils:libdb-utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdb-utils:libdb_utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdb_utils:libdb-utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdb_utils:libdb_utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libdb-utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libdb_utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdb:libdb-utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdb:libdb_utils:5.3.28-42.el8_4:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libdb-utils@5.3.28-42.el8_4?arch=x86_64&upstream=libdb-5.3.28-42.el8_4.src.rpm&distro=rhel-8.8 + +##### Package: libdnf + +PackageName: libdnf +SPDXID: SPDXRef-Package-rpm-libdnf-f386d34765ff5f46 +PackageVersion: 0.63.0-14.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libdnf:libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libdnf@0.63.0-14.el8_8?arch=x86_64&upstream=libdnf-0.63.0-14.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libfdisk + +PackageName: libfdisk +SPDXID: SPDXRef-Package-rpm-libfdisk-14aa4da39dcdd70b +PackageVersion: 2.32.1-42.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libfdisk:libfdisk:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libfdisk:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libfdisk@2.32.1-42.el8_8?arch=x86_64&upstream=util-linux-2.32.1-42.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libffi + +PackageName: libffi +SPDXID: SPDXRef-Package-rpm-libffi-28487ffb13452c88 +PackageVersion: 3.1-24.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libffi:libffi:3.1-24.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libffi:3.1-24.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libffi@3.1-24.el8?arch=x86_64&upstream=libffi-3.1-24.el8.src.rpm&distro=rhel-8.8 + +##### Package: libgcc + +PackageName: libgcc +SPDXID: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 +PackageVersion: 8.5.0-18.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-0a20635703258c08665cede2a4166b90795ad1cb30dd85cfde1598463d68ebf5 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgcc:libgcc:8.5.0-18.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libgcc:8.5.0-18.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libgcc@8.5.0-18.el8?arch=x86_64&upstream=gcc-8.5.0-18.el8.src.rpm&distro=rhel-8.8 + +##### Package: libgcrypt + +PackageName: libgcrypt +SPDXID: SPDXRef-Package-rpm-libgcrypt-65b56d43de84072c +PackageVersion: 1.8.5-7.el8_6 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgcrypt:libgcrypt:1.8.5-7.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libgcrypt:1.8.5-7.el8_6:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libgcrypt@1.8.5-7.el8_6?arch=x86_64&upstream=libgcrypt-1.8.5-7.el8_6.src.rpm&distro=rhel-8.8 + +##### Package: libgpg-error + +PackageName: libgpg-error +SPDXID: SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 +PackageVersion: 1.31-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgpg-error:libgpg-error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgpg-error:libgpg_error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgpg_error:libgpg-error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgpg_error:libgpg_error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgpg:libgpg-error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libgpg:libgpg_error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libgpg-error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libgpg_error:1.31-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libgpg-error@1.31-1.el8?arch=x86_64&upstream=libgpg-error-1.31-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libibverbs + +PackageName: libibverbs +SPDXID: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 +PackageVersion: 44.0-2.el8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2-or-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libibverbs:libibverbs:44.0-2.el8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libibverbs:44.0-2.el8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libibverbs@44.0-2.el8.1?arch=x86_64&upstream=rdma-core-44.0-2.el8.1.src.rpm&distro=rhel-8.8 + +##### Package: libidn2 + +PackageName: libidn2 +SPDXID: SPDXRef-Package-rpm-libidn2-2ad5f614b681561b +PackageVersion: 2.2.0-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef--GPLv2--or-LGPLv3---and-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libidn2:libidn2:2.2.0-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libidn2:2.2.0-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libidn2@2.2.0-1.el8?arch=x86_64&upstream=libidn2-2.2.0-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libksba + +PackageName: libksba +SPDXID: SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 +PackageVersion: 1.3.5-9.el8_7 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef--LGPLv3--or-GPLv2---and-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libksba:libksba:1.3.5-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libksba:1.3.5-9.el8_7:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libksba@1.3.5-9.el8_7?arch=x86_64&upstream=libksba-1.3.5-9.el8_7.src.rpm&distro=rhel-8.8 + +##### Package: libmnl + +PackageName: libmnl +SPDXID: SPDXRef-Package-rpm-libmnl-b714cde5e9c0a3f9 +PackageVersion: 1.0.4-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libmnl:libmnl:1.0.4-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libmnl:1.0.4-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libmnl@1.0.4-6.el8?arch=x86_64&upstream=libmnl-1.0.4-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: libmodulemd + +PackageName: libmodulemd +SPDXID: SPDXRef-Package-rpm-libmodulemd-9c9ffed1c422836c +PackageVersion: 2.13.0-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libmodulemd:libmodulemd:2.13.0-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libmodulemd:2.13.0-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libmodulemd@2.13.0-1.el8?arch=x86_64&upstream=libmodulemd-2.13.0-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libmount + +PackageName: libmount +SPDXID: SPDXRef-Package-rpm-libmount-070a612d83e6848e +PackageVersion: 2.32.1-42.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libmount:libmount:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libmount:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libmount@2.32.1-42.el8_8?arch=x86_64&upstream=util-linux-2.32.1-42.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libnet + +PackageName: libnet +SPDXID: SPDXRef-Package-rpm-libnet-f53795cb57509559 +PackageVersion: 1.1.6-15.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnet:libnet:1.1.6-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnet:1.1.6-15.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libnet@1.1.6-15.el8?arch=x86_64&upstream=libnet-1.1.6-15.el8.src.rpm&distro=rhel-8.8 + +##### Package: libnetfilter_conntrack + +PackageName: libnetfilter_conntrack +SPDXID: SPDXRef-Package-rpm-libnetfilter-conntrack-830c21345b7e5867 +PackageVersion: 1.0.6-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnetfilter-conntrack:libnetfilter-conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnetfilter-conntrack:libnetfilter_conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnetfilter_conntrack:libnetfilter-conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnetfilter_conntrack:libnetfilter_conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnetfilter:libnetfilter-conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnetfilter:libnetfilter_conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnetfilter-conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnetfilter_conntrack:1.0.6-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libnetfilter_conntrack@1.0.6-5.el8?arch=x86_64&upstream=libnetfilter_conntrack-1.0.6-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libnfnetlink + +PackageName: libnfnetlink +SPDXID: SPDXRef-Package-rpm-libnfnetlink-d0dd7b9ce7180a33 +PackageVersion: 1.0.1-13.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnfnetlink:libnfnetlink:1.0.1-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnfnetlink:1.0.1-13.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libnfnetlink@1.0.1-13.el8?arch=x86_64&upstream=libnfnetlink-1.0.1-13.el8.src.rpm&distro=rhel-8.8 + +##### Package: libnftnl + +PackageName: libnftnl +SPDXID: SPDXRef-Package-rpm-libnftnl-e5ed9cb81779a0d2 +PackageVersion: 1.1.5-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnftnl:libnftnl:1.1.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnftnl:1.1.5-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libnftnl@1.1.5-5.el8?arch=x86_64&upstream=libnftnl-1.1.5-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libnghttp2 + +PackageName: libnghttp2 +SPDXID: SPDXRef-Package-rpm-libnghttp2-6b719eae4b2d0223 +PackageVersion: 1.33.0-3.el8_2.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnghttp2:libnghttp2:1.33.0-3.el8_2.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnghttp2:1.33.0-3.el8_2.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libnghttp2@1.33.0-3.el8_2.1?arch=x86_64&upstream=nghttp2-1.33.0-3.el8_2.1.src.rpm&distro=rhel-8.8 + +##### Package: libnl3 + +PackageName: libnl3 +SPDXID: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e +PackageVersion: 3.7.0-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnl3:libnl3:3.7.0-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnl3:3.7.0-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libnl3@3.7.0-1.el8?arch=x86_64&upstream=libnl3-3.7.0-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libnsl2 + +PackageName: libnsl2 +SPDXID: SPDXRef-Package-rpm-libnsl2-ec79fbc521155d21 +PackageVersion: 1.2.0-2.20180605git4a062cf.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-and-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libnsl2:libnsl2:1.2.0-2.20180605git4a062cf.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libnsl2:1.2.0-2.20180605git4a062cf.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libnsl2@1.2.0-2.20180605git4a062cf.el8?arch=x86_64&upstream=libnsl2-1.2.0-2.20180605git4a062cf.el8.src.rpm&distro=rhel-8.8 + +##### Package: libpcap + +PackageName: libpcap +SPDXID: SPDXRef-Package-rpm-libpcap-66241757d50be997 +PackageVersion: 14:1.9.1-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-with-advertising +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libpcap:libpcap:14\:1.9.1-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libpcap:14\:1.9.1-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libpcap@1.9.1-5.el8?arch=x86_64&epoch=14&upstream=libpcap-1.9.1-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libpng + +PackageName: libpng +SPDXID: SPDXRef-Package-rpm-libpng-d91e6e2416007afb +PackageVersion: 2:1.6.34-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: Zlib +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libpng:libpng:2\:1.6.34-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libpng:2\:1.6.34-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libpng@1.6.34-5.el8?arch=x86_64&epoch=2&upstream=libpng-1.6.34-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libpsl + +PackageName: libpsl +SPDXID: SPDXRef-Package-rpm-libpsl-fac4c11e752b3ddd +PackageVersion: 0.20.2-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libpsl:libpsl:0.20.2-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libpsl:0.20.2-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libpsl@0.20.2-6.el8?arch=x86_64&upstream=libpsl-0.20.2-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: libpwquality + +PackageName: libpwquality +SPDXID: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 +PackageVersion: 1.4.4-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-or-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libpwquality:libpwquality:1.4.4-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libpwquality:1.4.4-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libpwquality@1.4.4-6.el8?arch=x86_64&upstream=libpwquality-1.4.4-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: librepo + +PackageName: librepo +SPDXID: SPDXRef-Package-rpm-librepo-4cd2e86c97c4754a +PackageVersion: 1.14.2-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:librepo:librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/librepo@1.14.2-4.el8?arch=x86_64&upstream=librepo-1.14.2-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: libreport-filesystem + +PackageName: libreport-filesystem +SPDXID: SPDXRef-Package-rpm-libreport-filesystem-279179905ddc5197 +PackageVersion: 2.9.5-15.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libreport-filesystem:libreport-filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libreport-filesystem:libreport_filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libreport_filesystem:libreport-filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libreport_filesystem:libreport_filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libreport:libreport-filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libreport:libreport_filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libreport-filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libreport_filesystem:2.9.5-15.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libreport-filesystem@2.9.5-15.el8?arch=x86_64&upstream=libreport-2.9.5-15.el8.src.rpm&distro=rhel-8.8 + +##### Package: librhsm + +PackageName: librhsm +SPDXID: SPDXRef-Package-rpm-librhsm-a49d331240abf19b +PackageVersion: 0.0.3-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:librhsm:librhsm:0.0.3-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:librhsm:0.0.3-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/librhsm@0.0.3-5.el8?arch=x86_64&upstream=librhsm-0.0.3-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libseccomp + +PackageName: libseccomp +SPDXID: SPDXRef-Package-rpm-libseccomp-9637380e6a0d0e55 +PackageVersion: 2.5.2-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libseccomp:libseccomp:2.5.2-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libseccomp:2.5.2-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libseccomp@2.5.2-1.el8?arch=x86_64&upstream=libseccomp-2.5.2-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: libselinux + +PackageName: libselinux +SPDXID: SPDXRef-Package-rpm-libselinux-594107f6b62dc4ab +PackageVersion: 2.9-8.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libselinux:libselinux:2.9-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libselinux:2.9-8.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libselinux@2.9-8.el8?arch=x86_64&upstream=libselinux-2.9-8.el8.src.rpm&distro=rhel-8.8 + +##### Package: libsemanage + +PackageName: libsemanage +SPDXID: SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f +PackageVersion: 2.9-9.el8_6 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libsemanage:libsemanage:2.9-9.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libsemanage:2.9-9.el8_6:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libsemanage@2.9-9.el8_6?arch=x86_64&upstream=libsemanage-2.9-9.el8_6.src.rpm&distro=rhel-8.8 + +##### Package: libsepol + +PackageName: libsepol +SPDXID: SPDXRef-Package-rpm-libsepol-26ec304cd5fb1c60 +PackageVersion: 2.9-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libsepol:libsepol:2.9-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libsepol:2.9-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libsepol@2.9-3.el8?arch=x86_64&upstream=libsepol-2.9-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: libsigsegv + +PackageName: libsigsegv +SPDXID: SPDXRef-Package-rpm-libsigsegv-27b4d892ad295940 +PackageVersion: 2.11-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libsigsegv:libsigsegv:2.11-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libsigsegv:2.11-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libsigsegv@2.11-5.el8?arch=x86_64&upstream=libsigsegv-2.11-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libsmartcols + +PackageName: libsmartcols +SPDXID: SPDXRef-Package-rpm-libsmartcols-cfc1b4c97bd0b1f9 +PackageVersion: 2.32.1-42.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libsmartcols:libsmartcols:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libsmartcols:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libsmartcols@2.32.1-42.el8_8?arch=x86_64&upstream=util-linux-2.32.1-42.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libsolv + +PackageName: libsolv +SPDXID: SPDXRef-Package-rpm-libsolv-8b6446e1aef0cb45 +PackageVersion: 0.7.20-4.el8_7 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libsolv:libsolv:0.7.20-4.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libsolv:0.7.20-4.el8_7:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libsolv@0.7.20-4.el8_7?arch=x86_64&upstream=libsolv-0.7.20-4.el8_7.src.rpm&distro=rhel-8.8 + +##### Package: libssh + +PackageName: libssh +SPDXID: SPDXRef-Package-rpm-libssh-8cb077ad4f6fdfd4 +PackageVersion: 0.9.6-10.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libssh:libssh:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libssh:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libssh@0.9.6-10.el8_8?arch=x86_64&upstream=libssh-0.9.6-10.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libssh-config + +PackageName: libssh-config +SPDXID: SPDXRef-Package-rpm-libssh-config-b52f1724c9af9daa +PackageVersion: 0.9.6-10.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libssh-config:libssh-config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libssh-config:libssh_config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libssh_config:libssh-config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libssh_config:libssh_config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libssh:libssh-config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libssh:libssh_config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libssh-config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libssh_config:0.9.6-10.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libssh-config@0.9.6-10.el8_8?arch=noarch&upstream=libssh-0.9.6-10.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libstdc++ + +PackageName: libstdc++ +SPDXID: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b +PackageVersion: 8.5.0-18.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-0a20635703258c08665cede2a4166b90795ad1cb30dd85cfde1598463d68ebf5 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libstdc\+\+:libstdc\+\+:8.5.0-18.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libstdc\+\+:8.5.0-18.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libstdc++@8.5.0-18.el8?arch=x86_64&upstream=gcc-8.5.0-18.el8.src.rpm&distro=rhel-8.8 + +##### Package: libtasn1 + +PackageName: libtasn1 +SPDXID: SPDXRef-Package-rpm-libtasn1-ce90f646db4cd13d +PackageVersion: 4.13-4.el8_7 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3--and-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libtasn1:libtasn1:4.13-4.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libtasn1:4.13-4.el8_7:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libtasn1@4.13-4.el8_7?arch=x86_64&upstream=libtasn1-4.13-4.el8_7.src.rpm&distro=rhel-8.8 + +##### Package: libtirpc + +PackageName: libtirpc +SPDXID: SPDXRef-Package-rpm-libtirpc-8061da9a912f4b51 +PackageVersion: 1.1.4-8.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-SISSL-and-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libtirpc:libtirpc:1.1.4-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libtirpc:1.1.4-8.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libtirpc@1.1.4-8.el8?arch=x86_64&upstream=libtirpc-1.1.4-8.el8.src.rpm&distro=rhel-8.8 + +##### Package: libunistring + +PackageName: libunistring +SPDXID: SPDXRef-Package-rpm-libunistring-831f91ebad44f2ec +PackageVersion: 0.9.9-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--or-LGPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libunistring:libunistring:0.9.9-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libunistring:0.9.9-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libunistring@0.9.9-3.el8?arch=x86_64&upstream=libunistring-0.9.9-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: libusbx + +PackageName: libusbx +SPDXID: SPDXRef-Package-rpm-libusbx-703f02296551e01f +PackageVersion: 1.0.23-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libusbx:libusbx:1.0.23-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libusbx:1.0.23-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libusbx@1.0.23-4.el8?arch=x86_64&upstream=libusbx-1.0.23-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: libuser + +PackageName: libuser +SPDXID: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 +PackageVersion: 0.62-25.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libuser:libuser:0.62-25.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libuser:0.62-25.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libuser@0.62-25.el8?arch=x86_64&upstream=libuser-0.62-25.el8.src.rpm&distro=rhel-8.8 + +##### Package: libutempter + +PackageName: libutempter +SPDXID: SPDXRef-Package-rpm-libutempter-3b10d50d8648cfcf +PackageVersion: 1.1.6-14.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libutempter:libutempter:1.1.6-14.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libutempter:1.1.6-14.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libutempter@1.1.6-14.el8?arch=x86_64&upstream=libutempter-1.1.6-14.el8.src.rpm&distro=rhel-8.8 + +##### Package: libuuid + +PackageName: libuuid +SPDXID: SPDXRef-Package-rpm-libuuid-6320b104102d68ba +PackageVersion: 2.32.1-42.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libuuid:libuuid:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libuuid:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libuuid@2.32.1-42.el8_8?arch=x86_64&upstream=util-linux-2.32.1-42.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: libverto + +PackageName: libverto +SPDXID: SPDXRef-Package-rpm-libverto-75c996841840f97a +PackageVersion: 0.3.2-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libverto:libverto:0.3.2-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libverto:0.3.2-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libverto@0.3.2-2.el8?arch=x86_64&upstream=libverto-0.3.2-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: libxcrypt + +PackageName: libxcrypt +SPDXID: SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 +PackageVersion: 4.1.1-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-BSD-and-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libxcrypt:libxcrypt:4.1.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libxcrypt:4.1.1-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libxcrypt@4.1.1-6.el8?arch=x86_64&upstream=libxcrypt-4.1.1-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: libxml2 + +PackageName: libxml2 +SPDXID: SPDXRef-Package-rpm-libxml2-fda5b57dbb69e8e7 +PackageVersion: 2.9.7-16.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libxml2:libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libxml2@2.9.7-16.el8_8.1?arch=x86_64&upstream=libxml2-2.9.7-16.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: libyaml + +PackageName: libyaml +SPDXID: SPDXRef-Package-rpm-libyaml-d3d578fd9d7e0485 +PackageVersion: 0.1.7-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libyaml:libyaml:0.1.7-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libyaml:0.1.7-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libyaml@0.1.7-5.el8?arch=x86_64&upstream=libyaml-0.1.7-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: libzstd + +PackageName: libzstd +SPDXID: SPDXRef-Package-rpm-libzstd-ae3b0f6ebfec6dfc +PackageVersion: 1.4.4-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-and-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:libzstd:libzstd:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:libzstd:1.4.4-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/libzstd@1.4.4-1.el8?arch=x86_64&upstream=zstd-1.4.4-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: lua-libs + +PackageName: lua-libs +SPDXID: SPDXRef-Package-rpm-lua-libs-1f0da6c7eb5408a0 +PackageVersion: 5.3.4-12.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lua-libs:lua-libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lua-libs:lua_libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lua_libs:lua-libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lua_libs:lua_libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:lua-libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:lua_libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lua:lua-libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lua:lua_libs:5.3.4-12.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/lua-libs@5.3.4-12.el8?arch=x86_64&upstream=lua-5.3.4-12.el8.src.rpm&distro=rhel-8.8 + +##### Package: lz4-libs + +PackageName: lz4-libs +SPDXID: SPDXRef-Package-rpm-lz4-libs-fab834f3c05b83f6 +PackageVersion: 1.8.3-3.el8_4 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--and-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lz4-libs:lz4-libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lz4-libs:lz4_libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lz4_libs:lz4-libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lz4_libs:lz4_libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:lz4-libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:lz4_libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lz4:lz4-libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:lz4:lz4_libs:1.8.3-3.el8_4:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/lz4-libs@1.8.3-3.el8_4?arch=x86_64&upstream=lz4-1.8.3-3.el8_4.src.rpm&distro=rhel-8.8 + +##### Package: mpfr + +PackageName: mpfr +SPDXID: SPDXRef-Package-rpm-mpfr-1a8596f0e80a7465 +PackageVersion: 3.1.6-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv3--and-GPLv3--and-GFDL +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:mpfr:3.1.6-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:mpfr:mpfr:3.1.6-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/mpfr@3.1.6-1.el8?arch=x86_64&upstream=mpfr-3.1.6-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: ncurses-base + +PackageName: ncurses-base +SPDXID: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 +PackageVersion: 6.1-9.20180224.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses-base:ncurses-base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses-base:ncurses_base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses_base:ncurses-base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses_base:ncurses_base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses:ncurses-base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses:ncurses_base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ncurses-base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ncurses_base:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/ncurses-base@6.1-9.20180224.el8_8.1?arch=noarch&upstream=ncurses-6.1-9.20180224.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: ncurses-libs + +PackageName: ncurses-libs +SPDXID: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 +PackageVersion: 6.1-9.20180224.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses-libs:ncurses-libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses-libs:ncurses_libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses_libs:ncurses-libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses_libs:ncurses_libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses:ncurses-libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:ncurses:ncurses_libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ncurses-libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:ncurses_libs:6.1-9.20180224.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/ncurses-libs@6.1-9.20180224.el8_8.1?arch=x86_64&upstream=ncurses-6.1-9.20180224.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: nettle + +PackageName: nettle +SPDXID: SPDXRef-Package-rpm-nettle-446fa052fc193975 +PackageVersion: 3.4.1-7.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv3--or-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nettle:nettle:3.4.1-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:nettle:3.4.1-7.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/nettle@3.4.1-7.el8?arch=x86_64&upstream=nettle-3.4.1-7.el8.src.rpm&distro=rhel-8.8 + +##### Package: nftables + +PackageName: nftables +SPDXID: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 +PackageVersion: 1:0.9.3-26.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:nftables:nftables:1\:0.9.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:nftables:1\:0.9.3-26.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/nftables@0.9.3-26.el8?arch=x86_64&epoch=1&upstream=nftables-0.9.3-26.el8.src.rpm&distro=rhel-8.8 + +##### Package: npth + +PackageName: npth +SPDXID: SPDXRef-Package-rpm-npth-9ce2662d05a994e8 +PackageVersion: 1.5-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:npth:1.5-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:npth:npth:1.5-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/npth@1.5-4.el8?arch=x86_64&upstream=npth-1.5-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: openldap + +PackageName: openldap +SPDXID: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 +PackageVersion: 2.4.46-18.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-OpenLDAP +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openldap:openldap:2.4.46-18.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:openldap:2.4.46-18.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/openldap@2.4.46-18.el8?arch=x86_64&upstream=openldap-2.4.46-18.el8.src.rpm&distro=rhel-8.8 + +##### Package: openssl + +PackageName: openssl +SPDXID: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 +PackageVersion: 1:1.1.1k-9.el8_7 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-OpenSSL-and-ASL-2.0 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openssl:openssl:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:openssl:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/openssl@1.1.1k-9.el8_7?arch=x86_64&epoch=1&upstream=openssl-1.1.1k-9.el8_7.src.rpm&distro=rhel-8.8 + +##### Package: openssl-libs + +PackageName: openssl-libs +SPDXID: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 +PackageVersion: 1:1.1.1k-9.el8_7 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-OpenSSL-and-ASL-2.0 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openssl-libs:openssl-libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openssl-libs:openssl_libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openssl_libs:openssl-libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openssl_libs:openssl_libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openssl:openssl-libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:openssl:openssl_libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:openssl-libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:openssl_libs:1\:1.1.1k-9.el8_7:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/openssl-libs@1.1.1k-9.el8_7?arch=x86_64&epoch=1&upstream=openssl-1.1.1k-9.el8_7.src.rpm&distro=rhel-8.8 + +##### Package: p11-kit + +PackageName: p11-kit +SPDXID: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 +PackageVersion: 0.23.22-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11-kit:p11-kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11-kit:p11_kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11_kit:p11-kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11_kit:p11_kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:p11-kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:p11_kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11:p11-kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11:p11_kit:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/p11-kit@0.23.22-1.el8?arch=x86_64&upstream=p11-kit-0.23.22-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: p11-kit-trust + +PackageName: p11-kit-trust +SPDXID: SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f +PackageVersion: 0.23.22-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11-kit-trust:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11-kit-trust:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11_kit_trust:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11_kit_trust:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11-kit:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11-kit:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11_kit:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11_kit:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11:p11-kit-trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:p11:p11_kit_trust:0.23.22-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/p11-kit-trust@0.23.22-1.el8?arch=x86_64&upstream=p11-kit-0.23.22-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: pam + +PackageName: pam +SPDXID: SPDXRef-Package-rpm-pam-c80e5763b488aaab +PackageVersion: 1.3.1-25.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:pam:1.3.1-25.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pam:pam:1.3.1-25.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/pam@1.3.1-25.el8?arch=x86_64&upstream=pam-1.3.1-25.el8.src.rpm&distro=rhel-8.8 + +##### Package: passwd + +PackageName: passwd +SPDXID: SPDXRef-Package-rpm-passwd-d530074a47793db2 +PackageVersion: 0.80-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-or-GPL- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:passwd:passwd:0.80-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:passwd:0.80-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/passwd@0.80-4.el8?arch=x86_64&upstream=passwd-0.80-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: pcre + +PackageName: pcre +SPDXID: SPDXRef-Package-rpm-pcre-39055d7c30264ebc +PackageVersion: 8.42-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:pcre:8.42-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pcre:pcre:8.42-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/pcre@8.42-6.el8?arch=x86_64&upstream=pcre-8.42-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: pcre2 + +PackageName: pcre2 +SPDXID: SPDXRef-Package-rpm-pcre2-3da25cce088d6f35 +PackageVersion: 10.32-3.el8_6 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:pcre2:10.32-3.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:pcre2:pcre2:10.32-3.el8_6:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/pcre2@10.32-3.el8_6?arch=x86_64&upstream=pcre2-10.32-3.el8_6.src.rpm&distro=rhel-8.8 + +##### Package: platform-python + +PackageName: platform-python +SPDXID: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 +PackageVersion: 3.6.8-51.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Python +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform-python:platform-python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform-python:platform_python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform_python:platform-python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform_python:platform_python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform-python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform_python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:platform-python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:platform_python:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/platform-python@3.6.8-51.el8_8.1?arch=x86_64&upstream=python3-3.6.8-51.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: platform-python-setuptools + +PackageName: platform-python-setuptools +SPDXID: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd +PackageVersion: 39.2.0-7.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform-python-setuptools:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform-python-setuptools:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform_python_setuptools:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform_python_setuptools:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform-python:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform-python:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform_python:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform_python:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:platform:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:platform-python-setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:platform_python_setuptools:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/platform-python-setuptools@39.2.0-7.el8?arch=noarch&upstream=python-setuptools-39.2.0-7.el8.src.rpm&distro=rhel-8.8 + +##### Package: popt + +PackageName: popt +SPDXID: SPDXRef-Package-rpm-popt-0b3935dae763295c +PackageVersion: 1.18-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:popt:1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:popt:popt:1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/popt@1.18-1.el8?arch=x86_64&upstream=popt-1.18-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: protobuf-c + +PackageName: protobuf-c +SPDXID: SPDXRef-Package-rpm-protobuf-c-caf48a448cb494cc +PackageVersion: 1.3.0-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:protobuf-c:protobuf-c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:protobuf-c:protobuf_c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:protobuf_c:protobuf-c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:protobuf_c:protobuf_c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:protobuf:protobuf-c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:protobuf:protobuf_c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:protobuf-c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:protobuf_c:1.3.0-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/protobuf-c@1.3.0-6.el8?arch=x86_64&upstream=protobuf-c-1.3.0-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: publicsuffix-list-dafsa + +PackageName: publicsuffix-list-dafsa +SPDXID: SPDXRef-Package-rpm-publicsuffix-list-dafsa-214d24ff5f54adcf +PackageVersion: 20180723-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-MPLv2.0 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix-list-dafsa:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix-list-dafsa:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix_list_dafsa:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix_list_dafsa:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix-list:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix-list:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix_list:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix_list:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:publicsuffix:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:publicsuffix-list-dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:publicsuffix_list_dafsa:20180723-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/publicsuffix-list-dafsa@20180723-1.el8?arch=noarch&upstream=publicsuffix-list-20180723-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-chardet + +PackageName: python3-chardet +SPDXID: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa +PackageVersion: 3.0.4-7.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-chardet:python3-chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-chardet:python3_chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_chardet:python3-chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_chardet:python3_chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_chardet:3.0.4-7.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-chardet@3.0.4-7.el8?arch=noarch&upstream=python-chardet-3.0.4-7.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-cloud-what + +PackageName: python3-cloud-what +SPDXID: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 +PackageVersion: 1.28.36-3.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-cloud-what:python3-cloud-what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-cloud-what:python3_cloud_what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_cloud_what:python3-cloud-what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_cloud_what:python3_cloud_what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-cloud:python3-cloud-what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-cloud:python3_cloud_what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_cloud:python3-cloud-what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_cloud:python3_cloud_what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-cloud-what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_cloud_what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-cloud-what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_cloud_what:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-cloud-what@1.28.36-3.el8_8?arch=x86_64&upstream=subscription-manager-1.28.36-3.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-dateutil + +PackageName: python3-dateutil +SPDXID: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 +PackageVersion: 1:2.6.1-6.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dateutil:python3-dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dateutil:python3_dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dateutil:python3-dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dateutil:python3_dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_dateutil:1\:2.6.1-6.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-dateutil@2.6.1-6.el8?arch=noarch&epoch=1&upstream=python-dateutil-2.6.1-6.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-dbus + +PackageName: python3-dbus +SPDXID: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 +PackageVersion: 1.2.4-15.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dbus:python3-dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dbus:python3_dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dbus:python3-dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dbus:python3_dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_dbus:1.2.4-15.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-dbus@1.2.4-15.el8?arch=x86_64&upstream=dbus-python-1.2.4-15.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-decorator + +PackageName: python3-decorator +SPDXID: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 +PackageVersion: 4.2.1-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-decorator:python3-decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-decorator:python3_decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_decorator:python3-decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_decorator:python3_decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_decorator:4.2.1-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-decorator@4.2.1-2.el8?arch=noarch&upstream=python-decorator-4.2.1-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-dmidecode + +PackageName: python3-dmidecode +SPDXID: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 +PackageVersion: 3.12.3-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dmidecode:python3-dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dmidecode:python3_dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dmidecode:python3-dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dmidecode:python3_dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_dmidecode:3.12.3-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-dmidecode@3.12.3-2.el8?arch=x86_64&upstream=python-dmidecode-3.12.3-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-dnf + +PackageName: python3-dnf +SPDXID: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 +PackageVersion: 4.7.0-16.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf:python3-dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf:python3_dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf:python3-dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf:python3_dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_dnf:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-dnf@4.7.0-16.el8_8?arch=noarch&upstream=dnf-4.7.0-16.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-dnf-plugins-core + +PackageName: python3-dnf-plugins-core +SPDXID: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 +PackageVersion: 4.0.21-19.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf-plugins-core:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf-plugins-core:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf_plugins_core:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf_plugins_core:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf-plugins:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf-plugins:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf_plugins:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf_plugins:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-dnf:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_dnf:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-dnf-plugins-core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_dnf_plugins_core:4.0.21-19.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-dnf-plugins-core@4.0.21-19.el8_8?arch=noarch&upstream=dnf-plugins-core-4.0.21-19.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-ethtool + +PackageName: python3-ethtool +SPDXID: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 +PackageVersion: 0.14-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-ethtool:python3-ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-ethtool:python3_ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_ethtool:python3-ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_ethtool:python3_ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_ethtool:0.14-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-ethtool@0.14-5.el8?arch=x86_64&upstream=python-ethtool-0.14-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-gobject-base + +PackageName: python3-gobject-base +SPDXID: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 +PackageVersion: 3.28.3-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-gobject-base:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-gobject-base:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_gobject_base:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_gobject_base:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-gobject:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-gobject:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_gobject:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_gobject:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-gobject-base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_gobject_base:3.28.3-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-gobject-base@3.28.3-2.el8?arch=x86_64&upstream=pygobject3-3.28.3-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-gpg + +PackageName: python3-gpg +SPDXID: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d +PackageVersion: 1.13.1-11.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-gpg:python3-gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-gpg:python3_gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_gpg:python3-gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_gpg:python3_gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_gpg:1.13.1-11.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-gpg@1.13.1-11.el8?arch=x86_64&upstream=gpgme-1.13.1-11.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-hawkey + +PackageName: python3-hawkey +SPDXID: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd +PackageVersion: 0.63.0-14.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-hawkey:python3-hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-hawkey:python3_hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_hawkey:python3-hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_hawkey:python3_hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_hawkey:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-hawkey@0.63.0-14.el8_8?arch=x86_64&upstream=libdnf-0.63.0-14.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-idna + +PackageName: python3-idna +SPDXID: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 +PackageVersion: 2.5-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-and-Python-and-Unicode +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-idna:python3-idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-idna:python3_idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_idna:python3-idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_idna:python3_idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_idna:2.5-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-idna@2.5-5.el8?arch=noarch&upstream=python-idna-2.5-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-iniparse + +PackageName: python3-iniparse +SPDXID: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 +PackageVersion: 0.4-31.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-MIT-and-Python +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-iniparse:python3-iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-iniparse:python3_iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_iniparse:python3-iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_iniparse:python3_iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_iniparse:0.4-31.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-iniparse@0.4-31.el8?arch=noarch&upstream=python-iniparse-0.4-31.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-inotify + +PackageName: python3-inotify +SPDXID: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 +PackageVersion: 0.9.6-13.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-inotify:python3-inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-inotify:python3_inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_inotify:python3-inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_inotify:python3_inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_inotify:0.9.6-13.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-inotify@0.9.6-13.el8?arch=noarch&upstream=python-inotify-0.9.6-13.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-libcomps + +PackageName: python3-libcomps +SPDXID: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d +PackageVersion: 0.1.18-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libcomps:python3-libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libcomps:python3_libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libcomps:python3-libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libcomps:python3_libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_libcomps:0.1.18-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-libcomps@0.1.18-1.el8?arch=x86_64&upstream=libcomps-0.1.18-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-libdnf + +PackageName: python3-libdnf +SPDXID: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 +PackageVersion: 0.63.0-14.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libdnf:python3-libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libdnf:python3_libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libdnf:python3-libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libdnf:python3_libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_libdnf:0.63.0-14.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-libdnf@0.63.0-14.el8_8?arch=x86_64&upstream=libdnf-0.63.0-14.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-librepo + +PackageName: python3-librepo +SPDXID: SPDXRef-Package-rpm-python3-librepo-0b6f4113629057b0 +PackageVersion: 1.14.2-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-librepo:python3-librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-librepo:python3_librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_librepo:python3-librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_librepo:python3_librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_librepo:1.14.2-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-librepo@1.14.2-4.el8?arch=x86_64&upstream=librepo-1.14.2-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-libs + +PackageName: python3-libs +SPDXID: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 +PackageVersion: 3.6.8-51.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Python +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libs:python3-libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libs:python3_libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libs:python3-libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libs:python3_libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_libs:3.6.8-51.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-libs@3.6.8-51.el8_8.1?arch=x86_64&upstream=python3-3.6.8-51.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: python3-libxml2 + +PackageName: python3-libxml2 +SPDXID: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 +PackageVersion: 2.9.7-16.el8_8.1 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libxml2:python3-libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-libxml2:python3_libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libxml2:python3-libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_libxml2:python3_libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_libxml2:2.9.7-16.el8_8.1:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-libxml2@2.9.7-16.el8_8.1?arch=x86_64&upstream=libxml2-2.9.7-16.el8_8.1.src.rpm&distro=rhel-8.8 + +##### Package: python3-pip-wheel + +PackageName: python3-pip-wheel +SPDXID: SPDXRef-Package-rpm-python3-pip-wheel-468c6d9b2ca975d4 +PackageVersion: 9.0.3-22.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-2cecbaa02b06308d4d3db56ae890f9d8fa8289de0557ac98056ab86246326f86 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-pip-wheel:python3-pip-wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-pip-wheel:python3_pip_wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_pip_wheel:python3-pip-wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_pip_wheel:python3_pip_wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-pip:python3-pip-wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-pip:python3_pip_wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_pip:python3-pip-wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_pip:python3_pip_wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-pip-wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_pip_wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-pip-wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_pip_wheel:9.0.3-22.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-pip-wheel@9.0.3-22.el8?arch=noarch&upstream=python-pip-9.0.3-22.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-pysocks + +PackageName: python3-pysocks +SPDXID: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 +PackageVersion: 1.6.8-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-pysocks:python3-pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-pysocks:python3_pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_pysocks:python3-pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_pysocks:python3_pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_pysocks:1.6.8-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-pysocks@1.6.8-3.el8?arch=noarch&upstream=python-pysocks-1.6.8-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-requests + +PackageName: python3-requests +SPDXID: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 +PackageVersion: 2.20.0-3.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-ASL-2.0 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-requests:python3-requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-requests:python3_requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_requests:python3-requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_requests:python3_requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_requests:2.20.0-3.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-requests@2.20.0-3.el8_8?arch=noarch&upstream=python-requests-2.20.0-3.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-rpm + +PackageName: python3-rpm +SPDXID: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 +PackageVersion: 4.14.3-26.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-rpm:python3-rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-rpm:python3_rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_rpm:python3-rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_rpm:python3_rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-rpm@4.14.3-26.el8?arch=x86_64&upstream=rpm-4.14.3-26.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-setuptools-wheel + +PackageName: python3-setuptools-wheel +SPDXID: SPDXRef-Package-rpm-python3-setuptools-wheel-33a76a121de2018e +PackageVersion: 39.2.0-7.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-setuptools-wheel:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-setuptools-wheel:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_setuptools_wheel:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_setuptools_wheel:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-setuptools:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-setuptools:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_setuptools:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_setuptools:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-setuptools-wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_setuptools_wheel:39.2.0-7.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-setuptools-wheel@39.2.0-7.el8?arch=noarch&upstream=python-setuptools-39.2.0-7.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-six + +PackageName: python3-six +SPDXID: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea +PackageVersion: 1.11.0-8.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-six:python3-six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-six:python3_six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_six:python3-six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_six:python3_six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_six:1.11.0-8.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-six@1.11.0-8.el8?arch=noarch&upstream=python-six-1.11.0-8.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-subscription-manager-rhsm + +PackageName: python3-subscription-manager-rhsm +SPDXID: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 +PackageVersion: 1.28.36-3.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-subscription-manager-rhsm:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-subscription-manager-rhsm:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_subscription_manager_rhsm:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_subscription_manager_rhsm:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-subscription-manager:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-subscription-manager:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_subscription_manager:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_subscription_manager:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-subscription:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-subscription:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_subscription:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_subscription:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-subscription-manager-rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_subscription_manager_rhsm:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-subscription-manager-rhsm@1.28.36-3.el8_8?arch=x86_64&upstream=subscription-manager-1.28.36-3.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-syspurpose + +PackageName: python3-syspurpose +SPDXID: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 +PackageVersion: 1.28.36-3.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-syspurpose:python3-syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-syspurpose:python3_syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_syspurpose:python3-syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_syspurpose:python3_syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_syspurpose:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-syspurpose@1.28.36-3.el8_8?arch=x86_64&upstream=subscription-manager-1.28.36-3.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: python3-systemd + +PackageName: python3-systemd +SPDXID: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 +PackageVersion: 234-8.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-systemd:python3-systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-systemd:python3_systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_systemd:python3-systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_systemd:python3_systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_systemd:234-8.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-systemd@234-8.el8?arch=x86_64&upstream=python-systemd-234-8.el8.src.rpm&distro=rhel-8.8 + +##### Package: python3-urllib3 + +PackageName: python3-urllib3 +SPDXID: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 +PackageVersion: 1.24.2-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-urllib3:python3-urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3-urllib3:python3_urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_urllib3:python3-urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3_urllib3:python3_urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3-urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:python3:python3_urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3-urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:python3_urllib3:1.24.2-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/python3-urllib3@1.24.2-5.el8?arch=noarch&upstream=python-urllib3-1.24.2-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: readline + +PackageName: readline +SPDXID: SPDXRef-Package-rpm-readline-c5d42f4c234235ee +PackageVersion: 7.0-10.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:readline:readline:7.0-10.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:readline:7.0-10.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/readline@7.0-10.el8?arch=x86_64&upstream=readline-7.0-10.el8.src.rpm&distro=rhel-8.8 + +##### Package: redhat-release + +PackageName: redhat-release +SPDXID: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 +PackageVersion: 8.8-0.8.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat-release:redhat-release:8.8-0.8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat-release:redhat_release:8.8-0.8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat_release:redhat-release:8.8-0.8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat_release:redhat_release:8.8-0.8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:redhat-release:8.8-0.8.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:redhat_release:8.8-0.8.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/redhat-release@8.8-0.8.el8?arch=x86_64&upstream=redhat-release-8.8-0.8.el8.src.rpm&distro=rhel-8.8 + +##### Package: rootfiles + +PackageName: rootfiles +SPDXID: SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 +PackageVersion: 8.1-22.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rootfiles:rootfiles:8.1-22.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:rootfiles:8.1-22.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/rootfiles@8.1-22.el8?arch=noarch&upstream=rootfiles-8.1-22.el8.src.rpm&distro=rhel-8.8 + +##### Package: rpm + +PackageName: rpm +SPDXID: SPDXRef-Package-rpm-rpm-544fe79948a81a2a +PackageVersion: 4.14.3-26.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:rpm:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/rpm@4.14.3-26.el8?arch=x86_64&upstream=rpm-4.14.3-26.el8.src.rpm&distro=rhel-8.8 + +##### Package: rpm-build-libs + +PackageName: rpm-build-libs +SPDXID: SPDXRef-Package-rpm-rpm-build-libs-f8e876f78b1b0978 +PackageVersion: 4.14.3-26.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--and-LGPLv2--with-exceptions +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-build-libs:rpm-build-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-build-libs:rpm_build_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_build_libs:rpm-build-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_build_libs:rpm_build_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-build:rpm-build-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-build:rpm_build_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_build:rpm-build-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_build:rpm_build_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:rpm-build-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:rpm_build_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:rpm-build-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:rpm_build_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/rpm-build-libs@4.14.3-26.el8?arch=x86_64&upstream=rpm-4.14.3-26.el8.src.rpm&distro=rhel-8.8 + +##### Package: rpm-libs + +PackageName: rpm-libs +SPDXID: SPDXRef-Package-rpm-rpm-libs-d493d01c7fe718f9 +PackageVersion: 4.14.3-26.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2--and-LGPLv2--with-exceptions +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-libs:rpm-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm-libs:rpm_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_libs:rpm-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm_libs:rpm_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:rpm-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:rpm_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:rpm-libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:rpm:rpm_libs:4.14.3-26.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/rpm-libs@4.14.3-26.el8?arch=x86_64&upstream=rpm-4.14.3-26.el8.src.rpm&distro=rhel-8.8 + +##### Package: sed + +PackageName: sed +SPDXID: SPDXRef-Package-rpm-sed-fe812e7e94487ede +PackageVersion: 4.5-5.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:sed:4.5-5.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sed:sed:4.5-5.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/sed@4.5-5.el8?arch=x86_64&upstream=sed-4.5-5.el8.src.rpm&distro=rhel-8.8 + +##### Package: setup + +PackageName: setup +SPDXID: SPDXRef-Package-rpm-setup-f479bfae76b76a21 +PackageVersion: 2.12.2-9.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:setup:2.12.2-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:setup:setup:2.12.2-9.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/setup@2.12.2-9.el8?arch=noarch&upstream=setup-2.12.2-9.el8.src.rpm&distro=rhel-8.8 + +##### Package: shadow-utils + +PackageName: shadow-utils +SPDXID: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a +PackageVersion: 2:4.6-17.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD-and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:shadow-utils:shadow-utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:shadow-utils:shadow_utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:shadow_utils:shadow-utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:shadow_utils:shadow_utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:shadow-utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:shadow_utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:shadow:shadow-utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:shadow:shadow_utils:2\:4.6-17.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/shadow-utils@4.6-17.el8?arch=x86_64&epoch=2&upstream=shadow-utils-4.6-17.el8.src.rpm&distro=rhel-8.8 + +##### Package: sqlite-libs + +PackageName: sqlite-libs +SPDXID: SPDXRef-Package-rpm-sqlite-libs-3c14677b35b16020 +PackageVersion: 3.26.0-18.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sqlite-libs:sqlite-libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sqlite-libs:sqlite_libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sqlite_libs:sqlite-libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sqlite_libs:sqlite_libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:sqlite-libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:sqlite_libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sqlite:sqlite-libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:sqlite:sqlite_libs:3.26.0-18.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/sqlite-libs@3.26.0-18.el8_8?arch=x86_64&upstream=sqlite-3.26.0-18.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: subscription-manager + +PackageName: subscription-manager +SPDXID: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 +PackageVersion: 1.28.36-3.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:subscription-manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:subscription_manager:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/subscription-manager@1.28.36-3.el8_8?arch=x86_64&upstream=subscription-manager-1.28.36-3.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: subscription-manager-rhsm-certificates + +PackageName: subscription-manager-rhsm-certificates +SPDXID: SPDXRef-Package-rpm-subscription-manager-rhsm-certificates-7c18b7dbf0061f93 +PackageVersion: 1.28.36-3.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager-rhsm-certificates:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager-rhsm-certificates:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager_rhsm_certificates:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager_rhsm_certificates:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager-rhsm:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager-rhsm:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager_rhsm:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager_rhsm:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription-manager:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription_manager:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:subscription:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:subscription-manager-rhsm-certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:subscription_manager_rhsm_certificates:1.28.36-3.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/subscription-manager-rhsm-certificates@1.28.36-3.el8_8?arch=x86_64&upstream=subscription-manager-1.28.36-3.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: systemd + +PackageName: systemd +SPDXID: SPDXRef-Package-rpm-systemd-04d6184674b39275 +PackageVersion: 239-74.el8_8.5 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-MIT-and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:systemd:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:systemd:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/systemd@239-74.el8_8.5?arch=x86_64&upstream=systemd-239-74.el8_8.5.src.rpm&distro=rhel-8.8 + +##### Package: systemd-libs + +PackageName: systemd-libs +SPDXID: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 +PackageVersion: 239-74.el8_8.5 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-libs:systemd-libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-libs:systemd_libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_libs:systemd-libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_libs:systemd_libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:systemd-libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:systemd_libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:systemd-libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:systemd_libs:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/systemd-libs@239-74.el8_8.5?arch=x86_64&upstream=systemd-239-74.el8_8.5.src.rpm&distro=rhel-8.8 + +##### Package: systemd-pam + +PackageName: systemd-pam +SPDXID: SPDXRef-Package-rpm-systemd-pam-b5bc31dd627a1038 +PackageVersion: 239-74.el8_8.5 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-LGPLv2--and-MIT-and-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-pam:systemd-pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd-pam:systemd_pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_pam:systemd-pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd_pam:systemd_pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:systemd-pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:systemd:systemd_pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:systemd-pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:systemd_pam:239-74.el8_8.5:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/systemd-pam@239-74.el8_8.5?arch=x86_64&upstream=systemd-239-74.el8_8.5.src.rpm&distro=rhel-8.8 + +##### Package: tar + +PackageName: tar +SPDXID: SPDXRef-Package-rpm-tar-fb2eb771609ce85a +PackageVersion: 2:1.30-9.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:tar:2\:1.30-9.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tar:tar:2\:1.30-9.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/tar@1.30-9.el8?arch=x86_64&epoch=2&upstream=tar-1.30-9.el8.src.rpm&distro=rhel-8.8 + +##### Package: tpm2-tss + +PackageName: tpm2-tss +SPDXID: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec +PackageVersion: 2.3.2-4.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-BSD +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tpm2-tss:tpm2-tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tpm2-tss:tpm2_tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tpm2_tss:tpm2-tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tpm2_tss:tpm2_tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:tpm2-tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:tpm2_tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tpm2:tpm2-tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tpm2:tpm2_tss:2.3.2-4.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/tpm2-tss@2.3.2-4.el8?arch=x86_64&upstream=tpm2-tss-2.3.2-4.el8.src.rpm&distro=rhel-8.8 + +##### Package: tzdata + +PackageName: tzdata +SPDXID: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac +PackageVersion: 2023c-1.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:tzdata:2023c-1.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:tzdata:tzdata:2023c-1.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/tzdata@2023c-1.el8?arch=noarch&upstream=tzdata-2023c-1.el8.src.rpm&distro=rhel-8.8 + +##### Package: usermode + +PackageName: usermode +SPDXID: SPDXRef-Package-rpm-usermode-8ab8e85f37f04064 +PackageVersion: 1.113-2.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:usermode:usermode:1.113-2.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:usermode:1.113-2.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/usermode@1.113-2.el8?arch=x86_64&upstream=usermode-1.113-2.el8.src.rpm&distro=rhel-8.8 + +##### Package: util-linux + +PackageName: util-linux +SPDXID: SPDXRef-Package-rpm-util-linux-bf827b267d474173 +PackageVersion: 2.32.1-42.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-863d3e39506e6ebcf82f78e79964ef78390b1d9acd2c6c59993a8e6ce7d124eb +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util-linux:util-linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util-linux:util_linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util_linux:util-linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util_linux:util_linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:util-linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:util_linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:util-linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:util:util_linux:2.32.1-42.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/util-linux@2.32.1-42.el8_8?arch=x86_64&upstream=util-linux-2.32.1-42.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: vim-minimal + +PackageName: vim-minimal +SPDXID: SPDXRef-Package-rpm-vim-minimal-b0b67d2d41e3e7c7 +PackageVersion: 2:8.0.1763-19.el8_6.4 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Vim-and-MIT +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:vim-minimal:vim-minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:vim-minimal:vim_minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:vim_minimal:vim-minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:vim_minimal:vim_minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:vim-minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:vim_minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:vim:vim-minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:vim:vim_minimal:2\:8.0.1763-19.el8_6.4:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/vim-minimal@8.0.1763-19.el8_6.4?arch=x86_64&epoch=2&upstream=vim-8.0.1763-19.el8_6.4.src.rpm&distro=rhel-8.8 + +##### Package: virt-what + +PackageName: virt-what +SPDXID: SPDXRef-Package-rpm-virt-what-3a5a55ee259fe7fc +PackageVersion: 1.25-3.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:virt-what:virt-what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:virt-what:virt_what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:virt_what:virt-what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:virt_what:virt_what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:virt-what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:virt_what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:virt:virt-what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:virt:virt_what:1.25-3.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/virt-what@1.25-3.el8?arch=x86_64&upstream=virt-what-1.25-3.el8.src.rpm&distro=rhel-8.8 + +##### Package: which + +PackageName: which +SPDXID: SPDXRef-Package-rpm-which-2a569468adbfddc1 +PackageVersion: 2.21-18.el8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv3 +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:which:2.21-18.el8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:which:which:2.21-18.el8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/which@2.21-18.el8?arch=x86_64&upstream=which-2.21-18.el8.src.rpm&distro=rhel-8.8 + +##### Package: xz-libs + +PackageName: xz-libs +SPDXID: SPDXRef-Package-rpm-xz-libs-284770d9f31d73af +PackageVersion: 5.2.4-4.el8_6 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-Public-Domain +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xz-libs:xz-libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xz-libs:xz_libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xz_libs:xz-libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xz_libs:xz_libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:xz-libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:xz_libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xz:xz-libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:xz:xz_libs:5.2.4-4.el8_6:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/xz-libs@5.2.4-4.el8_6?arch=x86_64&upstream=xz-5.2.4-4.el8_6.src.rpm&distro=rhel-8.8 + +##### Package: yum + +PackageName: yum +SPDXID: SPDXRef-Package-rpm-yum-b9a4eb0f7c61e467 +PackageVersion: 4.7.0-16.el8_8 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-GPLv2- +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:yum:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:yum:yum:4.7.0-16.el8_8:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/yum@4.7.0-16.el8_8?arch=noarch&upstream=dnf-4.7.0-16.el8_8.src.rpm&distro=rhel-8.8 + +##### Package: zlib + +PackageName: zlib +SPDXID: SPDXRef-Package-rpm-zlib-c03c984064097e8d +PackageVersion: 1.2.11-21.el8_7 +PackageSupplier: Organization: Red Hat, Inc. +PackageOriginator: Organization: Red Hat, Inc. +PackageDownloadLocation: NOASSERTION +FilesAnalyzed: false +PackageSourceInfo: acquired package info from RPM DB: /var/lib/rpm/Packages +PackageLicenseConcluded: NOASSERTION +PackageLicenseDeclared: LicenseRef-zlib-and-Boost +PackageCopyrightText: NOASSERTION +ExternalRef: SECURITY cpe23Type cpe:2.3:a:redhat:zlib:1.2.11-21.el8_7:*:*:*:*:*:*:* +ExternalRef: SECURITY cpe23Type cpe:2.3:a:zlib:zlib:1.2.11-21.el8_7:*:*:*:*:*:*:* +ExternalRef: PACKAGE-MANAGER purl pkg:rpm/rhel/zlib@1.2.11-21.el8_7?arch=x86_64&upstream=zlib-1.2.11-21.el8_7.src.rpm&distro=rhel-8.8 + +##### Other Licenses + +LicenseID: LicenseRef--GPLv2--or-AFL--and-GPLv2- +ExtractedText: (GPLv2+ or AFL) and GPLv2+ + +LicenseID: LicenseRef--GPLv2--or-LGPLv3---and-GPLv3- +ExtractedText: (GPLv2+ or LGPLv3+) and GPLv3+ + +LicenseID: LicenseRef--LGPLv3--or-GPLv2---and-GPLv3- +ExtractedText: (LGPLv3+ or GPLv2+) and GPLv3+ + +LicenseID: LicenseRef-0a20635703258c08665cede2a4166b90795ad1cb30dd85cfde1598463d68ebf5 +ExtractedText: GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD + +LicenseID: LicenseRef-12fb2ee089bfd860136a5dc94e5a1990ee9cc0e49396da51c2a58d0552aa370b +ExtractedText: https://projects.eclipse.org/license/epl-2.0, https://projects.eclipse.org/license/secondary-gpl-2.0-cp + +LicenseID: LicenseRef-2cecbaa02b06308d4d3db56ae890f9d8fa8289de0557ac98056ab86246326f86 +ExtractedText: MIT and Python and ASL 2.0 and BSD and ISC and LGPLv2 and MPLv2.0 and (ASL 2.0 or BSD) + +LicenseID: LicenseRef-3ec43172950c15b1a1e5e626ac065b88ced800063bd77f89878f87073df8a5ae +ExtractedText: GPLv3+ and GPLv3+ with exceptions and GPLv2+ and GPLv2+ with exceptions and GPL+ and LGPLv2+ and LGPLv3+ and BSD and Public Domain and GFDL + +LicenseID: LicenseRef-61844448b5d7c01d6d8b1e440ffbfaddcb562b77af86d4b0eda5607a169affb8 +ExtractedText: http://www.eclipse.org/legal/epl-v20.html, http://www.eclipse.org/org/documents/edl-v10.php + +LicenseID: LicenseRef-80a0f05e17641589a96d3170725af37b98a6fe1cfaabf90db4f4259ec0914fdf +ExtractedText: (FTL or GPLv2+) and BSD and MIT and Public Domain and zlib with acknowledgement + +LicenseID: LicenseRef-84987e62fcaab3858aed0bafe7f4e32a774f0dc234322f0e1200e4b7a10780cc +ExtractedText: http://opensource.org/licenses/apache2.0.php; link="http://www.apache.org/licenses/LICENSE-2.0"; description="Apache License, Version 2.0" + +LicenseID: LicenseRef-863d3e39506e6ebcf82f78e79964ef78390b1d9acd2c6c59993a8e6ce7d124eb +ExtractedText: GPLv2 and GPLv2+ and LGPLv2+ and BSD with advertising and Public Domain + +LicenseID: LicenseRef-AFL-and-GPLv2- +ExtractedText: AFL and GPLv2+ + +LicenseID: LicenseRef-ASL-2.0 +ExtractedText: ASL 2.0 + +LicenseID: LicenseRef-Apache-2.0 +ExtractedText: Apache 2.0 + +LicenseID: LicenseRef-BSD +ExtractedText: BSD + +LicenseID: LicenseRef-BSD-3-Clause-link-https---asm.ow2.io-LICENSE.txt +ExtractedText: BSD-3-Clause;link=https://asm.ow2.io/LICENSE.txt + +LicenseID: LicenseRef-BSD-and-GPLv2 +ExtractedText: BSD and GPLv2 + +LicenseID: LicenseRef-BSD-and-GPLv2- +ExtractedText: BSD and GPLv2+ + +LicenseID: LicenseRef-BSD-and-LGPLv2- +ExtractedText: BSD and LGPLv2+ + +LicenseID: LicenseRef-BSD-and-LGPLv2-and-Sleepycat +ExtractedText: BSD and LGPLv2 and Sleepycat + +LicenseID: LicenseRef-BSD-and-Python-and-Unicode +ExtractedText: BSD and Python and Unicode + +LicenseID: LicenseRef-BSD-like +ExtractedText: BSD-like + +LicenseID: LicenseRef-BSD-or-GPL- +ExtractedText: BSD or GPL+ + +LicenseID: LicenseRef-BSD-or-GPLv2 +ExtractedText: BSD or GPLv2 + +LicenseID: LicenseRef-BSD-or-GPLv2- +ExtractedText: BSD or GPLv2+ + +LicenseID: LicenseRef-BSD-with-advertising +ExtractedText: BSD with advertising + +LicenseID: LicenseRef-Bitstream-Vera-and-Public-Domain +ExtractedText: Bitstream Vera and Public Domain + +LicenseID: LicenseRef-Expat--MIT-X11- +ExtractedText: Expat (MIT/X11) + +LicenseID: LicenseRef-GNU-LGPL +ExtractedText: GNU LGPL + +LicenseID: LicenseRef-GPLv2 +ExtractedText: GPLv2 + +LicenseID: LicenseRef-GPLv2- +ExtractedText: GPLv2+ + +LicenseID: LicenseRef-GPLv2---LGPLv2---MIT +ExtractedText: GPLv2+, LGPLv2+, MIT + +LicenseID: LicenseRef-GPLv2--and-BSD +ExtractedText: GPLv2+ and BSD + +LicenseID: LicenseRef-GPLv2--and-LGPLv2- +ExtractedText: GPLv2+ and LGPLv2+ + +LicenseID: LicenseRef-GPLv2--and-LGPLv2--with-exceptions +ExtractedText: GPLv2+ and LGPLv2+ with exceptions + +LicenseID: LicenseRef-GPLv2--or-LGPLv3- +ExtractedText: GPLv2+ or LGPLv3+ + +LicenseID: LicenseRef-GPLv2-and-Artistic-2.0-and-ISC +ExtractedText: GPLv2 and Artistic 2.0 and ISC + +LicenseID: LicenseRef-GPLv2-or-BSD +ExtractedText: GPLv2 or BSD + +LicenseID: LicenseRef-GPLv3 +ExtractedText: GPLv3 + +LicenseID: LicenseRef-GPLv3- +ExtractedText: GPLv3+ + +LicenseID: LicenseRef-GPLv3--and-GFDL +ExtractedText: GPLv3+ and GFDL + +LicenseID: LicenseRef-GPLv3--and-GPLv2--and-LGPLv2--and-BSD +ExtractedText: GPLv3+ and GPLv2+ and LGPLv2+ and BSD + +LicenseID: LicenseRef-GPLv3--and-LGPLv2- +ExtractedText: GPLv3+ and LGPLv2+ + +LicenseID: LicenseRef-LGPL +ExtractedText: LGPL + +LicenseID: LicenseRef-LGPL2.1---the-library---GPL2---tests-and-examples- +ExtractedText: LGPL2.1+ (the library), GPL2+ (tests and examples) + +LicenseID: LicenseRef-LGPLv2 +ExtractedText: LGPLv2 + +LicenseID: LicenseRef-LGPLv2- +ExtractedText: LGPLv2+ + +LicenseID: LicenseRef-LGPLv2--and-BSD-and-Public-Domain +ExtractedText: LGPLv2+ and BSD and Public Domain + +LicenseID: LicenseRef-LGPLv2--and-GPLv3- +ExtractedText: LGPLv2+ and GPLv3+ + +LicenseID: LicenseRef-LGPLv2--and-MIT +ExtractedText: LGPLv2+ and MIT + +LicenseID: LicenseRef-LGPLv2--and-MIT-and-GPLv2- +ExtractedText: LGPLv2+ and MIT and GPLv2+ + +LicenseID: LicenseRef-LGPLv3--and-GPLv3--and-GFDL +ExtractedText: LGPLv3+ and GPLv3+ and GFDL + +LicenseID: LicenseRef-LGPLv3--or-GPLv2- +ExtractedText: LGPLv3+ or GPLv2+ + +LicenseID: LicenseRef-MIT-License +ExtractedText: MIT License + +LicenseID: LicenseRef-MIT-and-Public-Domain-and-UCD +ExtractedText: MIT and Public Domain and UCD + +LicenseID: LicenseRef-MIT-and-Python +ExtractedText: MIT and Python + +LicenseID: LicenseRef-MPLv2.0 +ExtractedText: MPLv2.0 + +LicenseID: LicenseRef-OpenLDAP +ExtractedText: OpenLDAP + +LicenseID: LicenseRef-OpenSSL-and-ASL-2.0 +ExtractedText: OpenSSL and ASL 2.0 + +LicenseID: LicenseRef-Public-Domain +ExtractedText: Public Domain + +LicenseID: LicenseRef-Python +ExtractedText: Python + +LicenseID: LicenseRef-SISSL-and-BSD +ExtractedText: SISSL and BSD + +LicenseID: LicenseRef-Simplified-BSD +ExtractedText: Simplified BSD + +LicenseID: LicenseRef-UNKNOWN +ExtractedText: UNKNOWN + +LicenseID: LicenseRef-Vim-and-MIT +ExtractedText: Vim and MIT + +LicenseID: LicenseRef-b522309a0902b9c2edf0e43791a497ee72dc820dd9db8cbaf3839d3421e541cc +ExtractedText: Apache-2.0; link="https://www.apache.org/licenses/LICENSE-2.0"; description="Apache License, Version 2.0" + +LicenseID: LicenseRef-b8a5b49031798281d934c96178d7e9b482b25662154407659a04874cda1893b0 +ExtractedText: Apache-2.0;description="This program and the accompanying materials are made available under the terms of the Apache License, Version 2.0.";link="https://opensource.org/licenses/Apache-2.0" + +LicenseID: LicenseRef-cedbc2fa4301332b3d3569627696d986a63b3f3a293a2759a611c7c3deebd428 +ExtractedText: LGPLv2+ and LGPLv2+ with exceptions and GPLv2+ and GPLv2+ with exceptions and BSD and Inner-Net and ISC and Public Domain and GFDL + +LicenseID: LicenseRef-e361ddcfb3f97c3adb1f3b354c6e025142dd9103569c956cf43a08d9908b2d8c +ExtractedText: Apache-2.0; link="http://www.apache.org/licenses/LICENSE-2.0"; description="Apache License, Version 2.0" + +LicenseID: LicenseRef-ff3f3ce02e5f26404bc1f7d19fa94734e29359653c20b05e9334fbf683687a76 +ExtractedText: Eclipse Public License; url=https://www.eclipse.org/legal/epl-2.0/ + +LicenseID: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.html +ExtractedText: http://www.apache.org/licenses/LICENSE-2.0.html + +LicenseID: LicenseRef-http---www.apache.org-licenses-LICENSE-2.0.txt +ExtractedText: http://www.apache.org/licenses/LICENSE-2.0.txt + +LicenseID: LicenseRef-https---glassfish.java.net-public-CDDL-GPL-1-1.html +ExtractedText: https://glassfish.java.net/public/CDDL+GPL_1_1.html + +LicenseID: LicenseRef-https---www.apache.org-licenses-LICENSE-2.0.txt +ExtractedText: https://www.apache.org/licenses/LICENSE-2.0.txt + +LicenseID: LicenseRef-new-BSD-License +ExtractedText: new BSD License + +LicenseID: LicenseRef-pubkey +ExtractedText: pubkey + +LicenseID: LicenseRef-zlib-and-Boost +ExtractedText: zlib and Boost + +##### Relationships + +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility-00312ca50eae702c OTHER SPDXRef-File-...com.ibm.ws.webserver.plugin.utility-1.0.81.jar-0616e8863c89967a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.cdi.4.0-00400792c1da6a4a OTHER SPDXRef-File-...io.openliberty.jakarta.cdi.4.0-1.0.81.jar-7b3d8afece7a00e6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.defaultresource-007af3d81d7f48a8 OTHER SPDXRef-File-...com.ibm.ws.javaee.platform.defaultresource-1.0.81.jar-9826e4fcf3d4d00a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.persistence-3.1-012f8ad4fa8efe92 OTHER SPDXRef-File-...io.openliberty.org.eclipse.persistence-3.1-1.0.81.jar-9b046c9928656fc3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...python3-dmidecode-AUTHORS.upstream-1b5490199a1471c4 +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...licenses-python3-dmidecode-AUTHORS-3fd9e95e70af8985 +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...python-dmidecode-3.12.2-py3.6.egg-info-48a8a1d3752813a7 +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-usr-share-python-dmidecode-pymap.xml-74a2dce3084c0d2e +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...python3.6-site-packages-dmidecode.py-758cc19dd423d505 +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...--pycache---dmidecode.cpython-36.pyc-8e30921ebc349e05 +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...licenses-python3-dmidecode-LICENSE-9059e0c8f5555f2b +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 OTHER SPDXRef-Package-python-python-dmidecode-9f1510382966a14d +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...dmidecodemod.cpython-36m-x86-64-linux-gnu.so-c2dae78ddcd94469 +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 CONTAINS SPDXRef-File-...dmidecode.cpython-36.opt-1.pyc-d36b92a48b7b5e9e +Relationship: SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.log-01f1ee8c9ddfe34c OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.log-1.2.81.jar-d2a74b7d8fb90df9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-PyGObject-026a55989515496e OTHER SPDXRef-File-...pygobject-3.28.3-py3.6.egg-info-1d5f71a5d0b43e6f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...share-licenses-python3-pysocks-LICENSE-0ae6c6deb9ba3195 +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...--pycache---socks.cpython-36.pyc-119ae5c8ff9312b4 +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...SOURCES.txt-629f04842ad8f7d9 +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...top-level.txt-685ddbd4b437b8ed +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...sockshandler.cpython-36.opt-1.pyc-7e3b89230e54d32a +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...--pycache---socks.cpython-36.opt-1.pyc-82d71b534c71565b +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...PySocks-1.6.8-py3.6.egg-info-PKG-INFO-8b161028d1df54f7 +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...sockshandler.cpython-36.pyc-95006809f3b97586 +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 OTHER SPDXRef-Package-python-PySocks-9a572bb052f6e9e4 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...site-packages-sockshandler.py-cd3fe14814ee7495 +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...lib-python3.6-site-packages-socks.py-e81bd9ddf844cff3 +Relationship: SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 CONTAINS SPDXRef-File-...dependency-links.txt-f0fb793f7323e763 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-etc-profile.d-colorgrep.sh-17e0e4a63748c690 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-usr-libexec-grepconf.sh-39ecc07b25165ca0 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-usr-share-licenses-grep-COPYING-92b86ff1dbaf0377 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-usr-bin-grep-974ba8f294bb0dde +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-usr-bin-egrep-aed92999cfb17304 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-etc-GREP-COLORS-bacb11fa373e1fc3 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-usr-bin-fgrep-cc0ea280a1dd78f3 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e CONTAINS SPDXRef-File-etc-profile.d-colorgrep.csh-d9db08ce5c03e386 +Relationship: SPDXRef-Package-rpm-grep-0328ffc80d53f10e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-serverSchemagen-03f4a941773d92c5 OTHER SPDXRef-File-...wlp-bin-tools-ws-serverSchemagen.jar-7abceac531a8cf7d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-bash-11695f5bbf42dad4 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-alias-301ca1facbefe794 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-etc-skel-.bash-logout-3e12cf6d425eca40 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-bg-4e8cfe258ce5cf3a +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-fc-52da7ab3b20e783d +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-unalias-6be4cb11aed17376 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-type-721ea5dac09f0b24 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-umask-7e3496199b83518e +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-etc-skel-.bashrc-88051a122bc4794a +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-getopts-9d12602cbc4e5861 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-bashbug-64-a8059e84dae3f45c +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-hash-af4d693097f83e4d +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-jobs-c644dbad088b725d +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-read-da5bdaeee82a7e6c +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-share-licenses-bash-COPYING-de53e201f8f9f9ca +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-ulimit-e7b0b129462e3189 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-fg-e7b1b69f1775fc04 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-etc-skel-.bash-profile-e9bf8b015bb2b301 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-wait-f3419a226cc821f7 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-command-f50418d637798502 +Relationship: SPDXRef-Package-rpm-bash-044e31d699b18d1a CONTAINS SPDXRef-File-usr-bin-cd-f6ed4278910f843d +Relationship: SPDXRef-Package-java-archive-guide-getting-started-0470a2ffe7a4f194 OTHER SPDXRef-File-...apps-guide-getting-started.war-9c540d94dd610a8e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.threading-04a82de306980599 OTHER SPDXRef-File-...lib-com.ibm.ws.threading-1.1.81.jar-a288d22610fe3a1a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.instrument.check-04ae0a0c5ffc5c19 OTHER SPDXRef-File-opt-ol-wlp-bin-tools-ws-javaagent.jar-cc78d3904194e910 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.cdi.interfaces.jakarta-04ae30f55385e266 OTHER SPDXRef-File-...com.ibm.ws.cdi.interfaces.jakarta-1.0.81.jar-42b88f93823e8034 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-slices.target-005bfe32fadcc17f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-portables.conf-024bf2095af272fe +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-cat-035bdf353a8b313f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-systemd-system.conf-03bfb375b2b507e7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-ask-password-console.service-049444b884732ec2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-timers.target-055ce4e14c6e4367 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-factory-etc-pam.d-system-auth-0625c804045ec446 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-update-utmp.service-071285e817f600ef +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-hostnamed.service-0735b674bd619a5b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-licenses-systemd-LICENSE.LGPL2.1-0989646e069c1a21 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-systemd.conf-09a0e9e4bfbb7b73 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-path-09f7964127cbe019 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-user-runtime-dir-.service-0b916bcf41ef8191 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-fsck-.service-0c635f2635f73fc4 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-cgtop-0d4daeead478177a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-systemd-coredump.conf-0fa0d53ca5d64690 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-systemd-pstore.conf-11250dcdaa00a5e8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-delta-113014ebac05d0c7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-timedatectl-11a6a3fb9b1b851d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-reply-password-11f896318f5cea88 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-pstore-121a6962926ef182 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-bluetooth.target-125b99d02d3745b3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.catalog-13b371a7879c3e19 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-systemd-language-fallback-map-1417f84d816493f3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemctl-1564c2ea89ec1b49 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-halt.service-15e0d2919b84419d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-systemd-journald.conf-161587aead4f30d3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-inittab-16d6c0f35c6b085a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-run-18248c5cba8cc091 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...user-graphical-session-pre.target-1839e0124df89ef4 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.hostname1.policy-18972c9da55b6ace +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-delta-18ae2df6f3f03b0e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-detect-virt-19d730827aa04c98 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-dev-mqueue.mount-1a09a51638e9f9d2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-busctl-1c42670385f918db +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-basic.target-1c466cc7298294b1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-portabled-1c7fd3eaf244a8d2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-nss-lookup.target-1cd5a5982b246494 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-machine-id-1d2eeb6c35de9827 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-analyze-1e19e08a1c852477 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-factory-etc-nsswitch.conf-1f4783fe4e3bd4a7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-local-fs-pre.target-1f5aaa8505a1f637 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--coredumpctl-1fe9bfff00e83111 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-update-done-20266d67288202fa +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-shutdown.target-202f787593e4696f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-cgls-20896b16555f270d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-sysusers.d-systemd.conf-20b91d58dba8dc01 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-sysctl.d-50-coredump.conf-20bd96ed271d11f3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.de.catalog-20c81276c974f91a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...user-systemd-tmpfiles-setup.service-2217457b5fcc2c41 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-sysctl.conf-22ac3ca910f56d15 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-journald.socket-23d09b3d8ddf9790 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-sysusers.service-245c72c831cfc04c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-poweroff.target-2463ec591887664c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-system-update-pre.target-24c9d287a8779847 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-user-.slice.d-10-defaults.conf-24e4fd7613ff4e56 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.resolve1.service-2539154e0047b90a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-detect-virt-2698434d7ff5f438 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-user-graphical-session.target-270ccbdcfee3d637 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-sockets.target-278c148e0f6cc45e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.portable1.service-2941264291f6d9d3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-legacy.conf-297a27226b56ddf1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...bash-completion-completions-resolvectl-29f111fb596d0c0f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-network-online.target-2a5d2d06acee7994 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-rescue.service-2c92c65e558a29f9 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...zsh-site-functions--sd-outputmodes-2d9b397db7a05ec3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-ask-password-2e04e801f28d2eb8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-catalog-systemd.zh-TW.catalog-304bf1518c99482a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-pstore.service-3206f030e860ce2d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...zsh-site-functions--sd-unit-files-32c43a8a50b01764 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...actions-org.freedesktop.locale1.policy-3364b261c3333181 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-system-update-cleanup.service-337531757dadeb29 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-portablectl-337576440289ca4d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-emergency.target-3390623168a2def0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-initrd.target-33f90c8bf43f6b18 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--localectl-35465143acd5d29d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-exit.target-361dc31dbc4b5c4e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.systemd1.service-37c2b9f96351a64c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-exit.target-3a2867cf74c58d24 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-serial-getty-.service-3a512a0e654153b6 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-firstboot-3a52f1a05f7e3000 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-licenses-systemd-LICENSE.GPL2-3ae2b4f3f4cf3550 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...portable-profile-trusted-service.conf-3b0ea2e50a1ca85d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-system-update.target-3c30d5a02abd27d7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-tmp.mount-3dbe5b92e7a72e39 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-remote-fs.target-3e5820ad4e7eef34 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-systemd-user-runtime-dir-3f1784f78cb5deff +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-remote-fs-pre.target-409a9a362d25411a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-kexec.service-40b997c61a20afb1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-rc.d-init.d-README-40c859900b4b760f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-sockets.target-41ba3a17121c4500 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-notify-41e3d86a17e84805 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-initrd-parse-etc.service-4382aa0cc5546971 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-halt-local.service-4515cf557dea0130 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-time-sync.target-45b9e33951a5efb8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-rescue.target-468d60086b7fa3fa +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...proc-sys-fs-binfmt-misc.automount-484478b9866be9b8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-socket-activate-49bcce7809a1e948 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--timedatectl-4a5db7a10ba435fe +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-kexec.target-4ceaf2602dcdef43 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-socket-proxyd-4df39a58f37a0f48 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-printer.target-4e69481fa9bce474 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-systemd-kbd-model-map-4f968b8e5789c421 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...bash-completion-completions-journalctl-501b603eec98fe3d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-initrd-switch-root.service-513b5afb5d9a4c07 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-loginctl-51e12304b5f021cc +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-zsh-site-functions--busctl-52976729c76be3b7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-final.target-5365441a966abb7a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-boot-complete.target-561f48bc6de4f911 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-sys-kernel-debug.mount-583704cf1c33fa6d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-ac-power-58eb277540db9eb8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...zsh-site-functions--systemd-inhibit-590d5a72b3eb38f2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-ask-password-wall.path-5930683aede7e63e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-shutdown-595c6f1d4f134756 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.portable1.conf-5b0c0c1569d165a5 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-systemd-resolved.conf-5c642b3598ef12ea +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-journal-flush.service-5dbc459ffb27b6bb +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system.d-org.freedesktop.systemd1.conf-5de99c49af05653e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.portable1.policy-5ee143c0081ca3b2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-tmpfiles.d-systemd-nologin.conf-5f8327952cae6ec1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-ask-password-console.path-609852362308432d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-initctl.socket-60faa7e37e0aa090 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-initrd-switch-root.target-6108121cf50b4acb +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-paths.target-61c02f8148a062db +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-sys-kernel-config.mount-61df0f9630a0292b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-getty-.service-61ef701d61a94330 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-tty-ask-password-agent-64129f155943b17b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...bash-completion-completions-loginctl-64e75cbcc451ab3f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...portable-profile-default-service.conf-6630e6ce6d02b6a6 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-syslog.socket-668a7f9e5fa70411 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-locale.conf-6787ccab017a9caf +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system.d-org.freedesktop.locale1.conf-680ee49a3e29931b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-journalctl-693a41101780608c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...zsh-site-functions--systemd-delta-69980daaf61481dc +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-network.target-69cf0bc9caa986b0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...zsh-site-functions--systemd-analyze-6a5812a63b1a0a5c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-cat-6c596df986f8125c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-multi-user.target-6c7ad3cb5669ac6b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--sd-machines-6d1687fa2784b026 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-veritysetup-6db62e83c52fc36e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-console-getty.service-6dcdffb53674b29d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-user-sessions-6de18a6998d14e55 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-update-utmp-6e50e04a0d7551e0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-getty-pre.target-6e6c618118da02c4 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.hostname1.conf-6f13f0c0913fd58d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-localed.service-6fc00670696a5c30 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-zsh-site-functions--loginctl-7180243402407104 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-resolve-724b9b514255bf40 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-sound.target-745888844c7c3e2a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-sys-fs-fuse-connections.mount-7505d55c6f6d1ab3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...-sd-hosts-or-user-at-host-76a93bdf7f16f97e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-hostnamectl-76e93c0a34e3aa52 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--systemd-run-77c9269387d4b1eb +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-portabled.service-791118e71c2593e7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-printer.target-79e6a01fa957f98e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-dev-hugepages.mount-7bc027ef1b7cf975 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-machine-id-setup-7be90e8a26725f1d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-rc-local.service-7d3ea7e050e43a7a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-timedated.service-7edfd6b7035e6f27 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.pl.catalog-807761e2427c14be +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-analyze-81277f2b418a456d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-localed-8266062d67f7f6a3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-sysctl.service-82dcc4fc1402a4a1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-halt.target-8304f1e6ede8381b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...bash-completion-completions-busctl-8374e71bd5cc9523 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-coredumpctl-83a6a5615297f00b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-preset-90-systemd.preset-83d366511402e499 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-initrd-fs.target-83e3d799fcd7db17 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-var.conf-84d0b993eaf35a85 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-firstboot.service-84f4cf2fb4d518d1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-journal-nocow.conf-870a034d7bea6ba7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-paths.target-87d486c87b003283 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.systemd1.policy-88b4154b912d2af1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-update-utmp-runlevel.service-88c0719d4ccf5f9c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-graphical.target-8a3bf1a57ba4e680 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...30-systemd-environment-d-generator-8ae9cd39f6749863 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...actions-org.freedesktop.login1.policy-8bb77ef3dae1e211 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-sysusers-8e24bf0cb49b3dd1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-environment-8ef58ba6d912c968 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-user.slice-900d7cce6da082a5 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-tmpfiles-clean.timer-906b6ba2e3e93165 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-home.conf-9120017858eab67c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-inhibit-918537602c0f894b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-pkgconfig-udev.pc-91d223df393d8b84 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-rpcbind.target-92465d891dc8e52e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...user-systemd-tmpfiles-clean.service-9259040d53a74882 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-timers.target-929eaec84ef987fa +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-tmpfiles-setup.service-92b0afc24470b8a7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-hostnamed-94560331c94e978b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...bash-completion-completions-systemctl-95733c641f37ac09 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-initrd-root-fs.target-970c43a7f0a40c1c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-initrd-cleanup.service-98c955036b369ed3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-timedated-99e00bf006968659 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-ldconfig.service-9a321e96d1e79282 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-machine-id-commit.service-9a5985c5479b5d30 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-volatile-root.service-9ae9648f0538d20c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-sound.target-9c2d172e166fd24e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-user-preset-90-systemd.preset-9cf3cd66b745bd9c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-volatile-root-9d50d70fb5cd30c0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-exit.service-9fd00c0c6d21904a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-localectl-a0650745365c0754 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-systemd-logind.conf-a0a588c35da35e14 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-debug-generator-a1e9f69a948a64d8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-network-pre.target-a33179f52a344e86 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-fsck-root.service-a402eb0c4487d10a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-shutdown.target-a4831f8091db5952 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-proc-sys-fs-binfmt-misc.mount-a60a432c5131e9b1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-journald-a646406f8732f88b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-dnf-protected.d-systemd.conf-a64e2b295f8b9eb7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-x11.conf-a67d2ee36373dd8a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system.d-org.freedesktop.login1.conf-ab9b545e98b8bc17 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-sigpwr.target-ac065cdb6da61d17 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-etc.conf-ac279c0824d88bfe +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-X11-xorg.conf.d-00-keyboard.conf-acfb6e6b7ef715d7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-poweroff.service-b0d6718250735408 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-getty.target-b0e9ddb6e54e859e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-logind.service-b22b7ff70d84d9b2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-cgtop-b2e5c23479c8134c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...user-systemd-tmpfiles-clean.timer-b36e1aa87fd756a9 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-journald-audit.socket-b42c2c7ed70850be +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-rpm-macros.d-macros.systemd-b45ed309582c2b47 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-cgroups-agent-b46f5ca2afb4fbc7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-tmp.conf-b8d54264461a4bcb +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-resolvectl-b9af0cf3c8f456c8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-logind-bb8a3d35349654a4 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-resolv.conf-bbaca72b6adb88a2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.login1.service-bbc32b35800a4d14 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-default.target-bce4071f29b318af +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-user-sessions.service-bec5aa14f768ead9 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-smartcard.target-bf699119dc241dae +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-run-bf94f69bb0f0b820 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.timedate1.conf-c1ea4c3636b6cd23 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-local-fs.target-c2cfe732ff89eafe +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.be.catalog-c2da0344bfb4fb6a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-timedatectl-c32c5923788dfd00 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-smartcard.target-c4364605ca95b004 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-dissect-c531adeb1335c2b0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...portable-profile-strict-service.conf-c5dfc7118f750df7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-initctl.service-c6506a31bb2e0e06 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.timedate1.service-c830a14a90b26e6d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-basic.target-c85b858817fde218 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-journald.service-c8b5732aee857ed1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-journal-catalog-update.service-c90c65181d778a80 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-escape-c9250b19bbcf5241 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.it.catalog-c99c9e2c6be33cd9 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...zsh-site-functions--systemd-tmpfiles-cab0381335a345b5 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--journalctl-cb1da11ec6c255b0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-ccc612058f7dbbe6 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-swap.target-ccdd13025b5d8b37 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.timedate1.policy-cd42d58d51c3dd8f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-coredump-.service-cde805e24a050be7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.bg.catalog-ce37c76d8fa4c0c5 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-UTC-cef2b18440be2b49 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-mount-cf3f06c5ae18643a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-portablectl-d198d31de1533d29 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--systemctl-d20036f360edbe0f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-sysinit.target-d42e0600a897e31e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-cgls-d44480593fc481d9 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-initrd-root-device.target-d708f88d5d949138 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-update-generator-d8a74b60cb716fb2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-sysctl.d-50-default.conf-d8b22cbbdbb48f5f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.locale1.service-d8d2ae8c3e23ee97 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-container-getty-.service-d925c64777a431d8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...profile-nonetwork-service.conf-d95f5ed0f4e6e091 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-user-bluetooth.target-d9639f4a8ec416c8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-hostnamectl-d9a48ced8beff4b8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-sysctl.d-50-pid-max.conf-da2cc44ea36b37a5 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-sulogin-shell-dac2afda3a77719f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-purge-nobody-user-db3319c378aeb53b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-reboot.service-dc43b2cdfe0e444d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-tmpfiles-dcb7cc973a77c416 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system.d-org.freedesktop.resolve1.conf-dd279202ea5207f4 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-fsck-dd5ac7f2a16804ec +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-initctl-ddd60c0b4f53caf2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-crypttab-dee8380495a4cf86 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.ru.catalog-dfda49c9b71bcd0d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-rc.d-rc.local-e1bf31ef47fc3222 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-sysusers.d-basic.conf-e236b2c4c29aba7d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-debug-shell.service-e27bfa36ee3248ef +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...share-zsh-site-functions--hostnamectl-e2fbfc56d0f42fea +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-var-lib-systemd-catalog-database-e34c9b8d121e62a0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-user-.service-e425e2639d305773 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-binfmt-e52baafee9060a9c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-resolved-e6312e0f0ea49da8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-binfmt.service-e68d70ebd1832f86 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-catalog-systemd.zh-CN.catalog-e6ea2ec9ebef7b33 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-journald-dev-log.socket-e7f1ff713433aa32 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-systemd-coredump.socket-e8100dfb73a3882b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-catalog-systemd.pt-BR.catalog-e8623a2f4ddd644b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...bash-completion-completions-localectl-e965a05b8dc814a6 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-update-done.service-e9d1cbac0396836f +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-systemd-path-ea914ee9fbfbd872 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-user-systemd-exit.service-eb03fcd257955956 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-bin-systemd-stdio-bridge-eb33ca6b6cd1a4b1 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.resolve1.policy-ebc714ea1d4353d2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-getty-generator-ec5ce24802a7909c +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-system-emergency.service-eca72e93e4c5c9b7 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-sysv-generator-ed0ba623929e1a46 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-veritysetup-generator-eeb848c8fd95c950 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-resolved.service-eff9aff1a3cdfec3 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...catalog-systemd.be-latin.catalog-f0781f26a8905154 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-fstab-generator-f0e772ae6bb276c8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-umount.target-f176471009588c6a +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-pam.d-systemd-user-f1eef627e5d1fcc8 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...org.freedesktop.hostname1.service-f21d3483a068a1e9 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-rc-local-generator-f279cc11c0d38f84 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...system-systemd-tmpfiles-clean.service-f2a885a466af9331 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-export-f2f0e8103355c4b2 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...X11-xinit-xinitrc.d-50-systemd-user.sh-f3b66277067c1b3b +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-system-nss-user-lookup.target-f45fd1b432e21c86 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-coredump-f52f3d3553d84ced +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...completions-coredumpctl-f62e329a4ae3fa21 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-hostname-f646fcb09c277d5e +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-libsystemd-shared-239.so-f702fc8f6c35df64 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-system-reboot.target-f7a74152dade036d +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-etc-systemd-user.conf-f7cdc2be6ae2c773 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...lib-systemd-catalog-systemd.fr.catalog-fa3bb02cefba96b0 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-zsh-site-functions--systemd-fcd0017775beb102 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-factory-etc-pam.d-other-fe114eda0fdfd632 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-lib-systemd-systemd-sysctl-ff20d3c2b2aa5416 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-usr-share-pkgconfig-systemd.pc-ff2ca5d52b2ad9b5 +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...zsh-site-functions--systemd-resolve-ff2d7690c8b146cd +Relationship: SPDXRef-Package-rpm-systemd-04d6184674b39275 CONTAINS SPDXRef-File-...systemd-ask-password-wall.service-fffc3d60490c63de +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...not-zip-safe-070b608c5c268c50 +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 OTHER SPDXRef-Package-python-decorator-64ad1a0dc4b7f605 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...--pycache---decorator.cpython-36.pyc-64f28fd874896c57 +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...SOURCES.txt-799722ea4617dfc0 +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...python3.6-site-packages-decorator.py-82b6559637b0740f +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...licenses-python3-decorator-LICENSE.txt-8e8ee2da69c10561 +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...decorator.cpython-36.opt-1.pyc-97694482de89b68d +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...top-level.txt-a3ab0284f6f24fb0 +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...pbr.json-a7a5d5a958e59d31 +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...PKG-INFO-bd28bed913903e91 +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 CONTAINS SPDXRef-File-...dependency-links.txt-f27452b7efbe0cad +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.lang3-052888805a0ba73d OTHER SPDXRef-File-...com.ibm.ws.org.apache.commons.lang3-1.0.81.jar-002f7dd0dab45221 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.repository-052eacb4e345a6af OTHER SPDXRef-File-...lib-com.ibm.ws.repository-1.0.81.jar-1c94cf1cca4f01a1 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-server-05c89cd1d469dd04 OTHER SPDXRef-File-opt-ol-wlp-bin-tools-ws-server.jar-9a239fa39b4fd6f4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libmount-070a612d83e6848e CONTAINS SPDXRef-File-usr-share-licenses-libmount-COPYING-1077891aec096a0e +Relationship: SPDXRef-Package-rpm-libmount-070a612d83e6848e CONTAINS SPDXRef-File-usr-lib64-libmount.so.1.1.0-2b35e1b59b0dc3aa +Relationship: SPDXRef-Package-rpm-libmount-070a612d83e6848e CONTAINS SPDXRef-File-...licenses-libmount-COPYING.LGPLv2.1-3ed42538f352af51 +Relationship: SPDXRef-Package-rpm-libmount-070a612d83e6848e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.httpcomponents-0838e8dbedcbabcb OTHER SPDXRef-File-...com.ibm.ws.org.apache.httpcomponents-1.0.81.jar-036cfeb850991b73 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-libcomps-08b412214951d9e5 OTHER SPDXRef-File-...PKG-INFO-c60bef20b2e47cf0 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.dynamic.bundle-08d6cd9d800f0b92 OTHER SPDXRef-File-...com.ibm.ws.dynamic.bundle-1.0.81.jar-ef93cc389aa3c695 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.2.x.config-09182df796a8cd3c OTHER SPDXRef-File-...com.ibm.ws.jaxrs.2.x.config-1.0.81.jar-270d0a13811c5349 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.ready-098086dd3d8df3a3 OTHER SPDXRef-File-...com.ibm.ws.app.manager.ready-1.0.81.jar-f682a30ecad6dc0b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.registry-09a30f3c6fafe647 OTHER SPDXRef-File-...com.ibm.ws.security.registry-1.0.81.jar-a647e1cee84a5e7c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.product.utility-0a677035ad8b6950 OTHER SPDXRef-File-...com.ibm.ws.product.utility-1.0.81.jar-61ccc7854aca503d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel-0ab750de1add5f0e OTHER SPDXRef-File-...lib-com.ibm.ws.logging.hpel-1.0.81.jar-9e8a57b02663df52 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.install-0ae3e531f18a4587 OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.install-1.0.81.jar-a44ba1964661b299 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 CONTAINS SPDXRef-File-...share-licenses-libksba-COPYING.GPLv2-991c75c855bc6374 +Relationship: SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 CONTAINS SPDXRef-File-usr-lib64-libksba.so.8.11.6-acd6fe3137a6f760 +Relationship: SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 CONTAINS SPDXRef-File-...share-licenses-libksba-COPYING.LGPLv3-c76e89269e08066e +Relationship: SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 CONTAINS SPDXRef-File-...share-licenses-libksba-COPYING.GPLv3-deea9c69f8d63720 +Relationship: SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 CONTAINS SPDXRef-File-usr-share-licenses-libksba-COPYING-ecb9cbf009a9c06f +Relationship: SPDXRef-Package-rpm-popt-0b3935dae763295c CONTAINS SPDXRef-File-usr-lib64-libpopt.so.0.0.1-a7289540b2a9a5de +Relationship: SPDXRef-Package-rpm-popt-0b3935dae763295c CONTAINS SPDXRef-File-usr-share-licenses-popt-COPYING-c54dbeb5cb63ee97 +Relationship: SPDXRef-Package-rpm-popt-0b3935dae763295c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-librepo-0b6f4113629057b0 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-29ef19ba56d533e8 +Relationship: SPDXRef-Package-rpm-python3-librepo-0b6f4113629057b0 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-4b988aceb8a5ca56 +Relationship: SPDXRef-Package-rpm-python3-librepo-0b6f4113629057b0 CONTAINS SPDXRef-File-...site-packages-librepo---init--.py-77a6b3c15c888046 +Relationship: SPDXRef-Package-rpm-python3-librepo-0b6f4113629057b0 CONTAINS SPDXRef-File-...site-packages-librepo--librepo.so-b1fda36290cdc11a +Relationship: SPDXRef-Package-rpm-python3-librepo-0b6f4113629057b0 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-findutils-0c5e4ad061cf8e7d CONTAINS SPDXRef-File-usr-bin-find-b98291df748fd65b +Relationship: SPDXRef-Package-rpm-findutils-0c5e4ad061cf8e7d CONTAINS SPDXRef-File-usr-share-licenses-findutils-COPYING-ca864457434e5214 +Relationship: SPDXRef-Package-rpm-findutils-0c5e4ad061cf8e7d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-findutils-0c5e4ad061cf8e7d CONTAINS SPDXRef-File-usr-bin-xargs-f3571069e15bd862 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.ddmodel-0e8d48788588149a OTHER SPDXRef-File-...com.ibm.ws.javaee.ddmodel-1.0.81.jar-deb18579eaa4659f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-qedr.driver-01fffe9b90024450 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-mlx5.driver-082705b227a5250a +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-lib64-libefa.so.1.2.44.0-14f64c0df7f78e7a +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-lib64-libibverbs-librxe-rdmav34.so-1bb60ef064846090 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-bnxt-re.driver-22692f255a41b5c2 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-lib64-libibverbs-libsiw-rdmav34.so-278ef80f6a61902b +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-irdma.driver-343310c3d2906c6b +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-lib64-libibverbs-libhns-rdmav34.so-3e97e717bd682439 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-cxgb4.driver-3f1bbc604146b111 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-...libibverbs-libhfi1verbs-rdmav34.so-48c373697106ea68 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-lib64-libmlx5.so.1.24.44.0-574b9ab233702d56 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-vmw-pvrdma.driver-8c5e7562fcfb5e40 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-...lib64-libibverbs-libbnxt-re-rdmav34.so-8df65b6ed85671bb +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-...lib64-libibverbs-libqedr-rdmav34.so-a4f8e583a8e20f2b +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-share-doc-rdma-core-libibverbs.md-b9115564528b9217 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-hfi1verbs.driver-bb630a8f2dd1da3e +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-...lib64-libibverbs-libcxgb4-rdmav34.so-bd7577063c47c01e +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-...libibverbs-libvmw-pvrdma-rdmav34.so-c18ce21e044f1821 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-siw.driver-d5ab1d058e4c67b4 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-mlx4.driver-ded7e7df7db67c23 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-...lib64-libibverbs-libirdma-rdmav34.so-df179fdf2a36d24b +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-hns.driver-ec3abbb8d734ad8b +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-lib64-libibverbs.so.1.14.44.0-f1fab28dadecec42 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-efa.driver-f5a6f21b6305e635 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-etc-libibverbs.d-rxe.driver-ffd177095d134fc9 +Relationship: SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 CONTAINS SPDXRef-File-usr-lib64-libmlx4.so.1.0.44.0-ffece5b753c16a03 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.jndi-104523a570fd0157 OTHER SPDXRef-File-...ol-wlp-lib-com.ibm.ws.jndi-1.0.81.jar-390f3f72accbfbb3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---repo.cpython-36.opt-1.pyc-000ff4a7f62f3421 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---error.cpython-36.pyc-14d7696a2a17a83e +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf---init--.py-1f3e59cc675b05f1 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--transaction.so-25247fb5d5e7d603 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf-smartcols.py-2b2f98c09e70acc4 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...common-types.cpython-36.opt-1.pyc-2bdf298c6f3b2d7e +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---module.cpython-36.pyc-315c4767d134e990 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...python3.6-site-packages-libdnf-repo.py-3f9594db9abf9eae +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--conf.so-3fd167c7e4c2cf66 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--utils.so-4167da513290feb4 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf-transaction.py-460fbc3f07d5d042 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---smartcols.cpython-36.pyc-4e2e87465e185b88 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-61f6da82a15caecc +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...libdnf---pycache---repo.cpython-36.pyc-6327ef76428f055e +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf-error.py-643468cd4df07ebe +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...libdnf---pycache---conf.cpython-36.pyc-681db22609cf0ca0 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf-common-types.py-6f1099127a2ca0d3 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---error.cpython-36.opt-1.pyc-724e5e4b3fdced1c +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-744232b454046932 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--smartcols.so-745cb2bdd7bb210c +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--repo.so-7871c95e0e7d2026 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--module.so-7fd0f53da4471d4a +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...common-types.cpython-36.pyc-87c4f22e7553e98f +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf-utils.py-94c4eac4dfe87b7d +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...smartcols.cpython-36.opt-1.pyc-98415a4e227cdfda +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf-module.py-9dc08549b3815a4d +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...module.cpython-36.opt-1.pyc-b0b4eb46a22cd4f7 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--common-types.so-c6d468b9854a490f +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...python3.6-site-packages-libdnf-conf.py-d35df845d1602ea7 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.pyc-d7a255f8e91d61f3 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...site-packages-libdnf--error.so-dd2ce70ad6a9ed5c +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f03b7d59a78ca2e6 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---conf.cpython-36.opt-1.pyc-fa01515187993ad0 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...transaction.cpython-36.opt-1.pyc-fa9f268233d4dc92 +Relationship: SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 CONTAINS SPDXRef-File-...--pycache---transaction.cpython-36.pyc-fff4020a9b59eab7 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.cdi.web.jakarta-11311d79d2229e78 OTHER SPDXRef-File-...com.ibm.ws.cdi.web.jakarta-1.0.81.jar-cdc702ca5ba52723 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 CONTAINS SPDXRef-File-usr-lib64-libldap-2.4.so.2.10.9-29575a76c3e82ee6 +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 CONTAINS SPDXRef-File-usr-share-licenses-openldap-COPYRIGHT-3c26c6e373ac9693 +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 CONTAINS SPDXRef-File-usr-share-licenses-openldap-LICENSE-568e33503ff18f13 +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 CONTAINS SPDXRef-File-usr-lib64-libldap-r-2.4.so.2.10.9-864ee657bdff9863 +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 CONTAINS SPDXRef-File-etc-openldap-ldap.conf-91eb039632dbcf78 +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 CONTAINS SPDXRef-File-usr-lib64-liblber-2.4.so.2.10.9-cdc99235b436ebf2 +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 CONTAINS SPDXRef-File-usr-lib64-libslapi-2.4.so.2.10.9-f239ed9a52120052 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.crypto.certificateutil-12307a2b3786915d OTHER SPDXRef-File-...com.ibm.ws.crypto.certificateutil-1.0.81.jar-dbdf8948b0c5e84f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.pages.3.1-128193a06618afaf OTHER SPDXRef-File-...io.openliberty.jakarta.pages.3.1-1.0.81.jar-4f21a9e821b46007 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.tai-13af1a248263e9c5 OTHER SPDXRef-File-...io.openliberty.security.authentication.internal.tai-1.0.81.jar-7ba9b2b4a183a86f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-elfutils-libelf-1490683b1177d120 CONTAINS SPDXRef-File-...licenses-elfutils-libelf-COPYING-GPLV2-11613efeb64d51e1 +Relationship: SPDXRef-Package-rpm-elfutils-libelf-1490683b1177d120 CONTAINS SPDXRef-File-usr-lib64-libelf-0.188.so-453c61fee9b983ee +Relationship: SPDXRef-Package-rpm-elfutils-libelf-1490683b1177d120 CONTAINS SPDXRef-File-...elfutils-libelf-COPYING-LGPLV3-bc7dcd87acd02afb +Relationship: SPDXRef-Package-rpm-elfutils-libelf-1490683b1177d120 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libfdisk-14aa4da39dcdd70b CONTAINS SPDXRef-File-...licenses-libfdisk-COPYING.LGPLv2.1-32ad7b1a810f0fd7 +Relationship: SPDXRef-Package-rpm-libfdisk-14aa4da39dcdd70b CONTAINS SPDXRef-File-usr-share-licenses-libfdisk-COPYING-8ce923042ea368f3 +Relationship: SPDXRef-Package-rpm-libfdisk-14aa4da39dcdd70b CONTAINS SPDXRef-File-usr-lib64-libfdisk.so.1.1.0-bc587e0f4d28153a +Relationship: SPDXRef-Package-rpm-libfdisk-14aa4da39dcdd70b OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd.common-16857c35ba5e7e3a OTHER SPDXRef-File-...com.ibm.ws.javaee.dd.common-1.1.81.jar-af2a6109841fb6c1 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-webserverPluginutil-1733bf66d2879f15 OTHER SPDXRef-File-...com.ibm.ws.webserver.plugin.utility-1.0.81.jar-0616e8863c89967a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NG-LC-TELEPHONE-00efc990e28968b6 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW-LC-IDENTIFICATION-02c856c925fa2570 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-DK-LC-MESSAGES-SYS-LC-MESSAGES-08b0e51d392c493e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IN-LC-ADDRESS-0a344062d13c7ac6 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-TELEPHONE-0b1750e180b5c4e3 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-NAME-0b9bbab53980635a +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-PAPER-0c663ebffa76eca3 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-TELEPHONE-0e03dc68b171217e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-TIME-0ea9e57d2326c4b8 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-ZM-LC-MESSAGES-SYS-LC-MESSAGES-12589b2621e10b89 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US.utf8-ampm-LC-TIME-12c50bf117b13cd0 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-ADDRESS-1305e9da969269e7 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US.utf8-LC-MONETARY-137e091ea8212536 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-IDENTIFICATION-13d894943df07c7e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-NAME-14c997a4f59ba3fd +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-GB.iso885915-LC-ADDRESS-14efa0e1c5b6129d +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-LC-TELEPHONE-164a7b6581d88b80 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZM-LC-MONETARY-18cf98ff17cdf888 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK-LC-NUMERIC-1c2178cc71e23bd5 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-TIME-1c40b2690827e9b3 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW-LC-MONETARY-1edc0f9c6f5d56fb +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH-LC-TIME-1fe310fad9d86aca +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IN-LC-TELEPHONE-22adce6dcc339152 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NG-LC-ADDRESS-2443ee6a312a58e0 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-AU-LC-MESSAGES-SYS-LC-MESSAGES-2613807ab4a8057d +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-NAME-26b1cf0f2cd01332 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-US.iso885915-LC-MONETARY-2738e8abd5b733fe +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-NAME-27eff88af3ac2e39 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB-LC-TELEPHONE-28a937e487469af5 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB.iso885915-LC-TIME-2942fbadea9ba406 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SC.utf8-LC-MONETARY-29a833e48badb967 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-MONETARY-2a4f3094355cd9bb +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-NUMERIC-2dadb402b7f0a575 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US.utf8-LC-TELEPHONE-2dce36a110bd1c95 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW-LC-TIME-2f1d1825f61b7378 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-MONETARY-2f94ee69888154c9 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-MEASUREMENT-31b37f01c39ec6c0 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-NUMERIC-35c2f956157e7797 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZM-LC-TELEPHONE-3663f004bf919b11 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IN-LC-TIME-377e3bdc8bd2548a +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-TIME-38c0371dc134cc3b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH-LC-IDENTIFICATION-3a7f34ef7fd2cf4d +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB-LC-MONETARY-3c2eb16ad40a0208 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH-LC-MONETARY-3cd1166737635a1e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-ZW.utf8-LC-IDENTIFICATION-3cd91ec58fe212d6 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-ADDRESS-3dcfa47bf37ac895 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US.utf8-LC-TIME-3e4e6df0aac90b0c +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-ADDRESS-4100b14dc11c2542 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IN-LC-MONETARY-423941758b580b5d +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA-LC-IDENTIFICATION-44b88b9f31a63c17 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-TELEPHONE-44f8c28f5f15246e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-MONETARY-471b6ac89f9478cd +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-NUMERIC-482c63500b4a519e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-DK.utf8-LC-MESSAGES-SYS-LC-MESSAGES-48ec458afb1f8b82 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZW.utf8-LC-ADDRESS-4c42fb49ae71e9d4 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...LC-MESSAGES-SYS-LC-MESSAGES-4dd8eeb04117903e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-MONETARY-4f38eb7755b21428 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-IE.utf8-LC-IDENTIFICATION-4fa5f0b1794cac2b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK-LC-TELEPHONE-4fe2949c0499a612 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA-LC-TIME-50b504658e3a6a22 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-MONETARY-515335621fbab38e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-MONETARY-52173a7352f8e839 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NG-LC-TIME-52763d4286924020 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW-LC-TELEPHONE-52d15f233a83c660 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NG-LC-MONETARY-56f8ebb8d1cac10c +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG-LC-IDENTIFICATION-58d8f48c4fc91c74 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-AU.utf8-LC-IDENTIFICATION-596c75a6c89074bf +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NZ.utf8-LC-MONETARY-59c0aa6709578525 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG-LC-TIME-5afac03645e1d825 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NZ.utf8-LC-TELEPHONE-5b60c4183a67cdcf +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-TELEPHONE-5b6470f7016a2968 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG-LC-MONETARY-5be75a92c2fd3056 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK-LC-IDENTIFICATION-5c6da5382ff79c24 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA-LC-COLLATE-5e8b4efacf3979ac +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-GB.iso885915-LC-IDENTIFICATION-5f2e756c1021af61 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-CTYPE-5fa42eb8d6d6fb5e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-TELEPHONE-5fb0900b759781c7 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-TELEPHONE-5fbab395cb323bac +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-TELEPHONE-5fbc57665ffa5d3e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA-LC-MONETARY-608d711669f7c25f +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-COLLATE-60a9976dd3b860e7 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US-LC-IDENTIFICATION-6124c9b5ac9a2bd0 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-TIME-628cc7420743e170 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZW.utf8-LC-TELEPHONE-637bbcc2d311e1e7 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK-LC-MONETARY-6424687ed70e2ede +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US.utf8-LC-ADDRESS-64d95d0753b167f5 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB-LC-IDENTIFICATION-65e23fdcbef8e660 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-ADDRESS-66e40f2bb555d667 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US-LC-MONETARY-671ff83b9313c5f3 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-GB.iso885915-LC-PAPER-67b332bc717e90bf +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US.iso885915-LC-TIME-67bb460ec8a7eda4 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-GB.iso885915-LC-NUMERIC-67c98038685bd622 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-SC.utf8-LC-IDENTIFICATION-67d7fd54d5d9eb01 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SC.utf8-LC-TELEPHONE-684b44048fd1ed61 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US-LC-MEASUREMENT-68c649530a57887a +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-US.iso885915-LC-MEASUREMENT-68cdd5260ac9670f +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-CTYPE-69de207c4f5570a2 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-MONETARY-6a1eb3a2f418f48b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-MEASUREMENT-6b49a0bf1af82e96 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW.utf8-LC-TELEPHONE-6b9bb67343162edd +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK-LC-NUMERIC-710f99a698f27ebb +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-GB.utf8-LC-IDENTIFICATION-71ff28e2019ebd95 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK-LC-ADDRESS-72405d972f0bb9ae +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-LC-MONETARY-72cf68b177f5796f +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZW-LC-IDENTIFICATION-74b710fc4b5b01ed +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-GB.iso885915-LC-CTYPE-7806d7a2767297ae +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-TIME-783ab1550b9ad5c5 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA-LC-NAME-7a3f3dbf8aa6b15c +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-ZA.utf8-LC-IDENTIFICATION-7a5d1a8432766b6b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-US.utf8-LC-IDENTIFICATION-7e276f8b7514d1c2 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-NAME-7e56328537fc2fbd +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-GB.iso885915-LC-MEASUREMENT-7e9bb1c060133a31 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-TIME-7f765efea9260172 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-PAPER-8016a781f0058752 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG-LC-ADDRESS-801de6318ac70996 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH-LC-TELEPHONE-80281cf0594fe089 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA-LC-PAPER-803a799ee628b488 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG-LC-TELEPHONE-832b0e2d9ed7cf87 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-TELEPHONE-8520a5b3fcae748a +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-ADDRESS-86828ea3a614793e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IL-LC-TELEPHONE-89600bbc05482652 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-TIME-8a1c3ac2bf6b3953 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK-LC-IDENTIFICATION-8aa4bdd32288f291 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-TIME-8ac2294cb383a4d0 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB.utf8-LC-ADDRESS-8bc645939cf86893 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK-LC-TIME-8c119b8916a00a76 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-CA-LC-MESSAGES-SYS-LC-MESSAGES-8dabc08bc9dfbf3b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-NUMERIC-8dcc033c07e1ff54 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK-LC-NAME-8eb24ff2cdd806ad +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-LC-IDENTIFICATION-8f5ec9080c777e0c +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-euro-LC-NAME-8fd0db66ab1d7565 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA-LC-ADDRESS-91bb9f2a188c548e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NZ-LC-TELEPHONE-93088bc95deaad17 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-PAPER-93e8ab04db42fa92 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZM-LC-IDENTIFICATION-980e3fbaaab39c26 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IN-LC-IDENTIFICATION-9947cde3a2f55722 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA-LC-IDENTIFICATION-997d76d46412c6b7 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NZ-LC-ADDRESS-9af5e9b54d963f18 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-LC-ADDRESS-9b3675e43cc2bb5e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-CA.utf8-LC-MESSAGES-SYS-LC-MESSAGES-9c71c428eda55c83 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-TIME-a07e1524f82b245b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NZ-LC-MONETARY-a0ab980258aa49fa +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-CA.utf8-LC-IDENTIFICATION-a0c27f21adf787f2 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH-LC-NAME-a4013572779b61a7 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB-LC-NAME-a693349f1137e78f +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NG-LC-IDENTIFICATION-a9040f1a04694a29 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA.utf8-LC-ADDRESS-aac40d89a6a834bc +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-LC-TIME-aaca2f5914f58533 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-MONETARY-abcb90c2976d9471 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US-LC-TELEPHONE-ac5e48056406d81d +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-IDENTIFICATION-acc0fe47e33101c3 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZM-LC-TIME-aea1159f9f2d0641 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-MONETARY-aeecdfcf9d37affb +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK.utf8-LC-TELEPHONE-b1be887187f1a8ca +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IL-LC-IDENTIFICATION-b1f91dfd818a338d +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SC.utf8-LC-ADDRESS-b4e862c23b0f5360 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB-LC-ADDRESS-b574181d2b2f27d9 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IN-LC-NUMERIC-b6ae3bc99dd49e41 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-PH.utf8-LC-IDENTIFICATION-b94a5e0748b4b440 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-US.iso885915-LC-PAPER-b969e04f4329b6e1 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-US.iso885915-LC-IDENTIFICATION-bf235af607ae2985 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE.utf8-LC-ADDRESS-c0ad68c1c43cd2b9 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-DK.utf8-LC-IDENTIFICATION-c0fd73f774aa80e6 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-GB.iso885915-LC-MONETARY-c175f40bbda0dbb9 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU-LC-COLLATE-c27609ef2ef0e834 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-euro-LC-ADDRESS-c363cc35c6fadb6b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-SG.utf8-LC-IDENTIFICATION-c3ba938185dfd0dd +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-NZ.utf8-LC-IDENTIFICATION-c625bebaf2ae40c1 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-ADDRESS-c628438e48ac358f +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA-LC-MONETARY-c64f096edd98c7ac +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-MONETARY-c7931ef20bf3ef72 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US-LC-ADDRESS-c9a0dd78fc466c88 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-US-LC-TIME-ca1e05730eccbda0 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IL-LC-MONETARY-cc3261a69746de7f +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AU.utf8-LC-MONETARY-cc6e534865cfcc8b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH-LC-ADDRESS-ccc9a5bd5671ad09 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB-LC-TIME-cde5cd993d62a784 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-ADDRESS-d03723b21f32e6ac +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK-LC-TELEPHONE-d14eb414191b3ea2 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-ADDRESS-d201cb7c2088ae8f +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-TELEPHONE-d247b7e4c4b8e7f0 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZW.utf8-LC-MONETARY-d2ffdf62ea89f7b1 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-GB.iso885915-LC-NAME-d61fcf3e6989e938 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-COLLATE-d68e6a00c74688b3 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA-LC-ADDRESS-d82c3300e4d4fbec +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...en-AG-LC-MESSAGES-SYS-LC-MESSAGES-d9629137742a772c +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-CA-LC-TELEPHONE-d9f8389e38e5e12b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IL-LC-ADDRESS-daeec6d2fdad9f1a +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NZ.utf8-LC-ADDRESS-de0297a9dfc4724c +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-GB.iso885915-LC-TELEPHONE-dea6d787fac48ab2 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZM-LC-ADDRESS-df360e9309f25736 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-SG.utf8-LC-TIME-e2314cc05884a9dc +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-PH.utf8-LC-TIME-e61dab623df4dc97 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-GB.iso885915-LC-COLLATE-e6f2d6c7d056f94c +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK-LC-ADDRESS-e7ae266076536640 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-euro-LC-TELEPHONE-e7f8c4c2e3854a7e +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-euro-LC-TIME-ea5be04751285400 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZW-LC-MONETARY-ec3f46083c424969 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-US.iso885915-LC-TELEPHONE-ec8ac8e57e44d74b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IE-euro-LC-MONETARY-f151e691a71b3804 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK-LC-TIME-f15951354cbc3a80 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-AG-LC-MONETARY-f1c9dd81ff852452 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-IL-LC-TIME-f1ec9cf9cd4c6573 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZW-LC-TELEPHONE-f398309ba8a7d662 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-IE-euro-LC-IDENTIFICATION-f3dd3b1a0199ddf6 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-BW.utf8-LC-IDENTIFICATION-f5fb7a6c1d6c11af +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-NZ-LC-IDENTIFICATION-f615006208df8bb8 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-BW-LC-ADDRESS-f61dc050627a2d2b +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-DK-LC-MONETARY-f66638a5e6f00905 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-US.utf8-LC-MEASUREMENT-f682071750cb8b01 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...locale-en-HK.utf8-LC-IDENTIFICATION-f73007afa8b1dad8 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-HK.utf8-LC-ADDRESS-f918a2f971f50419 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-...lib-locale-en-US.iso885915-LC-ADDRESS-f92a68a5283720dd +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA-LC-TELEPHONE-fa93fd1a7e284018 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZW-LC-ADDRESS-fba65845604a3b85 +Relationship: SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 CONTAINS SPDXRef-File-usr-lib-locale-en-ZA.utf8-LC-NAME-fc89c22b3315d614 +Relationship: SPDXRef-Package-python-gpg-176c74855eaee639 OTHER SPDXRef-File-...gpg-1.13.1-py3.6.egg-info-da7717d7cf43e5e6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-filesystem-179398b43587ad72 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-bzip2-libs-17acab8822026709 CONTAINS SPDXRef-File-usr-share-licenses-bzip2-libs-LICENSE-294ae9a2ea0f2824 +Relationship: SPDXRef-Package-rpm-bzip2-libs-17acab8822026709 CONTAINS SPDXRef-File-usr-lib64-libbz2.so.1.0.6-d497d96e06de5d98 +Relationship: SPDXRef-Package-rpm-bzip2-libs-17acab8822026709 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-usr-lib64-libstdc--.so.6.0.25-034b2109703b1348 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...gcc-8-python-libstdcxx-v6-printers.py-2af752d878122828 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...usr-lib64-libstdc--.so.6.0.25-gdb.py-4e3b9f530c1e6f6f +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-558a33dcb4220597 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...v6---pycache-----init--.cpython-36.pyc-55a7559c5150863b +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...xmethods.cpython-36.opt-1.pyc-6a790ce66409e07b +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-6dd85856ca14078b +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...printers.cpython-36.opt-1.pyc-71a0bdeb5372bee2 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...v6---pycache---printers.cpython-36.pyc-94313d2f3d63dc20 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...libstdc--.so.6.0.25-gdb.cpython-36.opt-1.pyc-cf1403ff057a7d17 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...v6---pycache---xmethods.cpython-36.pyc-d0a2fb112fb6e0b1 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...gcc-8-python-libstdcxx-v6---init--.py-d4d8beacc9474116 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...gcc-8-python-libstdcxx---init--.py-d91bc8c4128a4e70 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...libstdc--.so.6.0.25-gdb.cpython-36.pyc-e92909bf6b6947b2 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...gcc-8-python-libstdcxx-v6-xmethods.py-ee831f25156e5dd9 +Relationship: SPDXRef-Package-rpm-libstdc---185db1d2fd55071b CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-f70d4e7364c6f38e +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.jmx-191229ab7f2a419b OTHER SPDXRef-File-...ol-wlp-lib-com.ibm.ws.jmx-1.0.81.jar-067e93124bf92e0c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.managedobject-1981498e7cecd9ca OTHER SPDXRef-File-...com.ibm.ws.managedobject-1.0.81.jar-80cce54a959a2bd7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.io.smallrye.metrics-1981bbe28a0d2bf1 OTHER SPDXRef-File-...io.openliberty.io.smallrye.metrics-1.0.81.jar-e7028b1a666d998f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.cors.jakarta-19e84b0297f47f72 OTHER SPDXRef-File-...com.ibm.ws.webcontainer.cors.jakarta-1.0.81.jar-f96dfd4e1c8d5376 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-mpfr-1a8596f0e80a7465 CONTAINS SPDXRef-File-usr-lib64-libmpfr.so.4.1.6-3f1fddb396fa99ef +Relationship: SPDXRef-Package-rpm-mpfr-1a8596f0e80a7465 CONTAINS SPDXRef-File-usr-share-licenses-mpfr-COPYING.LESSER-80cd1ace42e47cf2 +Relationship: SPDXRef-Package-rpm-mpfr-1a8596f0e80a7465 CONTAINS SPDXRef-File-usr-share-licenses-mpfr-COPYING-dc377766b4c3d428 +Relationship: SPDXRef-Package-rpm-mpfr-1a8596f0e80a7465 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.jdeparser.1.0.0-1aa60d6e4bfef0f5 OTHER SPDXRef-File-...com.ibm.ws.org.jboss.jdeparser.1.0.0-1.0.81.jar-fd55b6e6c2bddf7c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-boot-proxy-1aba7eb0d811ebb9 OTHER SPDXRef-File-...201-data-boot-proxy.jar-d10719d1dcea600a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.ssl-1b9b8e246bb01d2c OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.ssl-1.5.81.jar-9037cb65e8f378f5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.parsson.1.1-1bb0c08cba48bbd4 OTHER SPDXRef-File-...io.openliberty.org.eclipse.parsson.1.1-1.0.81.jar-87f382f57dea1937 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.session.6.0.internal-1c350314002feaf1 OTHER SPDXRef-File-...io.openliberty.session.6.0.internal-1.0.81.jar-7191ca1cf58ce7c8 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-featureUtility-1c587851fc967577 OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-featureUtility.jar-92a26802a6d3517b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dbus-1cb6510238ba5dd8 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.config.schemagen.schemagen-1e60349c3d000cd5 OTHER SPDXRef-File-opt-ol-wlp-bin-tools-ws-schemagen.jar-2549f9f3b480549c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libacl-1e60fab75e8d074c CONTAINS SPDXRef-File-usr-lib64-libacl.so.1.1.2253-94789880a76395d9 +Relationship: SPDXRef-Package-rpm-libacl-1e60fab75e8d074c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-lua-libs-1f0da6c7eb5408a0 CONTAINS SPDXRef-File-usr-lib64-liblua-5.3.so-94a6f82d097cf8c6 +Relationship: SPDXRef-Package-rpm-lua-libs-1f0da6c7eb5408a0 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.io.smallrye.common.jakarta-1f8abfb0200823fe OTHER SPDXRef-File-...io.openliberty.io.smallrye.common.jakarta-1.0.81.jar-0e1ca4473ef22abc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen.serverschemagen-1fed813f3c643120 OTHER SPDXRef-File-...com.ibm.ws.config.server.schemagen-1.0.81.jar-03932bf40ecb0eb7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.glassfish.json.1.0-200bede0300ec3f9 OTHER SPDXRef-File-...com.ibm.ws.org.glassfish.json.1.0-1.0.81.jar-9093987fcfef1f4e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakartaee.platform.v10-20733c6463dd687a OTHER SPDXRef-File-...io.openliberty.jakartaee.platform.v10-1.0.81.jar-ecee344bd7844d6c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-etc-pki-product-default-479.pem-03a11ebe10f77ea2 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-etc-system-release-cpe-088e463ba7ac1c7c +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...99-default-disable.preset-17ed4cd03af30f32 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-etc-issue-1a6139587efc9b4b +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...pki-rpm-gpg-ISV-Container-signing-key-3fadd4a1ca57118c +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...85-display-manager.preset-49e4aa8176f9d504 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...system-preset-90-default.preset-690de0f76885d281 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...com.redhat.RHEL-8-x86-64.swidtag-7090fb698b60be0e +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-usr-lib-os-release-7216a1736d1cee0d +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...pki-rpm-gpg-RPM-GPG-KEY-redhat-release-aa1b380587abd12a +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-etc-issue.net-bb609963d8224cf4 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...dnf-protected.d-redhat-release.conf-d2cb17d269cff348 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...pki-rpm-gpg-RPM-GPG-KEY-redhat-beta-e22d24acdc4e9a0b +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...com.redhat.RHEL-8.8-x86-64.swidtag-e31018fb0d6a14c3 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-...CA-redhat.com-redhatcodesignca.cert-e6b482b09e0cf9b8 +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-etc-redhat-release-ef6d52083fa32a5c +Relationship: SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 CONTAINS SPDXRef-File-etc-rpm-macros.dist-ff878d87d85b98fb +Relationship: SPDXRef-Package-rpm-publicsuffix-list-dafsa-214d24ff5f54adcf CONTAINS SPDXRef-File-...publicsuffix-public-suffix-list.dafsa-057a683215eedd04 +Relationship: SPDXRef-Package-rpm-publicsuffix-list-dafsa-214d24ff5f54adcf CONTAINS SPDXRef-File-...publicsuffix-list-dafsa-COPYING-bc2c8696daaa6275 +Relationship: SPDXRef-Package-rpm-publicsuffix-list-dafsa-214d24ff5f54adcf OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen.serverschemagen-216aa4500d7ed9bf OTHER SPDXRef-File-...wlp-bin-tools-ws-serverSchemagen.jar-7abceac531a8cf7d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.artifact-2173cd741b62f5a5 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.artifact-1.2.81.jar-3e1850474b015dc9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.metatype.helper-22148fb06e54b25c OTHER SPDXRef-File-...com.ibm.ws.kernel.metatype.helper-1.0.81.jar-5ed3d5c92d2fec9e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 CONTAINS SPDXRef-File-usr-bin-pwmake-35d44fa1766eaf3f +Relationship: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 CONTAINS SPDXRef-File-...share-licenses-libpwquality-COPYING-64f5b8acefc4574f +Relationship: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 CONTAINS SPDXRef-File-usr-lib64-libpwquality.so.1.0.2-90515a61f8906424 +Relationship: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 CONTAINS SPDXRef-File-etc-security-pwquality.conf-aa5a752bcc77345b +Relationship: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 CONTAINS SPDXRef-File-usr-bin-pwscore-caaaa279f05cbedd +Relationship: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 CONTAINS SPDXRef-File-usr-lib64-security-pam-pwquality.so-ddc31ff8d1f5f1e2 +Relationship: SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.tx.util.jakarta-22a2d52242f0b82a OTHER SPDXRef-File-...lib-com.ibm.tx.util.jakarta-1.0.81.jar-d637e9500906e9cd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-launch-22d346fb8340a3c1 OTHER SPDXRef-File-opt-ol-wlp-lib-ws-launch.jar-d46337f79f64e601 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.jboss.classfilewriter.1.3-2400266da2e70a6d OTHER SPDXRef-File-...io.openliberty.org.jboss.classfilewriter.1.3-1.3.81.jar-1fe80f34d7cd41b2 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-securityutil-248c284f10d70274 OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-securityutil.jar-d47265613f76c274 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.container.service-260b772a916e1f2e OTHER SPDXRef-File-...com.ibm.ws.container.service-1.0.81.jar-30a4298d6116e93d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-schemagen-2643abaf60e0638d OTHER SPDXRef-File-opt-ol-wlp-bin-tools-ws-schemagen.jar-2549f9f3b480549c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libsepol-26ec304cd5fb1c60 CONTAINS SPDXRef-File-usr-share-licenses-libsepol-COPYING-861f062dbead7042 +Relationship: SPDXRef-Package-rpm-libsepol-26ec304cd5fb1c60 CONTAINS SPDXRef-File-usr-lib64-libsepol.so.1-b0adcd91f9a2da70 +Relationship: SPDXRef-Package-rpm-libsepol-26ec304cd5fb1c60 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.session.jakarta-27113c1d16fd556f OTHER SPDXRef-File-...com.ibm.ws.session.jakarta-1.0.81.jar-e3244273a32f6cba +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-luseradd-0ecaddc71a29b93c +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-lib64-libuser.so.1.5.2-185719423f9af73a +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lchage-2162f4d2e57b0ab7 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-lib64-libuser-libuser-shadow.so-236b6a23e8719107 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-etc-libuser.conf-25cd23f43e125928 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-luserdel-2c4e473485168570 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-bin-lchsh-51753e1a6da3121e +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lnewusers-566050323d7c4642 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-...locale-en-GB-LC-MESSAGES-libuser.mo-5982164573bd37d7 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-bin-lchfn-635f75ad5ebd35bb +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lpasswd-753a5cd30265bdb2 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lid-7cedb312f5bd0d01 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-share-licenses-libuser-COPYING-8ecbe618f2b81a69 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-lib64-libuser-libuser-ldap.so-9e2e49ece79f5dce +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-lib64-libuser-libuser-files.so-a2af7276d240f86f +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lgroupadd-d3a353481522a4b0 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lusermod-d756e74179ada97e +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lgroupdel-ecf2d4b8f6b0dab4 +Relationship: SPDXRef-Package-rpm-libuser-278d0e03d58177c9 CONTAINS SPDXRef-File-usr-sbin-lgroupmod-fb3f2d0f21612c17 +Relationship: SPDXRef-Package-rpm-libreport-filesystem-279179905ddc5197 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libsigsegv-27b4d892ad295940 CONTAINS SPDXRef-File-usr-share-licenses-libsigsegv-COPYING-615cc83212ce4daa +Relationship: SPDXRef-Package-rpm-libsigsegv-27b4d892ad295940 CONTAINS SPDXRef-File-usr-lib64-libsigsegv.so.2.0.4-ac649c3c8a88e058 +Relationship: SPDXRef-Package-rpm-libsigsegv-27b4d892ad295940 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.objectweb.asm-27b96bbbf02de19c OTHER SPDXRef-File-...com.ibm.ws.org.objectweb.asm-1.0.81.jar-68705c0159056edd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.validation.3.0-27e05000e02b06ac OTHER SPDXRef-File-...io.openliberty.jakarta.validation.3.0-1.0.81.jar-00bcf0d9e36382cc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-xz-libs-284770d9f31d73af CONTAINS SPDXRef-File-usr-lib64-liblzma.so.5.2.4-1171f4f0625d4f8f +Relationship: SPDXRef-Package-rpm-xz-libs-284770d9f31d73af CONTAINS SPDXRef-File-usr-share-doc-xz-COPYING-a2630286ca6e8e0f +Relationship: SPDXRef-Package-rpm-xz-libs-284770d9f31d73af OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libffi-28487ffb13452c88 CONTAINS SPDXRef-File-usr-lib64-libffi.so.6.0.2-54964a8807c8d848 +Relationship: SPDXRef-Package-rpm-libffi-28487ffb13452c88 CONTAINS SPDXRef-File-usr-share-licenses-libffi-LICENSE-c33d49f7d1866c3a +Relationship: SPDXRef-Package-rpm-libffi-28487ffb13452c88 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-javaagent-286db1a1f1423963 OTHER SPDXRef-File-opt-ol-wlp-bin-tools-ws-javaagent.jar-cc78d3904194e910 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libblkid-2984dcc387f1f22a CONTAINS SPDXRef-File-usr-lib64-libblkid.so.1.1.0-3dce829bd26ca4a6 +Relationship: SPDXRef-Package-rpm-libblkid-2984dcc387f1f22a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-which-2a569468adbfddc1 CONTAINS SPDXRef-File-etc-profile.d-which2.csh-14d29d124494fdad +Relationship: SPDXRef-Package-rpm-which-2a569468adbfddc1 CONTAINS SPDXRef-File-etc-profile.d-which2.sh-5d10f15a57b32e67 +Relationship: SPDXRef-Package-rpm-which-2a569468adbfddc1 CONTAINS SPDXRef-File-usr-bin-which-bbc3d2f2014a88ed +Relationship: SPDXRef-Package-rpm-which-2a569468adbfddc1 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-which-2a569468adbfddc1 CONTAINS SPDXRef-File-usr-share-licenses-which-COPYING-f227d4a1c98a6181 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-facts---init--.py-0047b422d5bd2532 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---base.cpython-36.opt-1.pyc-006f6147dd0857c4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-scripts-rct.py-0071f07382791faf +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-00a9d4c170e10426 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---api.cpython-36.opt-1.pyc-015a4bd67a43d85f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subprocess-compat.cpython-36.pyc-0289633ddc9512a9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-subscription-manager.py-02f344850d4012d2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0395c6a8f8d39ebb +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...packageprofilelib.cpython-36.pyc-03ebc9391e5338ec +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-051c86ff845bac4a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-sat5to6.py-0574570e9a9ac181 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...dnf-plugins-subscription-manager.conf-05b964ac3d5fa1b7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---facts.cpython-36.pyc-0612d88cea68c62e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-plugins.py-06f8a02b3c5f7a24 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...base-object.cpython-36.opt-1.pyc-07074e238092ad3a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhn-migrate-classic-to-rhsm.cpython-36.pyc-0787c7274859b34c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-validity.py-08273bf4eaae8374 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-base-plugin.py-0872ea2cd9680f8d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmcertd-worker.cpython-36.pyc-08ff659057f5bcd9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...certdirectory.cpython-36.pyc-09445c2ec66ca56d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---config.cpython-36.pyc-0aeefbb2fd97891f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...SOURCES.txt-0bb58d96ebc6af20 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-kpatch.py-0bbbcf6df73be708 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...facts---pycache---base.cpython-36.pyc-0bd8f013f68fcecf +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager---init--.py-0c25f94c144ca453 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0e4e38eb6ea8522c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...facts---pycache---virt.cpython-36.pyc-0ea71c12e82c39e5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...unicode-width.cpython-36.opt-1.pyc-0ef32e2a68420933 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-0f97d4852ad2ac69 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0fbdb4e61ef65c5d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...redhat-branding.cpython-36.opt-1.pyc-1003f9e23de65ca7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rct-printing.py-10214f9bad60846e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---refresh.cpython-36.pyc-10722e5cff5743d0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-11b3efc733f00ba1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-libexec-rhsm-service-12b73d530c000089 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsm-service.cpython-36.pyc-13ec0a41a00fafb3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-managerlib.py-13ffefda7e7f7093 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---repofile.cpython-36.pyc-1511fb6eb770062c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-dbus---init--.py-15b5fdc781ac1f6a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...file-monitor.cpython-36.pyc-15ffd87e58599a5d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-cert-sorter.py-16365fa079b98336 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-consumer.py-17361911eaa6c2cf +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-rhsm-facts-service.py-180643e66df8bb79 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...isodate.cpython-36.opt-1.pyc-181a9865f7149874 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-refresh.py-18d578497eb0f621 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rct-manifest-commands.py-18ee3ac68980c797 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...certdirectory.cpython-36.opt-1.pyc-1a7547a53c0963a3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---products.cpython-36.pyc-1b0796678be7c1cc +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---config.cpython-36.pyc-1b4cb13f863d66e3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib---init--.py-1ca1b18a6eb8a387 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...syspurpose.cpython-36.opt-1.pyc-1ce561671cac9149 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...async-utils.cpython-36.opt-1.pyc-1d10df9eb3ae8ab7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-repolib.py-1d136a6e2deeba2b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---lock.cpython-36.pyc-1d518288e7ac39ea +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-cpuinfo.py-1dc7728868105b76 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1e8c733397d3acef +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-release.py-1e99a6beb66f4395 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...healinglib.cpython-36.opt-1.pyc-1eb5ce2247c2938c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cloud-facts.cpython-36.pyc-1f5d26ec8bdd054c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...managerlib.cpython-36.opt-1.pyc-1fe09eff23045593 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...debug-commands.cpython-36.pyc-1fe66f8419d5402b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-rhsm-service.py-2102c98d4203bd59 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...completions-subscription-manager-21308883461a7452 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...repolib.cpython-36.opt-1.pyc-21b7c1aaf4d863e3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...branding-redhat-branding.py-22280c5befe4c32b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...consumer.cpython-36.opt-1.pyc-237a65089c75f5de +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...consumer.cpython-36.opt-1.pyc-23d41ced3bb35cf5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---all.cpython-36.opt-1.pyc-24582d68329fd7ca +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-hwprobe.py-24b252969bdd0062 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-healinglib.py-25bc94d817160d56 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-compat-subprocess-compat.py-25d33fa528bf485b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-entbranding.py-26f6d0b9bbba5465 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-280c4d68292a8b17 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---insights.cpython-36.pyc-28bf338555a787f0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---facts.cpython-36.opt-1.pyc-28c3e56d3d3f75d0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...firmware-info.cpython-36.pyc-29892b931b6c28cf +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-injectioninit.py-2aff206f55e1710a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...content-action-client.py-2b19dd8c87191dae +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...commands.cpython-36.opt-1.pyc-2b44df32cacbe3e5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---reasons.cpython-36.pyc-2be39de054f8e22f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...lib-systemd-system-rhsmcertd.service-2c94802b4b674504 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...action-client.cpython-36.opt-1.pyc-2cdb70453e7a2085 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...dbus---pycache---util.cpython-36.pyc-2df2f8e588452125 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...factlib.cpython-36.opt-1.pyc-2f3454b57fff8927 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-rhn-migrate-classic-to-rhsm.py-2f5b6c1ae2cf30df +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects---init--.py-2f7055bd65d8ed7d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-virt.py-2f782d18ac071c04 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cpuinfo.cpython-36.opt-1.pyc-2fa88b2966e4a20a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---ga-gtk3.cpython-36.pyc-2fd029ae46d26445 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...managercli.cpython-36.opt-1.pyc-30372b844810701b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-30a0f7eee95fa48d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.pyc-31507d9b9358733e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...base-action-client.cpython-36.opt-1.pyc-3188ea90dbc086a0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-exceptions.py-32955e1920ff2779 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...service-wrapper.cpython-36.pyc-32d3bf18b2946dde +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3318f5a9f2808e87 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...host-collector.cpython-36.opt-1.pyc-33df45ea1c9b4a19 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-etc-rhsm-rhsm.conf-33ee4e49801a8939 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---consumer.cpython-36.pyc-3419ecd31d1d6385 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---syspurpose.cpython-36.pyc-34b0b62cda4d916c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-34ea6e7e87928257 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---jsonwrapper.cpython-36.pyc-35b146ea416aeac4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...branding---init--.py-36c65341752e0eaa +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---injection.cpython-36.pyc-36f3339419203a70 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...content-action-client.cpython-36.pyc-36f6c95c79fb302c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...dependency-links.txt-379d0970069ebe1c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-397c6176322e5512 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-main.py-3afafb1aa1f3f7c8 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-facts-constants.py-3b500c04541a57ed +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...manifest-commands.cpython-36.pyc-3bbcbc87c82378b2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cache.cpython-36.opt-1.pyc-3c71a2616316392e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-3d2ec590cfbd1980 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-cache.py-3d9c1354cd5901a5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---attach.cpython-36.pyc-3e4c60f2e8734d5a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-compat---init--.py-3eccd932267e9421 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...unicode-width.cpython-36.pyc-3f0a70cacd650230 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3f93cf37a30614f0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsm-debug---init--.py-3fcbd5443c7f8fc6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...installedproductslib.py-40f78aa6fcafc114 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...bash-completion-completions-rhsmcertd-40ff3eae3072bf74 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-utils.py-41367cb87426cc0e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-sbin-subscription-manager-413bef9dc01e328e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-bin-rhsmcertd-41abed6856a450d6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-printing-utils.py-41c0c8181316afbd +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-constants.py-431cdec7050ff25d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---factlib.cpython-36.pyc-43ad9984140da8aa +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...unregister.cpython-36.opt-1.pyc-4489462acc30aef4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...identitycertlib.cpython-36.pyc-45cd675ebcbc73cd +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...collection.cpython-36.opt-1.pyc-46c59428a4dddead +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-etc-pam.d-subscription-manager-4710ab729ebf1497 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-syspurpose.py-47169e0fe3a89036 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...ga-loader.cpython-36.opt-1.pyc-474e11414355265f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-i18n.py-486b057bc62ef9df +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-lock.py-48a035f7c03a45d5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---lock.cpython-36.opt-1.pyc-48b3ddc761372864 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-listing.py-48b675f6f36ea5fc +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-gui.cpython-36.pyc-494ecbc8fa8063a3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...packageprofilelib.py-4a0430d918037391 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-unregister.py-4b54bd7974dd09c3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4d22e352e1974d50 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-facts-client.py-4e42ad7ba5f3aaa2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-cli.py-4e5f46db0b6f9a0c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---identity.cpython-36.pyc-4f62cd6e64060ea0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---listing.cpython-36.pyc-4fe6a5750a709eb5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---rhsm-debug.cpython-36.pyc-51b223adebc5a696 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...package-profile-upload.cpython-36.opt-1.pyc-52bd7711d00ee52a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rct---pycache---version.cpython-36.pyc-540c552565eb007e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...syspurposelib.cpython-36.pyc-547ecd5af85f2782 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-etc-dnf-plugins-product-id.conf-54bb6445b2fad991 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5501e1d157fec60f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...actions-com.redhat.RHSM1.Facts.policy-55b55ce3a9cfe817 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cp-provider.cpython-36.pyc-5713eede6635d8c2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhn-migrate-classic-to-rhsm-579b9abd50ab220c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...repofile.cpython-36.opt-1.pyc-58ca3014af8e77ae +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...validity.cpython-36.opt-1.pyc-59602a9532342e7a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...lib-systemd-system-rhsm-facts.service-5984ef7844ded846 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...base-plugin.cpython-36.opt-1.pyc-5b3ade2d2778f468 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-5b81bef3d2520328 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5b89bf3798a50a71 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-5c5be15c91500a69 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-api-repos.py-5cda6b951de64e38 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-entitlement.py-5cf0caa2a913114f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...debug-commands.cpython-36.opt-1.pyc-5cf471762f8d8973 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---api.cpython-36.pyc-5cf6632fd00bca3e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---rhelproduct.cpython-36.pyc-5cf813f46ef3db1f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...syspurposelib.cpython-36.opt-1.pyc-5d9e8faff2b65750 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-candlepin---init--.py-5f2ffb72232b713d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...custom.cpython-36.opt-1.pyc-5f561bcd3d1498c4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---products.cpython-36.pyc-609071b11c4e93bf +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cpuinfo.cpython-36.pyc-61957209304bc493 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-factlib.py-61a68cb908305f1b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-dbus-util.py-61f1ddff176dc560 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-62e6b8f9bf6a7398 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...attach.cpython-36.opt-1.pyc-63526e7a0b72793e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-dbus-server.py-636fc8fecd2e507c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-64a065ad0b23d9f3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cpuinfo.cpython-36.opt-1.pyc-64bc052f5e0c1842 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---release.cpython-36.pyc-64f067429ffa36bf +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...printing.cpython-36.opt-1.pyc-6539e8abb7aee4a5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---certlib.cpython-36.pyc-65d89bdc30d0d628 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...file-monitor.cpython-36.opt-1.pyc-670ab17ec3e53e97 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-67673167a92260b2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-facts-base.py-68a63769f524c68a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...i18n-argparse.cpython-36.opt-1.pyc-6b5f13a79c2ded79 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-6c6c7f977b3269b2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...printing-utils.cpython-36.opt-1.pyc-6de29c7e27124337 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-custom.py-6e01cc68d29b34ec +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---hwprobe.cpython-36.pyc-6f04c5a3eb58c565 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhn-migrate-classic-to-rhsm.cpython-36.opt-1.pyc-6f61be425ec76520 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...products.cpython-36.opt-1.pyc-7047e830799188a1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...register.cpython-36.opt-1.pyc-70caa0f18234264e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-productid.py-70eb3bda758c8d37 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-products.py-70f8633ac32db2d3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---client.cpython-36.pyc-715e136b390fc69b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...productid.cpython-36.opt-1.pyc-71b8b71193b30c06 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-72020bcc4b9a2c94 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-7229453558ea3dc6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...attach.cpython-36.opt-1.pyc-724e54f76a4526c9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 OTHER SPDXRef-Package-python-subscription-manager-7276605e595d4096 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...release.cpython-36.opt-1.pyc-72d05fdf1e08199f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-certdirectory.py-72d39653d075928c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...injectioninit.cpython-36.opt-1.pyc-730f29490945a7d9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhelentbranding.cpython-36.opt-1.pyc-73fa210d75f2b8dd +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services---init--.py-746dc23d2a70c14d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...system.d-com.redhat.RHSM1.Facts.conf-75131ac648ad9e00 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---productid.cpython-36.pyc-75239cad5e938319 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-facts-cloud-facts.py-75d7c3a54a459b13 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...constants.cpython-36.opt-1.pyc-769da245044daffb +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...com.redhat.RHSM1.Facts.service-76b8bd02481adc83 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...entitlement.cpython-36.opt-1.pyc-7759caf41624230c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-exceptions.py-779313b265ca4802 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...server.cpython-36.opt-1.pyc-779a47a0e07d7f44 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-791d567dca2dd2b7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...facts---pycache---all.cpython-36.pyc-7979e632a139555d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-7a046842b2d1a443 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...installedproductslib.cpython-36.opt-1.pyc-7b8b5cbe8813bbe7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---managerlib.cpython-36.pyc-7bc8bddaff601f05 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-etc-yum.repos.d-redhat.repo-7c883101633cb685 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...jsonwrapper.cpython-36.opt-1.pyc-7c9c220e46510bf8 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-rhsmcertd-worker.py-7cd271e1d130f025 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...requires.txt-7ce0fd65fc3e83ab +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-model---init--.py-7cfdbd2673666531 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-cp-provider.py-7d19733fa6adeeda +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...injectioninit.cpython-36.pyc-7de475d05f41e576 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-facts-insights.py-7e2853d26f834e65 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-unicode-width.py-7e66c40f66e3b07f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---register.cpython-36.pyc-7ed6ccad31c01225 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...constants.cpython-36.opt-1.pyc-7f122a197a99fac9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-7f7a3dfed1d5be99 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager.cpython-36.pyc-7fc024b8a04767ed +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-801dab2ad7ca448f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---ent-cert.cpython-36.pyc-82c3eb260c1cc0a5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---syspurpose.cpython-36.pyc-82e93f7b796fe509 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---entitlement.cpython-36.pyc-83f359963a36c5e1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-entitlement.py-844d3186e2904bb0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rct---init--.py-85f13e3d14c6f8f8 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---printing.cpython-36.pyc-86a3af916f40ced3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-isodate.py-870d0c4bf3130bf9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---dbus-utils.cpython-36.pyc-875d59c6e793d50a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-injection.py-88694d235281709e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-config.py-88834236fd3575cf +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-candlepin-api.py-895f6ac94a5f2241 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...com.redhat.RHSM1.service-896f622ce465a1e6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---ga-loader.cpython-36.pyc-89ba5bcb32221be7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...identity.cpython-36.opt-1.pyc-89e064967e6a8718 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts---init--.py-8a52f77df222d771 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---commands.cpython-36.pyc-8afd05e67c14c2e6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...installedproductslib.cpython-36.pyc-8b15e0c415873ba8 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...client.cpython-36.opt-1.pyc-8d78d7e1e89f9cb1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cert-commands.cpython-36.pyc-8dd005cce22b25ff +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---unregister.cpython-36.pyc-8f3d5a5f101c30b2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsm-debug-cli.py-8f4c4e2995a920f1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-attach.py-903e42ec4bad746b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-subscription-manager-gui.py-90eea1f9e61fb49a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...certlib.cpython-36.opt-1.pyc-91147e2f782516a1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-certlib.py-914501d72efea9dc +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9206d9df3b36e7e4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.pyc-92cb55c36b7fbc29 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---async-utils.cpython-36.pyc-92cc5d21ab5eceb6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rct-cert-commands.py-937f090a2eb521a4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-action-client.py-93a33d2ee640ab9b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhelentbranding.py-93f779744ed8da78 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---entbranding.cpython-36.pyc-942517f2a0177473 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...tmpfiles.d-subscription-manager.conf-9468a353bfc942ef +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-register.py-9470a73ed5f20dc8 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---constants.cpython-36.pyc-94a5f49121fe66ea +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-94a999b108608791 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-facts-host-collector.py-94bb70f3c0e98e3c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---collector.cpython-36.pyc-95303a50700ed05f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-reasons.py-95429fa2b2869687 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---isodate.cpython-36.pyc-95b2db07c87c45b8 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhelentbranding.cpython-36.pyc-9623069f5ac42d11 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...i18n-argparse.cpython-36.pyc-970387e4b2c51d52 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...syspurpose.cpython-36.opt-1.pyc-97161ed176fcc6b1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---repolib.cpython-36.pyc-976f3a7b0cc2b04a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...sat5to6.cpython-36.opt-1.pyc-98af6ae139f62d58 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...python3.6-site-packages-rct-cli.py-9903a351ff55f47b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...register.cpython-36.opt-1.pyc-9a069c6a427e7189 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rct-commands.py-9e0ca07b091f93d3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---i18n.cpython-36.opt-1.pyc-9e58e8a3a854519d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-etc-logrotate.d-subscription-manager-9f20476ba4dad8b3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...package-profile-upload.cpython-36.pyc-9f81a097f045b35f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...packageprofilelib.cpython-36.opt-1.pyc-a0034c5dc2a8d1af +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...top-level.txt-a01aee50d0a8ec7f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...entbranding.cpython-36.opt-1.pyc-a118ae7493a783c8 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-gui.cpython-36.opt-1.pyc-a183abdf81ad4ac5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-libexec-rhsmcertd-worker-a25534fa34908b06 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmcertd-worker.cpython-36.opt-1.pyc-a26c1e76d1eff394 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsm-facts-service.cpython-36.opt-1.pyc-a2b44073a80564c3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a2fdee8d133d6a61 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subprocess-compat.cpython-36.opt-1.pyc-a35989dc2e012a1e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-dmiinfo.py-a3a43fdd567524f2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-a3ad8c5af0b398a0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...identitycertlib.py-a3c629d2f8052cce +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---healinglib.cpython-36.pyc-a4c2aa4a1221a10e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-identity.py-a4d9db194cee2f34 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-i18n-argparse.py-a50be5ebef638562 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-a628f578ce14207c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---base-object.cpython-36.pyc-a6f493eb8ed7c32c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---constants.cpython-36.pyc-a7d5a36c7a4dd617 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-consumer.py-a7f58e151d379b5f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...entry-points.txt-a859889535112d8d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsm-debug-debug-commands.py-a8a3ab6a478d7eef +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cert-commands.cpython-36.opt-1.pyc-a934f62dfd28ebed +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---validity.cpython-36.pyc-a98741a21a5c3e7b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...manifest-commands.cpython-36.opt-1.pyc-a9adfbd42fdae29e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-async-utils.py-a9c1940e8a90a959 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---dmiinfo.cpython-36.pyc-a9ddf08816883be7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-overrides.py-aa8be5e35d503a1e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---repos.cpython-36.opt-1.pyc-aab253cb69db2ffd +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-config.py-ac2895ac11ec4fb4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...api---pycache---repos.cpython-36.pyc-ad37d452f1f8f4a1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-repofile.py-ad489cffe026ecd7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-managercli.py-ad6112292d1f4720 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-af11075ffe4f4bf0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-file-monitor.py-b17a556420f5482d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.pyc-b195fcac439ef9fb +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...ga-impls-ga-gtk3.py-b1e9a4ff37d62c6c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-rhelproduct.py-b3a32a9b3a3d1b65 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-version.py-b4207f60f9408492 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...collector.cpython-36.opt-1.pyc-b5fbdafc5548ffe3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...kpatch.cpython-36.opt-1.pyc-b65c79af25c74b9b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-facts---init--.py-b7ce3066101bc2d6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cp-provider.cpython-36.opt-1.pyc-b88c20b7a6ffe6f4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---entitlement.cpython-36.pyc-b915dbd2cfb05a43 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...dmiinfo.cpython-36.opt-1.pyc-ba710e9ce328a13e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...insights.cpython-36.opt-1.pyc-baa82d6233f540a3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---unregister.cpython-36.pyc-babf2f00c98fb1a4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---kpatch.cpython-36.pyc-bb8298191049386e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cert-sorter.cpython-36.pyc-bce0ac85293257e9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...reasons.cpython-36.opt-1.pyc-bdfbefda19d42459 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...share-bash-completion-completions-rct-c01267cebf010579 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsm-service.cpython-36.opt-1.pyc-c048e9203f30eed7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-objects-attach.py-c060d31cf163a5f3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---custom.cpython-36.pyc-c11473d25cf42341 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...refresh.cpython-36.opt-1.pyc-c187c7c5813d6836 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...ent-cert.cpython-36.opt-1.pyc-c40c30180451b9df +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c52aabcd8aed47e6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-all.py-c5a3deacab657085 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...unregister.cpython-36.opt-1.pyc-c5b9f2bd23779761 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-api---init--.py-c6650269d36fe020 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...console.apps-subscription-manager-c79a3e544afff38d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...identitycertlib.cpython-36.opt-1.pyc-c817683025451839 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cpuinfo.cpython-36.pyc-c91403c0707df374 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c91a3307660ff4ef +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...products.cpython-36.opt-1.pyc-c94607c60b71e58b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---managercli.cpython-36.pyc-c956b1c425cad418 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---i18n.cpython-36.pyc-c98fb32731ac9426 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-bin-rct-cb405c6a1c4083f5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...python3.6-site-packages-rct-version.py-cc2b927d445b1b7c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsm-facts-service.cpython-36.pyc-ce32cf8be204e388 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...base-action-client.cpython-36.pyc-ce61d1001c87f6ec +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-dbus-utils.py-cee386adc41caac1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-syspurpose.py-cef7d8f7f8c5a34f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-ga-loader.py-cf08729147545744 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-cpuinfo.py-d07aad3916a1b747 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cleanup.cpython-36.pyc-d0f57a3b93fc764d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...hwprobe.cpython-36.opt-1.pyc-d17d03ba2dddda50 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-jsonwrapper.py-d1a0a1f174c1cad2 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-facts-firmware-info.py-d26b1f446b726877 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d29a23ca2810abd7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...entcertlib.cpython-36.opt-1.pyc-d328993abca86549 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-facts.py-d35a2a3b38417599 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cleanup.cpython-36.opt-1.pyc-d3bb6ef11a72b48d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...injection.cpython-36.opt-1.pyc-d5708b9e90783368 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---plugins.cpython-36.pyc-d6af94093366c622 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cache.cpython-36.pyc-d6b9726a1e73acf0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---virt.cpython-36.opt-1.pyc-d7af69f90cc5c479 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...listing.cpython-36.opt-1.pyc-d83f5b19b3e50dbe +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...entitlement.cpython-36.opt-1.pyc-d874ce322c03b6bc +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...content-action-client.cpython-36.opt-1.pyc-d8f46e36e70b9e20 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cert-sorter.cpython-36.opt-1.pyc-d95cb9747208aa5b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...ga-impls---init--.py-d99aa0b6869f5020 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...PKG-INFO-d9e8b274b2c0eda7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d9edf31306aa5fc6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...action-client.cpython-36.pyc-da986cffcb45f437 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-dc492f434bb8b38b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...redhat-branding.cpython-36.pyc-ddf38d689b02016c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-register.py-de4681094d70267f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...dbus---pycache---server.cpython-36.pyc-de57585b43802b89 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts---pycache---rct.cpython-36.pyc-df5b7e8071eadffe +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...printing-utils.cpython-36.pyc-e00e12c1b9111e8f +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager.cpython-36.opt-1.pyc-e071192b03f358e5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e08ea33543746d8a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-model-ent-cert.py-e09663414796cc53 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-exceptions.py-e26c00113c72e066 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsm-debug.cpython-36.opt-1.pyc-e38f31f81b6628f1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e4c62cfa29f57324 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-e5017e07aae456d9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-etc-rhsm-logging.conf-e6dc5e722b02acec +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---entcertlib.cpython-36.pyc-e73cfd46fdd23057 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---attach.cpython-36.pyc-e7fd2728d97cfb03 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...ga-gtk3.cpython-36.opt-1.pyc-e82fabb28224bf5d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e836bcad45c0759d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---overrides.cpython-36.pyc-e8c03036a9d7d527 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---collection.cpython-36.pyc-e9d8ce82384d322e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...base-action-client.py-ea0590f75013f59d +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-eacae27c4b8a73e6 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---sat5to6.cpython-36.pyc-ec8192f694fffda5 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...cloud-facts.cpython-36.opt-1.pyc-ecbf29e81ac521f0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-rhsm-debug.py-eda076a202a4a869 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---version.cpython-36.pyc-ee4276565912c304 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-bin-rhsm-debug-ee7fab936296c48c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...host-collector.cpython-36.pyc-f09fb466278c87a4 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-bin-consolehelper-f0cf2a189ff3bb74 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---base-plugin.cpython-36.pyc-f0f33f5dccd8fab1 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-facts-collection.py-f2f4daa1b064e5ad +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...actions-com.redhat.RHSM1.policy-f3bc1d932f655153 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---consumer.cpython-36.pyc-f4f5680fabfbe81e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-service-wrapper.py-f551eb6de8585d7c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-facts-collector.py-f6302d2264ff079a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.pyc-f66c901ace0d476c +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhelproduct.cpython-36.opt-1.pyc-f7454225aa29b2d7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-unregister.py-f76cbfbb9e1c3009 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-entcertlib.py-f83f6999df8f91a0 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-libexec-rhsm-facts-service-f85ae7c2a0b61a7a +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---register.cpython-36.pyc-f86e2fda304d7c0e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-dbus-base-object.py-fa1e0f10d949c898 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...bash-completion-completions-rhsm-debug-fa28bcf296e48e99 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...dbus-utils.cpython-36.opt-1.pyc-fa86baf384b7be37 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rct---pycache---cli.cpython-36.pyc-faac9dba8ddd425b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-usr-lib-systemd-system-rhsm.service-facdebd80012518b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...overrides.cpython-36.opt-1.pyc-fad383de793af3fe +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---rct.cpython-36.opt-1.pyc-fafae58617363932 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...service-wrapper.cpython-36.opt-1.pyc-fb44a6ad0b9b90a9 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...site-packages-rhsmlib-facts-cleanup.py-fb4960d89460175b +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-fc42c6df844b1200 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-fd5d76d89b651662 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...rhsmlib-services-products.py-fe720d912c405170 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...scripts-package-profile-upload.py-fee00451ce123d99 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...firmware-info.cpython-36.opt-1.pyc-ff0ae1a601c5cff7 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...plugins.cpython-36.opt-1.pyc-ff2e26cc368719f3 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...dbus-1-system.d-com.redhat.RHSM1.conf-ff740cbacd5e792e +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-ff95a23337c1ffeb +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...plugin---init--.py-ff981de0798146fb +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-ffc2c3fa72149155 +Relationship: SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 CONTAINS SPDXRef-File-...subscription-manager-syspurposelib.py-ffc6fb59f6408e06 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.sessionstats-2a94d6299aad479a OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.sessionstats-1.0.81.jar-2069e7d0cc7ed243 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.mail.2.1-2ab37d9ff119e432 OTHER SPDXRef-File-...io.openliberty.jakarta.mail.2.1-1.0.81.jar-a9b4dd70c1247053 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-curl-2ac75dd8cdd82d1d CONTAINS SPDXRef-File-usr-bin-curl-952ce60cd528f93b +Relationship: SPDXRef-Package-rpm-curl-2ac75dd8cdd82d1d CONTAINS SPDXRef-File-usr-share-zsh-site-functions--curl-b56b385ca9f3c90c +Relationship: SPDXRef-Package-rpm-curl-2ac75dd8cdd82d1d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libidn2-2ad5f614b681561b CONTAINS SPDXRef-File-...share-licenses-libidn2-COPYING.unicode-77f5cdb623a4912c +Relationship: SPDXRef-Package-rpm-libidn2-2ad5f614b681561b CONTAINS SPDXRef-File-usr-lib64-libidn2.so.0.3.6-8fb1776496cda610 +Relationship: SPDXRef-Package-rpm-libidn2-2ad5f614b681561b CONTAINS SPDXRef-File-usr-share-licenses-libidn2-COPYINGv2-a59e496b3569301b +Relationship: SPDXRef-Package-rpm-libidn2-2ad5f614b681561b CONTAINS SPDXRef-File-...licenses-libidn2-COPYING.LESSERv3-c636c58590ba3c29 +Relationship: SPDXRef-Package-rpm-libidn2-2ad5f614b681561b OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libidn2-2ad5f614b681561b CONTAINS SPDXRef-File-usr-share-licenses-libidn2-COPYING-eea0f276ab7de75c +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.product.utility.productutil-2bb22c41f2f6d52f OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-productutil.jar-ed699c86ff9a98ec +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.quickstart-2bd4ccbf2bffd031 OTHER SPDXRef-File-...com.ibm.ws.security.quickstart-1.0.81.jar-48af24264190fe3f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.war.jakarta-2c425a89cc925a53 OTHER SPDXRef-File-...com.ibm.ws.app.manager.war.jakarta-1.0.81.jar-6fb5a10a31b0d48f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-auditreader-2cb4d0d746cdae86 OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-auditreader.jar-dac94bd442e85e0b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-pyinotify-2cc0497e30b46d84 OTHER SPDXRef-File-...PKG-INFO-bf244285e2e636bf +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.security-2d6fc057b2b6172c OTHER SPDXRef-File-...com.ibm.websphere.security-1.1.81.jar-b1f2f0fb0c6dadfc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v33-00dbb75140f7ce52 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-c-cygwin-022a2d3fb19de022 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-031104521fc21fc9 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-new-0417a7571d361596 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-unicode-0482e06816801320 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-tabset-std-0601e56c179ca54c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-n-nxterm-064f0f9e87ebde6a +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-color-08019ecd06dd4c1c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-t-teraterm2.3-0968991a09bb26a5 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-p-putty-256color-0ab5338e56fdb9b0 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v44-0ab95e08bdd5daeb +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-0bb70b801a1bd9a5 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-t-teraterm-0bf4077a32ccd5e4 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-1005-0fa1916a0103d64e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-st-16color-127fe09de2553da4 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.konsole-12b72cddb695e4b5 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vwmterm-1429572ecdc92212 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v32-14b658d292d717f6 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-m-mlterm-18339fe4bfd46847 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-256color-187cb5843387b086 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...terminfo-s-screen.mlterm-256color-1bbcae5aa21e4da1 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...share-licenses-ncurses-base-COPYING-1c153009ab95459a +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-h-hurd-1dafc1246000f513 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-hp-1db10c90c941438c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-m-mach-gnu-23b60373da2ddc76 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xi-24da9a3a06420e0c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...share-terminfo-s-screen.xterm-xfree86-2a44489eaa479241 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-1006-2a61970a223ddf68 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-bold-2b9229c0dfc61890 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...terminfo-s-screen.konsole-256color-2c2a28adc513956a +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.mlterm-2c662d5871b64cba +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-w-wsvt25m-2d377b7a9a913722 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-k-konsole-2e3bf270d499cd73 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-g-gnome-256color-326d6d8cf37de313 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-sco-34496067479fea31 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-e-eterm-color-3467776397234902 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.mrxvt-3670b65f3c7fb009 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-stterm-256color-37c4bb7ab75deffd +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-tabset-stdcrt-389c97d54a3f7d15 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-vt220-3a3579d21756beaf +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-e-eterm-3af9134a11d37f70 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-st-256color-411fc61bbb5c0ff6 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vt100-am-42f5470e95dc5d4b +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.Eterm-49f222f62b2ef70c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-r6-4b80715f75cae38b +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen-16color-4e170ee94a866841 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-x11hilite-50ab9485cf504537 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-m-mrxvt-563ec1402711dcc8 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-c-cons25-56bf5b4074398af9 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.gnome-56cee7543a6c70ff +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.xterm-new-58a0975089c93016 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-noapp-5a7ecb53116643a5 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...share-terminfo-s-screen.putty-256color-5b9eb5d82d6833c0 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-p-putty-5bfff9a23bc7a9e8 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-E-Eterm-5c36e55895fda695 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-a-ansis-5cb4af1eda171299 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-g-gnome-5cd1dc4992e2f234 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-88color-5f774efa70be7727 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v40-62241a46a0cbe63e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-j-jfbterm-6251c13e778bbfd3 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v333-633540a6e67e157f +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-old-64eaa13dc582e538 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.putty-65d58180cb0744ba +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.linux-66b5b28e1b45745e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen-256color-66f98a83c9a99058 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-stterm-67262e90f89870ba +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-E-Eterm-color-6a8e76d95c493723 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-8bit-6afbdb5c6c58208d +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.vte-6dde0eff7e86d579 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-d-dumb-6f741566fce62cd4 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...share-terminfo-r-rxvt-cygwin-native-7673c83047eb0754 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-n-nsterm-7824da4a5e60ba42 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-basic-7aee846ff92d1953 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...share-terminfo-s-screen.xterm-256color-7b1bb12b6d43fa2e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vt100-7bf06233cf19aa13 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-sun1-7ed7c3941670a596 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vt102-8015889519693330 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.teraterm-8027572b48475e7e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-E-Eterm-256color-8079f7537cc4f92e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-pcolor-8654f4396a5f6ece +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vte-87928dcd7e1b1045 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-xpm-8a8a1155677934c4 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-stterm-16color-8d14d4ab0c9a90c6 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-sun-8f8b76a51516fe71 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-1002-90692680f3c921d7 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vt200-920308582bac7479 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xfree86-946184bb85d598d4 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-x10mouse-981ac444ee600e8a +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-tabset-vt100-98fabed2880a6a55 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-st-9c169a3a80293007 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-k-konsole-256color-9cb14e3887ea7885 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-a-ansi80x25-a0da2d34e983faec +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-w-wsvt25-a2e8952006879bf1 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-k-kon-a2f403d86e0e70f3 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xfce-a7b752d5bade4480 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-direct-a7b7c0f952d600ac +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-...share-terminfo-s-screen.vte-256color-a891f8b91e6c5bad +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-1003-a8d12247bcbab41d +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-basic-a96dcc7e7b036734 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vte-256color-a9b4842e40b9ffba +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-color-aa7719b5d5385e99 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-m-mach-gnu-color-acc6dd925fe347bd +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-t-tmux-af248ea2538319fe +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vt52-b28c885ce811647d +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-sun2-b29cfd74c1a828d9 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-cygwin-b38aea14808b4fb2 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vt100-nav-b5e1d2a5bad09380 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-a-ansi-b74077d2d9e47a6d +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-A-Apple-Terminal-bf0c97d738b05b6d +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-k-kon2-c1e55e5e77d2b981 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-r5-c34c63e65da2f03b +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-256color-c4e60500c8bd1a5e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.xterm-r6-c9ed3174e165a54c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-24-cbb9ef2d95e96f0e +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-m-mach-color-cc891254d2e02b14 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-l-linux-cec34df49a89dc86 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-x11mouse-cfddef43a9317759 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-m-mach-bold-d0591ebb3267c49c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-r-rxvt-16color-d4b8586fab01ea26 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-m-mach-d56e39d5b5876fa4 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-vt52-d9eacb9fd5fcfde1 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-direct2-db47ed5d56527a43 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-xf86-v43-ddadf4dd8b4d645b +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vt220-ddcab038b98f0ed4 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen-dde79a383a09d776 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-16color-de8f1c0dd96f4e47 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-tabset-vt300-dfc562df8c9afa8a +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-E-Eterm-88color-e088641be4c7de77 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-t-tmux-256color-e19e872323b94513 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-a-aterm-e4f83ba0f1f0962c +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterms-e86c468ba26eb2e9 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-v-vs100-e87a3f4d03be548b +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-s-screen.rxvt-eef34bb2e95fe2ad +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-nic-ef26ce3199c699ac +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-88color-f03a1cbb12729bb1 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-p-pcansi-f6098fe27af5542f +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-b-bterm-f8cdf9d727319f67 +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-utf8-fb85e3b03682e11f +Relationship: SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 CONTAINS SPDXRef-File-usr-share-terminfo-x-xterm-sun-fd5c82e8b5b0457b +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.glassfish.hk2.osgi-resource-locator-2dd36d13eb338803 OTHER SPDXRef-File-...io.openliberty.org.glassfish.hk2.osgi-resource-locator-1.0.81.jar-45bf0b29511bcec5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...bash-completion-completions-syspurpose-04c72526b0376275 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.pyc-1ea30d4df51e6b96 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...PKG-INFO-26f5dca0b03dd114 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...site-packages-syspurpose---init--.py-31cd169f5e08bef9 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-etc-rhsm-syspurpose-valid-fields.json-370e95071e132f85 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-3a7a37b46084b2d2 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4adcd7f1a48e8c12 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-4c9ceb2cdf20187e +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-4ed87de7e93ab353 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---files.cpython-36.pyc-538ab6e7bca32cf2 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.pyc-598aecd0ec5f8a94 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...site-packages-syspurpose-cli.py-6189f593eb0c22fa +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---files.cpython-36.opt-1.pyc-71d4cdc34dd29f94 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...entry-points.txt-87ab44d2b959a6dd +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.pyc-93a7f5a8c292ff86 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...top-level.txt-99a62eb9d87042c4 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...SOURCES.txt-a77c6d35cc0debc8 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-usr-sbin-syspurpose-b40cfa1da3b7ad47 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---i18n.cpython-36.pyc-c16eba93720c04d6 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 OTHER SPDXRef-Package-python-syspurpose-c2c79d0712654121 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...site-packages-syspurpose-files.py-cfc0a00ca4348a64 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d63c204f605bf103 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...site-packages-syspurpose-i18n.py-dec7076f1952259c +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...dependency-links.txt-decf0b32a6cb7618 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...--pycache---i18n.cpython-36.opt-1.pyc-e76e5bf39c5ecc57 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...site-packages-syspurpose-utils.py-ed3d1e293a2470c6 +Relationship: SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 CONTAINS SPDXRef-File-...site-packages-syspurpose-main.py-f38f10ebc17098e2 +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.enterpriseBeans.4.0-2e6d7754bdcf7906 OTHER SPDXRef-File-...io.openliberty.jakarta.enterpriseBeans.4.0-1.0.81.jar-4bac58477431d801 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-...ethtool-0.14-py3.6.egg-info-PKG-INFO-2738b5642c2848f5 +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 OTHER SPDXRef-Package-python-ethtool-47e0eb55544e9981 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-...SOURCES.txt-4a1f3f1d66efdd6d +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-...ethtool.cpython-36m-x86-64-linux-gnu.so-52f4ae7d1d842047 +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-...top-level.txt-63568b39c201fdcd +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-...dependency-links.txt-6c7bd81899114741 +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-usr-sbin-pethtool-855a4e8d0dc38ed6 +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-...share-licenses-python3-ethtool-COPYING-92ec5d58bd3c8909 +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 CONTAINS SPDXRef-File-usr-sbin-pifconfig-d11a72bb2dc6e8a9 +Relationship: SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f CONTAINS SPDXRef-File-usr-bin-trust-0b067f094056a8d5 +Relationship: SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f CONTAINS SPDXRef-File-...bash-completion-completions-trust-344d6e12a0ee7993 +Relationship: SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f CONTAINS SPDXRef-File-...libexec-p11-kit-trust-extract-compat-b701e74a00c19bd6 +Relationship: SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f CONTAINS SPDXRef-File-...p11-kit-modules-p11-kit-trust.module-be11d4f39c846246 +Relationship: SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f CONTAINS SPDXRef-File-usr-lib64-pkcs11-p11-kit-trust.so-c21a87826612dd6b +Relationship: SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.apache.commons.logging-31c3e284ec109962 OTHER SPDXRef-File-...io.openliberty.org.apache.commons.logging-1.2.81.jar-f755f06cf7d38ddb +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact.zip-327efb05b0ed769a OTHER SPDXRef-File-...lib-com.ibm.ws.artifact.zip-1.0.81.jar-518251f252a041c3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.containerServices-32bf4b13c197596c OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.containerServices-4.0.81.jar-1505b09ac51969ee +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.security-338956fc7ac5ebb9 OTHER SPDXRef-File-...ibm-io.openliberty.security-1.3.81.jar-51798608285d4446 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-setuptools-wheel-33a76a121de2018e CONTAINS SPDXRef-File-...setuptools-39.2.0-py2.py3-none-any.whl-5a892c898d067ef6 +Relationship: SPDXRef-Package-rpm-python3-setuptools-wheel-33a76a121de2018e CONTAINS SPDXRef-File-...python3-setuptools-wheel-LICENSE-7c82c126a1a287d1 +Relationship: SPDXRef-Package-rpm-python3-setuptools-wheel-33a76a121de2018e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-...share-licenses-dnf-PACKAGE-LICENSING-1e6a857e58f598cf +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-usr-share-licenses-dnf-COPYING-2b04a7f24c4aa6ff +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-...libreport-events.d-collect-dnf.conf-3f01ae444977b153 +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-etc-dnf-dnf.conf-5415cd13736cacdc +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-etc-logrotate.d-dnf-8ca272940c14476e +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-var-log-hawkey.log-ac57c936cbd2e4c2 +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-var-log-dnf.librepo.log-ad6b7fec418d15b1 +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-var-log-dnf.log-b04fd137817fe243 +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-var-log-dnf.rpm.log-cc0590da116b02c0 +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-dnf.conf-cd29427268b72efc +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dnf-data-33e095fce1938853 CONTAINS SPDXRef-File-etc-dnf-protected.d-dnf.conf-e1a23125cb6c7590 +Relationship: SPDXRef-Package-java-archive-io.openliberty.accesslists.internal-348779c8b4c0f3c7 OTHER SPDXRef-File-...io.openliberty.accesslists.internal-1.0.81.jar-a4f57d2a8539555b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.lifecycle-34c625553449efde OTHER SPDXRef-File-...com.ibm.ws.app.manager.lifecycle-1.0.81.jar-c911c9dac217d462 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.dynacache.internal-3679127cfbf6d051 OTHER SPDXRef-File-...io.openliberty.dynacache.internal-1.0.81.jar-5cfab70da35221e5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot-38c971b780108cd4 OTHER SPDXRef-File-...lib-com.ibm.ws.kernel.boot-1.0.81.jar-d95b1236acd055fd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.java11.internal-38ddfeb1154186b8 OTHER SPDXRef-File-...io.openliberty.java11.internal-1.0.81.jar-8f0bbd106d0e608a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-pcre-39055d7c30264ebc CONTAINS SPDXRef-File-usr-share-licenses-pcre-LICENCE-2024cbee757274b1 +Relationship: SPDXRef-Package-rpm-pcre-39055d7c30264ebc CONTAINS SPDXRef-File-usr-lib64-libpcre.so.1.2.10-54d89969af7ae7f8 +Relationship: SPDXRef-Package-rpm-pcre-39055d7c30264ebc CONTAINS SPDXRef-File-usr-share-licenses-pcre-COPYING-84ef21562d09300b +Relationship: SPDXRef-Package-rpm-pcre-39055d7c30264ebc CONTAINS SPDXRef-File-usr-lib64-libpcreposix.so.0.0.6-ae2e023dddc5d116 +Relationship: SPDXRef-Package-rpm-pcre-39055d7c30264ebc OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-json-c-399cffcbd42f5af6 CONTAINS SPDXRef-File-usr-lib64-libjson-c.so.4.0.0-3517408a541ae959 +Relationship: SPDXRef-Package-rpm-json-c-399cffcbd42f5af6 CONTAINS SPDXRef-File-usr-share-licenses-json-c-AUTHORS-557fa83d87a9b427 +Relationship: SPDXRef-Package-rpm-json-c-399cffcbd42f5af6 CONTAINS SPDXRef-File-usr-share-licenses-json-c-COPYING-bc6d053356401aba +Relationship: SPDXRef-Package-rpm-json-c-399cffcbd42f5af6 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-virt-what-3a5a55ee259fe7fc CONTAINS SPDXRef-File-usr-libexec-virt-what-cpuid-helper-52c610d2ce7df1a3 +Relationship: SPDXRef-Package-rpm-virt-what-3a5a55ee259fe7fc OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-virt-what-3a5a55ee259fe7fc CONTAINS SPDXRef-File-usr-sbin-virt-what-f384c47acbc017e9 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.ssl-3a6d9f1416bf3550 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.ssl-1.5.81.jar-0ee4a6e722e22f10 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.authentication-3a8a7a13c07386b2 OTHER SPDXRef-File-...com.ibm.ws.security.authentication-1.0.81.jar-ea0c109db6342fa9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libutempter-3b10d50d8648cfcf CONTAINS SPDXRef-File-usr-share-licenses-libutempter-COPYING-572609dd307d17bf +Relationship: SPDXRef-Package-rpm-libutempter-3b10d50d8648cfcf CONTAINS SPDXRef-File-usr-libexec-utempter-utempter-ddb7833ec5aed11f +Relationship: SPDXRef-Package-rpm-libutempter-3b10d50d8648cfcf OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libutempter-3b10d50d8648cfcf CONTAINS SPDXRef-File-usr-lib64-libutempter.so.1.1.6-e2009bfa4c17a8e8 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.embeddable-3b8d907fb16b2e94 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.embeddable-1.1.81.jar-fb628820b43b5c28 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-sqlite-libs-3c14677b35b16020 CONTAINS SPDXRef-File-usr-lib64-libsqlite3.so.0.8.6-1001f1ca1b9f052a +Relationship: SPDXRef-Package-rpm-sqlite-libs-3c14677b35b16020 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.coordinator-3c4d4100ae462734 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.coordinator-1.0.81.jar-d0743a60ecec3268 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.equinox.module-3c7f2e9024265206 OTHER SPDXRef-File-...com.ibm.ws.kernel.equinox.module-1.0.81.jar-0849764e1a973fad +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.diagnostics-3ce69f18c6c57288 OTHER SPDXRef-File-...lib-com.ibm.ws.diagnostics-1.0.81.jar-1e382bfe288892f6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.webcontainer.security.internal-3d1dbec5aaae7993 OTHER SPDXRef-File-...io.openliberty.webcontainer.security.internal-1.0.81.jar-914a2371aef03ce8 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-pcre2-3da25cce088d6f35 CONTAINS SPDXRef-File-usr-lib64-libpcre2-posix.so.2.0.1-1f5722aab24ff725 +Relationship: SPDXRef-Package-rpm-pcre2-3da25cce088d6f35 CONTAINS SPDXRef-File-usr-share-licenses-pcre2-LICENCE-40736386285f68cb +Relationship: SPDXRef-Package-rpm-pcre2-3da25cce088d6f35 CONTAINS SPDXRef-File-usr-lib64-libpcre2-8.so.0.7.1-4088ef734a94853d +Relationship: SPDXRef-Package-rpm-pcre2-3da25cce088d6f35 CONTAINS SPDXRef-File-usr-share-licenses-pcre2-COPYING-dd3842a2b6cdb2b9 +Relationship: SPDXRef-Package-rpm-pcre2-3da25cce088d6f35 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.component-3f51d271514f2837 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.component-1.1.81.jar-f97cdd1b2eb7bb1c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-PAPER-0144b56250caa36e +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-getconf-05eb3796b00473d1 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-COLLATE-09af79f2ca234748 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-iconv-1cf9a78ec9f64d75 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-ADDRESS-1fd32ac4d065a7cd +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-TELEPHONE-2422032a4b95d04b +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-sprof-31f84a9d41863861 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-...C.utf8-LC-MESSAGES-SYS-LC-MESSAGES-359857bfac54ae1c +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-localedef-4c87c226994103f2 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-...lib-locale-C.utf8-LC-IDENTIFICATION-5678c4e0e1c656c5 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-gencat-57ba352f84ca9c20 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-pldd-6451af671105ffcf +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-share-locale-locale.alias-672cfb4202427c09 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-CTYPE-69de207c4f5570a2 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-ldd-6ce038fb9ee081d9 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-sbin-zic-6e44a79e99cd0e2b +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-MONETARY-6fc4930073dab20e +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-TIME-7685769238c4432d +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib64-ld-2.28.so-899b84a654a23ae4 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-makedb-941cb55c1d25b8c6 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-NAME-954e32b29f2c0091 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-getent-b4027803010b6686 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-tzselect-ba5bd5bfee958294 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-sbin-zdump-ba674b217a4fa67c +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-NUMERIC-bfc0351061dc4756 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-catchsegv-c003dbceb8d7986f +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-locale-cc62172f88b769bc +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-bin-sotruss-d01224775e07a109 +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e CONTAINS SPDXRef-File-usr-lib-locale-C.utf8-LC-MEASUREMENT-dedc119633386903 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.cdi.weld.jakarta-3fb2f035da57ce2b OTHER SPDXRef-File-...com.ibm.ws.cdi.weld.jakarta-1.0.81.jar-d0a1cba265beed50 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.anno-3fb825ea1e85acd7 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.anno-1.1.81.jar-18a6f815c8767cfc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.transaction-40203f0f030d57c8 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.transaction-1.1.81.jar-bc330c7d1af04ac5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-vipw-04c01be4c8ffa4c4 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-newusers-17a55fb0983aa27e +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-groupadd-2dbf845c572259d0 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-bin-lastlog-32a377518867f99f +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-usermod-394cd426db35541f +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-bin-chage-395c90859219267a +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-...licenses-shadow-utils-shadow-bsd.txt-3d94ebd79d6bc361 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-grpunconv-43e3afd5c68951c7 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-etc-login.defs-46c7f883387232ca +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-etc-default-useradd-4ce18e0c0164a351 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-bin-gpasswd-677e1db91b5b7fb4 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-groupdel-944deb58373f0bcd +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-pwunconv-996b4ddc0dff6b4a +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-grpconv-a44a2ef8547b1597 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-pwconv-a59004f305f8cc04 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-userdel-a6d7d896270ba7fe +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-groupmod-a86e343ed25abfa9 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-groupmems-aa5c7fbf92d2015c +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-chgpasswd-b27ca77cb4e04682 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-useradd-bdf0602370255068 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-grpck-c0a2a782bc0aed75 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-pwck-c1ca1fd8d7b3335f +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-...licenses-shadow-utils-gpl-2.0.txt-c9b3d4e1970a5a6c +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-bin-newgrp-ce1b81db2983ae25 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-sbin-chpasswd-e21ffa82d3f56fc2 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-bin-newgidmap-e25f16725e941183 +Relationship: SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a CONTAINS SPDXRef-File-usr-bin-newuidmap-f7a69fcc550d39d3 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.install.featureUtility-4071c9e1c073c1e5 OTHER SPDXRef-File-...com.ibm.ws.install.featureUtility-1.0.81.jar-1cdd43728057c16d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-...doc-nftables-examples-secmark.nft-0070656fedb6f7ea +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-...nftables-examples-load-balancing.nft-11b08391036faa3a +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-etc-nftables-main.nft-1d998067f80fd5f8 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-etc-nftables-osf-pf.os-466ba07e05bd8df5 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-etc-nftables-nat.nft-5e0c3b6bdb8b0ac1 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-usr-lib64-libnftables.so.1.0.0-6321b173391448af +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-etc-nftables-router.nft-683eb59791d91368 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-usr-share-man-man8-nft.8.gz-69d6e490cd8ee7de +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-...nftables-examples-sets-and-maps.nft-94b3afcc42cbd91d +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-...lib-systemd-system-nftables.service-9c1eb611e12c69e0 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-usr-sbin-nft-bb6c1623b69e66b7 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-...doc-nftables-examples-ct-helpers.nft-c0fac319263f2de3 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-etc-sysconfig-nftables.conf-cbba7caadf5b2db4 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-...share-man-man5-libnftables-json.5.gz-cedf7382ec8d9999 +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 CONTAINS SPDXRef-File-usr-share-licenses-nftables-COPYING-e5bb6a147c8980c2 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.service-421932a8e40184c4 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.service-1.8.81.jar-81fcdeddee0d0f8e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.security.feature-4219f8419578111a OTHER SPDXRef-File-...com.ibm.ws.webcontainer.security.feature-1.0.81.jar-001ba78f09c106c4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-basesystem-423a8fdad2b882bb OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakartaee.platform.v9-4281e9510ade84e9 OTHER SPDXRef-File-...io.openliberty.jakartaee.platform.v9-1.0.81.jar-79455cec71ad77d9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.monitor.jakarta-42a0bfb4d82d0246 OTHER SPDXRef-File-...com.ibm.ws.webcontainer.monitor.jakarta-1.0.81.jar-d64367108172feb1 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.product.utility.productutil-42ba1f36b46a3a6a OTHER SPDXRef-File-...com.ibm.ws.product.utility-1.0.81.jar-61ccc7854aca503d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.jboss.weld5-42d3117b8c69897a OTHER SPDXRef-File-...io.openliberty.org.jboss.weld5-1.0.81.jar-c6bf066b5f46b83f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dnf-4418429efe47422c CONTAINS SPDXRef-File-usr-bin-dnf-3-16175176c3acd9d0 +Relationship: SPDXRef-Package-rpm-dnf-4418429efe47422c CONTAINS SPDXRef-File-...lib-systemd-system-dnf-makecache.timer-1aa1f909a4e0339f +Relationship: SPDXRef-Package-rpm-dnf-4418429efe47422c CONTAINS SPDXRef-File-...share-locale-en-GB-LC-MESSAGES-dnf.mo-21984a59091bd9b2 +Relationship: SPDXRef-Package-rpm-dnf-4418429efe47422c CONTAINS SPDXRef-File-...share-bash-completion-completions-dnf-53943a082ad0c5d5 +Relationship: SPDXRef-Package-rpm-dnf-4418429efe47422c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dnf-4418429efe47422c CONTAINS SPDXRef-File-...systemd-system-dnf-makecache.service-e958fe25483b76cc +Relationship: SPDXRef-Package-rpm-nettle-446fa052fc193975 CONTAINS SPDXRef-File-usr-share-licenses-nettle-COPYINGv2-14c391e6daf59c5b +Relationship: SPDXRef-Package-rpm-nettle-446fa052fc193975 CONTAINS SPDXRef-File-...share-licenses-nettle-COPYING.LESSERv3-5d37d8321938e311 +Relationship: SPDXRef-Package-rpm-nettle-446fa052fc193975 CONTAINS SPDXRef-File-usr-lib64-libhogweed.so.4.5-634a7713f3653dea +Relationship: SPDXRef-Package-rpm-nettle-446fa052fc193975 CONTAINS SPDXRef-File-usr-lib64-libnettle.so.6.5-6cfd6bb62d2d4e22 +Relationship: SPDXRef-Package-rpm-nettle-446fa052fc193975 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-nettle-446fa052fc193975 CONTAINS SPDXRef-File-usr-lib64-.libnettle.so.6.5.hmac-e9716a5ea2978295 +Relationship: SPDXRef-Package-rpm-nettle-446fa052fc193975 CONTAINS SPDXRef-File-usr-lib64-.libhogweed.so.4.5.hmac-eb06b32f81646290 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.classloading-450cd0896f16afba OTHER SPDXRef-File-...lib-com.ibm.ws.classloading-1.1.81.jar-34345d73098fcafd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 CONTAINS SPDXRef-File-...--pycache---drv-libxml2.cpython-36.pyc-1098db0637559b44 +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 CONTAINS SPDXRef-File-...libxml2.cpython-36.opt-1.pyc-397126dcab780ca9 +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 CONTAINS SPDXRef-File-...python3.6-site-packages-drv-libxml2.py-3c1f22e03788606a +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 CONTAINS SPDXRef-File-...drv-libxml2.cpython-36.opt-1.pyc-3fe5d44bcd702d88 +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 CONTAINS SPDXRef-File-...python3.6-site-packages-libxml2mod.so-67c8647f521d5f3d +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 CONTAINS SPDXRef-File-...python3.6-site-packages-libxml2.py-d9c50d50e7c61164 +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 CONTAINS SPDXRef-File-...--pycache---libxml2.cpython-36.pyc-f9bb6be523342b89 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.crypto.passwordutil-459d93e4c1fee5fc OTHER SPDXRef-File-...com.ibm.ws.crypto.passwordutil-1.0.81.jar-4cd275cd3f4a6e1f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-acl-45fd7a3cd138b877 CONTAINS SPDXRef-File-usr-bin-chacl-0ecbb8cf3a13bcfc +Relationship: SPDXRef-Package-rpm-acl-45fd7a3cd138b877 CONTAINS SPDXRef-File-usr-bin-getfacl-2c9cb1d15ce83fab +Relationship: SPDXRef-Package-rpm-acl-45fd7a3cd138b877 CONTAINS SPDXRef-File-usr-bin-setfacl-66f18fad398d5b78 +Relationship: SPDXRef-Package-rpm-acl-45fd7a3cd138b877 CONTAINS SPDXRef-File-usr-share-licenses-acl-COPYING.LGPL-820047b4468ceb9e +Relationship: SPDXRef-Package-rpm-acl-45fd7a3cd138b877 CONTAINS SPDXRef-File-usr-share-licenses-acl-COPYING-b6b0bc755a2683f2 +Relationship: SPDXRef-Package-rpm-acl-45fd7a3cd138b877 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.resource-463ae47b7545e2c0 OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.resource-1.0.81.jar-654889404142e3fa +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-pip-wheel-468c6d9b2ca975d4 CONTAINS SPDXRef-File-...licenses-python3-pip-wheel-LICENSE.txt-4aea6b6de1488527 +Relationship: SPDXRef-Package-rpm-python3-pip-wheel-468c6d9b2ca975d4 CONTAINS SPDXRef-File-...pip-9.0.3-py2.py3-none-any.whl-59ea201cb5923978 +Relationship: SPDXRef-Package-rpm-python3-pip-wheel-468c6d9b2ca975d4 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...requires.txt-0016d62ca95073aa +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0776f681adc97192 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...site-packages-iniparse-compat.py-12654e2e0bd76f00 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-1473ec0bdd42af92 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...top-level.txt-1ba04c959109600a +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--pycache---ini.cpython-36.opt-1.pyc-24cb5bfe1cd8ff8f +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...site-packages-iniparse-utils.py-39443a08a76b3c48 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--pycache---ini.cpython-36.pyc-45b3757d24af3e11 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...site-packages-iniparse---init--.py-5063a2a1f5310ffe +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...iniparse-0.4-py3.6.egg-info-PKG-INFO-5f333130ccbc4458 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...configparser.cpython-36.opt-1.pyc-70822d4b3e0c9e08 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...compat.cpython-36.opt-1.pyc-7ea539257f4e1c27 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--pycache---config.cpython-36.pyc-85973b09c9f2ec30 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-87a5179fb8c0d2b1 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.pyc-a4a925b64e8cd962 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...site-packages-iniparse-config.py-ae01e426b744ae46 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...licenses-python-iniparse-LICENSE-PSF-b183dd336e12f252 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 OTHER SPDXRef-Package-python-iniparse-b1ac8ab06cf60d46 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...site-packages-iniparse-ini.py-b312f411894e7d3a +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-b5cf72fa375e785a +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...dependency-links.txt-bc00342a2928bf4a +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...site-packages-iniparse-configparser.py-c4508a868fc3cb32 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...--pycache---compat.cpython-36.pyc-cc4373645daf653c +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...SOURCES.txt-cc8d407a55da3cd5 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...configparser.cpython-36.pyc-d26f9fa05d810852 +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 CONTAINS SPDXRef-File-...share-licenses-python-iniparse-LICENSE-d8cbf5f0afad466e +Relationship: SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...rebuild.cpython-36.opt-1.pyc-0010a8c8a75efe7c +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...tz---pycache---tz.cpython-36.pyc-0a202bf29fcc7a18 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-easter.py-1505fb7a62adb01b +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...relativedelta.cpython-36.opt-1.pyc-1acee4cdb05f9701 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil--version.py-1f3270bd970f50fc +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-284dcca1964b9ef1 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---rebuild.cpython-36.pyc-2857066dcfcc9882 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2cd1438f16771709 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2dd5656c4a045241 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-parser.py-3a793d83ff7d424a +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-tzwin.py-3da187ff439e81a6 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...tz---pycache-----init--.cpython-36.pyc-42de64ff20bfb1a0 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...relativedelta.cpython-36.pyc-43f015a479dd2f24 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil---init--.py-4aea0d87a0b8aeb2 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 OTHER SPDXRef-Package-python-python-dateutil-509a860043c6af7b +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...zoneinfo-dateutil-zoneinfo.tar.gz-675048e4d802e089 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...tz---pycache---win.cpython-36.pyc-67ad6ae594a7b943 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...parser.cpython-36.opt-1.pyc-6b428cc38961ddcd +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-71e81aa26c2ad073 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...dateutil-zoneinfo-rebuild.py-7b873306602e8f7d +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...PKG-INFO-869376688539b0c1 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---parser.cpython-36.pyc-87d455f03e8206f3 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil--common.py-8928a87ee3f4305e +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...tz---pycache----common.cpython-36.pyc-933f3eded4c6bb50 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache----common.cpython-36.pyc-954eb6b4aea86724 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-tz-win.py-9b194251bbb719b2 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...top-level.txt-9e0fc58cb2f8c225 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...-common.cpython-36.opt-1.pyc-9fcf6e708c14c890 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---easter.cpython-36.pyc-a0cb7471ab289c13 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...requires.txt-a60c35d0dda93d62 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---rrule.cpython-36.pyc-a909bcb174f66612 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...tz---pycache---tz.cpython-36.opt-1.pyc-af87abaeadf4aae3 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...easter.cpython-36.opt-1.pyc-b28705384ac5cac5 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b4198dc98f6ba853 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---rrule.cpython-36.opt-1.pyc-b727818b7cd63eed +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache----version.cpython-36.pyc-bbd244af629e83cb +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...SOURCES.txt-bdc33693ab3ab980 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...licenses-python3-dateutil-LICENSE-c9bb7a28c1416fb3 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-tz--common.py-ced2bf09e199500a +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...dateutil-zoneinfo---init--.py-cf71c2e0bc3c5d12 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-tz-tz.py-cfa2bd214f6eb5f2 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...dependency-links.txt-d1c092fed42f7817 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-rrule.py-d75305a28d0d4ddc +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...zip-safe-d76b95ff73fd1bab +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---win.cpython-36.opt-1.pyc-dd9df900b9b94393 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...site-packages-dateutil-tz---init--.py-de9175af3627488e +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...dateutil-relativedelta.py-e14b38f846cc878b +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...-common.cpython-36.opt-1.pyc-e14c2f166a84083a +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---tzwin.cpython-36.pyc-e8312a78628c3e0a +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...-version.cpython-36.opt-1.pyc-e834c3e00625abb7 +Relationship: SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 CONTAINS SPDXRef-File-...--pycache---tzwin.cpython-36.opt-1.pyc-fb8abfbadb50fa28 +Relationship: SPDXRef-Package-python-ethtool-47e0eb55544e9981 OTHER SPDXRef-File-...ethtool-0.14-py3.6.egg-info-PKG-INFO-2738b5642c2848f5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 CONTAINS SPDXRef-File-...share-licenses-libxcrypt-COPYING.LIB-623c53f89b47349f +Relationship: SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 CONTAINS SPDXRef-File-usr-lib64-.libcrypt.so.1.1.0.hmac-779030f247b5a35b +Relationship: SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 CONTAINS SPDXRef-File-usr-share-licenses-libxcrypt-LICENSING-8df5c44b0a2c6aed +Relationship: SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 CONTAINS SPDXRef-File-usr-share-licenses-libxcrypt-AUTHORS-c2c5a2a10c92ba20 +Relationship: SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 CONTAINS SPDXRef-File-usr-lib64-libcrypt.so.1.1.0-cdeba8918acb87e6 +Relationship: SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.install.map-48c15cc676df1319 OTHER SPDXRef-File-...lib-com.ibm.ws.install.map-1.0.81.jar-b72a391100b4c61d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-share-man-man8-xtables-nft.8.gz-0076c02b3f109a86 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-etc-ethertypes-03fcab9483d4a32b +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...man-man8-ip6tables-translate.8.gz-08362a4905205a33 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libarpt-mangle.so-0a8989aebe15b04a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-ip.so-0b70d68ae29ac990 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-SET.so-0e1850b770228a49 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-snat.so-1450f2bacd3cc1ff +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-TTL.so-169929e53ecd3e99 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-sctp.so-1a45ca421cc01c9f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-CONNSECMARK.so-1a62b6fac74ab2ce +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-set.so-1eadf6c55d37ed15 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-devgroup.so-1f4cd59acd0f7f9b +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-DSCP.so-2143b6d37bb1331a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-pkttype.so-22db963a40dbcea3 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-NETMAP.so-23e15242e2ffdaec +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...man8-ip6tables-restore-translate.8.gz-2501faa41adff774 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-LOG.so-257d97acd7a47902 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-icmp6.so-26be7c5cc18ff324 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-LED.so-2723b40a6d864e81 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-recent.so-27882b2b4c2c550f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-rt.so-28e2fff509f904c6 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-ttl.so-298fd1f9dc3ca481 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-IDLETIMER.so-2ad9c43e2173da00 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-802-3.so-2bf0c88f4ee41ab6 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-stp.so-2e1b4fcf1feea383 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-TRACE.so-313c839fa367c688 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-HL.so-322b603a32e1cdc6 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-hbh.so-3432aeb718ccd262 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...share-man-man8-ip6tables-restore.8.gz-3b5e00199539c1f3 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-nflog.so-3d19885b5a79b64f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-physdev.so-3d57f1df03239025 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...share-man-man8-xtables-translate.8.gz-3e83b3b511f9ad90 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-limit.so-41fb99b093645c2a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-conntrack.so-4435c2520fd42d4f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...share-doc-iptables-INCOMPATIBILITIES-4772ff2675dd3ef8 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-connbytes.so-480199ed4d48d1eb +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-DNPT.so-499789cda4db14b2 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-share-man-man8-iptables-apply.8.gz-4a82f6eef9ec44bc +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-realm.so-4f010fe4f183b60c +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-SECMARK.so-4f03efdb9035d5e7 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-dnat.so-4f819261fe50da09 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-frag.so-522ab760cf9e1023 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-hl.so-54ef27b59a338e36 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-tos.so-573cce1653aca3eb +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-DNAT.so-5b1db53fe63f5a67 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-iprange.so-5c255766e50b13dd +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-ECN.so-5c534e4a0e5f2259 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-sbin-xtables-nft-multi-60c6987e55db8b5c +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-MASQUERADE.so-629963d3272c111a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-SYNPROXY.so-62ea1162397dc409 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-tcpmss.so-639d66770ad6e012 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-LOG.so-64bbe0a075c82fb4 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-RATEEST.so-654be8c0e858c7b0 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-statistic.so-6559f23febcbeb58 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-log.so-66be005f517802c4 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-redirect.so-6c239620beca3472 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-among.so-6fcf8bdd08ad879e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-vlan.so-71452a7158acb0a3 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-share-man-man8-iptables-save.8.gz-7311ffe30b62ac92 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...man-man8-iptables-extensions.8.gz-7391d90529e349d2 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-ah.so-7edeb75b70485888 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-cgroup.so-7f442ce604dbd4bc +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-osf.so-7f92015105c1057d +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-u32.so-8200e706124b85eb +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-dscp.so-888a840c06a3a57b +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-share-man-man8-iptables.8.gz-8ba8e3abaf3908c8 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-TCPMSS.so-8c4c798d036dacf0 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-esp.so-8d2197fc9080c165 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-eui64.so-8d277d77046d755e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-socket.so-8d5f275ff4222448 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-mark.so-8dc0419f37f5a341 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-time.so-8eff4cb494c2ca3a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-SNPT.so-8fd1ec94183473c2 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-ipvs.so-920a47022e3ecdf0 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-CLUSTERIP.so-93c5c8783030c32d +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-addrtype.so-93f53d05b301b3bc +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-DNAT.so-94bfb7091c286773 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-SNAT.so-973d5fefbb2126e2 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-owner.so-97d2041ee7eb9412 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...share-man-man8-xtables-monitor.8.gz-9b062c970c82f8ad +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-ah.so-9c47300989f10cbd +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-connlabel.so-9d8ef1974f0d1b6d +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-NETMAP.so-9f72b2afb20b9f7e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-etc-sysconfig-ip6tables-config-a06418242fac8a81 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-tcp.so-a0ee4a1232b1502b +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-ip6.so-a3b64975261d949a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-rpfilter.so-a408d25cfb0952c3 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-connmark.so-a44fda4cfcd906b4 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-TCPOPTSTRIP.so-a5477362a06c343e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-comment.so-a68574d7c43140a1 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-arp.so-a8c2ed928f0e064e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-sbin-iptables-apply-a935472c79b22928 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-mark-m.so-aa56a47e66797194 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-cluster.so-ab0b3c98f1abfc24 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-standard.so-acf01d9eb409539a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-share-licenses-iptables-COPYING-ae3ff39e09daac37 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-quota.so-ae6e22b2fe9daffe +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-NFLOG.so-aeefbd299efc91bc +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...lib64-xtables-libip6t-ipv6header.so-b0869edc65e94731 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-connlimit.so-b0b90b5cd7413d75 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-TEE.so-b1f6d6ed4de93d3d +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-mac.so-b22828d2efd7ee4e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...share-man-man8-iptables-restore.8.gz-b2a7980ab4411f02 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-ipcomp.so-b4ec4233b95a7cf4 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-REJECT.so-b7c2f4e6d2514e48 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-NFQUEUE.so-b802b01e1297e628 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-share-man-man8-ip6tables.8.gz-bb005ff015988835 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-policy.so-bc91fa3c5d868f2e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-REDIRECT.so-bc95f60ff4577312 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...share-man-man8-iptables-translate.8.gz-bf55eb2b6b63c2b8 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-ecn.so-c02189c5ad7ae7c3 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-dccp.so-c63d744544ba2ec4 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-helper.so-c93b15d9c91928b1 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...lib64-xtables-libip6t-MASQUERADE.so-c97297d37a177cee +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-share-man-man8-ip6tables-save.8.gz-cabb3d49566b03bc +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-rateest.so-cb8da67b71705cec +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-srh.so-cc123181e9bac9ca +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-pkttype.so-ce53e362a2da11ae +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-cpu.so-cf728d398f60cc0d +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-bpf.so-d19a5b228d2d996d +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-REJECT.so-d1cde2bfc13478b1 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-CT.so-d2bc299ec48387bc +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-mark.so-d4dd3e664600733e +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-nfacct.so-d58f9dd89c0277eb +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-CHECKSUM.so-d6ca3894ac858dd7 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-TPROXY.so-d7ea2b70bc107a2c +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-hashlimit.so-d89a5fcc6d0d0a18 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-...man8-iptables-restore-translate.8.gz-da6ca0ce93942d3f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-etc-sysconfig-iptables-config-da84a8dbe12db1fa +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-HMARK.so-db4ef7b178b1821b +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-string.so-dc1658892f39d831 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libebt-arpreply.so-dc38354148e873f2 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-udp.so-debe34d906d0694f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-CLASSIFY.so-df98792a174f5280 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-AUDIT.so-e3527fb795c5e22f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-TOS.so-e49d1822ab908333 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-dst.so-e976e35a12d919df +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-ULOG.so-eafb8c858bb469c3 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-MARK.so-ececa36c3e7cbc0f +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-CONNMARK.so-ef586e360b5c4cfa +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-multiport.so-ef757d9b66df9291 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-SNAT.so-f901e3ad51b18b2a +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libxt-length.so-fb98ff4038d0ddcc +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-icmp.so-fca94ed86b96b7c5 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libip6t-mh.so-ffbc06d58d9eb899 +Relationship: SPDXRef-Package-rpm-iptables-48db2896eea2df43 CONTAINS SPDXRef-File-usr-lib64-xtables-libipt-REDIRECT.so-ffdbcbb2c369e85a +Relationship: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.weld-48ed937a7e69e891 OTHER SPDXRef-File-...io.openliberty.cdi.4.0.internal.weld-1.0.81.jar-6d90932b3c67cb36 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.instrument.check-4a71efdb15f8f29b OTHER SPDXRef-File-opt-ol-wlp-lib-bootstrap-agent.jar-b2c0aa2b346923b4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 CONTAINS SPDXRef-File-usr-lib64-sasl2-libsasldb.so.3.0.0-4bf81599d5ea07f0 +Relationship: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 CONTAINS SPDXRef-File-usr-lib64-sasl2-libanonymous.so.3.0.0-5eea771844241fb0 +Relationship: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 CONTAINS SPDXRef-File-usr-lib64-libsasl2.so.3.0.0-69807fd5b97e2105 +Relationship: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 CONTAINS SPDXRef-File-usr-sbin-sasldblistusers2-6e9ddbc51d8ab773 +Relationship: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 CONTAINS SPDXRef-File-...share-licenses-cyrus-sasl-lib-COPYING-907fe9822af0db96 +Relationship: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 CONTAINS SPDXRef-File-usr-sbin-saslpasswd2-b88467bd5697f120 +Relationship: SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.security.spnego-4ae53050e4fe0d56 OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.security.spnego-1.1.81.jar-af60242b9612b3c8 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.servlet.6.0-4b40cefce58f0cac OTHER SPDXRef-File-...io.openliberty.jakarta.servlet.6.0-1.0.81.jar-4349a4209c8b3484 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.crypto.ltpakeyutil-4b995684ce6a3be1 OTHER SPDXRef-File-...com.ibm.ws.crypto.ltpakeyutil-1.0.81.jar-c38314545dc44464 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-bin-make-dummy-cert-04704039b6f2f087 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-genrsa.1ssl.gz-088c49754957903b +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-man-man7-ossl-store-file.7ssl.gz-101d014d5dabe2c0 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-man-man7-EVP-KDF-HKDF.7ssl.gz-1765cc2a8a9682bb +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-man-man7-EVP-KDF-KRB5KDF.7ssl.gz-196bb74b3ab5a352 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-man-man7-EVP-KDF-SCRYPT.7ssl.gz-1bf3dd4635f779ef +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...man-man7-EVP-KDF-TLS1-PRF.7ssl.gz-1dab765d034c273e +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-sslrand.1ssl.gz-217e23c7710baee5 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-man-man7-EVP-KDF-SSHKDF.7ssl.gz-2b00c2eb6b3b9e10 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-openssl.1ssl.gz-2d53e404c37ada4b +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-evp.7ssl.gz-2e78e6c6e15a7bb3 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-prime.1ssl.gz-30e28211efeca463 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-ts.1ssl.gz-31b545f1e2c48e8a +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-RAND.7ssl.gz-3f5f7bfb90e80ebd +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man5-config.5ssl.gz-405d93d96f88969f +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-dsaparam.1ssl.gz-41282c83b8f70957 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-enc.1ssl.gz-45f445734a1c7547 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-errstr.1ssl.gz-4e9bd25ddb96dcbf +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-nseq.1ssl.gz-4f900a6a619b779d +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-Ed25519.7ssl.gz-57abdd292bd018fa +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-req.1ssl.gz-57fccbfb2a03040d +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-engine.1ssl.gz-58fb7d68e733b8cc +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-dhparam.1ssl.gz-5cfd039d5d2cbc23 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-pkcs8.1ssl.gz-5f8a671a0fa32cd7 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-licenses-openssl-LICENSE-651b55083af77470 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-srp.1ssl.gz-65735719efe05cc7 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-sslpasswd.1ssl.gz-65c9db6741a409ce +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-asn1parse.1ssl.gz-6ceb0fd6c957cef7 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-pkcs7.1ssl.gz-6f88d08133e3a411 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-crl.1ssl.gz-756d3215fcb45dce +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-doc-openssl-README-75e6abd7e83af940 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-gendsa.1ssl.gz-7607390736dc7e52 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-bin-renew-dummy-cert-7657542d0f9202df +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-RSA-PSS.7ssl.gz-7b0f5037e76d4a59 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-pkeyparam.1ssl.gz-7dc34f2091d5df9f +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-ecparam.1ssl.gz-7f4f4e163ce5f7af +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-speed.1ssl.gz-82ebf54b9e4d7789 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...man-man7-proxy-certificates.7ssl.gz-8333505228626385 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-man-man7-EVP-KDF-PBKDF2.7ssl.gz-8815451eb114cf5c +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-list.1ssl.gz-88daee10954a1294 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-smime.1ssl.gz-8ab2acc7ee159e14 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-pkeyutl.1ssl.gz-8bc6faac5591ad5a +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-ossl-store.7ssl.gz-8bd1451cd7bde956 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-pkcs12.1ssl.gz-9c40ee6d215b1d65 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-rsautl.1ssl.gz-9e8d39452d3462b9 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-sess-id.1ssl.gz-a47429666fcb1158 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-s-server.1ssl.gz-ac156d2dc033416b +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-genpkey.1ssl.gz-b103d553bdb6f1a2 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-pkey.1ssl.gz-b432e7a714fdde13 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-ciphers.1ssl.gz-b5763aa23286b9f3 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-cms.1ssl.gz-b907d67c4088d504 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-bin-openssl-bd2dbf10c7834d86 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-EVP-KDF-SS.7ssl.gz-bdf98dc1b80bf078 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-verify.1ssl.gz-be0f85604424e7d8 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-rehash.1ssl.gz-c1b66f911b283de0 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...man-man7-passphrase-encoding.7ssl.gz-c2410cf80a9010e5 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-doc-openssl-NEWS-c38ca20a7d336103 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-des-modes.7ssl.gz-c4c4bd00eeaed837 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-doc-openssl-FAQ-c4e4bc2587067835 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-ca.1ssl.gz-c5dbbe77d420f8c0 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-ssl.7ssl.gz-c94256b8af98ff76 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-crypto.7ssl.gz-caee55d467057d16 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-spkac.1ssl.gz-cc0cb932a614f791 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-dgst.1ssl.gz-cfb33bda3e5bcb4a +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-ocsp.1ssl.gz-d2afb4ff1e6dd089 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-man-man5-x509v3-config.5ssl.gz-d42aaa2c40fac859 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-x509.7ssl.gz-d7d2b2745d2d410d +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-EVP-KDF-KB.7ssl.gz-d9b6366124a99f6b +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-bio.7ssl.gz-dbc5f9cf014f2888 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-s-client.1ssl.gz-dcd201437b4dbd03 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-version.1ssl.gz-dce030745973af44 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-dsa.1ssl.gz-dd6fd638b12ee4c5 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-s-time.1ssl.gz-e591200a1638a7aa +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-doc-openssl-README.FIPS-e6b8e01e725c5051 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-RAND-DRBG.7ssl.gz-edf02b7bf9d4d298 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-...share-doc-openssl-Makefile.certificate-eec8462583aace83 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-rsa.1ssl.gz-efa17e46cda3f428 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-x509.1ssl.gz-f06d83124616e0cc +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-ec.1ssl.gz-f1ea6f6a5a7e6aa0 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-storeutl.1ssl.gz-f4e1d97825d7f995 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-ct.7ssl.gz-f73e38eb07fa2161 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man1-crl2pkcs7.1ssl.gz-f9bb38fcc91f96df +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-SM2.7ssl.gz-f9bea0b736dad495 +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-scrypt.7ssl.gz-fc886d5137f2cdfe +Relationship: SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 CONTAINS SPDXRef-File-usr-share-man-man7-X25519.7ssl.gz-fcf4123d0db3f5d8 +Relationship: SPDXRef-Package-rpm-librepo-4cd2e86c97c4754a CONTAINS SPDXRef-File-usr-share-licenses-librepo-COPYING-314dfe1e241c6b6b +Relationship: SPDXRef-Package-rpm-librepo-4cd2e86c97c4754a CONTAINS SPDXRef-File-usr-lib64-librepo.so.0-88a6717f70af5bc3 +Relationship: SPDXRef-Package-rpm-librepo-4cd2e86c97c4754a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.soap.3.0-4d1af385604efc57 OTHER SPDXRef-File-...io.openliberty.jakarta.soap.3.0-1.0.81.jar-27d53554e2df5be1 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-python-dateutil-509a860043c6af7b OTHER SPDXRef-File-...PKG-INFO-869376688539b0c1 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-webserverPluginutil-5138594310b74d46 OTHER SPDXRef-File-...bin-tools-ws-webserverPluginutil.jar-50f2a2192da7580b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libcap-ng-51cf02126f09a3ef CONTAINS SPDXRef-File-...share-licenses-libcap-ng-COPYING.LIB-0f1f32e8196b5670 +Relationship: SPDXRef-Package-rpm-libcap-ng-51cf02126f09a3ef CONTAINS SPDXRef-File-usr-lib64-libcap-ng.so.0.0.0-75b4fdfee98ab106 +Relationship: SPDXRef-Package-rpm-libcap-ng-51cf02126f09a3ef OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jndi.core-52167c6e9be82da5 OTHER SPDXRef-File-...com.ibm.ws.org.apache.aries.jndi.core-1.1.81.jar-7ac128df1dcb478d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.microprofile.metrics.common-5269865d0e23c8d4 OTHER SPDXRef-File-...com.ibm.ws.microprofile.metrics.common-1.0.81.jar-e4810f72921ec667 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.persistence.3.1-52af0fd25b633d19 OTHER SPDXRef-File-...io.openliberty.jakarta.persistence.3.1-1.0.81.jar-eba7779ce765f3e0 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact.overlay-52e797606b454ca3 OTHER SPDXRef-File-...com.ibm.ws.artifact.overlay-1.0.81.jar-a59c585148f50cc3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.javaee.activity.1.0-539b5585a68d881c OTHER SPDXRef-File-...com.ibm.websphere.javaee.activity.1.0-1.0.81.jar-dfbabb310ca0c677 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.credentials-54204e2affa36dd6 OTHER SPDXRef-File-...com.ibm.ws.security.credentials-1.0.81.jar-ea03d1d65fdc8e87 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-amd64-linux-macros-0129a3e49a5456b7 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-ppcpseries-linux-macros-0171aed9205a5f07 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv3l-linux-macros-02ad4f528e7ceb9e +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-riscv64-linux-macros-0499084d58da627c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-db-stat-0983830ed9a58de2 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Obsoletename-0a002bd80923378b +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-ppc-linux-macros-0a7d23c0f1483674 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-athlon-linux-macros-0bbee84af18c39cf +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-x86-64-linux-macros-0bf0f1284193bf76 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-mips64r6-linux-macros-10fa89e40d44a7e6 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Requirename-11e7c6ce0b01e781 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-tgpg-12f60d796ce29c4a +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-pentium4-linux-macros-178b7cd37f9ace75 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-mipsel-linux-macros-1904d86f9c52f5e1 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Providename-194bb06f4d5ac255 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-rpm.log-19fc6ea01d2683ca +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv7hl-linux-macros-1d1788e5837771b3 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-i686-linux-macros-1d89630752f22eb0 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Basenames-1e8d242de9e8ccbc +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv4b-linux-macros-253cff719d761295 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-alphaev5-linux-macros-2bf033ef8c0a051a +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Installtid-2e88407d08a91510 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-db-dump-309b5968b0c9d3f1 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-sh4a-linux-macros-32f9e830cb9cfdd4 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-rpm-35b0a05eb8dff726 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-ppciseries-linux-macros-35b6c78b766fe4fc +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-db-load-37fce3b95279ce2d +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-sh-linux-macros-3866e3d137f7c797 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-ia32e-linux-macros-397c7883c94f92c8 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-share-licenses-rpm-COPYING-3a005342e17732bb +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-pentium3-linux-macros-3b46e102f6b12368 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm---db.003-3e496f62e4fc12d9 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-s390-linux-macros-3f01a6ad78fa56de +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-rpmdb-3f192d9492039852 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-alphaev56-linux-macros-411b6ebd8b65ece9 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Name-429f333e5847d3f4 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Sigmd5-455e32ded7479296 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-geode-linux-macros-48cb6c98dc681e92 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-db-recover-4a98d4bab1fed412 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Conflictname-4ae4e37472c7390e +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-rpmdb-loadcvt-59f9dd2b0628515d +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-alpha-linux-macros-5b8e9d00407d68bf +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-mips64-linux-macros-5d6752546e995f4e +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-mipsr6el-linux-macros-608ded62e456db06 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-sparc64v-linux-macros-614bf24761e205e0 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv7hnl-linux-macros-627e130e55590397 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-ia64-linux-macros-6468c626c76c5e11 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv5tl-linux-macros-6a0d81d2dc38ea02 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-i486-linux-macros-6d49efe80151e72f +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-ppc64iseries-linux-macros-6d80168f3660ee62 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-rpm2cpio.sh-6de2c6b4d36c3815 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-mips-linux-macros-7280b811ef117214 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-rpmpopt-4.14.3-753d45e8154ab4d0 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Triggername-76ed42315129371d +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-rpm2archive-778fb6512f57b6f5 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-sparc-linux-macros-79f0541e0c8e337c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-armv5tejl-linux-macros-7a8f9d3cde60fc2c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Dirnames-8048d3bd44bebf7c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Group-85e82b7f69e79be1 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-alphaev6-linux-macros-91407ed8b2d0ab78 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-sparc64-linux-macros-91ee56aae9a98efa +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Sha1header-91fc8c66fa9b878e +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-macros-9414fcbf02dea404 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-i386-linux-macros-9599cfd7154b21f7 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-mips64r6el-linux-macros-9d2b4debadbebee4 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-python-macro-helper-9d87a57191c5cd65 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-mipsr6-linux-macros-a111546ffd95efb5 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-alphapca56-linux-macros-a1624ea903793264 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv4l-linux-macros-a3bd73753d2e64cc +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-sh4-linux-macros-a47eed1cfc699d47 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv5tel-linux-macros-a4948e20da6cfc9c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-sparcv9v-linux-macros-a9d4efab8f0fa48a +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-ppc32dy4-linux-macros-ae49a2341dbd5d4b +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-mips64el-linux-macros-aed4971ffd1d2108 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-rpmkeys-b164e73bc5ab2621 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-ppc8560-linux-macros-b3ccc04eb15a526c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-ppc8260-linux-macros-bce90afe326888fb +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-ppc64le-linux-macros-be33ec7be582993e +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-rpm.supp-c026cafcff5ed4d3 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-rpm.daily-cf1868bf28a6d3de +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-ppc64pseries-linux-macros-cf353b9e37e1f754 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-rpmrc-cf5ba301cc07a6f0 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-sh3-linux-macros-d3c65ced064bca1b +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv6l-linux-macros-d4166ccec323f733 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-sparcv8-linux-macros-db4206162a3e9d29 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-ppc64p7-linux-macros-df523be0ee7b6d7f +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-sparcv9-linux-macros-e19bececcea397d7 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-rpm.conf-e2acff19b673c2ae +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-db-upgrade-e37bfb93c36042ce +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-noarch-linux-macros-e4e29d9e3f33b21b +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-i586-linux-macros-e788b5cf0758d53c +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...rpm-platform-alphaev67-linux-macros-e7dce1b9fc2940fd +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv6hl-linux-macros-e9380b67e53303c3 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-aarch64-linux-macros-eafbcea0513b9a66 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-armv7l-linux-macros-ecb0fc5793d57175 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-s390x-linux-macros-f1d20d31bcc4e077 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-...lib-rpm-platform-ppc64-linux-macros-f503067933d7714d +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-db-verify-faa44758f54565f4 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm---db.002-fb895eea6da2d1d3 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-var-lib-rpm---db.001-fba0623d0a8391d0 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-bin-rpm2cpio-ff6863f05a2b1336 +Relationship: SPDXRef-Package-rpm-rpm-544fe79948a81a2a CONTAINS SPDXRef-File-usr-lib-rpm-platform-m68k-linux-macros-ff9370a17b6a3963 +Relationship: SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.builtin-5463bf749e0971ce OTHER SPDXRef-File-...io.openliberty.security.authentication.internal.builtin-1.0.81.jar-896a0fec6f26324d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.webcontainer.servlet.6.0.internal.factories-54be295232b23485 OTHER SPDXRef-File-...io.openliberty.webcontainer.servlet.6.0.internal.factories-1.0.81.jar-d31c8fbdaee11ac4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.logging.osgi-54f6582cba8dbf38 OTHER SPDXRef-File-...lib-com.ibm.ws.logging.osgi-1.0.81.jar-c1e19a239d94571b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d CONTAINS SPDXRef-File-usr-share-doc-freetype-README-166cb698158e879e +Relationship: SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d CONTAINS SPDXRef-File-...share-licenses-freetype-LICENSE.TXT-3f239787609c008d +Relationship: SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d CONTAINS SPDXRef-File-usr-lib64-libfreetype.so.6.16.1-7c4f273d62d09444 +Relationship: SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d CONTAINS SPDXRef-File-usr-share-licenses-freetype-FTL.TXT-844cb04e50af26cc +Relationship: SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d CONTAINS SPDXRef-File-usr-share-licenses-freetype-GPLv2.TXT-fac998f0094c9c5e +Relationship: SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 CONTAINS SPDXRef-File-usr-share-licenses-dbus-tools-COPYING-d03d68231c1058f3 +Relationship: SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 CONTAINS SPDXRef-File-usr-bin-dbus-uuidgen-d1ce41e14afce8ee +Relationship: SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 CONTAINS SPDXRef-File-...bin-dbus-update-activation-environment-f686ef501f9755b5 +Relationship: SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 CONTAINS SPDXRef-File-usr-bin-dbus-send-fab90d42fa53c741 +Relationship: SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 CONTAINS SPDXRef-File-usr-bin-dbus-monitor-feab5640aefebea5 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.jakarta-57169466f7c5ad89 OTHER SPDXRef-File-...com.ibm.ws.webcontainer.jakarta-1.1.81.jar-a54c566cbcbb484b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.metatype.annotations-57608e27b67eb2a0 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.metatype.annotations-1.0.81.jar-fb92666d08e1aa2c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.cdi.spi-5769548082bfa726 OTHER SPDXRef-File-...ibm-io.openliberty.cdi.spi-1.1.81.jar-75d26c6b1106c10e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jndi.api-577ed84398f4dabd OTHER SPDXRef-File-...com.ibm.ws.org.apache.aries.jndi.api-1.1.81.jar-4b7fe2405e59cbb9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-expat-580d0138d97ae889 CONTAINS SPDXRef-File-usr-bin-xmlwf-3d3c8f387c936adf +Relationship: SPDXRef-Package-rpm-expat-580d0138d97ae889 CONTAINS SPDXRef-File-usr-lib64-libexpat.so.1.6.7-9a1c827816a8e840 +Relationship: SPDXRef-Package-rpm-expat-580d0138d97ae889 CONTAINS SPDXRef-File-usr-share-licenses-expat-COPYING-ad7b37d0a575f4cf +Relationship: SPDXRef-Package-rpm-expat-580d0138d97ae889 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libcom-err-5810f3c8a99f4bcd CONTAINS SPDXRef-File-usr-lib64-libcom-err.so.2.1-5e37c45025c6f81a +Relationship: SPDXRef-Package-rpm-libcom-err-5810f3c8a99f4bcd OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libcom-err-5810f3c8a99f4bcd CONTAINS SPDXRef-File-usr-share-licenses-libcom-err-NOTICE-e0a04622497bf779 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.cdi.jndi.jakarta-5828db872bd83d8d OTHER SPDXRef-File-...com.ibm.ws.cdi.jndi.jakarta-1.0.81.jar-3176ae3a323b3898 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libselinux-594107f6b62dc4ab CONTAINS SPDXRef-File-usr-share-licenses-libselinux-LICENSE-3e2247315b7dfac2 +Relationship: SPDXRef-Package-rpm-libselinux-594107f6b62dc4ab CONTAINS SPDXRef-File-usr-lib64-libselinux.so.1-4c159e60a3275e03 +Relationship: SPDXRef-Package-rpm-libselinux-594107f6b62dc4ab CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-libselinux.conf-cb3db5165b47c6b3 +Relationship: SPDXRef-Package-rpm-libselinux-594107f6b62dc4ab OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-MET-000209debf32d521 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Asuncion-003c680b42232863 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Magadan-0082357688edb68f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Canada-Eastern-00942610af2155b3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Montserrat-00abe2ad80990845 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-MST7MDT-00c366afc971a1a2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Ponape-00d5aa992ab5ac52 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Warsaw-0115ee4c707c898e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Adak-013d914fa07d1ad6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Bahia-015e3518d7d601a5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Katmandu-017738821feb19da +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Ponape-01a39b3d385de6de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Tasmania-01d47de016b4e77c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Baghdad-01d8a8175839bfd6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Alaska-01f4b0d40ab7dc28 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Reykjavik-020a708a593c7df7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Palau-023dc3a4b2d330b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Baku-0286235926410bba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Atka-0289d757a20650e0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Choibalsan-02a98f1ff8b3c8d8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Adelaide-02bb9e230fe5f223 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Belgrade-02e9cbc2469ab58a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Majuro-02f5386f67d7f8cb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...America-Argentina-ComodRivadavia-032b27be534605d1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Australia-NSW-0331e31cff1d9609 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Denver-0334c5fb0613f662 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Singapore-0370498d656047ff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-Tucuman-0385ba7706c3c10c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-Mendoza-0419a537cf8c187a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Tijuana-0423274d67d39fc3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Edmonton-04233e5990e60b9a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Kinshasa-0448c44282669c29 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Singapore-04538cd4160818cd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Bratislava-0481cd006eb762d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Turkey-04a6b174b2d6c975 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Bahia-Banderas-04ad9d22e445b5ff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Antarctica-Troll-04ce07761b67e05c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Eastern-04e89206574110f3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Istanbul-050da865134d1cbd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Nipigon-0527cc317d4edf44 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Almaty-0541772cbe00552b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Magadan-057979f8d766e0c1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Saipan-05b662cc02b5fcf1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Saratov-05eca189f07bbd5f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Brunei-062fdb6b1bcc31ca +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-0-06aae8efaf00524b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Kinshasa-06c05a2e48431dc9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Hebron-06c1311ea01b8b46 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Djibouti-06d8d5e23c6eed45 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Macao-0754bbcb28e990dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Whitehorse-078958a3288ea521 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-zone1970.tab-07a98333bb6ccc05 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Ojinaga-07abaf5c5e6b1ba0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Ensenada-07bf407b147f7056 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Eirunepe-07db564c66623e84 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Gambier-07f41ad2ecaea786 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Ceuta-0804495e1fe0cf1a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-7-081d8cc465c090ff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Anguilla-0863b8d22f369311 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-St-Lucia-087ec5a67db9aa91 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Thunder-Bay-088a2b05c07842f5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Wallis-0891036530ab5e84 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Canary-08b01398d83cf9f3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-EST5EDT-08cb860d1c1ba1db +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Navajo-08e88cfdfff16878 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Malabo-09142a3a8edbaf2a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Sarajevo-0916b3dcb2f76aa2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-ROK-09254b090ed34351 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Khartoum-09672186f1989ec2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Indiana-Marengo-0967658bf23b5164 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Porto-Acre-09d0bb4d9630ea2d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Indian-Reunion-09dda6cc2a053bf7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Sakhalin-09efa9be0f09c3f2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Glace-Bay-09f1365a0b22ab6a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Manaus-0a11a907933bd2a6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Ndjamena-0a46fa509bda5b1f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Qatar-0a4fd2c8fcc88812 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-Antarctica-DumontDUrville-0a802f28eefb2bfd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Denver-0aa31e32ab0246be +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-La-Rioja-0ac3a1161de06d79 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Tiraspol-0ad0e811c4325ff7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Australia-LHI-0ae0b40ff4e7dada +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Ashgabat-0aef82807d7a2bfe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Chicago-0b1794ca87ca0b2e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Iran-0b4429c239b44826 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Africa-Addis-Ababa-0b5737de65bf4a4e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Shiprock-0b708831d48b9ee9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Khandyga-0be875eaf0311f35 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Samoa-0c0cf4da1c455741 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Poland-0c107ebfa2ec04cc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Africa-Dar-es-Salaam-0c4542a2762eb6cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-14-0c579cfcb119922e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Thule-0c748304cdbba179 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Riga-0c7914b9293531b7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Zagreb-0ca1ad9171619b22 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Asia-Ujung-Pandang-0cb0f3890d32c746 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Punta-Arenas-0d21a61b66afbcd6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Simferopol-0d956028838b4d14 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Guadeloupe-0d9dda2c3e68085a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Pitcairn-0dbc38d891d3222f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-South-0df8fb3712e8da70 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Antarctica-McMurdo-0e1c87957cbdd2b6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Skopje-0e277ed9604060a8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Bangui-0e5d3713f22c401d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Ulaanbaatar-0e88b89b45dd0408 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Thule-0e8b8b61513e9bb8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Podgorica-0eabf71968af88b5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Pacific-Bougainville-0f17b5dd7036bfe1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Portugal-0f3cc47a5fd68966 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Sao-Tome-0f90240ee850d6b1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Bahia-0fc48e4982431c66 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Tashkent-0fe2de6373fbb939 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Famagusta-0fece72f94b879c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Rio-Branco-1068f363c55efdd5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Asmara-108e0ddb4821b2eb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Atlantic-St-Helena-1097b76a12a71ab8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Tunis-10b4d7ca6f41bc51 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Ojinaga-10d71eaa2f313ed2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Michigan-10e1f6a2fc6f1fc1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-9-10f0fb4e5732619a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Gambier-1122ee3d3cd41963 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Azores-1147e08d324e17d9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Atlantic-1153dc7a6e58cc8b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Sakhalin-1162960dcdd2dc83 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Baku-119f4f57f1f87f92 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Phoenix-11a2267bb6bb43f6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Arizona-11a739fc43d5c6d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Maseru-11b7fceacfb96136 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Vilnius-11bb9caacd17fdfb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Antarctica-Rothera-12047db722f9bc01 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Anguilla-12291477623e1194 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Nairobi-1270c277f39c64c9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Indian-Mayotte-12d19dab29b9555a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-9-12d6724675fa5be7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Scoresbysund-12e0cda21b20acaf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Algiers-12fca1c5dfb3e0ce +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Indiana-Winamac-13062c229607de32 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Monrovia-13428ab314a81843 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Dawson-Creek-135b0b9d550f37cb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Havana-136ce26a5bb746c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-UCT-137bf97f3363cb22 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Amsterdam-138911b2d7c410c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Libya-13a79918eb3b935e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Vancouver-13e4fda82b5871ed +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Samoa-13f8f6f4672faebe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Manila-144063691ef783d1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-1-144df7ff4407aa96 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Chicago-1466708ee8677185 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Yellowknife-147685d94cbd9b48 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Atlantic-Reykjavik-147b63bcd8916862 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Iqaluit-1485838d7fd16be1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Turkey-14b55f125aa001b7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Pago-Pago-14c508a51e3dcf5d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Midway-14c621c7fa1bef3d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-St-Lucia-14c8407cddb7d5e1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-Ushuaia-14d4b85e90b338c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-St-Barthelemy-14e929ab523610e6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Brunei-1503652a1f47f37e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Central-1509abcf0c62f332 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-St-Vincent-15417edacc7a0308 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-GB-Eire-1565f07ef971ced6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Pacific-15dee03eec155d6a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Minsk-1620241ca1099350 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Araguaina-166ecb38f0934449 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-Mendoza-16b9cb50f4dfab9d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Mexico-BajaSur-16d1d9492191ec9d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Kentucky-Louisville-16d998cf456e7504 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Nouakchott-16fdb74febd26c17 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Baghdad-170689e25e9dd4ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Dakar-1709828541b698d6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Bucharest-17307dff268c109a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Singapore-1745cc4f97c3ebff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-12-1748451f3712b64a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Ust-Nera-1754ef6e12ae3fa4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Istanbul-17575eef3a3291d6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Guernsey-1767270ff8c46a99 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Uzhgorod-178bd0ea370ee3ff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Thimphu-17bf43b1d8538e05 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Paris-17d0bf02966f2df9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Vatican-17da8b75feb3435e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Indiana-Winamac-181493b59bb4433d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Indiana-Vevay-184941de491dde61 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Khandyga-1889556fafd481df +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Anchorage-1889d51e039106d9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Bujumbura-188f01f2c8b22689 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-4-18c133d8eb5f2a9c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Banjul-18dc6cb0929e67bd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Atlantic-Jan-Mayen-18e9526b8eaee251 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-West-18ed295d22ed1cd3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Edmonton-19054ffc33cb2615 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Hovd-191bf3ffb05fc9c4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Kralendijk-192f42122c02433e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Moscow-1933daa93ce44e2c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Paris-19536490aafe1d41 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Sarajevo-19827dc071b2aefc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Indian-Antananarivo-1984cc84b574372e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Boa-Vista-19ad88ce04808460 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Yap-19d7793ecc39a6af +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Dublin-19e52b9324a96c88 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-El-Salvador-19e6626712601854 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Louisville-19ed3f73478ac685 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Athens-19f0f0004784db2f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Australia-LHI-1a2bc9f326778c25 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Santiago-1a4135234908249f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Jersey-1a676ab68e5a8ad8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-Rio-Gallegos-1a9024ffef609999 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Phnom-Penh-1a95c9d2b2804b5b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-tzdata.zi-1a9ae2057bbf8f02 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Marquesas-1ab29fa32ad6dec1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Blantyre-1b3f0812e38b039f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-Cordoba-1b56f5a7079ae723 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Rarotonga-1b6cb2a0023f4405 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Adelaide-1b8d6ecbd34b96ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Zaporozhye-1ba117426930b124 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Sitka-1ba317ba59b5afdf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Irkutsk-1be3069410c02184 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Porto-Novo-1be88c57878d4f15 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Eire-1c08c52afcb4be65 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Campo-Grande-1c0e7b83ab672459 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Indiana-Marengo-1c12dcafbbcaec35 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Bissau-1c221c7a17905aa8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Mahe-1c37c8b18e967809 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Fort-Nelson-1c3d89cd7967c0ea +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-Hobart-1c507cffa0ad09d9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Porto-Acre-1c61690a5d11c684 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Urumqi-1c7a4162b493786e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Canada-Yukon-1cdbd81a676c6558 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Nipigon-1d0b5bc0869a6553 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Stockholm-1d34b7133993b2e9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Chisinau-1d41f19b565068af +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Manila-1d4b672014c59333 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Metlakatla-1d93f6e8d037c847 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Australia-ACT-1dbc106844b1c3c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Monrovia-1dc0ae255bd1a999 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Chungking-1e0aaea19c1cc1be +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Tel-Aviv-1e12d53500fe43de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Pacific-Port-Moresby-1e24569b725b1337 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Malabo-1e57803675767ab6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Gaborone-1e93affc718e7426 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Tripoli-1e9aa26023ad0bca +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Pohnpei-1ec6af00d02c10a6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Luxembourg-1efe0d4ff6d61d35 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Beirut-1f36f4d844cf3c2b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Andorra-1f3825ed4311a1a9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Yap-1f507cc07289bae6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Kuala-Lumpur-1faa2019498ea8e8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Kiritimati-1fb9e4f73350f6fc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Antarctica-Casey-1fdeaeb28ae5a7ea +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Brussels-1fdf69c7ee6c9d45 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Antigua-1fe3bee8a9a0be0e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-9-1fec84bf32e87402 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Argentina-Salta-1fedb3403c63ef8c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Efate-200bf72242205191 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-ACT-201c2b776cd1a9a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Omsk-20301fe9591ece91 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Jujuy-20349837aabb0b4c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-St-Helena-203b57e16808548f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Pacific-Port-Moresby-206077bc713cab18 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-East-Indiana-2074371500bcea40 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-Currie-20a5e65c7102121e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Kinshasa-20ae6e9beb9734c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Bujumbura-20be0341e66ecb55 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Niue-210cf11541d79ac3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Seoul-21890701938195d6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Guernsey-218cd77876dc89dd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Kanton-219067de458d1d62 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-UCT-21a1d29e5e1db8db +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Yekaterinburg-21a7738a0a4101ee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Helsinki-21b7e70b0519d87a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Nicosia-227ac3c5ee34f234 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kashgar-2285e5247d746513 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Jujuy-22b29de1df30daff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Victoria-22d1af21175bae24 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Antarctica-Troll-22d9b6c02588299a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Lord-Howe-22f9a52447763804 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Wallis-230fba9ace3c2b41 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Canada-Mountain-23137ffb4801c106 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Israel-2323fb3a2d256c4f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Karachi-23243538b76889bf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-7-23244af0b5120335 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Lubumbashi-232b91931ea9b187 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-El-Salvador-234b33f759927a9b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Dublin-235532ac5bf57be2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Ljubljana-238c0461d1bde231 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Greenwich-23b95b752e0936ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Anadyr-241a8b8fabdbed9e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Harare-2436f266dc6c612a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Pyongyang-2440bece316519af +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-MET-24640c2cdd47585e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-London-246723dc606355fe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Rarotonga-24997e138e66693d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Montevideo-249e3cbf6e90cef6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Gambier-24a2d8a183fd8f0f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Melbourne-24dee5f709564c23 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Antarctica-McMurdo-250166ac4c11b8e4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Troll-2577657527f82415 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Noumea-257aef7ec3a8dbb2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-North-Dakota-Center-25800cb069d6d1a1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-ROC-25cf014b3c1522dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Ponape-25d1c18134a200c9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-2-25f086c750889259 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Port-of-Spain-25ff1541b58db4c1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Louisville-2608682775c817cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Jersey-26217464fe5261b1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-ROK-262e46b2929816c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Lower-Princes-266bddcc157731a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Faroe-266ce6243af8bc4a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Apia-2685d47955771160 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Malta-268bfe1a478f3146 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Central-26c1fab77e10a8a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Vladivostok-26e000b41ea077c3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-EET-26e9936a5af8d1ff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Regina-27293109a82a497b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Noronha-2761fedb6ceaa6bc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Calcutta-27735bed13e399af +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Tahiti-2785674ce2356037 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Easter-280f212716129455 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Curacao-28108c46e5f22ad6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Arizona-2842ae6c00f723c9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Ujung-Pandang-2867f71841cf22ad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Ulaanbaatar-28bb4ffd64064506 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Virgin-28cc465d9be00d26 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Curacao-28d77943ed7d5f55 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Guatemala-28de39c895c89696 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Africa-Brazzaville-28fbf884163c36ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Kyiv-291f3d5076993b3e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Gibraltar-2920bd2b7999611d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-St-Barthelemy-2927fea5d8da5cbb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Cancun-2944a46f237a2f58 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Saipan-294d1decd61097dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-4-29829823ee5fe4ef +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Jakarta-2991879746649a4c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Glace-Bay-29c5c1e9da22f6f3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-UCT-29f898e4d8fa055f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Mountain-2a564386078f9c21 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Blanc-Sablon-2a5e132532c056ed +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Seoul-2a602ccdc4845dbf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-2a706eb6c59ffe77 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Merida-2aa437bc3c5546b9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Qostanay-2ab4c62dbb0f1cba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Chuuk-2ac4a1f2913a5e6a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-1-2adf31daff893c6e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Bucharest-2aec9f1dafec6c09 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Port-au-Prince-2af0412addb5e7ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Porto-Velho-2b29045b89ff9a8f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Indiana-Winamac-2b31993f187cffd2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-San-Juan-2b4c99ed3cd79f5a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Dublin-2b58bb49f79f51f1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Taipei-2b755866e7d8b336 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Harare-2b838406ac5e4299 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Fort-Wayne-2b85d00f0995079f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Samoa-2b90ad239bc964bb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-10-2b9c68337a5157dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Nauru-2c0e1cd0693a7dba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Santiago-2c452c47894e94b7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Nicosia-2c4d89205bf81989 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Atlantic-Reykjavik-2cc77d80150be7c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Rangoon-2ccced84071ea25b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Hovd-2cdadb3fee17c638 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Indiana-Vevay-2cec56a2016b35b0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Amman-2d6a1e8f88d65c31 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Madrid-2d78764e431384c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Jersey-2d7c7a3d1dd274eb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-St-Johns-2db2f18ced86e58e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Novokuznetsk-2e224340b7c92ba6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-11-2e35d83e5d1a40cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Chungking-2e8b816a94007abd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Eastern-2e92a3d8a5053f80 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Tiraspol-2ebf573548ca15c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Mexico-City-2ef10345a51981ee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Budapest-2ef1a748afe0fdd6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-GMT-0-2f7bbb58ac71d6f7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-12-2fb15230c176976e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Samoa-2fc9a40924f11bb5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Menominee-2fd706135a597bbe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Tegucigalpa-3053441ffc35ead9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Dhaka-30cec014e97ccb83 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Tashkent-3110bf6044c9beeb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Mariehamn-31188bccfc3a0177 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kuala-Lumpur-312f19413e2b2148 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Warsaw-313e03a59459df5b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Hawaii-319339c882f7438b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-NZ-31ce4fc18f21b208 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Amman-32052d70176a708d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Podgorica-326d2aec816a9baf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Havana-327eebc2f63e692e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-Currie-3293382a535dbb0c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Ashkhabad-32c483e27e83a309 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Panama-32cb9340e338ff20 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Ndjamena-32e92432b5621c30 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Antarctica-Syowa-33387c86cedea37c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Chita-333bd5817f89c73f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-MST-3368173408cf4b7a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Noumea-3399b18cf51964e3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Tortola-339e2c7bbd77b500 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-GMT-33e9aa11cd5885f4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-North-33fbb27c28647017 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Wake-344e09fd88454948 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Malta-346e2fe80ca553ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Ensenada-3485fdb16b23df8f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Lima-34fcbcb107e4062e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Brazil-DeNoronha-3543d2358113b157 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Accra-35472a3b4ddade71 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Palau-3608ae6589178a51 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Jamaica-3627ffd003a361d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Guadalcanal-364e6dd86506c8ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Bangkok-36602e19a58016ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Canberra-368d46a647345965 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Dawson-36a3544aad21684d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Brazil-DeNoronha-36a6fbc8af624685 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Rome-37062e3eb6ddbb3f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Famagusta-37070496a660cfa0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Swift-Current-372a787485debc14 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Freetown-372c68bf984fcba9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Chile-EasterIsland-373b403b952c6668 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Yerevan-377ba20d8d2345b2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Moscow-37a1191c2951728c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Dhaka-3803e3b8238dec3e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Yakutsk-3810f48e859beca6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Marquesas-3829d92678b111e3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Resolute-383792b66183304e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-5-3850151e2f177aba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-West-38639a4d80aaafb6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Fakaofo-388329d0b9ca83f4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Navajo-3895d6efb7ac9bac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-8-38a34c169fc5a24d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-PRC-38d0929dcdc91144 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Kanton-38dbe121a0bcf4b1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Juneau-3939a9ace55745a0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Chile-EasterIsland-393f0231a60920e3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Krasnoyarsk-3993d88bd9e85b9e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Kentucky-Monticello-39e8f2c71a7956ad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Chongqing-39ea4bda04179646 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Ljubljana-39fb474a08323b7a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Argentina-Salta-39ff4cc58df91cc1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Menominee-3a4d29594b3a7711 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Danmarkshavn-3a53e075fd72856b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Reunion-3a580ec9f4271474 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Prague-3a761bc83ccc5eac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Makassar-3abea07201f1e5d2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Singapore-3b28f28a9a8551dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Rangoon-3b84fe87e6e0cbae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-6-3b98429817250f83 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-St-Kitts-3ba9ab5bc541c1c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Dominica-3be40fab8b7c674f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Jerusalem-3c7bb0a76ec9dc27 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Anadyr-3c960511fcdd47fa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Buenos-Aires-3c9bff9fcdb145f9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Iceland-3cc51e65e13ba4a6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-MET-3cd59da1990aab21 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Libreville-3cf213f2ebcc5860 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Arizona-3d00fc9e1eac2708 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-8-3d05d78f87852ac1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Tbilisi-3d29edbaed9b8fc8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Guam-3d2e00a47fbd6fd3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Canberra-3d3598da4068b2d7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Jayapura-3d538709bfcd53b7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Mexico-BajaNorte-3d961170a2969258 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Puerto-Rico-3dbdda115e95a0e0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Funafuti-3ddc076efde91965 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Indianapolis-3de1632e3aa1005d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Qyzylorda-3df6d9a21b7f5fe5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Ljubljana-3e06798328ee350b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Hobart-3e764c85c1c157d1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-EST5EDT-3e8566e58fe2c564 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT0-3e877f1fa7e98819 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Chuuk-3e9198a5c6847fa6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Conakry-3ec767167a81b9c8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Niamey-3edb39c3415ad29e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Lindeman-3eec59952581475b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Lord-Howe-3ef337ddb4c3f693 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Hongkong-3f0807c4d3747489 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Araguaina-3f96c593e5ac8a3f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Panama-3fbf0f3bb41b87a8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Hermosillo-3fe7d2ffea943a0e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Port-of-Spain-3ff7b89b740b4db9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-McMurdo-401a1a5046485b0e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Mexico-City-401cd1cc1766be45 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Dushanbe-4053d07a6eb81b72 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Grenada-408c42d802df48df +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Antarctica-South-Pole-40a54feab7b7d1dd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Iceland-40cc8cd95d56fe8c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Lower-Princes-40fbb205cc3f7307 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Nouakchott-410089a062211282 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Atlantic-Faroe-4118b3bccf3ed34e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Warsaw-4128ca431885bf20 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-UTC-4143142a4203541a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Atlantic-Madeira-41686067185fbac9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Karachi-416defe194325a42 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Atka-41b8524eeace248d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Wallis-41be956657fbc419 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Honolulu-41dcdfdcae87de7e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Atka-423040b70699eb8f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Rome-42a510b7d1f55676 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Melbourne-42aec64a52cecb6d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Nauru-42c96f4a558b05cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Managua-42d8771f9e1febfe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Bermuda-43647d92f468e6d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Saigon-438174f383716723 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-10-4383eda2848aad7e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Aleutian-43dbb89d7a63753e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Atlantic-Faroe-4401e2189272667d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Fort-Nelson-4432b7ce601eb4c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Gibraltar-44546d00736caae2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Urumqi-4463d266ec284c81 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Dawson-449124f98ece733e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Busingen-44ae0f2a3f3826ce +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-San-Marino-44d653fc10d35699 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Pontianak-4524f823e222ae31 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Tortola-4546323687b17806 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Tunis-454d2cd86962dec6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Zagreb-4557e54abb2e55cc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Manaus-455d4dd192930f02 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-UTC-4570f6de40469f1d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Guatemala-457971516c5e6bf4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Danmarkshavn-45952689fcaaf592 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Marigot-459baa1d89886fe6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Atlantic-Azores-45c4be6789cc1785 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Riyadh-45e09243aedbad82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-PST8PDT-4602163d7aa7d075 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Atlantic-Azores-4606a90378372651 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Kigali-46258ef6e3aaaf1a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Aruba-464cf9ca03b172a0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Ndjamena-4664f15c5812c699 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Cayenne-46b32dabc1a26b90 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Newfoundland-46d00f14d2b364c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Yap-46d386603ff28a3e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Amman-46e8c3f76ff8a2d2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-PST8PDT-470fc5f124bd67b7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Lusaka-4755a07d29ff3075 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Chihuahua-47776c32c7107e40 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-10-477f5b09a6dc4b34 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Kyiv-47994db90d0f8271 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-GMT-47ad46f3e74adbf8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Zurich-47b3878072e84128 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Ashkhabad-47feb79c1ce72398 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Majuro-48559e907089abfa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Cairo-4862f46b509265fc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Tongatapu-4863c3759bac9c01 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Samara-4881a211c0ab8ebf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Johannesburg-48eb081449ca7ef2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-La-Paz-48ed9d69971de18e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Tunis-499949bdf298590d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Urumqi-499d60b43e850386 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-9-49a01234e6d2846a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Virgin-49bdef6eb959c5c5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Rainy-River-49ccb49b2b022661 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-MST-49cfb0bcf4419a57 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Porto-Novo-49f4c5f1e125038d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Atlantic-Madeira-4a02a63c3228e96c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Kwajalein-4a0806302f3890a0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Juba-4a41097eb172dd6a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Monterrey-4a9320c352e80802 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT0-4aa8ba12db5baa31 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-San-Juan-4abb8574586cff9a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-GMT-0-4ad901179383bdc7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Marigot-4ae71f07667d1bb7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Algiers-4aebc7f59afa0606 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Qatar-4b09ef3c6babd48e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Alaska-4b21c26949e02337 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Banjul-4b34010267742fa8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Oral-4b39a377ae3bf5d2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Detroit-4b54686d88aba994 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Nairobi-4b5ac54d13a2f2be +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Katmandu-4b83d6659489ca34 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Canada-Yukon-4bda1351952f98f4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Guayaquil-4be4541e759d80d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Canada-Eastern-4bf06a131f0e4ef7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Dili-4bfe56e60f9bfcf9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-12-4c69523ed27ecf9a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Baku-4c6dc29155afc906 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Halifax-4c6e2bdd27055093 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Chungking-4ce1cad9a7f5df7a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Belize-4cf1fefeed4539dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Douala-4d038aaf9fdb812e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-EST-4d1b9ae80facc188 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Maceio-4d2fa9df11fbb13d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Creston-4d5bb98c8a3cabdd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Shanghai-4d5f8e4eceaaae24 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Thunder-Bay-4d93c16ae804ebad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Lagos-4da90629b73370e4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Cayman-4e4e948b3323dabb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Goose-Bay-4e8b21ffef0b892e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Pacific-Kiritimati-4edd692e162a9ced +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Canada-Mountain-4ee8b3f81d98161f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kuwait-4f0bb8f685116ba5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Ust-Nera-4f1d22d54d08c488 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Helsinki-4f70d6951bd368aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Mexico-City-4f940af3e5c9e20d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Maldives-4fd87c560c1a04c3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Bishkek-5065310af17cd5e5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Kampala-50826c9cf6c8d4b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Atlantic-Cape-Verde-50ef553952fd6515 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Indian-Antananarivo-511460194a5120c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Tasmania-51448140b3e47c3f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-NZ-514728702c80b2a1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Belem-51556efc948da496 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-10-517d27986ddfd61c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Kampala-518e8d848af181f9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Dushanbe-51aa99aa630646ea +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Tokyo-51b3a71fe124da0c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Regina-51c660e06867c76e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-GB-51d2e9887d931d21 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Zaporozhye-51f5fd6ecf68d958 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Belfast-51fdd53e06649d95 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Shanghai-526f6335b2259104 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posixrules-52ae4f71c6edf4aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tomsk-52c2237f1185a732 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Mazatlan-52c888e362b7af06 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Fort-Wayne-52f2294de5aba540 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Mendoza-52f9aceda80e260d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Truk-53014a5b1bf25db1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Goose-Bay-530550394b90c5b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-HST-535d7a438c39faa6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Volgograd-53818f6ac6aa49ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-14-53dfb2e022ef32aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Prague-5422ddaa6143b23c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Vancouver-543a6f53eb2712f2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Tehran-543f32c1efd57e1e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Brazil-West-5454132613de2eec +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Antarctica-Casey-54718e9967256a52 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Antarctica-Mawson-54905f3430f04f41 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-LHI-5490f829de19ae23 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Africa-Ouagadougou-54a93d5eff67d6c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Asmara-54b0360df67a03ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Australia-Broken-Hill-54baa9ef6dc73dcc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Santarem-550f96d9cccec32b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-St-Johns-551b5f36e5485bf5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Danmarkshavn-5552e86da393911e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Thimbu-55b5bbac87b14a2f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Lower-Princes-55c9bf2f1df80f46 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Mariehamn-55ca287dcea1ca4e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-PST8PDT-55f856f568c39e73 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Rio-Branco-55feb0e8f6274aab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Indianapolis-563968570163fac2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Jakarta-5642744effba1582 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Adak-56888919780bb315 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Casablanca-5689ca090dc73ad8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-Rio-Gallegos-568e5baeda02402f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-14-5697affaba3c768f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Nassau-56aa206dbf9d095a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Campo-Grande-56cdfffead9c1583 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-WET-570d51419e400a21 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Davis-57d3c048a034f2bf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Eire-57daa95a0e7bc272 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-West-57ea9e932b4568ef +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Vladivostok-57efd17c0a58ca08 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Nicosia-580795629bb3205c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Kashgar-580b124d1ceedef4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Coral-Harbour-581cb39a00f59c89 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Atlantic-South-Georgia-58240b54fa5415af +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Wake-5824ec52ea1bd91c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Shiprock-5827fa0db3e7db3f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Tegucigalpa-5832e3b87a40fcba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Brazil-East-58b45f1c430e6197 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Port-au-Prince-58cb01538c337fa4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Tomsk-58d11efa51b24e28 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Thimphu-58e1a336ec8207d5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Cuba-58f3d65572f4eb45 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Antarctica-Vostok-58ff4f29f91a8f26 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Indian-Comoro-591a16a4ccdae862 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Macau-59b16ae3f91e56b4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Berlin-59fa08cef5f4f4f2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-EST-5a0209e81490fe5b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-PRC-5a13e8813c7c1c13 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tehran-5a7fa98750d8c726 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Iran-5a8f58bc671c42ef +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Sofia-5a9bcd63aa05866c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Atlantic-South-Georgia-5ac1887fb704ecc2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Belize-5ade69e6b8c04841 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Midway-5ae5785b4966dfcc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Blantyre-5b855ca6b0b9fa9b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-2-5b907ecab5e48bf3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Kiev-5bc041d608932156 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Bamako-5bc1fdfb65e5378a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Asia-Yekaterinburg-5bfb36bbd0556f32 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-CST6CDT-5c0f414dca0c263d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Niue-5c5394f9a99b260f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Pontianak-5cb16d7c75c34a0b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Montserrat-5cb778c1e7aa7ddc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-3-5ccd04c593322c54 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Antananarivo-5d1d29e1891bc3fd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Faeroe-5d43bf03000a8163 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Phoenix-5d5dfedd582f2bcf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Cordoba-5d6b97aac39d8000 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Mountain-5d731bd4969b475c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Santarem-5d89f6e3931479c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-Catamarca-5d93f225e3326eb9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Cambridge-Bay-5db99e5750e3caae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Indian-Maldives-5dbf504a642cc576 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Ulan-Bator-5dcc5d362b90abca +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Universal-5df1e76fbdf33844 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Indian-Cocos-5e26a7ba9f942258 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Vienna-5e2f37b9b5e79f50 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-0-5e4f5a8f15b312aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Harbin-5e610367147eb744 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Bratislava-5e682cbb6fe86598 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Cambridge-Bay-5e75625a9e91fe36 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Dominica-5ea1122234e58bda +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Anchorage-5ea24487e8643121 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Antarctica-Davis-5eb804051a6161b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-Zulu-5ef12954b9125c00 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Montevideo-5efc090b56574580 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-NZ-CHAT-5f0597ae3dfa60f9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-Cordoba-5f0a542cc4265710 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Catamarca-5f1dd1ffe9560911 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Tarawa-5f4278105172be5b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Damascus-5f752eb1c1d23838 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Brussels-60ca8beba4bb2d3e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Oslo-60f535480d74dc66 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Seoul-60f9a06215973d82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-EST5EDT-6116226833a90880 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Atlantic-Cape-Verde-6137ebbac86afc20 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Ho-Chi-Minh-61408cdbec1c31fe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Kabul-61be725119ff0019 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Kosrae-61ca1be299070bcc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Kiev-61e80adf5fddbbad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Canada-Central-61eeae6ebde29512 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-North-Dakota-Beulah-62104c0a4c4c6d91 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Aruba-621d1c7ed14f6583 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Cayman-621f3a84d37fb3ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Vatican-6232db13d8bd5b57 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Cordoba-625b752d60dc5d7a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Halifax-625c572f8911b4be +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Zulu-627976a30f13eb68 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Uzhgorod-627dc0b215bdf2dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kabul-628f5b3e98429f5a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Buenos-Aires-6297f670770fe380 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-CET-62bfceef606d61f6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Anchorage-62cb06fc6b0a682d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Nairobi-62d02f0fb4bdfb6e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Goose-Bay-6307fa13196ce256 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-San-Juan-6323d4e22deb918b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-GB-635a2e0237a3cbf7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Mendoza-6366605ff76644e5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Metlakatla-63807a1516f5cb9a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Vaduz-6399fe450c11ccf1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Sao-Tome-63a6356698e04fb5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-2-63dcf82bd00e621b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-MST-64062123ef767c78 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Johnston-641c3b8d7b1870ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Lima-6421a1d71b24cd6e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Libreville-642bf1023df0a871 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Europe-Kaliningrad-64353765c5a8f5bf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Apia-643588cb9409b477 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Jayapura-647ed30c16038a8f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-11-649e502fd9f8b908 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Mendoza-64d68116d61b8e7f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Oslo-64d7436737292b26 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Universal-64d78b24d5f3b9f8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Yakutat-6568ad9bed5ae3ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Hermosillo-65860e84b462e67f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-GB-Eire-6590396946380b5e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Africa-Addis-Ababa-659044aa54ff11a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Muscat-65afbbc155b79c17 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Tongatapu-65d83d726e0ab93b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Guyana-6621c6b1e67b467c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Harbin-6661de30a0204d70 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-ROC-666c13058413cc99 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Moscow-666d5bb1665d9b3a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Rarotonga-66ac0ca01c77fb05 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Europe-Kaliningrad-66ac8e4814f93ef7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Mexico-BajaNorte-66ccb5b20a14ad39 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Kentucky-Monticello-67225c702b2b63f4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kathmandu-673f9ee1396b2c62 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Central-67447bde0f9c4073 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Creston-674ec88030ffc5f0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Antarctica-Mawson-67851b4bc7a5dfae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Africa-Dar-es-Salaam-67a1665464eac612 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Eire-67ab35365cd6127a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-GMT-0-67af0d0d503efc49 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Yerevan-67d4fe9c56ad9b58 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Srednekolymsk-67fa0ead71d03404 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Mogadishu-685218501c807e12 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Nicosia-6862972a7f5f6166 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Kathmandu-687ab76255e18557 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-ROK-68db8c6f045205ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Kyiv-6915b4c7a6a81c95 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Kanton-6952af4b47a7d774 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-69739dfdee06b830 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Tijuana-69de8ce0e9257632 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kashgar-69ee2571570d2277 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Freetown-6a09ed84692c1140 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Edmonton-6a65e1c53227ed3f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-La-Rioja-6a8c366800cd7aee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Nicosia-6a9c73bf16c8aaa3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-Greenwich-6abfe5b8c011c3d9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Port-au-Prince-6ac5924c5b2e160a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Timbuktu-6ac8d8433baf23d7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Easter-6aea10e63b21784f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Barnaul-6b01704c60b4d25b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Santarem-6b021e730bae6a29 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Saigon-6b069e554143f1e9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Boise-6b1f171fb535fd79 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Queensland-6b6975887d31a7a4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kuching-6b6f0424cd3addea +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Boa-Vista-6bc18dedb1193307 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Sydney-6c6b0f0b5f374820 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Miquelon-6c763a10ad82213c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Costa-Rica-6c7bf881913e5a6e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Indiana-Starke-6d06fadd70a63341 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Samara-6d38d7ae9a19aa8b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Iran-6d570c99b1995144 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Cayenne-6dc4802cbfb295f3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Buenos-Aires-6e0f51c99af7b957 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-GMT0-6e1e41f4a6ca905e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Hebron-6e44876215173aff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Istanbul-6e732c690e1c0e77 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Mazatlan-6eaa123f1066007e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Athens-6ec7d4ea17c65daf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Guyana-6ecc9b08daddbd75 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Toronto-6ed05552fad28446 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Belize-6f2fa424f2131790 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Bahia-Banderas-6f4b0bcc5dc69ea2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Porto-Acre-6f7224eeb8092123 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Antarctica-Macquarie-6f8f1b173853a284 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Auckland-6f9587474de18f34 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Kerguelen-6f9670d8f1015fb4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Panama-6f9dd849e37bf814 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Noumea-6fb59859fd17c85a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Saskatchewan-6fbc2191935affa2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Mogadishu-6fc60e182c2d9cfc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Africa-Ouagadougou-6fcba9e89391a44b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-Antarctica-DumontDUrville-6ffc9218d4d16457 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Lagos-7056959757e1c598 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Vienna-708e75796a4e7c11 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Skopje-70d334a464e91064 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Jamaica-70ee34e14a9217dd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Simferopol-711fac02f9bc3d2a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Knox-IN-716f9771506b7bf9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Guam-717cb3ecb9a5caa1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Casey-719eb20a39899618 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Douala-71aab6294e7b73e5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-Sydney-71ee42b213d3102e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Whitehorse-71febde24feb1362 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Shanghai-72002c1fab2ac6b3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Costa-Rica-72097263ca4fa3b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-El-Salvador-720cbcce8ec3055c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Metlakatla-722724e488266ec6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Caracas-72553e16e0c29996 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Paris-727aefc051221ba4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Santiago-728866521cf0232f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-New-York-728a0f4a0b50324d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Juneau-729069155a0854ea +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Asmera-72975ac0b11b23ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Kigali-72b8c0d22bfce723 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Douala-72cd9483796db162 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Anadyr-7330033c81cb88ef +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Busingen-73621d80c32671a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Auckland-7363904f9180f056 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Conakry-73a82059b4ccb7f0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Managua-73d73a1ff4d0997b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Andorra-740730165141fd6f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Samoa-741f52f6e2294226 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Argentina-Jujuy-744783083fdd46d4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Midway-74503a3af204f929 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Pacific-Bougainville-745eafdc14f770cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Mexico-General-74640391886f889d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Victoria-747225694891ed1a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Indiana-Tell-City-747c746cce9ee41f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Hermosillo-7495dd6bf9a86b4a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-Darwin-74ac86d6d2e2a308 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Copenhagen-74ad115417e3300b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-US-Indiana-Starke-74ae0be3628f0cb9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Indiana-Knox-74c9534dbe502e9b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dili-74cbc3051f5c33d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Famagusta-74de5e9f4012fc96 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Lisbon-75096177a14b702c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Japan-754580e4e2086e67 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Poland-757026fbe68680e3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Kosrae-758cade5b32b708b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Sao-Tome-759cc5596a953169 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Pontianak-762c830aed047f33 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Mountain-76479f575f33d370 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Ulan-Bator-765d45eb3e4915c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Guam-7660466e2ab29afb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kamchatka-766bfaa69907bad4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Indiana-Vincennes-767be5aab3358683 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Belgrade-76a08d4003980237 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Krasnoyarsk-76ac0f2d0f168ca6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-3-76aca26f926713c2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-GMT0-76eb0da79433643d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Taipei-773968568fa63230 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Juba-774a78be340961d1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Casablanca-774b70dcd677d2bc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Canada-Atlantic-77832710d60503e8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-San-Marino-77ee845c884d8003 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Yancowinna-7801ee8d23711636 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Currie-78053081b06d4ba2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Libya-780a9254d2fc7681 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Atikokan-78556b64d7cfc0bd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-San-Luis-785997dea3730112 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-South-786fbd4623b07b56 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Victoria-788e46dc0878eeb8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Tomsk-78d40efea3283dac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Kwajalein-79bba1373c100e82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Brazil-West-79e5a17cd8eb1f3a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Indianapolis-79f4623a9a093d23 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Lome-7a5982aea5ddb98f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kolkata-7ab5aa8633c6c502 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-San-Marino-7ab964126e69c426 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Astrakhan-7b41217bf4bb92a8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Fiji-7b5e185aa600849f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Ashgabat-7b84a94447e71bb6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dushanbe-7b9c9f6d4968f1c1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Bissau-7bba4604f8a1f416 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-CET-7bc6fba9df3a43e1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Antarctica-Macquarie-7be6a7f67890598e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Omsk-7bf5685c3dff4f5d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Indiana-Vincennes-7c0d719153de5bdb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Ojinaga-7c15d9fd241c93c5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Blantyre-7c2e5d17d2ca288c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Santo-Domingo-7c37049773f60fe5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Funafuti-7c436fa92f3ef6b5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Chatham-7c4888eb36ea237d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Enderbury-7c5a62607aec4366 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-MST7MDT-7c7d86a7ef2747fa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Monterrey-7ca2bd0b44f5d554 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Istanbul-7cc78538eb768ef9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-6-7d2bef599e0f1904 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Indian-Maldives-7daffab09ffbe4ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-St-Thomas-7db9a547a0b01952 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Portugal-7dd7eea79b7bbf9f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Podgorica-7df6422067177ef7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Egypt-7e1d7274f6960a71 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Aqtobe-7e2e60c3fda8c102 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Grand-Turk-7e601a46db28dd6c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Fort-Wayne-7e62e93e18b33008 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Simferopol-7e7b40a65fd43fe4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Aden-7e9c8fddaa45f6dd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Jamaica-7ead5c2695d88379 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Dubai-7ed1ebabd73e1a72 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Tokyo-7ee5ee499f2427ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Iqaluit-7f313e20c6b0c094 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Mbabane-7fb105dba71dfdc4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Kralendijk-7fbfaa1b0bca495b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Chagos-7fe17e4538cb38ca +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Atlantic-Jan-Mayen-7ffbfd137e10ad5c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-St-Lucia-80022d8554ad1c7f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Tallinn-8009b26ed73bd581 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Stockholm-802a0b2c2236a5f1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Ulyanovsk-80674ff3684b239d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Hawaii-807221df948060b2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Moncton-807b283410ef8e15 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Oral-80858a8e11fa804d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Macau-80cd147d8134efe7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Budapest-813fc1b5a61fbea7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Melbourne-8167e8ed6319763b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-Cordoba-816a00b60479885b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Phoenix-81735e1ef3a0be09 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Kwajalein-81b62ed0539c9b52 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Canada-Atlantic-81e6cdf18244c129 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Rainy-River-8209a442d7ca625c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-US-East-Indiana-826f3f150863b0d4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-North-Dakota-Beulah-8274a18e97089120 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Khartoum-828138d63a193c2d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Sofia-8297bbb21a47279e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-Perth-82fbd3b418545009 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-London-8312a657da639b2d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-EET-8345e008a2843d16 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Bratislava-835f25632da51918 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Perth-8371217cf12047c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Mayotte-83a6cabb3df54de7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Calcutta-83b875cb03f1ea70 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Broken-Hill-83fc910e78033f79 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-Ushuaia-8426a38cc390b6d8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Rosario-844edda99a41b2bf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-St-Thomas-84a1ab0c77301728 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Indian-Christmas-84c67ef3ae054dee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Nassau-84f865eff3e7bd0c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Irkutsk-850cd9a46d755e5d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-NSW-856341d08b7eb912 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dacca-85860637ad7f71dd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Chile-Continental-8590f5c6f156abc1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Costa-Rica-85a9893343bb49c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Aqtau-85c65a3136e62ed6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Nome-85ce1771d189646c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Honolulu-8649597e0f5497e1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Porto-Velho-8656598f79436b12 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-Tucuman-8664aee025a91762 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Hongkong-86847aebaf4f1246 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Khandyga-86c3bbd27ecb713e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Jamaica-87298a51e1bc7166 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Algiers-874c040608e723f1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Atlantic-Bermuda-88048cfe5c84a351 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Antarctica-Rothera-88121c1d6d4162c1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Calcutta-8820866a7ca061b0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Dakar-88222fdcb8fcfacb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Lima-884c85eb91e8204e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-5-889b834d65e2e5ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Whitehorse-88c304b67ac75926 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Guyana-88cd4f7f4f5ffb0b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Aqtau-88e23db4d40a2424 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Virgin-88eb52e1cf076e89 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Pacific-890c10148be33e82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Greenwich-892aee4bd2cf479b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Yangon-89632d752e95bbab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Copenhagen-8981c5295df0e0ee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Ceuta-89da3e8ed05c7daa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Sitka-8a2f4647b566d39e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-El-Aaiun-8a5b799dea1999f9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-North-Dakota-New-Salem-8a5d80a683b7abe7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Kathmandu-8a5df7e182b0b617 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Chihuahua-8ab3d5e240b04204 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Saratov-8af843352b418947 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Montreal-8b0f2a7543d30938 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Ulaanbaatar-8b34d5a7d8700043 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tokyo-8b4b32128481b775 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-Zulu-8b985e439b088880 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Stockholm-8baabde4ebd42a26 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Greenwich-8bb80866ad4e6533 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Jamaica-8bcca8da56ecc437 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Kentucky-Louisville-8c0b98513f3ab0a9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Minsk-8c1bfc837e7be8e8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Aden-8c22ea8707f29f8a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Djibouti-8c3a9ada91d5c3ee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-3-8c57f75ac59f678d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Bahia-Banderas-8c6d6295e524cd82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-iso3166.tab-8c7a55f3ff22879d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Guadeloupe-8c7ed0a7500a3946 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Windhoek-8c8489fb6b92d4b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Argentina-Salta-8c9ff1a9c99f2331 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Kentucky-Louisville-8cef8ac1eafd310f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Galapagos-8d1c86f32b44c575 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Scoresbysund-8d21bdb78c7fcce5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Thimphu-8d2726d5fe198daf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Kiev-8d27e4884e7aaab9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Magadan-8d4d9ddd5e6ce9d6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-2-8d4f1cc70f26da4b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Atlantic-Canary-8dca9f956af63d9b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-10-8dd578e3f3c18215 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Luanda-8dd9f212c3d5250e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Bamako-8df4e25281318b19 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-San-Luis-8e116060197b9e5a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Jakarta-8e348b2ff0979487 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Thule-8e423888c82d7879 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-CST6CDT-8e47d03ec8d76a04 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Santa-Isabel-8e8c368fb20e9837 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Norfolk-8ea5aad41de30fe5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Egypt-8ec0d4806cdfeea1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Rothera-8ecd3a98b92fa3c2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Maceio-8edf7ba1c193b263 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Phnom-Penh-8ef08b0e96757f4c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Lome-8efed044c61c6490 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Wake-8f18b6eefc1e6863 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Nauru-8f327c8d15d9c198 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Rome-8f869860d9a7f32f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Anguilla-8fb76ebe7b17c556 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Mbabane-8fbcba5d4035f79c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Matamoros-905af1e8fb2e6084 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-UCT-906dd4cc44e2488b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Tahiti-90922de3e0fff3b2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-ROC-90a2d661c9569338 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Pacific-90c8f9782fd9f216 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Mexico-General-90d7d0d832dfb1f4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...America-North-Dakota-New-Salem-90f509aeb07dd049 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Chile-Continental-910debf509f542a9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-US-East-Indiana-912250e96f3d9099 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-10-9175aa1cdd8b48b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Inuvik-9187aaa5d0bbdb98 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Honolulu-91af410b0888de03 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Nuuk-91d179d1f3dd1c67 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Fort-Nelson-91d4567eee8a326e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Saigon-91da65835aa971a8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Brazil-Acre-91df7805b726ccb5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Pacific-Bougainville-91f364eb044a3bd6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Guatemala-920ea51a6225a645 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Timbuktu-9226033f84f3968c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Zulu-92260da33b6f4f2d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Sakhalin-926955718186fc96 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Antarctica-Davis-92e4439329f1adcc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Mexico-BajaNorte-930fc6a190a03c44 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-NZ-CHAT-932094120e0b183d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-St-Vincent-9369fac9f9031db4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-Universal-937bfef42e0254cd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Efate-938e13c492c907a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Resolute-93bc54e0758f1df9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-UCT-93c1ddf0eea31941 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Maseru-93c61101becf7139 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Toronto-93d0e265395abe4c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-London-93e726a0baf071ea +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Krasnoyarsk-93f3d32c69b1a813 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Maputo-93fdc7d163b77b37 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Montreal-942a4ab1724f982e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-11-9437439d01a58037 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-6-94468bbd5c81e4cc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Cape-Verde-944ad4ea783d13d3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-La-Paz-94971856cad96a01 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Santo-Domingo-94ce4ad4b3a032f0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Godthab-94ce5a62b5ba852f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Barnaul-94e95117b4787394 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Merida-9515da959b577b5e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Bahia-95620767acd9a2b4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Port-of-Spain-9567d512216e91d1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-13-9577d534f0e1fadc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Grenada-95bcdfbf5b9a28ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Detroit-95cc79ce8b8e8f8e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Antigua-95eecab58ad115bb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Tijuana-95feec09e783dd86 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Barnaul-960eb4ef639409d3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Sao-Paulo-96521f0a833d01b3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-North-Dakota-Beulah-9666a449e658c088 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-UTC-96868400dd7d81bd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-8-970f0f2188587d5f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Caracas-9723a0cb53918349 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Cancun-9752014b049cfdcc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-5-97a5056dcfd1a599 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Atlantic-St-Helena-97f94511a525956b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Swift-Current-9804a94ed987d37a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Tallinn-981700920bb6ca4a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Hong-Kong-985c6a52e2aa1cdd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Malabo-987ae299795477c5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Iceland-987d28238ce37b27 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Madrid-98b7daa0b03e2c30 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Montserrat-98efc091d040c84e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-4-99081208c7e387b2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Chita-990c45e6523e1dda +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Oral-9925c98e7916ee1e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Toronto-999f27741626236b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Luanda-99a9485d08e2e8d7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Brisbane-99c31a488b587c2a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Araguaina-9a7b7f518953e7c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Vientiane-9a821800559cfe38 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Pacific-9a9c4db000f39fda +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Atlantic-Bermuda-9aec64eb81acfff5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Antarctica-Palmer-9aee00d327d1d44c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Monaco-9b024aa55f55dea3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Cuiaba-9b1286a34d8bde5f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-0-9b1c00da20caa601 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Samarkand-9b201456461d298d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Atlantic-South-Georgia-9b266b86a5142562 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Vienna-9b491d2d4ccaf792 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Santa-Isabel-9b819ead05d51da7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Samarkand-9b88f48ab96025e6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Africa-Johannesburg-9b91cf0885717a5f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Yellowknife-9c086a2e9d6371cd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Indian-Mauritius-9c0fd727bb572bd8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Busingen-9c17217ee2d884ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Riyadh-9c4111075f32b21a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Sao-Paulo-9c4f9a2c0691d421 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Adelaide-9c7cc86eb922fe81 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Amsterdam-9c8b07319094ada8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Japan-9c93bdc7bb4c2412 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Ust-Nera-9d0d8b49e8368d35 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Zulu-9d1192080c48fe28 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Windhoek-9d16e6859b46eb65 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Yerevan-9d1e020687589b14 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Bangkok-9d32b6974c36f821 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Majuro-9d36ee43c31e7ce4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Los-Angeles-9d67bf17cb85c8ed +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Rangoon-9d6f78257236f210 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Jamaica-9da108fc07051013 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Timbuktu-9e0071b29846eba5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-UTC-9e23415b179e7e80 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Dubai-9e31ee55e21762e7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Chisinau-9e49f761c2286efc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Efate-9e4a3f89aebc1f8e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Pyongyang-9e55df322adb1568 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Cuba-9e8ac6d0f9abd7ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Saratov-9e9562006a94d7d4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Karachi-9ec6977c8ce3c1e2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Monterrey-9ef7eb484729837c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Scoresbysund-9efc60ad3d282460 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Australia-Yancowinna-9f181b4678c0a6e6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-New-York-9f2605a9cf725d57 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Broken-Hill-9f77e3b751f2dc15 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Resolute-9f7d142ccfe42ce8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Fortaleza-9f834af7d550cc95 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Eastern-9f9c532c1881489a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Australia-NSW-9fd6127320584926 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Gaborone-9fdb7bd9aeaa8871 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Singapore-9ff5933e02286c93 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Macao-a02cad65076117aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Berlin-a065c74722873c39 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Chatham-a08485743c80ce59 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Makassar-a0b6c79de3c769b0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Muscat-a10c69bc43ce1fe4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Chicago-a135cd2aea5c7dfb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Ciudad-Juarez-a14a1a8ee880b7fd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-HST-a16f8e0b71f13058 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-11-a1cf6ab26382eefa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Skopje-a1dd47e04244f39a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Bahrain-a1e04af90ec16537 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Australia-ACT-a20ab4c0e0876ea4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tbilisi-a212434f6c04a7c8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Asuncion-a230400091d01caa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Bahrain-a24bc218412d3400 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Antarctica-Palmer-a28f6c7c08a843f0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-GB-a2d3c3e1ab387e77 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Kralendijk-a39389dd818bf2e0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Atyrau-a3bfa479b3971f4d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Tortola-a3c5e9d1f7a6ca14 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-North-a40966ef528107e8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Dawson-Creek-a421442c7af6a65d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Tel-Aviv-a4390f8a80782a0d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Tbilisi-a45329db137c6e5b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Brazil-DeNoronha-a45ffb795c3b1d0c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Fiji-a46a3e7b88955e6b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Indian-Mahe-a4763d0ebde86708 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Chuuk-a490f110773cb7cd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Minsk-a4b717635b2fc2aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-licenses-tzdata-LICENSE-a4ebb53ea1ad14d2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Vatican-a4eea54d85ec3b3b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Easter-a567892ebe04bf2c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Djibouti-a5c0f9a66030b4b3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Tallinn-a5dd9413af91a371 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Kentucky-Monticello-a5f9809dc27ec638 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Pitcairn-a6297fd5a3b25f7c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Bangkok-a65d947460818570 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-6-a662e2cad9177e4b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Jan-Mayen-a67eb7be1b3d26c4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Macao-a724d58e48b6d6e5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Lusaka-a735e3ea1e7b1db5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Boise-a737ce434a5bcdf9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Gaborone-a751bafdaf2f817b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Kirov-a76a9f653922fd15 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Lagos-a788a31364f41eec +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Lome-a78bb7d1dc213075 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-5-a79858945570dc70 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Brazil-East-a7cfbf15307a13af +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Vientiane-a7eb3af5063e741f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Hong-Kong-a7f3e0e1d0b854de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Guernsey-a80784a1889f9e71 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Budapest-a8b21370f2d5b534 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Indiana-Petersburg-a8bfbaa1276152dd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-11-a8df065c5bdc1caf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Helsinki-a8f6505771b1eff7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Recife-a91c809fd9e93bc7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-Sydney-a957118c6a3dfe7a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Caracas-a979b42e6ffe32cc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Atlantic-Stanley-a984459c5e802f4a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Canberra-a9f380d45bc484a8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Galapagos-a9f79e653817938f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Brisbane-aa13dc5da67c3443 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-leap-seconds.list-aa1b5b92d7dbffdd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Yakutsk-aa1ea76866bd9bb1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Riyadh-aa3c1ad832595979 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-Eucla-aa559e2c5bf7cd10 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Atlantic-Canary-aa9d1491644952cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Palmer-aadde2bd5518ac13 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Iqaluit-ab2aa89bb678fb29 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-12-ab38f130300be930 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Cambridge-Bay-ab39d5c4cadd8a6e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-South-ab8e8ff22de7ddd4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Mexico-General-aba4f4115601b339 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Asmera-abd650c63a995cb5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-Eucla-abff752269a5aeb2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...America-Argentina-Buenos-Aires-ac260416c9b812ce +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Lord-Howe-ac271e431624bb14 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Tiraspol-ac7e4623da10a913 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Canada-Central-ac8184fcb6861c60 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Gaza-ac884b9a1aa18cba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-Darwin-aca7be17188e3f7f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Jerusalem-acb56c574e17dcec +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-4-acb8f2c9c3dd924e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Luxembourg-ad07402a6e95abe6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Ho-Chi-Minh-ad07d6993ad6f03b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Istanbul-ad61b18372ade36a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Blanc-Sablon-ad809808b5329a5b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Fakaofo-ad87177ccc40c266 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Ashgabat-ad9d53fee825429a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Indian-Kerguelen-adac339c5fe796ee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Adak-adbfa52b0d4e9aa3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Volgograd-ae1a3d9ce6f1e2ec +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Cancun-ae264860e0414d63 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Makassar-ae392a3ab9c44011 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Tahiti-ae749513dfe213a1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-St-Kitts-ae98e6776e138180 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Nouakchott-aea73a9ee4ee0c42 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Tehran-aeb96463187db6a3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Fakaofo-aee7eb2409ec24ef +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Atikokan-af0bd8db85abebe2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Tripoli-af14c0d49b3c42d8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Gaza-af1571c1f57767fb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Pitcairn-af5f2b2eecd6ba11 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Aruba-aff28a215db18ceb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Macau-aff66468edb2bb11 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Santo-Domingo-b0a2a4533d2a52a3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Tarawa-b0b14641995f3853 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Brazil-Acre-b0bd8ad937b77531 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Truk-b0de0999340923b2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Lisbon-b0f61e1d4fbab911 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-UTC-b1259359b4378936 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Cayenne-b1432f174ee2c70d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Juneau-b1498e5bd967cafa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Qostanay-b161517c36141812 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-St-Vincent-b1ac1004b8e060af +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Knox-IN-b1d3c56b34732dfa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Libya-b25de5ca2cd5a439 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Zurich-b26883232ec71c75 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-UCT-b273e0ce60655708 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-2-b2cd59b4d7c77c3e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Antarctica-Vostok-b333ea710a547821 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Chihuahua-b36a062583b00216 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Louisville-b3700922b8c593f0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-PRC-b3790c52aeaca5bb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-San-Luis-b394ea575daa3e03 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-Greenwich-b395830de260bad4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Aqtobe-b406a7f97bfb14ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Indiana-Indianapolis-b40f5254b641b6fe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Freetown-b4204ba69bbf03ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Eirunepe-b4435c4a16073a0f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Indian-Chagos-b44572a450a0f80b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Matamoros-b457cae4774d2f05 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Rosario-b45817f92d3df27d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Central-b46fbb8e2224b794 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Shiprock-b48ac55188ee6f2c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Martinique-b4d111e044420c4c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-CST6CDT-b4fd9e520e4dd502 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Merida-b5319251f60c5796 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Dawson-b550db08d2ef9c3b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Singapore-b553e03a91486ecf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Auckland-b57477d6e23b2a7d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Muscat-b5c27f3e6f3e4df9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Aqtau-b5d0cccf57108fc6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Curacao-b5e93b27aea825d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Knox-IN-b5f70d422e2a8a13 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Banjul-b61aa7d5282613e0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Montevideo-b65722f47f710302 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Punta-Arenas-b65d0f4755ead389 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Winnipeg-b6712421c0267fd9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Ciudad-Juarez-b68540147460d35b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Lubumbashi-b74f32bae7ed8614 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Atyrau-b75a4245a691ec88 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Aden-b768b9129fda10c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Pangnirtung-b7abeef507f855ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Kamchatka-b7cdd6ead0689e94 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-Hobart-b7ed10eb774e2592 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-Universal-b7f0784a9e3bc300 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Eastern-b80a228730a5438a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Abidjan-b80d09f476625e85 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kuwait-b81639f59cc78feb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Taipei-b81b7678b5daad70 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Barbados-b840afcaf626c81d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Samarkand-b84e3047148d0f86 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Miquelon-b8886359f1c30665 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Sao-Paulo-b8b93d8a429a388b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Noronha-b90775fae20a4731 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Canada-Pacific-b90f9080613fcccf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Portugal-b962c0206734f201 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Tarawa-b97929b57d330b2e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Kabul-b9dedb80610152a5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Vladivostok-ba30b5ee4bf3045d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Michigan-ba383ec1c00cddfd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Hovd-ba56764975f0a45e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Pyongyang-ba5989c1b27da58e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Bamako-ba79439521a9c6a5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Cairo-ba8cfcad91664531 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Harare-baec36dfc8704334 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Niamey-bafbb9f89ff1ff82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Yakutat-bb003f47678aa40d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Hawaii-bb0af169c921bf2f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Barbados-bb0d624da24d7af2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Pacific-Guadalcanal-bb0ddea73dc858f1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Eirunepe-bb11da9be14836b9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Harbin-bb1b9fcbea7c3b7d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Bogota-bb34f097c6dd5e52 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Kamchatka-bb66e6d0f67021c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-5-bb7d0183c1099041 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Ashkhabad-bb9d937e46c5a7e0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dhaka-bb9e7ec63b61f276 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Galapagos-bbbe0dc1b0f1b072 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-Catamarca-bc2fde7e466916de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Novokuznetsk-bc6796345ceefe85 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Irkutsk-bc78a06577793c26 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Bogota-bc7b87ef610a71a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Monrovia-bcc624e6afeeb999 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Miquelon-bcd0b3be8d95d5a9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-WET-bcd79e4f281897d7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Atlantic-Stanley-bce2ba69d93a0110 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-WET-bce8c94782109871 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-4-bcff92c6a1511738 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Canada-Pacific-bd0b65e7c53cd28c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Almaty-bd435cb0c4c034ec +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Rankin-Inlet-bd4fa151ba6382b8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Monaco-bd5f51b699deae0c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Catamarca-bd6e420cfc281133 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Rio-Branco-bdcef3f8fda1ee95 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Beirut-be269c915ca60248 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Blanc-Sablon-be2aab5fba77f017 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-GMT-0-be5232ef2c6d8c0b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-Mendoza-be561c81cd000e34 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Pago-Pago-be894274d5d625d3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Abidjan-be9602d5270660c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Swift-Current-be992afee149fdb0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Belgrade-bea63c6e3542d1d3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Juba-bea70a295a4361df +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-9-bf0fb8645e02a849 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Indiana-Knox-bf5b940188da1fad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Los-Angeles-bf72a7406560df47 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Baghdad-bf7335c0644060e4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Halifax-bfe7b0706ee007ef +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Denver-c07a184605dde1a7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-c07f61f581633097 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Darwin-c0864e0c484054c1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Asia-Yekaterinburg-c0aea23a8c418205 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Mariehamn-c0c7f0920c217d73 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Qyzylorda-c0ce30b5bbe8ff3c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Egypt-c0e23811624c7950 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Indiana-Knox-c11ca4f7c850c9cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Creston-c15a1aff4b4fe84d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Campo-Grande-c1961cf40430f883 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Colombo-c1a2402565bb33c2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-Buenos-Aires-c1a53a0134fb0f5f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-US-Indiana-Starke-c1c983a553f31543 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-11-c2086c656309d5b5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Ciudad-Juarez-c24a96416b2b0ab8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Tegucigalpa-c24ee3269c517a3a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Tirane-c26248af8fc07064 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-GMT0-c298a2e6e73d3817 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-0-c36b2b8f45e2032c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-W-SU-c382a06ea74a8f78 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Bishkek-c406e1204f613950 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Chongqing-c44b6fff862d65cd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Novosibirsk-c4c1aac97f0b68bf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-0-c53c5f53cbbc87b2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Rankin-Inlet-c5cd0b7ff12d409b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Maputo-c5de490d6899f926 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Conakry-c6181ac8d29d4bc9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Chisinau-c69bb6cf22a3aab0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Indiana-Petersburg-c6a6c79b9fba63b0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-North-Dakota-New-Salem-c6d2e6e21b0dc678 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Menominee-c70a9d2c06ed2a7e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-GMT-c739dfbdf01937e8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Almaty-c74a3ffd617ddc78 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-HST-c74d531a1a26ad6d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-Tucuman-c75982e533c61d3c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Manaus-c764be80a800a81e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Dawson-Creek-c76521be78a9512f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Johnston-c77ad49ab8ea7148 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Bahrain-c785a86fa751b8bf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Turkey-c79cf4b76a072618 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Jerusalem-c7b597398bf58186 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Kuwait-c80ac9c0dcd0051d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kuching-c83c541f92943c2d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-2-c843cc9009d01d9a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Qostanay-c855ccd16be31ef2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Uzhgorod-c87fb596ea6f7c81 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Niue-c8b53e5a80e74cc0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Madeira-c8d0ce73fd39384b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Canada-Newfoundland-c8e2dc1c161b2087 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Nipigon-c90f1818114568ef +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Colombo-c92cd497813d08d0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Inuvik-c939eebf4f29e143 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-Catamarca-c93c382667dd9b58 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-7-c93d3af8a9dbcb44 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Mazatlan-c93de14541209fac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Novosibirsk-c9541edd9fddb44c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Kigali-ca04255831de384c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-1-ca0a712f99e32df8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Monaco-ca2f56ec2ae54e65 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Ulyanovsk-ca530d84f6d17f4b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-NZ-ca5ac15c579c3e01 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Astrakhan-cac39eebe9577e81 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Zaporozhye-cad0f0a33f2ab0e1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Asia-Ujung-Pandang-cb219c1f2f1411c8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-La-Paz-cb909cfa542a1649 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Nuuk-cb912ed2ad3c38d5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Kosrae-cbcc38e041551cad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Istanbul-cbdebb38eb204d78 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-NZ-CHAT-cc2b7cc555452129 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Paramaribo-cc2e2bc6f081c99e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Pacific-Guadalcanal-cc3f0bf903b6a49a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Havana-cc539447ed2585e9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Cordoba-cc579c096e438e82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Arctic-Longyearbyen-cc95bca5cf84fbf1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Yellowknife-cca72e2778613e9a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Beirut-ccc40b569b11c67e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Indiana-Vevay-ccccc6f2963b38cd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Syowa-cd13ce2bef65a37a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Hongkong-cd4de9de3d862046 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Australia-Perth-cd98e6b68f5ff529 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Canada-Saskatchewan-cda3d702fd9bdbf9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Vancouver-cdb3e92c39b22f33 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Samoa-ce1920ca156b5ac9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Cayman-ce41494a4bd57e62 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Colombo-ce628e3dd1e748c3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-Antarctica-DumontDUrville-ce692e890036e731 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Grenada-ce9caa7dddcafa4c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Dacca-ced2a94eaa29444f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-UTC-cef2b18440be2b49 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-Universal-cef5e0bd76ab90ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Addis-Ababa-cf49509eb2a836a8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Brunei-cf6646e826cbc22a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Guadeloupe-cf67b9610614b2c9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Regina-cf7deb9a927fd49a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Bangui-d03cdb554a4c9b17 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Godthab-d060cd22cb24e8dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Katmandu-d0d3e795b2606ccd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Barbados-d13afce26471f9ee +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Indian-Comoro-d16d537fadbc5166 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Antarctica-Syowa-d1a370764ca7856c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Maseru-d1a910246b1d8d19 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Australia-Eucla-d1b1c20bab0e7927 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Yancowinna-d22a63c1e24bea8d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Bujumbura-d234e8a159f0f620 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-St-Johns-d239912d3debb20c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-El-Aaiun-d23a562f7a9fe131 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-ComodRivadavia-d2411d71004e83bc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Rankin-Inlet-d2418ce6124a2d95 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Marigot-d27b5432fa844884 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Kirov-d343079f25777e38 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Los-Angeles-d34d60cd03314b84 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Martinique-d358412f7693bca1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Accra-d35b4e25af52b33a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Aleutian-d375c2fcca0252e9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Indian-Mauritius-d399c8e48ad68bbd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Yangon-d39bbe91d9e6f3be +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Brisbane-d3bde231fe10ae84 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-3-d3d718743c9f9599 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Pacific-Kiritimati-d40d6fa3212aca6f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Norfolk-d43d74e42fcb3fa8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Vaduz-d45d61469b2f775b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Porto-Novo-d4860f946bf2cb53 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Marquesas-d4ac91462fa78d5d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Atlantic-Faeroe-d4b2071ac7788553 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Johnston-d4b7e226ec564841 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Vilnius-d4fa6089d240032b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Argentina-La-Rioja-d5278a54e24249ff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Kwajalein-d563bbd086791581 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Chita-d5ba06dd27cb7f24 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-8-d5bc5615789db9b3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Africa-Johannesburg-d5d90604412f7250 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Kolkata-d5f0081be0bbbe05 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Brussels-d5f20cbb66d835fb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Luxembourg-d635f7e531aa5422 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Antarctica-South-Pole-d64fbf3c032eef89 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Yakutsk-d67004226137393f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Canada-Newfoundland-d6978e7061980e6b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Ouagadougou-d69addbdb7488dda +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Recife-d69f86f677ca2e22 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Pohnpei-d6abab62e8b463e9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...America-Argentina-Rio-Gallegos-d6c1e9b09c944ec8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Athens-d6d18a984d313af6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Prague-d6eaf29e3f3a2c76 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Asmara-d6ef1ce0409c2cc1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-13-d6f735de940b4df4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Sofia-d708aa6a7e50b8e1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Dominica-d723bb79e2c26c18 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Indian-Kerguelen-d74449d9c487518e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-5-d752d147595a1665 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Brazil-Acre-d75ffbce10d4eada +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Dili-d78599e031b8dec5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-St-Barthelemy-d7e82b452fd64f0a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Indiana-Tell-City-d8178d1fa10659e0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Belfast-d81caae6307f7fb5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Casablanca-d86026b8ffeac7a0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Nassau-d87d9e8898812e24 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Maputo-d890512dd0728489 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Detroit-d8b75f27ecb30e39 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Atlantic-Faeroe-d8e626f5c3e9adce +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-St-Thomas-d94511567d1d7619 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Zurich-d99914e5962e535b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Andorra-da2dfd396225f081 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Rainy-River-da30c37c3fbf35e0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Vientiane-daf207336cdea015 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Novosibirsk-db3afa97612c1629 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Enderbury-db4a84238f4ca2a1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Nome-db4e5164f025c851 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Kwajalein-db6256e8e65940cf +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Lindeman-db80c29270690f39 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Khartoum-db86bdd03106ae64 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Asia-Srednekolymsk-db91d5592f0d6de1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-4-dba0788a1f0e2c70 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Grand-Turk-dc0b29cf00349586 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-9-dcd107f4f4e9b958 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Thimbu-dce2eeed2bd27688 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Indian-Mayotte-dd0f973f64af02d7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Riga-dd4c109f2e01e281 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Palau-dd5e2afe7d72b06d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Brazil-East-dd6e8c14e0ece3c6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tel-Aviv-dd7ad1f02aea6454 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Truk-dde8f3f7e3209dd2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Tirane-ddf7ca51bcb03d1a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-3-de019b8653c19713 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-W-SU-de344113da5da2de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Brazil-West-de3548468eef9d16 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Matamoros-de373411e185a1aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Vostok-de3b5f50d4b71b61 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Belfast-dec4d522eb3bebf3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-0-df0d1d88dc23264d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Riga-df210f363d0e0cb6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Rosario-df280260e03d0676 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Yangon-df45b8adcbbb21fb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Indiana-Indianapolis-df47c9ad0519de3c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Arctic-Longyearbyen-df4afe953541bb64 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Boa-Vista-df508f1e010eadce +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Atlantic-Stanley-df5451a770345f6f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Vilnius-df9ee898f3ddfdad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Copenhagen-dfc125df56791e97 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Santa-Isabel-dfdd2d7f707dcaa7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Lindeman-e002ae66a3b29e28 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Nuuk-e0304f2f3eeaaf48 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Bucharest-e05393ea9f0a112e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Qyzylorda-e05b5dbee2a3bf65 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Cairo-e0662aad7fcdf02c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Australia-Tasmania-e0674137f1f2c7c8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Ulan-Bator-e0a3bb9460447656 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Argentina-Jujuy-e100893d7d8bcb57 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Australia-Queensland-e11361145c781915 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Mauritius-e145e060347d3b6c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Comoro-e15b3d1e1d9066ce +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Thunder-Bay-e15c699568dbae72 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Belem-e17563ff2a43e8d4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Gibraltar-e1b95b8bd4958133 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Porto-Velho-e1d144dde5f5ffab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-12-e1d5cf18af6c09ca +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Vaduz-e21da58e5d2909c5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Glace-Bay-e23c4fd0551f370a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Montreal-e2a50172684722e6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Coral-Harbour-e2bd4642bec00870 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-13-e305cc26d1e97076 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Puerto-Rico-e30ab90edfc9d465 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...right-America-Argentina-Ushuaia-e30e102c9f3e3d94 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Antarctica-South-Pole-e31ce88f7e5ebf83 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Niamey-e33b9c91c0a76edc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-7-e344b37a164e6607 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Israel-e379158171887084 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Indiana-Indianapolis-e39fd5fb01fba60d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-El-Aaiun-e3ee023d147e84c5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Antigua-e44e20525adcfe97 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Moncton-e46c4cdda28861ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Punta-Arenas-e4a51840e51e5569 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Africa-Brazzaville-e4d1940983cd44a5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Tongatapu-e52e1a231f866b2a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-EET-e5cebc84f0f5e7be +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-North-Dakota-Center-e5d5244845ccd7d4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Hebron-e6053ee9b858f2de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-W-SU-e60cdbf81505b08d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Saipan-e62bcf7b8ff96d3c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Hong-Kong-e665ed7aa729b7c9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Amsterdam-e68d94781cbd43d3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-6-e6b47f5f87fa6241 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-1-e713c56aa924f7a1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Norfolk-e719f705636d263c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-7-e74f4f9de1b3706e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Asmera-e76c327509c1b7ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Arctic-Longyearbyen-e78d93cf91d35fe6 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-zone.tab-e8055321d356644e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Universal-e83414d8e03daf73 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Astrakhan-e83a71484783e817 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Abidjan-e844c340f31121f9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Grand-Turk-e8596956e725beae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Indian-Reunion-e8879ecfe722a5d9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Pacific-Fiji-e8c2813f7bf5f76c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Australia-Queensland-e8d347dad156abff +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Tripoli-e8d9ac88fb1df47e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Cuba-e918976becca4cd5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Indian-Chagos-e95941e8c711003d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Kaliningrad-e9899d501c3600a9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-America-Argentina-Jujuy-e99d04a4108fc549 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-US-Aleutian-e9a2b36c4daf73ba +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Kuching-e9c3c540281373c2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Martinique-ea280b928b29765e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Chile-EasterIsland-ea29c7dabde26c3e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Fortaleza-ea2a9b242568dbe9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Pacific-Port-Moresby-ea7bfe22f503b380 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Indiana-Tell-City-ea92544cadea52e3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Chongqing-eaa37810c7504ee2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-CET-eaaa87321f866292 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-St-Kitts-eace2e5e90e967e2 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Ulyanovsk-eae3e50c71d6e65d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Pohnpei-eaee9b76002f5175 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-Buenos-Aires-eaf9ebe0294e5a68 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Alaska-eb3ce691a44950d9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Poland-eb465867301e1d95 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Indian-Mahe-eb6cb9925197e241 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Indiana-Marengo-eb8afcac2580f0f3 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Windhoek-eba24c8f704c85c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Inuvik-ebd368215f3b2e2e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Godthab-ec1332af1b1eef51 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Mexico-BajaSur-ec1a1f251f085d6f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Catamarca-ec3dc8716b84df1c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Cocos-ec3edb8e2baf30ce +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Indian-Christmas-ec519075f3bdf8d5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-1-ec6982b2a2172134 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-Indiana-Vincennes-ecbe3ea60a4b6f75 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Damascus-ecbe429fd08047ed +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Pangnirtung-eccec01f5eb24823 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Phnom-Penh-ece3088ba8a745a9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Canada-Yukon-ecff106822079bdb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-leapseconds-ed5ec5c150cdc474 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Malta-ed69e55e541c8c56 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Coral-Harbour-ed904b5eec65d6d4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Lubumbashi-eda0b3c5282e4cc0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Recife-edde3ac40ad7844b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Bogota-ee03fb9442438dfd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Asia-Kuala-Lumpur-ee5130b6663a4502 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Antarctica-Mawson-ee6a7dfea9c76691 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Pago-Pago-ee7aa1a64911f8de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Europe-Isle-of-Man-ee8e7c898465e014 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Atikokan-eeaa010b839d2301 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Pacific-Kwajalein-eeb5db21eebb8bfd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Dacca-ef0d8ee42927ebad +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Chile-Continental-efa323dda7cbe0a5 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Africa-Ceuta-efaf41cb4752e7ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-GMT-0-efc7985082dec0ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-12-efdf00715db4016d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-3-f01fd3905d9b144d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Samara-f08bb013a41d1a90 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Bishkek-f0dc73329256437f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Dubai-f10cbcef7a9cf1ed +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Asia-Srednekolymsk-f13d65c4d148c12c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Japan-f15ca447042e77dc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Dakar-f1634eb1b5441878 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Indian-Cocos-f1a8e296000c4054 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-EST-f1b5fa151d52ce31 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Jujuy-f1c4fae62f35d8ac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Zagreb-f20dc3993e34a535 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Accra-f2b5202ef23964a0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Guayaquil-f2cff911ce94b25b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Nicosia-f2fc78f6b6ab4c77 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Israel-f3accc5b5834bfbd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Bangui-f3b97d30a6671ac9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Europe-Sarajevo-f3d7989f8cff3cda +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Isle-of-Man-f3e3659b57d2f535 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Yakutat-f3f04fb3e6c6b611 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-America-Nome-f40ed9b257055cb0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Kolkata-f4100ba843feb3c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Boise-f429c5404e2b47a4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-America-North-Dakota-Center-f456edf71f63cf67 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Qatar-f4aae74afaf49cc7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Pacific-Apia-f4d0f752c7086584 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Maceio-f4dff9266e70b80f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Winnipeg-f4f761245b0a0122 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Navajo-f5043da34fb69f6f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-US-Michigan-f54e1c916d9a0431 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Ensenada-f54fab344c589154 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Africa-Dar-es-Salaam-f555b54f497e445f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Mexico-BajaSur-f585bbc1724601ca +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Choibalsan-f58d50c9d240d99f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-New-York-f5ac51c915881bfe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Thimbu-f5b6c0a0b2aa4fac +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Kirov-f60de5d7eca277eb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Jayapura-f60f4fc2e81816f9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Africa-Libreville-f6273bdbb8823c5f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Guayaquil-f63114445a87743d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Argentina-ComodRivadavia-f65780a75c58f840 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Asia-Gaza-f67f77f9e03dd3d9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Europe-Volgograd-f7404b525877f069 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Lisbon-f76c29648b4b4a61 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Ho-Chi-Minh-f798a26e1a86b16a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-Greenwich-f7b8e018b5f96a8e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Paramaribo-f7bd30322eee62aa +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-8-f81b7f0667e18573 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Cuiaba-f8420aedd589be6f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-7-f85f5509f20c3435 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-Canada-Saskatchewan-f897300ee4e28938 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Oslo-f89cc3d7b95218dd +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Asia-Novokuznetsk-f8f6e629903c2f82 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-Europe-Isle-of-Man-f908e7ee3977d1f0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Luanda-f90dd834739e5922 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Winnipeg-f9337571e58918bc +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-GB-Eire-f94d7805574631cb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Paramaribo-f956386a9a279b87 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Europe-Tirane-f96cc18187a4fc81 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...posix-America-Indiana-Petersburg-f96ef00e52fa5d80 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-MST7MDT-f96ff3e1fc11f3ea +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-right-America-Pangnirtung-f99ed9f92195ba11 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Asuncion-f9cb4aefd8bc5ea7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Atyrau-fa2ea4fc75514409 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Lusaka-fa353ff05b94c7ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...zoneinfo-posix-America-Puerto-Rico-fa5a97068088bf2f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Pacific-Enderbury-fa9bd3e68836fbf4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Kampala-fa9f06d723857df9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-Zulu-faa87798374b9dfe +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Sitka-faa8bf84bfb04362 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT0-fac85ed1531168c0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-GMT-0-fac9d61cbd3e774a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Chatham-fad5a1156e5e40a1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Damascus-fad8ad1eafe5d63e +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Tashkent-fae95515cb95f8ae +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Etc-GMT-6-faedd473c070466d +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Africa-Bissau-fb1b19edf0d7aa04 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Africa-Mogadishu-fb2c9bb793b5d024 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-US-Mountain-fb3d146c3d21d461 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Fortaleza-fb4da518a93eb1c9 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Brazzaville-fbb751c2ce6f471b +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-Antarctica-Macquarie-fc01909904cec67f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-America-Belem-fc4d3ce1fa67a1bb +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Cuiaba-fce14edc205037c7 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Etc-GMT-8-fd19f00d6d414d85 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-America-Moncton-fd3e4b30bcdadd08 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Indian-Christmas-fd4bb7fb9aa102f0 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-America-Noronha-fd943e89303e6bda +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Asia-Manila-fdbf117a51bce9de +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-posix-Europe-Madrid-fe119658f548a6ab +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Omsk-fe17256b26a285c1 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Africa-Mbabane-fe4585c9f4b6d91a +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-Australia-North-fe54c8b9bec9b870 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-posix-America-Managua-fe730b4d526c4506 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Etc-GMT-1-ff0069181e975bf4 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Aqtobe-ff2d8dcb56fdca1c +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-right-Europe-Berlin-ff3c4c572d1b7fa8 +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-usr-share-zoneinfo-Asia-Choibalsan-ff671b208af6cb0f +Relationship: SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac CONTAINS SPDXRef-File-...share-zoneinfo-right-Pacific-Funafuti-ffac86c666b9298e +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.joda.time.1.6.2-5a454c453f632e06 OTHER SPDXRef-File-...com.ibm.ws.org.joda.time.1.6.2-1.0.81.jar-f27a7f9ec07699cc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 CONTAINS SPDXRef-File-usr-share-libgpg-error-errorref.txt-7a0d8a55fc820f96 +Relationship: SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 CONTAINS SPDXRef-File-usr-bin-gpg-error-901be8daec8d0325 +Relationship: SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 CONTAINS SPDXRef-File-...share-licenses-libgpg-error-COPYING-b3f84ce5234a5d5a +Relationship: SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 CONTAINS SPDXRef-File-...licenses-libgpg-error-COPYING.LIB-ea3c6828fc87e12f +Relationship: SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 CONTAINS SPDXRef-File-usr-lib64-libgpg-error.so.0.24.2-eebe04898dc1104f +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.config.schemagen-5b76b2736b884d7f OTHER SPDXRef-File-...com.ibm.ws.config.schemagen-1.0.81.jar-fff7598d8c4aab16 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.metadata.context-5ca4d7a2c0d58f0f OTHER SPDXRef-File-...com.ibm.ws.javaee.metadata.context-1.0.81.jar-e54c4be548eb5158 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 CONTAINS SPDXRef-File-root-.bash-logout-20745bd95ce05027 +Relationship: SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 CONTAINS SPDXRef-File-root-.bash-profile-6cb0a62f87e9d043 +Relationship: SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 CONTAINS SPDXRef-File-root-.cshrc-a0519b5a2f52e968 +Relationship: SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 CONTAINS SPDXRef-File-root-.bashrc-f73edd36ace924c5 +Relationship: SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 CONTAINS SPDXRef-File-root-.tcshrc-f8f2924eed0d9ed3 +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.common.ee10-5dc2391a0014e80d OTHER SPDXRef-File-...io.openliberty.org.jboss.resteasy.common.ee10-1.0.81.jar-44e873a0b3006e0e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-00c7678a0465dc8f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---repo.cpython-36.pyc-03422275b1396cca +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-module---init--.py-03eeede8583196dc +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---selector.cpython-36.pyc-047ef222097cadbb +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli---init--.py-05822f7e73948350 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...repolist.cpython-36.opt-1.pyc-0593e160660a364a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-install.py-06a80341b58be448 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...transaction-sr.cpython-36.pyc-07583e92e9cb88e1 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-07b4378a4349c8e3 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-module.py-07c2c79c41fccced +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...transaction.cpython-36.opt-1.pyc-07f09f8ae904b2c4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---lock.cpython-36.pyc-0bc47ff4e566f3bb +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...updateinfo.cpython-36.opt-1.pyc-0ddec09c228ebb1a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---sack.cpython-36.pyc-0e15f18befeaa602 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---module.cpython-36.pyc-0e7f4d20983d3bc5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---check.cpython-36.opt-1.pyc-0e94a4ae6b6d6d8d +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-i18n.py-11042d64e1fc5daa +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnssec.cpython-36.opt-1.pyc-116cd6771bf58e60 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...match-counter.cpython-36.opt-1.pyc-128d62c776a9fa24 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-usr-bin-dnf-3-16175176c3acd9d0 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...cli---pycache---main.cpython-36.pyc-1728d6580654be15 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...history.cpython-36.opt-1.pyc-182a1ad6922b4835 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-commands-mark.py-182a7e144ce5ea52 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---plugin.cpython-36.pyc-1985c1f7111dc797 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1b49c6b81194c68c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...substitutions.cpython-36.pyc-1b59f1abe691c21f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---install.cpython-36.pyc-1bb93db8f38cbdb7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-crypto.py-1bde3289b6ac0bc2 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---query.cpython-36.opt-1.pyc-1dd9c5ffca7cf891 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-1eda49d877373753 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...distrosync.cpython-36.opt-1.pyc-1f5dcc0bdb509660 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-24411cc0288a8eaa +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---deplist.cpython-36.pyc-262830bc6024103d +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-db---init--.py-2787429543e9434f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---dnssec.cpython-36.pyc-2933f8f9b7763a6f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-conf-read.py-29e079893cdf14ac +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---group.cpython-36.pyc-2bded1c754d6c062 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---package.cpython-36.pyc-2c93cf7a05aee956 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...search.cpython-36.opt-1.pyc-2dd4538300ae1af7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-conf-substitutions.py-2e96d67433c81a8a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...rpmtrans.cpython-36.opt-1.pyc-2eb0dde0f0a0264e +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...plugin.cpython-36.opt-1.pyc-2fa70ebc5ce6d099 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...persistor.cpython-36.opt-1.pyc-31166b4a8bcac161 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-315264f5a5c4102f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...reinstall.cpython-36.opt-1.pyc-316d2ad932910939 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-upgrade.py-317e3998338ce4bc +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...option-parser.cpython-36.opt-1.pyc-322c9ca2c77c4ae4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...package.cpython-36.opt-1.pyc-32d28ea693bf5c79 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-34e54a5f6cb733f5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-db-history.py-350416ec80f4e833 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-sack.py-35a13e587abc55e3 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-persistor.py-36ef8ff52871a085 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-group.py-372a4f51245affc7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---distrosync.cpython-36.pyc-37be5ad5c0dceea7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-query.py-37beffbff4a8f559 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...rpm---pycache---error.cpython-36.pyc-384d19217f6f9353 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-clean.py-38a8c3fb28190884 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---callback.cpython-36.pyc-397552d6b0581657 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...option-parser.cpython-36.pyc-3d40e26891565636 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-remove.py-401d4e38ab2c2e4f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...repodict.cpython-36.opt-1.pyc-40b08e4efc1f335a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...downgrade.cpython-36.opt-1.pyc-42d204e56c841b23 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-conf-config.py-431e9bcf6e0aa7e6 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---goal.cpython-36.opt-1.pyc-44227711d41cf706 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-module-module-base.py-447a0c64e148faf5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---clean.cpython-36.pyc-449d32d7f2c02903 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-subject.py-455d7e14d5003d46 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---mark.cpython-36.pyc-45db95b9b14090d4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---misc.cpython-36.opt-1.pyc-45e4d47fdaa09ac5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-repoquery.py-46b1a34cc04bfaf5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---shell.cpython-36.pyc-475ceeeab1eb832b +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...demand.cpython-36.opt-1.pyc-485d5bf28937de75 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-history.py-498d5952bff47324 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-rpm-error.py-4c0281d9b80caf39 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---const.cpython-36.pyc-4c20d40b03d76551 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---repolist.cpython-36.pyc-4d7b7e4ceed53e34 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-rpm-transaction.py-4d844137c07f992c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---remove.cpython-36.pyc-505332668dfff967 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-autoremove.py-5135419935dbc959 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---crypto.cpython-36.pyc-51d3c89522fd68f8 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-callback.py-51e3f5f61a64ac78 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-yum---init--.py-5393d7ae28d7212a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---util.cpython-36.pyc-53cbad5e69ba5176 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-drpm.py-5416c87398c66e95 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-exceptions.py-5466e17bb6d714b9 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-updateinfo.py-54ea780415b7dfa0 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---module-base.cpython-36.pyc-557351f9efaee3ad +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...conf---pycache---config.cpython-36.pyc-55a4cdca0d713a2e +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-rpm-miscutils.py-57cbebdce76c91cb +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...repoquery.cpython-36.opt-1.pyc-57eb9537dffa5bb1 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---group.cpython-36.opt-1.pyc-599535cf45df1f43 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---goal.cpython-36.pyc-599997576b4c27bd +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...callback.cpython-36.opt-1.pyc-59c4decbbf1e166f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-distrosync.py-5afa8f9047a8e2cc +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---lock.cpython-36.opt-1.pyc-5b5e093ce3ca06f7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...progress.cpython-36.opt-1.pyc-5bc95e7947421f24 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-rpm---init--.py-5d5556a6e9691ccd +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-history.py-5e8541bd2b4a4de8 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...cli---pycache---utils.cpython-36.pyc-5ed71843863c8a46 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---logging.cpython-36.pyc-5fdc886fe0031345 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-comps.py-6124f2ce2e687167 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...subject.cpython-36.opt-1.pyc-62e71bf69d8e4b81 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---reinstall.cpython-36.pyc-630a1a8acb7b10d8 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---updateinfo.cpython-36.pyc-63309467643ac91b +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-6370fb055dd402b3 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-demand.py-6413ffa869811762 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-db-group.py-6432680506170247 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...substitutions.cpython-36.opt-1.pyc-6513861e07db070e +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-downgrade.py-6a6eb765c74f4e62 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-aliases.py-6afb6745a44b8a95 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-upgrademinimal.py-6be47d4abbfb5d03 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-shell.py-6bf46fbe5a693307 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf---init--.py-6c5355011fa0f007 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---repoquery.cpython-36.pyc-6e180141c29c3e84 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-cli-cli.py-6f498cdf056f6094 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-option-parser.py-6f8bc26954c5b3ef +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---miscutils.cpython-36.pyc-72dd692fc7df3ed7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-transaction.py-738a20cf4c5f8f96 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli---pycache---cli.cpython-36.pyc-73cd03ccbb9848c4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---alias.cpython-36.pyc-753ff8dad27eabc2 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---connection.cpython-36.pyc-76904ec1f3ece1b5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---alias.cpython-36.opt-1.pyc-76c1db2fdf967bd0 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...output.cpython-36.opt-1.pyc-77b609e075b04b47 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...connection.cpython-36.opt-1.pyc-77c80c9971a7a7ce +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---error.cpython-36.opt-1.pyc-77eef482d75a1cc0 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---subject.cpython-36.pyc-791fbec357f70ef6 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...install.cpython-36.opt-1.pyc-7925ccabf4ef50ba +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-makecache.py-793faf3264cba9d6 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...db---pycache-----init--.cpython-36.pyc-7ad730d1a4e13d30 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...cli---pycache---output.cpython-36.pyc-7bce6b010aaa653f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-commands-swap.py-7c0ff1f7784d886c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---base.cpython-36.opt-1.pyc-7dd1340a6265bf62 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---query.cpython-36.pyc-7edb1f1d9c5cb8a2 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---group.cpython-36.opt-1.pyc-7f174726f1a079a4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...selector.cpython-36.opt-1.pyc-7ff31d284e9c7aad +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-80f3d3dc0bda7ef8 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-term.py-819a8a5ea7c2b28d +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---repodict.cpython-36.pyc-838d50e06408095c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...cli---pycache---demand.cpython-36.pyc-8672375d166d0502 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-89bbb842466bbb02 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---i18n.cpython-36.pyc-8bd8ca7cd4947efe +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---search.cpython-36.pyc-8dabc8107be9bce2 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-package.py-8f52be1825471443 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...transaction-sr.cpython-36.opt-1.pyc-8f91cf46cc23c362 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...makecache.cpython-36.opt-1.pyc-90afa71d25bbf805 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...completion-helper.cpython-36.opt-1.pyc-90f1f87db5ab760c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-goal.py-91146f909fcc21ee +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---transaction.cpython-36.pyc-954075378a857790 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-plugin.py-970d14eba055734a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-reinstall.py-97f1a465ab16c054 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...cli---pycache---aliases.cpython-36.pyc-9816a0fd3fbced6a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9828ecf2aec54cfe +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---makecache.cpython-36.pyc-9ba0c03b6d94e219 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...upgrademinimal.cpython-36.pyc-9d753bbf4831d481 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-dnssec.py-9daa809abbd884b1 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---swap.cpython-36.opt-1.pyc-9db8ed01f5cf1122 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...match-counter.cpython-36.pyc-9f3d662b652f2cbf +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---shell.cpython-36.opt-1.pyc-a0c2afbd30d60f44 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...deplist.cpython-36.opt-1.pyc-a0c445b898769e58 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...db---pycache---history.cpython-36.pyc-a13cb7fd253399e6 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...history.cpython-36.opt-1.pyc-a2c4059fc467287c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---autoremove.cpython-36.pyc-a558111badf2e1fe +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---read.cpython-36.opt-1.pyc-a5f1204c53cd5641 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands---init--.py-a7659c5ffc25c094 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a88541ab38d1f1f5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a8b59012358588df +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---transaction.cpython-36.pyc-a9555597364cf4e2 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-repolist.py-a9b957504581acbd +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-abcbeaa554ba4e28 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-ac11cc1c39799106 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...cli---pycache---term.cpython-36.pyc-ae69fea3ad3a580f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...upgrademinimal.cpython-36.opt-1.pyc-aed128b02c909830 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---clean.cpython-36.opt-1.pyc-af5e4beee9a2d7ae +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...logging.cpython-36.opt-1.pyc-af76629dd006b8be +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b1139e9c9619c90a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...cli---pycache---format.cpython-36.pyc-b27896835f2daf59 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-const.py-b3ca8554ccbb7d90 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---cli.cpython-36.opt-1.pyc-b3f737d8a8f9769a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b54823917cdeaf35 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-util.py-b695c4a34784d8d7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---comps.cpython-36.pyc-b6d63207aaf3ab5a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-match-counter.py-b7062421359d830c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...module.cpython-36.opt-1.pyc-b7af0d9d338128d5 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-progress.py-b9986da631339c8c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-ba97889a9069218e +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...miscutils.cpython-36.opt-1.pyc-bb1aa45888575450 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...yum---pycache---misc.cpython-36.pyc-bb35d60e9d4e8a0c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-repodict.py-bb6a43a34d964abe +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-search.py-bd067c8ecf1227bb +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-repo.py-bf77464330f030a9 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-check.py-c0b60e7e87889de4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---swap.cpython-36.pyc-c35b6166b2b25d8c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-c39789defa526a69 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-transaction-sr.py-c45158a768e1933f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---sack.cpython-36.opt-1.pyc-c47164ea9ef90b6e +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---progress.cpython-36.pyc-c7ed56d1bf89719a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---repo.cpython-36.opt-1.pyc-c8b3c387378c411a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-yum-rpmtrans.py-c9f8ccc3a41bdc28 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...history.cpython-36.opt-1.pyc-cab1c4e919461336 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-pycomp.py-ce82cafd0f4ffd21 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-conf---init--.py-cee531368360561d +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...crypto.cpython-36.opt-1.pyc-d0c3ba32f49127dd +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---base.cpython-36.pyc-d3037198d53e2bd0 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-format.py-d3cc77b0e5ef5dba +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---history.cpython-36.pyc-d419def234a54b6b +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d4b1afc98f2a74e4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---upgrade.cpython-36.pyc-d53e04f34c737c20 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-rpm-connection.py-d6193c104bfe9f26 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---pycomp.cpython-36.pyc-d7b7bceaeea66163 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---rpmtrans.cpython-36.pyc-d82813346941f141 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-alias.py-d8ac939e3a19c5d9 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...aliases.cpython-36.opt-1.pyc-d8c18ffce3de4ba9 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...transaction.cpython-36.opt-1.pyc-da247976a74bcc72 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...pycomp.cpython-36.opt-1.pyc-dbb8aceba1d600ca +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-output.py-dbf356f8e33953f2 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---persistor.cpython-36.pyc-dc5339c11d897946 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-commands-deplist.py-dc7b732d53c3a095 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...completion-helper.cpython-36.pyc-ddebd9462e97926e +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---mark.cpython-36.opt-1.pyc-df27432f872e5269 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-df3035db9588b3be +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-module-exceptions.py-df87253c2daa0724 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---check.cpython-36.pyc-e0f29c3b98f326af +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e13c0d69b96e0e27 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---history.cpython-36.pyc-e1b68708ca6cc24a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...db---pycache---group.cpython-36.pyc-e56516076701c03d +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...format.cpython-36.opt-1.pyc-e63d7d796316219c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-yum-misc.py-e898678338845a39 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e938b0b6af22b8af +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---comps.cpython-36.opt-1.pyc-eae723039bfef6b0 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-selector.py-ee7c9fc0a48027cd +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...autoremove.cpython-36.opt-1.pyc-ee911a28dbb859d7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...remove.cpython-36.opt-1.pyc-f0ec1b87a2720391 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---term.cpython-36.opt-1.pyc-f17d9c64af4efa69 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---drpm.cpython-36.opt-1.pyc-f1bf1546b586ac4d +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---const.cpython-36.opt-1.pyc-f23676cc1b7342fe +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...conf---pycache---read.cpython-36.pyc-f264fe260177feb7 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-logging.py-f2c55526f4931326 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-utils.py-f4a02f4dd2839cc8 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-base.py-f6e7d6a2e5e6cf8f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...python3.6-site-packages-dnf-lock.py-f774af1ef07c31ef +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---i18n.cpython-36.opt-1.pyc-f8bb6a0c900f165c +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...site-packages-dnf-cli-main.py-f8d45a36c9bc659d +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf---pycache---drpm.cpython-36.pyc-f94f5ce12d3c86c4 +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...dnf-cli-completion-helper.py-faccc2c17e25511f +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...module-base.cpython-36.opt-1.pyc-facd32c2414f35fb +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...upgrade.cpython-36.opt-1.pyc-fbb33fc7c5565f1a +Relationship: SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 CONTAINS SPDXRef-File-...--pycache---downgrade.cpython-36.pyc-fe94b1ff07125492 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.ssl-5ec6a973db6a521a OTHER SPDXRef-File-...ol-wlp-lib-com.ibm.ws.ssl-1.5.81.jar-597666d860d03a81 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gdbm-5f248ec8dffe726e CONTAINS SPDXRef-File-usr-bin-gdbm-dump-0fc47f63e96ddf65 +Relationship: SPDXRef-Package-rpm-gdbm-5f248ec8dffe726e CONTAINS SPDXRef-File-usr-bin-gdbmtool-30bfe4b875f52080 +Relationship: SPDXRef-Package-rpm-gdbm-5f248ec8dffe726e CONTAINS SPDXRef-File-usr-bin-gdbm-load-cb419ab4bbd6f08a +Relationship: SPDXRef-Package-rpm-gdbm-5f248ec8dffe726e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.credentials.ssotoken-5f5fa197584cf032 OTHER SPDXRef-File-...com.ibm.ws.security.credentials.ssotoken-1.0.81.jar-1972379e558ae781 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility.webserverPluginutil-5fc7d895c5805927 OTHER SPDXRef-File-...com.ibm.ws.webserver.plugin.utility-1.0.81.jar-0616e8863c89967a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.netty.internal.tls.impl-618277a2b604b791 OTHER SPDXRef-File-...io.openliberty.netty.internal.tls.impl-1.0.81.jar-70833247a6606926 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.config-61e900efa362f9e1 OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.config-1.0.81.jar-d4df66677e16213e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.token.ltpa-622231ba9c844d7f OTHER SPDXRef-File-...com.ibm.ws.security.token.ltpa-1.0.81.jar-8c0b26f973842303 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.el.internal.cdi.jakarta-62e27c792932b3ae OTHER SPDXRef-File-...io.openliberty.el.internal.cdi.jakarta-1.0.81.jar-2f6361eb33adf0ba +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-elfutils-libs-62f17b42f3fcff45 CONTAINS SPDXRef-File-usr-lib64-libasm-0.188.so-00329a2ca370ef08 +Relationship: SPDXRef-Package-rpm-elfutils-libs-62f17b42f3fcff45 CONTAINS SPDXRef-File-...licenses-elfutils-libs-COPYING-GPLV2-0e31a34ab999b66c +Relationship: SPDXRef-Package-rpm-elfutils-libs-62f17b42f3fcff45 CONTAINS SPDXRef-File-usr-lib64-libdw-0.188.so-323035c43657a141 +Relationship: SPDXRef-Package-rpm-elfutils-libs-62f17b42f3fcff45 CONTAINS SPDXRef-File-...licenses-elfutils-libs-COPYING-LGPLV3-48a70c0542973304 +Relationship: SPDXRef-Package-rpm-elfutils-libs-62f17b42f3fcff45 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libuuid-6320b104102d68ba CONTAINS SPDXRef-File-usr-lib64-libuuid.so.1.3.0-79b4f8f2f7be14cd +Relationship: SPDXRef-Package-rpm-libuuid-6320b104102d68ba CONTAINS SPDXRef-File-usr-share-licenses-libuuid-COPYING-9300a569e8de31ed +Relationship: SPDXRef-Package-rpm-libuuid-6320b104102d68ba CONTAINS SPDXRef-File-...share-licenses-libuuid-COPYING.BSD-3-a9d6cd0bebc7ae3a +Relationship: SPDXRef-Package-rpm-libuuid-6320b104102d68ba OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dbus-libs-6491607d041784b9 CONTAINS SPDXRef-File-usr-lib64-libdbus-1.so.3.19.7-b6210e1c04c468ac +Relationship: SPDXRef-Package-rpm-dbus-libs-6491607d041784b9 CONTAINS SPDXRef-File-usr-share-licenses-dbus-libs-COPYING-b7e2cfeae6b2c9da +Relationship: SPDXRef-Package-rpm-dbus-libs-6491607d041784b9 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-decorator-64ad1a0dc4b7f605 OTHER SPDXRef-File-...PKG-INFO-bd28bed913903e91 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel.osgi-65135ef5c209f133 OTHER SPDXRef-File-...com.ibm.ws.logging.hpel.osgi-1.0.81.jar-69155660b1c476a3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.transaction.context.jakarta-655cfebbb0413977 OTHER SPDXRef-File-...com.ibm.ws.transaction.context.jakarta-1.0.81.jar-6f42634e94743d6d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jcache.internal-65a05a3bf42e0221 OTHER SPDXRef-File-...io.openliberty.jcache.internal-1.0.81.jar-50ed96c0669043a9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libgcrypt-65b56d43de84072c CONTAINS SPDXRef-File-usr-lib64-libgcrypt.so.20.2.5-220ef3d54c35f495 +Relationship: SPDXRef-Package-rpm-libgcrypt-65b56d43de84072c CONTAINS SPDXRef-File-etc-gcrypt-random.conf-5f30328f0d2f5a54 +Relationship: SPDXRef-Package-rpm-libgcrypt-65b56d43de84072c CONTAINS SPDXRef-File-usr-lib64-.libgcrypt.so.20.hmac-6092d9df36ada5b0 +Relationship: SPDXRef-Package-rpm-libgcrypt-65b56d43de84072c CONTAINS SPDXRef-File-...share-licenses-libgcrypt-COPYING.LIB-769ee9977bc7dd64 +Relationship: SPDXRef-Package-rpm-libgcrypt-65b56d43de84072c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.security.authentication-6623a069c33c5778 OTHER SPDXRef-File-...com.ibm.websphere.security.authentication-1.0.81.jar-ae6b7e37f8b4c225 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-lib64-libpcap.so.1.9.1-136fa4c57ca16fcb +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-share-man-man7-pcap-filter.7.gz-2e0e60872e34bdcc +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-share-man-man7-pcap-tstamp.7.gz-37bb347d7d9bda82 +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-share-doc-libpcap-README.md-9b6ee4c364c070bd +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-share-doc-libpcap-CHANGES-b140499f342fe180 +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-share-doc-libpcap-CREDITS-e46850b0a3d26a91 +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-share-licenses-libpcap-LICENSE-e4c2e07283d0b7b8 +Relationship: SPDXRef-Package-rpm-libpcap-66241757d50be997 CONTAINS SPDXRef-File-usr-share-man-man7-pcap-linktype.7.gz-fa450d4562216d43 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.endpoint-66ab3ac228472eda OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.endpoint-1.0.81.jar-83238c71f4047c25 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.channelfw-66b968e18db97e3f OTHER SPDXRef-File-...lib-com.ibm.ws.channelfw-1.0.81.jar-df43e1afa895c76e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.config-66ddfec1c99641dc OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.config-1.2.81.jar-d78fc23f82ac0cf7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...telnetlib.cpython-36.opt-1.pyc-000458c29363eed2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-pool.py-0032433f0e5c2159 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...contentmanager.cpython-36.pyc-00a60ce4c06cd018 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-dummy-thread.cpython-36.opt-1.pyc-00be3f674be8c6c8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email--policybase.py-00c67feebe00e0b3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-00c8ef91d429aa29 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nonmultipart.cpython-36.opt-1.pyc-00dd930f20ed5df0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-unicode.py-00df4884f11814bd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---base-events.cpython-36.pyc-00ebc42f7ac74c62 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-renames.cpython-36.pyc-00ef89dbb94a89e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sre-constants.cpython-36.pyc-010854311f8dc557 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dummy-threading.cpython-36.opt-1.pyc-014512e0c66dbd93 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---netrc.cpython-36.opt-1.pyc-016c1c9683508489 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-8.py-017aa5368459759f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---expat.cpython-36.opt-1.pyc-01a1569e75f585c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-scripts.cpython-36.opt-2.pyc-01f437d0d96a41f1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-0203baa8b6f189be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-logging---init--.py-020bb135ff64a7fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-json-decoder.py-02163774d9b1c6db +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-1.cpython-36.pyc-022fc5bfef70c6d7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...gettext.cpython-36.opt-2.pyc-02366ab56a4de059 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-py.cpython-36.opt-2.pyc-024155713c3c9fc5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-long.py-026560f39610ae99 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...message.cpython-36.opt-1.pyc-028f53dd48d11158 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-sys-exc.cpython-36.opt-2.pyc-02a85d7838319cfa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-unixccompiler.py-02ded7963c0d3883 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-xreadlines.cpython-36.pyc-02f00a22db19bdc2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-pgen2-grammar.py-030c6606aba8b084 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-nonzero.py-033b63ea80d8e272 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...keyword.cpython-36.opt-1.pyc-033bcb9f57952e1d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-throw.cpython-36.opt-2.pyc-034664401ee77fb1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---locale.cpython-36.pyc-03487e20442b8e2e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...asynchat.cpython-36.opt-1.pyc-0356b07ec474d67d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fancy-getopt.cpython-36.opt-2.pyc-035e59b22a90d5ad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3---main--.py-0384ebb0f50aeaf1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---wintypes.cpython-36.pyc-03b2d49d6dfce96b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.opt-1.pyc-03dd786257dc5ee0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-0405a39da2708008 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tasks.cpython-36.opt-2.pyc-041bff7b0b3ceebb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes---init--.py-042cba1b9f03682e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-iceland.cpython-36.opt-2.pyc-0431f858e66bef15 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-urllib---init--.py-044c715ab330502e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-queue.py-044e307e912a3a48 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---client.cpython-36.pyc-04855f2d80e4c115 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-urllib-robotparser.py-049e3c44751bd0c3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...minicompat.cpython-36.opt-1.pyc-04ce6bf9c81edba2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---conv.cpython-36.opt-2.pyc-04e1762ee149dd1c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.py-05171172ff5fdfe0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---server.cpython-36.pyc-053126d7053b3394 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...syslog.cpython-36m-x86-64-linux-gnu.so-053acd63a64a34b0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--pyio.py-054b9a7ba5c711c0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-imports2.cpython-36.pyc-055bf9fe3892d30d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-croatian.cpython-36.opt-2.pyc-05833b838df14e2f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0585bf705180ceec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-sysconfig.py-05c7b4d8a4816490 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-mime-base.py-05caae5634d8c3df +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.pyc-05e4485bdbf84981 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...parser.cpython-36.opt-1.pyc-05eda4ade2646a0f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---string.cpython-36.pyc-05f1bbef8dc8b070 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1125.py-05ff9cd3aa921406 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-poplib.py-0622b94a5fd4d8f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---aifc.cpython-36.pyc-0627c92cdb0a5ad9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...feedparser.cpython-36.opt-1.pyc-0634e4c1ae72699e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...locale.cpython-36.opt-1.pyc-063b2aa5c4a48b0d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-2.cpython-36.opt-1.pyc-0650e82714bea79f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp865.cpython-36.pyc-06644093b7658ba7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-buffer.cpython-36.opt-2.pyc-066f413cabf84c35 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-quopri-codec.py-068aa26c5bedf67e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---install.cpython-36.pyc-068b629037ea5a01 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pulldom.cpython-36.opt-1.pyc-06916a116103b2ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-binhex.py-069c936486418cb7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp500.py-06d4de53df74ddc6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-hashlib.py-06e2ab1d9a5b1d85 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---runpy.cpython-36.pyc-06e6fe5d3f31f456 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---socket.cpython-36.pyc-074ccc0ea81ff3d5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---this.cpython-36.opt-1.pyc-0760d8f27edd4aeb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-exitfunc.cpython-36.opt-1.pyc-07633aa7f11caccc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---imp.cpython-36.pyc-077e95e0756c823a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---crypt.cpython-36.opt-1.pyc-07812bdf3518874f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-asyncio-selector-events.py-07e4f66f677ed2b9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pygram.cpython-36.pyc-07ea66df14ff8ba7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dbm---pycache---ndbm.cpython-36.pyc-07eaf989abc978c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...palmos.cpython-36.opt-2.pyc-07f0e21b86c2cf33 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jis-2004.cpython-36.opt-1.pyc-084107cf09d755d1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...inspect.cpython-36.opt-1.pyc-0872c70a19dbde03 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...errors.cpython-36.opt-1.pyc-087d140030f03114 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...reprlib.cpython-36.opt-2.pyc-0884a22cda576df9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-future.py-088e29646ab49c47 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-doctest.py-08a9528d8632e6aa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-asyncio-proactor-events.py-08ab407b779b855e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-kr.cpython-36.opt-1.pyc-08adc15808c19be4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-32-be.cpython-36.opt-2.pyc-08c7d65f1cbd3637 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-11.cpython-36.opt-1.pyc-08f5a36a0d217c6f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-09029d7e4fe8d0cf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-exec.cpython-36.pyc-090736cabc2ae8aa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp860.py-0917b0d945e44de3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---copy.cpython-36.opt-2.pyc-0943e33d2bbb95e4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-scripts.cpython-36.opt-1.pyc-094de77cd137b80f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ntpath.cpython-36.opt-2.pyc-09627abaf5855362 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...audioop.cpython-36m-x86-64-linux-gnu.so-0967a307166ddc24 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp875.cpython-36.opt-2.pyc-09765646b9a84873 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-repr.cpython-36.opt-1.pyc-097c83f792a0c8c2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-popen-forkserver.py-098226301531417f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...raw-unicode-escape.cpython-36.opt-2.pyc-099c377f78cd7888 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...macurl2path.cpython-36.opt-1.pyc-09abbf3704ba4ac3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----base.cpython-36.opt-1.pyc-09bab0e06d5edc54 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-selectors.py-09c539644f97d9cb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-uu-codec.py-09ce51faae9a48f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-dom-xmlbuilder.py-0a085298f62a8f87 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1258.cpython-36.opt-1.pyc-0a2e203fcca778cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---parse.cpython-36.pyc-0a412bd510a94ebd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...events.cpython-36.opt-1.pyc-0a4ea1f37ecb1797 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unicode-internal.cpython-36.opt-1.pyc-0a4fb5930cf584ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---text.cpython-36.opt-2.pyc-0a586fde76cced40 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0a659e1ff826714a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sre-compile.cpython-36.pyc-0a6f3a1e10e2316a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-0a7d6837e84d9c3d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-unittest---init--.py-0a8f0e346ebf5816 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sysconfig.py-0a9171b9b3e0ff1c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cygwinccompiler.cpython-36.opt-1.pyc-0a93f2bb231d8adc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ipaddress.py-0a9612c585191df9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gbk.cpython-36.pyc-0a9c5f4dc4c0d83f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-fancy-getopt.py-0a9e8ec8dbb279a4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-0aa1896e4d7e2488 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---uu.cpython-36.pyc-0aeefa3dd51fc744 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---re.cpython-36.opt-2.pyc-0af55c36aec703cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0b143480894caec4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1253.py-0b578c8fbd67e002 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-repr.cpython-36.opt-2.pyc-0b5bcf4e12fe0198 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-etree---init--.py-0b6019f8ef78e0da +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-getcwdu.cpython-36.opt-1.pyc-0b77f0686f75960c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---trace.cpython-36.opt-2.pyc-0b83de2c7cf53af9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...hex-codec.cpython-36.opt-2.pyc-0bbfb0da9b7d879e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tracemalloc.cpython-36.pyc-0bc35860aecd24ff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-tarfile.py-0bdfacff06d7c160 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---case.cpython-36.opt-1.pyc-0be4bc615292b360 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---connection.cpython-36.pyc-0c111c4e08a739dd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...windows-events.cpython-36.pyc-0c38905fcc819375 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-shelve.py-0c6695e786e8d1bb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-install-egg-info.py-0c6972e2a65e1dc6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...big5hkscs.cpython-36.opt-1.pyc-0c91bcf8968772d2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-io.py-0c9d9239a8cfdd33 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...client.cpython-36.opt-1.pyc-0cb5fe00f5df65f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-core.py-0ccbf8f33a907de0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...parser.cpython-36.opt-1.pyc-0ce396519213b5a6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.opt-2.pyc-0cf64412c5f7aa72 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-dbm-gnu.py-0d1532324ae2fb79 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---chunk.cpython-36.pyc-0d2f5623d09b76bd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---asyncore.cpython-36.pyc-0d49614246a1a82f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fixer-base.cpython-36.opt-1.pyc-0d817f757d1d81b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---nturl2path.cpython-36.pyc-0d90897990f6dcf2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp273.cpython-36.opt-2.pyc-0da3edabcffb3168 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...concurrent-futures-process.py-0de461b43ec7f4ca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-msvc9compiler.py-0defcce09ed5af90 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-bdist-msi.py-0e194f467d303c29 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---csv.cpython-36.opt-1.pyc-0e35f63e6fdd15c2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0e59c2eace6a28ba +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-email-mime-application.py-0e842ae6f8303f8f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ast.cpython-36.opt-1.pyc-0ea8b16a2a30cef1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0eaa7d2d6cd931c2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---oem.cpython-36.opt-1.pyc-0ec5fdf76bf2beea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pgen2---pycache---parse.cpython-36.pyc-0ec908c642253866 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---traceback.cpython-36.pyc-0ecae02d200306b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xmlrpc-server.py-0ef533fe6c831d62 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bz2-codec.cpython-36.opt-2.pyc-0f04c66db679c2cc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-set-literal.cpython-36.opt-2.pyc-0f1d57be89541813 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp860.cpython-36.opt-1.pyc-0f5baef2b1d72e01 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bz2.cpython-36.opt-1.pyc-0f5db09c6302f426 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unicode-escape.cpython-36.opt-1.pyc-0f6095ec907bba0f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdist.cpython-36.opt-1.pyc-0f7a9907affd78f8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-unicode.cpython-36.opt-1.pyc-0f9cd36964aa1cb4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pickle.cpython-36.opt-1.pyc-0fc180b425422e4e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---rlcompleter.cpython-36.pyc-0fc43e4f991d53ca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-macpath.py-0fd44fc0d4d6d390 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-0fde465ee16b4a5e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-mbcs.py-0fe511cb3ae06b44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sslproto.cpython-36.opt-1.pyc-0feb70cc39d89987 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-socket.py-0ff8cce2b3d13913 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-bdist-dumb.py-100b1042661218de +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-scripts.cpython-36.opt-1.pyc-1032a808f9730741 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-utf-8-sig.py-103371f92f4b2bba +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-map.cpython-36.pyc-1038d67a40dae1d0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp874.cpython-36.opt-1.pyc-105523802adcfd0d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-105d61f4667fbd2e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...message.cpython-36.opt-1.pyc-1062391a578b2506 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-lib2to3-pytree.py-1096aa56b26b9608 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-tis-620.py-109da836f019dcf7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...decoder.cpython-36.opt-2.pyc-10c8debc35e85eb2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-mac-farsi.py-10ca6257e43e61f5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-email-mime-nonmultipart.py-10edf039724b5ab2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-timeit.py-10fbdbe9d74b6d57 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdb.cpython-36.opt-2.pyc-11042189a871eee7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1140.cpython-36.pyc-11284fe5751e4c34 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-15.cpython-36.opt-2.pyc-115c0986360e8bce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-compat-pickle.cpython-36.pyc-1173da7986d22c1e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-euc-jisx0213.py-117486bb05b63b12 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pickle.py-11748e5644dc6475 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-compat-pickle.cpython-36.opt-2.pyc-11b6f964e6c9e54e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-future.cpython-36.opt-1.pyc-11c3611fab12f6c1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-latin-1.py-11cbb77f70b08fac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---connection.cpython-36.pyc-11d2d9443ed0d2a7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-paren.cpython-36.pyc-11d80520e9fca807 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jp.cpython-36.opt-2.pyc-11e80806884ab512 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-filelist.py-1204071e2909e9ae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multipart.cpython-36.opt-1.pyc-12344b6af28c5768 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cProfile.cpython-36.opt-1.pyc-1237744e1eff2cc1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...validate.cpython-36.opt-2.pyc-124edf12615024fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...filelist.cpython-36.opt-1.pyc-1261131f8e60e18c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-re.py-12710e79b8e766fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---has-key.cpython-36.pyc-128c96367a4ee092 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---this.cpython-36.opt-2.pyc-12a3175d7bfcdf9d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp860.cpython-36.pyc-12f3676a67263acb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gb2312.cpython-36.pyc-130b510042704dd0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cygwinccompiler.cpython-36.pyc-13250819df86afbf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fnmatch.cpython-36.pyc-13314d49907b024f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-133d8ef687f8e7e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pprint.cpython-36.opt-2.pyc-13415533391bd39a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-mac-roman.py-135ba8bacf135817 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...register.cpython-36.opt-1.pyc-135deb21b541851b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp866.py-13780e94901cd261 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-queues.py-139ad237ab09001d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1252.cpython-36.opt-1.pyc-140054c1d99fed84 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-ne.cpython-36.opt-2.pyc-1427307aa73974fe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...events.cpython-36.opt-2.pyc-143ceaab53723c73 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-koi8-r.py-1452210bb3a0434a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp861.cpython-36.opt-2.pyc-1452c53861fd9112 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bootstrap.cpython-36.opt-2.pyc-14a89d427ad41e5c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-threading-local.cpython-36.opt-1.pyc-14c4ee96ce99227f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...asyncio---pycache---log.cpython-36.pyc-14cf2cee855eec84 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-heapq.cpython-36m-x86-64-linux-gnu.so-14e2e25de99b80a2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...btm-matcher.cpython-36.opt-2.pyc-14e8232add708339 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email--parseaddr.py-152120eb5f1135f6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unicode-escape.cpython-36.opt-2.pyc-152925052088b152 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-config.py-1550e45b6cce467c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...modulefinder.cpython-36.pyc-1555e3e6610c0bd7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sslproto.cpython-36.opt-2.pyc-1561f2c6f408c54b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...koi8-u.cpython-36.opt-2.pyc-1588a8c256075234 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...spwd.cpython-36m-x86-64-linux-gnu.so-158fc412af1fb7df +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...resource-sharer.cpython-36.opt-2.pyc-15aacd0abe61885f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-itertools.cpython-36.opt-1.pyc-15f658efd780abef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...test-utils.cpython-36.opt-2.pyc-160c3a4a95d7eb35 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unicode-internal.cpython-36.pyc-16431ff2395ff240 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unix-events.cpython-36.opt-2.pyc-164c859e3be638d1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-165995bed135e467 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-getcwdu.cpython-36.pyc-165e26f389f26f30 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sdist.cpython-36.opt-1.pyc-16786b9a58933d4c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...compileall.cpython-36.opt-1.pyc-16bd3613a9b88d9f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...threading.cpython-36.opt-2.pyc-16cd012f62ba4fd1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-unix-events.py-16d944b1927862ea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...msvc9compiler.cpython-36.opt-2.pyc-16eaf5e40861e096 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-urllib-response.py-170182a58d9eceac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-unittest-signals.py-172e767df57e8fa5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ptcp154.cpython-36.opt-2.pyc-17305d81cd1018d7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...xmlreader.cpython-36.opt-1.pyc-1749b0ef2acde99c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---errors.cpython-36.pyc-174ce5cdd7f822f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-collections-abc.cpython-36.opt-1.pyc-175262bec90dbeae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-headers.cpython-36.opt-1.pyc-17718e3c0172c34d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tis-620.cpython-36.opt-1.pyc-17df460f7a5b6d93 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---case.cpython-36.pyc-17e9a1301235f73c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-bdist-rpm.py-17fae6d3eac01a1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...punycode.cpython-36.opt-2.pyc-18079e9467afe7cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-1831ce8d00923b12 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-subprocess.cpython-36.opt-2.pyc-1856a0442e662483 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...streams.cpython-36.opt-1.pyc-187292eacfb54abb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---handlers.cpython-36.pyc-1880deaa612f609f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-errors.py-1891a00a72874302 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp865.cpython-36.opt-1.pyc-18a4ddb1ef3bcaf4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---robotparser.cpython-36.pyc-18c220c9cea70eed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp861.cpython-36.opt-1.pyc-18c558edbd9f4575 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-tasks.cpython-36.opt-2.pyc-18c7f1382c209dd6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-18c8e685b35b8e9e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-sdist.py-18c9db7412e334d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cProfile.cpython-36.pyc-18cb72f6b88c5239 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...scanner.cpython-36.opt-2.pyc-18d97205f04bd122 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp864.py-18def1083aa057b9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-turkish.cpython-36.opt-2.pyc-18f1c7d7498d3280 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp737.cpython-36.opt-2.pyc-18ffb26b1a6b27e9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-clib.cpython-36.opt-1.pyc-192dcdbe8799786a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-1982eebc0fc159c5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mock.cpython-36.opt-1.pyc-198e76441c8b8927 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---uu-codec.cpython-36.pyc-1995b1caaac5256c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp857.cpython-36.opt-1.pyc-199d59dfe244b373 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sharedctypes.cpython-36.opt-1.pyc-19b7a09704366c4f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email-mime-audio.py-19e538a88dde6d97 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-install-scripts.py-19f5a88a54ab233a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tis-620.cpython-36.pyc-1a084cd12182405f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cmd.cpython-36.pyc-1a30c389d097a20f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---token.cpython-36.opt-2.pyc-1a6455cb3879d790 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-importlib--bootstrap.py-1a645b5dd5a6ff5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dbapi2.cpython-36.pyc-1a666520db10e319 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-ensurepip---init--.py-1a6dea977939785e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-4.cpython-36.pyc-1b08258f820e3207 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1b1232dfc5d46dc7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-headers.cpython-36.opt-2.pyc-1b18f5c81ef35a4c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-iceland.cpython-36.opt-1.pyc-1b72ff621bf51a46 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-metaclass.py-1b815a4715478c08 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-centeuro.cpython-36.pyc-1b9428575c2d6b31 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dylib.cpython-36.opt-1.pyc-1ba241c66b384f03 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-execfile.cpython-36.pyc-1bcaf31096e488b8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...symbol.cpython-36.opt-2.pyc-1bcc6b4b0e5e96c1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mailcap.cpython-36.opt-1.pyc-1bd005cbc3999032 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...macpath.cpython-36.opt-2.pyc-1bd398c9fe778328 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---imp.cpython-36.opt-2.pyc-1be899aa410f4db4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-tokenize.py-1c02e61ea043314e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-3.cpython-36.pyc-1c0b28b95e888fc8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---generator.cpython-36.pyc-1c1c7817bd20bc9f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dylib.cpython-36.opt-2.pyc-1c1d062fc1636daf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...semaphore-tracker.cpython-36.pyc-1c2802a36a54c889 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jisx0213.cpython-36.opt-1.pyc-1c5639d85e4f5150 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-optparse.py-1c76ad647e6c87f1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jisx0213.cpython-36.pyc-1cc042796016db4d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---heap.cpython-36.pyc-1d1a0d7f5299fa69 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...asynchat.cpython-36.opt-2.pyc-1d2396ced0d44d99 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---copy.cpython-36.opt-1.pyc-1d3ff7165c0de39a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-encoded-words.cpython-36.pyc-1d51a0af06f64e0e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pipes.cpython-36.opt-1.pyc-1d569b1c529ecfa9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-events.py-1d8699c2bf3d29fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso2022-kr.py-1de62ba92640e9cf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...streams.cpython-36.opt-2.pyc-1deab74a4407de86 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---doctest.cpython-36.pyc-1dffa4262e07f3ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---enum.cpython-36.opt-1.pyc-1e2773019ce2e3de +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...handlers.cpython-36.opt-2.pyc-1e3219c8a9c5b755 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-1.pyc-1e3872f9404e7cd5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-data.cpython-36.pyc-1e42b50c41f79bd3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...machinery.cpython-36.opt-2.pyc-1e5b03f2fbbc5905 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-cgi.py-1e763187ed9a854b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-gzip.py-1e801a412a675d41 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-compat-pickle.cpython-36.opt-1.pyc-1ec8e676bd95eca0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1254.cpython-36.opt-2.pyc-1ee87f4428916dbf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dylib.cpython-36.pyc-1f05d5366da05a9d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1f3bb5647e55e060 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...socket.cpython-36.opt-2.pyc-1f56a0eb7b26a4a7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...struct.cpython-36.opt-2.pyc-1f58f1e8832dbaac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dom---pycache---pulldom.cpython-36.pyc-1f62cef0ad6ff6a0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-intern.cpython-36.opt-2.pyc-1f6ed588dc47ea2a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tempfile.cpython-36.opt-2.pyc-1f7da75ec427945b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-weakrefset.cpython-36.opt-1.pyc-1f89d2d499295638 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pstats.cpython-36.pyc-2007ab25b1902510 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-unicode.cpython-36.pyc-20113d9d3e82a4ae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-2019a5e0338f3288 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp65001.cpython-36.pyc-20250c3924676733 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-data.cpython-36.opt-1.pyc-205369de55cbc682 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1250.cpython-36.opt-2.pyc-20795cf3170051ba +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1026.cpython-36.opt-1.pyc-2080d5b3e613a89e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...zipfile.cpython-36.opt-2.pyc-20df91aee8f5a93c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iterators.cpython-36.opt-1.pyc-210a829e8f45c7e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-8.cpython-36.opt-1.pyc-211842dc65562bb7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1256.cpython-36.opt-1.pyc-212267b7e57f5d20 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...driver.cpython-36.opt-2.pyc-213cb67db7f46bb0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...upload.cpython-36.opt-1.pyc-213cded80e613321 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...zlib-codec.cpython-36.opt-2.pyc-2151f14d1aa92847 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-getpass.py-21529cfd13defe47 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...koi8-r.cpython-36.opt-2.pyc-216d572f417898be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-216f5cb84751866e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email-feedparser.py-216fb172b8d3c889 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-genericpath.py-2187635b43eb6864 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.opt-2.pyc-2189498162d87848 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-curses.cpython-36m-x86-64-linux-gnu.so-219c6338fee13b1f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shelve.cpython-36.opt-2.pyc-21b7fbd65fcb57a4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-6.cpython-36.opt-1.pyc-220c9530a65b9acf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdist-msi.cpython-36.pyc-221213a46b18751e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---lzma.cpython-36.pyc-221467600935d141 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cgitb.cpython-36.pyc-223c7221d52606ea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...expatreader.cpython-36.opt-2.pyc-22857f76a9ecc5dd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-concurrent-futures--base.py-229a434344f31135 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-getcwdu.py-229fe853c0f0f580 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-filter.cpython-36.opt-2.pyc-22b80a0cd07a82df +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...aliases.cpython-36.opt-1.pyc-22d0f51b50f469e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-latin2.cpython-36.opt-1.pyc-22eabdf7a83ebb75 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...testresult.cpython-36.opt-2.pyc-230468b928c01842 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ssl.cpython-36.opt-1.pyc-230b5d69d5007aa2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---big5.cpython-36.pyc-231b88225f5e976f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-methodattrs.cpython-36.pyc-232e1f51820f57d4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-2.pyc-233fd857b8a70671 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...rlcompleter.cpython-36.opt-1.pyc-235d6546bd6d6e86 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...generator.cpython-36.opt-1.pyc-236acb15330faec3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...connection.cpython-36.opt-2.pyc-236c80ee973c29e8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-email-headerregistry.py-23bda9b4f63ea309 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-enum.py-23c6065ffe6f1ddf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...symtable.cpython-36.opt-2.pyc-23f8aad8654b2fd6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-5.cpython-36.opt-1.pyc-241c5a75a6959398 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...simple-server.cpython-36.opt-2.pyc-243d500c2c992944 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---heapq.cpython-36.opt-2.pyc-24598c66c62387a3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sslproto.cpython-36.pyc-24599da6a0df37ae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-types.cpython-36.opt-2.pyc-246d9e20920843b0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-ws-comma.cpython-36.opt-2.pyc-248090898631148c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp865.cpython-36.opt-2.pyc-24a7420746b938d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...hp-roman8.cpython-36.opt-2.pyc-24ac4a63f86b0b1f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...difflib.cpython-36.opt-2.pyc-24c8a96e414c0ed0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---conv.cpython-36.opt-1.pyc-24d0dbd509770d7e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-parseaddr.cpython-36.opt-2.pyc-24ddde1456f480a1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---difflib.cpython-36.pyc-24f9c88f00ba0947 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-funcattrs.cpython-36.pyc-250c54388f687557 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-2511a664dd30c890 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-reload.cpython-36.opt-1.pyc-25183c5e9d130b11 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-2551da148a76630b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cElementTree.cpython-36.opt-2.pyc-257245dd53019ff7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-imghdr.py-2579789324ac7520 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tarfile.cpython-36.pyc-258e2c824700f319 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-textwrap.py-25a97194295334a1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pipes.cpython-36.pyc-26018d5d51f9ee98 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-email-contentmanager.py-2609a43953eea9d2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-runpy.py-260a9ccdb31657a0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---check.cpython-36.pyc-2661715e01fc2027 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tokenize.cpython-36.opt-1.pyc-2663db19c2c79c34 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-py.cpython-36.opt-1.pyc-266e0cadb97d0cfe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-dummy-thread.cpython-36.pyc-267b3db000c0d2a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-log.py-26876d0d21485603 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bisect.cpython-36m-x86-64-linux-gnu.so-2690072667cfc04e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...request.cpython-36.opt-2.pyc-26b3d60f225b66cf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---log.cpython-36.pyc-26b403633e943525 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-numliterals.cpython-36.opt-1.pyc-26c42ee620325ddf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-26cb38fab61914a4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nonmultipart.cpython-36.pyc-26f4c0e160b437c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-telnetlib.py-26fb4824366dd59f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-metaclass.cpython-36.opt-2.pyc-270552cb5e8cff2a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-2714fd2cfa8713ad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-9.cpython-36.opt-1.pyc-271e2fbd4e1ab04f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ndbm.cpython-36.opt-2.pyc-27523c1db83e7122 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils--msvccompiler.py-275b22f6a0d97d6f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-kz1048.py-2767e28aa81ebe02 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...encoders.cpython-36.opt-2.pyc-2776007c4695fe64 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-urllib-parse.py-277d17ca3e359bd4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-html---init--.py-27a803ec6e32df63 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-2.pyc-27a8717d744c2b3d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...connection.cpython-36.opt-2.pyc-27d6e0f225a19301 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-parser.py-27f591562b6f184e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---xdrlib.cpython-36.pyc-2802a95c17319bb7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ascii.cpython-36.pyc-281af4c9eed0af4d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---colorsys.cpython-36.pyc-28285dbffa8629ef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mime---pycache---base.cpython-36.pyc-28502f4cfef0f9a4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1125.cpython-36.pyc-2852fcf001355b8b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-itertools.py-2875921312f9fd6d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bootstrap-external.cpython-36.opt-1.pyc-288775a41cc7dc8a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...poplib.cpython-36.opt-2.pyc-288bf837caf03c15 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-osx-support.cpython-36.opt-1.pyc-2895d22a3d4c3cd7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-28af62feb25c3bc3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---wave.cpython-36.opt-2.pyc-28b624d07810872c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sndhdr.py-28f417a9b0a98b1e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso8859-13.py-2913d1ae53cf312c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-site-packages-README.txt-292d545864c05a0c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-base-events.py-2948d902a6774165 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---re.cpython-36.opt-1.pyc-2993d287419d68c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-29d87d4eaa3ab29e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-16-be.cpython-36.opt-2.pyc-29d9c212255986d2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp860.cpython-36.opt-2.pyc-29db331e2887b7d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-29decca82df4f799 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...koi8-t.cpython-36.opt-2.pyc-2a05f33c492c2ffe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...copyreg.cpython-36.opt-1.pyc-2a061099a13569c2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-unicode-escape.py-2a1363289944580b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...textpad.cpython-36.opt-1.pyc-2a2c54fe2c5391df +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-2a4966480df0b688 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pyclbr.cpython-36.opt-2.pyc-2a66c09d6c790f06 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...file-util.cpython-36.opt-1.pyc-2a755d6cea6a309a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cmd.cpython-36.pyc-2a78a4584395eb78 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-signal.py-2aa4c12a76cf2e3f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sitebuiltins.cpython-36.opt-2.pyc-2aac4f844be013dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pkgutil.cpython-36.pyc-2b0a31ea577b021c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---enum.cpython-36.opt-2.pyc-2b257fc3a62acd70 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...platform.cpython-36.opt-2.pyc-2b2cd28111ae0c34 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-email-mime-multipart.py-2b3c8c50f0655fce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...decimal.cpython-36.opt-2.pyc-2b4744523e723828 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-spawn.py-2b4d404e8a991e0b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-ws-comma.cpython-36.pyc-2b7bb12c0e6431d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...quopri-codec.cpython-36.pyc-2bc284fe23930016 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...script-helper.cpython-36.opt-2.pyc-2bc7c23acfd81fe0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-wininst.cpython-36.opt-1.pyc-2bfce4f8af7ab87c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2bfdc52c45f181e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-locale.py-2c02490578c2660f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---handlers.cpython-36.pyc-2c28aeeb00245623 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-egg-info.cpython-36.opt-1.pyc-2c2af296ebcbf779 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tasks.cpython-36.opt-1.pyc-2c6db6592877f2db +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-mock.py-2c82be888ec6e0c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-croatian.cpython-36.opt-1.pyc-2c889b5dd97cf65d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---py-compile.cpython-36.pyc-2ca284d2039a0f00 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-Grammar.txt-2d0afa80b0371619 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...expatbuilder.cpython-36.pyc-2d5727a7b26ca391 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-pgen2-tokenize.py-2d64b315de60beb5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp856.cpython-36.pyc-2d7162cdc1e728b9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...random.cpython-36.opt-1.pyc-2d7d983a91d18ab5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...runner.cpython-36.opt-1.pyc-2d8f106fe2a32aa6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sre-constants.cpython-36.opt-1.pyc-2dd0d413488ff3b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...posixpath.cpython-36.opt-2.pyc-2dfe7ffbdfc19c72 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fnmatch.cpython-36.opt-1.pyc-2e26014996cb64bd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp737.cpython-36.opt-1.pyc-2e418b759e64947a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp949.py-2e4d5ed275283cea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---netrc.cpython-36.opt-2.pyc-2e70ce66a5563d6a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...topics.cpython-36.opt-1.pyc-2ea3cd68468fc2be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-bisect.py-2ed2fa67151f07b2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---csv.cpython-36.opt-2.pyc-2ed7c1fdaab5666d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bootlocale.cpython-36.opt-1.pyc-2ee5e41ea11d0ee0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...response.cpython-36.opt-1.pyc-2eff7a310bbd21b9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1006.cpython-36.opt-1.pyc-2f268d5706d34dca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-iterators.py-2f2af03930dc63b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-spawn-win32.cpython-36.pyc-2f43f95aa6088671 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...entities.cpython-36.opt-1.pyc-2f50509d10d1d30c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tabnanny.cpython-36.pyc-2f60d4ec7d06a4b2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...kz1048.cpython-36.opt-2.pyc-2f6f052d96a1e12f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----main--.cpython-36.pyc-2fa76ffa5edff89c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---spawn.cpython-36.pyc-2facf87d098fe3f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp949.cpython-36.opt-2.pyc-2fc89cec411e84d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mbcs.cpython-36.opt-1.pyc-2fd868b965c7080c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...script-helper.cpython-36.pyc-2fec3a8033c7d13b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bisect.cpython-36.opt-2.pyc-2ff4da4dd389fdcd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...raw-unicode-escape.cpython-36.opt-1.pyc-30613024e5c7cc71 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mime---pycache---audio.cpython-36.pyc-30d8020328bdb007 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-romanian.cpython-36.opt-1.pyc-30f783f08099f74e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...msvccompiler.cpython-36.opt-2.pyc-312b0c62d957d776 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jis-2004.cpython-36.opt-2.pyc-3155bbb4c2427683 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.cpython-36.pyc-317c2b43a0b5e1bb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ftplib.py-31a82430a2ee3e49 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mac-roman.cpython-36.pyc-31b4f159ef20fbf9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-bdist.py-31b773b8a43c6cb9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-cmd.py-32096e08e2233cac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---message.cpython-36.pyc-32158e30fff433b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hp-roman8.cpython-36.pyc-323fa28aa9164325 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...asyncore.cpython-36.opt-1.pyc-326d1aa47cb41f32 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...connection.cpython-36.opt-1.pyc-328dbf4c726993e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-32.cpython-36.opt-2.pyc-32ad241d7676b905 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-runner.py-32b2677948a5f488 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-futures.py-32d3a8c3dc845e1f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-btm-utils.py-32e71a602a21bb04 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp866.cpython-36.pyc-331681447d29117c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-lib.cpython-36.opt-2.pyc-333594b67cd2c2e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dep-util.cpython-36.opt-1.pyc-333afb963650bf52 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sqlite3-dbapi2.py-334cbc47c6fb3d08 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-connection.py-338c4c5b106545ba +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp863.py-33a362932c24ad43 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-opcode.cpython-36m-x86-64-linux-gnu.so-3409c0f2ea9fd5ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pty.cpython-36.pyc-341ae30c15ad6c1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...request.cpython-36.opt-1.pyc-346aa1ac8d816d33 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1125.cpython-36.opt-1.pyc-34bc060ac4ebb000 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...binhex.cpython-36.opt-2.pyc-34be0ac8b736e90d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-pgen2-driver.py-34c92731a7dfe1ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...windows-events.cpython-36.opt-1.pyc-34d61aeab9e76ebe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--bootlocale.py-35239f9e9460a643 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-354ee15c23294564 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-collections---init--.py-3553884e04560c1a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---latin-1.cpython-36.pyc-35744ea300b517fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---headers.cpython-36.pyc-358657713e34de1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-2.pyc-35865e243dd89df3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...machinery.cpython-36.opt-1.pyc-358707bd6b5c60d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.opt-2.pyc-35cab891507ef7be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xml-dom-domreg.py-363b33f2a7ce5381 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---stat.cpython-36.pyc-366bc92b84dcab20 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---posixpath.cpython-36.pyc-3689e613484cc57b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-test-support---init--.py-368fef5f6ac8bcd6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pgen.cpython-36.opt-2.pyc-36a2a7b4b3cecc8e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-utf-16-le.py-36a385164ac944e8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-msi.cpython-36.opt-2.pyc-36b9ab18889c248d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...grammar.cpython-36.opt-2.pyc-36c912c29a0bfba8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...framework.cpython-36.opt-2.pyc-36c9aa05cf6f47cc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-lib2to3-main.py-36e99774f5ff51d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-http-cookies.py-370e4c3bbad410fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-PatternGrammar.txt-373a19bd420593ae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---charset.cpython-36.pyc-3768579998bac900 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-raw-input.cpython-36.opt-2.pyc-37878624a079d396 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-dict.cpython-36.opt-1.pyc-378d330f5c7428ce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-378fedc1f8df93dd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...signal.cpython-36.opt-2.pyc-379d23dedafae02a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp857.cpython-36.opt-2.pyc-37b6baacfec8377e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...subprocess.cpython-36.opt-1.pyc-37c49b805ca5ac8b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jisx0213.cpython-36.pyc-37d8693d8a8228dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-32.cpython-36.opt-1.pyc-38692dda682fc101 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-uninstall.cpython-36.opt-1.pyc-387cf54fefafaa73 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-egg-info.cpython-36.pyc-387ff8fda6da001f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...macpath.cpython-36.opt-1.pyc-388343091ed4111e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...profile.cpython-36.opt-2.pyc-3888c4a5e88a4f78 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---imaplib.cpython-36.pyc-3889f043cb0d192d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sre-constants.cpython-36.opt-2.pyc-38aa3ddd0dcd5a3d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-paren.cpython-36.opt-2.pyc-38d36ccda313918a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pathlib.cpython-36.pyc-38fdaab3495f5c40 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1256.py-3936babf07896997 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--phello--.foo.cpython-36.opt-2.pyc-39373982e138ae8a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-394bbd2999551ef9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---application.cpython-36.pyc-3960c6103e3f3d51 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email-mime-image.py-396fd10afdabc26e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---minicompat.cpython-36.pyc-3980dc765c4f376b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-ctypes.cpython-36m-x86-64-linux-gnu.so-3a0addca4fa65722 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-exitfunc.cpython-36.pyc-3a10d8cca48ceaa5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---build.cpython-36.pyc-3a11d566b376cf4a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dump.cpython-36.opt-1.pyc-3a1fd45673cf34ae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-16.cpython-36.opt-1.pyc-3a2605e557baf01d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nturl2path.cpython-36.opt-2.pyc-3a453eb5e33a67b0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---io.cpython-36.pyc-3a6c127baf3e302f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.pyc-3a6ddb57f0a0b0b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1251.cpython-36.pyc-3a7503b5a8b50e31 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---message.cpython-36.pyc-3a7a578ba13dcd1c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base64mime.cpython-36.opt-2.pyc-3a7e52822ea02869 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ast.cpython-36.pyc-3a888321d0c45a28 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-pgen2---init--.py-3ae069d7d31ca215 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp932.cpython-36.opt-1.pyc-3ae3fd11e6ca2dc4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-heap.py-3afb0f6de2fb35f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-check.py-3b2dfa69a7b0f5f2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tty.cpython-36.pyc-3b3890f517d92216 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-reload.py-3b3b470738240b89 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-ensurepip---main--.py-3b5402c85cd24247 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...socket.cpython-36.opt-1.pyc-3b74b5252437c637 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---warnings.cpython-36.pyc-3bcd433a7c622273 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-renames.cpython-36.opt-1.pyc-3bd99f453a719d3e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dump.cpython-36.opt-2.pyc-3c078816498dfbcb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---secrets.cpython-36.pyc-3c247f9a9cd33c7c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-posixpath.py-3c32119e9243b6c8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-renames.py-3c5e1d15cc0f3d76 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-xrange.cpython-36.opt-1.pyc-3c61f1e57ec5a73e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-gdbm.cpython-36m-x86-64-linux-gnu.so-3c6870e48986ad76 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3c92ac010f4a839a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-3ca1068fed2aa8f7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-compileall.py-3cb2cb9ae67b5bd0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-json.cpython-36m-x86-64-linux-gnu.so-3cc090b46925bb76 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...NodeFilter.cpython-36.opt-2.pyc-3cf25ca0c750563a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...msvc9compiler.cpython-36.pyc-3cfa919278611167 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mac-turkish.cpython-36.pyc-3d21720127619fc1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pprint.py-3d30c73246052e8e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---telnetlib.cpython-36.pyc-3d3517d31b221be7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-mac-greek.py-3d4cea5d70d7086d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xml-dom-pulldom.py-3d67c18377455043 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-16.cpython-36.opt-2.pyc-3d68a7bd4f4060c8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...venv-scripts-posix-activate.csh-3d7ae30540e8b7fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-buffer.cpython-36.pyc-3dc269dc4f850528 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...calendar.cpython-36.opt-1.pyc-3dd25d74bf56ac1c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-centeuro.cpython-36.opt-2.pyc-3de6e51c3078523e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-big5hkscs.py-3e52fade3080c429 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-decimal.py-3e5ba83dd51af313 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-3e5f92c635e4cf9d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---unix-events.cpython-36.pyc-3e7044b5409fba94 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-reload.cpython-36.opt-2.pyc-3e739afc4d9961ad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...parser.cpython-36m-x86-64-linux-gnu.so-3ea85947ec598bc6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...proactor-events.cpython-36.opt-1.pyc-3eac7060e6de952a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dir-util.cpython-36.opt-2.pyc-3eb022087680e203 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ipaddress.cpython-36.opt-1.pyc-3ebf907640a18e30 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...operator.cpython-36.opt-1.pyc-3ef3ffdbe1891469 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---spawn.cpython-36.opt-2.pyc-3f442e285663ec1c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-curses-ascii.py-3f9b378806ca425d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...poplib.cpython-36.opt-1.pyc-3fbae515cfc48a2d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-input.py-3fc6cfe9437adeaf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---debug.cpython-36.pyc-3fdc9d1c66bdde44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---johab.cpython-36.pyc-400a367714f27046 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---encoder.cpython-36.pyc-4011448f3b9cedb4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-xml-etree-ElementPath.py-403dda3323428623 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ccompiler.cpython-36.opt-1.pyc-4047f7cbdb49e567 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---btm-utils.cpython-36.pyc-405d198e599efa18 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-README-4067d5cb80c8e0d4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-util.py-4094885fd243cebc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---base64mime.cpython-36.pyc-40b7902e8801df2c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pyexpat.cpython-36m-x86-64-linux-gnu.so-40c4942813e709fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-utils.py-411636a2d3611bdb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ftplib.cpython-36.opt-2.pyc-41256db0f4059f2b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-util.py-41302a79b976d14a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dom---pycache---minidom.cpython-36.pyc-4168b6c252a2f18e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---futures.cpython-36.pyc-418a984c59c4dbdc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---textwrap.cpython-36.pyc-41a857f0d37c74f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---parser.cpython-36.pyc-42001bb6eb4eb071 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-buffer.cpython-36.opt-1.pyc-422a48ec03e89665 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...encoders.cpython-36.opt-1.pyc-427bdbb4e68d9bfc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--sitebuiltins.py-427dda9cb5cc42dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dyld.cpython-36.opt-2.pyc-428481bea0d0c24e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nntplib.cpython-36.opt-2.pyc-42ad008df44b1cfe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...archive-util.cpython-36.opt-2.pyc-42d4f5dbf9aa0b58 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-base-tasks.py-42d7033485ace213 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-430881cff1995c4a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tokenize.cpython-36.pyc-43116e9521e0fac7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ntpath.cpython-36.opt-1.pyc-432e61149674328e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...zlib-codec.cpython-36.opt-1.pyc-4333b65bf836712c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-4334655ae16fbabe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ElementInclude.cpython-36.pyc-433cfc2f1b3f8f30 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-standarderror.cpython-36.opt-1.pyc-434bf55e16a70671 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1026.cpython-36.opt-2.pyc-435b1416a2b79987 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-romanian.cpython-36.opt-2.pyc-435d9016982677fe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base64-codec.cpython-36.pyc-439218b7fc0a01b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-idna.py-43b0b18bb64c0467 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-dummy---init--.py-43c8173616038998 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-shift-jisx0213.py-440126cdee815acf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdist-rpm.cpython-36.pyc-440d2f52abf22848 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-ensurepip--uninstall.py-44438aa1a2acca35 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-contextlib.py-44532df0a4ef9845 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...domreg.cpython-36.opt-2.pyc-448f11b85db849d0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-3.cpython-36.opt-2.pyc-44b2d11f82168b08 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...has-key.cpython-36.opt-1.pyc-44c49154906f49b3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gzip.cpython-36.opt-2.pyc-44cefbddb38c7e1c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-44d5c4d6580bee2c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-codecs-tw.cpython-36m-x86-64-linux-gnu.so-44d8850e5fc3273e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-fixer-base.py-44db598c0bed6318 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---NodeFilter.cpython-36.pyc-44db5ad2250c4dd0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp855.cpython-36.opt-1.pyc-44dc44b00d6172fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...weakref.cpython-36.opt-2.pyc-450f97066c8636f2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---token.cpython-36.opt-2.pyc-451d3c16a1e2f7e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ndbm.cpython-36.opt-1.pyc-4548f1673ef5278a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...koi8-t.cpython-36.opt-1.pyc-455aea9cc76e4e92 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-import.cpython-36.opt-2.pyc-460f636619278cee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ElementInclude.cpython-36.opt-2.pyc-46405f86d68ee460 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-wsgiref-validate.py-464f33c548b4179e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1251.py-467ba5c0890e8eec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cmd.cpython-36.opt-2.pyc-468f15d7618297f6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...warnings.cpython-36.opt-2.pyc-46b19002654e806d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-cygwinccompiler.py-46c1986be11a848c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso8859-11.py-46c82d552ee609a0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...textwrap.cpython-36.opt-2.pyc-46db29fd40da516c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1026.cpython-36.pyc-471785cc98d03aa3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-wsgiref-handlers.py-472a74d54d599393 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-install-headers.py-475a25c6273dd975 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...telnetlib.cpython-36.opt-2.pyc-476f6f433bc114dd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp037.py-47a820d875ad566f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-16-le.cpython-36.pyc-47b6852d8ea772cc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---suite.cpython-36.opt-1.pyc-47c3cbe842e36f1e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-standarderror.cpython-36.opt-2.pyc-47d7971ca4108a36 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-wsgiref-headers.py-47e68f7c6ae95155 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-palmos.py-47ec110ebc1974a4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-zip.cpython-36.opt-1.pyc-47ec6fdace7912d1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...version.cpython-36.opt-2.pyc-480e30ec46faa9e8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-pydoc-data--pydoc.css-4827f5ae6ff5c61e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-ctypes-macholib-dylib.py-4839955a1ad2688f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-fork.cpython-36.opt-2.pyc-48686a648eeb5493 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...quopri.cpython-36.opt-1.pyc-486e874e765380a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-7.cpython-36.pyc-4874a313769308cf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-tracemalloc.py-48800194b3482e1e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---code.cpython-36.opt-2.pyc-488152d771d60729 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ptcp154.cpython-36.pyc-4884511e1b623890 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-isinstance.cpython-36.opt-2.pyc-488d38b5ecb4b22a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-xml-dom-expatbuilder.py-48a5da5165279bc0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---install-lib.cpython-36.pyc-48e0659e4d213cb4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp850.cpython-36.opt-2.pyc-49055063ed5aba5e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...charmap.cpython-36.opt-1.pyc-4907992b0d460a4f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-16.cpython-36.pyc-496be30149f56ad9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-json-encoder.py-49895eb15aa6e135 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...forkserver.cpython-36.opt-1.pyc-49a4afe8d9f13e25 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...statistics.cpython-36.opt-2.pyc-49c2f883f49c76df +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...charset.cpython-36.opt-2.pyc-49c997fab77e5d16 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-basestring.cpython-36.opt-1.pyc-49eefa870209bea8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-exceptions.cpython-36.opt-2.pyc-4a056210788d89bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-ascii.py-4a115e72a894aa49 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...extension.cpython-36.opt-1.pyc-4a214e0bb5487235 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...subprocess.cpython-36.opt-2.pyc-4a67f198a4910808 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sre-parse.cpython-36.opt-2.pyc-4a78ffef0fc30195 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...xdrlib.cpython-36.opt-1.pyc-4a87263abcfe5f07 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...entities.cpython-36.opt-2.pyc-4a8793c5dc0501a6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ctypes---init--.py-4aa08ba1d6f60374 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...math.cpython-36m-x86-64-linux-gnu.so-4acd9d5ae5df23fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nntplib.cpython-36.opt-1.pyc-4ad0c72539e966b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-modulefinder.py-4ae899c7412672b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-4b327a11c084e4af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---symbol.cpython-36.pyc-4b43a393b89479d7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-10.cpython-36.pyc-4b49d54ea8f0e337 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-urllib-error.py-4b60a25b2fa27a43 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---response.cpython-36.pyc-4b6c8dc16e0e164d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-ext.cpython-36.opt-1.pyc-4b72c983ad45fbc0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-centeuro.cpython-36.opt-1.pyc-4b8a6d9b03e147b0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tarfile.cpython-36.opt-1.pyc-4b948fc9ad3d35bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.pyc-4bbab8827434bef5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tty.cpython-36.opt-2.pyc-4bf1bb3c4d77b1c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ast.py-4bf5c962573be648 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-zipfile.py-4c08e738bbfbf6d7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-copy.py-4c2743bb78d1d034 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-types.py-4c282b8aaf207ee8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4c5902d724a70931 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---punycode.cpython-36.pyc-4c5d3bd6a77bf3e4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-asyncio-windows-utils.py-4c67350300d3cb0a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-johab.py-4c6adf346fc72e33 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp037.cpython-36.pyc-4c73902ef0cd5f47 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...genericpath.cpython-36.opt-2.pyc-4c8b0befc49d35fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-strptime.cpython-36.opt-2.pyc-4c9bbc5c30f1f41f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-print.cpython-36.pyc-4ca2e145c923c1e6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-11.cpython-36.opt-2.pyc-4cc667563ce9b325 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...datetime.cpython-36.opt-1.pyc-4cd6c7e5facd50fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp949.cpython-36.opt-1.pyc-4ce005ee3266e39e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...semaphore-tracker.cpython-36.opt-2.pyc-4cefd636bd9c27ea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mimetypes.cpython-36.pyc-4d0bbf59aa83cbea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...functools.cpython-36.opt-1.pyc-4d6c9ecae8012895 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-filecmp.py-4d80643532839b07 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...server.cpython-36.opt-2.pyc-4dc212e9431ffa75 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-urllib.cpython-36.pyc-4de058b825e4af6d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...codecs.cpython-36.opt-1.pyc-4e46c7698fefa9e4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-quopri.py-4e6ba7df977f1505 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-debug.py-4ed346a854cb5176 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-msvccompiler.cpython-36.opt-2.pyc-4ee637a7941178e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-copyreg.py-4f139750e80215be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mailbox.cpython-36.pyc-4f2310576f166603 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-symbol.py-4f269c9a458308e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-operator.cpython-36.pyc-4f30263a85ba357f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...constants.cpython-36.opt-1.pyc-4f460df8caec3d0c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp861.py-4f55761c09cfee69 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...versionpredicate.cpython-36.opt-1.pyc-4f611e230f16b6d0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-16.cpython-36.opt-1.pyc-4f61de9049087ec8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-renames.cpython-36.opt-2.pyc-4f64c23d82c6c084 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.opt-1.pyc-4f840c5842f6cec9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---context.cpython-36.pyc-4f8e984dc2ea1986 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-popen-fork.py-4f972ec61d81033c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...undefined.cpython-36.opt-2.pyc-4fbdfae2332c2e55 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gnu.cpython-36.opt-1.pyc-4fcf22834d315a5f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-arabic.cpython-36.opt-1.pyc-5002a3c1cd286e43 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-compression.cpython-36.opt-1.pyc-502c38358d1b28a2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...message.cpython-36.opt-2.pyc-504ab0e0e9d4a057 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-10.cpython-36.opt-2.pyc-50787c22a903ef91 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-bdist-wininst.py-507ec29a6d6f74e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---aifc.cpython-36.opt-2.pyc-50b5c834fa11426c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----markupbase.cpython-36.pyc-50bc24ca23c28b5f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp861.cpython-36.pyc-50fadb0eb71dbdae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---imghdr.cpython-36.pyc-5108c32a46321458 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-510def62e5c07565 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1006.cpython-36.pyc-5148b403fce01cde +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-tabnanny.py-515bb779113c2033 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-html-entities.py-516f1d3eef04a8b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1125.cpython-36.opt-2.pyc-5189ec492595217d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-51ff74a5e8088111 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gnu.cpython-36.opt-2.pyc-5207067fed339953 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-tuple-params.py-5237d720d028207b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-errors.py-524d78849e0ca834 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1257.cpython-36.pyc-525ee176207c29fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mac-greek.cpython-36.pyc-52745fded86c3882 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...palmos.cpython-36.opt-1.pyc-528ca901d0ad583e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---base.cpython-36.opt-2.pyc-5301b62421266df0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pydoc.cpython-36.pyc-5310b5d050f8e0d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---csv.cpython-36.pyc-532e18d81ca49d9c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-streams.py-534f5fd7a6852def +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-537093e41088f7d9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pathlib.cpython-36.opt-2.pyc-5371677bdbabdae7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----pyio.cpython-36.opt-1.pyc-537bc39c75e8187c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-exec.py-53a069a3613f6e1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...connection.cpython-36.opt-1.pyc-53bc8e7fa31f8d58 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---upload.cpython-36.pyc-53eff3312532da78 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-cProfile.py-540b17d1a43e5e4f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---io.cpython-36.opt-1.pyc-5415b95cba1ba8ad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-3.cpython-36.opt-1.pyc-54abff259268b2ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cgitb.cpython-36.opt-1.pyc-54c2af1c9627fa75 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fancy-getopt.cpython-36.opt-1.pyc-54d2658edb5e0615 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp869.cpython-36.opt-1.pyc-54e099aec6193a14 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-bdb.py-5500cf5165444015 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bz2-codec.cpython-36.pyc-551d4f372f32a161 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...topics.cpython-36.opt-2.pyc-55235221e7011f9d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-profile.py-552c3fc70d804b5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-calendar.py-552cf4908e399e1d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...getopt.cpython-36.opt-1.pyc-553e7fe64b3c2875 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...config.cpython-36.opt-2.pyc-555f5f263c8033eb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dis.cpython-36.opt-1.pyc-555fb0d2cf6b52b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pdb.py-55761d069cd97f29 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fractions.cpython-36.opt-2.pyc-55838c4ebb96fa92 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---enum.cpython-36.pyc-558d68353b035a85 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...resource-sharer.cpython-36.opt-1.pyc-55c600c318c364fc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-semaphore-tracker.py-55d103c53491d584 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.pyc-55dc60e6c4917421 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...futures.cpython-36.opt-2.pyc-55e1149e56234021 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hz.cpython-36.opt-1.pyc-55f0f289bebbb349 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...rot-13.cpython-36.opt-2.pyc-56297d7e19473d69 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---shift-jis.cpython-36.pyc-5649e6f6602f8bef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jis-2004.cpython-36.opt-2.pyc-56671edccf6b2533 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-sharedctypes.py-56990a2578be8b91 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-wsgiref---init--.py-56a1f232a8907635 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...compat.cpython-36.opt-1.pyc-56b160ae49476576 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ssl.py-56fd1a43cd8dba11 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...result.cpython-36.opt-1.pyc-57225a961956d5be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cgitb.cpython-36.opt-2.pyc-5731a19b65de2617 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mmap.cpython-36m-x86-64-linux-gnu.so-573fb38a259e20c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...textpad.cpython-36.opt-2.pyc-576419154bff9910 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-policybase.cpython-36.opt-1.pyc-5767026000f61b09 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---rot-13.cpython-36.pyc-57765b3d9e45cf9e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-pydoc-data-topics.py-577a580b0c9f76bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-578c0c52484b73c0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-platform.py-57a25d1dce76446c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...NodeFilter.cpython-36.opt-1.pyc-57ab035dc05e21af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---chunk.cpython-36.opt-2.pyc-57ad5820ee472f21 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-html-parser.py-57c2f55f5e6d8215 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hashlib.cpython-36.pyc-57c374946fc37916 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-koi8-t.py-57fbbe952a0453e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-sys-exc.cpython-36.opt-1.pyc-5825199974733b6f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---copy.cpython-36.pyc-5830c78927a4eed0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...headers.cpython-36.opt-2.pyc-5852b6715988ae6e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-4.cpython-36.opt-2.pyc-5867565c0ce36dee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-archive-util.py-589423a014139ed7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---panel.cpython-36.opt-1.pyc-590a58492dddba5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...gb2312.cpython-36.opt-1.pyc-590f591886bfd596 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---expatreader.cpython-36.pyc-5933defebccd529d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---antigravity.cpython-36.pyc-5964c555ae0fe27c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ElementPath.cpython-36.opt-2.pyc-5965c2847fcd8a53 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-2.cpython-36.pyc-596e93ff58a2dc80 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-ccompiler.py-5991ba3b3dc4fbe8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...configparser.cpython-36.opt-1.pyc-59952d647636ddda +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---reprlib.cpython-36.pyc-59b61f3623c9317d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-wsgiref-simple-server.py-59cc3079f3e3ae5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-curses-panel.py-59d9b5c6e90153a5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pydoc.py-5a09657abfa45c53 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-15.cpython-36.opt-1.pyc-5a120e239492e44b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pathlib.py-5a4b1e0a332dfa13 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-queues.py-5a664c902551b46c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-5a80dfac812f4265 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...client.cpython-36.opt-2.pyc-5a8dcaeb07488a42 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-filter.py-5a8e76a543f4b002 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ascii.cpython-36.pyc-5aba3b285e341192 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-dbm-dumb.py-5af0e66af85035ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-8-sig.cpython-36.opt-1.pyc-5b2c2ac4ff4357ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-sax-xmlreader.py-5b4710cc5cc5da6e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jis-2004.cpython-36.pyc-5b590a1a9ec979f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5b888df91545e8ac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mimetypes.cpython-36.opt-2.pyc-5b8a32d9d1523b38 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bisect.cpython-36.pyc-5b9e1b23c5ea85c4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp720.cpython-36.opt-1.pyc-5baffcab5c788a25 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-operator.cpython-36.opt-2.pyc-5c03bc22120e8372 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cookies.cpython-36.pyc-5c166b7f0d75ecc2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---code.cpython-36.pyc-5c18cf69e225a99b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---this.cpython-36.pyc-5c2d24b4fdff7d14 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.cpython-36.opt-2.pyc-5c3f11f148a18e65 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-bz2-codec.py-5c48f163602ce34b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pty.cpython-36.opt-2.pyc-5c5c8290c30991a9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sunau.cpython-36.pyc-5c8879eacf4fc22c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---parse.cpython-36.opt-1.pyc-5cb064f39fc90b9f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...result.cpython-36.opt-2.pyc-5cddc62495f27aee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...handlers.cpython-36.opt-1.pyc-5ceb6f85713c3cdc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...decimal.cpython-36.opt-1.pyc-5d029f26c0d98c7c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-codecs-kr.cpython-36m-x86-64-linux-gnu.so-5d23934f2034df27 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5d4b079b51de6bf1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---smtpd.cpython-36.opt-1.pyc-5d7534d0e02e4804 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-zipapp.py-5d78c46fc96adbc5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-xml-etree-ElementInclude.py-5da7692d1af59519 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sched.py-5daed23910f888e9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-32-le.cpython-36.opt-2.pyc-5dcd1e52f8ffe249 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp65001.cpython-36.opt-1.pyc-5df3e59c72f2376c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tarfile.cpython-36.opt-2.pyc-5e39902bc6858b8a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---palmos.cpython-36.pyc-5e49d0ce99fee0ef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multipart.cpython-36.opt-2.pyc-5e5f60f7a77302ad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-utf-16.py-5e67cc1e89eb5e85 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-2.cpython-36.pyc-5e6dc96fea56cf73 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...imaplib.cpython-36.opt-1.pyc-5e739be3a00c132b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp866.cpython-36.opt-1.pyc-5ea9807a4101da3c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-2.py-5ead108d5b38d1d2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-base64-codec.py-5ed776d2c404af42 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...server.cpython-36.opt-1.pyc-5eda238c44bf62c5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dumb.cpython-36.opt-1.pyc-5eeb6eef163fc591 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...decoder.cpython-36.opt-1.pyc-5f017112302a37b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...secrets.cpython-36.opt-1.pyc-5f0a794e71eec41f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---shlex.cpython-36.opt-1.pyc-5f1963f495521757 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-imports.cpython-36.pyc-5f36759d30606375 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cElementTree.cpython-36.pyc-5f3aef64c25374bb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-2.cpython-36.opt-2.pyc-5f3f6d97e96229a3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---profile.cpython-36.pyc-5f6271ef3d0b0178 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-stringprep.py-5f67ec6b05806eb6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1257.py-5f81205338982a8d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...modulefinder.cpython-36.opt-2.pyc-5f84051e792b1d63 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-importlib---init--.py-5f85b6d1e7096ca9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...windows-utils.cpython-36.opt-2.pyc-5fd695a5fdbf9af9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5fe8fafdb95ad64b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sysconfig.cpython-36.opt-1.pyc-60486df9d0ae4301 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cookies.cpython-36.opt-2.pyc-6071197af0f2295d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ctypes-wintypes.py-6078998f6c5559fe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-dumb.cpython-36.opt-1.pyc-6082fc2c0beda77f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...config-3.6m-x86-64-linux-gnu-Makefile-60b0929b7adfbd28 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-mimetypes.py-610a7b38c7a93421 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-future.cpython-36.opt-2.pyc-610bafa742484a7e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-email--encoded-words.py-6123441cacaa3196 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---log.cpython-36.opt-1.pyc-615fb378d5b1d52d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ntpath.py-617a09ddd70bc2b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--markupbase.py-61902fe48286c220 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dep-util.cpython-36.pyc-619f50d74e1387cc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-build-ext.py-61fc513e7cbb0c72 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-policy.py-61ff80d847994f1c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ossaudiodev.cpython-36m-x86-64-linux-gnu.so-6207e66c7857be8e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--osx-support.py-6236080f51102596 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---oem.cpython-36.pyc-62552a9c222a6840 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hz.cpython-36.opt-2.pyc-6259fbdcfe798264 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...encodings-raw-unicode-escape.py-627c252ec9c7604e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---os.cpython-36.opt-2.pyc-6285d9b08d159be3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bootstrap-external.cpython-36.opt-2.pyc-62a91ee634295040 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-spawn-posix.cpython-36.opt-1.pyc-62c07aadffdf1e83 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp875.py-62c4422acea4809f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-code.py-62c8047b75881cec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-62dfca322ab5b7c8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...colorsys.cpython-36.opt-1.pyc-62fd5978df09083f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp720.cpython-36.opt-2.pyc-63345ac34538bf7b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---calendar.cpython-36.pyc-635ba7dee793fd7d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1258.cpython-36.opt-2.pyc-6377c3d22f4f3eb1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...selector-events.cpython-36.opt-2.pyc-637d777265954940 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...plistlib.cpython-36.opt-2.pyc-6380f0bd1961f063 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1006.cpython-36.opt-2.pyc-63b2e7404701e7ad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---queues.cpython-36.pyc-63d3dd4642770d8b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-codeop.py-64078ab4e8821d5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...futures.cpython-36.opt-1.pyc-640befac8cb52f91 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.opt-1.pyc-642684f4a9f7c1ea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-ext.cpython-36.pyc-64279906aa1f2e64 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sched.cpython-36.pyc-6473ce6626135337 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-8-sig.cpython-36.pyc-6479d21f0d09542e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-markupbase.cpython-36.opt-2.pyc-64b59cc440048a76 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-9.py-64df6d1d050ed140 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----endian.cpython-36.pyc-64fc5760a5e80a82 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---quoprimime.cpython-36.pyc-650ee14b50d1368a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-rot-13.py-65309baedaa731d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...venv-scripts-posix-activate.fish-654df972ddbb8835 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-6560370f96feb385 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-gbk.py-657ff27fc1f9c295 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-decimal.cpython-36m-x86-64-linux-gnu.so-659784d80e2bd250 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...email--header-value-parser.py-659810e3746e97e8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...timeit.cpython-36.opt-1.pyc-659b4911aca7072a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-rpm.cpython-36.opt-1.pyc-65d1f55e762e6d42 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ascii.cpython-36.opt-2.pyc-65d9b614821211cb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-macurl2path.py-65eff5ea054b5368 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-scripts.cpython-36.pyc-66045853ee05d586 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---io.cpython-36.opt-2.pyc-66076f8464c5ac46 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...driver.cpython-36.opt-1.pyc-660eb9f8b6e84b1f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-urllib.cpython-36.opt-2.pyc-6634bb2a18e8db68 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ntpath.cpython-36.pyc-6696ac76053b5399 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-apply.cpython-36.opt-2.pyc-6697931afa841ad1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...select.cpython-36m-x86-64-linux-gnu.so-66ba274b153df873 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---statistics.cpython-36.pyc-66bcf77f8e916e23 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-6711792db1cc38dd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-croatian.py-672aae807bd212af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...zipfile.cpython-36.opt-1.pyc-6765e60661020e8a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.opt-2.pyc-67982876f8dea55c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sysconfig.cpython-36.opt-2.pyc-67a11e9412b8432f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---nntplib.cpython-36.pyc-67a46eada0a0ae03 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ipaddress.cpython-36.pyc-67a7a9b26d482f99 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bz2.cpython-36m-x86-64-linux-gnu.so-67d0fe0803bbe75e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---codecs.cpython-36.pyc-67d6660957f8f468 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp720.py-67e85f731f09ac9e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mac-iceland.cpython-36.pyc-682ce4cae6253f0e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils---init--.py-6881a3065ea4ed8b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ctypes--endian.py-688c3d8e5b73a2d2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---operator.cpython-36.pyc-68dac8f86115dd80 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hmac.cpython-36.opt-1.pyc-690147557ea1377c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...headerregistry.cpython-36.pyc-693f37d7fa3b40cf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...filelist.cpython-36.opt-2.pyc-694ac4580b640571 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-8.cpython-36.pyc-695dac83ef7524a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-gettext.py-6992bbd4fb6da725 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-markupbase.cpython-36.opt-1.pyc-69ef5455cda69a0f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sunau.cpython-36.opt-2.pyc-6a050517c1fb8c9b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-loader.py-6a061981abe4bac0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-fileinput.py-6a2f01fe7b7adbbf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-csv.py-6a3a318d41f92fb3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---heap.cpython-36.opt-1.pyc-6a4122c6eec23e6e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---entities.cpython-36.pyc-6ab004e38ed712a0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---machinery.cpython-36.pyc-6aba5bace683d17c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---compileall.cpython-36.pyc-6ae29b5a94775efc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---types.cpython-36.opt-1.pyc-6b04a818e62849c4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1252.py-6b4c0147a000fa32 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-fractions.py-6b68fa744f027b8a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---check.cpython-36.opt-2.pyc-6b7e95c143632a83 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...thread.cpython-36.opt-1.pyc-6babbf59ac9210fc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bcppcompiler.cpython-36.opt-1.pyc-6bd44ffe84f86193 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...client.cpython-36.opt-2.pyc-6bf21217050773f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-file-util.py-6c063ace76f2c225 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...selectors.cpython-36.opt-2.pyc-6c19d9dd16a418f7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-throw.cpython-36.pyc-6c4e05cdfb0eafba +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...xmlbuilder.cpython-36.opt-1.pyc-6c547a4a955d1c8e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---panel.cpython-36.opt-2.pyc-6c674772f88f159a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1251.cpython-36.opt-2.pyc-6c7edd3c54cb6ba0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp037.cpython-36.opt-1.pyc-6c865aa7b69e4032 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-shift-jis-2004.py-6c9134b3cc245fb6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mime---pycache---text.cpython-36.pyc-6c93413ee4191c62 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cmd.cpython-36.opt-2.pyc-6cc1c44bb894cc9b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...test-support-script-helper.py-6cd40ab5f0a00071 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fcntl.cpython-36m-x86-64-linux-gnu.so-6d1cf68354431adb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-7.cpython-36.opt-1.pyc-6d6abac45a0a3eb5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-6db3b6dc9864dcb3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...forkserver.cpython-36.opt-2.pyc-6db6adc68f160eed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...protocols.cpython-36.opt-1.pyc-6db7ca22d8dfa377 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...windows-events.cpython-36.opt-2.pyc-6de0e98ac0963cde +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---panel.cpython-36.pyc-6df2fc2c44718d63 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pkgutil.cpython-36.opt-2.pyc-6e0a909683a88bae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp65001.py-6e1c0899c57f27a0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cElementTree.cpython-36.opt-1.pyc-6e1fa583d04a9e09 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...rlcompleter.cpython-36.opt-2.pyc-6e44cb3abff892f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...json---pycache---tool.cpython-36.pyc-6e4c98889592fdb7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1253.cpython-36.pyc-6e53eba16d83f4c4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-set-literal.cpython-36.opt-1.pyc-6e5df839c002b1ce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...expatbuilder.cpython-36.opt-1.pyc-6e659e01fcea3308 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-kr.cpython-36.opt-1.pyc-6e947e5780a7d1cc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----uninstall.cpython-36.pyc-6eb2f341b81d5415 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-gb2312.py-6ec6e259c6c19627 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---decoder.cpython-36.pyc-6ec994dd0541be7a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...msvccompiler.cpython-36.pyc-6ef68aeb6d3d1556 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pool.cpython-36.opt-2.pyc-6efe01d14676e41f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-uuid.py-6f42e49919bef2fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fnmatch.cpython-36.opt-2.pyc-6fb7818177531c25 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---site.cpython-36.pyc-6fd17c125e105947 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp856.cpython-36.opt-2.pyc-6fe2143b19c8ca65 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ctypes-macholib-README.ctypes-6fe79a7828a7f67e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-forkserver.cpython-36.opt-1.pyc-704a9afc35b4c19a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sysconfig.cpython-36.pyc-70784c85eb69633f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-zip.cpython-36.opt-2.pyc-7079f3fa245ef075 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---streams.cpython-36.pyc-7087fec6e9ffd049 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---smtpd.cpython-36.opt-2.pyc-70a2ded37975c96c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-map.cpython-36.opt-2.pyc-70cb053f991a4b1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-generator.py-70eb949beb52f03c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-nntplib.py-70fe835bedcdc15e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...concurrent-futures---init--.py-71341eae3d843d83 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1140.cpython-36.opt-2.pyc-713af15603d27b8e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---error.cpython-36.pyc-713d7c162dfb7264 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-has-key.cpython-36.pyc-7156dbc2cffb16fc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...getopt.cpython-36.opt-2.pyc-715ebf17bd0993fe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sndhdr.cpython-36.opt-1.pyc-7163ee0a75c82ada +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email---init--.py-718e91499485f0bd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-extension.py-718f58480a9afafb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp869.cpython-36.opt-2.pyc-719a352665e0d6b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp856.py-71a606aeeff86d6d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...extension.cpython-36.opt-2.pyc-71b8bc30b612ea01 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-reduce.cpython-36.opt-1.pyc-71e5aeda9b4f623d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---uuid.cpython-36.pyc-71e8d9fc8db55711 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-log.py-71f6fc187d47ca74 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dummy-threading.cpython-36.pyc-722cf505d6441cc3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-versionpredicate.py-722e9647f512ddab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---lzma.cpython-36.opt-1.pyc-723cdbe2afa10489 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-idioms.cpython-36.opt-2.pyc-724c77a457ed5df3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bootstrap-external.cpython-36.pyc-727817e4f5f0df1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ascii.cpython-36.opt-2.pyc-728d47d8b9d211be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-zip.cpython-36.pyc-72b95e7529823d92 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----future--.cpython-36.pyc-72ba3dfb08bfafed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-xrange.cpython-36.pyc-72ccdf30ddb083d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-testmultiphase.cpython-36m-x86-64-linux-gnu.so-72d56e02352d45b6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sha3.cpython-36m-x86-64-linux-gnu.so-72e1d545dd96bf3c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---symtable.cpython-36.pyc-72fa660a904eba31 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...handlers.cpython-36.opt-2.pyc-7312bde4b63535cc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-throw.py-7326fffbd7d8a317 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-curses---init--.py-732bde4ab613221a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sqlite3.cpython-36m-x86-64-linux-gnu.so-733257dc45681e53 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-collections-abc.py-734d8f6b52b5383e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pgen2---pycache---pgen.cpython-36.pyc-7357b6ce0fa4fac6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---parse.cpython-36.opt-2.pyc-7357f059d392802d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...simple-server.cpython-36.pyc-736f186640fdf2f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dump.cpython-36.pyc-737cae48a9177400 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-1.cpython-36.pyc-738128f6d80959c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.cpython-36.opt-1.pyc-738975737fc635d2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-colorsys.py-74601a6b4140701f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp858.cpython-36.pyc-74ac2a3060da9832 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-itertools-imports.py-74bc15cfd2f19793 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...configparser.cpython-36.opt-2.pyc-74c010a78eb7c28b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sre-compile.py-74c2b1c54ed2ebc2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...register.cpython-36.opt-2.pyc-74c4a6806b5f88b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-standarderror.py-74ef0aafd7968e5e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-arabic.cpython-36.opt-2.pyc-750a6ab12e0cb5b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-3.py-751946916436201e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-7524c3abf5cb39ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...synchronize.cpython-36.opt-1.pyc-7528e9038e1ee8e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-raw-input.py-752b2e3c1d706069 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-757461db2a2d2d92 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gbk.cpython-36.opt-2.pyc-7588df83f2142140 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...btm-utils.cpython-36.opt-1.pyc-75951ec65b5ff5a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-romanian.py-759dffc3f6c05508 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso8859-10.py-75a9a0cfd82f13c0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-long.cpython-36.opt-2.pyc-75a9d3ef453b21d0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-xreadlines.cpython-36.opt-2.pyc-75dc36536cfcd3dd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-centeuro.py-75ff6b95196b1b43 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...textwrap.cpython-36.opt-1.pyc-762b79add18a1915 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-16-be.cpython-36.opt-1.pyc-7636dc4eb23f4af7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...resource.cpython-36m-x86-64-linux-gnu.so-76ad8d297afe2fa8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp874.cpython-36.pyc-770f62d2031711ce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---crypt.cpython-36.opt-2.pyc-77148518d8c5fe44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---encoders.cpython-36.pyc-7725e3f5d9f5450a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-ext.cpython-36.opt-1.pyc-7793d28a301c0ab7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fileinput.cpython-36.opt-1.pyc-779bbc879b920c40 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-crypt.cpython-36m-x86-64-linux-gnu.so-77d00405e28ae9e5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...string.cpython-36.opt-2.pyc-77d10b7772f4bd7f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pprint.cpython-36.opt-1.pyc-77e2912b2b289d32 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-egg-info.cpython-36.opt-2.pyc-78121a41214ad6ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pstats.cpython-36.opt-1.pyc-783a2ba413dcfa82 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-methodattrs.cpython-36.opt-2.pyc-784e588cdafe4da8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-input.cpython-36.opt-2.pyc-784ebe0795bc49b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...uu-codec.cpython-36.opt-2.pyc-7855be196903aa4b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ctypes---pycache---util.cpython-36.pyc-78673e4722d078fc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp949.cpython-36.pyc-7869b13e23715300 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fixer-util.cpython-36.pyc-786a87671868cbcc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-14.cpython-36.opt-1.pyc-7870984773062fbf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---driver.cpython-36.pyc-788385517b66f029 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...gb2312.cpython-36.opt-2.pyc-789f4563c510abf1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-codecs-jp.cpython-36m-x86-64-linux-gnu.so-78a7bb281d7404b2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...rot-13.cpython-36.opt-1.pyc-78be170941135a9c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-croatian.cpython-36.pyc-78c0a933426ac8ef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...stringprep.cpython-36.opt-1.pyc-78c660bdc00bc82c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-punycode.py-78d2472008447794 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-suite.py-78d919b5103b2d08 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp950.cpython-36.pyc-7906fad138e7f712 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...opcode.cpython-36.opt-1.pyc-7934171ab66dfe1e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-numliterals.cpython-36.pyc-793d167b365ea532 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp720.cpython-36.pyc-794352cb650d9a03 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-encoders.py-798b189ab8ae7ff1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-stat.py-79a0ce7cb16b589b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email-mime---init--.py-79ac401330bd3d36 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---glob.cpython-36.pyc-79c28f0bde371046 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...robotparser.cpython-36.opt-1.pyc-79c7e633b4af610e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-dis.py-79cc4184a1550e5d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gbk.cpython-36.opt-1.pyc-79def8e74b55c061 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---base64.cpython-36.pyc-79f264374bf370ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tempfile.cpython-36.opt-1.pyc-7a0245a5f010546d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-raw-input.cpython-36.pyc-7a5a2f626134b0da +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp863.cpython-36.pyc-7a69b35e4199df10 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-importlib-machinery.py-7a6f2662f9a2974e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-oem.py-7a77b5772c975089 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ssl.cpython-36.opt-2.pyc-7a8889b38f3f8099 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-libpython3.so-7a8bc2db5eee3933 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...handlers.cpython-36.opt-1.pyc-7aa19a5b576a30d5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---zipapp.cpython-36.pyc-7ab904bc1e09ff85 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---build.cpython-36.opt-1.pyc-7ac69d5082bcbdb6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---lzma.cpython-36.opt-2.pyc-7ad9367753826e9c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---signal.cpython-36.pyc-7addc8b22f85de1f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-hp-roman8.py-7b063b9efa47dfff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-ssl.cpython-36m-x86-64-linux-gnu.so-7b12f5bd3a9eb6a0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---managers.cpython-36.pyc-7b325c951825872b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jisx0213.cpython-36.opt-2.pyc-7b7688733e9033c2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---testresult.cpython-36.pyc-7b8a63a84ba60d41 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...antigravity.cpython-36.opt-2.pyc-7baf19d02583494a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---filecmp.cpython-36.pyc-7bbb8193a20d1096 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---image.cpython-36.opt-1.pyc-7bd242a2410b0f91 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pygram.cpython-36.opt-2.pyc-7bf8a9426f81c8fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dis.cpython-36.opt-2.pyc-7c234cfc17e204a9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---codeop.cpython-36.pyc-7c5615e5230cda56 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---plistlib.cpython-36.pyc-7ced002fcd1ac0e0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-rpm.cpython-36.opt-2.pyc-7d07f9ffae0b9eed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-sax-saxutils.py-7d0a5b933bc2eca9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-lib2to3-pygram.py-7d5094e345a4215a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tracemalloc.cpython-36.opt-1.pyc-7d639a8d13d950f2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...py-compile.cpython-36.opt-1.pyc-7d80c697e646a9bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mailbox.cpython-36.opt-1.pyc-7d847a75020fccec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---wave.cpython-36.pyc-7d87be9c332caf2e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...aliases.cpython-36.opt-2.pyc-7db55c376bb62509 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mime---pycache---image.cpython-36.pyc-7dbbd4193d852485 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dom---pycache---domreg.cpython-36.pyc-7dda240aac7efee9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-lzma.cpython-36m-x86-64-linux-gnu.so-7e285d5fcc14470b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-7e811b3b14538ce5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---subprocess.cpython-36.pyc-7e8e5df570f69c0f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---popen-fork.cpython-36.pyc-7e8fe4d15df9e731 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-idioms.cpython-36.pyc-7ee6191a4cf9f68c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pygram.cpython-36.opt-1.pyc-7eec1d509b001724 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...smtplib.cpython-36.opt-1.pyc-7ef5365ea420a576 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ccompiler.cpython-36.opt-2.pyc-7f2e802a015d3eda +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-json---init--.py-7f43fe086974199b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---build.cpython-36.opt-2.pyc-7f46ce515c462b06 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-dir-util.py-7f66d64109fbb470 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---koi8-u.cpython-36.pyc-7fad3a41e98965bb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sre-compile.cpython-36.opt-2.pyc-7fbb12dd1e56f2af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---struct.cpython-36.pyc-7fbbc326184994bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-utf-7.py-7fcf8cf9d42dd357 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fancy-getopt.cpython-36.pyc-7fd672a149b0e121 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shutil.cpython-36.opt-2.pyc-7fdd1513b6a58fae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-utf-16-be.py-7ffa9ec3045a0549 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-venv---init--.py-8000c93773906909 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-itertools-imports.cpython-36.opt-2.pyc-8026178ecbd541d0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1253.cpython-36.opt-2.pyc-8035187f133155a3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pytree.cpython-36.opt-2.pyc-80509a8a513885e6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...linecache.cpython-36.opt-2.pyc-80739798bc982348 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xml-dom-minidom.py-808ba63ac0a956a7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...imaplib.cpython-36.opt-2.pyc-8099f92a8f4daa9e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-has-key.py-80e554359f50f476 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dyld.cpython-36.opt-1.pyc-80f30cba5d986974 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ftplib.cpython-36.pyc-81010e542ccb98af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-raw-input.cpython-36.opt-1.pyc-81106415fa99f65e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp875.cpython-36.pyc-811d81b62893a54b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso2022-jp-2004.py-81483d15da581d8c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-tuple-params.cpython-36.opt-1.pyc-814e91f31c5e0784 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----policybase.cpython-36.pyc-8180ac28d73020cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...asyncore.cpython-36.opt-2.pyc-819f61f32bfb64d4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-basestring.cpython-36.opt-2.pyc-81a7c2e1825e17e2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-struct.cpython-36m-x86-64-linux-gnu.so-81c94347e7c1bbeb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...config.cpython-36.opt-2.pyc-81e057b8db977fff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...locale.cpython-36.opt-2.pyc-81e4758c05a3b208 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1140.py-81e4e0ff2eadcc1a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---smtpd.cpython-36.pyc-81f5e5f9c4f0b5a6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp500.cpython-36.opt-2.pyc-81f79925ced511a3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-utf-32-be.py-8253b0839c077bdb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-json-scanner.py-825eac73410c41da +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-pickle.cpython-36m-x86-64-linux-gnu.so-826e4782ceceb14e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...reprlib.cpython-36.opt-1.pyc-8277075c83e88d55 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...linecache.cpython-36.opt-1.pyc-829ddef374238a56 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-pgen.py-82ae5253404a7011 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---token.cpython-36.opt-1.pyc-82c9cee6a7de18bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-except.cpython-36.opt-2.pyc-82cbac9663e80bd2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-ctypes-macholib-framework.py-82dcb34ba82e6f56 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--future--.cpython-36.opt-1.pyc-82e60336daa087c5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-getopt.py-82ee261275faf8a9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---textpad.cpython-36.pyc-83332deb5ec019b8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-834052b96a3ea148 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---queue.cpython-36.opt-1.pyc-83902ee327dc3a0e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...windows-utils.cpython-36.pyc-83ac29f9f092a198 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...quopri-codec.cpython-36.opt-1.pyc-840c0cb7a279676f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-import.cpython-36.pyc-8410a166de247e60 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-aliases.py-8439325b412b6630 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...generator.cpython-36.opt-2.pyc-8450e987ec4572fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...saxutils.cpython-36.opt-1.pyc-845571b15f50a4e5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-sax--exceptions.py-845c9892dbf71eaa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---wave.cpython-36.opt-1.pyc-845fb9308613bcfc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---token.cpython-36.pyc-8461bab02f784100 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-imports2.py-846bf08330cb507e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...argparse.cpython-36.opt-2.pyc-847c4ee6efbc94ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---koi8-t.cpython-36.pyc-84e1faaf7a2db5d0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---johab.cpython-36.opt-1.pyc-84ea933e8f592e93 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-libpython3.6m.so.1.0-851a17b2ed448e0d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp858.cpython-36.opt-2.pyc-851a4a7c310fa8c6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-functools.py-851d9125a873134e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6--threading-local.py-85247986c4b6c27e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-8545b1a9966f10b9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-futures.cpython-36.opt-1.pyc-854b24dfe7e02486 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-tuple-params.cpython-36.pyc-854f9c58d46b11ef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...undefined.cpython-36.opt-1.pyc-855b147b35a33bcb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base64-codec.cpython-36.opt-1.pyc-856c74ef6bf60365 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...socketserver.cpython-36.opt-1.pyc-8571f7ec89fb4b5f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---topics.cpython-36.pyc-8578e33db9816815 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---euc-jp.cpython-36.pyc-85b8e4b9fb32760a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---spawn.cpython-36.pyc-862205e36098e396 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-16-le.cpython-36.opt-1.pyc-8622b4a6aa3cc1f2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pickletools.cpython-36.opt-1.pyc-864cb568eb390105 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...text-file.cpython-36.opt-1.pyc-865af2b51c7894e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-symtable.py-86a1fb71442a4a2c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-raise.py-86b20b05e854ea05 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...array.cpython-36m-x86-64-linux-gnu.so-86b7e0e3572d38a3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.pyc-8701bb01b5564933 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-1.cpython-36.opt-1.pyc-8712dc33e1d7a9f0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-mime-text.py-871616b476c35750 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---macurl2path.cpython-36.pyc-8734d069d83ea1f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cmd.cpython-36.opt-1.pyc-8750d352ed61401c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sysconfig.cpython-36.pyc-875692ddbd17905e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-managers.py-875cb31bbd0a06e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...traceback.cpython-36.opt-2.pyc-8771b3363c4bd035 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6---future--.py-879e861f647b32f0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...synchronize.cpython-36.opt-2.pyc-87aad1cc07071f3b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-header-value-parser.cpython-36.opt-1.pyc-87d3b31fbf6c333e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-include-python3.6m-pyconfig-64.h-87f75a0c69079270 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-message.py-87f8692c7c859f74 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---forkserver.cpython-36.pyc-88a42e183e9b90cf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-3.cpython-36.opt-1.pyc-88a523995ac5b7f0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---log.cpython-36.opt-2.pyc-88ab2903f6e3124f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tabnanny.cpython-36.opt-2.pyc-88b283a2427e651a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pgen.cpython-36.opt-1.pyc-88bd7d7752d1b0f2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...html---pycache---parser.cpython-36.pyc-88ca05da8605d6f7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mbcs.cpython-36.pyc-88cacc5f991dda5b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---base-tasks.cpython-36.pyc-8912b294461281b6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-long.cpython-36.pyc-8912fc739131d83d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso8859-16.py-8925d5418e78ddb4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...subprocess.cpython-36.opt-1.pyc-89a9540e813817f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pkgutil.py-89bf9f8b88c574ce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-text-file.py-89cdb5c8b04d1a02 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.opt-2.pyc-89d94565bef34c99 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...latin-1.cpython-36.opt-2.pyc-8a28db6339490152 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xml---init--.py-8a30aec408d41672 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...warnings.cpython-36.opt-1.pyc-8a3e68c00b4324b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---contextlib.cpython-36.pyc-8a5539864cbd3149 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1253.cpython-36.opt-1.pyc-8a75f422da71d1ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-getcwdu.cpython-36.opt-2.pyc-8a8e267ced8fd4ce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-exceptions.cpython-36.opt-1.pyc-8a9104c40944937b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp869.py-8a96706c678d447e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shutil.cpython-36.opt-1.pyc-8af1e2dd685fadaa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-8b0837b70ec7358d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...policy.cpython-36.opt-1.pyc-8b0dd6a49454e2f7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---thread.cpython-36.pyc-8b1a677a1559fb44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-synchronize.py-8b26e9120ca0fdb0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1256.cpython-36.pyc-8b3eeb5802ef9cba +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-dbm.cpython-36m-x86-64-linux-gnu.so-8b638929cbabdece +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-8b679c40f437d69d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-spawn-win32.cpython-36.opt-2.pyc-8b73fda6f9adc520 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...headerregistry.cpython-36.opt-2.pyc-8b93d97242c0349d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp65001.cpython-36.opt-2.pyc-8bbf279b829ccd71 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sched.cpython-36.opt-1.pyc-8be1c7cf03da0965 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...process.cpython-36.opt-1.pyc-8c20f1d046977771 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...process.cpython-36.opt-2.pyc-8c3b775f0625f65e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-multiprocessing.cpython-36m-x86-64-linux-gnu.so-8c494fdc6a0b36ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---uuid.cpython-36.opt-2.pyc-8c6081c3571e1279 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-raise.cpython-36.opt-1.pyc-8c663cc0b1c4552a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---parse.cpython-36.opt-1.pyc-8ca9f115df44f141 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-sslproto.py-8cc70e5f782b61a2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base64mime.cpython-36.opt-1.pyc-8d0b1c084c89777f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-numliterals.cpython-36.opt-2.pyc-8d83a389494aee01 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6--collections-abc.py-8d89a92d18c37b23 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-futures.cpython-36.opt-2.pyc-8d8cbbc2a1a583fc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-exec.cpython-36.opt-2.pyc-8dc9774b5928c124 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-greek.cpython-36.opt-1.pyc-8dcc8df6ae1e976f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...queues.cpython-36.opt-1.pyc-8de88954cecd1c20 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-elementtree.cpython-36m-x86-64-linux-gnu.so-8dec126c4688208c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...feedparser.cpython-36.opt-2.pyc-8e14ea5893e61b2b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...coroutines.cpython-36.opt-2.pyc-8e214b21bb9885e0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-idioms.cpython-36.opt-1.pyc-8e3f6ab83db8d644 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---patcomp.cpython-36.pyc-8e60a78592aab9ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-imp.py-8e67b1c991fa1447 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-pydecimal.cpython-36.opt-1.pyc-8e843399b10c18a1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-8e89930d4dca01d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---glob.cpython-36.opt-1.pyc-8e9ed599ac80c37d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...string.cpython-36.opt-1.pyc-8ea6b04cd7300cf9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...webbrowser.cpython-36.opt-2.pyc-8eb270940142701a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dis.cpython-36.pyc-8eb32325219fc9a1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...termios.cpython-36m-x86-64-linux-gnu.so-8ee6723ccfb86510 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-dict.py-8f25bad08294bb40 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-subprocess.py-8f26e35c4a9ae2e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pickle.cpython-36.pyc-8f45fdec9c2ad095 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---genericpath.cpython-36.pyc-8f52c844b501c1e5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tool.cpython-36.opt-1.pyc-8f6e83f2e807dba4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-protocols.py-8f85e047b5f229b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-base64.py-8f8f935f1629c374 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...filecmp.cpython-36.opt-1.pyc-8fa938d2778ae322 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp850.py-8fac0fa310bcf7d9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...quoprimime.cpython-36.opt-1.pyc-8fb2b0ca9c987e3e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-xml-etree-cElementTree.py-8fcc1bed246e37af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-ext.cpython-36.opt-2.pyc-8ffd2fc86316d626 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...handler.cpython-36.opt-2.pyc-9038bda4cf0eb295 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-uninstall.cpython-36.opt-2.pyc-9043dc456429b692 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unixccompiler.cpython-36.opt-1.pyc-907da87f887cd274 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---literals.cpython-36.pyc-90c39b209962a52c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email-quoprimime.py-90cb298be75629ff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-7.py-90d2e567fa1611b0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---zipfile.cpython-36.pyc-90ea6c4df28193ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-header-value-parser.cpython-36.opt-2.pyc-90eaf3a87576f65e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...archive-util.cpython-36.opt-1.pyc-90eb08fe47c251d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-90fbeee4b8c7be88 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-7.cpython-36.opt-2.pyc-91092a391be68b32 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...parser.cpython-36.opt-2.pyc-9131c2a7ea24c075 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----bootstrap.cpython-36.pyc-9131ebf4810273c6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1140.cpython-36.opt-1.pyc-91401c2dac19069a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-funcattrs.cpython-36.opt-1.pyc-9172865bd09f7269 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.opt-1.pyc-91adf2474d30a1d7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdist.cpython-36.opt-2.pyc-91c7fa0b7144d7b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp775.cpython-36.opt-2.pyc-91d301b47e050bd8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...domreg.cpython-36.opt-1.pyc-91dd47a4baaf4102 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-asyncio-base-subprocess.py-91e4e763477bb557 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3---init--.py-91ed042cf42e4072 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-imports.py-91f8a9ced650787c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-next.py-9256b12f1e72b0a4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sitebuiltins.cpython-36.opt-1.pyc-92827bbfc50fff36 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pyclbr.cpython-36.opt-1.pyc-92a62cd1116d1d0f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cmath.cpython-36m-x86-64-linux-gnu.so-92ce74d804984e5c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-plistlib.py-92cf809cf7dbf858 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tracemalloc.cpython-36.opt-2.pyc-92cf89656d19878c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pickle.cpython-36.opt-2.pyc-92f096ae58a40215 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-dummy-connection.py-933c6c84efb59409 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp874.py-9351c7a4c77c670e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-next.cpython-36.opt-1.pyc-936a4ac55e92b68b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-imaplib.py-936e69ccbceab213 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-Grammar3.6.8.final.0.pickle-937141d3a06103c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-16.cpython-36.opt-2.pyc-93756152423119d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...client.cpython-36.opt-1.pyc-9382156f3d7d33b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bz2.cpython-36.pyc-938daf1e42ce6965 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---main.cpython-36.pyc-93c0d386f7bcc5f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...datetime.cpython-36.opt-2.pyc-93d492bf2b9dbebc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-pgen2-literals.py-93d6ddfefa81ebdd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-threading.py-93db38c2556ead09 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-9.cpython-36.opt-2.pyc-93dbf0028ff53b1a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---debug.cpython-36.opt-1.pyc-93f5914d19d9a116 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-http-server.py-941de174aff4a3b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-94230cc6a88b2e37 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...traceback.cpython-36.opt-1.pyc-9441c22585dfb001 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...grp.cpython-36m-x86-64-linux-gnu.so-944b2785ef93a5c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-test-support-testresult.py-944cb5f0133a4fbb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-asyncio-base-futures.py-94895ea88222da7e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...msvc9compiler.cpython-36.opt-1.pyc-94f97e3f915582c0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-weakrefset.cpython-36.opt-2.pyc-9520ad66593f3aac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-execfile.cpython-36.opt-1.pyc-9534904df965f5e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---extension.cpython-36.pyc-95413be07260fe04 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-struct.py-9558fc919a7ab54f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...hp-roman8.cpython-36.opt-1.pyc-9559926516aeb149 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...encodings-unicode-internal.py-9582b18d44ab70a7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...copyreg.cpython-36.opt-2.pyc-9595c661f7189637 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-curses-panel.cpython-36m-x86-64-linux-gnu.so-95c0fe85813a161c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1006.py-9609a4c0633c345e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-32-le.cpython-36.pyc-961709030ceefc5d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-asserts.cpython-36.opt-2.pyc-9625f46dcf612722 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...optparse.cpython-36.opt-2.pyc-9636df361df87719 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...selector-events.cpython-36.pyc-964975e63f1623a2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...server.cpython-36.opt-1.pyc-964c2271a5dbc6e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-pydoc-data---init--.py-967e23f66b3ae8b4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...thread.cpython-36.opt-2.pyc-96a0a96c3b1bf369 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bootlocale.cpython-36.opt-2.pyc-96aab7a7a7c4914a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-events.cpython-36.opt-1.pyc-96cee469d6ea8758 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-util.py-970d3fe1072507c8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso2022-jp-3.py-973e716720e10ec2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---multipart.cpython-36.pyc-974199400cd9671d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-7.cpython-36.opt-2.pyc-975d91145c1c3d7c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sunau.cpython-36.opt-1.pyc-976171311ccb1375 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ctypes-macholib-fetch-macholib-9762a508d71641dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---aifc.cpython-36.opt-1.pyc-978b1589337f113b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...numbers.cpython-36.opt-2.pyc-97b0817f42521ed7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...getpass.cpython-36.opt-1.pyc-97ce2ea5f70ff831 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-coroutines.py-97d6455892cb39f1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-kr.cpython-36.opt-2.pyc-97da1f9ea717c844 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---aliases.cpython-36.pyc-97e5f669db3c0c87 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-aifc.py-97e6c2ba605d3c4a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-97fe953b29e4dfde +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ElementInclude.cpython-36.opt-1.pyc-98300b0bcd9dc8a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-dict.cpython-36.opt-2.pyc-98599f060feec627 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-build-clib.py-98686918137b753a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dist.cpython-36.opt-2.pyc-9872bd83c1810c23 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-987ac8edc6924609 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unixccompiler.cpython-36.opt-2.pyc-9888c65ed6e00abf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...argparse.cpython-36.opt-1.pyc-990ec5789df88912 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-9931ffd34cf3038e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-build.py-9932d0b7dec83edc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-future.cpython-36.pyc-993bb8a8747baab2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...statistics.cpython-36.opt-1.pyc-994ccf13e4ebb0b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cgi.cpython-36.pyc-9954779aa8c6a2fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sre-parse.cpython-36.opt-1.pyc-99631b94e0aaeeff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---token.cpython-36.opt-1.pyc-998859b7ddd79eef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-99bedb70f8f49c78 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-isinstance.cpython-36.opt-1.pyc-99d05780dbcaebde +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-venv-scripts-common-activate-99d8ec5e3b63c47f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-ne.py-9a0d721e49f1448b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pyclbr.cpython-36.pyc-9a3c6780ef5ba6c5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base64.cpython-36.opt-1.pyc-9a54c11cc3152aab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---trace.cpython-36.opt-1.pyc-9a802f4d2de33a09 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---getpass.cpython-36.pyc-9ad4d99e407ae6b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1257.cpython-36.opt-1.pyc-9ad68c400374431f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-dict.cpython-36.pyc-9b1cb2d61ab9df2a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-32-le.cpython-36.opt-1.pyc-9b27b83f2d4da338 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-9b2b1c72d59356b8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-dumb.cpython-36.opt-2.pyc-9b43e385b90d4b71 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---euc-kr.cpython-36.pyc-9b5435d0ff40bd55 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---process.cpython-36.pyc-9bb26be1a9367711 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...compat.cpython-36.opt-2.pyc-9bb2ceddfaa23d51 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-charmap.py-9c10f2a1cb1f1e10 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-parse.py-9c19541e06e381e2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp737.py-9c40b6c416355d37 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp855.cpython-36.opt-2.pyc-9c959132c46e966e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-mailcap.py-9caa52ee4a91d3be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-spawn.py-9cc202352a917c6c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-asyncio.cpython-36m-x86-64-linux-gnu.so-9cc3b0306414dbeb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-paren.cpython-36.opt-1.pyc-9cc76678398ea299 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ElementPath.cpython-36.opt-1.pyc-9cca28bbd5b7a742 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jisx0213.cpython-36.opt-1.pyc-9cdebadaac6a98fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp864.cpython-36.pyc-9ce2575f690a610c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pstats.cpython-36.opt-2.pyc-9ce4aa85e981d878 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncore.py-9ce7cf13b7919b45 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---glob.cpython-36.opt-2.pyc-9cecf7dc5bf38940 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...errors.cpython-36.opt-2.pyc-9cf119103c96b829 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---getopt.cpython-36.pyc-9cf820677d9bf582 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.py-9d01a19c893aab44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---core.cpython-36.pyc-9d33cec74d58699e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-9d3aadf49edb8e1e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-8-sig.cpython-36.opt-2.pyc-9d6cbe7c4dd73edb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dbapi2.cpython-36.opt-1.pyc-9d8cbbf6d4fd00e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-9daeb0568d269716 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-15.cpython-36.pyc-9db9ae8bfd74e2a9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-wsgiref-util.py-9dc8046edb72598a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gzip.cpython-36.opt-1.pyc-9dcf3f12ca90434b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...http---pycache---client.cpython-36.pyc-9dd3fae7ad68a537 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xml-sax-handler.py-9de38776c3d5a460 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-numbers.py-9df233d8a5a44e0d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...refactor.cpython-36.opt-2.pyc-9df2f36f0b0339ab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nonmultipart.cpython-36.opt-2.pyc-9e07d2eb280978fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-euc-kr.py-9e08af2794eb9930 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-16.cpython-36.pyc-9e09620fff44e023 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---xmlbuilder.cpython-36.pyc-9e598584e64dca5c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp950.cpython-36.opt-1.pyc-9e6d3449813a2d1f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---big5.cpython-36.opt-2.pyc-9e86386ed99b153a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...response.cpython-36.opt-2.pyc-9e887b76f4cc0d37 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.cpython-36.opt-1.pyc-9eca55df5280a2eb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp864.cpython-36.opt-2.pyc-9f1f1281eed58bd5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp437.cpython-36.opt-1.pyc-9fb53a2f3ddf38f2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bz2-codec.cpython-36.opt-1.pyc-9fbba98eb3d2a6fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...configparser.cpython-36.pyc-9fbc26f6d5c2ec68 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sdist.cpython-36.opt-2.pyc-9fcdb02df11f97c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cookies.cpython-36.opt-1.pyc-9fedcaa3421d2b28 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp775.cpython-36.opt-1.pyc-9ffe9e76676b0ce3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-msvccompiler.cpython-36.pyc-a01438352fab49b0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp866.cpython-36.opt-2.pyc-a01fd20e2873f816 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---compat.cpython-36.pyc-a024e09ed94e6537 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-14.cpython-36.pyc-a02f6cb9111e43b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-build-py.py-a0460ce404f1a1b2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...socketserver.cpython-36.pyc-a07a128e051c54be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-subprocess.cpython-36.pyc-a083b7e634ca52b3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-ne.cpython-36.opt-1.pyc-a08815f9662b1e89 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---keyword.cpython-36.pyc-a09ceb27d4925c67 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---events.cpython-36.pyc-a0a3f2fb7cbcc63f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-curses-textpad.py-a0a3fe6f2a22af09 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...kz1048.cpython-36.opt-1.pyc-a0cece8897011b11 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a0d11256ccac47ab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-set-literal.cpython-36.pyc-a109e810d794b934 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...typing.cpython-36.opt-1.pyc-a118c74b8120ce17 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-shift-jis.py-a151304e48309e21 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-asserts.py-a15b717ebd282fcc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-cyrillic.cpython-36.opt-2.pyc-a1775f82a56d3f8c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdist.cpython-36.pyc-a1f9e6fed222f21f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-a1fbcfc027b39a86 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...errors.cpython-36.opt-1.pyc-a2147fadca5f4954 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-filter.cpython-36.pyc-a2404dfed8eb7f23 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-execfile.cpython-36.opt-2.pyc-a2595f039cc47acd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-roman.cpython-36.opt-2.pyc-a259b57dd86492be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-nturl2path.py-a27fc4173b818da1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---selectors.cpython-36.pyc-a2863a43d09bbcc8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pgen2---pycache---token.cpython-36.pyc-a2bf4df52bed1303 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--phello--.foo.cpython-36.pyc-a2f9287539caa86e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1252.cpython-36.opt-2.pyc-a3013b315e178136 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...opcode.cpython-36.opt-2.pyc-a305f0317b214977 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----parseaddr.cpython-36.pyc-a339dec6837d4a6e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-clib.cpython-36.opt-2.pyc-a33ba6fbd50bcc13 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sre-parse.py-a3b224d784ef0f7d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---expat.cpython-36.opt-2.pyc-a3c363fa2b2308d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-secrets.py-a3cde4aaa8d87cf8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...big5hkscs.cpython-36.opt-2.pyc-a3dd043ab8fc9a20 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-a41be7e9d3c1c206 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--future--.cpython-36.opt-2.pyc-a41ca6d27d308f6d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---re.cpython-36.pyc-a4360b20c12fc74a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-raise.cpython-36.pyc-a44beff10a3e6a4c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-basestring.cpython-36.pyc-a482e8623b57db7b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...application.cpython-36.opt-1.pyc-a49d9755597222e2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...webbrowser.cpython-36.opt-1.pyc-a4d6032399b52d4e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cygwinccompiler.cpython-36.opt-2.pyc-a4ef842abe4ab5fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-dm-linux-x86-64-linux-gnu.cpython-36.pyc-a4f725b7c75e229d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a511d9f21f12d702 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...koi8-u.cpython-36.opt-1.pyc-a5277283e37d29e5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cmd.cpython-36.opt-1.pyc-a5761558af3b3900 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hz.cpython-36.pyc-a576855294bbb8d4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-context.py-a5b34db9fd89ec56 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...versionpredicate.cpython-36.opt-2.pyc-a5fe6499fbd1881e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...selector-events.cpython-36.opt-1.pyc-a61a7fcd9bd87b9b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-types.cpython-36.pyc-a6317a255fb27b86 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---synchronize.cpython-36.pyc-a638b9b8f77a7b31 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---text.cpython-36.opt-1.pyc-a6b544f5a84c7521 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---platform.cpython-36.pyc-a6fced4321659e32 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a7032fb3cc4e26f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---validate.cpython-36.pyc-a736ba22e82827d1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-undefined.py-a73a99b9b26b9f9e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-next.cpython-36.opt-2.pyc-a74245157f5c6aad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp500.cpython-36.opt-1.pyc-a76185c6cd0f08af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-a7662c3a634d10ac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-metaclass.cpython-36.pyc-a769344489ff593a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...getpass.cpython-36.opt-2.pyc-a7af394a2c56edf4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-buffer.py-a7bca3bdf8f15643 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...xdrlib.cpython-36.opt-2.pyc-a7d010d57a66d482 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pgen2---pycache---conv.cpython-36.pyc-a7d5a33f7bd999ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-utf-8.py-a7dde49b6c41e684 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...antigravity.cpython-36.opt-1.pyc-a7e59ac452de53e4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pydoc.cpython-36.opt-1.pyc-a80bf96e7f51f6dd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---locks.cpython-36.opt-2.pyc-a8142f8f159fce54 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---quopri.cpython-36.pyc-a8193883efd62de5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-2.cpython-36.opt-2.pyc-a83eacfebbc7ec7c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...genericpath.cpython-36.opt-1.pyc-a85250ae830bbbe2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...process.cpython-36.opt-1.pyc-a881056bba8576fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp857.cpython-36.pyc-a8ae0e218b03f9aa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jp.cpython-36.opt-1.pyc-a8eedb8080ec08c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-euc-jis-2004.py-a9246c60271e281c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...charset.cpython-36.opt-1.pyc-a96cea6cfa55bff7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...errors.cpython-36.opt-2.pyc-a980f28d141035b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---filelist.cpython-36.pyc-a98368723d571d60 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bisect.cpython-36.opt-1.pyc-a999edc4526ba8b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pdb.cpython-36.opt-1.pyc-a9c4e61933ab1c90 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-refactor.py-a9e297e001dca034 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp857.py-a9f000fcfb657377 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-socket.cpython-36m-x86-64-linux-gnu.so-a9f90be048b37e46 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-operator.py-aa01c4acab93367c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...runner.cpython-36.opt-2.pyc-aa41ae8b5489e375 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-input.cpython-36.opt-1.pyc-aa4d992dd04f72de +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...random.cpython-36.opt-2.pyc-aa9d68c189fc629c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-aaadd09eac070481 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-sqlite3---init--.py-aab24a03ae4a9b94 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---scanner.cpython-36.pyc-aad8eb84e01bf00d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---shlex.cpython-36.opt-2.pyc-ab23a565769556f7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-5.cpython-36.pyc-ab2463f9e699d331 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asynchat.py-ab5ae4878f342cd3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-dbm---init--.py-ab5e1259201b8c9c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-ext.cpython-36.opt-2.pyc-ab6793df05400c9c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-codecs.py-ab7b0ee1892183c2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-socketserver.py-ab99febe5f06b9ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...proactor-events.cpython-36.opt-2.pyc-abf14f55dbcd6b24 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-msvccompiler.cpython-36.opt-1.pyc-ac087815b2384ec8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...calendar.cpython-36.opt-2.pyc-ac1e3b3a9189471e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-turkish.py-ac43304b2aeb06aa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-weakref.py-ac505d18c3fced6a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cookiejar.cpython-36.opt-2.pyc-ac5299b89bbfa99e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-urllib.py-acc8409cd96c02db +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---inspect.cpython-36.pyc-acd75f8510ac0716 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---webbrowser.cpython-36.pyc-acd9a396d4d842f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp037.cpython-36.opt-2.pyc-acfa54de78215799 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---suite.cpython-36.opt-2.pyc-acfbb9d091b18230 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-antigravity.py-ad05c2801549cb49 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ad075b9273a66499 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...share-licenses-python3-libs-LICENSE-ad2aaba3951726a9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-token.py-ad793a9963de4bbe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...latin-1.cpython-36.opt-1.pyc-adf6751d8cb44e15 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp424.cpython-36.opt-1.pyc-ae005c4d48fb6e79 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-reduce.cpython-36.opt-2.pyc-ae03c5a6538300a0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pulldom.cpython-36.opt-2.pyc-ae13d6ef60d51cd5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ElementTree.cpython-36.opt-2.pyc-ae30b0eeabef9887 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...saxutils.cpython-36.opt-2.pyc-ae4415fa1ff2eb90 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-intern.cpython-36.opt-1.pyc-ae4b5bf1e9d26fa9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---chunk.cpython-36.opt-1.pyc-aeb0600dd7ad91ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---config.cpython-36.pyc-aecf31682c448d0e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-aedd9ecfe572c247 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-types.py-af209d9bdfe32545 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-urllib-request.py-af43c3af2e9d7f69 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-build-scripts.py-af4e34d9e3ccc76a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-zlib-codec.py-af4f0b773b6dfac4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-af59d642bc4dfe41 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...struct.cpython-36.opt-1.pyc-af63d7294336a840 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-main.py-af788d0e67700fdc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...managers.cpython-36.opt-1.pyc-af7d9931da633725 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-ctypes-macholib-dyld.py-af9e54826b669e22 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-afbf96b973770ebb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...zlib.cpython-36m-x86-64-linux-gnu.so-afe962c63cb68f6e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---opcode.cpython-36.pyc-aff2aa2074bfa327 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-fork.cpython-36.opt-1.pyc-aff4baab7680e1ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-raise.cpython-36.opt-2.pyc-affad52cb3a4b7c3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...hashlib.cpython-36.opt-1.pyc-b00bed8ce6a4e1b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b01c6b82447c34ca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---trace.cpython-36.pyc-b03240054321a3bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-reduce.py-b04fec266be9e4eb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-multibytecodec.cpython-36m-x86-64-linux-gnu.so-b059bede5b977fd4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...wintypes.cpython-36.opt-1.pyc-b0cdd00286e84023 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sysconfig.cpython-36.opt-1.pyc-b0e55ea3cb813771 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...managers.cpython-36.opt-2.pyc-b0ed08e102b929b3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...contextlib.cpython-36.opt-2.pyc-b0ffa058c9b7b407 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bcppcompiler.cpython-36.opt-2.pyc-b12e56b6f3abc211 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-11.cpython-36.pyc-b13544e10bb49888 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-dom-minicompat.py-b156907c787e40d2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---transports.cpython-36.pyc-b15a4ad67a37b8cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-header-value-parser.cpython-36.pyc-b16712c9dbc5a72a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b180d579c7541fcd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-apply.py-b18c9a51441f8319 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-http-client.py-b1960373aefd7f61 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-operator.cpython-36.opt-1.pyc-b1b73f797074773c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-dist.py-b1c4879dad7c9b1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---zlib-codec.cpython-36.pyc-b1cc75199425683e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...formatter.cpython-36.opt-1.pyc-b1ec48a6df1d65d3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----pydecimal.cpython-36.pyc-b1f355a8bb9a2efc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-euc-jp.py-b1f5ad5ea840e27d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-b2475befcf858602 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...upload.cpython-36.opt-2.pyc-b29186e149c69bfa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-roman.cpython-36.opt-1.pyc-b29bf8883ca79e4c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b2b93edd098f9876 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email-mime-message.py-b2c4a34bcedaab30 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-inspect.py-b2c91e796aa5ee77 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-popen-spawn-win32.py-b2e4b05969461b6b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp855.cpython-36.pyc-b2efdf59c0bc57f8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-compression.cpython-36.pyc-b2f228d38b1b37bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.pyc-b2f7c8db336c67d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---queue.cpython-36.pyc-b31aed4e33c7b066 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...versionpredicate.cpython-36.pyc-b32c6eecfbf7f682 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-sys-exc.cpython-36.pyc-b33aaaf50efcb6ea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp862.cpython-36.pyc-b341314650a687a7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----pyio.cpython-36.opt-2.pyc-b3545a86bf0c9cef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...raw-unicode-escape.cpython-36.pyc-b36204b6cc3be122 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...profile.cpython-36.opt-1.pyc-b383c310acc414ad +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b3868ca91bf45220 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-print.cpython-36.opt-2.pyc-b3ee159e67e6da87 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cProfile.cpython-36.opt-2.pyc-b3ffcd93227e909e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---shlex.cpython-36.pyc-b403215fb17e88e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dir-util.cpython-36.pyc-b406bbeaeeafe0d1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp852.py-b40d6a19dc47fd5b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unix-events.cpython-36.opt-1.pyc-b411e25e9fc5df42 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---heap.cpython-36.opt-2.pyc-b438ce8346a6f51a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...koi8-r.cpython-36.opt-1.pyc-b444ed542d8daba1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...posixpath.cpython-36.opt-1.pyc-b45c623a865dc2b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-unicode.cpython-36.opt-2.pyc-b49466550b2bcfe2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dir-util.cpython-36.opt-1.pyc-b4a7403dc8dae727 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-shutil.py-b4baf93cb37e4be5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xdrlib.py-b4d9c07b41ba6f7a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.pyc-b4f88a0e06aefcb7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-encoded-words.cpython-36.opt-1.pyc-b51186919b0129b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sharedctypes.cpython-36.opt-2.pyc-b51a755b1d57a75f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-throw.cpython-36.opt-1.pyc-b55b7ec1228c19fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b56ac2bdf8b4b30f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso8859-14.py-b571a8cc2c3cfcc2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-fnmatch.py-b5926719a37394d5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...zipapp.cpython-36.opt-1.pyc-b5cf15872b6994a1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b601dee80609a284 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b62972ed0d55164b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pool.cpython-36.opt-1.pyc-b63629e5cbdbb027 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing---init--.py-b64176d04f044403 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-13.cpython-36.pyc-b6470b31017cdcca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dumb.cpython-36.opt-2.pyc-b65cd26d7000ded0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-curses-has-key.py-b6a98a91f6215ce7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-asserts.cpython-36.opt-1.pyc-b6b846cc8dbe9431 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b6c26f1b59d0ac2c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-reprlib.py-b6e0eec06143f4a1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-32-be.cpython-36.opt-1.pyc-b6f1cb9025a3e931 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---spawn.cpython-36.opt-1.pyc-b7061aec7ca6ab0d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-import.py-b74240204e725fcf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-sys-exc.py-b7575b30f813ca36 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-arabic.py-b76d8ae4e8cf2575 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----bootlocale.cpython-36.pyc-b7ab44f9b756f79f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-b7ad3f47be155e0b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-standarderror.cpython-36.pyc-b7b63c3c63ea7a5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings---init--.py-b7fac0e9dbd3773e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...server.cpython-36.opt-2.pyc-b7ff35df978560a3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----exceptions.cpython-36.pyc-b81a66595739f069 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-datetime.cpython-36m-x86-64-linux-gnu.so-b82f90825ad99861 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-subprocess.py-b848addd2afeccf8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...queues.cpython-36.opt-2.pyc-b86886092ed04763 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---idna.cpython-36.opt-2.pyc-b8835a1e56248217 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-test-utils.py-b88663bcc48ff553 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...context.cpython-36.opt-1.pyc-b89e2f48427dfcc3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...file-util.cpython-36.opt-2.pyc-b8b54fb28b215ca0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---text-file.cpython-36.pyc-b90858d09fecc5cf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-itertools.cpython-36.opt-2.pyc-b913d57537661ba7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---build-py.cpython-36.pyc-b935725573b9aa57 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...macurl2path.cpython-36.opt-2.pyc-b95cd2816b8a4f1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-urllib.cpython-36.opt-1.pyc-b976ba9129e82770 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---framework.cpython-36.pyc-b97e035a1938664b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdist-dumb.cpython-36.pyc-b9938f4db7c9fcb8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-8.cpython-36.opt-1.pyc-b9c5b6a64406d01b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp865.py-b9f1a37deb39a672 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-7.cpython-36.opt-1.pyc-ba0286d9d8933901 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...constants.cpython-36.opt-2.pyc-ba1f836af27fe571 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdb.cpython-36.pyc-ba26190462d72aa6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---os.cpython-36.opt-1.pyc-ba2d65053098516f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-exitfunc.cpython-36.opt-2.pyc-ba3409483eefbda4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-ws-comma.py-ba3c76fe18472106 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-koi8-u.py-ba5e906227fb3717 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---charmap.cpython-36.pyc-ba7d4c0b9c711b5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-token.py-baa8310d71e39288 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-32-be.cpython-36.pyc-baab7a4fdec77630 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---uu.cpython-36.opt-1.pyc-bb10259bf139c25b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---netrc.cpython-36.pyc-bb1108a0fcbb89bd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-header.py-bb2e337fc7bc25d3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-dom---init--.py-bb44c09411fe818c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-asyncio-windows-events.py-bb56fd71715f640b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-1.cpython-36.opt-1.pyc-bb95832565df780c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---big5hkscs.cpython-36.pyc-bbbdded9e22ec658 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-repr.py-bbceae03e4b5e6fe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jis.cpython-36.opt-2.pyc-bbd5e77c39423cb8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---signals.cpython-36.pyc-bbfea4e26d2af868 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-bc26d3b536831a63 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-repr.cpython-36.pyc-bc311e6123f79e3a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...proactor-events.cpython-36.pyc-bc622bc35316a39a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-2004.cpython-36.opt-2.pyc-bc85c377eb5a060f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-cgitb.py-bc94a0c6a6ef855a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp424.py-bc9906886de49c71 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...operator.cpython-36.opt-2.pyc-bcb3fc3ea1255fe7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---debug.cpython-36.opt-2.pyc-bce8c9c4bc25ffdf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ascii.cpython-36.opt-1.pyc-bd041d1851d52876 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...signals.cpython-36.opt-1.pyc-bd529ac6eaa7af6f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unicodedata.cpython-36m-x86-64-linux-gnu.so-bd590998912b6c9e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...loader.cpython-36.opt-1.pyc-bd650b9cacb57c07 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-bd889e2df1447e76 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-py-compile.py-bd99ebc18fe1e1fe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---spawn.cpython-36.opt-2.pyc-bdb708757448c7e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-config.py-bdc5dddeb0550935 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-this.py-bdfc5fbf773523a5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...typing.cpython-36.opt-2.pyc-be03b233286ede83 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-14.cpython-36.opt-2.pyc-be0e6d8b6c6519d4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...literals.cpython-36.opt-1.pyc-be1a3adbffcc425e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-13.cpython-36.opt-1.pyc-be27d42eb6257ac4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...py-compile.cpython-36.opt-2.pyc-be331f23dba635bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6---phello--.foo.py-be5c01ddec805889 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-xrange.cpython-36.opt-2.pyc-be6be097bfad0e72 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1254.cpython-36.pyc-be6c4771cf714db0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--weakrefset.py-be96b4615ca6fb06 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-print.cpython-36.opt-1.pyc-bea9c67f89b81afe +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---case.cpython-36.opt-2.pyc-beab5831bf8ec0e8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unicode-internal.cpython-36.opt-2.pyc-beac41b1029c3903 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-clean.py-bec406833ef3b30c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...xmlbuilder.cpython-36.opt-2.pyc-bec5b3fe1f35270d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command---init--.py-bed43f927b1ecb58 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-bee703a389bd1eff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---argparse.cpython-36.pyc-beea762df550e61d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp.cpython-36.opt-2.pyc-bf2b9ea11ce77057 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-13.cpython-36.opt-2.pyc-bf3f5e993ec8528a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-netrc.py-bf40314d7d89feca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-intern.py-bf606240f92753be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp875.cpython-36.opt-1.pyc-bf7b968cd3ca1e1d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...test-utils.cpython-36.opt-1.pyc-bf8b99ef3615ee69 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp858.cpython-36.opt-1.pyc-bf934e353d4adf99 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---register.cpython-36.pyc-bfa8461996e8dd3e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp424.cpython-36.pyc-bfaa1cc5bb788514 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mailbox.cpython-36.opt-2.pyc-bfc1744b1655036f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-site.py-bfc47ea4416c5f3e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---kz1048.cpython-36.pyc-bfe569c74b6141d5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-typing.py-bfee7c1206a991cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-nonzero.cpython-36.opt-2.pyc-c019cc38769d286c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-concurrent---init--.py-c05e34a402626ba4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-latin2.py-c06ff2b06c5e048f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...script-helper.cpython-36.opt-1.pyc-c07c6b63c941b060 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-numliterals.py-c0a17d4a7f964f3b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pstats.py-c0a6c16d8afc10d5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----strptime.cpython-36.pyc-c0c7f04687542c2d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---binhex.cpython-36.pyc-c0f31f46e84192a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ptcp154.cpython-36.opt-1.pyc-c0f93e31b5d2bf7c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---version.cpython-36.pyc-c12b7fb88434e33c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hmac.cpython-36.opt-2.pyc-c1356d180e837488 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-logging-config.py-c13cb7a36918c56a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...reduction.cpython-36.opt-1.pyc-c15492e39fc261f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mbcs.cpython-36.opt-2.pyc-c1575eb64f73d148 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp862.cpython-36.opt-2.pyc-c15cb7da203e7c8d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---undefined.cpython-36.pyc-c18525ddf9d33d34 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-btm-matcher.py-c1935e7d0a30d3ac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-subprocess.cpython-36.opt-1.pyc-c195af47a598f294 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pytree.cpython-36.pyc-c1ac973e815dd8a3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---poplib.cpython-36.pyc-c1b61dc8377b298e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-constants.py-c1c647105da18d44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-difflib.py-c1f665277991ccc5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--pydecimal.py-c1fdc1c439c6c222 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sqlite3-dump.py-c210627074393021 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1254.cpython-36.opt-1.pyc-c23983f38aca1178 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c2561cfa174b5a16 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-set-literal.py-c25b3433cd001ed3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-1.pyc-c263ed9a97c27f4d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-command-template-c27000e35ecdade4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c295ad24803ef7c1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-map.py-c29f0be9bd6a5c8e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...queues.cpython-36.opt-2.pyc-c2a2867a8d5b9b1a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-intern.cpython-36.pyc-c2d2a9cf886f5916 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----base.cpython-36.pyc-c2d9072427a9e8e8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cookiejar.cpython-36.pyc-c2f78ed22b94563c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gb18030.cpython-36.pyc-c30bb13146a55d85 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---saxutils.cpython-36.pyc-c310769e44dcd1bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---process.cpython-36.pyc-c313bc6b5ee8dd89 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso2022-kr.cpython-36.pyc-c3297b74fbe7aaf9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp424.cpython-36.opt-2.pyc-c341efe664fc3def +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---heapq.cpython-36.opt-1.pyc-c34d4e1ac1d11724 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jis.cpython-36.opt-1.pyc-c38a15144f86e829 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-hex-codec.py-c39b0d2966dcb59c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...transports.cpython-36.opt-1.pyc-c3a3eef044341764 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp852.cpython-36.opt-2.pyc-c3acb8dab78eed3d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unicode-escape.cpython-36.pyc-c3f152591a6e5eeb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1258.py-c4292a4626885580 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-install-data.py-c464873185cefd27 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---site.cpython-36.opt-2.pyc-c498599d72c96082 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...codecs.cpython-36.opt-2.pyc-c4a13021bb7decd1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jis-2004.cpython-36.pyc-c4a4378caa5a3c96 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mock.cpython-36.pyc-c4b2554ff35797f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---config.cpython-36.pyc-c4bca7dd640c04e6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio-transports.py-c4d4d13d891652d6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---runpy.cpython-36.opt-2.pyc-c4dee6574a2bf65c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---clean.cpython-36.opt-2.pyc-c508782d2f680d54 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c52927a4bbacf190 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp850.cpython-36.opt-1.pyc-c597c30a30872953 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...secrets.cpython-36.opt-2.pyc-c5cb0bfcc592bd29 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c5d6765d4f3574e2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ElementTree.cpython-36.pyc-c5f11efb2ba6ee8b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1250.cpython-36.pyc-c5fb949e20f1da7f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...application.cpython-36.opt-2.pyc-c5ffcc60aff2ceff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----pyio.cpython-36.pyc-c6289ab6d1c5fd39 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso2022-jp-ext.py-c62a6c60a5de26fa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-tasks.cpython-36.opt-1.pyc-c650dbb5affcb50b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---request.cpython-36.pyc-c676eb81873e4ed4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-c683ca27748c7238 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ElementTree.cpython-36.opt-1.pyc-c6868a1b3bc04313 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----main--.cpython-36.pyc-c68874162263d457 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...reduction.cpython-36.opt-2.pyc-c699229b0a0757a2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...grammar.cpython-36.opt-1.pyc-c6d6ed54283ab1c1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-codecs-iso2022.cpython-36m-x86-64-linux-gnu.so-c6db402aa02d2ea7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-xml-etree-ElementTree.py-c6f8c4db4c4a3ca5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ccompiler.cpython-36.pyc-c71bcae162907c6b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-reload.cpython-36.pyc-c732ca3c3c556974 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pdb.cpython-36.pyc-c7463e9a2d54922b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---numbers.cpython-36.pyc-c746d8ea9ef0525f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-smtpd.py-c755b1de1c727ca0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-funcattrs.py-c7748c274a6a18c6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-c7779a93be400030 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-bz2.py-c77bc96861678ff1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-email-base64mime.py-c78220666ae3f64a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...signal.cpython-36.opt-1.pyc-c79968342f25f1b0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...utf-16-le.cpython-36.opt-2.pyc-c7ab20ea312bc4bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1255.cpython-36.pyc-c7fe652dcf1583c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tokenize.cpython-36.opt-2.pyc-c8171c1b63a8f5a1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-lzma.py-c83f4fe641177aba +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c87cf7603aa77d4a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-10.cpython-36.opt-1.pyc-c896c339c6e07991 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-data.cpython-36.opt-2.pyc-c8a08e414c5d0fd1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ssl.cpython-36.pyc-c8d3472c55bcb211 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-spawn-win32.cpython-36.opt-1.pyc-c8e13a78b5a06ed2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-1.cpython-36.opt-2.pyc-c8e8cd4ce2eedf8f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-cyrillic.cpython-36.pyc-c8f10f47d71b5276 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...build-scripts.cpython-36.opt-2.pyc-c900e1f423a5a00e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-result.py-c9152b00a3454b83 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sndhdr.cpython-36.pyc-c979f13da1f59a1a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-greek.cpython-36.opt-2.pyc-c980952cd786801a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...importlib--bootstrap-external.py-c985b3f458d53630 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...headerregistry.cpython-36.opt-1.pyc-c9863dba914a2809 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---idna.cpython-36.opt-1.pyc-c995e3dde2cc01c6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...encoder.cpython-36.opt-2.pyc-c9a1891bd0292e68 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xmlrpc---init--.py-c9a92994b229b992 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-c9b1f7c3e639a441 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...gb18030.cpython-36.opt-1.pyc-ca1de2281a497411 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-random.cpython-36m-x86-64-linux-gnu.so-ca3b31a1f1fe23e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---idna.cpython-36.pyc-ca64f036ba7e8e75 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-reduction.py-ca83d1b2f3a74859 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ca84232d13da64db +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-caaf3e2b3d45246b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-1.py-cab65f19e8062ae2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fixer-util.cpython-36.opt-1.pyc-cac05b352d88fe5a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-cad93b6da68af350 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---loader.cpython-36.pyc-caf719b0a5f56314 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...minidom.cpython-36.opt-1.pyc-cb272d9ae023048b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nturl2path.cpython-36.opt-1.pyc-cb7ea1ba5ee9ecc7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---policy.cpython-36.pyc-cb89fe50f6ca0684 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1255.py-cb97b7fdce31bcc8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...transports.cpython-36.opt-2.pyc-cbb2fa4c7c2b75c1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fixer-util.cpython-36.opt-2.pyc-cbba8c2a43b04bdb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...contextlib.cpython-36.opt-1.pyc-cbd11f1e2316f44c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---formatter.cpython-36.pyc-cbea3cdb2339a68f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...header.cpython-36.opt-1.pyc-cbed6bf3ad1dd832 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-statistics.py-cbef0356c6384f0a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-2.pyc-cbef5f5729c40e49 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1250.cpython-36.opt-1.pyc-cc00d788bcb0b963 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...policy.cpython-36.opt-2.pyc-cc0f8feb18baa3bc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---copyreg.cpython-36.pyc-cc23b86087d12a10 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---clean.cpython-36.pyc-cc2b6470a10e0796 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-imports.cpython-36.opt-1.pyc-cc4551171a9f6c9c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ipaddress.cpython-36.opt-2.pyc-cc4fdda90adcd7f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tokenize.cpython-36.opt-1.pyc-cc7fd05f167489d4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1258.cpython-36.pyc-cc8180fd947ef563 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---timeit.cpython-36.pyc-ccb0ce3e5f021788 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---image.cpython-36.opt-2.pyc-ccb5af553ea40f43 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-cd0add7c2de3763a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...imghdr.cpython-36.opt-2.pyc-cd33268b2aed5aee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...colorsys.cpython-36.opt-2.pyc-cd33b0a086fb8079 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-logging-handlers.py-cd42d73c28de6431 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-string.py-cd4ba999747aab1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---code.cpython-36.opt-1.pyc-cdda0d5a0e701810 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-xml-parsers---init--.py-cddb82b0a8ea12ae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--phello--.foo.cpython-36.opt-1.pyc-cdf091e7f1d4d9c3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...context.cpython-36.opt-2.pyc-ce2072c59e54c195 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...btm-utils.cpython-36.opt-2.pyc-ce222e4035ce30df +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---build-ext.cpython-36.pyc-ce2848eb1fedee75 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...socketserver.cpython-36.opt-2.pyc-ce332ebeb1ffe674 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-cyrillic.cpython-36.opt-1.pyc-ce383a95b535bcdf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hmac.cpython-36.pyc-ce497702db1bce99 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---oem.cpython-36.opt-2.pyc-ce70799082f621f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp850.cpython-36.pyc-ce9deedf0b66e7c4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mac-farsi.cpython-36.pyc-ceb0fb5b4c01980a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---base.cpython-36.opt-1.pyc-cee6e3850b70ac32 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mac-latin2.cpython-36.pyc-cefaf107f4021fdf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-os.py-cefd00f42764160a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---koi8-r.cpython-36.pyc-cf0c9a7c59b80379 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...encoder.cpython-36.opt-1.pyc-cf53a4f0629620ca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...validate.cpython-36.opt-1.pyc-cf63114f1860ea08 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-http-cookiejar.py-cf6e80d544210195 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ascii.cpython-36.opt-1.pyc-cf796960997236cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---weakref.cpython-36.pyc-cf7a6f629a4cf3a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-big5.py-cf7d8448d7e7c293 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-keyword.py-cf84656467927494 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-exec.cpython-36.opt-1.pyc-cf9d0d605cd04bc3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-cfe8d056b8ff5be9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---error.cpython-36.opt-2.pyc-d009c31216cfe4aa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-unittest---main--.py-d02159ff059cb1ab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-print.py-d02f1efc4a5506c5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sysconfigdata-m-linux-x86-64-linux-gnu.cpython-36.opt-2.pyc-d0318d6e4f25fafd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1251.cpython-36.opt-1.pyc-d034e8054169b152 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp.cpython-36.opt-1.pyc-d03e3be5916ea374 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...hex-codec.cpython-36.opt-1.pyc-d068f0b2be182abc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---constants.cpython-36.pyc-d09a1abe50b9290b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tool.cpython-36.opt-2.pyc-d0db017cb971bb44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---queues.cpython-36.pyc-d1519045b979c759 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-resource-sharer.py-d1811b0cd2355651 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install.cpython-36.opt-1.pyc-d18187d6fed93d33 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-itertools-imports.cpython-36.opt-1.pyc-d1a7379a913b23d9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...semaphore-tracker.cpython-36.opt-1.pyc-d1dd2c28a9195878 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-importlib-abc.py-d20ed7b1ed709533 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-7.cpython-36.pyc-d21253c4e6a6cdb7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d221e000e82bc8b8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...loader.cpython-36.opt-2.pyc-d238f4c7028a9613 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-except.cpython-36.opt-1.pyc-d249ce1f121703ce +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-hashlib.cpython-36m-x86-64-linux-gnu.so-d250c8e5093a38ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-venv---main--.py-d251d8d2b8e9b735 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...protocols.cpython-36.opt-2.pyc-d268eacc6db24cac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp852.cpython-36.opt-1.pyc-d2ab0f3f68ca11f6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ElementPath.cpython-36.pyc-d2b80e16568da6fc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...contentmanager.cpython-36.opt-2.pyc-d31d24278d15ba09 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-itertools.cpython-36.pyc-d32ffaeb2c1c9f05 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...symbol.cpython-36.opt-1.pyc-d35dd0d800db4a40 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-operator.py-d365dedd146e5baa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----weakrefset.cpython-36.pyc-d3763885c3a6dc06 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---runner.cpython-36.pyc-d37b69d00f5f5dca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-traceback.py-d388c14d403c7e5c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-3.cpython-36.pyc-d397529e666d01dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fractions.cpython-36.pyc-d3bd44b9e1fc432c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---random.cpython-36.pyc-d3c5e102fb4c59e6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...config.cpython-36.opt-2.pyc-d3d2b8cded7612b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shift-jis-2004.cpython-36.opt-1.pyc-d3e6332273e4f864 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-csv.cpython-36m-x86-64-linux-gnu.so-d3fd3f12d78803e9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-warnings.py-d40bb397f07e6d37 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-romanian.cpython-36.pyc-d42b8803dac84412 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tabnanny.cpython-36.opt-1.pyc-d43631e5bacd6da3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---audio.cpython-36.opt-1.pyc-d45b07dc79aec119 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---clean.cpython-36.opt-1.pyc-d46eb3429c011e18 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-sitebuiltins.cpython-36.pyc-d479bbc1119579bb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-endian.cpython-36.opt-1.pyc-d491f989b653f8d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp852.cpython-36.pyc-d4a9c51fd75b9fe2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----main--.cpython-36.pyc-d4c55792a29114f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-parseaddr.cpython-36.opt-1.pyc-d4dc6794c4040e0b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...ftplib.cpython-36.opt-1.pyc-d4f00e754a0dad4f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-msi.cpython-36.opt-1.pyc-d508615a7161eb68 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-spawn-posix.cpython-36.opt-2.pyc-d50c849bb9512327 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-imports.cpython-36.opt-2.pyc-d510d04d3f5c30e4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp775.cpython-36.pyc-d566bb6b6d9a5043 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-d56c80f999fc0076 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---test-utils.cpython-36.pyc-d5aa2e945298c1f2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d5adb37c6a63c4ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...hashlib.cpython-36.opt-2.pyc-d5adb3989dfdc0b8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-8.cpython-36.opt-2.pyc-d5c40e91791974e2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-hmac.py-d5f1f8d83f205ecb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-glob.py-d603b5874ea7cc3e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---crypt.cpython-36.pyc-d646e890f7945e35 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d68c0f555bee6e9f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---config.cpython-36.pyc-d6b32c0f2ae99b12 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--strptime.py-d6e287aab24fd302 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base64-codec.cpython-36.opt-2.pyc-d6f865ad8b467f0a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-asserts.cpython-36.pyc-d7264a7fcfdd678f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sre-compile.cpython-36.opt-1.pyc-d7472848f809ef50 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...smtplib.cpython-36.opt-2.pyc-d753247ccc2b6b2a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---protocols.cpython-36.pyc-d765272f8b0c6181 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1250.py-d790a22e560080c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp737.cpython-36.pyc-d792bdd457f4b498 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-utf-32-le.py-d7a065f4ad87559e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...xxlimited.cpython-36m-x86-64-linux-gnu.so-d7cba40be30c30e5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---site.cpython-36.opt-1.pyc-d7e29f4364a02e88 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-email-charset.py-d7e36ea904f49459 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-has-key.cpython-36.opt-2.pyc-d7e6ebc7a293e4e7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...expatreader.cpython-36.opt-1.pyc-d7f810497ed2632c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-metaclass.cpython-36.opt-1.pyc-d8041d5e14920450 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-8.cpython-36.pyc-d845067e63970a60 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-dom-NodeFilter.py-d84fb8132efe5f46 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---smtplib.cpython-36.pyc-d852e3f13746c174 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-tty.py-d85c295cfc1338dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-strptime.cpython-36.opt-1.pyc-d86fd81bb5a49991 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-configparser.py-d8718a58bacb5733 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---subprocess.cpython-36.pyc-d8786bd3bb243352 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-2.cpython-36.opt-1.pyc-d8a1556bab8d030b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-spawn-posix.cpython-36.pyc-d8a38d26f6c8ec23 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-d8a53622cc4f70a2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...modulefinder.cpython-36.opt-1.pyc-d8bf7fb7b1bd2a84 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sre-parse.cpython-36.pyc-d8bfe2fe0fe40c85 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-trace.py-d8caaad719ba9664 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fixer-base.cpython-36.opt-2.pyc-d905d60bd5bd6341 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---big5.cpython-36.opt-1.pyc-d908cbc0646a1194 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-ptcp154.py-d93ac59f22784472 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dummy-threading.cpython-36.opt-2.pyc-d96ba4ad68e36aec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-funcattrs.cpython-36.opt-2.pyc-d983e70c82bd4f38 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mailcap.cpython-36.opt-2.pyc-d9942ea5af7e5b48 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...threading.cpython-36.opt-1.pyc-d9bee8988ba6268f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-dummy-thread.cpython-36.opt-2.pyc-da0041f03f7a1e70 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp932.py-da122815fbcef99c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dep-util.cpython-36.opt-2.pyc-da14ce6f9ad8cbc4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...windows-utils.cpython-36.opt-1.pyc-da26dc7a03d17886 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-lib.cpython-36.opt-1.pyc-da557f455cc0722f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pipes.py-da5cdbfe5f8bb0e5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-bootstrap.cpython-36.opt-1.pyc-da5d74d44938430a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mimetypes.cpython-36.opt-1.pyc-da845b42cc8e05b7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fileinput.cpython-36.pyc-da8b74a2431a30dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-msvccompiler.py-daa6c4d7ed27eb42 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-long.cpython-36.opt-1.pyc-daa82719c8f16c8b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-sax-expatreader.py-daa92c4f133f6986 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fixer-base.cpython-36.pyc-dabbfb363ca687b2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---check.cpython-36.opt-1.pyc-dae45e9167458d5b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-isinstance.cpython-36.pyc-db06949423d73bd6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...framework.cpython-36.opt-1.pyc-db0d7c2c356be6f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...text-file.cpython-36.opt-2.pyc-db15a9a51a182a30 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--compat-pickle.py-db189bca068d2635 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...patcomp.cpython-36.opt-1.pyc-db7553a9287560b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-xmlrpc-client.py-db762ea816e6ce67 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---error.cpython-36.opt-1.pyc-db9f0195c1d3adb6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache----base.cpython-36.opt-2.pyc-dba9f2eeda54e6d9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-farsi.cpython-36.opt-1.pyc-dbb1a4256248240c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---typing.cpython-36.pyc-dbbd5c011bd11875 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-iceland.py-dbd4e3991c8f3413 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dbm---pycache---dumb.cpython-36.pyc-dbeab38e244cfd3a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-chunk.py-dbee829555253f80 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---locks.cpython-36.pyc-dbf23393cf82715a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso2022-jp.cpython-36.pyc-dc277dac5ddfe7e0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bcppcompiler.cpython-36.pyc-dc3ee262f54415e0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...msvccompiler.cpython-36.opt-1.pyc-dc47b488a1183fdd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---hex-codec.cpython-36.pyc-dc750dc06fca2ca0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-isinstance.py-dc752f1c3446e62e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-sax---init--.py-dc7c6b9aaaa938c4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-lsprof.cpython-36m-x86-64-linux-gnu.so-dc8374dfea5b4a42 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...scanner.cpython-36.opt-1.pyc-dc89d272d0c8c34f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cookiejar.cpython-36.opt-1.pyc-dc9facbf15b93efc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...codeop.cpython-36.opt-2.pyc-dcc340f6c164f764 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...quopri.cpython-36.opt-2.pyc-dcc60d3008bb3c20 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iterators.cpython-36.pyc-dcf6635d6bb31097 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-threading-local.cpython-36.opt-2.pyc-dd04759d7fc7fcc9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso2022-jp-2.py-dd249c741319f054 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---datetime.cpython-36.pyc-dd24f062a27d6591 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---log.cpython-36.opt-2.pyc-dd2bb690439a3dd0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tty.cpython-36.opt-1.pyc-dd42e25cb7520334 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-methodattrs.cpython-36.opt-1.pyc-dd44fb74b235691e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-nonzero.cpython-36.opt-1.pyc-dd5e0f332f803231 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-nonzero.cpython-36.pyc-dd63753a8921b3eb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...plistlib.cpython-36.opt-1.pyc-dd7093cb4dade069 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---runpy.cpython-36.opt-1.pyc-dd7a3fe206fd51d7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---imp.cpython-36.opt-1.pyc-dd9498aab8f20086 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-ddb8816b3ea67359 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-filter.cpython-36.opt-1.pyc-ddbc7cddc07dc21f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp874.cpython-36.opt-2.pyc-ddc09e4353ebcfa7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-codecs-cn.cpython-36m-x86-64-linux-gnu.so-ddd0be7f610b1555 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-ddd2f9040fe85335 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-hmacopenssl.cpython-36m-x86-64-linux-gnu.so-dddda1b9941eae7a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-ddf2dbf8c234ce53 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-smtplib.py-ddf85bfd81411449 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-encoded-words.cpython-36.opt-2.pyc-de060fab1acaf35f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp775.py-de06a79609ecc24b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---parse.cpython-36.opt-2.pyc-de0a33796484276c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---suite.cpython-36.pyc-de10535d02dd41d7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-de15d5cff3a09d38 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...coroutines.cpython-36.opt-1.pyc-de237772a3eb1043 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp437.cpython-36.opt-2.pyc-de263606e9813722 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-version.py-de2bf8c9a121d9c3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---stat.cpython-36.opt-1.pyc-de4f607a86454131 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...email---pycache---utils.cpython-36.pyc-de7285b210fbafc9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-threading-local.cpython-36.pyc-de8324a64df93fb9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp273.cpython-36.opt-1.pyc-deb76eb59a4be0c8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-bcppcompiler.py-defa050ab27b82c5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso2022-jp.py-df5be53a93e9027b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...robotparser.cpython-36.opt-2.pyc-df606fa5ab57ee91 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-pydecimal.cpython-36.opt-2.pyc-df65ebbc3889e3e8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-2.pyc-df6a8ac571445dd2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...doctest.cpython-36.opt-1.pyc-df866f5cf7a3a1a8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-idioms.py-dfa2851daa11a349 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-argparse.py-e001122abd387d34 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...functools.cpython-36.opt-2.pyc-e0062e77d286e320 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-collections-abc.cpython-36.pyc-e00ce4fbbfbfc347 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-9.cpython-36.pyc-e07d0e18dcff2373 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp855.py-e08f5d669acbf408 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pty.cpython-36.opt-1.pyc-e097b771965f063a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...punycode.cpython-36.opt-1.pyc-e09f807fbb164866 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-mailbox.py-e09fd04bfc2dc1ab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1254.py-e0a1030b409f60f8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---linecache.cpython-36.pyc-e0a8a5512822ba62 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...signals.cpython-36.opt-2.pyc-e0b177af2f13918a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...http---pycache---server.cpython-36.pyc-e0bd6dffd19ec80f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-events.cpython-36.opt-2.pyc-e0c05b47ad18ee63 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...weakref.cpython-36.opt-1.pyc-e0ce32177a3792a6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cgi.cpython-36.opt-1.pyc-e11d50577bfab21b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---spawn.cpython-36.opt-1.pyc-e13cc669bc51964c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sre-constants.py-e1447512bb65e032 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-itertools-imports.cpython-36.pyc-e1451478ee570b61 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-concurrent-futures-thread.py-e159613eceeb5db2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...formatter.cpython-36.opt-2.pyc-e16dee9d6b2c2bc6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---threading.cpython-36.pyc-e17f50e715621edf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...selectors.cpython-36.opt-1.pyc-e1b385dce4320820 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-e200dece4692c59c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-importlib-util.py-e2037a49509f59b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-e21df61fefea5bef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-dummy-threading.py-e24fce9704f531f4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-1.cpython-36.opt-2.pyc-e269f637b78d7b5f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-imports2.cpython-36.opt-1.pyc-e26b135c704776a9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp858.py-e2823fec5a0651ab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---build-clib.cpython-36.pyc-e2914b0c8e64bc85 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-register.py-e294e5aab66d112f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-32.cpython-36.pyc-e2a6678af59a9596 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-forkserver.cpython-36.opt-2.pyc-e2bf634b3027b3b8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base-futures.cpython-36.pyc-e3237be203ab82c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-basestring.py-e3486ce7ce638c13 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-3.cpython-36.opt-2.pyc-e3499ae70a1694df +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-tempfile.py-e36c1317dba5574e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---ast.cpython-36.opt-2.pyc-e37ba81625bdc91d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-wininst.cpython-36.opt-2.pyc-e381d2f93496b3ea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-imports2.cpython-36.opt-2.pyc-e38eb6115b87c242 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sched.cpython-36.opt-2.pyc-e3909aecf6373496 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp950.cpython-36.opt-2.pyc-e3aaeb450e038b9e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e3cdf232cd6d0f44 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...readline.cpython-36m-x86-64-linux-gnu.so-e3f8bd576a4ce957 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e4544562cde4e023 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...unixccompiler.cpython-36.pyc-e49aff8eccc058f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sndhdr.cpython-36.opt-2.pyc-e4a84615f4ac9238 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp863.cpython-36.opt-1.pyc-e4bf64c43be37816 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dist.cpython-36.pyc-e4c61bc9d0d50c8d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-ctypes-util.py-e4ebdf3391db06aa +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...doctest.cpython-36.opt-2.pyc-e50397b3301102c5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---stringprep.cpython-36.pyc-e51da88a90e67100 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...charmap.cpython-36.opt-2.pyc-e524b07c5fbb9170 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---abc.cpython-36.pyc-e55afae9d822ba45 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-ws-comma.cpython-36.opt-1.pyc-e5716948ef167e6b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---grammar.cpython-36.pyc-e5a57622d753e74f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---decimal.cpython-36.pyc-e5ab1b3798d49407 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-6.cpython-36.opt-2.pyc-e5b1de26441127cd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-paren.py-e5c3c846bebece2e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-hz.py-e5d1f6d81990d41e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp950.py-e5d90f665090dbc0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-osx-support.cpython-36.pyc-e5de1c0033ffd4bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...simple-server.cpython-36.opt-1.pyc-e5f3f8faa6e2b378 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...base64.cpython-36.opt-2.pyc-e5f593d523092f05 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-osx-support.cpython-36.opt-2.pyc-e62265ee81279841 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.pyc-e626eca7cff4204e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-2004.cpython-36.opt-1.pyc-e653386b95413945 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-e6b4ab9dad9ed1c3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-compat.py-e6b59d95f2ceebe6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1255.cpython-36.opt-1.pyc-e6baddeb6d287877 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...zipapp.cpython-36.opt-2.pyc-e6c0e1235d6be3d0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mac-arabic.cpython-36.pyc-e6e7838b12b700a2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-map.cpython-36.opt-1.pyc-e6ff881fee8649e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pickletools.cpython-36.pyc-e741ca749462c824 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-4.py-e75b91de8c57ec47 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pprint.cpython-36.pyc-e75d71b9c5a64056 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---sdist.cpython-36.pyc-e77218776bc227e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-zip.py-e781174afdf7aadc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pdb.cpython-36.opt-2.pyc-e7ceadecb50b0337 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pickletools.cpython-36.opt-2.pyc-e7debf12d68061ff +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---os.cpython-36.pyc-e7f0cdf2dddf6e3f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-e83df8f1804f05ee +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...literals.cpython-36.opt-2.pyc-e83e65040d1ecf49 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-e8497428fa253090 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-ctypes-macholib---init--.py-e84ee162acdaf58f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pathlib.cpython-36.opt-1.pyc-e864b63dde8ba5b6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-except.cpython-36.pyc-e8b2e7ac6e3a26ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---errors.cpython-36.pyc-e90abb835152542f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso8859-15.py-e920633dcf2e3d08 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bz2.cpython-36.opt-2.pyc-e945b5b8f75286e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-heapq.py-e95612c0d54c2b17 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-next.cpython-36.pyc-e9759f768edaf9e4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-test---init--.py-e9b535545651bffc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp864.cpython-36.opt-1.pyc-e9b5a6472cec1335 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...binhex.cpython-36.opt-1.pyc-e9d2adfa4aa5e9d9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----main--.cpython-36.pyc-e9d2e4587cc46a27 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...queues.cpython-36.opt-1.pyc-ea0e85528d79e041 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---uuid.cpython-36.opt-1.pyc-ea4b9ce3264ba332 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---core.cpython-36.opt-2.pyc-ea4e32aa80f73d19 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---reduction.cpython-36.pyc-ea79529c67049c50 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---shelve.cpython-36.pyc-ea7a8db82f4f7ed8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-kr.cpython-36.opt-2.pyc-eaa785dd346813ed +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...optparse.cpython-36.opt-1.pyc-ead76a791cd35bc6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-forkserver.py-eae6cf988f874064 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-has-key.cpython-36.opt-1.pyc-eae9ba54e653d565 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...platform.cpython-36.opt-1.pyc-eafda0172d30d173 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...keyword.cpython-36.opt-2.pyc-eb08e6dc482f1922 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...message.cpython-36.opt-2.pyc-eb18c3e162dd1759 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...contentmanager.cpython-36.opt-1.pyc-eb31eddefceed172 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp862.cpython-36.opt-1.pyc-eb42b304852968d9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-1.pyc-eb534e8cbde32f26 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1257.cpython-36.opt-2.pyc-eb6235add718a510 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mailcap.cpython-36.pyc-eb6d25dfd8821c9d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---refactor.cpython-36.pyc-eb75187f102973f6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-latin2.cpython-36.opt-2.pyc-ebbf2349f0059770 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---optparse.cpython-36.pyc-ebd33017171aebf9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-ebe8ec569341c7e3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-distutils-dep-util.py-ebf45bcd27bbc7c7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...inspect.cpython-36.opt-2.pyc-ebf968cb7038859a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-ebfd585065d2b956 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...difflib.cpython-36.opt-1.pyc-ec1964b926b87aae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...filecmp.cpython-36.opt-2.pyc-ec2720e7ce58206b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-formatter.py-ec284befe416d6f5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-6.py-ec52004fa7cb7e15 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iterators.cpython-36.opt-2.pyc-ec86418cb51ad278 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp437.py-ed012004b534ab4c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---locks.cpython-36.opt-1.pyc-ed10631affce4457 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---feedparser.cpython-36.pyc-ed1abcf59963a8fb +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---queue.cpython-36.opt-2.pyc-ed410657d3cb9249 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-compression.cpython-36.opt-2.pyc-ed45ffc6bdbf8648 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-collections-abc.cpython-36.opt-2.pyc-ed76eb9ebd60eadc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dbm---pycache---gnu.cpython-36.pyc-edc2e82da2169c14 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-ne.cpython-36.pyc-edd99f2c91a2a700 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---stat.cpython-36.opt-2.pyc-ee1026349a5d1d76 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...distutils-command-install-lib.py-ee15c2a6b592e445 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-install.py-ee34d993fe0b7e2b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...nis.cpython-36m-x86-64-linux-gnu.so-ee542b2b1ae1abc0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp869.cpython-36.pyc-ee66023970d3ee9b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp273.py-ee725f6bc618a16a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...wintypes.cpython-36.opt-2.pyc-ee7be1210d78c2e9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-lib2to3-patcomp.py-ee829611eb3c184c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-methodattrs.py-eea47490228bee9c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pkgutil.cpython-36.opt-1.pyc-eeae2cb31f08cc7b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1256.cpython-36.opt-2.pyc-eec243dd1bf75c18 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-pgen2-conv.py-eecc12042fafd7c3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...multiprocessing-popen-spawn-posix.py-eef0b57ee7ebb5ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-xreadlines.cpython-36.opt-1.pyc-eefd2dedb214913f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-scripts.cpython-36.pyc-ef2c535a1ab2d760 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-uu.py-ef369ac33d126ab4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-webbrowser.py-ef64e4a74481a03c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gettext.cpython-36.pyc-ef8b4c09c5535b2f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp1252.cpython-36.pyc-efa2a35957bdc742 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...archive-util.cpython-36.pyc-efa90c06f2117af5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-crypt.py-efbb5c3c6380fc78 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...popen-forkserver.cpython-36.pyc-effb314ef1c79097 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-iso2022-jp-1.py-f023a8bfff31e7f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-4.cpython-36.opt-1.pyc-f0694945dfeabec6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-f085f362fb8839b1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---utf-16-be.cpython-36.pyc-f08ab9348e289b2f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...imghdr.cpython-36.opt-1.pyc-f090a9f1a0b7a130 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp863.cpython-36.opt-2.pyc-f09408d9c857c495 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...cp1255.cpython-36.opt-2.pyc-f097ccc91602d867 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-multiprocessing-process.py-f0afa15f7ddb741e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---xmlreader.cpython-36.pyc-f0bbcae11f312ddc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fractions.cpython-36.opt-1.pyc-f0de359990f81f95 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-opcode.py-f0f954dbb2833801 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-apply.cpython-36.opt-1.pyc-f121e2126211c594 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...subprocess.cpython-36.opt-2.pyc-f1453d22cb51839e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...has-key.cpython-36.opt-2.pyc-f150b62adb875b34 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-execfile.py-f16b9af2adb54096 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tempfile.cpython-36.pyc-f1863becf54a2f29 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---expat.cpython-36.pyc-f1a5a6452dd9a39e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-unittest-case.py-f1b9f55a23af9ac2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...timeit.cpython-36.opt-2.pyc-f1d364e614be9de0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pickletools.py-f1e5b5edcb6b0a13 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---johab.cpython-36.opt-2.pyc-f21ffa5b241c507c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install-headers.cpython-36.pyc-f228277e2274ff95 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-asyncio---init--.py-f268af3266a2eb89 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...parser.cpython-36.opt-2.pyc-f268ed1e9d6c5f60 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f26e37a23a8111b5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-2.pyc-f27724ad5d30be3f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-reduce.cpython-36.pyc-f28264653a13f9dc +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-gb18030.py-f284ccbbfd239341 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tasks.cpython-36.pyc-f294925d936bd3bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-lib2to3-fixer-util.py-f2c584c5dbbbf04e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...uu-codec.cpython-36.opt-1.pyc-f2c75385b16f5ab0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...testresult.cpython-36.opt-1.pyc-f2e58e239137c3bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...compileall.cpython-36.opt-2.pyc-f34064ad5be4a6f3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-utf-32.py-f3627cff1ffb0925 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fileinput.cpython-36.opt-2.pyc-f38e055353d5127f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-2.pyc-f3a08e520f8fc0e6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---coroutines.cpython-36.pyc-f3a9e7312b01d44d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---audio.cpython-36.opt-2.pyc-f3cc4e9d79c16314 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-turkish.cpython-36.opt-1.pyc-f3d39e56d326ca56 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pyclbr.py-f3dad685c9147987 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---file-util.cpython-36.pyc-f3e042818fe68383 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-random.py-f3fc631ef8241c18 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pydoc.cpython-36.opt-2.pyc-f468ffd5af567995 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---asynchat.cpython-36.pyc-f46942a8c01bfd37 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-distutils-cmd.py-f48bb4b80c0fc914 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...shelve.cpython-36.opt-1.pyc-f4d3182856f7d8be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...gettext.cpython-36.opt-1.pyc-f4decf54efa66884 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-posixsubprocess.cpython-36m-x86-64-linux-gnu.so-f4f3ae750ecddc97 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-cp1026.py-f51abdec02552398 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...quoprimime.cpython-36.opt-2.pyc-f532c9c7d3fe5916 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-input.cpython-36.pyc-f541424b57c1db2b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-xrange.py-f543372ea8df88d5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-xml-parsers-expat.py-f562f6ab6871314b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...gb18030.cpython-36.opt-2.pyc-f574b7bb1e0afff3 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp437.cpython-36.pyc-f5a82b717c380f5e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-dbm-ndbm.py-f5ab756d60283e64 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...numbers.cpython-36.opt-1.pyc-f5b6ea6c3f96d2b8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...binascii.cpython-36m-x86-64-linux-gnu.so-f5f3f80cfb4af64e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---gzip.cpython-36.pyc-f5fa52a0496f93ec +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---log.cpython-36.opt-1.pyc-f5fb490019f1f2e0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...euc-jisx0213.cpython-36.opt-2.pyc-f5fb645643001e1b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sysconfig.cpython-36.opt-2.pyc-f62e299ae948f85c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...minicompat.cpython-36.opt-2.pyc-f6482f964e6027ef +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---result.cpython-36.pyc-f64a13799e05144d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...patcomp.cpython-36.opt-2.pyc-f64a5fca6cc54b53 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-linecache.py-f6739fb7e6fbc714 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-lib2to3-fixes-fix-except.py-f685a0464a31538e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-pty.py-f69611f56baba1ea +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-rlcompleter.py-f6b9181db5b08ca5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---functools.cpython-36.pyc-f6bfe9983871916a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...quopri-codec.cpython-36.opt-2.pyc-f6fdafcfde99e740 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-blake2.cpython-36m-x86-64-linux-gnu.so-f702c8fb3de18e46 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-xreadlines.py-f707fc6e270d2552 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...refactor.cpython-36.opt-1.pyc-f70ae63920793018 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---types.cpython-36.pyc-f728fcdefd675462 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...resource-sharer.cpython-36.pyc-f72b49462f486b0f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-datetime.py-f75ce6b655f1499e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-sunau.py-f75f3879c69aa675 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...process.cpython-36.opt-2.pyc-f7dc1f24e0fc53ca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f7e606c2d1ee91e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---fix-apply.cpython-36.pyc-f7ea63984376e3a4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-wave.py-f7fbca4fa03e5c75 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---core.cpython-36.opt-1.pyc-f85140e86efb7b4b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-shlex.py-f8950486a423cb6a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-endian.cpython-36.opt-2.pyc-f89a4d2885d93c3a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pool.cpython-36.pyc-f89ff76fa23ae58e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---pipes.cpython-36.opt-2.pyc-f8d169b75916213f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-encodings-cp862.py-f8f6628c3b78806f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-encodings-mac-cyrillic.py-f8f762bb1a1c7583 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp273.cpython-36.pyc-f91f86f7e9e22a3d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...header.cpython-36.opt-2.pyc-f98187d60f4455fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sax---pycache---handler.cpython-36.pyc-f9878c5d068978e4 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tokenize.cpython-36.opt-2.pyc-f99fc27b327d211e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...mac-farsi.cpython-36.opt-2.pyc-fa0dd431b9f23ca8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---types.cpython-36.opt-2.pyc-fa1996df12fe1fb2 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---macpath.cpython-36.pyc-fa2500beeef562ae +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...sharedctypes.cpython-36.pyc-fa3c2416bfaaac42 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-json-tool.py-fa3c4855ab032823 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dyld.cpython-36.pyc-fa70c931bab109fd +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-abc.py-fa8b00f29a41f0f5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...codeop.cpython-36.opt-1.pyc-fac8b28cfebff2f6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...headers.cpython-36.opt-1.pyc-fb1554322402e787 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-tuple-params.cpython-36.opt-2.pyc-fb1f9015e7db0ae6 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...python3.6-distutils-command-upload.py-fb5f87c417e5f135 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...xmlreader.cpython-36.opt-2.pyc-fb67b22b5b7de6c9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---bdb.cpython-36.opt-1.pyc-fb832a4bea0ad628 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-codecs-hk.cpython-36m-x86-64-linux-gnu.so-fb9220c8bfd5e1ca +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...stringprep.cpython-36.opt-2.pyc-fb9e11e49cd730e1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...minidom.cpython-36.opt-2.pyc-fba05059b58e40c1 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-5.cpython-36.opt-2.pyc-fba1a1c0e815f6be +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-tasks.py-fbbc5e4ecedaea51 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp856.cpython-36.opt-1.pyc-fbe52fa751a3219c +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib2to3-fixes-fix-exitfunc.py-fc3d851fa862b15a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...lib64-python3.6-encodings-iso8859-5.py-fc45820722ef2905 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...btm-matcher.cpython-36.opt-1.pyc-fc6d6df3e0bb5b73 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...pytree.cpython-36.opt-1.pyc-fcab62136f526f30 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---header.cpython-36.pyc-fcaf37484233645d +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-types.cpython-36.opt-1.pyc-fcef363244b37f04 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...handler.cpython-36.opt-1.pyc-fd06fc4498071636 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...PatternGrammar3.6.8.final.0.pickle-fd10cfbd14dec8f8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...tis-620.cpython-36.opt-2.pyc-fd46a7e3a08cd2e5 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--main--.cpython-36.opt-1.pyc-fd68f5476c2cfc36 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-fd77032e6e161a29 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...fix-import.cpython-36.opt-1.pyc-fd8aa8fd1faf5045 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...dbapi2.cpython-36.opt-2.pyc-fdcfd95e1ef70d11 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-http---init--.py-fdd2b2106b93a9af +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--dummy-thread.py-fdf5ef797dbcd00e +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---tokenize.cpython-36.pyc-fe3b9fe2bbf9e2ab +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp500.cpython-36.pyc-fe480023d4588d8b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---iso8859-6.cpython-36.pyc-fe516fb125ec8c37 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp932.cpython-36.opt-2.pyc-fe619d08e323b4a7 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...symtable.cpython-36.opt-1.pyc-fe79c415af2a515f +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...bdist-wininst.cpython-36.pyc-fe8646beb2b9c33b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---uu.cpython-36.opt-2.pyc-fec546195f19bd2b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6-asyncio-locks.py-fec66c6d67fe9bac +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso2022-jp-2004.cpython-36.pyc-fee69e3ed460b8f9 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---heapq.cpython-36.pyc-fef8299460013208 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---mock.cpython-36.opt-2.pyc-ff04aa6a58f249d8 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...iso8859-8.cpython-36.opt-2.pyc-ff0c1acdefe2a286 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---dist.cpython-36.opt-1.pyc-ff0cbde7a2dac45a +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...install.cpython-36.opt-2.pyc-ff1a26b6229adad0 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-usr-lib64-python3.6--compression.py-ff2ddbaa150c9505 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...-policybase.cpython-36.opt-2.pyc-ff44c1105cc5cf07 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---shutil.cpython-36.pyc-ff624ececa18fb94 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---btm-matcher.cpython-36.pyc-ffa172fd1bca28bf +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cp932.cpython-36.pyc-ffab37a5d331869b +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...expatbuilder.cpython-36.opt-2.pyc-ffb1ba147f8eda86 +Relationship: SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 CONTAINS SPDXRef-File-...--pycache---cgi.cpython-36.opt-2.pyc-ffb559ecc69cbba4 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.token-67dbeeeb433ba94a OTHER SPDXRef-File-...com.ibm.ws.security.token-1.0.81.jar-03daa98abac235cc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-requests-69c379e96a25693b OTHER SPDXRef-File-...PKG-INFO-800441630b142ce6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.tx.embeddable.jakarta-6a0218b35e4c54bb OTHER SPDXRef-File-...com.ibm.ws.tx.embeddable.jakarta-1.0.81.jar-e9f2cdc13b4689f8 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v8-6a88cbf3eaed3be1 OTHER SPDXRef-File-...com.ibm.ws.javaee.platform.v8-1.0.81.jar-04a9ec6be4f0400f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.microprofile.config.internal.serverxml-6abea41833808907 OTHER SPDXRef-File-...io.openliberty.microprofile.config.internal.serverxml-1.0.81.jar-eaf87bd3958e5f2a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a CONTAINS SPDXRef-File-usr-bin-brotli-23ef24a434020a35 +Relationship: SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a CONTAINS SPDXRef-File-usr-lib64-libbrotlidec.so.1.0.6-4e0d3f231bee2a1a +Relationship: SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a CONTAINS SPDXRef-File-usr-share-licenses-brotli-LICENSE-65386193ff1c3a9b +Relationship: SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a CONTAINS SPDXRef-File-usr-lib64-libbrotlienc.so.1.0.6-ed007d468a36596b +Relationship: SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a CONTAINS SPDXRef-File-usr-lib64-libbrotlicommon.so.1.0.6-f1d529308b232dfa +Relationship: SPDXRef-Package-rpm-libnghttp2-6b719eae4b2d0223 CONTAINS SPDXRef-File-usr-share-licenses-libnghttp2-COPYING-82799547f1993398 +Relationship: SPDXRef-Package-rpm-libnghttp2-6b719eae4b2d0223 CONTAINS SPDXRef-File-usr-lib64-libnghttp2.so.14.17.0-b870740cb07defb1 +Relationship: SPDXRef-Package-rpm-libnghttp2-6b719eae4b2d0223 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.private.internal-6b73b703db0b4142 OTHER SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.private.internal-1.0.81.jar-9a459551e0eccfb1 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-stat-0983830ed9a58de2 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-dump-309b5968b0c9d3f1 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-dump185-35759986b592c159 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-load-37fce3b95279ce2d +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-recover-4a98d4bab1fed412 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-tuner-4c2bfde9885512ce +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-archive-5d04b942779cf002 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-printlog-82dba6d842794a67 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-log-verify-9ba3ed6b9cb07290 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-replicate-b00eeae663331b27 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-checkpoint-e0402bdf3ce616d5 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-upgrade-e37bfb93c36042ce +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-hotbackup-e6b838ddf7bfa68f +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-deadlock-eee43bdf68f59995 +Relationship: SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 CONTAINS SPDXRef-File-usr-bin-db-verify-faa44758f54565f4 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...idna---pycache---codec.cpython-36.pyc-10c3c749983c2a10 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...site-packages-idna-uts46data.py-137fb2036a30eb3c +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...idna-2.5-py3.6.egg-info-SOURCES.txt-168350ae20ce2e41 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...uts46data.cpython-36.opt-1.pyc-16a93f453b6015a6 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...idna---pycache---compat.cpython-36.pyc-219c1c062014ad3e +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...python3.6-site-packages-idna-compat.py-47a63ff497614214 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...idna---pycache---core.cpython-36.pyc-543ae3229ed5a2af +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...--pycache---intranges.cpython-36.pyc-59476696895ca4f3 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...python3.6-site-packages-idna-codec.py-5956dcaa4bc05026 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...licenses-python3-idna-LICENSE.rst-5969e315fe5bc0dc +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...--pycache---core.cpython-36.opt-1.pyc-6736b19ac8fb6e10 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...--pycache---uts46data.cpython-36.pyc-68d6633e7b9cafa3 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-6b2c16ef0d98162b +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...--pycache---codec.cpython-36.opt-1.pyc-6f68f77b84fd660f +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...--pycache---idnadata.cpython-36.pyc-7802975a6acb28b2 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...python3.6-site-packages-idna-core.py-7868eab39b971be4 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...intranges.cpython-36.opt-1.pyc-792ed7f718ca01ff +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...idna-2.5-py3.6.egg-info-top-level.txt-7e49ae50ecbd5ca0 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...idnadata.cpython-36.opt-1.pyc-825a50ad7aa5a2e6 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...site-packages-idna-intranges.py-8c562e1a9d58cf4b +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...site-packages-idna-idnadata.py-99639ddf43521fbf +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...site-packages-idna---init--.py-b81d853b86b76688 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...idna-2.5-py3.6.egg-info-PKG-INFO-d2899fc2d56f719e +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 OTHER SPDXRef-Package-python-idna-df327da7f0a4a959 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...compat.cpython-36.opt-1.pyc-f0d4efd23146804a +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-f673343fdc230327 +Relationship: SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 CONTAINS SPDXRef-File-...dependency-links.txt-fd59f52b038d8043 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.dynacache.monitor-6d9200f29816f7ff OTHER SPDXRef-File-...com.ibm.ws.dynacache.monitor-1.0.81.jar-59fff79cff650dc7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.jsonsupport-6dbb9365dfff79bc OTHER SPDXRef-File-...com.ibm.websphere.jsonsupport-1.0.81.jar-73a8961d53249d3e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.session.monitor-6df330efa7adaf70 OTHER SPDXRef-File-...com.ibm.ws.session.monitor-1.0.81.jar-d2cb83b5af171cb9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 CONTAINS SPDXRef-File-...share-licenses-systemd-LICENSE.LGPL2.1-0989646e069c1a21 +Relationship: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 CONTAINS SPDXRef-File-usr-lib64-libudev.so.1.6.11-0db2b037980b7bd0 +Relationship: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 CONTAINS SPDXRef-File-usr-lib64-libnss-systemd.so.2-33785ffd6be6e700 +Relationship: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 CONTAINS SPDXRef-File-usr-lib64-libsystemd.so.0.23.0-c448e97380cca779 +Relationship: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 CONTAINS SPDXRef-File-usr-lib64-libnss-resolve.so.2-d5be9b064c76fa9f +Relationship: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 CONTAINS SPDXRef-File-usr-lib64-libnss-myhostname.so.2-eadaf7adf0562383 +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.jboss.logging35-6f5042d0577c4190 OTHER SPDXRef-File-...io.openliberty.org.jboss.logging35-1.0.81.jar-05e0c7b2da85f719 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libusbx-703f02296551e01f CONTAINS SPDXRef-File-usr-lib64-libusb-1.0.so.0.2.0-680dfded82e3d639 +Relationship: SPDXRef-Package-rpm-libusbx-703f02296551e01f OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libusbx-703f02296551e01f CONTAINS SPDXRef-File-usr-share-licenses-libusbx-COPYING-ff9a81353433763f +Relationship: SPDXRef-Package-python-setuptools-70ad73e984ff17a3 OTHER SPDXRef-File-...setuptools-39.2.0.dist-info-METADATA-2a25a6c384b85697 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.util-7253c13a1b5cf358 OTHER SPDXRef-File-...com.ibm.ws.org.apache.aries.util-1.0.81.jar-ccccbeb428f76166 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-subscription-manager-7276605e595d4096 OTHER SPDXRef-File-...PKG-INFO-d9e8b274b2c0eda7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.microprofile.config.internal.common-7354fb61a26e927e OTHER SPDXRef-File-...io.openliberty.microprofile.config.internal.common-1.0.81.jar-5756037321c9d6c5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.application-748abe5518b3314e OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.application-1.1.81.jar-2ced5dfcfb5b2dcc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---connection.cpython-36.pyc-014c8c615c1a2369 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-packages-backports---init--.py-01edf366734c6204 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util---init--.py-02267dabdc6d35af +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-contrib-ntlmpool.py-0b903a7d57fadfca +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-poolmanager.py-0bb8ea5c22c6b1d7 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...connection.cpython-36.opt-1.pyc-11ddad0a4e9803ef +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---response.cpython-36.pyc-181c842ac6751007 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---six.cpython-36.opt-1.pyc-19f6d698a9b3b961 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---wait.cpython-36.opt-1.pyc-1ab2abfca343e04e +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-25d9da5db3b5c53e +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---makefile.cpython-36.pyc-28a18292451847ad +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...makefile.cpython-36.opt-1.pyc-2be9a3acee613ee1 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-retry.py-2fa73c332acc98a3 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-response.py-304b130e478a2dd7 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...ntlmpool.cpython-36.opt-1.pyc-313bba81af9088fe +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-31f7a4b60f809010 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-32ea67152502e1e7 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---request.cpython-36.pyc-3817cf66058539ad +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---six.cpython-36.pyc-397819a76dd784a5 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---queue.cpython-36.opt-1.pyc-3a0a3da86ae89392 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-usr-lib-python3.6-site-packages-six.py-3dd7b2cfe1100d24 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---retry.cpython-36.opt-1.pyc-3f16a51fdc5ae681 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...filepost.cpython-36.opt-1.pyc-4416c3a817e5b151 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-453a4258ac22674b +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-1.24.2-py3.6.egg-info-PKG-INFO-4731163b373c6e55 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...request.cpython-36.opt-1.pyc-48d4569ac1ca4001 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...connection.cpython-36.opt-1.pyc-495f88c81cd867c8 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...securetransport.cpython-36.pyc-4d346e40f0429137 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...top-level.txt-4dea0b623aa55407 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-util-connection.py-4e4536c8b7a0aec9 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---request.cpython-36.pyc-5462ed366e4a00e1 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...pyopenssl.cpython-36.opt-1.pyc-57129258403fbc14 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---pyopenssl.cpython-36.pyc-58cc00ba0e6b46b0 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...securetransport.cpython-36.opt-1.pyc-58f2fc032ffa0fe6 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-5dce59fadf529d26 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...-appengine-environ.cpython-36.opt-1.pyc-5e501a9a6a9fc28f +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...-appengine-environ.cpython-36.pyc-5f2a9c0d61412433 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...appengine.cpython-36.opt-1.pyc-6494d51b7bfbd0f6 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...requires.txt-6541fc354c5775c8 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...ssl-match-hostname.cpython-36.opt-1.pyc-667efab3379c8f98 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...util---pycache---queue.cpython-36.pyc-6828db9d42a73817 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...SOURCES.txt-68321575d6cc1a16 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...timeout.cpython-36.opt-1.pyc-68690eccf6899cf7 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-68a8eac98dd26e65 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-6a569ba60aa8046a +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...contrib--securetransport---init--.py-6dc0c77c225bafed +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3---init--.py-6e95091b1a74d0fb +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-wait.py-729bf9a94015367d +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---connection.cpython-36.pyc-7c835a34b96c186f +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-800f7d59225ae2af +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-8106720db85c9ea2 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-contrib---init--.py-835c5cc130729dc7 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...fields.cpython-36.opt-1.pyc-849476945284f5b6 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---ntlmpool.cpython-36.pyc-892c0f134e8d49ca +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---poolmanager.cpython-36.pyc-8a30563b0e2435c5 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-timeout.py-8b362937880f2a4e +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...contrib--securetransport-bindings.py-8bc8ea7d431a0002 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---low-level.cpython-36.pyc-8c4efcb365714e17 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...contrib--securetransport-low-level.py-8d30db1858480ffa +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-exceptions.py-8e2b419d68e43120 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 OTHER SPDXRef-Package-python-urllib3-8ede639981c11081 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-response.py-927503beebedcda5 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-connectionpool.py-9317658d5b2ffb6a +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...util---pycache---ssl-.cpython-36.pyc-9352d1974afbcd3c +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-contrib-pyopenssl.py-95621e83ea6a51ee +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...response.cpython-36.opt-1.pyc-99f6f039947476f3 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-contrib-securetransport.py-a0acee4743b80f31 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a67e2e376c2a47ae +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---url.cpython-36.opt-1.pyc-a82eb069bae80e10 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---timeout.cpython-36.pyc-aaeb9c791681cd1a +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---appengine.cpython-36.pyc-aef7de65f552e28d +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---socks.cpython-36.opt-1.pyc-af2de359b6303b7e +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-contrib--appengine-environ.py-b35ef51c10f79da5 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---ssl-.cpython-36.opt-1.pyc-b5645bb10d56e762 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...-collections.cpython-36.opt-1.pyc-b5b147530221a2e9 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...dependency-links.txt-b7a4cfb1cf3a3b0e +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...low-level.cpython-36.opt-1.pyc-bb147f6e9219e293 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...-collections.cpython-36.pyc-bce1262bbbf10c4e +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...response.cpython-36.opt-1.pyc-bd2fae1ca6044a19 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---fields.cpython-36.pyc-c222f6e37bb53c31 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...connectionpool.cpython-36.opt-1.pyc-c362cf719443706c +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...request.cpython-36.opt-1.pyc-c3d21daa24c951c1 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-c48251d3bbcd2181 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-packages---init--.py-c5b9d6441926a6fb +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...util---pycache---retry.cpython-36.pyc-c8669f0a1b682be4 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...util---pycache---wait.cpython-36.pyc-c8c31d86e50687b3 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---filepost.cpython-36.pyc-c92077418e47a6d4 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---response.cpython-36.pyc-ca67d03dd800e085 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-contrib-socks.py-caaac9b3160c465f +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---socks.cpython-36.pyc-cd2f2357b8eb9267 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...licenses-python3-urllib3-LICENSE.txt-cefc386016f03f5d +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-request.py-cf60990b84de5105 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-filepost.py-d1321068bc21254f +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-ssl-.py-d2d0f058fe01887b +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...util---pycache---url.cpython-36.pyc-d5bdaa712b669b37 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-packages-ssl-match-hostname.py-d5ea983e3423d32c +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-contrib-appengine.py-d6e6e53a4e56509c +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-fields.py-dace5cb0cad0e0ce +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-queue.py-db8d21a104831045 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...bindings.cpython-36.opt-1.pyc-dfc7b1e905ceb7d1 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-dfc81911117e9a39 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3--collections.py-dfe560765f37456e +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-request.py-e7165c770f79b6f0 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ea2888088990b4bd +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...connectionpool.cpython-36.pyc-ea95ab5bff9c6edc +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-eb50c11fdf02196a +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-connection.py-ec54e8f24dccd219 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...--pycache---bindings.cpython-36.pyc-ed041a04fcc62f3f +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...site-packages-urllib3-util-url.py-f4fe625f2fae7936 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...poolmanager.cpython-36.opt-1.pyc-f83d6f2660215dbb +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...ssl-match-hostname.cpython-36.pyc-f997e72ff1073983 +Relationship: SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 CONTAINS SPDXRef-File-...urllib3-packages-backports-makefile.py-fb8e46c4274bf84e +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.classloading-75c7e061c7ba2305 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.classloading-1.4.81.jar-c421757311bdb945 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libverto-75c996841840f97a CONTAINS SPDXRef-File-usr-lib64-libverto.so.1.0.0-3a7163f90f9f5919 +Relationship: SPDXRef-Package-rpm-libverto-75c996841840f97a CONTAINS SPDXRef-File-usr-share-licenses-libverto-COPYING-8babef6f55bd5568 +Relationship: SPDXRef-Package-rpm-libverto-75c996841840f97a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.rls.jdbc.jakarta-75e3781a87aab322 OTHER SPDXRef-File-...com.ibm.rls.jdbc.jakarta-1.0.81.jar-5538796d2660d732 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-bdist-wininst.py-01c5e7f0bc962cfc +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...saveopts.cpython-36.opt-1.pyc-031fff9688bf595d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-wheel.py-04b4752a1d746162 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-063e70a24c4fb099 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---setopt.cpython-36.pyc-068ca03dc96ba7bd +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---py31compat.cpython-36.pyc-09b7a1151b315873 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---py36compat.cpython-36.pyc-0be4266156ef6b45 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---dist.cpython-36.pyc-0c83aeaa30d6ba42 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----about--.cpython-36.pyc-0cede162ca8e5e02 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-bdist-rpm.py-0d854bb8cf714161 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---site-patch.cpython-36.pyc-0eff47e5ce77064b +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...specifiers.cpython-36.opt-1.pyc-0f1829c57b3cb260 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...dependency-links.txt-14fe012b4cd3807d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---build-meta.cpython-36.pyc-15d91e9377d2337d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...bdist-egg.cpython-36.opt-1.pyc-18490b4629d7192e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...monkey.cpython-36.opt-1.pyc-1856a3f1eb2eb866 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...launch.cpython-36.opt-1.pyc-1a15f6c843b5450b +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...unicode-utils.cpython-36.opt-1.pyc-1a2372817271dd4c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-glob.py-1aa6201e77bc7244 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...easy-install.cpython-36.opt-1.pyc-1c51cd382ff24c8d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...depends.cpython-36.opt-1.pyc-1d92ce43171f6543 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pkg-resources--vendor-pyparsing.py-1ed0c1347dcba0ea +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-namespaces.py-1fb67e475f11f762 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-unicode-utils.py-207e23fd28d96eb8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...dist-info.cpython-36.opt-1.pyc-214e3d411bf071e0 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...requirements.cpython-36.pyc-21e8fa6b2562a43f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...sandbox.cpython-36.opt-1.pyc-22062d31a229ee12 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2275d9b12f95ab80 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-extern---init--.py-242cea71a8c8fb3b +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---install.cpython-36.pyc-24d9ccb3c0c29ff0 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---sandbox.cpython-36.pyc-25385efd89c6dd5d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-patch.cpython-36.opt-1.pyc-25ccdda4735656e3 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---py27compat.cpython-36.pyc-25dd341123d92fce +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---build-clib.cpython-36.pyc-2643643781363bf6 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---glibc.cpython-36.pyc-29e2af87460976b0 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-39.2.0.dist-info-METADATA-2a25a6c384b85697 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-alias.py-2b2177a4e012a396 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache----structures.cpython-36.pyc-2b44f119b05667a6 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...install-egg-info.cpython-36.opt-1.pyc-2bc4db77a86747f9 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---sdist.cpython-36.opt-1.pyc-2bd1098d9a5f7a2a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor---pycache---six.cpython-36.pyc-2beddbb6b479eedd +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-sandbox.py-2c76bd9f279009bf +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...py27compat.cpython-36.opt-1.pyc-2f756eb99a21ed03 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor---pycache---six.cpython-36.pyc-2fd17c1525fbfe07 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-compat.cpython-36.opt-1.pyc-30511abd7c1ff577 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.pyc-306502d8e4e17a47 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-py33compat.py-3280f492baa90485 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---depends.cpython-36.pyc-329b4469090b5a23 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-install-scripts.py-33921b1fb561c3ba +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---py31compat.cpython-36.pyc-34314531462dd898 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-35d44b125d4dd88e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---bdist-egg.cpython-36.pyc-36ea23ae56d1f78a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-build-ext.py-3703845066e40f6c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools--vendor-pyparsing.py-3870856a39832a2a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---alias.cpython-36.pyc-39063dd02484774f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...build-meta.cpython-36.opt-1.pyc-39186fc1337e108d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...extension.cpython-36.opt-1.pyc-396c38c29316d5e1 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---namespaces.cpython-36.pyc-3d1e2b11a927ea17 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...package-index.cpython-36.pyc-3e7699d6145e2ffb +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...DESCRIPTION.rst-3e7b3f6ee0a01014 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---extension.cpython-36.pyc-3ef3ea1b80dee5a7 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-3f30abb107278a66 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-3f7706915bf470d7 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---egg-info.cpython-36.pyc-3f7ca3c9f62d282d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...py31compat.cpython-36.opt-1.pyc-406dfe0e644c75c7 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pkg-resources-py31compat.py-41393cfb9d5e5d9c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-41a9d75a8cf865fd +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...archive-util.cpython-36.pyc-4208ed9c309e37d6 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...dep-util.cpython-36.opt-1.pyc-4248eca29b9bbb3a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---lib2to3-ex.cpython-36.pyc-42b3d3722c6d4113 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-easy-install.py-42f389ec35f3ea32 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging--structures.py-45b8d139a49b0fd5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-45ecf0686d88ade4 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging--compat.py-4757fb8c9cb02aa9 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setopt.cpython-36.opt-1.pyc-47eb939df05349df +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.pyc-4850a291da5c5b7d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-compat.cpython-36.opt-1.pyc-48b6c5909c29a2ba +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-48e41a74932617ab +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-ssl-support.py-4fd689abdb8b052d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---glob.cpython-36.pyc-5049b2a9597c6b4b +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-version.py-51c4b0280afb78a2 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-requirements.py-51f697fcc3743ac8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---specifiers.cpython-36.pyc-524b2af929d3fb89 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-py36compat.py-52738668879b36ee +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-script.tmpl-53363999b650fce6 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5759be629813113a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...easy-install.cpython-36.opt-1.pyc-59e55f61ba8524cd +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-dep-util.py-5abe4089bf7ffdb1 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pkg-resources---init--.py-5b3d2cb76ee0e91e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...requirements.cpython-36.pyc-5b5e9bcd8e87de29 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---build-ext.cpython-36.pyc-5c0b90e6e35304b8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command---init--.py-5dbbec1dddd97a66 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---py33compat.cpython-36.pyc-5df8687ed5486689 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5e8a13d5fbbe6a62 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---saveopts.cpython-36.pyc-5f5fe5791a17c103 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-depends.py-5fede8f015baecc4 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-structures.cpython-36.opt-1.pyc-6128aad193f7faca +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...requirements.cpython-36.opt-1.pyc-614e69e60e258007 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools--vendor---init--.py-61edf1bb8c213a01 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---wheel.cpython-36.pyc-6339043bd7ffca89 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---dep-util.cpython-36.pyc-64a1e0f35b2313ce +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...py31compat.cpython-36.opt-1.pyc-65070c5d3f50db99 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---ssl-support.cpython-36.pyc-67db056ce9cbbb16 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-register.py-68310a952c36c597 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...namespaces.cpython-36.opt-1.pyc-6a63f687534f8d31 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools--vendor-six.py-6add234b33337f12 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---pyparsing.cpython-36.pyc-6b21ae47e937c43e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache----compat.cpython-36.pyc-6b850215a370f707 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-pep425tags.py-6b9493eb0bc0137c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...bdist-wininst.cpython-36.pyc-6e5b90308de926bd +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-6ec4dc729c1f7a32 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---test.cpython-36.pyc-7000dbcd7430b0d8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd OTHER SPDXRef-Package-python-setuptools-70ad73e984ff17a3 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-dist.py-710aaafe8d63d136 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---sdist.cpython-36.pyc-72a94aa4f38de346 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--about--.cpython-36.opt-1.pyc-7314dbf5dca99e34 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---markers.cpython-36.pyc-7387a4232e87f592 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...install-lib.cpython-36.opt-1.pyc-739d1345127b484f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-lib2to3-ex.py-755649c78846b274 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-757a776f5ef95e92 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pyparsing.cpython-36.opt-1.pyc-760816225615e007 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...metadata.json-7610bf23d0a1df03 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...package-index.cpython-36.opt-1.pyc-78726b82d803c42f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-specifiers.py-7940b867bf216d93 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-7bd0561def8d514c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pkg-resources--vendor---init--.py-7c8d8fc19abfa393 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging---about--.py-7e5576ab3932eff9 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-package-index.py-7ec9de6d102fd649 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---glibc.cpython-36.opt-1.pyc-7f115e7447e14a24 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-structures.cpython-36.opt-1.pyc-8486396cec099c6f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...build-clib.cpython-36.opt-1.pyc-8522bdd03e9d5815 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---six.cpython-36.opt-1.pyc-88b9108aa3bb0bc5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-88fec597c2d06493 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-markers.py-89546a514b2e7a66 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-launch.py-8999122ec2cd656c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-8a14b00aa1fa5899 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---markers.cpython-36.pyc-8a7511b42c58cf5a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...entry-points.txt-8c482f773e30b202 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-install-lib.py-8df91e571a110dc1 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...easy-install.cpython-36.pyc-8e76f5ec539afb01 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---pyparsing.cpython-36.pyc-8f9685e6501bccd1 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---py36compat.cpython-36.pyc-94796c94efdc5e5f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-9525571a5efa957c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...requirements.cpython-36.opt-1.pyc-957f05abd56c590d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...top-level.txt-95a8ec1d16083751 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---dist.cpython-36.opt-1.pyc-97403fb2cdcf418c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----about--.cpython-36.pyc-97a80f94464abbf8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...py36compat.cpython-36.opt-1.pyc-97cdb22e5cbee9e0 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-extension.py-9abef593e0116135 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---appdirs.cpython-36.pyc-9d0b181b3e35fd6e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---test.cpython-36.opt-1.pyc-9e9aa9f80b526797 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---monkey.cpython-36.pyc-9f1fabd0665e1036 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...appdirs.cpython-36.opt-1.pyc-9fa7d5f43be9ff43 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9fb93b5a8e5d5718 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pyparsing.cpython-36.opt-1.pyc-9ffc34e224f9cc2e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---rotate.cpython-36.pyc-a0f8d7312924ab70 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...install.cpython-36.opt-1.pyc-a1b8a5603f14c857 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-39.2.0.dist-info-WHEEL-a20d6b80cae28f3e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-archive-util.py-a3fe3b7d533312f3 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...bdist-wininst.cpython-36.opt-1.pyc-a409d9dea637b2b7 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...register.cpython-36.opt-1.pyc-a4307b15c640b3bf +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...build-ext.cpython-36.opt-1.pyc-a466e115febd5ac8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---wheel.cpython-36.opt-1.pyc-a46cb6a2b07397cf +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...windows-support.cpython-36.pyc-a56d0f0e55835e19 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...markers.cpython-36.opt-1.pyc-a7551b5bb3538926 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---develop.cpython-36.pyc-a85ec7e91b919622 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---version.cpython-36.pyc-abafa25e1b22da10 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache----compat.cpython-36.pyc-abed07f78efa82d2 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-monkey.py-ace93678954727d5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...easy-install.cpython-36.pyc-ada4ee8b5eb73166 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...egg-info.cpython-36.opt-1.pyc-af6d8df4e6c95eee +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-test.py-af7f0a12c22b2e0a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---msvc.cpython-36.pyc-afbbbb4979e51a14 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b09374768d34c840 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...specifiers.cpython-36.opt-1.pyc-b0ccaba183052078 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-b1507c4f4f359d0f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---upload-docs.cpython-36.pyc-b1b23f5ad8646652 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-py31compat.py-b250d8ffcfffe034 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-py27compat.py-b3013b87cf63df68 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-build-clib.py-b4c878d9b7e7daf4 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...LICENSE.txt-b5a02f76151a197f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-markers.py-b6293737b4d065ea +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...install-egg-info.cpython-36.pyc-b6c29d924518d783 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-version.py-b6fe6bb04a9a41d5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...install-scripts.cpython-36.pyc-b72278cc990d5b7a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-msvc.py-b82883d5a37fb26b +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging---init--.py-ba298ee74a740146 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-upload.py-bbdae0fc7c385fdb +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...archive-util.cpython-36.opt-1.pyc-bc103eee57f1df34 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---upload.cpython-36.pyc-be81d050eaf81cf2 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-39.2.0.dist-info-INSTALLER-be96468f8c8bc395 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-utils.py-c1a4983606b55d39 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---bdist-rpm.cpython-36.pyc-c1d0172ed333e9fb +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging--compat.py-c2a8d58dc8aea80c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pkg-resources-extern---init--.py-c2f0b9ff97cdbaed +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-dist-info.py-c3f63b9301021b50 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-setopt.py-c551de5364d2559a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools---init--.py-c5a4bb2af7efe9d2 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...windows-support.cpython-36.opt-1.pyc-c5ce1249af33b34d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...rotate.cpython-36.opt-1.pyc-c717c2f43a6a3911 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-site-patch.py-c73aeebc10b99328 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...upload-docs.cpython-36.opt-1.pyc-c82453389888a221 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---launch.cpython-36.pyc-c8c02dc0b3921646 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-glibc.py-c9079f8a7d643294 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...platform-python-setuptools-LICENSE-c93c535151e969e3 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...upload.cpython-36.opt-1.pyc-c9bcd450bf7bf366 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging--structures.py-cabb727bc033321c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging---init--.py-cb295c2a0febdbe4 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-egg-info.py-cbf6ce2212866df7 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---build-py.cpython-36.pyc-cc47b608c2c1e78f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---version.cpython-36.pyc-cc67b9d66407028e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-sdist.py-ce165968df4439e8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pkg-resources--vendor-appdirs.py-cf1746f589bdffc5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...install-scripts.cpython-36.opt-1.pyc-cf8dfc4296e79475 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---config.cpython-36.pyc-cf909a4cb9342d04 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-script--dev-.tmpl-cfc909e564a65fe3 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d1f4bee5a31001bb +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...bdist-rpm.cpython-36.opt-1.pyc-d448b53e63fc0a9f +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...build-py.cpython-36.opt-1.pyc-d488d86d8b96e2cb +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d5de2286697cfcd2 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pkg-resources--vendor-six.py-d6dc6b9217bfba35 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---install-lib.cpython-36.pyc-d83159b7d1b54270 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d9c49a5a0c299888 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-39.2.0.dist-info-zip-safe-da00492d0450490d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-dadf5e4dbdd1f92c +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...unicode-utils.cpython-36.pyc-db3ed331e804d57d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...py33compat.cpython-36.opt-1.pyc-db55caa0581ac55a +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-py36compat.py-db5c6c2d8ce9bad3 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-requirements.py-dc6c16bfc172c205 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-specifiers.py-de8f1b1620fc45b5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...py36compat.cpython-36.opt-1.pyc-dead9ac7585fe549 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...markers.cpython-36.opt-1.pyc-e03e70277105ce47 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-develop.py-e04a20582440d037 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache----structures.cpython-36.pyc-e0b06338884cf984 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-upload-docs.py-e1b4b57d71940825 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-build-py.py-e336f581428f49f3 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---dist-info.cpython-36.pyc-e46cd84ed99866d5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...ssl-support.cpython-36.opt-1.pyc-e4c41f623f614d5e +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---six.cpython-36.opt-1.pyc-e646091bc7cd44f0 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-install.py-e86d98b7f1ef5eb4 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-easy-install.py-eb7b9d5c4ccd0dfb +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-bdist-egg.py-ed921f5043e1a4a2 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---pep425tags.cpython-36.pyc-eeaedcbfb7234938 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---glob.cpython-36.opt-1.pyc-eeb03bb8ddfbc85b +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---specifiers.cpython-36.pyc-ef934e3e921f2ac4 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---version.cpython-36.pyc-f0c51154c06f5a30 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...develop.cpython-36.opt-1.pyc-f0e16d008a871902 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging-version.py-f25b6fdcce76fd18 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-saveopts.py-f343a27f9bb163d5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---alias.cpython-36.opt-1.pyc-f432db200a6865a7 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-39.2.0.dist-info-RECORD-f4c2df7bbbe4ae48 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...-vendor-packaging---about--.py-f4f2a4432fa82a19 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---register.cpython-36.pyc-f53666f10a961a4d +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-install-egg-info.py-f6bc7239c46835a1 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...pep425tags.cpython-36.opt-1.pyc-f6f955bd182e4af8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-config.py-f7313d5d1b853cb5 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f8282c467e8dcc04 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...command-launcher-manifest.xml-fa36a58e016fdd87 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...site-packages-setuptools-build-meta.py-fc04745fa4e287e1 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--about--.cpython-36.opt-1.pyc-fc5230ffa4f95ec8 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools--vendor-packaging-utils.py-fd04a072afe206fb +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...lib2to3-ex.cpython-36.opt-1.pyc-fdc50ad497d18a47 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-command-rotate.py-ff2e4b2b36032308 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...setuptools-windows-support.py-ff6433a2d0595f98 +Relationship: SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd CONTAINS SPDXRef-File-...--pycache---msvc.cpython-36.opt-1.pyc-ffcc6c330d926349 +Relationship: SPDXRef-Package-java-archive-io.openliberty.io.netty.ssl-77a0ac5be06a4317 OTHER SPDXRef-File-...io.openliberty.io.netty.ssl-1.0.81.jar-79ec4d9a028f1cf0 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.interceptor.2.1-78069b28c25a1408 OTHER SPDXRef-File-...io.openliberty.jakarta.interceptor.2.1-1.0.81.jar-0f6a5248af8c6df3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.repository.parsers-7936172742d614b5 OTHER SPDXRef-File-...com.ibm.ws.repository.parsers-1.0.81.jar-7c7a78f9a07e021b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jmx.api-7978c68156986b68 OTHER SPDXRef-File-...com.ibm.ws.org.apache.aries.jmx.api-1.0.81.jar-5e7d77ec0d4786f1 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.restfulWS30.jsonb20provider-79b622081ee5a476 OTHER SPDXRef-File-...io.openliberty.restfulWS30.jsonb20provider-1.0.81.jar-fdd076c2cb0f0254 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---general.cpython-36.pyc-06282da5f0398ccf +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-080c666f693cedaf +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies.cpython-36.pyc-0ac76676ef1989d7 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies-validation-alg-lists.py-0cc067d410ef6e43 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---java.cpython-36.pyc-1004c9c8948a4c93 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-12ed90316722ad3c +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies-validation-scope.py-17ffaa27f9c2d5df +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1af56c3b0c412a7a +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1d17b31324dd368b +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---krb5.cpython-36.opt-1.pyc-1f757904ada9346c +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-openssl.py-3100f596ad343dad +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-cryptopolicies-alg-lists.py-31848d1869680cb1 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---nss.cpython-36.opt-1.pyc-347260bbd90e4e13 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---java.cpython-36.opt-1.pyc-3849828b7d81ce41 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---scope.cpython-36.opt-1.pyc-3980da1db80e1709 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...configgenerator.cpython-36.opt-1.pyc-434bff073b01f224 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---libreswan.cpython-36.pyc-45194389d2140db1 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---krb5.cpython-36.pyc-561a24031375c987 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---bind.cpython-36.pyc-56fbcba52c23f221 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...gnutls.cpython-36.opt-1.pyc-78102a3f6b86e179 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-cryptopolicies---init--.py-7b737d3badecd828 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...general.cpython-36.opt-1.pyc-7c736fdcfe459f90 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---openssh.cpython-36.pyc-7dd5fc72d5b82468 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...build-crypto-policies.cpython-36.opt-1.pyc-7f473f78a6e4a0b7 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...policygenerators-configgenerator.py-83ead8e5282678bb +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...build-crypto-policies.cpython-36.pyc-887cc52667a566a0 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...libssh.cpython-36.opt-1.pyc-8a69c6e890e5f224 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---nss.cpython-36.pyc-8bd739c59f631a18 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-usr-bin-fips-finish-install-8d969bae039eecce +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-update-crypto-policies.py-8dcb318ef2f3c0e8 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...configgenerator.cpython-36.pyc-934ba161c127a9fe +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-gnutls.py-96217e5e1e9a00cd +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---alg-lists.cpython-36.pyc-9888708c54e158e6 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies-cryptopolicies.py-99cc9b97a4c1f508 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-build-crypto-policies.py-9d37b396750383e5 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a383da6208c8e6c2 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---libssh.cpython-36.pyc-a600ac7b52f2bc78 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-krb5.py-a975ee3afb0b3d7f +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...alg-lists.cpython-36.opt-1.pyc-ad41eec24e66b748 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators---init--.py-adbd2da8d9cc19ad +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---scope.cpython-36.pyc-ae595fa5ef6393f9 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies-validation---init--.py-b09489edf8e14aa3 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...openssh.cpython-36.opt-1.pyc-b2de5591b9dcc64c +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---alg-lists.cpython-36.pyc-b33e8eaa97ddee31 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b36959984b232d12 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---openssl.cpython-36.pyc-b57fa93af26c8280 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---rules.cpython-36.opt-1.pyc-bab9321ba297f98e +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies.cpython-36.opt-1.pyc-c592f9fc78ec3ca0 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...openssl.cpython-36.opt-1.pyc-c59ec02ce9b08a3f +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...libreswan.cpython-36.opt-1.pyc-c703492749d08b6d +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-libreswan.py-c749c622048e5642 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-java.py-d4ed8e278eb0e2d9 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-openssh.py-d9c14c8d753e22a5 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies-validation-rules.py-da8ef223f187d10d +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-bind.py-dadc44b4d8da59c9 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-libssh.py-db4cb51ce64c645b +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...python-policygenerators-nss.py-de0d63a443328f52 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...update-crypto-policies.cpython-36.pyc-df8668f1a87096ad +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---rules.cpython-36.pyc-eb7278e003ad755f +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...cryptopolicies-validation-general.py-ede17ec118c1352e +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-usr-bin-update-crypto-policies-f2176860a09dd330 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...alg-lists.cpython-36.opt-1.pyc-f370bee54b8111c3 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---bind.cpython-36.opt-1.pyc-f840df645a88e875 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-usr-bin-fips-mode-setup-f8f6febfa034e893 +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...update-crypto-policies.cpython-36.opt-1.pyc-fa0ac0fa4cdc142a +Relationship: SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e CONTAINS SPDXRef-File-...--pycache---gnutls.cpython-36.pyc-ffa6421733a4b64d +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...login.cpython-36m-x86-64-linux-gnu.so-0c10436627d1f534 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...test-journal.cpython-36.pyc-0c8bb0bc4c3a94b4 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...test-login.cpython-36.opt-1.pyc-1e42e86cada3746d +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-24105631a93ff688 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...systemd-test-test-journal.py-25ef83b25cbe8473 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...-reader.cpython-36m-x86-64-linux-gnu.so-297daec878fc5d62 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-333b5b442d370332 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...--pycache---journal.cpython-36.pyc-3797a65777b162b5 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...--pycache---test-login.cpython-36.pyc-3c925badfccce117 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...test-journal.cpython-36.opt-1.pyc-5952e41acf588361 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...systemd-test-test-daemon.py-59a8db29407b77ac +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...--pycache---daemon.cpython-36.pyc-63d31ba6715b03b8 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...site-packages-systemd-daemon.py-74bb220df3378134 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...daemon.cpython-36.opt-1.pyc-7c21c169f39c4cf3 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 OTHER SPDXRef-Package-python-systemd-python-7d3d321f514748f5 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...systemd-test-test-login.py-8109fa06d1cbe382 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...test-daemon.cpython-36.opt-1.pyc-95c8d24d38911a0c +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...id128.cpython-36m-x86-64-linux-gnu.so-95d91c07ef7ee17b +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...-daemon.cpython-36m-x86-64-linux-gnu.so-9fb20285e6c23f2a +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...systemd-python-234-py3.6.egg-info-bf1d1b655be7d33d +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...--pycache---test-daemon.cpython-36.pyc-c21a64f9f731a18d +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...site-packages-systemd---init--.py-e8a1a47eabe519ec +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...site-packages-systemd-journal.py-ee6f43a8668bc749 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...-journal.cpython-36m-x86-64-linux-gnu.so-f0197f6bc3fa3349 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...licenses-python3-systemd-LICENSE.txt-f348287d137e3139 +Relationship: SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 CONTAINS SPDXRef-File-...journal.cpython-36.opt-1.pyc-f6e46166dbd5d354 +Relationship: SPDXRef-Package-rpm-subscription-manager-rhsm-certificates-7c18b7dbf0061f93 CONTAINS SPDXRef-File-etc-rhsm-ca-redhat-uep.pem-16429a5a5c7f5b74 +Relationship: SPDXRef-Package-rpm-subscription-manager-rhsm-certificates-7c18b7dbf0061f93 CONTAINS SPDXRef-File-...ca-redhat-entitlement-authority.pem-3595f63cb19ab7cc +Relationship: SPDXRef-Package-rpm-subscription-manager-rhsm-certificates-7c18b7dbf0061f93 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact.bundle-7ca57299f4ce7827 OTHER SPDXRef-File-...com.ibm.ws.artifact.bundle-1.0.81.jar-0982cf16138a6eaa +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.restfulWS.3.1-7ccdfa2119281541 OTHER SPDXRef-File-...io.openliberty.jakarta.restfulWS.3.1-1.0.81.jar-bfd622da86425be6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.credentials.wscred-7d2973745a28b886 OTHER SPDXRef-File-...com.ibm.ws.security.credentials.wscred-1.0.81.jar-36868e365448ff66 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-systemd-python-7d3d321f514748f5 OTHER SPDXRef-File-...systemd-python-234-py3.6.egg-info-bf1d1b655be7d33d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd.ejb-7dcf65ebe120bcf4 OTHER SPDXRef-File-...com.ibm.ws.javaee.dd.ejb-1.1.81.jar-764a3090e8e80c10 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-usr-share-appdata-dejavu.metainfo.xml-17e8279fea1d8d35 +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-usr-share-doc-dejavu-fonts-common-NEWS-212697fb7bb1cb18 +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-...doc-dejavu-fonts-common-status.txt.bz2-2d1afaa42e4ac5b6 +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-usr-share-doc-dejavu-fonts-common-BUGS-348d3071955dd979 +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-...share-doc-dejavu-fonts-common-AUTHORS-7b7879e4d3623757 +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-...share-doc-dejavu-fonts-common-LICENSE-94c6ad568bd95d10 +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-...share-doc-dejavu-fonts-common-README-ba48cce40b2f07f6 +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 CONTAINS SPDXRef-File-...doc-dejavu-fonts-common-unicover.txt-f0729876bcc5e656 +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.xmlWS.4.0-7e12bdbf180c8b67 OTHER SPDXRef-File-...io.openliberty.jakarta.xmlWS.4.0-1.0.81.jar-6f22fe1b15536d02 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...--pycache---six.cpython-36.opt-1.pyc-19f6d698a9b3b961 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...six-1.11.0.dist-info-WHEEL-2a0952a3d177f8b0 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...--pycache---six.cpython-36.pyc-397819a76dd784a5 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-usr-lib-python3.6-site-packages-six.py-3dd7b2cfe1100d24 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-usr-share-licenses-python3-six-LICENSE-5db3cc28b6f7cd43 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...six-1.11.0.dist-info-RECORD-620d2cb46f556c95 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...six-1.11.0.dist-info-INSTALLER-81e44b435428b1fa +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...six-1.11.0.dist-info-METADATA-8762652a2c9d4459 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...six-1.11.0.dist-info-metadata.json-994f66f4e5fca615 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...six-1.11.0.dist-info-DESCRIPTION.rst-d26a92ac05c8d2c0 +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea CONTAINS SPDXRef-File-...six-1.11.0.dist-info-top-level.txt-e266b79b516ae32c +Relationship: SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea OTHER SPDXRef-Package-python-six-e4e7ee91fea80cd9 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.feature.featurelist-7eec3f00c5332c79 OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-featurelist.jar-4c721027cdcb4451 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-usr-lib64-libnl-nf-3.so.200.26.0-2425b6d6b605f038 +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-usr-lib64-libnl-genl-3.so.200.26.0-4e7d061a5a5a181a +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-usr-lib64-libnl-3.so.200.26.0-55e59b1e8dc8b290 +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-usr-lib64-libnl-xfrm-3.so.200.26.0-950333b5d611211b +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-usr-lib64-libnl-route-3.so.200.26.0-9f0a90493b3899b5 +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-etc-libnl-pktloc-de85d4fb5d3c1678 +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-usr-lib64-libnl-idiag-3.so.200.26.0-dfebde06cf412245 +Relationship: SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e CONTAINS SPDXRef-File-etc-libnl-classid-e662cd7ecdb55d7e +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.runtime.jakarta-7ff3c6a91e9abb3c OTHER SPDXRef-File-...com.ibm.ws.webserver.plugin.runtime.jakarta-1.0.81.jar-8b58fd7c62646596 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v7.jndi-8041251ba24ed52a OTHER SPDXRef-File-...com.ibm.ws.javaee.platform.v7.jndi-1.0.81.jar-1969be499675deac +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-elfutils-default-yama-scope-8056e0aae345bdf9 CONTAINS SPDXRef-File-...sysctl.d-10-default-yama-scope.conf-0587b7a6fa24498d +Relationship: SPDXRef-Package-rpm-elfutils-default-yama-scope-8056e0aae345bdf9 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libtirpc-8061da9a912f4b51 CONTAINS SPDXRef-File-etc-bindresvport.blacklist-405c1878215d01e0 +Relationship: SPDXRef-Package-rpm-libtirpc-8061da9a912f4b51 CONTAINS SPDXRef-File-etc-netconfig-bdf9caf37ce103ca +Relationship: SPDXRef-Package-rpm-libtirpc-8061da9a912f4b51 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libtirpc-8061da9a912f4b51 CONTAINS SPDXRef-File-usr-lib64-libtirpc.so.3.0.0-f39ef9386a75a676 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.io-810c3481a6caaad2 OTHER SPDXRef-File-...com.ibm.ws.org.apache.commons.io-1.0.81.jar-499b323d163e6d08 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.cmdline-81359e29cf6d4224 OTHER SPDXRef-File-...com.ibm.ws.kernel.cmdline-1.0.81.jar-84cfc54d80dbb8fd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.jndi.url.contexts-82055f4f911ddd86 OTHER SPDXRef-File-...com.ibm.ws.jndi.url.contexts-1.0.81.jar-f374774c6f46170b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.kerberos.auth-8307eb5847190739 OTHER SPDXRef-File-...com.ibm.ws.security.kerberos.auth-1.0.81.jar-7f9e26148f78528b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnetfilter-conntrack-830c21345b7e5867 CONTAINS SPDXRef-File-...lib64-libnetfilter-conntrack.so.3.6.0-840bc9deb414f17f +Relationship: SPDXRef-Package-rpm-libnetfilter-conntrack-830c21345b7e5867 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnetfilter-conntrack-830c21345b7e5867 CONTAINS SPDXRef-File-...libnetfilter-conntrack-COPYING-ee0323e77b3a853e +Relationship: SPDXRef-Package-rpm-libunistring-831f91ebad44f2ec CONTAINS SPDXRef-File-...licenses-libunistring-COPYING.LIB-0aaaf2d5e89adfa9 +Relationship: SPDXRef-Package-rpm-libunistring-831f91ebad44f2ec CONTAINS SPDXRef-File-usr-lib64-libunistring.so.2.1.0-cbe392533bc6cfd8 +Relationship: SPDXRef-Package-rpm-libunistring-831f91ebad44f2ec OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libunistring-831f91ebad44f2ec CONTAINS SPDXRef-File-...share-licenses-libunistring-COPYING-f97b584506063ae3 +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.angus.activation-83344f32bf0da0b4 OTHER SPDXRef-File-...io.openliberty.org.eclipse.angus.activation-1.0.81.jar-714344ab9ba7af12 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.restfulWS.internal.ssl-83e65ff9b0b27acb OTHER SPDXRef-File-...io.openliberty.restfulWS.internal.ssl-1.0.81.jar-867bd14a668f0553 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf CONTAINS SPDXRef-File-usr-lib64-libgmp.so.10.3.2-1899997b9f57f364 +Relationship: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf CONTAINS SPDXRef-File-...lib64-fipscheck-libgmp.so.10.3.2.hmac-54cb231af4e39120 +Relationship: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf CONTAINS SPDXRef-File-usr-share-licenses-gmp-COPYINGv3-7e9e1bf0e86073a3 +Relationship: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf CONTAINS SPDXRef-File-...share-licenses-gmp-COPYING.LESSERv3-8883c65e02c6768e +Relationship: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf CONTAINS SPDXRef-File-usr-share-licenses-gmp-COPYING-c49f8de17f10b633 +Relationship: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf CONTAINS SPDXRef-File-usr-share-licenses-gmp-COPYINGv2-df1b3b1da0ca29dd +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.filemonitor-87273f3743c0754c OTHER SPDXRef-File-...com.ibm.ws.kernel.filemonitor-1.0.81.jar-3f098f8b03ee629e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.yasson.3.0-882143b6eaf54e26 OTHER SPDXRef-File-...io.openliberty.org.eclipse.yasson.3.0-1.0.81.jar-88a673dfbb6a6a14 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-keyutils-libs-885dca71d492333b CONTAINS SPDXRef-File-usr-lib64-libkeyutils.so.1.6-03b3f1eeafa779d2 +Relationship: SPDXRef-Package-rpm-keyutils-libs-885dca71d492333b CONTAINS SPDXRef-File-...licenses-keyutils-libs-LICENCE.LGPL-b73164a895e10f80 +Relationship: SPDXRef-Package-rpm-keyutils-libs-885dca71d492333b OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.ready.service-886a7e9cecc0f6d5 OTHER SPDXRef-File-...com.ibm.ws.security.ready.service-1.0.81.jar-218557d4e69f80ad +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.feature-892614febcd1ae20 OTHER SPDXRef-File-...com.ibm.ws.kernel.feature-1.0.81.jar-6f462ab14f382e67 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.transaction-8a165dac8620c5e9 OTHER SPDXRef-File-...io.openliberty.transaction-1.1.81.jar-25c287b5ad4b9d21 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.checkpoint-8a542215f307aab5 OTHER SPDXRef-File-...io.openliberty.checkpoint-1.0.81.jar-b4528c44eac1a589 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 CONTAINS SPDXRef-File-...share-licenses-platform-python-LICENSE-0afb474413d35ee9 +Relationship: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 CONTAINS SPDXRef-File-usr-libexec-platform-python3.6-1f9aa3174ddc7a7f +Relationship: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 CONTAINS SPDXRef-File-usr-bin-pyvenv-3.6-5e7590a0dfe7a76a +Relationship: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 CONTAINS SPDXRef-File-usr-bin-pydoc3.6-a72e09cc63751932 +Relationship: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 CONTAINS SPDXRef-File-usr-libexec-platform-python3.6m-b0dda77b764f2159 +Relationship: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-platform-python-8a561c12847b8113 CONTAINS SPDXRef-File-usr-libexec-no-python-e34fc456a28a2b81 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.javaeedd-8aaadc0ff19db6ad OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.javaeedd-1.7.81.jar-d16bc499155f81c6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-usermode-8ab8e85f37f04064 CONTAINS SPDXRef-File-etc-security-console.apps-config-util-06ffec58708307c0 +Relationship: SPDXRef-Package-rpm-usermode-8ab8e85f37f04064 CONTAINS SPDXRef-File-...locale-en-GB-LC-MESSAGES-usermode.mo-5a408c76245d264a +Relationship: SPDXRef-Package-rpm-usermode-8ab8e85f37f04064 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-usermode-8ab8e85f37f04064 CONTAINS SPDXRef-File-usr-bin-consolehelper-f0cf2a189ff3bb74 +Relationship: SPDXRef-Package-rpm-usermode-8ab8e85f37f04064 CONTAINS SPDXRef-File-usr-sbin-userhelper-f22001a49ea90934 +Relationship: SPDXRef-Package-rpm-libsolv-8b6446e1aef0cb45 CONTAINS SPDXRef-File-usr-lib64-libsolvext.so.1-4d080f6408830d5d +Relationship: SPDXRef-Package-rpm-libsolv-8b6446e1aef0cb45 CONTAINS SPDXRef-File-usr-share-doc-libsolv-README-b64cbfa4f5e5c06e +Relationship: SPDXRef-Package-rpm-libsolv-8b6446e1aef0cb45 CONTAINS SPDXRef-File-usr-share-licenses-libsolv-LICENSE.BSD-b8e78439d99ed502 +Relationship: SPDXRef-Package-rpm-libsolv-8b6446e1aef0cb45 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libsolv-8b6446e1aef0cb45 CONTAINS SPDXRef-File-usr-lib64-libsolv.so.1-df84155aa89b6cfd +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.install.featureUtility.featureutil-8baec303d4720fdf OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-featureUtility.jar-92a26802a6d3517b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libssh-8cb077ad4f6fdfd4 CONTAINS SPDXRef-File-usr-share-licenses-libssh-COPYING-8f53894d6cee6bd1 +Relationship: SPDXRef-Package-rpm-libssh-8cb077ad4f6fdfd4 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libssh-8cb077ad4f6fdfd4 CONTAINS SPDXRef-File-usr-lib64-libssh.so.4.8.7-e74b3b6fed85c878 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.channel.ssl-8d1607111dc76bf7 OTHER SPDXRef-File-...lib-com.ibm.ws.channel.ssl-1.0.81.jar-4583b55abcf194ed +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.rest.handler-8d1aec4aea85fc8e OTHER SPDXRef-File-...com.ibm.websphere.rest.handler-1.0.81.jar-e2c6105bbb674308 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...product-id.cpython-36.opt-1.pyc-05dd831de5858d89 +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...dnf-plugins-product-id.py-1c96678d7341250f +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...upload-profile.cpython-36.pyc-285dee68c6fc3fa8 +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...dnf-plugins-upload-profile.py-575a87656dc3face +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...--pycache---product-id.cpython-36.pyc-5cf82b1ddd36dd92 +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-usr-lib64-libdnf-plugins-product-id.so-6bc92bb3c8954ee5 +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...subscription-manager.cpython-36.pyc-6daf6bfea71f2661 +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...dnf-plugins-subscription-manager.py-74a655d94fe63010 +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...upload-profile.cpython-36.opt-1.pyc-e373c8c611ec4ae2 +Relationship: SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e CONTAINS SPDXRef-File-...subscription-manager.cpython-36.opt-1.pyc-e46c6db1cd165a49 +Relationship: SPDXRef-Package-java-archive-io.openliberty.microprofile.health.3.1.internal.jakarta-8dbab8314d5b8152 OTHER SPDXRef-File-...io.openliberty.microprofile.health.3.1.internal.jakarta-1.0.81.jar-74e186d2a2c2a8a0 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.logging-8dc23917d07e91e9 OTHER SPDXRef-File-...com.ibm.ws.org.jboss.logging-1.0.81.jar-3a155ad9afd00976 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.wsoc.ssl.internal-8e0e00ee38279d62 OTHER SPDXRef-File-...io.openliberty.wsoc.ssl.internal-1.0.81.jar-ca2172ab26960f71 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-urllib3-8ede639981c11081 OTHER SPDXRef-File-...urllib3-1.24.2-py3.6.egg-info-PKG-INFO-4731163b373c6e55 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.mp.jwt.proxy-8f00f2ec2e3f6b5b OTHER SPDXRef-File-...com.ibm.ws.security.mp.jwt.proxy-1.0.81.jar-fefb10301ec0392d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-0a85a9fadd0431bc +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...site-packages-hawkey--hawkey.so-0cccbb25cf7ece8f +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-57402724ee7c8a07 +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...site-packages-hawkey---init--.py-715cba7d67cd2ba1 +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-732a58a88b2ff484 +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-86d82e0098b045b0 +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...hawkey-test--hawkey-test.so-b4c826f17e36b169 +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd CONTAINS SPDXRef-File-...site-packages-hawkey-test---init--.py-d402b2db36795682 +Relationship: SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader.auditreader-8f344506f25c58af OTHER SPDXRef-File-...com.ibm.ws.security.audit.reader-1.0.81.jar-30697d64d9c46b5e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.transaction.jakarta-8fb81778b3027ede OTHER SPDXRef-File-...com.ibm.ws.transaction.jakarta-1.0.81.jar-0c7e30cceec59763 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.slf4j.jdk14-90998235881dddab OTHER SPDXRef-File-...com.ibm.ws.org.slf4j.jdk14-1.0.81.jar-eee7c7b7c3548f85 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libassuan-9166c1f313ff431e CONTAINS SPDXRef-File-usr-lib64-libassuan.so.0.8.1-81e6e3a717179fa4 +Relationship: SPDXRef-Package-rpm-libassuan-9166c1f313ff431e CONTAINS SPDXRef-File-...share-licenses-libassuan-COPYING.LIB-835f625ffadbdc80 +Relationship: SPDXRef-Package-rpm-libassuan-9166c1f313ff431e CONTAINS SPDXRef-File-usr-share-licenses-libassuan-COPYING-873fc7c4ce1d7eaa +Relationship: SPDXRef-Package-rpm-libassuan-9166c1f313ff431e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.context-922a1685924c2e6b OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.context-1.0.81.jar-13b2f4b84e4ab3f7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-gettime.awk-08a15cbc1bc2bf65 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-readfile.so-0f91658ccbd6a65e +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-have-mpfr.awk-10f61487aa4521a2 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-etc-profile.d-gawk.csh-1266f3467c6bae09 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-licenses-gawk-LICENSE.BSD-12ebb69e5e86d7f4 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-walkarray.awk-1373a93451f765df +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-ord.awk-1430150663429a70 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-shellquote.awk-184e9700110d06c5 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-zerofile.awk-1915efe071a896f5 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-filefuncs.so-1f4fe69ff6f2d839 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-quicksort.awk-21019387d1860cf6 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-processarray.awk-257444d49f5b5db1 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-licenses-gawk-COPYING-2af9cae2bd34e3d6 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-getopt.awk-2b1fdc1077dcc342 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-readfile.awk-2e5d249532999902 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-round.awk-3164d60fd0a331a5 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-revoutput.so-337e61571be315d7 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-fork.so-433fd37021fd394e +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-libexec-awk-pwcat-4347f7e43eaa69a3 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-ftrans.awk-44114a83b5979810 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-etc-profile.d-gawk.sh-4ed9805d3069a9f0 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-rwarray.so-511269d7664d00cf +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-group.awk-5771879b57c7ef44 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-inplace.so-5b3e463a12052aa4 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-inplace.awk-741b54c4e3e69390 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-intdiv0.awk-8a9fbdd38aacd07f +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-passwd.awk-9e3c177fad7092d8 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-ctime.awk-ab74e7127b4f63d0 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-fnmatch.so-afc8ffb5c6835149 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-time.so-b137a8ca5032eb80 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-libintl.awk-b2db0632380ebe40 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-readable.awk-b70069a3e665b138 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-licenses-gawk-LICENSE.LGPLv2-b895a937ec301d0b +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-rewind.awk-b8c57b670106503b +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-join.awk-c7dbc647a58dabc4 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-bin-gawk-ccf8149a99c484d8 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-bits2str.awk-d88ffa74f0eff1d1 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-ordchr.so-ddad3f739bf562ea +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-libexec-awk-grcat-df55418deebcbbbf +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-noassign.awk-e0733a78555e7645 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-cliff-rand.awk-e22d35c56b593ef6 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-intdiv.so-e919f9a093a171e9 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-readdir.so-e91b9b9aa807282e +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-strtonum.awk-f0548bc6bc6e499a +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-licenses-gawk-LICENSE.GPLv2-f0bd1cf4dcfe5398 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-lib64-gawk-revtwoway.so-f343f4c17452b404 +Relationship: SPDXRef-Package-rpm-gawk-92ce7936acd8b933 CONTAINS SPDXRef-File-usr-share-awk-assert.awk-f91c6ed6a45a0255 +Relationship: SPDXRef-Package-python-crit-93303bae4b0d7b38 OTHER SPDXRef-File-...crit-3.18-py3.6.egg-info-PKG-INFO-c2616591addfe5cd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.namespace.service-933eff1b00233d81 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.namespace.service-1.0.81.jar-c3524ae3f0bb574d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dbus-glib-93aad31cdc4b7d7c CONTAINS SPDXRef-File-usr-lib64-libdbus-glib-1.so.2.3.4-017d3f1b219e5313 +Relationship: SPDXRef-Package-rpm-dbus-glib-93aad31cdc4b7d7c CONTAINS SPDXRef-File-usr-bin-dbus-binding-tool-41c76be09a3e351c +Relationship: SPDXRef-Package-rpm-dbus-glib-93aad31cdc4b7d7c CONTAINS SPDXRef-File-usr-share-licenses-dbus-glib-COPYING-51c1cb7f52e0c249 +Relationship: SPDXRef-Package-rpm-dbus-glib-93aad31cdc4b7d7c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen-94107ffafc593492 OTHER SPDXRef-File-...com.ibm.ws.config.server.schemagen-1.0.81.jar-03932bf40ecb0eb7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact.equinox.module-95cb364cc6fdeb96 OTHER SPDXRef-File-...com.ibm.ws.artifact.equinox.module-1.0.81.jar-32f241197a65e965 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libseccomp-9637380e6a0d0e55 CONTAINS SPDXRef-File-usr-lib64-libseccomp.so.2.5.2-37fbde766f7b4a09 +Relationship: SPDXRef-Package-rpm-libseccomp-9637380e6a0d0e55 CONTAINS SPDXRef-File-usr-share-licenses-libseccomp-LICENSE-a6bcf740b8b25082 +Relationship: SPDXRef-Package-rpm-libseccomp-9637380e6a0d0e55 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-gzip-06f34d6435b7d12e +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-share-licenses-gzip-fdl-1.3.txt-10717af3075e8dac +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zgrep-10ed544e03c1bcb1 +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zless-1f190d5d92ce93f4 +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zforce-3346e80100b79bf4 +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zdiff-4b3640ff665ea58d +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-etc-profile.d-colorzgrep.sh-59cbe5208d0b48cd +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zcmp-5a44d19348a1d47e +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zmore-6c71d895d8b23f6f +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-share-licenses-gzip-COPYING-6fce93e7a41cd8e9 +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zfgrep-7144d81e60b4344b +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zegrep-88685e006381f799 +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-gzexe-b57fa495b2db7dc3 +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-znew-b5d7fca1d959f9ec +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-zcat-be2b8596ff764e1b +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-etc-profile.d-colorzgrep.csh-c4a6f677e5533a33 +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gzip-96776ea0534048fb CONTAINS SPDXRef-File-usr-bin-gunzip-fb01a37017cc5581 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.event-9764d1dd8f849ae9 OTHER SPDXRef-File-...ol-wlp-lib-com.ibm.ws.event-1.0.81.jar-1667fd4b324baaa0 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.jsonb.service-9834690d13a040c2 OTHER SPDXRef-File-...com.ibm.ws.jsonb.service-1.0.81.jar-2f0df6f3e2cc539a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-org.eclipse.osgi-98c62e474bd18238 OTHER SPDXRef-File-...wlp-lib-org.eclipse.osgi-3.18.300.jar-3fa98d9efa9af05e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.utility.securityutil-98d95b7cb8d7f646 OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-securityutil.jar-d47265613f76c274 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact.file-98f364289079cd2b OTHER SPDXRef-File-...com.ibm.ws.artifact.file-1.0.81.jar-b2cdc51fea663cd3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.security.jaas.internal.common-99399c598d276da1 OTHER SPDXRef-File-...io.openliberty.security.jaas.internal.common-1.0.81.jar-d850e02edc56f08f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.wab.jakarta-99f6997896fda028 OTHER SPDXRef-File-...com.ibm.ws.app.manager.wab.jakarta-1.0.81.jar-f6e84fa2d4205419 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-dbus-python-9a2539d64666884c OTHER SPDXRef-File-...PKG-INFO-7a7b9cef2a4515d9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-PySocks-9a572bb052f6e9e4 OTHER SPDXRef-File-...PySocks-1.6.8-py3.6.egg-info-PKG-INFO-8b161028d1df54f7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.authorization.builtin-9a610721379b7e83 OTHER SPDXRef-File-...com.ibm.ws.security.authorization.builtin-1.0.81.jar-53541811010d5d82 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-serverSchemagen-9b02db7a319b708c OTHER SPDXRef-File-...com.ibm.ws.config.server.schemagen-1.0.81.jar-03932bf40ecb0eb7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 CONTAINS SPDXRef-File-etc-dbus-1-system.conf-3243a3319d33a9c3 +Relationship: SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 CONTAINS SPDXRef-File-etc-dbus-1-session.conf-44c8f8cbf4737db1 +Relationship: SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 CONTAINS SPDXRef-File-usr-share-dbus-1-session.conf-4b66d7377a4595a5 +Relationship: SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 CONTAINS SPDXRef-File-usr-lib-sysusers.d-dbus.conf-6f36638e025d0b1d +Relationship: SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 CONTAINS SPDXRef-File-usr-share-dbus-1-system.conf-7c250a6c32657e70 +Relationship: SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.anno-9b254ddbce79a975 OTHER SPDXRef-File-...ol-wlp-lib-com.ibm.ws.anno-1.1.81.jar-0955563bba5dace9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-65-fonts-persian.conf-016594a31cc81ab6 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-scan.1.gz-068073dc3a769c71 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-60-latin.conf-0939a55bd44e2390 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-10-unhinted.conf-0a143f82975232e6 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-cache-64-0b13f3e18cfd3249 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-11-lcdfilter-default.conf-128a9adad30fe5d5 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...doc-fontconfig-fontconfig-user.html-14c1cb398678c2a4 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-doc-fontconfig-AUTHORS-1ce8db0073822ab8 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-69-unifont.conf-21e995f228891de2 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-20-unhint-small-vera.conf-2229f74d3965bb92 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-51-local.conf-240d77f0a243f3ed +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-65-nonlatin.conf-2c761a67a43515ae +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...doc-fontconfig-fontconfig-user.txt-3985533ea47ce64c +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-sub-pixel-bgr.conf-3c875c213e7e28ac +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-cache-45e1370509e37260 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-49-sansserif.conf-47fe978d4ff84707 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-doc-fontconfig-README-4df10b06fdadb1f7 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-70-no-bitmaps.conf-50775690e31f87b7 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-sub-pixel-rgb.conf-5b6fcf3fd529ad78 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-11-lcdfilter-light.conf-5ec8259e64366658 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-lib64-libfontconfig.so.1.12.0-5f288ae5f818ef3f +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-conflist.1.gz-5f65c9ad6bfde265 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-scan-664196b1474edff7 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-sub-pixel-vbgr.conf-6a425c075f71bf0a +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-cat.1.gz-6d4550c9e8ad2366 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-60-generic.conf-6f367f5fd3e6c7d6 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-hinting-slight.conf-755568bbb96cc759 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-conflist-87489a904cbaf170 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-etc-fonts-fonts.conf-8e59c78284664d67 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-no-sub-pixel.conf-9117d4da3793e56e +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-40-nonlatin.conf-9524683e2a7ad0e5 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-hinting-none.conf-978db3c104c6381d +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-65-khmer.conf-9980d7aeecacd4cc +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-cat-9bac35ace24999f8 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-pattern-9bc515d2c84af8f4 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-list-9e987c5cde6fc5d4 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-xml-fontconfig-fonts.dtd-9f03c0e178ff762a +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-match-9f650f46f435e2a6 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-hinting-full.conf-a28b50cbb64c6373 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-45-generic.conf-a485f97d1f252997 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-10-autohint.conf-a72910a255b21d6c +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-90-synthetic.conf-ad4861d60c32c08f +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-sub-pixel-vrgb.conf-aebc2d8b8639a8da +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-match.1.gz-b05a32901284c2b1 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-45-latin.conf-b2d5db3c81a50037 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-scale-bitmap-fonts.conf-bbcfc32a1eb7e26d +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-cache.1.gz-bdca42b293ea35a2 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-validate.1.gz-be02b7ff0bb1cacb +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-80-delicious.conf-be742a98b07c7196 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...fontconfig-conf.avail-50-user.conf-c329acc0ab92a5e7 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-70-yes-bitmaps.conf-c9a1af80cc4a540a +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-11-lcdfilter-legacy.conf-d3aee102dd226900 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-10-hinting-medium.conf-d4bd022fe7ce3c8a +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-query.1.gz-d8ba7fbe8babdcb5 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-pattern.1.gz-dcd911bf4cde60c4 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-25-unhint-nonlatin.conf-e01b74c0b724899e +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man5-fonts-conf.5.gz-e2f8f6d300bafbd4 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-...conf.avail-30-metric-aliases.conf-e4d4e64106df6dde +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-query-ea3b26791dfb86d6 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-man-man1-fc-list.1.gz-ef1ffb79dd3e768e +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-bin-fc-validate-f358adee20bc97f9 +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-usr-share-licenses-fontconfig-COPYING-f5a9c6adfb07d43d +Relationship: SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 CONTAINS SPDXRef-File-etc-fonts-conf.d-README-fd67fb715fb7558c +Relationship: SPDXRef-Package-rpm-libmodulemd-9c9ffed1c422836c CONTAINS SPDXRef-File-usr-lib64-libmodulemd.so.2.13.0-2451e16dc8f4a035 +Relationship: SPDXRef-Package-rpm-libmodulemd-9c9ffed1c422836c CONTAINS SPDXRef-File-...girepository-1.0-Modulemd-2.0.typelib-7dd8603e9e37430a +Relationship: SPDXRef-Package-rpm-libmodulemd-9c9ffed1c422836c CONTAINS SPDXRef-File-usr-bin-modulemd-validator-d9ef2fee55f31fe9 +Relationship: SPDXRef-Package-rpm-libmodulemd-9c9ffed1c422836c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libmodulemd-9c9ffed1c422836c CONTAINS SPDXRef-File-usr-share-licenses-libmodulemd-COPYING-f0f30c22fec63858 +Relationship: SPDXRef-Package-rpm-npth-9ce2662d05a994e8 CONTAINS SPDXRef-File-usr-share-licenses-npth-COPYING.LIB-546832545ae59d9e +Relationship: SPDXRef-Package-rpm-npth-9ce2662d05a994e8 CONTAINS SPDXRef-File-usr-lib64-libnpth.so.0.1.1-b61444a39103cffd +Relationship: SPDXRef-Package-rpm-npth-9ce2662d05a994e8 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-crit-9d9ae1c0b26b6359 OTHER SPDXRef-File-...crit-3.18-py3.6.egg-info-PKG-INFO-4820f3c33a6f53c6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.jsonb.3.0-9dd0dc9b16e624f7 OTHER SPDXRef-File-...io.openliberty.jakarta.jsonb.3.0-1.0.81.jar-6416f8e14fec8e90 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---euctwfreq.cpython-36.pyc-01ec29ed6b7dc91f +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---chardetect.cpython-36.pyc-021306676da3ac2b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---cp949prober.cpython-36.pyc-036a0b06dc05cb5d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...charsetprober.cpython-36.pyc-0cf46994b9835531 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langhebrewmodel.cpython-36.pyc-0cff3d20f6be00be +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...utf8prober.cpython-36.opt-1.pyc-0df7a3f12e4fddaa +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...latin1prober.cpython-36.pyc-0fdc25fe63fb0e8f +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-euckrfreq.py-117b36287525800d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---jpcntx.cpython-36.pyc-12ba9770429e33cb +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---enums.cpython-36.opt-1.pyc-14caf48a1f99f4b1 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-cp949prober.py-14ecbdf95218eeca +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...mbcsgroupprober.cpython-36.opt-1.pyc-17d702cacac850c0 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-langhungarianmodel.py-18073081b68a426e +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-langhebrewmodel.py-1910e46ebc396a3f +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1d4ed8f2bd640cf7 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...gb2312prober.cpython-36.opt-1.pyc-1da7123b5113e842 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-latin1prober.py-1edc209670cd00a4 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---escsm.cpython-36.pyc-23add3b075a622a0 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-euckrprober.py-23f0db76aab5b05d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...escprober.cpython-36.opt-1.pyc-246c61b273b3150b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-langcyrillicmodel.py-2af0335aa3d37b56 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---euctwprober.cpython-36.pyc-2f2ec5bec4a67ce5 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...mbcsgroupprober.cpython-36.pyc-3395ba24a146b8d6 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...dependency-links.txt-34208653ef4c7e36 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...euctwfreq.cpython-36.opt-1.pyc-35c4bda7afbc4bf2 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...share-licenses-python3-chardet-LICENSE-3616888ab83fbf26 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...universaldetector.cpython-36.pyc-36367aed0dd54928 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...sbcharsetprober.cpython-36.opt-1.pyc-3af0d10fdecb79ae +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langbulgarianmodel.cpython-36.opt-1.pyc-3c3cad204266878d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-cli---init--.py-3f2d107ac70bad08 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...hebrewprober.cpython-36.opt-1.pyc-420875c2d006ba8d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-eucjpprober.py-48833a787df52f17 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langthaimodel.cpython-36.pyc-489587cfc2f465af +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...sbcharsetprober.cpython-36.pyc-4b7b3d6f50cb5a77 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...jpcntx.cpython-36.opt-1.pyc-4ef1c74e47f92fc5 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...compat.cpython-36.opt-1.pyc-51227cd82c255ecd +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-cli-chardetect.py-52b805fe7364f955 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---euckrfreq.cpython-36.pyc-548987825caab329 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---version.cpython-36.pyc-54d69ae0d3490211 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---gb2312freq.cpython-36.pyc-553cda828fdb4838 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...codingstatemachine.cpython-36.opt-1.pyc-55c35a28c3ee2159 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-codingstatemachine.py-568f3507c4831e9b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-59bc3c44c60fe58d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langturkishmodel.cpython-36.opt-1.pyc-5ae01334eadf7aea +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...entry-points.txt-5b09e5e7a661613f +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---sjisprober.cpython-36.pyc-5c66e54d0b9ebb0c +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-langthaimodel.py-5ec2d1d9b7c66d69 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---big5freq.cpython-36.pyc-5fc062249ff0ac1b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardistribution.cpython-36.opt-1.pyc-61b102bcc639c94b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...sjisprober.cpython-36.opt-1.pyc-64dcd5d6aba17bf0 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...euckrfreq.cpython-36.opt-1.pyc-6c9334caefcc9279 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langthaimodel.cpython-36.opt-1.pyc-6cab9377f73f5cb9 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-sbcsgroupprober.py-6e9572a23062eaae +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-escprober.py-735974d53e13832a +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-euctwfreq.py-7836f65cc043a2f8 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-big5freq.py-785b984e7f856e1d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langgreekmodel.cpython-36.pyc-7880d6776d906dd0 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---compat.cpython-36.pyc-7976c9c7869e0fef +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-langbulgarianmodel.py-7a8a63ca4f8a6838 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...universaldetector.cpython-36.opt-1.pyc-7effd3b8f9fe4e2b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...gb2312freq.cpython-36.opt-1.pyc-7fc82cd97f76ce1e +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---jisfreq.cpython-36.pyc-8084f996e6504216 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-sbcharsetprober.py-842683127bc2fa68 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---utf8prober.cpython-36.pyc-896f11f4c393377a +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...eucjpprober.cpython-36.opt-1.pyc-8c9f3f3c1c795b35 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...jisfreq.cpython-36.opt-1.pyc-8e84eafda54c21f6 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langturkishmodel.cpython-36.pyc-92411396dbff78ef +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-jisfreq.py-92478905f1bfa757 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...SOURCES.txt-93cff17b12ad307e +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-3.0.4-py3.6.egg-info-PKG-INFO-944ffd667cc9db41 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...cp949prober.cpython-36.opt-1.pyc-997094c4ea4db302 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---mbcssm.cpython-36.pyc-9975631a8b88776a +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-chardistribution.py-9af06b5487ec8414 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...sbcsgroupprober.cpython-36.opt-1.pyc-9c6398ab3688d09a +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...euckrprober.cpython-36.opt-1.pyc-9c9187b485f11e81 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-jpcntx.py-9ce8763aa56e3a0a +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langcyrillicmodel.cpython-36.opt-1.pyc-9e0e73402d269897 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-charsetprober.py-9eccef2b20601d1d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---eucjpprober.cpython-36.pyc-a054dc26ea0ece40 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...charsetgroupprober.cpython-36.pyc-a34378488fbb1c6f +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a3e27755e22c8c6b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a4db67ac49b75764 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langcyrillicmodel.cpython-36.pyc-ad1332265a008256 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langbulgarianmodel.cpython-36.pyc-ad14a1628de3ac96 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---enums.cpython-36.pyc-adad0f344df891ca +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardetect.cpython-36.opt-1.pyc-b0f2949cdb9efa6b +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-b1d6823ef3c8ab3a +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet---init--.py-b233a87ee2864281 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...gb2312prober.cpython-36.pyc-b4dfd5cf66ce8ba3 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...charsetgroupprober.cpython-36.opt-1.pyc-b58dee54b498fefd +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-escsm.py-b748feed553f81f4 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-version.py-b88482637a98a3b2 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...mbcharsetprober.cpython-36.opt-1.pyc-b8a38f7167e22e44 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-hebrewprober.py-b8b21a721b4afba9 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-enums.py-bd3955311fc5f4f4 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-sjisprober.py-bda4de4f382e401c +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---escprober.cpython-36.pyc-c114164f79d01fd4 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langhungarianmodel.cpython-36.pyc-c1fee2ad84e5e557 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-charsetgroupprober.py-c2ac137fbbbf4827 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langhebrewmodel.cpython-36.opt-1.pyc-c5a1314a69aa0a47 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---euckrprober.cpython-36.pyc-c946f7dfdc923455 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...mbcharsetprober.cpython-36.pyc-caf247091c838d96 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...top-level.txt-cb4c5d137c1d7af6 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-gb2312prober.py-cb6d1eb9bd047000 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...mbcssm.cpython-36.opt-1.pyc-cca7615f470c9c4e +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-universaldetector.py-ce856d8f42868c6c +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-langturkishmodel.py-cf6a24a0d5dfd507 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...euctwprober.cpython-36.opt-1.pyc-d43d4fd63188f808 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...codingstatemachine.cpython-36.pyc-d46531d8ea3bbe8d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-usr-bin-chardetect-d6e390daf0ddc264 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-mbcharsetprober.py-d7758d23b20b448f +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-big5prober.py-d7b24a180a3dcb41 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-utf8prober.py-d7b4ea1ade196b51 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...hebrewprober.cpython-36.pyc-d886077e0ebd8313 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langhungarianmodel.cpython-36.opt-1.pyc-d9bf6f3addf3fd45 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...big5prober.cpython-36.opt-1.pyc-dbc1f1059b2f9296 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---escsm.cpython-36.opt-1.pyc-dd62f93107b82041 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...--pycache---big5prober.cpython-36.pyc-de2efe71ef2b5179 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-compat.py-df58ff3dfbebeba8 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...charsetprober.cpython-36.opt-1.pyc-e2c3a2635db75f0c +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-mbcsgroupprober.py-e34e84952974b9d2 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardistribution.cpython-36.pyc-e5d45547f87068be +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...latin1prober.cpython-36.opt-1.pyc-ec145475e303db5d +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...langgreekmodel.cpython-36.opt-1.pyc-f2142b82c6cb5b8e +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-mbcssm.py-f3d53240b96685d1 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...chardet-langgreekmodel.py-f5c0a0517b485775 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-gb2312freq.py-f79fc118407a4044 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...big5freq.cpython-36.opt-1.pyc-f8c662d8371ca277 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...site-packages-chardet-euctwprober.py-f9504d477e9fa2d1 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa CONTAINS SPDXRef-File-...sbcsgroupprober.cpython-36.pyc-fed766634c35c156 +Relationship: SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa OTHER SPDXRef-Package-python-chardet-ff941a34dc8ad898 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.transport.http-9ecc2b0be781ef45 OTHER SPDXRef-File-...com.ibm.ws.transport.http-1.0.81.jar-2418357cc9cb45a3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-usr-share-cracklib-cracklib.magic-07b3c000f80881ce +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-usr-sbin-cracklib-packer-30a254ccb5506d00 +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-usr-sbin-cracklib-check-44fb50efdc6e3f98 +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-usr-sbin-cracklib-format-5c9ba3451440e818 +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-...share-licenses-cracklib-COPYING.LIB-a225e1610abf435e +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-usr-sbin-create-cracklib-dict-a3d3c852c66c8daa +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-usr-sbin-cracklib-unpacker-af6a1a3ebb75f441 +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d CONTAINS SPDXRef-File-usr-lib64-libcrack.so.2.9.0-e16c1ec46c8d019b +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...bitstream.cpython-36.opt-1.pyc-05ba05489294a279 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-m2cryptossl.py-08c311aa8596c8df +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---ourjson.cpython-36.pyc-0936052f1564141b +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---certificate.cpython-36.pyc-0a324636ddbf7d7b +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...huffman.cpython-36.opt-1.pyc-0c609c4a1ece42b2 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...logutil.cpython-36.opt-1.pyc-0c6c3e0c350392c8 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-pathtree.py-0cf57ed033cfd574 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---https.cpython-36.opt-1.pyc-17d1d302d17d254b +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-logutil.py-2a10b36747e053f4 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm---init--.py-2ca38ae01e5c8f4c +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-profile.py-32c453b713b47926 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-m2cryptohttp.py-36975be258600118 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-38e1bb4a31f86fef +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...certificate.cpython-36.opt-1.pyc-3af58bbad1e70c5b +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---bitstream.cpython-36.pyc-3dd45cbc0c2096bb +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-connection.py-3f1cc26b529013af +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...rhsm---pycache---utils.cpython-36.pyc-44c17ab5e35115a5 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---huffman.cpython-36.pyc-4c814923c83a7231 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...m2cryptohttp.cpython-36.pyc-59178187bcde1cc7 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-5fcc3a466c4cbaa1 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...python3.6-site-packages-rhsm-utils.py-648308bac9b094d4 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---logutil.cpython-36.pyc-6e9dc51ac5c94353 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---pathtree.cpython-36.pyc-7a11b66f448a55bc +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...ourjson.cpython-36.opt-1.pyc-832d0162dc2d027f +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---connection.cpython-36.pyc-84a17137488311f8 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...certificate2.cpython-36.opt-1.pyc-993235f0ed0a1c75 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...rhsm---pycache---https.cpython-36.pyc-99886d4947b8a20f +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-bitstream.py-a4765f588f5d7897 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-certificate.py-a4e189ddac998dc9 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---m2cryptossl.cpython-36.pyc-a69ff3ac0ae372a5 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-certificate2.py-ab1552628de260a5 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...config.cpython-36.opt-1.pyc-acb27124d1b5e395 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...python3.6-site-packages-rhsm-config.py-afacaf102033d30e +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...rhsm---pycache---config.cpython-36.pyc-b5e89e39c7d75ff5 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...python3.6-site-packages-rhsm-https.py-b8ee76de7a811176 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...-certificate.cpython-36m-x86-64-linux-gnu.so-bd2007c0144efb98 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...m2cryptossl.cpython-36.opt-1.pyc-be40d8853534eb68 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-ourjson.py-c8b160808df8a8e3 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache---profile.cpython-36.pyc-ca61ad942ed21c38 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...connection.cpython-36.opt-1.pyc-cc549009937e0af3 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...profile.cpython-36.opt-1.pyc-ecf011d2fdd6a7e5 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...pathtree.cpython-36.opt-1.pyc-ef73d7ae28d3ba69 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...certificate2.cpython-36.pyc-f267e771ee91fda9 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...m2cryptohttp.cpython-36.opt-1.pyc-f3ce615434e55ac5 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...site-packages-rhsm-huffman.py-f5c0a5ad07e2b730 +Relationship: SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-f9af71a26830833d +Relationship: SPDXRef-Package-python-python-dmidecode-9f1510382966a14d OTHER SPDXRef-File-...python-dmidecode-3.12.2-py3.6.egg-info-48a8a1d3752813a7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.basics-9f1f28ba07ffddec OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.basics-1.4.81.jar-00605df85686e2c5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.xmlBinding.4.0-9f8511fbe5569dad OTHER SPDXRef-File-...io.openliberty.jakarta.xmlBinding.4.0-1.0.81.jar-81a52a01a936b593 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg---pycache---util.cpython-36.pyc-006323b9c10a6675 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg---pycache---gpgme.cpython-36.pyc-009f9314e3f5f94d +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---util.cpython-36.opt-1.pyc-010be6e638bc766a +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-constants-sigsum.py-0546504b1c11cdc4 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---pk.cpython-36.opt-1.pyc-057c9b6695ba5158 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-058fe2df355d8003 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...python3.6-site-packages-gpg-version.py-086e09896c711c32 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-constants-keysign.py-097bb99af31d4f10 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-constants-status.py-0c56ce162cadf1e1 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-sig-mode.py-0e59fbe30d7db75d +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...-gpgme.cpython-36m-x86-64-linux-gnu.so-0fb42b583610e8e7 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...create.cpython-36.opt-1.pyc-1016f72f3d3568d0 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...python3.6-site-packages-gpg-results.py-142df2fa7990e6c6 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-167327a68733a5a8 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d OTHER SPDXRef-Package-python-gpg-176c74855eaee639 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...validity.cpython-36.opt-1.pyc-1b9dae516173509f +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-tofu---init--.py-1f0aef71d771e992 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-sig---init--.py-23a43b1aa1887dda +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---core.cpython-36.opt-1.pyc-24879659fcb09933 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...results.cpython-36.opt-1.pyc-24f5d24afb8202e3 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---notation.cpython-36.pyc-27adffe15bacccc6 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...sigsum.cpython-36.opt-1.pyc-2cfbf0eafb825904 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---md.cpython-36.pyc-2e996ac0575e59de +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---status.cpython-36.pyc-2f505bf727ce5785 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-keylist---init--.py-312085910975516b +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---gpgme.cpython-36.opt-1.pyc-3e074d757fd07303 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---event.cpython-36.opt-1.pyc-43a00089c59d0a5d +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---import-type.cpython-36.pyc-43ee3fb4d4dade4a +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-46df96ad39cd366c +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---mode.cpython-36.pyc-4d51436ee9789481 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...protocol.cpython-36.opt-1.pyc-529e1c2ed8f954d5 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-data---init--.py-547aa19715941390 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-tofu-policy.py-56cc8f0d32e9627c +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg---pycache---version.cpython-36.pyc-56d246cd4bfac3bd +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---md.cpython-36.opt-1.pyc-63a632a26016d43a +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-sig-notation.py-64017266c2d25e54 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-660b9c4a1d1cddb4 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---keysign.cpython-36.pyc-668409ebf746e911 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-protocol.py-686f5683f74a1b2f +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg---pycache---core.cpython-36.pyc-693c7390167184b5 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---mode.cpython-36.opt-1.pyc-6ad5aa4142791521 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-78c680e3933ebe01 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...sig---pycache---mode.cpython-36.pyc-81479874552ee83e +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-constants-pk.py-82ecf9c7c90cb292 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-8675a0b2164add55 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---callbacks.cpython-36.pyc-87d3f4586a48ab25 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...import-type.cpython-36.opt-1.pyc-87f9ddc2aeaaf9b4 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-8a03cbb86f6477e3 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...errors.cpython-36.opt-1.pyc-8a5a4d5f7121ddfc +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-8a7ae778ffac5971 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...version.cpython-36.opt-1.pyc-8b3adb7cbf896bb7 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...python3.6-site-packages-gpg-util.py-94daa32cccbc488a +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...keysign.cpython-36.opt-1.pyc-95862abcc30e4edb +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...python3.6-site-packages-gpg-errors.py-a399ab8b16cb5327 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...python3.6-site-packages-gpg-gpgme.py-a59309da917b1c80 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...policy.cpython-36.opt-1.pyc-a873b1f413ba6502 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-ae3bd0c36f9be65d +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---create.cpython-36.pyc-aed88758b062dddc +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-constants-create.py-b4e61a8720c7daaf +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants---init--.py-b52d57b21175bf58 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg---pycache---results.cpython-36.pyc-b55a38f9745c5abe +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...status.cpython-36.opt-1.pyc-b8b7f3280c874b9f +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-keylist-mode.py-bc34c229b5ce82ef +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---pk.cpython-36.pyc-bc8b09f4247a1b4f +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...tofu---pycache---policy.cpython-36.pyc-bd017b73cbc27fe8 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-import-type.py-bd4b678ac3d8143b +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-validity.py-c1468068592f70f3 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg---init--.py-c3d733d6f371e99a +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg---pycache---errors.cpython-36.pyc-c641bcea594d9ab5 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...callbacks.cpython-36.opt-1.pyc-c78968ac91f3ebb1 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---mode.cpython-36.opt-1.pyc-c7cec218ab910c4b +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---protocol.cpython-36.pyc-c94efeafd048aa94 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...encoding.cpython-36.opt-1.pyc-d4fde4949f0e0e03 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-d7dee6bf1a6bc7f3 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...python3.6-site-packages-gpg-core.py-d87c22c6ae6c74bd +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d8d3d7017758f9ca +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-1.13.1-py3.6.egg-info-da7717d7cf43e5e6 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...notation.cpython-36.opt-1.pyc-db0c429f4bc96837 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-callbacks.py-e65cbced916bd891 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-constants-md.py-e7120909c9c1cc8b +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-eb2f82046aa36632 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...gpg-constants-data-encoding.py-ebea7cbad3e1afa0 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...site-packages-gpg-constants-event.py-f4771a9d5d811f44 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---sigsum.cpython-36.pyc-f4922ec0737a8c60 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---encoding.cpython-36.pyc-f6a4fd42fcbc6406 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---validity.cpython-36.pyc-f76f8c655af030a3 +Relationship: SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d CONTAINS SPDXRef-File-...--pycache---event.cpython-36.pyc-fa1c25f890d7ca81 +Relationship: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.monitor.internal-a00da8d5e98c46b3 OTHER SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.monitor.internal-1.0.81.jar-791dac2205f89200 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gdbm-libs-a01746ed3caeb940 CONTAINS SPDXRef-File-usr-share-licenses-gdbm-libs-COPYING-3da27d23b4dbf44b +Relationship: SPDXRef-Package-rpm-gdbm-libs-a01746ed3caeb940 CONTAINS SPDXRef-File-usr-lib64-libgdbm.so.6.0.0-5ff81c04ddf8f15b +Relationship: SPDXRef-Package-rpm-gdbm-libs-a01746ed3caeb940 CONTAINS SPDXRef-File-usr-lib64-libgdbm-compat.so.4.0.0-958e504d250f6ce7 +Relationship: SPDXRef-Package-rpm-gdbm-libs-a01746ed3caeb940 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.archive-a0bf24de56dfbcf3 OTHER SPDXRef-File-...com.ibm.ws.kernel.boot.archive-1.0.81.jar-88cc1e1259942caf +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.activation.2.1-a0e0435368e50251 OTHER SPDXRef-File-...io.openliberty.jakarta.activation.2.1-1.0.81.jar-7e4ddb9dfbc08d12 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.collector.manager-a105a18389d8c866 OTHER SPDXRef-File-...com.ibm.ws.collector.manager-1.0.81.jar-0dffa7576ee4c7e8 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 CONTAINS SPDXRef-File-...share-licenses-gnutls-COPYING.LESSER-50a7702dcd35cc6f +Relationship: SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 CONTAINS SPDXRef-File-usr-lib64-libgnutls.so.30.28.2-5bad2a698fea7652 +Relationship: SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 CONTAINS SPDXRef-File-usr-share-licenses-gnutls-LICENSE-93d7049a14bc07ea +Relationship: SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 CONTAINS SPDXRef-File-usr-lib64-.libgnutls.so.30.28.2.hmac-a636f094e6365f89 +Relationship: SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 CONTAINS SPDXRef-File-usr-share-licenses-gnutls-COPYING-ae8e616d685e7187 +Relationship: SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-bin-gsettings-013e656dcfcac800 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-bin-gio-03aae959a4a7002b +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-lib64-libgthread-2.0.so.0.5600.4-108c4a7209cc9898 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-lib64-libgio-2.0.so.0.5600.4-16accb16969b5172 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-bin-gio-querymodules-64-18d81c4c967d50c5 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-...completions-gapplication-41c7e8b4f1ae563b +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-bin-glib-compile-schemas-42ee867c7551575b +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-...bash-completion-completions-gdbus-51ecee8f3b4de042 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-lib64-libgobject-2.0.so.0.5600.4-6f35ae6103bcaf83 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-lib64-libgmodule-2.0.so.0.5600.4-783079b2953be1ca +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-...locale-en-GB-LC-MESSAGES-glib20.mo-87f6373b20ca3eec +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-bin-gdbus-8ab18f0efb7e01ff +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-...locale-en-CA-LC-MESSAGES-glib20.mo-9a8424607ee14d24 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-lib64-libglib-2.0.so.0.5600.4-e3821fcda866e7c6 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-...bash-completion-completions-gsettings-e9f9c8acbde8abd8 +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-share-licenses-glib2-COPYING-f01954096e9d888e +Relationship: SPDXRef-Package-rpm-glib2-a1907d769a35de0a CONTAINS SPDXRef-File-usr-bin-gapplication-fc933c4ddc7dc091 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.javaee.jcache.1.1.core.jakarta-a1abca5528994e35 OTHER SPDXRef-File-...com.ibm.websphere.javaee.jcache.1.1.core.jakarta-1.0.81.jar-7321e500575d8af3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.region-a2e99083c724d408 OTHER SPDXRef-File-...com.ibm.ws.org.eclipse.equinox.region-1.0.81.jar-c9e9c9d13566294f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.authorization-a3796fae4626fb20 OTHER SPDXRef-File-...com.ibm.ws.security.authorization-1.0.81.jar-4fa0f72a4d54b694 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...python3.6-site-packages-rpm--rpmb.so-03d081fa7402fb6c +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...site-packages-rpm-transaction.py-12644e8588f79c53 +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...transaction.cpython-36.opt-1.pyc-14d87bb59e07b5e7 +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...site-packages-rpm---init--.py-1e2144e761f14abe +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...--pycache---transaction.cpython-36.pyc-1faf9dc9e4650d0b +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...-rpm.cpython-36m-x86-64-linux-gnu.so-2e3be79a136d31d4 +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...-rpms.cpython-36m-x86-64-linux-gnu.so-396fdbcd74cdfcfa +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...python3.6-site-packages-rpm--rpms.so-4bf790f8500ff406 +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...rpm-4.14.3-py3.6.egg-info-8792eff33893e83c +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 OTHER SPDXRef-Package-python-rpm-a5c78e59349331b5 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-b5c83f15c392af76 +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d6c0bb56f2bf99d7 +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...-rpmb.cpython-36m-x86-64-linux-gnu.so-ef1aa2ba5dbe1e2e +Relationship: SPDXRef-Package-rpm-python3-rpm-a39252013797a252 CONTAINS SPDXRef-File-...python3.6-site-packages-rpm--rpm.so-fb5c16a8dd3e1c0d +Relationship: SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 CONTAINS SPDXRef-File-usr-share-licenses-dmidecode-LICENSE-24d84dde8e782a20 +Relationship: SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 CONTAINS SPDXRef-File-usr-sbin-vpddecode-2825a01200dd5222 +Relationship: SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 CONTAINS SPDXRef-File-usr-sbin-ownership-3d7f9425a773e02b +Relationship: SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 CONTAINS SPDXRef-File-usr-sbin-biosdecode-a5c23a6ff80c8f15 +Relationship: SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 CONTAINS SPDXRef-File-usr-sbin-dmidecode-c9214f440da5bc4f +Relationship: SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.apache.commons.codec-a44140855947d054 OTHER SPDXRef-File-...io.openliberty.org.apache.commons.codec-1.15.81.jar-15b2c566b3b30f40 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-librhsm-a49d331240abf19b CONTAINS SPDXRef-File-usr-lib64-librhsm.so.0-6911efcc5dc2efdc +Relationship: SPDXRef-Package-rpm-librhsm-a49d331240abf19b OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-librhsm-a49d331240abf19b CONTAINS SPDXRef-File-usr-share-licenses-librhsm-COPYING-e20b4ca22f004cd1 +Relationship: SPDXRef-Package-rpm-glibc-minimal-langpack-a4d2f9b09ae44069 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libcomps-a4decf888fcc52e4 CONTAINS SPDXRef-File-usr-share-licenses-libcomps-COPYING-08b078b961c3e048 +Relationship: SPDXRef-Package-rpm-libcomps-a4decf888fcc52e4 CONTAINS SPDXRef-File-usr-lib64-libcomps.so.0-a4e1dd52875ac0fe +Relationship: SPDXRef-Package-rpm-libcomps-a4decf888fcc52e4 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dbus---pycache---types.cpython-36.pyc-0441077c0be5b569 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---glib.cpython-36.pyc-073bf10418187009 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache----compat.cpython-36.pyc-0a986677b22d0252 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus---init--.py-0cb76e8e6115c452 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...share-licenses-python3-dbus-COPYING-0d4ca85d14f4854a +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-exceptions.py-12d03fb4782bee36 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-connection.py-1a1dae64eb98bc88 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-1d0bd9b609d28c97 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2a726ff5eebc3cfe +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...server.cpython-36.opt-1.pyc-2ca93309455ffbbf +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...-expat-introspect-parser.cpython-36.opt-1.pyc-325431f79329a3f2 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-gi-service.py-475347b057b0c7e3 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dbus---pycache---bus.cpython-36.pyc-4958fd0d11cbc945 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...-expat-introspect-parser.cpython-36.pyc-53efe168e7a9bc85 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---glib.cpython-36.opt-1.pyc-5521343e22e8f000 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache----dbus.cpython-36.opt-1.pyc-557d39414ac22cf6 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...python3.6-site-packages-dbus-bus.py-5bde95bf22410c99 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dependency-links.txt-5e0d5e09fa6e94ad +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...SOURCES.txt-6302d665915fb284 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...gi-service.cpython-36.opt-1.pyc-647df989897a0362 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-lowlevel.py-6ff69df20019f4f9 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...PKG-INFO-7a7b9cef2a4515d9 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dbus---pycache----dbus.cpython-36.pyc-7e363825c85cebe4 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...lowlevel.cpython-36.opt-1.pyc-7f30c7fa04ce6795 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...python3.6-site-packages-dbus-glib.py-8136d2fcb1e41460 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...service.cpython-36.opt-1.pyc-847673b3ee7d6959 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus--compat.py-8da49a558aeeacbe +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-95e33392061c80b9 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages--dbus-bindings.so-9713811758c46231 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 OTHER SPDXRef-Package-python-dbus-python-9a2539d64666884c +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...python3.6-site-packages-dbus-server.py-9ada2482ffe7897a +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-9dd8ab68ae021173 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages--dbus-glib-bindings.so-9eaf3ff26456fd27 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...proxies.cpython-36.opt-1.pyc-a00dae9dafe26e9c +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---connection.cpython-36.pyc-a5d48132499aef4d +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dbus--expat-introspect-parser.py-a7e059f8050b04db +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---bus.cpython-36.opt-1.pyc-ad1f9af472e35ebf +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---glib.cpython-36.opt-1.pyc-ad8366a3c1ea6681 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-af0116cde64da19f +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-decorators.py-af076c8ebcd08032 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...-compat.cpython-36.opt-1.pyc-b23e56ede00547aa +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-proxies.py-b5ea491d65f20dc8 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---types.cpython-36.opt-1.pyc-b7d621791737748f +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dbus---pycache---server.cpython-36.pyc-b847465e3d3c5142 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...python3.6-site-packages-dbus-types.py-bbdf441e88f4df12 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---lowlevel.cpython-36.pyc-c41da0382a704773 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---decorators.cpython-36.pyc-d6ef60a2f13845e7 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...python3.6-site-packages-dbus--dbus.py-d6f5077e0458390d +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---service.cpython-36.pyc-d9d55e0c06b8406a +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-de94f03f7d461a0e +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---proxies.cpython-36.pyc-e1ceb9bef3292147 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-service.py-e4813acf4686447f +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...top-level.txt-e58da4bfa855c077 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...site-packages-dbus-mainloop-glib.py-eb2d0ab7041f3b56 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...connection.cpython-36.opt-1.pyc-f3afc782bf553906 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dbus---pycache---glib.cpython-36.pyc-f96efced44ce6b2a +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...dbus-mainloop---init--.py-fa358622cf429120 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...decorators.cpython-36.opt-1.pyc-fade188fc6255d69 +Relationship: SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 CONTAINS SPDXRef-File-...--pycache---gi-service.cpython-36.pyc-ffc9287080b7b73e +Relationship: SPDXRef-Package-python-rpm-a5c78e59349331b5 OTHER SPDXRef-File-...rpm-4.14.3-py3.6.egg-info-8792eff33893e83c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.io.smallrye.config.jakarta-a6c64dde369a4bd1 OTHER SPDXRef-File-...io.openliberty.io.smallrye.config.jakarta-1.0.81.jar-03f846e4d48fbd7d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-jansson-a6e466f321d3c5ff CONTAINS SPDXRef-File-usr-lib64-libjansson.so.4.14.0-49b29d0e6f8499a0 +Relationship: SPDXRef-Package-rpm-jansson-a6e466f321d3c5ff CONTAINS SPDXRef-File-usr-share-doc-jansson-LICENSE-4ab711e8fe621d69 +Relationship: SPDXRef-Package-rpm-jansson-a6e466f321d3c5ff CONTAINS SPDXRef-File-usr-share-doc-jansson-CHANGES-9656507ea58788b5 +Relationship: SPDXRef-Package-rpm-jansson-a6e466f321d3c5ff OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-file-libs-a73849bc58ff0d0c CONTAINS SPDXRef-File-usr-share-licenses-file-libs-COPYING-3459d60d81a56cb7 +Relationship: SPDXRef-Package-rpm-file-libs-a73849bc58ff0d0c CONTAINS SPDXRef-File-usr-lib64-libmagic.so.1.0.0-5ebcf188c0e92ed7 +Relationship: SPDXRef-Package-rpm-file-libs-a73849bc58ff0d0c CONTAINS SPDXRef-File-usr-share-misc-magic-b76d9d9e31ebadce +Relationship: SPDXRef-Package-rpm-file-libs-a73849bc58ff0d0c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-file-libs-a73849bc58ff0d0c CONTAINS SPDXRef-File-usr-share-misc-magic.mgc-ea408c7b5912acaf +Relationship: SPDXRef-Package-rpm-audit-libs-a8759a9d0a3b60da CONTAINS SPDXRef-File-etc-libaudit.conf-0ef20fca5a22065c +Relationship: SPDXRef-Package-rpm-audit-libs-a8759a9d0a3b60da CONTAINS SPDXRef-File-usr-lib64-libauparse.so.0.0.0-1246382363eb489d +Relationship: SPDXRef-Package-rpm-audit-libs-a8759a9d0a3b60da CONTAINS SPDXRef-File-...share-licenses-audit-libs-lgpl-2.1.txt-6e91cec0e26f7fb6 +Relationship: SPDXRef-Package-rpm-audit-libs-a8759a9d0a3b60da OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-audit-libs-a8759a9d0a3b60da CONTAINS SPDXRef-File-usr-lib64-libaudit.so.1.0.0-fa101d079f1e5239 +Relationship: SPDXRef-Package-rpm-cryptsetup-libs-a97447baebc7eca3 CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-cryptsetup.conf-2eed818b41d9a1c8 +Relationship: SPDXRef-Package-rpm-cryptsetup-libs-a97447baebc7eca3 CONTAINS SPDXRef-File-...share-licenses-cryptsetup-libs-COPYING-bec3a053183070e4 +Relationship: SPDXRef-Package-rpm-cryptsetup-libs-a97447baebc7eca3 CONTAINS SPDXRef-File-...licenses-cryptsetup-libs-COPYING.LGPL-c4ec8307d91dc10d +Relationship: SPDXRef-Package-rpm-cryptsetup-libs-a97447baebc7eca3 CONTAINS SPDXRef-File-usr-lib64-libcryptsetup.so.12.6.0-cb2e4894d41bc322 +Relationship: SPDXRef-Package-rpm-cryptsetup-libs-a97447baebc7eca3 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.jsonp.2.1-a9f126779846a343 OTHER SPDXRef-File-...io.openliberty.jakarta.jsonp.2.1-1.0.81.jar-6294411e0a5e34c9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.internal-aa29e6c851679007 OTHER SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.internal-1.0.81.jar-6434924c5b8d99fe +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.public.internal-ab489b83add53d04 OTHER SPDXRef-File-...io.openliberty.microprofile.metrics.5.0.public.internal-1.0.81.jar-27702236041b1855 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-binarylogviewer-ad2bec3dc6b298dd OTHER SPDXRef-File-...wlp-bin-tools-ws-binarylogviewer.jar-6b8a1c0c8ae07228 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.javaee.jsonp.1.0-ad3879053f00036f OTHER SPDXRef-File-...com.ibm.websphere.javaee.jsonp.1.0-1.0.81.jar-e0ec2b7af27e6287 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.filter-ad8eaf70eb144d78 OTHER SPDXRef-File-...io.openliberty.security.authentication.internal.filter-1.0.81.jar-b7d60e1bce2dd3f4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.distributedMap-ade50b3b5247ec64 OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.distributedMap-2.0.81.jar-faf2e170c3ad3f4c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libzstd-ae3b0f6ebfec6dfc CONTAINS SPDXRef-File-usr-lib64-libzstd.so.1.4.4-0a800f0500000ff2 +Relationship: SPDXRef-Package-rpm-libzstd-ae3b0f6ebfec6dfc CONTAINS SPDXRef-File-usr-share-licenses-libzstd-LICENSE-37124f71f1346822 +Relationship: SPDXRef-Package-rpm-libzstd-ae3b0f6ebfec6dfc CONTAINS SPDXRef-File-usr-share-licenses-libzstd-COPYING-be00669b48fb5d12 +Relationship: SPDXRef-Package-rpm-libzstd-ae3b0f6ebfec6dfc OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.repository.resolver-ae97e246e90df2d3 OTHER SPDXRef-File-...com.ibm.ws.repository.resolver-1.0.81.jar-b178255111028459 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-productutil-af521fee7557a77b OTHER SPDXRef-File-...com.ibm.ws.product.utility-1.0.81.jar-61ccc7854aca503d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-...licenses-device-mapper-COPYING.LIB-37b2524242e455fe +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-...lib-udev-rules.d-95-dm-notify.rules-6d3596fbec794f95 +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-usr-lib-udev-rules.d-13-dm-disk.rules-80e9d9d6722a9dad +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-usr-sbin-dmfilemapd-9aa799f0659cde86 +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-usr-sbin-dmsetup-9bf778f24c5ba40e +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-...share-licenses-device-mapper-COPYING-a3d1ce96fc761366 +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-usr-sbin-blkdeactivate-aa86b3251a52a033 +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 CONTAINS SPDXRef-File-usr-lib-udev-rules.d-10-dm.rules-ce438bd662f8eecf +Relationship: SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.cdi.internal.jakarta-b074d85e1d289f1c OTHER SPDXRef-File-...com.ibm.ws.cdi.internal.jakarta-1.0.81.jar-5154d278b0325d24 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta-b09eadc72583ddc7 OTHER SPDXRef-File-...com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta-1.0.81.jar-ecfd17b0ea10f69f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gdb-gdbserver-b09f80b040ee2d01 CONTAINS SPDXRef-File-usr-lib64-libinproctrace.so-3ea6d7eef0a84230 +Relationship: SPDXRef-Package-rpm-gdb-gdbserver-b09f80b040ee2d01 CONTAINS SPDXRef-File-usr-bin-gdbserver-8d21c3fb379aee6e +Relationship: SPDXRef-Package-rpm-gdb-gdbserver-b09f80b040ee2d01 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-vim-minimal-b0b67d2d41e3e7c7 CONTAINS SPDXRef-File-usr-bin-vi-1e293eaa12aef215 +Relationship: SPDXRef-Package-rpm-vim-minimal-b0b67d2d41e3e7c7 CONTAINS SPDXRef-File-etc-virc-5e8e0527a1b4ef7b +Relationship: SPDXRef-Package-rpm-vim-minimal-b0b67d2d41e3e7c7 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader-b0f068fb82bfd1a3 OTHER SPDXRef-File-...com.ibm.ws.security.audit.reader-1.0.81.jar-30697d64d9c46b5e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.io.netty-b10b2643bdb5f826 OTHER SPDXRef-File-...lib-io.openliberty.io.netty-1.0.81.jar-24b54418e6323c7b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 OTHER SPDXRef-Package-python-PyGObject-026a55989515496e +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi-repository---init--.py-08f744cdc82957ba +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi---pycache-----init--.cpython-36.pyc-0d3930eb6551b17d +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-ossighelper.cpython-36.opt-1.pyc-1419cc6907be8857 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-1d24790747007727 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...pygobject-3.28.3-py3.6.egg-info-1d5f71a5d0b43e6f +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Gdk.cpython-36.pyc-24a19287eb690a8f +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---pygtkcompat.cpython-36.pyc-2700436d18aa43c5 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...module.cpython-36.opt-1.pyc-30252ce4bf0dbd4d +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...python3.6-site-packages-gi-module.py-30935a7046ec1e66 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Gtk.cpython-36.opt-1.pyc-32e1b7896cb81752 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides-Gtk.py-38260fa4703685a0 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...pygtkcompat.cpython-36.opt-1.pyc-392f8a72f8d62552 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi---pycache----option.cpython-36.pyc-3a4c893b11baa36a +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---types.cpython-36.opt-1.pyc-3c64a70b08cf5c2d +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...python3.6-site-packages-gi--error.py-3f7bf8049452598b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-option.cpython-36.opt-1.pyc-44c36c23b2f13e67 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...GIMarshallingTests.cpython-36.pyc-45eabaa5ad5d950b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi---pycache----error.cpython-36.pyc-48d55611062ec6f5 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides-Pango.py-4a802b75426e372c +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-502495156c470092 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---pygtkcompat.cpython-36.pyc-506dd9bdd5b7173d +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi--signalhelper.py-53b3d080702ae2f0 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...keysyms.cpython-36.opt-1.pyc-54a79976851c5c46 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-pygtkcompat.py-5bcce6bcaa91f4f5 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...python3.6-site-packages-gi-types.py-5fdfd2376af5d92e +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-pygtkcompat---init--.py-64c4475f98aded71 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-error.cpython-36.opt-1.pyc-656ac6a3f5e64ada +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Gio.cpython-36.pyc-6f76b19384748f68 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...pygtkcompat.cpython-36.opt-1.pyc-701e4522cc14990c +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache----constants.cpython-36.pyc-71825a1ff0e7861a +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides-GLib.py-719484b8576568ef +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---GLib.cpython-36.opt-1.pyc-7204102418c03aec +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi--propertyhelper.py-72897f3152673167 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi--ossighelper.py-72ab285a8e0a5070 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---docstring.cpython-36.pyc-76342b2280062e7a +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides---init--.py-7bee3df00f17b653 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi--constants.py-8226255dca65c16b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...GIMarshallingTests.cpython-36.opt-1.pyc-852b08ded866e621 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...docstring.cpython-36.opt-1.pyc-877891c9edd45e50 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-constants.cpython-36.opt-1.pyc-87c88c22b0ea831b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides-Gdk.py-8979ff1a446a8872 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-8a946590ec419f3b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Pango.cpython-36.pyc-8c2be6045c695ceb +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Gdk.cpython-36.opt-1.pyc-8dbafcabb1605bfb +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides-Gio.py-9182aa0368982269 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi-overrides-GIMarshallingTests.py-9325bca5bca008f0 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-95490423f0e8362e +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...python3.6-site-packages-gi--option.py-9648d54b9889e245 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...importer.cpython-36.opt-1.pyc-96a74b3602a48def +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-991a943cc552a54c +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Gio.cpython-36.opt-1.pyc-9a36088d0e5345bb +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi--gi.cpython-36m-x86-64-linux-gnu.so-a3d3e88ec83b7e96 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-a48bc122290710a1 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---keysyms.cpython-36.pyc-a6b6fce7acfc37f0 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...python3.6-site-packages-gi-importer.py-aca621f2980e97cc +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-propertyhelper.cpython-36.pyc-bc86d05c758d0d0b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-bfa0723d249dc339 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi---pycache---module.cpython-36.pyc-c014e57b0363e3a2 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...generictreemodel.cpython-36.pyc-c1289a1e19b8803e +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---GLib.cpython-36.pyc-c32af2c3793e4da3 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-ossighelper.cpython-36.pyc-c62121e22cac93a0 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi---pycache---importer.cpython-36.pyc-c7798c3b620348e6 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Gtk.cpython-36.pyc-c872bba1932daff5 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---Pango.cpython-36.opt-1.pyc-c89cf57abf393eb5 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...gi---pycache---types.cpython-36.pyc-cb2d375bd766f51a +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides-GObject.py-cc08ac9cf7589868 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...--pycache---GObject.cpython-36.pyc-cc3cc2f678fd384b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...licenses-python3-gobject-base-COPYING-cee0c632d76d1b00 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-overrides-keysyms.py-cf92e44a71621f62 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...site-packages-gi-docstring.py-d18938519e168eec +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...GObject.cpython-36.opt-1.pyc-d3bc2519aaefab29 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...generictreemodel.cpython-36.opt-1.pyc-d769729b234ec73f +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...python3.6-site-packages-gi---init--.py-da6015be81246769 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...pygtkcompat-generictreemodel.py-eb709269a8cf9cbf +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-signalhelper.cpython-36.opt-1.pyc-f08dc062e0adcf7c +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-propertyhelper.cpython-36.opt-1.pyc-f629911f346aad0b +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...pygtkcompat-pygtkcompat.py-f6e50818fe4e2437 +Relationship: SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 CONTAINS SPDXRef-File-...-signalhelper.cpython-36.pyc-f83ecdf22f060f92 +Relationship: SPDXRef-Package-python-iniparse-b1ac8ab06cf60d46 OTHER SPDXRef-File-...iniparse-0.4-py3.6.egg-info-PKG-INFO-5f333130ccbc4458 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.app.manager-b2135968a1d4f442 OTHER SPDXRef-File-...lib-com.ibm.ws.app.manager-1.1.81.jar-a2c6abb966c1213b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 CONTAINS SPDXRef-File-usr-lib64-libgpgme.so.11.22.1-9288129581acc3da +Relationship: SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 CONTAINS SPDXRef-File-...share-licenses-gpgme-COPYING.LESSER-aee333a719c63551 +Relationship: SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 CONTAINS SPDXRef-File-usr-share-licenses-gpgme-COPYING-c6143780d3b875f7 +Relationship: SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 CONTAINS SPDXRef-File-usr-bin-gpgme-json-d26572c526407a05 +Relationship: SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 CONTAINS SPDXRef-File-usr-share-licenses-gpgme-LICENSES-e53f45b6f8796abf +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.registry.basic-b27fa9bc88ae39a8 OTHER SPDXRef-File-...com.ibm.ws.security.registry.basic-1.0.81.jar-55db95d181ccd6ac +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-productutil-b3b1a307ad9a854d OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-productutil.jar-ed699c86ff9a98ec +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.repository.liberty-b3fcdb956d882ddd OTHER SPDXRef-File-...com.ibm.ws.repository.liberty-1.0.81.jar-caae228d9c07ff34 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.event-b4eae56772edbbe1 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.event-1.0.81.jar-d83d5f46cae30c59 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libssh-config-b52f1724c9af9daa CONTAINS SPDXRef-File-etc-libssh-libssh-client.config-31e32e16fdea192f +Relationship: SPDXRef-Package-rpm-libssh-config-b52f1724c9af9daa OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libssh-config-b52f1724c9af9daa CONTAINS SPDXRef-File-etc-libssh-libssh-server.config-f97a5eb4e503b165 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-launch-b56eff31af2b3397 OTHER SPDXRef-File-opt-ol-wlp-lib-ws-launch.jar-d46337f79f64e601 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.org.reactivestreams.reactive-streams.1.0-b58b9bc35a4e1a74 OTHER SPDXRef-File-...com.ibm.websphere.org.reactivestreams.reactive-streams.1.0-1.1.81.jar-bdb04312bd1a7d12 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-jrt-fs-b5a4068828245f9c OTHER SPDXRef-File-opt-java-openjdk-lib-jrt-fs.jar-096fcaf7da0ab64c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-systemd-pam-b5bc31dd627a1038 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-systemd-pam-b5bc31dd627a1038 CONTAINS SPDXRef-File-usr-lib64-security-pam-systemd.so-fb867478ee7279dd +Relationship: SPDXRef-Package-java-archive-io.openliberty.transaction.internal.cdi20.jakarta-b5fc44809a53b473 OTHER SPDXRef-File-...io.openliberty.transaction.internal.cdi20.jakarta-1.0.81.jar-5ec26bbd6f6c6c6b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.annotation.2.1-b6edbcb5e9053be2 OTHER SPDXRef-File-...io.openliberty.jakarta.annotation.2.1-1.0.81.jar-29c86f9b5c7b30e0 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libmnl-b714cde5e9c0a3f9 CONTAINS SPDXRef-File-usr-share-licenses-libmnl-COPYING-0567d87d9293d094 +Relationship: SPDXRef-Package-rpm-libmnl-b714cde5e9c0a3f9 CONTAINS SPDXRef-File-usr-share-doc-libmnl-README-3613fb6e9971cf98 +Relationship: SPDXRef-Package-rpm-libmnl-b714cde5e9c0a3f9 CONTAINS SPDXRef-File-usr-lib64-libmnl.so.0.2.0-3ab98c003875068a +Relationship: SPDXRef-Package-rpm-libmnl-b714cde5e9c0a3f9 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact-b7b24dc61fcbabde OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.artifact-1.0.81.jar-a142ab488a8d452b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.app.manager.module-b83da2c1a8fe06d1 OTHER SPDXRef-File-...com.ibm.ws.app.manager.module-1.0.81.jar-939b6904aa1353b3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.felix.scr-b877b2749da70824 OTHER SPDXRef-File-...com.ibm.ws.org.apache.felix.scr-1.0.81.jar-60f3a296227d451a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib-udev-rules.d-60-tpm-udev.rules-162951a761239d8e +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib64-libtss2-tcti-device.so.0.0.0-1ae6e1f7602c626a +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib64-libtss2-mu.so.0.0.0-1d34ae6d4d2bb35c +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib64-libtss2-rc.so.0.0.0-3ab17b6f5e1d10a5 +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib64-libtss2-sys.so.0.0.0-4f6ad189b060b89b +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib64-libtss2-tcti-mssim.so.0.0.0-6c66315b7971aeb0 +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib64-libtss2-tctildr.so.0.0.0-c19c62089caa5fca +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-lib64-libtss2-esys.so.0.0.0-e67737a6033c3746 +Relationship: SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec CONTAINS SPDXRef-File-usr-share-licenses-tpm2-tss-LICENSE-ff39a3bb7f481309 +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d OTHER SPDXRef-Package-python-libcomps-08b412214951d9e5 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...dependency-links.txt-211bdaaad35cd8be +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-2710be33ee8a249b +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-4d95708de22d0f53 +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...top-level.txt-551e8cb471cc247b +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...site-packages-libcomps---init--.py-8cf67f3548dd05ea +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...PKG-INFO-c60bef20b2e47cf0 +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...SOURCES.txt-dfeb7dc8a22e77be +Relationship: SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d CONTAINS SPDXRef-File-...site-packages-libcomps--libpycomps.so-e9eed799c4e41c3b +Relationship: SPDXRef-Package-java-archive-io.openliberty.restfulWS.mpMetrics.filter-b921929bb8e9c339 OTHER SPDXRef-File-...io.openliberty.restfulWS.mpMetrics.filter-1.0.81.jar-7d43960d8a09e9aa +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-langpacks-en-b921e0dabe7fe84e CONTAINS SPDXRef-File-...org.fedoraproject.LangPack-en.metainfo.xml-bf9a80417c82a0ba +Relationship: SPDXRef-Package-rpm-langpacks-en-b921e0dabe7fe84e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-yum-b9a4eb0f7c61e467 CONTAINS SPDXRef-File-etc-dnf-protected.d-yum.conf-0187943b2e5f307a +Relationship: SPDXRef-Package-rpm-yum-b9a4eb0f7c61e467 CONTAINS SPDXRef-File-usr-bin-dnf-3-16175176c3acd9d0 +Relationship: SPDXRef-Package-rpm-yum-b9a4eb0f7c61e467 CONTAINS SPDXRef-File-etc-dnf-dnf.conf-5415cd13736cacdc +Relationship: SPDXRef-Package-rpm-yum-b9a4eb0f7c61e467 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.injection.jakarta-b9aa8a8ead0ffdfa OTHER SPDXRef-File-...com.ibm.ws.injection.jakarta-1.0.81.jar-64310fabe5169329 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.classloading.configuration-bbede9faa7a4ef54 OTHER SPDXRef-File-...com.ibm.ws.classloading.configuration-1.0.81.jar-43220197fe5d6cd2 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.http.plugin.merge-bc7d4d738b60c216 OTHER SPDXRef-File-...com.ibm.ws.http.plugin.merge-1.0.81.jar-753d1d333a39618f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-xfixes-4.0.typelib-01f88093deb9ae8c +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-DBus-1.0.typelib-1bebea4cb0e61bc4 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-GModule-2.0.typelib-28fe89c5d76b0fda +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-libxml2-2.0.typelib-59280c0eb5a8dd2b +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-xrandr-1.3.typelib-5d4dc0866ec20a77 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-cairo-1.0.typelib-61836658d0745006 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...lib64-girepository-1.0-GL-1.0.typelib-646a52d9b53ea1ed +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...lib64-girepository-1.0-xft-2.0.typelib-75d02293523d704d +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...lib64-girepository-1.0-Gio-2.0.typelib-79adba79459aac24 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-freetype2-2.0.typelib-7e415f1a5f78e39f +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...GIRepository-2.0.typelib-8a8f617a2477a505 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...licenses-gobject-introspection-COPYING-9c3fb9c489228424 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-xlib-2.0.typelib-a5157e3576a31a85 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-GObject-2.0.typelib-a5cb41ac71e52c68 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-DBusGLib-1.0.typelib-b6daa90daf0418fe +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-usr-lib64-libgirepository-1.0.so.1.0.0-bcb171dd709b6ebe +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...fontconfig-2.0.typelib-c51918866a709546 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-GLib-2.0.typelib-cdfadcac60999734 +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 CONTAINS SPDXRef-File-...girepository-1.0-win32-1.0.typelib-ff08a8ba9ffd2b79 +Relationship: SPDXRef-Package-rpm-libcurl-be0041c760e1b43f CONTAINS SPDXRef-File-usr-share-licenses-libcurl-COPYING-08a1d1a91d48c03d +Relationship: SPDXRef-Package-rpm-libcurl-be0041c760e1b43f OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libcurl-be0041c760e1b43f CONTAINS SPDXRef-File-usr-lib64-libcurl.so.4.5.0-f6319e635e085bad +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.server.ee10-be66d3c87069f1f6 OTHER SPDXRef-File-...io.openliberty.org.jboss.resteasy.server.ee10-1.0.81.jar-2f0c2fc0af19d358 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.slf4j.api-bf59116b0f585960 OTHER SPDXRef-File-...com.ibm.ws.org.slf4j.api-1.0.81.jar-892b65e425346a86 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd-bf6dfa85944c5918 OTHER SPDXRef-File-...lib-com.ibm.ws.javaee.dd-1.0.81.jar-d640a9ed9d369834 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-column-0151eb4ffb2838fc +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-namei-02a28998b737030d +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-swapon-033ac11209c8080f +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-nologin-03ac757b944026bd +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-lscpu-03f0c0b2da6f97c0 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-pivot-root-044aa0992967cad0 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-rtcwake-0572c707bcf108ce +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...licenses-util-linux-COPYING.BSD-3-060a755da54e559d +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-rename-070abff6a1e619d0 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-setterm-08063f4ff4442c92 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-kill-0a6dce09e397dd4a +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-cal-0ba8029737b4bc05 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-fsfreeze-0f58d1dfdfbeb412 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-dmesg-0f7031e436f0168f +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-pivot-root-0f7971a159b75136 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-colcrt-0fb8b96448b70908 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-ldattach-107697624a4be73c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-agetty-112cebe4e1dc89e5 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-wall-17413ae09c697fde +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-findfs-181697daf2d23e54 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-wipefs-197a4168542157a4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-swapon-1ad224cfca362ab1 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-isosize-1c7f906bf5efb946 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-colrm-1d310e1701246d60 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-script-1e8d831fdaaf366a +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-mkswap-1efa1a7a07e87a21 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-renice-1fae36cba99a6c69 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-flock-20de0265d9ee6bec +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-blkzone-259b604f5327a25b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-uuidparse-25cfadc72252baa2 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-etc-pam.d-su-l-26fe759d840dee6a +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-lib-udev-rules.d-60-raw.rules-27021ff96152c0ee +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-cal-2852b38da693aa65 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-taskset-28be5ff07210a8b8 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-lsblk-28ca6dc9d4da6c85 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-rev-29f9c01eab75843a +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-dmesg-2b377c93f58288fd +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-hexdump-2f1932acbdc2a337 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-etc-pam.d-runuser-l-2fa9493d98dc27d7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-setpriv-30958e193354fdde +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-su-30fbc07000cf1543 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-ipcs-3288c42649695af9 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-isosize-32d67f523f7cb5a9 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-whereis-340b0a956199b919 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-more-346b462a8f0c914d +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...completions-scriptreplay-3495569413d6d469 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-prlimit-3553163f1e1cf4b7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-lslocks-36aa5a43e76c589b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-col-3982383c75bdbb11 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-fsck.minix-3a841f1e7aa1bdc1 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-mkfs-3c08e35f2aa818b2 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-cfdisk-3db23fe184ad3cf4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-utmpdump-3dbfd5ebf103b777 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-fsck-40c85f07e8bfae86 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-addpart-42a73d91dcf5a53f +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-rename-43392add584bbfd4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-setterm-4412aa0fef05e2b5 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...completions-fsck.cramfs-481da53eaf8d20d2 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-losetup-49aac265a149e3ab +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-findfs-4b2624fafeccacd1 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-chrt-4bf45dee53cf37a1 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-swapoff-4bf8755ffc071e6b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-etc-adjtime-4ed0ab6e822df583 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-last-4fd8de0c6f5e6405 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-mount-50b059aaba1de796 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-fdisk-52f8cb702e31efd8 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-renice-54b02297e6a2456a +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-mkfs.minix-56be8d5c05fe13bb +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-more-5780c124c1d6624a +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-ipcs-57b3a454ab9f1a0a +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-swaplabel-5868135abd7ab36d +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-uuidgen-591b2becb413549c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-unshare-5a0461df5bc958fb +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-last-5a98fd9f5363dfed +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-umount-5aea5226ee5fd5d8 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-lsmem-5d2f5c55111f293e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-chcpu-5d45f654f0278ad8 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-sfdisk-5e02da231537b556 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-mcookie-5ec66cca7c95f4f9 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-blkzone-5f33c245bbb53a4d +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-rev-5f5b1442375b7f83 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-ldattach-60836ff1c9ea17a7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-setsid-609b24b70007e15e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-mountpoint-60d73a132d70817f +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-ipcrm-60e25949684d020b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-partx-6105797b34696fd6 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-fsck-62bda2762ffcf742 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...completions-readprofile-647a5e93a4a6d1ed +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-blkid-6487755e02cf2a6c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-uuidgen-66064aac965af476 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-whereis-668c4ccd9025d12f +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-mesg-66a9d3a557f8fc34 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-fsck.cramfs-6735ebd2d754f820 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-fdisk-6b2b3ff70df7fcbc +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-fsfreeze-6b54a400cffd3794 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-write-6cd2fe28886811a4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-lib-systemd-system-fstrim.timer-6ece0c810adc1c2b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-sulogin-6ee94c4694ebcb0d +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-column-6f562d86e906c4b3 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-addpart-6f6555e8dfd27c6b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-etc-pam.d-runuser-6f6b006da29629cd +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-scriptreplay-70c3702a776423c4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-nsenter-74e34397f2efed8c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-eject-7547d67de4f69dc4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-setpriv-7600f093c229e3ce +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-chrt-77459fde93cc87b5 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-taskset-784e8106bef7db6b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-hwclock-7851780290f5206b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-partx-78868d9be079f88e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-etc-pam.d-remote-7b5e7d32cf09e008 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-swaplabel-7c448e00f4028724 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-fincore-7ee9158014cd30f0 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-zramctl-8199e7439b4ac4d9 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-mcookie-81f2ffbfa2fc0d45 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...licenses-util-linux-COPYING.GPLv2-823983abf08c357f +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-blkdiscard-83dfc2de62395006 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-rtcwake-840b523e87c03fc5 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-lsns-859c0e31fe4d5956 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-rfkill-859d3540564702e9 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-fstrim-873db4bbfae54631 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-chmem-8ca3d461256c79ca +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-setarch-9067e5b8f29dca3e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-fallocate-915daa07c316065f +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-mkfs-91722e570b578747 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-resizepart-940d83463e0238af +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-chmem-947d40733436a708 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-getopt-94d68091bfec53de +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-lslogins-977d6948ffd5d218 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-resizepart-98bd78f17c3b198e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-ionice-98f52df29925a2ae +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-flock-99181d8d187ab597 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-ipcmk-995355ef666d81e8 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-lsipc-9b5bbd32ae4bf16c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-ipcrm-9bd3109355f40501 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-swapoff-9c9926344b7ffeef +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-losetup-9cccb7602611be56 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-raw-9d7530a13080c3cb +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-ctrlaltdel-9d9780b99ab2944e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-ul-9e6d9734e9732b42 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-eject-9f6eda36d568d6f2 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-sfdisk-a015a59ee7fe55c3 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-namei-a03176721663d4ef +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-unshare-a1915de01860ac22 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-findmnt-a3357bf98e79859c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-login-a5820c55a0acf341 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-ipcmk-a599f9c7867d5013 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-fstrim-a5cb1dd627e53633 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-wall-a5fb1370842c469d +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-lsblk-a613fbb0fb1b75f0 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-hwclock-aa928fed8ce1861e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-fallocate-ade54647f9a37905 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-delpart-af8f75195c9a0fb3 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-logger-b0b08627102a01b7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...licenses-util-linux-COPYING.LGPLv2.1-b12dab56f2c4b278 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-setarch-b2ea50b45a902402 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-ionice-b5f1240d76066374 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-fsck.minix-b69872cb9dd036c1 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-look-b698a3ef25836dc7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-blockdev-b6e3a4ad205ca263 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-mesg-b6eed2a89ed498a1 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-fdformat-b74153f64fadf3f7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-hexdump-b8196b81f13837c4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-lscpu-bb3ae1fbb8b7e6c7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-su-bc68697fda446d5b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-licenses-util-linux-COPYING.ISC-bcec15e77221b3df +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-mkswap-bfe51e7cf5130a72 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-lsipc-c5b3b8743182b91e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-prlimit-c61c618011e56de7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-cfdisk-c65d3eeb78b83463 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...completions-mkfs.cramfs-c67ce8f72a6a0142 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-ctrlaltdel-c749c3e507136791 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-licenses-util-linux-COPYING.UCB-c80a10fac29eb44e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-etc-pam.d-su-c8a5c816f064afb4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-colcrt-c8ea70a4dc80234c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-wdctl-c902730044ac1a2c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-runuser-c9650eaaf887fad3 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-fdformat-c9e5aca7ff3c7924 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-delpart-cb46c71515f19452 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-colrm-cb8608a95c9a66b5 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-fincore-d024d61a48b1bd97 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-mkfs.cramfs-d1897f06e8b71dd4 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-blockdev-d24e432f3d090856 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-blkdiscard-d4b91db236adf9ca +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-look-d7d4ff8bc3a7d3b6 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-lib-systemd-system-fstrim.service-d7e1e208fccf0fc5 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-getopt-da8dba53247ee783 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-lslocks-dce2decadcc007be +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-lsmem-de6c82a5fde8dcda +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-ul-df5d691e77bb9704 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-mkfs.minix-e0ea5186eb5d5eae +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-uuidparse-e16a061d1a02f583 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-lslogins-e5324a207a67117e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-setsid-e67bb29eb0634edc +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-readprofile-e8693201d892cc2e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-wipefs-e887fb34d8808a47 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-switch-root-ea31943e7e27398c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-wdctl-eac394b4c5871511 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-zramctl-eb69510bf1db58d3 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-lsns-ebdd6e63a5a5f598 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-col-ef8c3e760c0de377 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-rfkill-effcc8364debbad7 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-utmpdump-f161bb18cb40c3de +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...share-bash-completion-completions-raw-f27956c90fc3c92b +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-blkid-f2a427905b520cff +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-etc-pam.d-login-f31db323edd73e9e +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-mountpoint-f335290dafe737ae +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-write-f61682145fda874c +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-script-f792c5f19f362d42 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-...bash-completion-completions-findmnt-f794499269e45fda +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-nsenter-fcc1ee9365e772ef +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-sbin-chcpu-fd423957f82b59f6 +Relationship: SPDXRef-Package-rpm-util-linux-bf827b267d474173 CONTAINS SPDXRef-File-usr-bin-logger-fe9aacca01b178d2 +Relationship: SPDXRef-Package-java-archive-io.openliberty.netty.internal-bf9bec02f2693337 OTHER SPDXRef-File-...io.openliberty.netty.internal-1.0.81.jar-137a843309eb2c1d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.security.impl-c0196b7635519e5b OTHER SPDXRef-File-...com.ibm.websphere.security.impl-1.0.81.jar-b125d98c471afcf2 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-zlib-c03c984064097e8d CONTAINS SPDXRef-File-usr-share-licenses-zlib-README-40d4951b973bd41a +Relationship: SPDXRef-Package-rpm-zlib-c03c984064097e8d CONTAINS SPDXRef-File-usr-lib64-libz.so.1.2.11-51932d6e34adcaff +Relationship: SPDXRef-Package-rpm-zlib-c03c984064097e8d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.component.annotations-c04b9599d1184dc9 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.component.annotations-1.0.81.jar-9ab69e6b3654a243 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-device-mapper-libs-c05ce4d7f437decf CONTAINS SPDXRef-File-...licenses-device-mapper-libs-COPYING-c5e5155c78392c9a +Relationship: SPDXRef-Package-rpm-device-mapper-libs-c05ce4d7f437decf OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-device-mapper-libs-c05ce4d7f437decf CONTAINS SPDXRef-File-...device-mapper-libs-COPYING.LIB-e49e596eeda4f478 +Relationship: SPDXRef-Package-rpm-device-mapper-libs-c05ce4d7f437decf CONTAINS SPDXRef-File-usr-lib64-libdevmapper.so.1.02-ee27af79a82201e3 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility.webserverPluginutil-c06c8f49c4752a37 OTHER SPDXRef-File-...bin-tools-ws-webserverPluginutil.jar-50f2a2192da7580b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 CONTAINS SPDXRef-File-...share-licenses-libgcc-COPYING.RUNTIME-0815da2e94d3741e +Relationship: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 CONTAINS SPDXRef-File-usr-share-licenses-libgcc-COPYING-2254c6e368622d0a +Relationship: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 CONTAINS SPDXRef-File-usr-share-licenses-libgcc-COPYING3.LIB-367fef6219975bdc +Relationship: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 CONTAINS SPDXRef-File-usr-share-licenses-libgcc-COPYING.LIB-6acc8769ccebe8ce +Relationship: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 CONTAINS SPDXRef-File-usr-share-licenses-libgcc-COPYING3-6fe322cd37f28f60 +Relationship: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 CONTAINS SPDXRef-File-usr-lib64-libgcc-s-8-20210514.so.1-c14e75cb80e20c1a +Relationship: SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.rest.handler.jakarta-c0f39d8ab2cc8940 OTHER SPDXRef-File-...com.ibm.ws.rest.handler.jakarta-1.0.81.jar-32c50a3816bc7463 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.runtime.update-c1298107964cccd5 OTHER SPDXRef-File-...com.ibm.ws.runtime.update-1.0.81.jar-42bccd5d4a8e2d5d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.interfaces-c16434037d8f3889 OTHER SPDXRef-File-...io.openliberty.cdi.4.0.interfaces-1.0.81.jar-6393cff2f998def7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.recoverylog-c1e8dd8d006d5bfd OTHER SPDXRef-File-...lib-com.ibm.ws.recoverylog-1.0.81.jar-95e343ce57f526a2 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-server-c24a2dabb7438137 OTHER SPDXRef-File-opt-ol-wlp-bin-tools-ws-server.jar-9a239fa39b4fd6f4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests---init--.py-103baf4281f1f7f2 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---structures.cpython-36.pyc-19dc6001b089a5e6 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---adapters.cpython-36.pyc-1fa52738902ac8e1 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-structures.py-23542046f2e11dd9 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---help.cpython-36.opt-1.pyc-24d38609e806d60a +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-help.py-26056549dfa9763f +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...status-codes.cpython-36.pyc-3042e71b05ea2857 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-api.py-334b45d5a91d61eb +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---certs.cpython-36.pyc-399bcbb9077a8469 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---packages.cpython-36.pyc-3bb203cf0b154965 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---models.cpython-36.pyc-3c7cc8cd3e3aa352 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...dependency-links.txt-3e6e46be29490151 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-hooks.py-43393de073c9ef9c +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...-internal-utils.cpython-36.pyc-49691aa0896fd585 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-497e624491b24cf9 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...licenses-python3-requests-LICENSE-4e730620a8625e87 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-51e0d059c88d6d78 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...not-zip-safe-555c50a9a914ca66 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---api.cpython-36.pyc-5e553732bf78bc37 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...exceptions.cpython-36.opt-1.pyc-621f91c07a4c871b +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-sessions.py-691a8050eb317b1f +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 OTHER SPDXRef-Package-python-requests-69c379e96a25693b +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---api.cpython-36.opt-1.pyc-6c5b9a3788bfa65d +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-packages.py-720121ab3860f581 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---sessions.cpython-36.pyc-7bab152c5c102c46 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...PKG-INFO-800441630b142ce6 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---certs.cpython-36.opt-1.pyc-8350081436c0e7b0 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--version--.cpython-36.opt-1.pyc-8485a437f300d785 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-certs.py-861f957628c434ea +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-compat.py-8a62885b205eb10b +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...requires.txt-8daaa7e7679cdbe4 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...cookies.cpython-36.opt-1.pyc-976dc8ee05ad13da +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.opt-1.pyc-9873cb24c1403865 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests---version--.py-9954b72fc7e766a3 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---auth.cpython-36.opt-1.pyc-99b8974258be9cf7 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...sessions.cpython-36.opt-1.pyc-9d02720bc1b62bb0 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---hooks.cpython-36.opt-1.pyc-9d9ff7c6ed1d34dc +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...status-codes.cpython-36.opt-1.pyc-acffa332919158ef +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---exceptions.cpython-36.pyc-bf4b6c8a3f5f32cc +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-auth.py-c20b0c9cf54c7928 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...adapters.cpython-36.opt-1.pyc-c26e1a235f4df88d +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-models.py-c296cb05da1d9a00 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...top-level.txt-c8655973f7893a80 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---hooks.cpython-36.pyc-cc1595cd024f0dd0 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---help.cpython-36.pyc-cd48581c97bc1c2d +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...-internal-utils.cpython-36.opt-1.pyc-ce164cc4431b8b65 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...compat.cpython-36.opt-1.pyc-d0038fd788b945d8 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...SOURCES.txt-d0ab41071d72ef91 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-utils.py-d437bf78b7df01bb +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-adapters.py-d5254ff5f86f0ce3 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...structures.cpython-36.opt-1.pyc-d7b049ac3e8c7530 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...requests--internal-utils.py-dc2259ba1e4c9127 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-status-codes.py-dd530938f5685da7 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---compat.cpython-36.pyc-ddc9819200a30bba +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---utils.cpython-36.pyc-deb553c0dfe4a890 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache-----version--.cpython-36.pyc-e2957adc2add610e +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---auth.cpython-36.pyc-e360426b7623b852 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-exceptions.py-eb76c3800314c510 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...site-packages-requests-cookies.py-ed6ba72091c2026f +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...models.cpython-36.opt-1.pyc-f0663522e62f8e15 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...packages.cpython-36.opt-1.pyc-f37406686bedda01 +Relationship: SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 CONTAINS SPDXRef-File-...--pycache---cookies.cpython-36.pyc-f971f81d5553c456 +Relationship: SPDXRef-Package-python-syspurpose-c2c79d0712654121 OTHER SPDXRef-File-...PKG-INFO-26f5dca0b03dd114 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel.binarylogviewer-c2f211fa6a49c56b OTHER SPDXRef-File-...wlp-bin-tools-ws-binarylogviewer.jar-6b8a1c0c8ae07228 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-03d3fe8c77f50fd3 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-plugins-system-upgrade.py-054025bc184fdbe9 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---reposync.cpython-36.pyc-08f7dd0a7125b30b +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...reposync.cpython-36.opt-1.pyc-117ff75138b4ed82 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-repograph.py-168c2db14e9d296c +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...changelog.cpython-36.opt-1.pyc-18f74be3a57809ac +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...system-dnf-system-upgrade.service-1edad3b5be6116a8 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---repodiff.cpython-36.pyc-27afce78dfe699a2 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...system-upgrade.cpython-36.pyc-2b961109804441f4 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...repodiff.cpython-36.opt-1.pyc-33bf606073528454 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-plugins-repomanage.py-34d4d3750138041c +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...generate-completion-cache.cpython-36.pyc-359cf7d5666d362d +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...needs-restarting.cpython-36.pyc-374d0b7aa5503484 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---changelog.cpython-36.pyc-3ea284e5df71390d +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---copr.cpython-36.pyc-3edd7203c15dffda +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-4ca67d14e7e85c91 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-download.py-54a8e2b04d83cfe1 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-plugins-repoclosure.py-5602da6012595251 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-copr.py-56ff46dbfd2e5613 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnfpluginscore---init--.py-5cab0afd5e2854ed +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...debuginfo-install.cpython-36.opt-1.pyc-5cb963fc78abd3ff +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...needs-restarting.cpython-36.opt-1.pyc-662c9929ad56c525 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...download.cpython-36.opt-1.pyc-667d5a89969f538f +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-changelog.py-69709b3c978e7ba7 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---repograph.cpython-36.pyc-7432fd592f2081e7 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...groups-manager.cpython-36.opt-1.pyc-7ea036bfd84efa7d +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...python3-dnf-plugins-core-COPYING-7ff4007a367a4aa4 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...repomanage.cpython-36.opt-1.pyc-809824dd7d330a30 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-builddep.py-8182d904fabf2296 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-debug.py-82c0252439103f56 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---builddep.cpython-36.pyc-8597d5681bf439ba +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---debug.cpython-36.opt-1.pyc-885d8924c0914807 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...repoclosure.cpython-36.opt-1.pyc-891a8434ba383360 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-var-cache-dnf-packages.db-8df50c35e25349ef +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-repodiff.py-8fad5bd22d8f5bb0 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---debug.cpython-36.pyc-9027acb34e40b097 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...site-packages-dnf-plugins-reposync.py-a2b94040bb2fa621 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-plugins-config-manager.py-b71e8709bb6f931c +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...debuginfo-install.cpython-36.pyc-c08deeaa98d5747a +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...groups-manager.cpython-36.pyc-c1b750efef5027b0 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-plugins-debuginfo-install.py-c380efe423dcaac0 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-plugins-needs-restarting.py-c3e7b3fc5be2ec9d +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---copr.cpython-36.opt-1.pyc-c6e554301508f73c +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---repomanage.cpython-36.pyc-cb3c8650a3731d28 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-etc-dnf-plugins-copr.conf-d2a260212379547c +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...config-manager.cpython-36.pyc-db9cb27fd80f09e2 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...builddep.cpython-36.opt-1.pyc-e394aca5ebc82cbb +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...generate-completion-cache.py-e9640ecc53ef1715 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...system-upgrade.cpython-36.opt-1.pyc-ead57863ff1055db +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...config-manager.cpython-36.opt-1.pyc-eafab434f140b254 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-system-upgrade-cleanup.service-ed5c05c7a540501e +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...dnf-plugins-groups-manager.py-f1ae2d9359db4712 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-etc-dnf-plugins-debuginfo-install.conf-f1df741709ca019e +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---repoclosure.cpython-36.pyc-fa76c4b1b9eef291 +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...--pycache---download.cpython-36.pyc-facbc5ef6ba14a4b +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...repograph.cpython-36.opt-1.pyc-fb7ccac3c37abd4a +Relationship: SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 CONTAINS SPDXRef-File-...generate-completion-cache.cpython-36.opt-1.pyc-fbc3c8b227ea1f87 +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.hpel-c429f58b8034c2cc OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.hpel-2.0.81.jar-db4651692d448f54 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.thirdparty-c560a9497a9dc8cb OTHER SPDXRef-File-...io.openliberty.cdi.4.0.thirdparty-1.0.81.jar-36082487486261fe +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-sbin-cracklib-packer-30a254ccb5506d00 +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-sbin-cracklib-format-5c9ba3451440e818 +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-share-cracklib-pw-dict.pwd-6fefb2799b190e56 +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-share-cracklib-pw-dict.pwi-7e5103942b133fe1 +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-share-cracklib-pw-dict.hwm-9fc982e75a44303b +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-share-cracklib-cracklib-small.pwi-a251949a8ba39e31 +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-share-cracklib-cracklib-small.pwd-aef83d5715318e32 +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 CONTAINS SPDXRef-File-usr-share-cracklib-cracklib-small.hwm-ba259b112cc6fdcf +Relationship: SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-readline-c5d42f4c234235ee CONTAINS SPDXRef-File-usr-lib64-libreadline.so.7.0-57f1940fa0d79773 +Relationship: SPDXRef-Package-rpm-readline-c5d42f4c234235ee CONTAINS SPDXRef-File-usr-share-licenses-readline-USAGE-d920170b5d9e5907 +Relationship: SPDXRef-Package-rpm-readline-c5d42f4c234235ee OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-readline-c5d42f4c234235ee CONTAINS SPDXRef-File-usr-share-licenses-readline-COPYING-e1a7a6136ffde8bd +Relationship: SPDXRef-Package-rpm-readline-c5d42f4c234235ee CONTAINS SPDXRef-File-usr-lib64-libhistory.so.7.0-ec352d20a1ffe247 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader.auditreader-c61c4f9d07369217 OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-auditreader.jar-dac94bd442e85e0b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.monitor-c6fe46100ac575fb OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.monitor-1.0.81.jar-09ec11a080b99478 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.jandex-c79f42367d823002 OTHER SPDXRef-File-...com.ibm.ws.org.jboss.jandex-1.0.81.jar-fb1771b5193ae197 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-deny.so-00e5913a07655ba7 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-console.perms-043e8634a0965656 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-libpam-misc.so.0.82.1-0db726a9969c81ec +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-limits.conf-10126cd3ee8b5dd2 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-pwhistory.conf-1071f06d7e3b0a7c +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-namespace.conf-188f8fd7f08df7cd +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-...lib64-security-pam-filter-upperLOWER-22110c00c13cb26f +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-pam.d-system-auth-28c3b67509a115a1 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-permit.so-2a9680a57044a433 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-group.conf-32e6e0ce38bfb61e +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-keyinit.so-32f8a7096c7faaa7 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-pam.d-postlogin-358f093208a17aec +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-listfile.so-3628bdf0a29a6653 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-pam.d-smartcard-auth-3975d6f6d6f30a67 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-sbin-pwhistory-helper-43fc92df59e31231 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-pam.d-config-util-44a1b1d83b2dc66a +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-faillock.conf-46ab6fb3e4330c07 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-access.conf-483f4355e19fef17 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-opasswd-4ea39fc2dc18f4f1 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-sbin-pam-console-apply-50421397d10ac33b +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-ftp.so-53580c4c4f7aba80 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-timestamp.so-59bb3f54e43771f6 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-motd.so-5ac09dc80b53be2e +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-shells.so-5bc7ea2d216e4cdb +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-filter.so-5bddb4a93a1a2ffb +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-sbin-unix-update-5c61705ca8597ede +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-tty-audit.so-5f9917408b8c3fb8 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-sbin-unix-chkpwd-61f482f1e76008ce +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-cracklib.so-64005b7deee04f19 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-mkhomedir.so-6527bf955d2e1ecd +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-userdb.so-68e2b6b0aab4291e +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-limits.so-6df41fd69b0ef4d5 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-chroot.conf-6f592c2e4aa427f0 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-debug.so-70d203bf1aeb8d3a +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-env.so-73d395c297e22df7 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-wheel.so-74044d0fe410f3d7 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-namespace.init-7972ad94002ec0d5 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-pam.d-other-7bfc13e464be593b +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-xauth.so-7d8676abf64f8298 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-warn.so-82e42e4d3d21523b +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-rhosts.so-839c4ed204d9c47b +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-access.so-87823db11acd6602 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-stress.so-8984a8f34c1a6e5f +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-localuser.so-8be941c227ec764a +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-console.handlers-8cddc3102cb9ca9a +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-lastlog.so-90095ff7cc7b3232 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-echo.so-90645347a2fa1074 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-securetty.so-90e76874e098b219 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-...locale-en-GB-LC-MESSAGES-Linux-PAM.mo-9275c31734f7d705 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-share-licenses-pam-gpl-2.0.txt-958d782a021aba03 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-usertype.so-965cc6407a44d0ac +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-nologin.so-968e8e0f92136fb8 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-sbin-mkhomedir-helper-9c25bbf0eae65fc5 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-pam.conf-a30f196ff0d68ec9 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-libpam.so.0.84.2-a513b77a9d5ba81f +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-rootok.so-a6187098c7283231 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-loginuid.so-ace18675f7488ca2 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-exec.so-adcbda368a953d35 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-pwhistory.so-bd22fc79d6f23314 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-sepermit.so-c019470aeed8f918 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-time.conf-c0625510190528e9 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-libpamc.so.0.82.1-c0ad484d57d20408 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-umask.so-c1c790756ac251a6 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-chroot.so-c71e371b3ee1940c +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-succeed-if.so-c806778baa7a5951 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-console.so-cd85ddf22c9349c3 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-postgresok.so-cf2304a2eb474695 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-sepermit.conf-d23184be304121e7 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-time.so-d8dc945ff6e14c16 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-pam.d-fingerprint-auth-dadc09b3c82832f6 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-faildelay.so-dc4aadd1706c255b +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-share-licenses-pam-Copyright-e0ead8bec01d7231 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-sbin-faillock-e11d94a700e3be29 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-pam.d-password-auth-e4b04599401de0b2 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-selinux.so-ebe9e36c22a0438f +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-etc-security-pam-env.conf-ee927e4398f8442d +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-unix.so-f24672afcd9ce839 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-sbin-pam-timestamp-check-f3328110d5a8f2f1 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-namespace.so-f4a0d51dcbeefb13 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-faillock.so-f4b6fa503861cd0f +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-issue.so-f5c5ec502ac86160 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-mail.so-f7858403c0d56667 +Relationship: SPDXRef-Package-rpm-pam-c80e5763b488aaab CONTAINS SPDXRef-File-usr-lib64-security-pam-group.so-f7a6d9d9f46b3704 +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.persistence.api.3.1-ca362583b374a441 OTHER SPDXRef-File-...io.openliberty.jakarta.persistence.api.3.1-1.0.81.jar-ae41084a4f7616f3 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.utility.securityutil-ca8b9d721e9a1e1d OTHER SPDXRef-File-...com.ibm.ws.security.utility-1.0.81.jar-e732363ee439e80e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.security.admin-cac3f63abeadad89 OTHER SPDXRef-File-...com.ibm.ws.webcontainer.security.admin-1.0.81.jar-282b6fc3ab9aba1c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.coordinator-cae4dfa1a0a38c81 OTHER SPDXRef-File-...com.ibm.ws.org.eclipse.equinox.coordinator-1.0.81.jar-fa52a88314f6d4b7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-protobuf-c-caf48a448cb494cc CONTAINS SPDXRef-File-usr-share-doc-protobuf-c-TODO-3ead4bb5e64b21be +Relationship: SPDXRef-Package-rpm-protobuf-c-caf48a448cb494cc CONTAINS SPDXRef-File-usr-share-doc-protobuf-c-ChangeLog-832626f9174eea4f +Relationship: SPDXRef-Package-rpm-protobuf-c-caf48a448cb494cc CONTAINS SPDXRef-File-usr-lib64-libprotobuf-c.so.1.0.0-8467b5514cd3b16f +Relationship: SPDXRef-Package-rpm-protobuf-c-caf48a448cb494cc CONTAINS SPDXRef-File-usr-share-doc-protobuf-c-LICENSE-be15fe4e5026a818 +Relationship: SPDXRef-Package-rpm-protobuf-c-caf48a448cb494cc OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.crypto.certificate.creator.selfsigned-cb1e6649f2a5d34a OTHER SPDXRef-File-...com.ibm.ws.crypto.certificate.creator.selfsigned-1.0.81.jar-dd550de26b46bed4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...pki-ca-trust-extracted-java-cacerts-086386e3e9bb80b0 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-etc-pki-ca-trust-extracted-java-README-0bb6f1c96969abef +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-usr-bin-update-ca-trust-0c25b618daa533c4 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-etc-pki-ca-trust-extracted-pem-README-1d2ecb57de6d58ee +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...ca-bundle.legacy.default.crt-2366fa373c9550b5 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...extracted-pem-email-ca-bundle.pem-2de4791551b51b77 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...extracted-pem-tls-ca-bundle.pem-74339ef2e9a3f27c +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...ca-trust-extracted-edk2-cacerts.bin-79568197b9801373 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-etc-pki-ca-trust-extracted-README-80ed41260332a1ea +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-etc-pki-ca-trust-ca-legacy.conf-941143020d563d10 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-etc-pki-ca-trust-README-96ecf6ead68d0c25 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...extracted-openssl-ca-bundle.trust.crt-9e1cd1d76d37f0f7 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...ca-bundle.trust.p11-kit-ab5fa56a58a54116 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-usr-share-pki-ca-trust-source-README-c5df098e511c8911 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...ca-bundle.legacy.disable.crt-c8ab04ad02c2908d +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-etc-pki-ca-trust-extracted-edk2-README-d28ed8243b83d2ba +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...extracted-pem-objsign-ca-bundle.pem-dd080ef41e7e5f71 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-usr-bin-ca-legacy-ecd8ff85d3189ae4 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-etc-pki-ca-trust-source-README-ef036ffb48058105 +Relationship: SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d CONTAINS SPDXRef-File-...pki-ca-trust-extracted-openssl-README-f9bf72482ca4bf28 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-server-cba6c2753995ba98 OTHER SPDXRef-File-...lib-com.ibm.ws.kernel.boot-1.0.81.jar-d95b1236acd055fd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.threading-cbfaa03416eb5740 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.threading-1.1.81.jar-88cd16be02d351c5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.core-cc10e4e4ad879773 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.core-1.2.81.jar-8e6f85f3eca08889 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.tx.jta.extensions.jakarta-cc2e0c21ecbb7fd1 OTHER SPDXRef-File-...com.ibm.ws.tx.jta.extensions.jakarta-1.0.81.jar-bb4017814aaf6c4e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-chkconfig-cc7797317bf6a1e2 CONTAINS SPDXRef-File-usr-sbin-chkconfig-09c7a81dac1cff44 +Relationship: SPDXRef-Package-rpm-chkconfig-cc7797317bf6a1e2 CONTAINS SPDXRef-File-...locale-en-GB-LC-MESSAGES-chkconfig.mo-1a162369497c3492 +Relationship: SPDXRef-Package-rpm-chkconfig-cc7797317bf6a1e2 CONTAINS SPDXRef-File-usr-sbin-alternatives-6d125db4bb60a9dc +Relationship: SPDXRef-Package-rpm-chkconfig-cc7797317bf6a1e2 CONTAINS SPDXRef-File-usr-share-licenses-chkconfig-COPYING-9f15a49442943a45 +Relationship: SPDXRef-Package-rpm-chkconfig-cc7797317bf6a1e2 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.json-cc9cae007144d249 OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.json-1.0.81.jar-dab5ce270ff355ae +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.cdi.transaction.jakarta-cca3ac184a383b1a OTHER SPDXRef-File-...com.ibm.ws.cdi.transaction.jakarta-1.0.81.jar-e9eb18fdb5da6e9e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libdb-cdeffe58cdcf475e CONTAINS SPDXRef-File-usr-lib64-libdb-5.3.so-37019ffd38bbe2c0 +Relationship: SPDXRef-Package-rpm-libdb-cdeffe58cdcf475e CONTAINS SPDXRef-File-usr-share-licenses-libdb-LICENSE-4b72e538c28ae765 +Relationship: SPDXRef-Package-rpm-libdb-cdeffe58cdcf475e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libdb-cdeffe58cdcf475e CONTAINS SPDXRef-File-usr-share-licenses-libdb-lgpl-2.1.txt-ef3268d7b2eea0b0 +Relationship: SPDXRef-Package-rpm-libtasn1-ce90f646db4cd13d CONTAINS SPDXRef-File-usr-lib64-libtasn1.so.6.5.5-81040f537b17d369 +Relationship: SPDXRef-Package-rpm-libtasn1-ce90f646db4cd13d CONTAINS SPDXRef-File-usr-share-licenses-libtasn1-COPYING-a01cd30f476e1b50 +Relationship: SPDXRef-Package-rpm-libtasn1-ce90f646db4cd13d CONTAINS SPDXRef-File-...share-licenses-libtasn1-COPYING.LIB-baab74cf8584e16d +Relationship: SPDXRef-Package-rpm-libtasn1-ce90f646db4cd13d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.classloader.context-cef214e61d25941e OTHER SPDXRef-File-...com.ibm.ws.classloader.context-1.0.81.jar-fb5d2f4623401edb +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.json4j-cfae675b723f2735 OTHER SPDXRef-File-...ol-wlp-lib-com.ibm.json4j-1.0.81.jar-9d86d72954b6bd05 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libsmartcols-cfc1b4c97bd0b1f9 CONTAINS SPDXRef-File-...share-licenses-libsmartcols-COPYING-2f004eaa79c7fc12 +Relationship: SPDXRef-Package-rpm-libsmartcols-cfc1b4c97bd0b1f9 CONTAINS SPDXRef-File-...licenses-libsmartcols-COPYING.LGPLv2.1-41a962b3605e7b6d +Relationship: SPDXRef-Package-rpm-libsmartcols-cfc1b4c97bd0b1f9 CONTAINS SPDXRef-File-usr-lib64-libsmartcols.so.1.1.0-61fc215af7cfea5a +Relationship: SPDXRef-Package-rpm-libsmartcols-cfc1b4c97bd0b1f9 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jmx.core.whiteboard-d024df8930f6e14c OTHER SPDXRef-File-...com.ibm.ws.org.apache.aries.jmx.core.whiteboard-1.0.81.jar-7aaba9559fc7e14e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnfnetlink-d0dd7b9ce7180a33 CONTAINS SPDXRef-File-usr-share-doc-libnfnetlink-README-05012c2130998b1b +Relationship: SPDXRef-Package-rpm-libnfnetlink-d0dd7b9ce7180a33 CONTAINS SPDXRef-File-usr-lib64-libnfnetlink.so.0.2.0-2ce876764332ca25 +Relationship: SPDXRef-Package-rpm-libnfnetlink-d0dd7b9ce7180a33 CONTAINS SPDXRef-File-...share-licenses-libnfnetlink-COPYING-c594affcf4e382a3 +Relationship: SPDXRef-Package-rpm-libnfnetlink-d0dd7b9ce7180a33 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.adaptable.module-d193330201a8bc44 OTHER SPDXRef-File-...com.ibm.ws.adaptable.module-1.0.81.jar-f08a5a4060540b5f +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.expressionLanguage.5.0-d237df2857b8cf70 OTHER SPDXRef-File-...io.openliberty.jakarta.expressionLanguage.5.0-1.0.81.jar-eeab502ee7013eff +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...conf.avail-57-dejavu-sans.conf-4474dc1985af1290 +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...fonts-dejavu-DejaVuSans-Oblique.ttf-4eb60c0b65f373fe +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...dejavu-DejaVuSansCondensed-Oblique.ttf-51f6ce074236e223 +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...DejaVuSansCondensed-BoldOblique.ttf-541c04277b575faa +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-usr-share-fonts-dejavu-DejaVuSans.ttf-715c7e6cffbd9e0b +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...fonts-dejavu-DejaVuSans-ExtraLight.ttf-84f0d3033eaad11a +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...20-unhint-small-dejavu-sans.conf-9d3636a5938a4ea9 +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...share-fonts-dejavu-DejaVuSans-Bold.ttf-acec86fc66246420 +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...dejavu-DejaVuSans-BoldOblique.ttf-c0afdc59bb070502 +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...dejavu-DejaVuSansCondensed-Bold.ttf-d89882d1dffe22ae +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...fonts-dejavu-DejaVuSansCondensed.ttf-e329709be25c634c +Relationship: SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 CONTAINS SPDXRef-File-...share-appdata-dejavu-sans.metainfo.xml-fc43020972e78acd +Relationship: SPDXRef-Package-rpm-libarchive-d2fcf670d209798e CONTAINS SPDXRef-File-usr-lib64-libarchive.so.13.3.3-5decaba694c6a7a3 +Relationship: SPDXRef-Package-rpm-libarchive-d2fcf670d209798e CONTAINS SPDXRef-File-usr-share-licenses-libarchive-COPYING-da0c301351d5b2ad +Relationship: SPDXRef-Package-rpm-libarchive-d2fcf670d209798e OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libyaml-d3d578fd9d7e0485 CONTAINS SPDXRef-File-usr-lib64-libyaml-0.so.2.0.5-5037ddf99a79f5ca +Relationship: SPDXRef-Package-rpm-libyaml-d3d578fd9d7e0485 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libyaml-d3d578fd9d7e0485 CONTAINS SPDXRef-File-usr-share-licenses-libyaml-LICENSE-f0f43ebf288ce518 +Relationship: SPDXRef-Package-rpm-rpm-libs-d493d01c7fe718f9 CONTAINS SPDXRef-File-usr-lib64-librpmio.so.8.2.0-8157c60607216bdf +Relationship: SPDXRef-Package-rpm-rpm-libs-d493d01c7fe718f9 CONTAINS SPDXRef-File-usr-lib64-librpm.so.8.2.0-cfdf6db416ac4262 +Relationship: SPDXRef-Package-rpm-rpm-libs-d493d01c7fe718f9 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.token.s4u2-d4ce9269292633b7 OTHER SPDXRef-File-...com.ibm.ws.security.token.s4u2-1.0.81.jar-8c8a1f4be4fc788a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-passwd-d530074a47793db2 CONTAINS SPDXRef-File-usr-bin-passwd-1cd78e2d3dab3466 +Relationship: SPDXRef-Package-rpm-passwd-d530074a47793db2 CONTAINS SPDXRef-File-etc-pam.d-passwd-541957eabc00bbdb +Relationship: SPDXRef-Package-rpm-passwd-d530074a47793db2 CONTAINS SPDXRef-File-usr-share-licenses-passwd-COPYING-a295bdc63bb09db3 +Relationship: SPDXRef-Package-rpm-passwd-d530074a47793db2 CONTAINS SPDXRef-File-...locale-en-GB-LC-MESSAGES-passwd.mo-d87806068c537ccf +Relationship: SPDXRef-Package-rpm-passwd-d530074a47793db2 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.security.sso.internal-d6187fd248cce2ce OTHER SPDXRef-File-...io.openliberty.security.sso.internal-1.0.81.jar-39e55c2b44fa7ce2 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.fileupload.jakarta-d64e9df37e550aa3 OTHER SPDXRef-File-...com.ibm.ws.org.apache.commons.fileupload.jakarta-1.0.81.jar-f5be64dd99a12b13 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.logging-d6690f2ff1085822 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.logging-1.1.81.jar-361f629061009b52 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.wsbytebuffer-d6d7aedfbda2c7a6 OTHER SPDXRef-File-...lib-com.ibm.ws.wsbytebuffer-1.0.81.jar-802c4b1e8193136b +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libattr-d77f66c9b8b51965 CONTAINS SPDXRef-File-usr-lib64-libattr.so.1.1.2448-7fceac1eb0d89f52 +Relationship: SPDXRef-Package-rpm-libattr-d77f66c9b8b51965 CONTAINS SPDXRef-File-etc-xattr.conf-bbf6f2936807a965 +Relationship: SPDXRef-Package-rpm-libattr-d77f66c9b8b51965 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-sbin-getcap-02c9adff932e7ba7 +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-lib64-libpsx.so.2.48-04e2149fee5a9c83 +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-sbin-setcap-38a06c75fd582191 +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-sbin-getpcaps-4058609c2022fae5 +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-sbin-capsh-a685d3cb1164f864 +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-lib64-security-pam-cap.so-aa9f3a65b0d59615 +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-share-licenses-libcap-License-b5f4d9eda66a2fdd +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c CONTAINS SPDXRef-File-usr-lib64-libcap.so.2.48-dca963abeacb99d5 +Relationship: SPDXRef-Package-rpm-libcap-d894483b6c7ea20c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.runtime.interfaces-d8f7c7f67ed53663 OTHER SPDXRef-File-...com.ibm.ws.webserver.plugin.runtime.interfaces-1.0.81.jar-61b4bf074cc63805 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.httptransport-d8fb12885ef56ff7 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.httptransport-4.2.81.jar-015bc3e9670e677a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libpng-d91e6e2416007afb CONTAINS SPDXRef-File-usr-lib64-libpng16.so.16.34.0-0873f4ad6c406ec1 +Relationship: SPDXRef-Package-rpm-libpng-d91e6e2416007afb CONTAINS SPDXRef-File-usr-share-man-man5-png.5.gz-1c082c7e345c0cd9 +Relationship: SPDXRef-Package-rpm-libpng-d91e6e2416007afb CONTAINS SPDXRef-File-usr-share-licenses-libpng-LICENSE-8eb176a3aee2920e +Relationship: SPDXRef-Package-rpm-libpng-d91e6e2416007afb OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.kernel.service-d939ed5bedb62843 OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.kernel.service-1.1.81.jar-bf23c2abe81e7ad7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-binary-java-d9e23e0b1de302e4 OTHER SPDXRef-File-opt-java-openjdk-bin-java-9aa898fbd0b3e993 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v7-da0ec5e73a05a42c OTHER SPDXRef-File-...com.ibm.ws.javaee.platform.v7-1.0.81.jar-caded2919b31b48a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-featurelist-db745e443214a1e2 OTHER SPDXRef-File-...ol-wlp-bin-tools-ws-featurelist.jar-4c721027cdcb4451 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.metatype-dba6e3c5aebc2417 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.metatype-1.1.81.jar-0f7f6bedce5e8750 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.webcontainer.servlet.6.0.internal-dbeb836c22275336 OTHER SPDXRef-File-...io.openliberty.webcontainer.servlet.6.0.internal-1.0.81.jar-38b72e8f08282bdb +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-dd-05f9b9b2c9519bb8 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-shuf-08e2035826b6be8a +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-mktemp-0f0af3c607475367 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-chcon-16fe8720c443b6ae +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-chown-1787a3ad14a9330f +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-truncate-195a2e61d0eb0eab +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-expr-1ca0551b969d1b12 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-readlink-1e50830c82baf114 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-factor-1f1905a717803039 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-b2sum-1ff010ac94b35573 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-split-22027b26a486d831 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-cp-2332a40d37410d35 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-od-236f3d245b1416e3 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sha224sum-238d6f941c60a430 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-basename-25411a7a4026c6d8 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-printenv-318c0192064b0d77 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-comm-38ea875ccd8489e1 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-rmdir-3ab9a59fb1b2cc3c +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-fold-3cb198d50f1e5a0b +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-unexpand-427c3d371505ce07 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-tsort-4325d9fd20a617e8 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-echo-4355567056fd4dfc +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-numfmt-4574fc253a7e3b27 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-ls-45acbaeafa7483b2 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-nl-465b691c25595e4f +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sync-47ff3f787fbace1c +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-du-4897d0f00b625ce6 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-sbin-chroot-49ccacce511dbb56 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-mknod-4b2314978fecf976 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-coreutils-4e66195c80e76d94 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-date-53713e3f5331fdb1 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin---5d50a5c7733a5443 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-env-60488a7730f12e31 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sha1sum-62047354d50f8cfa +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-join-62a518d6985e2090 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-vdir-676177514717507e +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-base32-6b094c42bb45261b +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-dir-6b6dd0f9f77cb524 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-who-6d4928d4d2d5ad9d +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-head-6d5648ad903746e4 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-true-6eae799d1ca0173d +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-mkfifo-6ec5c1bd07d07e5c +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-test-6f0f7a126883399a +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-hostid-700af32eae66742a +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-tr-715604516e76aeab +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-realpath-762610ce02febbb4 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-md5sum-76c4d79d89ac1a27 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-chgrp-7ad81929fdf95bcb +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-pathchk-7ff26038ed0cf74d +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sha384sum-803f165ab6396d0a +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-expand-8057aea9011ad58e +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-uniq-818d44b9e94fe725 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-uname-84e53df46b5a1375 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-base64-8650ff0e272bcd68 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-pr-866203e429d4243f +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-yes-882cba3c3703702e +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sha256sum-88bb9228526be95c +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-tee-895c5829d1157a32 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-rm-8c1484caa71064f7 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sort-8ede684d0d34f802 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-whoami-8f37af6cd04cbf66 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-cat-91170b79ac19796f +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-pinky-9632538ee6a35e39 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-tac-98cf606b1f230f38 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-install-99bb7aabd6e12173 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-unlink-9aea3e58dd1b1a13 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-nohup-9ebe7583f5c021e1 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-paste-9f568728818a5ba6 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-stty-9fe4a4cf929a4710 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-wc-a09ac9cd19ae1062 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-logname-a284cbfd2521da6f +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-cksum-a56e605bada7d4e4 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-dirname-a7b100debaeadb2e +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-link-ac9a2302a076862c +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-touch-b0c54409730dae57 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-ln-b6a6b77fb4a18dd8 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sum-b6c683a42386dbf4 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-dircolors-b79550bde7c2d093 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-shred-c0cef5e6ca300d0e +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-tty-c4f9a1872c9dad07 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-cut-c53581bf8686266a +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-chmod-c7be14c5570f6999 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sha512sum-c7d806f83ead0503 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-mv-cd9ae67ae8663eb4 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-users-d51072ffe70e5227 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-runcon-d58684550c2b31cb +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-nproc-d7038d804df947b9 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-libexec-coreutils-libstdbuf.so-d9115f3032342a46 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-arch-d98ca7ef721130c0 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-sleep-d9e8d65f67fb5c6e +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-nice-dba8b2ded58211a0 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-fmt-e1e473e89be5f240 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-ptx-e3180520209a6f06 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-stdbuf-e46e301e8d38d4c9 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-timeout-e48683b79b81b0b2 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-printf-e76e52b963f7cde4 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-tail-e9b3a3f11c2f8989 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-pwd-ea806065cab44fd1 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-mkdir-eba5192a4985f7f6 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-df-f7312bdcc796fb5a +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-stat-f82d167f47eb9065 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-id-f8cb6de5c9aa2782 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-groups-fa279371f3022794 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-false-fc6eebb70e0daf0f +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-csplit-fd73a92f0d4d0cf4 +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-usr-bin-seq-fdf9f500f7d1e42d +Relationship: SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d CONTAINS SPDXRef-File-...licenses-coreutils-single-COPYING-fed2b2c6919dd923 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact.loose-dcb472bff679f387 OTHER SPDXRef-File-...com.ibm.ws.artifact.loose-1.0.81.jar-40c9afa825d7cd32 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-kmod-libs-dce662a72db32ee1 CONTAINS SPDXRef-File-usr-lib64-libkmod.so.2.3.3-6193f781697e9ec6 +Relationship: SPDXRef-Package-rpm-kmod-libs-dce662a72db32ee1 CONTAINS SPDXRef-File-usr-share-licenses-kmod-libs-COPYING-cf851846017e82f2 +Relationship: SPDXRef-Package-rpm-kmod-libs-dce662a72db32ee1 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.health.4.0-de255c121c78305a OTHER SPDXRef-File-...io.openliberty.org.eclipse.microprofile.health.4.0-1.0.81.jar-f658f4c9a08996b5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.transaction.2.0-de6a4493c1f4ec7b OTHER SPDXRef-File-...io.openliberty.jakarta.transaction.2.0-1.0.81.jar-dfdf7b3124803b64 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.timer-de9e29e7df6d7ef9 OTHER SPDXRef-File-...ol-wlp-lib-com.ibm.ws.timer-1.0.81.jar-6c0fba7301d80ca9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-ws-securityutil-df187fb4fe4c3522 OTHER SPDXRef-File-...com.ibm.ws.security.utility-1.0.81.jar-e732363ee439e80e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-idna-df327da7f0a4a959 OTHER SPDXRef-File-...idna-2.5-py3.6.egg-info-PKG-INFO-d2899fc2d56f719e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security-df4334c69aab9582 OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.security-1.0.81.jar-e61ce55d7adc91f7 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-bootstrap-agent-df89313d7d4ebec4 OTHER SPDXRef-File-opt-ol-wlp-lib-bootstrap-agent.jar-b2c0aa2b346923b4 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ima-evm-utils-dfd6cbe7443a229f CONTAINS SPDXRef-File-...share-licenses-ima-evm-utils-COPYING-5ec0b2e0e8c79e44 +Relationship: SPDXRef-Package-rpm-ima-evm-utils-dfd6cbe7443a229f CONTAINS SPDXRef-File-usr-bin-evmctl-8187e18523fad015 +Relationship: SPDXRef-Package-rpm-ima-evm-utils-dfd6cbe7443a229f OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ima-evm-utils-dfd6cbe7443a229f CONTAINS SPDXRef-File-usr-lib64-libimaevm.so.2.0.0-e6196edfc93d483f +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.eba.wab.integrator-e0f862f96f48f23e OTHER SPDXRef-File-...com.ibm.ws.eba.wab.integrator-1.0.81.jar-b38dc8096af5f2f2 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.monitor-e1a15f5cd55c4cbd OTHER SPDXRef-File-...com.ibm.websphere.appserver.api.monitor-1.1.81.jar-cbb12be1c28f0a7d +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.management.security-e1a35fbc676a3bb4 OTHER SPDXRef-File-...com.ibm.ws.management.security-1.0.81.jar-3fb3c0f680c08baa +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.metatype-e23255d2a858b2a3 OTHER SPDXRef-File-...com.ibm.ws.org.eclipse.equinox.metatype-1.0.81.jar-2ae9fe0fefeb5634 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-usr-lib64-.libcrypto.so.1.1.1k.hmac-084024821f89e983 +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-usr-lib64-.libssl.so.1.1.1k.hmac-08bd6b7f68a82faa +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-usr-lib64-libcrypto.so.1.1.1k-2313000baaf2d3f9 +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-usr-lib64-engines-1.1-capi.so-5076d229e861461e +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-usr-lib64-libssl.so.1.1.1k-5631740cb75108b5 +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-etc-pki-tls-openssl.cnf-7a7377c66d7f25a4 +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-usr-lib64-engines-1.1-padlock.so-88bacab0d5f2bfde +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-etc-pki-tls-ct-log-list.cnf-8fbba57cc0ef9365 +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-usr-lib64-engines-1.1-afalg.so-a34191bfb7b1991f +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 CONTAINS SPDXRef-File-...share-licenses-openssl-libs-LICENSE-bf37d205b33febd4 +Relationship: SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.artifact.url-e2baf4271fb4cdcb OTHER SPDXRef-File-...lib-com.ibm.ws.artifact.url-1.0.81.jar-94e72c018599974c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.metatype-e2bb1263effc3a69 OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.metatype-1.0.81.jar-0ce64112c9304df6 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpgv-01bda67dd8f9b423 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.be.txt-025d29736299ea4b +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.hu.txt-078f6e3e0700f6c6 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.sv.txt-098d5f59f560320a +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.ru.txt-0ea32e037ef95b92 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-lib-systemd-user-gpg-agent.service-1224a0120f462823 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-libexec-dirmngr-ldap-14a0a3f9fcdb8f73 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-libexec-gpg-preset-passphrase-15b764792cb9d0a1 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpg-wks-server-1899695bd68127ab +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-libexec-gpg-protect-tool-1a358d25ad4f1328 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpgconf-24cd0f11ee72ff7e +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.ca.txt-3708e1f6c04cf5d1 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.txt-37b54befc1be3802 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.el.txt-446bfb105d1dc7a5 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.ja.txt-4583aec7d7faded8 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-libexec-scdaemon-46695b70b6cf7ccf +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-lib-systemd-user-gpg-agent.socket-4982709a39849fb0 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.cs.txt-4aeafd58863e19ab +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpg-connect-agent-4bcacd9cf972bfc9 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-lib-systemd-user-dirmngr.socket-500c8ec87369a5b8 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpgparsemail-519046b8f9193063 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-watchgnupg-52453ca259438ad6 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.de.txt-54d81c390bc25451 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpg-zip-552c13ca996257ef +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-...systemd-user-gpg-agent-browser.socket-5b8cf2e32b168d0a +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-sbin-g13-syshelp-63bca89e606f2ef1 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.da.txt-65f7b7c4bfd3d6a8 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.ro.txt-6969421d4c2c897f +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-libexec-gpg-check-pattern-6a8855dbb1c51ef3 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpgsplit-6df406738099b6cd +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.nb.txt-72a06a96b275bd8c +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.et.txt-775023be180b8e7b +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-licenses-gnupg2-COPYING-7789de3156cab373 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.pt.txt-77cdfdf2d060ab51 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.id.txt-77df6b15e7316aa5 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-dirmngr-85ed1bf6225dce74 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.sk.txt-95023049180bccc2 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-sbin-addgnupghome-95d62c800eca5c03 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.tr.txt-96756a67a9f72923 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-...systemd-user-gpg-agent-extra.socket-a57da2f4b43273ab +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-libexec-gpg-wks-client-aa56150aaa78286d +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.pl.txt-ab0bd7f409de934f +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.eo.txt-adfa5d45663496fc +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-dirmngr-client-b517ff400bdfe5b3 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-g13-b853cdbd34c603ec +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-...lib-systemd-user-gpg-agent-ssh.socket-be1a05434219e72b +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.zh-TW.txt-d0ec5af3603924fc +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.es.txt-d2c077a6492a5752 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-sbin-applygnupgdefaults-d305fe8d07d0f600 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.it.txt-d37f64171ca956a7 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.fr.txt-d448935108c4548f +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.zh-CN.txt-d5810c8b3ace4f38 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.gl.txt-d8ed03e48f0f3f7e +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-lib-systemd-user-dirmngr.service-e8137eed05f36fac +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.fi.txt-e8d6c8aa94c72894 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-help.pt-BR.txt-eb17c631f010cbec +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-share-gnupg-distsigkey.gpg-ebbac8997b1c4bd8 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-...share-gnupg-sks-keyservers.netCA.pem-fb48183f47c81a54 +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpg-fdf0a57b39a3a17a +Relationship: SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 CONTAINS SPDXRef-File-usr-bin-gpg-agent-ff38d93d254ce4c3 +Relationship: SPDXRef-Package-java-archive-ws-server-e4dbd36ed2832fe2 OTHER SPDXRef-File-...lib-com.ibm.ws.kernel.boot-1.0.81.jar-d95b1236acd055fd +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-six-e4e7ee91fea80cd9 OTHER SPDXRef-File-...six-1.11.0.dist-info-METADATA-8762652a2c9d4459 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.cm-e580e9d14c9a9896 OTHER SPDXRef-File-...com.ibm.wsspi.org.osgi.service.cm-1.1.81.jar-d05f79a88e8f768e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnftnl-e5ed9cb81779a0d2 CONTAINS SPDXRef-File-usr-share-doc-libnftnl-COPYING-b55311e627103956 +Relationship: SPDXRef-Package-rpm-libnftnl-e5ed9cb81779a0d2 CONTAINS SPDXRef-File-usr-lib64-libnftnl.so.11.2.0-dcff648f0ec23380 +Relationship: SPDXRef-Package-rpm-libnftnl-e5ed9cb81779a0d2 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.config.3.0-e6925c5839937e85 OTHER SPDXRef-File-...io.openliberty.org.eclipse.microprofile.config.3.0-1.0.81.jar-3efbf5011ae43394 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jakarta.connectors.2.1-e76868f2573e0ea9 OTHER SPDXRef-File-...io.openliberty.jakarta.connectors.2.1-1.0.81.jar-023b7d626ae3d945 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.jaxrs30-e775cebf7062ff5c OTHER SPDXRef-File-...ibm-io.openliberty.jaxrs30-1.0.81.jar-95dfcb4f6e420701 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.cdi.ee10-e78953ee8df3990f OTHER SPDXRef-File-...io.openliberty.org.jboss.resteasy.cdi.ee10-1.0.81.jar-2665f82bf39cedf8 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.java2sec-e8286830825febc9 OTHER SPDXRef-File-...com.ibm.ws.security.java2sec-1.0.81.jar-c7a49a8e3c87ab3c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 CONTAINS SPDXRef-File-...bash-completion-completions-p11-kit-5186ae069aab5e63 +Relationship: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 CONTAINS SPDXRef-File-...locale-en-GB-LC-MESSAGES-p11-kit.mo-831b3a4da9a880c6 +Relationship: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 CONTAINS SPDXRef-File-usr-libexec-p11-kit-p11-kit-remote-bacfcdb6a40947d4 +Relationship: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 CONTAINS SPDXRef-File-usr-lib64-libp11-kit.so.0.3.0-db20a3f7cd7eed74 +Relationship: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 CONTAINS SPDXRef-File-usr-share-licenses-p11-kit-COPYING-e5c66c8ca710cb17 +Relationship: SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 CONTAINS SPDXRef-File-usr-bin-p11-kit-e60d47020480b040 +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 CONTAINS SPDXRef-File-usr-share-info-dir.old-22645fda9aaa5181 +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 CONTAINS SPDXRef-File-usr-share-licenses-info-COPYING-4fc071846ccf8f09 +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 CONTAINS SPDXRef-File-usr-share-info-dir-60ee52a9659bb512 +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 CONTAINS SPDXRef-File-usr-sbin-install-info-7021998d7eaddeb9 +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 CONTAINS SPDXRef-File-usr-lib-rpm-macros.d-macros.info-78dc00ffd65e7db6 +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 CONTAINS SPDXRef-File-usr-bin-info-efee99e7ff1a6ae5 +Relationship: SPDXRef-Package-rpm-info-e9f510b787e0ecc0 CONTAINS SPDXRef-File-usr-sbin-fix-info-dir-f76397cfe121f349 +Relationship: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 CONTAINS SPDXRef-File-usr-lib64-libip6tc.so.0.1.0-089d553126f0404d +Relationship: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 CONTAINS SPDXRef-File-usr-lib64-libiptc.so.0.0.0-0e78b29a8e248258 +Relationship: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 CONTAINS SPDXRef-File-usr-lib64-libip6tc.so.2.0.0-1dccb800ab8e7196 +Relationship: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 CONTAINS SPDXRef-File-usr-lib64-libip4tc.so.2.0.0-5b7cda72ed734d0c +Relationship: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 CONTAINS SPDXRef-File-usr-lib64-libxtables.so.12.2.0-62c47b82c901c8a4 +Relationship: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 CONTAINS SPDXRef-File-usr-lib64-libip4tc.so.0.1.0-a35f6c5e272ae6a4 +Relationship: SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.kernel.service-eaf511615c27e802 OTHER SPDXRef-File-...com.ibm.ws.kernel.service-1.3.81.jar-b6b931108d3c289c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnsl2-ec79fbc521155d21 CONTAINS SPDXRef-File-usr-share-licenses-libnsl2-COPYING-b4c33fc0f483d181 +Relationship: SPDXRef-Package-rpm-libnsl2-ec79fbc521155d21 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnsl2-ec79fbc521155d21 CONTAINS SPDXRef-File-usr-lib64-libnsl.so.2.0.0-e655338bf8ec0f08 +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.servlet.3.1.jakarta-ecc39995894e0901 OTHER SPDXRef-File-...com.ibm.ws.webcontainer.servlet.3.1.jakarta-1.0.81.jar-39a4dbf51a0557bc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-...locale-en-US-LC-MESSAGES-mit-krb5.mo-3f4c6669e92f25c9 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-libkdb5.so.10.0-41901b776dba1616 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-libkrad.so.0.0-7a277395db789653 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-krb5-plugins-tls-k5tls.so-7b2dbc2f9413ebc6 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-libgssapi-krb5.so.2.2-7f052cb37d632add +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-libkrb5support.so.0.1-b2aaf38478c3e571 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-libkrb5.so.3.3-b3579c1cb88fdfc3 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-share-licenses-krb5-libs-LICENSE-b36fdf5277da3e35 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-libgssrpc.so.4.2-bfcf362178edf7aa +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-usr-lib64-libk5crypto.so.3.1-c67bd535442fe9d0 +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-...lib64-krb5-plugins-preauth-spake.so-c86702582253b66b +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-...share-crypto-policies-DEFAULT-krb5.txt-d6b290fd2cfa04cd +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 CONTAINS SPDXRef-File-etc-krb5.conf-e08585469b0e61f5 +Relationship: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.services.fragment-edeab00c7cfe155f OTHER SPDXRef-File-...io.openliberty.cdi.4.0.internal.services.fragment-1.0.81.jar-fc1b6e08bf9fbcff +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.servlet.4.0.jakarta-ee075dcb42a7385a OTHER SPDXRef-File-...com.ibm.ws.webcontainer.servlet.4.0.jakarta-1.0.81.jar-2b9191ad3daace5a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.context-ee9fcf16b4c39d41 OTHER SPDXRef-File-...com.ibm.ws.security.context-1.0.81.jar-f4f8bde80c8c49cc +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.wsspi.thirdparty.equinox-f00552568d914797 OTHER SPDXRef-File-...com.ibm.wsspi.thirdparty.equinox-1.3.81.jar-f787b00868727742 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gpg-pubkey-f11cf456670bc682 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...entry-points.txt-093084c6b1da5e44 +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...pyinotify.cpython-36.opt-1.pyc-1c630e002b98378b +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 OTHER SPDXRef-Package-python-pyinotify-2cc0497e30b46d84 +RelationshipComment: ownership-by-file-overlap: indicates that the parent package claims ownership of a child package since the parent metadata indicates overlap with a location that a cataloger found the child package by +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...top-level.txt-45b1b0808b2235e2 +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...python3.6-site-packages-pyinotify.py-4d85ba64a4cf5e3f +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...dependency-links.txt-58f8360c81712d54 +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...--pycache---pyinotify.cpython-36.pyc-59098d108c6a6e3f +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...share-licenses-python3-inotify-COPYING-96a145b0de26d8c8 +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-usr-bin-pyinotify-b422e9b17baa5577 +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...PKG-INFO-bf244285e2e636bf +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 CONTAINS SPDXRef-File-...SOURCES.txt-fe8a299ef2e9c9c8 +Relationship: SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f CONTAINS SPDXRef-File-...share-man-ru-man5-semanage.conf.5.gz-512e0fcb47511046 +Relationship: SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f CONTAINS SPDXRef-File-usr-share-licenses-libsemanage-COPYING-8125a3ce8fdb1aa7 +Relationship: SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f CONTAINS SPDXRef-File-etc-selinux-semanage.conf-94ebbbbebf9a3cd7 +Relationship: SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f CONTAINS SPDXRef-File-usr-lib64-libsemanage.so.1-d167d0fbef027dc2 +Relationship: SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f CONTAINS SPDXRef-File-usr-share-man-man5-semanage.conf.5.gz-d179f9aacdd95fc4 +Relationship: SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-fontpackages-filesystem-f296bbcdecba4614 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.endpoint-f29f09d31d83d248 OTHER SPDXRef-File-...lib-io.openliberty.endpoint-1.0.81.jar-6e522216f6cd5d1e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libncurses.so.6.1-0aae8e6195124e9f +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libtic.so.6.1-0f343f181e99fdfd +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libtinfo.so.6.1-3cd192028d2a0392 +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libform.so.6.1-3d1f69182dc01243 +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libmenu.so.6.1-57fa1e003baafada +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libncursesw.so.6.1-6edcde95db46ed40 +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libpanelw.so.6.1-930ed1b769034773 +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libmenuw.so.6.1-d8a60710014b77f4 +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libpanel.so.6.1-dd875c471ad6e188 +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 CONTAINS SPDXRef-File-usr-lib64-libformw.so.6.1-e1c6b379a1a891a0 +Relationship: SPDXRef-Package-rpm-libdnf-f386d34765ff5f46 CONTAINS SPDXRef-File-usr-share-licenses-libdnf-COPYING-5165a23ed804ca7b +Relationship: SPDXRef-Package-rpm-libdnf-f386d34765ff5f46 CONTAINS SPDXRef-File-usr-lib64-libdnf-plugins-README-852a5bf38a3c880d +Relationship: SPDXRef-Package-rpm-libdnf-f386d34765ff5f46 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libdnf-f386d34765ff5f46 CONTAINS SPDXRef-File-usr-lib64-libdnf.so.2-ec311eba8f23c49c +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.javaee.version-f3a507f45bcb3758 OTHER SPDXRef-File-...com.ibm.ws.javaee.version-1.0.81.jar-f311d0b09f6cbe10 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-profile.d-lang.csh-0187bc6ea2b5ac9c +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-shells-02d9af0b38cd98e2 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-ethertypes-03fcab9483d4a32b +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-csh.cshrc-09f80283e76590cb +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-group-126b5168e4d9fd8b +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-subuid-161015d5ebfe405f +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-subgid-1fb40ae1ef6f69b8 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-hosts-313360aadb479c12 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-dnf-protected.d-setup.conf-3a4253edbba81e76 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-host.conf-4868ec58da1c90fb +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-services-4af93d739636ab4e +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-profile-5a7d895563e2a4b4 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-exports-626f02fbaf5d9f4f +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-printcap-798f42720575d83a +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-environment-8ef58ba6d912c968 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-passwd-90de2d8634cc64c7 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-filesystems-910b481e67e71ac7 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-aliases-9e22cbe417ad2ab4 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-networks-afa1e4a0d8a9e142 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-usr-share-licenses-setup-COPYING-b1697b974ab84c60 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-protocols-b60ff1f0bea24ce5 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-shadow-bd97c6978c250f04 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-csh.login-be19e5f9f668bde2 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-inputrc-bf07b00e4f485257 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-profile.d-sh.local-bfb9288815fc2000 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-gshadow-c42f3b0bb60d8196 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-profile.d-lang.sh-cbde1e30082ef996 +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-motd-ce9469b8cab5279c +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-profile.d-csh.local-d7f2266219ea533b +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-setup-f479bfae76b76a21 CONTAINS SPDXRef-File-etc-bashrc-ece2de793a0c1a36 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---azure.cpython-36.opt-1.pyc-04b672c445b7eb21 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...cloud-what-fact-collector.py-059c321df3a32280 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---aws.cpython-36.opt-1.pyc-0f1983210d754872 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...site-packages-cloud-what-setup.py-19ffdae447de5c09 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---azure.cpython-36.pyc-1c49876508fb3494 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---gcp.cpython-36.pyc-258633bf365032e1 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...cloud-what-providers-aws.py-2816a0279321cd93 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...cloud-what-providers---init--.py-3d5a1e43ca982c18 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...-base-provider.cpython-36.pyc-4d824cadc75b614d +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...cloud-what--base-provider.py-5c5dde0cf2aed132 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-5efbf95f6d4724ac +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-60f149ffaa24de75 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---setup.cpython-36.opt-1.pyc-6c15b595776fc446 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---gcp.cpython-36.opt-1.pyc-73c4981fb9543158 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...cloud-what-providers-azure.py-7f3d7437ef85c772 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...-base-provider.cpython-36.opt-1.pyc-93a176e56b27a9e4 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...cloud-what-providers-gcp.py-9ccf5794bf1a7399 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---aws.cpython-36.pyc-badde5b1374a4d0d +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---provider.cpython-36.pyc-c71b63f1b4893c4d +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache---setup.cpython-36.pyc-cf1f8d334eaa87d1 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--pycache-----init--.cpython-36.pyc-d3925189185938c0 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...site-packages-cloud-what---init--.py-d4db3db5ae02e54d +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...fact-collector.cpython-36.pyc-d972fc8847e76682 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...provider.cpython-36.opt-1.pyc-db1e5098450b6a49 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...--init--.cpython-36.opt-1.pyc-f2bd2b115dc7d334 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...fact-collector.cpython-36.opt-1.pyc-fa67a2c2ed7a3737 +Relationship: SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 CONTAINS SPDXRef-File-...site-packages-cloud-what-provider.py-fbc5c1025ff902e4 +Relationship: SPDXRef-Package-java-archive-ws-auditreader-f510d73363ff9447 OTHER SPDXRef-File-...com.ibm.ws.security.audit.reader-1.0.81.jar-30697d64d9c46b5e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libnet-f53795cb57509559 CONTAINS SPDXRef-File-usr-share-doc-libnet-README-0b3f832626119b0c +Relationship: SPDXRef-Package-rpm-libnet-f53795cb57509559 CONTAINS SPDXRef-File-usr-share-doc-libnet-CONTRIB-1cf554a08647a884 +Relationship: SPDXRef-Package-rpm-libnet-f53795cb57509559 CONTAINS SPDXRef-File-usr-share-doc-libnet-COPYING-6ee8d8e4426e35fe +Relationship: SPDXRef-Package-rpm-libnet-f53795cb57509559 CONTAINS SPDXRef-File-usr-lib64-libnet.so.1.7.0-9687d900dcb3f0f7 +Relationship: SPDXRef-Package-rpm-libnet-f53795cb57509559 CONTAINS SPDXRef-File-usr-share-doc-libnet-CHANGELOG-b012ddf73e4a28d9 +Relationship: SPDXRef-Package-rpm-libnet-f53795cb57509559 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.security.utility-f53bcf3b45eef75f OTHER SPDXRef-File-...com.ibm.ws.security.utility-1.0.81.jar-e732363ee439e80e +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.logging-f5f0aa8c366d2ac0 OTHER SPDXRef-File-...wlp-lib-com.ibm.ws.logging-1.0.81.jar-84621c5e78ab4598 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.tx.jta.jakarta-f61867c065c3c5fe OTHER SPDXRef-File-...lib-com.ibm.tx.jta.jakarta-1.0.81.jar-929222e05121a521 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.serialization-f64d70a534b67721 OTHER SPDXRef-File-...com.ibm.ws.serialization-1.0.81.jar-c1244b1cc9f607e9 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.web-f67ab33a049816c4 OTHER SPDXRef-File-...io.openliberty.cdi.4.0.internal.web-1.0.81.jar-ae594f61545ed4c5 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-gnutls.config-00d41282c039e6a8 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-LEGACY-bind.txt-034d8ada8c368cae +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...policies-modules-NO-CAMELLIA.pmod-05cb030413e7d0e9 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-EMPTY-java.txt-05ddf5239c9dc576 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-EMPTY-gnutls.txt-060406ab506e02eb +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-opensslcnf.config-06de8a105e140f2a +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-java.config-077afe5bfa1ce8d5 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-EMPTY-bind.txt-07a575d3a9934013 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-DEFAULT-bind.txt-0cdc9ea98bbd2896 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-opensshserver.config-0ce74952d083e1df +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-krb5.config-0d9d9f8b3878e1fc +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FUTURE-openssh.txt-14f19ad4d282d335 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-opensslcnf.config-15cb1cffd1004d52 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-nss.config-18140d9a745968db +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-openssh.config-1b640f3502c79778 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-policies-DEFAULT.pol-1c80323d610449f8 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-bind.config-1fa70fc9d8f807be +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-etc-crypto-policies-config-2023d233a19ba276 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...policies-modules-ECDHE-ONLY.pmod-2a004eb9054a1d6c +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-nss.config-2d4375d8043994dd +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-opensslcnf.config-2fd9dfb1d605fd82 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-usr-share-crypto-policies-FIPS-nss.txt-32bb273f37c5dce3 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-DEFAULT-nss.txt-36ce92bc8b65a6d5 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...FUTURE-opensshserver.txt-373174adedd701a8 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-EMPTY-krb5.txt-37a804988f11b614 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-libssh.config-3887547c7daa62f3 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FIPS-openssh.txt-388a4884f2ec2297 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...policies-modules-OSPP.pmod-3a2b32a189ee6706 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-gnutls.config-3dbd0a80dd01bafb +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-policies-FIPS.pol-3e1d24f4b1b8cb54 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FUTURE-gnutls.txt-3eb07f0b14f46d8f +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-EMPTY-libssh.txt-3f608bf9d6b95e5b +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...policies-modules-AD-SUPPORT.pmod-4126a538a2e68d05 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-LEGACY-nss.txt-464f71da0d9e9823 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FUTURE-java.txt-46a14c04ff37b6e1 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-krb5.config-4947eb9ebaebd789 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-libreswan.config-4ba1ebbfa107e92d +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-java.config-4e46ff2eece86b69 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-DEFAULT-gnutls.txt-4ed81240a0256911 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-bind.config-4ef790b274d901cd +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-openssh.config-4fc5ec119fb25df9 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-policies-LEGACY.pol-512deec5f01186fd +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-DEFAULT-java.txt-52f135410a8fb00c +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-LEGACY-opensslcnf.txt-5546bc355b95d6cf +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-opensshserver.config-55ddfe487693493b +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-default-config-58a363c11dc7b0af +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-policies-EMPTY.pol-59c4e118c8ebbdf3 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FIPS-bind.txt-60761712558c6541 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-EMPTY-openssh.txt-625f0811c40879d9 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-nss.config-6288a2c337b26e22 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-DEFAULT-openssl.txt-69a01dcddb25be7c +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-EMPTY-opensslcnf.txt-6ec5536f089d3fda +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-COPYING.LESSER-6f985d0e502f9b76 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-etc-crypto-policies-state-CURRENT.pol-6ffd2ba288fe5ebf +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-libreswan.config-70225bebe9311558 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-LEGACY-gnutls.txt-71ebabcf1397433b +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-reload-cmds.sh-7336478926a86d5e +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-EMPTY-nss.txt-79dd90ea75c4e967 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-LEGACY-libreswan.txt-7c5d756c782c5fc4 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-opensslcnf.config-7d8ec13905994220 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-krb5.config-7ec78608c9e249ae +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FUTURE-opensslcnf.txt-822335635f34bd0b +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FIPS-openssl.txt-8360ca87ef3c90aa +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FIPS-opensshserver.txt-84357976b52479bb +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-openssh.config-86cfd3270f8186e5 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-DEFAULT-libreswan.txt-880f7f8a3a33a064 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FUTURE-nss.txt-8a5cf6cc360a04dd +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-policies-FUTURE.pol-8e19949a286d114d +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-gnutls.config-8eb8c2a422cc8171 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-openssh.config-8f74cfe195f82837 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-etc-crypto-policies-state-current-8fca46800dea9d86 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-opensshserver.config-9680180e24a509b9 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-krb5.config-9845f9ab6cb2daff +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-openssl.config-9b28a0bdb753ba76 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-LEGACY-openssh.txt-9c55ae11ea9b8e66 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FUTURE-bind.txt-9ee7d28eb60992f1 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FIPS-libssh.txt-a069543ecd45a1f6 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...DEFAULT-opensshserver.txt-a5d99fa248b62ef2 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-gnutls.config-a69d908cc5d0bff5 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-bind.config-a8397b2c83999f6f +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FUTURE-openssl.txt-b496120634f40348 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-DEFAULT-openssh.txt-b5fbd9a86079aeba +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FIPS-java.txt-be786f14bc65129e +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-java.config-c10f535734511b04 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-nss.config-c525294e8d49bb81 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FUTURE-libssh.txt-c589d2f32d9e822a +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FIPS-gnutls.txt-c69ab7663a1a3a0b +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-LEGACY-openssl.txt-cc73448fa988e95c +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...policies-modules-NO-SHA1.pmod-ccc101911cc2e3f0 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...EMPTY-opensshserver.txt-ccd8e8040b3aaa9e +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-libssh.config-d157fc4fa7324605 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-EMPTY-openssl.txt-d56eaf0891b08172 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-DEFAULT-krb5.txt-d6b290fd2cfa04cd +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-openssl.config-d75669bbfd7f99ba +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-java.config-d8719147b6288df1 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-DEFAULT-opensslcnf.txt-dc2fbe4908ea1a9e +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-LEGACY-libssh.txt-ddc60b77d93cfc9c +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-bind.config-e0a56aafc6a74691 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-libreswan.config-e1b268d981488933 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-opensshserver.config-e2c85fb27ef1e37f +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...LEGACY-opensshserver.txt-e56563b020042f2d +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FIPS-libreswan.txt-e5e8994ba6add4a7 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-libreswan.config-e65788c8a188872e +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FUTURE-krb5.txt-e74cc380240cd2aa +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-LEGACY-java.txt-f4d4cee6210df460 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-LEGACY-krb5.txt-f6f6de897dd507ce +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FUTURE-libreswan.txt-f71391c2ab23d794 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-EMPTY-libreswan.txt-f887fbfad8a81b67 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...share-crypto-policies-FIPS-krb5.txt-f9783e10324e53a5 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-DEFAULT-libssh.config-f984898a31daa7a1 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-LEGACY-libssh.config-f9b48db8e1c14592 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FUTURE-openssl.config-faa27545967db140 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-FIPS-opensslcnf.txt-faf9f9f2ccc08fe9 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...back-ends-FIPS-openssl.config-fb984036c7bd3e21 +Relationship: SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d CONTAINS SPDXRef-File-...crypto-policies-DEFAULT-libssh.txt-fdeadfaf140b67f7 +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-bin-dbus-cleanup-sockets-1b0ed22a7a0487cf +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-...dbus-1-dbus-daemon-launch-helper-5863faf90c99be6d +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-bin-dbus-daemon-5fa75d17886df743 +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-share-licenses-dbus-daemon-COPYING-650d3eb15814efbd +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-bin-dbus-test-tool-6c0ab134ab5fb082 +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-lib-systemd-user-dbus.socket-aada9b0f53723150 +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-lib-systemd-system-dbus.socket-c116c7c34ec110ed +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-lib-systemd-system-dbus.service-c74695f3debdbf81 +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-lib-tmpfiles.d-dbus.conf-d7168470fa567c65 +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-bin-dbus-run-session-d8e9e023831ad290 +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d CONTAINS SPDXRef-File-usr-lib-systemd-user-dbus.service-f20257ef9246b0eb +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-UTF-32.so-02b6b936c2ebacea +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libutil-2.28.so-14604828ae84b1c7 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-librt-2.28.so-166d2681a2aaf47a +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libm-2.28.so-24bb340519ffb940 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-UTF-16.so-24f07e0b0fe72e57 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libdl-2.28.so-3caae6eda12c8a53 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libnss-dns-2.28.so-41ce653f5ef31968 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-...libexec-getconf-POSIX-V7-LP64-OFF64-43024eaee2d9cd1e +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libresolv-2.28.so-46d22700607cd625 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-CP1252.so-4b52f65c9a85f387 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-UTF-7.so-6e4369b347788539 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libpthread-2.28.so-70feb92e73b56b2e +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libanl-2.28.so-7f4a06cca86fac08 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-ANSI-X3.110.so-7fff974fab11676f +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-ld-2.28.so-899b84a654a23ae4 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libc-2.28.so-8a0216ba1339ecc1 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libthread-db-1.0.so-960d931eb58ce757 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-etc-ld.so.conf-9d4d2315b8159d40 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-sbin-iconvconfig-a1f3cfb0bf0faa13 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-share-licenses-glibc-COPYING-a30e0b6e02b9527a +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-etc-ld.so.cache-a3a49bcf68803b4a +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-UNICODE.so-a4eb3960005c3c1a +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-etc-rpc-a6dec8bf69c4b476 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-audit-sotruss-lib.so-a781e72b447d9590 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-gconv-modules-ab74bb86da2b760f +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-ISO8859-1.so-b6ae37f627f28c6e +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libmvec-2.28.so-b7fba42a357d605f +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-etc-nsswitch.conf-c23113a191f1b1d8 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-gconv-modules.cache-c86440fc1aeb5b4f +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-share-licenses-glibc-COPYING.LIB-cf3f34cec7a83caf +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-libexec-getconf-XBS5-LP64-OFF64-d20abff376e0f337 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libSegFault.so-d418374ee72bcf95 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libmemusage.so-d803b9467e850822 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libnss-files-2.28.so-d83d87f4af9a1559 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libpcprofile.so-d8a0502a08dc3460 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-sbin-ldconfig-e01d507d6a915ec9 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libnss-compat-2.28.so-e4d96cebebb6d32e +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-...libexec-getconf-POSIX-V6-LP64-OFF64-ef810a1d0ae96183 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-gconv-ISO8859-15.so-f2136decf7325108 +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-lib64-libBrokenLocale-2.28.so-f40f77d58ff4b49f +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-var-cache-ldconfig-aux-cache-fa12b0fd3a460fab +Relationship: SPDXRef-Package-rpm-glibc-f7093d600015666c CONTAINS SPDXRef-File-usr-share-licenses-glibc-LICENSES-fd4e99dd9b2a9828 +Relationship: SPDXRef-Package-rpm-rpm-build-libs-f8e876f78b1b0978 CONTAINS SPDXRef-File-usr-lib64-librpmbuild.so.8.2.0-0cbd8132fba619ea +Relationship: SPDXRef-Package-rpm-rpm-build-libs-f8e876f78b1b0978 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-rpm-build-libs-f8e876f78b1b0978 CONTAINS SPDXRef-File-usr-lib64-librpmsign.so.8.2.0-f441e4f8cb1c595a +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.request.probes-f9d7dc75bc346030 OTHER SPDXRef-File-...com.ibm.ws.request.probes-1.0.81.jar-7bd44141116226e2 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.2.x.monitor.jakarta-faa672b91802dbce OTHER SPDXRef-File-...com.ibm.ws.jaxrs.2.x.monitor.jakarta-1.0.81.jar-f93a38504e2a0d0a +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-lz4-libs-fab834f3c05b83f6 CONTAINS SPDXRef-File-usr-lib64-liblz4.so.1.8.3-6538e09e53fe38c6 +Relationship: SPDXRef-Package-rpm-lz4-libs-fab834f3c05b83f6 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libpsl-fac4c11e752b3ddd CONTAINS SPDXRef-File-usr-share-licenses-libpsl-COPYING-44c907be9a26eeef +Relationship: SPDXRef-Package-rpm-libpsl-fac4c11e752b3ddd CONTAINS SPDXRef-File-usr-lib64-libpsl.so.5.3.1-5355b2c50198f794 +Relationship: SPDXRef-Package-rpm-libpsl-fac4c11e752b3ddd OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.io.micrometer-fb2cb7cf2d6ef540 OTHER SPDXRef-File-...io.openliberty.io.micrometer-1.0.81.jar-253f658bf8d5ef42 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-tar-fb2eb771609ce85a CONTAINS SPDXRef-File-usr-share-licenses-tar-COPYING-a0248b7b9ad2f646 +Relationship: SPDXRef-Package-rpm-tar-fb2eb771609ce85a OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-tar-fb2eb771609ce85a CONTAINS SPDXRef-File-usr-bin-tar-fa580debc9d7492c +Relationship: SPDXRef-Package-rpm-json-glib-fb5800e4b9214ebd CONTAINS SPDXRef-File-...en-GB-LC-MESSAGES-json-glib-1.0.mo-0a062e0adc7ba9c7 +Relationship: SPDXRef-Package-rpm-json-glib-fb5800e4b9214ebd CONTAINS SPDXRef-File-...girepository-1.0-Json-1.0.typelib-71dce22bc827cd88 +Relationship: SPDXRef-Package-rpm-json-glib-fb5800e4b9214ebd CONTAINS SPDXRef-File-usr-lib64-libjson-glib-1.0.so.0.400.4-957ae7df7a8165cc +Relationship: SPDXRef-Package-rpm-json-glib-fb5800e4b9214ebd CONTAINS SPDXRef-File-usr-share-licenses-json-glib-COPYING-a87f1884f6ee71fe +Relationship: SPDXRef-Package-rpm-json-glib-fb5800e4b9214ebd OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.jboss.weld5.se-fbad8c9ad57d9307 OTHER SPDXRef-File-...io.openliberty.org.jboss.weld5.se-1.0.81.jar-4d74162fb0fed5ce +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.metrics.5.0-fcb825d727397a08 OTHER SPDXRef-File-...io.openliberty.org.eclipse.microprofile.metrics.5.0-1.0.81.jar-448ff8e3a12316ae +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-gpg-pubkey-fd1087723a227e81 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libxml2-fda5b57dbb69e8e7 CONTAINS SPDXRef-File-usr-lib64-libxml2.so.2.9.7-43b74e13e28c79a2 +Relationship: SPDXRef-Package-rpm-libxml2-fda5b57dbb69e8e7 CONTAINS SPDXRef-File-usr-share-licenses-libxml2-Copyright-79d097ee18d64582 +Relationship: SPDXRef-Package-rpm-libxml2-fda5b57dbb69e8e7 CONTAINS SPDXRef-File-usr-bin-xmllint-a213f35a75ac05ac +Relationship: SPDXRef-Package-rpm-libxml2-fda5b57dbb69e8e7 OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-rpm-libxml2-fda5b57dbb69e8e7 CONTAINS SPDXRef-File-usr-bin-xmlcatalog-f2a74834d35f0919 +Relationship: SPDXRef-Package-rpm-sed-fe812e7e94487ede CONTAINS SPDXRef-File-usr-bin-sed-1d81a12e3b9399c3 +Relationship: SPDXRef-Package-rpm-sed-fe812e7e94487ede CONTAINS SPDXRef-File-usr-share-licenses-sed-COPYING-bb9753ca8d21083c +Relationship: SPDXRef-Package-rpm-sed-fe812e7e94487ede OTHER SPDXRef-File-var-lib-rpm-Packages-dea5773661c6f29c +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.filemonitor-ff50a675f87deefb OTHER SPDXRef-File-...com.ibm.websphere.appserver.spi.kernel.filemonitor-1.0.81.jar-dda1699e6f79dc00 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-Package-python-chardet-ff941a34dc8ad898 OTHER SPDXRef-File-...chardet-3.0.4-py3.6.egg-info-PKG-INFO-944ffd667cc9db41 +RelationshipComment: evident-by: indicates the package's existence is evident by the given file +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-dotnet-Apache-Commons-Daemon-Service-Runner-108b9d9123e75ddd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-PyGObject-026a55989515496e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-PySocks-9a572bb052f6e9e4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-acl-45fd7a3cd138b877 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-audit-libs-a8759a9d0a3b60da +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-basesystem-423a8fdad2b882bb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-bash-044e31d699b18d1a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-boot-proxy-1aba7eb0d811ebb9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-bootstrap-agent-df89313d7d4ebec4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-brotli-6ad53ebf1ca2f82a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-bzip2-libs-17acab8822026709 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-ca-certificates-cb3f2a18c1d6221d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-chardet-ff941a34dc8ad898 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-chkconfig-cc7797317bf6a1e2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.json4j-cfae675b723f2735 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.rls.jdbc.jakarta-75e3781a87aab322 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.tx.jta.jakarta-f61867c065c3c5fe +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.tx.util.jakarta-22a2d52242f0b82a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.basics-9f1f28ba07ffddec +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.config-66ddfec1c99641dc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.distributedMap-ade50b3b5247ec64 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.endpoint-66ab3ac228472eda +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.hpel-c429f58b8034c2cc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.json-cc9cae007144d249 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.kernel.service-d939ed5bedb62843 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.monitor-e1a15f5cd55c4cbd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.security.spnego-4ae53050e4fe0d56 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.sessionstats-2a94d6299aad479a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.api.ssl-1b9b8e246bb01d2c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.anno-3fb825ea1e85acd7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.application-748abe5518b3314e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.artifact-2173cd741b62f5a5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.classloading-75c7e061c7ba2305 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.containerServices-32bf4b13c197596c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.httptransport-d8fb12885ef56ff7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.javaeedd-8aaadc0ff19db6ad +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.embeddable-3b8d907fb16b2e94 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.filemonitor-ff50a675f87deefb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.metatype-e2bb1263effc3a69 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.kernel.service-421932a8e40184c4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.logging-d6690f2ff1085822 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.ssl-3a6d9f1416bf3550 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.threading-cbfaa03416eb5740 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.appserver.spi.transaction-40203f0f030d57c8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.javaee.activity.1.0-539b5585a68d881c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.javaee.jcache.1.1.core.jakarta-a1abca5528994e35 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.javaee.jsonp.1.0-ad3879053f00036f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.jsonsupport-6dbb9365dfff79bc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.org.reactivestreams.reactive-streams.1.0-b58b9bc35a4e1a74 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.rest.handler-8d1aec4aea85fc8e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.security-2d6fc057b2b6172c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.security.authentication-6623a069c33c5778 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.websphere.security.impl-c0196b7635519e5b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.adaptable.module-d193330201a8bc44 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.anno-9b254ddbce79a975 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.app.manager-b2135968a1d4f442 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.app.manager.lifecycle-34c625553449efde +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.app.manager.module-b83da2c1a8fe06d1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.app.manager.ready-098086dd3d8df3a3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.app.manager.wab.jakarta-99f6997896fda028 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.app.manager.war.jakarta-2c425a89cc925a53 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact-b7b24dc61fcbabde +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact.bundle-7ca57299f4ce7827 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact.equinox.module-95cb364cc6fdeb96 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact.file-98f364289079cd2b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact.loose-dcb472bff679f387 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact.overlay-52e797606b454ca3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact.url-e2baf4271fb4cdcb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.artifact.zip-327efb05b0ed769a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.cdi.interfaces.jakarta-04ae30f55385e266 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.cdi.internal.jakarta-b074d85e1d289f1c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.cdi.jndi.jakarta-5828db872bd83d8d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.cdi.transaction.jakarta-cca3ac184a383b1a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.cdi.web.jakarta-11311d79d2229e78 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.cdi.weld.jakarta-3fb2f035da57ce2b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.channel.ssl-8d1607111dc76bf7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.channelfw-66b968e18db97e3f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.classloader.context-cef214e61d25941e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.classloading-450cd0896f16afba +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.classloading.configuration-bbede9faa7a4ef54 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.collector.manager-a105a18389d8c866 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.config-61e900efa362f9e1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.config.schemagen-5b76b2736b884d7f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.config.schemagen.schemagen-1e60349c3d000cd5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen-94107ffafc593492 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen.serverschemagen-216aa4500d7ed9bf +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.config.server.schemagen.serverschemagen-1fed813f3c643120 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.container.service-260b772a916e1f2e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.context-922a1685924c2e6b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.crypto.certificate.creator.selfsigned-cb1e6649f2a5d34a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.crypto.certificateutil-12307a2b3786915d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.crypto.ltpakeyutil-4b995684ce6a3be1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.crypto.passwordutil-459d93e4c1fee5fc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.diagnostics-3ce69f18c6c57288 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.dynacache.monitor-6d9200f29816f7ff +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.dynamic.bundle-08d6cd9d800f0b92 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.eba.wab.integrator-e0f862f96f48f23e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.event-9764d1dd8f849ae9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.http.plugin.merge-bc7d4d738b60c216 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.injection.jakarta-b9aa8a8ead0ffdfa +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.install-0ae3e531f18a4587 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.install.featureUtility-4071c9e1c073c1e5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.install.featureUtility.featureutil-8baec303d4720fdf +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.install.map-48c15cc676df1319 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd-bf6dfa85944c5918 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd.common-16857c35ba5e7e3a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.dd.ejb-7dcf65ebe120bcf4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.ddmodel-0e8d48788588149a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.metadata.context-5ca4d7a2c0d58f0f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.defaultresource-007af3d81d7f48a8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v7-da0ec5e73a05a42c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v7.jndi-8041251ba24ed52a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.platform.v8-6a88cbf3eaed3be1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.javaee.version-f3a507f45bcb3758 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.2.x.config-09182df796a8cd3c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.2.x.monitor.jakarta-faa672b91802dbce +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.jaxrs.defaultexceptionmapper.jakarta-b09eadc72583ddc7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.jmx-191229ab7f2a419b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.jndi-104523a570fd0157 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.jndi.url.contexts-82055f4f911ddd86 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.jsonb.service-9834690d13a040c2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot-38c971b780108cd4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.archive-a0bf24de56dfbcf3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-launch-b56eff31af2b3397 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-server-05c89cd1d469dd04 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.boot.ws-server-cba6c2753995ba98 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.cmdline-81359e29cf6d4224 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.equinox.module-3c7f2e9024265206 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.feature-892614febcd1ae20 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.feature.featurelist-7eec3f00c5332c79 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.filemonitor-87273f3743c0754c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.instrument.check-04ae0a0c5ffc5c19 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.instrument.check-4a71efdb15f8f29b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.metatype.helper-22148fb06e54b25c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.kernel.service-eaf511615c27e802 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.logging-f5f0aa8c366d2ac0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel-0ab750de1add5f0e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel.binarylogviewer-c2f211fa6a49c56b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.logging.hpel.osgi-65135ef5c209f133 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.logging.osgi-54f6582cba8dbf38 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.managedobject-1981498e7cecd9ca +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.management.security-e1a35fbc676a3bb4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.microprofile.metrics.common-5269865d0e23c8d4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.monitor-c6fe46100ac575fb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jmx.api-7978c68156986b68 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jmx.core.whiteboard-d024df8930f6e14c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jndi.api-577ed84398f4dabd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.jndi.core-52167c6e9be82da5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.aries.util-7253c13a1b5cf358 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.fileupload.jakarta-d64e9df37e550aa3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.io-810c3481a6caaad2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.commons.lang3-052888805a0ba73d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.felix.scr-b877b2749da70824 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.apache.httpcomponents-0838e8dbedcbabcb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.coordinator-cae4dfa1a0a38c81 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.metatype-e23255d2a858b2a3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.eclipse.equinox.region-a2e99083c724d408 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.glassfish.json.1.0-200bede0300ec3f9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.jandex-c79f42367d823002 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.jdeparser.1.0.0-1aa60d6e4bfef0f5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.jboss.logging-8dc23917d07e91e9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.joda.time.1.6.2-5a454c453f632e06 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.objectweb.asm-27b96bbbf02de19c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.slf4j.api-bf59116b0f585960 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.org.slf4j.jdk14-90998235881dddab +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.product.utility-0a677035ad8b6950 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.product.utility.productutil-2bb22c41f2f6d52f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.product.utility.productutil-42ba1f36b46a3a6a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.recoverylog-c1e8dd8d006d5bfd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.repository-052eacb4e345a6af +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.repository.liberty-b3fcdb956d882ddd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.repository.parsers-7936172742d614b5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.repository.resolver-ae97e246e90df2d3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.request.probes-f9d7dc75bc346030 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.resource-463ae47b7545e2c0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.rest.handler.jakarta-c0f39d8ab2cc8940 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.runtime.update-c1298107964cccd5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security-df4334c69aab9582 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader-b0f068fb82bfd1a3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader.auditreader-c61c4f9d07369217 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.audit.reader.auditreader-8f344506f25c58af +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.authentication-3a8a7a13c07386b2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.authorization-a3796fae4626fb20 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.authorization.builtin-9a610721379b7e83 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.context-ee9fcf16b4c39d41 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.credentials-54204e2affa36dd6 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.credentials.ssotoken-5f5fa197584cf032 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.credentials.wscred-7d2973745a28b886 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.java2sec-e8286830825febc9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.kerberos.auth-8307eb5847190739 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.mp.jwt.proxy-8f00f2ec2e3f6b5b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.quickstart-2bd4ccbf2bffd031 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.ready.service-886a7e9cecc0f6d5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.registry-09a30f3c6fafe647 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.registry.basic-b27fa9bc88ae39a8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.token-67dbeeeb433ba94a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.token.ltpa-622231ba9c844d7f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.token.s4u2-d4ce9269292633b7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.utility-f53bcf3b45eef75f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.utility.securityutil-98d95b7cb8d7f646 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.security.utility.securityutil-ca8b9d721e9a1e1d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.serialization-f64d70a534b67721 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.session.jakarta-27113c1d16fd556f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.session.monitor-6df330efa7adaf70 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.ssl-5ec6a973db6a521a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.threading-04a82de306980599 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.timer-de9e29e7df6d7ef9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.transaction.context.jakarta-655cfebbb0413977 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.transaction.jakarta-8fb81778b3027ede +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.transport.http-9ecc2b0be781ef45 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.tx.embeddable.jakarta-6a0218b35e4c54bb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.tx.jta.extensions.jakarta-cc2e0c21ecbb7fd1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.cors.jakarta-19e84b0297f47f72 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.jakarta-57169466f7c5ad89 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.monitor.jakarta-42a0bfb4d82d0246 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.security.admin-cac3f63abeadad89 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.security.feature-4219f8419578111a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.servlet.3.1.jakarta-ecc39995894e0901 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webcontainer.servlet.4.0.jakarta-ee075dcb42a7385a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.runtime.interfaces-d8f7c7f67ed53663 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.runtime.jakarta-7ff3c6a91e9abb3c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility-00312ca50eae702c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility.webserverPluginutil-c06c8f49c4752a37 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.webserver.plugin.utility.webserverPluginutil-5fc7d895c5805927 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.ws.wsbytebuffer-d6d7aedfbda2c7a6 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.core-cc10e4e4ad879773 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.namespace.service-933eff1b00233d81 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.cm-e580e9d14c9a9896 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.component-3f51d271514f2837 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.component.annotations-c04b9599d1184dc9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.coordinator-3c4d4100ae462734 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.event-b4eae56772edbbe1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.log-01f1ee8c9ddfe34c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.metatype-dba6e3c5aebc2417 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.org.osgi.service.metatype.annotations-57608e27b67eb2a0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-com.ibm.wsspi.thirdparty.equinox-f00552568d914797 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-coreutils-single-dc73810b9262bc8d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-cracklib-9ef65a52eab27a5d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-cracklib-dicts-c5c33b0e4c2f73f8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-crit-9d9ae1c0b26b6359 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-crit-93303bae4b0d7b38 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-crypto-policies-f6a9c2f1d8dc553d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-crypto-policies-scripts-7aacf61c6768b62e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-cryptsetup-libs-a97447baebc7eca3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-curl-2ac75dd8cdd82d1d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-cyrus-sasl-lib-4ac4fb86d9511974 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dbus-1cb6510238ba5dd8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dbus-common-9b23a3b3d7af7066 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dbus-daemon-f6e1a68efe38534d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dbus-glib-93aad31cdc4b7d7c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dbus-libs-6491607d041784b9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-dbus-python-9a2539d64666884c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dbus-tools-5682349c5a3d4457 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-decorator-64ad1a0dc4b7f605 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dejavu-fonts-common-7de3ef5f2346b503 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dejavu-sans-fonts-d2a867731b46f125 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-device-mapper-b072f17efc384d47 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-device-mapper-libs-c05ce4d7f437decf +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dmidecode-a3f71454ec10f8e1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dnf-4418429efe47422c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dnf-data-33e095fce1938853 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-dnf-plugin-subscription-manager-8d5e57327506c80e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-elfutils-default-yama-scope-8056e0aae345bdf9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-elfutils-libelf-1490683b1177d120 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-elfutils-libs-62f17b42f3fcff45 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-ethtool-47e0eb55544e9981 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-expat-580d0138d97ae889 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-file-libs-a73849bc58ff0d0c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-filesystem-179398b43587ad72 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-findutils-0c5e4ad061cf8e7d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-fontconfig-9b7220dd4eb2fb82 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-fontpackages-filesystem-f296bbcdecba4614 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-freetype-55ac2bebbb9cda5d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gawk-92ce7936acd8b933 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gdb-gdbserver-b09f80b040ee2d01 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gdbm-5f248ec8dffe726e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gdbm-libs-a01746ed3caeb940 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-glib2-a1907d769a35de0a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-glibc-f7093d600015666c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-glibc-common-3f87b56a1060497e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-glibc-langpack-en-174064d57eeb4436 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-glibc-minimal-langpack-a4d2f9b09ae44069 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gmp-85eb41f6c0af40bf +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gnupg2-e2cf6f9d4b9fd3b4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gnutls-a1832f174a14ca42 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gobject-introspection-bdc2a47bedb811d8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-gpg-176c74855eaee639 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gpg-pubkey-fd1087723a227e81 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gpg-pubkey-f11cf456670bc682 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gpgme-b2717f68a5fdc608 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-grep-0328ffc80d53f10e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-guide-getting-started-0470a2ffe7a4f194 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-gzip-96776ea0534048fb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-idna-df327da7f0a4a959 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-ima-evm-utils-dfd6cbe7443a229f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-info-e9f510b787e0ecc0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-iniparse-b1ac8ab06cf60d46 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.accesslists.internal-348779c8b4c0f3c7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.interfaces-c16434037d8f3889 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.services.fragment-edeab00c7cfe155f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.web-f67ab33a049816c4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.internal.weld-48ed937a7e69e891 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.cdi.4.0.thirdparty-c560a9497a9dc8cb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.cdi.spi-5769548082bfa726 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.checkpoint-8a542215f307aab5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.dynacache.internal-3679127cfbf6d051 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.el.internal.cdi.jakarta-62e27c792932b3ae +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.endpoint-f29f09d31d83d248 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.io.micrometer-fb2cb7cf2d6ef540 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.io.netty-b10b2643bdb5f826 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.io.netty.ssl-77a0ac5be06a4317 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.io.smallrye.common.jakarta-1f8abfb0200823fe +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.io.smallrye.config.jakarta-a6c64dde369a4bd1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.io.smallrye.metrics-1981bbe28a0d2bf1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.activation.2.1-a0e0435368e50251 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.annotation.2.1-b6edbcb5e9053be2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.cdi.4.0-00400792c1da6a4a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.connectors.2.1-e76868f2573e0ea9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.enterpriseBeans.4.0-2e6d7754bdcf7906 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.expressionLanguage.5.0-d237df2857b8cf70 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.interceptor.2.1-78069b28c25a1408 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.jsonb.3.0-9dd0dc9b16e624f7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.jsonp.2.1-a9f126779846a343 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.mail.2.1-2ab37d9ff119e432 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.pages.3.1-128193a06618afaf +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.persistence.3.1-52af0fd25b633d19 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.persistence.api.3.1-ca362583b374a441 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.restfulWS.3.1-7ccdfa2119281541 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.servlet.6.0-4b40cefce58f0cac +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.soap.3.0-4d1af385604efc57 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.transaction.2.0-de6a4493c1f4ec7b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.validation.3.0-27e05000e02b06ac +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.xmlBinding.4.0-9f8511fbe5569dad +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakarta.xmlWS.4.0-7e12bdbf180c8b67 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakartaee.platform.v10-20733c6463dd687a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jakartaee.platform.v9-4281e9510ade84e9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.java11.internal-38ddfeb1154186b8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jaxrs30-e775cebf7062ff5c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.jcache.internal-65a05a3bf42e0221 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.microprofile.config.internal.common-7354fb61a26e927e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.microprofile.config.internal.serverxml-6abea41833808907 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.microprofile.health.3.1.internal.jakarta-8dbab8314d5b8152 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.internal-aa29e6c851679007 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.monitor.internal-a00da8d5e98c46b3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.private.internal-6b73b703db0b4142 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.microprofile.metrics.5.0.public.internal-ab489b83add53d04 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.netty.internal-bf9bec02f2693337 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.netty.internal.tls.impl-618277a2b604b791 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.apache.commons.codec-a44140855947d054 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.apache.commons.logging-31c3e284ec109962 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.eclipse.angus.activation-83344f32bf0da0b4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.config.3.0-e6925c5839937e85 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.health.4.0-de255c121c78305a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.eclipse.microprofile.metrics.5.0-fcb825d727397a08 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.eclipse.parsson.1.1-1bb0c08cba48bbd4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.eclipse.persistence-3.1-012f8ad4fa8efe92 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.eclipse.yasson.3.0-882143b6eaf54e26 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.glassfish.hk2.osgi-resource-locator-2dd36d13eb338803 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.jboss.classfilewriter.1.3-2400266da2e70a6d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.jboss.logging35-6f5042d0577c4190 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.cdi.ee10-e78953ee8df3990f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.common.ee10-5dc2391a0014e80d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.jboss.resteasy.server.ee10-be66d3c87069f1f6 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.jboss.weld5-42d3117b8c69897a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.org.jboss.weld5.se-fbad8c9ad57d9307 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.restfulWS.internal.ssl-83e65ff9b0b27acb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.restfulWS.mpMetrics.filter-b921929bb8e9c339 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.restfulWS30.jsonb20provider-79b622081ee5a476 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.security-338956fc7ac5ebb9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.builtin-5463bf749e0971ce +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.filter-ad8eaf70eb144d78 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.security.authentication.internal.tai-13af1a248263e9c5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.security.jaas.internal.common-99399c598d276da1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.security.sso.internal-d6187fd248cce2ce +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.session.6.0.internal-1c350314002feaf1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.transaction-8a165dac8620c5e9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.transaction.internal.cdi20.jakarta-b5fc44809a53b473 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.webcontainer.security.internal-3d1dbec5aaae7993 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.webcontainer.servlet.6.0.internal-dbeb836c22275336 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.webcontainer.servlet.6.0.internal.factories-54be295232b23485 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-io.openliberty.wsoc.ssl.internal-8e0e00ee38279d62 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-iptables-48db2896eea2df43 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-iptables-libs-eadc98c1e1314ad2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-jansson-a6e466f321d3c5ff +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-binary-java-d9e23e0b1de302e4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-jrt-fs-b5a4068828245f9c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-json-c-399cffcbd42f5af6 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-json-glib-fb5800e4b9214ebd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-keyutils-libs-885dca71d492333b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-kmod-libs-dce662a72db32ee1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-krb5-libs-ed8dd572fc4c7d01 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-langpacks-en-b921e0dabe7fe84e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libacl-1e60fab75e8d074c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libarchive-d2fcf670d209798e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libassuan-9166c1f313ff431e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libattr-d77f66c9b8b51965 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libblkid-2984dcc387f1f22a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libcap-d894483b6c7ea20c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libcap-ng-51cf02126f09a3ef +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libcom-err-5810f3c8a99f4bcd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-libcomps-08b412214951d9e5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libcomps-a4decf888fcc52e4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libcurl-be0041c760e1b43f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libdb-cdeffe58cdcf475e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libdb-utils-6c480d378a4472e8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libdnf-f386d34765ff5f46 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libfdisk-14aa4da39dcdd70b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libffi-28487ffb13452c88 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libgcc-c08b4e918264ecb2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libgcrypt-65b56d43de84072c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libgpg-error-5b65ea98e3b52a78 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libibverbs-0fc38f82b0067610 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libidn2-2ad5f614b681561b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libksba-0b1315a0312ff2e8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libmnl-b714cde5e9c0a3f9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libmodulemd-9c9ffed1c422836c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libmount-070a612d83e6848e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libnet-f53795cb57509559 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libnetfilter-conntrack-830c21345b7e5867 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libnfnetlink-d0dd7b9ce7180a33 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libnftnl-e5ed9cb81779a0d2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libnghttp2-6b719eae4b2d0223 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libnl3-7f2a812b3863ae5e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libnsl2-ec79fbc521155d21 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libpcap-66241757d50be997 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libpng-d91e6e2416007afb +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libpsl-fac4c11e752b3ddd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libpwquality-227377ee1a267f99 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-librepo-4cd2e86c97c4754a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libreport-filesystem-279179905ddc5197 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-librhsm-a49d331240abf19b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libseccomp-9637380e6a0d0e55 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libselinux-594107f6b62dc4ab +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libsemanage-f26c68457ce41f1f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libsepol-26ec304cd5fb1c60 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libsigsegv-27b4d892ad295940 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libsmartcols-cfc1b4c97bd0b1f9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libsolv-8b6446e1aef0cb45 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libssh-8cb077ad4f6fdfd4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libssh-config-b52f1724c9af9daa +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libstdc---185db1d2fd55071b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libtasn1-ce90f646db4cd13d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libtirpc-8061da9a912f4b51 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libunistring-831f91ebad44f2ec +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libusbx-703f02296551e01f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libuser-278d0e03d58177c9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libutempter-3b10d50d8648cfcf +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libuuid-6320b104102d68ba +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libverto-75c996841840f97a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libxcrypt-48286300e23c4e82 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libxml2-fda5b57dbb69e8e7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libyaml-d3d578fd9d7e0485 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-libzstd-ae3b0f6ebfec6dfc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-lua-libs-1f0da6c7eb5408a0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-lz4-libs-fab834f3c05b83f6 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-mpfr-1a8596f0e80a7465 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-ncurses-base-2dce9786ac65fa97 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-ncurses-libs-f2e1524408f6a5a0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-nettle-446fa052fc193975 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-nftables-41e9ad5abafd2455 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-npth-9ce2662d05a994e8 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-openldap-11cd52b2a550eee7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-openssl-4bad690ba5bd9fb1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-openssl-libs-e289151f6cd842b7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-org.eclipse.osgi-98c62e474bd18238 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-p11-kit-e85353b160edcdb6 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-p11-kit-trust-31169e5c6017021f +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-pam-c80e5763b488aaab +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-passwd-d530074a47793db2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-pcre-39055d7c30264ebc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-pcre2-3da25cce088d6f35 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-platform-python-8a561c12847b8113 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-platform-python-setuptools-76091877239f81dd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-popt-0b3935dae763295c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-protobuf-c-caf48a448cb494cc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-publicsuffix-list-dafsa-214d24ff5f54adcf +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-pyinotify-2cc0497e30b46d84 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-python-dateutil-509a860043c6af7b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-python-dmidecode-9f1510382966a14d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-chardet-9e6431435b151bfa +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-cloud-what-f4efc98b00bb9c03 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-dateutil-47b2aa64a249ce39 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-dbus-a5252f9f5861e1f0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-decorator-04d89fde69a40489 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-dmidecode-01dd977f4be46b06 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-dnf-5e047c692bf38965 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-dnf-plugins-core-c424b09c00fad653 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-ethtool-301a736b9f8c1690 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-gobject-base-b1a76a162ebe1b93 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-gpg-9fdfd945979c2f4d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-hawkey-8f0735090ae376bd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-idna-6d1e290dee427d09 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-iniparse-479f6ec813b94861 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-inotify-f23a7134d05801d9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-libcomps-b91378126f760a9d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-libdnf-11251e4243cf7374 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-librepo-0b6f4113629057b0 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-libs-66fd962ddd2e7021 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-libxml2-45882091e788d9c1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-pip-wheel-468c6d9b2ca975d4 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-pysocks-02b9fc219c931075 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-requests-c2768da7db483a78 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-rpm-a39252013797a252 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-setuptools-wheel-33a76a121de2018e +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-six-7ebb9665cd45c4ea +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-subscription-manager-rhsm-9f0c1aa0fbbdea78 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-syspurpose-2e5da31e19ef1208 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-systemd-7ba4bc9b3a2c2021 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-python3-urllib3-74cfd813d9218248 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-readline-c5d42f4c234235ee +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-redhat-release-2077a7fb4ca22008 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-requests-69c379e96a25693b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-rootfiles-5d7d10ebce95eca1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-rpm-a5c78e59349331b5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-rpm-544fe79948a81a2a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-rpm-build-libs-f8e876f78b1b0978 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-rpm-libs-d493d01c7fe718f9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-sed-fe812e7e94487ede +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-setup-f479bfae76b76a21 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-setuptools-70ad73e984ff17a3 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-shadow-utils-40261b9376f70b6a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-six-e4e7ee91fea80cd9 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-sqlite-libs-3c14677b35b16020 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-subscription-manager-7276605e595d4096 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-subscription-manager-2a8353dbf4c29745 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-subscription-manager-rhsm-certificates-7c18b7dbf0061f93 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-syspurpose-c2c79d0712654121 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-systemd-04d6184674b39275 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-systemd-libs-6f492c653093b0b6 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-systemd-pam-b5bc31dd627a1038 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-systemd-python-7d3d321f514748f5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-tar-fb2eb771609ce85a +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-tpm2-tss-b8ef0de6af6896ec +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-tzdata-5a2ae3619bb2c1ac +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-python-urllib3-8ede639981c11081 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-usermode-8ab8e85f37f04064 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-util-linux-bf827b267d474173 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-vim-minimal-b0b67d2d41e3e7c7 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-virt-what-3a5a55ee259fe7fc +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-which-2a569468adbfddc1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-auditreader-2cb4d0d746cdae86 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-auditreader-f510d73363ff9447 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-binarylogviewer-ad2bec3dc6b298dd +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-featureUtility-1c587851fc967577 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-featurelist-db745e443214a1e2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-javaagent-286db1a1f1423963 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-launch-22d346fb8340a3c1 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-productutil-b3b1a307ad9a854d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-productutil-af521fee7557a77b +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-schemagen-2643abaf60e0638d +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-securityutil-248c284f10d70274 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-securityutil-df187fb4fe4c3522 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-server-c24a2dabb7438137 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-server-e4dbd36ed2832fe2 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-serverSchemagen-03f4a941773d92c5 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-serverSchemagen-9b02db7a319b708c +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-webserverPluginutil-5138594310b74d46 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-java-archive-ws-webserverPluginutil-1733bf66d2879f15 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-xz-libs-284770d9f31d73af +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-yum-b9a4eb0f7c61e467 +Relationship: SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties CONTAINS SPDXRef-Package-rpm-zlib-c03c984064097e8d +Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-DocumentRoot-Image-quay.alldcs.nl-allard-olproperties diff --git a/kubernetes/dev/crate/alter_table b/kubernetes/dev/crate/alter_table new file mode 100755 index 0000000..7a67685 --- /dev/null +++ b/kubernetes/dev/crate/alter_table @@ -0,0 +1 @@ +ALTER TABLE iss SET ("blocks.read_only_allow_delete" = FALSE) diff --git a/kubernetes/dev/crate/controler.yaml b/kubernetes/dev/crate/controler.yaml new file mode 100755 index 0000000..8471bb5 --- /dev/null +++ b/kubernetes/dev/crate/controler.yaml @@ -0,0 +1,97 @@ +kind: StatefulSet +apiVersion: "apps/v1" +metadata: + # This is the name used as a prefix for all pods in the set. + name: crate +spec: + serviceName: "crate-set" + # Our cluster has three nodes. + replicas: 3 + selector: + matchLabels: + # The pods in this cluster have the `app:crate` app label. + app: crate + template: + metadata: + labels: + app: crate + spec: + # InitContainers run before the main containers of a pod are + # started, and they must terminate before the primary containers + # are initialized. Here, we use one to set the correct memory + # map limit. + initContainers: + - name: init-sysctl + image: busybox + imagePullPolicy: IfNotPresent + command: ["sysctl", "-w", "vm.max_map_count=262144"] + securityContext: + privileged: true + # This final section is the core of the StatefulSet configuration. + # It defines the container to run in each pod. + containers: + - name: crate + # Use the CrateDB 5.1.1 Docker image. + image: crate:5.1.1 + # Pass in configuration to CrateDB via command-line options. + # We are setting the name of the node's explicitly, which is + # needed to determine the initial master nodes. These are set to + # the name of the pod. + # We are using the SRV records provided by Kubernetes to discover + # nodes within the cluster. + args: + - -Cnode.name=${POD_NAME} + - -Ccluster.name=${CLUSTER_NAME} + - -Ccluster.initial_master_nodes=crate-0,crate-1,crate-2 + - -Cdiscovery.seed_providers=srv + - -Cdiscovery.srv.query=_crate-internal._tcp.crate-internal-service.${NAMESPACE}.svc.cluster.local + - -Cgateway.recover_after_data_nodes=2 + - -Cgateway.expected_data_nodes=${EXPECTED_NODES} + - -Cpath.data=/data + volumeMounts: + # Mount the `/data` directory as a volume named `data`. + - mountPath: /data + name: data + resources: + limits: + # How much memory each pod gets. + memory: 512Mi + ports: + # Port 4300 for inter-node communication. + - containerPort: 4300 + name: crate-internal + # Port 4200 for HTTP clients. + - containerPort: 4200 + name: crate-web + # Port 5432 for PostgreSQL wire protocol clients. + - containerPort: 5432 + name: postgres + # Environment variables passed through to the container. + env: + # This is variable is detected by CrateDB. + - name: CRATE_HEAP_SIZE + value: "256m" + # The rest of these variables are used in the command-line + # options. + - name: EXPECTED_NODES + value: "3" + - name: CLUSTER_NAME + value: "my-crate" + - name: POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + volumeClaimTemplates: + # Use persistent storage. + - metadata: + name: data + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi diff --git a/kubernetes/dev/crate/crate-storage.yaml b/kubernetes/dev/crate/crate-storage.yaml new file mode 100755 index 0000000..1b5c979 --- /dev/null +++ b/kubernetes/dev/crate/crate-storage.yaml @@ -0,0 +1,98 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: crate-pv-0 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/crate/crate-0 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: crate-pv-1 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/crate/crate-1 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: crate-pv-2 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/crate/crate-2 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: data-crate-0 +spec: + storageClassName: "" + volumeName: crate-pv-0 + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: data-crate-1 +spec: + storageClassName: "" + volumeName: crate-pv-1 + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: data-crate-2 +spec: + storageClassName: "" + volumeName: crate-pv-2 + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi diff --git a/kubernetes/dev/crate/create-table b/kubernetes/dev/crate/create-table new file mode 100755 index 0000000..6bab578 --- /dev/null +++ b/kubernetes/dev/crate/create-table @@ -0,0 +1,4 @@ +CREATE TABLE iss ( + timestamp TIMESTAMP GENERATED ALWAYS AS CURRENT_TIMESTAMP, + position GEO_POINT + ); diff --git a/kubernetes/dev/crate/external-service.yaml b/kubernetes/dev/crate/external-service.yaml new file mode 100755 index 0000000..5a35135 --- /dev/null +++ b/kubernetes/dev/crate/external-service.yaml @@ -0,0 +1,19 @@ +kind: Service +apiVersion: v1 +metadata: + name: crate-external-service + labels: + app: crate +spec: + # Create an externally reachable load balancer. + type: LoadBalancer + ports: + # Port 4200 for HTTP clients. + - port: 4200 + name: crate-web + # Port 5432 for PostgreSQL wire protocol clients. + - port: 5432 + name: postgres + selector: + # Apply this to all nodes with the `app:crate` label. + app: crate diff --git a/kubernetes/dev/crate/ingressroute-tls.yaml b/kubernetes/dev/crate/ingressroute-tls.yaml new file mode 100755 index 0000000..0dc515d --- /dev/null +++ b/kubernetes/dev/crate/ingressroute-tls.yaml @@ -0,0 +1,15 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: cratedb-tls +spec: + entryPoints: + - websecure + routes: + - match: Host(`cratedb.alldcs.nl`) + kind: Rule + services: + - name: crate-ui + port: 4200 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/crate/internal-service.yaml b/kubernetes/dev/crate/internal-service.yaml new file mode 100755 index 0000000..3d9afed --- /dev/null +++ b/kubernetes/dev/crate/internal-service.yaml @@ -0,0 +1,36 @@ +kind: Service +apiVersion: v1 +metadata: + name: crate-internal-service + labels: + app: crate +spec: + # A static IP address is assigned to this service. This IP address is + # only reachable from within the Kubernetes cluster. + type: ClusterIP + ports: + # Port 4300 for inter-node communication. + - port: 4300 + name: crate-internal + selector: + # Apply this to all nodes with the `app:crate` label. + app: crate +--- +kind: Service +apiVersion: v1 +metadata: + name: crate-ui + labels: + app: crate +spec: + # A static IP address is assigned to this service. This IP address is + # only reachable from within the Kubernetes cluster. + type: ClusterIP + ports: + # Port 4300 for inter-node communication. + - port: 4200 + name: crate-web + selector: + # Apply this to all nodes with the `app:crate` label. + app: crate + diff --git a/kubernetes/dev/crate/iss.sh b/kubernetes/dev/crate/iss.sh new file mode 100755 index 0000000..2b31896 --- /dev/null +++ b/kubernetes/dev/crate/iss.sh @@ -0,0 +1,20 @@ +# Exit immediately if a pipeline returns a non-zero status +set -e + +position () { + curl -s http://api.open-notify.org/iss-now.json | + jq -r '[.iss_position.longitude, .iss_position.latitude] | @tsv'; +} + +wkt_position () { + echo "POINT ($(position | expand -t 1))"; +} + +while true; do + crash --hosts 192.168.40.81:4200 \ + --command "INSERT INTO iss (position) VALUES ('$(wkt_position)')" + echo 'Sleeping for 1 seconds...' + sleep 10 +done + + diff --git a/kubernetes/dev/crate/select b/kubernetes/dev/crate/select new file mode 100755 index 0000000..44ae078 --- /dev/null +++ b/kubernetes/dev/crate/select @@ -0,0 +1 @@ +SELECT "timestamp", "position" FROM "doc"."iss" LIMIT 1000; diff --git a/kubernetes/dev/defectdojo/dev/README.md b/kubernetes/dev/defectdojo/dev/README.md new file mode 100644 index 0000000..dde0828 --- /dev/null +++ b/kubernetes/dev/defectdojo/dev/README.md @@ -0,0 +1,2 @@ +user : admin +password: Defectdojo01@ diff --git a/kubernetes/dev/defectdojo/dev/admin-password.txt b/kubernetes/dev/defectdojo/dev/admin-password.txt new file mode 100644 index 0000000..3679aa3 --- /dev/null +++ b/kubernetes/dev/defectdojo/dev/admin-password.txt @@ -0,0 +1 @@ +Hh7ViTz1cVj8PV4faGVO9A diff --git a/kubernetes/dev/defectdojo/dev/defectdojo-helm.yaml b/kubernetes/dev/defectdojo/dev/defectdojo-helm.yaml new file mode 100644 index 0000000..9d99811 --- /dev/null +++ b/kubernetes/dev/defectdojo/dev/defectdojo-helm.yaml @@ -0,0 +1,1075 @@ +--- +# Source: defectdojo/charts/rabbitmq/templates/serviceaccount.yaml +apiVersion: v1 +kind: ServiceAccount +metadata: + name: defectdojo-rabbitmq + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +automountServiceAccountToken: true +secrets: + - name: defectdojo-rabbitmq +--- +# Source: defectdojo/charts/rabbitmq/templates/config-secret.yaml +apiVersion: v1 +kind: Secret +metadata: + name: defectdojo-rabbitmq-config + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +type: Opaque +data: + rabbitmq.conf: |- + IyMgVXNlcm5hbWUgYW5kIHBhc3N3b3JkCiMjCmRlZmF1bHRfdXNlciA9IHVzZXIKIyMgQ2x1c3RlcmluZwojIwpjbHVzdGVyX2Zvcm1hdGlvbi5wZWVyX2Rpc2NvdmVyeV9iYWNrZW5kICA9IHJhYmJpdF9wZWVyX2Rpc2NvdmVyeV9rOHMKY2x1c3Rlcl9mb3JtYXRpb24uazhzLmhvc3QgPSBrdWJlcm5ldGVzLmRlZmF1bHQKY2x1c3Rlcl9mb3JtYXRpb24ubm9kZV9jbGVhbnVwLmludGVydmFsID0gMTAKY2x1c3Rlcl9mb3JtYXRpb24ubm9kZV9jbGVhbnVwLm9ubHlfbG9nX3dhcm5pbmcgPSB0cnVlCmNsdXN0ZXJfcGFydGl0aW9uX2hhbmRsaW5nID0gYXV0b2hlYWwKIyBxdWV1ZSBtYXN0ZXIgbG9jYXRvcgpxdWV1ZV9tYXN0ZXJfbG9jYXRvciA9IG1pbi1tYXN0ZXJzCiMgZW5hYmxlIGd1ZXN0IHVzZXIKbG9vcGJhY2tfdXNlcnMuZ3Vlc3QgPSBmYWxzZQojZGVmYXVsdF92aG9zdCA9IGRlZmVjdGRvam8tdmhvc3QKI2Rpc2tfZnJlZV9saW1pdC5hYnNvbHV0ZSA9IDUwTUIKIyMgTWVtb3J5IFRocmVzaG9sZAojIwp0b3RhbF9tZW1vcnlfYXZhaWxhYmxlX292ZXJyaWRlX3ZhbHVlID0gNTM2ODcwOTEyCnZtX21lbW9yeV9oaWdoX3dhdGVybWFyay5yZWxhdGl2ZSA9IDAuNQ== +--- +# Source: defectdojo/templates/configmap.yaml +apiVersion: v1 +kind: ConfigMap +metadata: + name: defectdojo + labels: + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +data: + DD_ADMIN_USER: admin + DD_ADMIN_MAIL: admin@defectdojo.local + DD_ADMIN_FIRST_NAME: Admin + DD_ADMIN_LAST_NAME: User + DD_ALLOWED_HOSTS: defectdojo.alldcs.nl,defectdojo-django.defectdojo + DD_SITE_URL: https://defectdojo.alldcs.nl + DD_CELERY_BROKER_SCHEME: amqp + DD_CELERY_BROKER_USER: 'user' + DD_CELERY_BROKER_HOST: defectdojo-rabbitmq + DD_CELERY_BROKER_PORT: '5672' + DD_CELERY_BROKER_PARAMS: '' + DD_CELERY_BROKER_PATH: '//' + DD_CELERY_LOG_LEVEL: INFO + DD_CELERY_WORKER_POOL_TYPE: solo + DD_CELERY_WORKER_AUTOSCALE_MIN: '' + DD_CELERY_WORKER_AUTOSCALE_MAX: '' + DD_CELERY_WORKER_CONCURRENCY: '' + DD_CELERY_WORKER_PREFETCH_MULTIPLIER: '' + DD_DATABASE_ENGINE: django.db.backends.postgresql + DD_DATABASE_HOST: defectdojo-postgresql + DD_DATABASE_PORT: '5432' + DD_DATABASE_USER: defectdojo + DD_DATABASE_NAME: defectdojo + DD_INITIALIZE: 'true' + DD_UWSGI_ENDPOINT: /run/defectdojo/uwsgi.sock + DD_UWSGI_HOST: localhost + DD_UWSGI_PASS: unix:///run/defectdojo/uwsgi.sock + DD_UWSGI_NUM_OF_PROCESSES: '2' + DD_UWSGI_NUM_OF_THREADS: '2' + DD_DJANGO_METRICS_ENABLED: 'false' + NGINX_METRICS_ENABLED: 'false' + METRICS_HTTP_AUTH_USER: monitoring +--- +# Source: defectdojo/charts/rabbitmq/templates/role.yaml +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: defectdojo-rabbitmq-endpoint-reader + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +rules: + - apiGroups: [""] + resources: ["endpoints"] + verbs: ["get"] + - apiGroups: [""] + resources: ["events"] + verbs: ["create"] +--- +# Source: defectdojo/charts/rabbitmq/templates/rolebinding.yaml +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: defectdojo-rabbitmq-endpoint-reader + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +subjects: + - kind: ServiceAccount + name: defectdojo-rabbitmq +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: defectdojo-rabbitmq-endpoint-reader +--- +# Source: defectdojo/charts/postgresql/templates/primary/svc-headless.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-postgresql-hl + namespace: "defectdojo" + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + # Use this annotation in addition to the actual publishNotReadyAddresses + # field below because the annotation will stop being respected soon but the + # field is broken in some versions of Kubernetes: + # https://github.com/kubernetes/kubernetes/issues/58662 + service.alpha.kubernetes.io/tolerate-unready-endpoints: "true" +spec: + type: ClusterIP + clusterIP: None + # We want all pods in the StatefulSet to have their addresses published for + # the sake of the other Postgresql pods even before they're ready, since they + # have to be able to talk to each other in order to become ready. + publishNotReadyAddresses: true + ports: + - name: tcp-postgresql + port: 5432 + targetPort: tcp-postgresql + selector: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary +--- +# Source: defectdojo/charts/postgresql/templates/primary/svc.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-postgresql + namespace: "defectdojo" + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + annotations: +spec: + type: ClusterIP + sessionAffinity: None + ports: + - name: tcp-postgresql + port: 5432 + targetPort: tcp-postgresql + nodePort: null + selector: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary +--- +# Source: defectdojo/charts/rabbitmq/templates/svc-headless.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-rabbitmq-headless + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +spec: + clusterIP: None + ports: + - name: epmd + port: 4369 + targetPort: epmd + - name: amqp + port: 5672 + targetPort: amqp + - name: dist + port: 25672 + targetPort: dist + - name: http-stats + port: 15672 + targetPort: stats + selector: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + publishNotReadyAddresses: true +--- +# Source: defectdojo/charts/rabbitmq/templates/svc.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-rabbitmq + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +spec: + type: ClusterIP + sessionAffinity: None + ports: + - name: amqp + port: 5672 + targetPort: amqp + nodePort: null + - name: epmd + port: 4369 + targetPort: epmd + nodePort: null + - name: dist + port: 25672 + targetPort: dist + nodePort: null + - name: http-stats + port: 15672 + targetPort: stats + nodePort: null + selector: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo +--- +# Source: defectdojo/templates/django-service.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-django + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + selector: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + ports: + - name: http + protocol: TCP + port: 80 + targetPort: http +--- +# Source: defectdojo/templates/celery-beat-deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: defectdojo-celery-beat + labels: + defectdojo.org/component: celery + defectdojo.org/subcomponent: beat + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + replicas: 1 + selector: + matchLabels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + volumes: + - name: run + emptyDir: {} + containers: + - command: + - /entrypoint-celery-beat.sh + name: celery + image: "defectdojo/defectdojo-django:2.22.4" + imagePullPolicy: Always + securityContext: + runAsUser: 1001 + volumeMounts: + - name: run + mountPath: /run/defectdojo + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo-extrasecrets + optional: true + env: + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + resources: + limits: + cpu: 2000m + memory: 256Mi + requests: + cpu: 100m + memory: 128Mi + nodeSelector: + kubernetes.io/arch: amd64 +--- +# Source: defectdojo/templates/celery-worker-deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: defectdojo-celery-worker + labels: + defectdojo.org/component: celery + defectdojo.org/subcomponent: worker + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + replicas: 1 + selector: + matchLabels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + volumes: + containers: + - name: celery + image: "defectdojo/defectdojo-django:2.22.4" + imagePullPolicy: Always + securityContext: + runAsUser: 1001 + command: ['/entrypoint-celery-worker.sh'] + volumeMounts: + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo-extrasecrets + optional: true + env: + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + resources: + limits: + cpu: 2000m + memory: 512Mi + requests: + cpu: 100m + memory: 128Mi + nodeSelector: + kubernetes.io/arch: amd64 +--- +# Source: defectdojo/templates/django-deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: defectdojo-django + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + replicas: 1 + selector: + matchLabels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + securityContext: + fsGroup: 1001 + volumes: + - name: run + emptyDir: {} + - name: media + emptyDir: {} + containers: + - name: uwsgi + image: 'harbor-dev.alldcs.nl/allard/defectdojo:1.0' + imagePullPolicy: Always + securityContext: + runAsUser: 1001 + volumeMounts: + - name: run + mountPath: /run/defectdojo + - name: media + mountPath: "/app/media" + ports: + - name: http-uwsgi + protocol: TCP + containerPort: 8081 + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo-extrasecrets + optional: true + env: + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + - name: DD_CREDENTIAL_AES_256_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_CREDENTIAL_AES_256_KEY + - name: DD_SESSION_COOKIE_SECURE + value: "False" + - name: DD_CSRF_COOKIE_SECURE + value: "False" + livenessProbe: + httpGet: + path: /login?force_login_form&next=/ + port: http-uwsgi + httpHeaders: + - name: Host + value: defectdojo.alldcs.nl + failureThreshold: 6 + initialDelaySeconds: 20 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + resources: + limits: + cpu: 2000m + memory: 512Mi + requests: + cpu: 100m + memory: 256Mi + - name: nginx + image: 'defectdojo/defectdojo-nginx:2.22.4' + imagePullPolicy: Always + securityContext: + runAsUser: 1001 + volumeMounts: + - name: run + mountPath: /run/defectdojo + - name: media + mountPath: /usr/share/nginx/html/media + ports: + - name: http + protocol: TCP + containerPort: 8080 + envFrom: + - configMapRef: + name: defectdojo + env: + - name: METRICS_HTTP_AUTH_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo + key: METRICS_HTTP_AUTH_PASSWORD + - name: USE_TLS + value: 'false' + - name: GENERATE_TLS_CERTIFICATE + value: 'false' + livenessProbe: + httpGet: + path: /nginx_health + port: http + httpHeaders: + - name: Host + value: defectdojo.alldcs.nl + initialDelaySeconds: 10 + periodSeconds: 10 + failureThreshold: 6 + readinessProbe: + httpGet: + path: /uwsgi_health + port: http + httpHeaders: + - name: Host + value: defectdojo.alldcs.nl + failureThreshold: 6 + initialDelaySeconds: 20 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + resources: + limits: + cpu: 2000m + memory: 256Mi + requests: + cpu: 100m + memory: 128Mi + nodeSelector: + kubernetes.io/arch: amd64 +--- +# Source: defectdojo/charts/postgresql/templates/primary/statefulset.yaml +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: defectdojo-postgresql + namespace: "defectdojo" + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + annotations: +spec: + replicas: 1 + serviceName: defectdojo-postgresql-hl + updateStrategy: + rollingUpdate: {} + type: RollingUpdate + selector: + matchLabels: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary + template: + metadata: + name: defectdojo-postgresql + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + annotations: + spec: + serviceAccountName: default + + affinity: + podAffinity: + + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchLabels: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary + namespaces: + - "defectdojo" + topologyKey: kubernetes.io/hostname + weight: 1 + nodeAffinity: + + nodeSelector: + kubernetes.io/arch: amd64 + securityContext: + fsGroup: 1001 + hostNetwork: false + hostIPC: false + initContainers: + containers: + - name: postgresql + image: docker.io/bitnami/postgresql:11.16.0-debian-11-r9 + imagePullPolicy: "IfNotPresent" + securityContext: + runAsUser: 1001 + env: + - name: BITNAMI_DEBUG + value: "false" + - name: POSTGRESQL_PORT_NUMBER + value: "5432" + - name: POSTGRESQL_VOLUME_DIR + value: "/bitnami/postgresql" + - name: PGDATA + value: "/bitnami/postgresql/data" + # Authentication + - name: POSTGRES_USER + value: "defectdojo" + - name: POSTGRES_POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-postgres-password + - name: POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: POSTGRES_DB + value: "defectdojo" + # Replication + # Initdb + # Standby + # LDAP + - name: POSTGRESQL_ENABLE_LDAP + value: "no" + # TLS + - name: POSTGRESQL_ENABLE_TLS + value: "no" + # Audit + - name: POSTGRESQL_LOG_HOSTNAME + value: "false" + - name: POSTGRESQL_LOG_CONNECTIONS + value: "false" + - name: POSTGRESQL_LOG_DISCONNECTIONS + value: "false" + - name: POSTGRESQL_PGAUDIT_LOG_CATALOG + value: "off" + # Others + - name: POSTGRESQL_CLIENT_MIN_MESSAGES + value: "error" + - name: POSTGRESQL_SHARED_PRELOAD_LIBRARIES + value: "pgaudit" + ports: + - name: tcp-postgresql + containerPort: 5432 + livenessProbe: + failureThreshold: 6 + initialDelaySeconds: 30 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + exec: + command: + - /bin/sh + - -c + - exec pg_isready -U "defectdojo" -d "dbname=defectdojo" -h 127.0.0.1 -p 5432 + readinessProbe: + failureThreshold: 6 + initialDelaySeconds: 5 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + exec: + command: + - /bin/sh + - -c + - -e + + - | + exec pg_isready -U "defectdojo" -d "dbname=defectdojo" -h 127.0.0.1 -p 5432 + [ -f /opt/bitnami/postgresql/tmp/.initialized ] || [ -f /bitnami/postgresql/.initialized ] + resources: + limits: {} + requests: + cpu: 250m + memory: 256Mi + volumeMounts: + - name: dshm + mountPath: /dev/shm + - name: data + mountPath: /bitnami/postgresql + volumes: + - name: dshm + emptyDir: + medium: Memory + volumeClaimTemplates: + - metadata: + name: data + spec: + accessModes: + - "ReadWriteOnce" + resources: + requests: + storage: "8Gi" +--- +# Source: defectdojo/charts/rabbitmq/templates/statefulset.yaml +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: defectdojo-rabbitmq + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +spec: + serviceName: defectdojo-rabbitmq-headless + podManagementPolicy: OrderedReady + replicas: 1 + updateStrategy: + type: RollingUpdate + selector: + matchLabels: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + annotations: + checksum/config: 208929eee544dead36ca3c947884b65e8ffb3c4e72fbf6721922c651640ffe3c + spec: + + serviceAccountName: defectdojo-rabbitmq + affinity: + podAffinity: + + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchLabels: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + namespaces: + - "defectdojo" + topologyKey: kubernetes.io/hostname + weight: 1 + nodeAffinity: + + nodeSelector: + kubernetes.io/arch: amd64 + securityContext: + fsGroup: 1001 + terminationGracePeriodSeconds: 120 + initContainers: + containers: + - name: rabbitmq + image: docker.io/bitnami/rabbitmq:3.11.5-debian-11-r2 + imagePullPolicy: "IfNotPresent" + securityContext: + runAsNonRoot: true + runAsUser: 1001 + lifecycle: + preStop: + exec: + command: + - /bin/bash + - -ec + - | + if [[ -f /opt/bitnami/scripts/rabbitmq/nodeshutdown.sh ]]; then + /opt/bitnami/scripts/rabbitmq/nodeshutdown.sh -t "120" -d "false" + else + rabbitmqctl stop_app + fi + env: + - name: BITNAMI_DEBUG + value: "false" + - name: MY_POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: MY_POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: MY_POD_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: K8S_SERVICE_NAME + value: defectdojo-rabbitmq-headless + - name: K8S_ADDRESS_TYPE + value: hostname + - name: RABBITMQ_FORCE_BOOT + value: "no" + - name: RABBITMQ_NODE_NAME + value: "rabbit@$(MY_POD_NAME).$(K8S_SERVICE_NAME).$(MY_POD_NAMESPACE).svc.cluster.local" + - name: K8S_HOSTNAME_SUFFIX + value: ".$(K8S_SERVICE_NAME).$(MY_POD_NAMESPACE).svc.cluster.local" + - name: RABBITMQ_MNESIA_DIR + value: "/bitnami/rabbitmq/mnesia/$(RABBITMQ_NODE_NAME)" + - name: RABBITMQ_LDAP_ENABLE + value: "no" + - name: RABBITMQ_LOGS + value: "-" + - name: RABBITMQ_ULIMIT_NOFILES + value: "65536" + - name: RABBITMQ_USE_LONGNAME + value: "true" + - name: RABBITMQ_ERL_COOKIE + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-erlang-cookie + - name: RABBITMQ_LOAD_DEFINITIONS + value: "no" + - name: RABBITMQ_DEFINITIONS_FILE + value: "/app/load_definition.json" + - name: RABBITMQ_SECURE_PASSWORD + value: "yes" + - name: RABBITMQ_USERNAME + value: "user" + - name: RABBITMQ_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: RABBITMQ_PLUGINS + value: "rabbitmq_management, rabbitmq_peer_discovery_k8s, rabbitmq_auth_backend_ldap" + envFrom: + ports: + - name: amqp + containerPort: 5672 + - name: dist + containerPort: 25672 + - name: stats + containerPort: 15672 + - name: epmd + containerPort: 4369 + livenessProbe: + failureThreshold: 6 + initialDelaySeconds: 120 + periodSeconds: 30 + successThreshold: 1 + timeoutSeconds: 20 + exec: + command: + - /bin/bash + - -ec + - rabbitmq-diagnostics -q ping + readinessProbe: + failureThreshold: 3 + initialDelaySeconds: 10 + periodSeconds: 30 + successThreshold: 1 + timeoutSeconds: 20 + exec: + command: + - /bin/bash + - -ec + - rabbitmq-diagnostics -q check_running && rabbitmq-diagnostics -q check_local_alarms + resources: + limits: + cpu: 500m + memory: 512Mi + requests: + cpu: 100m + memory: 128Mi + volumeMounts: + - name: configuration + mountPath: /bitnami/rabbitmq/conf + - name: data + mountPath: /bitnami/rabbitmq/mnesia + volumes: + - name: configuration + secret: + secretName: defectdojo-rabbitmq-config + items: + - key: rabbitmq.conf + path: rabbitmq.conf + volumeClaimTemplates: + - metadata: + name: data + labels: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + spec: + accessModes: + - "ReadWriteOnce" + resources: + requests: + storage: "8Gi" +--- +# Source: defectdojo/templates/django-ingress.yaml +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: defectdojo + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + rules: + - host: defectdojo.alldcs.nl + http: + paths: + - path: / + backend: + serviceName: defectdojo-django + servicePort: http +--- +# Source: defectdojo/templates/sa.yaml +kind: ServiceAccount +apiVersion: v1 +metadata: + name: defectdojo + labels: + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 + annotations: + helm.sh/resource-policy: keep + helm.sh/hook: "pre-install" + helm.sh/hook-delete-policy: "before-hook-creation" +--- +# Source: defectdojo/templates/tests/unit-tests.yaml +apiVersion: v1 +kind: Pod +metadata: + name: defectdojo-unit-tests + labels: + app.kubernetes.io/name: defectdojo + helm.sh/chart: defectdojo-1.6.112 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + annotations: + helm.sh/hook: test-success +spec: + serviceAccountName: defectdojo + containers: + - name: unit-tests + image: 'defectdojo/defectdojo-django:2.22.4' + imagePullPolicy: Always + securityContext: + runAsUser: 1001 + command: ['/entrypoint-unit-tests.sh'] + envFrom: + - configMapRef: + name: defectdojo + env: + - name: DD_DATABASE_USER + value: defectdojo + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + # Use broker chart secret + # name: defectdojo-rabbitmq + # Use secret handled outside of the chart + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_DEBUG + value: 'True' + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + - name: DD_CREDENTIAL_AES_256_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_CREDENTIAL_AES_256_KEY + resources: + limits: + cpu: 500m + memory: 512Mi + requests: + cpu: 100m + memory: 128Mi + restartPolicy: Never +--- +# Source: defectdojo/templates/initializer-job.yaml +apiVersion: batch/v1 +kind: Job +metadata: + name: defectdojo-initializer-2024-05-16-11-17 + labels: + defectdojo.org/component: initializer + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 + annotations: + helm.sh/hook: post-install,post-upgrade +spec: + ttlSecondsAfterFinished: 60 + template: + metadata: + labels: + defectdojo.org/component: initializer + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + volumes: + containers: + - name: initializer + image: "defectdojo/defectdojo-django:2.22.4" + imagePullPolicy: Always + securityContext: + runAsUser: 1001 + volumeMounts: + command: + - /entrypoint-initializer.sh + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo + env: + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + resources: + limits: + cpu: 2000m + memory: 512Mi + requests: + cpu: 100m + memory: 256Mi + restartPolicy: Never + nodeSelector: + kubernetes.io/arch: amd64 + backoffLimit: 1 diff --git a/kubernetes/dev/defectdojo/dev/defectdojo-with-initializer.yaml b/kubernetes/dev/defectdojo/dev/defectdojo-with-initializer.yaml new file mode 100644 index 0000000..4c76436 --- /dev/null +++ b/kubernetes/dev/defectdojo/dev/defectdojo-with-initializer.yaml @@ -0,0 +1,473 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: nginx + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: nginx + spec: + containers: + - env: + - name: NGINX_METRICS_ENABLED + value: "false" + - name: DD_UWSGI_HOST + value: "uwsgi.defectdojo" + - name: HTTP_AUTH_PASSWORD + value: "Defectdojo01@" + image: allardkrings/defectdojo-nginx:1.0 + imagePullPolicy: IfNotPresent + name: nginx + ports: + - containerPort: 8080 + - containerPort: 8443 + resources: {} + volumeMounts: + - mountPath: /usr/share/nginx/html/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: defectdojo-media-pvc + namespace: defectdojo +spec: + storageClassName: "" + volumeName: defectdojo-media-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 2Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: defectdojo-media-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/defectdojo/media + readOnly: false +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: nginx + name: nginx + namespace: defectdojo +spec: + ports: + - name: "8080" + port: 8080 + targetPort: 8080 + - name: "8443" + port: 8443 + targetPort: 8443 + selector: + io.kompose.service: nginx +status: + loadBalancer: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: uwsgi + name: uwsgi + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: uwsgi + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: uwsgi + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-uwsgi.sh + env: + - name: DD_ALLOWED_HOSTS + value: '*' + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_DEBUG + value: "False" + - name: DD_DJANGO_METRICS_ENABLED + value: "False" + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + image: allardkrings/defectdojo-django:1.0 + imagePullPolicy: IfNotPresent + name: uwsgi + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: uwsgi-claim0 + - mountPath: /app/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: uwsgi-claim0 + persistentVolumeClaim: + claimName: uwsgi-claim0 + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + creationTimestamp: null + labels: + io.kompose.service: uwsgi-claim0 + name: uwsgi-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +status: {} +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: uwsgi + name: uwsgi + namespace: defectdojo +spec: + ports: + - name: "3031" + port: 3031 + targetPort: 3031 + selector: + io.kompose.service: uwsgi +status: + loadBalancer: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: initializer + name: initializer + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: initializer + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: initializer + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -- + - /entrypoint-initializer.sh + env: + - name: DD_ADMIN_FIRST_NAME + value: Admin + - name: DD_ADMIN_LAST_NAME + value: User + - name: DD_ADMIN_MAIL + value: admin@defectdojo.local + - name: DD_ADMIN_USER + value: admin + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_INITIALIZE + value: "true" + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + image: allardkrings/defectdojo-django:1.0 + imagePullPolicy: IfNotPresent + name: initializer + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: initializer-claim0 + restartPolicy: Always + volumes: + - name: initializer-claim0 + persistentVolumeClaim: + claimName: initializer-claim0 +status: {} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + labels: + io.kompose.service: initializer-claim0 + name: initializer-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +status: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: celeryworker + name: celeryworker + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: celeryworker + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: celeryworker + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-celery-worker.sh + env: + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + image: allardkrings/defectdojo-django:1.0 + imagePullPolicy: IfNotPresent + name: celeryworker + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: celeryworker-claim0 + - mountPath: /app/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: celeryworker-claim0 + persistentVolumeClaim: + claimName: celeryworker-claim0 + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +status: {} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + creationTimestamp: null + labels: + io.kompose.service: celeryworker-claim0 + name: celeryworker-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +status: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: celerybeat + name: celerybeat + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: celerybeat + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: celerybeat + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-celery-beat.sh + env: + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + image: allardkrings/defectdojo-django:1.0 + imagePullPolicy: IfNotPresent + name: celerybeat + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: celerybeat-claim0 + restartPolicy: Always + volumes: + - name: celerybeat-claim0 + persistentVolumeClaim: + claimName: celerybeat-claim0 +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + labels: + io.kompose.service: celerybeat-claim0 + name: celerybeat-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: redis + name: redis + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: redis + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: redis + spec: + containers: + - image: redis:7.2.4-alpine@sha256:a40e29800d387e3cf9431902e1e7a362e4d819233d68ae39380532c3310091ac + name: redis + resources: {} +# volumeMounts: +# - mountPath: /data +# name: defectdojo-redis + restartPolicy: Always +# volumes: +# - name: defectdojo-redis +# persistentVolumeClaim: +# claimName: defectdojo-redis-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: defectdojo-redis-pvc + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: defectdojo-redis-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/defectdojo/redis + readOnly: false +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: redis + name: redis + namespace: defectdojo +spec: + ports: + - name: "6379" + port: 6379 + targetPort: 6379 + selector: + io.kompose.service: redis +status: + loadBalancer: {} + diff --git a/kubernetes/dev/defectdojo/dev/defectdojo.yaml b/kubernetes/dev/defectdojo/dev/defectdojo.yaml new file mode 100644 index 0000000..ec67912 --- /dev/null +++ b/kubernetes/dev/defectdojo/dev/defectdojo.yaml @@ -0,0 +1,402 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: nginx + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: nginx + spec: + containers: + - env: + - name: NGINX_METRICS_ENABLED + value: "false" + - name: DD_UWSGI_HOST + value: "uwsgi.defectdojo" + - name: HTTP_AUTH_PASSWORD + value: "Defectdojo01@" + image: allardkrings/defectdojo-nginx:1.0 + imagePullPolicy: IfNotPresent + name: nginx + ports: + - containerPort: 8080 + - containerPort: 8443 + resources: {} + volumeMounts: + - mountPath: /usr/share/nginx/html/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: defectdojo-media-pvc + namespace: defectdojo +spec: + storageClassName: "" + volumeName: defectdojo-media-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 2Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: defectdojo-media-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/defectdojo/media + readOnly: false +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: nginx + name: nginx + namespace: defectdojo +spec: + ports: + - name: "8080" + port: 8080 + targetPort: 8080 + - name: "8443" + port: 8443 + targetPort: 8443 + selector: + io.kompose.service: nginx +status: + loadBalancer: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: uwsgi + name: uwsgi + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: uwsgi + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: uwsgi + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-uwsgi.sh + env: + - name: DD_ALLOWED_HOSTS + value: '*' + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_DEBUG + value: "False" + - name: DD_DJANGO_METRICS_ENABLED + value: "False" + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + image: allardkrings/defectdojo-django:1.0 + imagePullPolicy: IfNotPresent + name: uwsgi + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: uwsgi-claim0 + - mountPath: /app/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: uwsgi-claim0 + persistentVolumeClaim: + claimName: uwsgi-claim0 + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + creationTimestamp: null + labels: + io.kompose.service: uwsgi-claim0 + name: uwsgi-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +status: {} +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: uwsgi + name: uwsgi + namespace: defectdojo +spec: + ports: + - name: "3031" + port: 3031 + targetPort: 3031 + selector: + io.kompose.service: uwsgi +status: + loadBalancer: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: celeryworker + name: celeryworker + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: celeryworker + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: celeryworker + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-celery-worker.sh + env: + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + image: allardkrings/defectdojo-django:1.0 + imagePullPolicy: IfNotPresent + name: celeryworker + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: celeryworker-claim0 + - mountPath: /app/media + name: defectdojo-media + restartPolicy: Always + volumes: + - name: celeryworker-claim0 + persistentVolumeClaim: + claimName: celeryworker-claim0 + - name: defectdojo-media + persistentVolumeClaim: + claimName: defectdojo-media-pvc +status: {} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + creationTimestamp: null + labels: + io.kompose.service: celeryworker-claim0 + name: celeryworker-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +status: {} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: celerybeat + name: celerybeat + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: celerybeat + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: celerybeat + spec: + containers: + - command: + - /wait-for-it.sh + - postgres16.postgres:5432 + - -t + - "30" + - -- + - /entrypoint-celery-beat.sh + env: + - name: DD_CELERY_BROKER_URL + value: redis://redis.defectdojo:6379/0 + - name: DD_CREDENTIAL_AES_256_KEY + value: '&91a*agLqesc*0DJ+2*bAbsUZfR*4nLw' + - name: DD_DATABASE_URL + value: postgresql://defectdojo:defectdojo@postgres16.postgres:5432/defectdojo + - name: DD_SECRET_KEY + value: hhZCp@D28z!n@NED*yB!ROMt+WzsY*iq + image: allardkrings/defectdojo-django:1.0 + imagePullPolicy: IfNotPresent + name: celerybeat + resources: {} + volumeMounts: + - mountPath: /app/docker/extra_settings + name: celerybeat-claim0 + restartPolicy: Always + volumes: + - name: celerybeat-claim0 + persistentVolumeClaim: + claimName: celerybeat-claim0 +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + labels: + io.kompose.service: celerybeat-claim0 + name: celerybeat-claim0 + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 100Mi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + io.kompose.service: redis + name: redis + namespace: defectdojo +spec: + replicas: 1 + selector: + matchLabels: + io.kompose.service: redis + strategy: + type: Recreate + template: + metadata: + labels: + io.kompose.service: redis + spec: + containers: + - image: redis:7.2.4-alpine@sha256:a40e29800d387e3cf9431902e1e7a362e4d819233d68ae39380532c3310091ac + name: redis + resources: {} +# volumeMounts: +# - mountPath: /data +# name: defectdojo-redis + restartPolicy: Always +# volumes: +# - name: defectdojo-redis +# persistentVolumeClaim: +# claimName: defectdojo-redis-pvc +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: defectdojo-redis-pvc + namespace: defectdojo +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: defectdojo-redis-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/defectdojo/redis + readOnly: false +--- +apiVersion: v1 +kind: Service +metadata: + labels: + io.kompose.service: redis + name: redis + namespace: defectdojo +spec: + ports: + - name: "6379" + port: 6379 + targetPort: 6379 + selector: + io.kompose.service: redis +status: + loadBalancer: {} + diff --git a/kubernetes/dev/defectdojo/dev/ingressroute-http.yml b/kubernetes/dev/defectdojo/dev/ingressroute-http.yml new file mode 100755 index 0000000..ec48c15 --- /dev/null +++ b/kubernetes/dev/defectdojo/dev/ingressroute-http.yml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: defectdojo-http + namespace: defectdojo +spec: + entryPoints: + - web + routes: + - match: Host(`defectdojo-dev.allarddcs.nl`) + kind: Rule + services: + - name: nginx + port: 8080 diff --git a/kubernetes/dev/defectdojo/dev/ingressroute-tls.yml b/kubernetes/dev/defectdojo/dev/ingressroute-tls.yml new file mode 100755 index 0000000..8586432 --- /dev/null +++ b/kubernetes/dev/defectdojo/dev/ingressroute-tls.yml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: defectdojo-tls + namespace: defectdojo +spec: + entryPoints: + - websecure + routes: + - match: Host(`defectdojo-dev.allarddcs.nl`) + kind: Rule + services: + - name: nginx + port: 8080 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/defectdojo/helm/README.md b/kubernetes/dev/defectdojo/helm/README.md new file mode 100755 index 0000000..e8c8e36 --- /dev/null +++ b/kubernetes/dev/defectdojo/helm/README.md @@ -0,0 +1,42 @@ +#Installatie + +https://epam.github.io/edp-install/operator-guide/install-defectdojo/ + + +kubectl create namespace defectdojo + +helm repo add defectdojo 'https://raw.githubusercontent.com/DefectDojo/django-DefectDojo/helm-charts' +helm repo update + +Create PostgreSQL admin secret: + + +kubectl -n defectdojo create secret generic defectdojo-postgresql-specific \ +--from-literal=postgresql-password=defectdojodefect \ +--from-literal=postgresql-postgres-password=defectdojodefect + +Create Rabbitmq admin secret: + + +kubectl -n defectdojo create secret generic defectdojo-rabbitmq-specific \ +--from-literal=rabbitmq-password=defectdojo \ +--from-literal=rabbitmq-erlang-cookie=defectdojodefectdojodefectdojojo + +Create DefectDojo admin secret: + + +kubectl -n defectdojo create secret generic defectdojo \ +--from-literal=DD_ADMIN_PASSWORD=defectdojodefectdojojo \ +--from-literal=DD_SECRET_KEY=defectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefecdojojo \ +--from-literal=DD_CREDENTIAL_AES_256_KEY=defectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefecdojojo \ +--from-literal=METRICS_HTTP_AUTH_PASSWORD=defectdojodefectdojodefectdojojo + +Install DefectDojo v.2.22.4 using defectdojo/defectdojo Helm chart v.1.6.69: + + +helm upgrade --install \ +defectdojo \ +--version 1.6.69 \ +defectdojo/defectdojo \ +--namespace defectdojo \ +--values values.yaml diff --git a/kubernetes/dev/defectdojo/helm/defectdojo-helm.yaml b/kubernetes/dev/defectdojo/helm/defectdojo-helm.yaml new file mode 100644 index 0000000..98e0bcd --- /dev/null +++ b/kubernetes/dev/defectdojo/helm/defectdojo-helm.yaml @@ -0,0 +1,1060 @@ +--- +# Source: defectdojo/charts/rabbitmq/templates/serviceaccount.yaml +apiVersion: v1 +kind: ServiceAccount +metadata: + name: defectdojo-rabbitmq + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +automountServiceAccountToken: true +secrets: + - name: defectdojo-rabbitmq +--- +# Source: defectdojo/charts/rabbitmq/templates/config-secret.yaml +apiVersion: v1 +kind: Secret +metadata: + name: defectdojo-rabbitmq-config + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +type: Opaque +data: + rabbitmq.conf: |- + IyMgVXNlcm5hbWUgYW5kIHBhc3N3b3JkCiMjCmRlZmF1bHRfdXNlciA9IHVzZXIKIyMgQ2x1c3RlcmluZwojIwpjbHVzdGVyX2Zvcm1hdGlvbi5wZWVyX2Rpc2NvdmVyeV9iYWNrZW5kICA9IHJhYmJpdF9wZWVyX2Rpc2NvdmVyeV9rOHMKY2x1c3Rlcl9mb3JtYXRpb24uazhzLmhvc3QgPSBrdWJlcm5ldGVzLmRlZmF1bHQKY2x1c3Rlcl9mb3JtYXRpb24ubm9kZV9jbGVhbnVwLmludGVydmFsID0gMTAKY2x1c3Rlcl9mb3JtYXRpb24ubm9kZV9jbGVhbnVwLm9ubHlfbG9nX3dhcm5pbmcgPSB0cnVlCmNsdXN0ZXJfcGFydGl0aW9uX2hhbmRsaW5nID0gYXV0b2hlYWwKIyBxdWV1ZSBtYXN0ZXIgbG9jYXRvcgpxdWV1ZV9tYXN0ZXJfbG9jYXRvciA9IG1pbi1tYXN0ZXJzCiMgZW5hYmxlIGd1ZXN0IHVzZXIKbG9vcGJhY2tfdXNlcnMuZ3Vlc3QgPSBmYWxzZQojZGVmYXVsdF92aG9zdCA9IGRlZmVjdGRvam8tdmhvc3QKI2Rpc2tfZnJlZV9saW1pdC5hYnNvbHV0ZSA9IDUwTUIKIyMgTWVtb3J5IFRocmVzaG9sZAojIwp0b3RhbF9tZW1vcnlfYXZhaWxhYmxlX292ZXJyaWRlX3ZhbHVlID0gNTM2ODcwOTEyCnZtX21lbW9yeV9oaWdoX3dhdGVybWFyay5yZWxhdGl2ZSA9IDAuNQ== +--- +# Source: defectdojo/templates/configmap.yaml +apiVersion: v1 +kind: ConfigMap +metadata: + name: defectdojo + labels: + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +data: + DD_ADMIN_USER: admin + DD_ADMIN_MAIL: admin@defectdojo.local + DD_ADMIN_FIRST_NAME: Admin + DD_ADMIN_LAST_NAME: User + DD_ALLOWED_HOSTS: defectdojo.default.minikube.local + DD_SITE_URL: http://localhost:8080 + DD_CELERY_BROKER_SCHEME: amqp + DD_CELERY_BROKER_USER: 'user' + DD_CELERY_BROKER_HOST: defectdojo-rabbitmq + DD_CELERY_BROKER_PORT: '5672' + DD_CELERY_BROKER_PARAMS: '' + DD_CELERY_BROKER_PATH: '//' + DD_CELERY_LOG_LEVEL: INFO + DD_CELERY_WORKER_POOL_TYPE: solo + DD_CELERY_WORKER_AUTOSCALE_MIN: '' + DD_CELERY_WORKER_AUTOSCALE_MAX: '' + DD_CELERY_WORKER_CONCURRENCY: '' + DD_CELERY_WORKER_PREFETCH_MULTIPLIER: '' + DD_DATABASE_ENGINE: django.db.backends.postgresql + DD_DATABASE_HOST: defectdojo-postgresql + DD_DATABASE_PORT: '5432' + DD_DATABASE_USER: defectdojo + DD_DATABASE_NAME: defectdojo + DD_INITIALIZE: 'true' + DD_UWSGI_ENDPOINT: /run/defectdojo/uwsgi.sock + DD_UWSGI_HOST: localhost + DD_UWSGI_PASS: unix:///run/defectdojo/uwsgi.sock + DD_UWSGI_NUM_OF_PROCESSES: '2' + DD_UWSGI_NUM_OF_THREADS: '2' + DD_DJANGO_METRICS_ENABLED: 'false' + NGINX_METRICS_ENABLED: 'false' + METRICS_HTTP_AUTH_USER: monitoring +--- +# Source: defectdojo/charts/rabbitmq/templates/role.yaml +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: defectdojo-rabbitmq-endpoint-reader + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +rules: + - apiGroups: [""] + resources: ["endpoints"] + verbs: ["get"] + - apiGroups: [""] + resources: ["events"] + verbs: ["create"] +--- +# Source: defectdojo/charts/rabbitmq/templates/rolebinding.yaml +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: defectdojo-rabbitmq-endpoint-reader + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +subjects: + - kind: ServiceAccount + name: defectdojo-rabbitmq +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: defectdojo-rabbitmq-endpoint-reader +--- +# Source: defectdojo/charts/postgresql/templates/primary/svc-headless.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-postgresql-hl + namespace: "defectdojo" + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + # Use this annotation in addition to the actual publishNotReadyAddresses + # field below because the annotation will stop being respected soon but the + # field is broken in some versions of Kubernetes: + # https://github.com/kubernetes/kubernetes/issues/58662 + service.alpha.kubernetes.io/tolerate-unready-endpoints: "true" +spec: + type: ClusterIP + clusterIP: None + # We want all pods in the StatefulSet to have their addresses published for + # the sake of the other Postgresql pods even before they're ready, since they + # have to be able to talk to each other in order to become ready. + publishNotReadyAddresses: true + ports: + - name: tcp-postgresql + port: 5432 + targetPort: tcp-postgresql + selector: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary +--- +# Source: defectdojo/charts/postgresql/templates/primary/svc.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-postgresql + namespace: "defectdojo" + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + annotations: +spec: + type: ClusterIP + sessionAffinity: None + ports: + - name: tcp-postgresql + port: 5432 + targetPort: tcp-postgresql + nodePort: null + selector: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary +--- +# Source: defectdojo/charts/rabbitmq/templates/svc-headless.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-rabbitmq-headless + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +spec: + clusterIP: None + ports: + - name: epmd + port: 4369 + targetPort: epmd + - name: amqp + port: 5672 + targetPort: amqp + - name: dist + port: 25672 + targetPort: dist + - name: http-stats + port: 15672 + targetPort: stats + selector: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + publishNotReadyAddresses: true +--- +# Source: defectdojo/charts/rabbitmq/templates/svc.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-rabbitmq + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +spec: + type: ClusterIP + sessionAffinity: None + ports: + - name: amqp + port: 5672 + targetPort: amqp + nodePort: null + - name: epmd + port: 4369 + targetPort: epmd + nodePort: null + - name: dist + port: 25672 + targetPort: dist + nodePort: null + - name: http-stats + port: 15672 + targetPort: stats + nodePort: null + selector: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo +--- +# Source: defectdojo/templates/django-service.yaml +apiVersion: v1 +kind: Service +metadata: + name: defectdojo-django + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + selector: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + ports: + - name: http + protocol: TCP + port: 80 + targetPort: http +--- +# Source: defectdojo/templates/celery-beat-deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: defectdojo-celery-beat + labels: + defectdojo.org/component: celery + defectdojo.org/subcomponent: beat + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + replicas: 1 + selector: + matchLabels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + volumes: + - name: run + emptyDir: {} + containers: + - command: + - /entrypoint-celery-beat.sh + name: celery + image: "allardkrings/defectdojo-django:1.0" + imagePullPolicy: IfNotPresent + securityContext: + runAsUser: 1001 + volumeMounts: + - name: run + mountPath: /run/defectdojo + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo-extrasecrets + optional: true + env: + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + resources: + limits: + cpu: 2000m + memory: 256Mi + requests: + cpu: 100m + memory: 128Mi +--- +# Source: defectdojo/templates/celery-worker-deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: defectdojo-celery-worker + labels: + defectdojo.org/component: celery + defectdojo.org/subcomponent: worker + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + replicas: 1 + selector: + matchLabels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + defectdojo.org/component: celery + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + volumes: + containers: + - name: celery + image: "allardkrings/defectdojo-django:1.0" + imagePullPolicy: IfNotPresent + securityContext: + runAsUser: 1001 + command: ['/entrypoint-celery-worker.sh'] + volumeMounts: + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo-extrasecrets + optional: true + env: + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + resources: + limits: + cpu: 2000m + memory: 512Mi + requests: + cpu: 100m + memory: 128Mi +--- +# Source: defectdojo/templates/django-deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: defectdojo-django + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + replicas: 1 + selector: + matchLabels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + securityContext: + fsGroup: 1001 + volumes: + - name: run + emptyDir: {} + - name: media + emptyDir: {} + containers: + - name: uwsgi + image: 'allardkrings/defectdojo-django:1.0' + imagePullPolicy: IfNotPresent + securityContext: + runAsUser: 1001 + volumeMounts: + - name: run + mountPath: /run/defectdojo + - name: media + mountPath: "/app/media" + ports: + - name: http-uwsgi + protocol: TCP + containerPort: 8081 + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo-extrasecrets + optional: true + env: + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + - name: DD_CREDENTIAL_AES_256_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_CREDENTIAL_AES_256_KEY + - name: DD_SESSION_COOKIE_SECURE + value: "True" + - name: DD_CSRF_COOKIE_SECURE + value: "True" + livenessProbe: + httpGet: + path: /login?force_login_form&next=/ + port: http-uwsgi + httpHeaders: + - name: Host + value: defectdojo.default.minikube.local + failureThreshold: 6 + initialDelaySeconds: 120 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + resources: + limits: + cpu: 2000m + memory: 512Mi + requests: + cpu: 100m + memory: 256Mi + - name: nginx + image: 'allardkrings/defectdojo-nginx:1.0' + imagePullPolicy: IfNotPresent + securityContext: + runAsUser: 1001 + volumeMounts: + - name: run + mountPath: /run/defectdojo + - name: media + mountPath: /usr/share/nginx/html/media + ports: + - name: http + protocol: TCP + containerPort: 8080 + envFrom: + - configMapRef: + name: defectdojo + env: + - name: METRICS_HTTP_AUTH_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo + key: METRICS_HTTP_AUTH_PASSWORD + - name: USE_TLS + value: 'false' + - name: GENERATE_TLS_CERTIFICATE + value: 'false' + livenessProbe: + httpGet: + path: /nginx_health + port: http + httpHeaders: + - name: Host + value: defectdojo.default.minikube.local + initialDelaySeconds: 10 + periodSeconds: 10 + failureThreshold: 6 + readinessProbe: + httpGet: + path: /uwsgi_health + port: http + httpHeaders: + - name: Host + value: defectdojo.default.minikube.local + failureThreshold: 6 + initialDelaySeconds: 120 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + resources: + limits: + cpu: 2000m + memory: 256Mi + requests: + cpu: 100m + memory: 128Mi +--- +# Source: defectdojo/charts/postgresql/templates/primary/statefulset.yaml +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: defectdojo-postgresql + namespace: "defectdojo" + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + annotations: +spec: + replicas: 1 + serviceName: defectdojo-postgresql-hl + updateStrategy: + rollingUpdate: {} + type: RollingUpdate + selector: + matchLabels: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary + template: + metadata: + name: defectdojo-postgresql + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-11.6.26 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/component: primary + annotations: + spec: + serviceAccountName: default + affinity: + podAffinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchLabels: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/component: primary + namespaces: + - "defectdojo" + topologyKey: kubernetes.io/hostname + weight: 1 + nodeAffinity: + securityContext: + fsGroup: 1001 + hostNetwork: false + hostIPC: false + initContainers: + containers: + - name: postgresql + image: docker.io/bitnami/postgresql:11.16.0-debian-11-r9 + imagePullPolicy: "IfNotPresent" + securityContext: + runAsUser: 1001 + env: + - name: BITNAMI_DEBUG + value: "false" + - name: POSTGRESQL_PORT_NUMBER + value: "5432" + - name: POSTGRESQL_VOLUME_DIR + value: "/bitnami/postgresql" + - name: PGDATA + value: "/bitnami/postgresql/data" + # Authentication + - name: POSTGRES_USER + value: "defectdojo" + - name: POSTGRES_POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-postgres-password + - name: POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: POSTGRES_DB + value: "defectdojo" + # Replication + # Initdb + # Standby + # LDAP + - name: POSTGRESQL_ENABLE_LDAP + value: "no" + # TLS + - name: POSTGRESQL_ENABLE_TLS + value: "no" + # Audit + - name: POSTGRESQL_LOG_HOSTNAME + value: "false" + - name: POSTGRESQL_LOG_CONNECTIONS + value: "false" + - name: POSTGRESQL_LOG_DISCONNECTIONS + value: "false" + - name: POSTGRESQL_PGAUDIT_LOG_CATALOG + value: "off" + # Others + - name: POSTGRESQL_CLIENT_MIN_MESSAGES + value: "error" + - name: POSTGRESQL_SHARED_PRELOAD_LIBRARIES + value: "pgaudit" + ports: + - name: tcp-postgresql + containerPort: 5432 + livenessProbe: + failureThreshold: 6 + initialDelaySeconds: 30 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + exec: + command: + - /bin/sh + - -c + - exec pg_isready -U "defectdojo" -d "dbname=defectdojo" -h 127.0.0.1 -p 5432 + readinessProbe: + failureThreshold: 6 + initialDelaySeconds: 5 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + exec: + command: + - /bin/sh + - -c + - -e + - | + exec pg_isready -U "defectdojo" -d "dbname=defectdojo" -h 127.0.0.1 -p 5432 + [ -f /opt/bitnami/postgresql/tmp/.initialized ] || [ -f /bitnami/postgresql/.initialized ] + resources: + limits: {} + requests: + cpu: 250m + memory: 256Mi + volumeMounts: + - name: dshm + mountPath: /dev/shm + - name: data + mountPath: /bitnami/postgresql + volumes: + - name: dshm + emptyDir: + medium: Memory + volumeClaimTemplates: + - metadata: + name: data + spec: + accessModes: + - "ReadWriteOnce" + resources: + requests: + storage: "8Gi" +--- +# Source: defectdojo/charts/rabbitmq/templates/statefulset.yaml +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: defectdojo-rabbitmq + namespace: "defectdojo" + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm +spec: + serviceName: defectdojo-rabbitmq-headless + podManagementPolicy: OrderedReady + replicas: 1 + updateStrategy: + type: RollingUpdate + selector: + matchLabels: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + template: + metadata: + labels: + app.kubernetes.io/name: rabbitmq + helm.sh/chart: rabbitmq-11.2.2 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + annotations: + checksum/config: 208929eee544dead36ca3c947884b65e8ffb3c4e72fbf6721922c651640ffe3c + spec: + serviceAccountName: defectdojo-rabbitmq + affinity: + podAffinity: + podAntiAffinity: + preferredDuringSchedulingIgnoredDuringExecution: + - podAffinityTerm: + labelSelector: + matchLabels: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + namespaces: + - "defectdojo" + topologyKey: kubernetes.io/hostname + weight: 1 + nodeAffinity: + securityContext: + fsGroup: 1001 + terminationGracePeriodSeconds: 120 + initContainers: + containers: + - name: rabbitmq + image: docker.io/bitnami/rabbitmq:3.11.5-debian-11-r2 + imagePullPolicy: "IfNotPresent" + securityContext: + runAsNonRoot: true + runAsUser: 1001 + lifecycle: + preStop: + exec: + command: + - /bin/bash + - -ec + - | + if [[ -f /opt/bitnami/scripts/rabbitmq/nodeshutdown.sh ]]; then + /opt/bitnami/scripts/rabbitmq/nodeshutdown.sh -t "120" -d "false" + else + rabbitmqctl stop_app + fi + env: + - name: BITNAMI_DEBUG + value: "false" + - name: MY_POD_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + - name: MY_POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + - name: MY_POD_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: K8S_SERVICE_NAME + value: defectdojo-rabbitmq-headless + - name: K8S_ADDRESS_TYPE + value: hostname + - name: RABBITMQ_FORCE_BOOT + value: "no" + - name: RABBITMQ_NODE_NAME + value: "rabbit@$(MY_POD_NAME).$(K8S_SERVICE_NAME).$(MY_POD_NAMESPACE).svc.cluster.local" + - name: K8S_HOSTNAME_SUFFIX + value: ".$(K8S_SERVICE_NAME).$(MY_POD_NAMESPACE).svc.cluster.local" + - name: RABBITMQ_MNESIA_DIR + value: "/bitnami/rabbitmq/mnesia/$(RABBITMQ_NODE_NAME)" + - name: RABBITMQ_LDAP_ENABLE + value: "no" + - name: RABBITMQ_LOGS + value: "-" + - name: RABBITMQ_ULIMIT_NOFILES + value: "65536" + - name: RABBITMQ_USE_LONGNAME + value: "true" + - name: RABBITMQ_ERL_COOKIE + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-erlang-cookie + - name: RABBITMQ_LOAD_DEFINITIONS + value: "no" + - name: RABBITMQ_DEFINITIONS_FILE + value: "/app/load_definition.json" + - name: RABBITMQ_SECURE_PASSWORD + value: "yes" + - name: RABBITMQ_USERNAME + value: "user" + - name: RABBITMQ_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: RABBITMQ_PLUGINS + value: "rabbitmq_management, rabbitmq_peer_discovery_k8s, rabbitmq_auth_backend_ldap" + envFrom: + ports: + - name: amqp + containerPort: 5672 + - name: dist + containerPort: 25672 + - name: stats + containerPort: 15672 + - name: epmd + containerPort: 4369 + livenessProbe: + failureThreshold: 6 + initialDelaySeconds: 120 + periodSeconds: 30 + successThreshold: 1 + timeoutSeconds: 20 + exec: + command: + - /bin/bash + - -ec + - rabbitmq-diagnostics -q ping + readinessProbe: + failureThreshold: 3 + initialDelaySeconds: 10 + periodSeconds: 30 + successThreshold: 1 + timeoutSeconds: 20 + exec: + command: + - /bin/bash + - -ec + - rabbitmq-diagnostics -q check_running && rabbitmq-diagnostics -q check_local_alarms + resources: + limits: + cpu: 500m + memory: 512Mi + requests: + cpu: 100m + memory: 128Mi + volumeMounts: + - name: configuration + mountPath: /bitnami/rabbitmq/conf + - name: data + mountPath: /bitnami/rabbitmq/mnesia + volumes: + - name: configuration + secret: + secretName: defectdojo-rabbitmq-config + items: + - key: rabbitmq.conf + path: rabbitmq.conf + volumeClaimTemplates: + - metadata: + name: data + labels: + app.kubernetes.io/name: rabbitmq + app.kubernetes.io/instance: defectdojo + spec: + accessModes: + - "ReadWriteOnce" + resources: + requests: + storage: "8Gi" +--- +# Source: defectdojo/templates/django-ingress.yaml +apiVersion: networking.k8s.io/v1beta1 +kind: Ingress +metadata: + name: defectdojo + labels: + defectdojo.org/component: django + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 +spec: + tls: + - hosts: + - defectdojo.default.minikube.local + secretName: defectdojo-tls + rules: + - host: defectdojo.default.minikube.local + http: + paths: + - path: / + backend: + serviceName: defectdojo-django + servicePort: http +--- +# Source: defectdojo/templates/sa.yaml +kind: ServiceAccount +apiVersion: v1 +metadata: + name: defectdojo + labels: + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 + annotations: + helm.sh/resource-policy: keep + helm.sh/hook: "pre-install" + helm.sh/hook-delete-policy: "before-hook-creation" +--- +# Source: defectdojo/templates/tests/unit-tests.yaml +apiVersion: v1 +kind: Pod +metadata: + name: defectdojo-unit-tests + labels: + app.kubernetes.io/name: defectdojo + helm.sh/chart: defectdojo-1.6.112 + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + annotations: + helm.sh/hook: test-success +spec: + serviceAccountName: defectdojo + containers: + - name: unit-tests + image: 'allardkrings/defectdojo-django:1.0' + imagePullPolicy: IfNotPresent + securityContext: + runAsUser: 1001 + command: ['/entrypoint-unit-tests.sh'] + envFrom: + - configMapRef: + name: defectdojo + env: + - name: DD_DATABASE_USER + value: defectdojo + - name: DD_CELERY_BROKER_PASSWORD + valueFrom: + secretKeyRef: + # Use broker chart secret + # name: defectdojo-rabbitmq + # Use secret handled outside of the chart + name: defectdojo-rabbitmq-specific + key: rabbitmq-password + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + - name: DD_DEBUG + value: 'True' + - name: DD_SECRET_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_SECRET_KEY + - name: DD_CREDENTIAL_AES_256_KEY + valueFrom: + secretKeyRef: + name: defectdojo + key: DD_CREDENTIAL_AES_256_KEY + resources: + limits: + cpu: 500m + memory: 512Mi + requests: + cpu: 100m + memory: 128Mi + restartPolicy: Never +--- +# Source: defectdojo/templates/initializer-job.yaml +apiVersion: batch/v1 +kind: Job +metadata: + name: defectdojo-initializer-2024-05-19-12-59 + labels: + defectdojo.org/component: initializer + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + app.kubernetes.io/managed-by: Helm + helm.sh/chart: defectdojo-1.6.112 + annotations: + helm.sh/hook: post-install,post-upgrade +spec: + ttlSecondsAfterFinished: 60 + template: + metadata: + labels: + defectdojo.org/component: initializer + app.kubernetes.io/name: defectdojo + app.kubernetes.io/instance: defectdojo + annotations: + spec: + serviceAccountName: defectdojo + volumes: + containers: + - name: initializer + image: "allardkrings/defectdojo-django:1.0" + imagePullPolicy: IfNotPresent + securityContext: + runAsUser: 1001 + volumeMounts: + command: + - /entrypoint-initializer.sh + envFrom: + - configMapRef: + name: defectdojo + - secretRef: + name: defectdojo + env: + - name: DD_DATABASE_PASSWORD + valueFrom: + secretKeyRef: + name: defectdojo-postgresql-specific + key: postgresql-password + resources: + limits: + cpu: 2000m + memory: 512Mi + requests: + cpu: 100m + memory: 256Mi + restartPolicy: Never + backoffLimit: 1 diff --git a/kubernetes/dev/defectdojo/helm/defectdojo-secret.sh b/kubernetes/dev/defectdojo/helm/defectdojo-secret.sh new file mode 100755 index 0000000..6c2a236 --- /dev/null +++ b/kubernetes/dev/defectdojo/helm/defectdojo-secret.sh @@ -0,0 +1,5 @@ +microk8s kubectl -n defectdojo create secret generic defectdojo \ +--from-literal=DD_ADMIN_PASSWORD=defectdojodefectdojojo \ +--from-literal=DD_SECRET_KEY=defectdodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojo \ +--from-literal=DD_CREDENTIAL_AES_256_KEY=defectdodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojodefectdojo \ +--from-literal=METRICS_HTTP_AUTH_PASSWORD=defectdojodefectdojodefectdojojo -n defectdojo diff --git a/kubernetes/dev/defectdojo/helm/ingressroute-http.yaml b/kubernetes/dev/defectdojo/helm/ingressroute-http.yaml new file mode 100755 index 0000000..7a5f0a7 --- /dev/null +++ b/kubernetes/dev/defectdojo/helm/ingressroute-http.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: defectdojo-http + namespace: defectdojo +spec: + entryPoints: + - web + routes: + - match: Host(`defectdojo-dev.allarddcs.nl`) + kind: Rule + services: + - name: defectdojo-django + port: 80 diff --git a/kubernetes/dev/defectdojo/helm/ingressroute-tls.yaml b/kubernetes/dev/defectdojo/helm/ingressroute-tls.yaml new file mode 100755 index 0000000..e90cd99 --- /dev/null +++ b/kubernetes/dev/defectdojo/helm/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: defectdojo-tls + namespace: defectdojo +spec: + entryPoints: + - websecure + routes: + - match: Host(`defectdojo-dev.allarddcs.nl`) + kind: Rule + services: + - name: defectdojo-django + port: 80 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/defectdojo/helm/persistent-volumes.yaml b/kubernetes/dev/defectdojo/helm/persistent-volumes.yaml new file mode 100755 index 0000000..d727ade --- /dev/null +++ b/kubernetes/dev/defectdojo/helm/persistent-volumes.yaml @@ -0,0 +1,68 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: defectdojo-postgres-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/defectdojo/postgres + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: data-defectdojo-postgresql-0 + namespace: defectdojo +spec: + storageClassName: "" + volumeName: defectdojo-postgres-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: defectdojo-rabbitmq-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/defectdojo/rabbitmq + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: data-defectdojo-rabbitmq-0 + namespace: defectdojo +spec: + storageClassName: "" + volumeName: defectdojo-rabbitmq-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/kubernetes/dev/defectdojo/helm/postgres-secret.sh b/kubernetes/dev/defectdojo/helm/postgres-secret.sh new file mode 100755 index 0000000..85e04b2 --- /dev/null +++ b/kubernetes/dev/defectdojo/helm/postgres-secret.sh @@ -0,0 +1,3 @@ +microk8s kubectl -n defectdojo create secret generic defectdojo-postgresql-specific \ +--from-literal=postgresql-password=defectdojo \ +--from-literal=postgresql-postgres-password=defectdojo -n defectdojo diff --git a/kubernetes/dev/defectdojo/helm/rabbitmq-secret.sh b/kubernetes/dev/defectdojo/helm/rabbitmq-secret.sh new file mode 100755 index 0000000..e0a809c --- /dev/null +++ b/kubernetes/dev/defectdojo/helm/rabbitmq-secret.sh @@ -0,0 +1,3 @@ +microk8s kubectl -n defectdojo create secret generic defectdojo-rabbitmq-specific \ +--from-literal=rabbitmq-password=mqrabbitmq \ +--from-literal=rabbitmq-erlang-cookie=rabbitmqrabbitmqrabbitmqrabbitmq -n defectdojo diff --git a/kubernetes/dev/defectdojo/helm/values-complete.yaml b/kubernetes/dev/defectdojo/helm/values-complete.yaml new file mode 100755 index 0000000..321eadb --- /dev/null +++ b/kubernetes/dev/defectdojo/helm/values-complete.yaml @@ -0,0 +1,552 @@ +--- +# Global settings +# create defectdojo specific secret +createSecret: false +# create rabbitmq secret in defectdojo chart, outside of rabbitmq chart +createRabbitMqSecret: false +# create redis secret in defectdojo chart, outside of redis chart +createRedisSecret: false +# create mysql secret in defectdojo chart, outside of mysql chart +createMysqlSecret: false +# create postgresql secret in defectdojo chart, outside of postgresql chart +createPostgresqlSecret: false +# create postgresql-ha secret in defectdojo chart, outside of postgresql-ha chart +createPostgresqlHaSecret: false +# create postgresql-ha-pgpool secret in defectdojo chart, outside of postgresql-ha chart +createPostgresqlHaPgpoolSecret: false +# Track configuration (trackConfig): will automatically respin application pods in case of config changes detection +# can be: +# - disabled, default +# - enabled, enables tracking configuration changes based on SHA256 +# trackConfig: disabled + +# Enables application network policy +# For more info follow https://kubernetes.io/docs/concepts/services-networking/network-policies/ +networkPolicy: + enabled: false + # if additional labels need to be allowed (e.g. prometheus scraper) + ingressExtend: [] + # ingressExtend: + # - podSelector: + # matchLabels: + # app.kubernetes.io/instance: defectdojo-prometheus + egress: [] + # egress: + # - to: + # - ipBlock: + # cidr: 10.0.0.0/24 + # ports: + # - protocol: TCP + # port: 443 + +# Configuration value to select database type +# Option to use "postgresql" or "mysql" database type, by default "mysql" is chosen +# Set the "enable" field to true of the database type you select (if you want to use internal database) and false of the one you don't select +database: postgresql +# Primary hostname of instance +host: defectdojo.default.minikube.local + +# The full URL to your defectdojo instance, depends on the domain where DD is deployed, it also affects links in Jira +# site_url: 'https://' + +# optional list of alternative hostnames to use that gets appended to +# DD_ALLOWED_HOSTS. This is necessary when your local hostname does not match +# the global hostname. +# alternativeHosts: +# - defectdojo.example.com +imagePullPolicy: Always +# Where to pull the defectDojo images from. Defaults to "defectdojo/*" repositories on hub.docker.com +repositoryPrefix: defectdojo +# When using a private registry, name of the secret that holds the registry secret (eg deploy token from gitlab-ci project) +# Create secrets as: kubectl create secret docker-registry defectdojoregistrykey --docker-username=registry_username --docker-password=registry_password --docker-server='https://index.docker.io/v1/' +# imagePullSecrets: defectdojoregistrykey +tag: latest + +# Additional labels to add to the pods: +# podLabels: +# key: value +podLabels: {} + +# Allow overriding of revisionHistoryLimit across all deployments. +# revisionHistoryLimit: 10 + +securityContext: + enabled: true + djangoSecurityContext: + # django dockerfile sets USER=1001 + runAsUser: 1001 + nginxSecurityContext: + # nginx dockerfile sets USER=1001 + runAsUser: 1001 + +tests: + unitTests: + resources: + requests: + cpu: 100m + memory: 128Mi + limits: + cpu: 500m + memory: 512Mi + +admin: + user: admin + password: + firstName: Administrator + lastName: User + mail: admin@defectdojo.local + secretKey: + credentialAes256Key: + metricsHttpAuthPassword: + +monitoring: + enabled: false + # Add the nginx prometheus exporter sidecar + prometheus: + enabled: false + image: nginx/nginx-prometheus-exporter:0.11.0 + imagePullPolicy: IfNotPresent + +annotations: {} + +# Components +celery: + broker: rabbitmq + # To use an external celery broker, set the hostname here + brokerHost: "" + logLevel: INFO + beat: + annotations: {} + affinity: {} + nodeSelector: {} + replicas: 1 + resources: + requests: + cpu: 100m + memory: 128Mi + limits: + cpu: 2000m + memory: 256Mi + tolerations: [] + worker: + annotations: {} + affinity: {} + logLevel: INFO + nodeSelector: {} + replicas: 1 + resources: + requests: + cpu: 100m + memory: 128Mi + limits: + cpu: 2000m + memory: 512Mi + tolerations: [] + app_settings: + pool_type: solo + # Performance improved celery worker config when needing to deal with a lot of findings (e.g deduplication ops) + # Comment out the "solo" line, and uncomment the following lines. + # pool_type: prefork + # autoscale_min: 2 + # autoscale_max: 8 + # concurrency: 8 + # prefetch_multiplier: 128 + + # A list of extra volumes to mount. This + # is useful for bringing in extra data that can be referenced by other configurations + # at a well known path, such as local_settings. The + # value of this should be a list of objects. + # + # Example: + # + # ```yaml + # extraVolumes: + # - type: configMap + # name: local_settings + # path: /app/dojo/settings/local_settings.py + # subPath: local_settings.py + # - type: hostPath + # name: host_directory + # path: /tmp + # hostPath: /tmp + # ``` + # + # Each object supports the following keys: + # + # - `type` - Type of the volume, must be one of "configMap", "secret", "hostPath". Case sensitive. + # Even is supported we are highly recommending to avoid hostPath for security reasons (usually blocked by PSP) + # - `name` - Name of the configMap or secret to be mounted. This also controls + # the path that it is mounted to. The volume will be mounted to `/consul/userconfig/`. + # - `path` - defines where file should be exposed + # - `subPath` - extracts only particular file from secret or configMap + # - `pathType` - only for hostPath, can be one of the "DirectoryOrCreate", "Directory" (default), "FileOrCreate", + # "File", "Socket", "CharDevice", "BlockDevice" + # - `hostPath` - only for hostPath, file or directory from local host + # @type: array + extraVolumes: [] + +django: + annotations: {} + service: + annotations: {} + affinity: {} + ingress: + enabled: true + ingressClassName: "" + activateTLS: true + secretName: defectdojo-tls + annotations: {} + # Restricts the type of ingress controller that can interact with our chart (nginx, traefik, ...) + # kubernetes.io/ingress.class: nginx + # Depending on the size and complexity of your scans, you might want to increase the default ingress timeouts if you see repeated 504 Gateway Timeouts + # nginx.ingress.kubernetes.io/proxy-read-timeout: "1800" + # nginx.ingress.kubernetes.io/proxy-send-timeout: "1800" + nginx: + tls: + enabled: false + generateCertificate: false + resources: + requests: + cpu: 100m + memory: 128Mi + limits: + cpu: 2000m + memory: 256Mi + nodeSelector: {} + replicas: 1 + tolerations: [] + uwsgi: + livenessProbe: + # Enable liveness checks on uwsgi container. Those values are use on nginx readiness checks as well. + enabled: true + failureThreshold: 6 + initialDelaySeconds: 120 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 5 + resources: + requests: + cpu: 100m + memory: 256Mi + limits: + cpu: 2000m + memory: 512Mi + app_settings: + processes: 2 + threads: 2 + enable_debug: false # this also requires DD_DEBUG to be set to True + certificates: + # includes additional CA certificate as volume, it refrences REQUESTS_CA_BUNDLE env varible + # to create configMap `kubectl create cm defectdojo-ca-certs --from-file=ca.crt` + # NOTE: it reflects REQUESTS_CA_BUNDLE for celery workers, beats as well + enabled: false + configName: defectdojo-ca-certs + certMountPath: /certs/ + certFileName: ca.crt + + # A list of extra volumes to mount. This + # is useful for bringing in extra data that can be referenced by other configurations + # at a well known path, such as local_settings. The + # value of this should be a list of objects. + # + # Example: + # + # ```yaml + # extraVolumes: + # - type: configMap + # name: local_settings + # path: /app/dojo/settings/local_settings.py + # container: uwsgi + # subPath: local_settings.py + # - type: hostPath + # name: host_directory + # path: /app/dojo/settings/ + # hostPath: /var/run + # container: uwsgi + # ``` + # + # Each object supports the following keys: + # + # - `type` - Type of the volume, must be one of "configMap", "secret", "hostPath". Case sensitive. + # Even is supported we are highly recommending to avoid hostPath for security reasons (usually blocked by PSP) + # - `name` - Name of the configMap or secret to be mounted. This also controls + # the path that it is mounted to. The volume will be mounted to `/consul/userconfig/`. + # - `path` - defines where file should be exposed + # - `container` - defines where volume needs to be mounted, must be uwsgi or nginx + # - `subPath` - extracts only particular file from secret or configMap + # - `pathType` - only for hostPath, can be one of the "DirectoryOrCreate", "Directory" (default), "FileOrCreate", + # "File", "Socket", "CharDevice", "BlockDevice" + # - `hostPath` - only for hostPath, file or directory from local host + # @type: array + extraVolumes: [] + + # This feature needs more preparation before can be enabled, please visit KUBERNETES.md#media-persistent-volume + mediaPersistentVolume: + enabled: true + fsGroup: 1001 + # any name + name: media + # could be emptyDir (not for production) or pvc + type: emptyDir + # in case if pvc specified, should point to the already existing pvc + persistentVolumeClaim: + # set to true to create a new pvc and if django.mediaPersistentVolume.type is set to pvc + create: false + name: + size: 5Gi + accessModes: + - ReadWriteMany # check KUBERNETES.md doc first for option to choose + storageClassName: + +initializer: + run: true + jobAnnotations: { + helm.sh/hook: "post-install,post-upgrade" + } + annotations: {} + keepSeconds: 60 + affinity: {} + nodeSelector: {} + resources: + requests: + cpu: 100m + memory: 256Mi + limits: + cpu: 2000m + memory: 512Mi + + # A list of extra volumes to mount. This + # is useful for bringing in extra data that can be referenced by other configurations + # at a well known path, such as local_settings. The + # value of this should be a list of objects. + # + # Example: + # + # ```yaml + # extraVolumes: + # - type: configMap + # name: local_settings + # path: /app/dojo/settings/local_settings.py + # subPath: local_settings.py + # - type: hostPath + # name: host_directory + # path: /tmp + # hostPath: /tmp + # ``` + # + # Each object supports the following keys: + # + # - `type` - Type of the volume, must be one of "configMap", "secret", "hostPath". Case sensitive. + # Even is supported we are highly recommending to avoid hostPath for security reasons (usually blocked by PSP) + # - `name` - Name of the configMap or secret to be mounted. This also controls + # the path that it is mounted to. The volume will be mounted to `/consul/userconfig/`. + # - `path` - defines where file should be exposed + # - `subPath` - extracts only particular file from secret or configMap + # - `pathType` - only for hostPath, can be one of the "DirectoryOrCreate", "Directory" (default), "FileOrCreate", + # "File", "Socket", "CharDevice", "BlockDevice" + # - `hostPath` - only for hostPath, file or directory from local host + # @type: array + extraVolumes: [] + +mysql: + enabled: false + auth: + username: defectdojo + password: "" + rootPassword: "" + database: defectdojo + existingSecret: defectdojo-mysql-specific + secretKey: mysql-password + primary: + service: + ports: + mysql: 3306 + # To use an external mySQL instance, set enabled to false and uncomment + # the line below / add external address: + # mysqlServer: "127.0.0.1" + +postgresql: +# enabled: true + enabled: false + image: + tag: 11.16.0-debian-11-r9 + auth: + username: defectdojo + password: "" + database: defectdojo + existingSecret: defectdojo-postgresql-specific + secretKeys: + adminPasswordKey: postgresql-postgres-password + userPasswordKey: postgresql-password + replicationPasswordKey: postgresql-replication-password + architecture: standalone + primary: + name: primary + persistence: + enabled: true + service: + ports: + postgresql: 5432 + podSecurityContext: + # Default is true for K8s. Enabled needs to false for OpenShift restricted SCC and true for anyuid SCC + enabled: true + # fsGroup specification below is not applied if enabled=false. enabled=false is the required setting for OpenShift "restricted SCC" to work successfully. + fsGroup: 1001 + containerSecurityContext: + # Default is true for K8s. Enabled needs to false for OpenShift restricted SCC and true for anyuid SCC + enabled: true + # runAsUser specification below is not applied if enabled=false. enabled=false is the required setting for OpenShift "restricted SCC" to work successfully. + runAsUser: 1001 + affinity: {} + nodeSelector: {} + volumePermissions: + enabled: false + # if using restricted SCC set runAsUser: "auto" and if running under anyuid SCC - runAsUser needs to match the line above + containerSecurityContext: + runAsUser: 1001 + shmVolume: + chmod: + enabled: false + + # To use an external PostgreSQL instance, set enabled to false and uncomment + # the line below: + # postgresServer: "127.0.0.1" + +postgresqlha: + enabled: false + global: + pgpool: + existingSecret: defectdojo-postgresql-ha-pgpool + serviceAccount: + create: true + postgresql: + replicaCount: 3 + username: defectdojo + password: "" + repmgrPassword: "" + database: defectdojo + existingSecret: defectdojo-postgresql-ha-specific + securityContext: + enabled: true + fsGroup: 1001 + containerSecurityContext: + enabled: true + runAsUser: 1001 + pgpool: + replicaCount: 3 + adminPassword: "" + securityContext: + enabled: true + fsGroup: 1001 + volumePermissions: + enabled: true + securityContext: + runAsUser: 1001 + persistence: + enabled: true + service: + ports: + postgresql: 5432 + +# Google CloudSQL support in GKE via gce-proxy +cloudsql: + # To use CloudSQL in GKE set 'enable: true' + enabled: false + # By default, the proxy has verbose logging. Set this to false to make it less verbose + verbose: true + image: + # set repo and image tag of gce-proxy + repository: gcr.io/cloudsql-docker/gce-proxy + tag: 1.33.14 + pullPolicy: IfNotPresent + # set CloudSQL instance: 'project:zone:instancename' + instance: "" + # use IAM database authentication + enable_iam_login: false + # whether to use a private IP to connect to the database + use_private_ip: false + +# Settings to make running the chart on GKE simpler +gke: + # Set to true to configure the Ingress to use the GKE provided ingress controller + useGKEIngress: false + # Set to true to have GKE automatically provision a TLS certificate for the host specified + # Requires useGKEIngress to be set to true + # When using this option, be sure to set django.ingress.activateTLS to false + useManagedCertificate: false + # Workload Identity allows the K8s service account to assume the IAM access of a GCP service account to interact with other GCP services + workloadIdentityEmail: "" + +rabbitmq: + enabled: true + replicaCount: 1 + auth: + password: "" + erlangCookie: "" + existingPasswordSecret: defectdojo-rabbitmq-specific + secretPasswordKey: "" + existingErlangSecret: defectdojo-rabbitmq-specific + memoryHighWatermark: + enabled: true + type: relative + value: 0.5 + affinity: {} + nodeSelector: {} + resources: + requests: + cpu: 100m + memory: 128Mi + limits: + cpu: 500m + memory: 512Mi + podSecurityContext: + enabled: true + fsGroup: 1001 + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + +# For more advance options check the bitnami chart documentation: https://github.com/bitnami/charts/tree/master/bitnami/redis +redis: + enabled: false + scheme: "redis" + transportEncryption: + enabled: false + params: '' + auth: + existingSecret: defectdojo-redis-specific + existingSecretPasswordKey: redis-password + password: "" + architecture: standalone + # To use an external Redis instance, set enabled to false and uncomment + # the line below: + # redisServer: myrediscluster + # To use a different port for Redis (default: 6379) add a port number and uncomment the lines below: + # master: + # service: + # ports: + # redis: xxxx + +# To add extra variables not predefined by helm config it is possible to define in extraConfigs block, e.g. below: +# NOTE Do not store any kind of sensitive information inside of it +# extraConfigs: +# DD_SOCIAL_AUTH_AUTH0_OAUTH2_ENABLED: 'true' +# DD_SOCIAL_AUTH_AUTH0_KEY: 'dev' +# DD_SOCIAL_AUTH_AUTH0_DOMAIN: 'xxxxx' + +# Extra secrets can be created inside of extraSecrets block: +# NOTE This is just an exmaple, do not store sensitive data in plain text form, better inject it during the deployment/upgrade by --set extraSecrets.secret=someSecret +# extraSecrets: +# DD_SOCIAL_AUTH_AUTH0_SECRET: 'xxx' +extraConfigs: {} + +# To add (or override) extra variables which need to be pulled from another configMap, you can +# use extraEnv. For example: +# extraEnv: +# - name: DD_DATABASE_HOST +# valueFrom: +# configMapKeyRef: +# name: my-other-postgres-configmap +# key: cluster_endpoint + diff --git a/kubernetes/dev/defectdojo/helm/values.yaml b/kubernetes/dev/defectdojo/helm/values.yaml new file mode 100755 index 0000000..34dde96 --- /dev/null +++ b/kubernetes/dev/defectdojo/helm/values.yaml @@ -0,0 +1,36 @@ +tag: 2.22.4 +fullnameOverride: defectdojo +host: defectdojo.alldcs.nl +site_url: https://defectdojo.alldcs.nl +alternativeHosts: + - defectdojo-django.defectdojo +celery: + beat: + nodeSelector: + kubernetes.io/arch: amd64 + worker: + nodeSelector: + kubernetes.io/arch: amd64 +initializer: + # should be false after initial installation was performed + run: true + nodeSelector: + kubernetes.io/arch: amd64 +django: + ingress: + enabled: true # change to 'false' for OpenShift + activateTLS: false + uwsgi: + livenessProbe: + # Enable liveness checks on uwsgi container. Those values are use on nginx readiness checks as well. + # default value is 120, so in our case 20 is just fine + initialDelaySeconds: 20 + nodeSelector: + kubernetes.io/arch: amd64 +rabbitmq: + nodeSelector: + kubernetes.io/arch: amd64 +postgresql: + primary: + nodeSelector: + kubernetes.io/arch: amd64 diff --git a/kubernetes/dev/defectdojo/installeren_met_yaml b/kubernetes/dev/defectdojo/installeren_met_yaml new file mode 100644 index 0000000..e69de29 diff --git a/kubernetes/dev/deptrack/README.md b/kubernetes/dev/deptrack/README.md new file mode 100755 index 0000000..833e802 --- /dev/null +++ b/kubernetes/dev/deptrack/README.md @@ -0,0 +1,33 @@ +#Installatie +kubectl apply -f deptrack.yaml + +Opletten dat de API-URL klopt met VIMEXX DNS in stellingen: deptracka.alldcs.nl +Dit kun je controleren door te "pingen". +In de yaml moet de setting staan: + + - name: API_BASE_URL + value: 'https://deptracka-dev.alldcs.nl' + +#configuratie tekton: + +- ga naar deptrackmenu -> configuration -> access-management -> teams +- kijk bij team "automation" en kopieer de api-key +- vul die in in de pipelinerun en in de gitea-trigger-template +- Je moet ook een project aanmaken met de juiste versie + +#integratie met defectdojo + +- haal de api key v2 op in defectdojo (menu rechtsboven bij symbool poppetje); +- vul die in bij deptrack bij integrations -> defectdojo +- je moet ook properties aanmaken: + +Attribute Value +Group Name integrations +Property Name defectdojo.engagementId +Property Value The CI/CD engagement ID to upload findings to, noted in Step 3 s +Property Type STRING + + +#ingressroutes + +werkt met TCP-route op tls en http diff --git a/kubernetes/dev/deptrack/deptrack.old b/kubernetes/dev/deptrack/deptrack.old new file mode 100644 index 0000000..af2e2d7 --- /dev/null +++ b/kubernetes/dev/deptrack/deptrack.old @@ -0,0 +1,252 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: deptrack +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: deptrack-apiserver + namespace: deptrack + labels: + app: deptrack-apiserver +spec: + replicas: 1 + selector: + matchLabels: + app: deptrack-apiserver + template: + metadata: + labels: + app: deptrack-apiserver + spec: + containers: + - name: deptrack-apiserver + image: dependencytrack/apiserver + ports: + - containerPort: 8080 + env: + - name: ALPINE_DATABASE_MODE + value: 'external' + - name: ALPINE_DATABASE_URL + value: 'jdbc:postgresql://postgres13.postgres:5432/deptrack' +# value: 'jdbc:postgresql://192.168.2.233:5432/deptrack' + - name: ALPINE_DATABASE_DRIVER + value: 'org.postgresql.Driver' + - name: ALPINE_DATABASE_USERNAME + value: 'deptrack' + - name: ALPINE_DATABASE_PASSWORD + value: 'deptrack' + - name: ALPINE_DATABASE_POOL_ENABLED + value: 'true' + - name: ALPINE_DATABASE_POOL_MAX_SIZE + value: '20' + - name: ALPINE_DATABASE_POOL_MIN_IDLE + value: '10' + - name: ALPINE_DATABASE_POOL_IDLE_TIMEOUT + value: '300000' + - name: ALPINE_DATABASE_POOL_MAX_LIFETIME + value: '600000' + volumeMounts: + - mountPath: /data + name: data + volumes: + - name: data + persistentVolumeClaim: + claimName: deptrack-data-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: deptrack-apiserver + namespace: deptrack + labels: + name: deptrack-apiserver +spec: + type: ClusterIP + ports: + - port: 8080 + name: deptrack-apiserver + selector: + app: deptrack-apiserver +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: deptrack-frontend + namespace: deptrack + labels: + app: deptrack-frontend +spec: + replicas: 1 + selector: + matchLabels: + app: deptrack-frontend + template: + metadata: + labels: + app: deptrack-frontend + spec: + containers: + - name: deptrack-frontend + image: dependencytrack/frontend + ports: + - containerPort: 8080 + env: + - name: API_BASE_URL + value: 'https://deptracka-dev.allarddcs.nl' + volumeMounts: + - mountPath: /app/static/config.json + name: config + volumes: + - name: config + persistentVolumeClaim: + claimName: deptrack-config-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: deptrack-frontend + namespace: deptrack + labels: + name: deptrack-frontend +spec: + type: ClusterIP + ports: + - port: 8080 + name: deptrack-frontend + selector: + app: deptrack-frontend +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptrackf-http + namespace: deptrack +spec: + entryPoints: + - web + routes: + - match: Host(`deptrackf-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-frontend + port: 8080 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptracka-http + namespace: deptrack +spec: + entryPoints: + - web + routes: + - match: Host(`deptracka-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-apiserver + port: 8080 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptrackf-tls + namespace: deptrack +spec: + entryPoints: + - websecure + routes: + - match: Host(`deptrackf-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-frontend + port: 8080 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptracka-tls + namespace: deptrack +spec: + entryPoints: + - websecure + routes: + - match: Host(`deptracka-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-apiserver + port: 8080 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: deptrack-data-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/deptrack/data + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: deptrack-data-pvc + namespace: deptrack +spec: + storageClassName: "" + volumeName: deptrack-data-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: deptrack-config-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/deptrack/config + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: deptrack-config-pvc + namespace: deptrack +spec: + storageClassName: "" + volumeName: deptrack-config-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/kubernetes/dev/deptrack/deptrack.yaml b/kubernetes/dev/deptrack/deptrack.yaml new file mode 100644 index 0000000..454c853 --- /dev/null +++ b/kubernetes/dev/deptrack/deptrack.yaml @@ -0,0 +1,292 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: deptrack +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: deptrack-apiserver + namespace: deptrack + labels: + app: deptrack-apiserver +spec: + replicas: 1 + selector: + matchLabels: + app: deptrack-apiserver + template: + metadata: + labels: + app: deptrack-apiserver + spec: + initContainers: + - name: init-deptrack + image: dependencytrack/apiserver + command: + - sh + - -c + - | + if [ ! -d /data/.dependency-track ] || [ -z "$(ls -A /data/.dependency-track)" ]; then + echo "Seeding /data/.dependency-track from container image..." + mkdir -p /data/.dependency-track + cp -r /opt/dependency-track/.dependency-track/* /data/.dependency-track/ + echo "Seeding complete." + else + echo "/data/.dependency-track already populated, skipping." + fi + volumeMounts: + - name: data + mountPath: /data + containers: + - name: deptrack-apiserver + image: dependencytrack/apiserver + ports: + - containerPort: 8080 + env: + - name: ALPINE_DATABASE_MODE + value: 'external' + - name: ALPINE_DATABASE_URL + value: 'jdbc:postgresql://postgres13.postgres:5432/deptrack' + - name: ALPINE_DATABASE_DRIVER + value: 'org.postgresql.Driver' + - name: ALPINE_DATABASE_USERNAME + value: 'deptrack' + - name: ALPINE_DATABASE_PASSWORD + value: 'deptrack' + - name: ALPINE_DATABASE_POOL_ENABLED + value: 'true' + - name: ALPINE_DATABASE_POOL_MAX_SIZE + value: '20' + - name: ALPINE_DATABASE_POOL_MIN_IDLE + value: '10' + - name: ALPINE_DATABASE_POOL_IDLE_TIMEOUT + value: '300000' + - name: ALPINE_DATABASE_POOL_MAX_LIFETIME + value: '600000' + volumeMounts: + - mountPath: /data + name: data + volumes: + - name: data + persistentVolumeClaim: + claimName: deptrack-data-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: deptrack-apiserver + namespace: deptrack + labels: + name: deptrack-apiserver +spec: + type: ClusterIP + ports: + - port: 8080 + name: deptrack-apiserver + selector: + app: deptrack-apiserver +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: deptrack-frontend + namespace: deptrack + labels: + app: deptrack-frontend +spec: + replicas: 1 + selector: + matchLabels: + app: deptrack-frontend + template: + metadata: + labels: + app: deptrack-frontend + spec: + initContainers: + - name: init-frontend-config + image: dependencytrack/frontend + command: + - sh + - -c + - | + echo "Init container starting..." + # Make sure temporary mount exists + mkdir -p /mnt/config + + # Copy config.json from image to PVC if it doesn't exist + if [ ! -f /mnt/config/config.json ]; then + echo "Seeding config.json from container image..." + cp /opt/owasp/dependency-track-frontend/static/config.json /mnt/config/config.json + echo "Seeding complete." + else + echo "config.json already exists on PVC, skipping." + fi + volumeMounts: + - name: config + mountPath: /mnt/config + containers: + - name: deptrack-frontend + image: dependencytrack/frontend + ports: + - containerPort: 8080 + env: + - name: API_BASE_URL + value: 'https://deptracka-dev.allarddcs.nl' + volumeMounts: + - name: config + mountPath: /opt/owasp/dependency-track-frontend/static/config.json + subPath: config.json + volumes: + - name: config + persistentVolumeClaim: + claimName: deptrack-config-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: deptrack-frontend + namespace: deptrack + labels: + name: deptrack-frontend +spec: + type: ClusterIP + ports: + - port: 8080 + name: deptrack-frontend + selector: + app: deptrack-frontend +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptrackf-http + namespace: deptrack +spec: + entryPoints: + - web + routes: + - match: Host(`deptrackf-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-frontend + port: 8080 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptracka-http + namespace: deptrack +spec: + entryPoints: + - web + routes: + - match: Host(`deptracka-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-apiserver + port: 8080 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptrackf-tls + namespace: deptrack +spec: + entryPoints: + - websecure + routes: + - match: Host(`deptrackf-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-frontend + port: 8080 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: deptracka-tls + namespace: deptrack +spec: + entryPoints: + - websecure + routes: + - match: Host(`deptracka-dev.allarddcs.nl`) + kind: Rule + services: + - name: deptrack-apiserver + port: 8080 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: deptrack-data-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/deptrack/data + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: deptrack-data-pvc + namespace: deptrack +spec: + storageClassName: "" + volumeName: deptrack-data-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: deptrack-config-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/deptrack/config + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: deptrack-config-pvc + namespace: deptrack +spec: + storageClassName: "" + volumeName: deptrack-config-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/kubernetes/dev/dnsutils/dnsutils.yaml b/kubernetes/dev/dnsutils/dnsutils.yaml new file mode 100755 index 0000000..ee6f6f7 --- /dev/null +++ b/kubernetes/dev/dnsutils/dnsutils.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: dnsutils +--- +apiVersion: v1 +kind: Pod +metadata: + name: dnsutils + namespace: dnsutils +spec: + containers: + - name: dnsutils + image: registry.k8s.io/e2e-test-images/jessie-dnsutils:1.3 + command: + - sleep + - "infinity" + imagePullPolicy: IfNotPresent + restartPolicy: Always diff --git a/kubernetes/dev/drupal/drupal.yaml b/kubernetes/dev/drupal/drupal.yaml new file mode 100644 index 0000000..5b3038b --- /dev/null +++ b/kubernetes/dev/drupal/drupal.yaml @@ -0,0 +1,133 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: drupal + namespace: drupal + labels: + app: drupal +spec: + replicas: 1 + selector: + matchLabels: + app: drupal + template: + metadata: + labels: + app: drupal + spec: + initContainers: + - name: init-sites-volume + image: drupal + command: ['/bin/bash', '-c'] + args: ['chown www-data:www-data /var/www/html/sites -R'] + volumeMounts: + - name: drupal-data + mountPath: /var/www/html/sites + subPath: sites + containers: + - name: drupal + image: drupal + imagePullPolicy: Always + ports: + - containerPort: 80 + volumeMounts: + - name: drupal-data + mountPath: /var/www/html/modules + subPath: modules + - name: drupal-data + mountPath: /var/www/html/profiles + subPath: profiles + - name: drupal-data + mountPath: /var/www/html/themes + subPath: themes + - name: drupal-data + mountPath: /var/www/html/sites + subPath: sites + volumes: + - name: drupal-data + persistentVolumeClaim: + claimName: drupal-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: drupal + namespace: drupal + labels: + app: drupal +spec: + sessionAffinity: None + ports: + - protocol: TCP + port: 80 + selector: + app: drupal + type: LoadBalancer +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: drupal-tls + namespace: drupal +spec: + entryPoints: + - websecure + routes: + - match: Host(`drupal-dev.alldcs.nl`) + kind: Rule + services: + - name: drupal + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: drupal-http + namespace: drupal +spec: + entryPoints: + - web + routes: + - match: Host(`drupal-dev.alldcs.nl`) + kind: Rule + services: + - name: drupal + port: 80 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: drupal-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/drupal/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: drupal-pvc + namespace: drupal +spec: + storageClassName: "" + volumeName: drupal-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + diff --git a/kubernetes/dev/elasticsearch-kibana/README.md b/kubernetes/dev/elasticsearch-kibana/README.md new file mode 100755 index 0000000..6f02fff --- /dev/null +++ b/kubernetes/dev/elasticsearch-kibana/README.md @@ -0,0 +1,27 @@ +CRD's INSTALLEREN: + +Handleiding komt van: + +www.elastic.co/guide/en/cloud-on-k8s/current/k8s-quickstart.html + +Installeren CRD's + +kubectl create -f https://download.elastic.co/downloads/eck/2.5.0/crds.yaml + +customresourcedefinition.apiextensions.k8s.io/agents.agent.k8s.elastic.co created +customresourcedefinition.apiextensions.k8s.io/apmservers.apm.k8s.elastic.co created +customresourcedefinition.apiextensions.k8s.io/beats.beat.k8s.elastic.co created +customresourcedefinition.apiextensions.k8s.io/elasticmapsservers.maps.k8s.elastic.co created +customresourcedefinition.apiextensions.k8s.io/elasticsearchautoscalers.autoscaling.k8s.elastic.co created +customresourcedefinition.apiextensions.k8s.io/elasticsearches.elasticsearch.k8s.elastic.co created +customresourcedefinition.apiextensions.k8s.io/enterprisesearches.enterprisesearch.k8s.elastic.co created +customresourcedefinition.apiextensions.k8s.io/kibanas.kibana.k8s.elastic.co created + + +Ik heb een loadbancer toegevoerd )kibana-lb.yaml , die werkt vanaf buiten niet (relative url?) maar wel op de nodeport. + +USER/PASSWORD: + +user: elastic +password: +kubectl get secret quickstart-es-elastic-user -o=jsonpath='{.data.elastic}' | base64 --decode; echo diff --git a/kubernetes/dev/elasticsearch-kibana/agent/elastic-agent-managed-kubernetes.yaml b/kubernetes/dev/elasticsearch-kibana/agent/elastic-agent-managed-kubernetes.yaml new file mode 100755 index 0000000..b2e3c01 --- /dev/null +++ b/kubernetes/dev/elasticsearch-kibana/agent/elastic-agent-managed-kubernetes.yaml @@ -0,0 +1,268 @@ +# For more information refer to https://www.elastic.co/guide/en/fleet/current/running-on-kubernetes-managed-by-fleet.html +apiVersion: apps/v1 +kind: DaemonSet +metadata: + name: elastic-agent + namespace: kube-system + labels: + app: elastic-agent +spec: + selector: + matchLabels: + app: elastic-agent + template: + metadata: + labels: + app: elastic-agent + spec: + # Tolerations are needed to run Elastic Agent on Kubernetes control-plane nodes. + # Agents running on control-plane nodes collect metrics from the control plane components (scheduler, controller manager) of Kubernetes + tolerations: + - key: node-role.kubernetes.io/control-plane + effect: NoSchedule + - key: node-role.kubernetes.io/master + effect: NoSchedule + serviceAccountName: elastic-agent + hostNetwork: true + # 'hostPID: true' enables the Elastic Security integration to observe all process exec events on the host. + # Sharing the host process ID namespace gives visibility of all processes running on the same host. + hostPID: true + dnsPolicy: ClusterFirstWithHostNet + containers: + - name: elastic-agent + image: docker.elastic.co/beats/elastic-agent:8.5.3 + env: + # Set to 1 for enrollment into Fleet server. If not set, Elastic Agent is run in standalone mode + - name: FLEET_ENROLL + value: "1" + # Set to true to communicate with Fleet with either insecure HTTP or unverified HTTPS + - name: FLEET_INSECURE + value: "true" + # Fleet Server URL to enroll the Elastic Agent into + # FLEET_URL can be found in Kibana, go to Management > Fleet > Settings + - name: FLEET_URL + value: "https://fleet-server:8220" + # Elasticsearch API key used to enroll Elastic Agents in Fleet (https://www.elastic.co/guide/en/fleet/current/fleet-enrollment-tokens.html#fleet-enrollment-tokens) + # If FLEET_ENROLLMENT_TOKEN is empty then KIBANA_HOST, KIBANA_FLEET_USERNAME, KIBANA_FLEET_PASSWORD are needed + - name: FLEET_ENROLLMENT_TOKEN + value: "token-id" + - name: KIBANA_HOST + value: "http://kibana:5601" + # The basic authentication username used to connect to Kibana and retrieve a service_token to enable Fleet + - name: KIBANA_FLEET_USERNAME + value: "elastic" + # The basic authentication password used to connect to Kibana and retrieve a service_token to enable Fleet + - name: KIBANA_FLEET_PASSWORD + value: "changeme" + - name: NODE_NAME + valueFrom: + fieldRef: + fieldPath: spec.nodeName + - name: POD_NAME + valueFrom: + fieldRef: + fieldPath: metadata.name + securityContext: + runAsUser: 0 + resources: + limits: + memory: 500Mi + requests: + cpu: 100m + memory: 200Mi + volumeMounts: + - name: proc + mountPath: /hostfs/proc + readOnly: true + - name: cgroup + mountPath: /hostfs/sys/fs/cgroup + readOnly: true + - name: varlibdockercontainers + mountPath: /var/lib/docker/containers + readOnly: true + - name: varlog + mountPath: /var/log + readOnly: true + - name: etc-full + mountPath: /hostfs/etc + readOnly: true + - name: var-lib + mountPath: /hostfs/var/lib + readOnly: true + - name: etc-mid + mountPath: /etc/machine-id + readOnly: true + volumes: + - name: proc + hostPath: + path: /proc + - name: cgroup + hostPath: + path: /sys/fs/cgroup + - name: varlibdockercontainers + hostPath: + path: /var/lib/docker/containers + - name: varlog + hostPath: + path: /var/log + # The following volumes are needed for Cloud Security Posture integration (cloudbeat) + # If you are not using this integration, then these volumes and the corresponding + # mounts can be removed. + - name: etc-full + hostPath: + path: /etc + - name: var-lib + hostPath: + path: /var/lib + # Mount /etc/machine-id from the host to determine host ID + # Needed for Elastic Security integration + - name: etc-mid + hostPath: + path: /etc/machine-id + type: File +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: elastic-agent +subjects: + - kind: ServiceAccount + name: elastic-agent + namespace: kube-system +roleRef: + kind: ClusterRole + name: elastic-agent + apiGroup: rbac.authorization.k8s.io +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + namespace: kube-system + name: elastic-agent +subjects: + - kind: ServiceAccount + name: elastic-agent + namespace: kube-system +roleRef: + kind: Role + name: elastic-agent + apiGroup: rbac.authorization.k8s.io +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: elastic-agent-kubeadm-config + namespace: kube-system +subjects: + - kind: ServiceAccount + name: elastic-agent + namespace: kube-system +roleRef: + kind: Role + name: elastic-agent-kubeadm-config + apiGroup: rbac.authorization.k8s.io +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: elastic-agent + labels: + k8s-app: elastic-agent +rules: + - apiGroups: [""] + resources: + - nodes + - namespaces + - events + - pods + - services + - configmaps + # Needed for cloudbeat + - serviceaccounts + - persistentvolumes + - persistentvolumeclaims + verbs: ["get", "list", "watch"] + # Enable this rule only if planing to use kubernetes_secrets provider + #- apiGroups: [""] + # resources: + # - secrets + # verbs: ["get"] + - apiGroups: ["extensions"] + resources: + - replicasets + verbs: ["get", "list", "watch"] + - apiGroups: ["apps"] + resources: + - statefulsets + - deployments + - replicasets + - daemonsets + verbs: ["get", "list", "watch"] + - apiGroups: + - "" + resources: + - nodes/stats + verbs: + - get + - apiGroups: [ "batch" ] + resources: + - jobs + - cronjobs + verbs: [ "get", "list", "watch" ] + # Needed for apiserver + - nonResourceURLs: + - "/metrics" + verbs: + - get + # Needed for cloudbeat + - apiGroups: ["rbac.authorization.k8s.io"] + resources: + - clusterrolebindings + - clusterroles + - rolebindings + - roles + verbs: ["get", "list", "watch"] + # Needed for cloudbeat + - apiGroups: ["policy"] + resources: + - podsecuritypolicies + verbs: ["get", "list", "watch"] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: elastic-agent + # Should be the namespace where elastic-agent is running + namespace: kube-system + labels: + k8s-app: elastic-agent +rules: + - apiGroups: + - coordination.k8s.io + resources: + - leases + verbs: ["get", "create", "update"] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: elastic-agent-kubeadm-config + namespace: kube-system + labels: + k8s-app: elastic-agent +rules: + - apiGroups: [""] + resources: + - configmaps + resourceNames: + - kubeadm-config + verbs: ["get"] +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: elastic-agent + namespace: kube-system + labels: + k8s-app: elastic-agent +--- diff --git a/kubernetes/dev/elasticsearch-kibana/elasticsearch.yaml b/kubernetes/dev/elasticsearch-kibana/elasticsearch.yaml new file mode 100755 index 0000000..38bf1cd --- /dev/null +++ b/kubernetes/dev/elasticsearch-kibana/elasticsearch.yaml @@ -0,0 +1,11 @@ +apiVersion: elasticsearch.k8s.elastic.co/v1 +kind: Elasticsearch +metadata: + name: quickstart +spec: + version: 8.5.3 + nodeSets: + - name: default + count: 1 + config: + node.store.allow_mmap: false diff --git a/kubernetes/dev/elasticsearch-kibana/ingressroute-http.yml b/kubernetes/dev/elasticsearch-kibana/ingressroute-http.yml new file mode 100755 index 0000000..9256855 --- /dev/null +++ b/kubernetes/dev/elasticsearch-kibana/ingressroute-http.yml @@ -0,0 +1,31 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: quickstart-http-dialdcs +spec: + entryPoints: + - web + routes: + - match: Host("elastic.dialdcs.com") + kind: Rule + middlewares: + - name: redirect-to-https + services: + - name: quickstart-kb-http + port: 5601 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: quickstart-http-alldcs +spec: + entryPoints: + - web + routes: + - match: Host("elastic.alldcs.nl") + kind: Rule + middlewares: + - name: redirect-to-https + services: + - name: quickstart-kb-http + port: 5601 diff --git a/kubernetes/dev/elasticsearch-kibana/ingressroute-tls.yml b/kubernetes/dev/elasticsearch-kibana/ingressroute-tls.yml new file mode 100755 index 0000000..ce7dfb3 --- /dev/null +++ b/kubernetes/dev/elasticsearch-kibana/ingressroute-tls.yml @@ -0,0 +1,35 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: quickstart-tls-dialdcs +spec: + entryPoints: + - websecure + routes: + - match: Host(`elastic.dialdcs.com`) + kind: Rule + services: + - name: quickstart-kb-http + port: 5601 + middlewares: + - name: kibana-replace-url + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: quickstart-tls-alldcs +spec: + entryPoints: + - websecure + routes: + - match: Host(`elastic.alldcs.nl`) + kind: Rule + services: + - name: quickstart-kb-http + port: 5601 + middlewares: + - name: kibana-replace-url + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/elasticsearch-kibana/kibana-lb.yaml b/kubernetes/dev/elasticsearch-kibana/kibana-lb.yaml new file mode 100755 index 0000000..429094f --- /dev/null +++ b/kubernetes/dev/elasticsearch-kibana/kibana-lb.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: Service +metadata: + name: kibana-lb + namespace: default + labels: + common.k8s.elastic.co/type: kibana + kibana.k8s.elastic.co/name: quickstart +spec: + type: LoadBalancer + selector: + common.k8s.elastic.co/type: kibana + kibana.k8s.elastic.co/name: quickstart + ports: + - port: 8080 + protocol: "TCP" + name: "http" + targetPort: 5601 diff --git a/kubernetes/dev/elasticsearch-kibana/kibana-replace-url.yaml b/kubernetes/dev/elasticsearch-kibana/kibana-replace-url.yaml new file mode 100755 index 0000000..5ec38ac --- /dev/null +++ b/kubernetes/dev/elasticsearch-kibana/kibana-replace-url.yaml @@ -0,0 +1,8 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: Middleware +metadata: + name: kibana-replace-url +spec: + redirectRegex: + regex: "^https://elastic.dialdcs.com\\.(.*)" + replacement: "https://${1}" diff --git a/kubernetes/dev/elasticsearch-kibana/kibana.yaml b/kubernetes/dev/elasticsearch-kibana/kibana.yaml new file mode 100755 index 0000000..f860f12 --- /dev/null +++ b/kubernetes/dev/elasticsearch-kibana/kibana.yaml @@ -0,0 +1,16 @@ +apiVersion: kibana.k8s.elastic.co/v1 +kind: Kibana +metadata: + name: quickstart +spec: + version: 8.5.3 + http: + service: + spec: + type: LoadBalancer + tls: + selfSignedCertificate: + disabled: true + count: 1 + elasticsearchRef: + name: quickstart diff --git a/kubernetes/dev/gitea/dev/README.md b/kubernetes/dev/gitea/dev/README.md new file mode 100755 index 0000000..c977865 --- /dev/null +++ b/kubernetes/dev/gitea/dev/README.md @@ -0,0 +1,38 @@ +#Installatie via Helm: + +helm repo add bitnami https://charts.bitnami +kubectl apply -f gitea-pvc.yaml +kubectl apply -f ingressrouteTCP-http.yaml +kubectl apply -f ingressrouteTCP-tls.yaml +kubectl apply -f ingressrouteTCP-ssh.yaml +helm install gitea bitnami/gitea -f values.yaml -n gitea + +- er wordt via cert-manager een certificaat aangemaakt: + + +gitea.alldcs.nl-tls kubernetes.io/tls +gitea-externaldb Opaque +gitea Opaque +sh.helm.release.v1.gitea.v1 helm.sh/release.v1 + +#repository koppelen: + +https://gitea.alldcs.nl/allard/kubernetes DUS ZONDER .git! +user: allard +password: Gitea01@ +project: default + + +#webhook definieren bij je repository: + +http://el-gitea-listener.default.svc.cluster.local:8080 +http://192.168.2.170:31234 + +en in app.ini: + +[webhook] +ALLOWED_HOST_LIST=el-gitea-listener.default.svc.cluster.local +#dus zonder http:// en :8080 + + + diff --git a/kubernetes/dev/gitea/dev/gitea-pvc.yaml b/kubernetes/dev/gitea/dev/gitea-pvc.yaml new file mode 100755 index 0000000..f1ecfee --- /dev/null +++ b/kubernetes/dev/gitea/dev/gitea-pvc.yaml @@ -0,0 +1,33 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: gitea-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/gitea-helm + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: gitea-pvc + namespace: gitea +spec: + storageClassName: "" + volumeName: gitea-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi diff --git a/kubernetes/dev/gitea/dev/ingressroute-http.yaml b/kubernetes/dev/gitea/dev/ingressroute-http.yaml new file mode 100755 index 0000000..d02898a --- /dev/null +++ b/kubernetes/dev/gitea/dev/ingressroute-http.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: gitea-http + namespace: gitea +spec: + entryPoints: + - web + routes: + - match: Host(`gitea-dev.allarddcs.nl`) + kind: Rule + services: + - name: gitea + port: 3000 diff --git a/kubernetes/dev/gitea/dev/ingressroute-tls.yaml b/kubernetes/dev/gitea/dev/ingressroute-tls.yaml new file mode 100755 index 0000000..964b1b7 --- /dev/null +++ b/kubernetes/dev/gitea/dev/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: gitea-tls + namespace: gitea +spec: + entryPoints: + - websecure + routes: + - match: Host(`gitea-dev.allarddcs.nl`) + kind: Rule + services: + - name: gitea + port: 3000 + tls: + secretName: gitea-dev.allarddcs.nl-tls diff --git a/kubernetes/dev/gitea/dev/ingressrouteTCP-http.yaml b/kubernetes/dev/gitea/dev/ingressrouteTCP-http.yaml new file mode 100755 index 0000000..46a9380 --- /dev/null +++ b/kubernetes/dev/gitea/dev/ingressrouteTCP-http.yaml @@ -0,0 +1,13 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: gitea-tcp-http + namespace: gitea +spec: + entryPoints: + - web + routes: + - match: HostSNI(`gitea-dev.allarddcs.nl`) + services: + - name: gitea + port: 3000 diff --git a/kubernetes/dev/gitea/dev/ingressrouteTCP-ssh.yaml b/kubernetes/dev/gitea/dev/ingressrouteTCP-ssh.yaml new file mode 100755 index 0000000..9fd37e3 --- /dev/null +++ b/kubernetes/dev/gitea/dev/ingressrouteTCP-ssh.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: gitea-ssh + namespace: gitea +spec: + entryPoints: + - gitea-ssh + routes: + - match: HostSNI(`gitea-dev.allarddcs.nl`) + services: + - name: gitea + port: 22 + diff --git a/kubernetes/dev/gitea/dev/ingressrouteTCP-tls.yaml b/kubernetes/dev/gitea/dev/ingressrouteTCP-tls.yaml new file mode 100755 index 0000000..95c9138 --- /dev/null +++ b/kubernetes/dev/gitea/dev/ingressrouteTCP-tls.yaml @@ -0,0 +1,15 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: gitea-tcp-https + namespace: gitea +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`gitea-dev.allarddcs.nl`) + services: + - name: gitea + port: 3000 + tls: + passthrough: true diff --git a/kubernetes/dev/gitea/dev/values.yaml b/kubernetes/dev/gitea/dev/values.yaml new file mode 100755 index 0000000..0d5d006 --- /dev/null +++ b/kubernetes/dev/gitea/dev/values.yaml @@ -0,0 +1,677 @@ +# @section Global parameters +## Global Docker image parameters +## Please, note that this will override the image parameters, including dependencies, configured to use the global value +## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass +## + +## @param global.imageRegistry Global Docker image registry +## @param global.imagePullSecrets Global Docker registry secret names as an array +## @param global.storageClass Global StorageClass for Persistent Volume(s) +## +global: + imageRegistry: "" + ## E.g. + ## imagePullSecrets: + ## - myRegistryKeySecretName + ## + imagePullSecrets: [] + storageClass: "" + +## @section Common parameters +## + +## @param kubeVersion Force target Kubernetes version (using Helm capabilities if not set) +## +kubeVersion: "" +## @param nameOverride String to partially override gitea.fullname template (will maintain the release name) +## +nameOverride: "" +## @param fullnameOverride String to fully override gitea.fullname template +## +fullnameOverride: "" +## @param namespaceOverride String to fully override common.names.namespace +## +namespaceOverride: "" +## @param commonAnnotations Common annotations to add to all Gitea resources (sub-charts are not considered). Evaluated as a template +## +commonAnnotations: {} +## @param commonLabels Common labels to add to all Gitea resources (sub-charts are not considered). Evaluated as a template +## +commonLabels: {} + +## @param extraDeploy Array of extra objects to deploy with the release (evaluated as a template). +## +extraDeploy: [] + +## @section Gitea parameters +## + +## Bitnami Gitea image version +## ref: https://hub.docker.com/r/bitnami/gitea/tags/ +## @param image.registry Gitea image registry +## @param image.repository Gitea Image name +## @param image.tag Gitea Image tag +## @param image.digest Gitea image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag +## @param image.pullPolicy Gitea image pull policy +## @param image.pullSecrets Specify docker-registry secret names as an array +## @param image.debug Specify if debug logs should be enabled +## +image: + registry: docker.io + repository: bitnami/gitea +# tag: 1.19.3-debian-11-r1 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Set to true if you would like to see extra information on logs + ## + debug: false +## @param replicaCount Number of Gitea Pods to run (requires ReadWriteMany PVC support) +## +replicaCount: 1 +## @param adminUsername User of the application +## ref: https://github.com/bitnami/containers/tree/main/bitnami/gitea#configuration +## +adminUsername: admin +## @param adminPassword Application password +## Defaults to a random 10-character alphanumeric string if not set +## ref: https://github.com/bitnami/containers/tree/main/bitnami/gitea#configuration +## +adminPassword: "Gitea01@" +## @param adminEmail Admin email +## ref: https://github.com/bitnami/containers/tree/main/bitnami/gitea#configuration +## +adminEmail: admin@allarddcs.nl +## @param appName Gitea application name +## ref: https://github.com/bitnami/containers/tree/main/bitnami/gitea#configuration +## +appName: gitea +## @param runMode Gitea application host +## ref: https://github.com/bitnami/containers/tree/main/bitnami/gitea#configuration +## +runMode: prod +## @param exposeSSH Make the SSH server accesible +## +exposeSSH: true +## @param rootURL UI Root URL (for link generation) +## +rootURL: "" +## @param command Override default container command (useful when using custom images) +## +command: [] +## @param args Override default container args (useful when using custom images) +## +args: [] +## @param updateStrategy.type Update strategy - only really applicable for deployments with RWO PVs attached +## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the +## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will +## terminate the single previous pod, so that the new, incoming pod can attach to the PV +## +updateStrategy: + type: RollingUpdate +## @param priorityClassName Gitea pods' priorityClassName +## +priorityClassName: "" +## @param schedulerName Name of the k8s scheduler (other than default) +## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ +## +schedulerName: "" +## @param topologySpreadConstraints Topology Spread Constraints for pod assignment +## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ +## The value is evaluated as a template +## +topologySpreadConstraints: [] +## @param hostAliases [array] Add deployment host aliases +## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ +## +hostAliases: [] +## @param extraEnvVars Extra environment variables +## For example: +## +extraEnvVars: [] +# - name: BEARER_AUTH +# value: true +## @param extraEnvVarsCM ConfigMap containing extra env vars +## +extraEnvVarsCM: "" +## @param extraEnvVarsSecret Secret containing extra env vars (in case of sensitive data) +## +extraEnvVarsSecret: "" +## @param extraVolumes Array of extra volumes to be added to the deployment (evaluated as template). Requires setting `extraVolumeMounts` +## +extraVolumes: [] +## @param extraVolumeMounts Array of extra volume mounts to be added to the container (evaluated as template). Normally used with `extraVolumes`. +## +extraVolumeMounts: [] +## @param initContainers Add additional init containers to the pod (evaluated as a template) +## +initContainers: [] +## @param sidecars Attach additional containers to the pod (evaluated as a template) +## +sidecars: [] +## @param tolerations Tolerations for pod assignment +## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ +## +tolerations: [] +## @param existingSecret Name of a secret with the application password +## +existingSecret: "" +## @param existingSecretKey Key inside the existing secret containing the password +## +existingSecretKey: "admin-password" +## SMTP mail delivery configuration +## ref: https://github.com/bitnami/containers/tree/main/bitnami/gitea/#smtp-configuration +## @param smtpHost SMTP host +## @param smtpPort SMTP port +## @param smtpUser SMTP user +## @param smtpPassword SMTP password +## +smtpHost: "" +smtpPort: "" +smtpUser: "" +smtpPassword: "" +## @param smtpExistingSecret The name of an existing secret with SMTP credentials +## NOTE: Must contain key `smtp-password` +## NOTE: When it's set, the `smtpPassword` parameter is ignored +## +smtpExistingSecret: "" +## @param containerPorts [object] Container ports +## +containerPorts: + http: 3000 + ssh: 2222 +## Enable persistence using Persistent Volume Claims +## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/ +## +persistence: + ## @param persistence.enabled Enable persistence using PVC + ## + enabled: true + ## @param persistence.storageClass PVC Storage Class for Gitea volume + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + storageClass: "" + ## @param persistence.accessModes PVC Access Mode for Gitea volume + ## Requires persistence.enabled: true + ## If defined, PVC must be created manually before volume will be bound + ## + accessModes: + - ReadWriteOnce + ## @param persistence.size PVC Storage Request for Gitea volume + ## + size: 2Gi + ## @param persistence.dataSource Custom PVC data source + ## + dataSource: {} + ## @param persistence.existingClaim A manually managed Persistent Volume Claim + ## Requires persistence.enabled: true + ## If defined, PVC must be created manually before volume will be bound + ## + existingClaim: "gitea-pvc" + ## @param persistence.hostPath If defined, the gitea-data volume will mount to the specified hostPath. + ## Requires persistence.enabled: true + ## Requires persistence.existingClaim: nil|false + ## Default: nil. + ## + hostPath: "" + ## @param persistence.annotations Persistent Volume Claim annotations + ## + annotations: {} + ## @param persistence.selector Selector to match an existing Persistent Volume for Gitea data PVC + ## If set, the PVC can't have a PV dynamically provisioned for it + ## E.g. + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + +## @param podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` +## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity +## +podAffinityPreset: "" +## @param podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` +## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity +## +podAntiAffinityPreset: soft +## Node affinity preset +## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity +## @param nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` +## @param nodeAffinityPreset.key Node label key to match Ignored if `affinity` is set. +## @param nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set. +## +nodeAffinityPreset: + type: "" + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] +## @param affinity Affinity for pod assignment +## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity +## Note: podAffinityPreset, podAntiAffinityPreset, and nodeAffinityPreset will be ignored when it's set +## +affinity: {} +## @param nodeSelector Node labels for pod assignment. Evaluated as a template. +## ref: https://kubernetes.io/docs/user-guide/node-selection/ +## +nodeSelector: {} +## Gitea container's resource requests and limits +## ref: http://kubernetes.io/docs/user-guide/compute-resources/ +## @param resources.requests [object] The requested resources for the init container +## @param resources.limits The resources limits for the init container +## +resources: + limits: {} + requests: {} +## Configure Pods Security Context +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod +## @param podSecurityContext.enabled Enable Gitea pods' Security Context +## @param podSecurityContext.fsGroup Gitea pods' group ID +## +podSecurityContext: + enabled: true + fsGroup: 1001 +## Configure Container Security Context (only main container) +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container +## @param containerSecurityContext.enabled Enable Gitea containers' Security Context +## @param containerSecurityContext.runAsUser Gitea containers' Security Context +## @param containerSecurityContext.runAsNonRoot Set Controller container's Security Context runAsNonRoot +## +containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true +## Configure extra options for startup probe +## Gitea core exposes / to unauthenticated requests, making it a good +## default startup and readiness path. However, that may not always be the +## case. For example, if the image value is overridden to an image containing a +## module that alters that route, or an image that does not auto-install Gitea. +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes +## @param startupProbe.enabled Enable startupProbe +## @param startupProbe.path Request path for startupProbe +## @param startupProbe.initialDelaySeconds Initial delay seconds for startupProbe +## @param startupProbe.periodSeconds Period seconds for startupProbe +## @param startupProbe.timeoutSeconds Timeout seconds for startupProbe +## @param startupProbe.failureThreshold Failure threshold for startupProbe +## @param startupProbe.successThreshold Success threshold for startupProbe +## +startupProbe: + enabled: false + path: / + initialDelaySeconds: 600 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 5 + successThreshold: 1 +## Configure extra options for liveness probe +## Gitea core exposes / to unauthenticated requests, making it a good +## default liveness and readiness path. However, that may not always be the +## case. For example, if the image value is overridden to an image containing a +## module that alters that route, or an image that does not auto-install Gitea. +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes +## @param livenessProbe.enabled Enable livenessProbe +## @param livenessProbe.path Request path for livenessProbe +## @param livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe +## @param livenessProbe.periodSeconds Period seconds for livenessProbe +## @param livenessProbe.timeoutSeconds Timeout seconds for livenessProbe +## @param livenessProbe.failureThreshold Failure threshold for livenessProbe +## @param livenessProbe.successThreshold Success threshold for livenessProbe +## +livenessProbe: + enabled: true + path: / + initialDelaySeconds: 600 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 5 + successThreshold: 1 +## Configure extra options for readiness probe +## Gitea core exposes / to unauthenticated requests, making it a good +## default liveness and readiness path. However, that may not always be the +## case. For example, if the image value is overridden to an image containing a +## module that alters that route, or an image that does not auto-install Gitea. +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes +## @param readinessProbe.enabled Enable readinessProbe +## @param readinessProbe.path Request path for readinessProbe +## @param readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe +## @param readinessProbe.periodSeconds Period seconds for readinessProbe +## @param readinessProbe.timeoutSeconds Timeout seconds for readinessProbe +## @param readinessProbe.failureThreshold Failure threshold for readinessProbe +## @param readinessProbe.successThreshold Success threshold for readinessProbe +## +readinessProbe: + enabled: true + path: / + initialDelaySeconds: 30 + periodSeconds: 5 + timeoutSeconds: 1 + failureThreshold: 5 + successThreshold: 1 +## @param customStartupProbe Override default startup probe +## +customStartupProbe: {} +## @param customLivenessProbe Override default liveness probe +## +customLivenessProbe: {} +## @param customReadinessProbe Override default readiness probe +## +customReadinessProbe: {} +## @param lifecycleHooks LifecycleHook to set additional configuration at startup Evaluated as a template +## +lifecycleHooks: {} +## @param podAnnotations Pod annotations +## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ +## +podAnnotations: {} +## @param podLabels Add additional labels to the pod (evaluated as a template) +## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ +## +podLabels: {} + +## @section Traffic Exposure Parameters +## + +## Kubernetes configuration. For minikube, set this to NodePort, elsewhere use LoadBalancer +## +service: + ## @param service.type Kubernetes Service type + ## + type: ClusterIP +# type: ClusterIP + ## @param service.ports.http Service HTTP port + ## @param service.ports.ssh Service SSH port + ## + ports: + http: 3000 + ssh: 22 + ## @param service.loadBalancerSourceRanges Restricts access for LoadBalancer (only with `service.type: LoadBalancer`) + ## e.g: + ## loadBalancerSourceRanges: + ## - 0.0.0.0/0 + ## + loadBalancerSourceRanges: [] + ## @param service.loadBalancerIP loadBalancerIP for the Gitea Service (optional, cloud specific) + ## ref: https://kubernetes.io/docs/user-guide/services/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param service.nodePorts [object] Kubernetes node port + ## nodePorts: + ## http: + ## https: + ## + nodePorts: + http: "" + ssh: "" + ## @param service.externalTrafficPolicy Enable client source IP preservation + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param service.clusterIP Gitea service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param service.annotations Additional custom annotations for Gitea service + ## + annotations: {} + ## @param service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} +## Configure the ingress resource that allows you to access the +## Gitea installation. Set up the URL +## ref: https://kubernetes.io/docs/user-guide/ingress/ +## +ingress: + ## @param ingress.enabled Enable ingress controller resource + ## + enabled: true + + ## @param ingress.pathType Ingress Path type + ## + pathType: ImplementationSpecific + ## @param ingress.apiVersion Override API Version (automatically detected if not set) + ## + apiVersion: "" + ## @param ingress.ingressClassName IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+) + ## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster . + ## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/ + ## + ingressClassName: "traefik" + ## @param ingress.hostname Default host for the ingress resource + ## + hostname: "gitea-dev.allarddcs.nl" + ## @param ingress.path The Path to Gitea. You may need to set this to '/*' in order to use this + ## with ALB ingress controllers. + ## + path: / + ## @param ingress.annotations Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations. + ## For a full list of possible ingress annotations, please see + ## ref: https://github.com/kubernetes/ingress-nginx/blob/master/docs/user-guide/nginx-configuration/annotations.md + ## Use this parameter to set the required annotations for cert-manager, see + ## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations + ## + ## e.g: + ## annotations: + ## kubernetes.io/ingress.class: nginx + ## cert-manager.io/cluster-issuer: cluster-issuer-name + ## + annotations: + ingress.kubernetes.io/ssl-redirect: 'true' + ingress.kubernetes.io/proxy-body-size: '0' + nginx.ingress.kubernetes.io/ssl-redirect: 'true' + nginx.ingress.kubernetes.io/proxy-body-size: '0' + cert-manager.io/cluster-issuer: 'letsencrypt' + + ## @param ingress.tls Enable TLS configuration for the hostname defined at ingress.hostname parameter + ## TLS certificates will be retrieved from a TLS secret with name: {{- printf "%s-tls" .Values.ingress.hostname }} + ## You can use the ingress.secrets parameter to create this TLS secret or relay on cert-manager to create it + ## + tls: true + ## @param ingress.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm + ## + selfSigned: false + ## @param ingress.extraHosts The list of additional hostnames to be covered with this ingress record. + ## Most likely the hostname above will be enough, but in the event more hosts are needed, this is an array + ## extraHosts: + ## - name: gitea.local + ## path: / + ## + extraHosts: [] + ## @param ingress.extraPaths Any additional arbitrary paths that may need to be added to the ingress under the main host. + ## For example: The ALB ingress controller requires a special rule for handling SSL redirection. + ## extraPaths: + ## - path: /* + ## backend: + ## serviceName: ssl-redirect + ## servicePort: use-annotation + ## + extraPaths: [] + ## @param ingress.extraTls The tls configuration for additional hostnames to be covered with this ingress record. + ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls + ## extraTls: + ## - hosts: + ## - gitea.local + ## secretName: gitea.local-tls + ## + extraTls: [] + ## @param ingress.secrets If you're providing your own certificates, please use this to add the certificates as secrets + ## key and certificate should start with -----BEGIN CERTIFICATE----- or + ## -----BEGIN RSA PRIVATE KEY----- + ## + ## name should line up with a tlsSecret set further up + ## If you're using cert-manager, this is unneeded, as it will create the secret for you if it is not set + ## + ## It is also possible to create and manage the certificates outside of this helm chart + ## Please see README.md for more information + ## Example: + ## - name: gitea.local-tls + ## key: + ## certificate: + ## + secrets: [] + ## @param ingress.extraRules Additional rules to be covered with this ingress record + ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-rules + ## e.g: + ## extraRules: + ## - host: example.local + ## http: + ## path: / + ## backend: + ## service: + ## name: example-svc + ## port: + ## name: http + ## + extraRules: [] + +## @section Other Parameters +## + +## Service account for Gitea to use. +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ +## +serviceAccount: + ## @param serviceAccount.create Enable creation of ServiceAccount for Gitea pod + ## + create: true + ## @param serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param serviceAccount.automountServiceAccountToken Allows auto mount of ServiceAccountToken on the serviceAccount created + ## Can be set to false if pods using this serviceAccount do not need to use K8s API + ## + automountServiceAccountToken: true + ## @param serviceAccount.annotations Additional custom annotations for the ServiceAccount + ## + annotations: {} + +## @section Database parameters +## + +## PostgreSQL chart configuration +## ref: https://github.com/bitnami/charts/blob/main/bitnami/postgresql/values.yaml +## @param postgresql.enabled Switch to enable or disable the PostgreSQL helm chart +## @param postgresql.auth.username Name for a custom user to create +## @param postgresql.auth.password Password for the custom user to create +## @param postgresql.auth.database Name for a custom database to create +## @param postgresql.auth.existingSecret Name of existing secret to use for PostgreSQL credentials +## @param postgresql.architecture PostgreSQL architecture (`standalone` or `replication`) +## @param postgresql.service.ports.postgresql PostgreSQL service port +## +postgresql: + enabled: false + auth: + username: bn_gitea + password: "" + database: bitnami_gitea + existingSecret: "" + architecture: standalone + service: + ports: + postgresql: 5432 + +## External PostgreSQL configuration +## All of these values are only used when postgresql.enabled is set to false +## @param externalDatabase.host Database host +## @param externalDatabase.port Database port number +## @param externalDatabase.user Non-root username for JupyterHub +## @param externalDatabase.password Password for the non-root username for JupyterHub +## @param externalDatabase.database JupyterHub database name +## @param externalDatabase.existingSecret Name of an existing secret resource containing the database credentials +## @param externalDatabase.existingSecretPasswordKey Name of an existing secret key containing the database credentials +## +externalDatabase: + host: "postgres14.postgres.svc.cluster.local" + port: 5432 + user: gitea + database: gitea + password: "gitea" +# existingSecret: "" +# existingSecretPasswordKey: "POSTGRES_PASSWORD" + +## @section Volume Permissions parameters +## + +## Init containers parameters: +## volumePermissions: Change the owner and group of the persistent volume mountpoint to runAsUser:fsGroup values from the securityContext section. +## +volumePermissions: + ## @param volumePermissions.enabled Enable init container that changes volume permissions in the data directory (for cases where the default k8s `runAsUser` and `fsUser` values do not work) + ## + enabled: false + ## @param volumePermissions.image.registry Init container volume-permissions image registry + ## @param volumePermissions.image.repository Init container volume-permissions image name + ## @param volumePermissions.image.tag Init container volume-permissions image tag + ## @param volumePermissions.image.digest Init container volume-permissions image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param volumePermissions.image.pullPolicy Init container volume-permissions image pull policy + ## @param volumePermissions.image.pullSecrets Specify docker-registry secret names as an array + ## + image: + registry: docker.io + repository: bitnami/os-shell +# tag: 11-debian-11-r113 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Init containers' resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## We usually recommend not to specify default resources and to leave this as a conscious + ## choice for the user. This also increases chances charts run on environments with little + ## resources, such as Minikube. If you do want to specify resources, uncomment the following + ## lines, adjust them as necessary, and remove the curly braces after 'resources:'. + ## @param volumePermissions.resources.limits The resources limits for the container + ## @param volumePermissions.resources.requests The requested resources for the container + ## + resources: + ## Example: + ## limits: + ## cpu: 100m + ## memory: 128Mi + ## + limits: {} + ## Examples: + ## requests: + ## cpu: 100m + ## memory: 128Mi + ## + requests: {} diff --git a/kubernetes/dev/gitea/handmatig/gitea.yaml b/kubernetes/dev/gitea/handmatig/gitea.yaml new file mode 100644 index 0000000..af894ab --- /dev/null +++ b/kubernetes/dev/gitea/handmatig/gitea.yaml @@ -0,0 +1,119 @@ +apiVersion: v1 +kind: Service +metadata: + name: gitea + namespace: "gitea" + labels: + app.kubernetes.io/instance: gitea + app.kubernetes.io/name: gitea +spec: + type: ClusterIP + sessionAffinity: None + ports: + - name: http + port: 3000 + targetPort: http + nodePort: null + - name: ssh + port: 2222 + targetPort: ssh + nodePort: null + selector: + app.kubernetes.io/instance: gitea + app.kubernetes.io/name: gitea +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: gitea + namespace: "gitea" +spec: + selector: + matchLabels: + app.kubernetes.io/name: gitea + replicas: 1 + template: + metadata: + labels: + app.kubernetes.io/instance: gitea + app.kubernetes.io/name: gitea + spec: + containers: + - name: gitea + image: gitea/gitea + env: + - name: GITEA__database__DB_TYPE + value: postgres + - name: GITEA__database__HOST + value: postgres14.postgres:5432 + - name: GITEA__database__NAME + value: gitea + - name: GITEA__database__USER + value: gitea + - name: GITEA__database__PASSWD + value: gitea + ports: + - name: http + containerPort: 3000 + - name: ssh + containerPort: 2222 + volumeMounts: + - name: gitea-data + mountPath: /data + volumes: + - name: gitea-data + persistentVolumeClaim: + claimName: gitea-pvc +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: gitea-tls + namespace: gitea +spec: + entryPoints: + - websecure + routes: + - match: Host(`gitea-dev.allarddcs.nl`) + kind: Rule + services: + - name: gitea + port: 3000 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: gitea-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/gitea + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: gitea-pvc + namespace: gitea +spec: + storageClassName: "" + volumeName: gitea-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi + + diff --git a/kubernetes/dev/gitea/tekton-triggers/README.md b/kubernetes/dev/gitea/tekton-triggers/README.md new file mode 100644 index 0000000..66613e3 --- /dev/null +++ b/kubernetes/dev/gitea/tekton-triggers/README.md @@ -0,0 +1,15 @@ +#eventlistener voor gitea installeren: + + serviceaccount tekton-robot aanmaken: + +kubectl apply -f rbac.yaml + +kubectl apply -f gitea-binding.yaml + +kubectl apply -f gitea-listener.yaml + +kubectl apply -f gitea-pipeline-template.yaml + + webhook aanmaken in gitea: + +http://el-gitea-listener.default:8080 diff --git a/kubernetes/dev/gitea/tekton-triggers/gitea-binding.yaml b/kubernetes/dev/gitea/tekton-triggers/gitea-binding.yaml new file mode 100755 index 0000000..a099997 --- /dev/null +++ b/kubernetes/dev/gitea/tekton-triggers/gitea-binding.yaml @@ -0,0 +1,13 @@ +apiVersion: triggers.tekton.dev/v1beta1 +kind: TriggerBinding +metadata: + name: gitea-binding +spec: + params: + - name: repo-url + value: $(body.repository.clone_url) + - name: git-revision +# value: $(body.repository.description) + value: $(extensions.image-tag) + - name: image-reference + value: harbor-dev.allarddcs.nl/$(body.repository.full_name):$(extensions.image-tag) diff --git a/kubernetes/dev/gitea/tekton-triggers/gitea-listener.yaml b/kubernetes/dev/gitea/tekton-triggers/gitea-listener.yaml new file mode 100755 index 0000000..f827a61 --- /dev/null +++ b/kubernetes/dev/gitea/tekton-triggers/gitea-listener.yaml @@ -0,0 +1,34 @@ +apiVersion: triggers.tekton.dev/v1beta1 +kind: EventListener +metadata: + name: gitea-listener +spec: + namespaceSelector: {} + resources: {} + serviceAccountName: tekton-robot + triggers: + - bindings: + - kind: TriggerBinding + ref: gitea-binding + interceptors: + - params: + - name: overlays + value: +# - key: image-tag +# expression: '''harbor-dev.alldcs.nl''' + - key: image-name + expression: '[''harbor-dev.allarddcs.nl'',body.repository.full_name].join(''/'')' + - key: registry + expression: body.repository.description.split('/')[0] + - key: repository + expression: body.repository.description.split('/')[1] + - key: version + expression: body.repository.description.split('/')[2] + - key: image-tag + expression: body.ref.split('/')[2] + ref: + kind: ClusterInterceptor + name: cel + name: gitea-trigger + template: + ref: gitea-pipeline-template diff --git a/kubernetes/dev/gitea/tekton-triggers/gitea-pipeline-template.yaml b/kubernetes/dev/gitea/tekton-triggers/gitea-pipeline-template.yaml new file mode 100755 index 0000000..82eaf53 --- /dev/null +++ b/kubernetes/dev/gitea/tekton-triggers/gitea-pipeline-template.yaml @@ -0,0 +1,79 @@ +apiVersion: triggers.tekton.dev/v1beta1 +kind: TriggerTemplate +metadata: + name: gitea-pipeline-template +spec: + params: + - name: git-revision + description: The git revision (SHA) + default: master + - description: The git repository url + name: repo-url + - name: sonar-project-key + default: olproperties + description: sonar project key + - name: source-to-scan + description: location of th source that sonarqube should scan + default: ./src + - name: image-reference + description: imagename + - name: deptrack-apiKey + description: key to upload sbom to dependency-track + default: odt_UPC8l0R9vzQILZIphSoK15J4u4Ns3HEy + - name: deptrack-projectName + description: projectname in dependency-track + default: olproperties + - name: deptrack-projectVersion + description: projectversion in dependency-track + default: "1.1" + resourcetemplates: + - apiVersion: tekton.dev/v1beta1 + kind: PipelineRun + metadata: + generateName: openliberty-pipeline-run- + spec: + params: + - name: repo-url + value: $(tt.params.repo-url) + - name: image-reference + value: $(tt.params.image-reference) + - name: git-revision + value: $(tt.params.git-revision) + - name: sonar-project-key + value: $(tt.params.sonar-project-key) + - name: source-to-scan + value: $(tt.params.source-to-scan) + - name: deptrack-apiKey + value: $(tt.params.deptrack-apiKey) + - name: deptrack-projectName + value: $(tt.params.deptrack-projectName) + - name: deptrack-projectVersion + value: $(tt.params.deptrack-projectVersion) + pipelineRef: + name: openliberty-pipeline + workspaces: + - name: shared-data + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + - name: maven-settings + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + - configmap: + name: sonar-properties + name: sonar-settings + - name: registry-credentials + secret: + items: + - key: .dockerconfigjson + path: config.json + secretName: registry-credentials diff --git a/kubernetes/dev/gitea/tekton-triggers/gitea-trigger.yaml b/kubernetes/dev/gitea/tekton-triggers/gitea-trigger.yaml new file mode 100644 index 0000000..360e415 --- /dev/null +++ b/kubernetes/dev/gitea/tekton-triggers/gitea-trigger.yaml @@ -0,0 +1,202 @@ +apiVersion: triggers.tekton.dev/v1beta1 +kind: EventListener +metadata: + name: gitea-listener +spec: + namespaceSelector: {} + resources: {} + serviceAccountName: tekton-robot + triggers: + - bindings: + - kind: TriggerBinding + ref: gitea-binding + interceptors: + - params: + - name: overlays + value: + - key: version + expression: body.ref.split('/')[2] + ref: + kind: ClusterInterceptor + name: cel + name: gitea-trigger + template: + ref: gitea-pipeline-template +--- +apiVersion: triggers.tekton.dev/v1beta1 +kind: TriggerBinding +metadata: + name: gitea-binding +spec: + params: + - name: repo-url + value: $(body.repository.clone_url) + - name: git-revision + value: $(extensions.version) + - name: image-reference + value: harbor-dev.allarddcs.nl/$(body.repository.full_name):$(extensions.version) +# value: harbor-dev.allarddcs.nl/$(body.repository.full_name) +--- +apiVersion: triggers.tekton.dev/v1beta1 +kind: TriggerTemplate +metadata: + name: gitea-pipeline-template +spec: + params: + - name: git-revision + description: The git revision + #geen default waarde, komt uit trigger-binding. + - name: repo-url + description: The git repository url + #geen default waarde, komt uit trigger-binding. + - name: maven-mirror-url + description: url van de nexus-server die als proxy dient voor java-libraries + default: 'http://nexus.nexus.svc.cluster.local:8081/repository/maven-public/' + - name: sonar-host-url + description: url van de sonarqube-server + default: "https://sonarqube-dev.allarddcs.nl" + - name: sonar-organization + description: Organisatienaam in sonar waar vulnerabilities onder vallen + default: "allarddcs" + - name: sonar-token + description: authenticatiemiddel voor sonar (komt uit sonar) + default: sqp_214ee7c92e1b82b0d43dd9b1d9462eac8f50434c + - name: sonar-project-key + default: olproperties + description: sonar project key + - name: source-to-scan + description: location of the source that sonarqube should scan + default: ./src + #- name: image-reference + #description: imagename + #geen default waarde, komt uit trigger-binding. + - name: image + description: image + - name: registry + default: harbor-dev.allarddcs.nl + - name: project + default: allard + - name: image-name + default: olproperties + - name: cosign-image-url + default: + - name: tlsverify + description: wel of geen tls gebruiken bij push + default: "true" + - name: deptrack-url + description: url of deptrack api-server + default: https://deptracka-dev.allarddcs.nl + - name: deptrack-apiKey + description: key to upload sbom to dependency-track + default: odt_BRpq4el8T0XqdeunYMnefniaS0n8Yxd8 + - name: deptrack-projectName + description: projectname in dependency-track + default: olproperties + - name: deptrack-projectVersion + description: projectversion in dependency-track + default: "1.1" + resourcetemplates: + - apiVersion: tekton.dev/v1beta1 + kind: PipelineRun + metadata: + generateName: openliberty-pipeline-run- + spec: + params: + - name: repo-url + value: $(tt.params.repo-url) + - name: git-revision + value: $(tt.params.git-revision) + - name: maven-mirror-url + value: $(tt.params.maven-mirror-url) + - name: sonar-host-url + value: $(tt.params.sonar-host-url) + - name: sonar-organization + value: $(tt.params.sonar-organization) + - name: sonar-token + value: $(tt.params.sonar-token) + - name: sonar-project-key + value: $(tt.params.sonar-project-key) + - name: source-to-scan + value: $(tt.params.source-to-scan) +# - name: image-reference +# value: $(tt.params.image-reference) +# - name: image +# value: $(tt.params.registry)/$(tt.params.project)/$(tt.params.image-name):$(tt.params.git-revision) + - name: registry + value: $(tt.params.registry) + - name: project + value: $(tt.params.project) + - name: image-name + value: $(tt.params.image-name) + - name: cosign-image-url + value: $(tt.params.cosign-image-url) + - name: deptrack-url + value: $(tt.params.deptrack-url) + - name: tlsverify + value: $(tt.params.tlsverify) + - name: deptrack-apiKey + value: $(tt.params.deptrack-apiKey) + - name: deptrack-projectName + value: $(tt.params.deptrack-projectName) + - name: deptrack-projectVersion + value: $(tt.params.deptrack-projectVersion) + pipelineRef: + name: openliberty-pipeline + workspaces: + - name: shared-data + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + - name: maven-settings + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + - configmap: + name: sonar-properties + name: sonar-settings + - name: registry-credentials + secret: + items: + - key: .dockerconfigjson + path: config.json + secretName: registry-credentials +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: tekton-robot +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: triggers-example-eventlistener-binding +subjects: +- kind: ServiceAccount + name: tekton-robot +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-triggers-eventlistener-roles +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: triggers-example-eventlistener-clusterbinding +subjects: +- kind: ServiceAccount + name: tekton-robot + namespace: default +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-triggers-eventlistener-clusterroles +--- + diff --git a/kubernetes/dev/gitea/tekton-triggers/rbac.yaml b/kubernetes/dev/gitea/tekton-triggers/rbac.yaml new file mode 100644 index 0000000..7d861b4 --- /dev/null +++ b/kubernetes/dev/gitea/tekton-triggers/rbac.yaml @@ -0,0 +1,29 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: tekton-robot +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: triggers-example-eventlistener-binding +subjects: +- kind: ServiceAccount + name: tekton-robot +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-triggers-eventlistener-roles +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: triggers-example-eventlistener-clusterbinding +subjects: +- kind: ServiceAccount + name: tekton-robot + namespace: default +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-triggers-eventlistener-clusterroles diff --git a/kubernetes/dev/grafana/dev/ingressroute-tls.yaml b/kubernetes/dev/grafana/dev/ingressroute-tls.yaml new file mode 100755 index 0000000..e10be85 --- /dev/null +++ b/kubernetes/dev/grafana/dev/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: grafana-tls + namespace: observability +spec: + entryPoints: + - websecure + routes: + - match: Host(`grafana-dev.allarddcs.nl`) + kind: Rule + services: + - name: kube-prom-stack-grafana + port: 80 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/grafana/microk8s/README.md b/kubernetes/dev/grafana/microk8s/README.md new file mode 100755 index 0000000..1303d41 --- /dev/null +++ b/kubernetes/dev/grafana/microk8s/README.md @@ -0,0 +1,3 @@ +1) enable microk8s built-in observability +2) apply ingressroute-tls (in namespace observability) +3) log in with password: prom-operator diff --git a/kubernetes/dev/grafana/microk8s/odroid/README.md b/kubernetes/dev/grafana/microk8s/odroid/README.md new file mode 100644 index 0000000..d9ce851 --- /dev/null +++ b/kubernetes/dev/grafana/microk8s/odroid/README.md @@ -0,0 +1,6 @@ +#Installatie grafana Dashboard: + +log in op gui van grafana: admin prom-operator +Maak nieuw dashboard aan. + +Importeer dashboard met id : 20417 diff --git a/kubernetes/dev/grafana/microk8s/odroid/ingressroute.yaml b/kubernetes/dev/grafana/microk8s/odroid/ingressroute.yaml new file mode 100755 index 0000000..203e790 --- /dev/null +++ b/kubernetes/dev/grafana/microk8s/odroid/ingressroute.yaml @@ -0,0 +1,21 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: grafana-odroid-alldcs + namespace: monitoring +spec: + entryPoints: + - websecure + routes: + - match: Host(`grafana-odroid.alldcs.nl`) + kind: Rule + services: + - name: prometheus-community-grafana + port: 80 + tls: + certResolver: letsencrypt + + + + + diff --git a/kubernetes/dev/grafana/microk8s/prod/ingressroute-tls.yaml b/kubernetes/dev/grafana/microk8s/prod/ingressroute-tls.yaml new file mode 100755 index 0000000..0086ff0 --- /dev/null +++ b/kubernetes/dev/grafana/microk8s/prod/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: grafana-tls-alldcs + namespace: observability +spec: + entryPoints: + - websecure + routes: + - match: Host(`grafana-prod.alldcs.nl`) + kind: Rule + services: + - name: kube-prom-stack-grafana + port: 80 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/grafana/prod/README.md b/kubernetes/dev/grafana/prod/README.md new file mode 100644 index 0000000..1530ee1 --- /dev/null +++ b/kubernetes/dev/grafana/prod/README.md @@ -0,0 +1,3 @@ +user: admin +password: prom-operator + diff --git a/kubernetes/dev/grafana/prod/ingressroute-tls.yaml b/kubernetes/dev/grafana/prod/ingressroute-tls.yaml new file mode 100755 index 0000000..20a0087 --- /dev/null +++ b/kubernetes/dev/grafana/prod/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: grafana-tls + namespace: observability +spec: + entryPoints: + - websecure + routes: + - match: Host(`grafana-prod.allarddcs.nl`) + kind: Rule + services: + - name: kube-prom-stack-grafana + port: 80 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/grafana/riscv/README.md b/kubernetes/dev/grafana/riscv/README.md new file mode 100755 index 0000000..f853a10 --- /dev/null +++ b/kubernetes/dev/grafana/riscv/README.md @@ -0,0 +1,19 @@ +#ruw materiaal voor mocht het beschikbaar komen op riscv + +INSTALLATIE: + +kubectl apply -f grafana-pv.yaml + +kubectl apply -f grafana-pvc.yaml + +kubectl create -f grafana-datasource-config.yaml + +kubectl create -f deployment.yaml + +kubectl create -f service.yaml + + + +# kubernetes-grafana + +Read about the grafana implementation on Kubernetes here https://devopscube.com/setup-grafana-kubernetes/ diff --git a/kubernetes/dev/grafana/riscv/grafana-datasource-config.yaml b/kubernetes/dev/grafana/riscv/grafana-datasource-config.yaml new file mode 100755 index 0000000..3a5695b --- /dev/null +++ b/kubernetes/dev/grafana/riscv/grafana-datasource-config.yaml @@ -0,0 +1,21 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: grafana-datasources + namespace: observability +data: + prometheus.yaml: |- + { + "apiVersion": 1, + "datasources": [ + { + "access":"proxy", + "editable": true, + "name": "prometheus", + "orgId": 1, + "type": "prometheus", + "url": "http://prometheus-service.monitoring.svc:8080", + "version": 1 + } + ] + } diff --git a/kubernetes/dev/grafana/riscv/grafana-pv.yaml b/kubernetes/dev/grafana/riscv/grafana-pv.yaml new file mode 100755 index 0000000..2ac430b --- /dev/null +++ b/kubernetes/dev/grafana/riscv/grafana-pv.yaml @@ -0,0 +1,20 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: grafana-pv + namespace: monitoring +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/grafana + readOnly: false + diff --git a/kubernetes/dev/grafana/riscv/grafana-pvc.yaml b/kubernetes/dev/grafana/riscv/grafana-pvc.yaml new file mode 100755 index 0000000..4a3249a --- /dev/null +++ b/kubernetes/dev/grafana/riscv/grafana-pvc.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: grafana-pvc + namespace: monitoring +spec: + storageClassName: "" + volumeName: grafana-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + + + + diff --git a/kubernetes/dev/grafana/riscv/grafana.yaml b/kubernetes/dev/grafana/riscv/grafana.yaml new file mode 100755 index 0000000..b84f90a --- /dev/null +++ b/kubernetes/dev/grafana/riscv/grafana.yaml @@ -0,0 +1,78 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: grafana + namespace: monitoring +spec: + replicas: 1 + selector: + matchLabels: + app: grafana + template: + metadata: + name: grafana + labels: + app: grafana + spec: + containers: + - name: grafana + image: grafana/grafana:latest + ports: + - name: grafana + containerPort: 3000 + resources: + limits: + memory: "1Gi" + cpu: "1000m" + requests: + memory: 500M + cpu: "500m" + volumeMounts: + - mountPath: /var/lib/grafana + name: grafana-storage + subPath: grafana/storage + - mountPath: /etc/grafana/provisioning/datasources + name: grafana-datasources + readOnly: false + volumes: + - name: grafana-storage + persistentVolumeClaim: + claimName: grafana-pvc + - name: grafana-datasources + configMap: + defaultMode: 420 + name: grafana-datasources +--- +apiVersion: v1 +kind: Service +metadata: + name: grafana + namespace: monitoring + annotations: + prometheus.io/scrape: 'true' + prometheus.io/port: '3000' +spec: + selector: + app: grafana + type: NodePort + ports: + - port: 3000 + targetPort: 3000 + nodePort: 32000 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: grafana-tls + namespace: monitoring +spec: + entryPoints: + - websecure + routes: + - match: Host(`grafana.alldcs.nl`) + kind: Rule + services: + - name: grafana + port: 3000 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/grafana/riscv/werkt_nog_niet b/kubernetes/dev/grafana/riscv/werkt_nog_niet new file mode 100644 index 0000000..e69de29 diff --git a/kubernetes/dev/harbor/README.md b/kubernetes/dev/harbor/README.md new file mode 100644 index 0000000..b4b3345 --- /dev/null +++ b/kubernetes/dev/harbor/README.md @@ -0,0 +1,73 @@ +#als je niet kunt inloggen omdat redis gecrashed is: +op de LP ga naar redis directory en dan: + +sudo redis-check-aof --fix appendonly.aof.1.incr.aof + +#Opmerkingen: + +De goharbor-versie is alleen beschikbaar voor AMD-processorarchitectuur. +Je moet dus de bitnami-versie gebruiken. + +#installatie: + +kubectl create ns harbor +helm install harbor bitnami/harbor -n harbor -f values.yaml + +De bitnami helm chart maakt zelf een certificaat aan via cert-manager en letsencrypt. +De bitnami helm chart maakt zelf een ingress aan en een certificaat aan. +Je hoeft dus geen certificaat of ingressroutes te definieren. + +#trivy + +In eerste instantie is de status "unhealthy" + +#Tekton + +In de tekton-pipeline wordt het secret "registry-credentials" gemount om de repositories te kunnen +gebruiken. + +#Met Docker naar HARBOR VIA HTTP +================================ +nano /etc/docker/daemon.json: + +{ + "insecure-registries" : ["localhost:32000","harbor.allarddcs.nl"] +} + +systemctl restart docker + + + + + + + + + + +=========================================================== +1. Enable Microk8s to access Harbor-instance: + +Create certs directory: + +sudo mkdir -p /var/snap/microk8s/current/args/certs.d/harbor.alldcs.nl + +copy the certificate from Harbor: + +sudo cp ca.crt /var/snap/microk8s/current/args/certs.d/harbor.alldcs.nl + +2. Edit /var/snap/microk8s/current/args/containerd-template.toml + + [plugins."io.containerd.grpc.v1.cri".registry.configs."harbor.alldcs.nl".tls] + insecure_skip_verify = true + + +Password opvragen: +================== + +echo "Password: $(kubectl -n default get secret harbor-core-envvars -n harbor +-o jsonpath="{.data.HARBOR_ADMIN_PASSWORD}" | base64 -d)" + + + + diff --git a/kubernetes/dev/harbor/create-registry-credentials.sh b/kubernetes/dev/harbor/create-registry-credentials.sh new file mode 100755 index 0000000..89fd9bd --- /dev/null +++ b/kubernetes/dev/harbor/create-registry-credentials.sh @@ -0,0 +1,4 @@ +cd ~/ +microk8s kubectl delete secret registry-credentials +microk8s kubectl create secret generic registry-credentials --from-file=.dockerconfigjson=/home/ubuntu/.docker/config.json --type=kubernetes.io/dockerconfigjson + diff --git a/kubernetes/dev/harbor/harbor-pv.yaml b/kubernetes/dev/harbor/harbor-pv.yaml new file mode 100755 index 0000000..b09f75b --- /dev/null +++ b/kubernetes/dev/harbor/harbor-pv.yaml @@ -0,0 +1,95 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: harbor-registry-pv +spec: + storageClassName: "" + capacity: + storage: 15Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/harbor/registry + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: harbor-jobsvc-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/harbor/jobsvc + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: harbor-jobsvc-scandata-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/harbor/scandata + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: harbor-trivy-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/harbor/trivy + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: harbor-redis-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/harbor/redis + readOnly: false + diff --git a/kubernetes/dev/harbor/harbor-pvc.yaml b/kubernetes/dev/harbor/harbor-pvc.yaml new file mode 100755 index 0000000..0e51cce --- /dev/null +++ b/kubernetes/dev/harbor/harbor-pvc.yaml @@ -0,0 +1,74 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: harbor-registry-pvc + namespace: harbor +spec: + storageClassName: "" + volumeName: harbor-registry-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 15Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: harbor-jobsvc-pvc + namespace: harbor +spec: + storageClassName: "" + volumeName: harbor-jobsvc-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: harbor-jobsvc-scandata-pvc + namespace: harbor +spec: + storageClassName: "" + volumeName: harbor-jobsvc-scandata-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: data-harbor-trivy-0 + namespace: harbor +spec: + storageClassName: "" + volumeName: harbor-trivy-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: redis-data-harbor-redis-master-0 + namespace: harbor +spec: + storageClassName: "" + volumeName: harbor-redis-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi diff --git a/kubernetes/dev/harbor/values.yaml b/kubernetes/dev/harbor/values.yaml new file mode 100644 index 0000000..92f71af --- /dev/null +++ b/kubernetes/dev/harbor/values.yaml @@ -0,0 +1,3655 @@ +## @section Global parameters +## Global Docker image parameters +## Please, note that this will override the image parameters, including dependencies, configured to use the global value +## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass +## + +## @param global.imageRegistry Global Docker image registry +## @param global.imagePullSecrets Global Docker registry secret names as an array +## @param global.storageClass Global StorageClass for Persistent Volume(s) +## +global: + imageRegistry: "" + ## E.g. + ## imagePullSecrets: + ## - myRegistryKeySecretName + ## + imagePullSecrets: [] + storageClass: "" + +## @section Common Parameters +## + +## @param nameOverride String to partially override common.names.fullname template (will maintain the release name) +## +nameOverride: "" +## @param fullnameOverride String to fully override common.names.fullname template with a string +## +fullnameOverride: "" +## @param kubeVersion Force target Kubernetes version (using Helm capabilities if not set) +## +kubeVersion: "" +## @param clusterDomain Kubernetes Cluster Domain +## +clusterDomain: cluster.local +## @param commonAnnotations Annotations to add to all deployed objects +## +commonAnnotations: {} +## @param commonLabels Labels to add to all deployed objects +## +commonLabels: {} +## @param extraDeploy Array of extra objects to deploy with the release (evaluated as a template). +## +extraDeploy: [] +## Enable diagnostic mode in the deployment(s)/statefulset(s) +## +diagnosticMode: + ## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden) + ## + enabled: false + ## @param diagnosticMode.command Command to override all containers in the the deployment(s)/statefulset(s) + ## + command: + - sleep + ## @param diagnosticMode.args Args to override all containers in the the deployment(s)/statefulset(s) + ## + args: + - infinity + +## @section Harbor common parameters +## + +## @param adminPassword The initial password of Harbor admin. Change it from portal after launching Harbor +## +adminPassword: "Harbor01@" +## @param externalURL The external URL for Harbor Core service +## It is used to +## 1) populate the docker/helm commands showed on portal +## 2) populate the token service URL returned to docker/notary client +## +## Format: protocol://domain[:port]. Usually: +## 1) if "exposureType" is "ingress", the "domain" should be +## the value of "ingress.hostname" +## 2) if "exposureType" is "proxy" and "service.type" is "ClusterIP", +## the "domain" should be the value of "service.clusterIP" +## 3) if "exposureType" is "proxy" and "service.type" is "NodePort", +## the "domain" should be the IP address of k8s node +## 4) if "exposureType" is "proxy" and "service.type" is "LoadBalancer", +## the "domain" should be the LoadBalancer IP +## +externalURL: https://harbor-dev.allarddcs.nl +## Note: If Harbor is exposed via Ingress, the NGINX server will not be used +## @param proxy.httpProxy The URL of the HTTP proxy server +## @param proxy.httpsProxy The URL of the HTTPS proxy server +## @param proxy.noProxy The URLs that the proxy settings not apply to +## @param proxy.components The component list that the proxy settings apply to +## +proxy: + httpProxy: "" + httpsProxy: "" + noProxy: 127.0.0.1,localhost,.local,.internal + components: + - core + - jobservice + - trivy +## @param logLevel The log level used for Harbor services. Allowed values are [ fatal \| error \| warn \| info \| debug \| trace ] +## +logLevel: debug +## TLS settings +## Note: TLS cert files need to provided in each components in advance. +## +internalTLS: + ## @param internalTLS.enabled Use TLS in all the supported containers: chartmuseum, core, jobservice, portal, registry and trivy + ## + enabled: false + ## @param internalTLS.caBundleSecret Name of an existing secret with a custom CA that will be injected into the trust store for chartmuseum, core, jobservice, registry, trivy components + ## The secret must contain the key "ca.crt" + ## + caBundleSecret: "" +## IP family parameters +## +ipFamily: + ## @param ipFamily.ipv6.enabled Enable listening on IPv6 ([::]) for NGINX-based components (NGINX,portal) + ## Note: enabling IPv6 will cause NGINX to crash on start on systems with IPv6 disabled (`ipv6.disable` kernel flag) + ## + ipv6: + enabled: false + ## @param ipFamily.ipv4.enabled Enable listening on IPv4 for NGINX-based components (NGINX,portal) + ## + ipv4: + enabled: true + +## @section Traffic Exposure Parameters +## + +## @param exposureType The way to expose Harbor. Allowed values are [ ingress \| proxy ] +## Use "proxy" to use a deploy NGINX proxy in front of Harbor services +## Use "ingress" to use an Ingress Controller as proxy +## +exposureType: ingress +#exposureType: proxy + +## Service parameters +## +service: + ## @param service.type NGINX proxy service type + ## + type: ClusterIP + ## @param service.ports.http NGINX proxy service HTTP port + ## @param service.ports.https NGINX proxy service HTTPS port + ## @param service.ports.notary Notary service port + ## + ports: + http: 80 + https: 443 + ## Node ports to expose + ## @param service.nodePorts.http Node port for HTTP + ## @param service.nodePorts.https Node port for HTTPS + ## @param service.nodePorts.notary Node port for Notary + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + http: "" + https: "" + notary: "" + ## @param service.sessionAffinity Control where client requests go, to the same pod or round-robin + ## Values: ClientIP or None + ## ref: https://kubernetes.io/docs/user-guide/services/ + ## + sessionAffinity: None + ## @param service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## @param service.clusterIP NGINX proxy service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param service.loadBalancerIP NGINX proxy service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param service.loadBalancerSourceRanges NGINX proxy service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param service.externalTrafficPolicy NGINX proxy service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param service.annotations Additional custom annotations for NGINX proxy service + ## + annotations: {} + ## @param service.extraPorts Extra port to expose on NGINX proxy service + ## + extraPorts: [] + +ingress: + ## Configure the ingress resource that allows you to access Harbor Core + ## ref: https://kubernetes.io/docs/user-guide/ingress/ + ## + core: + ## @param ingress.core.ingressClassName IngressClass that will be be used to implement the Ingress (Kubernetes 1.18+) + ## This is supported in Kubernetes 1.18+ and required if you have more than one IngressClass marked as the default for your cluster . + ## ref: https://kubernetes.io/blog/2020/04/02/improvements-to-the-ingress-api-in-kubernetes-1.18/ + ## + ingressClassName: "traefik" + ## @param ingress.core.pathType Ingress path type + ## + pathType: ImplementationSpecific + ## @param ingress.core.apiVersion Force Ingress API version (automatically detected if not set) + ## + apiVersion: "" + ## @param ingress.core.controller The ingress controller type. Currently supports `default`, `gce` and `ncp` + ## leave as `default` for most ingress controllers. + ## set to `gce` if using the GCE ingress controller + ## set to `ncp` if using the NCP (NSX-T Container Plugin) ingress controller + ## + controller: default + ## @param ingress.core.hostname Default host for the ingress record + ## + hostname: harbor-dev.allarddcs.nl + ## @param ingress.core.annotations [object] Additional annotations for the Ingress resource. + ## To enable certificate autogeneration, place here your cert-manager annotations. + ## Use this parameter to set the required annotations for cert-manager, see + ## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations + ## e.g: + ## annotations: + ## kubernetes.io/ingress.class: nginx + ## cert-manager.io/cluster-issuer: letsencrypt + ## + annotations: + ingress.kubernetes.io/ssl-redirect: 'true' + ingress.kubernetes.io/proxy-body-size: '0' + nginx.ingress.kubernetes.io/ssl-redirect: 'true' + nginx.ingress.kubernetes.io/proxy-body-size: '0' + cert-manager.io/cluster-issuer: 'letsencrypt' + ## @param ingress.core.tls Enable TLS configuration for the host defined at `ingress.core.hostname` parameter + ## TLS certificates will be retrieved from a TLS secret with name: `{{- printf "%s-tls" .Values.ingress.core.hostname }}` + ## You can: + + ## - Use the `ingress.core.secrets` parameter to create this TLS secret + ## - Rely on cert-manager to create it by setting the corresponding annotations + ## - Rely on Helm to create self-signed certificates by setting `ingress.core.selfSigned=true` + ## + tls: true + ## @param ingress.core.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm + ## + selfSigned: false + ## @param ingress.core.extraHosts An array with additional hostname(s) to be covered with the ingress record + ## e.g: + ## extraHosts: + ## - name: core.harbor.domain + ## path: / + ## + extraHosts: [] + ## @param ingress.core.extraPaths An array with additional arbitrary paths that may need to be added to the ingress under the main host + ## e.g: + ## extraPaths: + ## - path: /* + ## backend: + ## serviceName: ssl-redirect + ## servicePort: use-annotation + ## + extraPaths: [] + ## @param ingress.core.extraTls TLS configuration for additional hostname(s) to be covered with this ingress record + ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls + ## e.g: + ## extraTls: + ## - hosts: + ## - core.harbor.domain + ## secretName: core.harbor.domain-tls + ## + extraTls: [] + ## @param ingress.core.secrets Custom TLS certificates as secrets + ## NOTE: 'key' and 'certificate' are expected in PEM format + ## NOTE: 'name' should line up with a 'secretName' set further up + ## If it is not set and you're using cert-manager, this is unneeded, as it will create a secret for you with valid certificates + ## If it is not set and you're NOT using cert-manager either, self-signed certificates will be created valid for 365 days + ## It is also possible to create and manage the certificates outside of this helm chart + ## Please see README.md for more information + ## e.g: + ## secrets: + ## - name: core.harbor.domain-tls + ## key: |- + ## -----BEGIN RSA PRIVATE KEY----- + ## ... + ## -----END RSA PRIVATE KEY----- + ## certificate: |- + ## -----BEGIN CERTIFICATE----- + ## ... + ## -----END CERTIFICATE----- + ## + secrets: [] + ## @param ingress.core.extraRules Additional rules to be covered with this ingress record + ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-rules + ## e.g: + ## extraRules: + ## - host: example.local + ## http: + ## path: / + ## backend: + ## service: + ## name: example-svc + ## port: + ## name: http + ## + extraRules: [] + ## Configure the ingress resource that allows you to access Notary + ## ref: https://kubernetes.io/docs/user-guide/ingress/ + ## +## @section Persistence Parameters +## + +## The persistence is enabled by default and a default StorageClass +## is needed in the k8s cluster to provision volumes dynamically. +## Specify another StorageClass in the "storageClass" or set "existingClaim" +## if you have already existing persistent volumes to use +## +## For storing images and charts, you can also use "azure", "gcs", "s3", +## "swift" or "oss". Set it in the "imageChartStorage" section +## +persistence: + ## @param persistence.enabled Enable the data persistence or not + ## + enabled: true + ## Resource Policy + ## @param persistence.resourcePolicy Setting it to `keep` to avoid removing PVCs during a helm delete operation. Leaving it empty will delete PVCs after the chart deleted + ## + resourcePolicy: '' + persistentVolumeClaim: + ## @param persistence.persistentVolumeClaim.registry.existingClaim Name of an existing PVC to use + ## @param persistence.persistentVolumeClaim.registry.storageClass PVC Storage Class for Harbor Registry data volume + ## Note: The default StorageClass will be used if not defined. Set it to `-` to disable dynamic provisioning + ## @param persistence.persistentVolumeClaim.registry.subPath The sub path used in the volume + ## @param persistence.persistentVolumeClaim.registry.accessModes The access mode of the volume + ## @param persistence.persistentVolumeClaim.registry.size The size of the volume + ## @param persistence.persistentVolumeClaim.registry.annotations Annotations for the PVC + ## @param persistence.persistentVolumeClaim.registry.selector Selector to match an existing Persistent Volume + ## + registry: + existingClaim: "harbor-registry-pvc" + storageClass: "" + subPath: "" + accessModes: + - ReadWriteOnce + size: 5Gi + annotations: {} + selector: {} + ## @param persistence.persistentVolumeClaim.jobservice.existingClaim Name of an existing PVC to use + ## @param persistence.persistentVolumeClaim.jobservice.storageClass PVC Storage Class for Harbor Jobservice data volume + ## Note: The default StorageClass will be used if not defined. Set it to `-` to disable dynamic provisioning + ## @param persistence.persistentVolumeClaim.jobservice.subPath The sub path used in the volume + ## @param persistence.persistentVolumeClaim.jobservice.accessModes The access mode of the volume + ## @param persistence.persistentVolumeClaim.jobservice.size The size of the volume + ## @param persistence.persistentVolumeClaim.jobservice.annotations Annotations for the PVC + ## @param persistence.persistentVolumeClaim.jobservice.selector Selector to match an existing Persistent Volume + ## + jobservice: + existingClaim: "harbor-jobsvc-pvc" + storageClass: "" + subPath: "" + accessModes: + - ReadWriteOnce + size: 1Gi + annotations: {} + selector: {} + ## @param persistence.persistentVolumeClaim.jobservice.scanData.existingClaim Name of an existing PVC to use + ## @param persistence.persistentVolumeClaim.jobservice.scanData.storageClass PVC Storage Class for Harbor Jobservice scan data volume + ## Note: The default StorageClass will be used if not defined. Set it to `-` to disable dynamic provisioning + ## @param persistence.persistentVolumeClaim.jobservice.scanData.subPath The sub path used in the volume + ## @param persistence.persistentVolumeClaim.jobservice.scanData.accessModes The access mode of the volume + ## @param persistence.persistentVolumeClaim.jobservice.scanData.size The size of the volume + ## @param persistence.persistentVolumeClaim.jobservice.scanData.annotations Annotations for the PVC + ## @param persistence.persistentVolumeClaim.jobservice.scanData.selector Selector to match an existing Persistent Volume + ## + scanData: + existingClaim: "harbor-jobsvc-scandata-pvc" + storageClass: "" + subPath: "" + accessModes: + - ReadWriteOnce + size: 1Gi + annotations: {} + selector: {} + ## @param persistence.persistentVolumeClaim.chartmuseum.existingClaim Name of an existing PVC to use + ## @param persistence.persistentVolumeClaim.chartmuseum.storageClass PVC Storage Class for Chartmuseum data volume + ## Note: The default StorageClass will be used if not defined. Set it to `-` to disable dynamic provisioning + ## @param persistence.persistentVolumeClaim.chartmuseum.subPath The sub path used in the volume + ## @param persistence.persistentVolumeClaim.chartmuseum.accessModes The access mode of the volume + ## @param persistence.persistentVolumeClaim.chartmuseum.size The size of the volume + ## @param persistence.persistentVolumeClaim.chartmuseum.annotations Annotations for the PVC + ## @param persistence.persistentVolumeClaim.chartmuseum.selector Selector to match an existing Persistent Volume + ## + chartmuseum: + existingClaim: "" + storageClass: "" + subPath: "chartmuseum" + accessModes: + - ReadWriteOnce + size: 5Gi + annotations: {} + selector: {} + ## @param persistence.persistentVolumeClaim.trivy.storageClass PVC Storage Class for Trivy data volume + ## Note: The default StorageClass will be used if not defined. Set it to `-` to disable dynamic provisioning + ## @param persistence.persistentVolumeClaim.trivy.accessModes The access mode of the volume + ## @param persistence.persistentVolumeClaim.trivy.size The size of the volume + ## @param persistence.persistentVolumeClaim.trivy.annotations Annotations for the PVC + ## @param persistence.persistentVolumeClaim.trivy.selector Selector to match an existing Persistent Volume + ## + trivy: + storageClass: "" + accessModes: + - ReadWriteOnce + size: 1Gi + annotations: {} + selector: {} + ## Define which storage backend is used for registry and chartmuseum to store + ## images and charts. + ## ref: https://github.com/docker/distribution/blob/master/docs/configuration.md#storage + ## + imageChartStorage: + ## @param persistence.imageChartStorage.caBundleSecret Specify the `caBundleSecret` if the storage service uses a self-signed certificate. The secret must contain keys named `ca.crt` which will be injected into the trust store of registry's and chartmuseum's containers. + ## + caBundleSecret: "" + ## @param persistence.imageChartStorage.disableredirect The configuration for managing redirects from content backends. For backends which do not supported it (such as using MinIO® for `s3` storage type), please set it to `true` to disable redirects. Refer to the [guide](https://github.com/docker/distribution/blob/master/docs/configuration.md#redirect) for more information about the detail + ## + disableredirect: false + ## @param persistence.imageChartStorage.type The type of storage for images and charts: `filesystem`, `azure`, `gcs`, `s3`, `swift` or `oss`. The type must be `filesystem` if you want to use persistent volumes for registry and chartmuseum. Refer to the [guide](https://github.com/docker/distribution/blob/master/docs/configuration.md#storage) for more information about the detail + ## + type: filesystem + ## Images/charts storage parameters when type is "filesystem" + ## @param persistence.imageChartStorage.filesystem.rootdirectory Filesystem storage type setting: Storage root directory + ## @param persistence.imageChartStorage.filesystem.maxthreads Filesystem storage type setting: Maximum threads directory + ## + filesystem: + rootdirectory: /storage + maxthreads: "" + +## @section Tracing parameters +## + +## Tracing parameters: +## tracing: Configure tracing for Harbor, only one of tracing.jeager.enabled and tracing.otel.enabled should be set +## +tracing: + ## @param tracing.enabled Enable tracing + ## + enabled: false + ## @param tracing.sampleRate Tracing sample rate from 0 to 1 + ## + sampleRate: 1 + ## @param tracing.namespace Used to differentiate traces between different harbor services + ## + namespace: "" + ## @param tracing.attributes A key value dict containing user defined attributes used to initialize the trace provider + ## e.g: + ## attributes: + ## application: harbor + ## + attributes: {} + +## @section Volume Permissions parameters +## + +## Init containers parameters: +## volumePermissions: Change the owner and group of the persistent volume(s) mountpoint(s) to 'runAsUser:fsGroup' on each node +## +volumePermissions: + ## @param volumePermissions.enabled Enable init container that changes the owner and group of the persistent volume + ## + enabled: false + ## @param volumePermissions.image.registry Init container volume-permissions image registry + ## @param volumePermissions.image.repository Init container volume-permissions image repository + ## @param volumePermissions.image.tag Init container volume-permissions image tag (immutable tags are recommended) + ## @param volumePermissions.image.digest Init container volume-permissions image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param volumePermissions.image.pullPolicy Init container volume-permissions image pull policy + ## @param volumePermissions.image.pullSecrets Init container volume-permissions image pull secrets + ## + image: + registry: docker.io + repository: bitnamilegacy/os-shell + tag: 12-debian-12-r39 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## Example: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Init container resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param volumePermissions.resources.limits Init container volume-permissions resource limits + ## @param volumePermissions.resources.requests Init container volume-permissions resource requests + ## + resources: + limits: {} + requests: {} + ## Init container' Security Context + ## Note: the chown of the data folder is done to containerSecurityContext.runAsUser + ## and not the below volumePermissions.containerSecurityContext.runAsUser + ## @param volumePermissions.containerSecurityContext.enabled Enable init container Security Context + ## @param volumePermissions.containerSecurityContext.runAsUser User ID for the init container + ## + containerSecurityContext: + enabled: true + runAsUser: 0 + +## @section NGINX Parameters +## + +nginx: + ## Bitnami NGINX image + ## ref: https://hub.docker.com/r/bitnami/nginx/tags/ + ## @param nginx.image.registry NGINX image registry + ## @param nginx.image.repository NGINX image repository + ## @param nginx.image.tag NGINX image tag (immutable tags are recommended) + ## @param nginx.image.digest NGINX image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param nginx.image.pullPolicy NGINX image pull policy + ## @param nginx.image.pullSecrets NGINX image pull secrets + ## @param nginx.image.debug Enable NGINX image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/nginx + tag: 1.27.4-debian-12-r4 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## TLS parameters + ## + tls: + ## @param nginx.tls.enabled Enable TLS termination + ## + enabled: false + ## @param nginx.tls.existingSecret Existing secret name containing your own TLS certificates. + ## The secret must contain the keys: + ## `tls.crt` - the certificate (required), + ## `tls.key` - the private key (required), + ## `ca.crt` - CA certificate (optional) + ## Self-signed TLS certificates will be used otherwise. + ## + existingSecret: "" + ## @param nginx.tls.commonName The common name used to generate the self-signed TLS certificates + ## + commonName: harbor-dev.allarddcs.nl + ## @param nginx.behindReverseProxy If NGINX is behind another reverse proxy, set to true + ## if the reverse proxy already provides the 'X-Forwarded-Proto' header field. + ## This is, for example, the case for the OpenShift HAProxy router. + ## + behindReverseProxy: true + ## @param nginx.command Override default container command (useful when using custom images) + ## + command: [] + ## @param nginx.args Override default container args (useful when using custom images) + ## + args: [] + ## @param nginx.extraEnvVars Array with extra environment variables to add NGINX pods + ## + extraEnvVars: [] + ## @param nginx.extraEnvVarsCM ConfigMap containing extra environment variables for NGINX pods + ## + extraEnvVarsCM: "" + ## @param nginx.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for NGINX pods + ## + extraEnvVarsSecret: "" + ## @param nginx.containerPorts.http NGINX HTTP container port + ## @param nginx.containerPorts.https NGINX HTTPS container port + ## @param nginx.containerPorts.notary NGINX container port where Notary svc is exposed + ## + containerPorts: + http: 8080 + https: 8443 + notary: 4443 + ## @param nginx.replicaCount Number of NGINX replicas + ## + replicaCount: 1 + ## Configure extra options for NGINX containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param nginx.livenessProbe.enabled Enable livenessProbe on NGINX containers + ## @param nginx.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param nginx.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param nginx.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param nginx.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param nginx.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param nginx.readinessProbe.enabled Enable readinessProbe on NGINX containers + ## @param nginx.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param nginx.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param nginx.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param nginx.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param nginx.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param nginx.startupProbe.enabled Enable startupProbe on NGINX containers + ## @param nginx.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param nginx.startupProbe.periodSeconds Period seconds for startupProbe + ## @param nginx.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param nginx.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param nginx.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param nginx.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param nginx.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param nginx.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## NGINX resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param nginx.resources.limits The resources limits for the NGINX containers + ## @param nginx.resources.requests The requested resources for the NGINX containers + ## + resources: + limits: {} + requests: {} + ## Configure NGINX pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param nginx.podSecurityContext.enabled Enabled NGINX pods' Security Context + ## @param nginx.podSecurityContext.fsGroup Set NGINX pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure NGINX containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param nginx.containerSecurityContext.enabled Enabled NGINX containers' Security Context + ## @param nginx.containerSecurityContext.runAsUser Set NGINX containers' Security Context runAsUser + ## @param nginx.containerSecurityContext.runAsNonRoot Set NGINX containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param nginx.updateStrategy.type NGINX deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param nginx.lifecycleHooks LifecycleHook for the NGINX container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param nginx.hostAliases NGINX pods host aliases + ## + hostAliases: [] + ## @param nginx.podLabels Add additional labels to the NGINX pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param nginx.podAnnotations Annotations to add to the NGINX pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param nginx.podAffinityPreset NGINX Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param nginx.podAntiAffinityPreset NGINX Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## Allowed values: soft, hard + ## + nodeAffinityPreset: + ## @param nginx.nodeAffinityPreset.type NGINX Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param nginx.nodeAffinityPreset.key NGINX Node label key to match Ignored if `affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param nginx.nodeAffinityPreset.values NGINX Node label values to match. Ignored if `affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param nginx.affinity NGINX Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: podAffinityPreset, podAntiAffinityPreset, and nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param nginx.nodeSelector NGINX Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param nginx.tolerations NGINX Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param nginx.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param nginx.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param nginx.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param nginx.sidecars Add additional sidecar containers to the NGINX pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param nginx.initContainers Add additional init containers to the NGINX pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param nginx.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the NGINX pods + ## + extraVolumeMounts: [] + ## @param nginx.extraVolumes Optionally specify extra list of additional volumes for the NGINX pods + ## + extraVolumes: [] + +## @section Harbor Portal Parameters +## + +portal: + ## Bitnami Harbor Portal image + ## ref: https://hub.docker.com/r/bitnami/harbor-portal/tags/ + ## @param portal.image.registry Harbor Portal image registry + ## @param portal.image.repository Harbor Portal image repository + ## @param portal.image.tag Harbor Portal image tag (immutable tags are recommended) + ## @param portal.image.digest Harbor Portal image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param portal.image.pullPolicy Harbor Portal image pull policy + ## @param portal.image.pullSecrets Harbor Portal image pull secrets + ## @param portal.image.debug Enable Harbor Portal image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-portal + tag: 2.12.2-debian-12-r4 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## Use TLS in the container + ## + tls: + ## @param portal.tls.existingSecret Name of an existing secret with the certificates for internal TLS access + ## Requires `internalTLS.enabled` to be set to `true`` + ## Self-signed TLS certificates will be used otherwise + ## + existingSecret: "" + ## @param portal.command Override default container command (useful when using custom images) + ## + command: [] + ## @param portal.args Override default container args (useful when using custom images) + ## + args: [] + ## @param portal.extraEnvVars Array with extra environment variables to add Harbor Portal pods + ## + extraEnvVars: [] + ## @param portal.extraEnvVarsCM ConfigMap containing extra environment variables for Harbor Portal pods + ## + extraEnvVarsCM: "" + ## @param portal.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Harbor Portal pods + ## + extraEnvVarsSecret: "" + ## @param portal.containerPorts.http Harbor Portal HTTP container port + ## @param portal.containerPorts.https Harbor Portal HTTPS container port + ## + containerPorts: + http: 8080 + https: 8443 + ## @param portal.replicaCount Number of Harbor Portal replicas + ## + replicaCount: 1 + ## Configure extra options for Harbor Portal containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param portal.livenessProbe.enabled Enable livenessProbe on Harbor Portal containers + ## @param portal.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param portal.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param portal.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param portal.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param portal.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param portal.readinessProbe.enabled Enable readinessProbe on Harbor Portal containers + ## @param portal.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param portal.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param portal.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param portal.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param portal.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param portal.startupProbe.enabled Enable startupProbe on Harbor Portal containers + ## @param portal.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param portal.startupProbe.periodSeconds Period seconds for startupProbe + ## @param portal.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param portal.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param portal.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param portal.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param portal.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param portal.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Portal resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param portal.resources.limits The resources limits for the Harbor Portal containers + ## @param portal.resources.requests The requested resources for the Harbor Portal containers + ## + resources: + limits: {} + requests: {} + ## Configure Harbor Portal pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param portal.podSecurityContext.enabled Enabled Harbor Portal pods' Security Context + ## @param portal.podSecurityContext.fsGroup Set Harbor Portal pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Harbor Portal containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param portal.containerSecurityContext.enabled Enabled Harbor Portal containers' Security Context + ## @param portal.containerSecurityContext.runAsUser Set Harbor Portal containers' Security Context runAsUser + ## @param portal.containerSecurityContext.runAsNonRoot Set Harbor Portal containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param portal.updateStrategy.type Harbor Portal deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param portal.lifecycleHooks LifecycleHook for the Harbor Portal container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param portal.hostAliases Harbor Portal pods host aliases + ## + hostAliases: [] + ## @param portal.podLabels Add additional labels to the Harbor Portal pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param portal.podAnnotations Annotations to add to the Harbor Portal pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param portal.podAffinityPreset Harbor Portal Pod affinity preset. Ignored if `portal.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param portal.podAntiAffinityPreset Harbor Portal Pod anti-affinity preset. Ignored if `portal.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param portal.nodeAffinityPreset.type Harbor Portal Node affinity preset type. Ignored if `portal.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param portal.nodeAffinityPreset.key Harbor Portal Node label key to match Ignored if `portal.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param portal.nodeAffinityPreset.values Harbor Portal Node label values to match. Ignored if `portal.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param portal.affinity Harbor Portal Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: portal.podAffinityPreset, portal.podAntiAffinityPreset, and portal.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param portal.nodeSelector Harbor Portal Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param portal.tolerations Harbor Portal Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param portal.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param portal.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param portal.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param portal.sidecars Add additional sidecar containers to the Harbor Portal pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param portal.initContainers Add additional init containers to the Harbor Portal pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param portal.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Harbor Portal pods + ## + extraVolumeMounts: [] + ## @param portal.extraVolumes Optionally specify extra list of additional volumes for the Harbor Portal pods + ## + extraVolumes: [] + ## @param portal.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Harbor Portal service configuration + ## + service: + ## @param portal.service.ports.http Harbor Portal HTTP service port + ## @param portal.service.ports.https Harbor Portal HTTPS service port + ## + ports: + http: 80 + https: 443 + +## @section Harbor Core Parameters +## + +core: + ## Bitnami Harbor Core image + ## ref: https://hub.docker.com/r/bitnami/harbor-core/tags/ + ## @param core.image.registry Harbor Core image registry + ## @param core.image.repository Harbor Core image repository + ## @param core.image.tag Harbor Core image tag (immutable tags are recommended) + ## @param core.image.digest Harbor Core image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param core.image.pullPolicy Harbor Core image pull policy + ## @param core.image.pullSecrets Harbor Core image pull secrets + ## @param core.image.debug Enable Harbor Core image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-core + tag: 2.12.2-debian-12-r7 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + + ## @param core.sessionLifetime Explicitly set a session timeout (in seconds) overriding the backend default. + ## + sessionLifetime: "" + ## @param core.uaaSecret If using external UAA auth which has a self signed cert, you can provide a pre-created secret containing it under the key `ca.crt`. + ## + uaaSecret: "" + ## @param core.secretKey The key used for encryption. Must be a string of 16 chars + ## e.g: + ## secretKey: "not-a-secure-string" + ## + secretKey: "" + ## @param core.secret Secret used when the core server communicates with other components. If a secret key is not specified, Helm will generate one. Must be a string of 16 chars. + ## + secret: "" + ## @param core.tokenKey Key of the certificate used for token encryption/decryption. + ## + tokenKey: "" + ## @param core.tokenCert Certificate used for token encryption/decryption. + ## + tokenCert: "" + ## @param core.secretName Fill the name of a kubernetes secret if you want to use your own TLS certificate and private key for token encryption/decryption. The secret must contain two keys named: `tls.crt` - the certificate and `tls.key` - the private key. The default key pair will be used if it isn't set + ## + secretName: "" + ## @param core.existingSecret Existing secret for core + ## The secret must contain the keys: + ## `secret` (required), + ## `secretKey` (required), + ## + existingSecret: "" + ## @param core.existingEnvVarsSecret Existing secret for core envvars + ## The secret must contain the keys: + ## `CSRF_KEY` (required), + ## `HARBOR_ADMIN_PASSWORD` (required), + ## `POSTGRESQL_PASSWORD` (required), + ## `REGISTRY_CREDENTIAL_USERNAME` (required), + ## `REGISTRY_CREDENTIAL_PASSWORD` (required), + ## `_REDIS_URL_CORE` (optional), + ## `_REDIS_URL_REG` (optional), + ## + ## If you do not know how to start, let the chart generate a full secret for you before defining an existingEnvVarsSecret + ## Notes: + ## As a EnvVars secret, this secret also store redis config urls + ## The HARBOR_ADMIN_PASSWORD is only required at initial deployment, once the password is set in database, it is not used anymore + ## + existingEnvVarsSecret: "" + ## @param core.csrfKey The CSRF key. Will be generated automatically if it isn't specified + ## + csrfKey: "" + ## Use TLS in the container + ## + tls: + ## @param core.tls.existingSecret Name of an existing secret with the certificates for internal TLS access + ## Requires `internalTLS.enabled` to be set to `true`` + ## Self-signed TLS certificates will be used otherwise + ## + existingSecret: "" + ## @param core.command Override default container command (useful when using custom images) + ## + command: [] + ## @param core.args Override default container args (useful when using custom images) + ## + args: [] + ## @param core.extraEnvVars Array with extra environment variables to add Harbor Core pods + ## + extraEnvVars: [] + ## @param core.extraEnvVarsCM ConfigMap containing extra environment variables for Harbor Core pods + ## + extraEnvVarsCM: "" + ## @param core.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Harbor Core pods + ## + extraEnvVarsSecret: "" + ## @param core.configOverwriteJson String containing a JSON with configuration overrides + ## Source: https://goharbor.io/docs/latest/install-config/configure-user-settings-cli/#harbor-user-settings + ## + configOverwriteJson: "" + ## @param core.configOverwriteJsonSecret Secret containing the JSON configuration overrides + ## Source: https://goharbor.io/docs/latest/install-config/configure-user-settings-cli/#harbor-user-settings + ## + configOverwriteJsonSecret: "" + ## @param core.containerPorts.http Harbor Core HTTP container port + ## @param core.containerPorts.https Harbor Core HTTPS container port + ## @param core.containerPorts.metrics Harbor Core metrics container port + ## + containerPorts: + http: 8080 + https: 8443 + metrics: 8001 + ## @param core.replicaCount Number of Harbor Core replicas + ## + replicaCount: 1 + ## Configure extra options for Harbor Core containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param core.livenessProbe.enabled Enable livenessProbe on Harbor Core containers + ## @param core.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param core.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param core.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param core.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param core.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param core.readinessProbe.enabled Enable readinessProbe on Harbor Core containers + ## @param core.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param core.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param core.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param core.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param core.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param core.startupProbe.enabled Enable startupProbe on Harbor Core containers + ## @param core.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param core.startupProbe.periodSeconds Period seconds for startupProbe + ## @param core.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param core.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param core.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param core.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param core.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param core.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Core resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param core.resources.limits The resources limits for the Harbor Core containers + ## @param core.resources.requests The requested resources for the Harbor Core containers + ## + resources: + limits: {} + requests: {} + ## Configure Harbor Core pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param core.podSecurityContext.enabled Enabled Harbor Core pods' Security Context + ## @param core.podSecurityContext.fsGroup Set Harbor Core pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Harbor Core containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param core.containerSecurityContext.enabled Enabled Harbor Core containers' Security Context + ## @param core.containerSecurityContext.runAsUser Set Harbor Core containers' Security Context runAsUser + ## @param core.containerSecurityContext.runAsNonRoot Set Harbor Core containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param core.updateStrategy.type Harbor Core deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param core.lifecycleHooks LifecycleHook for the Harbor Core container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param core.hostAliases Harbor Core pods host aliases + ## + hostAliases: [] + ## @param core.podLabels Add additional labels to the Harbor Core pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param core.podAnnotations Annotations to add to the Harbor Core pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param core.podAffinityPreset Harbor Core Pod affinity preset. Ignored if `core.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param core.podAntiAffinityPreset Harbor Core Pod anti-affinity preset. Ignored if `core.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param core.nodeAffinityPreset.type Harbor Core Node affinity preset type. Ignored if `core.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param core.nodeAffinityPreset.key Harbor Core Node label key to match Ignored if `core.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param core.nodeAffinityPreset.values Harbor Core Node label values to match. Ignored if `core.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param core.affinity Harbor Core Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: core.podAffinityPreset, core.podAntiAffinityPreset, and core.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param core.nodeSelector Harbor Core Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param core.tolerations Harbor Core Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param core.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param core.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param core.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param core.sidecars Add additional sidecar containers to the Harbor Core pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param core.initContainers Add additional init containers to the Harbor Core pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param core.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Harbor Core pods + ## + extraVolumeMounts: [] + ## @param core.extraVolumes Optionally specify extra list of additional volumes for the Harbor Core pods + ## + extraVolumes: [] + ## @param core.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Harbor Core service configuration + ## + service: + ## @param core.service.ports.http Harbor Core HTTP service port + ## @param core.service.ports.https Harbor Core HTTPS service port + ## @param core.service.ports.metrics Harbor Core metrics service port + ## + ports: + http: 80 + https: 443 + metrics: 8001 + +## @section Harbor Jobservice Parameters +## + +jobservice: + ## Bitnami Harbor Jobservice image + ## ref: https://hub.docker.com/r/bitnami/harbor-jobservice/tags/ + ## @param jobservice.image.registry Harbor Jobservice image registry + ## @param jobservice.image.repository Harbor Jobservice image repository + ## @param jobservice.image.tag Harbor Jobservice image tag (immutable tags are recommended) + ## @param jobservice.image.digest Harbor Jobservice image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param jobservice.image.pullPolicy Harbor Jobservice image pull policy + ## @param jobservice.image.pullSecrets Harbor Jobservice image pull secrets + ## @param jobservice.image.debug Enable Harbor Jobservice image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-jobservice + tag: 2.12.2-debian-12-r7 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param jobservice.maxJobWorkers The max job workers + ## + maxJobWorkers: 10 + ## @param jobservice.redisNamespace Redis namespace for jobservice + ## + redisNamespace: harbor_job_service_namespace + ## @param jobservice.jobLogger The logger for jobs: `file`, `database` or `stdout` + ## + jobLogger: file + ## @param jobservice.secret Secret used when the job service communicates with other components. If a secret key is not specified, Helm will generate one. Must be a string of 16 chars. + ## If a secret key is not specified, Helm will generate one. + ## Must be a string of 16 chars. + ## + secret: "" + ## @param jobservice.existingSecret Existing secret for jobservice + ## The secret must contain the keys: + ## `secret` (required), + ## + existingSecret: "" + ## Use TLS in the container + ## + tls: + ## @param jobservice.tls.existingSecret Name of an existing secret with the certificates for internal TLS access + ## Requires `internalTLS.enabled` to be set to `true`` + ## Self-signed TLS certificates will be used otherwise + ## + existingSecret: "" + ## @param jobservice.command Override default container command (useful when using custom images) + ## + command: [] + ## @param jobservice.args Override default container args (useful when using custom images) + ## + args: [] + ## @param jobservice.extraEnvVars Array with extra environment variables to add Harbor Jobservice pods + ## + extraEnvVars: [] + ## @param jobservice.extraEnvVarsCM ConfigMap containing extra environment variables for Harbor Jobservice pods + ## + extraEnvVarsCM: "" + ## @param jobservice.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Harbor Jobservice pods + ## + extraEnvVarsSecret: "" + ## @param jobservice.containerPorts.http Harbor Jobservice HTTP container port + ## @param jobservice.containerPorts.https Harbor Jobservice HTTPS container port + ## @param jobservice.containerPorts.metrics Harbor Jobservice metrics container port + ## + containerPorts: + http: 8080 + https: 8443 + metrics: 8001 + ## @param jobservice.replicaCount Number of Harbor Jobservice replicas + ## + replicaCount: 1 + ## Configure extra options for Harbor Jobservice containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param jobservice.livenessProbe.enabled Enable livenessProbe on Harbor Jobservice containers + ## @param jobservice.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param jobservice.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param jobservice.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param jobservice.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param jobservice.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param jobservice.readinessProbe.enabled Enable readinessProbe on Harbor Jobservice containers + ## @param jobservice.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param jobservice.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param jobservice.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param jobservice.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param jobservice.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param jobservice.startupProbe.enabled Enable startupProbe on Harbor Jobservice containers + ## @param jobservice.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param jobservice.startupProbe.periodSeconds Period seconds for startupProbe + ## @param jobservice.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param jobservice.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param jobservice.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param jobservice.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param jobservice.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param jobservice.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Jobservice resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param jobservice.resources.limits The resources limits for the Harbor Jobservice containers + ## @param jobservice.resources.requests The requested resources for the Harbor Jobservice containers + ## + resources: + limits: {} + requests: {} + ## Configure Harbor Jobservice pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param jobservice.podSecurityContext.enabled Enabled Harbor Jobservice pods' Security Context + ## @param jobservice.podSecurityContext.fsGroup Set Harbor Jobservice pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Harbor Jobservice containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param jobservice.containerSecurityContext.enabled Enabled Harbor Jobservice containers' Security Context + ## @param jobservice.containerSecurityContext.runAsUser Set Harbor Jobservice containers' Security Context runAsUser + ## @param jobservice.containerSecurityContext.runAsNonRoot Set Harbor Jobservice containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param jobservice.updateStrategy.type Harbor Jobservice deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param jobservice.lifecycleHooks LifecycleHook for the Harbor Jobservice container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param jobservice.hostAliases Harbor Jobservice pods host aliases + ## + hostAliases: [] + ## @param jobservice.podLabels Add additional labels to the Harbor Jobservice pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param jobservice.podAnnotations Annotations to add to the Harbor Jobservice pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param jobservice.podAffinityPreset Harbor Jobservice Pod affinity preset. Ignored if `jobservice.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param jobservice.podAntiAffinityPreset Harbor Jobservice Pod anti-affinity preset. Ignored if `jobservice.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param jobservice.nodeAffinityPreset.type Harbor Jobservice Node affinity preset type. Ignored if `jobservice.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param jobservice.nodeAffinityPreset.key Harbor Jobservice Node label key to match Ignored if `jobservice.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param jobservice.nodeAffinityPreset.values Harbor Jobservice Node label values to match. Ignored if `jobservice.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param jobservice.affinity Harbor Jobservice Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: jobservice.podAffinityPreset, jobservice.podAntiAffinityPreset, and jobservice.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param jobservice.nodeSelector Harbor Jobservice Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param jobservice.tolerations Harbor Jobservice Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param jobservice.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param jobservice.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param jobservice.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param jobservice.sidecars Add additional sidecar containers to the Harbor Jobservice pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param jobservice.initContainers Add additional init containers to the Harbor Jobservice pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param jobservice.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Harbor Jobservice pods + ## + extraVolumeMounts: [] + ## @param jobservice.extraVolumes Optionally specify extra list of additional volumes for the Harbor Jobservice pods + ## + extraVolumes: [] + ## @param jobservice.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Harbor Jobservice service configuration + ## + service: + ## @param jobservice.service.ports.http Harbor Jobservice HTTP service port + ## @param jobservice.service.ports.https Harbor Jobservice HTTPS service port + ## @param jobservice.service.ports.metrics Harbor Jobservice HTTPS service port + ## + ports: + http: 80 + https: 443 + metrics: 8001 + +## @section Harbor Registry Parameters +## + +## Registry Parameters +## +registry: + ## @param registry.secret Secret is used to secure the upload state from client and registry storage backend. See: + ## and registry storage backend. + ## See: https://github.com/docker/distribution/blob/master/docs/configuration.md#http + ## If a secret key is not specified, Helm will generate one. + ## Must be a string of 16 chars. + ## + secret: "" + ## @param registry.existingSecret Existing secret for registry + ## The secret must contain the keys: + ## `REGISTRY_HTPASSWD` (required), + ## `REGISTRY_HTTP_SECRET` (required), + ## `REGISTRY_REDIS_PASSWORD` (optional), + ## + existingSecret: "" + ## @param registry.relativeurls Make the registry return relative URLs in Location headers. The client is responsible for resolving the correct URL. + ## + relativeurls: false + ## @param registry.credentials.username The username for accessing the registry instance, which is hosted by htpasswd auth mode. More details see [official docs](https://github.com/docker/distribution/blob/master/docs/configuration.md#htpasswd) + ## @param registry.credentials.password The password for accessing the registry instance, which is hosted by htpasswd auth mode. More details see [official docs](https://github.com/docker/distribution/blob/master/docs/configuration.md#htpasswd). It is suggested you update this value before installation. + ## @param registry.credentials.htpasswd The content of htpasswd file based on the value of `registry.credentials.username` `registry.credentials.password`. Currently `helm` does not support bcrypt in the template script, if the credential is updated you need to manually generated by calling + ## + credentials: + username: 'harbor_registry_user' + password: 'harbor_registry_password' + ## If you update the username or password of registry, make sure use cli tool htpasswd to generate the bcrypt hash + ## e.g. "htpasswd -nbBC10 $username $password" + ## + htpasswd: 'harbor_registry_user:$2y$10$9L4Tc0DJbFFMB6RdSCunrOpTHdwhid4ktBJmLD00bYgqkkGOvll3m' + middleware: + ## @param registry.middleware.enabled Middleware is used to add support for a CDN between backend storage and `docker pull` recipient. See + ## + enabled: false + ## @param registry.middleware.type CDN type for the middleware + ## + type: cloudFront + ## @param registry.middleware.cloudFront.baseurl CloudFront CDN settings: Base URL + ## @param registry.middleware.cloudFront.keypairid CloudFront CDN settings: Keypair ID + ## @param registry.middleware.cloudFront.duration CloudFront CDN settings: Duration + ## @param registry.middleware.cloudFront.ipfilteredby CloudFront CDN settings: IP filters + ## @param registry.middleware.cloudFront.privateKeySecret CloudFront CDN settings: Secret name with the private key + ## + cloudFront: + baseurl: example.cloudfront.net + keypairid: KEYPAIRID + duration: 3000s + ipfilteredby: none + ## The secret key that should be present is CLOUDFRONT_KEY_DATA, which should be the encoded private key + ## that allows access to CloudFront + ## + privateKeySecret: 'my-secret' + ## Use TLS in the container + ## + tls: + ## @param registry.tls.existingSecret Name of an existing secret with the certificates for internal TLS access + ## Requires `internalTLS.enabled` to be set to `true`` + ## Self-signed TLS certificates will be used otherwise + ## + existingSecret: "" + ## @param registry.replicaCount Number of Harbor Registry replicas + ## + replicaCount: 1 + ## Configure Harbor Registry pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param registry.podSecurityContext.enabled Enabled Harbor Registry pods' Security Context + ## @param registry.podSecurityContext.fsGroup Set Harbor Registry pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## @param registry.updateStrategy.type Harbor Registry deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param registry.hostAliases Harbor Registry pods host aliases + ## + hostAliases: [] + ## @param registry.podLabels Add additional labels to the Harbor Registry pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param registry.podAnnotations Annotations to add to the Harbor Registry pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param registry.podAffinityPreset Harbor Registry Pod affinity preset. Ignored if `registry.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param registry.podAntiAffinityPreset Harbor Registry Pod anti-affinity preset. Ignored if `registry.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param registry.nodeAffinityPreset.type Harbor Registry Node affinity preset type. Ignored if `registry.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param registry.nodeAffinityPreset.key Harbor Registry Node label key to match Ignored if `registry.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param registry.nodeAffinityPreset.values Harbor Registry Node label values to match. Ignored if `registry.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param registry.affinity Harbor Registry Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: registry.podAffinityPreset, registry.podAntiAffinityPreset, and registry.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param registry.nodeSelector Harbor Registry Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param registry.tolerations Harbor Registry Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param registry.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param registry.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param registry.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param registry.sidecars Add additional sidecar containers to the Harbor Registry pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param registry.initContainers Add additional init containers to the Harbor Registry pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param registry.extraVolumes Optionally specify extra list of additional volumes for the Harbor Registry pods + ## + extraVolumes: [] + ## @param registry.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Harbor Registry main container parameters + ## + server: + readTimeout: 900 # Set higher if needed + writeTimeout: 900 # Set higher if needed + maxLayerUploadTimeout: 600 + ## Bitnami Harbor Registry image + ## ref: https://hub.docker.com/r/bitnami/harbor-registry/tags/ + ## @param registry.server.image.registry Harbor Registry image registry + ## @param registry.server.image.repository Harbor Registry image repository + ## @param registry.server.image.tag Harbor Registry image tag (immutable tags are recommended) + ## @param registry.server.image.digest Harbor Registry image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param registry.server.image.pullPolicy Harbor Registry image pull policy + ## @param registry.server.image.pullSecrets Harbor Registry image pull secrets + ## @param registry.server.image.debug Enable Harbor Registry image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-registry + tag: 2.12.2-debian-12-r7 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param registry.server.command Override default container command (useful when using custom images) + ## + command: [] + ## @param registry.server.args Override default container args (useful when using custom images) + ## + args: [] + ## @param registry.server.extraEnvVars Array with extra environment variables to add Harbor Registry main containers + ## + extraEnvVars: [] + ## @param registry.server.extraEnvVarsCM ConfigMap containing extra environment variables for Harbor Registry main containers + ## + extraEnvVarsCM: "" + ## @param registry.server.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Harbor Registry main containers + ## + extraEnvVarsSecret: "" + ## @param registry.server.containerPorts.http Harbor Registry HTTP container port + ## @param registry.server.containerPorts.https Harbor Registry HTTPS container port + ## @param registry.server.containerPorts.debug Harbor Registry debug container port + ## @param registry.server.containerPorts.metrics Harbor Registry metrics container port + ## + containerPorts: + http: 5000 + https: 5443 + debug: 5001 + metrics: 8001 + ## Configure extra options for Harbor Registry main containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param registry.server.livenessProbe.enabled Enable livenessProbe on Harbor Registry main containers + ## @param registry.server.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param registry.server.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param registry.server.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param registry.server.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param registry.server.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param registry.server.readinessProbe.enabled Enable readinessProbe on Harbor Registry main containers + ## @param registry.server.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param registry.server.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param registry.server.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param registry.server.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param registry.server.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param registry.server.startupProbe.enabled Enable startupProbe on Harbor Registry main containers + ## @param registry.server.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param registry.server.startupProbe.periodSeconds Period seconds for startupProbe + ## @param registry.server.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param registry.server.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param registry.server.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param registry.server.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param registry.server.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param registry.server.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Registry main resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param registry.server.resources.limits The resources limits for the Harbor Registry main containers + ## @param registry.server.resources.requests The requested resources for the Harbor Registry main containers + ## + resources: + limits: {} + requests: {} + ## Configure Harbor Registry main containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param registry.server.containerSecurityContext.enabled Enabled Harbor Registry main containers' Security Context + ## @param registry.server.containerSecurityContext.runAsUser Set Harbor Registry main containers' Security Context runAsUser + ## @param registry.server.containerSecurityContext.runAsNonRoot Set Harbor Registry main containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param registry.server.lifecycleHooks LifecycleHook for the Harbor Registry main container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param registry.server.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Harbor Registry main pods + ## + extraVolumeMounts: [] + ## Harbor Registry service configuration + ## + service: + ## @param registry.server.service.ports.http Harbor Registry HTTP service port + ## @param registry.server.service.ports.https Harbor Registry HTTPS service port + ## @param registry.server.service.ports.metrics Harbor Registry metrics service port + ## + ports: + http: 5000 + https: 5443 + metrics: 8001 + ## Harbor Registryctl parameters + ## + controller: + ## Bitnami Harbor Registryctl image + ## ref: https://hub.docker.com/r/bitnami/harbor-registryctl/tags/ + ## @param registry.controller.image.registry Harbor Registryctl image registry + ## @param registry.controller.image.repository Harbor Registryctl image repository + ## @param registry.controller.image.tag Harbor Registryctl image tag (immutable tags are recommended) + ## @param registry.controller.image.digest Harbor Registryctl image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param registry.controller.image.pullPolicy Harbor Registryctl image pull policy + ## @param registry.controller.image.pullSecrets Harbor Registryctl image pull secrets + ## @param registry.controller.image.debug Enable Harbor Registryctl image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-registryctl + tag: 2.12.2-debian-12-r7 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param registry.controller.command Override default container command (useful when using custom images) + ## + command: [] + ## @param registry.controller.args Override default container args (useful when using custom images) + ## + args: [] + ## @param registry.controller.extraEnvVars Array with extra environment variables to add Harbor Registryctl containers + ## + extraEnvVars: [] + ## @param registry.controller.extraEnvVarsCM ConfigMap containing extra environment variables for Harbor Registryctl containers + ## + extraEnvVarsCM: "" + ## @param registry.controller.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Harbor Registryctl containers + ## + extraEnvVarsSecret: "" + ## @param registry.controller.containerPorts.http Harbor Registryctl HTTP container port + ## @param registry.controller.containerPorts.https Harbor Registryctl HTTPS container port + ## + containerPorts: + http: 8080 + https: 8443 + ## Configure extra options for Harbor Registryctl containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param registry.controller.livenessProbe.enabled Enable livenessProbe on Harbor Registryctl containers + ## @param registry.controller.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param registry.controller.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param registry.controller.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param registry.controller.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param registry.controller.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param registry.controller.readinessProbe.enabled Enable readinessProbe on Harbor Registryctl containers + ## @param registry.controller.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param registry.controller.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param registry.controller.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param registry.controller.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param registry.controller.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param registry.controller.startupProbe.enabled Enable startupProbe on Harbor Registryctl containers + ## @param registry.controller.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param registry.controller.startupProbe.periodSeconds Period seconds for startupProbe + ## @param registry.controller.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param registry.controller.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param registry.controller.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param registry.controller.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param registry.controller.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param registry.controller.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Registryctl resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param registry.controller.resources.limits The resources limits for the Harbor Registryctl containers + ## @param registry.controller.resources.requests The requested resources for the Harbor Registryctl containers + ## + resources: + limits: {} + requests: {} + ## Configure Harbor Registryctl containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param registry.controller.containerSecurityContext.enabled Enabled Harbor Registryctl containers' Security Context + ## @param registry.controller.containerSecurityContext.runAsUser Set Harbor Registryctl containers' Security Context runAsUser + ## @param registry.controller.containerSecurityContext.runAsNonRoot Set Harbor Registryctl containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param registry.controller.lifecycleHooks LifecycleHook for the Harbor Registryctl container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param registry.controller.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Harbor Registryctl pods + ## + extraVolumeMounts: [] + ## Harbor Registryctl service configuration + ## + service: + ## @param registry.controller.service.ports.http Harbor Registryctl HTTP service port + ## @param registry.controller.service.ports.https Harbor Registryctl HTTPS service port + ## + ports: + http: 8080 + https: 8443 + +## @section ChartMuseum Parameters +## + +chartmuseum: + ## Bitnami ChartMuseum image + ## ref: https://hub.docker.com/r/bitnami/chartmuseum/tags/ + ## @param chartmuseum.image.registry ChartMuseum image registry + ## @param chartmuseum.image.repository ChartMuseum image repository + ## @param chartmuseum.image.tag ChartMuseum image tag (immutable tags are recommended) + ## @param chartmuseum.image.digest ChartMuseum image image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param chartmuseum.image.pullPolicy ChartMuseum image pull policy + ## @param chartmuseum.image.pullSecrets ChartMuseum image pull secrets + ## @param chartmuseum.image.debug Enable ChartMuseum image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/chartmuseum +# tag: 0.15.0-debian-11-r99 + tag: latest + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param chartmuseum.enabled Enable ChartMuseum + ## + enabled: false + ## @param chartmuseum.useRedisCache Specify if ChartMuseum will use redis cache + ## + useRedisCache: false + ## Set the absolute URL to access the chartmuseum repository and the endpoint where it will be available. + ## @param chartmuseum.absoluteUrl Specify an absolute URL for ChartMuseum registry + ## @param chartmuseum.chartRepoName Specify the endpoint for the chartmuseum registry. Only applicable if `chartmuseum.absoluteUrl` is `true` + ## + absoluteUrl: false + chartRepoName: 'chartsRepo' + ## @param chartmuseum.depth Support for multitenancy. More info [here](https://chartmuseum.com/docs/#multitenancy) + ## + depth: 1 + ## @param chartmuseum.logJson Print logs on JSON format + ## + logJson: false + ## @param chartmuseum.disableMetrics Disable prometheus metrics exposure + ## + disableMetrics: false + ## @param chartmuseum.disableApi Disable all the routes prefixed with `/api` + ## + disableApi: false + ## @param chartmuseum.disableStatefiles Disable use of index-cache.yaml + ## + disableStatefiles: false + ## @param chartmuseum.allowOverwrite Allow chart versions to be re-uploaded without force querystring + ## + allowOverwrite: true + ## @param chartmuseum.anonymousGet Allow anonymous GET operations + ## + anonymousGet: false + ## Optional parameters for ChartMuseum not used by default. + ## ref: https://chartmuseum.com/docs/#other-cli-options + ## @param chartmuseum.contextPath Set the base context path for ChartMuseum + ## @param chartmuseum.indexLimit Limit the number of parallels indexes for ChartMuseum + ## @param chartmuseum.chartPostFormFieldName Form field which will be queried for the chart file content + ## @param chartmuseum.provPostFormFieldName Form field which will be queried for the provenance file content + ## @param chartmuseum.maxStorageObjects Maximum storage objects + ## @param chartmuseum.maxUploadSize Maximum upload size + ## @param chartmuseum.storageTimestampTolerance Timestamp tolerance size + ## + contextPath: "" + indexLimit: "" + chartPostFormFieldName: "" + provPostFormFieldName: "" + maxStorageObjects: "" + maxUploadSize: "" + storageTimestampTolerance: "1s" + ## Use TLS in the container + ## + tls: + ## @param chartmuseum.tls.existingSecret Name of an existing secret with the certificates for internal TLS access + ## Requires `internalTLS.enabled` to be set to `true`` + ## Self-signed TLS certificates will be used otherwise + ## + existingSecret: "" + ## @param chartmuseum.command Override default container command (useful when using custom images) + ## + command: [] + ## @param chartmuseum.args Override default container args (useful when using custom images) + ## + args: [] + ## @param chartmuseum.extraEnvVars Array with extra environment variables to add Chartmuseum pods + ## + extraEnvVars: [] + ## @param chartmuseum.extraEnvVarsCM ConfigMap containing extra environment variables for Chartmuseum pods + ## + extraEnvVarsCM: "" + ## @param chartmuseum.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Chartmuseum pods + ## + extraEnvVarsSecret: "" + ## @param chartmuseum.containerPorts.http Chartmuseum HTTP container port + ## @param chartmuseum.containerPorts.https Chartmuseum HTTPS container port + ## + containerPorts: + http: 9999 + https: 9443 + ## @param chartmuseum.replicaCount Number of Chartmuseum replicas + ## + replicaCount: 1 + ## Configure extra options for Chartmuseum containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param chartmuseum.livenessProbe.enabled Enable livenessProbe on Chartmuseum containers + ## @param chartmuseum.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param chartmuseum.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param chartmuseum.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param chartmuseum.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param chartmuseum.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param chartmuseum.readinessProbe.enabled Enable readinessProbe on Chartmuseum containers + ## @param chartmuseum.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param chartmuseum.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param chartmuseum.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param chartmuseum.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param chartmuseum.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param chartmuseum.startupProbe.enabled Enable startupProbe on Chartmuseum containers + ## @param chartmuseum.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param chartmuseum.startupProbe.periodSeconds Period seconds for startupProbe + ## @param chartmuseum.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param chartmuseum.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param chartmuseum.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param chartmuseum.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param chartmuseum.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param chartmuseum.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Chartmuseum resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param chartmuseum.resources.limits The resources limits for the Chartmuseum containers + ## @param chartmuseum.resources.requests The requested resources for the Chartmuseum containers + ## + resources: + limits: {} + requests: {} + ## Configure Chartmuseum pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param chartmuseum.podSecurityContext.enabled Enabled Chartmuseum pods' Security Context + ## @param chartmuseum.podSecurityContext.fsGroup Set Chartmuseum pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Chartmuseum containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param chartmuseum.containerSecurityContext.enabled Enabled Chartmuseum containers' Security Context + ## @param chartmuseum.containerSecurityContext.runAsUser Set Chartmuseum containers' Security Context runAsUser + ## @param chartmuseum.containerSecurityContext.runAsNonRoot Set Chartmuseum containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param chartmuseum.updateStrategy.type Chartmuseum deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param chartmuseum.lifecycleHooks LifecycleHook for the Chartmuseum container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param chartmuseum.hostAliases Chartmuseum pods host aliases + ## + hostAliases: [] + ## @param chartmuseum.podLabels Add additional labels to the Chartmuseum pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param chartmuseum.podAnnotations Annotations to add to the Chartmuseum pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param chartmuseum.podAffinityPreset Chartmuseum Pod affinity preset. Ignored if `chartmuseum.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param chartmuseum.podAntiAffinityPreset Chartmuseum Pod anti-affinity preset. Ignored if `chartmuseum.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param chartmuseum.nodeAffinityPreset.type Chartmuseum Node affinity preset type. Ignored if `chartmuseum.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param chartmuseum.nodeAffinityPreset.key Chartmuseum Node label key to match Ignored if `chartmuseum.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param chartmuseum.nodeAffinityPreset.values Chartmuseum Node label values to match. Ignored if `chartmuseum.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param chartmuseum.affinity Chartmuseum Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: chartmuseum.podAffinityPreset, chartmuseum.podAntiAffinityPreset, and chartmuseum.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param chartmuseum.nodeSelector Chartmuseum Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param chartmuseum.tolerations Chartmuseum Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param chartmuseum.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param chartmuseum.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param chartmuseum.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param chartmuseum.sidecars Add additional sidecar containers to the Chartmuseum pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param chartmuseum.initContainers Add additional init containers to the Chartmuseum pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param chartmuseum.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Chartmuseum pods + ## + extraVolumeMounts: [] + ## @param chartmuseum.extraVolumes Optionally specify extra list of additional volumes for the Chartmuseum pods + ## + extraVolumes: [] + ## @param chartmuseum.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Chartmuseum service configuration + ## + service: + ## @param chartmuseum.service.ports.http Chartmuseum HTTP service port + ## @param chartmuseum.service.ports.https Chartmuseum HTTPS service port + ## + ports: + http: 80 + https: 443 + +## @section Notary Parameters +## + +## Notary Parameters +## +notary: + ## @param notary.enabled Enable Notary + ## + enabled: false + ## @param notary.secretName Fill the name of a kubernetes secret if you want to use your own TLS certificate authority, certificate and private key for notary communications. The secret must contain keys named `notary-signer-ca.crt`, `notary-signer.key` and `notary-signer.crt` that contain the CA, certificate and private key. They will be generated if not set. + ## TLS certificate authority, certificate and private key for notary + ## communications. + ## The secret must contain keys named ca.crt, tls.crt and tls.key that + ## contain the CA, certificate and private key. + ## They will be generated if not set. + ## + secretName: "" + server: + ## Bitnami Harbor Notary Server image + ## ref: https://hub.docker.com/r/bitnami/harbor-notary-server/tags/ + ## @param notary.server.image.registry Harbor Notary Server image registry + ## @param notary.server.image.repository Harbor Notary Server image repository + ## @param notary.server.image.tag Harbor Notary Server image tag (immutable tags are recommended) + ## @param notary.server.image.digest Notary Server image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param notary.server.image.pullPolicy Harbor Notary Server image pull policy + ## @param notary.server.image.pullSecrets Harbor Notary Server image pull secrets + ## @param notary.server.image.debug Enable Harbor Notary Server image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-notary-server + # tag: 2.8.1-debian-11-r0 + tag: latest + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param notary.server.command Override default container command (useful when using custom images) + ## + command: [] + ## @param notary.server.args Override default container args (useful when using custom images) + ## + args: [] + ## @param notary.server.extraEnvVars Array with extra environment variables to add Harbor Notary Server pods + ## + extraEnvVars: [] + ## @param notary.server.extraEnvVarsCM ConfigMap containing extra environment variables for Harbor Notary Server pods + ## + extraEnvVarsCM: "" + ## @param notary.server.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Harbor Notary Server pods + ## + extraEnvVarsSecret: "" + ## @param notary.server.containerPorts.server Harbor Notary Server container port + ## + containerPorts: + server: 4443 + ## @param notary.server.replicaCount Number of Harbor Notary Server replicas + ## + replicaCount: 1 + ## Configure extra options for Harbor Notary Server containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param notary.server.livenessProbe.enabled Enable livenessProbe on Harbor Notary Server containers + ## @param notary.server.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param notary.server.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param notary.server.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param notary.server.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param notary.server.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param notary.server.readinessProbe.enabled Enable readinessProbe on Harbor Notary Server containers + ## @param notary.server.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param notary.server.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param notary.server.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param notary.server.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param notary.server.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param notary.server.startupProbe.enabled Enable startupProbe on Harbor Notary Server containers + ## @param notary.server.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param notary.server.startupProbe.periodSeconds Period seconds for startupProbe + ## @param notary.server.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param notary.server.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param notary.server.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param notary.server.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param notary.server.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param notary.server.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Notary Server resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param notary.server.resources.limits The resources limits for the Harbor Notary Server containers + ## @param notary.server.resources.requests The requested resources for the Harbor Notary Server containers + ## + resources: + limits: {} + requests: {} + ## Configure Harbor Notary Server pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param notary.server.podSecurityContext.enabled Enabled Harbor Notary Server pods' Security Context + ## @param notary.server.podSecurityContext.fsGroup Set Harbor Notary Server pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Harbor Notary Server containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param notary.server.containerSecurityContext.enabled Enabled Harbor Notary Server containers' Security Context + ## @param notary.server.containerSecurityContext.runAsUser Set Harbor Notary Server containers' Security Context runAsUser + ## @param notary.server.containerSecurityContext.runAsNonRoot Set Harbor Notary Server containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param notary.server.updateStrategy.type Harbor Notary Server deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param notary.server.lifecycleHooks LifecycleHook for the Harbor Notary Server container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param notary.server.hostAliases Harbor Notary Server pods host aliases + ## + hostAliases: [] + ## @param notary.server.podLabels Add additional labels to the Harbor Notary Server pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param notary.server.podAnnotations Annotations to add to the Harbor Notary Server pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param notary.server.podAffinityPreset Harbor Notary Server Pod affinity preset. Ignored if `notary.server.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param notary.server.podAntiAffinityPreset Harbor Notary Server Pod anti-affinity preset. Ignored if `notary.server.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param notary.server.nodeAffinityPreset.type Harbor Notary Server Node affinity preset type. Ignored if `notary.server.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param notary.server.nodeAffinityPreset.key Harbor Notary Server Node label key to match Ignored if `notary.server.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param notary.server.nodeAffinityPreset.values Harbor Notary Server Node label values to match. Ignored if `notary.server.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param notary.server.affinity Harbor Notary Server Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: notary.server.podAffinityPreset, notary.server.podAntiAffinityPreset, and notary.server.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param notary.server.nodeSelector Harbor Notary Server Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param notary.server.tolerations Harbor Notary Server Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param notary.server.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param notary.server.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param notary.server.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param notary.server.sidecars Add additional sidecar containers to the Harbor Notary Server pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param notary.server.initContainers Add additional init containers to the Harbor Notary Server pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param notary.server.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Harbor Notary Server pods + ## + extraVolumeMounts: [] + ## @param notary.server.extraVolumes Optionally specify extra list of additional volumes for the Harbor Notary Server pods + ## + extraVolumes: [] + ## @param notary.server.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + signer: + ## Bitnami Harbor Notary Signer image + ## ref: https://hub.docker.com/r/bitnami/harbor-notary-signer/tags/ + ## @param notary.signer.image.registry Harbor Notary Signer image registry + ## @param notary.signer.image.repository Harbor Notary Signer image repository + ## @param notary.signer.image.tag Harbor Notary Signer image tag (immutable tags are recommended) + ## @param notary.signer.image.digest Harbor Notary Signer image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param notary.signer.image.pullPolicy Harbor Notary Signer image pull policy + ## @param notary.signer.image.pullSecrets Harbor Notary Signer image pull secrets + ## @param notary.signer.image.debug Enable Harbor Notary Signer image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-notary-signer + # tag: 2.8.1-debian-11-r0 + tag: latest + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param notary.signer.command Override default container command (useful when using custom images) + ## + command: [] + ## @param notary.signer.args Override default container args (useful when using custom images) + ## + args: [] + ## @param notary.signer.extraEnvVars Array with extra environment variables to add Harbor Notary Signer pods + ## + extraEnvVars: [] + ## @param notary.signer.extraEnvVarsCM ConfigMap containing extra environment variables for Harbor Notary Signer pods + ## + extraEnvVarsCM: "" + ## @param notary.signer.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Harbor Notary Signer pods + ## + extraEnvVarsSecret: "" + ## @param notary.signer.containerPorts.signer Harbor Notary Signer container port + ## + containerPorts: + signer: 7899 + ## @param notary.signer.replicaCount Number of Harbor Notary Signer replicas + ## + replicaCount: 1 + ## Configure extra options for Harbor Notary Signer containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param notary.signer.livenessProbe.enabled Enable livenessProbe on Harbor Notary Signer containers + ## @param notary.signer.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param notary.signer.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param notary.signer.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param notary.signer.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param notary.signer.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param notary.signer.readinessProbe.enabled Enable readinessProbe on Harbor Notary Signer containers + ## @param notary.signer.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param notary.signer.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param notary.signer.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param notary.signer.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param notary.signer.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param notary.signer.startupProbe.enabled Enable startupProbe on Harbor Notary Signer containers + ## @param notary.signer.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param notary.signer.startupProbe.periodSeconds Period seconds for startupProbe + ## @param notary.signer.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param notary.signer.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param notary.signer.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param notary.signer.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param notary.signer.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param notary.signer.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Notary Signer resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param notary.signer.resources.limits The resources limits for the Harbor Notary Signer containers + ## @param notary.signer.resources.requests The requested resources for the Harbor Notary Signer containers + ## + resources: + limits: {} + requests: {} + ## Configure Harbor Notary Signer pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param notary.signer.podSecurityContext.enabled Enabled Harbor Notary Signer pods' Security Context + ## @param notary.signer.podSecurityContext.fsGroup Set Harbor Notary Signer pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Harbor Notary Signer containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param notary.signer.containerSecurityContext.enabled Enabled Harbor Notary Signer containers' Security Context + ## @param notary.signer.containerSecurityContext.runAsUser Set Harbor Notary Signer containers' Security Context runAsUser + ## @param notary.signer.containerSecurityContext.runAsNonRoot Set Harbor Notary Signer containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param notary.signer.updateStrategy.type Harbor Notary Signer deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param notary.signer.lifecycleHooks LifecycleHook for the Harbor Notary Signer container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param notary.signer.hostAliases Harbor Notary Signer pods host aliases + ## + hostAliases: [] + ## @param notary.signer.podLabels Add additional labels to the Harbor Notary Signer pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param notary.signer.podAnnotations Annotations to add to the Harbor Notary Signer pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param notary.signer.podAffinityPreset Harbor Notary Signer Pod affinity preset. Ignored if `notary.signer.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param notary.signer.podAntiAffinityPreset Harbor Notary Signer Pod anti-affinity preset. Ignored if `notary.signer.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param notary.signer.nodeAffinityPreset.type Harbor Notary Signer Node affinity preset type. Ignored if `notary.signer.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param notary.signer.nodeAffinityPreset.key Harbor Notary Signer Node label key to match Ignored if `notary.signer.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param notary.signer.nodeAffinityPreset.values Harbor Notary Signer Node label values to match. Ignored if `notary.signer.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param notary.signer.affinity Harbor Notary Signer Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: notary.signer.podAffinityPreset, notary.signer.podAntiAffinityPreset, and notary.signer.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param notary.signer.nodeSelector Harbor Notary Signer Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param notary.signer.tolerations Harbor Notary Signer Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param notary.signer.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param notary.signer.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param notary.signer.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param notary.signer.sidecars Add additional sidecar containers to the Harbor Notary Signer pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param notary.signer.initContainers Add additional init containers to the Harbor Notary Signer pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param notary.signer.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Harbor Notary Signer pods + ## + extraVolumeMounts: [] + ## @param notary.signer.extraVolumes Optionally specify extra list of additional volumes for the Harbor Notary Signer pods + ## + extraVolumes: [] + ## @param notary.signer.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Harbor Notary service configuration + ## + service: + ## @param notary.service.ports.server Harbor Notary server service port + ## @param notary.service.ports.signer Harbor Notary signer service port + ## + ports: + server: 4443 + signer: 7899 + +## @section Harbor Adapter Trivy Parameters +## + +trivy: + ## Bitnami Harbor Adapter Trivy image + ## ref: https://hub.docker.com/r/bitnami/harbor-adapter-trivy/tags/ + ## @param trivy.image.registry Harbor Adapter Trivy image registry + ## @param trivy.image.repository Harbor Adapter Trivy image repository + ## @param trivy.image.tag Harbor Adapter Trivy image tag (immutable tags are recommended) + ## @param trivy.image.digest Harbor Adapter Trivy image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param trivy.image.pullPolicy Harbor Adapter Trivy image pull policy + ## @param trivy.image.pullSecrets Harbor Adapter Trivy image pull secrets + ## @param trivy.image.debug Enable Harbor Adapter Trivy image debug mode + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-adapter-trivy + tag: 2.12.2-debian-12-r6 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param trivy.enabled Enable Trivy + ## + enabled: true + ## @param trivy.debugMode The flag to enable Trivy debug mode + ## + debugMode: false + ## @param trivy.vulnType Comma-separated list of vulnerability types. Possible values `os` and `library`. + ## + vulnType: 'os,library' + ## @param trivy.severity Comma-separated list of severities to be checked + ## + severity: 'UNKNOWN,LOW,MEDIUM,HIGH,CRITICAL' + ## @param trivy.ignoreUnfixed The flag to display only fixed vulnerabilities + ## + ignoreUnfixed: false + ## @param trivy.insecure The flag to skip verifying registry certificate + ## + insecure: true + ## @param trivy.gitHubToken The GitHub access token to download Trivy DB + ## + ## Trivy DB contains vulnerability information from NVD, Red Hat, and many other upstream vulnerability databases. + ## It is downloaded by Trivy from the GitHub release page https://github.com/aquasecurity/trivy-db/releases and cached + ## in the local file system (`/home/scanner/.cache/trivy/db/trivy.db`). In addition, the database contains the update + ## timestamp so Trivy can detect whether it should download a newer version from the Internet or use the cached one. + ## Currently, the database is updated every 12 hours and published as a new release to GitHub. + ## + ## Anonymous downloads from GitHub are subject to the limit of 60 requests per hour. Normally such rate limit is enough + ## for production operations. If, for any reason, it's not enough, you could increase the rate limit to 5000 + ## requests per hour by specifying the GitHub access token. For more details on GitHub rate limiting please consult + ## https://developer.github.com/v3/#rate-limiting + ## + ## You can create a GitHub token by following the instructions in + ## https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line + ## + gitHubToken: "" + ## @param trivy.skipUpdate The flag to disable Trivy DB downloads from GitHub + ## You might want to set the value of this flag to `true` in test or CI/CD environments to avoid GitHub rate limiting issues. + ## If the value is set to `true` you have to manually download the `trivy.db` file and mount it in the + ## `/home/scanner/.cache/trivy/db/trivy.db` path. + ## + skipUpdate: false + ## @param trivy.cacheDir Directory to store the cache + ## + cacheDir: '/bitnami/harbor-adapter-trivy/.cache' + ## Use TLS in the container + ## + tls: + ## @param trivy.tls.existingSecret Name of an existing secret with the certificates for internal TLS access + ## Requires `internalTLS.enabled` to be set to `true`` + ## Self-signed TLS certificates will be used otherwise + ## + existingSecret: "" + ## @param trivy.command Override default container command (useful when using custom images) + ## + command: [] + ## @param trivy.args Override default container args (useful when using custom images) + ## + args: [] + ## @param trivy.extraEnvVars Array with extra environment variables to add Trivy pods + ## + extraEnvVars: [] + ## @param trivy.extraEnvVarsCM ConfigMap containing extra environment variables for Trivy pods + ## + extraEnvVarsCM: "" + ## @param trivy.extraEnvVarsSecret Secret containing extra environment variables (in case of sensitive data) for Trivy pods + ## + extraEnvVarsSecret: "" + ## @param trivy.containerPorts.http Trivy HTTP container port + ## @param trivy.containerPorts.https Trivy HTTPS container port + ## + containerPorts: + http: 8080 + https: 8443 + ## @param trivy.replicaCount Number of Trivy replicas + ## + replicaCount: 1 + ## Configure extra options for Trivy containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param trivy.livenessProbe.enabled Enable livenessProbe on Trivy containers + ## @param trivy.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param trivy.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param trivy.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param trivy.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param trivy.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param trivy.readinessProbe.enabled Enable readinessProbe on Trivy containers + ## @param trivy.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param trivy.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param trivy.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param trivy.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param trivy.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param trivy.startupProbe.enabled Enable startupProbe on Trivy containers + ## @param trivy.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param trivy.startupProbe.periodSeconds Period seconds for startupProbe + ## @param trivy.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param trivy.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param trivy.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param trivy.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param trivy.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param trivy.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Trivy resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param trivy.resources.limits [object] The resources limits for the Trivy containers + ## @param trivy.resources.requests [object] The requested resources for the Trivy containers + ## + resources: + requests: + cpu: 200m + memory: 512Mi + limits: + cpu: 1 + memory: 1Gi + ## Configure Trivy pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param trivy.podSecurityContext.enabled Enabled Trivy pods' Security Context + ## @param trivy.podSecurityContext.fsGroup Set Trivy pod's Security Context fsGroup + ## + podSecurityContext: + enabled: false + fsGroup: 1001 + ## Configure Trivy containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param trivy.containerSecurityContext.enabled Enabled Trivy containers' Security Context + ## @param trivy.containerSecurityContext.runAsUser Set Trivy containers' Security Context runAsUser + ## @param trivy.containerSecurityContext.runAsNonRoot Set Trivy containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: false + runAsUser: 1001 + runAsNonRoot: true + ## @param trivy.updateStrategy.type Trivy deployment strategy type - only really applicable for deployments with RWO PVs attached + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param trivy.lifecycleHooks LifecycleHook for the Trivy container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param trivy.hostAliases Trivy pods host aliases + ## + hostAliases: [] + ## @param trivy.podLabels Add additional labels to the Trivy pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param trivy.podAnnotations Annotations to add to the Trivy pods (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param trivy.podAffinityPreset Trivy Pod affinity preset. Ignored if `trivy.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param trivy.podAntiAffinityPreset Trivy Pod anti-affinity preset. Ignored if `trivy.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param trivy.nodeAffinityPreset.type Trivy Node affinity preset type. Ignored if `trivy.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param trivy.nodeAffinityPreset.key Trivy Node label key to match Ignored if `trivy.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param trivy.nodeAffinityPreset.values Trivy Node label values to match. Ignored if `trivy.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param trivy.affinity Trivy Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: trivy.podAffinityPreset, trivy.podAntiAffinityPreset, and trivy.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param trivy.nodeSelector Trivy Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param trivy.tolerations Trivy Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param trivy.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param trivy.priorityClassName Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param trivy.schedulerName Use an alternate scheduler, e.g. "stork". + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param trivy.sidecars Add additional sidecar containers to the Trivy pods + ## Example: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param trivy.initContainers Add additional init containers to the Trivy pods + ## Example: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param trivy.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Trivy pods + ## + extraVolumeMounts: [] + ## @param trivy.extraVolumes Optionally specify extra list of additional volumes for the Trivy pods + ## + extraVolumes: [] + ## @param trivy.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Trivy service configuration + ## + service: + ## @param trivy.service.ports.http Trivy HTTP service port + ## @param trivy.service.ports.https Trivy HTTPS service port + ## + ports: + http: 8080 + https: 8443 + +## @section Harbor Exporter Parameters +## + +exporter: + ## Bitnami Harbor Exporter image + ## ref: https://hub.docker.com/r/bitnami/harbor-exporter/tags/ + ## @param exporter.image.registry Harbor Exporter image registry + ## @param exporter.image.repository Harbor Exporter image repository + ## @param exporter.image.tag Harbor Exporter image tag + ## @param exporter.image.digest Harbor Exporter image image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param exporter.image.pullPolicy Harbor exporter image pull policy + ## @param exporter.image.pullSecrets Specify docker-registry secret names as an array + ## @param exporter.image.debug Specify if debug logs should be enabled + ## + image: + registry: docker.io + repository: bitnamilegacy/harbor-exporter + tag: 2.12.2-debian-12-r7 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param exporter.command Override default container command (useful when using custom images) + ## + command: [] + ## @param exporter.args Override default container args (useful when using custom images) + ## + args: [] + ## @param exporter.extraEnvVars Array containing extra env vars + ## For example: + ## - name: HARBOR_DATABASE_SSLMODE + ## value: verify-ca + ## + extraEnvVars: [] + ## @param exporter.extraEnvVarsCM ConfigMap containing extra env vars + ## + extraEnvVarsCM: "" + ## @param exporter.extraEnvVarsSecret Secret containing extra env vars (in case of sensitive data) + ## + extraEnvVarsSecret: "" + ## @param exporter.containerPorts.metrics Harbor Exporter HTTP container port + ## + containerPorts: + metrics: 8001 + ## @param exporter.replicaCount The replica count + ## + replicaCount: 1 + ## Harbor Exporter containers' liveness probe + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#container-probes + ## @param exporter.livenessProbe.enabled Enable livenessProbe + ## @param exporter.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param exporter.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param exporter.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param exporter.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param exporter.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## Harbor Exporter containers' readiness probe + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#container-probes + ## @param exporter.readinessProbe.enabled Enable readinessProbe + ## @param exporter.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param exporter.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param exporter.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param exporter.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param exporter.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + successThreshold: 1 + ## @param exporter.startupProbe.enabled Enable startupProbe on Harbor Exporter containers + ## @param exporter.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param exporter.startupProbe.periodSeconds Period seconds for startupProbe + ## @param exporter.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param exporter.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param exporter.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param exporter.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param exporter.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param exporter.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## Harbor Exporter resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param exporter.resources.limits The resources limits for the Harbor Exporter containers + ## @param exporter.resources.requests The requested resources for the Harbor Exporter containers + ## + resources: + limits: {} + requests: {} + ## Configure Exporter pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param exporter.podSecurityContext.enabled Enabled Exporter pods' Security Context + ## @param exporter.podSecurityContext.fsGroup Set Exporter pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + ## Configure Exporter containers (only main one) Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param exporter.containerSecurityContext.enabled Enabled Exporter containers' Security Context + ## @param exporter.containerSecurityContext.runAsUser Set Exporter containers' Security Context runAsUser + ## @param exporter.containerSecurityContext.runAsNonRoot Set Exporter containers' Security Context runAsNonRoot + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + ## @param exporter.updateStrategy.type The update strategy for deployments with persistent volumes: RollingUpdate or Recreate. Set it as Recreate when RWM for volumes isn't supported + ## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the + ## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will + ## terminate the single previous pod, so that the new, incoming pod can attach to the PV + ## + updateStrategy: + type: RollingUpdate + ## @param exporter.lifecycleHooks LifecycleHook to set additional configuration at startup, e.g. LDAP settings via REST API. Evaluated as a template + ## + lifecycleHooks: {} + ## @param exporter.hostAliases Exporter pods host aliases + ## + hostAliases: [] + ## @param exporter.podLabels Add additional labels to the pod (evaluated as a template) + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param exporter.podAnnotations Annotations to add to the exporter pod + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param exporter.podAffinityPreset Harbor Exporter Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param exporter.podAntiAffinityPreset Harbor Exporter Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param exporter.nodeAffinityPreset.type Harbor Exporter Node affinity preset type. Ignored if `exporter.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param exporter.nodeAffinityPreset.key Harbor Exporter Node label key to match Ignored if `exporter.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param exporter.nodeAffinityPreset.values Harbor Exporter Node label values to match. Ignored if `exporter.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param exporter.affinity Harbor Exporter Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: `exporter.podAffinityPreset`, `exporter.podAntiAffinityPreset`, and `exporter.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param exporter.priorityClassName Exporter pods Priority Class Name + ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass + ## + priorityClassName: "" + ## @param exporter.schedulerName Name of the k8s scheduler (other than default) + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param exporter.serviceAccountName Name of the serviceAccountName for Harbor Exporter pods + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + serviceAccountName: "" + ## @param exporter.nodeSelector Harbor Exporter Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param exporter.tolerations Harbor Exporter Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param exporter.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param exporter.initContainers Add additional init containers to the pod (evaluated as a template) + ## + initContainers: [] + ## @param exporter.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Chartmuseum pods + ## + extraVolumeMounts: [] + ## @param exporter.extraVolumes Optionally specify extra list of additional volumes for the Chartmuseum pods + ## + extraVolumes: [] + ## @param exporter.sidecars Attach additional containers to the pod (evaluated as a template) + ## + sidecars: [] + ## @param exporter.automountServiceAccountToken Automount service account token + ## + automountServiceAccountToken: false + ## Exporter service configuration + ## + service: + ## @param exporter.service.ports.metrics Exporter HTTP service port + ## + ports: + metrics: 8001 + +## @section PostgreSQL Parameters +## + +## PostgreSQL chart configuration +## ref: https://github.com/bitnami/charts/blob/main/bitnami/postgresql/values.yaml +## @param postgresql.enabled Switch to enable or disable the PostgreSQL helm chart +## @param postgresql.auth.enablePostgresUser Assign a password to the "postgres" admin user. Otherwise, remote access will be blocked for this user +## @param postgresql.auth.postgresPassword Password for the "postgres" admin user +## @param postgresql.auth.existingSecret Name of existing secret to use for PostgreSQL credentials +## @param postgresql.architecture PostgreSQL architecture (`standalone` or `replication`) +## @param postgresql.primary.extendedConfiguration Extended PostgreSQL Primary configuration (appended to main or default configuration) +## @param postgresql.primary.initdb.scripts [object] Initdb scripts to create Harbor databases +## +postgresql: + enabled: false + ## Override PostgreSQL default image as 14.x is not supported https://goharbor.io/docs/2.4.0/install-config/ + ## ref: https://github.com/bitnami/containers/tree/main/bitnami/postgresql + ## @param postgresql.image.registry PostgreSQL image registry + ## @param postgresql.image.repository PostgreSQL image repository + ## @param postgresql.image.tag PostgreSQL image tag (immutable tags are recommended) + ## @param postgresql.image.digest PostgreSQL image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## + image: + registry: docker.io + repository: bitnamilegacy/postgresql + # tag: 13.15.0-debian-12-r2 + tag: 14.16.0-debian-12-r4 + digest: "" + auth: + enablePostgresUser: true + postgresPassword: harbor + existingSecret: "" + architecture: standalone + primary: + extendedConfiguration: | + max_connections = 1024 + initdb: + scripts: + initial-notaryserver.sql: | + CREATE DATABASE notaryserver; + CREATE USER server; + alter user server with encrypted password 'password'; + GRANT ALL PRIVILEGES ON DATABASE notaryserver TO server; + initial-notarysigner.sql: | + CREATE DATABASE notarysigner; + CREATE USER signer; + alter user signer with encrypted password 'password'; + GRANT ALL PRIVILEGES ON DATABASE notarysigner TO signer; + initial-registry.sql: | + CREATE DATABASE registry ENCODING 'UTF8'; + \c registry; + CREATE TABLE schema_migrations(version bigint not null primary key, dirty boolean not null); +## External PostgreSQL configuration +## All of these values are only used when postgresql.enabled is set to false +## @param externalDatabase.host Database host +## @param externalDatabase.port Database port number +## @param externalDatabase.user Non-root username for Harbor +## @param externalDatabase.password Password for the non-root username for Harbor +## @param externalDatabase.sslmode External database ssl mode +## @param externalDatabase.coreDatabase External database name for core +## @param externalDatabase.notaryServerDatabase External database name for notary server +## @param externalDatabase.notaryServerUsername External database username for notary server +## @param externalDatabase.notaryServerPassword External database password for notary server +## @param externalDatabase.notarySignerDatabase External database name for notary signer +## @param externalDatabase.notarySignerUsername External database username for notary signer +## @param externalDatabase.notarySignerPassword External database password for notary signer +## +externalDatabase: + host: postgres13.postgres.svc.cluster.local +# host: 192.168.2.235 + port: 5432 + user: harbor + password: "harbor" + sslmode: disable + coreDatabase: "harbor" + notaryServerDatabase: "harbor" + notaryServerUsername: "harbor" + notaryServerPassword: "harbor" + notarySignerDatabase: "harbor" + notarySignerUsername: "harbor" + notarySignerPassword: "harbor" + +## @section Redis® parameters +## + +## Redis® chart configuration +## ref: https://github.com/bitnami/charts/blob/main/bitnami/redis/values.yaml +## @param redis.enabled Switch to enable or disable the Redis® helm +## @param redis.auth.enabled Enable password authentication +## @param redis.auth.password Redis® password +## @param redis.auth.existingSecret The name of an existing secret with Redis® credentials +## @param redis.architecture Redis® architecture. Allowed values: `standalone` or `replication` +## @param redis.sentinel.enabled Use Redis® Sentinel on Redis® pods. +## @param redis.sentinel.masterSet Master set name +## @param redis.sentinel.service.ports.sentinel Redis® service port for Redis® Sentinel +## +redis: + enabled: false + storageClass: "" + auth: + enabled: true + ## Redis® password (both master and slave). Defaults to a random 10-character alphanumeric string if not set and auth.enabled is true. + ## It should always be set using the password value or in the existingSecret to avoid issues + ## with Harbor. + ## The password value is ignored if existingSecret is set + ## + password: "Redis01" + existingSecret: "" + architecture: standalone + sentinel: + enabled: false + masterSet: mymaster + service: + ports: + sentinel: 26379 + +## External Redis® configuration +## All of these values are only used when redis.enabled is set to false +## @param externalRedis.host Redis® host +## @param externalRedis.port Redis® port number +## @param externalRedis.password Redis® password +## @param externalRedis.coreDatabaseIndex Index for core database +## @param externalRedis.jobserviceDatabaseIndex Index for jobservice database +## @param externalRedis.registryDatabaseIndex Index for registry database +## @param externalRedis.chartmuseumDatabaseIndex Index for chartmuseum database +## @param externalRedis.trivyAdapterDatabaseIndex Index for chartmuseum database +## +externalRedis: + host: 192.168.2.182 +# host: 192.168.2.221 + port: 6379 + password: "Redis01@" + coreDatabaseIndex: '0' + jobserviceDatabaseIndex: '1' + registryDatabaseIndex: '2' + chartmuseumDatabaseIndex: '3' + trivyAdapterDatabaseIndex: '5' + ## Redis® sentinel configuration + ## @param externalRedis.sentinel.enabled If external redis with sentinal is used, set it to `true` + ## @param externalRedis.sentinel.masterSet Name of sentinel masterSet if sentinel is used + ## @param externalRedis.sentinel.hosts Sentinel hosts and ports in the format + ## + sentinel: + enabled: false + masterSet: 'mymaster' + hosts: "" + +## @section Harbor metrics parameters +## +metrics: + ## @param metrics.enabled Whether or not to enable metrics for different + ## + enabled: false + ## @param metrics.path Path where metrics are exposed + ## + path: /metrics + ## Prometheus Operator ServiceMonitor configuration + ## + serviceMonitor: + ## @param metrics.serviceMonitor.enabled if `true`, creates a Prometheus Operator ServiceMonitor (requires `metrics.enabled` to be `true`) + ## + enabled: false + ## @param metrics.serviceMonitor.namespace Namespace in which Prometheus is running + ## + namespace: "" + ## @param metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: "" + ## @param metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: "" + ## @param metrics.serviceMonitor.labels Additional labels that can be used so ServiceMonitor will be discovered by Prometheus + ## + labels: {} + ## @param metrics.serviceMonitor.selector Prometheus instance selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + selector: {} + ## @param metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## + relabelings: [] + ## @param metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## + metricRelabelings: [] + ## @param metrics.serviceMonitor.honorLabels Specify honorLabels parameter to add the scrape endpoint + ## + honorLabels: false + ## @param metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" diff --git a/kubernetes/dev/hercules/hercules-pv.yaml b/kubernetes/dev/hercules/hercules-pv.yaml new file mode 100755 index 0000000..a92ac1a --- /dev/null +++ b/kubernetes/dev/hercules/hercules-pv.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: hercules-pv + labels: + type: local +spec: + storageClassName: manual + capacity: + storage: 30Gi + accessModes: + - ReadWriteOnce + hostPath: + path: "/share" diff --git a/kubernetes/dev/hercules/hercules-pvc.yaml b/kubernetes/dev/hercules/hercules-pvc.yaml new file mode 100755 index 0000000..1a51c6d --- /dev/null +++ b/kubernetes/dev/hercules/hercules-pvc.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: hercules-pvc +spec: + storageClassName: manual + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 30Gi diff --git a/kubernetes/dev/hercules/hercules-test.yaml b/kubernetes/dev/hercules/hercules-test.yaml new file mode 100755 index 0000000..86b1317 --- /dev/null +++ b/kubernetes/dev/hercules/hercules-test.yaml @@ -0,0 +1,19 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: hercules + labels: + app: hercules +spec: + replicas: 1 + selector: + matchLabels: + app: hercules + template: + metadata: + labels: + app: hercules + spec: + containers: + - name: hercules + image: core.harbor.alldcs.nl/test/hercules diff --git a/kubernetes/dev/hercules/hercules.yaml b/kubernetes/dev/hercules/hercules.yaml new file mode 100755 index 0000000..1d84933 --- /dev/null +++ b/kubernetes/dev/hercules/hercules.yaml @@ -0,0 +1,60 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: hercules + labels: + app: hercules +spec: + replicas: 1 + selector: + matchLabels: + app: hercules + template: + metadata: + labels: + app: hercules + spec: + containers: + - name: hercules + image: core.harbor.alldcs.nl/test/hercules + securityContext: + privileged: true + capabilities: + add: ["NET_ADMIN","NET_RAW"] + ports: + - containerPort: 22 + name: hercules-ssh + - containerPort: 80 + name: hercules + - containerPort: 3270 + name: terminal + - containerPort: 3390 + name: network + volumeMounts: + - mountPath: /share + name: hercules + - mountPath: /mnt + name: mnt + subPath: hercules + volumes: + - name: hercules + persistentVolumeClaim: + claimName: hercules-pvc + - name: mnt + persistentVolumeClaim: + claimName: mnt + nodeSelector: + hercules: hercules1 +--- +apiVersion: v1 +kind: Service +metadata: + name: hercules +spec: + ports: + - name: http + targetPort: 80 + port: 80 + selector: + app: hercules + type: NodePort diff --git a/kubernetes/dev/itop/README.md b/kubernetes/dev/itop/README.md new file mode 100755 index 0000000..8438547 --- /dev/null +++ b/kubernetes/dev/itop/README.md @@ -0,0 +1,4 @@ +sudo microk8s kubectl exec itop-66c56dd4bd-bb2t6 -- chown www-data:www-data /var/www/html/conf + exec my-itop /install-toolkit.sh + exec my-itop conf-w + exec my-itop conf-ro diff --git a/kubernetes/dev/itop/itop-integrations/Dockerfile b/kubernetes/dev/itop/itop-integrations/Dockerfile new file mode 100755 index 0000000..849b478 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/Dockerfile @@ -0,0 +1,3 @@ +FROM ubuntu +RUN apt update && apt upgrade -y +RUN apt install wget -y diff --git a/kubernetes/dev/itop/itop-integrations/add-person.sh b/kubernetes/dev/itop/itop-integrations/add-person.sh new file mode 100755 index 0000000..e093ab0 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/add-person.sh @@ -0,0 +1,2 @@ +php webservices/import.php --auth_user=login --auth_pwd=password --csvfile="location.csv" + --charset="UTF-8" --no_localize=1 --class="Location" --reconcialiationkeys="name,org_id->name" diff --git a/kubernetes/dev/itop/itop-integrations/apifunction.php b/kubernetes/dev/itop/itop-integrations/apifunction.php new file mode 100755 index 0000000..574d51d --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/apifunction.php @@ -0,0 +1,135 @@ +itopApi = array( + + "url" => "http://itop.alldcs.nl", + + "user" => "allard", + + "pass" => "Itop01@" + + ); + + + } + + + // Get details function + + + public function get($class,$key) { + + + $params['operation'] = 'core/get'; + + $params['class'] = $class; + + $params['key'] = $key; + + + $execute = $this->execute($params); + + RETURN $execute; + + + + } + + + + + // Apply stimulus to an object + + + + public function stimulus($param,$fields) { + + + $params['operation'] = 'core/apply_stimulus'; + + $params['comment'] = $param['comment']; + + $params['stimulus'] = $param['stimulus']; + + $params['class'] = $param['class']; + + $params['key'] = $param['key']; + + $params['fields'] = $fields; + + + $execute = $this->execute($params); + + + RETURN $execute; + + + } + + + // Hit data to itop server + + private function execute($params) { + + + $param['auth_user'] = $this->itopApi['user']; + + $param['auth_pwd'] = $this->itopApi['pass']; + + $param['json_data'] = json_encode($params); + + + $ch = curl_init(); + + curl_setopt($ch, CURLOPT_URL, $this->itopApi['url']); + + curl_setopt($ch, CURLOPT_POST, count($param)); + + curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($param)); + + curl_setopt($ch, CURLOPT_HEADER, false); + + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + + $result = json_decode(curl_exec($ch),true); + + curl_close($ch); + + + RETURN $result; // Returning data on array format + + } + + + // Testing purpose function + + + public function test() { + + + + echo $this->itopApi['url']; + + + + } + + + +} + + + + + +?> diff --git a/kubernetes/dev/itop/itop-integrations/change.json b/kubernetes/dev/itop/itop-integrations/change.json new file mode 100755 index 0000000..4230b3d --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/change.json @@ -0,0 +1,12 @@ +{ + "operation":"core/create", + "comment":"Synchronization from blah...", + "class":"RoutineChange", + "fields": + { + "org_id":"SELECT Organization WHERE name = 'ALLDCS'", + "caller_id":{"name":"Krings","first_name":"Allard"}, + "title":"container", + "description":"container gebouwd" + } +} diff --git a/kubernetes/dev/itop/itop-integrations/create-change.sh b/kubernetes/dev/itop/itop-integrations/create-change.sh new file mode 100755 index 0000000..abd076e --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/create-change.sh @@ -0,0 +1,28 @@ +#!/bin/bash +################################################################################## +# # +# Example script for creating a UserRequest ticket via the REST/JSON webservices # +# # +################################################################################## + +# iTop location and credentials, change them to suit your iTop installation +ITOP_URL="https://itop.alldcs.nl" +ITOP_USER="tekton" +ITOP_PWD="Itop01@@@" +ORGANIZATION="0002" +TITLE="Change registration" +DESCRIPTION="Container created" +CALLER="0001" +COMMENT="commentaar" +CHANGE="RoutineChange" +# Let's create the ticket via the REST/JSON API +JSON_DATA='{"operation":"core/create", "class":"'"${CHANGE}"'", "fields": {"org_id":"'"${ORGANIZATION}"'", "title":"'"$TITLE"'", "description":"'"$DESCRIPTION"'"}, "caller": "'"$CALLER"'", "comment": "'"$COMMENT"'"}' +RESULT=`wget -q --post-data='auth_user='"${ITOP_USER}"'&auth_pwd='"${ITOP_PWD}"'&json_data='"${JSON_DATA}" --no-check-certificate -O - "${ITOP_URL}/webservices/rest.php?version=1.0"` +PATTERN='"key":"([0-9])+"' +if [[ $RESULT =~ $PATTERN ]]; then + echo "Change created successfully" + else + echo "ERROR: failed to create change" + echo $RESULT + exit 1 +fi diff --git a/kubernetes/dev/itop/itop-integrations/curl.sh b/kubernetes/dev/itop/itop-integrations/curl.sh new file mode 100755 index 0000000..a9a2fb7 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/curl.sh @@ -0,0 +1 @@ +curl -X POST -F 'version=1.3' -F 'auth_user=allard' -F 'auth_pwd=Itop01@@@' http://itop.alldcs.nl/webservices/rest.php -F 'json_data=@./change.json' diff --git a/kubernetes/dev/itop/itop-integrations/itop-integrations/Dockerfile b/kubernetes/dev/itop/itop-integrations/itop-integrations/Dockerfile new file mode 100755 index 0000000..849b478 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/itop-integrations/Dockerfile @@ -0,0 +1,3 @@ +FROM ubuntu +RUN apt update && apt upgrade -y +RUN apt install wget -y diff --git a/kubernetes/dev/itop/itop-integrations/itop-integrations/add-person.sh b/kubernetes/dev/itop/itop-integrations/itop-integrations/add-person.sh new file mode 100755 index 0000000..e093ab0 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/itop-integrations/add-person.sh @@ -0,0 +1,2 @@ +php webservices/import.php --auth_user=login --auth_pwd=password --csvfile="location.csv" + --charset="UTF-8" --no_localize=1 --class="Location" --reconcialiationkeys="name,org_id->name" diff --git a/kubernetes/dev/itop/itop-integrations/itop-integrations/apifunction.php b/kubernetes/dev/itop/itop-integrations/itop-integrations/apifunction.php new file mode 100755 index 0000000..574d51d --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/itop-integrations/apifunction.php @@ -0,0 +1,135 @@ +itopApi = array( + + "url" => "http://itop.alldcs.nl", + + "user" => "allard", + + "pass" => "Itop01@" + + ); + + + } + + + // Get details function + + + public function get($class,$key) { + + + $params['operation'] = 'core/get'; + + $params['class'] = $class; + + $params['key'] = $key; + + + $execute = $this->execute($params); + + RETURN $execute; + + + + } + + + + + // Apply stimulus to an object + + + + public function stimulus($param,$fields) { + + + $params['operation'] = 'core/apply_stimulus'; + + $params['comment'] = $param['comment']; + + $params['stimulus'] = $param['stimulus']; + + $params['class'] = $param['class']; + + $params['key'] = $param['key']; + + $params['fields'] = $fields; + + + $execute = $this->execute($params); + + + RETURN $execute; + + + } + + + // Hit data to itop server + + private function execute($params) { + + + $param['auth_user'] = $this->itopApi['user']; + + $param['auth_pwd'] = $this->itopApi['pass']; + + $param['json_data'] = json_encode($params); + + + $ch = curl_init(); + + curl_setopt($ch, CURLOPT_URL, $this->itopApi['url']); + + curl_setopt($ch, CURLOPT_POST, count($param)); + + curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($param)); + + curl_setopt($ch, CURLOPT_HEADER, false); + + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + + $result = json_decode(curl_exec($ch),true); + + curl_close($ch); + + + RETURN $result; // Returning data on array format + + } + + + // Testing purpose function + + + public function test() { + + + + echo $this->itopApi['url']; + + + + } + + + +} + + + + + +?> diff --git a/kubernetes/dev/itop/itop-integrations/itop-integrations/change.json b/kubernetes/dev/itop/itop-integrations/itop-integrations/change.json new file mode 100755 index 0000000..4230b3d --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/itop-integrations/change.json @@ -0,0 +1,12 @@ +{ + "operation":"core/create", + "comment":"Synchronization from blah...", + "class":"RoutineChange", + "fields": + { + "org_id":"SELECT Organization WHERE name = 'ALLDCS'", + "caller_id":{"name":"Krings","first_name":"Allard"}, + "title":"container", + "description":"container gebouwd" + } +} diff --git a/kubernetes/dev/itop/itop-integrations/itop-integrations/create-change.sh b/kubernetes/dev/itop/itop-integrations/itop-integrations/create-change.sh new file mode 100755 index 0000000..db8e471 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/itop-integrations/create-change.sh @@ -0,0 +1,27 @@ +#!/bin/bash +################################################################################## +# # +# Example script for creating a UserRequest ticket via the REST/JSON webservices # +# # +################################################################################## + +# iTop location and credentials, change them to suit your iTop installation +ITOP_URL="https://itop.alldcs.nl" +ITOP_USER="allard" +ITOP_PWD="Itop01@@@" +ORGANIZATION="0001" +TITLE="UserRequest" +DESCRIPTION="Container created" +CALLER="0001" +COMMENT="commentaar" +CHANGE="RoutineChange" +# Let's create the ticket via the REST/JSON API +JSON_DATA='{"operation":"core/create", "class":"'"${CHANGE}"'", "fields": {"org_id":"'"${ORGANIZATION}"'", "title":"'"$TITLE"'", "description":"'"$DESCRIPTION"'"}, "caller": "'"$CALLER"'", "comment": "'"$COMMENT"'"}' +RESULT=`wget -q --post-data='auth_user='"${ITOP_USER}"'&auth_pwd='"${ITOP_PWD}"'&json_data='"${JSON_DATA}" --no-check-certificate -O - "${ITOP_URL}/webservices/rest.php?version=1.0"` +#PATTERN='"key":"([0-9])+"' +#if [[ $RESULT =~ $PATTERN ]]; then +# echo "Change created successfully" +# else +# echo "ERROR: failed to create change" +# echo $RESULT +#fi diff --git a/kubernetes/dev/itop/itop-integrations/itop-integrations/curl.sh b/kubernetes/dev/itop/itop-integrations/itop-integrations/curl.sh new file mode 100755 index 0000000..a9a2fb7 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/itop-integrations/curl.sh @@ -0,0 +1 @@ +curl -X POST -F 'version=1.3' -F 'auth_user=allard' -F 'auth_pwd=Itop01@@@' http://itop.alldcs.nl/webservices/rest.php -F 'json_data=@./change.json' diff --git a/kubernetes/dev/itop/itop-integrations/itop-integrations/my-json-operation.json b/kubernetes/dev/itop/itop-integrations/itop-integrations/my-json-operation.json new file mode 100755 index 0000000..5f313e9 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/itop-integrations/my-json-operation.json @@ -0,0 +1,13 @@ +{ + "operation":"core/create", + "comment":"Synchronization from blah...", + "class":"UserRequest", + "output_fields":"id, friendlyname", + "fields": + { + "org_id":"SELECT Organization WHERE name = 'ALLDCS'", + "caller_id":{"name":"Krings","first_name":"Allard"}, + "title":"issue blah", + "description":"something happened" + } +} diff --git a/kubernetes/dev/itop/itop-integrations/itop-integrations/person.csv b/kubernetes/dev/itop/itop-integrations/itop-integrations/person.csv new file mode 100755 index 0000000..863985b --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/itop-integrations/person.csv @@ -0,0 +1,3 @@ +Last Name,Status,Organization->Name,Email,Phone,Notification,Function,First Name +"Monet","Active","Demo","monet@demo.com","","yes","","Claude" +"Flaubert","Active","IT Department","flaubert@it.com","","yes","","Gustave" diff --git a/kubernetes/dev/itop/itop-integrations/itop-integrations/test-json.sh b/kubernetes/dev/itop/itop-integrations/itop-integrations/test-json.sh new file mode 100755 index 0000000..e979934 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/itop-integrations/test-json.sh @@ -0,0 +1,65 @@ +#!/bin/bash +################################################################################## +# # +# Example script for creating a UserRequest ticket via the REST/JSON webservices # +# # +################################################################################## + +# iTop location and credentials, change them to suit your iTop installation +ITOP_URL="https://itop.alldcs.nl" +ITOP_USER="allard" +ITOP_PWD="Itop01@@@" + + +# Parameters checking, see below for default values +if [ "$1" == "" ]; then + echo "Missing parameter 1: host" + exit -1 +else + HOST="$1" +fi + +if [ "$2" == "" ]; then + echo "Missing parameter 2: Service" + exit -1 +else + SERVICE="$2" +fi + +if [ "$3" == "" ]; then + echo "Missing parameter 3: Service Status" + exit -1 +else + SERVICE_STATUS="$3" +fi + +if [ "$4" == "" ]; then + echo "Missing parameter 4: Service State Type" + exit -1 +else + SERVICE_STATUS_TYPE="$4" +fi + +# Default values, adapt them to your configuration +TICKET_CLASS="UserRequest" +ORGANIZATION="SELECT Organization JOIN FunctionalCI AS CI ON CI.org_id=Organization.id WHERE CI.name='"${HOST}"'" +TITLE="Service Down on $1" +DESCRIPTION="The service $SERVICE is in state $SERVICE_STATUS on $HOST" + +# Let's create the ticket via the REST/JSON API +if [[ ( "$SERVICE_STATUS" != "OK" ) && ( "$SERVICE_STATUS" != "UP" ) && ( "$SERVICE_STATUS_TYPE" == "HARD" ) ]]; then + CIS_LIST='[{"functionalci_id":"SELECT FunctionalCI WHERE name=\"'"$1"'\"", "impact_code": "manual"}]' + JSON_DATA='{"operation":"core/create", "class":"'"${TICKET_CLASS}"'", "fields": {"functionalcis_list":'"${CIS_LIST}"', "org_id":"'"${ORGANIZATION}"'", "title":"'"$TITLE"'", "description":"'"$DESCRIPTION"'"}, "comment": "Created by the Monitoring", "output_fields": "id"}' + + RESULT=`wget -q --post-data='auth_user='"${ITOP_USER}"'&auth_pwd='"${ITOP_PWD}"'&json_data='"${JSON_DATA}" --no-check-certificate -O - "${ITOP_URL}/webservices/rest.php?version=1.0"` + + PATTERN='"key":"([0-9])+"' + if [[ $RESULT =~ $PATTERN ]]; then + echo "Ticket created successfully" + else + echo "ERROR: failed to create ticket" + echo $RESULT + fi +else + echo "Service State Type != HARD, doing nothing" +fi diff --git a/kubernetes/dev/itop/itop-integrations/itop-integrations/test.sh b/kubernetes/dev/itop/itop-integrations/itop-integrations/test.sh new file mode 100755 index 0000000..e1e9d60 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/itop-integrations/test.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +HTTP POST itop.alldcs.nl/webservices/rest.php?version=1.3 +auth_user=Itop_admin +auth_pwd=Itop01@ +json_data= +{ + "operation": "list_operations" +} diff --git a/kubernetes/dev/itop/itop-integrations/itop-integrations/tester.php b/kubernetes/dev/itop/itop-integrations/itop-integrations/tester.php new file mode 100755 index 0000000..8cdd310 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/itop-integrations/tester.php @@ -0,0 +1,73 @@ +get("Incident","1620"); + + echo "
";
+
+	print_r($api);
+
+	echo "
"; + + **/ + + +/** ASSIGN (Stimulus) Function Test **/ + + /* $param['comment'] = "Assigned from API"; + + $param['stimulus'] = "ev_assign"; + + $param['class'] = "Incident"; + + $param['key'] = "1620"; + + $fields['team_id'] = "39"; + + $fields['agent_id'] = "3"; + + $api = $itopApi->stimulus($param,$fields); + + echo "
";
+
+	print_r($api);
+
+	echo "
"; */ + + +/** RESOLVE (Stimulus) Function Test **/ + + + + /* $param['comment'] = "Resolved from API"; + + $param['stimulus'] = "ev_resolve"; + + $param['class'] = "Incident"; + + $param['key'] = "1653"; + + $fields['solution'] = "PC Sudah terinstall iReap"; + + + $api = $itopApi->stimulus($param,$fields); + + + echo "
";
+
+	print_r($api);
+
+	echo "
"; */ + + + +?> diff --git a/kubernetes/dev/itop/itop-integrations/my-json-operation.json b/kubernetes/dev/itop/itop-integrations/my-json-operation.json new file mode 100755 index 0000000..5f313e9 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/my-json-operation.json @@ -0,0 +1,13 @@ +{ + "operation":"core/create", + "comment":"Synchronization from blah...", + "class":"UserRequest", + "output_fields":"id, friendlyname", + "fields": + { + "org_id":"SELECT Organization WHERE name = 'ALLDCS'", + "caller_id":{"name":"Krings","first_name":"Allard"}, + "title":"issue blah", + "description":"something happened" + } +} diff --git a/kubernetes/dev/itop/itop-integrations/person.csv b/kubernetes/dev/itop/itop-integrations/person.csv new file mode 100755 index 0000000..863985b --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/person.csv @@ -0,0 +1,3 @@ +Last Name,Status,Organization->Name,Email,Phone,Notification,Function,First Name +"Monet","Active","Demo","monet@demo.com","","yes","","Claude" +"Flaubert","Active","IT Department","flaubert@it.com","","yes","","Gustave" diff --git a/kubernetes/dev/itop/itop-integrations/test-json.sh b/kubernetes/dev/itop/itop-integrations/test-json.sh new file mode 100755 index 0000000..e979934 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/test-json.sh @@ -0,0 +1,65 @@ +#!/bin/bash +################################################################################## +# # +# Example script for creating a UserRequest ticket via the REST/JSON webservices # +# # +################################################################################## + +# iTop location and credentials, change them to suit your iTop installation +ITOP_URL="https://itop.alldcs.nl" +ITOP_USER="allard" +ITOP_PWD="Itop01@@@" + + +# Parameters checking, see below for default values +if [ "$1" == "" ]; then + echo "Missing parameter 1: host" + exit -1 +else + HOST="$1" +fi + +if [ "$2" == "" ]; then + echo "Missing parameter 2: Service" + exit -1 +else + SERVICE="$2" +fi + +if [ "$3" == "" ]; then + echo "Missing parameter 3: Service Status" + exit -1 +else + SERVICE_STATUS="$3" +fi + +if [ "$4" == "" ]; then + echo "Missing parameter 4: Service State Type" + exit -1 +else + SERVICE_STATUS_TYPE="$4" +fi + +# Default values, adapt them to your configuration +TICKET_CLASS="UserRequest" +ORGANIZATION="SELECT Organization JOIN FunctionalCI AS CI ON CI.org_id=Organization.id WHERE CI.name='"${HOST}"'" +TITLE="Service Down on $1" +DESCRIPTION="The service $SERVICE is in state $SERVICE_STATUS on $HOST" + +# Let's create the ticket via the REST/JSON API +if [[ ( "$SERVICE_STATUS" != "OK" ) && ( "$SERVICE_STATUS" != "UP" ) && ( "$SERVICE_STATUS_TYPE" == "HARD" ) ]]; then + CIS_LIST='[{"functionalci_id":"SELECT FunctionalCI WHERE name=\"'"$1"'\"", "impact_code": "manual"}]' + JSON_DATA='{"operation":"core/create", "class":"'"${TICKET_CLASS}"'", "fields": {"functionalcis_list":'"${CIS_LIST}"', "org_id":"'"${ORGANIZATION}"'", "title":"'"$TITLE"'", "description":"'"$DESCRIPTION"'"}, "comment": "Created by the Monitoring", "output_fields": "id"}' + + RESULT=`wget -q --post-data='auth_user='"${ITOP_USER}"'&auth_pwd='"${ITOP_PWD}"'&json_data='"${JSON_DATA}" --no-check-certificate -O - "${ITOP_URL}/webservices/rest.php?version=1.0"` + + PATTERN='"key":"([0-9])+"' + if [[ $RESULT =~ $PATTERN ]]; then + echo "Ticket created successfully" + else + echo "ERROR: failed to create ticket" + echo $RESULT + fi +else + echo "Service State Type != HARD, doing nothing" +fi diff --git a/kubernetes/dev/itop/itop-integrations/test.sh b/kubernetes/dev/itop/itop-integrations/test.sh new file mode 100755 index 0000000..e1e9d60 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/test.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +HTTP POST itop.alldcs.nl/webservices/rest.php?version=1.3 +auth_user=Itop_admin +auth_pwd=Itop01@ +json_data= +{ + "operation": "list_operations" +} diff --git a/kubernetes/dev/itop/itop-integrations/tester.php b/kubernetes/dev/itop/itop-integrations/tester.php new file mode 100755 index 0000000..8cdd310 --- /dev/null +++ b/kubernetes/dev/itop/itop-integrations/tester.php @@ -0,0 +1,73 @@ +get("Incident","1620"); + + echo "
";
+
+	print_r($api);
+
+	echo "
"; + + **/ + + +/** ASSIGN (Stimulus) Function Test **/ + + /* $param['comment'] = "Assigned from API"; + + $param['stimulus'] = "ev_assign"; + + $param['class'] = "Incident"; + + $param['key'] = "1620"; + + $fields['team_id'] = "39"; + + $fields['agent_id'] = "3"; + + $api = $itopApi->stimulus($param,$fields); + + echo "
";
+
+	print_r($api);
+
+	echo "
"; */ + + +/** RESOLVE (Stimulus) Function Test **/ + + + + /* $param['comment'] = "Resolved from API"; + + $param['stimulus'] = "ev_resolve"; + + $param['class'] = "Incident"; + + $param['key'] = "1653"; + + $fields['solution'] = "PC Sudah terinstall iReap"; + + + $api = $itopApi->stimulus($param,$fields); + + + echo "
";
+
+	print_r($api);
+
+	echo "
"; */ + + + +?> diff --git a/kubernetes/dev/itop/itop.yaml b/kubernetes/dev/itop/itop.yaml new file mode 100755 index 0000000..f012ba7 --- /dev/null +++ b/kubernetes/dev/itop/itop.yaml @@ -0,0 +1,118 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: itop-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/itop/ + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: itop-pvc + namespace: itop +spec: + storageClassName: "" + volumeName: itop-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: itop + namespace: itop + labels: + app: itop +spec: + replicas: 1 + selector: + matchLabels: + app: itop + template: + metadata: + labels: + app: itop + spec: + containers: + - name: itop + image: allardkrings/itop:external + env: + - name: ITOP_DB_HOST + value: mariadb.mariadb + - name: ITOP_DB_NAME + value: itop + - name: ITOP_DB_USER + value: itop + - name: ITOP_DB_PASS + value: itop + volumeMounts: + - mountPath: /var/www/html/conf + name: itop + subPath: conf + volumes: + - name: itop + persistentVolumeClaim: + claimName: itop-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: itop + namespace: itop +spec: + selector: + app.kubernetes.io/name: itop + ports: + - protocol: TCP + port: 80 + targetPort: 80 + selector: + app: itop +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: itop-http + namespace: itop +spec: + entryPoints: + - web + routes: + - match: Host(`itop-dev.allarddcs.nl`) + kind: Rule + services: + - name: itop + port: 80 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: itop-tls + namespace: itop +spec: + entryPoints: + - websecure + routes: + - match: Host(`itop-dev.allarddcs.nl`) + kind: Rule + services: + - name: itop + port: 80 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/itop/test.sh b/kubernetes/dev/itop/test.sh new file mode 100755 index 0000000..e1e9d60 --- /dev/null +++ b/kubernetes/dev/itop/test.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +HTTP POST itop.alldcs.nl/webservices/rest.php?version=1.3 +auth_user=Itop_admin +auth_pwd=Itop01@ +json_data= +{ + "operation": "list_operations" +} diff --git a/kubernetes/dev/kafka/README.md b/kubernetes/dev/kafka/README.md new file mode 100755 index 0000000..4ab4f4c --- /dev/null +++ b/kubernetes/dev/kafka/README.md @@ -0,0 +1,3 @@ +nodeport installeren en dan met scriptjes Topics en Messages maken. + +Vergeet niet de nodeport in de scriptjes aan te passen! diff --git a/kubernetes/dev/kafka/create-message.sh b/kubernetes/dev/kafka/create-message.sh new file mode 100755 index 0000000..4da7f04 --- /dev/null +++ b/kubernetes/dev/kafka/create-message.sh @@ -0,0 +1,4 @@ +#!/bin/bash +echo $2 >> message +kcat -b 192.168.40.83:9092 -t $1 message -P +rm message diff --git a/kubernetes/dev/kafka/create-topic.sh b/kubernetes/dev/kafka/create-topic.sh new file mode 100755 index 0000000..e484bea --- /dev/null +++ b/kubernetes/dev/kafka/create-topic.sh @@ -0,0 +1,2 @@ +#!/bin/bash +kcat -b 192.168.40.83:9092 -t $1 -P diff --git a/kubernetes/dev/kafka/hallo b/kubernetes/dev/kafka/hallo new file mode 100755 index 0000000..efa7d21 --- /dev/null +++ b/kubernetes/dev/kafka/hallo @@ -0,0 +1 @@ +hallo hier ben ik! diff --git a/kubernetes/dev/kafka/helm/values.yaml b/kubernetes/dev/kafka/helm/values.yaml new file mode 100755 index 0000000..f2b38dc --- /dev/null +++ b/kubernetes/dev/kafka/helm/values.yaml @@ -0,0 +1,2401 @@ +# Copyright VMware, Inc. +# SPDX-License-Identifier: APACHE-2.0 + +## @section Global parameters +## Global Docker image parameters +## Please, note that this will override the image parameters, including dependencies, configured to use the global value +## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass +## + +## @param global.imageRegistry Global Docker image registry +## @param global.imagePullSecrets Global Docker registry secret names as an array +## @param global.storageClass Global StorageClass for Persistent Volume(s) +## +global: + imageRegistry: "" + ## E.g. + ## imagePullSecrets: + ## - myRegistryKeySecretName + ## + imagePullSecrets: [] + storageClass: "" + +## @section Common parameters +## + +## @param kubeVersion Override Kubernetes version +## +kubeVersion: "" +## @param nameOverride String to partially override common.names.fullname +## +nameOverride: "" +## @param fullnameOverride String to fully override common.names.fullname +## +fullnameOverride: "" +## @param clusterDomain Default Kubernetes cluster domain +## +clusterDomain: cluster.local +## @param commonLabels Labels to add to all deployed objects +## +commonLabels: {} +## @param commonAnnotations Annotations to add to all deployed objects +## +commonAnnotations: {} +## @param extraDeploy Array of extra objects to deploy with the release +## +extraDeploy: [] +## @param serviceBindings.enabled Create secret for service binding (Experimental) +## Ref: https://servicebinding.io/service-provider/ +## +serviceBindings: + enabled: false +## Enable diagnostic mode in the statefulset +## +diagnosticMode: + ## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden) + ## + enabled: false + ## @param diagnosticMode.command Command to override all containers in the statefulset + ## + command: + - sleep + ## @param diagnosticMode.args Args to override all containers in the statefulset + ## + args: + - infinity + +## @section Kafka parameters +## + +## Bitnami Kafka image version +## ref: https://hub.docker.com/r/bitnami/kafka/tags/ +## @param image.registry [default: REGISTRY_NAME] Kafka image registry +## @param image.repository [default: REPOSITORY_NAME/kafka] Kafka image repository +## @skip image.tag Kafka image tag (immutable tags are recommended) +## @param image.digest Kafka image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag +## @param image.pullPolicy Kafka image pull policy +## @param image.pullSecrets Specify docker-registry secret names as an array +## @param image.debug Specify if debug values should be set +## +image: + registry: docker.io + repository: bitnami/kafka + tag: 3.6.1-debian-11-r0 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Set to true if you would like to see extra information on logs + ## + debug: false +## @param extraInit Additional content for the kafka init script, rendered as a template. +## +extraInit: "" +## @param config Configuration file for Kafka, rendered as a template. Auto-generated based on chart values when not specified. +## @param existingConfigmap ConfigMap with Kafka Configuration +## NOTE: This will override the configuration based on values, please act carefully +## If both are set, the existingConfigMap will be used. +## +config: "" +existingConfigmap: "" +## @param extraConfig Additional configuration to be appended at the end of the generated Kafka configuration file. +## +extraConfig: "" +## @param secretConfig Additional configuration to be appended at the end of the generated Kafka configuration file. +## This value will be stored in a secret. +## +secretConfig: "" +## @param existingSecretConfig Secret with additonal configuration that will be appended to the end of the generated Kafka configuration file +## The key for the configuration should be: server-secret.properties +## NOTE: This will override secretConfig value +## +existingSecretConfig: "" +## @param log4j An optional log4j.properties file to overwrite the default of the Kafka brokers +## An optional log4j.properties file to overwrite the default of the Kafka brokers +## ref: https://github.com/apache/kafka/blob/trunk/config/log4j.properties +## +log4j: "" +## @param existingLog4jConfigMap The name of an existing ConfigMap containing a log4j.properties file +## The name of an existing ConfigMap containing a log4j.properties file +## NOTE: this will override `log4j` +## +existingLog4jConfigMap: "" +## @param heapOpts Kafka Java Heap size +## +heapOpts: -Xmx1024m -Xms1024m +## @param interBrokerProtocolVersion Override the setting 'inter.broker.protocol.version' during the ZK migration. +## Ref. https://docs.confluent.io/platform/current/installation/migrate-zk-kraft.html +## +interBrokerProtocolVersion: "" +## Kafka listeners configuration +## +listeners: + ## @param listeners.client.name Name for the Kafka client listener + ## @param listeners.client.containerPort Port for the Kafka client listener + ## @param listeners.client.protocol Security protocol for the Kafka client listener. Allowed values are 'PLAINTEXT', 'SASL_PLAINTEXT', 'SASL_SSL' and 'SSL' + ## @param listeners.client.sslClientAuth Optional. If SASL_SSL is enabled, configure mTLS TLS authentication type. If SSL protocol is enabled, overrides tls.authType for this listener. Allowed values are 'none', 'requested' and 'required' + client: + containerPort: 9092 + protocol: SASL_PLAINTEXT + name: CLIENT + sslClientAuth: "" + ## @param listeners.controller.name Name for the Kafka controller listener + ## @param listeners.controller.containerPort Port for the Kafka controller listener + ## @param listeners.controller.protocol Security protocol for the Kafka controller listener. Allowed values are 'PLAINTEXT', 'SASL_PLAINTEXT', 'SASL_SSL' and 'SSL' + ## @param listeners.controller.sslClientAuth Optional. If SASL_SSL is enabled, configure mTLS TLS authentication type. If SSL protocol is enabled, overrides tls.authType for this listener. Allowed values are 'none', 'requested' and 'required' + ## Ref: https://cwiki.apache.org/confluence/display/KAFKA/KIP-684+-+Support+mutual+TLS+authentication+on+SASL_SSL+listeners + controller: + name: CONTROLLER + containerPort: 9093 + protocol: SASL_PLAINTEXT + sslClientAuth: "" + ## @param listeners.interbroker.name Name for the Kafka inter-broker listener + ## @param listeners.interbroker.containerPort Port for the Kafka inter-broker listener + ## @param listeners.interbroker.protocol Security protocol for the Kafka inter-broker listener. Allowed values are 'PLAINTEXT', 'SASL_PLAINTEXT', 'SASL_SSL' and 'SSL' + ## @param listeners.interbroker.sslClientAuth Optional. If SASL_SSL is enabled, configure mTLS TLS authentication type. If SSL protocol is enabled, overrides tls.authType for this listener. Allowed values are 'none', 'requested' and 'required' + interbroker: + containerPort: 9094 + protocol: SASL_PLAINTEXT + name: INTERNAL + sslClientAuth: "" + ## @param listeners.external.containerPort Port for the Kafka external listener + ## @param listeners.external.protocol Security protocol for the Kafka external listener. . Allowed values are 'PLAINTEXT', 'SASL_PLAINTEXT', 'SASL_SSL' and 'SSL' + ## @param listeners.external.name Name for the Kafka external listener + ## @param listeners.external.sslClientAuth Optional. If SASL_SSL is enabled, configure mTLS TLS authentication type. If SSL protocol is enabled, overrides tls.sslClientAuth for this listener. Allowed values are 'none', 'requested' and 'required' + external: + containerPort: 9095 + protocol: SASL_PLAINTEXT + name: EXTERNAL + sslClientAuth: "" + ## @param listeners.extraListeners Array of listener objects to be appended to already existing listeners + ## E.g. + ## extraListeners: + ## - name: CUSTOM + ## containerPort: 9097 + ## protocol: SASL_PLAINTEXT + ## sslClientAuth: "" + ## + extraListeners: [] + ## NOTE: If set, below values will override configuration set using the above values (extraListeners.*, controller.*, interbroker.*, client.* and external.*) + ## @param listeners.overrideListeners Overrides the Kafka 'listeners' configuration setting. + ## @param listeners.advertisedListeners Overrides the Kafka 'advertised.listener' configuration setting. + ## @param listeners.securityProtocolMap Overrides the Kafka 'security.protocol.map' configuration setting. + overrideListeners: "" + advertisedListeners: "" + securityProtocolMap: "" + +## @section Kafka SASL parameters +## Kafka SASL settings for authentication, required if SASL_PLAINTEXT or SASL_SSL listeners are configured +## +sasl: + ## @param sasl.enabledMechanisms Comma-separated list of allowed SASL mechanisms when SASL listeners are configured. Allowed types: `PLAIN`, `SCRAM-SHA-256`, `SCRAM-SHA-512`, `OAUTHBEARER` + ## NOTE: At the moment, Kafka Raft mode does not support SCRAM, that is why only PLAIN is configured. + ## + enabledMechanisms: PLAIN,SCRAM-SHA-256,SCRAM-SHA-512 + ## @param sasl.interBrokerMechanism SASL mechanism for inter broker communication. + ## + interBrokerMechanism: PLAIN + ## @param sasl.controllerMechanism SASL mechanism for controller communications. + ## + controllerMechanism: PLAIN + ## Settings for oauthbearer mechanism + ## @param sasl.oauthbearer.tokenEndpointUrl The URL for the OAuth/OIDC identity provider + ## @param sasl.oauthbearer.jwksEndpointUrl The OAuth/OIDC provider URL from which the provider's JWKS (JSON Web Key Set) can be retrieved + ## @param sasl.oauthbearer.expectedAudience The comma-delimited setting for the broker to use to verify that the JWT was issued for one of the expected audiences + ## @param sasl.oauthbearer.subClaimName The OAuth claim name for the subject. + ## + oauthbearer: + tokenEndpointUrl: "" + jwksEndpointUrl: "" + expectedAudience: "" + subClaimName: "sub" + ## Credentials for inter-broker communications. + ## @param sasl.interbroker.user Username for inter-broker communications when SASL is enabled + ## @param sasl.interbroker.password Password for inter-broker communications when SASL is enabled. If not set and SASL is enabled for the controller listener, a random password will be generated. + ## @param sasl.interbroker.clientId Client ID for inter-broker communications when SASL is enabled with mechanism OAUTHBEARER + ## @param sasl.interbroker.clientSecret Client Secret for inter-broker communications when SASL is enabled with mechanism OAUTHBEARER. If not set and SASL is enabled for the controller listener, a random secret will be generated. + ## + interbroker: + user: inter_broker_user + password: "" + clientId: inter_broker_client + clientSecret: "" + ## Credentials for controller communications. + ## @param sasl.controller.user Username for controller communications when SASL is enabled + ## @param sasl.controller.password Password for controller communications when SASL is enabled. If not set and SASL is enabled for the inter-broker listener, a random password will be generated. + ## @param sasl.controller.clientId Client ID for controller communications when SASL is enabled with mechanism OAUTHBEARER + ## @param sasl.controller.clientSecret Client Secret for controller communications when SASL is enabled with mechanism OAUTHBEARER. If not set and SASL is enabled for the inter-broker listener, a random secret will be generated. + ## + controller: + user: controller_user + password: "" + clientId: controller_broker_client + clientSecret: "" + ## Credentials for client communications. + ## @param sasl.client.users Comma-separated list of usernames for client communications when SASL is enabled + ## @param sasl.client.passwords Comma-separated list of passwords for client communications when SASL is enabled, must match the number of client.users + ## + client: + users: + - user1 + passwords: "" + ## Credentials for Zookeeper communications. + ## @param sasl.zookeeper.user Username for zookeeper communications when SASL is enabled. + ## @param sasl.zookeeper.password Password for zookeeper communications when SASL is enabled. + ## + zookeeper: + user: "" + password: "" + ## @param sasl.existingSecret Name of the existing secret containing credentials for clientUsers, interBrokerUser, controllerUser and zookeeperUser + ## Create this secret running the command below where SECRET_NAME is the name of the secret you want to create: + ## kubectl create secret generic SECRET_NAME --from-literal=client-passwords=CLIENT_PASSWORD1,CLIENT_PASSWORD2 --from-literal=inter-broker-password=INTER_BROKER_PASSWORD --from-literal=inter-broker-client-secret=INTER_BROKER_CLIENT_SECRET --from-literal=controller-password=CONTROLLER_PASSWORD --from-literal=controller-client-secret=CONTROLLER_CLIENT_SECRET --from-literal=zookeeper-password=ZOOKEEPER_PASSWORD + ## The client secrets are only required when using oauthbearer as sasl mechanism. + ## Client, interbroker and controller passwords are only required if the sasl mechanism includes something other than oauthbearer. + ## + existingSecret: "" + +## @section Kafka TLS parameters +## Kafka TLS settings, required if SSL or SASL_SSL listeners are configured +## +tls: + ## @param tls.type Format to use for TLS certificates. Allowed types: `JKS` and `PEM` + ## + type: JKS + ## @param tls.pemChainIncluded Flag to denote that the Certificate Authority (CA) certificates are bundled with the endpoint cert. + ## Certificates must be in proper order, where the top certificate is the leaf and the bottom certificate is the top-most intermediate CA. + ## + pemChainIncluded: false + ## @param tls.existingSecret Name of the existing secret containing the TLS certificates for the Kafka nodes. + ## When using 'jks' format for certificates, each secret should contain a truststore and a keystore. + ## Create these secrets following the steps below: + ## 1) Generate your truststore and keystore files. Helpful script: https://raw.githubusercontent.com/confluentinc/confluent-platform-security-tools/master/kafka-generate-ssl.sh + ## 2) Rename your truststore to `kafka.truststore.jks`. + ## 3) Rename your keystores to `kafka--X.keystore.jks` where X is the replica number of the . + ## 4) Run the command below one time per broker to create its associated secret (SECRET_NAME_X is the name of the secret you want to create): + ## kubectl create secret generic SECRET_NAME_0 --from-file=kafka.truststore.jks=./kafka.truststore.jks \ + ## --from-file=kafka-controller-0.keystore.jks=./kafka-controller-0.keystore.jks --from-file=kafka-broker-0.keystore.jks=./kafka-broker-0.keystore.jks ... + ## + ## NOTE: Alternatively, a single keystore can be provided for all nodes under the key 'kafka.keystore.jks', this keystore will be used by all nodes unless overridden by the 'kafka--X.keystore.jks' file + ## + ## When using 'pem' format for certificates, each secret should contain a public CA certificate, a public certificate and one private key. + ## Create these secrets following the steps below: + ## 1) Create a certificate key and signing request per Kafka broker, and sign the signing request with your CA + ## 2) Rename your CA file to `kafka.ca.crt`. + ## 3) Rename your certificates to `kafka-X.tls.crt` where X is the ID of each Kafka broker. + ## 3) Rename your keys to `kafka-X.tls.key` where X is the ID of each Kafka broker. + ## 4) Run the command below one time per broker to create its associated secret (SECRET_NAME_X is the name of the secret you want to create): + ## kubectl create secret generic SECRET_NAME_0 --from-file=kafka-ca.crt=./kafka-ca.crt --from-file=kafka-controller-0.crt=./kafka-controller-0.crt --from-file=kafka-controller-0.key=./kafka-controller-0.key \ + ## --from-file=kafka-broker-0.crt=./kafka-broker-0.crt --from-file=kafka-broker-0.key=./kafka-broker-0.key ... + ## + ## NOTE: Alternatively, a single key and certificate can be provided for all nodes under the keys 'kafka.crt' and 'kafka.key'. These certificates will be used by all nodes unless overridden by the 'kafka--X.key' and 'kafka--X.crt' files + ## NOTE: Alternatively, a single key and certificate can be provided for all nodes under the keys 'tls.crt' and 'tls.key'. These certificates will be used by all nodes unless overridden by the 'kafka--X.key' and 'kafka--X.crt' files + ## + existingSecret: "" + ## @param tls.autoGenerated Generate automatically self-signed TLS certificates for Kafka brokers. Currently only supported if `tls.type` is `PEM` + ## Note: ignored when using 'jks' format or `tls.existingSecret` is not empty + ## + autoGenerated: false + ## @param tls.passwordsSecret Name of the secret containing the password to access the JKS files or PEM key when they are password-protected. (`key`: `password`) + ## + passwordsSecret: "" + ## @param tls.passwordsSecretKeystoreKey The secret key from the tls.passwordsSecret containing the password for the Keystore. + ## + passwordsSecretKeystoreKey: keystore-password + ## @param tls.passwordsSecretTruststoreKey The secret key from the tls.passwordsSecret containing the password for the Truststore. + ## + passwordsSecretTruststoreKey: truststore-password + ## @param tls.passwordsSecretPemPasswordKey The secret key from the tls.passwordsSecret containing the password for the PEM key inside 'tls.passwordsSecret'. + ## + passwordsSecretPemPasswordKey: "" + ## @param tls.keystorePassword Password to access the JKS keystore when it is password-protected. Ignored when 'tls.passwordsSecret' is provided. + ## When using tls.type=PEM, the generated keystore will use this password or randomly generate one. + ## + keystorePassword: "" + ## @param tls.truststorePassword Password to access the JKS truststore when it is password-protected. Ignored when 'tls.passwordsSecret' is provided. + ## When using tls.type=PEM, the generated keystore will use this password or randomly generate one. + ## + truststorePassword: "" + ## @param tls.keyPassword Password to access the PEM key when it is password-protected. + ## Note: ignored when using 'tls.passwordsSecret' + ## + keyPassword: "" + ## @param tls.jksKeystoreKey The secret key from the `tls.existingSecret` containing the keystore + ## Note: ignored when using 'pem' format for certificates. + ## + jksKeystoreKey: "" + ## @param tls.jksTruststoreSecret Name of the existing secret containing your truststore if truststore not existing or different from the one in the `tls.existingSecret` + ## Note: ignored when using 'pem' format for certificates. + ## + jksTruststoreSecret: "" + ## @param tls.jksTruststoreKey The secret key from the `tls.existingSecret` or `tls.jksTruststoreSecret` containing the truststore + ## Note: ignored when using 'pem' format for certificates. + ## + jksTruststoreKey: "" + ## @param tls.endpointIdentificationAlgorithm The endpoint identification algorithm to validate server hostname using server certificate + ## Disable server host name verification by setting it to an empty string. + ## ref: https://docs.confluent.io/current/kafka/authentication_ssl.html#optional-settings + ## + endpointIdentificationAlgorithm: https + ## @param tls.sslClientAuth Sets the default value for the ssl.client.auth Kafka setting. + ## ref: https://docs.confluent.io/current/kafka/authentication_ssl.html#optional-settings + ## + sslClientAuth: "required" + ## Zookeeper TLS connection configuration for Kafka + ## + zookeeper: + ## @param tls.zookeeper.enabled Enable TLS for Zookeeper client connections. + ## + enabled: false + ## @param tls.zookeeper.verifyHostname Hostname validation. + ## + verifyHostname: true + ## @param tls.zookeeper.existingSecret Name of the existing secret containing the TLS certificates for ZooKeeper client communications. + ## + existingSecret: "" + ## @param tls.zookeeper.existingSecretKeystoreKey The secret key from the tls.zookeeper.existingSecret containing the Keystore. + ## + existingSecretKeystoreKey: zookeeper.keystore.jks + ## @param tls.zookeeper.existingSecretTruststoreKey The secret key from the tls.zookeeper.existingSecret containing the Truststore. + ## + existingSecretTruststoreKey: zookeeper.truststore.jks + ## @param tls.zookeeper.passwordsSecret Existing secret containing Keystore and Truststore passwords. + ## + passwordsSecret: "" + ## @param tls.zookeeper.passwordsSecretKeystoreKey The secret key from the tls.zookeeper.passwordsSecret containing the password for the Keystore. + ## If no keystore password is included in the passwords secret, set this value to an empty string. + ## + passwordsSecretKeystoreKey: keystore-password + ## @param tls.zookeeper.passwordsSecretTruststoreKey The secret key from the tls.zookeeper.passwordsSecret containing the password for the Truststore. + ## If no truststore password is included in the passwords secret, set this value to an empty string. + ## + passwordsSecretTruststoreKey: truststore-password + ## @param tls.zookeeper.keystorePassword Password to access the JKS keystore when it is password-protected. Ignored when 'tls.passwordsSecret' is provided. + ## When using tls.type=PEM, the generated keystore will use this password or randomly generate one. + ## + keystorePassword: "" + ## @param tls.zookeeper.truststorePassword Password to access the JKS truststore when it is password-protected. Ignored when 'tls.passwordsSecret' is provided. + ## When using tls.type=PEM, the generated keystore will use this password or randomly generate one. + ## + truststorePassword: "" + +## @param extraEnvVars Extra environment variables to add to Kafka pods +## ref: https://github.com/bitnami/containers/tree/main/bitnami/kafka#configuration +## e.g: +## extraEnvVars: +## - name: KAFKA_CFG_BACKGROUND_THREADS +## value: "10" +## +extraEnvVars: [] +## @param extraEnvVarsCM ConfigMap with extra environment variables +## +extraEnvVarsCM: "" +## @param extraEnvVarsSecret Secret with extra environment variables +## +extraEnvVarsSecret: "" +## @param extraVolumes Optionally specify extra list of additional volumes for the Kafka pod(s) +## e.g: +## extraVolumes: +## - name: kafka-jaas +## secret: +## secretName: kafka-jaas +## +extraVolumes: [] +## @param extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Kafka container(s) +## extraVolumeMounts: +## - name: kafka-jaas +## mountPath: /bitnami/kafka/config/kafka_jaas.conf +## subPath: kafka_jaas.conf +## +extraVolumeMounts: [] +## @param sidecars Add additional sidecar containers to the Kafka pod(s) +## e.g: +## sidecars: +## - name: your-image-name +## image: your-image +## imagePullPolicy: Always +## ports: +## - name: portname +## containerPort: 1234 +## +sidecars: [] +## @param initContainers Add additional Add init containers to the Kafka pod(s) +## e.g: +## initContainers: +## - name: your-image-name +## image: your-image +## imagePullPolicy: Always +## ports: +## - name: portname +## containerPort: 1234 +## +initContainers: [] + +## @section Controller-eligible statefulset parameters +## +controller: + ## @param controller.replicaCount Number of Kafka controller-eligible nodes + ## Ignore this section if running in Zookeeper mode. + ## + replicaCount: 3 + ## @param controller.controllerOnly If set to true, controller nodes will be deployed as dedicated controllers, instead of controller+broker processes. + ## + controllerOnly: false + ## @param controller.minId Minimal node.id values for controller-eligible nodes. Do not change after first initialization. + ## Broker-only id increment their ID starting at this minimal value. + ## We recommend setting this this value high enough, as IDs under this value will be used by controller-elegible nodes + ## + minId: 0 + ## @param controller.zookeeperMigrationMode Set to true to deploy cluster controller quorum + ## This allows configuring both kraft and zookeeper modes simultaneously in order to perform the migration of the Kafka metadata. + ## Ref. https://docs.confluent.io/platform/current/installation/migrate-zk-kraft.html + ## + zookeeperMigrationMode: false + ## @param controller.config Configuration file for Kafka controller-eligible nodes, rendered as a template. Auto-generated based on chart values when not specified. + ## @param controller.existingConfigmap ConfigMap with Kafka Configuration for controller-eligible nodes. + ## NOTE: This will override the configuration based on values, please act carefully + ## If both are set, the existingConfigMap will be used. + ## + config: "" + existingConfigmap: "" + ## @param controller.extraConfig Additional configuration to be appended at the end of the generated Kafka controller-eligible nodes configuration file. + ## + extraConfig: "" + ## @param controller.secretConfig Additional configuration to be appended at the end of the generated Kafka controller-eligible nodes configuration file. + ## This value will be stored in a secret. + ## + secretConfig: "" + ## @param controller.existingSecretConfig Secret with additonal configuration that will be appended to the end of the generated Kafka controller-eligible nodes configuration file + ## The key for the configuration should be: server-secret.properties + ## NOTE: This will override controller.secretConfig value + ## + existingSecretConfig: "" + ## @param controller.heapOpts Kafka Java Heap size for controller-eligible nodes + ## + heapOpts: -Xmx1024m -Xms1024m + ## @param controller.command Override Kafka container command + ## + command: [] + ## @param controller.args Override Kafka container arguments + ## + args: [] + ## @param controller.extraEnvVars Extra environment variables to add to Kafka pods + ## ref: https://github.com/bitnami/containers/tree/main/bitnami/kafka#configuration + ## e.g: + ## extraEnvVars: + ## - name: KAFKA_CFG_BACKGROUND_THREADS + ## value: "10" + ## + extraEnvVars: [] + ## @param controller.extraEnvVarsCM ConfigMap with extra environment variables + ## + extraEnvVarsCM: "" + ## @param controller.extraEnvVarsSecret Secret with extra environment variables + ## + extraEnvVarsSecret: "" + ## @param controller.extraContainerPorts Kafka controller-eligible extra containerPorts. + ## + extraContainerPorts: [] + ## Configure extra options for Kafka containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param controller.livenessProbe.enabled Enable livenessProbe on Kafka containers + ## @param controller.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param controller.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param controller.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param controller.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param controller.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + timeoutSeconds: 5 + failureThreshold: 3 + periodSeconds: 10 + successThreshold: 1 + ## @param controller.readinessProbe.enabled Enable readinessProbe on Kafka containers + ## @param controller.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param controller.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param controller.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param controller.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param controller.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 5 + failureThreshold: 6 + timeoutSeconds: 5 + periodSeconds: 10 + successThreshold: 1 + ## @param controller.startupProbe.enabled Enable startupProbe on Kafka containers + ## @param controller.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param controller.startupProbe.periodSeconds Period seconds for startupProbe + ## @param controller.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param controller.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param controller.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param controller.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param controller.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param controller.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param controller.lifecycleHooks lifecycleHooks for the Kafka container to automate configuration before or after startup + ## + lifecycleHooks: {} + ## Kafka init container resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param controller.initContainerResources.limits The resources limits for the init container + ## @param controller.initContainerResources.requests The requested resources for the init container + ## + initContainerResources: + limits: {} + requests: {} + ## Kafka resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param controller.resources.limits The resources limits for the container + ## @param controller.resources.requests The requested resources for the container + ## + resources: + limits: {} + requests: {} + ## Kafka pods' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param controller.podSecurityContext.enabled Enable security context for the pods + ## @param controller.podSecurityContext.fsGroup Set Kafka pod's Security Context fsGroup + ## @param controller.podSecurityContext.seccompProfile.type Set Kafka pods's Security Context seccomp profile + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + seccompProfile: + type: "RuntimeDefault" + ## Kafka containers' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param controller.containerSecurityContext.enabled Enable Kafka containers' Security Context + ## @param controller.containerSecurityContext.runAsUser Set Kafka containers' Security Context runAsUser + ## @param controller.containerSecurityContext.runAsNonRoot Set Kafka containers' Security Context runAsNonRoot + ## @param controller.containerSecurityContext.allowPrivilegeEscalation Force the child process to be run as non-privileged + ## @param controller.containerSecurityContext.readOnlyRootFilesystem Allows the pod to mount the RootFS as ReadOnly only + ## @param controller.containerSecurityContext.capabilities.drop Set Kafka containers' server Security Context capabilities to be dropped + ## e.g: + ## containerSecurityContext: + ## enabled: true + ## capabilities: + ## drop: ["NET_RAW"] + ## readOnlyRootFilesystem: true + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + capabilities: + drop: ["ALL"] + ## @param controller.hostAliases Kafka pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param controller.hostNetwork Specify if host network should be enabled for Kafka pods + ## + hostNetwork: false + ## @param controller.hostIPC Specify if host IPC should be enabled for Kafka pods + ## + hostIPC: false + ## @param controller.podLabels Extra labels for Kafka pods + ## Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param controller.podAnnotations Extra annotations for Kafka pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param controller.podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param controller.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param controller.nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param controller.nodeAffinityPreset.key Node label key to match Ignored if `affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param controller.nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param controller.affinity Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: podAffinityPreset, podAntiAffinityPreset, and nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param controller.nodeSelector Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param controller.tolerations Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param controller.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param controller.terminationGracePeriodSeconds Seconds the pod needs to gracefully terminate + ## ref: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#hook-handler-execution + ## + terminationGracePeriodSeconds: "" + ## @param controller.podManagementPolicy StatefulSet controller supports relax its ordering guarantees while preserving its uniqueness and identity guarantees. There are two valid pod management policies: OrderedReady and Parallel + ## ref: https://kubernetes.io/docs/tutorials/stateful-application/basic-stateful-set/#pod-management-policy + ## + podManagementPolicy: Parallel + ## @param controller.minReadySeconds How many seconds a pod needs to be ready before killing the next, during update + ## + minReadySeconds: 0 + ## @param controller.priorityClassName Name of the existing priority class to be used by kafka pods + ## Ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ + ## + priorityClassName: "" + ## @param controller.runtimeClassName Name of the runtime class to be used by pod(s) + ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/ + ## + runtimeClassName: "" + ## @param controller.enableServiceLinks Whether information about services should be injected into pod's environment variable + ## The environment variables injected by service links are not used, but can lead to slow kafka boot times or slow running of the scripts when there are many services in the current namespace. + ## If you experience slow pod startups or slow running of the scripts you probably want to set this to `false`. + ## + enableServiceLinks: true + ## @param controller.schedulerName Name of the k8s scheduler (other than default) + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param controller.updateStrategy.type Kafka statefulset strategy type + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + type: RollingUpdate + ## @param controller.extraVolumes Optionally specify extra list of additional volumes for the Kafka pod(s) + ## e.g: + ## extraVolumes: + ## - name: kafka-jaas + ## secret: + ## secretName: kafka-jaas + ## + extraVolumes: [] + ## @param controller.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Kafka container(s) + ## extraVolumeMounts: + ## - name: kafka-jaas + ## mountPath: /bitnami/kafka/config/kafka_jaas.conf + ## subPath: kafka_jaas.conf + ## + extraVolumeMounts: [] + ## @param controller.sidecars Add additional sidecar containers to the Kafka pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param controller.initContainers Add additional Add init containers to the Kafka pod(s) + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## Kafka Pod Disruption Budget + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/disruptions/ + ## @param controller.pdb.create Deploy a pdb object for the Kafka pod + ## @param controller.pdb.minAvailable Maximum number/percentage of unavailable Kafka replicas + ## @param controller.pdb.maxUnavailable Maximum number/percentage of unavailable Kafka replicas + ## + pdb: + create: false + minAvailable: "" + maxUnavailable: 1 + ## Enable persistence using Persistent Volume Claims + ## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/ + ## + persistence: + ## @param controller.persistence.enabled Enable Kafka data persistence using PVC, note that ZooKeeper persistence is unaffected + ## + enabled: true + ## @param controller.persistence.existingClaim A manually managed Persistent Volume and Claim + ## If defined, PVC must be created manually before volume will be bound + ## The value is evaluated as a template + ## + existingClaim: "" + ## @param controller.persistence.storageClass PVC Storage Class for Kafka data volume + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. + ## + storageClass: "" + ## @param controller.persistence.accessModes Persistent Volume Access Modes + ## + accessModes: + - ReadWriteOnce + ## @param controller.persistence.size PVC Storage Request for Kafka data volume + ## + size: 8Gi + ## @param controller.persistence.annotations Annotations for the PVC + ## + annotations: {} + ## @param controller.persistence.labels Labels for the PVC + ## + labels: {} + ## @param controller.persistence.selector Selector to match an existing Persistent Volume for Kafka data PVC. If set, the PVC can't have a PV dynamically provisioned for it + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + ## @param controller.persistence.mountPath Mount path of the Kafka data volume + ## + mountPath: /bitnami/kafka + ## Log Persistence parameters + ## + logPersistence: + ## @param controller.logPersistence.enabled Enable Kafka logs persistence using PVC, note that ZooKeeper persistence is unaffected + ## + enabled: false + ## @param controller.logPersistence.existingClaim A manually managed Persistent Volume and Claim + ## If defined, PVC must be created manually before volume will be bound + ## The value is evaluated as a template + ## + existingClaim: "" + ## @param controller.logPersistence.storageClass PVC Storage Class for Kafka logs volume + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. + ## + storageClass: "" + ## @param controller.logPersistence.accessModes Persistent Volume Access Modes + ## + accessModes: + - ReadWriteOnce + ## @param controller.logPersistence.size PVC Storage Request for Kafka logs volume + ## + size: 8Gi + ## @param controller.logPersistence.annotations Annotations for the PVC + ## + annotations: {} + ## @param controller.logPersistence.selector Selector to match an existing Persistent Volume for Kafka log data PVC. If set, the PVC can't have a PV dynamically provisioned for it + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + ## @param controller.logPersistence.mountPath Mount path of the Kafka logs volume + ## + mountPath: /opt/bitnami/kafka/logs + +## @section Broker-only statefulset parameters +## +broker: + ## @param broker.replicaCount Number of Kafka broker-only nodes + ## + replicaCount: 0 + ## @param broker.minId Minimal node.id values for broker-only nodes. Do not change after first initialization. + ## Broker-only id increment their ID starting at this minimal value. + ## We recommend setting this this value high enough, as IDs under this value will be used by controller-eligible nodes + ## + ## + minId: 100 + ## @param broker.zookeeperMigrationMode Set to true to deploy cluster controller quorum + ## This allows configuring both kraft and zookeeper modes simultaneously in order to perform the migration of the Kafka metadata. + ## Ref. https://docs.confluent.io/platform/current/installation/migrate-zk-kraft.html + ## + zookeeperMigrationMode: false + ## @param broker.config Configuration file for Kafka broker-only nodes, rendered as a template. Auto-generated based on chart values when not specified. + ## @param broker.existingConfigmap ConfigMap with Kafka Configuration for broker-only nodes. + ## NOTE: This will override the configuration based on values, please act carefully + ## If both are set, the existingConfigMap will be used. + ## + config: "" + existingConfigmap: "" + ## @param broker.extraConfig Additional configuration to be appended at the end of the generated Kafka broker-only nodes configuration file. + ## + extraConfig: "" + ## @param broker.secretConfig Additional configuration to be appended at the end of the generated Kafka broker-only nodes configuration file. + ## This value will be stored in a secret. + ## + secretConfig: "" + ## @param broker.existingSecretConfig Secret with additonal configuration that will be appended to the end of the generated Kafka broker-only nodes configuration file + ## The key for the configuration should be: server-secret.properties + ## NOTE: This will override broker.secretConfig value + ## + existingSecretConfig: "" + ## @param broker.heapOpts Kafka Java Heap size for broker-only nodes + ## + heapOpts: -Xmx1024m -Xms1024m + ## @param broker.command Override Kafka container command + ## + command: [] + ## @param broker.args Override Kafka container arguments + ## + args: [] + ## @param broker.extraEnvVars Extra environment variables to add to Kafka pods + ## ref: https://github.com/bitnami/containers/tree/main/bitnami/kafka#configuration + ## e.g: + ## extraEnvVars: + ## - name: KAFKA_CFG_BACKGROUND_THREADS + ## value: "10" + ## + extraEnvVars: [] + ## @param broker.extraEnvVarsCM ConfigMap with extra environment variables + ## + extraEnvVarsCM: "" + ## @param broker.extraEnvVarsSecret Secret with extra environment variables + ## + extraEnvVarsSecret: "" + ## @param broker.extraContainerPorts Kafka broker-only extra containerPorts. + ## + extraContainerPorts: [] + ## Configure extra options for Kafka containers' liveness, readiness and startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes + ## @param broker.livenessProbe.enabled Enable livenessProbe on Kafka containers + ## @param broker.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param broker.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param broker.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param broker.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param broker.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + timeoutSeconds: 5 + failureThreshold: 3 + periodSeconds: 10 + successThreshold: 1 + ## @param broker.readinessProbe.enabled Enable readinessProbe on Kafka containers + ## @param broker.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param broker.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param broker.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param broker.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param broker.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 5 + failureThreshold: 6 + timeoutSeconds: 5 + periodSeconds: 10 + successThreshold: 1 + ## @param broker.startupProbe.enabled Enable startupProbe on Kafka containers + ## @param broker.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param broker.startupProbe.periodSeconds Period seconds for startupProbe + ## @param broker.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param broker.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param broker.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 15 + successThreshold: 1 + ## @param broker.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param broker.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param broker.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param broker.lifecycleHooks lifecycleHooks for the Kafka container to automate configuration before or after startup + ## + lifecycleHooks: {} + ## Kafka init container resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param broker.initContainerResources.limits The resources limits for the container + ## @param broker.initContainerResources.requests The requested resources for the container + ## + initContainerResources: + limits: {} + requests: {} + ## Kafka resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param broker.resources.limits The resources limits for the container + ## @param broker.resources.requests The requested resources for the container + ## + resources: + limits: {} + requests: {} + ## Kafka pods' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param broker.podSecurityContext.enabled Enable security context for the pods + ## @param broker.podSecurityContext.fsGroup Set Kafka pod's Security Context fsGroup + ## @param broker.podSecurityContext.seccompProfile.type Set Kafka pod's Security Context seccomp profile + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + seccompProfile: + type: "RuntimeDefault" + ## Kafka containers' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param broker.containerSecurityContext.enabled Enable Kafka containers' Security Context + ## @param broker.containerSecurityContext.runAsUser Set Kafka containers' Security Context runAsUser + ## @param broker.containerSecurityContext.runAsNonRoot Set Kafka containers' Security Context runAsNonRoot + ## @param broker.containerSecurityContext.allowPrivilegeEscalation Force the child process to be run as non-privileged + ## @param broker.containerSecurityContext.readOnlyRootFilesystem Allows the pod to mount the RootFS as ReadOnly only + ## @param broker.containerSecurityContext.capabilities.drop Set Kafka containers' server Security Context capabilities to be dropped + ## e.g: + ## containerSecurityContext: + ## enabled: true + ## capabilities: + ## drop: ["NET_RAW"] + ## readOnlyRootFilesystem: true + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + capabilities: + drop: ["ALL"] + ## @param broker.hostAliases Kafka pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param broker.hostNetwork Specify if host network should be enabled for Kafka pods + ## + hostNetwork: false + ## @param broker.hostIPC Specify if host IPC should be enabled for Kafka pods + ## + hostIPC: false + ## @param broker.podLabels Extra labels for Kafka pods + ## Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param broker.podAnnotations Extra annotations for Kafka pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param broker.podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param broker.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param broker.nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param broker.nodeAffinityPreset.key Node label key to match Ignored if `affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param broker.nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param broker.affinity Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: podAffinityPreset, podAntiAffinityPreset, and nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param broker.nodeSelector Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param broker.tolerations Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param broker.topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template + ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods + ## + topologySpreadConstraints: [] + ## @param broker.terminationGracePeriodSeconds Seconds the pod needs to gracefully terminate + ## ref: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#hook-handler-execution + ## + terminationGracePeriodSeconds: "" + ## @param broker.podManagementPolicy StatefulSet controller supports relax its ordering guarantees while preserving its uniqueness and identity guarantees. There are two valid pod management policies: OrderedReady and Parallel + ## ref: https://kubernetes.io/docs/tutorials/stateful-application/basic-stateful-set/#pod-management-policy + ## + podManagementPolicy: Parallel + ## @param broker.minReadySeconds How many seconds a pod needs to be ready before killing the next, during update + ## + minReadySeconds: 0 + ## @param broker.priorityClassName Name of the existing priority class to be used by kafka pods + ## Ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ + ## + priorityClassName: "" + ## @param broker.runtimeClassName Name of the runtime class to be used by pod(s) + ## ref: https://kubernetes.io/docs/concepts/containers/runtime-class/ + ## + runtimeClassName: "" + ## @param broker.enableServiceLinks Whether information about services should be injected into pod's environment variable + ## The environment variables injected by service links are not used, but can lead to slow kafka boot times or slow running of the scripts when there are many services in the current namespace. + ## If you experience slow pod startups or slow running of the scripts you probably want to set this to `false`. + ## + enableServiceLinks: true + ## @param broker.schedulerName Name of the k8s scheduler (other than default) + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param broker.updateStrategy.type Kafka statefulset strategy type + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + type: RollingUpdate + ## @param broker.extraVolumes Optionally specify extra list of additional volumes for the Kafka pod(s) + ## e.g: + ## extraVolumes: + ## - name: kafka-jaas + ## secret: + ## secretName: kafka-jaas + ## + extraVolumes: [] + ## @param broker.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Kafka container(s) + ## extraVolumeMounts: + ## - name: kafka-jaas + ## mountPath: /bitnami/kafka/config/kafka_jaas.conf + ## subPath: kafka_jaas.conf + ## + extraVolumeMounts: [] + ## @param broker.sidecars Add additional sidecar containers to the Kafka pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param broker.initContainers Add additional Add init containers to the Kafka pod(s) + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## Kafka Pod Disruption Budget + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/disruptions/ + ## @param broker.pdb.create Deploy a pdb object for the Kafka pod + ## @param broker.pdb.minAvailable Maximum number/percentage of unavailable Kafka replicas + ## @param broker.pdb.maxUnavailable Maximum number/percentage of unavailable Kafka replicas + ## + pdb: + create: false + minAvailable: "" + maxUnavailable: 1 + ## Enable persistence using Persistent Volume Claims + ## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/ + ## + persistence: + ## @param broker.persistence.enabled Enable Kafka data persistence using PVC, note that ZooKeeper persistence is unaffected + ## + enabled: true + ## @param broker.persistence.existingClaim A manually managed Persistent Volume and Claim + ## If defined, PVC must be created manually before volume will be bound + ## The value is evaluated as a template + ## + existingClaim: "" + ## @param broker.persistence.storageClass PVC Storage Class for Kafka data volume + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. + ## + storageClass: "" + ## @param broker.persistence.accessModes Persistent Volume Access Modes + ## + accessModes: + - ReadWriteOnce + ## @param broker.persistence.size PVC Storage Request for Kafka data volume + ## + size: 8Gi + ## @param broker.persistence.annotations Annotations for the PVC + ## + annotations: {} + ## @param broker.persistence.labels Labels for the PVC + ## + labels: {} + ## @param broker.persistence.selector Selector to match an existing Persistent Volume for Kafka data PVC. If set, the PVC can't have a PV dynamically provisioned for it + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + ## @param broker.persistence.mountPath Mount path of the Kafka data volume + ## + mountPath: /bitnami/kafka + ## Log Persistence parameters + ## + logPersistence: + ## @param broker.logPersistence.enabled Enable Kafka logs persistence using PVC, note that ZooKeeper persistence is unaffected + ## + enabled: false + ## @param broker.logPersistence.existingClaim A manually managed Persistent Volume and Claim + ## If defined, PVC must be created manually before volume will be bound + ## The value is evaluated as a template + ## + existingClaim: "" + ## @param broker.logPersistence.storageClass PVC Storage Class for Kafka logs volume + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. + ## + storageClass: "" + ## @param broker.logPersistence.accessModes Persistent Volume Access Modes + ## + accessModes: + - ReadWriteOnce + ## @param broker.logPersistence.size PVC Storage Request for Kafka logs volume + ## + size: 8Gi + ## @param broker.logPersistence.annotations Annotations for the PVC + ## + annotations: {} + ## @param broker.logPersistence.selector Selector to match an existing Persistent Volume for Kafka log data PVC. If set, the PVC can't have a PV dynamically provisioned for it + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + ## @param broker.logPersistence.mountPath Mount path of the Kafka logs volume + ## + mountPath: /opt/bitnami/kafka/logs + + +## @section Traffic Exposure parameters +## + +## Service parameters +## +service: + ## @param service.type Kubernetes Service type + ## + type: ClusterIP + ## @param service.ports.client Kafka svc port for client connections + ## @param service.ports.controller Kafka svc port for controller connections. It is used if "kraft.enabled: true" + ## @param service.ports.interbroker Kafka svc port for inter-broker connections + ## @param service.ports.external Kafka svc port for external connections + ## + ports: + client: 9092 + controller: 9093 + interbroker: 9094 + external: 9095 + ## @param service.extraPorts Extra ports to expose in the Kafka service (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param service.nodePorts.client Node port for the Kafka client connections + ## @param service.nodePorts.external Node port for the Kafka external connections + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + client: "" + external: "" + ## @param service.sessionAffinity Control where client requests go, to the same pod or round-robin + ## Values: ClientIP or None + ## ref: https://kubernetes.io/docs/user-guide/services/ + ## + sessionAffinity: None + ## @param service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## @param service.clusterIP Kafka service Cluster IP + ## e.g.: + ## clusterIP: None + ## + clusterIP: "" + ## @param service.loadBalancerIP Kafka service Load Balancer IP + ## ref: https://kubernetes.io/docs/user-guide/services/#type-loadbalancer + ## + loadBalancerIP: "" + ## @param service.loadBalancerSourceRanges Kafka service Load Balancer sources + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param service.externalTrafficPolicy Kafka service external traffic policy + ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param service.annotations Additional custom annotations for Kafka service + ## + annotations: {} + ## Headless service properties + ## + headless: + controller: + ## @param service.headless.controller.annotations Annotations for the controller-eligible headless service. + ## + annotations: {} + ## @param service.headless.controller.labels Labels for the controller-eligible headless service. + ## + labels: {} + broker: + ## @param service.headless.broker.annotations Annotations for the broker-only headless service. + ## + annotations: {} + ## @param service.headless.broker.labels Labels for the broker-only headless service. + ## + labels: {} +## External Access to Kafka brokers configuration +## +externalAccess: + ## @param externalAccess.enabled Enable Kubernetes external cluster access to Kafka brokers + ## + enabled: false + ## External IPs auto-discovery configuration + ## An init container is used to auto-detect LB IPs or node ports by querying the K8s API + ## Note: RBAC might be required + ## + autoDiscovery: + ## @param externalAccess.autoDiscovery.enabled Enable using an init container to auto-detect external IPs/ports by querying the K8s API + ## + enabled: false + ## Bitnami Kubectl image + ## ref: https://hub.docker.com/r/bitnami/kubectl/tags/ + ## @param externalAccess.autoDiscovery.image.registry [default: REGISTRY_NAME] Init container auto-discovery image registry + ## @param externalAccess.autoDiscovery.image.repository [default: REPOSITORY_NAME/kubectl] Init container auto-discovery image repository + ## @skip externalAccess.autoDiscovery.image.tag Init container auto-discovery image tag (immutable tags are recommended) + ## @param externalAccess.autoDiscovery.image.digest Kubectl image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param externalAccess.autoDiscovery.image.pullPolicy Init container auto-discovery image pull policy + ## @param externalAccess.autoDiscovery.image.pullSecrets Init container auto-discovery image pull secrets + ## + image: + registry: docker.io + repository: bitnami/kubectl + tag: 1.28.4-debian-11-r2 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets (secrets must be manually created in the namespace) + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Init Container resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param externalAccess.autoDiscovery.resources.limits The resources limits for the auto-discovery init container + ## @param externalAccess.autoDiscovery.resources.requests The requested resources for the auto-discovery init container + ## + resources: + limits: {} + requests: {} + ## Service settings + controller: + ## @param externalAccess.controller.forceExpose If set to true, force exposing controller-eligible nodes although they are configured as controller-only nodes + ## + forceExpose: false + ## Parameters to configure K8s service(s) used to externally access Kafka brokers + ## Note: A new service per broker will be created + ## + service: + ## @param externalAccess.controller.service.type Kubernetes Service type for external access. It can be NodePort, LoadBalancer or ClusterIP + ## + type: LoadBalancer + ## @param externalAccess.controller.service.ports.external Kafka port used for external access when service type is LoadBalancer + ## + ports: + external: 9094 + ## @param externalAccess.controller.service.loadBalancerIPs Array of load balancer IPs for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## loadBalancerIPs: + ## - X.X.X.X + ## - Y.Y.Y.Y + ## + loadBalancerIPs: [] + ## @param externalAccess.controller.service.loadBalancerNames Array of load balancer Names for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## loadBalancerNames: + ## - broker1.external.example.com + ## - broker2.external.example.com + ## + loadBalancerNames: [] + ## @param externalAccess.controller.service.loadBalancerAnnotations Array of load balancer annotations for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## loadBalancerAnnotations: + ## - external-dns.alpha.kubernetes.io/hostname: broker1.external.example.com. + ## - external-dns.alpha.kubernetes.io/hostname: broker2.external.example.com. + ## + loadBalancerAnnotations: [] + ## @param externalAccess.controller.service.loadBalancerSourceRanges Address(es) that are allowed when service is LoadBalancer + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param externalAccess.controller.service.nodePorts Array of node ports used for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## nodePorts: + ## - 30001 + ## - 30002 + ## + nodePorts: [] + ## @param externalAccess.controller.service.externalIPs Use distinct service host IPs to configure Kafka external listener when service type is NodePort. Length must be the same as replicaCount + ## e.g: + ## externalIPs: + ## - X.X.X.X + ## - Y.Y.Y.Y + ## + externalIPs: [] + ## @param externalAccess.controller.service.useHostIPs Use service host IPs to configure Kafka external listener when service type is NodePort + ## + useHostIPs: false + ## @param externalAccess.controller.service.usePodIPs using the MY_POD_IP address for external access. + ## + usePodIPs: false + ## @param externalAccess.controller.service.domain Domain or external ip used to configure Kafka external listener when service type is NodePort or ClusterIP + ## NodePort: If not specified, the container will try to get the kubernetes node external IP + ## ClusterIP: Must be specified, ingress IP or domain where tcp for external ports is configured + ## + domain: "" + ## @param externalAccess.controller.service.publishNotReadyAddresses Indicates that any agent which deals with endpoints for this Service should disregard any indications of ready/not-ready + ## ref: https://kubernetes.io/docs/reference/kubernetes-api/service-resources/service-v1/ + ## + publishNotReadyAddresses: false + ## @param externalAccess.controller.service.labels Service labels for external access + ## + labels: {} + ## @param externalAccess.controller.service.annotations Service annotations for external access + ## + annotations: {} + ## @param externalAccess.controller.service.extraPorts Extra ports to expose in the Kafka external service + ## + extraPorts: [] + broker: + ## Parameters to configure K8s service(s) used to externally access Kafka brokers + ## Note: A new service per broker will be created + ## + service: + ## @param externalAccess.broker.service.type Kubernetes Service type for external access. It can be NodePort, LoadBalancer or ClusterIP + ## + type: LoadBalancer + ## @param externalAccess.broker.service.ports.external Kafka port used for external access when service type is LoadBalancer + ## + ports: + external: 9094 + ## @param externalAccess.broker.service.loadBalancerIPs Array of load balancer IPs for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## loadBalancerIPs: + ## - X.X.X.X + ## - Y.Y.Y.Y + ## + loadBalancerIPs: [] + ## @param externalAccess.broker.service.loadBalancerNames Array of load balancer Names for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## loadBalancerNames: + ## - broker1.external.example.com + ## - broker2.external.example.com + ## + loadBalancerNames: [] + ## @param externalAccess.broker.service.loadBalancerAnnotations Array of load balancer annotations for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## loadBalancerAnnotations: + ## - external-dns.alpha.kubernetes.io/hostname: broker1.external.example.com. + ## - external-dns.alpha.kubernetes.io/hostname: broker2.external.example.com. + ## + loadBalancerAnnotations: [] + ## @param externalAccess.broker.service.loadBalancerSourceRanges Address(es) that are allowed when service is LoadBalancer + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g: + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param externalAccess.broker.service.nodePorts Array of node ports used for each Kafka broker. Length must be the same as replicaCount + ## e.g: + ## nodePorts: + ## - 30001 + ## - 30002 + ## + nodePorts: [] + ## @param externalAccess.broker.service.externalIPs Use distinct service host IPs to configure Kafka external listener when service type is NodePort. Length must be the same as replicaCount + ## e.g: + ## externalIPs: + ## - X.X.X.X + ## - Y.Y.Y.Y + ## + externalIPs: [] + ## @param externalAccess.broker.service.useHostIPs Use service host IPs to configure Kafka external listener when service type is NodePort + ## + useHostIPs: false + ## @param externalAccess.broker.service.usePodIPs using the MY_POD_IP address for external access. + ## + usePodIPs: false + ## @param externalAccess.broker.service.domain Domain or external ip used to configure Kafka external listener when service type is NodePort or ClusterIP + ## NodePort: If not specified, the container will try to get the kubernetes node external IP + ## ClusterIP: Must be specified, ingress IP or domain where tcp for external ports is configured + ## + domain: "" + ## @param externalAccess.broker.service.publishNotReadyAddresses Indicates that any agent which deals with endpoints for this Service should disregard any indications of ready/not-ready + ## ref: https://kubernetes.io/docs/reference/kubernetes-api/service-resources/service-v1/ + ## + publishNotReadyAddresses: false + ## @param externalAccess.broker.service.labels Service labels for external access + ## + labels: {} + ## @param externalAccess.broker.service.annotations Service annotations for external access + ## + annotations: {} + ## @param externalAccess.broker.service.extraPorts Extra ports to expose in the Kafka external service + ## + extraPorts: [] +## Network policies +## Ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/ +## +networkPolicy: + ## @param networkPolicy.enabled Specifies whether a NetworkPolicy should be created + ## + enabled: false + ## @param networkPolicy.allowExternal Don't require client label for connections + ## When set to false, only pods with the correct client label will have network access to the port Kafka is + ## listening on. When true, zookeeper accept connections from any source (with the correct destination port). + ## + allowExternal: true + ## @param networkPolicy.explicitNamespacesSelector A Kubernetes LabelSelector to explicitly select namespaces from which traffic could be allowed + ## If explicitNamespacesSelector is missing or set to {}, only client Pods that are in the networkPolicy's namespace + ## and that match other criteria, the ones that have the good label, can reach the kafka. + ## But sometimes, we want the kafka to be accessible to clients from other namespaces, in this case, we can use this + ## LabelSelector to select these namespaces, note that the networkPolicy's namespace should also be explicitly added. + ## + ## e.g: + ## explicitNamespacesSelector: + ## matchLabels: + ## role: frontend + ## matchExpressions: + ## - {key: role, operator: In, values: [frontend]} + ## + explicitNamespacesSelector: {} + ## @param networkPolicy.externalAccess.from customize the from section for External Access on tcp-external port + ## e.g: + ## - ipBlock: + ## cidr: 172.9.0.0/16 + ## except: + ## - 172.9.1.0/24 + ## + externalAccess: + from: [] + ## @param networkPolicy.egressRules.customRules [object] Custom network policy rule + ## + egressRules: + ## Additional custom egress rules + ## e.g: + ## customRules: + ## - to: + ## - namespaceSelector: + ## matchLabels: + ## label: example + ## + customRules: [] + +## @section Volume Permissions parameters +## + +## Init containers parameters: +## volumePermissions: Change the owner and group of the persistent volume(s) mountpoint(s) to 'runAsUser:fsGroup' on each node +## +volumePermissions: + ## @param volumePermissions.enabled Enable init container that changes the owner and group of the persistent volume + ## + enabled: false + ## @param volumePermissions.image.registry [default: REGISTRY_NAME] Init container volume-permissions image registry + ## @param volumePermissions.image.repository [default: REPOSITORY_NAME/os-shell] Init container volume-permissions image repository + ## @skip volumePermissions.image.tag Init container volume-permissions image tag (immutable tags are recommended) + ## @param volumePermissions.image.digest Init container volume-permissions image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param volumePermissions.image.pullPolicy Init container volume-permissions image pull policy + ## @param volumePermissions.image.pullSecrets Init container volume-permissions image pull secrets + ## + image: + registry: docker.io + repository: bitnami/os-shell + tag: 11-debian-11-r92 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## Example: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Init container resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param volumePermissions.resources.limits Init container volume-permissions resource limits + ## @param volumePermissions.resources.requests Init container volume-permissions resource requests + ## + resources: + limits: {} + requests: {} + ## Init container' Security Context + ## Note: the chown of the data folder is done to containerSecurityContext.runAsUser + ## and not the below volumePermissions.containerSecurityContext.runAsUser + ## @param volumePermissions.containerSecurityContext.runAsUser User ID for the init container + ## + containerSecurityContext: + runAsUser: 0 + +## @section Other Parameters +## + +## ServiceAccount for Kafka +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ +## +serviceAccount: + ## @param serviceAccount.create Enable creation of ServiceAccount for Kafka pods + ## + create: true + ## @param serviceAccount.name The name of the service account to use. If not set and `create` is `true`, a name is generated + ## If not set and create is true, a name is generated using the kafka.serviceAccountName template + ## + name: "" + ## @param serviceAccount.automountServiceAccountToken Allows auto mount of ServiceAccountToken on the serviceAccount created + ## Can be set to false if pods using this serviceAccount do not need to use K8s API + ## + automountServiceAccountToken: true + ## @param serviceAccount.annotations Additional custom annotations for the ServiceAccount + ## + annotations: {} +## Role Based Access Control +## ref: https://kubernetes.io/docs/admin/authorization/rbac/ +## +rbac: + ## @param rbac.create Whether to create & use RBAC resources or not + ## binding Kafka ServiceAccount to a role + ## that allows Kafka pods querying the K8s API + ## + create: false + +## @section Metrics parameters +## + +## Prometheus Exporters / Metrics +## +metrics: + ## Prometheus Kafka exporter: exposes complimentary metrics to JMX exporter + ## + kafka: + ## @param metrics.kafka.enabled Whether or not to create a standalone Kafka exporter to expose Kafka metrics + ## + enabled: false + ## Bitnami Kafka exporter image + ## ref: https://hub.docker.com/r/bitnami/kafka-exporter/tags/ + ## @param metrics.kafka.image.registry [default: REGISTRY_NAME] Kafka exporter image registry + ## @param metrics.kafka.image.repository [default: REPOSITORY_NAME/kafka-exporter] Kafka exporter image repository + ## @skip metrics.kafka.image.tag Kafka exporter image tag (immutable tags are recommended) + ## @param metrics.kafka.image.digest Kafka exporter image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param metrics.kafka.image.pullPolicy Kafka exporter image pull policy + ## @param metrics.kafka.image.pullSecrets Specify docker-registry secret names as an array + ## + image: + registry: docker.io + repository: bitnami/kafka-exporter + tag: 1.7.0-debian-11-r134 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets (secrets must be manually created in the namespace) + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + + ## @param metrics.kafka.certificatesSecret Name of the existing secret containing the optional certificate and key files + ## for Kafka exporter client authentication + ## + certificatesSecret: "" + ## @param metrics.kafka.tlsCert The secret key from the certificatesSecret if 'client-cert' key different from the default (cert-file) + ## + tlsCert: cert-file + ## @param metrics.kafka.tlsKey The secret key from the certificatesSecret if 'client-key' key different from the default (key-file) + ## + tlsKey: key-file + ## @param metrics.kafka.tlsCaSecret Name of the existing secret containing the optional ca certificate for Kafka exporter client authentication + ## + tlsCaSecret: "" + ## @param metrics.kafka.tlsCaCert The secret key from the certificatesSecret or tlsCaSecret if 'ca-cert' key different from the default (ca-file) + ## + tlsCaCert: ca-file + ## @param metrics.kafka.extraFlags Extra flags to be passed to Kafka exporter + ## e.g: + ## extraFlags: + ## tls.insecure-skip-tls-verify: "" + ## web.telemetry-path: "/metrics" + ## + extraFlags: {} + ## @param metrics.kafka.command Override Kafka exporter container command + ## + command: [] + ## @param metrics.kafka.args Override Kafka exporter container arguments + ## + args: [] + ## @param metrics.kafka.containerPorts.metrics Kafka exporter metrics container port + ## + containerPorts: + metrics: 9308 + ## Kafka exporter resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param metrics.kafka.resources.limits The resources limits for the container + ## @param metrics.kafka.resources.requests The requested resources for the container + ## + resources: + limits: {} + requests: {} + ## Kafka exporter pods' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param metrics.kafka.podSecurityContext.enabled Enable security context for the pods + ## @param metrics.kafka.podSecurityContext.fsGroup Set Kafka exporter pod's Security Context fsGroup + ## @param metrics.kafka.podSecurityContext.seccompProfile.type Set Kafka exporter pod's Security Context seccomp profile + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + seccompProfile: + type: "RuntimeDefault" + ## Kafka exporter containers' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param metrics.kafka.containerSecurityContext.enabled Enable Kafka exporter containers' Security Context + ## @param metrics.kafka.containerSecurityContext.runAsUser Set Kafka exporter containers' Security Context runAsUser + ## @param metrics.kafka.containerSecurityContext.runAsNonRoot Set Kafka exporter containers' Security Context runAsNonRoot + ## @param metrics.kafka.containerSecurityContext.allowPrivilegeEscalation Set Kafka exporter containers' Security Context allowPrivilegeEscalation + ## @param metrics.kafka.containerSecurityContext.readOnlyRootFilesystem Set Kafka exporter containers' Security Context readOnlyRootFilesystem + ## @param metrics.kafka.containerSecurityContext.capabilities.drop Set Kafka exporter containers' Security Context capabilities to be dropped + ## e.g: + ## containerSecurityContext: + ## enabled: true + ## capabilities: + ## drop: ["NET_RAW"] + ## readOnlyRootFilesystem: true + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + capabilities: + drop: ["ALL"] + ## @param metrics.kafka.hostAliases Kafka exporter pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param metrics.kafka.podLabels Extra labels for Kafka exporter pods + ## Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param metrics.kafka.podAnnotations Extra annotations for Kafka exporter pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param metrics.kafka.podAffinityPreset Pod affinity preset. Ignored if `metrics.kafka.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param metrics.kafka.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `metrics.kafka.affinity` is set. Allowed values: `soft` or `hard` + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node metrics.kafka.affinity preset + ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param metrics.kafka.nodeAffinityPreset.type Node affinity preset type. Ignored if `metrics.kafka.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param metrics.kafka.nodeAffinityPreset.key Node label key to match Ignored if `metrics.kafka.affinity` is set. + ## E.g. + ## key: "kubernetes.io/e2e-az-name" + ## + key: "" + ## @param metrics.kafka.nodeAffinityPreset.values Node label values to match. Ignored if `metrics.kafka.affinity` is set. + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param metrics.kafka.affinity Affinity for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## Note: metrics.kafka.podAffinityPreset, metrics.kafka.podAntiAffinityPreset, and metrics.kafka.nodeAffinityPreset will be ignored when it's set + ## + affinity: {} + ## @param metrics.kafka.nodeSelector Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param metrics.kafka.tolerations Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param metrics.kafka.schedulerName Name of the k8s scheduler (other than default) for Kafka exporter + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param metrics.kafka.enableServiceLinks Whether information about services should be injected into pod's environment variable + ## The environment variables injected by service links are not used, but can lead to slow kafka boot times or slow running of the scripts when there are many services in the current namespace. + ## If you experience slow pod startups or slow running of the scripts you probably want to set this to `false`. + ## + enableServiceLinks: true + ## @param metrics.kafka.priorityClassName Kafka exporter pods' priorityClassName + ## + priorityClassName: "" + ## @param metrics.kafka.topologySpreadConstraints Topology Spread Constraints for pod assignment + ## https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## The value is evaluated as a template + ## + topologySpreadConstraints: [] + ## @param metrics.kafka.extraVolumes Optionally specify extra list of additional volumes for the Kafka exporter pod(s) + ## e.g: + ## extraVolumes: + ## - name: kafka-jaas + ## secret: + ## secretName: kafka-jaas + ## + extraVolumes: [] + ## @param metrics.kafka.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Kafka exporter container(s) + ## extraVolumeMounts: + ## - name: kafka-jaas + ## mountPath: /bitnami/kafka/config/kafka_jaas.conf + ## subPath: kafka_jaas.conf + ## + extraVolumeMounts: [] + ## @param metrics.kafka.sidecars Add additional sidecar containers to the Kafka exporter pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param metrics.kafka.initContainers Add init containers to the Kafka exporter pods + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## Kafka exporter service configuration + ## + service: + ## @param metrics.kafka.service.ports.metrics Kafka exporter metrics service port + ## + ports: + metrics: 9308 + ## @param metrics.kafka.service.clusterIP Static clusterIP or None for headless services + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#choosing-your-own-ip-address + ## + clusterIP: "" + ## @param metrics.kafka.service.sessionAffinity Control where client requests go, to the same pod or round-robin + ## Values: ClientIP or None + ## ref: https://kubernetes.io/docs/user-guide/services/ + ## + sessionAffinity: None + ## @param metrics.kafka.service.annotations [object] Annotations for the Kafka exporter service + ## + annotations: + prometheus.io/scrape: "true" + prometheus.io/port: "{{ .Values.metrics.kafka.service.ports.metrics }}" + prometheus.io/path: "/metrics" + ## Kafka exporter pods ServiceAccount + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ## + serviceAccount: + ## @param metrics.kafka.serviceAccount.create Enable creation of ServiceAccount for Kafka exporter pods + ## + create: true + ## @param metrics.kafka.serviceAccount.name The name of the service account to use. If not set and `create` is `true`, a name is generated + ## If not set and create is true, a name is generated using the kafka.metrics.kafka.serviceAccountName template + ## + name: "" + ## @param metrics.kafka.serviceAccount.automountServiceAccountToken Allows auto mount of ServiceAccountToken on the serviceAccount created + ## Can be set to false if pods using this serviceAccount do not need to use K8s API + ## + automountServiceAccountToken: true + ## Prometheus JMX exporter: exposes the majority of Kafka metrics + ## + jmx: + ## @param metrics.jmx.enabled Whether or not to expose JMX metrics to Prometheus + ## + enabled: false + ## @param metrics.jmx.kafkaJmxPort JMX port where the exporter will collect metrics, exposed in the Kafka container. + ## + kafkaJmxPort: 5555 + ## Bitnami JMX exporter image + ## ref: https://hub.docker.com/r/bitnami/jmx-exporter/tags/ + ## @param metrics.jmx.image.registry [default: REGISTRY_NAME] JMX exporter image registry + ## @param metrics.jmx.image.repository [default: REPOSITORY_NAME/jmx-exporter] JMX exporter image repository + ## @skip metrics.jmx.image.tag JMX exporter image tag (immutable tags are recommended) + ## @param metrics.jmx.image.digest JMX exporter image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param metrics.jmx.image.pullPolicy JMX exporter image pull policy + ## @param metrics.jmx.image.pullSecrets Specify docker-registry secret names as an array + ## + image: + registry: docker.io + repository: bitnami/jmx-exporter + tag: 0.20.0-debian-11-r1 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets (secrets must be manually created in the namespace) + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Prometheus JMX exporter containers' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param metrics.jmx.containerSecurityContext.enabled Enable Prometheus JMX exporter containers' Security Context + ## @param metrics.jmx.containerSecurityContext.runAsUser Set Prometheus JMX exporter containers' Security Context runAsUser + ## @param metrics.jmx.containerSecurityContext.runAsNonRoot Set Prometheus JMX exporter containers' Security Context runAsNonRoot + ## @param metrics.jmx.containerSecurityContext.allowPrivilegeEscalation Set Prometheus JMX exporter containers' Security Context allowPrivilegeEscalation + ## @param metrics.jmx.containerSecurityContext.readOnlyRootFilesystem Set Prometheus JMX exporter containers' Security Context readOnlyRootFilesystem + ## @param metrics.jmx.containerSecurityContext.capabilities.drop Set Prometheus JMX exporter containers' Security Context capabilities to be dropped + ## e.g: + ## containerSecurityContext: + ## enabled: true + ## capabilities: + ## drop: ["NET_RAW"] + ## readOnlyRootFilesystem: true + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + capabilities: + drop: ["ALL"] + ## @param metrics.jmx.containerPorts.metrics Prometheus JMX exporter metrics container port + ## + containerPorts: + metrics: 5556 + ## Prometheus JMX exporter resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param metrics.jmx.resources.limits The resources limits for the JMX exporter container + ## @param metrics.jmx.resources.requests The requested resources for the JMX exporter container + ## + resources: + limits: {} + requests: {} + ## Prometheus JMX exporter service configuration + ## + service: + ## @param metrics.jmx.service.ports.metrics Prometheus JMX exporter metrics service port + ## + ports: + metrics: 5556 + ## @param metrics.jmx.service.clusterIP Static clusterIP or None for headless services + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#choosing-your-own-ip-address + ## + clusterIP: "" + ## @param metrics.jmx.service.sessionAffinity Control where client requests go, to the same pod or round-robin + ## Values: ClientIP or None + ## ref: https://kubernetes.io/docs/user-guide/services/ + ## + sessionAffinity: None + ## @param metrics.jmx.service.annotations [object] Annotations for the Prometheus JMX exporter service + ## + annotations: + prometheus.io/scrape: "true" + prometheus.io/port: "{{ .Values.metrics.jmx.service.ports.metrics }}" + prometheus.io/path: "/" + ## @param metrics.jmx.whitelistObjectNames Allows setting which JMX objects you want to expose to via JMX stats to JMX exporter + ## Only whitelisted values will be exposed via JMX exporter. They must also be exposed via Rules. To expose all metrics + ## (warning its crazy excessive and they aren't formatted in a prometheus style) (1) `whitelistObjectNames: []` + ## (2) commented out above `overrideConfig`. + ## + whitelistObjectNames: + - kafka.controller:* + - kafka.server:* + - java.lang:* + - kafka.network:* + - kafka.log:* + ## @param metrics.jmx.config [string] Configuration file for JMX exporter + ## Specify content for jmx-kafka-prometheus.yml. Evaluated as a template + ## + ## Credits to the incubator/kafka chart for the JMX configuration. + ## https://github.com/helm/charts/tree/master/incubator/kafka + ## + config: |- + jmxUrl: service:jmx:rmi:///jndi/rmi://127.0.0.1:{{ .Values.metrics.jmx.kafkaJmxPort }}/jmxrmi + lowercaseOutputName: true + lowercaseOutputLabelNames: true + ssl: false + {{- if .Values.metrics.jmx.whitelistObjectNames }} + whitelistObjectNames: ["{{ join "\",\"" .Values.metrics.jmx.whitelistObjectNames }}"] + {{- end }} + ## @param metrics.jmx.existingConfigmap Name of existing ConfigMap with JMX exporter configuration + ## NOTE: This will override metrics.jmx.config + ## + existingConfigmap: "" + ## @param metrics.jmx.extraRules Add extra rules to JMX exporter configuration + ## e.g: + ## extraRules: |- + ## - pattern: kafka.server<>(connection-count) + ## name: kafka_server_socket_server_metrics_$3 + ## labels: + ## listener: $1 + ## + extraRules: "" + ## Prometheus Operator ServiceMonitor configuration + ## + serviceMonitor: + ## @param metrics.serviceMonitor.enabled if `true`, creates a Prometheus Operator ServiceMonitor (requires `metrics.kafka.enabled` or `metrics.jmx.enabled` to be `true`) + ## + enabled: false + ## @param metrics.serviceMonitor.namespace Namespace in which Prometheus is running + ## + namespace: "" + ## @param metrics.serviceMonitor.interval Interval at which metrics should be scraped + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + interval: "" + ## @param metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended + ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + scrapeTimeout: "" + ## @param metrics.serviceMonitor.labels Additional labels that can be used so ServiceMonitor will be discovered by Prometheus + ## + labels: {} + ## @param metrics.serviceMonitor.selector Prometheus instance selector labels + ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration + ## + selector: {} + ## @param metrics.serviceMonitor.relabelings RelabelConfigs to apply to samples before scraping + ## + relabelings: [] + ## @param metrics.serviceMonitor.metricRelabelings MetricRelabelConfigs to apply to samples before ingestion + ## + metricRelabelings: [] + ## @param metrics.serviceMonitor.honorLabels Specify honorLabels parameter to add the scrape endpoint + ## + honorLabels: false + ## @param metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in prometheus. + ## + jobLabel: "" + + prometheusRule: + ## @param metrics.prometheusRule.enabled if `true`, creates a Prometheus Operator PrometheusRule (requires `metrics.kafka.enabled` or `metrics.jmx.enabled` to be `true`) + ## + enabled: false + ## @param metrics.prometheusRule.namespace Namespace in which Prometheus is running + ## + namespace: "" + ## @param metrics.prometheusRule.labels Additional labels that can be used so PrometheusRule will be discovered by Prometheus + ## + labels: {} + ## @param metrics.prometheusRule.groups Prometheus Rule Groups for Kafka + ## + groups: [] + +## @section Kafka provisioning parameters +## + +## Kafka provisioning +## +provisioning: + ## @param provisioning.enabled Enable kafka provisioning Job + ## + enabled: false + ## @param provisioning.numPartitions Default number of partitions for topics when unspecified + ## + numPartitions: 1 + ## @param provisioning.replicationFactor Default replication factor for topics when unspecified + ## + replicationFactor: 1 + ## @param provisioning.topics Kafka topics to provision + ## - name: topic-name + ## partitions: 1 + ## replicationFactor: 1 + ## ## https://kafka.apache.org/documentation/#topicconfigs + ## config: + ## max.message.bytes: 64000 + ## flush.messages: 1 + ## + topics: [] + ## @param provisioning.nodeSelector Node labels for pod assignment + ## Ref: https://kubernetes.io/docs/user-guide/node-selection/ + ## + nodeSelector: {} + ## @param provisioning.tolerations Tolerations for pod assignment + ## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param provisioning.extraProvisioningCommands Extra commands to run to provision cluster resources + ## - echo "Allow user to consume from any topic" + ## - >- + ## /opt/bitnami/kafka/bin/kafka-acls.sh + ## --bootstrap-server $KAFKA_SERVICE + ## --command-config $CLIENT_CONF + ## --add + ## --allow-principal User:user + ## --consumer --topic '*' + ## - "/opt/bitnami/kafka/bin/kafka-acls.sh + ## --bootstrap-server $KAFKA_SERVICE + ## --command-config $CLIENT_CONF + ## --list" + ## + extraProvisioningCommands: [] + ## @param provisioning.parallel Number of provisioning commands to run at the same time + ## + parallel: 1 + ## @param provisioning.preScript Extra bash script to run before topic provisioning. $CLIENT_CONF is path to properties file with most needed configurations + ## + preScript: "" + ## @param provisioning.postScript Extra bash script to run after topic provisioning. $CLIENT_CONF is path to properties file with most needed configurations + ## + postScript: "" + ## Auth Configuration for kafka provisioning Job + ## + auth: + ## TLS configuration for kafka provisioning Job + ## + tls: + ## @param provisioning.auth.tls.type Format to use for TLS certificates. Allowed types: `JKS` and `PEM`. + ## Note: ignored if auth.tls.client.protocol different from one of these values: "SSL" "SASL_SSL" + ## + type: jks + ## @param provisioning.auth.tls.certificatesSecret Existing secret containing the TLS certificates for the Kafka provisioning Job. + ## When using 'jks' format for certificates, the secret should contain a truststore and a keystore. + ## When using 'pem' format for certificates, the secret should contain one of the following: + ## 1. A public CA certificate, a public certificate and one private key. + ## 2. A truststore and a keystore in PEM format + ## If caCert is set, option 1 will be taken, otherwise option 2. + ## + certificatesSecret: "" + ## @param provisioning.auth.tls.cert The secret key from the certificatesSecret if 'cert' key different from the default (tls.crt) + ## + cert: tls.crt + ## @param provisioning.auth.tls.key The secret key from the certificatesSecret if 'key' key different from the default (tls.key) + ## + key: tls.key + ## @param provisioning.auth.tls.caCert The secret key from the certificatesSecret if 'caCert' key different from the default (ca.crt) + ## + caCert: ca.crt + ## @param provisioning.auth.tls.keystore The secret key from the certificatesSecret if 'keystore' key different from the default (keystore.jks) + ## + keystore: keystore.jks + ## @param provisioning.auth.tls.truststore The secret key from the certificatesSecret if 'truststore' key different from the default (truststore.jks) + ## + truststore: truststore.jks + ## @param provisioning.auth.tls.passwordsSecret Name of the secret containing passwords to access the JKS files or PEM key when they are password-protected. + ## It should contain two keys called "keystore-password" and "truststore-password", or "key-password" if using a password-protected PEM key. + ## + passwordsSecret: "" + ## @param provisioning.auth.tls.keyPasswordSecretKey The secret key from the passwordsSecret if 'keyPasswordSecretKey' key different from the default (key-password) + ## Note: must not be used if `passwordsSecret` is not defined. + ## + keyPasswordSecretKey: key-password + ## @param provisioning.auth.tls.keystorePasswordSecretKey The secret key from the passwordsSecret if 'keystorePasswordSecretKey' key different from the default (keystore-password) + ## Note: must not be used if `passwordsSecret` is not defined. + ## + keystorePasswordSecretKey: keystore-password + ## @param provisioning.auth.tls.truststorePasswordSecretKey The secret key from the passwordsSecret if 'truststorePasswordSecretKey' key different from the default (truststore-password) + ## Note: must not be used if `passwordsSecret` is not defined. + ## + truststorePasswordSecretKey: truststore-password + ## @param provisioning.auth.tls.keyPassword Password to access the password-protected PEM key if necessary. Ignored if 'passwordsSecret' is provided. + ## + keyPassword: "" + ## @param provisioning.auth.tls.keystorePassword Password to access the JKS keystore. Ignored if 'passwordsSecret' is provided. + ## + keystorePassword: "" + ## @param provisioning.auth.tls.truststorePassword Password to access the JKS truststore. Ignored if 'passwordsSecret' is provided. + ## + truststorePassword: "" + ## @param provisioning.command Override provisioning container command + ## + command: [] + ## @param provisioning.args Override provisioning container arguments + ## + args: [] + ## @param provisioning.extraEnvVars Extra environment variables to add to the provisioning pod + ## e.g: + ## extraEnvVars: + ## - name: KAFKA_CFG_BACKGROUND_THREADS + ## value: "10" + ## + extraEnvVars: [] + ## @param provisioning.extraEnvVarsCM ConfigMap with extra environment variables + ## + extraEnvVarsCM: "" + ## @param provisioning.extraEnvVarsSecret Secret with extra environment variables + ## + extraEnvVarsSecret: "" + ## @param provisioning.podAnnotations Extra annotations for Kafka provisioning pods + ## + podAnnotations: {} + ## @param provisioning.podLabels Extra labels for Kafka provisioning pods + ## Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## Kafka provisioning pods ServiceAccount + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + ## + serviceAccount: + ## @param provisioning.serviceAccount.create Enable creation of ServiceAccount for Kafka provisioning pods + ## + create: false + ## @param provisioning.serviceAccount.name The name of the service account to use. If not set and `create` is `true`, a name is generated + ## If not set and create is true, a name is generated using the provisioning.serviceAccount.name template + ## + name: "" + ## @param provisioning.serviceAccount.automountServiceAccountToken Allows auto mount of ServiceAccountToken on the serviceAccount created + ## Can be set to false if pods using this serviceAccount do not need to use K8s API + ## + automountServiceAccountToken: true + ## Kafka provisioning resource requests and limits + ## ref: https://kubernetes.io/docs/user-guide/compute-resources/ + ## @param provisioning.resources.limits The resources limits for the Kafka provisioning container + ## @param provisioning.resources.requests The requested resources for the Kafka provisioning container + ## + resources: + limits: {} + requests: {} + ## Kafka provisioning pods' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param provisioning.podSecurityContext.enabled Enable security context for the pods + ## @param provisioning.podSecurityContext.fsGroup Set Kafka provisioning pod's Security Context fsGroup + ## @param provisioning.podSecurityContext.seccompProfile.type Set Kafka provisioning pod's Security Context seccomp profile + ## + podSecurityContext: + enabled: true + fsGroup: 1001 + seccompProfile: + type: "RuntimeDefault" + ## Kafka provisioning containers' Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param provisioning.containerSecurityContext.enabled Enable Kafka provisioning containers' Security Context + ## @param provisioning.containerSecurityContext.runAsUser Set Kafka provisioning containers' Security Context runAsUser + ## @param provisioning.containerSecurityContext.runAsNonRoot Set Kafka provisioning containers' Security Context runAsNonRoot + ## @param provisioning.containerSecurityContext.allowPrivilegeEscalation Set Kafka provisioning containers' Security Context allowPrivilegeEscalation + ## @param provisioning.containerSecurityContext.readOnlyRootFilesystem Set Kafka provisioning containers' Security Context readOnlyRootFilesystem + ## @param provisioning.containerSecurityContext.capabilities.drop Set Kafka provisioning containers' Security Context capabilities to be dropped + ## e.g: + ## containerSecurityContext: + ## enabled: true + ## capabilities: + ## drop: ["NET_RAW"] + ## readOnlyRootFilesystem: true + ## + containerSecurityContext: + enabled: true + runAsUser: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + capabilities: + drop: ["ALL"] + ## @param provisioning.schedulerName Name of the k8s scheduler (other than default) for kafka provisioning + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param provisioning.enableServiceLinks Whether information about services should be injected into pod's environment variable + ## The environment variables injected by service links are not used, but can lead to slow kafka boot times or slow running of the scripts when there are many services in the current namespace. + ## If you experience slow pod startups or slow running of the scripts you probably want to set this to `false`. + ## + enableServiceLinks: true + ## @param provisioning.extraVolumes Optionally specify extra list of additional volumes for the Kafka provisioning pod(s) + ## e.g: + ## extraVolumes: + ## - name: kafka-jaas + ## secret: + ## secretName: kafka-jaas + ## + extraVolumes: [] + ## @param provisioning.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Kafka provisioning container(s) + ## extraVolumeMounts: + ## - name: kafka-jaas + ## mountPath: /bitnami/kafka/config/kafka_jaas.conf + ## subPath: kafka_jaas.conf + ## + extraVolumeMounts: [] + ## @param provisioning.sidecars Add additional sidecar containers to the Kafka provisioning pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param provisioning.initContainers Add additional Add init containers to the Kafka provisioning pod(s) + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + initContainers: [] + ## @param provisioning.waitForKafka If true use an init container to wait until kafka is ready before starting provisioning + ## + waitForKafka: true + +## @section KRaft chart parameters + +## KRaft configuration +## Kafka mode without Zookeeper. Kafka nodes can work as controllers in this mode. +## +kraft: + ## @param kraft.enabled Switch to enable or disable the KRaft mode for Kafka + ## + enabled: true + ## @param kraft.existingClusterIdSecret Name of the secret containing the cluster ID for the Kafka KRaft cluster. This is incompatible with the clusterId parameter. If both are set, the existingClusterIdSecret will be used + existingClusterIdSecret: "" + ## @param kraft.clusterId Kafka Kraft cluster ID. If not set, a random cluster ID will be generated the first time Kraft is initialized. + ## NOTE: Already initialized Kafka nodes will use cluster ID stored in their persisted storage. + ## If reusing existing PVCs or migrating from Zookeeper mode, make sure the cluster ID is set matching the stored cluster ID, otherwise new nodes will fail to join the cluster. + ## In case the cluster ID stored in the secret does not match the value stored in /bitnami/kafka/data/meta.properties, remove the secret and upgrade the chart setting the correct value. + ## + clusterId: "" + ## @param kraft.controllerQuorumVoters Override the Kafka controller quorum voters of the Kafka Kraft cluster. If not set, it will be automatically configured to use all controller-elegible nodes. + ## + controllerQuorumVoters: "" + +## @section ZooKeeper chart parameters +## +## @param zookeeperChrootPath Path which puts data under some path in the global ZooKeeper namespace +## ref: https://kafka.apache.org/documentation/#brokerconfigs_zookeeper.connect +## +zookeeperChrootPath: "" +## ZooKeeper chart configuration +## https://github.com/bitnami/charts/blob/main/bitnami/zookeeper/values.yaml +## +zookeeper: + ## @param zookeeper.enabled Switch to enable or disable the ZooKeeper helm chart. Must be false if you use KRaft mode. + ## + enabled: false + ## @param zookeeper.replicaCount Number of ZooKeeper nodes + ## + replicaCount: 1 + ## ZooKeeper authentication + ## + auth: + client: + ## @param zookeeper.auth.client.enabled Enable ZooKeeper auth + ## + enabled: false + ## @param zookeeper.auth.client.clientUser User that will use ZooKeeper client (zkCli.sh) to authenticate. Must exist in the serverUsers comma-separated list. + ## + clientUser: "" + ## @param zookeeper.auth.client.clientPassword Password that will use ZooKeeper client (zkCli.sh) to authenticate. Must exist in the serverPasswords comma-separated list. + ## + clientPassword: "" + ## @param zookeeper.auth.client.serverUsers Comma, semicolon or whitespace separated list of user to be created. Specify them as a string, for example: "user1,user2,admin" + ## + serverUsers: "" + ## @param zookeeper.auth.client.serverPasswords Comma, semicolon or whitespace separated list of passwords to assign to users when created. Specify them as a string, for example: "pass4user1, pass4user2, pass4admin" + ## + serverPasswords: "" + ## ZooKeeper Persistence parameters + ## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/ + ## @param zookeeper.persistence.enabled Enable persistence on ZooKeeper using PVC(s) + ## @param zookeeper.persistence.storageClass Persistent Volume storage class + ## @param zookeeper.persistence.accessModes Persistent Volume access modes + ## @param zookeeper.persistence.size Persistent Volume size + ## + persistence: + enabled: true + storageClass: "" + accessModes: + - ReadWriteOnce + size: 8Gi + +## External Zookeeper Configuration +## +externalZookeeper: + ## @param externalZookeeper.servers List of external zookeeper servers to use. Typically used in combination with 'zookeeperChrootPath'. Must be empty if you use KRaft mode. + ## + servers: [] + diff --git a/kubernetes/dev/kafka/ingressroute-tls.yml b/kubernetes/dev/kafka/ingressroute-tls.yml new file mode 100755 index 0000000..900f92c --- /dev/null +++ b/kubernetes/dev/kafka/ingressroute-tls.yml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: kafka-tls + namespace: kafka +spec: + entryPoints: + - websecure + routes: + - match: Host(`kafka-ui-prod.allarddcs.nl`) + kind: Rule + services: + - name: kafka-ui + port: 8080 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/kafka/kafka-loadbalancer.yaml b/kubernetes/dev/kafka/kafka-loadbalancer.yaml new file mode 100755 index 0000000..e3535ac --- /dev/null +++ b/kubernetes/dev/kafka/kafka-loadbalancer.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: kafka-loadbalancer +spec: + ports: + - port: 9092 + name: kafka-port + protocol: TCP + selector: + app: kafka + type: LoadBalancer diff --git a/kubernetes/dev/kafka/kafka-nodeport.yaml b/kubernetes/dev/kafka/kafka-nodeport.yaml new file mode 100755 index 0000000..a8ec4d9 --- /dev/null +++ b/kubernetes/dev/kafka/kafka-nodeport.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: kafka-nodeport + labels: + app: kafka +spec: + ports: + - port: 9092 + selector: + app: kafka + type: NodePort diff --git a/kubernetes/dev/kafka/kafka-port-forward.sh b/kubernetes/dev/kafka/kafka-port-forward.sh new file mode 100755 index 0000000..962050f --- /dev/null +++ b/kubernetes/dev/kafka/kafka-port-forward.sh @@ -0,0 +1 @@ +kubectl port-forward svc/kafka-service 9092 diff --git a/kubernetes/dev/kafka/kafka-pv.yaml b/kubernetes/dev/kafka/kafka-pv.yaml new file mode 100755 index 0000000..dde3a40 --- /dev/null +++ b/kubernetes/dev/kafka/kafka-pv.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: kafka-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.28 + path: /mnt/nfs_share/kafka + readOnly: false + diff --git a/kubernetes/dev/kafka/kafka-pvc.yaml b/kubernetes/dev/kafka/kafka-pvc.yaml new file mode 100755 index 0000000..d7cac86 --- /dev/null +++ b/kubernetes/dev/kafka/kafka-pvc.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: kafka-pvc +spec: + storageClassName: "" + volumeName: kafka-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + + + + diff --git a/kubernetes/dev/kafka/kafka-ui-np.yaml b/kubernetes/dev/kafka/kafka-ui-np.yaml new file mode 100755 index 0000000..ba4ed11 --- /dev/null +++ b/kubernetes/dev/kafka/kafka-ui-np.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: Service +metadata: + name: kafka-ui + labels: + name: kafka-ui +spec: + type: NodePort + ports: + - port: 8080 + nodePort: 31890 + name: http + selector: + app: kafka-ui diff --git a/kubernetes/dev/kafka/kafka-ui.yaml b/kubernetes/dev/kafka/kafka-ui.yaml new file mode 100755 index 0000000..68341c1 --- /dev/null +++ b/kubernetes/dev/kafka/kafka-ui.yaml @@ -0,0 +1,26 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: kafka-ui + labels: + app: kafka-ui +spec: + replicas: 1 + selector: + matchLabels: + app: kafka-ui + template: + metadata: + labels: + app: kafka-ui + spec: + containers: + - name: kafka-ui + image: provectuslabs/kafka-ui + ports: + - containerPort: 8080 + env: + - name: KAFKA_CLUSTERS_0_NAME + value: "kafka-service" + - name: KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS + value: "kafka-service:9092" diff --git a/kubernetes/dev/kafka/kafka.yaml b/kubernetes/dev/kafka/kafka.yaml new file mode 100755 index 0000000..d43c6a6 --- /dev/null +++ b/kubernetes/dev/kafka/kafka.yaml @@ -0,0 +1,103 @@ +apiVersion: v1 +kind: Service +metadata: + name: kafka-service + labels: + app: kafka +spec: + ports: + - port: 9092 + selector: + app: kafka +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: kafka-deployment +spec: + replicas: 1 + selector: + matchLabels: + app: kafka + template: + metadata: + labels: + app: kafka + spec: + containers: + - name: kafka + image: ubuntu/kafka:edge + env: + - name: ZOOKEEPER_HOST + value: zookeeper-service + args: ["/etc/kafka/server.properties", "--override", "advertised.listeners=PLAINTEXT://kafka-service:9092"] + ports: + - containerPort: 9092 + name: kafka + protocol: TCP + volumeMounts: + - mountPath: /var/lib/kafka/data + name: kafka-data + subPath: kafka/data + volumes: + - name: kafka-data + persistentVolumeClaim: + claimName: kafka-pvc +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: kafka-ui + labels: + app: kafka-ui +spec: + replicas: 1 + selector: + matchLabels: + app: kafka-ui + template: + metadata: + labels: + app: kafka-ui + spec: + containers: + - name: kafka-ui + image: provectuslabs/kafka-ui + ports: + - containerPort: 8080 + env: + - name: KAFKA_CLUSTERS_0_NAME + value: "kafka-service" + - name: KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS + value: "kafka-service:9092" +--- +apiVersion: v1 +kind: Service +metadata: + name: kafka-ui + labels: + name: kafka-ui +spec: + type: NodePort + ports: + - port: 8080 + nodePort: 31890 + name: http + selector: + app: kafka-ui +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: kafka-ui-tls-allarddcs +spec: + entryPoints: + - websecure + routes: + - match: Host(`kafka-prod.allarddcs.nl`) + kind: Rule + services: + - name: kafka-ui + port: 8080 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/kafka/kafka2.yaml b/kubernetes/dev/kafka/kafka2.yaml new file mode 100755 index 0000000..1e6f706 --- /dev/null +++ b/kubernetes/dev/kafka/kafka2.yaml @@ -0,0 +1,47 @@ +apiVersion: v1 +kind: Service +metadata: + labels: + app: kafka-broker + name: kafka-service + namespace: kafka +spec: + ports: + - port: 9092 + selector: + app: kafka-broker +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app: kafka-broker + name: kafka-broker + namespace: kafka +spec: + replicas: 1 + selector: + matchLabels: + app: kafka-broker + template: + metadata: + labels: + app: kafka-broker + spec: + hostname: kafka-broker + containers: + - env: + - name: KAFKA_BROKER_ID + value: "1" + - name: KAFKA_ZOOKEEPER_CONNECT + value: :2181 + - name: KAFKA_LISTENERS + value: PLAINTEXT://:9092 + - name: KAFKA_ADVERTISED_LISTENERS + value: PLAINTEXT://kafka-broker:9092 +# image: wurstmeister/kafka + image: ubuntu/kafka:edge + imagePullPolicy: IfNotPresent + name: kafka-broker + ports: + - containerPort: 9092 diff --git a/kubernetes/dev/kafka/patch-nodeport.sh b/kubernetes/dev/kafka/patch-nodeport.sh new file mode 100755 index 0000000..aa9d0af --- /dev/null +++ b/kubernetes/dev/kafka/patch-nodeport.sh @@ -0,0 +1 @@ +kubectl patch svc nodeport -p '{"spec":{"externalTrafficPolicy":"Cluster"}}' diff --git a/kubernetes/dev/kafka/readmessage.sh b/kubernetes/dev/kafka/readmessage.sh new file mode 100755 index 0000000..3f06a41 --- /dev/null +++ b/kubernetes/dev/kafka/readmessage.sh @@ -0,0 +1,3 @@ +#!/bin/bash +kcat -q -C -b 192.168.40.83 -t $1 +exit diff --git a/kubernetes/dev/kafka/zookeeper.yaml b/kubernetes/dev/kafka/zookeeper.yaml new file mode 100755 index 0000000..0c141e9 --- /dev/null +++ b/kubernetes/dev/kafka/zookeeper.yaml @@ -0,0 +1,33 @@ +apiVersion: v1 +kind: Service +metadata: + name: zookeeper-service + labels: + app: zookeeper +spec: + ports: + - port: 2181 + selector: + app: zookeeper +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: zookeeper-deployment +spec: + replicas: 1 + selector: + matchLabels: + app: zookeeper + template: + metadata: + labels: + app: zookeeper + spec: + containers: + - name: zookeeper + image: ubuntu/zookeeper:edge + ports: + - containerPort: 2181 + name: zookeeper + protocol: TCP diff --git a/kubernetes/dev/kafka/zookeeper2.yaml b/kubernetes/dev/kafka/zookeeper2.yaml new file mode 100755 index 0000000..0170af7 --- /dev/null +++ b/kubernetes/dev/kafka/zookeeper2.yaml @@ -0,0 +1,41 @@ +apiVersion: v1 +kind: Service +metadata: + labels: + app: zookeeper-service + name: zookeeper-service + namespace: kafka +spec: + type: NodePort + ports: + - name: zookeeper-port + port: 2181 + nodePort: 30181 + targetPort: 2181 + selector: + app: zookeeper +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app: zookeeper + name: zookeeper + namespace: kafka +spec: + replicas: 1 + selector: + matchLabels: + app: zookeeper + template: + metadata: + labels: + app: zookeeper + spec: + containers: +# - image: wurstmeister/zookeeper + - image: ubuntu/zookeeper:edge + imagePullPolicy: IfNotPresent + name: zookeeper + ports: + - containerPort: 2181 diff --git a/kubernetes/dev/kubernetes/README.md b/kubernetes/dev/kubernetes/README.md new file mode 100755 index 0000000..ba0ab84 --- /dev/null +++ b/kubernetes/dev/kubernetes/README.md @@ -0,0 +1,17 @@ +3) microk8s enable dashboard +2) creer account: kubectl apply -f ServiceAccount.yaml +3) creeer clusterrolebinding: kubectl aply -f ClusterRoleBinding.yaml +4) creeer ingressroute: kubectl apply -f Ingressroute-tls.yaml +5) genereer token: +kubectl -n kube-system create token admin-user --duration=8544h + +Herinstallatie: + +na herinstallatie moet je de config opnieuw kopieren anders klopt het certificaat niet meer: + +sudo cp -i /var/snap/microk8s/current/credentials/client.config ${HOME}/.kube/config + +sudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/config + + + diff --git a/kubernetes/dev/kubernetes/TIPS.md b/kubernetes/dev/kubernetes/TIPS.md new file mode 100755 index 0000000..60c6e00 --- /dev/null +++ b/kubernetes/dev/kubernetes/TIPS.md @@ -0,0 +1,38 @@ +#Als een pvc in de status "terminating" blijft hangen kan het volgende commando +#helpen: + +kubectl patch pvc {PVC_NAME} -p '{"metadata":{"finalizers":null}}' + +#Switchen van context: + +kubectl config set-context --current --namespace=tektontutorial + +#Als je bij uitvoeren van kubectl "connection refused " krijgt +#kunnen de volgende commando's helpen: + +sudo microk8s.refresh-certs --cert ca.crt +sudo microk8s.refresh-certs --cert server.crt + +aanpassen clusternaam: + +nano /var/snap/micrk8s/current/credentials/client.config + +Daarna certificaten opnieuw genereren: + +sudo microk8s.refresh-certs --cert ca.crt +sudo microk8s.refresh-certs --cert server.crt + +kubectl configuratie opnieuw genereren: + +microk8s.kubectl config view --raw > $HOME/.kube/config + +#metallb speaker permission errors + +sudo nano /etc/apparmor.d/cri-containerd.apparmor.d +network, +sudo apparmor_parser -r /etc/apparmor.d/cri-containerd.apparmor.d + +#volle schijf: + +sudo microk8s ctr images list -q | xargs -r sudo microk8s ctr images rm + diff --git a/kubernetes/dev/kubernetes/cluster-issuer.yaml b/kubernetes/dev/kubernetes/cluster-issuer.yaml new file mode 100755 index 0000000..4d2d314 --- /dev/null +++ b/kubernetes/dev/kubernetes/cluster-issuer.yaml @@ -0,0 +1,14 @@ +apiVersion: cert-manager.io/v1 +kind: ClusterIssuer +metadata: + name: letsencrypt +spec: + acme: + email: admin@allarddcs.nl + server: https://acme-v02.api.letsencrypt.org/directory + privateKeySecretRef: + name: letsencrypt-account-key + solvers: + - http01: + ingress: + class: traefik diff --git a/kubernetes/dev/kubernetes/clusterrolebinding.yaml b/kubernetes/dev/kubernetes/clusterrolebinding.yaml new file mode 100755 index 0000000..faa8927 --- /dev/null +++ b/kubernetes/dev/kubernetes/clusterrolebinding.yaml @@ -0,0 +1,12 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: admin-user +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: cluster-admin +subjects: +- kind: ServiceAccount + name: admin-user + namespace: kube-system diff --git a/kubernetes/dev/kubernetes/create-token.sh b/kubernetes/dev/kubernetes/create-token.sh new file mode 100755 index 0000000..95a7f2d --- /dev/null +++ b/kubernetes/dev/kubernetes/create-token.sh @@ -0,0 +1 @@ +microk8s kubectl -n kube-system create token admin-user --duration=8544h diff --git a/kubernetes/dev/kubernetes/ingressroute-dashboard.yaml b/kubernetes/dev/kubernetes/ingressroute-dashboard.yaml new file mode 100755 index 0000000..883d7cc --- /dev/null +++ b/kubernetes/dev/kubernetes/ingressroute-dashboard.yaml @@ -0,0 +1,30 @@ +apiVersion: traefik.io/v1alpha1 +kind: ServersTransport +metadata: + name: kubernetes-dashboard-transport + namespace: kube-system + +spec: + serverName: kubernetes-dashboard + insecureSkipVerify: true +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: kubernetes-dashboard-tls + namespace: kube-system +spec: + entryPoints: # [1] + - websecure + routes: # [2] + - kind: Rule + match: Host(`kubernetes-dev.allarddcs.nl`) # [3] + priority: 10 # [4] + services: # [8] + - kind: Service + name: kubernetes-dashboard + namespace: kube-system + port: 443 # [9] + serversTransport: kubernetes-dashboard-transport + tls: # [11] + certResolver: letsencrypt diff --git a/kubernetes/dev/kubernetes/ingressroute-tls-dev.yaml b/kubernetes/dev/kubernetes/ingressroute-tls-dev.yaml new file mode 100755 index 0000000..12b7a0f --- /dev/null +++ b/kubernetes/dev/kubernetes/ingressroute-tls-dev.yaml @@ -0,0 +1,30 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: ServersTransport +metadata: + name: kubernetes-dashboard-transport + namespace: kube-system + +spec: + serverName: kubernetes-dashboard + insecureSkipVerify: true +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: kubernetes-dashboard-tls + namespace: kube-system +spec: + entryPoints: # [1] + - websecure + routes: # [2] + - kind: Rule + match: Host(`kubernetes-dev.allarddcs.nl`) # [3] + priority: 10 # [4] + services: # [8] + - kind: Service + name: kubernetes-dashboard + namespace: kube-system + port: 443 # [9] + serversTransport: kubernetes-dashboard-transport + tls: # [11] + certResolver: letsencrypt diff --git a/kubernetes/dev/kubernetes/serviceaccount.yaml b/kubernetes/dev/kubernetes/serviceaccount.yaml new file mode 100755 index 0000000..27b6bb8 --- /dev/null +++ b/kubernetes/dev/kubernetes/serviceaccount.yaml @@ -0,0 +1,5 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: admin-user + namespace: kube-system diff --git a/kubernetes/dev/mariadb/create-secret.sh b/kubernetes/dev/mariadb/create-secret.sh new file mode 100755 index 0000000..0d6356e --- /dev/null +++ b/kubernetes/dev/mariadb/create-secret.sh @@ -0,0 +1 @@ +microk8s kubectl create secret generic mariadb-secret --from-file=username=./username.txt --from-file=password=./password.txt diff --git a/kubernetes/dev/mariadb/login.sh b/kubernetes/dev/mariadb/login.sh new file mode 100755 index 0000000..c79c168 --- /dev/null +++ b/kubernetes/dev/mariadb/login.sh @@ -0,0 +1 @@ +microk8s kubectl exec -it mariadb-sts-0 -- mariadb -uroot -psecret -n databases diff --git a/kubernetes/dev/mariadb/mariadb-dev.yaml b/kubernetes/dev/mariadb/mariadb-dev.yaml new file mode 100755 index 0000000..b48d9c9 --- /dev/null +++ b/kubernetes/dev/mariadb/mariadb-dev.yaml @@ -0,0 +1,81 @@ +apiVersion: v1 +kind: Service +metadata: + name: mariadb + namespace: mariadb + labels: + app: mariadb +spec: + ports: + - port: 3306 + name: mariadb-port + clusterIP: None + selector: + app: mariadb +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: mariadb-sts + namespace: mariadb +spec: + serviceName: "mariadb" + replicas: 1 + selector: + matchLabels: + app: mariadb + template: + metadata: + labels: + app: mariadb + spec: + containers: + - name: mariadb + image: mariadb:10.11.4 + ports: + - containerPort: 3306 + name: mariadb-port + env: + - name: MARIADB_ROOT_PASSWORD + value: "jamesbrown" + - name: innodb_force_recovery + value: "1" + volumeMounts: + - name: datadir + mountPath: /var/lib/mysql/ + volumes: + - name: datadir + persistentVolumeClaim: + claimName: mariadb-pvc +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: mariadb-pv + labels: + type: local +spec: + storageClassName: "" + capacity: + storage: 4Gi + accessModes: + - ReadWriteMany + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/mariadb/dev/ + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: mariadb-pvc + namespace: mariadb +spec: + storageClassName: "" + volumeName: mariadb-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 4Gi diff --git a/kubernetes/dev/mariadb/password.txt b/kubernetes/dev/mariadb/password.txt new file mode 100755 index 0000000..536aca3 --- /dev/null +++ b/kubernetes/dev/mariadb/password.txt @@ -0,0 +1 @@ +secret \ No newline at end of file diff --git a/kubernetes/dev/mariadb/username.txt b/kubernetes/dev/mariadb/username.txt new file mode 100755 index 0000000..93ca142 --- /dev/null +++ b/kubernetes/dev/mariadb/username.txt @@ -0,0 +1 @@ +root \ No newline at end of file diff --git a/kubernetes/dev/nexus/README.md b/kubernetes/dev/nexus/README.md new file mode 100755 index 0000000..19c8ae5 --- /dev/null +++ b/kubernetes/dev/nexus/README.md @@ -0,0 +1,28 @@ +user: admin +password: Nexus01@ + +#installatie + +postgres14 starten als dat nog niet is gebeurd +certificaat is geinstalleerd met keytool en staat op nfs-share + +ingressrouteTCP-routes aanmaken voor registry + +ingressroutes HTTP en TLS aanmaken voor nexus (nodig voor compileren met maven) + +kubectl apply -f nexus.yaml +i.v.m. permissions (zie logfile) indien nodig op sudo chmod +R /mnt/nfs_share/nexus uitvoeren +admin password staat in data-dir op de nfs-share + +#SSL: + + + +#Repository-routes configureren: + +In nexus kun je een repository definieren van het type "Docker". + +Die geef je dan een eigen poortnummer, anders dan de poort die je al gebruikt voor de GUI. +Deze poort moet je ook als ingressrouteTCP ontsluiten maar dan wel op een andere domeinnaam +bv: "registry-riscv.allarddcs.nl". +Deze tweede route heeft hetzelfde "entrypoint" als de GUI, namelijk "websecure" diff --git a/kubernetes/dev/nexus/ingressroute-http.yaml b/kubernetes/dev/nexus/ingressroute-http.yaml new file mode 100755 index 0000000..251d1df --- /dev/null +++ b/kubernetes/dev/nexus/ingressroute-http.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nexus-http + namespace: nexus +spec: + entryPoints: + - web + routes: + - match: Host(`nexus-dev.allarddcs.nl`) + kind: Rule + services: + - name: nexus + port: 8081 diff --git a/kubernetes/dev/nexus/ingressroute-registry-tls.yaml b/kubernetes/dev/nexus/ingressroute-registry-tls.yaml new file mode 100755 index 0000000..77b4e19 --- /dev/null +++ b/kubernetes/dev/nexus/ingressroute-registry-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: registry-tls + namespace: nexus +spec: + entryPoints: + - websecure + routes: + - match: Host(`registry-dev.allarddcs.nl`) + kind: Rule + services: + - name: nexus + port: 8444 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/nexus/ingressroute-tls.yaml b/kubernetes/dev/nexus/ingressroute-tls.yaml new file mode 100755 index 0000000..96b9081 --- /dev/null +++ b/kubernetes/dev/nexus/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nexus-tls + namespace: nexus +spec: + entryPoints: + - websecure + routes: + - match: Host(`nexus-dev.allarddcs.nl`) + kind: Rule + services: + - name: nexus + port: 8081 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/nexus/ingressrouteTCP-nexus-tls.yaml b/kubernetes/dev/nexus/ingressrouteTCP-nexus-tls.yaml new file mode 100755 index 0000000..1b04da1 --- /dev/null +++ b/kubernetes/dev/nexus/ingressrouteTCP-nexus-tls.yaml @@ -0,0 +1,15 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: nexus-tcp-tls + namespace: nexus +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`nexus-dev.allarddcs.nl`) + services: + - name: nexus + port: 8443 + tls: + passthrough: true diff --git a/kubernetes/dev/nexus/ingressrouteTCP-registry-tls.yaml b/kubernetes/dev/nexus/ingressrouteTCP-registry-tls.yaml new file mode 100755 index 0000000..9236022 --- /dev/null +++ b/kubernetes/dev/nexus/ingressrouteTCP-registry-tls.yaml @@ -0,0 +1,15 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: registry-tcp-tls + namespace: nexus +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`registry-dev.alldcs.nl`) + services: + - name: nexus + port: 8444 + tls: + passthrough: true diff --git a/kubernetes/dev/nexus/keytool/README.md b/kubernetes/dev/nexus/keytool/README.md new file mode 100644 index 0000000..c53dc7c --- /dev/null +++ b/kubernetes/dev/nexus/keytool/README.md @@ -0,0 +1,10 @@ +keytool -genkeypair -keystore keystore.jks -storepass password -alias alldcs.nl \ +-keyalg RSA -keysize 2048 -validity 5000 -keypass password \ +-dname 'CN=*.alldcs.nl, OU=Sonatype, O=Sonatype, L=Unspecified, ST=Unspecified, C=US' \ +-ext 'SAN=DNS:nexus-dev.alldcs.nl,DNS:registry-dev.alldcs.nl' + +keytool -exportcert -keystore keystore.jks -alias alldcs.nl -rfc > alldcs.nl.cert + +keytool -importkeystore -srckeystore keystore.jks -destkeystore alldcs.nl.p12 -deststoretype PKCS12 + +openssl pkcs12 -nocerts -nodes -in alldcs.nl.p12 -out alldcs.nl.key diff --git a/kubernetes/dev/nexus/keytool/allarddcs.nl.cert b/kubernetes/dev/nexus/keytool/allarddcs.nl.cert new file mode 100644 index 0000000..f5eb66f --- /dev/null +++ b/kubernetes/dev/nexus/keytool/allarddcs.nl.cert @@ -0,0 +1,23 @@ +-----BEGIN CERTIFICATE----- +MIIDyzCCArOgAwIBAgIIQVU5a1zSKfkwDQYJKoZIhvcNAQEMBQAwdTELMAkGA1UE +BhMCVVMxFDASBgNVBAgTC1Vuc3BlY2lmaWVkMRQwEgYDVQQHEwtVbnNwZWNpZmll +ZDERMA8GA1UEChMIU29uYXR5cGUxETAPBgNVBAsTCFNvbmF0eXBlMRQwEgYDVQQD +DAsqLmFsbGRjcy5ubDAeFw0yNTAzMjIxNDQwNDBaFw0zODExMjkxNDQwNDBaMHUx +CzAJBgNVBAYTAlVTMRQwEgYDVQQIEwtVbnNwZWNpZmllZDEUMBIGA1UEBxMLVW5z +cGVjaWZpZWQxETAPBgNVBAoTCFNvbmF0eXBlMREwDwYDVQQLEwhTb25hdHlwZTEU +MBIGA1UEAwwLKi5hbGxkY3MubmwwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQDNfCbWeuXEUjdmp2mB/rZ9/ETwBQnKjDG6VSdOV3tyNZ7Y89rWY4m2q/HM +RO2dfyrqO8jVQMBH1Qor0emivHWkpzcwa8Cej1hpQwoABK9JgcrXiAV317iE4DiC +RHUUsx35hEuTLpPZwG2ztrsFh8PNtA91g7PAwSVDsImETxiGJEsxBJEl19gATlh0 +yOsAQU4bUARxtwgQpDOrEIvQkUF67tLSOsMtsf0Eqsszyxdes0mqbCjgt7Km1GL9 +6srz7jFDPCP6GDC/sQOFAnl1aLMt2v3CwttqBDW9OpRI4f6wtZSRfLZVkwCPYQis +TyPUoE/eVpcZJ7B4UpvMiF8lEuMjAgMBAAGjXzBdMB0GA1UdDgQWBBQLlbw9jIld +dSRfglGeQisjTih76jA8BgNVHREENTAzghZuZXh1cy1kZXYuYWxsYXJkZGNzLm5s +ghlyZWdpc3RyeS1kZXYuYWxsYXJkZGNzLm5sMA0GCSqGSIb3DQEBDAUAA4IBAQAA +5aKPA2L3VIFtBzlq3ju8iQeu5hjCLn1pqqE2oeHNkhjdX+GeuPUdkT7MdAmO+sRo +Prfcq1OXsDsIUCAzfkeRl2Lw/QuYhl8/Nvv6KmElDZj1fAjq1r6c4bgK/RXqu9YF +enoYPCN8h8LmPHxOHwD0txMgX/b/5t+xg9y3YY+noRSSrHbi2yTyczlPLqHype91 +VKYBgEngB0+2ZzitNRzPvlsfbICVySxR4r9nJLKad3YR+Px4BMoIKh2tSPDCpGAh +fMdNq+fNFPsss0kZx2iaE+XV+k+w1LBsd03lvxgcIsjLLZd8vQ8vaiubHEC77qTH +31BSvKs83iennkzpN0ur +-----END CERTIFICATE----- diff --git a/kubernetes/dev/nexus/keytool/allarddcs.nl.key b/kubernetes/dev/nexus/keytool/allarddcs.nl.key new file mode 100644 index 0000000..6c4758b --- /dev/null +++ b/kubernetes/dev/nexus/keytool/allarddcs.nl.key @@ -0,0 +1,64 @@ +Bag Attributes + friendlyName: alldcs.nl + localKeyID: 54 69 6D 65 20 31 37 34 32 36 35 34 35 39 36 34 35 32 +Key Attributes: +-----BEGIN PRIVATE KEY----- +MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCvTeB1T11Cr1J7 +VWzF0b807MdFk5z+Uo88t1mQPX+I6e4CbEzhMkKUIMqhGIUXtHnWLXxpQrBeY0BS +bL3lX0CogxywKC203lJIquyazhSAVSVLzD+nVPjqG1XmxaXx89jLJ7irCtVZv1sE +UyfC/OAJ1VS86SSIHPqyznlyM4w58rnbwX4kHI54xawdpI4YWQ32J/rKAL8M/39x +avwEw+GsbC1kSMbM2l1mcNkffKFVXjAJPVUMtAKGp10zpWG0NInwmrcs1YznaP89 +X2c7NyVR5zTQgmtVur51R2XubvPBxYONyt0XW+o8ExaSdPEVk5X3jCzmewixecUB +oN79taF7AgMBAAECggEACoclnECfFrKlxEoTOrwdJ2YIP6RHpjm6EsjmGZSqlJk2 +ldxVhPlk6IrMRdQi+2iiH9vidVsvxrNfjl5WdzB7FxkB/42iKmhm+P3phhCAnbEU +s30kM33rEaWA9AIvCZ1TNJGBnyVgPmq7YhfxCDOcltVCKLLjDUOZm2RtWbpBHney +TJzc3vBR13C8C5UHAaUs762D5emoWKbVv/5WequBJm6WtbRIpsyTkK2jujBNpI5z +hsOwkNA1PC315AqnKpzK9RuM6e9z5cMFzNtbdLfnJRk83NaMPXdPLOhJqgGRIZH/ +3iIX7JMZ5Tmw6vYxUXUcnO4aoPxgttzWTFtVDfeg1QKBgQDH8n18S3mhmtlw59Hi +vTg7ONPF6UU+agj8WDObZ8VoYAQn8GJZxa5dAhOuXPVOn66Omyxbm/rf/agb1KxP +7Z5yJJnAsjxs1kV1NXX657Jq84+B2XkFNNzRw7ghwGXTFucmqANJg978GNzQCHST +G1IuGtf9iZJPhB1Z9y5OHYSSrQKBgQDgctf12Qk1n2k+4uNLA/VNyh+7t6+5P2Fq +1m7GQ8b4kiOWH2uDmoCF/w5tYubnjIo8b5/HAoLSDR67VowFf250jiWfzHP/EK2J +G0CBu0ANEjTAacdzX+mUb/Gu5Z3RmShPd+Qrj4/kb4jqKuENW3pu8DPnnTyP5wCc +F7U4MPaxxwKBgDSThf22FwCwqDaxLpaRrQSdl8o14bhcx4obY06dBeLBRLZ/1kzG +12erkSNLXFHVWWA0W4CnTlux5o+S59CIqh5Xk3qBI7R2z4LXkPNuE5NeAkFhvxno +YZxi+7scTWopXpTinyKoo2zk2MN3Rbgc+goXku4fS7LPCazLe4ic6GxtAoGBAJ1w +kYJXarldh8Lf/lX5gdG+LYJMuAu2pMv/fJbApkpooGPGyHD5KJxVrDYYwSW9FJ6O +IkLDxSY4o8z/SZr1p3JE36l3DgrmFQRuxFH8GlLQ6YXq7UhGCB/iYmKvmIOU7ozH +6ZqQynuPrTetOk5XU8uL3KzkQ74haPEVRD4VQoazAoGAYYrB/sfjpmvQyY0kp4ed +xSqXKx60teHIr9Wxc1XWJQVVq21kvxFaOF+21j7jh8cCmFmBEYMg3W6BtFuE664Q +GwOrrzzzW86MKgFUxa6T+a2wRgRIyoXcHXqh5EPt96LuoO6YOwzVqFjNTz7+RPyr +h2DnDohGFzynbZ6RlqdeHAk= +-----END PRIVATE KEY----- +Bag Attributes + friendlyName: allarddcs.nl + localKeyID: 54 69 6D 65 20 31 37 34 32 36 35 34 35 39 36 36 33 35 +Key Attributes: +-----BEGIN PRIVATE KEY----- +MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDNfCbWeuXEUjdm +p2mB/rZ9/ETwBQnKjDG6VSdOV3tyNZ7Y89rWY4m2q/HMRO2dfyrqO8jVQMBH1Qor +0emivHWkpzcwa8Cej1hpQwoABK9JgcrXiAV317iE4DiCRHUUsx35hEuTLpPZwG2z +trsFh8PNtA91g7PAwSVDsImETxiGJEsxBJEl19gATlh0yOsAQU4bUARxtwgQpDOr +EIvQkUF67tLSOsMtsf0Eqsszyxdes0mqbCjgt7Km1GL96srz7jFDPCP6GDC/sQOF +Anl1aLMt2v3CwttqBDW9OpRI4f6wtZSRfLZVkwCPYQisTyPUoE/eVpcZJ7B4UpvM +iF8lEuMjAgMBAAECggEAHV1YGX9vlVogc6mJ8NtLDf7+hQRbTVgyhQvFNbNXv079 +V8ilZczMsc+pmsTg5gh1xApuHVeHAtzlerShPDHNaA3DW8aSPLaEbmp3o+AHgqwr +JhjYmzM3ObnnKWqKBr7AEle/CxX1aAFRTATZfiVULHHGYcdD6VBQuHcid8dr3ENS +v/WUVGcd52O9H8SkWSRvEjnHvUj/c3JELaXnc3BI6dQxYJybOZRyJ//PQJaYhG9n +P1BdYhm/k24OAriROBK22qODxf+/a530IGL4rFxIx0KfuwbEy+/Kj+p7HgweL2M0 +OByRDkPbmTlaVh+31GusK514bNbYE3Q2RzaUuM2nLQKBgQDT/sB6MNgJ9ctkGFFa +wXiG08rCtJkvk6/HLIAUrHcnLwwufOTLDdDJf6ltAmTH4e95yhvWdXN3lpPmFz8n +4Tu3AKtZQtWaPQY5vQG5Q9kLX2SXGqr0YCWwKxYro6qKQM8UZWJgxei2z/KS1Boe +JaequHPrAsV3TBFgBfrwROq7vQKBgQD4I3SWK/FZqjHr4yncwpG4n7EMIl7JILIC +9XBww0N2snfhxc2yvqyMfpGsP8EcxIGP6+oEh9rMGEHesiU1TtyoEBGmAWPspQsm +G4G58Emwe+NXpVwlx2q/QR86XhYPPsGYqz2oyQdaBe2avyBYUzyxB9PUHDLT7pEj +oLK/DOuYXwKBgQDMsOrKUMUYgOLdB/nthmdIz9C0RUqvvIr55obY71mxVOUPMfp7 +8SAKnyBJKAmFUis3TiWo4gkWjCbMAOAzMm/FGHlaG4VBgvCy6UNzzgYQzA/FMrOk +d/2L515lzobJLSCFkgr2Y8F6WrjeerupJjSJS8ZpQWjG8oTIUZ3lRrXbhQKBgFdT +YvxWiqGbm+YAFAN1FgN7b7ttfR4bO4p/BgspLNzhAf+atUFqiR8IjAuqhDOzlEUq +KTle9klNYCEXYLDaCB29Sfi6FIh7rOjEVWsyfTx23RNDRqKlA5Q7Ptozsl+7Hja0 +TQbReJzd6TjEeoWbBYjn0Eydf+XF155KN5201lTRAoGBAJPlfkEErEmI4L4FRbT1 +aO+FUCaZyOU0oNLLIcFDkt+UdmPm5b55Vor6L9AqhrY8Pu8LyIuURJzdW6cX9q6O +UQXXjeChD2q/8gqunMHi+w8JXsTrd02gRB2vj5TRhtEwAvBFqE+7GdikoWhUpQQk +xQkyPrYzS6ABbkupmqkktPWF +-----END PRIVATE KEY----- diff --git a/kubernetes/dev/nexus/keytool/allarddcs.nl.p12 b/kubernetes/dev/nexus/keytool/allarddcs.nl.p12 new file mode 100644 index 0000000..8ed5c7f Binary files /dev/null and b/kubernetes/dev/nexus/keytool/allarddcs.nl.p12 differ diff --git a/kubernetes/dev/nexus/keytool/alldcs.nl.cert b/kubernetes/dev/nexus/keytool/alldcs.nl.cert new file mode 100644 index 0000000..324ebaf --- /dev/null +++ b/kubernetes/dev/nexus/keytool/alldcs.nl.cert @@ -0,0 +1,23 @@ +-----BEGIN CERTIFICATE----- +MIIDxjCCAq6gAwIBAgIJALj4Maegx4M4MA0GCSqGSIb3DQEBDAUAMHUxCzAJBgNV +BAYTAlVTMRQwEgYDVQQIEwtVbnNwZWNpZmllZDEUMBIGA1UEBxMLVW5zcGVjaWZp +ZWQxETAPBgNVBAoTCFNvbmF0eXBlMREwDwYDVQQLEwhTb25hdHlwZTEUMBIGA1UE +AwwLKi5hbGxkY3MubmwwHhcNMjQwNTIxMTk0NTUxWhcNMzgwMTI4MTk0NTUxWjB1 +MQswCQYDVQQGEwJVUzEUMBIGA1UECBMLVW5zcGVjaWZpZWQxFDASBgNVBAcTC1Vu +c3BlY2lmaWVkMREwDwYDVQQKEwhTb25hdHlwZTERMA8GA1UECxMIU29uYXR5cGUx +FDASBgNVBAMMCyouYWxsZGNzLm5sMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEAr03gdU9dQq9Se1VsxdG/NOzHRZOc/lKPPLdZkD1/iOnuAmxM4TJClCDK +oRiFF7R51i18aUKwXmNAUmy95V9AqIMcsCgttN5SSKrsms4UgFUlS8w/p1T46htV +5sWl8fPYyye4qwrVWb9bBFMnwvzgCdVUvOkkiBz6ss55cjOMOfK528F+JByOeMWs +HaSOGFkN9if6ygC/DP9/cWr8BMPhrGwtZEjGzNpdZnDZH3yhVV4wCT1VDLQChqdd +M6VhtDSJ8Jq3LNWM52j/PV9nOzclUec00IJrVbq+dUdl7m7zwcWDjcrdF1vqPBMW +knTxFZOV94ws5nsIsXnFAaDe/bWhewIDAQABo1kwVzAdBgNVHQ4EFgQU2gEAfqdw +Ac0V0B1kt3f8ivM/g3UwNgYDVR0RBC8wLYITbmV4dXMtZGV2LmFsbGRjcy5ubIIW +cmVnaXN0cnktZGV2LmFsbGRjcy5ubDANBgkqhkiG9w0BAQwFAAOCAQEAg6z+lT8u +MY7tTUtUfxvBU1HYwKneZrWYsBIhFlD3uxGHCuedzmD3uKE7zAqgLfHqsDR/3t2z +Nqo3Qt2p7Gme5mtLlBOnFcNz1QwWAC+ertkLCGXKYx+jlEnrvkfiVKa6mpS2So/m +mGnXxV+xp1DttiOhVNDM96JTGEE5MjFwvj+fCrQhEfbsxoNfgSnSI6UNtj0lFjX7 +Tji6KFa3ZqaSQmXVnJFCD88aiVPh8MIluIkoaWz0NjiiKti0rnlRkur9O3YPXJOj +I0hSs+iRISI56C6Vr9QvGlVhcf71j6SgsWb1JLNK7bcmj+E4jfCI+J4thjlmkoVg +9L86AK+Q3VjlPQ== +-----END CERTIFICATE----- diff --git a/kubernetes/dev/nexus/keytool/alldcs.nl.key b/kubernetes/dev/nexus/keytool/alldcs.nl.key new file mode 100644 index 0000000..f6a98c0 --- /dev/null +++ b/kubernetes/dev/nexus/keytool/alldcs.nl.key @@ -0,0 +1,32 @@ +Bag Attributes + friendlyName: alldcs.nl + localKeyID: 54 69 6D 65 20 31 37 31 36 33 32 30 38 33 34 32 35 33 +Key Attributes: +-----BEGIN PRIVATE KEY----- +MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCvTeB1T11Cr1J7 +VWzF0b807MdFk5z+Uo88t1mQPX+I6e4CbEzhMkKUIMqhGIUXtHnWLXxpQrBeY0BS +bL3lX0CogxywKC203lJIquyazhSAVSVLzD+nVPjqG1XmxaXx89jLJ7irCtVZv1sE +UyfC/OAJ1VS86SSIHPqyznlyM4w58rnbwX4kHI54xawdpI4YWQ32J/rKAL8M/39x +avwEw+GsbC1kSMbM2l1mcNkffKFVXjAJPVUMtAKGp10zpWG0NInwmrcs1YznaP89 +X2c7NyVR5zTQgmtVur51R2XubvPBxYONyt0XW+o8ExaSdPEVk5X3jCzmewixecUB +oN79taF7AgMBAAECggEACoclnECfFrKlxEoTOrwdJ2YIP6RHpjm6EsjmGZSqlJk2 +ldxVhPlk6IrMRdQi+2iiH9vidVsvxrNfjl5WdzB7FxkB/42iKmhm+P3phhCAnbEU +s30kM33rEaWA9AIvCZ1TNJGBnyVgPmq7YhfxCDOcltVCKLLjDUOZm2RtWbpBHney +TJzc3vBR13C8C5UHAaUs762D5emoWKbVv/5WequBJm6WtbRIpsyTkK2jujBNpI5z +hsOwkNA1PC315AqnKpzK9RuM6e9z5cMFzNtbdLfnJRk83NaMPXdPLOhJqgGRIZH/ +3iIX7JMZ5Tmw6vYxUXUcnO4aoPxgttzWTFtVDfeg1QKBgQDH8n18S3mhmtlw59Hi +vTg7ONPF6UU+agj8WDObZ8VoYAQn8GJZxa5dAhOuXPVOn66Omyxbm/rf/agb1KxP +7Z5yJJnAsjxs1kV1NXX657Jq84+B2XkFNNzRw7ghwGXTFucmqANJg978GNzQCHST +G1IuGtf9iZJPhB1Z9y5OHYSSrQKBgQDgctf12Qk1n2k+4uNLA/VNyh+7t6+5P2Fq +1m7GQ8b4kiOWH2uDmoCF/w5tYubnjIo8b5/HAoLSDR67VowFf250jiWfzHP/EK2J +G0CBu0ANEjTAacdzX+mUb/Gu5Z3RmShPd+Qrj4/kb4jqKuENW3pu8DPnnTyP5wCc +F7U4MPaxxwKBgDSThf22FwCwqDaxLpaRrQSdl8o14bhcx4obY06dBeLBRLZ/1kzG +12erkSNLXFHVWWA0W4CnTlux5o+S59CIqh5Xk3qBI7R2z4LXkPNuE5NeAkFhvxno +YZxi+7scTWopXpTinyKoo2zk2MN3Rbgc+goXku4fS7LPCazLe4ic6GxtAoGBAJ1w +kYJXarldh8Lf/lX5gdG+LYJMuAu2pMv/fJbApkpooGPGyHD5KJxVrDYYwSW9FJ6O +IkLDxSY4o8z/SZr1p3JE36l3DgrmFQRuxFH8GlLQ6YXq7UhGCB/iYmKvmIOU7ozH +6ZqQynuPrTetOk5XU8uL3KzkQ74haPEVRD4VQoazAoGAYYrB/sfjpmvQyY0kp4ed +xSqXKx60teHIr9Wxc1XWJQVVq21kvxFaOF+21j7jh8cCmFmBEYMg3W6BtFuE664Q +GwOrrzzzW86MKgFUxa6T+a2wRgRIyoXcHXqh5EPt96LuoO6YOwzVqFjNTz7+RPyr +h2DnDohGFzynbZ6RlqdeHAk= +-----END PRIVATE KEY----- diff --git a/kubernetes/dev/nexus/keytool/alldcs.nl.p12 b/kubernetes/dev/nexus/keytool/alldcs.nl.p12 new file mode 100644 index 0000000..b9142ee Binary files /dev/null and b/kubernetes/dev/nexus/keytool/alldcs.nl.p12 differ diff --git a/kubernetes/dev/nexus/keytool/keystore.jks b/kubernetes/dev/nexus/keytool/keystore.jks new file mode 100644 index 0000000..a156407 Binary files /dev/null and b/kubernetes/dev/nexus/keytool/keystore.jks differ diff --git a/kubernetes/dev/nexus/nexus.yaml b/kubernetes/dev/nexus/nexus.yaml new file mode 100755 index 0000000..78cfdf5 --- /dev/null +++ b/kubernetes/dev/nexus/nexus.yaml @@ -0,0 +1,168 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nexus + namespace: nexus + labels: + app: nexus +spec: + replicas: 1 + selector: + matchLabels: + app: nexus + template: + metadata: + labels: + app: nexus + spec: + terminationGracePeriodSeconds: 30 + tolerations: + - key: "memory" + operator: "Equal" + value: "high" + effect: "NoSchedule" + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: kubernetes.io/hostname + operator: NotIn + values: + - pisvrwsv04 + containers: + - name: nexus + image: sonatypecommunity/nexus3:3.68.1-java11 + resources: + requests: + memory: "2Gi" + cpu: "500m" + limits: + memory: "4Gi" + cpu: "1000m" + ports: + - containerPort: 8081 + name: web + - containerPort: 8443 + name: websecure + - containerPort: 8444 + name: docker + volumeMounts: + - mountPath: /nexus-data + name: nexus + subPath: data-dir + - mountPath: /opt/sonatype/nexus/etc/jetty + name: nexus + subPath: app-dir + env: + - name: INSTALL4J_ADD_VM_PARAMS + value: "-XX:ActiveProcessorCount=4" + - name: Djava.util.prefs.userRoot + value: "/opt/sonatype/sonatype-work/nexus3/javaprefs" + volumes: + - name: nexus + persistentVolumeClaim: + claimName: nexus-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: nexus + namespace: nexus +spec: + ports: + - name: web + targetPort: 8081 + port: 8081 + - name: websecure + targetPort: 8443 + port: 8443 + - name: docker + targetPort: 8444 + port: 8444 + selector: + app: nexus + type: ClusterIP +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nexus-http + namespace: nexus +spec: + entryPoints: + - web + routes: + - match: Host(`nexus-dev.alldcs.nl`) + kind: Rule + services: + - name: nexus + port: 8081 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nexus-tls + namespace: nexus +spec: + entryPoints: + - websecure + routes: + - match: Host(`nexus-dev.alldcs.nl`) + kind: Rule + services: + - name: nexus + port: 8081 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: registry-tcp-tls + namespace: nexus +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`registry-dev.alldcs.nl`) + services: + - name: nexus + port: 8444 + tls: + passthrough: true +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nexus-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/nexus/dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nexus-pvc + namespace: nexus +spec: + storageClassName: "" + volumeName: nexus-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/kubernetes/dev/nexus/nietnodig/amd/nexus.yaml b/kubernetes/dev/nexus/nietnodig/amd/nexus.yaml new file mode 100755 index 0000000..903701b --- /dev/null +++ b/kubernetes/dev/nexus/nietnodig/amd/nexus.yaml @@ -0,0 +1,94 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nexus-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/nexus + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nexus-pvc +spec: + storageClassName: "" + volumeName: nexus-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nexus + labels: + app: nexus +spec: + replicas: 1 + selector: + matchLabels: + app: nexus + template: + metadata: + labels: + app: nexus + spec: + containers: + - name: nexus + image: sonatype/nexus3 + ports: + - containerPort: 8081 + name: web + - containerPort: 8443 + name: websecure + - containerPort: 8444 + name: docker +# volumeMounts: +# - mountPath: /nexus-data +# name: nexus +# subPath: data-dir +# - mountPath: /opt/sonatype/nexus/etc +# name: nexus +# subPath: app-dir + env: + - name: INSTALL4J_ADD_VM_PARAMS + value: "-XX:ActiveProcessorCount=4" + - name: Djava.util.prefs.userRoot + value: "/opt/sonatype/sonatype-work/nexus3/javaprefs" +# volumes: +# - name: nexus +# persistentVolumeClaim: +# claimName: nexus-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: nexus +spec: + ports: + - name: http + targetPort: 8081 + port: 8081 + - name: https + targetPort: 8443 + port: 8443 + - name: nexus + targetPort: 8444 + port: 8444 + selector: + app: nexus + type: ClusterIP diff --git a/kubernetes/dev/nexus/nietnodig/certificate.yaml b/kubernetes/dev/nexus/nietnodig/certificate.yaml new file mode 100755 index 0000000..67d99de --- /dev/null +++ b/kubernetes/dev/nexus/nietnodig/certificate.yaml @@ -0,0 +1,15 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: nexus.alldcs.nl-tls +spec: + dnsNames: + - nexus.alldcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: nexus.alldcs.nl-tls + usages: + - digital signature + - key encipherment diff --git a/kubernetes/dev/nexus/nietnodig/ingressroute-http.yaml b/kubernetes/dev/nexus/nietnodig/ingressroute-http.yaml new file mode 100755 index 0000000..f11e8da --- /dev/null +++ b/kubernetes/dev/nexus/nietnodig/ingressroute-http.yaml @@ -0,0 +1,13 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: nexus-http +spec: + entryPoints: + - web + routes: + - match: Host(`nexus.alldcs.nl`) + kind: Rule + services: + - name: nexus + port: 8081 diff --git a/kubernetes/dev/nexus/nietnodig/ingressrouteTCP-backup.yaml b/kubernetes/dev/nexus/nietnodig/ingressrouteTCP-backup.yaml new file mode 100755 index 0000000..a281b32 --- /dev/null +++ b/kubernetes/dev/nexus/nietnodig/ingressrouteTCP-backup.yaml @@ -0,0 +1,38 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: nexus-tcp-tls +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`nexus.alldcs.nl`) + services: + - name: nexus + port: 8443 + - match: HostSNI(`nexus.alldcs.nl`) + services: + - name: nexus + port: 8443 + tls: + passthrough: true +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: nexus-tcp-docker +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`registry.alldcs.nl`) + services: + - name: nexus + port: 8444 + - match: HostSNI(`registry.alldcs.nl`) && PathPrefix(`/v2/`) + services: + - name: nexus + port: 8444 + tls: + passthrough: true + diff --git a/kubernetes/dev/nginx/nginx-dev.yaml b/kubernetes/dev/nginx/nginx-dev.yaml new file mode 100755 index 0000000..e75d26d --- /dev/null +++ b/kubernetes/dev/nginx/nginx-dev.yaml @@ -0,0 +1,101 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: nginx +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nginx-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/nginx-dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nginx-pvc + namespace: nginx +spec: + storageClassName: "" + volumeName: nginx-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx + namespace: nginx + labels: + app: nginx +spec: + replicas: 1 + selector: + matchLabels: + app: nginx + template: + metadata: + labels: + app: nginx + spec: + containers: + - name: nginx + image: nginx:1.14.2 + volumeMounts: + - mountPath: /usr/share/nginx/html + name: nginx + subPath: html + ports: + - containerPort: 80 + volumes: + - name: nginx + persistentVolumeClaim: + claimName: nginx-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: nginx + namespace: nginx + labels: + name: nginx +spec: + type: ClusterIP + ports: + - port: 80 + name: http + selector: + app: nginx +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: nginx-tls-allarddcs + namespace: nginx +spec: + entryPoints: + - websecure + routes: + - match: Host(`nginx-dev.allarddcs.nl`) + kind: Rule + services: + - name: nginx + port: 80 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/olproperties/.argocdignore b/kubernetes/dev/olproperties/.argocdignore new file mode 100644 index 0000000..f41daad --- /dev/null +++ b/kubernetes/dev/olproperties/.argocdignore @@ -0,0 +1,2 @@ +./catalog-info.yaml +./catalog-info.yml diff --git a/kubernetes/dev/olproperties/ingressroute.yaml b/kubernetes/dev/olproperties/ingressroute.yaml new file mode 100755 index 0000000..1fab8f5 --- /dev/null +++ b/kubernetes/dev/olproperties/ingressroute.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: olproperties-tls + namespace: default +spec: + entryPoints: + - websecure + routes: + - kind: Rule + match: Host(`olproperties2.alldcs.nl`) + services: + - name: olproperties + port: 9080 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/olproperties/olproperties.yaml b/kubernetes/dev/olproperties/olproperties.yaml new file mode 100755 index 0000000..af0cfe4 --- /dev/null +++ b/kubernetes/dev/olproperties/olproperties.yaml @@ -0,0 +1,53 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: olproperties + labels: + app: olproperties +spec: + replicas: 1 + selector: + matchLabels: + app: olproperties + template: + metadata: + labels: + app: olproperties + spec: + containers: + - name: olproperties + image: harbor-dev.allarddcs.nl/allard/olproperties:1.3 + imagePullPolicy: Always + ports: + - containerPort: 9080 + imagePullSecrets: + - name: registry-credentials +--- +apiVersion: v1 +kind: Service +metadata: + name: olproperties +spec: + type: ClusterIP + ports: + - name: port-0 + port: 9080 + selector: + app: olproperties +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: olproperties-tls +spec: + entryPoints: + - websecure + routes: + - match: Host(`olproperties-dev.allarddcs.nl`) + kind: Rule + services: + - name: olproperties + port: 9080 + tls: + certResolver: letsencrypt + diff --git a/kubernetes/dev/pgadmin/pgadmin.yaml b/kubernetes/dev/pgadmin/pgadmin.yaml new file mode 100755 index 0000000..663bacc --- /dev/null +++ b/kubernetes/dev/pgadmin/pgadmin.yaml @@ -0,0 +1,102 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: pgadmin-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/pgadmin/dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: pgadmin-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: pgadmin-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: pgadmin + namespace: postgres + labels: + app: pgadmin +spec: + replicas: 1 + selector: + matchLabels: + app: pgadmin + template: + metadata: + labels: + app: pgadmin + spec: + containers: + - name: pgadmin + image: dpage/pgadmin4 + ports: + - containerPort: 80 + env: + - name: PGADMIN_DEFAULT_EMAIL + value: admin@allarddcs.nl + - name: PGADMIN_DEFAULT_PASSWORD + value: Pgadmin01@ + volumeMounts: + - mountPath: /var/lib/pgadmin + name: pgadmin + volumes: + - name: pgadmin + persistentVolumeClaim: + claimName: pgadmin-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: pgadmin + namespace: postgres + labels: + name: pgadmin +spec: + selector: + app.kubernetes.io/name: pgadmin + ports: + - protocol: TCP + port: 80 + targetPort: 80 + selector: + app: pgadmin +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: pgadmin-tls + namespace: postgres +spec: + entryPoints: + - websecure + routes: + - match: Host(`pgadmin-dev.allarddcs.nl`) + kind: Rule + services: + - name: pgadmin + port: 80 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/phpmyadmin/README.md b/kubernetes/dev/phpmyadmin/README.md new file mode 100644 index 0000000..b46033e --- /dev/null +++ b/kubernetes/dev/phpmyadmin/README.md @@ -0,0 +1,2 @@ +user: root +password: jamesbrown diff --git a/kubernetes/dev/phpmyadmin/phpmyadmin.yaml b/kubernetes/dev/phpmyadmin/phpmyadmin.yaml new file mode 100755 index 0000000..32e0c75 --- /dev/null +++ b/kubernetes/dev/phpmyadmin/phpmyadmin.yaml @@ -0,0 +1,61 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: phpmyadmin + namespace: mariadb + labels: + app: phpmyadmin +spec: + replicas: 1 + selector: + matchLabels: + app: phpmyadmin + template: + metadata: + labels: + app: phpmyadmin + spec: + containers: + - name: phpmyadmin + image: phpmyadmin + ports: + - containerPort: 80 + env: + - name: PMA_HOST + value: mariadb + - name: PMA_PORT + value: "3306" + - name: MYSQL_ROOT_PASSWORD + value: "jamesbrown" +--- +apiVersion: v1 +kind: Service +metadata: + name: phpmyadmin + namespace: mariadb +spec: + selector: + app.kubernetes.io/name: phpmyadmin + ports: + - protocol: TCP + port: 80 + targetPort: 80 + selector: + app: phpmyadmin +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: phpmyadmin-tls + namespace: mariadb +spec: + entryPoints: + - websecure + routes: + - match: Host(`phpmyadmin-dev.allarddcs.nl`) + kind: Rule + services: + - name: phpmyadmin + port: 80 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/phpmyadmin/phpmyadmin2.yaml b/kubernetes/dev/phpmyadmin/phpmyadmin2.yaml new file mode 100755 index 0000000..cc58bb5 --- /dev/null +++ b/kubernetes/dev/phpmyadmin/phpmyadmin2.yaml @@ -0,0 +1,100 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: phpmyadmin-pv + labels: + type: local +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/phpmyadmin + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: phpmyadmin-pvc + namespace: mariadb +spec: + storageClassName: "" + volumeName: phpmyadmin-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1G +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: phpmyadmin + namespace: mariadb + labels: + app: phpmyadmin +spec: + replicas: 1 + selector: + matchLabels: + app: phpmyadmin + template: + metadata: + labels: + app: phpmyadmin + spec: + containers: + - name: phpmyadmin + image: arm64v8/phpmyadmin + ports: + - containerPort: 80 + env: + - name: PMA_HOST + value: mariadb + - name: PMA_PORT + value: "3306" + - name: MYSQL_ROOT_PASSWORD + value: "zabbix" +# volumeMounts: +# - name: phpconfig +# mountPath: /etc/phpmyadmin +# volumes: +# - name: phpconfig +# persistentVolumeClaim: +# claimName: phpmyadmin-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: phpmyadmin + namespace: mariadb +spec: + selector: + app.kubernetes.io/name: phpmyadmin + ports: + - protocol: TCP + port: 80 + targetPort: 80 + selector: + app: phpmyadmin +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: phpmyadmin-tls-alldcs + namespace: mariadb +spec: + entryPoints: + - websecure + routes: + - match: Host(`phpmyadmin-dev.alldcs.nl`) + kind: Rule + services: + - name: phpmyadmin + port: 80 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/portainer/README.md b/kubernetes/dev/portainer/README.md new file mode 100755 index 0000000..6bc9cd4 --- /dev/null +++ b/kubernetes/dev/portainer/README.md @@ -0,0 +1,6 @@ +#installeren portainer: + +microk8s enable portainer +kubect apply -f ingressroute-tls + +Het kan even duren voordat de boel is opgestart! diff --git a/kubernetes/dev/portainer/portainer.yaml b/kubernetes/dev/portainer/portainer.yaml new file mode 100644 index 0000000..1eac26b --- /dev/null +++ b/kubernetes/dev/portainer/portainer.yaml @@ -0,0 +1,196 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: portainer +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: portainer-sa-clusteradmin + namespace: portainer + labels: + app.kubernetes.io/name: portainer + app.kubernetes.io/instance: portainer + app.kubernetes.io/version: "ce-latest-ee-2.14.2" +--- +# Source: portainer/templates/rbac.yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: portainer + labels: + app.kubernetes.io/name: portainer + app.kubernetes.io/instance: portainer + app.kubernetes.io/version: "ce-latest-ee-2.14.2" +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: cluster-admin +subjects: +- kind: ServiceAccount + namespace: portainer + name: portainer-sa-clusteradmin +--- +# Source: portainer/templates/service.yaml +apiVersion: v1 +kind: Service +metadata: + name: portainer + namespace: portainer + labels: + io.portainer.kubernetes.application.stack: portainer + app.kubernetes.io/name: portainer + app.kubernetes.io/instance: portainer + app.kubernetes.io/version: "ce-latest-ee-2.14.2" +spec: + type: NodePort + ports: + - port: 9000 + targetPort: 9000 + protocol: TCP + name: http + nodePort: 30777 + - port: 9443 + targetPort: 9443 + protocol: TCP + name: https + nodePort: 30779 + - port: 30776 + targetPort: 30776 + protocol: TCP + name: edge + nodePort: 30776 + selector: + app.kubernetes.io/name: portainer + app.kubernetes.io/instance: portainer +--- +# Source: portainer/templates/deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: portainer + namespace: portainer + labels: + io.portainer.kubernetes.application.stack: portainer + app.kubernetes.io/name: portainer + app.kubernetes.io/instance: portainer + app.kubernetes.io/version: "ce-latest-ee-2.14.2" +spec: + replicas: 1 + strategy: + type: "Recreate" + selector: + matchLabels: + app.kubernetes.io/name: portainer + app.kubernetes.io/instance: portainer + template: + metadata: + labels: + app.kubernetes.io/name: portainer + app.kubernetes.io/instance: portainer + spec: + nodeSelector: + {} + serviceAccountName: portainer-sa-clusteradmin + volumes: + - name: "data" + persistentVolumeClaim: + claimName: portainer-pvc + containers: + - name: portainer + image: "portainer/portainer-ce:2.14.2" + imagePullPolicy: Always + args: + - '--tunnel-port=30776' + volumeMounts: + - name: data + mountPath: /data + ports: + - name: http + containerPort: 9000 + protocol: TCP + - name: https + containerPort: 9443 + protocol: TCP + - name: tcp-edge + containerPort: 8000 + protocol: TCP + livenessProbe: + httpGet: + path: / + port: 9443 + scheme: HTTPS + readinessProbe: + httpGet: + path: / + port: 9443 + scheme: HTTPS + resources: + {} +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: portainer-http + namespace: portainer +spec: + entryPoints: + - web + routes: + - match: Host(`portainer-dev.allarddcs.nl`) + kind: Rule + services: + - name: portainer + port: 9000 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: portainer-tls + namespace: portainer +spec: + entryPoints: + - websecure + routes: + - match: Host(`portainer-dev.allarddcs.nl`) + kind: Rule + services: + - name: portainer + port: 9000 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: portainer-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/portainer + readOnly: false +--- +kind: "PersistentVolumeClaim" +apiVersion: "v1" +metadata: + name: portainer-pvc + namespace: portainer +spec: + storageClassName: "" + volumeName: portainer-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 2Gi + diff --git a/kubernetes/dev/postgres13/postgres13.yaml b/kubernetes/dev/postgres13/postgres13.yaml new file mode 100755 index 0000000..31955d1 --- /dev/null +++ b/kubernetes/dev/postgres13/postgres13.yaml @@ -0,0 +1,88 @@ +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: postgres13 + namespace: postgres +spec: + serviceName: postgres13 + replicas: 1 + selector: + matchLabels: + app: postgres13 + template: + metadata: + labels: + app: postgres13 + spec: + containers: + - name: postgres13 + image: postgres:13 +# command: ["sh"] +# args: ["-c", "while true; do echo $(date -u) >> /tmp/run.log; sleep 5; done"] + ports: + - containerPort: 5432 + env: + - name: POSTGRES_DB + value: harbor + - name: POSTGRES_USER + value: harbor + - name: POSTGRES_PASSWORD + value: harbor + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: postgres + volumes: + - name: postgres + persistentVolumeClaim: + claimName: postgres13-pvc + nodeSelector: + kubernetes.io/arch: arm64 +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres13 + namespace: postgres + labels: + name: postgres13 +spec: + type: ClusterIP + ports: + - port: 5432 + name: postgres + selector: + app: postgres13 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgres13-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/postgres13dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres13-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: postgres13-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi diff --git a/kubernetes/dev/postgres13/secret/get-password.sh b/kubernetes/dev/postgres13/secret/get-password.sh new file mode 100755 index 0000000..214a62a --- /dev/null +++ b/kubernetes/dev/postgres13/secret/get-password.sh @@ -0,0 +1,2 @@ +echo User : $(microk8s kubectl get secret postgres -o jsonpath="{.data.POSTGRES_USER}" | base64 -d) +echo Password: $(microk8s kubectl get secret postgres -o jsonpath="{.data.POSTGRES_PASSWORD}" | base64 -d) diff --git a/kubernetes/dev/postgres13/secret/postgres-secret.yaml b/kubernetes/dev/postgres13/secret/postgres-secret.yaml new file mode 100755 index 0000000..9bb2ec4 --- /dev/null +++ b/kubernetes/dev/postgres13/secret/postgres-secret.yaml @@ -0,0 +1,8 @@ +apiVersion: v1 +kind: Secret +metadata: + name: postgres +data: + POSTGRES_PASSWORD: bXktc3VwZXItc2VjcmV0LXBhc3N3b3Jk +stringData: + POSTGRES_USER: root diff --git a/kubernetes/dev/postgres14/README.md b/kubernetes/dev/postgres14/README.md new file mode 100644 index 0000000..c0ed671 --- /dev/null +++ b/kubernetes/dev/postgres14/README.md @@ -0,0 +1,21 @@ +user: harbor +password: harbor + +#corrupte WAL-archive + +#postgres starten zonder database te starten door volgende toe te voegen in yaml:: + + command: ["sh"] + args: ["-c", "while true; do echo $(date -u) >> /tmp/run.log; sleep 5; done"] + +#dan inloggen in draaiende container + +kubectl exec -it postgres14-0 -n postgres -- sh + +#Switchen naar user POSTGRES + +su postgres + +#WAL-arhive resetten: + +pg_resetwal /var/lib/postgresql/data -f diff --git a/kubernetes/dev/postgres14/postgres14.yaml b/kubernetes/dev/postgres14/postgres14.yaml new file mode 100755 index 0000000..c9cbc6c --- /dev/null +++ b/kubernetes/dev/postgres14/postgres14.yaml @@ -0,0 +1,88 @@ +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: postgres14 + namespace: postgres +spec: + serviceName: postgres14 + replicas: 1 + selector: + matchLabels: + app: postgres14 + template: + metadata: + labels: + app: postgres14 + spec: + containers: + - name: postgres14 + image: postgres:14 + ports: + - containerPort: 5432 +# command: ["sh"] +# args: ["-c", "while true; do echo $(date -u) >> /tmp/run.log; sleep 5; done"] + env: + - name: POSTGRES_DB + value: postgres + - name: POSTGRES_USER + value: admin + - name: POSTGRES_PASSWORD + value: Pgadmin01@ + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: postgres + volumes: + - name: postgres + persistentVolumeClaim: + claimName: postgres14-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres14 + namespace: postgres + labels: + name: postgres14 +spec: + type: ClusterIP + ports: + - port: 5432 + name: postgres + selector: + app: postgres14 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgres14-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/postgres14dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres14-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: postgres14-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi +--- + diff --git a/kubernetes/dev/postgres15/postgres15.yaml b/kubernetes/dev/postgres15/postgres15.yaml new file mode 100755 index 0000000..c984095 --- /dev/null +++ b/kubernetes/dev/postgres15/postgres15.yaml @@ -0,0 +1,85 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgres15-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/postgres15test + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres15-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: postgres15-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: postgres15 + namespace: postgres +spec: + serviceName: postgres15 + replicas: 1 + selector: + matchLabels: + app: postgres15 + template: + metadata: + labels: + app: postgres15 + spec: + containers: + - name: postgres15 + image: postgres:15 + ports: + - containerPort: 5432 + env: + - name: POSTGRES_DB + value: postgres + - name: POSTGRES_USER + value: admin + - name: POSTGRES_PASSWORD + value: Pgadmin01@ + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: postgres + volumes: + - name: postgres + persistentVolumeClaim: + claimName: postgres15-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres15 + namespace: postgres + labels: + name: postgres15 +spec: + type: ClusterIP + ports: + - port: 5432 + name: postgres + selector: + app: postgres15 + diff --git a/kubernetes/dev/postgres16/postgres16.yaml b/kubernetes/dev/postgres16/postgres16.yaml new file mode 100755 index 0000000..e557ebc --- /dev/null +++ b/kubernetes/dev/postgres16/postgres16.yaml @@ -0,0 +1,84 @@ +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: postgres16 + namespace: postgres +spec: + serviceName: postgres16 + replicas: 1 + selector: + matchLabels: + app: postgres16 + template: + metadata: + labels: + app: postgres16 + spec: + containers: + - name: postgres16 + image: postgres:16 + ports: + - containerPort: 5432 + env: + - name: POSTGRES_DB + value: defectdojo + - name: POSTGRES_USER + value: defectdojo + - name: POSTGRES_PASSWORD + value: defectdojo + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: postgres + volumes: + - name: postgres + persistentVolumeClaim: + claimName: postgres16-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres16 + namespace: postgres + labels: + name: postgres16 +spec: + type: ClusterIP + ports: + - port: 5432 + name: postgres + selector: + app: postgres16 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgres16-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/postgres16dev + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres16-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: postgres16-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi diff --git a/kubernetes/dev/prometheus/dev/README.md b/kubernetes/dev/prometheus/dev/README.md new file mode 100755 index 0000000..b545c55 --- /dev/null +++ b/kubernetes/dev/prometheus/dev/README.md @@ -0,0 +1,13 @@ +microk8s enable observability + +kubectl apply -f ingressroute-tls.yaml + +Let op: host-access moet enabled zijn op alle nodes, anders kan de autorisatie +voor het uitlezen van de node niet worden aangebracht. + +Let op: ingressroute-tls.yaml zit in namespace "observability" + +Grafana: + +user: admin +password: prom-operator diff --git a/kubernetes/dev/prometheus/dev/ingressroute-tls.yaml b/kubernetes/dev/prometheus/dev/ingressroute-tls.yaml new file mode 100755 index 0000000..3b22408 --- /dev/null +++ b/kubernetes/dev/prometheus/dev/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: prometheus-tls + namespace: observability +spec: + entryPoints: + - websecure + routes: + - match: Host(`prometheus-dev.allarddcs.nl`) + kind: Rule + services: + - name: kube-prom-stack-kube-prome-prometheus + port: 9090 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/prometheus/dev/yaml/README.md b/kubernetes/dev/prometheus/dev/yaml/README.md new file mode 100755 index 0000000..f48af03 --- /dev/null +++ b/kubernetes/dev/prometheus/dev/yaml/README.md @@ -0,0 +1,76 @@ +INSTALLATIE: + +- kubectl create namespace monitoring + +Prometheus uses Kubernetes APIs to read all the available metrics from Nodes, Pods, Deployments, +etc. +For this reason, we need to create an RBAC policy with read access to required API groups and +bind the policy to the monitoring namespace. +In the role you can see that we have added get, list, and watch permissions to +nodes, services endpoints, pods, and ingresses. +The role binding is bound to the monitoring namespace. If you have any use case to retrieve +metrics from any other object, you need to add that in this cluster role. + +- kubectl create -f clusterRole.yaml + +By externalizing Prometheus configs to a Kubernetes config map, you don’t have to build the +Prometheus image whenever you need to add or remove a configuration. +You need to update the config map and restart the Prometheus pods to apply the new configuration. + +Configuration files zijn: prometheus.yaml en prometheus.rules, samen verpakt in config-map.yaml. + +- kubectl create -f config-map.yaml + +Above statement creates two files inside the container later: + +kubectl exec -it prometheus-deployment-74dc6c7466-mv8bh /bin/sh -n monitoring +/prometheus $ ls /etc/prometheus/ +prometheus.rules prometheus.yml + +- kubectl create -f prometheus-deployment.yaml +- kubectl create -f prometheus-service.yaml + +VOORBEELD: + +op home-page invullen: + +container_cpu_usage_seconds_total + +KUBE STATE METRICS Setup + +Kube state metrics is available as a public docker image. You will have to deploy the following Kubernetes objects for Kube state metrics to work. + +-A Service Account +-Cluster Role – For kube state metrics to access all the Kubernetes API objects. +-Cluster Role Binding – Binds the service account with the cluster role. +-Kube State Metrics Deployment +-Service – To expose the metrics + +All the above Kube state metrics objects will be deployed in the kube-system namespace + +- kubectl apply -f kube-state-metrics-configs/ +- kubectl get deployments kube-state-metrics -n kube-system + +## â˜¸ï¸ kubernetes prometheus Setup + +Complete prometheus monitoring stack setup on Kubernetes. + +Idea of this repo to understand all the components involved in prometheus setup. + +You can find the full tutorial from here--> [Kubernetes Monitoting setup Using Prometheus](https://devopscube.com/setup-prometheus-monitoring-on-kubernetes/) + +## 🚀 PCA, CKA, CKAD, CKS or KCNA Voucher Codes/Updates + +If you are preparing for PCA, CKA, CKAD, CKS, or KCNA exam, **save 35%** today using code **DEVOPS35** at https://kube.promo/latest. It is a limited-time offer. Or Check out [Linux Foundation coupon] + +## âœï¸ Other Manifest repos + +Kube State metrics manifests: https://github.com/devopscube/kube-state-metrics-configs + +Alert manager Manifests: https://github.com/bibinwilson/kubernetes-alert-manager + +Grafana manifests: https://github.com/bibinwilson/kubernetes-grafana + +Node Exporter manifests: https://github.com/bibinwilson/kubernetes-node-exporter + + diff --git a/kubernetes/dev/prometheus/dev/yaml/clusterRole.yaml b/kubernetes/dev/prometheus/dev/yaml/clusterRole.yaml new file mode 100755 index 0000000..d666b69 --- /dev/null +++ b/kubernetes/dev/prometheus/dev/yaml/clusterRole.yaml @@ -0,0 +1,33 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: prometheus +rules: +- apiGroups: [""] + resources: + - nodes + - nodes/proxy + - services + - endpoints + - pods + verbs: ["get", "list", "watch"] +- apiGroups: + - extensions + resources: + - ingresses + verbs: ["get", "list", "watch"] +- nonResourceURLs: ["/metrics"] + verbs: ["get"] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: prometheus +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: prometheus +subjects: +- kind: ServiceAccount + name: default + namespace: monitoring diff --git a/kubernetes/dev/prometheus/dev/yaml/ingressroute-dev-tls.yaml b/kubernetes/dev/prometheus/dev/yaml/ingressroute-dev-tls.yaml new file mode 100755 index 0000000..d034aae --- /dev/null +++ b/kubernetes/dev/prometheus/dev/yaml/ingressroute-dev-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: prometheus-dev-tls + namespace: observability +spec: + entryPoints: + - websecure + routes: + - match: Host(`prometheus.allarddcs.nl`) + kind: Rule + services: + - name: kube-prom-stack-kube-prome-prometheus + port: 9090 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/README.md b/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/README.md new file mode 100755 index 0000000..4e3152e --- /dev/null +++ b/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/README.md @@ -0,0 +1,2 @@ +# kube-state-metrics-configs +Kube state metrics kubernetes deployment configs diff --git a/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/cluster-role-binding.yaml b/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/cluster-role-binding.yaml new file mode 100755 index 0000000..12f5466 --- /dev/null +++ b/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/cluster-role-binding.yaml @@ -0,0 +1,16 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + labels: + app.kubernetes.io/component: exporter + app.kubernetes.io/name: kube-state-metrics + app.kubernetes.io/version: 2.3.0 + name: kube-state-metrics +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: kube-state-metrics +subjects: +- kind: ServiceAccount + name: kube-state-metrics + namespace: kube-system diff --git a/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/cluster-role.yaml b/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/cluster-role.yaml new file mode 100755 index 0000000..859e901 --- /dev/null +++ b/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/cluster-role.yaml @@ -0,0 +1,109 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + labels: + app.kubernetes.io/component: exporter + app.kubernetes.io/name: kube-state-metrics + app.kubernetes.io/version: 2.3.0 + name: kube-state-metrics +rules: +- apiGroups: + - "" + resources: + - configmaps + - secrets + - nodes + - pods + - services + - resourcequotas + - replicationcontrollers + - limitranges + - persistentvolumeclaims + - persistentvolumes + - namespaces + - endpoints + verbs: + - list + - watch +- apiGroups: + - apps + resources: + - statefulsets + - daemonsets + - deployments + - replicasets + verbs: + - list + - watch +- apiGroups: + - batch + resources: + - cronjobs + - jobs + verbs: + - list + - watch +- apiGroups: + - autoscaling + resources: + - horizontalpodautoscalers + verbs: + - list + - watch +- apiGroups: + - authentication.k8s.io + resources: + - tokenreviews + verbs: + - create +- apiGroups: + - authorization.k8s.io + resources: + - subjectaccessreviews + verbs: + - create +- apiGroups: + - policy + resources: + - poddisruptionbudgets + verbs: + - list + - watch +- apiGroups: + - certificates.k8s.io + resources: + - certificatesigningrequests + verbs: + - list + - watch +- apiGroups: + - storage.k8s.io + resources: + - storageclasses + - volumeattachments + verbs: + - list + - watch +- apiGroups: + - admissionregistration.k8s.io + resources: + - mutatingwebhookconfigurations + - validatingwebhookconfigurations + verbs: + - list + - watch +- apiGroups: + - networking.k8s.io + resources: + - networkpolicies + - ingresses + verbs: + - list + - watch +- apiGroups: + - coordination.k8s.io + resources: + - leases + verbs: + - list + - watch diff --git a/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/deployment.yaml b/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/deployment.yaml new file mode 100755 index 0000000..9098f36 --- /dev/null +++ b/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/deployment.yaml @@ -0,0 +1,49 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app.kubernetes.io/component: exporter + app.kubernetes.io/name: kube-state-metrics + app.kubernetes.io/version: 2.3.0 + name: kube-state-metrics + namespace: kube-system +spec: + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/name: kube-state-metrics + template: + metadata: + labels: + app.kubernetes.io/component: exporter + app.kubernetes.io/name: kube-state-metrics + app.kubernetes.io/version: 2.3.0 + spec: + automountServiceAccountToken: true + containers: + - image: k8s.gcr.io/kube-state-metrics/kube-state-metrics:v2.3.0 + livenessProbe: + httpGet: + path: /healthz + port: 8080 + initialDelaySeconds: 5 + timeoutSeconds: 5 + name: kube-state-metrics + ports: + - containerPort: 8080 + name: http-metrics + - containerPort: 8081 + name: telemetry + readinessProbe: + httpGet: + path: / + port: 8081 + initialDelaySeconds: 5 + timeoutSeconds: 5 + securityContext: + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + runAsUser: 65534 + nodeSelector: + kubernetes.io/os: linux + serviceAccountName: kube-state-metrics diff --git a/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/service-account.yaml b/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/service-account.yaml new file mode 100755 index 0000000..fa8254e --- /dev/null +++ b/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/service-account.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +automountServiceAccountToken: false +kind: ServiceAccount +metadata: + labels: + app.kubernetes.io/component: exporter + app.kubernetes.io/name: kube-state-metrics + app.kubernetes.io/version: 2.3.0 + name: kube-state-metrics + namespace: kube-system diff --git a/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/service.yaml b/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/service.yaml new file mode 100755 index 0000000..164818a --- /dev/null +++ b/kubernetes/dev/prometheus/dev/yaml/kube-state-metrics-configs/service.yaml @@ -0,0 +1,20 @@ +apiVersion: v1 +kind: Service +metadata: + labels: + app.kubernetes.io/component: exporter + app.kubernetes.io/name: kube-state-metrics + app.kubernetes.io/version: 2.3.0 + name: kube-state-metrics + namespace: kube-system +spec: + clusterIP: None + ports: + - name: http-metrics + port: 8080 + targetPort: http-metrics + - name: telemetry + port: 8081 + targetPort: telemetry + selector: + app.kubernetes.io/name: kube-state-metrics diff --git a/kubernetes/dev/prometheus/dev/yaml/prometheus-configmap.yaml b/kubernetes/dev/prometheus/dev/yaml/prometheus-configmap.yaml new file mode 100755 index 0000000..eaaddc1 --- /dev/null +++ b/kubernetes/dev/prometheus/dev/yaml/prometheus-configmap.yaml @@ -0,0 +1,137 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: prometheus-server-conf + labels: + name: prometheus-server-conf + namespace: monitoring +data: + prometheus.rules: |- + groups: + - name: devopscube demo alert + rules: + - alert: High Pod Memory + expr: sum(container_memory_usage_bytes) > 1 + for: 1m + labels: + severity: slack + annotations: + summary: High Memory Usage + prometheus.yml: |- + global: + scrape_interval: 5s + evaluation_interval: 5s + rule_files: + - /etc/prometheus/prometheus.rules + alerting: + alertmanagers: + - scheme: http + static_configs: + - targets: + - "alertmanager.monitoring.svc:9093" + scrape_configs: + - job_name: 'node-exporter' + kubernetes_sd_configs: + - role: endpoints + relabel_configs: + - source_labels: [__meta_kubernetes_endpoints_name] + regex: 'node-exporter' + action: keep + - job_name: 'kubernetes-apiservers' + kubernetes_sd_configs: + - role: endpoints + scheme: https + tls_config: + ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt + bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token + relabel_configs: + - source_labels: [__meta_kubernetes_namespace, __meta_kubernetes_service_name, __meta_kubernetes_endpoint_port_name] + action: keep + regex: default;kubernetes;https + - job_name: 'kubernetes-nodes' + scheme: https + tls_config: + ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt + bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token + kubernetes_sd_configs: + - role: node + relabel_configs: + - action: labelmap + regex: __meta_kubernetes_node_label_(.+) + - target_label: __address__ + replacement: kubernetes.default.svc:443 + - source_labels: [__meta_kubernetes_node_name] + regex: (.+) + target_label: __metrics_path__ + replacement: /api/v1/nodes/${1}/proxy/metrics + - job_name: 'kubernetes-pods' + kubernetes_sd_configs: + - role: pod + relabel_configs: + - source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_scrape] + action: keep + regex: true + - source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_path] + action: replace + target_label: __metrics_path__ + regex: (.+) + - source_labels: [__address__, __meta_kubernetes_pod_annotation_prometheus_io_port] + action: replace + regex: ([^:]+)(?::\d+)?;(\d+) + replacement: $1:$2 + target_label: __address__ + - action: labelmap + regex: __meta_kubernetes_pod_label_(.+) + - source_labels: [__meta_kubernetes_namespace] + action: replace + target_label: kubernetes_namespace + - source_labels: [__meta_kubernetes_pod_name] + action: replace + target_label: kubernetes_pod_name + - job_name: 'kube-state-metrics' + static_configs: + - targets: ['kube-state-metrics.kube-system.svc.cluster.local:8080'] + - job_name: 'kubernetes-cadvisor' + scheme: https + tls_config: + ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt + bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token + kubernetes_sd_configs: + - role: node + relabel_configs: + - action: labelmap + regex: __meta_kubernetes_node_label_(.+) + - target_label: __address__ + replacement: kubernetes.default.svc:443 + - source_labels: [__meta_kubernetes_node_name] + regex: (.+) + target_label: __metrics_path__ + replacement: /api/v1/nodes/${1}/proxy/metrics/cadvisor + - job_name: 'kubernetes-service-endpoints' + kubernetes_sd_configs: + - role: endpoints + relabel_configs: + - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_scrape] + action: keep + regex: true + - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_scheme] + action: replace + target_label: __scheme__ + regex: (https?) + - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_path] + action: replace + target_label: __metrics_path__ + regex: (.+) + - source_labels: [__address__, __meta_kubernetes_service_annotation_prometheus_io_port] + action: replace + target_label: __address__ + regex: ([^:]+)(?::\d+)?;(\d+) + replacement: $1:$2 + - action: labelmap + regex: __meta_kubernetes_service_label_(.+) + - source_labels: [__meta_kubernetes_namespace] + action: replace + target_label: kubernetes_namespace + - source_labels: [__meta_kubernetes_service_name] + action: replace + target_label: kubernetes_name diff --git a/kubernetes/dev/prometheus/dev/yaml/prometheus.yaml b/kubernetes/dev/prometheus/dev/yaml/prometheus.yaml new file mode 100755 index 0000000..75be7bb --- /dev/null +++ b/kubernetes/dev/prometheus/dev/yaml/prometheus.yaml @@ -0,0 +1,86 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: prometheus-deployment + namespace: monitoring + labels: + app: prometheus-server +spec: + replicas: 1 + selector: + matchLabels: + app: prometheus-server + template: + metadata: + labels: + app: prometheus-server + spec: + containers: + - name: prometheus + image: prom/prometheus + args: + - "--config.file=/etc/prometheus/prometheus.yml" + - "--storage.tsdb.path=/prometheus/" + ports: + - containerPort: 9090 + volumeMounts: + - name: prometheus-config-volume + mountPath: /etc/prometheus/ + - name: prometheus-storage-volume + mountPath: /prometheus/ + volumes: + - name: prometheus-config-volume + configMap: + defaultMode: 420 + name: prometheus-server-conf + - name: prometheus-storage-volume + emptyDir: {} +--- +apiVersion: v1 +kind: Service +metadata: + name: prometheus-service + namespace: monitoring + annotations: + prometheus.io/scrape: 'true' + prometheus.io/port: '9090' +spec: + selector: + app: prometheus-server + type: NodePort + ports: + - port: 9090 + targetPort: 9090 + nodePort: 30000 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: prometheus-http-alldcs + namespace: monitoring +spec: + entryPoints: + - web + routes: + - match: Host(`promtheus.alldcs.nl`) + kind: Rule + services: + - name: prometheus-service + port: 8080 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: prometheus-tls-alldcs + namespace: monitoring +spec: + entryPoints: + - websecure + routes: + - match: Host(`prometheus.alldcs.nl`) + kind: Rule + services: + - name: prometheus-service + port: 8080 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/prometheus/prod/ingressroute-tls.yaml b/kubernetes/dev/prometheus/prod/ingressroute-tls.yaml new file mode 100755 index 0000000..254a82c --- /dev/null +++ b/kubernetes/dev/prometheus/prod/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: prometheus-tls + namespace: observability +spec: + entryPoints: + - websecure + routes: + - match: Host(`prometheus-prod.allarddcs.nl`) + kind: Rule + services: + - name: kube-prom-stack-kube-prome-prometheus + port: 9090 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/prometheus/prod/podmonitor-metallb-spreaker.yaml b/kubernetes/dev/prometheus/prod/podmonitor-metallb-spreaker.yaml new file mode 100644 index 0000000..8155b80 --- /dev/null +++ b/kubernetes/dev/prometheus/prod/podmonitor-metallb-spreaker.yaml @@ -0,0 +1,18 @@ +apiVersion: monitoring.coreos.com/v1 +kind: PodMonitor +metadata: + name: metallb-speaker + namespace: metallb-system + labels: + release: prometheus # important for the Prometheus selector +spec: + selector: + matchLabels: + app.kubernetes.io/component: speaker + namespaceSelector: + matchNames: + - metallb-system + podMetricsEndpoints: + - port: metrics + path: /metrics + interval: 15s diff --git a/kubernetes/dev/prometheus/riscv/clusterRole.yaml b/kubernetes/dev/prometheus/riscv/clusterRole.yaml new file mode 100755 index 0000000..d666b69 --- /dev/null +++ b/kubernetes/dev/prometheus/riscv/clusterRole.yaml @@ -0,0 +1,33 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: prometheus +rules: +- apiGroups: [""] + resources: + - nodes + - nodes/proxy + - services + - endpoints + - pods + verbs: ["get", "list", "watch"] +- apiGroups: + - extensions + resources: + - ingresses + verbs: ["get", "list", "watch"] +- nonResourceURLs: ["/metrics"] + verbs: ["get"] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: prometheus +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: prometheus +subjects: +- kind: ServiceAccount + name: default + namespace: monitoring diff --git a/kubernetes/dev/prometheus/riscv/prometheus-configmap.yaml b/kubernetes/dev/prometheus/riscv/prometheus-configmap.yaml new file mode 100755 index 0000000..eaaddc1 --- /dev/null +++ b/kubernetes/dev/prometheus/riscv/prometheus-configmap.yaml @@ -0,0 +1,137 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: prometheus-server-conf + labels: + name: prometheus-server-conf + namespace: monitoring +data: + prometheus.rules: |- + groups: + - name: devopscube demo alert + rules: + - alert: High Pod Memory + expr: sum(container_memory_usage_bytes) > 1 + for: 1m + labels: + severity: slack + annotations: + summary: High Memory Usage + prometheus.yml: |- + global: + scrape_interval: 5s + evaluation_interval: 5s + rule_files: + - /etc/prometheus/prometheus.rules + alerting: + alertmanagers: + - scheme: http + static_configs: + - targets: + - "alertmanager.monitoring.svc:9093" + scrape_configs: + - job_name: 'node-exporter' + kubernetes_sd_configs: + - role: endpoints + relabel_configs: + - source_labels: [__meta_kubernetes_endpoints_name] + regex: 'node-exporter' + action: keep + - job_name: 'kubernetes-apiservers' + kubernetes_sd_configs: + - role: endpoints + scheme: https + tls_config: + ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt + bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token + relabel_configs: + - source_labels: [__meta_kubernetes_namespace, __meta_kubernetes_service_name, __meta_kubernetes_endpoint_port_name] + action: keep + regex: default;kubernetes;https + - job_name: 'kubernetes-nodes' + scheme: https + tls_config: + ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt + bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token + kubernetes_sd_configs: + - role: node + relabel_configs: + - action: labelmap + regex: __meta_kubernetes_node_label_(.+) + - target_label: __address__ + replacement: kubernetes.default.svc:443 + - source_labels: [__meta_kubernetes_node_name] + regex: (.+) + target_label: __metrics_path__ + replacement: /api/v1/nodes/${1}/proxy/metrics + - job_name: 'kubernetes-pods' + kubernetes_sd_configs: + - role: pod + relabel_configs: + - source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_scrape] + action: keep + regex: true + - source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_path] + action: replace + target_label: __metrics_path__ + regex: (.+) + - source_labels: [__address__, __meta_kubernetes_pod_annotation_prometheus_io_port] + action: replace + regex: ([^:]+)(?::\d+)?;(\d+) + replacement: $1:$2 + target_label: __address__ + - action: labelmap + regex: __meta_kubernetes_pod_label_(.+) + - source_labels: [__meta_kubernetes_namespace] + action: replace + target_label: kubernetes_namespace + - source_labels: [__meta_kubernetes_pod_name] + action: replace + target_label: kubernetes_pod_name + - job_name: 'kube-state-metrics' + static_configs: + - targets: ['kube-state-metrics.kube-system.svc.cluster.local:8080'] + - job_name: 'kubernetes-cadvisor' + scheme: https + tls_config: + ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt + bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token + kubernetes_sd_configs: + - role: node + relabel_configs: + - action: labelmap + regex: __meta_kubernetes_node_label_(.+) + - target_label: __address__ + replacement: kubernetes.default.svc:443 + - source_labels: [__meta_kubernetes_node_name] + regex: (.+) + target_label: __metrics_path__ + replacement: /api/v1/nodes/${1}/proxy/metrics/cadvisor + - job_name: 'kubernetes-service-endpoints' + kubernetes_sd_configs: + - role: endpoints + relabel_configs: + - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_scrape] + action: keep + regex: true + - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_scheme] + action: replace + target_label: __scheme__ + regex: (https?) + - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_path] + action: replace + target_label: __metrics_path__ + regex: (.+) + - source_labels: [__address__, __meta_kubernetes_service_annotation_prometheus_io_port] + action: replace + target_label: __address__ + regex: ([^:]+)(?::\d+)?;(\d+) + replacement: $1:$2 + - action: labelmap + regex: __meta_kubernetes_service_label_(.+) + - source_labels: [__meta_kubernetes_namespace] + action: replace + target_label: kubernetes_namespace + - source_labels: [__meta_kubernetes_service_name] + action: replace + target_label: kubernetes_name diff --git a/kubernetes/dev/prometheus/riscv/prometheus.yaml b/kubernetes/dev/prometheus/riscv/prometheus.yaml new file mode 100755 index 0000000..489d5d6 --- /dev/null +++ b/kubernetes/dev/prometheus/riscv/prometheus.yaml @@ -0,0 +1,87 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: prometheus-deployment + namespace: monitoring + labels: + app: prometheus-server +spec: + replicas: 1 + selector: + matchLabels: + app: prometheus-server + template: + metadata: + labels: + app: prometheus-server + spec: + containers: + - name: prometheus + image: allardkrings/riscv64-prometheus + imagePullPolicy: Always + command: ["prometheus"] + args: + - "--config.file=/etc/prometheus/prometheus.yml" + - "--storage.tsdb.path=/prometheus/" + ports: + - containerPort: 9090 + volumeMounts: +# - name: prometheus-config-volume +# mountPath: /etc/prometheus/ + - name: prometheus-storage-volume + mountPath: /prometheus/ + volumes: + - name: prometheus-config-volume + configMap: + defaultMode: 420 + name: prometheus-server-conf + - name: prometheus-storage-volume + emptyDir: {} +--- +apiVersion: v1 +kind: Service +metadata: + name: prometheus-service + namespace: monitoring + annotations: + prometheus.io/scrape: 'true' + prometheus.io/port: '9090' +spec: + selector: + app: prometheus-server + type: ClusterIP + ports: + - port: 9090 + targetPort: 9090 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: prometheus-http + namespace: monitoring +spec: + entryPoints: + - web + routes: + - match: Host(`prometheus-riscv.allarddcs.nl`) + kind: Rule + services: + - name: prometheus-service + port: 9090 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: prometheus-tls + namespace: monitoring +spec: + entryPoints: + - websecure + routes: + - match: Host(`prometheus-riscv.allarddcs.nl`) + kind: Rule + services: + - name: prometheus-service + port: 9090 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/rabbitmq/README.md b/kubernetes/dev/rabbitmq/README.md new file mode 100644 index 0000000..bfa95ed --- /dev/null +++ b/kubernetes/dev/rabbitmq/README.md @@ -0,0 +1,6 @@ +#aanmaken berichten + +Let op , de service in de YAML-file is bewust een nodeport. +Kijk even op welke poort interne poort 5672 wordt geforward en gebruk die in +het GO-programmaatje. + diff --git a/kubernetes/dev/rabbitmq/consumer.go b/kubernetes/dev/rabbitmq/consumer.go new file mode 100755 index 0000000..b871ea9 --- /dev/null +++ b/kubernetes/dev/rabbitmq/consumer.go @@ -0,0 +1,55 @@ +package main + +import ( + "log" + + "github.com/streadway/amqp" +) + +func failOnError(err error, msg string) { + if err != nil { + log.Fatalf("%s: %s", msg, err) + } +} + +func main() { + conn, err := amqp.Dial("amqp://guest:guest@localhost:5672/") + failOnError(err, "Failed to connect to RabbitMQ") + defer conn.Close() + + ch, err := conn.Channel() + failOnError(err, "Failed to open a channel") + defer ch.Close() + + q, err := ch.QueueDeclare( + "Dial-DCS-queue", // name + true, // durable + false, // delete when unused + false, // exclusive + false, // no-wait + nil, // arguments + ) + failOnError(err, "Failed to declare a queue") + + msgs, err := ch.Consume( + q.Name, // queue + "", // consumer + true, // auto-ack + false, // exclusive + false, // no-local + false, // no-wait + nil, // args + ) + failOnError(err, "Failed to register a consumer") + + forever := make(chan bool) + + go func() { + for d := range msgs { + log.Printf("Received a message: %s", d.Body) + } + }() + + log.Printf(" [*] Waiting for messages. To exit press CTRL+C") + <-forever +} diff --git a/kubernetes/dev/rabbitmq/go.mod b/kubernetes/dev/rabbitmq/go.mod new file mode 100755 index 0000000..5864384 --- /dev/null +++ b/kubernetes/dev/rabbitmq/go.mod @@ -0,0 +1,8 @@ +module rabbitmq + +go 1.17 + +require ( + github.com/rabbitmq/amqp091-go v1.10.0 // indirect + github.com/streadway/amqp v1.0.0 // indirect +) diff --git a/kubernetes/dev/rabbitmq/go.sum b/kubernetes/dev/rabbitmq/go.sum new file mode 100755 index 0000000..1f42375 --- /dev/null +++ b/kubernetes/dev/rabbitmq/go.sum @@ -0,0 +1,21 @@ +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/rabbitmq/amqp091-go v1.8.1 h1:RejT1SBUim5doqcL6s7iN6SBmsQqyTgXb1xMlH0h1hA= +github.com/rabbitmq/amqp091-go v1.8.1/go.mod h1:+jPrT9iY2eLjRaMSRHUhc3z14E/l85kv/f+6luSD3pc= +github.com/rabbitmq/amqp091-go v1.10.0 h1:STpn5XsHlHGcecLmMFCtg7mqq0RnD+zFr4uzukfVhBw= +github.com/rabbitmq/amqp091-go v1.10.0/go.mod h1:Hy4jKW5kQART1u+JkDTF9YYOQUHXqMuhrgxOEeS7G4o= +github.com/streadway/amqp v1.0.0 h1:kuuDrUJFZL1QYL9hUNuCxNObNzB0bV/ZG5jV3RWAQgo= +github.com/streadway/amqp v1.0.0/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +go.uber.org/goleak v1.2.1/go.mod h1:qlT2yGI9QafXHhZZLxlSuNsMw3FFLxBr+tBRlmO1xH4= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/kubernetes/dev/rabbitmq/mqsend-py.sh b/kubernetes/dev/rabbitmq/mqsend-py.sh new file mode 100755 index 0000000..dd3dcca --- /dev/null +++ b/kubernetes/dev/rabbitmq/mqsend-py.sh @@ -0,0 +1,6 @@ +while true; do + python3 sendMessage.py + sleep 10 +done + + diff --git a/kubernetes/dev/rabbitmq/mqsend.sh b/kubernetes/dev/rabbitmq/mqsend.sh new file mode 100755 index 0000000..d1a421b --- /dev/null +++ b/kubernetes/dev/rabbitmq/mqsend.sh @@ -0,0 +1,6 @@ +while true; do + go run sendMessage.go + sleep 10 +done + + diff --git a/kubernetes/dev/rabbitmq/rabbitmq.yaml b/kubernetes/dev/rabbitmq/rabbitmq.yaml new file mode 100755 index 0000000..9ae02e3 --- /dev/null +++ b/kubernetes/dev/rabbitmq/rabbitmq.yaml @@ -0,0 +1,135 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: rabbitmq + namespace: rabbitmq + labels: + app: rabbitmq +spec: + replicas: 1 + selector: + matchLabels: + app: rabbitmq + template: + metadata: + labels: + app: rabbitmq + spec: + containers: + - name: rabbitmq + image: rabbitmq:3-management-alpine + volumeMounts: + - mountPath: /var/lib/rabbitmq + name: rabbitmq + subPath: rabbitmq/data + - mountPath: /var/log/rabbitmq + name: rabbitmq + subPath: rabbitmq/log + volumes: + - name: rabbitmq + persistentVolumeClaim: + claimName: rabbitmq-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: rabbitmq + namespace: rabbitmq +spec: + ports: + - name: port1 + targetPort: 5672 + port: 5672 + - name: port2 + targetPort: 15672 + port: 15672 + - name: port3 + targetPort: 55670 + port: 55670 + - name: port4 + targetPort: 55674 + port: 55674 + selector: + app: rabbitmq + type: NodePort +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: rabbitmq-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/rabbitmq + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: rabbitmq-pvc + namespace: rabbitmq +spec: + storageClassName: "" + volumeName: rabbitmq-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: rabbitmq-http + namespace: rabbitmq +spec: + entryPoints: + - web + routes: + - match: Host(`rabbitmq-prod.allarddcs.nl`) + kind: Rule + services: + - name: rabbitmq + port: 15672 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: rabbitmq-tls + namespace: rabbitmq +spec: + entryPoints: + - websecure + routes: + - match: Host(`rabbitmq-prod.allarddcs.nl`) + kind: Rule + services: + - name: rabbitmq + port: 15672 + - match: Host(`rabbitmqa-prod.allarddcs.nl`) + kind: Rule + services: + - name: rabbitmq + port: 5672 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: redirect-to-https +spec: + redirectScheme: + scheme: https + permanent: true + diff --git a/kubernetes/dev/rabbitmq/recieveMessage.py b/kubernetes/dev/rabbitmq/recieveMessage.py new file mode 100644 index 0000000..db60f19 --- /dev/null +++ b/kubernetes/dev/rabbitmq/recieveMessage.py @@ -0,0 +1,31 @@ +# example_consumer.py +import pika, os, time + +def alldcs_process_function(msg): +# print(" ALLDCS processing") +# print(" [x] Received " + str(msg)) + print(str(msg)) + + time.sleep(1) # delays for 5 seconds +# print(" ALLDCS processing finished"); + return; + +# Access the CLODUAMQP_URL environment variable and parse it (fallback to localhost) +url = os.environ.get('CLOUDAMQP_URL', 'amqp://guest:guest@localhost:32189/%2f') +params = pika.URLParameters(url) +connection = pika.BlockingConnection(params) +channel = connection.channel() # start a channel +channel.queue_declare(queue='ALLDCS') # Declare a queue + +# create a function which is called on incoming messages +def callback(ch, method, properties, body): + alldcs_process_function(body) + +# set up subscription on the queue +channel.basic_consume('ALLDCS', + callback, + auto_ack=True) + +# start consuming (blocks) +channel.start_consuming() +connection.close() diff --git a/kubernetes/dev/rabbitmq/riscv/create-que.sh b/kubernetes/dev/rabbitmq/riscv/create-que.sh new file mode 100755 index 0000000..6baa128 --- /dev/null +++ b/kubernetes/dev/rabbitmq/riscv/create-que.sh @@ -0,0 +1,6 @@ +./rabbitmqadmin --host=rabbitmq-riscv.allarddcs.nl \ + --port=443 \ + --ssl \ + --username=guest \ + --password=guest \ + declare queue name=testqueue durable=true diff --git a/kubernetes/dev/rabbitmq/riscv/rabbitmq.yaml b/kubernetes/dev/rabbitmq/riscv/rabbitmq.yaml new file mode 100755 index 0000000..b23c9b5 --- /dev/null +++ b/kubernetes/dev/rabbitmq/riscv/rabbitmq.yaml @@ -0,0 +1,150 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: rabbitmq + namespace: rabbitmq + labels: + app: rabbitmq +spec: + replicas: 1 + selector: + matchLabels: + app: rabbitmq + template: + metadata: + labels: + app: rabbitmq + spec: + containers: + - name: rabbitmq + image: docker.io/riscv64/rabbitmq:3-management + volumeMounts: + - mountPath: /var/lib/rabbitmq + name: rabbitmq + subPath: rabbitmq/data + - mountPath: /var/log/rabbitmq + name: rabbitmq + subPath: rabbitmq/log + volumes: + - name: rabbitmq + persistentVolumeClaim: + claimName: rabbitmq-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: rabbitmq + namespace: rabbitmq +spec: + ports: + - name: port1 + targetPort: 5672 + port: 5672 + - name: port2 + targetPort: 15672 + port: 15672 + - name: port3 + targetPort: 55670 + port: 55670 + - name: port4 + targetPort: 55674 + port: 55674 + selector: + app: rabbitmq + type: NodePort +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: rabbitmq-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/rabbitmq/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: rabbitmq-pvc + namespace: rabbitmq +spec: + storageClassName: "" + volumeName: rabbitmq-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: rabbitmq-http + namespace: rabbitmq +spec: + entryPoints: + - web + routes: + - match: Host(`rabbitmq-riscv.allarddcs.nl`) + kind: Rule + middlewares: + - name: redirect-to-https + namespace: rabbitmq + services: + - name: rabbitmq + port: 15672 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: rabbitmq-tls + namespace: rabbitmq +spec: + entryPoints: + - websecure + routes: + - match: Host(`rabbitmq-riscv.allarddcs.nl`) + kind: Rule + services: + - name: rabbitmq + port: 15672 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: redirect-to-https + namespace: rabbitmq +spec: + redirectScheme: + scheme: https + permanent: true +--- +apiVersion: v1 +kind: Service +metadata: + name: rabbitmq-amqp + namespace: rabbitmq +spec: + type: NodePort + ports: + - port: 5672 + targetPort: 5672 + protocol: TCP + nodePort: 31541 # You can specify or let k8s pick one in 30000-32767 range + name: amqp + selector: + app.kubernetes.io/name: rabbitmq + diff --git a/kubernetes/dev/rabbitmq/riscv/rabbitmqadmin b/kubernetes/dev/rabbitmq/riscv/rabbitmqadmin new file mode 100755 index 0000000..f603548 --- /dev/null +++ b/kubernetes/dev/rabbitmq/riscv/rabbitmqadmin @@ -0,0 +1,1190 @@ +#!/usr/bin/env python3 + +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at https://mozilla.org/MPL/2.0/. +# +# Copyright (c) 2007-2024 Broadcom. All Rights Reserved. The term “Broadcom†refers to Broadcom Inc. and/or its subsidiaries. All rights reserved. + +from __future__ import print_function + +from optparse import OptionParser, TitledHelpFormatter + +import base64 +import copy +import json +import os +import socket +import ssl +import traceback + +try: + from signal import signal, SIGPIPE, SIG_DFL + signal(SIGPIPE, SIG_DFL) +except ImportError: + pass + +import sys + + +def eprint(*args, **kwargs): + print(*args, file=sys.stderr, **kwargs) + + +if sys.version_info[0] < 2 or (sys.version_info[0] == 2 and sys.version_info[1] < 6): + eprint("Sorry, rabbitmqadmin requires at least Python 2.6 (2.7.9 when HTTPS is enabled).") + sys.exit(1) + +if sys.version_info[0] == 2: + from ConfigParser import ConfigParser, NoSectionError + import httplib + import urlparse + from urllib import quote_plus + from urllib import quote + + def b64(s): + return base64.b64encode(s) +else: + from configparser import ConfigParser, NoSectionError + import http.client as httplib + import urllib.parse as urlparse + from urllib.parse import quote_plus + from urllib.parse import quote + + def b64(s): + return base64.b64encode(s.encode('utf-8')).decode('utf-8') + +if sys.version_info[0] == 2: + class ConnectionError(OSError): + pass + + class ConnectionRefusedError(ConnectionError): + pass + +VERSION = '3.13.7' + +LISTABLE = {'connections': {'vhost': False, 'cols': ['name', 'user', 'channels']}, + 'channels': {'vhost': False, 'cols': ['name', 'user']}, + 'consumers': {'vhost': True}, + 'exchanges': {'vhost': True, 'cols': ['name', 'type']}, + 'queues': {'vhost': True, 'cols': ['name', 'messages']}, + 'bindings': {'vhost': True, 'cols': ['source', 'destination', + 'routing_key']}, + 'users': {'vhost': False}, + 'vhosts': {'vhost': False, 'cols': ['name', 'messages']}, + 'permissions': {'vhost': False}, + 'nodes': {'vhost': False, 'cols': ['name', 'type', 'mem_used']}, + 'parameters': {'vhost': False, 'json': ['value']}, + 'policies': {'vhost': False, 'json': ['definition']}, + 'operator_policies': {'vhost': False, 'json': ['definition']}, + 'vhost_limits': {'vhost': False, 'json': ['value']}} + +SHOWABLE = {'overview': {'vhost': False, 'cols': ['rabbitmq_version', + 'cluster_name', + 'queue_totals.messages', + 'object_totals.queues']}} + +PROMOTE_COLUMNS = ['vhost', 'name', 'type', + 'source', 'destination', 'destination_type', 'routing_key'] + +URIS = { + 'exchange': '/exchanges/{vhost}/{name}', + 'queue': '/queues/{vhost}/{name}', + 'binding': '/bindings/{vhost}/e/{source}/{destination_char}/{destination}', + 'binding_del': '/bindings/{vhost}/e/{source}/{destination_char}/{destination}/{properties_key}', + 'vhost': '/vhosts/{name}', + 'user': '/users/{name}', + 'permission': '/permissions/{vhost}/{user}', + 'parameter': '/parameters/{component}/{vhost}/{name}', + 'policy': '/policies/{vhost}/{name}', + 'operator_policy': '/operator-policies/{vhost}/{name}', + 'vhost_limit': '/vhost-limits/{vhost}/{name}' + } + + +def queue_upload_fixup(upload): + # rabbitmq/rabbitmq-management#761 + # + # In general, the fixup_upload argument can be used to fixup/change the + # upload dict after all argument parsing is complete. + # + # This simplifies setting the queue type for a new queue by allowing the + # user to use a queue_type=quorum argument rather than the somewhat confusing + # arguments='{"x-queue-type":"quorum"}' parameter + # + if 'queue_type' in upload: + queue_type = upload.get('queue_type') + arguments = upload.get('arguments', {}) + arguments['x-queue-type'] = queue_type + upload['arguments'] = arguments + + +DECLARABLE = { + 'exchange': {'mandatory': ['name', 'type'], + 'json': ['arguments'], + 'optional': {'auto_delete': 'false', 'durable': 'true', + 'internal': 'false', 'arguments': {}}}, + 'queue': {'mandatory': ['name'], + 'json': ['arguments'], + 'optional': {'auto_delete': 'false', 'durable': 'true', + 'arguments': {}, 'node': None, 'queue_type': None}, + 'fixup_upload': queue_upload_fixup}, + 'binding': {'mandatory': ['source', 'destination'], + 'json': ['arguments'], + 'optional': {'destination_type': 'queue', + 'routing_key': '', 'arguments': {}}}, + 'vhost': {'mandatory': ['name'], + 'optional': {'tracing': None}}, + 'user': {'mandatory': ['name', ['password', 'password_hash'], 'tags'], + 'optional': {'hashing_algorithm': None}}, + 'permission': {'mandatory': ['vhost', 'user', 'configure', 'write', 'read'], + 'optional': {}}, + 'parameter': {'mandatory': ['component', 'name', 'value'], + 'json': ['value'], + 'optional': {}}, + # priority has to be converted to an integer + 'policy': {'mandatory': ['name', 'pattern', 'definition'], + 'json': ['definition', 'priority'], + 'optional': {'priority': 0, 'apply-to': None}}, + 'operator_policy': {'mandatory': ['name', 'pattern', 'definition'], + 'json': ['definition', 'priority'], + 'optional': {'priority': 0, 'apply-to': None}}, + 'vhost_limit': {'mandatory': ['vhost', 'name', 'value'], + 'json': ['value'], + 'optional': {}}, + } + +DELETABLE = { + 'exchange': {'mandatory': ['name']}, + 'queue': {'mandatory': ['name']}, + 'binding': {'mandatory': ['source', 'destination_type', 'destination'], + 'optional': {'properties_key': '~'}}, + 'vhost': {'mandatory': ['name']}, + 'user': {'mandatory': ['name']}, + 'permission': {'mandatory': ['vhost', 'user']}, + 'parameter': {'mandatory': ['component', 'name']}, + 'policy': {'mandatory': ['name']}, + 'operator_policy': {'mandatory': ['name']}, + 'vhost_limit': {'mandatory': ['vhost', 'name']} + } + +CLOSABLE = { + 'connection': {'mandatory': ['name'], + 'optional': {}, + 'uri': '/connections/{name}'} + } + +PURGABLE = { + 'queue': {'mandatory': ['name'], + 'optional': {}, + 'uri': '/queues/{vhost}/{name}/contents'} + } + +EXTRA_VERBS = { + 'publish': {'mandatory': ['routing_key'], + 'optional': {'payload': None, + 'properties': {}, + 'exchange': 'amq.default', + 'payload_encoding': 'string'}, + 'json': ['properties'], + 'uri': '/exchanges/{vhost}/{exchange}/publish'}, + 'get': {'mandatory': ['queue'], + 'optional': {'count': '1', 'ackmode': 'ack_requeue_true', + 'payload_file': None, 'encoding': 'auto'}, + 'uri': '/queues/{vhost}/{queue}/get'} +} + +for k in DECLARABLE: + DECLARABLE[k]['uri'] = URIS[k] + +for k in DELETABLE: + DELETABLE[k]['uri'] = URIS[k] + DELETABLE[k]['optional'] = DELETABLE[k].get('optional', {}) +DELETABLE['binding']['uri'] = URIS['binding_del'] + + +def short_usage(): + return "rabbitmqadmin [options] subcommand" + + +def title(name): + return "\n%s\n%s\n\n" % (name, '=' * len(name)) + + +def subcommands_usage(): + usage = """Usage +===== + """ + short_usage() + """ + + where subcommand is one of: +""" + title("Display") + + for l in LISTABLE: + usage += " list {0} [...]\n".format(l) + for s in SHOWABLE: + usage += " show {0} [...]\n".format(s) + usage += title("Object Manipulation") + usage += fmt_usage_stanza(DECLARABLE, 'declare') + usage += fmt_usage_stanza(DELETABLE, 'delete') + usage += fmt_usage_stanza(CLOSABLE, 'close') + usage += fmt_usage_stanza(PURGABLE, 'purge') + usage += title("Broker Definitions") + usage += """ export + import +""" + usage += title("Publishing and Consuming") + usage += fmt_usage_stanza(EXTRA_VERBS, '') + usage += """ + * If payload is not specified on publish, standard input is used + + * If payload_file is not specified on get, the payload will be shown on + standard output along with the message metadata + + * If payload_file is specified on get, count must not be set +""" + return usage + + +def config_usage(): + usage = "Usage\n=====\n" + short_usage() + usage += "\n" + title("Configuration File") + usage += """ It is possible to specify a configuration file from the command line. + Hosts can be configured easily in a configuration file and called + from the command line. +""" + usage += title("Example") + usage += """ # rabbitmqadmin.conf.example START + + [host_normal] + hostname = localhost + # use 15671 for HTTPS + port = 15672 + username = guest + password = guest + declare_vhost = / # Used as default for declare / delete only + vhost = / # Used as default for declare / delete / list + + [host_https] + hostname = otherhost + port = 15671 + username = guest + password = guest + ssl = True + ssl_key_file = /path/to/client_key.pem + ssl_cert_file = /path/to/client_certificate.pem + + # rabbitmqadmin.conf.example END +""" + usage += title("Use") + usage += """ rabbitmqadmin -c rabbitmqadmin.conf.example -N host_normal ...""" + return usage + + +def more_help(): + return """ +More Help +========= + +For more help use the help subcommand: + + rabbitmqadmin help subcommands # For a list of available subcommands + rabbitmqadmin help config # For help with the configuration file +""" + + +def fmt_required_flag(val): + # when one of the options is required, e.g. + # password vs. password_hash + if type(val) is list: + # flag1=... OR flag2=... OR flag3=... + return "=... OR ".join(val) + else: + return val + + +def fmt_optional_flag(val): + return val + + +def fmt_usage_stanza(root, verb): + def fmt_args(args): + res = " ".join(["{0}=...".format(fmt_required_flag(a)) for a in args['mandatory']]) + opts = " ".join("{0}=...".format(fmt_optional_flag(o)) for o in args['optional'].keys()) + if opts != "": + res += " [{0}]".format(opts) + return res + + text = "" + if verb != "": + verb = " " + verb + for k in root.keys(): + text += " {0} {1} {2}\n".format(verb, k, fmt_args(root[k])) + return text + + +default_options = {"hostname": "localhost", + "port": "15672", + # default config file section name + "node": "default", + "path_prefix": "", + "declare_vhost": "/", + "username": "guest", + "password": "guest", + "ssl": False, + "ssl_insecure": False, + "ssl_disable_hostname_verification": False, + "request_timeout": 120, + "verbose": True, + "format": "table", + "depth": 1, + "bash_completion": False} + + +class MyFormatter(TitledHelpFormatter): + def format_epilog(self, epilog): + return epilog + + +parser = OptionParser(usage=short_usage(), + formatter=MyFormatter(), + epilog=more_help()) + + +def make_parser(): + def add(*args, **kwargs): + key = kwargs['dest'] + if key in default_options: + default = " [default: %s]" % default_options[key] + kwargs['help'] = kwargs['help'] + default + parser.add_option(*args, **kwargs) + + add("-c", "--config", dest="config", + help="configuration file [default: ~/.rabbitmqadmin.conf]", + metavar="CONFIG") + add("-N", "--node", dest="node", + help="node described in the configuration file [default: 'default' only if configuration file is specified]", + metavar="NODE") + add("-H", "--host", dest="hostname", + help="connect to host HOST", + metavar="HOST") + add("-P", "--port", dest="port", + help="connect to port PORT", + metavar="PORT") + add("--path-prefix", dest="path_prefix", + help="use specific URI path prefix for the RabbitMQ HTTP API. /api and operation path will be appended to it. (default: blank string)") + add("-V", "--vhost", dest="vhost", + help="connect to vhost VHOST [default: all vhosts for list, '/' for declare]", + metavar="VHOST") + add("-u", "--username", dest="username", + help="connect using username USERNAME", + metavar="USERNAME") + add("-p", "--password", dest="password", + help="connect using password PASSWORD", + metavar="PASSWORD") + add("-U", "--base-uri", dest="base_uri", + help="connect using a base HTTP API URI. /api and operation path will be appended to it. Path will be ignored. --vhost has to be provided separately.", + metavar="URI") + add("-q", "--quiet", action="store_false", dest="verbose", + help="suppress status messages") + add("-s", "--ssl", action="store_true", dest="ssl", + help="connect with ssl") + add("--ssl-key-file", dest="ssl_key_file", + help="PEM format key file for SSL") + add("--ssl-cert-file", dest="ssl_cert_file", + help="PEM format certificate file for SSL") + add("--ssl-ca-cert-file", dest="ssl_ca_cert_file", + help="PEM format CA certificate file for SSL") + add("--ssl-disable-hostname-verification", dest="ssl_disable_hostname_verification", + help="Disables peer hostname verification", action="store_true") + add("-k", "--ssl-insecure", dest="ssl_insecure", + help="Disables all SSL validations like curl's '-k' argument", action="store_true") + add("-t", "--request-timeout", dest="request_timeout", + help="HTTP request timeout in seconds", type="int") + add("-f", "--format", dest="format", + help="format for listing commands - one of [" + ", ".join(FORMATS.keys()) + "]") + add("-S", "--sort", dest="sort", help="sort key for listing queries") + add("-R", "--sort-reverse", action="store_true", dest="sort_reverse", + help="reverse the sort order") + add("-d", "--depth", dest="depth", + help="maximum depth to recurse for listing tables") + add("--bash-completion", action="store_true", + dest="bash_completion", + help="Print bash completion script") + add("--version", action="store_true", + dest="version", + help="Display version and exit") + + +def default_config(): + home = os.getenv('USERPROFILE') or os.getenv('HOME') + if home is not None: + config_file = home + os.sep + ".rabbitmqadmin.conf" + if os.path.isfile(config_file): + return config_file + return None + + +def make_configuration(): + make_parser() + (cli_options, args) = parser.parse_args() + + if cli_options.version: + print_version() + + setattr(cli_options, "declare_vhost", None) + final_options = copy.copy(cli_options) + + # Resolve config file path + if cli_options.config is None: + config_file = default_config() + if config_file is not None: + setattr(final_options, "config", config_file) + else: + if not os.path.isfile(cli_options.config): + assert_usage(False, "Could not read config file '%s'" % cli_options.config) + + final_options = merge_default_options(cli_options, final_options) + final_options = merge_config_file_options(cli_options, final_options) + final_options = expand_base_uri_options(cli_options, final_options) + + return (final_options, args) + +def merge_default_options(cli_options, final_options): + for (key, default_val) in default_options.items(): + if getattr(cli_options, key) is None: + setattr(final_options, key, default_val) + return final_options + +def merge_config_file_options(cli_options, final_options): + # Parse config file and load it, making sure that CLI flags + # take precedence + if final_options.config is not None: + config_parser = ConfigParser() + try: + config_parser.read(final_options.config) + section_settings = dict(config_parser.items(final_options.node)) + except NoSectionError as error: + # Report if an explicitly provided section (node) does not exist in the file + if final_options.node == "default": + pass + else: + msg = "Could not read section '%s' in config file '%s':\n %s" % (final_options.node, final_options.config, error) + assert_usage(False, msg) + else: + for key, section_val in section_settings.items(): + # if CLI options contain this key, do not set it from the config file + if getattr(cli_options, key) is not None: + continue + # special case for boolean values + if section_val == "True" or section_val == "False": + setattr(final_options, key, section_val == "True") + else: + setattr(final_options, key, section_val) + return final_options + +def expand_base_uri_options(cli_options, final_options): + # if --base-uri is passed, set connection parameters from it + if final_options.base_uri is not None: + u = urlparse.urlparse(final_options.base_uri) + for key in ["hostname", "port", "username", "password"]: + if getattr(u, key) is not None: + setattr(final_options, key, getattr(u, key)) + + if u.path is not None and (u.path != "") and (u.path != "/"): + eprint("WARNING: path in --base-uri is ignored. Please specify --vhost and/or --path-prefix separately.\n") + return final_options + +def assert_usage(expr, error): + if not expr: + eprint("\nERROR: {0}\n".format(error)) + eprint("{0} --help for help\n".format(os.path.basename(sys.argv[0]))) + sys.exit(1) + + +def print_version(): + print("rabbitmqadmin {0}".format(VERSION)) + sys.exit(0) + + +def column_sort_key(col): + if col in PROMOTE_COLUMNS: + return (1, PROMOTE_COLUMNS.index(col)) + else: + return (2, col) + + +def main(): + (options, args) = make_configuration() + if options.bash_completion: + print_bash_completion() + sys.exit(0) + assert_usage(len(args) > 0, 'Action not specified') + mgmt = Management(options, args[1:]) + mode = "invoke_" + args[0] + assert_usage(hasattr(mgmt, mode), + 'Action {0} not understood'.format(args[0])) + method = getattr(mgmt, "invoke_%s" % args[0]) + method() + + +def die(s): + eprint("*** {0}\n".format(s)) + sys.exit(1) + + +def maybe_utf8(s): + if isinstance(s, int): + # s can be also an int for ex messages count + return str(s) + if isinstance(s, float): + # s can be also a float for message rate + return str(s) + if sys.version_info[0] == 3: + # It will have an encoding, which Python will respect + return s + else: + # It won't have an encoding, and Python will pick ASCII by default + return s.encode('utf-8') + + +class Management: + def __init__(self, options, args): + self.options = options + self.args = args + + def get(self, path): + return self.http("GET", "%s/api%s" % (self.options.path_prefix, path), "") + + def put(self, path, body): + return self.http("PUT", "%s/api%s" % (self.options.path_prefix, path), body) + + def post(self, path, body): + return self.http("POST", "%s/api%s" % (self.options.path_prefix, path), body) + + def delete(self, path): + return self.http("DELETE", "%s/api%s" % (self.options.path_prefix, path), "") + + def __initialize_connection(self, hostname, port): + if self.options.ssl: + return self.__initialize_https_connection(hostname, port) + else: + return httplib.HTTPConnection(hostname, port, timeout=self.options.request_timeout) + + def __initialize_https_connection(self, hostname, port): + # Python 2.7.9+ + if hasattr(ssl, 'create_default_context'): + return httplib.HTTPSConnection(hostname, port, context=self.__initialize_tls_context()) + # Python < 2.7.8, note: those versions still have SSLv3 enabled + # and other limitations. See rabbitmq/rabbitmq-management#225 + else: + eprint("WARNING: rabbitmqadmin requires Python 2.7.9+ when HTTPS is used.") + return httplib.HTTPSConnection(hostname, port, + cert_file=self.options.ssl_cert_file, + key_file=self.options.ssl_key_file) + + def __initialize_tls_context(self): + # Python 2.7.9+ only + ssl_ctx = ssl.create_default_context(ssl.Purpose.SERVER_AUTH) + ssl_ctx.options &= ~ssl.OP_NO_SSLv3 + + ssl_insecure = self.options.ssl_insecure + ssl_disable_hostname_verification = ssl_insecure or self.options.ssl_disable_hostname_verification + # Note: you must set check_hostname prior to verify_mode + if ssl_disable_hostname_verification: + ssl_ctx.check_hostname = False + if ssl_insecure: + ssl_ctx.verify_mode = ssl.CERT_NONE + + if self.options.ssl_key_file: + ssl_ctx.load_cert_chain(self.options.ssl_cert_file, + self.options.ssl_key_file) + if self.options.ssl_ca_cert_file: + ssl_ctx.load_verify_locations(self.options.ssl_ca_cert_file) + return ssl_ctx + + def http(self, method, path, body): + conn = self.__initialize_connection(self.options.hostname, self.options.port) + auth = (self.options.username + ":" + self.options.password) + + headers = {"Authorization": "Basic " + b64(auth)} + if body != "": + headers["Content-Type"] = "application/json" + try: + conn.request(method, path, body, headers) + except ConnectionRefusedError as e: + die("Could not connect: {0}".format(e)) + except socket.error as e: + traceback.print_exc() + die("Could not connect: {0}".format(e)) + try: + resp = conn.getresponse() + except socket.timeout: + die("Timed out getting HTTP response (request timeout: {0} seconds)".format( + self.options.request_timeout)) + except (KeyboardInterrupt, SystemExit): + raise + except (Exception): + e_fmt = traceback.format_exc() + die("Error getting HTTP response:\n\n{0}".format(e_fmt)) + if resp.status == 400: + die(json.loads(resp.read())['reason']) + if resp.status == 401: + die("Access refused: {0}".format(path)) + if resp.status == 404: + die("Not found: {0}".format(path)) + if resp.status == 405: + die("Method not allowed: {0}".format(json.loads(resp.read())['reason'])) + if resp.status == 301: + url = urlparse.urlparse(resp.getheader('location')) + [host, port] = url.netloc.split(':') + self.options.hostname = host + self.options.port = int(port) + return self.http(method, url.path + '?' + url.query, body) + if resp.status > 400: + raise Exception("Received response %d %s for path %s\n%s" + % (resp.status, resp.reason, path, resp.read())) + return resp.read().decode('utf-8') + + def verbose(self, string): + if self.options.verbose: + print(string) + + def get_arg(self): + assert_usage(len(self.args) == 1, 'Exactly one argument required') + return self.args[0] + + def use_cols(self): + # Deliberately do not cast to int here; we only care about the + # default, not explicit setting. + return self.options.depth == 1 and ('json' not in self.options.format) + + def invoke_help(self): + if len(self.args) == 0: + parser.print_help() + else: + help_cmd = self.get_arg() + if help_cmd == 'subcommands': + usage = subcommands_usage() + elif help_cmd == 'config': + usage = config_usage() + else: + assert_usage(False, """help topic must be one of: + subcommands + config""") + print(usage) + sys.exit(0) + + def invoke_publish(self): + (uri, upload) = self.parse_args(self.args, EXTRA_VERBS['publish']) + if 'payload' not in upload: + data = sys.stdin.read() + upload['payload'] = b64(data) + upload['payload_encoding'] = 'base64' + resp = json.loads(self.post(uri, json.dumps(upload))) + if resp['routed']: + self.verbose("Message published") + else: + self.verbose("Message published but NOT routed") + + def invoke_get(self): + (uri, upload) = self.parse_args(self.args, EXTRA_VERBS['get']) + payload_file = 'payload_file' in upload and upload['payload_file'] or None + assert_usage(not payload_file or upload['count'] == '1', + 'Cannot get multiple messages using payload_file') + result = self.post(uri, json.dumps(upload)) + if payload_file: + write_payload_file(payload_file, result) + columns = ['routing_key', 'exchange', 'message_count', + 'payload_bytes', 'redelivered'] + format_list(result, columns, {}, self.options) + else: + format_list(result, [], {}, self.options) + + def invoke_export(self): + path = self.get_arg() + uri = "/definitions" + if self.options.vhost: + uri += "/%s" % quote_plus(self.options.vhost) + definitions = self.get(uri) + with open(path, 'wb') as f: + f.write(definitions.encode()) + self.verbose("Exported definitions for %s to \"%s\"" + % (self.options.hostname, path)) + + def invoke_import(self): + path = self.get_arg() + with open(path, 'rb') as f: + definitions = f.read() + uri = "/definitions" + if self.options.vhost: + uri += "/%s" % quote_plus(self.options.vhost) + self.post(uri, definitions) + self.verbose("Uploaded definitions from \"%s\" to %s. The import process may take some time. Consult server logs to track progress." + % (self.options.hostname, path)) + + def invoke_list(self): + (uri, obj_info, cols) = self.list_show_uri(LISTABLE, 'list') + format_list(self.get(uri), cols, obj_info, self.options) + + def invoke_show(self): + (uri, obj_info, cols) = self.list_show_uri(SHOWABLE, 'show') + format_list('[{0}]'.format(self.get(uri)), cols, obj_info, self.options) + + def _list_path_for_obj_type(self, obj_type): + # This returns a URL path for given object type, e.g. + # replaces underscores in command names with + # dashes that HTTP API endpoints use + return obj_type.replace("_", "-") + + def list_show_uri(self, obj_types, verb): + obj_type = self.args[0] + assert_usage(obj_type in obj_types, + "Don't know how to {0} {1}".format(verb, obj_type)) + obj_info = obj_types[obj_type] + uri = "/%s" % self._list_path_for_obj_type(obj_type) + query = [] + if obj_info['vhost'] and self.options.vhost: + uri += "/%s" % quote_plus(self.options.vhost) + cols = self.args[1:] + if cols == [] and 'cols' in obj_info and self.use_cols(): + cols = obj_info['cols'] + if cols != []: + query.append("columns=" + ",".join(cols)) + sort = self.options.sort + if sort: + query.append("sort=" + sort) + if self.options.sort_reverse: + query.append("sort_reverse=true") + query = "&".join(query) + if query != "": + uri += "?" + query + return (uri, obj_info, cols) + + def invoke_declare(self): + (obj_type, uri, upload) = self.declare_delete_parse(DECLARABLE) + if obj_type == 'binding': + self.post(uri, json.dumps(upload)) + else: + self.put(uri, json.dumps(upload)) + self.verbose("{0} declared".format(obj_type)) + + def invoke_delete(self): + (obj_type, uri, upload) = self.declare_delete_parse(DELETABLE) + self.delete(uri) + self.verbose("{0} deleted".format(obj_type)) + + def invoke_close(self): + (obj_type, uri, upload) = self.declare_delete_parse(CLOSABLE) + self.delete(uri) + self.verbose("{0} closed".format(obj_type)) + + def invoke_purge(self): + (obj_type, uri, upload) = self.declare_delete_parse(PURGABLE) + self.delete(uri) + self.verbose("{0} purged".format(obj_type)) + + def declare_delete_parse(self, root): + assert_usage(len(self.args) > 0, 'Type not specified') + obj_type = self.args[0] + assert_usage(obj_type in root, + 'Type {0} not recognised'.format(obj_type)) + obj = root[obj_type] + (uri, upload) = self.parse_args(self.args[1:], obj) + return (obj_type, uri, upload) + + def assert_mandatory_keys(self, mandatory, upload): + for m in mandatory: + if type(m) is list: + a_set = set(m) + b_set = set(upload.keys()) + assert_usage((a_set & b_set), + 'one of mandatory arguments "{0}" is required'.format(m)) + else: + assert_usage(m in upload.keys(), + 'mandatory argument "{0}" is required'.format(m)) + + def parse_args(self, args, obj): + mandatory = obj['mandatory'] + optional = obj['optional'] + uri_template = obj['uri'] + upload = {} + for k in optional.keys(): + if optional[k] is not None: + upload[k] = optional[k] + for arg in args: + assert_usage("=" in arg, + 'Argument "{0}" not in the name=value format'.format(arg)) + (name, value) = arg.split("=", 1) + # flatten the list of mandatory keys + mandatory_keys = [] + for key in mandatory: + if type(key) is list: + for subkey in key: + mandatory_keys.append(subkey) + else: + mandatory_keys.append(key) + + assert_usage(name in mandatory_keys or name in optional.keys(), + 'Argument "{0}" is not recognised'.format(name)) + + if 'json' in obj and name in obj['json']: + upload[name] = self.parse_json(value) + else: + upload[name] = value + self.assert_mandatory_keys(mandatory, upload) + if 'vhost' not in mandatory: + upload['vhost'] = self.options.vhost or self.options.declare_vhost + uri_args = {} + for k in upload: + v = upload[k] + if v and isinstance(v, (str, bytes)): + uri_args[k] = quote(v, '') + if k == 'destination_type': + uri_args['destination_char'] = v[0] + uri = uri_template.format(**uri_args) + if 'fixup_upload' in obj: + fixup = obj['fixup_upload'] + fixup(upload) + return (uri, upload) + + def parse_json(self, text): + try: + return json.loads(text) + except ValueError: + eprint("ERROR: Could not parse JSON:\n {0}".format(text)) + sys.exit(1) + + +def format_list(json_list, columns, args, options): + format = options.format + formatter = None + if format == "raw_json": + print(json_list) + return + elif format == "pretty_json": + json_list_parsed = json.loads(json_list) + print(json.dumps(json_list_parsed, + skipkeys=False, ensure_ascii=False, check_circular=True, + allow_nan=True, sort_keys=True, indent=2)) + return + else: + formatter = FORMATS[format] + assert_usage(formatter is not None, + "Format {0} not recognised".format(format)) + formatter_instance = formatter(columns, args, options) + formatter_instance.display(json_list) + + +class Lister: + def verbose(self, string): + if self.options.verbose: + print(string) + + def display(self, json_list): + depth = sys.maxsize + if len(self.columns) == 0: + depth = int(self.options.depth) + (columns, table) = self.list_to_table(json.loads(json_list), depth) + if len(table) > 0: + self.display_list(columns, table) + else: + self.verbose("No items") + + def list_to_table(self, items, max_depth): + columns = {} + column_ix = {} + row = None + table = [] + + def add(prefix, depth, item, fun): + for key in item: + column = prefix == '' and key or (prefix + '.' + key) + subitem = item[key] + if type(subitem) == dict: + if 'json' in self.obj_info and key in self.obj_info['json']: + fun(column, json.dumps(subitem)) + else: + if depth < max_depth: + add(column, depth + 1, subitem, fun) + elif type(subitem) == list: + # The first branch has mirrors in queues in + # mind (which come out looking decent); the second + # one has applications in nodes (which look less + # so, but what would look good?). + if [x for x in subitem if type(x) != str] == []: + serialised = " ".join(subitem) + else: + serialised = json.dumps(subitem) + fun(column, serialised) + else: + fun(column, subitem) + + def add_to_columns(col, val): + columns[col] = True + + def add_to_row(col, val): + if col in column_ix: + if val is not None: + row[column_ix[col]] = maybe_utf8(val) + else: + row[column_ix[col]] = None + + if len(self.columns) == 0: + for item in items: + add('', 1, item, add_to_columns) + columns = list(columns.keys()) + columns.sort(key=column_sort_key) + else: + columns = self.columns + + for i in range(0, len(columns)): + column_ix[columns[i]] = i + for item in items: + row = len(columns) * [''] + add('', 1, item, add_to_row) + table.append(row) + + return (columns, table) + + +class TSVList(Lister): + def __init__(self, columns, obj_info, options): + self.columns = columns + self.obj_info = obj_info + self.options = options + + def display_list(self, columns, table): + head = "\t".join(columns) + self.verbose(head) + + for row in table: + line = "\t".join(row) + print(line) + + +class LongList(Lister): + def __init__(self, columns, obj_info, options): + self.columns = columns + self.obj_info = obj_info + self.options = options + + def display_list(self, columns, table): + sep = "\n" + "-" * 80 + "\n" + max_width = 0 + for col in columns: + max_width = max(max_width, len(col)) + fmt = "{0:>" + str(max_width) + "}: {1}" + print(sep) + for i in range(0, len(table)): + for j in range(0, len(columns)): + print(fmt.format(columns[j], table[i][j])) + print(sep) + + +class TableList(Lister): + def __init__(self, columns, obj_info, options): + self.columns = columns + self.obj_info = obj_info + self.options = options + + def display_list(self, columns, table): + total = [columns] + total.extend(table) + self.ascii_table(total) + + def ascii_table(self, rows): + col_widths = [0] * len(rows[0]) + for i in range(0, len(rows[0])): + for j in range(0, len(rows)): + col_widths[i] = max(col_widths[i], len(rows[j][i])) + self.ascii_bar(col_widths) + self.ascii_row(col_widths, rows[0], "^") + self.ascii_bar(col_widths) + for row in rows[1:]: + self.ascii_row(col_widths, row, "<") + self.ascii_bar(col_widths) + + def ascii_row(self, col_widths, row, align): + txt = "|" + for i in range(0, len(col_widths)): + fmt = " {0:" + align + str(col_widths[i]) + "} " + txt += fmt.format(row[i]) + "|" + print(txt) + + def ascii_bar(self, col_widths): + txt = "+" + for w in col_widths: + txt += ("-" * (w + 2)) + "+" + print(txt) + + +class KeyValueList(Lister): + def __init__(self, columns, obj_info, options): + self.columns = columns + self.obj_info = obj_info + self.options = options + + def display_list(self, columns, table): + for i in range(0, len(table)): + row = [] + for j in range(0, len(columns)): + row.append("{0}=\"{1}\"".format(columns[j], table[i][j])) + print(" ".join(row)) + + +# TODO handle spaces etc in completable names +class BashList(Lister): + def __init__(self, columns, obj_info, options): + self.columns = columns + self.obj_info = obj_info + self.options = options + + def display_list(self, columns, table): + ix = None + for i in range(0, len(columns)): + if columns[i] == 'name': + ix = i + if ix is not None: + res = [] + for row in table: + res.append(row[ix]) + print(" ".join(res)) + + +FORMATS = { + # Special cased + 'raw_json': None, + # Ditto + 'pretty_json': None, + 'tsv': TSVList, + 'long': LongList, + 'table': TableList, + 'kvp': KeyValueList, + 'bash': BashList +} + + +def write_payload_file(payload_file, json_list): + result = json.loads(json_list)[0] + payload = result['payload'] + payload_encoding = result['payload_encoding'] + with open(payload_file, 'wb') as f: + if payload_encoding == 'base64': + data = base64.b64decode(payload) + else: + data = payload + f.write(data.encode("utf-8")) + + +def print_bash_completion(): + script = """# This is a bash completion script for rabbitmqadmin. +# Redirect it to a file, then source it or copy it to /etc/bash_completion.d +# to get tab completion. rabbitmqadmin must be on your PATH for this to work. +_rabbitmqadmin() +{ + local cur prev opts base + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + + opts="list show declare delete close purge import export get publish help" + fargs="--help --host --port --vhost --username --password --format --depth --sort --sort-reverse" + + case "${prev}" in + list) + COMPREPLY=( $(compgen -W '""" + " ".join(LISTABLE) + """' -- ${cur}) ) + return 0 + ;; + show) + COMPREPLY=( $(compgen -W '""" + " ".join(SHOWABLE) + """' -- ${cur}) ) + return 0 + ;; + declare) + COMPREPLY=( $(compgen -W '""" + " ".join(DECLARABLE.keys()) + """' -- ${cur}) ) + return 0 + ;; + delete) + COMPREPLY=( $(compgen -W '""" + " ".join(DELETABLE.keys()) + """' -- ${cur}) ) + return 0 + ;; + close) + COMPREPLY=( $(compgen -W '""" + " ".join(CLOSABLE.keys()) + """' -- ${cur}) ) + return 0 + ;; + purge) + COMPREPLY=( $(compgen -W '""" + " ".join(PURGABLE.keys()) + """' -- ${cur}) ) + return 0 + ;; + export) + COMPREPLY=( $(compgen -f ${cur}) ) + return 0 + ;; + import) + COMPREPLY=( $(compgen -f ${cur}) ) + return 0 + ;; + help) + opts="subcommands config" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + -H) + COMPREPLY=( $(compgen -A hostname ${cur}) ) + return 0 + ;; + --host) + COMPREPLY=( $(compgen -A hostname ${cur}) ) + return 0 + ;; + -V) + opts="$(rabbitmqadmin -q -f bash list vhosts)" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + --vhost) + opts="$(rabbitmqadmin -q -f bash list vhosts)" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + -u) + opts="$(rabbitmqadmin -q -f bash list users)" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + --username) + opts="$(rabbitmqadmin -q -f bash list users)" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + -f) + COMPREPLY=( $(compgen -W \"""" + " ".join(FORMATS.keys()) + """\" -- ${cur}) ) + return 0 + ;; + --format) + COMPREPLY=( $(compgen -W \"""" + " ".join(FORMATS.keys()) + """\" -- ${cur}) ) + return 0 + ;; + +""" + for l in LISTABLE: + key = l[0:len(l) - 1] + script += " " + key + """) + opts="$(rabbitmqadmin -q -f bash list """ + l + """)" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; +""" + script += """ *) + ;; + esac + + COMPREPLY=($(compgen -W "${opts} ${fargs}" -- ${cur})) + return 0 +} +complete -F _rabbitmqadmin rabbitmqadmin +""" + print(script) + + +if __name__ == "__main__": + main() diff --git a/kubernetes/dev/rabbitmq/riscv/read-message.sh b/kubernetes/dev/rabbitmq/riscv/read-message.sh new file mode 100755 index 0000000..3040f36 --- /dev/null +++ b/kubernetes/dev/rabbitmq/riscv/read-message.sh @@ -0,0 +1,8 @@ +./rabbitmqadmin \ + --host=rabbitmq-riscv.allarddcs.nl \ + --port=443 \ + --ssl \ + --username=guest \ + --password=guest \ + get queue=testqueue count=1 \ + --arguments='{"requeue":false}' diff --git a/kubernetes/dev/rabbitmq/riscv/send-message.sh b/kubernetes/dev/rabbitmq/riscv/send-message.sh new file mode 100755 index 0000000..807e1e4 --- /dev/null +++ b/kubernetes/dev/rabbitmq/riscv/send-message.sh @@ -0,0 +1,6 @@ +./rabbitmqadmin --host=rabbitmq-riscv.allarddcs.nl \ + --port=443 \ + --ssl \ + --username=guest \ + --password=guest \ + publish routing_key=testqueue payload="Hello from CLI" diff --git a/kubernetes/dev/rabbitmq/sendMessage.go b/kubernetes/dev/rabbitmq/sendMessage.go new file mode 100755 index 0000000..30f9edb --- /dev/null +++ b/kubernetes/dev/rabbitmq/sendMessage.go @@ -0,0 +1,53 @@ +package main + +import ( + "log" + +// "github.com/streadway/amqp" + "github.com/rabbitmq/amqp091-go" +) + +// Here we set the way error messages are displayed in the terminal. +func failOnError(err error, msg string) { + if err != nil { + log.Fatalf("%s: %s", msg, err) + } +} + +func main() { + // Here we connect to RabbitMQ or send a message if there are any errors connecting. + conn, err := amqp091.Dial("amqp://guest:guest@localhost:32189/") + failOnError(err, "Failed to connect to RabbitMQ") + defer conn.Close() + + ch, err := conn.Channel() + failOnError(err, "Failed to open a channel") + defer ch.Close() + + // We create a Queue to send the message to. + q, err := ch.QueueDeclare( + "ALL-DCS-queue", // name + true, // durable + false, // delete when unused + false, // exclusive + false, // no-wait + nil, // arguments + ) + failOnError(err, "Failed to declare a queue") + + // We set the payload for the message. + body := "Hallo Diederick, let's go hack!" + err = ch.Publish( + "", // exchange + q.Name, // routing key + false, // mandatory + false, // immediate + amqp091.Publishing{ + DeliveryMode: amqp091.Persistent, + ContentType: "text/plain", + Body: []byte(body), + }) + // If there is an error publishing the message, a log will be displayed in the terminal. + failOnError(err, "Failed to publish a message") + log.Printf(" [x] Congrats, sending message: %s", body) +} diff --git a/kubernetes/dev/rabbitmq/sendMessage.py b/kubernetes/dev/rabbitmq/sendMessage.py new file mode 100644 index 0000000..aaea0a7 --- /dev/null +++ b/kubernetes/dev/rabbitmq/sendMessage.py @@ -0,0 +1,17 @@ +# example_publisher.py +import pika, os, logging +logging.basicConfig() + +# Parse CLODUAMQP_URL (fallback to localhost) +url = os.environ.get('CLOUDAMQP_URL', 'amqp://guest:guest@localhost:32189/%2f') +params = pika.URLParameters(url) +params.socket_timeout = 5 + +connection = pika.BlockingConnection(params) # Connect to CloudAMQP +channel = connection.channel() # start a channel +channel.queue_declare(queue='ALLDCS') # Declare a queue +# send a message + +channel.basic_publish(exchange='', routing_key='ALLDCS', body='Hello Diederick, lets go hack!!!') +print ("[x] Message sent to consumer") +connection.close() diff --git a/kubernetes/dev/redis/README.md b/kubernetes/dev/redis/README.md new file mode 100644 index 0000000..3695e2a --- /dev/null +++ b/kubernetes/dev/redis/README.md @@ -0,0 +1,54 @@ +#installatie: + +helm install redis bitnami/redis -n redis -f values.yaml + +#resultaat: + +NAME: redis +LAST DEPLOYED: Wed Apr 3 10:11:09 2024 +NAMESPACE: redis +STATUS: deployed +REVISION: 1 +TEST SUITE: None +NOTES: +CHART NAME: redis +CHART VERSION: 19.0.1 +APP VERSION: 7.2.4 + +** Please be patient while the chart is being deployed ** + +Redis® can be accessed on the following DNS names from within your cluster: + + redis-master.redis.svc.cluster.local for read/write operations (port 6379) + redis-replicas.redis.svc.cluster.local for read-only operations (port 6379) + + + +To get your password run: + + export REDIS_PASSWORD=$(kubectl get secret --namespace redis redis -o jsonpath="{.data.redis-password}" | base64 -d) + +To connect to your Redis® server: + +1. Run a Redis® pod that you can use as a client: + + kubectl run --namespace redis redis-client --restart='Never' --env REDIS_PASSWORD=$REDIS_PASSWORD --image docker.io/bitnami/redis:7.2.4-debian-12-r9 --command -- sleep infinity + + Use the following command to attach to the pod: + + kubectl exec --tty -i redis-client \ + --namespace redis -- bash + +2. Connect using the Redis® CLI: + REDISCLI_AUTH="$REDIS_PASSWORD" redis-cli -h redis-master + REDISCLI_AUTH="$REDIS_PASSWORD" redis-cli -h redis-replicas + +To connect to your database from outside the cluster execute the following commands: + + kubectl port-forward --namespace redis svc/redis-master 6379:6379 & + REDISCLI_AUTH="$REDIS_PASSWORD" redis-cli -h 127.0.0.1 -p 6379 + +WARNING: There are "resources" sections in the chart not set. Using "resourcesPreset" is not recommended for production. For production installations, please set the following values according to your workload needs: + - master.resources + - replica.resources ++info https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ diff --git a/kubernetes/dev/redis/pvc.yaml b/kubernetes/dev/redis/pvc.yaml new file mode 100755 index 0000000..e0b00e1 --- /dev/null +++ b/kubernetes/dev/redis/pvc.yaml @@ -0,0 +1,136 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: redis-master-0 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/redis/master-0 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: redis-replicas-0 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/redis/replicas-0 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: redis-replicas-1 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/redis/replicas-1 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: redis-replicas-2 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/redis/replicas-2 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: redis-data-redis-master-0 + namespace: redis +spec: + storageClassName: "" + volumeName: redis-master-0 + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: redis-data-redis-replicas-0 + namespace: redis +spec: + storageClassName: "" + volumeName: redis-replicas-0 + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: redis-data-redis-replicas-1 + namespace: redis +spec: + storageClassName: "" + volumeName: redis-replicas-1 + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: redis-data-redis-replicas-2 + namespace: redis +spec: + storageClassName: "" + volumeName: redis-replicas-2 + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/kubernetes/dev/redis/values.yaml b/kubernetes/dev/redis/values.yaml new file mode 100644 index 0000000..1dc046c --- /dev/null +++ b/kubernetes/dev/redis/values.yaml @@ -0,0 +1,2153 @@ +# Copyright VMware, Inc. +# SPDX-License-Identifier: APACHE-2.0 + +## @section Global parameters +## Global Docker image parameters +## Please, note that this will override the image parameters, including dependencies, configured to use the global value +## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass +## + +## @param global.imageRegistry Global Docker image registry +## @param global.imagePullSecrets Global Docker registry secret names as an array +## @param global.storageClass Global StorageClass for Persistent Volume(s) +## @param global.redis.password Global Redis® password (overrides `auth.password`) +## +global: + imageRegistry: "" + ## E.g. + ## imagePullSecrets: + ## - myRegistryKeySecretName + ## + imagePullSecrets: [] + storageClass: "" + redis: + password: "" + ## Compatibility adaptations for Kubernetes platforms + ## + compatibility: + ## Compatibility adaptations for Openshift + ## + openshift: + ## @param global.compatibility.openshift.adaptSecurityContext Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) + ## + adaptSecurityContext: auto +## @section Common parameters +## + +## @param kubeVersion Override Kubernetes version +## +kubeVersion: "" +## @param nameOverride String to partially override common.names.fullname +## +nameOverride: "" +## @param fullnameOverride String to fully override common.names.fullname +## +fullnameOverride: "" +## @param namespaceOverride String to fully override common.names.namespace +## +namespaceOverride: "" +## @param commonLabels Labels to add to all deployed objects +## +commonLabels: {} +## @param commonAnnotations Annotations to add to all deployed objects +## +commonAnnotations: {} +## @param secretAnnotations Annotations to add to secret +## +secretAnnotations: {} +## @param clusterDomain Kubernetes cluster domain name +## +clusterDomain: cluster.local +## @param extraDeploy Array of extra objects to deploy with the release +## +extraDeploy: [] +## @param useHostnames Use hostnames internally when announcing replication. If false, the hostname will be resolved to an IP address +## +useHostnames: true +## @param nameResolutionThreshold Failure threshold for internal hostnames resolution +## +nameResolutionThreshold: 5 +## @param nameResolutionTimeout Timeout seconds between probes for internal hostnames resolution +## +nameResolutionTimeout: 5 +## Enable diagnostic mode in the deployment +## +diagnosticMode: + ## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden) + ## + enabled: false + ## @param diagnosticMode.command Command to override all containers in the deployment + ## + command: + - sleep + ## @param diagnosticMode.args Args to override all containers in the deployment + ## + args: + - infinity +## @section Redis® Image parameters +## + +## Bitnami Redis® image +## ref: https://hub.docker.com/r/bitnami/redis/tags/ +## @param image.registry [default: REGISTRY_NAME] Redis® image registry +## @param image.repository [default: REPOSITORY_NAME/redis] Redis® image repository +## @skip image.tag Redis® image tag (immutable tags are recommended) +## @param image.digest Redis® image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag +## @param image.pullPolicy Redis® image pull policy +## @param image.pullSecrets Redis® image pull secrets +## @param image.debug Enable image debug mode +## +image: + registry: docker.io + repository: bitnamilegacy/redis + tag: 7.2.4-debian-12-r9 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false +## @section Redis® common configuration parameters +## https://github.com/bitnami/containers/tree/main/bitnami/redis#configuration +## + +## @param architecture Redis® architecture. Allowed values: `standalone` or `replication` +## +architecture: replication +## Redis® Authentication parameters +## ref: https://github.com/bitnami/containers/tree/main/bitnami/redis#setting-the-server-password-on-first-run +## +auth: + ## @param auth.enabled Enable password authentication + ## + enabled: true + ## @param auth.sentinel Enable password authentication on sentinels too + ## + sentinel: false + ## @param auth.password Redis® password + ## Defaults to a random 10-character alphanumeric string if not set + ## + password: "Redis01@" + ## @param auth.existingSecret The name of an existing secret with Redis® credentials + ## NOTE: When it's set, the previous `auth.password` parameter is ignored + ## + existingSecret: "" + ## @param auth.existingSecretPasswordKey Password key to be retrieved from existing secret + ## NOTE: ignored unless `auth.existingSecret` parameter is set + ## + existingSecretPasswordKey: "" + ## @param auth.usePasswordFiles Mount credentials as files instead of using an environment variable + ## + usePasswordFiles: false + ## @param auth.usePasswordFileFromSecret Mount password file from secret + ## + usePasswordFileFromSecret: true +## @param commonConfiguration [string] Common configuration to be added into the ConfigMap +## ref: https://redis.io/topics/config +## +commonConfiguration: |- + # Enable AOF https://redis.io/topics/persistence#append-only-file + appendonly yes + # Disable RDB persistence, AOF persistence already enabled. + save "" +## @param existingConfigmap The name of an existing ConfigMap with your custom configuration for Redis® nodes +## +existingConfigmap: "" +## @section Redis® master configuration parameters +## +master: + ## @param master.count Number of Redis® master instances to deploy (experimental, requires additional configuration) + ## + count: 1 + ## @param master.configuration Configuration for Redis® master nodes + ## ref: https://redis.io/topics/config + ## + configuration: "" + ## @param master.disableCommands Array with Redis® commands to disable on master nodes + ## Commands will be completely disabled by renaming each to an empty string. + ## ref: https://redis.io/topics/security#disabling-of-specific-commands + ## + disableCommands: + - FLUSHDB + - FLUSHALL + ## @param master.command Override default container command (useful when using custom images) + ## + command: [] + ## @param master.args Override default container args (useful when using custom images) + ## + args: [] + ## @param master.enableServiceLinks Whether information about services should be injected into pod's environment variable + ## + enableServiceLinks: true + ## @param master.preExecCmds Additional commands to run prior to starting Redis® master + ## + preExecCmds: [] + ## @param master.extraFlags Array with additional command line flags for Redis® master + ## e.g: + ## extraFlags: + ## - "--maxmemory-policy volatile-ttl" + ## - "--repl-backlog-size 1024mb" + ## + extraFlags: [] + ## @param master.extraEnvVars Array with extra environment variables to add to Redis® master nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param master.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Redis® master nodes + ## + extraEnvVarsCM: "" + ## @param master.extraEnvVarsSecret Name of existing Secret containing extra env vars for Redis® master nodes + ## + extraEnvVarsSecret: "" + ## @param master.containerPorts.redis Container port to open on Redis® master nodes + ## + containerPorts: + redis: 6379 + ## Configure extra options for Redis® containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param master.startupProbe.enabled Enable startupProbe on Redis® master nodes + ## @param master.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param master.startupProbe.periodSeconds Period seconds for startupProbe + ## @param master.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param master.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param master.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 5 + ## @param master.livenessProbe.enabled Enable livenessProbe on Redis® master nodes + ## @param master.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param master.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param master.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param master.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param master.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 5 + ## @param master.readinessProbe.enabled Enable readinessProbe on Redis® master nodes + ## @param master.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param master.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param master.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param master.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param master.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 1 + successThreshold: 1 + failureThreshold: 5 + ## @param master.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param master.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param master.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Redis® master resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param master.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if master.resources is set (master.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param master.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param master.podSecurityContext.enabled Enabled Redis® master pods' Security Context + ## @param master.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param master.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param master.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param master.podSecurityContext.fsGroup Set Redis® master pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param master.containerSecurityContext.enabled Enabled Redis® master containers' Security Context + ## @param master.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param master.containerSecurityContext.runAsUser Set Redis® master containers' Security Context runAsUser + ## @param master.containerSecurityContext.runAsGroup Set Redis® master containers' Security Context runAsGroup + ## @param master.containerSecurityContext.runAsNonRoot Set Redis® master containers' Security Context runAsNonRoot + ## @param master.containerSecurityContext.allowPrivilegeEscalation Is it possible to escalate Redis® pod(s) privileges + ## @param master.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context read-only root filesystem + ## @param master.containerSecurityContext.seccompProfile.type Set Redis® master containers' Security Context seccompProfile + ## @param master.containerSecurityContext.capabilities.drop Set Redis® master containers' Security Context capabilities to drop + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + seccompProfile: + type: RuntimeDefault + capabilities: + drop: ["ALL"] + ## @param master.kind Use either Deployment, StatefulSet (default) or DaemonSet + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/ + ## + kind: StatefulSet + ## @param master.schedulerName Alternate scheduler for Redis® master pods + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param master.updateStrategy.type Redis® master statefulset strategy type + ## @skip master.updateStrategy.rollingUpdate + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + ## StrategyType + ## Can be set to RollingUpdate, OnDelete (statefulset), Recreate (deployment) + ## + type: RollingUpdate + ## @param master.minReadySeconds How many seconds a pod needs to be ready before killing the next, during update + ## + minReadySeconds: 0 + ## @param master.priorityClassName Redis® master pods' priorityClassName + ## + priorityClassName: "" + ## @param master.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: false + ## @param master.hostAliases Redis® master pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param master.podLabels Extra labels for Redis® master pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param master.podAnnotations Annotations for Redis® master pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param master.shareProcessNamespace Share a single process namespace between all of the containers in Redis® master pods + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/ + ## + shareProcessNamespace: false + ## @param master.podAffinityPreset Pod affinity preset. Ignored if `master.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param master.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `master.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node master.affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param master.nodeAffinityPreset.type Node affinity preset type. Ignored if `master.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param master.nodeAffinityPreset.key Node label key to match. Ignored if `master.affinity` is set + ## + key: "" + ## @param master.nodeAffinityPreset.values Node label values to match. Ignored if `master.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param master.affinity Affinity for Redis® master pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `master.podAffinityPreset`, `master.podAntiAffinityPreset`, and `master.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param master.nodeSelector Node labels for Redis® master pods assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param master.tolerations Tolerations for Redis® master pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param master.topologySpreadConstraints Spread Constraints for Redis® master pod assignment + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## E.g. + ## topologySpreadConstraints: + ## - maxSkew: 1 + ## topologyKey: node + ## whenUnsatisfiable: DoNotSchedule + ## + topologySpreadConstraints: [] + ## @param master.dnsPolicy DNS Policy for Redis® master pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/ + ## E.g. + ## dnsPolicy: ClusterFirst + ## + dnsPolicy: "" + ## @param master.dnsConfig DNS Configuration for Redis® master pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/ + ## E.g. + ## dnsConfig: + ## options: + ## - name: ndots + ## value: "4" + ## - name: single-request-reopen + ## + dnsConfig: {} + ## @param master.lifecycleHooks for the Redis® master container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param master.extraVolumes Optionally specify extra list of additional volumes for the Redis® master pod(s) + ## + extraVolumes: [] + ## @param master.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Redis® master container(s) + ## + extraVolumeMounts: [] + ## @param master.sidecars Add additional sidecar containers to the Redis® master pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param master.initContainers Add additional init containers to the Redis® master pod(s) + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## command: ['sh', '-c', 'echo "hello world"'] + ## + initContainers: [] + ## Persistence parameters + ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/ + ## + persistence: + ## @param master.persistence.enabled Enable persistence on Redis® master nodes using Persistent Volume Claims + ## + enabled: true + ## @param master.persistence.medium Provide a medium for `emptyDir` volumes. + ## + medium: "" + ## @param master.persistence.sizeLimit Set this to enable a size limit for `emptyDir` volumes. + ## + sizeLimit: "" + ## @param master.persistence.path The path the volume will be mounted at on Redis® master containers + ## NOTE: Useful when using different Redis® images + ## + path: /data + ## @param master.persistence.subPath The subdirectory of the volume to mount on Redis® master containers + ## NOTE: Useful in dev environments + ## + subPath: "" + ## @param master.persistence.subPathExpr Used to construct the subPath subdirectory of the volume to mount on Redis® master containers + ## + subPathExpr: "" + ## @param master.persistence.storageClass Persistent Volume storage class + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner + ## + storageClass: "" + ## @param master.persistence.accessModes Persistent Volume access modes + ## + accessModes: + - ReadWriteOnce + ## @param master.persistence.size Persistent Volume size + ## + size: 8Gi + ## @param master.persistence.annotations Additional custom annotations for the PVC + ## + annotations: {} + ## @param master.persistence.labels Additional custom labels for the PVC + ## + labels: {} + ## @param master.persistence.selector Additional labels to match for the PVC + ## e.g: + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + ## @param master.persistence.dataSource Custom PVC data source + ## + dataSource: {} + ## @param master.persistence.existingClaim Use a existing PVC which must be created manually before bound + ## NOTE: requires master.persistence.enabled: true + ## + existingClaim: "" + ## persistentVolumeClaimRetentionPolicy + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention + ## @param master.persistentVolumeClaimRetentionPolicy.enabled Controls if and how PVCs are deleted during the lifecycle of a StatefulSet + ## @param master.persistentVolumeClaimRetentionPolicy.whenScaled Volume retention behavior when the replica count of the StatefulSet is reduced + ## @param master.persistentVolumeClaimRetentionPolicy.whenDeleted Volume retention behavior that applies when the StatefulSet is deleted + ## + persistentVolumeClaimRetentionPolicy: + enabled: false + whenScaled: Retain + whenDeleted: Retain + ## Redis® master service parameters + ## + service: + ## @param master.service.type Redis® master service type + ## + type: LoadBalancer + ## @param master.service.ports.redis Redis® master service port + ## + ports: + redis: 6379 + ## @param master.service.nodePorts.redis Node port for Redis® master + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + redis: "" + ## @param master.service.externalTrafficPolicy Redis® master service external traffic policy + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param master.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param master.service.internalTrafficPolicy Redis® master service internal traffic policy (requires Kubernetes v1.22 or greater to be usable) + ## ref: https://kubernetes.io/docs/concepts/services-networking/service-traffic-policy/ + ## + internalTrafficPolicy: Cluster + ## @param master.service.clusterIP Redis® master service Cluster IP + ## + clusterIP: "" + ## @param master.service.loadBalancerIP Redis® master service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer + ## + loadBalancerIP: "" + ## @param master.service.loadBalancerClass master service Load Balancer class if service type is `LoadBalancer` (optional, cloud specific) + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerClass: "" + ## @param master.service.loadBalancerSourceRanges Redis® master service Load Balancer sources + ## https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g. + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param master.service.externalIPs Redis® master service External IPs + ## https://kubernetes.io/docs/concepts/services-networking/service/#external-ips + ## e.g. + ## externalIPs: + ## - 10.10.10.1 + ## - 201.22.30.1 + ## + externalIPs: [] + ## @param master.service.annotations Additional custom annotations for Redis® master service + ## + annotations: {} + ## @param master.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param master.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## @param master.terminationGracePeriodSeconds Integer setting the termination grace period for the redis-master pods + ## + terminationGracePeriodSeconds: 30 + ## ServiceAccount configuration + ## + serviceAccount: + ## @param master.serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param master.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param master.serviceAccount.automountServiceAccountToken Whether to auto mount the service account token + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/#use-the-default-service-account-to-access-the-api-server + ## + automountServiceAccountToken: false + ## @param master.serviceAccount.annotations Additional custom annotations for the ServiceAccount + ## + annotations: {} +## @section Redis® replicas configuration parameters +## +replica: + ## @param replica.kind Use either DaemonSet or StatefulSet (default) + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/ + ## + kind: StatefulSet + ## @param replica.replicaCount Number of Redis® replicas to deploy + ## + replicaCount: 3 + ## @param replica.configuration Configuration for Redis® replicas nodes + ## ref: https://redis.io/topics/config + ## + configuration: "" + ## @param replica.disableCommands Array with Redis® commands to disable on replicas nodes + ## Commands will be completely disabled by renaming each to an empty string. + ## ref: https://redis.io/topics/security#disabling-of-specific-commands + ## + disableCommands: + - FLUSHDB + - FLUSHALL + ## @param replica.command Override default container command (useful when using custom images) + ## + command: [] + ## @param replica.args Override default container args (useful when using custom images) + ## + args: [] + ## @param replica.enableServiceLinks Whether information about services should be injected into pod's environment variable + ## + enableServiceLinks: true + ## @param replica.preExecCmds Additional commands to run prior to starting Redis® replicas + ## + preExecCmds: [] + ## @param replica.extraFlags Array with additional command line flags for Redis® replicas + ## e.g: + ## extraFlags: + ## - "--maxmemory-policy volatile-ttl" + ## - "--repl-backlog-size 1024mb" + ## + extraFlags: [] + ## @param replica.extraEnvVars Array with extra environment variables to add to Redis® replicas nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param replica.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Redis® replicas nodes + ## + extraEnvVarsCM: "" + ## @param replica.extraEnvVarsSecret Name of existing Secret containing extra env vars for Redis® replicas nodes + ## + extraEnvVarsSecret: "" + ## @param replica.externalMaster.enabled Use external master for bootstrapping + ## @param replica.externalMaster.host External master host to bootstrap from + ## @param replica.externalMaster.port Port for Redis service external master host + ## + externalMaster: + enabled: false + host: "" + port: 6379 + ## @param replica.containerPorts.redis Container port to open on Redis® replicas nodes + ## + containerPorts: + redis: 6379 + ## Configure extra options for Redis® containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param replica.startupProbe.enabled Enable startupProbe on Redis® replicas nodes + ## @param replica.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param replica.startupProbe.periodSeconds Period seconds for startupProbe + ## @param replica.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param replica.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param replica.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 22 + ## @param replica.livenessProbe.enabled Enable livenessProbe on Redis® replicas nodes + ## @param replica.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param replica.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param replica.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param replica.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param replica.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 5 + ## @param replica.readinessProbe.enabled Enable readinessProbe on Redis® replicas nodes + ## @param replica.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param replica.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param replica.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param replica.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param replica.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 1 + successThreshold: 1 + failureThreshold: 5 + ## @param replica.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param replica.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param replica.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Redis® replicas resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param replica.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if replica.resources is set (replica.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param replica.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Configure Pods Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param replica.podSecurityContext.enabled Enabled Redis® replicas pods' Security Context + ## @param replica.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy + ## @param replica.podSecurityContext.sysctls Set kernel settings using the sysctl interface + ## @param replica.podSecurityContext.supplementalGroups Set filesystem extra groups + ## @param replica.podSecurityContext.fsGroup Set Redis® replicas pod's Security Context fsGroup + ## + podSecurityContext: + enabled: true + fsGroupChangePolicy: Always + sysctls: [] + supplementalGroups: [] + fsGroup: 1001 + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param replica.containerSecurityContext.enabled Enabled Redis® replicas containers' Security Context + ## @param replica.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param replica.containerSecurityContext.runAsUser Set Redis® replicas containers' Security Context runAsUser + ## @param replica.containerSecurityContext.runAsGroup Set Redis® replicas containers' Security Context runAsGroup + ## @param replica.containerSecurityContext.runAsNonRoot Set Redis® replicas containers' Security Context runAsNonRoot + ## @param replica.containerSecurityContext.allowPrivilegeEscalation Set Redis® replicas pod's Security Context allowPrivilegeEscalation + ## @param replica.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context read-only root filesystem + ## @param replica.containerSecurityContext.seccompProfile.type Set Redis® replicas containers' Security Context seccompProfile + ## @param replica.containerSecurityContext.capabilities.drop Set Redis® replicas containers' Security Context capabilities to drop + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + seccompProfile: + type: RuntimeDefault + capabilities: + drop: ["ALL"] + ## @param replica.schedulerName Alternate scheduler for Redis® replicas pods + ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ + ## + schedulerName: "" + ## @param replica.updateStrategy.type Redis® replicas statefulset strategy type + ## @skip replica.updateStrategy.rollingUpdate + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies + ## + updateStrategy: + ## StrategyType + ## Can be set to RollingUpdate, OnDelete (statefulset), Recreate (deployment) + ## + type: RollingUpdate + ## @param replica.minReadySeconds How many seconds a pod needs to be ready before killing the next, during update + ## + minReadySeconds: 0 + ## @param replica.priorityClassName Redis® replicas pods' priorityClassName + ## + priorityClassName: "" + ## @param replica.podManagementPolicy podManagementPolicy to manage scaling operation of %%MAIN_CONTAINER_NAME%% pods + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies + ## + podManagementPolicy: "" + ## @param replica.automountServiceAccountToken Mount Service Account token in pod + ## + automountServiceAccountToken: false + ## @param replica.hostAliases Redis® replicas pods host aliases + ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ + ## + hostAliases: [] + ## @param replica.podLabels Extra labels for Redis® replicas pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param replica.podAnnotations Annotations for Redis® replicas pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: {} + ## @param replica.shareProcessNamespace Share a single process namespace between all of the containers in Redis® replicas pods + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/ + ## + shareProcessNamespace: false + ## @param replica.podAffinityPreset Pod affinity preset. Ignored if `replica.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAffinityPreset: "" + ## @param replica.podAntiAffinityPreset Pod anti-affinity preset. Ignored if `replica.affinity` is set. Allowed values: `soft` or `hard` + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + ## + podAntiAffinityPreset: soft + ## Node affinity preset + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + ## + nodeAffinityPreset: + ## @param replica.nodeAffinityPreset.type Node affinity preset type. Ignored if `replica.affinity` is set. Allowed values: `soft` or `hard` + ## + type: "" + ## @param replica.nodeAffinityPreset.key Node label key to match. Ignored if `replica.affinity` is set + ## + key: "" + ## @param replica.nodeAffinityPreset.values Node label values to match. Ignored if `replica.affinity` is set + ## E.g. + ## values: + ## - e2e-az1 + ## - e2e-az2 + ## + values: [] + ## @param replica.affinity Affinity for Redis® replicas pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity + ## NOTE: `replica.podAffinityPreset`, `replica.podAntiAffinityPreset`, and `replica.nodeAffinityPreset` will be ignored when it's set + ## + affinity: {} + ## @param replica.nodeSelector Node labels for Redis® replicas pods assignment + ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ + ## + nodeSelector: {} + ## @param replica.tolerations Tolerations for Redis® replicas pods assignment + ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ + ## + tolerations: [] + ## @param replica.topologySpreadConstraints Spread Constraints for Redis® replicas pod assignment + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ + ## E.g. + ## topologySpreadConstraints: + ## - maxSkew: 1 + ## topologyKey: node + ## whenUnsatisfiable: DoNotSchedule + ## + topologySpreadConstraints: [] + ## @param replica.dnsPolicy DNS Policy for Redis® replica pods + ## ref: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/ + ## E.g. + ## dnsPolicy: ClusterFirst + ## + dnsPolicy: "" + ## @param replica.dnsConfig DNS Configuration for Redis® replica pods + ## ref: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/ + ## E.g. + ## dnsConfig: + ## options: + ## - name: ndots + ## value: "4" + ## - name: single-request-reopen + ## + dnsConfig: {} + ## @param replica.lifecycleHooks for the Redis® replica container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param replica.extraVolumes Optionally specify extra list of additional volumes for the Redis® replicas pod(s) + ## + extraVolumes: [] + ## @param replica.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Redis® replicas container(s) + ## + extraVolumeMounts: [] + ## @param replica.sidecars Add additional sidecar containers to the Redis® replicas pod(s) + ## e.g: + ## sidecars: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## ports: + ## - name: portname + ## containerPort: 1234 + ## + sidecars: [] + ## @param replica.initContainers Add additional init containers to the Redis® replicas pod(s) + ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + ## e.g: + ## initContainers: + ## - name: your-image-name + ## image: your-image + ## imagePullPolicy: Always + ## command: ['sh', '-c', 'echo "hello world"'] + ## + initContainers: [] + ## Persistence Parameters + ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/ + ## + persistence: + ## @param replica.persistence.enabled Enable persistence on Redis® replicas nodes using Persistent Volume Claims + ## + enabled: true + ## @param replica.persistence.medium Provide a medium for `emptyDir` volumes. + ## + medium: "" + ## @param replica.persistence.sizeLimit Set this to enable a size limit for `emptyDir` volumes. + ## + sizeLimit: "" + ## @param replica.persistence.path The path the volume will be mounted at on Redis® replicas containers + ## NOTE: Useful when using different Redis® images + ## + path: /data + ## @param replica.persistence.subPath The subdirectory of the volume to mount on Redis® replicas containers + ## NOTE: Useful in dev environments + ## + subPath: "" + ## @param replica.persistence.subPathExpr Used to construct the subPath subdirectory of the volume to mount on Redis® replicas containers + ## + subPathExpr: "" + ## @param replica.persistence.storageClass Persistent Volume storage class + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner + ## + storageClass: "" + ## @param replica.persistence.accessModes Persistent Volume access modes + ## + accessModes: + - ReadWriteOnce + ## @param replica.persistence.size Persistent Volume size + ## + size: 8Gi + ## @param replica.persistence.annotations Additional custom annotations for the PVC + ## + annotations: {} + ## @param replica.persistence.labels Additional custom labels for the PVC + ## + labels: {} + ## @param replica.persistence.selector Additional labels to match for the PVC + ## e.g: + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + ## @param replica.persistence.dataSource Custom PVC data source + ## + dataSource: {} + ## @param replica.persistence.existingClaim Use a existing PVC which must be created manually before bound + ## NOTE: requires replica.persistence.enabled: true + ## + existingClaim: "" + ## persistentVolumeClaimRetentionPolicy + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention + ## @param replica.persistentVolumeClaimRetentionPolicy.enabled Controls if and how PVCs are deleted during the lifecycle of a StatefulSet + ## @param replica.persistentVolumeClaimRetentionPolicy.whenScaled Volume retention behavior when the replica count of the StatefulSet is reduced + ## @param replica.persistentVolumeClaimRetentionPolicy.whenDeleted Volume retention behavior that applies when the StatefulSet is deleted + ## + persistentVolumeClaimRetentionPolicy: + enabled: false + whenScaled: Retain + whenDeleted: Retain + ## Redis® replicas service parameters + ## + service: + ## @param replica.service.type Redis® replicas service type + ## + type: ClusterIP + ## @param replica.service.ports.redis Redis® replicas service port + ## + ports: + redis: 6379 + ## @param replica.service.nodePorts.redis Node port for Redis® replicas + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## NOTE: choose port between <30000-32767> + ## + nodePorts: + redis: "" + ## @param replica.service.externalTrafficPolicy Redis® replicas service external traffic policy + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param replica.service.internalTrafficPolicy Redis® replicas service internal traffic policy (requires Kubernetes v1.22 or greater to be usable) + ## ref: https://kubernetes.io/docs/concepts/services-networking/service-traffic-policy/ + ## + internalTrafficPolicy: Cluster + ## @param replica.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param replica.service.clusterIP Redis® replicas service Cluster IP + ## + clusterIP: "" + ## @param replica.service.loadBalancerIP Redis® replicas service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer + ## + loadBalancerIP: "" + ## @param replica.service.loadBalancerClass replicas service Load Balancer class if service type is `LoadBalancer` (optional, cloud specific) + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerClass: "" + ## @param replica.service.loadBalancerSourceRanges Redis® replicas service Load Balancer sources + ## https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g. + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param replica.service.annotations Additional custom annotations for Redis® replicas service + ## + annotations: {} + ## @param replica.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param replica.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## @param replica.terminationGracePeriodSeconds Integer setting the termination grace period for the redis-replicas pods + ## + terminationGracePeriodSeconds: 30 + ## Autoscaling configuration + ## + autoscaling: + ## @param replica.autoscaling.enabled Enable replica autoscaling settings + ## + enabled: false + ## @param replica.autoscaling.minReplicas Minimum replicas for the pod autoscaling + ## + minReplicas: 1 + ## @param replica.autoscaling.maxReplicas Maximum replicas for the pod autoscaling + ## + maxReplicas: 1 + ## @param replica.autoscaling.targetCPU Percentage of CPU to consider when autoscaling + ## + targetCPU: "" + ## @param replica.autoscaling.targetMemory Percentage of Memory to consider when autoscaling + ## + targetMemory: "" + ## ServiceAccount configuration + ## + serviceAccount: + ## @param replica.serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param replica.serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param replica.serviceAccount.automountServiceAccountToken Whether to auto mount the service account token + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/#use-the-default-service-account-to-access-the-api-server + ## + automountServiceAccountToken: false + ## @param replica.serviceAccount.annotations Additional custom annotations for the ServiceAccount + ## + annotations: {} +## @section Redis® Sentinel configuration parameters +## + +sentinel: + ## @param sentinel.enabled Use Redis® Sentinel on Redis® pods. + ## IMPORTANT: this will disable the master and replicas services and + ## create a single Redis® service exposing both the Redis and Sentinel ports + ## + enabled: false + ## Bitnami Redis® Sentinel image version + ## ref: https://hub.docker.com/r/bitnami/redis-sentinel/tags/ + ## @param sentinel.image.registry [default: REGISTRY_NAME] Redis® Sentinel image registry + ## @param sentinel.image.repository [default: REPOSITORY_NAME/redis-sentinel] Redis® Sentinel image repository + ## @skip sentinel.image.tag Redis® Sentinel image tag (immutable tags are recommended) + ## @param sentinel.image.digest Redis® Sentinel image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param sentinel.image.pullPolicy Redis® Sentinel image pull policy + ## @param sentinel.image.pullSecrets Redis® Sentinel image pull secrets + ## @param sentinel.image.debug Enable image debug mode + ## + image: + registry: docker.io + repository: bitnami/redis-sentinel + tag: 7.2.4-debian-12-r7 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Enable debug mode + ## + debug: false + ## @param sentinel.annotations Additional custom annotations for Redis® Sentinel resource + ## + annotations: {} + ## @param sentinel.masterSet Master set name + ## + masterSet: mymaster + ## @param sentinel.quorum Sentinel Quorum + ## + quorum: 2 + ## @param sentinel.getMasterTimeout Amount of time to allow before get_sentinel_master_info() times out. + ## + getMasterTimeout: 90 + ## @param sentinel.automateClusterRecovery Automate cluster recovery in cases where the last replica is not considered a good replica and Sentinel won't automatically failover to it. + ## This also prevents any new replica from starting until the last remaining replica is elected as master to guarantee that it is the one to be elected by Sentinel, and not a newly started replica with no data. + ## NOTE: This feature requires a "downAfterMilliseconds" value less or equal to 2000. + ## + automateClusterRecovery: false + ## @param sentinel.redisShutdownWaitFailover Whether the Redis® master container waits for the failover at shutdown (in addition to the Redis® Sentinel container). + ## + redisShutdownWaitFailover: true + ## Sentinel timing restrictions + ## @param sentinel.downAfterMilliseconds Timeout for detecting a Redis® node is down + ## @param sentinel.failoverTimeout Timeout for performing a election failover + ## + downAfterMilliseconds: 60000 + failoverTimeout: 180000 + ## @param sentinel.parallelSyncs Number of replicas that can be reconfigured in parallel to use the new master after a failover + ## + parallelSyncs: 1 + ## @param sentinel.configuration Configuration for Redis® Sentinel nodes + ## ref: https://redis.io/topics/sentinel + ## + configuration: "" + ## @param sentinel.command Override default container command (useful when using custom images) + ## + command: [] + ## @param sentinel.args Override default container args (useful when using custom images) + ## + args: [] + ## @param sentinel.enableServiceLinks Whether information about services should be injected into pod's environment variable + ## + enableServiceLinks: true + ## @param sentinel.preExecCmds Additional commands to run prior to starting Redis® Sentinel + ## + preExecCmds: [] + ## @param sentinel.extraEnvVars Array with extra environment variables to add to Redis® Sentinel nodes + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## @param sentinel.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for Redis® Sentinel nodes + ## + extraEnvVarsCM: "" + ## @param sentinel.extraEnvVarsSecret Name of existing Secret containing extra env vars for Redis® Sentinel nodes + ## + extraEnvVarsSecret: "" + ## @param sentinel.externalMaster.enabled Use external master for bootstrapping + ## @param sentinel.externalMaster.host External master host to bootstrap from + ## @param sentinel.externalMaster.port Port for Redis service external master host + ## + externalMaster: + enabled: false + host: "" + port: 6379 + ## @param sentinel.containerPorts.sentinel Container port to open on Redis® Sentinel nodes + ## + containerPorts: + sentinel: 26379 + ## Configure extra options for Redis® containers' liveness and readiness probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes + ## @param sentinel.startupProbe.enabled Enable startupProbe on Redis® Sentinel nodes + ## @param sentinel.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param sentinel.startupProbe.periodSeconds Period seconds for startupProbe + ## @param sentinel.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param sentinel.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param sentinel.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 22 + ## @param sentinel.livenessProbe.enabled Enable livenessProbe on Redis® Sentinel nodes + ## @param sentinel.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param sentinel.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param sentinel.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param sentinel.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param sentinel.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 6 + ## @param sentinel.readinessProbe.enabled Enable readinessProbe on Redis® Sentinel nodes + ## @param sentinel.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param sentinel.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param sentinel.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param sentinel.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param sentinel.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 20 + periodSeconds: 5 + timeoutSeconds: 1 + successThreshold: 1 + failureThreshold: 6 + ## @param sentinel.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param sentinel.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param sentinel.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## Persistence parameters + ## ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/ + ## + persistence: + ## @param sentinel.persistence.enabled Enable persistence on Redis® sentinel nodes using Persistent Volume Claims (Experimental) + ## + enabled: false + ## @param sentinel.persistence.storageClass Persistent Volume storage class + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is set, choosing the default provisioner + ## + storageClass: "" + ## @param sentinel.persistence.accessModes Persistent Volume access modes + ## + accessModes: + - ReadWriteOnce + ## @param sentinel.persistence.size Persistent Volume size + ## + size: 100Mi + ## @param sentinel.persistence.annotations Additional custom annotations for the PVC + ## + annotations: {} + ## @param sentinel.persistence.labels Additional custom labels for the PVC + ## + labels: {} + ## @param sentinel.persistence.selector Additional labels to match for the PVC + ## e.g: + ## selector: + ## matchLabels: + ## app: my-app + ## + selector: {} + ## @param sentinel.persistence.dataSource Custom PVC data source + ## + dataSource: {} + ## @param sentinel.persistence.medium Provide a medium for `emptyDir` volumes. + ## + medium: "" + ## @param sentinel.persistence.sizeLimit Set this to enable a size limit for `emptyDir` volumes. + ## + sizeLimit: "" + ## persistentVolumeClaimRetentionPolicy + ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#persistentvolumeclaim-retention + ## @param sentinel.persistentVolumeClaimRetentionPolicy.enabled Controls if and how PVCs are deleted during the lifecycle of a StatefulSet + ## @param sentinel.persistentVolumeClaimRetentionPolicy.whenScaled Volume retention behavior when the replica count of the StatefulSet is reduced + ## @param sentinel.persistentVolumeClaimRetentionPolicy.whenDeleted Volume retention behavior that applies when the StatefulSet is deleted + ## + persistentVolumeClaimRetentionPolicy: + enabled: false + whenScaled: Retain + whenDeleted: Retain + ## Redis® Sentinel resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param sentinel.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if sentinel.resources is set (sentinel.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param sentinel.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param sentinel.containerSecurityContext.enabled Enabled Redis® Sentinel containers' Security Context + ## @param sentinel.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param sentinel.containerSecurityContext.runAsUser Set Redis® Sentinel containers' Security Context runAsUser + ## @param sentinel.containerSecurityContext.runAsGroup Set Redis® Sentinel containers' Security Context runAsGroup + ## @param sentinel.containerSecurityContext.runAsNonRoot Set Redis® Sentinel containers' Security Context runAsNonRoot + ## @param sentinel.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context read-only root filesystem + ## @param sentinel.containerSecurityContext.allowPrivilegeEscalation Set Redis® Sentinel containers' Security Context allowPrivilegeEscalation + ## @param sentinel.containerSecurityContext.seccompProfile.type Set Redis® Sentinel containers' Security Context seccompProfile + ## @param sentinel.containerSecurityContext.capabilities.drop Set Redis® Sentinel containers' Security Context capabilities to drop + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + seccompProfile: + type: RuntimeDefault + capabilities: + drop: ["ALL"] + ## @param sentinel.lifecycleHooks for the Redis® sentinel container(s) to automate configuration before or after startup + ## + lifecycleHooks: {} + ## @param sentinel.extraVolumes Optionally specify extra list of additional volumes for the Redis® Sentinel + ## + extraVolumes: [] + ## @param sentinel.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Redis® Sentinel container(s) + ## + extraVolumeMounts: [] + ## Redis® Sentinel service parameters + ## + service: + ## @param sentinel.service.type Redis® Sentinel service type + ## + type: ClusterIP + ## @param sentinel.service.ports.redis Redis® service port for Redis® + ## @param sentinel.service.ports.sentinel Redis® service port for Redis® Sentinel + ## + ports: + redis: 6379 + sentinel: 26379 + ## @param sentinel.service.nodePorts.redis Node port for Redis® + ## @param sentinel.service.nodePorts.sentinel Node port for Sentinel + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## NOTE: choose port between <30000-32767> + ## NOTE: By leaving these values blank, they will be generated by ports-configmap + ## If setting manually, please leave at least replica.replicaCount + 1 in between sentinel.service.nodePorts.redis and sentinel.service.nodePorts.sentinel to take into account the ports that will be created while incrementing that base port + ## + nodePorts: + redis: "" + sentinel: "" + ## @param sentinel.service.externalTrafficPolicy Redis® Sentinel service external traffic policy + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param sentinel.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param sentinel.service.clusterIP Redis® Sentinel service Cluster IP + ## + clusterIP: "" + + ## @param sentinel.service.createMaster Enable master service pointing to the current master (experimental) + ## NOTE: rbac.create need to be set to true + ## + createMaster: false + + ## @param sentinel.service.loadBalancerIP Redis® Sentinel service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer + ## + loadBalancerIP: "" + ## @param sentinel.service.loadBalancerClass sentinel service Load Balancer class if service type is `LoadBalancer` (optional, cloud specific) + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerClass: "" + ## @param sentinel.service.loadBalancerSourceRanges Redis® Sentinel service Load Balancer sources + ## https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g. + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param sentinel.service.annotations Additional custom annotations for Redis® Sentinel service + ## + annotations: {} + ## @param sentinel.service.sessionAffinity Session Affinity for Kubernetes service, can be "None" or "ClientIP" + ## If "ClientIP", consecutive client requests will be directed to the same Pod + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + ## + sessionAffinity: None + ## @param sentinel.service.sessionAffinityConfig Additional settings for the sessionAffinity + ## sessionAffinityConfig: + ## clientIP: + ## timeoutSeconds: 300 + ## + sessionAffinityConfig: {} + ## Headless service properties + ## + headless: + ## @param sentinel.service.headless.annotations Annotations for the headless service. + ## + annotations: {} + ## @param sentinel.terminationGracePeriodSeconds Integer setting the termination grace period for the redis-node pods + ## + terminationGracePeriodSeconds: 30 +## @section Other Parameters +## + +## @param serviceBindings.enabled Create secret for service binding (Experimental) +## Ref: https://servicebinding.io/service-provider/ +## +serviceBindings: + enabled: false +## Network Policy configuration +## ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/ +## +networkPolicy: + ## @param networkPolicy.enabled Enable creation of NetworkPolicy resources + ## + enabled: true + ## @param networkPolicy.allowExternal Don't require client label for connections + ## When set to false, only pods with the correct client label will have network access to the ports + ## Redis® is listening on. When true, Redis® will accept connections from any source + ## (with the correct destination port). + ## + allowExternal: true + ## @param networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations. + ## + allowExternalEgress: true + ## @param networkPolicy.extraIngress Add extra ingress rules to the NetworkPolicy + ## e.g: + ## extraIngress: + ## - ports: + ## - port: 1234 + ## from: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + ## + extraIngress: [] + ## @param networkPolicy.extraEgress Add extra egress rules to the NetworkPolicy + ## e.g: + ## extraEgress: + ## - ports: + ## - port: 1234 + ## to: + ## - podSelector: + ## - matchLabels: + ## - role: frontend + ## - podSelector: + ## - matchExpressions: + ## - key: role + ## operator: In + ## values: + ## - frontend + ## + extraEgress: [] + ## @param networkPolicy.ingressNSMatchLabels Labels to match to allow traffic from other namespaces + ## @param networkPolicy.ingressNSPodMatchLabels Pod labels to match to allow traffic from other namespaces + ## + ingressNSMatchLabels: {} + ingressNSPodMatchLabels: {} + metrics: + ## @param networkPolicy.metrics.allowExternal Don't require client label for connections for metrics endpoint + ## When set to false, only pods with the correct client label will have network access to the metrics port + ## + allowExternal: true + ## @param networkPolicy.metrics.ingressNSMatchLabels Labels to match to allow traffic from other namespaces to metrics endpoint + ## @param networkPolicy.metrics.ingressNSPodMatchLabels Pod labels to match to allow traffic from other namespaces to metrics endpoint + ## + ingressNSMatchLabels: {} + ingressNSPodMatchLabels: {} +## PodSecurityPolicy configuration +## ref: https://kubernetes.io/docs/concepts/policy/pod-security-policy/ +## +podSecurityPolicy: + ## @param podSecurityPolicy.create Whether to create a PodSecurityPolicy. WARNING: PodSecurityPolicy is deprecated in Kubernetes v1.21 or later, unavailable in v1.25 or later + ## + create: false + ## @param podSecurityPolicy.enabled Enable PodSecurityPolicy's RBAC rules + ## + enabled: false +## RBAC configuration +## +rbac: + ## @param rbac.create Specifies whether RBAC resources should be created + ## + create: false + ## @param rbac.rules Custom RBAC rules to set + ## e.g: + ## rules: + ## - apiGroups: + ## - "" + ## resources: + ## - pods + ## verbs: + ## - get + ## - list + ## + rules: [] +## ServiceAccount configuration +## +serviceAccount: + ## @param serviceAccount.create Specifies whether a ServiceAccount should be created + ## + create: true + ## @param serviceAccount.name The name of the ServiceAccount to use. + ## If not set and create is true, a name is generated using the common.names.fullname template + ## + name: "" + ## @param serviceAccount.automountServiceAccountToken Whether to auto mount the service account token + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/#use-the-default-service-account-to-access-the-api-server + ## + automountServiceAccountToken: false + ## @param serviceAccount.annotations Additional custom annotations for the ServiceAccount + ## + annotations: {} +## Redis® Pod Disruption Budget configuration +## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/ +## +pdb: + ## @param pdb.create Specifies whether a PodDisruptionBudget should be created + ## + create: false + ## @param pdb.minAvailable Min number of pods that must still be available after the eviction + ## + minAvailable: 1 + ## @param pdb.maxUnavailable Max number of pods that can be unavailable after the eviction + ## + maxUnavailable: "" +## TLS configuration +## +tls: + ## @param tls.enabled Enable TLS traffic + ## + enabled: false + ## @param tls.authClients Require clients to authenticate + ## + authClients: true + ## @param tls.autoGenerated Enable autogenerated certificates + ## + autoGenerated: false + ## @param tls.existingSecret The name of the existing secret that contains the TLS certificates + ## + existingSecret: "" + ## @param tls.certificatesSecret DEPRECATED. Use existingSecret instead. + ## + certificatesSecret: "" + ## @param tls.certFilename Certificate filename + ## + certFilename: "" + ## @param tls.certKeyFilename Certificate Key filename + ## + certKeyFilename: "" + ## @param tls.certCAFilename CA Certificate filename + ## + certCAFilename: "" + ## @param tls.dhParamsFilename File containing DH params (in order to support DH based ciphers) + ## + dhParamsFilename: "" +## @section Metrics Parameters +## +metrics: + ## @param metrics.enabled Start a sidecar prometheus exporter to expose Redis® metrics + ## + enabled: false + ## Bitnami Redis® Exporter image + ## ref: https://hub.docker.com/r/bitnami/redis-exporter/tags/ + ## @param metrics.image.registry [default: REGISTRY_NAME] Redis® Exporter image registry + ## @param metrics.image.repository [default: REPOSITORY_NAME/redis-exporter] Redis® Exporter image repository + ## @skip metrics.image.tag Redis® Exporter image tag (immutable tags are recommended) + ## @param metrics.image.digest Redis® Exporter image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param metrics.image.pullPolicy Redis® Exporter image pull policy + ## @param metrics.image.pullSecrets Redis® Exporter image pull secrets + ## + image: + registry: docker.io + repository: bitnami/redis-exporter + tag: 1.58.0-debian-12-r4 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## @param metrics.containerPorts.http Metrics HTTP container port + ## + containerPorts: + http: 9121 + ## Configure extra options for Redis® containers' liveness, readiness & startup probes + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ + ## @param metrics.startupProbe.enabled Enable startupProbe on Redis® replicas nodes + ## @param metrics.startupProbe.initialDelaySeconds Initial delay seconds for startupProbe + ## @param metrics.startupProbe.periodSeconds Period seconds for startupProbe + ## @param metrics.startupProbe.timeoutSeconds Timeout seconds for startupProbe + ## @param metrics.startupProbe.failureThreshold Failure threshold for startupProbe + ## @param metrics.startupProbe.successThreshold Success threshold for startupProbe + ## + startupProbe: + enabled: false + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 5 + ## @param metrics.livenessProbe.enabled Enable livenessProbe on Redis® replicas nodes + ## @param metrics.livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe + ## @param metrics.livenessProbe.periodSeconds Period seconds for livenessProbe + ## @param metrics.livenessProbe.timeoutSeconds Timeout seconds for livenessProbe + ## @param metrics.livenessProbe.failureThreshold Failure threshold for livenessProbe + ## @param metrics.livenessProbe.successThreshold Success threshold for livenessProbe + ## + livenessProbe: + enabled: true + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 5 + ## @param metrics.readinessProbe.enabled Enable readinessProbe on Redis® replicas nodes + ## @param metrics.readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe + ## @param metrics.readinessProbe.periodSeconds Period seconds for readinessProbe + ## @param metrics.readinessProbe.timeoutSeconds Timeout seconds for readinessProbe + ## @param metrics.readinessProbe.failureThreshold Failure threshold for readinessProbe + ## @param metrics.readinessProbe.successThreshold Success threshold for readinessProbe + ## + readinessProbe: + enabled: true + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 1 + successThreshold: 1 + failureThreshold: 3 + ## @param metrics.customStartupProbe Custom startupProbe that overrides the default one + ## + customStartupProbe: {} + ## @param metrics.customLivenessProbe Custom livenessProbe that overrides the default one + ## + customLivenessProbe: {} + ## @param metrics.customReadinessProbe Custom readinessProbe that overrides the default one + ## + customReadinessProbe: {} + ## @param metrics.command Override default metrics container init command (useful when using custom images) + ## + command: [] + ## @param metrics.redisTargetHost A way to specify an alternative Redis® hostname + ## Useful for certificate CN/SAN matching + ## + redisTargetHost: "localhost" + ## @param metrics.extraArgs Extra arguments for Redis® exporter, for example: + ## e.g.: + ## extraArgs: + ## check-keys: myKey,myOtherKey + ## + extraArgs: {} + ## @param metrics.extraEnvVars Array with extra environment variables to add to Redis® exporter + ## e.g: + ## extraEnvVars: + ## - name: FOO + ## value: "bar" + ## + extraEnvVars: [] + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param metrics.containerSecurityContext.enabled Enabled Redis® exporter containers' Security Context + ## @param metrics.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param metrics.containerSecurityContext.runAsUser Set Redis® exporter containers' Security Context runAsUser + ## @param metrics.containerSecurityContext.runAsGroup Set Redis® exporter containers' Security Context runAsGroup + ## @param metrics.containerSecurityContext.runAsNonRoot Set Redis® exporter containers' Security Context runAsNonRoot + ## @param metrics.containerSecurityContext.allowPrivilegeEscalation Set Redis® exporter containers' Security Context allowPrivilegeEscalation + ## @param metrics.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context read-only root filesystem + ## @param metrics.containerSecurityContext.seccompProfile.type Set Redis® exporter containers' Security Context seccompProfile + ## @param metrics.containerSecurityContext.capabilities.drop Set Redis® exporter containers' Security Context capabilities to drop + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + seccompProfile: + type: RuntimeDefault + capabilities: + drop: ["ALL"] + ## @param metrics.extraVolumes Optionally specify extra list of additional volumes for the Redis® metrics sidecar + ## + extraVolumes: [] + ## @param metrics.extraVolumeMounts Optionally specify extra list of additional volumeMounts for the Redis® metrics sidecar + ## + extraVolumeMounts: [] + ## Redis® exporter resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param metrics.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if metrics.resources is set (metrics.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param metrics.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## @param metrics.podLabels Extra labels for Redis® exporter pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ + ## + podLabels: {} + ## @param metrics.podAnnotations [object] Annotations for Redis® exporter pods + ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + ## + podAnnotations: + prometheus.io/scrape: "true" + prometheus.io/port: "9121" + ## Redis® exporter service parameters + ## + service: + ## @param metrics.service.enabled Create Service resource(s) for scraping metrics using PrometheusOperator ServiceMonitor, can be disabled when using a PodMonitor + ## + enabled: true + ## @param metrics.service.type Redis® exporter service type + ## + type: ClusterIP + ## @param metrics.service.ports.http Redis® exporter service port + ## + ports: + http: 9121 + ## @param metrics.service.externalTrafficPolicy Redis® exporter service external traffic policy + ## ref: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip + ## + externalTrafficPolicy: Cluster + ## @param metrics.service.extraPorts Extra ports to expose (normally used with the `sidecar` value) + ## + extraPorts: [] + ## @param metrics.service.loadBalancerIP Redis® exporter service Load Balancer IP + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer + ## + loadBalancerIP: "" + ## @param metrics.service.loadBalancerClass exporter service Load Balancer class if service type is `LoadBalancer` (optional, cloud specific) + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer + ## + loadBalancerClass: "" + ## @param metrics.service.loadBalancerSourceRanges Redis® exporter service Load Balancer sources + ## https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service + ## e.g. + ## loadBalancerSourceRanges: + ## - 10.10.10.0/24 + ## + loadBalancerSourceRanges: [] + ## @param metrics.service.annotations Additional custom annotations for Redis® exporter service + ## + annotations: {} + ## @param metrics.service.clusterIP Redis® exporter service Cluster IP + ## + clusterIP: "" + ## Prometheus Service Monitor + ## ref: https://github.com/coreos/prometheus-operator + ## https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint + ## + serviceMonitor: + ## @param metrics.serviceMonitor.port the service port to scrape metrics from + ## + port: http-metrics + ## @param metrics.serviceMonitor.enabled Create ServiceMonitor resource(s) for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param metrics.serviceMonitor.namespace The namespace in which the ServiceMonitor will be created + ## + namespace: "" + ## @param metrics.serviceMonitor.interval The interval at which metrics should be scraped + ## + interval: 30s + ## @param metrics.serviceMonitor.scrapeTimeout The timeout after which the scrape is ended + ## + scrapeTimeout: "" + ## @param metrics.serviceMonitor.relabelings Metrics RelabelConfigs to apply to samples before scraping. + ## + relabelings: [] + ## @skip metrics.serviceMonitor.relabellings DEPRECATED: Use `metrics.serviceMonitor.relabelings` instead. + ## + relabellings: [] + ## @param metrics.serviceMonitor.metricRelabelings Metrics RelabelConfigs to apply to samples before ingestion. + ## + metricRelabelings: [] + ## @param metrics.serviceMonitor.honorLabels Specify honorLabels parameter to add the scrape endpoint + ## + honorLabels: false + ## @param metrics.serviceMonitor.additionalLabels Additional labels that can be used so ServiceMonitor resource(s) can be discovered by Prometheus + ## + additionalLabels: {} + ## @param metrics.serviceMonitor.podTargetLabels Labels from the Kubernetes pod to be transferred to the created metrics + ## + podTargetLabels: [] + ## @param metrics.serviceMonitor.sampleLimit Limit of how many samples should be scraped from every Pod + ## + sampleLimit: false + ## @param metrics.serviceMonitor.targetLimit Limit of how many targets should be scraped + ## + targetLimit: false + ## @param metrics.serviceMonitor.additionalEndpoints Additional endpoints to scrape (e.g sentinel) + ## + additionalEndpoints: [] + # uncomment in order to scrape sentinel metrics, also to in order distinguish between Sentinel and Redis container metrics + # add metricRelabelings with label like app=redis to main redis pod-monitor port + # - interval: "30s" + # path: "/scrape" + # port: "metrics" + # params: + # target: ["localhost:26379"] + # metricRelabelings: + # - targetLabel: "app" + # replacement: "sentinel" + ## Prometheus Pod Monitor + ## ref: https://github.com/coreos/prometheus-operator + ## https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#podmonitor + ## + podMonitor: + ## @param metrics.podMonitor.port the pod port to scrape metrics from + ## + port: metrics + ## @param metrics.podMonitor.enabled Create PodMonitor resource(s) for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param metrics.podMonitor.namespace The namespace in which the PodMonitor will be created + ## + namespace: "" + ## @param metrics.podMonitor.interval The interval at which metrics should be scraped + ## + interval: 30s + ## @param metrics.podMonitor.scrapeTimeout The timeout after which the scrape is ended + ## + scrapeTimeout: "" + ## @param metrics.podMonitor.relabelings Metrics RelabelConfigs to apply to samples before scraping. + ## + relabelings: [] + ## @skip metrics.podMonitor.relabellings DEPRECATED: Use `metrics.podMonitor.relabelings` instead. + ## + relabellings: [] + ## @param metrics.podMonitor.metricRelabelings Metrics RelabelConfigs to apply to samples before ingestion. + ## + metricRelabelings: [] + # - targetLabel: "app" + # replacement: "redis" + ## @param metrics.podMonitor.honorLabels Specify honorLabels parameter to add the scrape endpoint + ## + honorLabels: false + ## @param metrics.podMonitor.additionalLabels Additional labels that can be used so PodMonitor resource(s) can be discovered by Prometheus + ## + additionalLabels: {} + ## @param metrics.podMonitor.podTargetLabels Labels from the Kubernetes pod to be transferred to the created metrics + ## + podTargetLabels: [] + ## @param metrics.podMonitor.sampleLimit Limit of how many samples should be scraped from every Pod + ## + sampleLimit: false + ## @param metrics.podMonitor.targetLimit Limit of how many targets should be scraped + ## + targetLimit: false + ## @param metrics.podMonitor.additionalEndpoints Additional endpoints to scrape (e.g sentinel) + ## + additionalEndpoints: [] + # - interval: "30s" + # path: "/scrape" + # port: "metrics" + # params: + # target: ["localhost:26379"] + # metricRelabelings: + # - targetLabel: "app" + # replacement: "sentinel" + ## Custom PrometheusRule to be defined + ## ref: https://github.com/coreos/prometheus-operator#customresourcedefinitions + ## + prometheusRule: + ## @param metrics.prometheusRule.enabled Create a custom prometheusRule Resource for scraping metrics using PrometheusOperator + ## + enabled: false + ## @param metrics.prometheusRule.namespace The namespace in which the prometheusRule will be created + ## + namespace: "" + ## @param metrics.prometheusRule.additionalLabels Additional labels for the prometheusRule + ## + additionalLabels: {} + ## @param metrics.prometheusRule.rules Custom Prometheus rules + ## e.g: + ## rules: + ## - alert: RedisDown + ## expr: redis_up{service="{{ template "common.names.fullname" . }}-metrics"} == 0 + ## for: 2m + ## labels: + ## severity: error + ## annotations: + ## summary: Redis® instance {{ "{{ $labels.instance }}" }} down + ## description: Redis® instance {{ "{{ $labels.instance }}" }} is down + ## - alert: RedisMemoryHigh + ## expr: > + ## redis_memory_used_bytes{service="{{ template "common.names.fullname" . }}-metrics"} * 100 + ## / + ## redis_memory_max_bytes{service="{{ template "common.names.fullname" . }}-metrics"} + ## > 90 + ## for: 2m + ## labels: + ## severity: error + ## annotations: + ## summary: Redis® instance {{ "{{ $labels.instance }}" }} is using too much memory + ## description: | + ## Redis® instance {{ "{{ $labels.instance }}" }} is using {{ "{{ $value }}" }}% of its available memory. + ## - alert: RedisKeyEviction + ## expr: | + ## increase(redis_evicted_keys_total{service="{{ template "common.names.fullname" . }}-metrics"}[5m]) > 0 + ## for: 1s + ## labels: + ## severity: error + ## annotations: + ## summary: Redis® instance {{ "{{ $labels.instance }}" }} has evicted keys + ## description: | + ## Redis® instance {{ "{{ $labels.instance }}" }} has evicted {{ "{{ $value }}" }} keys in the last 5 minutes. + ## + rules: [] +## @section Init Container Parameters +## + +## 'volumePermissions' init container parameters +## Changes the owner and group of the persistent volume mount point to runAsUser:fsGroup values +## based on the *podSecurityContext/*containerSecurityContext parameters +## +volumePermissions: + ## @param volumePermissions.enabled Enable init container that changes the owner/group of the PV mount point to `runAsUser:fsGroup` + ## + enabled: false + ## OS Shell + Utility image + ## ref: https://hub.docker.com/r/bitnami/os-shell/tags/ + ## @param volumePermissions.image.registry [default: REGISTRY_NAME] OS Shell + Utility image registry + ## @param volumePermissions.image.repository [default: REPOSITORY_NAME/os-shell] OS Shell + Utility image repository + ## @skip volumePermissions.image.tag OS Shell + Utility image tag (immutable tags are recommended) + ## @param volumePermissions.image.digest OS Shell + Utility image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param volumePermissions.image.pullPolicy OS Shell + Utility image pull policy + ## @param volumePermissions.image.pullSecrets OS Shell + Utility image pull secrets + ## + image: + registry: docker.io + repository: bitnami/os-shell + tag: 12-debian-12-r16 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## Init container's resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param volumePermissions.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if volumePermissions.resources is set (volumePermissions.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param volumePermissions.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} + ## Init container Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + ## @param volumePermissions.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param volumePermissions.containerSecurityContext.runAsUser Set init container's Security Context runAsUser + ## NOTE: when runAsUser is set to special value "auto", init container will try to chown the + ## data folder to auto-determined user&group, using commands: `id -u`:`id -G | cut -d" " -f2` + ## "auto" is especially useful for OpenShift which has scc with dynamic user ids (and 0 is not allowed) + ## + containerSecurityContext: + seLinuxOptions: {} + runAsUser: 0 + +## Kubectl InitContainer +## used by Sentinel to update the isMaster label on the Redis(TM) pods +## +kubectl: + ## Bitnami Kubectl image version + ## ref: https://hub.docker.com/r/bitnami/kubectl/tags/ + ## @param kubectl.image.registry [default: REGISTRY_NAME] Kubectl image registry + ## @param kubectl.image.repository [default: REPOSITORY_NAME/kubectl] Kubectl image repository + ## @skip kubectl.image.tag Kubectl image tag (immutable tags are recommended), by default, using the current version + ## @param kubectl.image.digest Kubectl image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param kubectl.image.pullPolicy Kubectl image pull policy + ## @param kubectl.image.pullSecrets Kubectl pull secrets + ## + image: + registry: docker.io + repository: bitnami/kubectl + tag: 1.29.2-debian-12-r3 + digest: "" + ## Specify a imagePullPolicy + ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' + ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images + ## + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## @param kubectl.command kubectl command to execute + ## + command: ["/opt/bitnami/scripts/kubectl-scripts/update-master-label.sh"] + ## Configure Container Security Context + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod + ## @param kubectl.containerSecurityContext.enabled Enabled kubectl containers' Security Context + ## @param kubectl.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container + ## @param kubectl.containerSecurityContext.runAsUser Set kubectl containers' Security Context runAsUser + ## @param kubectl.containerSecurityContext.runAsGroup Set kubectl containers' Security Context runAsGroup + ## @param kubectl.containerSecurityContext.runAsNonRoot Set kubectl containers' Security Context runAsNonRoot + ## @param kubectl.containerSecurityContext.allowPrivilegeEscalation Set kubectl containers' Security Context allowPrivilegeEscalation + ## @param kubectl.containerSecurityContext.readOnlyRootFilesystem Set container's Security Context read-only root filesystem + ## @param kubectl.containerSecurityContext.seccompProfile.type Set kubectl containers' Security Context seccompProfile + ## @param kubectl.containerSecurityContext.capabilities.drop Set kubectl containers' Security Context capabilities to drop + ## + containerSecurityContext: + enabled: true + seLinuxOptions: {} + runAsUser: 1001 + runAsGroup: 1001 + runAsNonRoot: true + allowPrivilegeEscalation: false + readOnlyRootFilesystem: true + seccompProfile: + type: RuntimeDefault + capabilities: + drop: ["ALL"] + ## Bitnami Kubectl resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param kubectl.resources.limits The resources limits for the kubectl containers + ## @param kubectl.resources.requests The requested resources for the kubectl containers + ## + resources: + limits: {} + requests: {} + +## init-sysctl container parameters +## used to perform sysctl operation to modify Kernel settings (needed sometimes to avoid warnings) +## +sysctl: + ## @param sysctl.enabled Enable init container to modify Kernel settings + ## + enabled: false + ## OS Shell + Utility image + ## ref: https://hub.docker.com/r/bitnami/os-shell/tags/ + ## @param sysctl.image.registry [default: REGISTRY_NAME] OS Shell + Utility image registry + ## @param sysctl.image.repository [default: REPOSITORY_NAME/os-shell] OS Shell + Utility image repository + ## @skip sysctl.image.tag OS Shell + Utility image tag (immutable tags are recommended) + ## @param sysctl.image.digest OS Shell + Utility image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag + ## @param sysctl.image.pullPolicy OS Shell + Utility image pull policy + ## @param sysctl.image.pullSecrets OS Shell + Utility image pull secrets + ## + image: + registry: docker.io + repository: bitnami/os-shell + tag: 12-debian-12-r16 + digest: "" + pullPolicy: IfNotPresent + ## Optionally specify an array of imagePullSecrets. + ## Secrets must be manually created in the namespace. + ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ + ## e.g: + ## pullSecrets: + ## - myRegistryKeySecretName + ## + pullSecrets: [] + ## @param sysctl.command Override default init-sysctl container command (useful when using custom images) + ## + command: [] + ## @param sysctl.mountHostSys Mount the host `/sys` folder to `/host-sys` + ## + mountHostSys: false + ## Init container's resource requests and limits + ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ + ## @param sysctl.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, small, medium, large, xlarge, 2xlarge). This is ignored if sysctl.resources is set (sysctl.resources is recommended for production). + ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 + ## + resourcesPreset: "nano" + ## @param sysctl.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) + ## Example: + ## resources: + ## requests: + ## cpu: 2 + ## memory: 512Mi + ## limits: + ## cpu: 3 + ## memory: 1024Mi + ## + resources: {} +## @section useExternalDNS Parameters +## +## @param useExternalDNS.enabled Enable various syntax that would enable external-dns to work. Note this requires a working installation of `external-dns` to be usable. +## @param useExternalDNS.additionalAnnotations Extra annotations to be utilized when `external-dns` is enabled. +## @param useExternalDNS.annotationKey The annotation key utilized when `external-dns` is enabled. Setting this to `false` will disable annotations. +## @param useExternalDNS.suffix The DNS suffix utilized when `external-dns` is enabled. Note that we prepend the suffix with the full name of the release. +## +useExternalDNS: + enabled: false + suffix: "" + annotationKey: external-dns.alpha.kubernetes.io/ + additionalAnnotations: {} + diff --git a/kubernetes/dev/redmine/handmatig-installeren b/kubernetes/dev/redmine/handmatig-installeren new file mode 100755 index 0000000..e69de29 diff --git a/kubernetes/dev/redmine/redmine.yaml b/kubernetes/dev/redmine/redmine.yaml new file mode 100755 index 0000000..916b591 --- /dev/null +++ b/kubernetes/dev/redmine/redmine.yaml @@ -0,0 +1,63 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: redmine + labels: + app: redmine +spec: + replicas: 1 + selector: + matchLabels: + app: redmine + template: + metadata: + labels: + app: redmine + spec: + containers: + - name: redmine + image: redmine + ports: + - containerPort: 3000 + env: + - name: REDMINE_PASSWORD + value: redmine + - name: REDMINE_USER + value: redmine + - name: REDMINE_DB_USERNAME + value: redmine + - name: REDMINE_DB_PASSWORD + value: redmine + - name: REDMINE_DB_MYSQL + value: mariadb-service + - name: REDMINE_DB_PORT_NUMBER + value: "3306" +--- +apiVersion: v1 +kind: Service +metadata: + name: redmine +spec: + ports: + - name: port-0 + nodePort: 32200 + port: 3000 + selector: + app: redmine + type: NodePort +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: redmine-tls-alldcs +spec: + entryPoints: + - websecure + routes: + - match: Host(`redmine.alldcs.nl`) + kind: Rule + services: + - name: redmine + port: 3000 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/sonarqube/README.md b/kubernetes/dev/sonarqube/README.md new file mode 100755 index 0000000..83ea0af --- /dev/null +++ b/kubernetes/dev/sonarqube/README.md @@ -0,0 +1,11 @@ +Installatie: + +installeren via bitnami werkt niet, die image ondersteunt geen arm64v8 + +#let op: ingressroute-http is nodig om vanuit het AMD cluster te kunnen werken. + +global token: + +sqa_dcacbb464eedb501dec941af548b1cd1300143db + +#als sonarqube "under maintenance" is, ga dan naar url/setup diff --git a/kubernetes/dev/sonarqube/configmap/create-configmap-sonar-properties.sh b/kubernetes/dev/sonarqube/configmap/create-configmap-sonar-properties.sh new file mode 100755 index 0000000..c08a1f3 --- /dev/null +++ b/kubernetes/dev/sonarqube/configmap/create-configmap-sonar-properties.sh @@ -0,0 +1,2 @@ +microk8s kubectl delete configmap sonar-properties +microk8s kubectl create configmap sonar-properties --from-file="/home/ubuntu/containers/kubernetes/sonarqube/configmap/sonar-project.properties" diff --git a/kubernetes/dev/sonarqube/configmap/sonar-project.properties b/kubernetes/dev/sonarqube/configmap/sonar-project.properties new file mode 100755 index 0000000..e2f5572 --- /dev/null +++ b/kubernetes/dev/sonarqube/configmap/sonar-project.properties @@ -0,0 +1,7 @@ +sonar.projectVersion=1.0 +sonar.organization=allarddcs.nl +sonar.login=sqp_214ee7c92e1b82b0d43dd9b1d9462eac8f50434c +sonar.projectKey=olproperties +sonar.host.url=https://sonarqube-dev.allarddcs.nl +sonar.java.binaries=./target +sonar.coverage.jacoco.xmlReportPaths=./target/jacoco.xml diff --git a/kubernetes/dev/sonarqube/sonarqube.yaml b/kubernetes/dev/sonarqube/sonarqube.yaml new file mode 100755 index 0000000..e3d3627 --- /dev/null +++ b/kubernetes/dev/sonarqube/sonarqube.yaml @@ -0,0 +1,125 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: sonar-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/sonar + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: sonar-pvc + namespace: sonarqube +spec: + storageClassName: "" + volumeName: sonar-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: sonarqube + namespace: sonarqube + labels: + app: sonarqube +spec: + replicas: 1 + selector: + matchLabels: + app: sonarqube + template: + metadata: + labels: + app: sonarqube + spec: + containers: + - name: sonarqube + image: sonarqube + ports: + - name: sonarqube + containerPort: 9000 + env: + - name: SONAR_JDBC_URL + value: jdbc:postgresql://postgres14.postgres:5432/sonar + - name: SONAR_JDBC_USERNAME + value: sonar + - name: SONAR_JDBC_PASSWORD + value: sonar + volumeMounts: + - name: sonarqube + mountPath: /opt/sonarqube/extensions + subPath: sonarqube-extensions + - name: sonarqube + mountPath: /opt/sonarqube/data + subPath: sonarqube-data + volumes: + - name: sonarqube + persistentVolumeClaim: + claimName: sonar-pvc + - name: sonarqube-data + persistentVolumeClaim: + claimName: sonar-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: sonarqube + namespace: sonarqube + labels: + name: sonarqube +spec: + type: ClusterIP + selector: + app: sonarqube + ports: + - port: 9000 + name: sonarqube +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: sonarqube-http + namespace: sonarqube +spec: + entryPoints: + - web + routes: + - match: Host(`sonarqube-dev.allarddcs.nl`) + kind: Rule + services: + - name: sonarqube + port: 9000 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: sonarqube-tls + namespace: sonarqube +spec: + entryPoints: + - websecure + routes: + - match: Host(`sonarqube-dev.allarddcs.nl`) + kind: Rule + services: + - name: sonarqube + port: 9000 + tls: + certResolver: letsencrypt diff --git a/kubernetes/dev/tekton/README.md b/kubernetes/dev/tekton/README.md new file mode 100755 index 0000000..ba503d3 --- /dev/null +++ b/kubernetes/dev/tekton/README.md @@ -0,0 +1,43 @@ +#Installeren tekton-pipelines: + +kubectl apply --filename \ +https://storage.googleapis.com/tekton-releases/pipeline/latest/release.yaml + +#Installeren tekton-dashboard: + +kubectl apply --filename \ +https://storage.googleapis.com/tekton-releases/dashboard/latest/release-full.yaml + +#daarna: + +kubectl apply -f ingressroute-tls.yaml + +Taken die je vaak nodig hebt: + +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.9/raw +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.6/raw +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.5/raw +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/maven/0.3/raw +kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/sonarqube-scanner/0.4/raw +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/syft/0.1/syft.yaml +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/grype/0.1/grype.yaml +kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/argocd-task-sync-and-wait/0.2/argocd-task-sync-and-wait.yaml +kubectl apply -f /home/ubuntu/containers/kubernetes/tekton/tasks/push-sbom-task.yaml +kubectl apply -f /home/ubuntu/containers/kubernetes/tekton/tasks/register-change-task.yaml +kubectl apply -f /home/ubuntu/containers/kubernetes/tekton/tasks/curl-task.yaml +kubectl apply -f /home/ubuntu/containers/kubernetes/tekton/tasks/argocd/argocd-task-synt-and-wait.yaml + +## Voor deze laatste task moet je ook een configmap en een secret aanmaken!! + + +#om TKN command-line te gebruiken: + +microk8s config > admin.conf +sudo mv admin.conf /etc/kubernetes/ + +#Tekton triggers: + +kubectl apply --filename \ +https://storage.googleapis.com/tekton-releases/triggers/latest/release.yaml +kubectl apply --filename \ +https://storage.googleapis.com/tekton-releases/triggers/latest/interceptors.yaml diff --git a/kubernetes/dev/tekton/clean.yaml b/kubernetes/dev/tekton/clean.yaml new file mode 100755 index 0000000..16dd01c --- /dev/null +++ b/kubernetes/dev/tekton/clean.yaml @@ -0,0 +1,52 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: cleaner +--- +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: cleaner +rules: + - apiGroups: ["tekton.dev"] + resources: ["pipelineruns"] + verbs: ["delete", "get", "watch", "list"] +--- +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: cleaner-to-cleaner +roleRef: + kind: Role + name: cleaner + apiGroup: rbac.authorization.k8s.io +subjects: + - kind: ServiceAccount + name: cleaner +--- +apiVersion: batch/v1 +kind: CronJob +metadata: + name: cleanup-pipelineruns +spec: + schedule: "*/15 * * * *" + concurrencyPolicy: Forbid + jobTemplate: + spec: + template: + spec: + restartPolicy: OnFailure + serviceAccount: cleaner + containers: + - name: kubectl + image: bitnami/kubectl:latest + env: + - name: NUM_TO_KEEP + value: "1" + command: + - /bin/bash + - -c + - | + TO_DELETE="$(kubectl get pipelinerun -o jsonpath='{range .items[?(@.status.completionTime)]}{.status.completionTime}{" "}{.metadata.name}{"\n"}{end}' | sort | head -n -${NUM_TO_KEEP} | awk '{ print $2}')" + test -n "$TO_DELETE" && kubectl delete pipelinerun ${TO_DELETE} || true diff --git a/kubernetes/dev/tekton/cleanup-pipelineruns.yaml b/kubernetes/dev/tekton/cleanup-pipelineruns.yaml new file mode 100755 index 0000000..47d3eda --- /dev/null +++ b/kubernetes/dev/tekton/cleanup-pipelineruns.yaml @@ -0,0 +1,53 @@ + +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: cleaner +--- +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: cleaner +rules: + - apiGroups: ["tekton.dev"] + resources: ["pipelineruns"] + verbs: ["delete", "get", "watch", "list"] +--- +kind: RoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: cleaner-to-cleaner +roleRef: + kind: Role + name: cleaner + apiGroup: rbac.authorization.k8s.io +subjects: + - kind: ServiceAccount + name: cleaner +--- +apiVersion: batch/v1beta1 +kind: CronJob +metadata: + name: cleanup-pipelineruns +spec: + schedule: "*/15 * * * *" + concurrencyPolicy: Forbid + jobTemplate: + spec: + template: + spec: + restartPolicy: OnFailure + serviceAccount: cleaner + containers: + - name: kubectl + image: ghcr.io/ctron/kubectl:latest + env: + - name: NUM_TO_KEEP + value: "3" + command: + - /bin/bash + - -c + - | + TO_DELETE="$(kubectl get pipelinerun -o jsonpath='{range .items[?(@.status.completionTime)]}{.status.completionTime}{" "}{.metadata.name}{"\n"}{end}' | sort | head -n -${NUM_TO_KEEP} | awk '{ print $2}')" + test -n "$TO_DELETE" && kubectl delete pipelinerun ${TO_DELETE} || true diff --git a/kubernetes/dev/tekton/dashboard-patch.yaml b/kubernetes/dev/tekton/dashboard-patch.yaml new file mode 100755 index 0000000..f0f69b5 --- /dev/null +++ b/kubernetes/dev/tekton/dashboard-patch.yaml @@ -0,0 +1,31 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: tekton-dashboard-tutorial +rules: + - apiGroups: + - tekton.dev + resources: + - tasks + - taskruns + - pipelines + - pipelineruns + verbs: + - get + - create + - update + - patch +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: tekton-dashboard-tutorial + namespace: default +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-dashboard-tutorial +subjects: + - kind: ServiceAccount + name: default + namespace: tekton-dashboard diff --git a/kubernetes/dev/tekton/dashboard.yaml b/kubernetes/dev/tekton/dashboard.yaml new file mode 100755 index 0000000..a66e8c5 --- /dev/null +++ b/kubernetes/dev/tekton/dashboard.yaml @@ -0,0 +1,337 @@ +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + labels: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + name: extensions.dashboard.tekton.dev +spec: + group: dashboard.tekton.dev + names: + categories: + - tekton + - tekton-dashboard + kind: Extension + plural: extensions + shortNames: + - ext + - exts + preserveUnknownFields: false + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .spec.apiVersion + name: API version + type: string + - jsonPath: .spec.name + name: Kind + type: string + - jsonPath: .spec.displayname + name: Display name + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1alpha1 + schema: + openAPIV3Schema: + type: object + x-kubernetes-preserve-unknown-fields: true + served: true + storage: true + subresources: + status: {} +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + labels: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + name: tekton-dashboard + namespace: tekton-pipelines +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + labels: + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + name: tekton-dashboard-info + namespace: tekton-pipelines +rules: + - apiGroups: + - "" + resourceNames: + - dashboard-info + resources: + - configmaps + verbs: + - get +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + labels: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + name: tekton-dashboard-backend +rules: + - apiGroups: + - apiextensions.k8s.io + resources: + - customresourcedefinitions + verbs: + - get + - list + - apiGroups: + - security.openshift.io + resources: + - securitycontextconstraints + verbs: + - use + - apiGroups: + - tekton.dev + resources: + - clustertasks + verbs: + - get + - list + - watch + - update + - apiGroups: + - triggers.tekton.dev + resources: + - clusterinterceptors + - clustertriggerbindings + verbs: + - get + - list + - watch + - update +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + labels: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + name: tekton-dashboard-tenant +rules: + - apiGroups: + - dashboard.tekton.dev + resources: + - extensions + verbs: + - get + - list + - watch + - update + - apiGroups: + - "" + resources: + - events + - namespaces + - pods + - pods/log + verbs: + - get + - list + - watch + - update + - apiGroups: + - tekton.dev + resources: + - tasks + - taskruns + - pipelines + - pipelineruns + - customruns + verbs: + - get + - list + - watch + - update + - apiGroups: + - triggers.tekton.dev + resources: + - eventlisteners + - interceptors + - triggerbindings + - triggers + - triggertemplates + verbs: + - get + - list + - watch +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + labels: + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + name: tekton-dashboard-info + namespace: tekton-pipelines +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: tekton-dashboard-info +subjects: + - apiGroup: rbac.authorization.k8s.io + kind: Group + name: system:authenticated +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + labels: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + rbac.dashboard.tekton.dev/subject: tekton-dashboard + name: tekton-dashboard-backend +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-dashboard-backend +subjects: + - kind: ServiceAccount + name: tekton-dashboard + namespace: tekton-pipelines +--- +apiVersion: v1 +data: + version: v0.36.0 +kind: ConfigMap +metadata: + labels: + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + name: dashboard-info + namespace: tekton-pipelines +--- +apiVersion: v1 +kind: Service +metadata: + labels: + app: tekton-dashboard + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/name: dashboard + app.kubernetes.io/part-of: tekton-dashboard + app.kubernetes.io/version: v0.36.0 + dashboard.tekton.dev/release: v0.36.0 + version: v0.36.0 + name: tekton-dashboard + namespace: tekton-pipelines +spec: + ports: + - name: http + port: 9097 + protocol: TCP + targetPort: 9097 + selector: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/name: dashboard + app.kubernetes.io/part-of: tekton-dashboard +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app: tekton-dashboard + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/name: dashboard + app.kubernetes.io/part-of: tekton-dashboard + app.kubernetes.io/version: v0.36.0 + dashboard.tekton.dev/release: v0.36.0 + version: v0.36.0 + name: tekton-dashboard + namespace: tekton-pipelines +spec: + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/name: dashboard + app.kubernetes.io/part-of: tekton-dashboard + template: + metadata: + labels: + app: tekton-dashboard + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/name: dashboard + app.kubernetes.io/part-of: tekton-dashboard + app.kubernetes.io/version: v0.36.0 + name: tekton-dashboard + spec: + containers: + - args: + - --port=9097 + - --logout-url= + - --pipelines-namespace=tekton-pipelines + - --triggers-namespace=tekton-pipelines + - --read-only=no + - --log-level=info + - --log-format=json + - --namespace= + - --stream-logs=true + - --external-logs= + env: + - name: INSTALLED_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + image: gcr.io/tekton-releases/github.com/tektoncd/dashboard/cmd/dashboard:v0.36.0@sha256:e7058eabec6bc53bfb3505b637ea6208e6e81ff71a29a5f47a32fa0ed03cb5e4 + livenessProbe: + httpGet: + path: /health + port: 9097 + name: tekton-dashboard + ports: + - containerPort: 9097 + readinessProbe: + httpGet: + path: /readiness + port: 9097 + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + runAsGroup: 65532 + runAsNonRoot: true + runAsUser: 65532 + seccompProfile: + type: RuntimeDefault + nodeSelector: + kubernetes.io/os: linux + serviceAccountName: tekton-dashboard + volumes: [] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + labels: + app.kubernetes.io/component: dashboard + app.kubernetes.io/instance: default + app.kubernetes.io/part-of: tekton-dashboard + rbac.dashboard.tekton.dev/subject: tekton-dashboard + name: tekton-dashboard-tenant +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: tekton-dashboard-tenant +subjects: + - kind: ServiceAccount + name: tekton-dashboard + namespace: tekton-pipelines diff --git a/kubernetes/dev/tekton/delete-succeeded.sh b/kubernetes/dev/tekton/delete-succeeded.sh new file mode 100755 index 0000000..53d37bb --- /dev/null +++ b/kubernetes/dev/tekton/delete-succeeded.sh @@ -0,0 +1,2 @@ +microk8s kubectl delete pod --field-selector=status.phase==Succeeded +microk8s kubectl delete pod --field-selector=status.phase==Failed diff --git a/kubernetes/dev/tekton/examples/buildah/Dockerfile b/kubernetes/dev/tekton/examples/buildah/Dockerfile new file mode 100755 index 0000000..33e6724 --- /dev/null +++ b/kubernetes/dev/tekton/examples/buildah/Dockerfile @@ -0,0 +1,2 @@ +FROM alpine +ENTRYPOINT echo hallo Allard Krings diff --git a/kubernetes/dev/tekton/examples/buildah/README.md b/kubernetes/dev/tekton/examples/buildah/README.md new file mode 100755 index 0000000..20ac4cb --- /dev/null +++ b/kubernetes/dev/tekton/examples/buildah/README.md @@ -0,0 +1,15 @@ +Dit is een pipeline voor buildah. + +let op: + +gebruik de buildah task van Tekton zelf: + +kubectl apply -f +https://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.5/raw + +Deze task heeft een workspace "dockerconfig" die via de pipeline is gekoppeld aan +workspace "dockerconfig-ws" die op zijn beurt in de pipelinerun gekoppeld is aan +een secret "dockerconfig-secret dat gedefinieerd wordt conform +dockerconfig-secret.yaml + + diff --git a/kubernetes/dev/tekton/examples/buildah/buildah-workspace-pv.yaml b/kubernetes/dev/tekton/examples/buildah/buildah-workspace-pv.yaml new file mode 100755 index 0000000..dfe7ed6 --- /dev/null +++ b/kubernetes/dev/tekton/examples/buildah/buildah-workspace-pv.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: buildah-workspace-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/tekton-buildah + readOnly: false + diff --git a/kubernetes/dev/tekton/examples/buildah/buildah-workspace-pvc.yaml b/kubernetes/dev/tekton/examples/buildah/buildah-workspace-pvc.yaml new file mode 100755 index 0000000..ee7263a --- /dev/null +++ b/kubernetes/dev/tekton/examples/buildah/buildah-workspace-pvc.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: buildah-workspace-pvc +spec: + storageClassName: "" + volumeName: buildah-workspace-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + + diff --git a/kubernetes/dev/tekton/examples/buildah/create-secret-userid-password.sh b/kubernetes/dev/tekton/examples/buildah/create-secret-userid-password.sh new file mode 100755 index 0000000..13b0878 --- /dev/null +++ b/kubernetes/dev/tekton/examples/buildah/create-secret-userid-password.sh @@ -0,0 +1,2 @@ +microk8s kubectl create secret generic harbor-userid-password \ +--from-literal='Username=admin' --from-literal='Password=Harbor01@' diff --git a/kubernetes/dev/tekton/examples/buildah/docker-credentials.yaml b/kubernetes/dev/tekton/examples/buildah/docker-credentials.yaml new file mode 100755 index 0000000..4dfb9d0 --- /dev/null +++ b/kubernetes/dev/tekton/examples/buildah/docker-credentials.yaml @@ -0,0 +1,6 @@ +apiVersion: v1 +kind: Secret +metadata: + name: docker-credentials +data: + config.json: ewoJImF1dGhzIjogewoJCSJodHRwczovL2luZGV4LmRvY2tlci5pby92MS8iOiB7CgkJCSJhdXRoIjogIllXeHNZWEprYTNKcGJtZHpPa3QxWW1WeWJtVjBaWE13TVVBPSIKCQl9Cgl9Cn0= diff --git a/kubernetes/dev/tekton/examples/buildah/dockerconfig-secret.yaml b/kubernetes/dev/tekton/examples/buildah/dockerconfig-secret.yaml new file mode 100755 index 0000000..fa553b5 --- /dev/null +++ b/kubernetes/dev/tekton/examples/buildah/dockerconfig-secret.yaml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: Secret +metadata: + name: dockerconfig-secret +stringData: + config.json: | + { + "auths": { + "harbor.alldcs.nl": { + "auth": "YWRtaW46SGFyYm9yMDFA" + } + } + } diff --git a/kubernetes/dev/tekton/examples/buildah/medium/helloallard/Dockerfile b/kubernetes/dev/tekton/examples/buildah/medium/helloallard/Dockerfile new file mode 100755 index 0000000..e81ee04 --- /dev/null +++ b/kubernetes/dev/tekton/examples/buildah/medium/helloallard/Dockerfile @@ -0,0 +1,4 @@ +FROM alpine + +ENTRYPOINT echo hallo Allard Krings +# diff --git a/kubernetes/dev/tekton/examples/buildah/medium/pipeline.yaml b/kubernetes/dev/tekton/examples/buildah/medium/pipeline.yaml new file mode 100755 index 0000000..f300db6 --- /dev/null +++ b/kubernetes/dev/tekton/examples/buildah/medium/pipeline.yaml @@ -0,0 +1,32 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: tutorial-pipeline +spec: + workspaces: + - name: myworkspace + tasks: + - name: fetch-repository + taskRef: + name: git-clone + workspaces: + - name: output + workspace: myworkspace + params: + - name: url + value: https://github.com/AllardKrings/helloallard.git + - name: deleteExisting + value: "true" + - name: build + taskRef: + name: buildah + runAfter: + - fetch-repository + params: + - name: IMAGE + value: harbor.alldcs.nl/allard/helloallard + - name: IMAGE_PUSH_SECRET_NAME + value: harbor-credentials + workspaces: + - name: source + workspace: myworkspace diff --git a/kubernetes/dev/tekton/examples/buildah/medium/pipelinerun.yaml b/kubernetes/dev/tekton/examples/buildah/medium/pipelinerun.yaml new file mode 100755 index 0000000..4ef97c6 --- /dev/null +++ b/kubernetes/dev/tekton/examples/buildah/medium/pipelinerun.yaml @@ -0,0 +1,16 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + generateName: tutorial-pipeline- +spec: + pipelineRef: + name: tutorial-pipeline + workspaces: + - name: myworkspace + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 50Mi diff --git a/kubernetes/dev/tekton/examples/buildah/pipeline-run.yaml b/kubernetes/dev/tekton/examples/buildah/pipeline-run.yaml new file mode 100755 index 0000000..0d5d8a3 --- /dev/null +++ b/kubernetes/dev/tekton/examples/buildah/pipeline-run.yaml @@ -0,0 +1,24 @@ +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + generateName: buildah-clone-build-push- +spec: + pipelineRef: + name: buildah-clone-build-push + workspaces: + - name: myworkspace + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 50Mi + - name: dockerconfig-ws + secret: + secretName: dockerconfig-secret + params: + - name: repo-url + value: https://github.com/AllardKrings/helloallard.git + - name: image-reference + value: harbor.alldcs.nl/allard/hello-allard:1.0 diff --git a/kubernetes/dev/tekton/examples/buildah/pipeline.yaml b/kubernetes/dev/tekton/examples/buildah/pipeline.yaml new file mode 100755 index 0000000..f907b99 --- /dev/null +++ b/kubernetes/dev/tekton/examples/buildah/pipeline.yaml @@ -0,0 +1,35 @@ +apiVersion: tekton.dev/v1beta1 +kind: Pipeline +metadata: + name: buildah-clone-build-push +spec: + workspaces: + - name: myworkspace + - name: dockerconfig-ws + tasks: + - name: fetch-repository + taskRef: + name: git-clone + workspaces: + - name: output + workspace: myworkspace + params: + - name: url + value: https://github.com/AllardKrings/helloallard.git + - name: deleteExisting + value: "true" + - name: build + taskRef: + name: buildah + runAfter: + - fetch-repository + params: + - name: IMAGE + value: harbor.alldcs.nl/allard/helloallard:1.0 + - name: TLSVERIFY + value: "false" + workspaces: + - name: source + workspace: myworkspace + - name: dockerconfig + workspace: dockerconfig-ws diff --git a/kubernetes/dev/tekton/examples/chains/kaniko-chains.yaml b/kubernetes/dev/tekton/examples/chains/kaniko-chains.yaml new file mode 100755 index 0000000..466247b --- /dev/null +++ b/kubernetes/dev/tekton/examples/chains/kaniko-chains.yaml @@ -0,0 +1,63 @@ +apiVersion: tekton.dev/v1beta1 +kind: Task +metadata: + name: kaniko-chains +spec: + description: >- + This Task builds a simple Dockerfile with kaniko and pushes to a registry. + This Task stores the image name and digest as results, allowing Tekton Chains to pick up + that an image was built & sign it. + params: + - name: IMAGE + description: Name (reference) of the image to build. + - name: DOCKERFILE + description: Path to the Dockerfile to build. + default: ./Dockerfile + - name: CONTEXT + description: The build context used by Kaniko. + default: ./ + - name: EXTRA_ARGS + default: "" + - name: BUILDER_IMAGE + description: The image on which builds will run (default is v1.5.1) + default: gcr.io/kaniko-project/executor:v1.5.1@sha256:c6166717f7fe0b7da44908c986137ecfeab21f31ec3992f6e128fff8a94be8a5 + workspaces: + - name: source + description: Holds the context and Dockerfile + - name: dockerconfig + description: Includes a docker `config.json` + optional: true + mountPath: /kaniko/.docker + results: + - name: IMAGE_DIGEST + description: Digest of the image just built. + - name: IMAGE_URL + description: URL of the image just built. + steps: + - name: add-dockerfile + workingDir: $(workspaces.source.path) + image: bash + script: | + set -e + echo "FROM alpine@sha256:69e70a79f2d41ab5d637de98c1e0b055206ba40a8145e7bddb55ccc04e13cf8f" | tee $(params.DOCKERFILE) + - name: build-and-push + workingDir: $(workspaces.source.path) + image: $(params.BUILDER_IMAGE) + args: + - $(params.EXTRA_ARGS) + - --dockerfile=$(params.DOCKERFILE) + - --context=$(workspaces.source.path)/$(params.CONTEXT) # The user does not need to care the workspace and the source. + - --destination=$(params.IMAGE) + - --digest-file=$(results.IMAGE_DIGEST.path) + # kaniko assumes it is running as root, which means this example fails on platforms + # that default to run containers as random uid (like OpenShift). Adding this securityContext + # makes it explicit that it needs to run as root. + securityContext: + runAsUser: 0 + - name: write-url + image: bash + script: | + set -e + echo $(params.IMAGE) | tee $(results.IMAGE_URL.path) + securityContext: + runAsUser: 0 diff --git a/kubernetes/dev/tekton/examples/example-bank/.env.template b/kubernetes/dev/tekton/examples/example-bank/.env.template new file mode 100755 index 0000000..d663a76 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/.env.template @@ -0,0 +1,7 @@ +APP_ID_IAM_APIKEY= +APP_ID_MANAGEMENT_URL= +APP_ID_CLIENT_ID= +APP_ID_CLIENT_SECRET= +APP_ID_TOKEN_URL= +PROXY_USER_MICROSERVICE=user-service:9080 +PROXY_TRANSACTION_MICROSERVICE=transaction-service:9080 \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/.gitignore b/kubernetes/dev/tekton/examples/example-bank/.gitignore new file mode 100755 index 0000000..dd91ad1 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/.gitignore @@ -0,0 +1,5 @@ +node_modules +.env +.~/ +.DS_Store +.vscode diff --git a/kubernetes/dev/tekton/examples/example-bank/CONTRIBUTING.md b/kubernetes/dev/tekton/examples/example-bank/CONTRIBUTING.md new file mode 100755 index 0000000..e94f42f --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/CONTRIBUTING.md @@ -0,0 +1,14 @@ +# Contributing + +This is an open source project, and we appreciate your help! + +We use the GitHub issue tracker to discuss new features and non-trivial bugs. + +In addition to the issue tracker, [#journeys on +Slack](https://dwopen.slack.com) is the best way to get into contact with the +project's maintainers. + +To contribute code, documentation, or tests, please submit a pull request to +the GitHub repository. Generally, we expect two maintainers to review your pull +request before it is approved for merging. For more details, see the +[MAINTAINERS](MAINTAINERS.md) page. diff --git a/kubernetes/dev/tekton/examples/example-bank/Dockerfile b/kubernetes/dev/tekton/examples/example-bank/Dockerfile new file mode 100755 index 0000000..141fb9a --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/Dockerfile @@ -0,0 +1,15 @@ +FROM docker.io/library/node:12.16.1-alpine + +ENV NODE_ENV production +ENV PORT 8080 + +RUN mkdir /app +COPY public /app/public +COPY app.js /app/ +COPY package.json /app/package.json +COPY routes /app/routes +WORKDIR /app +RUN npm install + +CMD ["node", "app.js"] + diff --git a/kubernetes/dev/tekton/examples/example-bank/LICENSE b/kubernetes/dev/tekton/examples/example-bank/LICENSE new file mode 100755 index 0000000..261eeb9 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/kubernetes/dev/tekton/examples/example-bank/MAINTAINERS.md b/kubernetes/dev/tekton/examples/example-bank/MAINTAINERS.md new file mode 100755 index 0000000..937a193 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/MAINTAINERS.md @@ -0,0 +1,69 @@ +# Maintainers Guide + +This guide is intended for maintainers - anybody with commit access to one or +more Code Pattern repositories. + +## Methodology + +This repository does not have a traditional release management cycle, but +should instead be maintained as a useful, working, and polished reference at +all times. While all work can therefore be focused on the master branch, the +quality of this branch should never be compromised. + +The remainder of this document details how to merge pull requests to the +repositories. + +## Merge approval + +The project maintainers use LGTM (Looks Good To Me) in comments on the pull +request to indicate acceptance prior to merging. A change requires LGTMs from +two project maintainers. If the code is written by a maintainer, the change +only requires one additional LGTM. + +## Reviewing Pull Requests + +We recommend reviewing pull requests directly within GitHub. This allows a +public commentary on changes, providing transparency for all users. When +providing feedback be civil, courteous, and kind. Disagreement is fine, so long +as the discourse is carried out politely. If we see a record of uncivil or +abusive comments, we will revoke your commit privileges and invite you to leave +the project. + +During your review, consider the following points: + +### Does the change have positive impact? + +Some proposed changes may not represent a positive impact to the project. Ask +whether or not the change will make understanding the code easier, or if it +could simply be a personal preference on the part of the author (see +[bikeshedding](https://en.wiktionary.org/wiki/bikeshedding)). + +Pull requests that do not have a clear positive impact should be closed without +merging. + +### Do the changes make sense? + +If you do not understand what the changes are or what they accomplish, ask the +author for clarification. Ask the author to add comments and/or clarify test +case names to make the intentions clear. + +At times, such clarification will reveal that the author may not be using the +code correctly, or is unaware of features that accommodate their needs. If you +feel this is the case, work up a code sample that would address the pull +request for them, and feel free to close the pull request once they confirm. + +### Does the change introduce a new feature? + +For any given pull request, ask yourself "is this a new feature?" If so, does +the pull request (or associated issue) contain narrative indicating the need +for the feature? If not, ask them to provide that information. + +Are new unit tests in place that test all new behaviors introduced? If not, do +not merge the feature until they are! Is documentation in place for the new +feature? (See the documentation guidelines). If not do not merge the feature +until it is! Is the feature necessary for general use cases? Try and keep the +scope of any given component narrow. If a proposed feature does not fit that +scope, recommend to the user that they maintain the feature on their own, and +close the request. You may also recommend that they see if the feature gains +traction among other users, and suggest they re-submit when they can show such +support. diff --git a/kubernetes/dev/tekton/examples/example-bank/README.md b/kubernetes/dev/tekton/examples/example-bank/README.md new file mode 100755 index 0000000..d1d9bd2 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/README.md @@ -0,0 +1,495 @@ +# Building a data privacy focused mobile back-end + +In this pattern, we show how to deploy a microservice based back-end in OpenShift 4.3. To simulate a series of mobile views, we deploy a Node.js based service. + +## Introduction + +As people become more aware of data and concerned about their online privacy, regulations around the world have started requiring software projects to think about how customers' data is handled. This pattern deploys a set of microservices to act as a back-end for a mobile bank application, such as those often used by businesses who want to better understand how people use their services by collecting data. Although inspired by regulations such GDPR (Europe's general data protection regulations), as this is not a real public facing application, we implement a few data privacy features as a way of demonstrating how one might go about building a privacy focused back-end in OpenShift 4. + +The GDPR standard defines requirements around what operations need to be available to users ("subjects"). However, GDPR is technology neutral, so it ends up being the responsibility of the implementors to build the architecture that implements the requirements. In addition, with the move toward microservice architectures and containerization, we have technology such as service mesh that may be useful in the context of a data privacy service. + +## Included Components + +- [IBM Managed OpenShift](https://www.ibm.com/cloud/openshift) +- [OpenLiberty](https://openliberty.io) +- [App ID](https://www.ibm.com/cloud/app-id) +- [LogDNA](https://www.ibm.com/cloud/log-analysis) + +# Prerequisites + +1. Log in, or create an cccount on [IBM Cloud](https://cloud.ibm.com) +2. Provision an OpenShift 4.3 cluster on [IBM Cloud](https://cloud.ibm.com/docs/openshift?topic=openshift-openshift_tutorial) +3. Create a [project](https://docs.openshift.com/container-platform/4.3/applications/projects/configuring-project-creation.html) called `example-bank`. + +## Why OpenShift? + +OpenShift is RedHat's customized distribution of Kubernetes. With OpenShift, you get everything that you know and love about Kubernetes, with a few extra features, such as OperatorHub, for finding and installing new in-cluster services, a convenient CLI for navigating between different projects. For a quick look into new features, see: [Intro to OpenShift 4](https://developer.ibm.com/articles/intro-to-openshift-4/). + +## Project Requirements + +In this pattern, we will be looking to build a hypothetical credit card rewards back-end for a financial organization that wants to encourage the use of credit cards by allowing their users to earn points from their transactions. + +Credit card rewards programs are common for businesses that want to incentivize customers to use credit frequently. As regulations come online, users typically have the ability to opt-out of data collection efforts. In addition, users want the ability to delete data. + +We have implemented a few important data privacy features inspired by real data privacy regulations: + +* Authorization verification with IBM App ID +* Right to erasure: implemented via a special Kubernetes `CronJob` that checks for deletion requests every 24h. +* Consent for data collection - requiring users to 'opt-in' requirement. +* Logging: IBM LogDNA is used to aggregate log data from back-end services, making it possible to review user activity as well as monitor usage. + +# Architecture + +The example bank system includes several microservices for handling user authentication and transacton mechanics. + +![screenshot](images/pattern-flow-diag.png) + + +## Introduction to the Mobile Simulator + + + +The JavaScript simulator app presents a Web based view of a mobile app run by a Node service running inside the OpenShift cluster.
+ +| | | | | | +|:-------------------------:|:-------------------------:|:-------------------------:|:-------------------------:|:-------------------------:| +|sim1 1. Home screen |sim1 1. Login screen | sim2 2. Transactions dashboard | sim3 3. Analysis | sim4 4. Account | + +Home screen
+ +The mobile simulator home screen has a fictitious banking application that the user can create accounts on. The other apps generates transactions for the chosen category. + +Login screen
+ +From the dropdown menu inside the simulated phone app, pick one of the available accounts, and click **sign in** to see that user's point accumulation. + +Transactions dashboard
+ +This section shows transactions data for the logged in user. + +Analysis
+ +This sections shows how much the users spent on each category based on the transactions generated. + +Account
+ +From this page, the user can delete his data. + +## User authentication + +![user-creation](images/user-creation.png) + +1. The user creates an account using the mobile app simulator. This hits an API from the nodejs server. The nodejs server then hits an API from the App ID service that would create the user's account in its own cloud directory. +2. The mobile app simulator then logs in the user after account creation. The App ID service then creates valid access tokens and ID tokens for the user. The mobile app stores these tokens for later use in authentication. +3. Using the access token from the previous step, the mobile app can now successfully call the protected APIs in the Liberty microservice. The mobile app calls the API with the access token in the authorization header to create the user profile in the database. +4. The Liberty service is integrated with the App ID instance. This verifies the access token in the authorization header from the request. +5. When the token is valid, the user profile is created in the database. The access token contains the user ID of the user that sent the request. + + +- Auth token flow with AppId as identity provider and Liberty's use of token to + authenticate users: + +The Liberty microservices are protected APIs that require authorization headers. If the request does not have one, it will not allow the request to be processed, thus sending a 401 Unauthorized response. The microservices makes use of a managed identity provider, App ID for this authentication. This makes it easier to protect APIs and manage identity information of users. + +The mobile app simulator is integrated with the App ID instance and whenever a user logs in, the app receives access tokens and stores them for later use in requests to the protected APIs. The tokens expire in an hour by default which would require users to authenticate again after expiration. + +Whenever a request with a token in the authorization header is sent, the Liberty microservice uses the App ID integration to make sure that the token is valid. Then it continues to process the request. The liberty microservice also makes use of the subject ID or user ID in the token to identify which user is making the request. For example, when a user asks for his number of points earned, it needs to pull the right profile from the database. This is where the user ID in the token payload can be made use of. + +# Deployment + +There are two options for deployment: an automated deployment process driven by Tekton pipelines, and a manual process driven by CLI. In either case, the following common steps should be completed first: + +1. Create an OpenShift 4.3 cluster. +2. Complete the PostgreSQL database deployment process (see below). +3. Follow the App ID configuration below. +4. Set up the required Kubernetes secrets for each service. + +### Automated deployment + +The steps to use the Tekton pipelines [here.](https://developer.ibm.com/tutorials/tekton-pipeline-deploy-a-mobile-app-backend-openshift-4/) + +### App ID Configuration + +Create an [App ID](https://cloud.ibm.com/catalog/services/app-id) instance. Once created, do the following to configure the instance for this pattern. + +**Note** The `.env.template` file referred to in the instructions is part of the code available in GitHub after running `git clone https://github.com/IBM/example-bank.git`. + +* Allow Sign-up and Sign-in using username and password by going to the tab `Cloud Directory` > `Settings` + +![allow-sign-in](images/allow-sign-in.png) + +* Disable Email Verification by going to the tab `Cloud Directory` > `Email Templates` > `Email verification` + +![disable-email](images/disable-email.png) + +* Add an application in the `Applications` tab. Select "Regular web application" + +![add-application](images/new-app.png) + + +* Create the `admin` role. + +![add-application](images/create-role.png) + +* Create Service credentials with the `Writer` Role so that the simulator can create simulated users with the App ID instance. Take note of the `apikey` and `managementUrl` and place them in the `.env.template` file. The values belong in `APP_ID_IAM_APIKEY` and `APP_ID_MANAGEMENT_URL` respectively. + +![writer-credentials](images/writer-credentials.png) + + +Take note of the `clientId`, `secret`, `oAuthServerUrl` and place them in the `.env.template` file of this repo. The values belong in `APP_ID_CLIENT_ID`, `APP_ID_CLIENT_SECRET`, `APP_ID_TOKEN_URL` respectively. + +![add-application](images/add-application.png) + +* Rename `.env.template` file to `.env` file + +## Secrets from App ID + +Open the credentials screen to view the client IDs and keys needed for the back-end to interact with the App ID via its REST API endpoint. + +The service credentials have the following fields - some of these are used in the `bank-oidc-secret` as described below: +``` +{ + "apikey": "APIKEY", + "appidServiceEndpoint": "https://us-south.appid.cloud.ibm.com", + "clientId": "CLIENTID", + "discoveryEndpoint": "https://us-south.appid.cloud.ibm.com/oauth/v4/3d17f53d-4600-4f32-bb2c-207f4e2f6060/.well-known/openid-configuration", + "iam_apikey_description": "Auto-generated for key ", + "iam_apikey_name": "write-credentials-for-creating-users", + "iam_role_crn": "crn:v1:bluemix:public:iam::::serviceRole:Writer", + "iam_serviceid_crn": "CRN", + "managementUrl": "https://us-south.appid.cloud.ibm.com/management/v4/3d17f53d-4600-4f32-bb2c-207f4e2f6060", + "oauthServerUrl": "https://us-south.appid.cloud.ibm.com/oauth/v4/3d17f53d-4600-4f32-bb2c-207f4e2f6060", + "profilesUrl": "https://us-south.appid.cloud.ibm.com", + "secret": "SECRET_STRING", + "tenantId": "TENANTID_STRING", + "version": 4 +} +``` + +Map these fields into the secret as follows: + +OIDC_JWKENDPOINT: oathServerUrl/publickeys + +OIDC_ISSUERIDENTIFIER: oathServerUrl + +OIDC_AUDIENCES: client ID of the application - see above. + + +``` +kubectl create secret generic bank-oidc-secret --from-literal=OIDC_JWKENDPOINTURL=https://us-south.appid.cloud.ibm.com/oauth/v4/3d17f53d-4600-4f32-bb2c-207f4e2f6060/publickeys --from-literal=OIDC_ISSUERIDENTIFIER=https://us-south.appid.cloud.ibm.com/oauth/v4/3d17f53d-4600-4f32-bb2c-207f4e2f6060 --from-literal=OIDC_AUDIENCES= +``` + +## Database setup + +The data in the example bank app lives in a PostgreSQL database. + +#### Bank Database design + +The database schema allows us to manage user profiles and track their transactions. + +![screenshot](images/schema-1.png) + +In this pattern, the database is created in a database instance created inside the OpenShift cluster. See [operator tutorial](https://developer.ibm.com/tutorials/operator-hub-openshift-4-operators-ibm-cloud/) and database load as described below. Take note of these important elements of the database configuration: + +1. Database name +2. Username +3. Password + +These will be used to create a Kubernetes secret that's used by all the services in the cluster. + +## Loading the Database Schema + +To load the schema, we are going to use a `Job` Kubernetes resource. This allows a task to +be run to completion to perform a task. + +Follow instructions [here](https://developer.ibm.com/tutorials/operator-hub-openshift-4-operators-ibm-cloud/) to create a database in the +project where the back-end services are deployed. + +After deploying the PostgreSQL database, create a secret for your database credentials. + +``` +# kubectl create secret generic bank-db-secret --from-literal=DB_SERVERNAME= --from-literal=DB_PORTNUMBER= --from-literal=DB_DATABASENAME=example --from-literal=DB_USER= --from-literal=DB_PASSWORD= +secret/bank-db-secret created +``` + +> Default Port is `5432`. Default username and password is `postgres` + +Verify the new secret appears in your project: + +``` +oc get secrets +bank-db-secret Opaque 5 35s +``` + +Build and deploy the image to load the database. + +``` +oc apply -f data_model/job.yaml +``` + +You can verify the successful deployment this way: + +1. Find the Jobs run: + +``` +$ oc get jobs +NAME COMPLETIONS DURATION AGE +cc-schema-load 1/1 29s 15m + +$ oc get pods +NAME READY STATUS RESTARTS AGE +cc-schema-load-xcfrs 0/1 Completed 0 15m +``` + +2. Then, check the logs for the job. You will see the output of the +SQL schema loading steps from the job container. + +``` +$ oc logs cc-schema-load-xcfrs +CREATE EXTENSION +CREATE DATABASE +You are now connected to database "example" as user "postgres". +CREATE SCHEMA +SET +CREATE TABLE +CREATE TABLE +CREATE TABLE +``` + +## Manual deployment of services + +## Check out the code and build images. + +### User and Transaction services + +The user and transaction services manage registered users and transactions using Open Liberty and JPA to handle database operations. + +- Check out the code for all services. + +``` +git clone https://github.com/IBM/example-bank.git +cd bank-app-backend +``` + +1. Follow the instructions in the README.md file to build the microservices with Maven. +2. Build the images and push them to an image repository like Docker Hub that is accessible to OpenShift. + +**Note 1:** All images referred to in the deployment scripts are pre-built and in Docker hub. You can use the deployments as is without rebuilding the images. + +**Note 2:** *If you are using the IBM Container Registry (ICR) to store images, IBM OpenShift clusters are provisioned with a image pull secret for ICR images only in the default namespace/project. Deployments to other prjects from ICR will require imagePullSecrets to be created.* + +Modify the deployment.yaml image path to point to the image and deploy both services: + +``` +oc apply -f transaction-service/deployment.yaml -f user-service/deployment.yaml +``` + +Verify the services are running: + +``` +$ oc get services +NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE +transaction-service ClusterIP 172.21.215.251 9080/TCP 3d23h +user-service ClusterIP 172.21.64.7 9080/TCP 3d23h + +$ oc get pods +NAME READY STATUS RESTARTS AGE +transaction-service-55b9bfb4cd-jzkgq 1/1 Running 0 26s +user-service-55b99c5c44-dpd9k 1/1 Running 0 25s +... +``` + +### Mobile Simulator + +- Verify that the `.env` file is correctly set up as described above in the App ID section. This will be used by both the node image at runtime and in creating a Kubernetes secret: + +``` +$ cd .. # if you're not in the root directory of this repo yet +$ cat .env +APP_ID_IAM_APIKEY= +APP_ID_MANAGEMENT_URL=https://us-south.appid.cloud.ibm.com/management/v4/ +APP_ID_CLIENT_ID= +APP_ID_CLIENT_SECRET= +APP_ID_TOKEN_URL=https://us-south.appid.cloud.ibm.com/oauth/v4/ +PROXY_USER_MICROSERVICE=user-service:9080 +PROXY_TRANSACTION_MICROSERVICE=transaction-service:9080 +``` + +This uses the .env file to create a secret used by the node process at runtime to communicate with the transaction and user services. + +``` +kubectl create secret generic mobile-simulator-secrets --from-env-file=.env +``` +- Build the docker image and push to your image repository. + +``` +docker build -t . +docker push +``` + +- Modify the `deployment.yaml` image path to point to the image. + +``` +oc apply -f deployment.yaml +``` + + +### Process Transaction - Serverless Application (Knative Serving) + +This part requires the OpenShift Serverless installed in your OpenShift cluster. To install, you can follow through these instructions + +- [Installing the OpenShift Serverless Operator](https://access.redhat.com/documentation/en-us/openshift_container_platform/4.3/html/serverless_applications/installing-openshift-serverless-1#serverless-install-web-console_installing-openshift-serverless) +- [Installing Knative Serving](https://access.redhat.com/documentation/en-us/openshift_container_platform/4.3/html/serverless_applications/installing-openshift-serverless-1#installing-knative-serving) + +After installing Knative Serving, you can now proceed in deploying the serverless application. + +This example serverless application handles the awarding of points for every transaction made. The application is only ran whenever there are new transactions. + +- Build and push the image on your own repository +``` +docker build -t bank-knative-service +docker push +``` + +- Modify `bank-knative-service/deployment.yaml` file to use the image you just built + +``` +# spec: +# containers: +# - image: +``` + +- Create an admin scoped user + +A user with an admin scoped is required to access the API that rewards the transactions with points from the transactions microservice. Create one from the App ID dashboard + +| | | | +|:-------------------------:|:-------------------------:|:-------------------------:| +|sim1 1. Create a user |sim1 2. Click on `+` sign to add a role | sim2 3. Choose `admin` role | + + + - Create a secret for the username and password you just created + +``` +kubectl create secret generic bank-oidc-adminuser --from-literal=APP_ID_ADMIN_USER= --from-literal=APP_ID_ADMIN_PASSWORD= +``` + +- Deploy the knative service + +``` +oc apply -f bank-knative-service/deployment.yaml +``` + +- Check Knative Serving status and also make sure the URL matches the environment variable `KNATIVE_SERVICE_URL` defined in `bank-app-backend/transaction-service/deployment.yaml` + +``` +oc get kservice # or kn service list - if you have kn cli installed +# NAME URL LATEST AGE CONDITIONS READY REASON +# process-transaction http://process-transaction.example-bank.svc.cluster.local process-transaction-9chv6 34d 3 OK / 3 True +``` + +> The serverless application can be reached at `http://process-transaction.example-bank.svc.cluster.local` in the example above. If it doesn't match with the one you deployed in the step [User and transaction services](#user-and-transaction-services), fix the `KNATIVE_SERVICE_URL` value in the `bank-app-backend/transaction-service/deployment.yaml` file and redeploy it again with `oc apply` + +### Access the application + +Once deployed, you can list the routes. You should see at least one route - for the mobile simulator service, ending in `.cloud`: + +``` +$ oc get routes +NAME HOST/PORT PATH SERVICES PORT TERMINATION WILDCARD +mobile-simulator-service mobile-simulator-service-pattern.koyfman-feb10-f2c6cdc6801be85fd188b09d006f13e3-0000.us-south.containers.appdomain.cloud transaction-service None + +``` + +The URL of the mobile simulator is: `mobile-simulator-service-pattern.koyfman-feb10-f2c6cdc6801be85fd188b09d006f13e3-0000.us-south.containers.appdomain.cloud` + +### Erasure service + +The erasure service is a Kubernetes `CronJob` that runs daily to anonymize data for users who have made a deletion request. + +- Build and push image + +``` +cd bank-user-cleanup-utility + +mvn package +docker build -t /bank-user-cleanup-utility:1.0-SNAPSHOT . +docker push /bank-user-cleanup-utility:1.0-SNAPSHOT +``` + +- Update the image name in the `job.yaml` file to point at the image in the repository used above. + +- Create secrets for the erasure service. + +The erasure service requires three secrets to communicate with the PostgreSQL database and App ID. The `bank-db-secret` was defined previously, as it's used by the other services. The two secrets are: + +1. `bank-appid-secret`: This secret defines environment variables for connecting the App ID, and includes the following parameters: +``` +kubectl create secret generic bank-appid-secret --from-literal=APPID_TENANTID= --from-literal=APPID_SERVICE_URL=https://us-south.appid.cloud.ibm.com +``` + +2. `bank-iam-secret`: This secret uses the IAM key to allow the service to authenticate to AppId. +``` +kubectl create secret generic bank-iam-secret --from-literal=IAM_APIKEY= --from-literal=IAM_SERVICE_URL=https://iam.cloud.ibm.com/identity/token +``` + +Here are the steps to retrieve this token: + +Via UI console: + +On the top right menu bar, click Manage > Access (IAM). +Select IBM Cloud API Keys in the left menu bar. +Click the Create an IBM Cloud API Key button. +Provide a name and click the Create button. + +CLI method is documented here: https://cloud.ibm.com/docs/iam?topic=iam-userapikey#create_user_key + +2. Deploy job: + +``` +oc apply -f job.yaml +``` + +Note that the CronJob won't run immediately upon, since it's scheduled to run every 24 hours. + +To run it on-demand, create a `Job` resources from the `CronJob`: + +``` +oc create job --from=cronjob/bank-user-cleanup-utility delete-now +``` + +When you list `jobs` you will see the completed delete-now job, as well as completed database load job. If you check the logs of the delete job, you'll see which users have been processed by the job. + +``` +$ oc get jobs +NAME COMPLETIONS DURATION AGE +delete-now 1/1 33s 45h +cc-schema-load 1/1 6s 3d +``` + +## Data cleanup + +Data erasure is a two-phase operation, one synchronous and one scheduled. When an authenticated `DELETE` REST call is made for a given user, the unique ID that ties the database user entry to AppId is cleared from the local in-cluster Postgres instance. As this is the only way to connect the data the bank app to the real user identity (name, etc.), we've effectively anonymized the transactions data. The Java `User` service then flags the account as deleted, which can be useful for logging purposes. + +The erasure service operates as a Kubernetes `CronJob` that checks that the user has been deleted from our database, and also removes them from App ID, effectively unregistering the user. + +## LogDNA Integration + +Finally, we connect our service with LogDNA to aggregate messages from the internal services. + +Follow the instructions to deploy LogDNA to the OpenShift cluster here: https://cloud.ibm.com/observe/logging. + +Once deployed, your instance of LogDNA will be keeping track of any logs that are created within the application. + +![logdna](images/logdna.png) + +There can be a lot to sift through. Use one of the filters from the dropdown menus at the top of the screen to limit which logs you are viewing. For instance, you can only see logs dealing with App ID by selecting it from the **Apps** menu: + +![logdna_appid](images/logdna_appid_select.png) + +## License + +This code pattern is licensed under the Apache License, Version 2. Separate third-party code objects invoked within this code pattern are licensed by their respective providers pursuant to their own separate licenses. Contributions are subject to the [Developer Certificate of Origin, Version 1.1](https://developercertificate.org/) and the [Apache License, Version 2](https://www.apache.org/licenses/LICENSE-2.0.txt). + +[Apache License FAQ](https://www.apache.org/foundation/license-faq.html#WhatDoesItMEAN) + diff --git a/kubernetes/dev/tekton/examples/example-bank/_config.yml b/kubernetes/dev/tekton/examples/example-bank/_config.yml new file mode 100755 index 0000000..f350a47 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/_config.yml @@ -0,0 +1,3 @@ +markdown: kramdown +kramdown: + parse_block_html: true diff --git a/kubernetes/dev/tekton/examples/example-bank/app.js b/kubernetes/dev/tekton/examples/example-bank/app.js new file mode 100755 index 0000000..6d42c24 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/app.js @@ -0,0 +1,53 @@ +/*eslint-env node*/ + +//------------------------------------------------------------------------------ +// node.js starter application for Bluemix +//------------------------------------------------------------------------------ + +// This application uses express as its web server +// for more info, see: http://expressjs.com +var express = require('express'); + +// cfenv provides access to your Cloud Foundry environment +// for more info, see: https://www.npmjs.com/package/cfenv +var cfenv = require('cfenv'); + +// create a new express server +var app = express(); + +var port = process.env.PORT || 8060; + +let DEVMODE = process.env.DEVMODE + +if (DEVMODE) { + app.get('/javascript/clientHelpers/libertyclient.js', (req, res) => {res.sendFile('public/javascript/clientHelpers/libertyclient-devmode.js', {root: __dirname})}) + app.get('/javascript/clientHelpers/demoaccounts.js', (req, res) => {res.sendFile('public/javascript/clientHelpers/demoaccounts-devmode.js', {root: __dirname})}) +} +// serve the files out of ./public as our main files +app.use(express.static(__dirname + '/public')); + +// get the app environment from Cloud Foundry +var appEnv = cfenv.getAppEnv(); +var log4js = require('log4js'); +var logger = log4js.getLogger(); + +logger.level = 'debug'; +logger.debug("launching bank simulated UI"); + +app.use(require("body-parser").json()); +app.use(require("body-parser").urlencoded({extended: false})); +// use createUser route + +if (!DEVMODE) { + app.use('/demo', require('./routes/createUser')) + // proxy for testing locally + let proxy = require('express-http-proxy') + let USER_MICROSREVICE = process.env.PROXY_USER_MICROSERVICE + let TRANSACTION_MICROSERVICE = process.env.PROXY_TRANSACTION_MICROSERVICE + app.use('/proxy_user', proxy(USER_MICROSREVICE)) + app.use('/proxy_transaction', proxy(TRANSACTION_MICROSERVICE)) +} + +// start server on the specified port and binding host +app.listen(port); +logger.debug("Listening on port ", port); diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/.gitignore b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/.gitignore new file mode 100755 index 0000000..1374aa0 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/.gitignore @@ -0,0 +1,37 @@ +**/target +!.keep + + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +/build/ + +### VS Code ### +.vscode/ + + +## Local configuration files +/local/config/* + +*.swo +*.swp +*.~ diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/README.md b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/README.md new file mode 100755 index 0000000..f3867a3 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/README.md @@ -0,0 +1,115 @@ + +## Building individual microservices + +### User service + +``` +mvn -pl :user-service -am package +docker build -t user-service:1.0-SNAPSHOT user-service +``` + +### Transaction service +``` +mvn -pl :transaction-service -am package +docker build -t transaction-service:1.0-SNAPSHOT transaction-service +``` + + +## Configuration + +### Secrets + +``` +kubectl create secret generic bank-db-secret --from-literal=DB_SERVERNAME= --from-literal=DB_PORTNUMBER= --from-literal=DB_DATABASENAME=ibmclouddb --from-literal=DB_USER= --from-literal=DB_PASSWORD= +kubectl create secret generic bank-oidc-secret --from-literal=OIDC_JWKENDPOINTURL=/publickeys --from-literal=OIDC_ISSUERIDENTIFIER= --from-literal=OIDC_AUDIENCES= +``` + + +## Curl commands + +### Users + +``` +curl -X POST -H "Authorization: Bearer " -H "Content-Type: application/json" -d "{\"consentGiven\": \"true\"}" -k https://localhost:9443/bank/v1/users + +curl -X GET "Authorization: Bearer " -k https://localhost:9443/bank/v1/users/self + +curl -X PUT "Authorization: Bearer " -H "Content-Type: application/json" -d "{\"consentGiven\": \"false\"}" -k https://localhost:9443/bank/v1/users/self + +curl -X DELETE "Authorization: Bearer " -k https://localhost:9443/bank/v1/users/self +``` + + +### User Events + +``` +curl -X POST "Authorization: Bearer " -H "Content-Type: application/json" -d "{\"eventId\": \"871859e4-9fca-4bcf-adb5-e7d063d0747e\"}" -k https://localhost:9443/bank/v1/userEvents + +curl -X GET "Authorization: Bearer " -k https://localhost:9443/bank/v1/userEvents/self + +curl -X GET "Authorization: Bearer " -k https://localhost:9443/bank/v1/userEvents/self/info +``` + + +### Events + +``` +curl -X POST "Authorization: Bearer " -H "Content-Type: application/json" -d "{\"eventName\": \"Event name\", \"pointValue\": 100}" -k https://localhost:9444/bank/v1/events + +curl -X GET "Authorization: Bearer " -k https://localhost:9444/bank/v1/events/{eventId} + +curl -X PUT "Authorization: Bearer " -H "Content-Type: application/json" -d "{\"eventName\": \"Event name\", \"pointValue\": 100}" -k https://localhost:9444/bank/v1/events/{eventId} + +curl -X GET "Authorization: Bearer " -k https://localhost:9444/bank/v1/events + +curl -X GET "Authorization: Bearer " -k "https://localhost:9444/bank/v1/events?id=&id=&id=" + +``` + +## Running the integration tests + +### Set environment variables + +Base URL where users and events services are deployed +``` +export USERS_BASEURL=http://: +export EVENTS_BASEURL=http://: +``` + +Prefix for test user names and the password they should use. These users are created dynamically by the tests. +``` +export TEST_USER_PREFIX= +export TEST_PASSWORD= +``` + +Admin user name and password. This user name must exist in App Id prior to running the test and must have the admin role. +``` +export TEST_ADMIN_USER= +export TEST_ADMIN_PASSWORD= +``` + +App Id service URL. Change to correct URL for the region where your App Id instance is deployed. +``` +export APPID_SERVICE_URL=https://us-south.appid.cloud.ibm.com +``` + +App Id tenant id, client id, and client password (secret) +``` +export APPID_TENANTID= +export OIDC_CLIENTID= +export OIDC_CLIENTPASSWORD= +export OIDC_ISSUERIDENTIFIER=%APPID_SERVICE_URL%/%APPID_TENANTID% +``` + +IAM API key (needed for authentication to App Id) +``` +export IAM_APIKEY= +export IAM_SERVICE_URL=https://iam.cloud.ibm.com/identity/token +``` + + +### Run the tests + +``` +mvn -pl :integration-tests -am verify +``` \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/pom.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/pom.xml new file mode 100755 index 0000000..5f1930c --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/pom.xml @@ -0,0 +1,34 @@ + + + + 4.0.0 + + + com.ibm.codey.bank + parent + 1.0-SNAPSHOT + + + com.ibm.codey.bank + common + 1.0-SNAPSHOT + jar + + + + + io.openliberty.features + microProfile-3.0 + esa + + + + org.projectlombok + lombok + 1.18.16 + + + + \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/BaseResource.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/BaseResource.java new file mode 100755 index 0000000..a497b0c --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/BaseResource.java @@ -0,0 +1,26 @@ +package com.ibm.codey.bank; + +import javax.inject.Inject; + +import org.eclipse.microprofile.jwt.Claim; +import org.eclipse.microprofile.jwt.Claims; + +public class BaseResource { + + @Inject + @Claim("sub") + private String subject; + + @Inject + @Claim(standard = Claims.raw_token) + private String rawToken; + + protected String getCallerSubject() { + return subject; + } + + protected String getCallerCredentials() { + return "Bearer " + rawToken; + } + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/accounts/json/UserRegistration.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/accounts/json/UserRegistration.java new file mode 100755 index 0000000..d137711 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/accounts/json/UserRegistration.java @@ -0,0 +1,15 @@ +package com.ibm.codey.bank.accounts.json; + +import javax.json.bind.annotation.JsonbProperty; + +import lombok.Getter; +import lombok.Setter; +import lombok.ToString; + +@Getter @Setter @ToString +public class UserRegistration { + + @JsonbProperty + private boolean consentGiven; + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/accounts/json/UserRegistrationInfo.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/accounts/json/UserRegistrationInfo.java new file mode 100755 index 0000000..20a11d5 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/accounts/json/UserRegistrationInfo.java @@ -0,0 +1,18 @@ +package com.ibm.codey.bank.accounts.json; + +import javax.json.bind.annotation.JsonbProperty; + +import lombok.Getter; +import lombok.Setter; +import lombok.ToString; + +@Getter @Setter @ToString +public class UserRegistrationInfo { + + @JsonbProperty + private String userId; + + @JsonbProperty + private boolean consentGiven; + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/KnativeService.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/KnativeService.java new file mode 100755 index 0000000..943a3e9 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/KnativeService.java @@ -0,0 +1,23 @@ +package com.ibm.codey.bank.catalog; + +import java.util.List; +import java.util.Map; +import java.util.concurrent.CompletionStage; + +import javax.enterprise.context.Dependent; +import javax.ws.rs.HeaderParam; +import javax.ws.rs.POST; +import javax.ws.rs.Path; +import javax.ws.rs.QueryParam; + +import org.eclipse.microprofile.rest.client.inject.RegisterRestClient; + +@Dependent +@RegisterRestClient +public interface KnativeService { + + @POST + @Path("process") + public CompletionStage processTransaction(@QueryParam("transactionId") String transactionId, @QueryParam("category") String category, @QueryParam("amount") String amount); + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/UserService.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/UserService.java new file mode 100755 index 0000000..09578fc --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/UserService.java @@ -0,0 +1,30 @@ +package com.ibm.codey.bank.catalog; + +import java.util.List; +import java.util.Map; + +import javax.enterprise.context.Dependent; +import javax.ws.rs.GET; +import javax.ws.rs.HeaderParam; +import javax.ws.rs.PathParam; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.QueryParam; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; + +import org.eclipse.microprofile.rest.client.inject.RegisterRestClient; + +import com.ibm.codey.bank.accounts.json.UserRegistration; +import com.ibm.codey.bank.accounts.json.UserRegistrationInfo; + +@Dependent +@RegisterRestClient +public interface UserService { + + @GET + @Path("self") + @Produces(MediaType.APPLICATION_JSON) + public UserRegistrationInfo getUserConsent(@HeaderParam("Authorization") String authorizationHeader); + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/json/CreateTransactionDefinition.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/json/CreateTransactionDefinition.java new file mode 100755 index 0000000..0c5cfca --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/json/CreateTransactionDefinition.java @@ -0,0 +1,23 @@ +package com.ibm.codey.bank.catalog.json; + +import java.math.BigDecimal; + +import javax.json.bind.annotation.JsonbProperty; + +import lombok.Getter; +import lombok.Setter; +import lombok.ToString; + +@Getter @Setter @ToString +public class CreateTransactionDefinition { + + @JsonbProperty + private String transactionName; + + @JsonbProperty + private String category; + + @JsonbProperty + private BigDecimal amount; + +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/json/RewardTransactionDefinition.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/json/RewardTransactionDefinition.java new file mode 100755 index 0000000..4c7d669 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/catalog/json/RewardTransactionDefinition.java @@ -0,0 +1,17 @@ +package com.ibm.codey.bank.catalog.json; + +import java.math.BigDecimal; + +import javax.json.bind.annotation.JsonbProperty; + +import lombok.Getter; +import lombok.Setter; +import lombok.ToString; + +@Getter @Setter @ToString +public class RewardTransactionDefinition { + + @JsonbProperty + private BigDecimal pointsEarned; + +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/LoggingInterceptor.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/LoggingInterceptor.java new file mode 100755 index 0000000..3cfc5e1 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/LoggingInterceptor.java @@ -0,0 +1,66 @@ +package com.ibm.codey.bank.interceptor; + +import java.util.Arrays; +import java.util.logging.Level; +import java.util.logging.Logger; + +import javax.inject.Inject; +import javax.interceptor.AroundInvoke; +import javax.interceptor.InvocationContext; +import javax.json.Json; +import javax.json.JsonObjectBuilder; +import javax.ws.rs.core.Response; + +import org.eclipse.microprofile.jwt.Claim; + +/* + * This interceptor is used with the JAXRS resource classes to log any exception and return a 500 status code to the client. + * This could have been accomplished with an ExceptionMapper as well but an interceptor lets us also log information about + * the failing method and input parameters. + */ +public class LoggingInterceptor { + + private static final Logger log = Logger.getLogger(LoggingInterceptor.class.getName()); + + @Inject + @Claim("sub") + private String subject; + + @AroundInvoke + public Object logInvocation(InvocationContext ctx) { + try { + Object result = ctx.proceed(); + logRequestAndResult(ctx, result); + return result; + } catch(Throwable e) { + String clz = ctx.getMethod().getDeclaringClass().getName(); + String method = ctx.getMethod().getName(); + Object[] params = ctx.getParameters(); + if (params != null && params.length > 0) { + log.log(Level.SEVERE, "***** Exception in " + clz + "." + method, params); + } else { + log.log(Level.SEVERE, "***** Exception in " + clz + "." + method); + } + e.printStackTrace(); + return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build(); + } + } + + private void logRequestAndResult(InvocationContext ctx, Object result) { + String methodName = ctx.getMethod().getName(); + Object[] params = ctx.getParameters(); + JsonObjectBuilder requestBuilder = Json.createObjectBuilder() + .add("subject", subject) + .add("action", methodName); + if (params != null && params.length > 0) { + requestBuilder.add("input", Arrays.toString(params)); + } + if (result instanceof Response) { + Response response = (Response)result; + requestBuilder.add("statuscode", response.getStatus()); + } + log.log(Level.INFO, "API REQUEST", requestBuilder.build()); + } + + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/SecurityInterceptor.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/SecurityInterceptor.java new file mode 100755 index 0000000..9f76e17 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/SecurityInterceptor.java @@ -0,0 +1,38 @@ +package com.ibm.codey.bank.interceptor; + +import javax.annotation.Priority; +import javax.inject.Inject; +import javax.interceptor.AroundInvoke; +import javax.interceptor.Interceptor; +import javax.interceptor.InvocationContext; +import javax.ws.rs.core.Response; + +import org.eclipse.microprofile.jwt.Claim; + +import com.ibm.codey.bank.interceptor.binding.RequiresAuthorization; + +/* + * This interceptor is used with the JAXRS resource classes to enforce a client scope for authorization purposes. + */ +@RequiresAuthorization @Interceptor +@Priority(Interceptor.Priority.APPLICATION) +public class SecurityInterceptor { + + @Inject + @Claim("scope") + private String scope; + + @AroundInvoke + public Object checkScope(InvocationContext ctx) throws Exception { + String[] scopeList = scope.split(" "); + for(String hasScope : scopeList) { + if (hasScope.equals("admin")) { + Object result = ctx.proceed(); + return result; + } + } + return Response.status(Response.Status.FORBIDDEN).entity("admin permission required").build(); + } + + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/binding/RequiresAuthorization.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/binding/RequiresAuthorization.java new file mode 100755 index 0000000..65863e3 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/common/src/main/java/com/ibm/codey/bank/interceptor/binding/RequiresAuthorization.java @@ -0,0 +1,18 @@ +package com.ibm.codey.bank.interceptor.binding; + +import static java.lang.annotation.ElementType.METHOD; +import static java.lang.annotation.ElementType.TYPE; +import static java.lang.annotation.RetentionPolicy.RUNTIME; + +import java.lang.annotation.Inherited; +import java.lang.annotation.Retention; +import java.lang.annotation.Target; + +import javax.interceptor.InterceptorBinding; + +@Inherited +@InterceptorBinding +@Target({TYPE, METHOD}) +@Retention(RUNTIME) +public @interface RequiresAuthorization { +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/pom.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/pom.xml new file mode 100755 index 0000000..a711109 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/pom.xml @@ -0,0 +1,43 @@ + + + + 4.0.0 + + + com.ibm.codey.bank + parent + 1.0-SNAPSHOT + + + com.ibm.codey.bank + integration-tests + 1.0-SNAPSHOT + jar + + + + com.ibm.codey.bank + common + 1.0-SNAPSHOT + jar + + + org.apache.commons + commons-lang3 + 3.9 + + + + + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + + diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/EndpointTestBase.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/EndpointTestBase.java new file mode 100755 index 0000000..3a07f8d --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/EndpointTestBase.java @@ -0,0 +1,175 @@ +package it.com.ibm.codey.loyalty; + +import java.lang.reflect.Type; +import java.util.Map; + +import javax.json.bind.Jsonb; +import javax.json.bind.JsonbBuilder; +import javax.ws.rs.client.Client; +import javax.ws.rs.client.ClientBuilder; +import javax.ws.rs.client.Entity; +import javax.ws.rs.client.WebTarget; +import javax.ws.rs.core.HttpHeaders; +import javax.ws.rs.core.MultivaluedHashMap; +import javax.ws.rs.core.Response; + +import static org.junit.Assert.fail; + +import com.ibm.codey.loyalty.accounts.json.UserRegistration; + +import it.com.ibm.codey.loyalty.util.TestSecurityHelper; + +public class EndpointTestBase { + + protected static String USERS_BASEURL; + protected static String EVENTS_BASEURL; + + protected static String TEST_USER_PREFIX; + protected static String TEST_USER; + protected static String TEST_PASSWORD; + protected static String userAccessToken; + + protected static String TEST_ADMIN_USER; + protected static String TEST_ADMIN_PASSWORD; + protected static String adminAccessToken; + + protected static final String USERS_ENDPOINT = "/loyalty/v1/users"; + protected static final String USERS_SELF_ENDPOINT = "/loyalty/v1/users/self"; + protected static final String USER_EVENTS_ENDPOINT = "/loyalty/v1/userEvents"; + protected static final String USER_EVENTS_SELF_ENDPOINT = "/loyalty/v1/userEvents/self"; + protected static final String USER_EVENTS_SELF_INFO_ENDPOINT = "/loyalty/v1/userEvents/self/info"; + protected static final String EVENTS_ENDPOINT = "/loyalty/v1/events"; + + protected static boolean CONSENT_GIVEN = true; + protected static boolean CONSENT_NOT_GIVEN = false; + + static { + USERS_BASEURL = System.getenv("USERS_BASEURL"); + EVENTS_BASEURL = System.getenv("EVENTS_BASEURL"); + TEST_USER_PREFIX = System.getenv("TEST_USER_PREFIX"); + TEST_PASSWORD = System.getenv("TEST_PASSWORD"); + TEST_ADMIN_USER = System.getenv("TEST_ADMIN_USER"); + TEST_ADMIN_PASSWORD = System.getenv("TEST_ADMIN_PASSWORD"); + } + + private Client client; + + protected void setup() { + client = ClientBuilder.newClient(); + TEST_USER = TEST_USER_PREFIX + (int) ((Math.random() * 999999) + 1); + } + + protected void teardown() { + client.close(); + } + + protected T get(String baseUrl, String endpoint, Map queryParams, String accessToken, Response.Status expectedStatusCode, Type returnType) { + String url = baseUrl + endpoint; + WebTarget target = client.target(url); + if (queryParams != null) { + for (String key: queryParams.keySet()) { + target = target.queryParam(key, queryParams.get(key)); + } + } + MultivaluedHashMap headers = new MultivaluedHashMap(); + if (accessToken != null) { + String authHeader = "Bearer " + accessToken; + headers.putSingle(HttpHeaders.AUTHORIZATION, authHeader); + } + try (Response response = target.request().headers(headers).get()) { + checkStatusCode(url, response, expectedStatusCode); + if (returnType == Void.class) { + return null; + } + String jsonString = response.readEntity(String.class); + if (returnType.equals(String.class)) { + return (T)jsonString; + } + Jsonb jsonb = JsonbBuilder.create(); + return jsonb.fromJson(jsonString, returnType); + } + } + + protected T put(String baseUrl, String endpoint, Object body, String accessToken, Response.Status expectedStatusCode, Class returnType) { + String url = baseUrl + endpoint; + Jsonb jsonb = JsonbBuilder.create(); + String jsonBody = jsonb.toJson(body); + MultivaluedHashMap headers = new MultivaluedHashMap(); + if (accessToken != null) { + String authHeader = "Bearer " + accessToken; + headers.putSingle(HttpHeaders.AUTHORIZATION, authHeader); + } + try (Response response = client.target(url).request().headers(headers).buildPut(Entity.json(jsonBody)).invoke()) { + checkStatusCode(url, response, expectedStatusCode); + if (returnType == Void.class) { + return null; + } + String jsonString = response.readEntity(String.class); + if (returnType.equals(String.class)) { + return (T)jsonString; + } + return jsonb.fromJson(jsonString, returnType); + } + } + + protected T post(String baseUrl, String endpoint, Object body, String accessToken, Response.Status expectedStatusCode, Class returnType) { + String url = baseUrl + endpoint; + Jsonb jsonb = JsonbBuilder.create(); + String jsonBody = jsonb.toJson(body); + MultivaluedHashMap headers = new MultivaluedHashMap(); + if (accessToken != null) { + String authHeader = "Bearer " + accessToken; + headers.putSingle(HttpHeaders.AUTHORIZATION, authHeader); + } + try (Response response = client.target(url).request().headers(headers).buildPost(Entity.json(jsonBody)).invoke()) { + checkStatusCode(url, response, expectedStatusCode); + if (returnType == Void.class) { + return null; + } + String jsonString = response.readEntity(String.class); + if (returnType.equals(String.class)) { + return (T)jsonString; + } + return jsonb.fromJson(jsonString, returnType); + } + } + + protected void delete(String baseUrl, String endpoint, String accessToken, Response.Status expectedStatusCode) { + String url = baseUrl + endpoint; + MultivaluedHashMap headers = new MultivaluedHashMap(); + if (accessToken != null) { + String authHeader = "Bearer " + accessToken; + headers.putSingle(HttpHeaders.AUTHORIZATION, authHeader); + } + try (Response response = client.target(url).request().headers(headers).buildDelete().invoke()) { + checkStatusCode(url, response, expectedStatusCode); + } + } + + protected void setupUser() { + // Create a user in the user registry. + TestSecurityHelper.createUser(TEST_USER, TEST_PASSWORD); + + // Log the user in and obtain an access token for invoking the API. + userAccessToken = TestSecurityHelper.signOn(TEST_USER, TEST_PASSWORD); + + // Create user registration + UserRegistration userRegistration = new UserRegistration(); + userRegistration.setConsentGiven(CONSENT_GIVEN); + post(USERS_BASEURL, USERS_ENDPOINT, userRegistration, userAccessToken, Response.Status.NO_CONTENT, Void.class); + } + + protected void removeUser() { + // Use DELETE to remove user registration. + delete(USERS_BASEURL, USERS_SELF_ENDPOINT, userAccessToken, Response.Status.NO_CONTENT); + } + + private void checkStatusCode(String url, Response response, Response.Status expectedStatusCode) { + if (expectedStatusCode.getStatusCode() != response.getStatus()) { + fail("Unexpected response code " + response.getStatus() + + " (expected " + expectedStatusCode.getStatusCode() + + ") from " + url + " Response=" + response.readEntity(String.class)); + } + } + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/accounts/UserEndpointTest.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/accounts/UserEndpointTest.java new file mode 100755 index 0000000..393abb6 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/accounts/UserEndpointTest.java @@ -0,0 +1,66 @@ +package it.com.ibm.codey.loyalty.accounts; + +import javax.ws.rs.core.Response; + +import static org.junit.Assert.assertEquals; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import com.ibm.codey.loyalty.accounts.json.UserRegistration; + +import it.com.ibm.codey.loyalty.EndpointTestBase; +import it.com.ibm.codey.loyalty.util.TestSecurityHelper; + +public class UserEndpointTest extends EndpointTestBase { + + @Before + public void setup() { + super.setup(); + } + + @After + public void teardown() { + super.teardown(); + } + + @Test + public void testUserRegistrationAndDeletion() { + try { + setupUser(); + // Use GET to get the user registration. + UserRegistration checkUserRegistration = get(USERS_BASEURL, USERS_SELF_ENDPOINT, null, userAccessToken, Response.Status.OK, UserRegistration.class); + assertEquals("Consent flag is incorrect", CONSENT_GIVEN, checkUserRegistration.isConsentGiven()); + } finally { + removeUser(); + } + } + + @Test + public void testUserRegistrationModificationAndDeletion() { + try { + setupUser(); + // Use PUT to change the user registration. + UserRegistration userRegistration = new UserRegistration(); + userRegistration.setConsentGiven(CONSENT_NOT_GIVEN); + put(USERS_BASEURL, USERS_SELF_ENDPOINT, userRegistration, userAccessToken, Response.Status.NO_CONTENT, Void.class); + // Use GET to get the user registration. + UserRegistration checkUserRegistration = get(USERS_BASEURL, USERS_SELF_ENDPOINT, null, userAccessToken, Response.Status.OK, UserRegistration.class); + assertEquals("Consent flag is incorrect", CONSENT_NOT_GIVEN, checkUserRegistration.isConsentGiven()); + } finally { + removeUser(); + } + } + + @Test + public void testAuthenticationFailure() { + // Make calls without an authentication header and verify they are rejected. + UserRegistration userRegistration = new UserRegistration(); + userRegistration.setConsentGiven(CONSENT_GIVEN); + post(USERS_BASEURL, USERS_ENDPOINT, userRegistration, null, Response.Status.UNAUTHORIZED, Void.class); + get(USERS_BASEURL, USERS_SELF_ENDPOINT, null, null, Response.Status.UNAUTHORIZED, Void.class); + put(USERS_BASEURL, USERS_SELF_ENDPOINT, userRegistration, null, Response.Status.UNAUTHORIZED, Void.class); + delete(USERS_BASEURL, USERS_SELF_ENDPOINT, null, Response.Status.UNAUTHORIZED); + } + +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/accounts/UserEventsEndpointTest.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/accounts/UserEventsEndpointTest.java new file mode 100755 index 0000000..84f3e1d --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/accounts/UserEventsEndpointTest.java @@ -0,0 +1,177 @@ +package it.com.ibm.codey.loyalty.accounts; + +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; +import javax.ws.rs.core.Response; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import com.ibm.codey.loyalty.accounts.json.UserEventCheckIn; +import com.ibm.codey.loyalty.accounts.json.UserEventInfo; +import com.ibm.codey.loyalty.accounts.json.UserRegistration; +import com.ibm.codey.loyalty.catalog.json.EventDefinition; + +import it.com.ibm.codey.loyalty.EndpointTestBase; +import it.com.ibm.codey.loyalty.util.TestSecurityHelper; + +public class UserEventsEndpointTest extends EndpointTestBase { + + private static String normalPointsEventId, doublePointsEventId; + + private static final int NORMAL_POINTS = 10; + private static final int DOUBLE_POINTS = NORMAL_POINTS*2; + + private static final String NORMAL_POINTS_EVENT_NAME = "test event normal points"; + private static final String DOUBLE_POINTS_EVENT_NAME = "test event double points"; + + private static boolean eventsCreated = false; + + @Before + public void setup() { + super.setup(); + // Create events. These are reused for all tests. + // This isn't done in a BeforeClass method because it depends on the non-static post() method in the superclass. + if (!eventsCreated) { + adminAccessToken = TestSecurityHelper.signOn(TEST_ADMIN_USER, TEST_ADMIN_PASSWORD); + normalPointsEventId = createEvent(NORMAL_POINTS_EVENT_NAME, NORMAL_POINTS); + doublePointsEventId = createEvent(DOUBLE_POINTS_EVENT_NAME, DOUBLE_POINTS); + eventsCreated = true; + } + } + + @After + public void teardown() { + super.teardown(); + } + + @Test + public void testEventCheckin() { + try { + setupUser(); + + // Verify no events attended or points earned yet + UserEventInfo userEventInfo = get(USERS_BASEURL, USER_EVENTS_SELF_INFO_ENDPOINT, null, userAccessToken, Response.Status.OK, UserEventInfo.class); + assertEquals("initial event count is incorrect", 0, userEventInfo.getEventCount()); + assertEquals("initial points earned is incorrect", 0, userEventInfo.getPointsEarned()); + + // Check in to first event + UserEventCheckIn checkIn1 = new UserEventCheckIn(); + checkIn1.setEventId(normalPointsEventId); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn1, userAccessToken, Response.Status.NO_CONTENT, Void.class); + + // Verify check in to first event + String[] eventIds = get(USERS_BASEURL, USER_EVENTS_SELF_ENDPOINT, null, userAccessToken, Response.Status.OK, String[].class); + assertEquals("GET returned incorrect number of events checked in", 1, eventIds.length); + assertEquals("Event id is incorrect", normalPointsEventId, eventIds[0]); + + // Verify points earned + UserEventInfo userEventInfo2 = get(USERS_BASEURL, USER_EVENTS_SELF_INFO_ENDPOINT, null, userAccessToken, Response.Status.OK, UserEventInfo.class); + assertEquals("event count is incorrect", 1, userEventInfo2.getEventCount()); + assertEquals("points earned is incorrect", NORMAL_POINTS, userEventInfo2.getPointsEarned()); + + // Check in to second event + UserEventCheckIn checkIn2 = new UserEventCheckIn(); + checkIn2.setEventId(doublePointsEventId); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn2, userAccessToken, Response.Status.NO_CONTENT, Void.class); + + // Verify check in to both events + String[] eventIds2 = get(USERS_BASEURL, USER_EVENTS_SELF_ENDPOINT, null, userAccessToken, Response.Status.OK, String[].class); + assertEquals("GET returned incorrect number of events checked in", 2, eventIds2.length); + if (eventIds2[0].equals(normalPointsEventId)) { + assertEquals("Event id [1] is incorrect", doublePointsEventId, eventIds2[1]); + } else { + assertEquals("Event id [0] is incorrect", doublePointsEventId, eventIds2[0]); + assertEquals("Event id [1] is incorrect", normalPointsEventId, eventIds2[1]); + } + + // Verify points earned + UserEventInfo userEventInfo3 = get(USERS_BASEURL, USER_EVENTS_SELF_INFO_ENDPOINT, null, userAccessToken, Response.Status.OK, UserEventInfo.class); + assertEquals("event count is incorrect", 2, userEventInfo3.getEventCount()); + assertEquals("points earned is incorrect", NORMAL_POINTS+DOUBLE_POINTS, userEventInfo3.getPointsEarned()); + } finally { + removeUser(); + } + } + + @Test + public void testDuplicateEventCheckin() { + try { + setupUser(); + // Check in to first event + UserEventCheckIn checkIn1 = new UserEventCheckIn(); + checkIn1.setEventId(normalPointsEventId); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn1, userAccessToken, Response.Status.NO_CONTENT, Void.class); + // Check in to first event again + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn1, userAccessToken, Response.Status.BAD_REQUEST, Void.class); + } finally { + removeUser(); + } + } + + @Test + public void testWithNonConsentedUser() { + try { + setupUser(); + // Use PUT to change user registration to withdraw consent + UserRegistration userRegistration = new UserRegistration(); + userRegistration.setConsentGiven(CONSENT_NOT_GIVEN); + put(USERS_BASEURL, USERS_SELF_ENDPOINT, userRegistration, userAccessToken, Response.Status.NO_CONTENT, Void.class); + // Try to check into an event or get information + UserEventCheckIn checkIn1 = new UserEventCheckIn(); + checkIn1.setEventId(normalPointsEventId); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn1, userAccessToken, Response.Status.CONFLICT, Void.class); + get(USERS_BASEURL, USER_EVENTS_SELF_ENDPOINT, null, userAccessToken, Response.Status.CONFLICT, Void.class); + get(USERS_BASEURL, USER_EVENTS_SELF_INFO_ENDPOINT, null, userAccessToken, Response.Status.CONFLICT, Void.class); + } finally { + removeUser(); + } + } + + @Test + public void testWithUnregisteredUser() { + setupUser(); + removeUser(); + // Try to check into an event or get information + UserEventCheckIn checkIn1 = new UserEventCheckIn(); + checkIn1.setEventId(normalPointsEventId); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn1, userAccessToken, Response.Status.BAD_REQUEST, Void.class); + get(USERS_BASEURL, USER_EVENTS_SELF_ENDPOINT, null, userAccessToken, Response.Status.BAD_REQUEST, Void.class); + get(USERS_BASEURL, USER_EVENTS_SELF_INFO_ENDPOINT, null, userAccessToken, Response.Status.BAD_REQUEST, Void.class); + } + + @Test + public void testAuthenticationFailure() { + // Make calls without an authentication header + UserEventCheckIn checkIn1 = new UserEventCheckIn(); + checkIn1.setEventId(normalPointsEventId); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn1, null, Response.Status.UNAUTHORIZED, Void.class); + get(USERS_BASEURL, USER_EVENTS_SELF_ENDPOINT, null, null, Response.Status.UNAUTHORIZED, Void.class); + get(USERS_BASEURL, USER_EVENTS_SELF_INFO_ENDPOINT, null, null, Response.Status.UNAUTHORIZED, Void.class); + } + + @Test + public void testBadEventId() { + String badEventId1 = "1"; + String badEventId2 = "/deadbeef-0000-0000-0000-badbadbadbad"; + UserEventCheckIn checkIn1 = new UserEventCheckIn(); + checkIn1.setEventId(badEventId1); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn1, userAccessToken, Response.Status.BAD_REQUEST, Void.class); + UserEventCheckIn checkIn2 = new UserEventCheckIn(); + checkIn2.setEventId(badEventId2); + post(USERS_BASEURL, USER_EVENTS_ENDPOINT, checkIn2, userAccessToken, Response.Status.BAD_REQUEST, Void.class); + } + + private String createEvent(String eventName, int pointValue) { + EventDefinition eventDefinition = new EventDefinition(); + eventDefinition.setEventName(eventName); + eventDefinition.setPointValue(pointValue); + String eventId = post(EVENTS_BASEURL, EVENTS_ENDPOINT, eventDefinition, adminAccessToken, Response.Status.CREATED, String.class); + return eventId; + } + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/catalog/EventsEndpointTest.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/catalog/EventsEndpointTest.java new file mode 100755 index 0000000..87fa202 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/catalog/EventsEndpointTest.java @@ -0,0 +1,175 @@ +package it.com.ibm.codey.loyalty.catalog; + +import java.time.OffsetDateTime; +import java.util.Collections; +import java.util.Map; +import java.util.HashMap; + +import javax.ws.rs.core.GenericType; +import javax.ws.rs.core.Response; + +import org.apache.commons.lang3.RandomStringUtils; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import com.ibm.codey.loyalty.catalog.json.EventDefinition; + +import it.com.ibm.codey.loyalty.EndpointTestBase; +import it.com.ibm.codey.loyalty.util.TestSecurityHelper; + +public class EventsEndpointTest extends EndpointTestBase { + + private String eventName; + private int pointValue; + private String eventDescription; + private String eventLocation; + private OffsetDateTime startTime; + private OffsetDateTime endTime; + + @Before + public void setup() { + super.setup(); + // Set up a normal user to test methods which don't require admin. + setupUser(); + // Set up an admin user. + adminAccessToken = TestSecurityHelper.signOn(TEST_ADMIN_USER, TEST_ADMIN_PASSWORD); + // Set up event attributes. + String suffix = RandomStringUtils.randomAlphabetic(8); + eventName = "test event " + suffix; + eventDescription = "all about " + suffix; + eventLocation = "at " + suffix; + startTime = OffsetDateTime.now(); + endTime = OffsetDateTime.now().plusHours(1); + pointValue = (int) ((Math.random() * 99) + 1); + } + + @After + public void teardown() { + removeUser(); + super.teardown(); + } + + @Test + public void testCreateEvent() { + // Use POST to create an event. + EventDefinition eventDefinition = new EventDefinition(); + eventDefinition.setEventName(eventName); + eventDefinition.setPointValue(pointValue); + eventDefinition.setEventDescription(eventDescription); + eventDefinition.setEventLocation(eventLocation); + eventDefinition.setStartTime(startTime); + eventDefinition.setEndTime(endTime); + String eventId = post(EVENTS_BASEURL, EVENTS_ENDPOINT, eventDefinition, adminAccessToken, Response.Status.CREATED, String.class); + // Use GET to get the event. This method does not require admin. + EventDefinition checkEventDefinition = get(EVENTS_BASEURL, EVENTS_ENDPOINT + '/' + eventId, null, userAccessToken, Response.Status.OK, EventDefinition.class); + assertEquals("Event name is incorrect", eventName, checkEventDefinition.getEventName()); + assertEquals("Point value is incorrect", pointValue, checkEventDefinition.getPointValue()); + assertEquals("Event description is incorrect", eventDescription, checkEventDefinition.getEventDescription()); + assertEquals("Event location is incorrect", eventLocation, checkEventDefinition.getEventLocation()); + assertEquals("Event start time is incorrect", startTime.toInstant(), checkEventDefinition.getStartTime().toInstant()); // Use toInstant to normalize timezones + assertEquals("Event end time is incorrect", endTime.toInstant(), checkEventDefinition.getEndTime().toInstant()); + } + + @Test + public void testGetAllEvents() { + // Use POST to create an event. An admin user must do this. + EventDefinition eventDefinition = new EventDefinition(); + eventDefinition.setEventName(eventName); + eventDefinition.setPointValue(pointValue); + eventDefinition.setEventDescription(eventDescription); + eventDefinition.setEventLocation(eventLocation); + eventDefinition.setStartTime(startTime); + eventDefinition.setEndTime(endTime); + String eventId = post(EVENTS_BASEURL, EVENTS_ENDPOINT, eventDefinition, adminAccessToken, Response.Status.CREATED, String.class); + // Use GET to get all events. This method does not require admin. + GenericType> eventDefinitionMapType = new GenericType>() {}; + Map eventDefinitionsMap = get(EVENTS_BASEURL, EVENTS_ENDPOINT, null, userAccessToken, Response.Status.OK, eventDefinitionMapType.getType()); + assertNotNull("GET did not return any events", eventDefinitionsMap); + EventDefinition checkEventDefinition = eventDefinitionsMap.get(eventId); + assertNotNull("GET did not return the event that was just created", checkEventDefinition); + assertEquals("Event name is incorrect", eventName, checkEventDefinition.getEventName()); + assertEquals("Point value is incorrect", pointValue, checkEventDefinition.getPointValue()); + assertEquals("Event description is incorrect", eventDescription, checkEventDefinition.getEventDescription()); + assertEquals("Event location is incorrect", eventLocation, checkEventDefinition.getEventLocation()); + assertEquals("Event start time is incorrect", startTime.toInstant(), checkEventDefinition.getStartTime().toInstant()); // Use toInstant to normalize timezones + assertEquals("Event end time is incorrect", endTime.toInstant(), checkEventDefinition.getEndTime().toInstant()); + } + + @Test + public void testSearchEvent() { + // Use POST to create an event. An admin user must do this. + EventDefinition eventDefinition = new EventDefinition(); + eventDefinition.setEventName(eventName); + eventDefinition.setPointValue(pointValue); + eventDefinition.setEventDescription(eventDescription); + eventDefinition.setEventLocation(eventLocation); + eventDefinition.setStartTime(startTime); + eventDefinition.setEndTime(endTime); + String eventId = post(EVENTS_BASEURL, EVENTS_ENDPOINT, eventDefinition, adminAccessToken, Response.Status.CREATED, String.class); + // Use GET to search for this event. This method does not require admin. + Map queryParams = Collections.singletonMap("id", eventId); + GenericType> eventDefinitionMapType = new GenericType>() {}; + Map eventDefinitionsMap = get(EVENTS_BASEURL, EVENTS_ENDPOINT, queryParams, userAccessToken, Response.Status.OK, eventDefinitionMapType.getType()); + assertNotNull("GET did not return any events", eventDefinitionsMap); + EventDefinition checkEventDefinition = eventDefinitionsMap.get(eventId); + assertNotNull("GET did not return the event that was just created", checkEventDefinition); + assertEquals("Event name is incorrect", eventName, checkEventDefinition.getEventName()); + assertEquals("Point value is incorrect", pointValue, checkEventDefinition.getPointValue()); + assertEquals("Event description is incorrect", eventDescription, checkEventDefinition.getEventDescription()); + assertEquals("Event location is incorrect", eventLocation, checkEventDefinition.getEventLocation()); + assertEquals("Event start time is incorrect", startTime.toInstant(), checkEventDefinition.getStartTime().toInstant()); // Use toInstant to normalize timezones + assertEquals("Event end time is incorrect", endTime.toInstant(), checkEventDefinition.getEndTime().toInstant()); + } + + @Test + public void testCreateAndUpdateEvent() { + // Use POST to create an event. An admin user must do this. + EventDefinition eventDefinition = new EventDefinition(); + eventDefinition.setEventName(eventName); + eventDefinition.setPointValue(pointValue); + eventDefinition.setEventDescription(eventDescription); + eventDefinition.setEventLocation(eventLocation); + eventDefinition.setStartTime(startTime); + eventDefinition.setEndTime(endTime); + String eventId = post(EVENTS_BASEURL, EVENTS_ENDPOINT, eventDefinition, adminAccessToken, Response.Status.CREATED, String.class); + // Use PUT to modify the event. An admin user must do this. + eventDefinition.setEventName(eventName + eventName); + eventDefinition.setPointValue(pointValue*2); + put(EVENTS_BASEURL, EVENTS_ENDPOINT + '/' + eventId, eventDefinition, adminAccessToken, Response.Status.NO_CONTENT, Void.class); + // Use GET to get the event. This method does not require admin. + EventDefinition checkEventDefinition = get(EVENTS_BASEURL, EVENTS_ENDPOINT + '/' + eventId, null, userAccessToken, Response.Status.OK, EventDefinition.class); + assertEquals("Event name is incorrect", eventDefinition.getEventName(), checkEventDefinition.getEventName()); + assertEquals("Point value is incorrect", eventDefinition.getPointValue(), checkEventDefinition.getPointValue()); + assertEquals("Event description is incorrect", eventDescription, checkEventDefinition.getEventDescription()); + assertEquals("Event location is incorrect", eventLocation, checkEventDefinition.getEventLocation()); + assertEquals("Event start time is incorrect", startTime.toInstant(), checkEventDefinition.getStartTime().toInstant()); // Use toInstant to normalize timezones + assertEquals("Event end time is incorrect", endTime.toInstant(), checkEventDefinition.getEndTime().toInstant()); + } + + @Test + public void testAuthenticationFailure() { + // Make calls without an authentication header. + EventDefinition eventDefinition = new EventDefinition(); + eventDefinition.setEventName(eventName); + eventDefinition.setPointValue(pointValue); + post(EVENTS_BASEURL, EVENTS_ENDPOINT, eventDefinition, null, Response.Status.UNAUTHORIZED, Void.class); + put(EVENTS_BASEURL, EVENTS_ENDPOINT + "/deadbeef-0000-0000-0000-badbadbadbad", eventDefinition, null, Response.Status.UNAUTHORIZED, Void.class); + get(EVENTS_BASEURL, EVENTS_ENDPOINT, null, null, Response.Status.UNAUTHORIZED, Void.class); + get(EVENTS_BASEURL, EVENTS_ENDPOINT + "/deadbeef-0000-0000-0000-badbadbadbad", null, null, Response.Status.UNAUTHORIZED, Void.class); + } + + @Test + public void testAuthorizationFailure() { + // Normal users do not have access to POST or PUT. + EventDefinition eventDefinition = new EventDefinition(); + eventDefinition.setEventName(eventName); + eventDefinition.setPointValue(pointValue); + post(EVENTS_BASEURL, EVENTS_ENDPOINT, eventDefinition, userAccessToken, Response.Status.FORBIDDEN, Void.class); + put(EVENTS_BASEURL, EVENTS_ENDPOINT + "/deadbeef-0000-0000-0000-badbadbadbad", eventDefinition, userAccessToken, Response.Status.FORBIDDEN, Void.class); + } + +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/util/TestSecurityHelper.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/util/TestSecurityHelper.java new file mode 100755 index 0000000..5a12723 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/integration-tests/src/test/java/it/com/ibm/codey/loyalty/util/TestSecurityHelper.java @@ -0,0 +1,104 @@ +package it.com.ibm.codey.loyalty.util; + +import java.net.URL; +import java.nio.charset.StandardCharsets; +import java.util.Base64; + +import javax.json.Json; +import javax.json.JsonObject; +import javax.ws.rs.client.Client; +import javax.ws.rs.client.ClientBuilder; +import javax.ws.rs.client.Entity; +import javax.ws.rs.core.Form; +import javax.ws.rs.core.HttpHeaders; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; + +import org.apache.cxf.jaxrs.provider.jsrjsonp.JsrJsonpProvider; + +public class TestSecurityHelper { + + private static String APPID_SERVICE_URL; + + private static String APPID_TENANTID; + + private static String IAM_APIKEY; + + private static String IAM_SERVICE_URL; + + private static String OIDC_ISSUERIDENTIFIER; + + private static String OIDC_CLIENTID; + + private static String OIDC_CLIENTPASSWORD; + + private static String iamAuthHeader; + + private static String oidcAuthHeader; + + static { + APPID_SERVICE_URL = System.getenv("APPID_SERVICE_URL"); + APPID_TENANTID = System.getenv("APPID_TENANTID"); + IAM_APIKEY = System.getenv("IAM_APIKEY"); + IAM_SERVICE_URL = System.getenv("IAM_SERVICE_URL"); + OIDC_ISSUERIDENTIFIER = System.getenv("OIDC_ISSUERIDENTIFIER"); + OIDC_CLIENTID = System.getenv("OIDC_CLIENTID"); + OIDC_CLIENTPASSWORD = System.getenv("OIDC_CLIENTPASSWORD"); + String oidcClientCredentials = OIDC_CLIENTID + ":" + OIDC_CLIENTPASSWORD; + oidcAuthHeader = "Basic " + Base64.getEncoder().encodeToString(oidcClientCredentials.getBytes(StandardCharsets.UTF_8)); + } + + public static void createUser(String user, String password) { + Client client = ClientBuilder.newClient(); + client.register(JsrJsonpProvider.class); + // Get IAM bearer token when creating the first user. The token can be reused after that. + if (iamAuthHeader == null) { + Form form = new Form(); + form.param("grant_type", "urn:ibm:params:oauth:grant-type:apikey"); + form.param("apikey", IAM_APIKEY); + String iamToken; + try (Response response = client.target(IAM_SERVICE_URL).request(MediaType.APPLICATION_JSON).buildPost(Entity.form(form)).invoke()) { + if (response.getStatus() != Response.Status.OK.getStatusCode()) { + throw new RuntimeException("TEST CASE FAILURE. Cannot obtain IAM access token. Status code " + response.getStatus() + " Response =" + response.readEntity(JsonObject.class)); + } + JsonObject obj = response.readEntity(JsonObject.class); + iamToken = obj.getString("access_token"); + } + iamAuthHeader = "Bearer " + iamToken; + } + // Create the user + JsonObject request = Json.createObjectBuilder() + .add("userName", user) + .add("password", password) + .add("active", true) + .add("emails", Json.createArrayBuilder() + .add(Json.createObjectBuilder() + .add("value", "ibmtestloyalty@yopmail.com") + .add("primary", true)) + ).build(); + String createUserURL = APPID_SERVICE_URL + "/management/v4/" + APPID_TENANTID + "/cloud_directory/Users"; + try (Response response = client.target(createUserURL).request(MediaType.APPLICATION_JSON).header(HttpHeaders.AUTHORIZATION, iamAuthHeader).buildPost(Entity.json(request)).invoke()) { + if (response.getStatus() != Response.Status.CREATED.getStatusCode()) { + throw new RuntimeException("TEST CASE FAILURE. Cannot create user. Status code " + response.getStatus() + " Response =" + response.readEntity(JsonObject.class)); + } + } + } + + public static String signOn(String user, String password) { + String url = OIDC_ISSUERIDENTIFIER + "/token"; + Form form = new Form(); + form.param("grant_type", "password"); + form.param("username", user); + form.param("password", password); + Client client = ClientBuilder.newClient(); + client.register(JsrJsonpProvider.class); + try (Response response = client.target(url).request(MediaType.APPLICATION_JSON).header(HttpHeaders.AUTHORIZATION, oidcAuthHeader).buildPost(Entity.form(form)).invoke()) { + if (response.getStatus() != Response.Status.OK.getStatusCode()) { + throw new RuntimeException("TEST CASE FAILURE. Cannot obtain access token. Status code " + response.getStatus() + " Response =" + response.readEntity(JsonObject.class)); + } + JsonObject obj = response.readEntity(JsonObject.class); + return obj.getString("access_token"); + } + } + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/pom.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/pom.xml new file mode 100755 index 0000000..fc9da2c --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/pom.xml @@ -0,0 +1,216 @@ + + + + 4.0.0 + + com.ibm.codey.bank + parent + 1.0-SNAPSHOT + pom + + + UTF-8 + UTF-8 + 1.8 + 1.8 + + 3.2.2 + 3.0.0-M1 + 3.0.0-M1 + + + + + + org.projectlombok + lombok + 1.18.16 + + + + junit + junit + 4.13.1 + test + + + org.apache.cxf + cxf-rt-rs-client + 3.2.6 + test + + + org.apache.cxf + cxf-rt-rs-extension-providers + 3.2.6 + test + + + org.glassfish + javax.json + 1.1.4 + test + + + + javax.xml.bind + jaxb-api + 2.3.1 + test + + + com.sun.xml.bind + jaxb-core + 2.3.0.1 + test + + + com.sun.xml.bind + jaxb-impl + 2.3.2 + test + + + javax.activation + activation + 1.1.1 + test + + + + org.eclipse + yasson + 1.0.1 + test + + + + + + + io.openliberty.features + features-bom + 19.0.0.12 + pom + import + + + + + + + + + org.apache.maven.plugins + maven-war-plugin + ${version.maven-war-plugin} + + false + pom.xml + + + + + org.apache.maven.plugins + maven-surefire-plugin + ${version.maven-surefire-plugin} + + + test + default-test + + + **/it/** + + + ${project.build.directory}/test-reports/unit + + + + + + ${skipTests} + + + + + org.apache.maven.plugins + maven-failsafe-plugin + ${version.maven-failsafe-plugin} + + + integration-test + integration-test + + integration-test + + + + **/it/** + + + ${http.port} + ${app.name} + + false + + + + verify-results + + verify + + + + + + ${project.build.directory}/test-reports/it/failsafe-summary.xml + + + ${project.build.directory}/test-reports/it + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 16 + 16 + true + + -J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.jvm=ALL-UNNAMED + + + + org.projectlombok + lombok + 1.18.16 + + + + + + + + + + common + transaction-service + user-service + integration-tests + + + diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/Dockerfile b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/Dockerfile new file mode 100755 index 0000000..e0e92d7 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/Dockerfile @@ -0,0 +1,11 @@ +FROM open-liberty:19.0.0.12-kernel-java8-openj9 + +USER root +RUN apt-get update && apt-get upgrade -y e2fsprogs libgnutls30 libgcrypt20 libsasl2-2 +USER 1001 + +COPY --chown=1001:0 src/main/liberty/config/ /config/ +COPY --chown=1001:0 src/main/resources/security/ /config/resources/security/ +COPY --chown=1001:0 target/*.war /config/apps/ +COPY --chown=1001:0 target/jdbc/* /config/jdbc/ +RUN configure.sh diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/deployment.yaml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/deployment.yaml new file mode 100755 index 0000000..9cf9b99 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/deployment.yaml @@ -0,0 +1,60 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: transaction-service + labels: + app: transaction-service +spec: + replicas: 1 + selector: + matchLabels: + app: transaction-service + template: + metadata: + labels: + app: transaction-service + annotations: + sidecar.istio.io/inject: "false" + spec: + containers: + - name: transaction-service + image: ykoyfman/bank-transaction-service:1.0 + imagePullPolicy: Always + ports: + - name: http-server + containerPort: 9080 + envFrom: + - secretRef: + name: bank-db-secret + - secretRef: + name: bank-oidc-secret + env: + - name: USER_SERVICE_URL + value: "http://user-service:9080/bank/v1/users" + - name: KNATIVE_SERVICE_URL + value: "http://process-transaction.example-bank.svc.cluster.local" + - name: WLP_LOGGING_CONSOLE_LOGLEVEL + value: INFO +--- +apiVersion: v1 +kind: Service +metadata: + name: transaction-service + labels: + app: transaction-service +spec: + ports: + - port: 9080 + targetPort: 9080 + selector: + app: transaction-service +--- +apiVersion: v1 +kind: Route +metadata: + name: transaction-service +spec: + to: + kind: Service + name: transaction-service + diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/pom.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/pom.xml new file mode 100755 index 0000000..efab2b9 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/pom.xml @@ -0,0 +1,78 @@ + + + + 4.0.0 + + + com.ibm.codey.bank + parent + 1.0-SNAPSHOT + + + com.ibm.codey.bank + transaction-service + 1.0-SNAPSHOT + war + + + + + io.openliberty.features + microProfile-3.0 + esa + + + com.ibm.codey.bank + common + 1.0-SNAPSHOT + jar + + + + + ${project.artifactId} + + + org.apache.maven.plugins + maven-war-plugin + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.0.0 + + + copy-jdbc-driver + package + + copy + + + + + org.postgresql + postgresql + 42.2.8 + ${project.build.directory}/jdbc + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/LivenessCheck.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/LivenessCheck.java new file mode 100755 index 0000000..77f2f47 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/LivenessCheck.java @@ -0,0 +1,25 @@ +package com.ibm.codey.bank; + +import javax.enterprise.context.ApplicationScoped; + +import org.eclipse.microprofile.health.HealthCheck; +import org.eclipse.microprofile.health.HealthCheckResponse; +import org.eclipse.microprofile.health.Liveness; + +@Liveness +@ApplicationScoped +public class LivenessCheck implements HealthCheck { + + private boolean isAlive() { + // perform health checks here + + return true; + } + + @Override + public HealthCheckResponse call() { + boolean up = isAlive(); + return HealthCheckResponse.named(this.getClass().getSimpleName()).state(up).build(); + } + +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/LoyaltyApplication.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/LoyaltyApplication.java new file mode 100755 index 0000000..6b13f49 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/LoyaltyApplication.java @@ -0,0 +1,9 @@ +package com.ibm.codey.bank; + +import javax.ws.rs.ApplicationPath; +import javax.ws.rs.core.Application; + +@ApplicationPath("/bank") +public class LoyaltyApplication extends Application { + +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/ReadinessCheck.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/ReadinessCheck.java new file mode 100755 index 0000000..ed9c6e9 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/ReadinessCheck.java @@ -0,0 +1,25 @@ +package com.ibm.codey.bank; + +import javax.enterprise.context.ApplicationScoped; + +import org.eclipse.microprofile.health.HealthCheck; +import org.eclipse.microprofile.health.HealthCheckResponse; +import org.eclipse.microprofile.health.Readiness; + +@Readiness +@ApplicationScoped +public class ReadinessCheck implements HealthCheck { + + private boolean isReady() { + // perform readiness checks, e.g. database connection, etc. + + return true; + } + + @Override + public HealthCheckResponse call() { + boolean up = isReady(); + return HealthCheckResponse.named(this.getClass().getSimpleName()).state(up).build(); + } + +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/TransactionResource.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/TransactionResource.java new file mode 100755 index 0000000..1ed7ad2 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/TransactionResource.java @@ -0,0 +1,189 @@ +package com.ibm.codey.bank.catalog; + +import java.net.URL; +import java.time.OffsetDateTime; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.UUID; + +import javax.enterprise.context.RequestScoped; +import javax.inject.Inject; +import javax.interceptor.Interceptors; +import javax.transaction.Transactional; +import javax.ws.rs.Consumes; +import javax.ws.rs.GET; +import javax.ws.rs.POST; +import javax.ws.rs.PUT; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.QueryParam; +import javax.ws.rs.WebApplicationException; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; + +import org.eclipse.microprofile.config.inject.ConfigProperty; +import org.eclipse.microprofile.rest.client.RestClientBuilder; + +import com.ibm.codey.bank.BaseResource; +import com.ibm.codey.bank.accounts.json.UserRegistration; +import com.ibm.codey.bank.accounts.json.UserRegistrationInfo; +import com.ibm.codey.bank.catalog.dao.TransactionDao; +import com.ibm.codey.bank.catalog.json.CreateTransactionDefinition; +import com.ibm.codey.bank.catalog.json.RewardTransactionDefinition; +import com.ibm.codey.bank.catalog.models.Category; +import com.ibm.codey.bank.catalog.models.Transaction; +import com.ibm.codey.bank.interceptor.LoggingInterceptor; +import com.ibm.codey.bank.interceptor.binding.RequiresAuthorization; + +@RequestScoped +@Interceptors(LoggingInterceptor.class) +@Path("v1/transactions") +public class TransactionResource extends BaseResource { + + @Inject + private TransactionDao transactionDao; + + @Inject + @ConfigProperty(name = "USER_SERVICE_URL") + private URL userServiceURL; + + /** + * This method creates a transaction. + */ + @POST + @Consumes(MediaType.APPLICATION_JSON) + @Transactional + public Response createTransaction(CreateTransactionDefinition createTransactionDefinition) { + + Transaction newTransaction = new Transaction(); + // create new uuid for new transaction + String transactionId = UUID.randomUUID().toString(); + + // get subject + String subject = this.getCallerSubject(); + // get user + UserService userService = RestClientBuilder.newBuilder().baseUrl(userServiceURL).build(UserService.class); + try { + UserRegistrationInfo userRegistration = userService.getUserConsent(this.getCallerCredentials()); + if (!userRegistration.isConsentGiven()) { + return Response.status(Response.Status.CONFLICT).entity("User has not consented to program").build(); + } + + newTransaction.setTransactionId(transactionId); + newTransaction.setUserId(userRegistration.getUserId()); + newTransaction.setTransactionName(createTransactionDefinition.getTransactionName()); + newTransaction.setCategory(createTransactionDefinition.getCategory()); + newTransaction.setAmount(createTransactionDefinition.getAmount()); + newTransaction.setProcessed(false); + newTransaction.setDate(OffsetDateTime.now()); + transactionDao.createTransaction(newTransaction); + + return Response.status(Response.Status.NO_CONTENT).build(); + } catch(WebApplicationException wae) { + int status = wae.getResponse().getStatus(); + if (status == Response.Status.NOT_FOUND.getStatusCode()) { + return Response.status(Response.Status.NOT_FOUND).entity("User not registered").build(); + } else { + wae.printStackTrace(); + return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build(); + } + } + } + + /** + * This method gets the transactions of a user. + */ + @GET + @Produces(MediaType.APPLICATION_JSON) + @Transactional + public Response getTransactions() { + // get subject + String subject = this.getCallerSubject(); + // get user + UserService userService = RestClientBuilder.newBuilder().baseUrl(userServiceURL).build(UserService.class); + try { + UserRegistrationInfo userRegistration = userService.getUserConsent(this.getCallerCredentials()); + if (!userRegistration.isConsentGiven()) { + return Response.status(Response.Status.CONFLICT).entity("User has not consented to program").build(); + } + + List transactions = transactionDao.findTransactionsByUser(userRegistration.getUserId()); + return Response.status(Response.Status.OK).entity(transactions).build(); + } catch(WebApplicationException wae) { + int status = wae.getResponse().getStatus(); + if (status == Response.Status.NOT_FOUND.getStatusCode()) { + return Response.status(Response.Status.NOT_FOUND).entity("User not registered").build(); + } else { + wae.printStackTrace(); + return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build(); + } + } + } + + /** + * This method gets the spending categories of a user. + */ + @GET + @Path("spending") + @Produces(MediaType.APPLICATION_JSON) + @Transactional + public Response getCategory() { + // get subject + String subject = this.getCallerSubject(); + // get user + UserService userService = RestClientBuilder.newBuilder().baseUrl(userServiceURL).build(UserService.class); + try { + UserRegistrationInfo userRegistration = userService.getUserConsent(this.getCallerCredentials()); + if (!userRegistration.isConsentGiven()) { + return Response.status(Response.Status.CONFLICT).entity("User has not consented to program").build(); + } + + List categories = transactionDao.groupCategoriesForUser(userRegistration.getUserId()); + return Response.status(Response.Status.OK).entity(categories).build(); + } catch(WebApplicationException wae) { + int status = wae.getResponse().getStatus(); + if (status == Response.Status.NOT_FOUND.getStatusCode()) { + return Response.status(Response.Status.NOT_FOUND).entity("User not registered").build(); + } else { + wae.printStackTrace(); + return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build(); + } + } + } + + // TODO: require admin scope + /** + * This method updates a transaction. + */ + @PUT + @Path("reward/{transactionId}") + @Consumes(MediaType.APPLICATION_JSON) + @Transactional + @RequiresAuthorization + public Response updateTransaction(@PathParam("transactionId") String transactionId, RewardTransactionDefinition rewardTransactionDefinition) { + // Validate UUID is formatted correctly. + try { + UUID.fromString(transactionId); + } catch(IllegalArgumentException iae) { + return Response.status(Response.Status.BAD_REQUEST).entity("Invalid transaction id").build(); + } + + Transaction transaction = transactionDao.findTransactionById(transactionId); + if (transaction == null) { + return Response.status(Response.Status.NOT_FOUND).entity("Transaction not found").build(); + } + + if (transaction.isProcessed()) { + return Response.status(Response.Status.BAD_REQUEST).entity("Transaction already processed").build(); + } + + transaction.setPointsEarned(rewardTransactionDefinition.getPointsEarned()); + transaction.setProcessed(true); + transactionDao.updateTransaction(transaction); + + return Response.status(Response.Status.NO_CONTENT).build(); + } + +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/dao/TransactionDao.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/dao/TransactionDao.java new file mode 100755 index 0000000..faebad3 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/dao/TransactionDao.java @@ -0,0 +1,79 @@ +package com.ibm.codey.bank.catalog.dao; + +import java.math.BigDecimal; +import java.util.ArrayList; +import java.util.List; + +import javax.enterprise.context.RequestScoped; + +import javax.persistence.EntityManager; +import javax.persistence.NoResultException; +import javax.persistence.PersistenceContext; + +import com.ibm.codey.bank.catalog.models.Category; +import com.ibm.codey.bank.catalog.models.Transaction; + +@RequestScoped +public class TransactionDao { + + @PersistenceContext(name = "jpa-unit") + private EntityManager em; + + public void createTransaction(Transaction transaction) { + em.persist(transaction); + } + + public void updateTransaction(Transaction transaction) { + em.merge(transaction); + } + + public List findTransactions() { + return em.createNamedQuery("Transaction.findTransactions", Transaction.class) + .getResultList(); + } + + public List findTransactionsByUser(String userId) { + return em.createNamedQuery("Transaction.findTransactionsByUser", Transaction.class) + .setParameter("userId", userId) + .getResultList(); + } + + public Transaction findTransactionById(String transactionId) { + try { + return em.createNamedQuery("Transaction.findTransactionByIdOnly", Transaction.class) + .setParameter("transactionId", transactionId) + .getSingleResult(); + } catch(NoResultException e) { + return null; + } + } + + public Transaction findTransactionById(String transactionId, String userId) { + try { + return em.createNamedQuery("Transaction.findTransactionById", Transaction.class) + .setParameter("transactionId", transactionId) + .setParameter("userId", userId) + .getSingleResult(); + } catch(NoResultException e) { + return null; + } + } + + public List groupCategoriesForUser(String userId) { + try { + List rows = em.createNamedQuery("Transaction.groupCategoriesForUser", Object[][].class) + .setParameter("userId", userId) + .getResultList(); + List response = new ArrayList<>(); + for (Object[] row: rows) { + if (row.length == 2) { + response.add(new Category(row[0].toString(), new BigDecimal(row[1].toString()))); + } + } + + return response; + } catch(NoResultException e) { + return null; + } + } +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/Category.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/Category.java new file mode 100755 index 0000000..754b666 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/Category.java @@ -0,0 +1,18 @@ +package com.ibm.codey.bank.catalog.models; + +import java.math.BigDecimal; + +import lombok.Getter; +import lombok.Setter; + +@Getter @Setter +public class Category { + + private String category; + private BigDecimal amount; + + public Category(String category, BigDecimal amount) { + this.category = category; + this.amount = amount; + } +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/Transaction.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/Transaction.java new file mode 100755 index 0000000..d67f8a9 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/Transaction.java @@ -0,0 +1,64 @@ +package com.ibm.codey.bank.catalog.models; + +import java.io.Serializable; +import java.math.BigDecimal; +import java.time.OffsetDateTime; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.EntityListeners; +import javax.persistence.Id; +import javax.persistence.IdClass; +import javax.persistence.NamedQueries; +import javax.persistence.NamedQuery; +import javax.persistence.Table; + +import lombok.Getter; +import lombok.Setter; + +@Entity +@Table(name = "transactions") +@IdClass(TransactionPK.class) +@NamedQueries({ + @NamedQuery(name = "Transaction.findTransactions", query = "SELECT t FROM Transaction t"), + @NamedQuery(name = "Transaction.findTransactionsByUser", query = "SELECT t FROM Transaction t WHERE t.userId = :userId"), + @NamedQuery(name = "Transaction.findTransactionById", query = "SELECT t FROM Transaction t WHERE t.transactionId = :transactionId AND t.userId = :userId"), + @NamedQuery(name = "Transaction.findTransactionByIdOnly", query = "SELECT t FROM Transaction t WHERE t.transactionId = :transactionId"), + @NamedQuery(name = "Transaction.groupCategoriesForUser", query = "SELECT COALESCE(t.category, 'Uncategorized'), SUM (t.amount) FROM Transaction t WHERE t.userId = :userId GROUP BY t.category") +}) +@Getter @Setter +@EntityListeners(TransactionListener.class) +public class Transaction implements Serializable { + + private static final long serialVersionUID = 1L; + + @Column(name = "transaction_id") + @Id + private String transactionId; + + @Id + @Column(name = "usr") + private String userId; + + @Column(name = "transaction_name") + private String transactionName; + + @Column(name = "amount") + private BigDecimal amount; + + @Column(name = "category") + private String category; + + @Column(name = "points_earned") + private BigDecimal pointsEarned; + + @Column(name = "processed") + private boolean processed; + + @Column(name = "date") + private OffsetDateTime date; + + public Transaction() { + } + +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/TransactionListener.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/TransactionListener.java new file mode 100755 index 0000000..dae2f25 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/TransactionListener.java @@ -0,0 +1,40 @@ +package com.ibm.codey.bank.catalog.models; + +import java.net.URL; + +import javax.enterprise.context.RequestScoped; +import javax.inject.Inject; +import javax.persistence.PostPersist; +import javax.ws.rs.WebApplicationException; +import javax.ws.rs.core.Response; + +import org.eclipse.microprofile.config.inject.ConfigProperty; +import org.eclipse.microprofile.rest.client.RestClientBuilder; + +import com.ibm.codey.bank.catalog.KnativeService; + +@RequestScoped +public class TransactionListener { + + @Inject + @ConfigProperty(name = "KNATIVE_SERVICE_URL") + private URL knativeServiceURL; + + @PostPersist + public void sendToProcessing(Transaction transaction) { + KnativeService knativeService = RestClientBuilder.newBuilder().baseUrl(knativeServiceURL).build(KnativeService.class); + + try { + knativeService.processTransaction(transaction.getTransactionId(), transaction.getCategory(), transaction.getAmount().toString()); + } catch (WebApplicationException wae) { + System.out.print("web app exception"); + int status = wae.getResponse().getStatus(); + if (status == Response.Status.NOT_FOUND.getStatusCode()) { + // TODO: .. + } else { + wae.printStackTrace(); + } + } + } + +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/TransactionPK.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/TransactionPK.java new file mode 100755 index 0000000..5258805 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/java/com/ibm/codey/bank/catalog/models/TransactionPK.java @@ -0,0 +1,15 @@ +package com.ibm.codey.bank.catalog.models; + +import java.io.Serializable; + +import lombok.Getter; +import lombok.Setter; + +@Getter @Setter +public class TransactionPK implements Serializable { + + private String transactionId; + + private String userId; + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/bootstrap.properties b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/bootstrap.properties new file mode 100755 index 0000000..16f0286 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/bootstrap.properties @@ -0,0 +1,2 @@ +default.http.port=9080 +default.https.port=9443 \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/jvm.options b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/jvm.options new file mode 100755 index 0000000..f0250b2 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/jvm.options @@ -0,0 +1,2 @@ +# This option is needed when using an IBM JRE to avoid a handshake failure when making a secure JDBC connection. +-Dcom.ibm.jsse2.overrideDefaultTLS=true diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/server.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/server.xml new file mode 100755 index 0000000..4731bd7 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/liberty/config/server.xml @@ -0,0 +1,53 @@ + + + + jpa-2.2 + microProfile-3.0 + mpJwt-1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/META-INF/orm.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/META-INF/orm.xml new file mode 100755 index 0000000..4ed25ae --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/META-INF/orm.xml @@ -0,0 +1,10 @@ + + + + bank + + + \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/META-INF/persistence.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/META-INF/persistence.xml new file mode 100755 index 0000000..ca42dd1 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/META-INF/persistence.xml @@ -0,0 +1,16 @@ + + + + jdbc/AccountsDataSource + NONE + + + + + + + \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/security/digicert-root-ca.jks b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/security/digicert-root-ca.jks new file mode 100755 index 0000000..a39dd27 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/resources/security/digicert-root-ca.jks differ diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/webapp/WEB-INF/beans.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/webapp/WEB-INF/beans.xml new file mode 100755 index 0000000..2777559 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/webapp/WEB-INF/beans.xml @@ -0,0 +1,6 @@ + + + diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/webapp/WEB-INF/web.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/webapp/WEB-INF/web.xml new file mode 100755 index 0000000..6b88b3a --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/transaction-service/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,27 @@ + + + transaction-service + + + authenticated + + + + Security Constraints + + ProtectedArea + /* + + + authenticated + + + NONE + + + + diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/Dockerfile b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/Dockerfile new file mode 100755 index 0000000..e0e92d7 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/Dockerfile @@ -0,0 +1,11 @@ +FROM open-liberty:19.0.0.12-kernel-java8-openj9 + +USER root +RUN apt-get update && apt-get upgrade -y e2fsprogs libgnutls30 libgcrypt20 libsasl2-2 +USER 1001 + +COPY --chown=1001:0 src/main/liberty/config/ /config/ +COPY --chown=1001:0 src/main/resources/security/ /config/resources/security/ +COPY --chown=1001:0 target/*.war /config/apps/ +COPY --chown=1001:0 target/jdbc/* /config/jdbc/ +RUN configure.sh diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/deployment.yaml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/deployment.yaml new file mode 100755 index 0000000..8fe34e1 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/deployment.yaml @@ -0,0 +1,51 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: user-service + labels: + app: user-service +spec: + replicas: 1 + selector: + matchLabels: + app: user-service + template: + metadata: + labels: + app: user-service + spec: + containers: + - name: user-service + image: anthonyamanse/user-service:example-bank-1.0 + imagePullPolicy: Always + ports: + - name: http-server + containerPort: 9080 + envFrom: + - secretRef: + name: bank-db-secret + - secretRef: + name: bank-oidc-secret +--- +apiVersion: v1 +kind: Service +metadata: + name: user-service + labels: + app: user-service +spec: + ports: + - port: 9080 + targetPort: 9080 + selector: + app: user-service +--- +apiVersion: v1 +kind: Route +metadata: + name: user-service +spec: + to: + kind: Service + name: user-service + diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/pom.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/pom.xml new file mode 100755 index 0000000..4a6f864 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/pom.xml @@ -0,0 +1,78 @@ + + + + 4.0.0 + + + com.ibm.codey.bank + parent + 1.0-SNAPSHOT + + + com.ibm.codey.bank + user-service + 1.0-SNAPSHOT + war + + + + + io.openliberty.features + microProfile-3.0 + esa + + + com.ibm.codey.bank + common + 1.0-SNAPSHOT + jar + + + + + ${project.artifactId} + + + org.apache.maven.plugins + maven-war-plugin + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.0.0 + + + copy-jdbc-driver + package + + copy + + + + + org.postgresql + postgresql + 42.2.8 + ${project.build.directory}/jdbc + + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + + org.apache.maven.plugins + maven-failsafe-plugin + + + + diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/LivenessCheck.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/LivenessCheck.java new file mode 100755 index 0000000..77f2f47 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/LivenessCheck.java @@ -0,0 +1,25 @@ +package com.ibm.codey.bank; + +import javax.enterprise.context.ApplicationScoped; + +import org.eclipse.microprofile.health.HealthCheck; +import org.eclipse.microprofile.health.HealthCheckResponse; +import org.eclipse.microprofile.health.Liveness; + +@Liveness +@ApplicationScoped +public class LivenessCheck implements HealthCheck { + + private boolean isAlive() { + // perform health checks here + + return true; + } + + @Override + public HealthCheckResponse call() { + boolean up = isAlive(); + return HealthCheckResponse.named(this.getClass().getSimpleName()).state(up).build(); + } + +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/LoyaltyApplication.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/LoyaltyApplication.java new file mode 100755 index 0000000..6b13f49 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/LoyaltyApplication.java @@ -0,0 +1,9 @@ +package com.ibm.codey.bank; + +import javax.ws.rs.ApplicationPath; +import javax.ws.rs.core.Application; + +@ApplicationPath("/bank") +public class LoyaltyApplication extends Application { + +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/ReadinessCheck.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/ReadinessCheck.java new file mode 100755 index 0000000..ed9c6e9 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/ReadinessCheck.java @@ -0,0 +1,25 @@ +package com.ibm.codey.bank; + +import javax.enterprise.context.ApplicationScoped; + +import org.eclipse.microprofile.health.HealthCheck; +import org.eclipse.microprofile.health.HealthCheckResponse; +import org.eclipse.microprofile.health.Readiness; + +@Readiness +@ApplicationScoped +public class ReadinessCheck implements HealthCheck { + + private boolean isReady() { + // perform readiness checks, e.g. database connection, etc. + + return true; + } + + @Override + public HealthCheckResponse call() { + boolean up = isReady(); + return HealthCheckResponse.named(this.getClass().getSimpleName()).state(up).build(); + } + +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/UserResource.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/UserResource.java new file mode 100755 index 0000000..8590c19 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/UserResource.java @@ -0,0 +1,120 @@ +package com.ibm.codey.bank.accounts; + +import javax.enterprise.context.RequestScoped; +import javax.inject.Inject; +import javax.interceptor.Interceptors; +import javax.transaction.Transactional; +import javax.ws.rs.Consumes; +import javax.ws.rs.GET; +import javax.ws.rs.PUT; +import javax.ws.rs.POST; +import javax.ws.rs.DELETE; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; + +import com.ibm.codey.bank.BaseResource; +import com.ibm.codey.bank.accounts.dao.UserDao; +import com.ibm.codey.bank.accounts.json.UserRegistration; +import com.ibm.codey.bank.accounts.json.UserRegistrationInfo; +import com.ibm.codey.bank.accounts.models.User; +import com.ibm.codey.bank.interceptor.LoggingInterceptor; + +@RequestScoped +@Interceptors(LoggingInterceptor.class) +@Path("v1/users") +public class UserResource extends BaseResource { + + @Inject + private UserDao userDAO; + + /** + * This method creates a new user. + */ + @POST + @Consumes(MediaType.APPLICATION_JSON) + @Transactional + public Response registerUser(UserRegistration userRegistration) { + String subject = this.getCallerSubject(); + if (subject == null) { + return Response.status(Response.Status.UNAUTHORIZED).entity("Missing subject").build(); + } + if (userDAO.findUserByRegistryId(subject) != null) { + return Response.status(Response.Status.BAD_REQUEST).entity("User is already registered").build(); + } + User newUser = new User(); + newUser.setSubject(subject); + newUser.setConsentGiven(userRegistration.isConsentGiven()); + userDAO.createUser(newUser); + return Response.status(Response.Status.NO_CONTENT).build(); + } + + /** + * This method returns the user registration data for a user. + */ + @GET + @Path("self") + @Produces(MediaType.APPLICATION_JSON) + @Transactional + public Response getUser() { + String subject = this.getCallerSubject(); + if (subject == null) { + return Response.status(Response.Status.UNAUTHORIZED).entity("Missing subject").build(); + } + User prevUser = userDAO.findUserByRegistryId(subject); + if (prevUser == null) { + return Response.status(Response.Status.NOT_FOUND).entity("User is not registered").build(); + } + UserRegistrationInfo userRegistration = new UserRegistrationInfo(); + userRegistration.setUserId(prevUser.getUserId()); + userRegistration.setConsentGiven(prevUser.isConsentGiven()); + return Response.status(Response.Status.OK).entity(userRegistration).build(); + } + + /** + * This method updates the user registration data for a user. + */ + @PUT + @Path("self") + @Consumes(MediaType.APPLICATION_JSON) + @Transactional + public Response updateUser(UserRegistration userRegistration) { + String subject = this.getCallerSubject(); + if (subject == null) { + return Response.status(Response.Status.UNAUTHORIZED).entity("Missing subject").build(); + } + User prevUser = userDAO.findUserByRegistryId(subject); + if (prevUser == null) { + return Response.status(Response.Status.NOT_FOUND).entity("User is not registered").build(); + } + if (prevUser.isDeleteRequested()) { + return Response.status(Response.Status.CONFLICT).entity("User has requested deletion").build(); + } + prevUser.setConsentGiven(userRegistration.isConsentGiven()); + userDAO.updateUser(prevUser); + return Response.status(Response.Status.NO_CONTENT).build(); + } + + /** + * This method schedules an asynchronous process to remove the user from the system. + */ + @DELETE + @Path("self") + @Transactional + public Response deleteUser() { + String subject = this.getCallerSubject(); + if (subject == null) { + return Response.status(Response.Status.UNAUTHORIZED).entity("Missing subject").build(); + } + User prevUser = userDAO.findUserByRegistryId(subject); + if (prevUser == null) { + return Response.status(Response.Status.NOT_FOUND).entity("User is not registered").build(); + } + prevUser.setDeleteRequested(true); + prevUser.setSubject(null); + userDAO.updateUser(prevUser); + return Response.status(Response.Status.NO_CONTENT).build(); + } + +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/dao/UserDao.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/dao/UserDao.java new file mode 100755 index 0000000..f6fb1d0 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/dao/UserDao.java @@ -0,0 +1,35 @@ +package com.ibm.codey.bank.accounts.dao; + +import java.util.List; +import javax.enterprise.context.RequestScoped; +import javax.persistence.EntityManager; +import javax.persistence.LockModeType; +import javax.persistence.NoResultException; +import javax.persistence.PersistenceContext; + +import com.ibm.codey.bank.accounts.models.User; + +@RequestScoped +public class UserDao { + + @PersistenceContext(name = "jpa-unit") + private EntityManager em; + + public void createUser(User user) { + em.persist(user); + } + + public void updateUser(User user) { + em.merge(user); + } + + public User findUserByRegistryId(String subject) { + try { + return em.createNamedQuery("User.findUserByRegistryId", User.class) + .setParameter("subject", subject).getSingleResult(); + } catch(NoResultException e) { + return null; + } + } + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/models/User.java b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/models/User.java new file mode 100755 index 0000000..5b695f7 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/java/com/ibm/codey/bank/accounts/models/User.java @@ -0,0 +1,45 @@ +package com.ibm.codey.bank.accounts.models; + +import java.io.Serializable; +import java.util.UUID; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; +import javax.persistence.NamedQueries; +import javax.persistence.NamedQuery; +import javax.persistence.Table; + +import lombok.AccessLevel; +import lombok.Getter; +import lombok.Setter; + +@Entity +@Table(name = "users") +@NamedQueries({ + @NamedQuery(name = "User.findUserByRegistryId", query = "SELECT e FROM User e WHERE e.subject = :subject"), +}) +@Getter @Setter +public class User implements Serializable { + + private static final long serialVersionUID = 1L; + + @Column(name = "user_id") + @Id + @Setter(AccessLevel.NONE) + private String userId; + + @Column(name = "subject", unique=true) + private String subject; + + @Column(name = "consent_given") + private boolean consentGiven; + + @Column(name = "delete_requested") + private boolean deleteRequested; + + public User() { + this.userId = UUID.randomUUID().toString(); + } + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/bootstrap.properties b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/bootstrap.properties new file mode 100755 index 0000000..16f0286 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/bootstrap.properties @@ -0,0 +1,2 @@ +default.http.port=9080 +default.https.port=9443 \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/jvm.options b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/jvm.options new file mode 100755 index 0000000..f0250b2 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/jvm.options @@ -0,0 +1,2 @@ +# This option is needed when using an IBM JRE to avoid a handshake failure when making a secure JDBC connection. +-Dcom.ibm.jsse2.overrideDefaultTLS=true diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/server.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/server.xml new file mode 100755 index 0000000..9297454 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/liberty/config/server.xml @@ -0,0 +1,53 @@ + + + + jpa-2.2 + microProfile-3.0 + mpJwt-1.1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/META-INF/orm.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/META-INF/orm.xml new file mode 100755 index 0000000..4ed25ae --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/META-INF/orm.xml @@ -0,0 +1,10 @@ + + + + bank + + + \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/META-INF/persistence.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/META-INF/persistence.xml new file mode 100755 index 0000000..ca42dd1 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/META-INF/persistence.xml @@ -0,0 +1,16 @@ + + + + jdbc/AccountsDataSource + NONE + + + + + + + \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/security/digicert-root-ca.jks b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/security/digicert-root-ca.jks new file mode 100755 index 0000000..a39dd27 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/resources/security/digicert-root-ca.jks differ diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/webapp/WEB-INF/beans.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/webapp/WEB-INF/beans.xml new file mode 100755 index 0000000..2777559 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/webapp/WEB-INF/beans.xml @@ -0,0 +1,6 @@ + + + diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/webapp/WEB-INF/web.xml b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/webapp/WEB-INF/web.xml new file mode 100755 index 0000000..b982697 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-app-backend/user-service/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,27 @@ + + + user-service + + + authenticated + + + + Security Constraints + + ProtectedArea + /* + + + authenticated + + + NONE + + + + diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-knative-service/Dockerfile b/kubernetes/dev/tekton/examples/example-bank/bank-knative-service/Dockerfile new file mode 100755 index 0000000..e990c65 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-knative-service/Dockerfile @@ -0,0 +1,20 @@ +# Use the official lightweight Node.js 12 image. +# https://hub.docker.com/_/node +FROM node:12-slim + +# Create and change to the app directory. +WORKDIR /usr/src/app + +# Copy application dependency manifests to the container image. +# A wildcard is used to ensure both package.json AND package-lock.json are copied. +# Copying this separately prevents re-running npm install on every code change. +COPY package*.json ./ + +# Install production dependencies. +RUN npm install --only=production + +# Copy local code to the container image. +COPY . ./ + +# Run the web service on container startup. +CMD [ "npm", "start" ] \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-knative-service/deployment.yaml b/kubernetes/dev/tekton/examples/example-bank/bank-knative-service/deployment.yaml new file mode 100755 index 0000000..018f611 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-knative-service/deployment.yaml @@ -0,0 +1,28 @@ +apiVersion: serving.knative.dev/v1 +kind: Service +metadata: + name: process-transaction + # local to cluster only + labels: + serving.knative.dev/visibility: cluster-local +spec: + template: + metadata: + annotations: + # Target 10 requests in-flight per pod. + autoscaling.knative.dev/target: "10" + # Disable scale to zero with a minScale of 1. + # autoscaling.knative.dev/minScale: "1" + # Limit scaling to 50 pods. + # autoscaling.knative.dev/maxScale: "50" + spec: + containers: + - image: anthonyamanse/knative-transaction-process:with-auth + envFrom: + - secretRef: + name: bank-oidc-adminuser + - secretRef: + name: mobile-simulator-secrets + env: + - name: TRANSACTION_SERVICE_URL + value: "http://transaction-service:9080/bank/v1/transactions" \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-knative-service/index.js b/kubernetes/dev/tekton/examples/example-bank/bank-knative-service/index.js new file mode 100755 index 0000000..1080c3d --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-knative-service/index.js @@ -0,0 +1,112 @@ +const express = require('express'); +const app = express(); +const axios = require('axios'); +const qs = require('qs'); +const jwt_decode = require('jwt-decode') + +let transactionServiceUrl = process.env.TRANSACTION_SERVICE_URL +let appIdTokenUrl = process.env.APP_ID_TOKEN_URL +let appIdClientId = process.env.APP_ID_CLIENT_ID +let appIdClientSecret = process.env.APP_ID_CLIENT_SECRET +let appIdAdminUser = process.env.APP_ID_ADMIN_USER +let appIdAdminPassword = process.env.APP_ID_ADMIN_PASSWORD + +let appIdResult; + +app.post('/process', (req, res) => { + console.log('received request') + console.log(req.query) + if (!appIdResult) { + getAppIdToken(appIdAdminUser, appIdAdminPassword) + .then(function (response) { + appIdResult = response.data + sendToRewardEndpoint(req, res, appIdResult.access_token) + }) + .catch(function (error) { + console.log(error) + res.status('404').send('Error getting admin token') + }) + } else { + console.log('found app id result in global variable') + // check if token is expired + if (isAccessTokenExpired(appIdResult.access_token)) { + console.log('token found is expired. getting new one...') + getAppIdToken(appIdAdminUser, appIdAdminPassword) + .then(function (response) { + appIdResult = response.data + sendToRewardEndpoint(req, res, appIdResult.access_token) + }) + .catch(function (error) { + console.log(error) + res.status('404').send('Error getting admin token') + }) + } else { + sendToRewardEndpoint(req, res, appIdResult.access_token) + } + } +}); + +function sendToRewardEndpoint(req, res, authToken) { + if (req.query.transactionId && req.query.category && req.query.amount) { + let pointsEarned = computeReward(req.query.category, req.query.amount); + axios({ + headers: { + 'Authorization': 'Bearer ' + authToken + }, + method: 'put', + url: transactionServiceUrl + '/reward/' + req.query.transactionId, + data: { + pointsEarned + } + }) + .then(function (response) { + if (response.status == '204') { + res.status('200').send('OK') + } else { + console.log({status: error.response.status, data: error.response.data}) + res.status('404').send({result: 'Failed to post to transaction API', response }) + } + }).catch(function (error) { + console.log("Error in PUT /transactions/reward/{transactionId}") + console.log({status: error.response.status, data: error.response.data}) + res.status('404').send({error}) + }) + } else { + res.status('404').send('transactionId, category, and amount must be present in query parameters.') + } +} + +function computeReward(category, amount) { + return amount; +} + +function getAppIdToken(username, password) { + let data = { + username, + password, + grant_type: 'password' + } + return axios({ + method: 'post', + url: appIdTokenUrl + '/token', + headers: { + 'Authorization': 'Basic ' + Buffer.from(appIdClientId + ":" + appIdClientSecret).toString('base64'), + 'Content-Type' : 'application/x-www-form-urlencoded' + }, + data: qs.stringify(data) + }) +} + +function isAccessTokenExpired(access_token) { + if (new Date().getTime() - (jwt_decode(access_token).exp * 1000) >= 0) { + return true + } else { + return false + } +} + + +const port = process.env.PORT || 8080; +app.listen(port, () => { + console.log('Hello world listening on port', port); +}); \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-knative-service/package.json b/kubernetes/dev/tekton/examples/example-bank/bank-knative-service/package.json new file mode 100755 index 0000000..9a83ceb --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-knative-service/package.json @@ -0,0 +1,17 @@ +{ + "name": "bank-knative-service", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "start": "node index.js", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "ISC", + "dependencies": { + "axios": "^0.19.2", + "express": "^4.17.1", + "jwt-decode": "^2.2.0" + } +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/.gitignore b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/.gitignore new file mode 100755 index 0000000..8652905 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/.gitignore @@ -0,0 +1,36 @@ +**/target +!.keep + + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +/build/ + +### VS Code ### +.vscode/ + + +## Local configuration files +/local/config/* + +*.swo +*.swp diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/Dockerfile b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/Dockerfile new file mode 100755 index 0000000..c0d6b7a --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/Dockerfile @@ -0,0 +1,10 @@ +FROM adoptopenjdk:8-jre-openj9 + +USER root +RUN apt-get update && apt-get upgrade -y e2fsprogs libgnutls30 libgcrypt20 libsasl2-2 +RUN mkdir -p /opt/app/lib +USER 1001 + +COPY target/user-cleanup-utility-1.0-SNAPSHOT.jar /opt/app +COPY target/lib/* /opt/app/lib/ +CMD ["java", "-jar", "/opt/app/user-cleanup-utility-1.0-SNAPSHOT.jar"] \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/README.md b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/README.md new file mode 100755 index 0000000..df1ae3d --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/README.md @@ -0,0 +1,15 @@ + +## Build + +``` +mvn package +docker build -t bank-user-cleanup-utility:1.0-SNAPSHOT . +``` + +### Secrets + +``` +kubectl create secret generic bank-db-secret --from-literal=DB_SERVERNAME=48f106c1-94cb-4133-b99f-20991c91cb1a.bn2a2vgd01r3l0hfmvc0.databases.appdomain.cloud --from-literal=DB_PORTNUMBER=30389 --from-literal=DB_DATABASENAME=ibmclouddb --from-literal=DB_USER=ibm_cloud_0637cd24_8ac9_4dc7_b2d4_ebd080633f7f --from-literal=DB_PASSWORD= +kubectl create secret generic bank-iam-secret --from-literal=IAM_APIKEY= --from-literal=IAM_SERVICE_URL=https://iam.cloud.ibm.com/identity/token +kubectl create secret generic bank-appid-secret --from-literal=APPID_TENANTID=3d17f53d-4600-4f32-bb2c-207f4e2f6060 --from-literal=APPID_SERVICE_URL=https://us-south.appid.cloud.ibm.com +``` \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/job.yaml b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/job.yaml new file mode 100755 index 0000000..34a907c --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/job.yaml @@ -0,0 +1,28 @@ +apiVersion: batch/v1beta1 +kind: CronJob +metadata: + name: bank-user-cleanup-utility + labels: + app: bank-user-cleanup-utility +spec: + schedule: "@hourly" + jobTemplate: + spec: + template: + spec: + restartPolicy: Never + containers: + - name: bank-user-cleanup-utility + image: ykoyfman/bank-cleanup:1.0 + imagePullPolicy: Always + envFrom: + - secretRef: + name: bank-db-secret + - secretRef: + name: bank-iam-secret + - secretRef: + name: bank-appid-secret + env: + - name: LAST_LOGIN_HOURS + value: "24" + backoffLimit: 0 diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/pom.xml b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/pom.xml new file mode 100755 index 0000000..3d4890c --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/pom.xml @@ -0,0 +1,94 @@ + + + + 4.0.0 + + com.ibm.codey.loyalty + user-cleanup-utility + 1.0-SNAPSHOT + jar + + + UTF-8 + UTF-8 + 1.8 + 1.8 + + + + + org.postgresql + postgresql + 42.2.10 + + + + jakarta.json.bind + jakarta.json.bind-api + 1.0.2 + + + + org.jboss.resteasy + resteasy-json-binding-provider + 4.4.2.Final + + + + org.eclipse.microprofile.rest.client + microprofile-rest-client-api + 1.3.3 + + + + org.jboss.resteasy + resteasy-client-microprofile + 4.4.2.Final + + + + org.projectlombok + lombok + 1.18.16 + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + 3.1.1 + + + compile + + copy-dependencies + + + ${project.build.directory}/lib + runtime + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.0.2 + + + + true + lib/ + com.ibm.codey.loyalty.AccountDeletionProcessor + + + + + + + + \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/AccountDeletionProcessor.java b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/AccountDeletionProcessor.java new file mode 100755 index 0000000..35cc100 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/AccountDeletionProcessor.java @@ -0,0 +1,269 @@ +package com.ibm.codey.loyalty; + +import java.net.MalformedURLException; +import java.net.URL; +import java.sql.Connection; +import java.sql.DriverManager; +import java.sql.PreparedStatement; +import java.sql.ResultSet; +import java.sql.SQLException; +import java.time.Duration; +import java.time.ZonedDateTime; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Iterator; +import java.util.Map; +import java.util.Properties; +import java.util.Set; +import java.util.StringJoiner; +import java.util.logging.Level; +import java.util.logging.Logger; + +import com.ibm.codey.loyalty.external.appid.AppIDService; +import com.ibm.codey.loyalty.external.appid.AppIDServiceGetUserRoleResponse; +import com.ibm.codey.loyalty.external.appid.AppIDServiceGetUsersResponse; +import com.ibm.codey.loyalty.external.iam.IAMTokenService; +import com.ibm.codey.loyalty.external.iam.IAMTokenServiceResponse; + +import org.eclipse.microprofile.rest.client.RestClientBuilder; + +// This code deletes any App ID user who is no longer registered for the loyalty program. +public class AccountDeletionProcessor { + + private static final Logger log = Logger.getLogger(AccountDeletionProcessor.class.getName()); + + private static final String PROVIDER = "cloud_directory"; + + private static final int USERS_COUNT = 20; + + private static URL IAM_SERVICE_URL; + private static String IAM_APIKEY; + + private static URL APPID_SERVICE_URL; + private static String APPID_TENANTID; + + private static String DB_SERVERNAME; + private static String DB_PORTNUMBER; + private static String DB_DATABASENAME; + private static String DB_USER; + private static String DB_PASSWORD; + + private static int LAST_LOGIN_HOURS; + + private Connection con; + + private AppIDService appIdService; + + private String authHeader; + + public static void main(String[] args) { + // Gather environment variables + try { + IAM_SERVICE_URL = new URL(getEnvVar("IAM_SERVICE_URL")); + APPID_SERVICE_URL = new URL(getEnvVar("APPID_SERVICE_URL")); + } catch(MalformedURLException mue) { + mue.printStackTrace(); + System.exit(1); + } + IAM_APIKEY = getEnvVar("IAM_APIKEY"); + APPID_TENANTID = getEnvVar("APPID_TENANTID"); + DB_SERVERNAME = getEnvVar("DB_SERVERNAME"); + DB_PORTNUMBER = getEnvVar("DB_PORTNUMBER"); + DB_DATABASENAME = getEnvVar("DB_DATABASENAME"); + DB_USER = getEnvVar("DB_USER"); + DB_PASSWORD = getEnvVar("DB_PASSWORD"); + LAST_LOGIN_HOURS = Integer.valueOf(getEnvVar("LAST_LOGIN_HOURS")); + new AccountDeletionProcessor().run(); + } + + public void run() { + // Connect to database + getDBConnection(); + // Set up auth header for App Id with IAM token. + authHeader = "Bearer " + getIamToken(); + // Set up client proxy to App Id service. + appIdService = RestClientBuilder.newBuilder().baseUrl(APPID_SERVICE_URL).build(AppIDService.class); + try { + // Iterate through all App Id users a page at a time. Identify and collect unregistered users by provider id. + Set unregisteredUserProviderIds = new HashSet(); + int startIndex = 0; + AppIDServiceGetUsersResponse usersResponse; + do { + // Get a page of users. Collect the user's profile id and corresponding provider id. + Map profileIdToProviderIdMap = new HashMap(USERS_COUNT); + log.log(Level.INFO, "Obtaining a page of user data"); + usersResponse = appIdService.getUsers(authHeader, APPID_TENANTID, AppIDService.DATASCOPE_FULL, startIndex, USERS_COUNT); + int numberOfUsersOnThisPage = usersResponse.getItemsPerPage(); + for (int i=0; i registeredProfileIds = queryUsers(profileIdToProviderIdMap.keySet()); + log.log(Level.INFO, "Registered users: " + registeredProfileIds.toString()); + // Remove from the map those users who are still registered in the users table. + for(String profileId : registeredProfileIds) { + profileIdToProviderIdMap.remove(profileId); + } + // Remove from the map those users who are admins. + Iterator> iter = profileIdToProviderIdMap.entrySet().iterator(); + while (iter.hasNext()) { + Map.Entry entry = iter.next(); + String profileId = entry.getKey(); + if (isAdmin(profileId)) { + log.log(Level.INFO, "Admin: " + profileId); + iter.remove(); + } + } + // Whatever is left is an unregistered user. Save for deletion after completing the paged scan. + unregisteredUserProviderIds.addAll(profileIdToProviderIdMap.values()); + } while(startIndex < usersResponse.getTotalResults()); + // Remove all unregistered users. + if (unregisteredUserProviderIds.isEmpty()) { + log.log(Level.INFO, "No App ID users need to be removed"); + } else { + for(String providerId : unregisteredUserProviderIds) { + log.log(Level.INFO, "Removing user: " + providerId); + appIdService.removeUser(authHeader, APPID_TENANTID, providerId); + } + } + } finally { + try { + appIdService.close(); + } catch(Exception e) { + e.printStackTrace(); + } + closeDBConnection(); + } + } + + private static String getEnvVar(String name) { + String s = System.getenv(name); + if (s == null) { + throw new RuntimeException("Missing environment variable " + name); + } + return s; + } + + private void getDBConnection() { + try { + // Load the driver + log.log(Level.INFO, "Loading the JDBC driver"); + Class.forName("org.postgresql.Driver"); + // Create the connection + String url = "jdbc:postgresql://" + DB_SERVERNAME + ":" + DB_PORTNUMBER + "/" + DB_DATABASENAME; + log.log(Level.INFO, "Creating a JDBC connection to " + url); + Properties props = new Properties(); + props.setProperty("user", DB_USER); + props.setProperty("password", DB_PASSWORD); + props.setProperty("sslfactory","org.postgresql.ssl.NonValidatingFactory"); + con = DriverManager.getConnection(url, props); + } catch (ClassNotFoundException e) { + System.err.println("Could not load JDBC driver"); + e.printStackTrace(); + throw new RuntimeException(e); + } catch(SQLException sqlex) { + System.err.println("SQLException information"); + System.err.println ("Error msg: " + sqlex.getMessage()); + System.err.println ("SQLSTATE: " + sqlex.getSQLState()); + System.err.println ("Error code: " + sqlex.getErrorCode()); + sqlex.printStackTrace(); + throw new RuntimeException(sqlex); + } + } + + private Set queryUsers(Set profileIds) { + Set registeredProfileIds = new HashSet(); + try { + // Create query statement + StringJoiner sj = new StringJoiner(",", "(", ")"); + for(String id : profileIds) { + sj.add("?"); + } + String query = "SELECT SUBJECT FROM BANK.USERS WHERE SUBJECT IN " + sj.toString(); + // Execute query statement + log.log(Level.INFO, "Querying database"); + PreparedStatement ps = con.prepareStatement(query); + int index = 1; + for(String id : profileIds) { + ps.setString(index, id); + index++; + } + ResultSet rs = ps.executeQuery(); + while(rs.next()) { + registeredProfileIds.add(rs.getString("subject")); + } + // Close the ResultSet + rs.close(); + // Close the PreparedStatement + ps.close(); + } + catch(SQLException sqlex) { + System.err.println("SQLException information"); + System.err.println ("Error msg: " + sqlex.getMessage()); + System.err.println ("SQLSTATE: " + sqlex.getSQLState()); + System.err.println ("Error code: " + sqlex.getErrorCode()); + sqlex.printStackTrace(); + throw new RuntimeException(sqlex); + } + return registeredProfileIds; + } + + private void closeDBConnection() { + try { + con.close(); + } + catch(SQLException sqlex) { + System.err.println("SQLException information"); + System.err.println ("Error msg: " + sqlex.getMessage()); + System.err.println ("SQLSTATE: " + sqlex.getSQLState()); + System.err.println ("Error code: " + sqlex.getErrorCode()); + sqlex.printStackTrace(); + throw new RuntimeException(sqlex); + } + } + + private String getIamToken() { + // Get an IAM token for authentication to App ID API. + log.log(Level.INFO, "Obtaining IAM access token"); + IAMTokenServiceResponse tokenResponse; + try ( IAMTokenService iamTokenService = RestClientBuilder.newBuilder().baseUrl(IAM_SERVICE_URL).build(IAMTokenService.class) ) { + tokenResponse = iamTokenService.getIAMTokenFromAPIKey(IAMTokenService.GRANT_TYPE_APIKEY, IAM_APIKEY); + } catch(Exception e) { + throw new RuntimeException(e); + } + return tokenResponse.getAccessToken(); + } + + private boolean isRecentlyModified(String lastModifiedString) { + ZonedDateTime now = ZonedDateTime.now(); + ZonedDateTime lastModified = ZonedDateTime.parse(lastModifiedString); + Duration duration = Duration.between(lastModified, now); + long diffHours = (long) duration.getSeconds() / (60*60); + return (diffHours < LAST_LOGIN_HOURS); + } + + private boolean isAdmin(String profileId) { + boolean admin = false; + AppIDServiceGetUserRoleResponse userProfileResponse = appIdService.getUserRoles(authHeader, APPID_TENANTID, profileId); + for (AppIDServiceGetUserRoleResponse.Role role : userProfileResponse.getRoles()) { + if (role.getName().equals("admin")) { + admin = true; + break; + } + } + return admin; + } +} diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDService.java b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDService.java new file mode 100755 index 0000000..29ee761 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDService.java @@ -0,0 +1,44 @@ +package com.ibm.codey.loyalty.external.appid; + +import javax.ws.rs.HeaderParam; +import javax.ws.rs.DELETE; +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.QueryParam; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; + +public interface AppIDService extends AutoCloseable { + + public static String DATASCOPE_FULL = "full"; + + @GET + @Path("/management/v4/{tenantId}/users") + @Produces({MediaType.APPLICATION_JSON}) + public AppIDServiceGetUsersResponse getUsers( + @HeaderParam("Authorization") String authorizationHeader, + @PathParam("tenantId") String tenantId, + @QueryParam("dataScope") String dataScope, + @QueryParam("startIndex") int startIndex, + @QueryParam("count") int count + ); + + @GET + @Path("/management/v4/{tenantId}/users/{id}/roles") + @Produces({MediaType.APPLICATION_JSON}) + public AppIDServiceGetUserRoleResponse getUserRoles( + @HeaderParam("Authorization") String authorizationHeader, + @PathParam("tenantId") String tenantId, + @PathParam("id") String profileId + ); + + @DELETE + @Path("/management/v4/{tenantId}/cloud_directory/remove/{userId}") + public void removeUser( + @HeaderParam("Authorization") String authorizationHeader, + @PathParam("tenantId") String tenantId, + @PathParam("userId") String userId + ); + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDServiceGetUserRoleResponse.java b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDServiceGetUserRoleResponse.java new file mode 100755 index 0000000..a847c77 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDServiceGetUserRoleResponse.java @@ -0,0 +1,22 @@ +package com.ibm.codey.loyalty.external.appid; + +import javax.json.bind.annotation.JsonbProperty; + +import lombok.Getter; +import lombok.Setter; + +@Getter @Setter +public class AppIDServiceGetUserRoleResponse { + + @JsonbProperty("roles") + private Role[] roles; + + @Getter @Setter + public static class Role { + + @JsonbProperty("name") + private String name; + + } + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDServiceGetUsersResponse.java b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDServiceGetUsersResponse.java new file mode 100755 index 0000000..d8aadc5 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/appid/AppIDServiceGetUsersResponse.java @@ -0,0 +1,61 @@ +package com.ibm.codey.loyalty.external.appid; + +import javax.json.bind.annotation.JsonbProperty; + +import lombok.Getter; +import lombok.Setter; + +@Getter @Setter +public class AppIDServiceGetUsersResponse { + + @JsonbProperty("totalResults") + private int totalResults; + + @JsonbProperty("itemsPerPage") + private int itemsPerPage; + + @JsonbProperty("users") + private User[] users; + + @Getter @Setter + public static class User { + + @JsonbProperty("id") + private String profileId; + + @JsonbProperty("identities") + private Identity[] identities; + + } + + @Getter @Setter + public static class Identity { + + @JsonbProperty("provider") + private String provider; + + @JsonbProperty("id") + private String providerId; + + @JsonbProperty("idpUserInfo") + private IdpUserInfo idpUserInfo; + + } + + @Getter @Setter + public static class IdpUserInfo { + + @JsonbProperty("meta") + private Meta meta; + + } + + @Getter @Setter + public static class Meta { + + @JsonbProperty("lastModified") + private String lastModified; + + } + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/iam/IAMTokenService.java b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/iam/IAMTokenService.java new file mode 100755 index 0000000..0ae8ec3 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/iam/IAMTokenService.java @@ -0,0 +1,21 @@ +package com.ibm.codey.loyalty.external.iam; + +import javax.ws.rs.Consumes; +import javax.ws.rs.FormParam; +import javax.ws.rs.POST; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; + +public interface IAMTokenService extends AutoCloseable { + + public final static String GRANT_TYPE_APIKEY = "urn:ibm:params:oauth:grant-type:apikey"; + + @POST + @Consumes({MediaType.APPLICATION_FORM_URLENCODED}) + @Produces({MediaType.APPLICATION_JSON}) + public IAMTokenServiceResponse getIAMTokenFromAPIKey( + @FormParam("grant_type") String grantType, + @FormParam("apikey") String apiKey + ); + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/iam/IAMTokenServiceResponse.java b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/iam/IAMTokenServiceResponse.java new file mode 100755 index 0000000..eee6ab8 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/bank-user-cleanup-utility/src/main/java/com/ibm/codey/loyalty/external/iam/IAMTokenServiceResponse.java @@ -0,0 +1,17 @@ +package com.ibm.codey.loyalty.external.iam; + +import javax.json.bind.annotation.JsonbProperty; + +import lombok.Getter; +import lombok.Setter; + +@Getter @Setter +public class IAMTokenServiceResponse { + + @JsonbProperty("access_token") + public String accessToken; + + @JsonbProperty + public long expiration; + +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/data_model/.gitignore b/kubernetes/dev/tekton/examples/example-bank/data_model/.gitignore new file mode 100755 index 0000000..00f5db1 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/data_model/.gitignore @@ -0,0 +1 @@ +.~/ diff --git a/kubernetes/dev/tekton/examples/example-bank/data_model/Dockerfile b/kubernetes/dev/tekton/examples/example-bank/data_model/Dockerfile new file mode 100755 index 0000000..2753862 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/data_model/Dockerfile @@ -0,0 +1,3 @@ +FROM postgres +COPY cc_schema.sql /tmp +CMD /usr/bin/psql postgres://$DB_USER:$DB_PASSWORD@$DB_SERVERNAME:$DB_PORTNUMBER -f /tmp/cc_schema.sql diff --git a/kubernetes/dev/tekton/examples/example-bank/data_model/README.md b/kubernetes/dev/tekton/examples/example-bank/data_model/README.md new file mode 100755 index 0000000..55acf2d --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/data_model/README.md @@ -0,0 +1,5 @@ +### Secrets + +``` +kubectl create secret generic bank-db-secret --from-literal=DB_SERVERNAME=48f106c1-94cb-4133-b99f-20991c91cb1a.bn2a2vgd01r3l0hfmvc0.databases.appdomain.cloud --from-literal=DB_PORTNUMBER=30389 --from-literal=DB_DATABASENAME=ibmclouddb --from-literal=DB_USER=ibm_cloud_0637cd24_8ac9_4dc7_b2d4_ebd080633f7f --from-literal=DB_PASSWORD= +``` diff --git a/kubernetes/dev/tekton/examples/example-bank/data_model/cc_schema.sql b/kubernetes/dev/tekton/examples/example-bank/data_model/cc_schema.sql new file mode 100755 index 0000000..898fda0 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/data_model/cc_schema.sql @@ -0,0 +1,48 @@ +CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; +CREATE DATABASE example; +\connect example; +CREATE SCHEMA IF NOT EXISTS bank; +set search_path to bank; + + CREATE TABLE IF NOT EXISTS users ( + user_id VARCHAR, + subject VARCHAR UNIQUE, + consent_given BOOLEAN NOT NULL, + delete_requested BOOLEAN NOT NULL, + PRIMARY KEY (user_id) + ); + + CREATE TABLE IF NOT EXISTS events ( + event_id VARCHAR, + event_name VARCHAR NOT NULL, + point_value INTEGER, + location VARCHAR, + start_time TIMESTAMP, + end_time TIMESTAMP, + description VARCHAR, + PRIMARY KEY (event_id) + ); + + -- Events attended by users + CREATE TABLE IF NOT EXISTS user_event ( + usr VARCHAR NOT NULL, + event VARCHAR NOT NULL, + PRIMARY KEY (usr, event), + FOREIGN KEY (usr) REFERENCES users(user_id) ON UPDATE CASCADE, + FOREIGN KEY (event) REFERENCES events(event_id) ON UPDATE CASCADE + ); + + -- Transactions + CREATE TABLE IF NOT EXISTS transactions ( + transaction_id VARCHAR UNIQUE, + usr VARCHAR NOT NULL, + transaction_name VARCHAR, + amount NUMERIC(15,2), + category VARCHAR, + points_earned REAL, + processed BOOLEAN NOT NULL, + date TIMESTAMP, + PRIMARY KEY (transaction_id, usr), + FOREIGN KEY (usr) REFERENCES users(user_id) ON UPDATE CASCADE + ); + diff --git a/kubernetes/dev/tekton/examples/example-bank/data_model/drop-schema/Dockerfile b/kubernetes/dev/tekton/examples/example-bank/data_model/drop-schema/Dockerfile new file mode 100755 index 0000000..39846cb --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/data_model/drop-schema/Dockerfile @@ -0,0 +1,3 @@ +FROM postgres +COPY drop.sql /tmp +CMD /usr/bin/psql postgres://$DB_USER:$DB_PASSWORD@$DB_SERVERNAME:$DB_PORTNUMBER -f /tmp/drop.sql diff --git a/kubernetes/dev/tekton/examples/example-bank/data_model/drop-schema/drop.sql b/kubernetes/dev/tekton/examples/example-bank/data_model/drop-schema/drop.sql new file mode 100755 index 0000000..3e773e0 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/data_model/drop-schema/drop.sql @@ -0,0 +1,2 @@ +DROP EXTENSION "uuid-ossp"; +DROP DATABASE example; diff --git a/kubernetes/dev/tekton/examples/example-bank/data_model/drop-schema/job.yaml b/kubernetes/dev/tekton/examples/example-bank/data_model/drop-schema/job.yaml new file mode 100755 index 0000000..bf5351f --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/data_model/drop-schema/job.yaml @@ -0,0 +1,17 @@ +apiVersion: batch/v1 +kind: Job +metadata: + name: cc-schema-unload + labels: + app: cc-schema-unload +spec: + template: + spec: + restartPolicy: Never + containers: + - name: cc-schema-unload + image: ykoyfman/drop-schema + imagePullPolicy: Always + envFrom: + - secretRef: + name: bank-db-secret diff --git a/kubernetes/dev/tekton/examples/example-bank/data_model/job.yaml b/kubernetes/dev/tekton/examples/example-bank/data_model/job.yaml new file mode 100755 index 0000000..09925d3 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/data_model/job.yaml @@ -0,0 +1,17 @@ +apiVersion: batch/v1 +kind: Job +metadata: + name: cc-schema-load + labels: + app: cc-schema-load +spec: + template: + spec: + restartPolicy: Never + containers: + - name: cc-schema-load + image: ykoyfman/bank-schema:1.0 + imagePullPolicy: Always + envFrom: + - secretRef: + name: bank-db-secret diff --git a/kubernetes/dev/tekton/examples/example-bank/deployment.yaml b/kubernetes/dev/tekton/examples/example-bank/deployment.yaml new file mode 100755 index 0000000..c9b99d0 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/deployment.yaml @@ -0,0 +1,56 @@ +--- + apiVersion: v1 + kind: Service + metadata: + name: mobile-simulator-service + labels: + app: mobile-simulator + spec: + ports: + - port: 80 + protocol: TCP + targetPort: 8080 + type: LoadBalancer + selector: + app: mobile-simulator +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: mobile-simulator-deployment + labels: + app: mobile-simulator +spec: + selector: + matchLabels: + app: mobile-simulator + strategy: + type: Recreate + template: + metadata: + labels: + app: mobile-simulator + spec: + containers: + - image: ykoyfman/mobile-simulator:css-fix + imagePullPolicy: Always + name: mobile-simulator + envFrom: + - secretRef: + name: mobile-simulator-secrets + env: + - name: PORT + value: '8080' + ports: + - containerPort: 8080 + +--- +apiVersion: v1 +kind: Route +metadata: + name: mobile-simulator-service +spec: + to: + kind: Service + name: mobile-simulator-service + diff --git a/kubernetes/dev/tekton/examples/example-bank/design/icons.ai b/kubernetes/dev/tekton/examples/example-bank/design/icons.ai new file mode 100755 index 0000000..c652c03 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/design/icons.ai @@ -0,0 +1,1276 @@ +%PDF-1.5 %âãÏÓ +1 0 obj <>/OCGs[30 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream + + + + + application/pdf + + + icons + + + Adobe Illustrator 24.0 (Macintosh) + 2020-04-24T21:04:14-04:00 + 2020-04-24T21:04:16-04:00 + 2020-04-24T21:04:16-04:00 + + + + 256 + 64 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAQAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A6gvniK3H1aLSbP07b9wC 8QdmMQ4FiQU6kE9M12p7VxYZmEhMkVyArcX3ux03ZWbNATjKABvmTexruVIfPqGaMSaRZNGXUOBD wPEkA0Ys+9Om2V4u2cM5iIjO5GuQ6/Fnl7Gz44GZljqIvmenwZnqN/PpvlGzezPpSulpbROqhuHr FIgVU/Dy+Kicvh5Urtm1dbEWQLphn5c+fdX1fV4oLhZVhmlaB45WMq19CWfkGdUdXj9EI4HwHltx NK1Yshnezvu3exoaLg4Z8XFfPnt126H5vRdT1K5t57e0s7dbm9uubIkjmKNY4qc5HcLIQAXVRRTU kdqkWvPpIdU1aS7vIYNUt5ddsl9d/L8HB4vRr8MZkdUmMjL+3yAUkVWnUoTDU9clfyrqGq6UQlxb Qzui3MbfBJb8uaSR1RqgoR199xilJtY1bVdL1PUme8R7eeK2iQSu8KW9xMrIog9OK7Z2do+XxLSv ECpJxQm/li5vbrQGtnN1Fe2fKzN5fxAPLLGg/wBICV+NGZqrvvgLOBAIJFhKdX1m+8saZpy6trCm e4laJnMKSGm7lyWeIlIk2ZqV6bb5XxcI3dtj0R1uWZwR4YxF/o895HkE5tbvU4Nbh0+6uobyO5t5 J19OP0pI/SZFqaO4KP6lO1CO9drXTojWtVFroeq3tnJHJcWFvPIBXkFlijLhXAPiNxkIzBujyZSh KNWKtLpLbWotb04XGvQ8HL/6F6SxNMFWrBV5Nz26/wAvXAeY3c3TmPgTvGZHb1fzff3fpVtRvLlL 2RFnKguEjiCsx2RG24kd3zBzZJCZAPX9AZ4MUTAEjp5d5/Ul2qalqFtqa2K3ciuIzJyCj4iVZgOL MxIHChP66GmNnzzjk4OI8r/G/l+N6ytPghLHx8I5193l5/ja5DrF7NZ2ZnhVWcHo9aUCk9vlm6dG gh5hC20by8I5Wd4yDWjMpHFVoWpyB+0dh3xVOsVYl+nL7/HPo0u/0R/vBz9NPq/1z0/X+1z9SnDb lwpy2rlXEeLyd3+Uh+Tv0eL9fM8XBfD3Vz6Xy3pluWukQV7cSxzx8OfCP45+IBAQmm9SD2P68VRu KsB07W9WnvIr651wQwz2VuJLYWMzQR3Dxm6b97/dcvSkX9up8MoEjzt6XPpMUYGEcVkTlv4kbMb4 OXP6geiM8u6nqq6sLa41M38d3cSyiKW0mtXjheNnh4+sEPGsTDYEe+SiTfNo12nxeFxRhwGMQLE4 yBIIEvpvfcMhmuJ/rJPr+nHEzc0EbN8PHqSPfLXQuE863Bb6xzRmRQhjZR9sK9Cdv2sVQ939cPma 3WPVY4YjbuTpjBTI3UeoF6kcipr240H2mpA8+bsMfB+XJOMk8Q9fT3ff7+K+gtX6j5h/6ukX/SKP +qmGj3tfi4P9TP8Apv2IucSgQD11jPIByQBzPgB7+GScQ815juamkwA7Dh/bihVQOFAduTdyBT8M VbxViPl1fMGlaaLeHTFvYJXa5inW4SOqzn1OJRxUFeVMmaPVqFjoiNV/xJq1i+nNpS2iTtGHuHuU cIqurMeKip2XYYRQ3tZcRFUmI0+HUvLCWE4rFc2axN7cowAw8CDuDlbakfkubVNVv5dT1a1kt57G 3jsbcSd2LF55B7vxjrTwwlDJNR0tbyS3nSeS1urViYp4uJPFqB42Dqysj0FRTsCKEYEpdB5ctItc uJ4rVIY0t4DZ3AUEpcGS6Mziu/IicFq9a4bVVudBKeW9S0y1cy3N7Dc8p5iAZJ7hWqzlFAG7dl2G Nqx3WRq0slxeiPVIDdTWai0W3tpfSEbcJACrvy5czvWn83JNsrmCOruOz8mKdQlCHpjP1SJF93y+ 7lUt2RrpOrw6PqlsupyXF9dm4ezuZAF9AypSJV412Q7/AD6ACgEoinA1OaOQjhiIVEDbqe/8fad2 Maj5U8v6lb2yT+Xb/T5YAwk+pmBWcPxDrJKkh9UNwB5E8u9QcE8Ylzcjs/tTLpeLw69Vcxe4uj8L LIdGubWLWLjT7XRW09PSSeS6Eax82YKf3hUUJ+OgPNiSr1AoCzxb01ZNMBhGXiBMjy6/jv26xom9 k/M/lPSb7RNTWPTYLm/mtrhbUyIrssro3ERtJX06ua7UFd8jDFGBJA5uPkzSmACeSAgj0SHXNOS2 8rSWbuzEXCwpCqkDZmWHlG/Hr+8I49VqdsMuY2c7TCX5fJWQRH83v/Tvy25/xUE3v7rUbW8lFrby SJIVdmVajlxC7fCey5h5sk4TPCCb/Hcxw48c4DiIBH470M99q9wDFJaShZAY2fhuFbY78MqOXLLY xO/l+xtGLFHcSG2/P9qcapam5s2iCCRqiiMWUHejbqyH7JPfNo6pAafpd9FLIZQiqZo3UKajihat CeR7jrT54qnWKsU4N/jX6jVvq3L9JcKber6Po/ap9nvSv2sq/ip3V/4Jx/xfR8OLi/HkyvLXSoK+ FJkUVpOojceIEiin/Au2Ko3FXl2mRKv1K5Nzp8TpawRn1o4jMnGyWFkcG1aUsJQd/X+ztTMYfB7H USJ4o8OQ+qR2Jo/vDKx+8quH+hz3tMfK9usOt2aJJaOCzOUtFiqCsMisztFbWYoeShQVNN998lAb uJ2hPiwyJE/86/50dhc5+d7j3MquF5Ty/FGCGNPUAqCQN90eo+kZe8y0APWDBozykX7AHI/vVI6I p6dfiOKoa/8AqP8Aim3SXSpZ53t3IvQCYqBXHEr/AHZIUsnJviHqBRs7Uga4uTs8PH+WJGQAcX09 enx7jQ2PDZ3iEN9Q8uf9Sl/052v/ADVgodzd42o/5SP9nP8AUn04hCWw+rErUBEApwG2xA2+jptl jqJcze7njteRrZcjU1bghr79cWKIhCCMBI/SXeiUApv4DFV+KoRdH0hVCrY26qooqiJAAB2G2Kt/ onSv+WKD/kUn9MVREUUUUSRRIscUahY41AVVVRQAAbAAYquxV2KuxV2KuxV2KuxV2KuxV2KuxV2K uxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxVTubm2tYHuLmVIIIxWSWRgiKPEs1AMSaZ4 8cpnhiCSegU7LUNPv4TPY3MV3CGKmWB1kXkNyOSkiu+AEHkyy4J4zU4mJ8xX3ojC1LEnhdiiSKzL 9pQQSPmBiq/FXYq7FXYq7FUDqmu6LpMayanfQWSOaIZ5Fj5H25EVwiJPJjKQHMom2urW6gWe1mSe BxVJYmDow8Qykg4CEg2q4pdiqncXFvbQtPcSpDCgq8sjBVUeJY0AxpBNIPTfMWhanI0en38F1Im7 RxyKzU7NxrXiezdDkjEjmiMweRTDIslkU8M3P0nD+mxRwOzDqDkYzEuXRlKBjV9V0jpGjSOQqICz MegA3JyTFTtLy1vLaO5tZVnt5RWOVCGVh02IwkUgG1XAlDwahYzyyxQzxvLDIYZY1YclkChipHWv E1+WCw2zwziASCARY93eiMLUoXGoWFs4S4uYoXI5BZHVCR0rQkZXPNCJqUgPeW2GGcxcYk+4KqTR OQEdWJUOACD8J6N8jkxIHkWBiRzC7CxQ0GqaZcXc1nb3cM13bf70W0ciNJH/AK6A8l698AIbp6fJ GInKMhGXI0aPuKJwtKwzQiQRGRRKwqIyRyI8adcVX4qgxrOjtefUlvrc3lafVhKnq18OFeX4YOIN 50uXg4+GXB30a+aMwtDsVeda3bea/Net6jo6SadBZaBf2txHFPBNKZgYhLGJaSBGQ8jyUKOmUSEp EjbZ6rSZNNo8MMpGQzzY5CxKI4d6NemwdtjaVaVrLaNr99MmtaJbm6uoNOvrSGxvERZ7cuvCMK9A 7cmBY1GwyAlR5hzNRpRnwQBxZpcMZTjI5IE8Mq3O3Lltseb02/lu/Wit7covrq9WcE04gdKEeOZT xKAME1rLCvqWscsCGQUjcFkClSWIO/jiqTfmPA+p+XtLshcGJdR1KzglmhGxWRjX4XqCK70bKsws V5u99n8ox5p5K4uDFOXyDzXQvKekapq8enNqf1cyllSQXOjTsWUVCiKB3kJNOy5jRgCav7nsNZ2l lw4jk4OKv6OeP2yAH2vSfy7tZNP8tavp/rvOLDUL63ilegPGM7UC0C770GZOEUK83j/aDKMmaGSu HjxQl8wmJtraN1jeYg0Usxe2WnIA9GIbv4Za6JM9OtRa300SyGRGijfeg3LOP2QB2xV5tNpl9Z+e NR+o6i9u91qc0TTG3tJpgj6adQ4rLNDJJxD/AABa0C5k3cfh+mnDMSJmj18u60y/KrT3GpXeoy3B ea507T55I44oLeIveRGZyY4I4lZlK0DHemRynameAb35BNvNywDX7aTUtAn17TmijhtokijuIYpp JH9V2jkPHnQRUZqALy37HCnz3FvUdmE+BIY8scM7JO5iSABQsdPq26mtu5LyrdarF5hk0y006/st Ch5s0F9HEIYuY5ILaRDypzqOFXCilCv2QwJuq2Z9o48RwDJOeOeY1vEmz38QPl19JJ7+ZH/mPHpk mg24vywjGoWLAo0iMF+soJiDEQwpAZN+3zpmViu9nmM1Vv3hg/kuayuvMukS3l1d3N1Ex9I3U93K FZrNQaCVmUVlZxls+RaMdGQv8bPXpzKIJDCAZQp9MHpypt+OYk7o1zc6FWL5MXgF89zbyWF9M+pT FBqKTwxIipGp5CQrCjfCx4j4qnx7jUQ4zIGEjxmuKwOQ7/SPdz/W7ifAIkTjHwxfDUjdnu9R6b8v 1MrzculeXzpcafqOr2q6TBcxW1zNcNOyO5WK5Y3ALlHAVRzYCvYZkDcDdxTsTszzytaG18vWEJk9 ZvRWRpB0Jl/eHjUn4attv0ymZ3b4Coh55ceVDqnmDWHnvLCxmS6Z3s54mE4iEjPFKlx6iTLHKCHP psoD1pTfMQwsl7eHaPg4MYjHJMGP1A7XVEGPCY3Hl6gSY1d7M18j3l9c6ZP68qXVpBO0On3sfMie FAPjDSPIzqrlkVyxLBa1PU24yadB2vihDIOEGMjG5RNek92wABqiRW115IbXp3TXpfTubeHjBa+u k5UFo+VzyC8iOnIHb2zVauRGY0Yj0xu+71/j5NujgDhFxkfVKq7/AEfj5rfJ0r3d6LiSnO2sILUF K8CvJnWta/FSnfB2bIznxH+GEYp7TiIQ4RylklL9DXme+8wXd7qOm6NdNZfoywF5NJDGkk8003qi CGMOrqq/uCWPGpqAKZtZkmwOidBhwQhDJljx+Jk4RZIiAOHikar+dtvXUsV0S3l1XWoDp93ZtqIu Y9XkuZYbmC9RKRR3cQrGsbo26EcqfFXtlcRZ297udXMYcJ44z4OE46BjKBPqMD9Vgjny6PT7uSb1 IoIWCPKSTIQDxVRvQHvvmS8UlcitNL6bSK07r6P70MrBkdyrKyrStDirHvzn8wapofkUvZSNHdXk 0dm9xHUMiujO7KR0r6fGvvlOokRHZ6T2U0WPUawCYuMImVd9UP038HzGHYMHBIcGoau9fGua59fo VT6k/J3zBqGueR7afUHaW5t5HtmnfdpFjoVYk9TxahPembHBImO7477T6KGn1kow2jICVd1s2y55 5i2seSLi71i41XTdbvNInvEjS7S39Nkk9EFY2o6kggGnXK5Y7Ng07nS9rRhiGLJihljG+G72vnyS WT8vPNBupZRrUBR9UF8vK2jLeiCx9Njx3ff7WQ8KXf1c8dt6bhA8KX91wfUeff7vJntza+sY2WRo pIiSjrQncEHZgR3y95dQexumct9YD/u2SrxoWq1aGoA2HhiqC13y6+q6XbWou2tLqznhure6jjRg ssBqpMbDiR7ZGcbDm6DWfl5kmPHGUTEjlsfMJTH5L8xRSCWLzEiSjcOum2YYH5ha5Dwz3/Y7CXau Aijhsf8ADZ/rTnQPLy6VptxayXL3k15NNc3dy6qheWc1chUHFR7ZOEaDr9drPHmCI8MYxEQOdAeZ RQsLkAAXWwAArGh2G3hknCVbe1eOZ5pJTLIyqlSAoCqSeg/1sVeeXf5ZeabrUZtQfW4EuZ5muWMc d4oEjxmElQLrb90eA/ydsvGUVVOKcEibv7/1pr5L8j655d1EzS6jBcWjwpbyQKlxy4QrxhCmSeVR w6D4em2RnkEgzx4jE8061TTvNk2opLp2rw2lgGjL2z2olcqv94vqFhTl8tsxyJXsXcafPpY4yMmM ynvvxV7tq6Kek6X50gvIJNS1yC9tU5evAlmIWeqsF+MSNSjEH7PbGIl1LPU6jSSgRjxShLoeO6+F fpTHWtJt9TsJYHige44OLSW5hSdYpWUhX4OKGh7d8siaLqZRsJNoHkz6jey3OojTruhRrRbfTobU wupqWDAyMd+m+2TlO+TCGOjvXyZNLDFNG0UyLJG32kcBlPzBymURIURYb4yMTYNFJbXy2Eume5Wz ltyxKwraRoQu9By3r2zBx6KpXLgMe7gDn5NdcajxiXfxlN7lJ2tZY7Z1hnKMsEjLyVHIorFaioB7 VzYB1xtiz+X/AD88MynzBaCabiGkGnpQqK1VgztyrXavTfx2s4o9zTwT7/sZDo1tqdtp8cOpXKXd 2nLnPHGIVI5HiAgJAotBkJEXs2RBA3YxceUPN96kf6R1mwvJY3qjTaXE4Vfg2Xk54k8Wr8+1MoMJ Hmfseih2npcZPh48kQR0ykd/Pb3J9omn69avKdT1JL2NgBbwx26QLGAB3BJY/wCdMsiCOZdZq82G YHhwMD1JkZWjdQhv5YAtlcLbTcgTI8fqjjvUcar+vIZozI9B4T7rcfDKAPrHEPfS+zjuo7WNLqUT 3CikkqrwDGvXiOmHEJCIEjcu9GUxMiYio9yV6v5furjUY9V0u+OnamkX1eSQxieGaEEsqSxEoTwY kqVYEVPjhlHexzczTa2McZxZIceO758JB7wd+Y5gg9O5vRvL81nez6nqF62o6rcIsLT8BFHHEpLC OGIFuCljU1YknqcYxo2eaNVrROAx448GOJursk98j1+QA7kzubb1ghVzHLGeUcgoSDSh2PUHJuAs jtJTMstxN6rR19NVXgoJFOVKtU0xVBeafLWneZNEuNIvwfRnAKyL9uN1NVda9wcjOAkKLm9n6/Jp Mwyw5j7R3PGV/wCccNd+vcG1a1+oV/vgknrU/wCMVOP/AA+Yn5U3ze+Ptzh4L8OXH3bV8+f2PavL fl/T/L2i22kaepFtbLQM27OxPJnYjuzGuZcIiIoPn+u1s9Vmlln9UvxSZZJxHYq7FXYq7FXYq7FX Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FWCeftb1BLtdOtXeKF UDzMlQWLV2qOwGU5JHk9H2NpIGPiSom9nmNp5x1ny75oe4gnka2Dr9ZtGYlJEKjkOJ2DU6HKBMxL 1+TszFqtMIyA4q2l1D6JzNfLXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY q7FXYq7FXYq7FXYq7FXYqx/zN5bk1F1ubVgLhV4sjbBlG438chKNuz0GuGIcMvpYDaflHq195oe9 1X04NLWRXZAweSUKB8IC1ABpuScpGEk7vTZPaXFj0whis5K+Af/Z + + + + uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 + xmp.did:a929a955-ac55-4b72-9c20-ebcb1b8c2358 + uuid:fc29744c-d92f-fd4c-aed0-fbbd156f5331 + proof:pdf + + uuid:dab6724e-c618-4184-9b2e-7d44879e5e5f + xmp.did:008add62-65b7-3547-8416-6472cd533b2c + uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 + proof:pdf + + + + + saved + xmp.iid:a929a955-ac55-4b72-9c20-ebcb1b8c2358 + 2020-02-11T12:01:51-05:00 + Adobe Illustrator CC 22.0 (Macintosh) + / + + + + Basic RGB + Document + AIRobin + 1 + False + False + + 500.000000 + 500.000000 + Pixels + + + + + IBMPlexSans + IBM Plex Sans + Regular + Open Type + Version 3.1 + False + IBMPlexSans-Regular.ttf + + + + + + Cyan + Magenta + Yellow + Black + + + + + + Default Swatch Group + 0 + + + + White + RGB + PROCESS + 255 + 255 + 255 + + + Black + RGB + PROCESS + 0 + 0 + 0 + + + RGB Red + RGB + PROCESS + 255 + 0 + 0 + + + RGB Yellow + RGB + PROCESS + 255 + 255 + 0 + + + RGB Green + RGB + PROCESS + 0 + 255 + 0 + + + RGB Cyan + RGB + PROCESS + 0 + 255 + 255 + + + RGB Blue + RGB + PROCESS + 0 + 0 + 255 + + + RGB Magenta + RGB + PROCESS + 255 + 0 + 255 + + + R=193 G=39 B=45 + RGB + PROCESS + 193 + 39 + 45 + + + R=237 G=28 B=36 + RGB + PROCESS + 237 + 28 + 36 + + + R=241 G=90 B=36 + RGB + PROCESS + 241 + 90 + 36 + + + R=247 G=147 B=30 + RGB + PROCESS + 247 + 147 + 30 + + + R=251 G=176 B=59 + RGB + PROCESS + 251 + 176 + 59 + + + R=252 G=238 B=33 + RGB + PROCESS + 252 + 238 + 33 + + + R=217 G=224 B=33 + RGB + PROCESS + 217 + 224 + 33 + + + R=140 G=198 B=63 + RGB + PROCESS + 140 + 198 + 63 + + + R=57 G=181 B=74 + RGB + PROCESS + 57 + 181 + 74 + + + R=0 G=146 B=69 + RGB + PROCESS + 0 + 146 + 69 + + + R=0 G=104 B=55 + RGB + PROCESS + 0 + 104 + 55 + + + R=34 G=181 B=115 + RGB + PROCESS + 34 + 181 + 115 + + + R=0 G=169 B=157 + RGB + PROCESS + 0 + 169 + 157 + + + R=41 G=171 B=226 + RGB + PROCESS + 41 + 171 + 226 + + + R=0 G=113 B=188 + RGB + PROCESS + 0 + 113 + 188 + + + R=46 G=49 B=146 + RGB + PROCESS + 46 + 49 + 146 + + + R=27 G=20 B=100 + RGB + PROCESS + 27 + 20 + 100 + + + R=102 G=45 B=145 + RGB + PROCESS + 102 + 45 + 145 + + + R=147 G=39 B=143 + RGB + PROCESS + 147 + 39 + 143 + + + R=158 G=0 B=93 + RGB + PROCESS + 158 + 0 + 93 + + + R=212 G=20 B=90 + RGB + PROCESS + 212 + 20 + 90 + + + R=237 G=30 B=121 + RGB + PROCESS + 237 + 30 + 121 + + + R=199 G=178 B=153 + RGB + PROCESS + 199 + 178 + 153 + + + R=153 G=134 B=117 + RGB + PROCESS + 153 + 134 + 117 + + + R=115 G=99 B=87 + RGB + PROCESS + 115 + 99 + 87 + + + R=83 G=71 B=65 + RGB + PROCESS + 83 + 71 + 65 + + + R=198 G=156 B=109 + RGB + PROCESS + 198 + 156 + 109 + + + R=166 G=124 B=82 + RGB + PROCESS + 166 + 124 + 82 + + + R=140 G=98 B=57 + RGB + PROCESS + 140 + 98 + 57 + + + R=117 G=76 B=36 + RGB + PROCESS + 117 + 76 + 36 + + + R=96 G=56 B=19 + RGB + PROCESS + 96 + 56 + 19 + + + R=66 G=33 B=11 + RGB + PROCESS + 66 + 33 + 11 + + + + + + Cold + 1 + + + + C=56 M=0 Y=20 K=0 + RGB + PROCESS + 101 + 200 + 208 + + + C=51 M=43 Y=0 K=0 + RGB + PROCESS + 131 + 139 + 197 + + + C=26 M=41 Y=0 K=0 + RGB + PROCESS + 186 + 155 + 201 + + + + + + Grays + 1 + + + + R=0 G=0 B=0 + RGB + PROCESS + 0 + 0 + 0 + + + R=26 G=26 B=26 + RGB + PROCESS + 26 + 26 + 26 + + + R=51 G=51 B=51 + RGB + PROCESS + 51 + 51 + 51 + + + R=77 G=77 B=77 + RGB + PROCESS + 77 + 77 + 77 + + + R=102 G=102 B=102 + RGB + PROCESS + 102 + 102 + 102 + + + R=128 G=128 B=128 + RGB + PROCESS + 128 + 128 + 128 + + + R=153 G=153 B=153 + RGB + PROCESS + 153 + 153 + 153 + + + R=179 G=179 B=179 + RGB + PROCESS + 179 + 179 + 179 + + + R=204 G=204 B=204 + RGB + PROCESS + 204 + 204 + 204 + + + R=230 G=230 B=230 + RGB + PROCESS + 230 + 230 + 230 + + + R=242 G=242 B=242 + RGB + PROCESS + 242 + 242 + 242 + + + + + + + Adobe PDF library 15.00 + + + + + + + + + + + + + + + + + + + + + + + + + endstream endobj 3 0 obj <> endobj 32 0 obj <> endobj 33 0 obj <> endobj 34 0 obj <> endobj 35 0 obj <> endobj 36 0 obj <> endobj 48 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 49 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 50 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 51 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 52 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 53 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 54 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 55 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 66 0 obj <>stream +H‰LK +1D÷}Šº@’ηFq5ÈàÂu¥0æþ`>“ࢋΣªš¨k€Zãx + žÛˆ"ßÝñ!nŒ˜ Á`©g ÅL/™¾mguža¬‘~ÒñM…Z³t~‚˜Ò; aÊ…!‘„íŽ +ÿ‡Ê«šÊ2hOŒ–½i?aj¨»[Á“V:/ù£+ýY50> endstream endobj 30 0 obj <> endobj 67 0 obj [/View/Design] endobj 68 0 obj <>>> endobj 58 0 obj <> endobj 57 0 obj [/ICCBased 69 0 R] endobj 69 0 obj <>stream +H‰œ–yTSwÇoÉž•°Ãc [€°5la‘QIBHØADED„ª•2ÖmtFOE.®c­Ö}êÒõ0êè8´׎8GNg¦Óïï÷9÷wïïÝß½÷ó '¥ªµÕ0 Ö ÏJŒÅb¤  + 2y­.-;!à’ÆK°ZÜ ü‹ž^i½"LÊÀ0ðÿ‰-×é @8(”µrœ;q®ª7èLöœy¥•&†Qëñq¶4±jž½ç|æ9ÚÄ +V³)gB£0ñiœWו8#©8wÕ©•õ8_Å٥ʨQãüÜ«QÊj@é&»A)/ÇÙgº>'K‚óÈtÕ;\ú” Ó¥$ÕºF½ZUnÀÜå˜(4TŒ%)ë«”ƒ0C&¯”阤Z£“i˜¿óœ8¦Úbx‘ƒE¡ÁÁBÑ;…ú¯›¿P¦ÞÎӓ̹žAü om?çW= +€x¯Íú·¶Ò-Œ¯Àòæ[›Ëû0ñ¾¾øÎ}ø¦y)7ta¾¾õõõ>j¥ÜÇTÐ7úŸ¿@ï¼ÏÇtÜ›ò`qÊ2™±Ê€™ê&¯®ª6ê±ZL®Ä„?â_øóyxg)Ë”z¥ÈçL­UáíÖ*ÔuµSkÿSeØO4?׸¸c¯¯Ø°.òò· åÒR´ ßÞô-•’2ð5ßáÞüÜÏ ú÷Sá>Ó£V­š‹“då`r£¾n~ÏôY &à+`œ;ÂA4ˆÉ 䀰ÈA9Ð=¨- t°lÃ`;»Á~pŒƒÁ ðGp| ®[`Lƒ‡`<¯ "A ˆ YA+äùCb(ЇR¡,¨*T2B-Ð +¨ꇆ¡Ðnè÷ÐQètº}MA ï —0Óal»Á¾°ŽSàx ¬‚kà&¸^Á£ð>ø0|>_ƒ'á‡ð,ÂG!"F$H:Rˆ”!z¤éF‘Qd?r 9‹\A&‘GÈ ”ˆrQ ¢áhš‹ÊÑ´íE‡Ñ]èaô4zBgÐ×Á–àE#H ‹*B=¡‹0HØIøˆp†p0MxJ$ùD1„˜D, V›‰½Ä­ÄÄãÄKÄ»ÄY‰dEò"EÒI2’ÔEÚBÚGúŒt™4MzN¦‘Èþär!YKî ’÷?%_&ß#¿¢°(®”0J:EAi¤ôQÆ(Ç()Ó”WT6U@ æP+¨íÔ!ê~êêmêæD ¥eÒÔ´å´!ÚïhŸÓ¦h/èº']B/¢éëèÒÓ¿¢?a0nŒhF!ÃÀXÇØÍ8ÅøšñÜŒkæc&5S˜µ™˜6»lö˜Iaº2c˜K™MÌAæ!æEæ#…寒°d¬VÖë(ëk–Íe‹Øél »—½‡}Ž}ŸCâ¸qâ9 +N'çÎ)Î].ÂuæJ¸rî +î÷ wšGä xR^¯‡÷[ÞoÆœchžgÞ`>bþ‰ù$á»ñ¥ü*~ÿ ÿ:ÿ¥…EŒ…ÒbÅ~‹ËÏ,m,£-•–Ý–,¯Y¾´Â¬â­*­6X[ݱF­=­3­ë­·YŸ±~dó ·‘ÛtÛ´¹i ÛzÚfÙ6Û~`{ÁvÖÎÞ.ÑNg·Åî”Ý#{¾}´}…ý€ý§ö¸‘j‡‡ÏþŠ™c1X6„Æfm“Ž;'_9 œr:œ8Ýq¦:‹ËœœO:ϸ8¸¤¹´¸ìu¹éJq»–»nv=ëúÌMà–ï¶ÊmÜí¾ÀR 4 ö +n»3Ü£ÜkÜGݯz=Ä•[=¾ô„=ƒ<Ë=GTB(É/ÙSòƒ,]6*›-•–¾W:#—È7Ë*¢ŠÊe¿ò^YDYÙ}U„j£êAyTù`ù#µD=¬þ¶"©b{ųÊôÊ+¬Ê¯: !kJ4Gµm¥ötµ}uCõ%—®K7YV³©fFŸ¢ßY Õ.©=bàá?SŒîƕƩºÈº‘ºçõyõ‡Ø Ú† žkï5%4ý¦m–7Ÿlqlio™Z³lG+ÔZÚz²Í¹­³mzyâò]íÔöÊö?uøuôw|¿"űN»ÎåwW&®ÜÛe֥ﺱ*|ÕöÕèjõê‰5k¶¬yÝ­èþ¢Ç¯g°ç‡^yïkEk‡Öþ¸®lÝD_pß¶õÄõÚõ×7DmØÕÏîoê¿»1mãál {àûMśΠnßLÝlÜ<9”úO¤[þ˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ +¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ ÷„óû endstream endobj 7 0 obj <> endobj 16 0 obj <> endobj 17 0 obj <>stream +%!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 17.0 %%AI8_CreatorVersion: 24.0.0 %%For: (Anton McConville) () %%Title: (icons.ai) %%CreationDate: 2020-04-24 9:04 PM %%Canvassize: 16383 %%BoundingBox: -1 -1840 7630 1 %%HiResBoundingBox: -0.5 -1839.84768539164 7630 0.5 %%DocumentProcessColors: Cyan Magenta Yellow Black %AI5_FileFormat 13.0 %AI12_BuildNumber: 332 %AI3_ColorUsage: Color %AI7_ImageSettings: 0 %%RGBProcessColor: 0 0 0 ([Registration]) %AI3_Cropmarks: 2100 -1366.64045553483 2600 -866.640455534825 %AI3_TemplateBox: 250.5 -250.5 250.5 -250.5 %AI3_TileBox: 2062 -1472.64045553483 2638 -738.640455534827 %AI3_DocumentPreview: None %AI5_ArtSize: 14400 14400 %AI5_RulerUnits: 6 %AI9_ColorModel: 1 %AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 %AI5_TargetResolution: 800 %AI5_NumLayers: 1 %AI9_OpenToView: 909.922305077751 -166.730217212962 0.504580183405052 1784 1128 18 0 0 233 161 0 0 0 1 1 0 1 1 0 1 %AI5_OpenViewLayers: 7 %%PageOrigin:-150 -550 %AI7_GridSettings: 72 8 72 8 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142 %AI9_Flatten: 1 %AI12_CMSettings: 00.MS %%EndComments endstream endobj 18 0 obj <>stream +%%BoundingBox: -1 -1840 7630 1 %%HiResBoundingBox: -0.5 -1839.84768539164 7630 0.5 %AI7_Thumbnail: 128 32 8 %%BeginData: 4990 Hex Bytes %0000330000660000990000CC0033000033330033660033990033CC0033FF %0066000066330066660066990066CC0066FF009900009933009966009999 %0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 %00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 %3333663333993333CC3333FF3366003366333366663366993366CC3366FF %3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 %33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 %6600666600996600CC6600FF6633006633336633666633996633CC6633FF %6666006666336666666666996666CC6666FF669900669933669966669999 %6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 %66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF %9933009933339933669933999933CC9933FF996600996633996666996699 %9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 %99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF %CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 %CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 %CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF %CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC %FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 %FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 %FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 %000011111111220000002200000022222222440000004400000044444444 %550000005500000055555555770000007700000077777777880000008800 %000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB %DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF %00FF0000FFFFFF0000FF00FFFFFF00FFFFFF %524C45A8FFFFA8FFCAFFA8FD05FFA8FD0FFFA8FD14FFCBFD04FFCFFFCFFF %CAFD0DFFCAFD0FFFCAFFFFFFCAFD22FFA8AFA9AFA8AFA9FFA8FFFFA89BA1 %84FD05FFA8A87DA8FFFFFFA8A87DA8A87DFFFFCAB6CAA8A87EA8A8FD04FF %A87DA2B6CAFFFD04C9CAC2C9CFFFFFFFA8FD08FFC3C3FD07FFA8FD05FFC3 %BCBCCABCBDC4FFFFFFA8FFA8A8A8FFFFC4BCCBC3CAC3C4CAFFA8FFA8FFA8 %FFA8FD07FF8476FD05A07DFFFFFFA1B6B5A2AFFFFFA87EA8FFFF7DA8FFFF %7DFFFD05A8FFFFCBFFCAC4FFA8A8FD04FFA8FD05FFC9CFC9FFC9C9C9FFFF %FFA8A8A8FFA8FD05FFBCC3FD0CFFCACACACBFFCACACAFFFFA8FFFFFFA8FD %1AFF7DC1BAC1BAC1BAA0A8FFA8A1B6BC7DFFFFFF7DFFFF7D7EFF7DFFFFA8 %A8A884A87DA8FFFFAFFFB6BCCAA87DFFCACAA8A8A8FFC3FFCFCAC3CAFFC9 %9FC9CFFFFD06A8FD04FFCAC3A1CAFD06FFA8FD05FFC3C3BDC4C3C3A1FFFF %FFA8FFA8FFA8FFFFCAC3FFCAFFCAFFFFFFA8FFFFFFA8FD09FF84A8FD05FF %7EFFFFFF7DFFA8A8FFFFFFA8FFA87DA8FFA8A8FFA8FFC4CBA8FFCAFFA8A8 %A8BCB6CAA8FFFFCAC2A87DA8A1C3CAFFCAFD05FFCAFFFFFFA8FFA8FD06FF %CBCACBCAFD0BFFCBCAC4CACACAC3CAFFFFA8FFFFFFA8FFFFFFC3C3CACAC3 %CAC4FD05FFA8FD0AFF7DA9FD04FFA984A8FFFFFD04A8FFFFFFA8A8FFA8A8 %FFA8FFFFA8A8C3C3C3BDC4FFA8A8FFC4CAFD07FFA8FFFFCAFFFFCACACFCA %CACACFFD04FFA8A8A8FD06FFC3C3FD07FFA8FD05FFC3C3C3CAC3C3C3FFFF %FFA8FFA8FFA8FFFFFFCAFD15FFA884A87EA8848484FD04FF7D7DFD07FFA8 %FD05FFA8A8A8CAC3FFFFFFA8A8A8AFA8FFBDCAFD04FFA8A8A8C3CAFFC9C9 %C2FD04C9FFFFFFA8FFA8FD07FFC3C4FD08FFA8FFFFFFFD07CAC4FD04FFA8 %FFFFFFA8FFC4C3FD04CAC4FFFFFFA8FFFFFFA8FD08FFA8FFA8FFA8FFA8FF %A8FFFFFF7DA8FD0EFFA8AFA8C4FD04FFA8A9A8A8A8C4CAFD05FFA8CAC3FF %FFCFC9CAC9CFC9CFFD0DFFC4C3FD07FFA8FD05FFC3CAC4CAC3CAC3FFA8FF %A8FFA8FFA8FFFFCAC3FFFD05CAFFA8FFA8FFA8FFA8FD08FFA8FFA8FFA8FF %A8FDFCFFFDFCFFFDFCFFFD87FFC4BCCAFD06FFA8FFA8FD05FFCAFFCAFFCA %FFFFFFA8FFFFFFA8FD05FF7E7E7EFD05FFCACACAFD06FFA87DA8A8FD05FF %CACAFD05FFAF7DFFA9FFA9FFFFFFCAC4CAFD06FFCFC9C9CAFFCAFD05FFCA %C3CAFD07FFA8FD05FFCAC4C3FD0BFFCABCCABCFD0CFFCBB6BCB6BCB6BCCA %FFFFFFA8FFA8FFA8FFFFA859A8A88459A9FFFFCAC3C3C3CAFD04FFA82F84 %7D59A8FD05FFC2CFFD05FF8484AFA8A8FFFFFFCABCC3BCCAFD04FFC9CAC9 %CFC9C9FD04FFCACABDC3CAFD05FFA8FFA8FFFFFFC3B6B0B0B0CAFD07FFCA %C3B6BCC3B6BCCAFFFFA8A8A8FFA8A8A8FFC3B6BCBDBCBCB0C4FFFFA8FFA8 %FFA8A8A8FF84FD0559A8FFFFC4CAFFCAC3C3FFFFFFA87E59847DFD04FFCF %C2CAC2C9FD04FF84A8A8A87DFFFFFFC4BCBCBDBCCAFFFFFFC9C2C8C3C9C9 %FFFFFFBCBCBCC3BDBDFFFFFFA8A8FFA8A8A8FFCAB0FCB5B0B0B0FD07FFCA %B5CACAC4C4CACAFD05FFA8FD04FFCAC3C4BCCAFFC4C3FFFFFFA8FFFFFFA8 %FFFFFF7DA884847EFFFFFFC3BDC3C4BCC3FD04FF7E847EA8FD04FFCACAFF %CAC9FD04FFAF59847DAFFFFFFFC3C3FFCBC4BDFFFFFFC9C9C9C8C2FFFFFF %BDCAC3C3C3C4CAFD05FFA8FD04FFC3B0B5B0B5B0B0C3FD06FFCABCFFFFC3 %BC9ABDFFFFA8FFFFFFA8FFA8FFC3C3C3BD9AFFC3C3FFFFA8FFA8FFFFFFA8 %FFA8847DA87D84A8FFFFFFC3C3C4C3CAFFFFFF7E59535953AFFD04FFC2C2 %C3FD06FF7EA884A8FFFFFFCAC3C4CABDCAFFFFFFC9C3C9C2C2CAFFFFBDCA %CABCBDC3FFFFFFA8FFA8A8A8FFFFFFBDB0B0B08DB0FCC4FD07FFB6CACAC4 %BDC4C3FD0AFFC4BDCAC3CAFFC3C3FD07FFA8FFFFFF59847D7E59FD0CFFAF %84A884A8A8FFFFFFCACFC9CFCAFD05FFA8FD07FFCACAC3FD07FFCFFD05FF %C3C4FFFFBCCAFD0CFFB0B0B0B6B0B6CAFD07FFC4B6BDBCB6B6BCFFFFA8FF %A8FFA8FFA8FFCABCBCBDBCBDBCCAFFFFA8FFA8FFA8A8FFFF595953595359 %7DFFFFC3B6BDBCBDBCFD04FFA8597DA8FD05FFC9C2C9FD04FFA8597D5959 %59FFFFFFB6BDBCC3BDBDCAFFFFFFC9C2C2FD05FFBCBDBCC3FD04FFA8FFA8 %A8A8FD04FFC4B0B0FCB5C3FD0CFFCACBCAFD1DFFA8AFA8FFA8FFFFFFCACA %CAFFCAFD05FFA9FFAFFD07FFCFFD05FFAFFFA8FFA8FD05FFCAFFCAFFCBFD %05FFCAFD07FFCAFD11FFC3C3CAFD84FFCAFD7EFFC3C3BCCAFD7BFFBDBDBC %B6B0CAFD79FFC3C3BDC3B6B6B6FD79FFC49BC3BDB693B6FD79FFCAC4C3C3 %B6B6B6FD7AFFC3C4BDB6B0C4FD7BFFC4C4BCCAFD7DFFCAFFFFFF %%EndData endstream endobj 19 0 obj <>stream +%AI12_CompressedDataxœì½ûŽeÉqÞûõûü!€4Ìêµòž<†ªê*y Q$x±å#ƒbwͰ­î®q_(ÑOâ÷EæÚk×®‡")ɧ$Îì•뚗ȸ|ß_ý??ûÅ®^?þúáGñr9\üÕ_Ý|x¸ÿôøáÇ=|õöíçŸ>pè?ÿáa­—‹tõUûzœøß>||óøþLJ.5Þqõ®Þz|øÉ«›Ç÷¿}óöíÃ?ø¡5þòͧ·ÖüæÕãû—÷o~8i÷xyÿɚ–-éG!ú—tøÙO8åþýoï?~|ó섵ÄíØõãç÷¯ß¼ÿöúñŸ~|øÑjÿ×Òr¨%.‡ÕšÿË›Ÿ?|<=g¹ÌœûeKµ´ûZ’_aMvÍËÇWŸß=¼ÿô³¯>~¼y|ûøáã7¿»·O¹ÿÖZîÿãáíÛÇ<\¿½õ»Kîß²S¿ºþÉÏÞ>üÓ/îßÜ5þíÃÃë‡×ÏrõUþúîÍÛë´w÷Ÿk¤ ¯¾ZÃ×ן߼}ý·ŸßýúÁº3ÆÀáøµ^éWí]ìµøoׯ¿zgG~ñðé“}«=‚aøù__ï?Ãêïÿó‡oßhH­ËÿçÇm?<~÷îþÃ?صa]ë¥XÊeIKÊ9ÇÔâ!·“£!ûÕ¿|x÷Ý[<õrÈêfÿ×þÇ8×>ÖÏ[J°ç¤ž<'¶ÃjlûçT¿ö8<¿}óð?>üíãûïëŸ~á³#%{Qý¯·üüóÛ‡¿zÿ†®/êÞ‰?y|ýðöÇL•qýÝÛ{õþÖãÿú ¿¼ÿðíÃ'›Ro?Ò„oó 6Hsÿ»fÊêøéwïùøßôŽ}é—=„¸ä¥Öš™§Ö‰5.a­a ÝzÁ:Ç>µ-65“–ƒ­³–ëÚamz“£Müu{»õø¿þ<’Î7±.û«ŸÙ¤øé‡7ß¾yÿã­Ù†/çÅçË_xóú8]j84ÿ=àÒ¾ŒÖµ‡¥‡þ}týSËšÛšÂ÷9â½eÿéÓÃûÑ{6õo~²›ÊËåO~aßrûþõÍã;FŸ…umsø½Mï·ßzÛößj±Ë?wñ÷±¿øßŸ?=|´{½}8ôòâÛ÷¿}8XǾ¸zýæáƒµ||qõÁš_ܼzxm‚êþÅíý«ÏŸ^üí'[/~:O»xñ«íŠ{?å^w{qÿêÍ›˜ßØ¢~q<ǯ¿×Í_Í›?èÊ‹~éÃîÒ‡íÒ7~û7~ΛÝ9o¶sÞëö/ýÜG?÷qwîãvÊg?õ³ŸúùxêÅ‹ÏÛ¹¯ï¿ýöáË×ö‚/^Y¿øøéáÃ[¾âãÃ+¦þ‹_6þéÅw÷èï~ó®xwÿþõ¯ßZ/}x±»½~ñêñ»ßÙôûͧ&n^? `^ø;l»|ÿøéõÃ7/®n_üôãÛû¿¹Ø}g;Ï»7ï?OšÿþÝÃûï>?=|qvÞü÷ã‡×ß<Ø­Þ¼à¿ßÝ|õù-?æ ÷v|<ý~øÈG¾~üÇ÷/þéÕÛûwúO›]o^Ý¿µ ¶«¾1)òæýùk|û™ ïÝ£ítß|:þòž°ÝãÍw|ùÇïî_=¼¸òÁ¸“müëöÅ#säýk{¥ïô/MdëbÝtþð{ê×ñ¸|ýæ·o˜ [§m}þ?¶ÿúæÃ½èíçzS­”í½õK·»xñÍûà1=ìÉ/¾³ç<¾f‚h¬ëì×÷¶Ô;õÓo?´)rñâj7Eowÿ}å3ãv{¹[üøWûéúÕvÒW~ÒOý¤Ÿîî7¿û§~ƯüŒ_íoó+ozÍH™rñbwµÄ»ûW˜ï¶ßè´ûWZ¾¤}E_¼øÍç÷ßÞøüîíýçO¶mKú‡¯îíº‹_ÞJ6çÿúõ/?ÚÆuܯâ×S·ï_=¢üøðõN)8QþþžéÅþ4ß +~ùÿù MÎÛ~ùáóÃ/÷ÝÃÅßÛ–1–²m)ñ…uÉÃÿþ|ÿÖ~”oÞcKâÓïv nÐ &'M'³>æÇÅÚVÖ›­÷Ooîß¾~óÍ7/ì{ÞIƒxñ݇Çן_™4xcwü„\³Û·þâ§ï¾½?\¬=¿°ÅÏÚ9¬½¾¸ÿÎ.ø§ñ½½xùðÖ”ª°¦1am¡ýŸ‡÷ß>˜>¹pò[›Â_ÿâwï~ýøöëþï“/ÏÞ•_[×þÌÆ…]ãâo¿»Šú³·Ÿ­é¯?<~þî«÷ß<^üÀuÚŸ±Ý|xÿÓ÷ö¿9\øüñ7‡_>>¾5õä„Ñäw¡ñÃ'¿FǹÂØï~øïæYÛ5Ï=ÇÿoyÆìf`Œ{tÚY·=Î/þñþÓ«ßüÍ›_üýOó9õæã»íÞû#?cοzûð‹ßÙžöî{Üí•^ì¹Þ9mÚzhþúç_㦓}x8Þ@?ç¿ÿÕ7÷¶ËI5xóê¹×|¦}{Ô¾íxáÿfº‰mÇÿçáõá§¿þ_öÃn%«È¤¡)h￵ßÛ9ßcšýêÎo¾0¿|®é÷?èåÃ7fú팎޾ÿíÃÛÇïv#àç}{ÿþþÓ—ý½å½‰Çã 9ñáÓßýswdÝÚñÚ&Ô/>¿ùôp¿ÇwßaY~ñ›ûï´L晿ø^ëÛÄÇ[So>nwôŸÇ·ãýØv¿Ì·—ó?úÑ?³ôÃõû]ó_³ÙÞýãîß~¶…ò¿ûáÅñ?±°ׯÍd0[¬ØV¹ÄCËš/;¶†RÚ[_R)¥ëXˆ=¬¹´jÊ«huÉ­…˜COëÚìH×Õ’¼å"þêëëÏ=Evד§èØéSgO9œ=žd9”ƒÙ{Xòö@3Ÿ¾þ×{àõÇ?÷×­þ°­oÛg_výr›‰sF=?ÉþúñíëÃËÏ?Ù,;þ·Ý$ù4ûOø¹Ìþ÷?þ‰öB²¿lÅþªþšýõñwµý]Ûßý½´¿[þ.Â]¸‹Ëüÿù¿qÕÿ¯1lûÒø_ÿËúÿñ¿úÏâÿ™W¾Õ½¸ 5¶xoìï6Þ¥ÕþbJÉz.µÔÓUºN7é6Ýå%¯v'|9%·ÜóU¾±¿—ùö™Ñ†§–^®ÊuyYnË]]ª gM5×Z[íõª^×—õ¶-mµÎˆ-·Òjëíª]·›vÛî:.ˆØóEϽöÞ¯úui¯¼ÚK/è?ëþ‚ÿ]è_ñä/é/ë¯lö‹½óÒõwe×ú»±¿—öwëËÝr§GØ?êçÛlÖu·Ö±ÛUvòË;û»µ?ÿçÆþ®íïÊþºý5ýY_½´ž|i]ü2ñwñ2ÚSeµ?=ûæÎþní{ø?×öweÝþ¬[oªþŠý1^6–7k&ÝÅÍjö×w×wzeAÛªƒ·öV7×××W×ýº]×ër¯Óu´I»^/WwW·öÆ7W×WWWýª]Õ«r•¯ÒU´‰½^-ý®ß^ØçÜØ(öÞlD‹k²}íK»³!ioxm ·fS¡Ø”H61‚M¥ÞÕ[ë‚›4W6yšM¢Ró…ͧhËi­Ká•—)ŒÿæMWãïzû»Ùý½·gwëݘ‹ºÃDL)Ù¦v(k¾³á¼É×6ó›­€dk!ä%ÝÙ_Û*i¶b²­›Öxg~¯c·•U´6mõÚÒþÎäöúàÒúo9ÊÄlé·ýΦêjCmH² Mµ!ê6T×6d/mèîlÌdƒZlp› ò• ö úíõÍ‹Õ&B´ ‘ÕOKøÂß—ÖÝzöÞÛÈý ?ÝWsÜ-KUKôb¬S_¡¶àô|$t\Mˆ™5]m_ç›®´æ®nÆß•fr·®b.§1—ƒÍå[ûc*ÓÜ4‘™Ê6‘Ç4¾Ö.6ƒ£ÍÞÕfïK›¹]³6Ù„µéj‹ùÚÄcû³ÌëÑïu_}çÿÜŽ?I£;‰’»kýÙÒ¾ëú³Ï»³o¹³·¿³pgóýÎæ÷»ËÅ„ÞíÝ…Ý…i7·6ynmzÑc·íÖñ­í·>‡líFí ì +Ùº¦ÔªÝÁ÷vÄÕK®ªwÚ)|¯°õ5ö‹f==÷Œ—cÛXlÕ³u$–b’¦ÝãÆíÖgï?ÿÏ—gí3{ÇqÿxúwºDâq’£+†u5åÆd—m}k¦¥ØÆ™ÖVìMƒIè(ËåbêNH&à81 ËÔÔ—µÛìnÉIµ#ih:®ßt©½C¿éÝZMáÙ”ªÕ§Jk\CζLƸ,ÜËF±ÔØM·°ë—:ã§R‹gÖwÝ?¡•K[¸íø]Ö§è;–žSè6³JYl‚ѦҬKév÷%çê=‡d«œ›L]ªÏ>±ì:Ò^›«vÊ©iaÇ7È™;~æ¿åKÐ \hJš]kmÿoãî\l‚gÛ§S´[ÇR^vÝõk¿Ì&wšþŸô¦ˆ>ÿ«÷ïïß=¼>|;™©cšýsG¦¤ÉŽ[évüÃ’æbWÒ-n¥7¬Òþ“´þ:´}4ü›ï#€ÎÅÑþm[•²³ Vº½âµHÉŒR/©•7R%»TÈ"å1Jg\¤+¾ô-`/Ø]´…ûQ¼¯¿ÛŒ¿Ñ¶“m&8R6kÌLƒfÿÒ`¦ÖfÃg³ë Úí6lO…–DÖ6rë»$‚ÞÕéø]˜ÑótÀ1„¸ÆÖá8¸®ƒÛ|§±œ£™}¤cP‡;átPÖm`¥4îUÆ8TFÛ‹Ö¤72¸>¼Çžªãqˆç ;ÊÁš¡F™ô±¾»Ð`k¸ÿ%c4WÔ~79YUÛ­'#tÜTÜ]´¡¹ºž¡.l„òÙ™¼7{(h|ÎGèån„‚ÜG>B¿wŒæ(íljQº~Vµãt1a}2R·»‘ZdÞÏéã勲žŒÖÍ\˜ciþáð÷øç_ñ†ÏÙ {§UÞfÚÉ\»Ø&Ûr¦ºÌ©fólHfÀ×?sëè#t™ýò"ÞÍLb!ªï†c°HBË%h3&Ú\Áˆ7ðNž@ü€Ý¦@¼¦^àø³aÅé7,Ó[٢ײ@›”,µ…d‘òûôŸ—G èâyHn²+9ȪcßÛéuñ}¼^Ãéuõ}Ü^ßÏïµw{ÙZ{ik_‚™pÖÉø¨’{©Êr!GÕK¹ª®ä¬ª62y8¬Öá²zi#‡ÛªÛ(ÖẊ8¯Ò"÷ÕK9°®pa]˜T)ò&Ç¿ŒÑ_Æè/cô'£íTº2 ÜjŒK‘‡Æ¯Ù¶›³)bÔ`’ßþ;šÕkÚ¢À5¯7ñÆ\†íÿŸ· þÌÏqoÁl}Ö.úRûeçäçìœüC=áûÛ9/•ÿroå_¼~¹ýÝnwÄð{ »¿„³þ-ÂY'èéÜÚÏ®&íjα£6:þ.6HÝþ﨤¾üKÔìßÔ mx›ÏMŒ4ê²ýÕ'öF»Ù²Ÿ1ÛœùKpîßpNpü›~kïlØ‹ãµ-ã;“¿Ñ¶ˆjåy³Ü³ ËMµÉte›ÁÍͲۗËËÕÌÊtak£˜°ê&®Mk{iÚÛð\ìM<‰]üû]Ø´[ÿ`¿=5ò/žZùÏù™ +™ +™ +™ +û©°3ðkê5¬©È)Y„q®Ö“Éz#ãqN:²X[±ý³õLþ A”«ux^cY'4óyþÏö„?—þ‡äÖ+XŒ4|3èÿë›ß>˜!¯R%%3Û ÷Ë"- Ø8T{œí#—Ø]Ë͇°öK›£¡§T–ds—׿ÒÿþÝ?úû×gýçì¿û~þWûÏÿeÿÑžsøÉáïÿçrxíWþÜþ5ßáéï¬ñ÷¾Çáož;ëì{þf÷ ¶ñÙû¿·ÿqõáÓË7ªÂrÿáw‡óØÃ‹ëÇÇ·‡\}5ú÷k/sðõõý«°1P­¯®$÷ÿhü¿öÿOûJÿù>ëv/uä§úïåÒŒšÖCÄkTÞcyh[JÔd"¸·\ÚúI(µEûæ¹³yï¡eF§'1”¿»ç 1_.1¯]pk;ZÓe7AáÝNc&Ä×Õ~›¤8Ð`‚FW™]Th@®¨Aýf !/ÕB<¼âv©]®Í–˜I«NcŽ`·ò—0a…©w¨í8µ5Ø0ä`ëÍ^Ídyf_n¸[Y/MÚ Z‘ŠÖ¶^Ú˜Ú;¤rWÖªiæ­ÙËu{‡íåê%öra©¹Z¼Ôàêå¬E£éÑMäkÈÞ öEA aµ«Ô`’Á~Çh_s¼ SÐîB³5Äõg¯&Txvo+ 9VohÑ´ð’×ÚCð†¶#l=–Úõhx[—õÒÆ{\øDòY¥ölº„`"ß>eY=ب7ï®\.{Ž —d3‹iëêãlýhßÛëe0Ãzi­œ%\Ú¾`‘m v±¿Ø3'%›•œ¤`'Dei1ûè-;Qjg,,R‘ +=bfI ÕÏ`·´3šYÓÛƒ2oek¬Õº‰†J=3[êÕ¦´_n‘ü ª¶Eôf¶’Æ]Ã¥½öB^JÃ=Û»u޽‚uÖ›M³¢yi[­6ÉÇ •dC´³%¸„¼u}áËs7YbU]d³ÀžÏ1ºœI1¾«=¨/©r)…åÖØI†¯qÌC;Ë„×b÷_È·³šmOe! 4Ò¸ì ¬e›Ktܺ\®1U¶0SXOëeQP´›L¬]gäµ!눆çñ¤Õ;ÌÎ2$ûY±ò$–GÓ}4ª¶ÄÌtõû˜É9#)sGgØ£9ÃD…ΰwÐöì¸=ɺHgÙ‡ù“ˆŠu›Â&³‚î“Iêâ]ì†vÆz¹,L“ +…¡á›ºÉ3¾Iåõ8ÃölaÛïxR¸´§3:È8?k ci0ôÛ¤z#LUL¦ùxše®o´ûÚÖ¯ûâp×}«½ß‚ *JóԤŖmMçjK0°¡ädÑ4º¦ÙD[K×]½ÉW0½–õ²¥• åËÔ¤OàÑ‹®bùÙgþâ­<Ø0ÚU™€ºé|âb"›ÑjL<ë²Ì‡±²mæøš1ykå_ÂY-é,Šøü2‘ÇYÑÖˆî“ýpÓd Q«ê°îf.BœQè( +9äu»½Mg[ùÁ´Îà/A¿Ûq¶ŽÛ‹79z‰lꓟÚ¢3€­qFŽ]o`/0¢µË@ÇdÀ1±û2Ó{Ú23™h÷±¨‹uq0µ:6­Ðº,ˆŽlËÈ.i¶ú3ï†Hô›uc;,ŸÉÞXüUŸÛÓ¥) +ÖïKwáJ]Ò^a!¸>·TMJÛíLRú"£Ñv‹J£­=ËÞµêª`’Œ†Åæw·É!dÇÚ®WŽ›‚Ž73 \m¦Òhìo`[¿ÞÀVSg—l:Ì"ä0Þ&?žÆ@uÛ™Ù¢l—^RÔEfaØ8t›ê­ØˆõìÁ¾Û4t›(ôLÓH¶Y—ƒN\}{ 6Û5X&´ðj6íf\FD­IK»1;±Óeâè¯u¼´­–ZY¤Ì|›ÅݶPS +Ò»¢. †)¦R1q³Lþ›¼ŽÛÛIÒhê*ÖçѯBu´Û? +B@ߣç˜Y¸ÝnÝÝm©$#W´ºhQÿdTiõíîI×ÄVÕ@ì1j`4üfÁvµÈuÓ‘éTÛ—˜L&æXúÙ¶[Žt¨rºQ0Ç£tñCµëm*]Ë]`Å–hºŠ½Yµ[ÙnM·ßf0t{5déÛê1;ÈæÔª¶PS«5îüÖ+š½arÚL‚#û CÄ:„|›^SM6ÐXlý¨Ñ&««Eö.Ü¥®ãw”)ÐÛçíxG/žÛ{G‹³ííá`¿Mƒ´G×eŶB–‡ÍMÓWÕ?}ÅÆ–Uh‡‹z&¥}[¶ÍF­B{ÁUf‡i ˜¨+¹˜«ñnÁnbýšªíj®XW_Àcl©1‰Î¦c <¶ib Dì?­ó“-JÛBL©·4ûìCdºÆo¶˜4WØþí·iV6ÌJ5UW“Ë6:5,|®5˜™§“ GK %EodKRŠWá‰ÅŸm#â c0Ø:ÐÐ[·—‚êϲŽ2É즨—hô^1©ˆÑbWÿv›Úý:{—˜œKÞ_6 š>Åæµ­(5²,ìévW,Ý”­¥ÐËýc³É/Ó3ÇLTS]Æ6†‰jóÆZd¾V´‹8´:;LDŒãMÚΗì]nö ï—SËG¹´GZGÙšµA5-ÜÍbk4áÃ,L…" +Ö˜Ñìx@ŠØOþ­ß¶QÔmžeÝ$õ°Ù«ICMiÓMb©C½_VùíˆNÓà† ÝèýL(k°¼ŽÛÙ–ÕÐzÌúf7ZÊ`ÓUq1™š©ò´2f—1h.Ë^f¥Y{L[ëáJ‘ÖYL²É~WÙÈ$E¡f78³!Ûs²Ù­ö:Öpù¢uì:t*ÉL=ì·»XeíÈx² Fi@Ûá%Íò²ÿ@ÛfÆÊÕã:ߺøŠ³ÆØ£—ä_´`@òEèž»ã&0‡LØÝkíëfšH ³¶¬-@Æ•_dz¬Ü &sW"{…®`¶S`u;Ó‡†¬4Ò´[Û¶ø‚͉H¯`Ñ¡²‡Í´BoMTÏoL¼¼Ùì6œ ›…õ°¡eÛÚY‰Í² DxˆÖ¡c‘mÎ nmSmPmVÌTÿÖÈåLêbbOÖOUWjOXƒÙ{:%M .+sÇ,RSèÛÝL@Ë EQR#;­ÛPÓÈ­Á6Õì·cRq…-t¤ÕyÏÙ'uæi·!7ù‰˜  ½k´›@å`¿ÇFñ<ÇV¨½oÛ)€øºj‘ +g6nð«²e‹,+kÀù¢Âë4d xkèez‡hôž0©ÆÐg4žÓJÒÑ ãÎlrEB †©1ïÇò + Þöß3¬«l5Ú"Zp>lñâÔsA‹©Xä¥ntBa=Ü ɪÒ!+ôê!Ë3F׸^ö¶.lpojKì¹8²‡`Ü%“LfeÛ™Š¶˜Y0¬£nSô=Â$s‘7Êô%¶°}c’Û6„0t“.º²Í±J‡Ùo`Éœ[y'2ÄpiÒЛ\{üºÝdiô‹=ß¾Qjê EÞ3›^›Ýïf&¡îÆXï0ßÏÖ±e3}ØìŠû{’Tw;Ž¥mÚUî6‰0Emáù¸$3}m•"{œšMkêN´ÝÖ•ël5v7ÿÒN_Úœ&&1HµêpZd;s6èÝLÒšŽf2¦ßv•©Û íªR¤ÌzW»MsKZëÀ¶3ëQ{¹Éˆ—Û”YŒtÐP›G;Ès4à*(²M€<”»-ÅVµiK‘§X—Äi"ÐHuvÛ¤éºêªæ5™z-̧„Ñç EÆL? +4˜ì¬Ûí:ÂÊ{•5úô¤Ás5˜!vи ·òœªÂ\Öyh˜¬:ßnU*dßoó8¹_+è£%êÙ—ÎJÝÞôWV_bê>šfaš¸µ»˜Ùb¦%s õÅŸ]+zK7qdS-É£Û`'ÀÇm«¬Sè¤ö¶m#µF½TÁ‹ëº²da`Y˜´±ã&´¤·†êð}×Sµ—cš¯KUê¹ ['5°GÐ`JeñÛÛ¤Á¤ž7´9Œ¶Ëjk³] S3ˆu“‰Yp$ÚÄ\‘´«ÛgÇm—©j>mkïmoృŠT0Á¸HØdÞyU[œ‡}•í® 2ç%ãSìë»M÷~‡g‚ Â8ö§§„ðטÙ<Þ (ÞŠðC䜯KÛ£+ʱÏ.SóY`vK¦3ÚañÂNcÓΖ„­Ç„Ü?Öм𠱭2L_—mø~ms0™N£™óɽ^]a)ªF5äì¹d› ݇:buÍ»Å*ùÜ)ÆðË ‹3T'Û€Œ†d¢Ÿ€m÷I|Ü•ÖÕm溶Â&cº²Ì&ÓÀmèøÓ²Qþ&W³‡07kÂôB"&O|%íQšœ¦Ü4®ZÆB2í™&Aƒ6è²Çd•\ë&lFUÝmº]$Ȇ`rImö]÷Sš(·…DƒlZü]òqÓÝLllw[Ø­1QãŒF4S5–¿5à³3Æ=\¨ ‘(SYiGÑcsÀ䑿Ž›b «ô­ž]ÿ/m9É BQØ'&R0?lInî f® *fnF3=„:4TOŒ´ ¤1@ömÚž!ÛžJf¦¾nlç Õ…GEÂ"(¤®°…¢[&7fE…¹X¦Bö@!2SŒ™3&…KÔ.ÖŽÉý„ßÍ>4ê"MŽwPêÖ!‰ÁænXìv7RÀÆÞÒ·›%âqÂ$·£´¤xIÖ@A[í²›Š"nqÑÌtö7C®û–îútˆˆvìfœ/Ö{¼B‘ea²®J‰©Š\Ç“²» ÿ§^j®0™>¹4@m$õ±Þ33|S/|¹€/æìzÉèè*yŠ Ôªß?i(ú-ïÕ¼‹\v²½M¦ƒY'k ãð +MÏv•-ÎŒ3l•®jØÖO“]H©\‡Üøñ0ÙÄŽ…²¸{bÁäµÝRº©vm8«Ìm¢),m,üa‰`¬Î@˜eû==@Áºèx®Ó~.Cöí·íÖ29ýšqŒHqöàšYäÄÐl‚Ð¥},/ìÓ®·±i'ÂÙ¥•oz›uý;µ‘þn¢&Ê­N«(¤2¼/ãÔŠ´¢×S¸¶IÏů ¾v¿ò+ãÁ†mÆl:£œÒ!ÉÛÏåhKÈWV‘©V®F­þªMÔF6"BÙ$ä!´“ +ꆤ/œµ}ªƒ^±ê6¦9ë üu†i.Üìª3úØÛav3¤ùZÙ–±=É^£qÑ…çŸXvFŽXzáæ/lsÏÏKÑ„*‹¦Ù»ëôzòÆ8³4²LFWlTÐËhM`}Û¢R¡5”:×Ó3†1™[mPqû¡ŠúvâáLÛ«†ã¢²ªÛ€æIR„å³Id°U Ó8rÑy¢²L;³n6Q`?­DmË«‰Þ ¨hÂѰ_`¨ÙY$UŽž Þ³¨Äœac©3¨o§ˆM38x¤8aå¾  qñ[(ôÉ-Úp†(‘×1W½ë ›/Û- +—ÎDèLR×981®¹œ8—:g¬e¨“åø!` øŠPFk”¯Ï F| \Y‹&çåBó.3†.C0™,7õÓ–F‘潺µlºBn3D†>†qeB® ›3Þ,X[5&çL”²ºâµ +W|El¦8mž€ ng‹¯ÑŽ@wƒêРƢ²¦ÜA¦öIIѾ+#|ªz«ù7­¡{ÈÙb1±<ÐP:MI ¶f–‚»ØPÛI¶ktÞ¯½X"p‰/ÈÎ0«~•Gu%ª‘?A𩆦"q0ºgñÑOÐáfç¬äg¹ƒû¡çIzÉøµ•E + +@±¸ð‹HE8&ÅL€nj—ÞÐYY/Çmþ~rúÙ2 +9Ã6dÝ'ÚÈú¬—t¸gt¬ùwÞ]8×¢‰… ‚Í8Ç÷3‡­û:ìöq StâuQ¨Îìÿ ©ÖʽiÄË”Wë”Ö¨jáŽ?pϬGpÛ¹´Î¾–Í1aAàǦ.t%n…ÒhŠ” üˆÉDv}¢S9¡*é¬RtUÆÓg UZ‡Â“&ÇìrTA?CýBs”8%’Ÿ,%¶íÌMÎêã$ëm´Fæ½n‚^¯Ü2Ö©â“ׯ…ТÞPñ±–éH!ùigàýšq*_/8´ËÅKÌr¡dõSÖa‰}³£«¢¡C!L¸o…¼Hþ´jVÔ¡«.?MvÚÖãú2%;f¢€iKí`…Ȉ4H´&[„˜MVäY;[¶öÄBaÜI‘ŽÀõêa ª€›¶îª®¸È„ƒ[Öi:£$†½cààU^ñÔT7z•QÑúÄ6ÙY¡7ÝÇt=ÔK"&’,HÎX|§¡rŽŒ8OãAkqã­“ mg 4d;‡,C«L@?´Åõ/ÄÞ­F7°|»Èî‹´AR<ǵ›Ùñ*äHõ³ê8°=²†d+\ àúæÝäXM ð»?Êvv»J‘]E^ øÙt»Þéõ ì:Žp ÛËš¦Yg$|?]d.c­ÛíÛÉ ÞHM´[w¬ÖΖ°Ö1ÃlýùKánÍ +OWL^íÁ,L» +p…-‚L¨eÙ_¤5Nù¹b«âo‰×&¸‹¤Ñ™ô|W×aáí0)âñf²¯¬‘¡¤-×I7¶ã¶> Ûûí«fE‡:UÓîQ…€LuFU‡iÉjÁW‹ºPÀi(Hˆ½¿°¨|BãF¨ƒrçØ¼6´7á¸6Á¨Ä‡@5á½![²ýuÝîAæ›Îekè„RƒŸ+‹Æìí°L]½PFe5A’x¨°_ó…8‹È£mú6ßÉÐç)hÁ:VÝÎCŠ¿,êîXõ¦ºÀEÓvm_±Æ àTpf2o". @òCì¸Í~e¦Ï +™:#-4˜°ÅêIÕfU]¡õŽ~Jl±wLJq+šã¸€ºM'±Û¢»eâ4@dW ‘f¾2›m\(J7#C¥`óî%Pmoˆ…§ä×Ã(³W×´b1YuŽdkE· ÆÒ,¸.ØO@±<¬cÚLUà{ÅMýi{ûF‡&"‹=3=ôR6£‡+Ôqžˆ‘ݶ˜̘ì6F¸ÝØÖC´Ÿ+!I½w P‰šÄŽe]œ:])é>Ò +#Ð+9I +ȸ +U¤3ˆ8p†¬]¤£IÖ%VÄIÄÆ9 ñÍYs9¥›ydo"Ä3»ˆj“êÖiþ&H¥}Q\Æ»&ÿ"haˆYâ$êÛªÐ&ݛܛ¹òEiØ'¦[›LA†Æ‡x@8bàúîÍãÓnjg—3 +™  =ìR5nU·MìýXGkšnë6ÜÖ©ÊͲhV¨îl§Ú˜‰1§RÀÌTZ‰–Kƒµ[pV¨¬çZ7&öƒ&vÀ€W3d*<æî‹Œ bpÿˆ/[¨q[bDЉCÚY«&-g´´³0¢u÷#D[R²ƒBÜgYüŒŠ•jg»¥3ê\uÁOÊ//V”¤gÐGJ +6ƒC |^E#‰~Æsž®Í†j"»½ÖåŽqÄ‚\a,K3?mÖGbC¦Ù8&2. +õS4+QFÉ6"RÃÙpKìÄR1††2±Ó—Á°I Õbq8kðýFE`å +£ÁÕ;LÂä lóv‹ !6£h[‡²å9ï¶‚am¤ÙÉ•¼/ô7S4h]g“á4lèŠfúQa)®¢gm„`HSôM¶tEÐ v~%ìz3™¶Uï0I!’ÁlÁuZð~¦ÉQÃâ ¦iÒOU@¹Ê7LJbŸaTÔ:Ÿ¢0JjDù´ÆF6<1"Éš"˜,Ë*ˆ2k#¹¡a_4 +I^³ö‘Ê–*A )q«"xŽ ÞÌM–9€@.x­ÍÈŸHvÂÓBúéŽÅ­JzСU˜$EAJ@ŒŽÊöÙÌ`ÓoäØŒk›Ø5%ȤcºŠá-¬a6@¿Ïüµ­£Í¡Bpëndp7Ì%kEý´xlÜ›[jèÇ»™,Ó+â@Dº8v€âf pMö£daØwãáG¨cÁj¨µ^ ƤÕܘ•f‰£í$àfÕGV³ÕFÖô—C’¸l àŒú–É(°NqŒW ¯[¦Ž†-em1þn4ŸbÊ–Ý­ Y6¿S¦Ÿ“™z2- ¼HÀšj^“®ÒÈáêʪK +™5Å÷gøKJkÆ®æ²jWQf4 `e“fzî9|×|»ä;›má+4^à%‘öôàe‘¾œ‹Ýe¤Ç,î¶5\æäK—nkVÖLçB¿%ØØ=_Œ¤ÇEa:op œÜý˜Ñ Õãª^‡#«Á¤gSFLÞfB¡Ù=OÛV P1ëk,.×£ôL`‡þ@68Ô¡”n7‰ & f$ïÑ7™É¨ÉY‡òU¯vÕúSMnŒo[VLPݼ9r›MÄî&Ðyð¬:lOÛúHŽ•3‹è FJÔz¯uøQå^yÚ‰¤h—ò©„AM@'GŒîü5u_®@Óð±ùGLöœ›Ú”½W=è;ÝE‚Îyø“Ÿàg”ƒÂ§Ø4š<°64pæW)G()º¥’ý’ÇÕ(ó|UÂ1|P€eA ˆY”>L£ÍÛ‡I ô; +ò¤"xø 䮬8„R™[¶hɧ`£sÞz¬UÁX…M–‡LÛ¡tZ9YS‹T'Y”É´ ¬ø)-Ãn¤Q½h" O!‚<ƒïV†©³¸ç† L™Sr!&í{\¦‚ðvDSKdT{kØ­”K”}ªŒCð.—KXíóå·–7v›Bqñ>L4œ)‹òº˜Q'¨Øˆ›aeü‡_]<›×NÈÿ©é0ŠNj'>ã¶d[¾å ÕP„‡]©kÕ¹ÞÑÚ—UJ;§}éE\1‰¸2H©|7‰|Óh€FϸR–.¶nãÄñE»jq¯‘ ò¾gÃô +z.A]D¦ƒ¦¤^TU4š‘šù r‡‰H¾ÓuøÀ‹Ñ£‹~O]™9¸Ÿ{\!oÓ¢ZR‰–¥ ÑÍ—€•L”ânÀ^ŽL‡ºÐU䪙™öááä±nnÍÚ„FÕ+MG‘#øFRp´7áâÊnç mºzãȸ‹ŠOê”Á¶=s øT!k3!Ž tOnÿè¹'Æ*z8_¤Ы׾ƒX;/»*Kqñ½0ÔJ@!;cúÏ4vÆŽwènKР\6²11Õ”ïÖín@˜hÌh#aDThðhb²µ6²$p#ªA;~mÖrw\Þ«á`WÆåz+vÊêBGIŒŠ +gy#¨dü¿6«ä=K2 3Bp°yÂxôå:|¤ë\[aìÕa1KžáÆE†I ÓÀS:ç„Wµi[r7 ó*\`*2‹{U䤎÷ +s_WCŽPÍ!¬¤Dì¤,¥Nr¢¶`Ê D>”ã]ç9»ë ªÀÙ¶x–¯ÞŽM¥.hˆËü´®òŒ`h>¡@X|éÞÀ5öüÒù$!ãõIª~«Ò}ËíÙ½œÙ>ÂÔRúÒóL%)qgÁG"˜¤p¥RÃ:]ÆvlzZä5»Te?³F™Á A#ˆ²l7MrØãw4ÚΦFòê5TÊ\"‡µà+39@nG—]¸Å† ±j Jާ¡M¬!}‚²lµeù ‹€Ócš2àǵíÒ —œ5(4ácL6à¼j˜°ºZe#Å„¡+ŒøQbAJØ~Õ(åÓB(*-.•Ô?ä)²z„|™êûd4­^5ào žÇ·xš©„Hf½(EÖh–½rbéPP™'6Ú:òr“ßʉ˜ãó.o_ü»i”œ1Ú* eiÜÝáW½”…R%Ñów§E›+‰ZDËûhV:žòôÀ¨ñ(ÒxqüÉ󦔠Lš•rT%C½Çš°Hg0pÓÈÍᩓاðž³(k‹$"/ÏBÍ®HBÂÑkB£kÊ ¢ÍËp¼ûqJˆÑà©/¤™¬^ê¶Ÿ¦†6WòGÉ=oâߥQÁ±U ŸY/—éÊýílSQæÊž¿À–w[²¼Ä‘­9#~úÁ=qx.Ð’Âȹ¨ÕÕÍ Ïò*7Kì}3üþvÔJåvÉC¢J-V톊¢ÚquJazʽÊ;³/“Ÿ§ƒ’FR¼›{wù-õŒGÕ¹ªS ÇîNºòªG02ŸHl2“畽±øEBzšn +Fì˜ÆKC•7O=Z¾"Ó¤!ƒÄ"SOîY]6é{¯ëAA¿ûùã§{Î}RíåTö' ÌiDg«oT®ÞÍÆ…²]l§Uµnü,rlˆá +6·Twì!“”“µŽœ‘½~†2¤Hq[°[> Ü#õIxêù-dìßÉ,,dë§ó3\/ž5r~y—¨¥ðª· ¿U(–6¼â¨}¶«<*ŒõuÔŽš*¤5…»DHøú3¨øeuSH)•„'I*xNè7¢æ©@Sb¡Ï¥³¤í+ûÒö±q`ïäx«„–»‡9U€­P9Ï?`ø8"Í ’sT‚ndÎÈþ~^S*˜\K.õ?V‰¦3FæÉ…›{ÍåT¶Ó¬7{óŠô °6Óm¹SÑGæêÓãÑ`;™¶uh|d't’ÃdÙ9&4€€QËÁëâÔ¦R,Ôý *·4}¥4º“>›R=Õ“%«›mµ†¢ÂIU †¿OBÌ ]!¯È¼Ï@Q¨Õ«åÔ 8;²¾+A5‚>0„w¢JÑ,yf³“—S=à)pU¢tß=Îä*»šÓ7$Td&ôcƒãhªÃš­/lg;^„Ú)\D +K¤ŒL±˜õQÕUdeZ As6 +´fëà x7ªtupŽÒAsô‘­Zê°TžnC&Ewgè²ÍŽF/†é†€Š’¨ã*D2~U²¬¡nÕCóvÊü0»Ø¦F£ÑµB@|Ó`{ ¦¢ùs´¹ÝâõGå™ B€Q•À*Ð |îჃÜËqÉ0 Xý9ªHG›ÒXšËÍAst.6z/:æ8RF Iá^H5 E)àb’)âÑGÓ?›âx¹mGí®Û#ï¨V O²NÇë 2¬¢‡5hèRßUrÞº‘d³‘2N£@×~ýMJŸ?t@Ïg— _®ž²K÷b;³me¥f³’(/ž ¡ƒÆo³!»ðkƱ8ÜÉDŠ•+×"{f]½^QPmPqÍæYï[ƒ¯¿a†Ej.¦x¼*fG{™"–y…ª¬ööLµ@§?ðic˦‚wðݳOF:<] NzšKÊ)T —$z%¶cùÉOD<‘Ÿ¨€"F£j³á=a/µ·œ¨¦€ËO0jÀøH ¤Ø”5(x&änC iÉÅöV°HRg'Ä‚ÅÍȬK±¢485™ÁeSŸY´í9VŒøÈ$lsÊ$E¥!§P^Ê"Ç0AHœÍ‘ÌCt¯„Ê„ÓðYäÇ¢™™=ë^e_éË…\7ù»¸z©*{ÒWG:LxóqHJ}D,‚ «’;¶ƒ‰C +Øë涪q ®—IÿÒÝòàŒ‚†ð²èÿúªc'Û®æ bm÷ªÎ׆Ž$Œž¶Èš‚ÅÊÏÇ«–0Ãt6MŠlY½( yë3gàâ¡£1…‰m??«xáf,Š:‚ì3ô‹‹ ¼w‹»þy¯ÉŸÒS£")îáÈ­ +xé²GåùÖÕs:êj¢Aų¢{þ°Ðä¦öWUqˆ¹’obŬð¢‚Ø³ŒIa2a”à‘ÈÚ÷2j¦/+a¢(Ø+ÆÎ\­RvåÓ À$åE¯çu•'œW4W5JSCÃ¥'ozVCšià4BÖJc £÷x;yÒ(0DÅÔ²½„7±´Y¨z)zq/¬²w™9dï6Üùe¼F£ˆ^bàB ²SOQ¶£ ‹“f1ñ^å5%Xš +c)Å …Ò´S^íèBWÝ@Df'¢ÿº·t”tT­@ÿôþñ*@y³ZýŠíË‹/Øg¢*=æQih!Ýæàö,ÀؼbXĈN/¯^»’œ…8âÆûŠ’²ªÜ& †# +(rUA³e’7ª˜ÌQµ’á–¢AÀBi+ wt¢AÞö-´Ù„¦Àr¡QõÏJ/Ç.> n•ìŠEò)¶ŽX8Žfà Å=„çud£;¼¼f¥p‹BR¨§Rwm̺ƒj¬.)£€ˆ28<@#{#Žª®ÚÌ᫨@ˆ›»óæ;©þÑbìï8‹H—aâº$/'œ® K—od¾òÛíÐú¸^䈻w´˜“ÐaൢA@ujÎf©ŽT5Lˆà «8ÖMÕlºNsõ˜”|²ß€àÅßSÙf„ e›%è²'2ù$ y%‘[Wò˜< ŠN¬àŸò¨fM2&(Uò13lUäœÒº¸O5¾”…ãRñÄ;ÞXSòæLr”Rnž®2orBÛC£×»**ž|¦Ÿª¦({ŒÃm: )jåÅ…4E™G¶»yeOãÈHªªÑçPó4ÊÑ’Ž@¾5ÏS÷Ù…|Òá›öPa«4²ñ¹ˆMS1jŸ˜\<%KE· É4„³ˆ¸9Å|¶°8ðÕÖ  U3qp°mÈ:^£mЦÑ$:Ž¢:ýù âTÍ‹?ºŠ´ ǧ $©dkQ…•°½îôrš¤mÚ©„Å@GÑà¥YÆ&M}ÁQûeÀFóVßR%i9º*ËV†iõDï<ª:1Ù2Òl¬! ï‡áâŸ=åf { I|²×gr ÙŒ§äjãTᘀ·½’-dmˆ¸"Ýx*c±›f‚€¥p¬ø6^»Ý‚¼×”!—UîHÎ…©¹.T¤2¤ ß=0j«¦ˆW/"ï)ÍOß,g•mrë‘8ª)™—McÀ{ݳº*  ×;äÙ ýš¢þ|%Η|Z X,ÁiB¢P†(Èb›_ļ¢R×AUàͪÞ1s¤~ŽX\œ>Oý +¤/Èd¨*šCdÜĈkå#S ØyÜoË YÞçãE½ú@$¶Ê¦Rãšp¸Å•hÞ¡éòj,y™£ºéëPK8Y%nìþ¼#;³Ô¿P!4éü™ãqÓ{w0ÁQØíS R =YC¼é¶«Ô šê¯¯zÌ„’ƒXCÊÕ2J›öànv +!sÉý°*äˆà‹_·WÊ› ‚ídn§|hL›¸ÊëcÁ>mhi—'€ËEóȧàEÈTC¥Î ÌpB`¯Q dö=ö¥³Áí©æ(·mWõÅæL¼—=Œ²¿g Ë1mꬱ•¡ï¼%9%{Q(ɼi“´€`­v(OÎå ‘cB_ªÒßt•§àF 9žHÐq +{pœUÐNLÑ8¨jbY¨ÇÛÂ(¿-ÁAá§EÁo/˜ÌËUÝ.çí¨ß«z1t(zEu™dOw÷[Õ>¶î +~ *±h e‚}T¡°Æ0ÚFf¥}¤k'éTDY)˜J{ 2Ǫ§Öé yÐ#‘0B¹ædf+5ÿ<ØEÐ`׺ŒÒo’+fº×÷¤Y¥‘ɪl2ÀlÓ\9Þ,iæ%§L.EµuTǞŬ!›ìÓx¬Ëô§¯#X`HÌ6tXÝ@?·3°AúQJv!‹! ¥ƒçí%¯Š¢ý4îTM4¾% §£«T ™ã*æÑz ކvyFT-3V‰‚Ji_¸Xé8öFø&Ð)ûMÉÔ*M»ç Ó¦®¾p.OBîƒN™-Ыe þ(kTSV‘h›¤ ˧ïTR^B÷3!éÖ˜F)¹$8põÊœ +P—A©5£2bøzòÜ“ûP%Ù£*SN ;ñX†2t*”ðÖ€¯½ëáÙ •ê«ä­BµÚ:¬ªÒ:ª…¢9?÷Ô:¸œj#3u¬‰ïì*U¨ê òÅ÷¼2qÐak‘"8R|Nv„Ùà¾O¾[–ürßÖˆÜ5$Ô…†*Ç.ÉÛ¶?j ¦X=?Ã÷ˆê„¯9S„==sÐ?QÂÍ©‚l£ô¾1fÚê1-g§¢°ÓVo {¼" ½ì5@¯}\’>SÐ'jš ™û ^è*kL²hð')%Âêõ“%š²©À À& J¶¨¹HWf7U +Dj"XRRtiÊf¦G•x3?ÇTZ€{L¶ÓêП†eLÃ:\¸Y¦§× ?Ïq|ÝU'™‡‚‚ªE æžPÛ+1ÒT„­=ë'ç(¯¨˜¹„w2`{0xMPe"‘ÃQ­{ö쪸*š¢Sƒƒ`sAa Ê£’y®=xP¹¶À'æuzÈëð(aØõ6b¯]uB£ªàÂR°j A,Šßv…•g&bU®µß^j5yõ7îÑâѦÉ=3Óy ÕO‡‚êK%°ø ;ÐSâ 9gP+HL(²¹ñÃot?òkÕÉ£WÀ5¹9‚ +0hî‘Þ¼¦š+ÝJ¿òrfN•kúWZÚ6^c2yJ%G8¹sÏÙ„è;)3a +˜k øHÁ߆ô5¸Ù¥’Ãä%•c_Ý4XoU¶ôVÔoW0s%£xTAÅ¥“ð”/g!R¬gfµ†Ð'Èß\»ÏGß"p¼¡ä‘‹Î< ÓÓ_A2Æ ¿¥FÉw¶ywÆ-&×’8D=6÷ÄV»ùÚÊSÿSÜè ÷y†þ«_ÿüệûO¯¿¶ ü.ÏŸ÷“û7￾yüîw_?~#Vù¿þðøù»“çöÃ~xø»ÿ~ñ{åÿüTòËa=ɺ§Ô—©©{By$"¼“GžÝ–XÖ¤'˜ åÛ±ÆGL˜V6²ø¼ŽûŽxli2ÛvÔðøcaþŒð8"QS&<+ü>{þwrºa4˜´ïüæU'Û;¿S^OØÞuÍš7’wî[k߸݉õô~ÂèNÎ%¤º“Éh®õõ pÏäV™¼ßñ¶“¤OíñI×NíC¡ç]»j!–öç*¯“ì9ŠrÌdy>e&¯m¸Äž’×äµ÷<äµ{>ú¤oÙ=þ“u¼šf{²qÊ Oœãö[˜É-ÎïµPŠs Úö`ï£xÄ`ǘ@Í݇7H}[ÛøÂ‘d n&M8/vxÏNÂNŠI +®Ò”û£Dܺ‘‚KÓp’;›*K=!w%C3€ê&ec—v¥i 󲂟¥[íYÁ•eåÐÐf³¹LZp%Y­ec×oÒ$Iº¢rìž \3^¦¸§ÛØÀ7<Å“ ¼uáqö,à}àõ'ù·‹5I‡+/läßÒ”°IŠŸ{£íI…7'7 ®Ú%7ÛËÆ³µxU1\TuЂoLξnôßÒcK;¹Ø£|IªÚ íw1ÇÉöMaqΓä›âù”Ú»{ñÓIè혼ñx÷¿ØÓwsŒE?Y»ñ c¸N²nÞ"åyIõ ¡AÍÍB[ê‘‘›,1¼Å;"0ç€[3ÔÊàÝFC˰§Û†ÇÜdÙÎÝé¤'Ëvµí÷äÚyÐ’NrmêQ#&§6…¨1@öTÚY•¼1hSô’çLm~ƒ3ØS‚‡hž{&Âl °wš<ÙhiqÔôØ¢ZZÛÆŠ]Á5¹° FãYÛsa«>d “›ed8ãvJ£RÇžð:©¶Îº^CKùä¹_i'ôÖÄßÓzdµ¦:ÄëËnù³ Ÿ™+“½¼2p’¶Ò.ª‘ikžÇÉÕGíÃIÑ +âKÐèc ÑTƒĬԱ}åàc…VúÛŽ†­£*»Í+ñ"Ùp\MjÕŒçkwô«Ò×ãñ˜0H;úÕù{O¿ºô«™Í!YWŸj¬SŸÅ“?°Ê5 òü ë*q€0àˆìeJlp“ç&>a]@×I¶+„TuÛ#ëê§P}HáÖ'¬«\®X’iø5§¼ñ®®¬7!¨M«öä©sÞU¤Ø´­>…8ž²¡r†Ç#3¥•ã9ïêªRH…E§†yŽw( fÀùЧ»R%CéFOéVu†¾9Ã6ù<ÛêªÚJä¹äDçø”mÕyaÒ$Ù*–s¶UGÂR’€ª€K~–mU\ïäSƒ\ŒG²Un?ø)s‰áœkUD›€ˆJUeˆç¹VuañÖ´zεÊ6´'«: ô‹ª¢þÏs¬:¥jÒA¢”ç«€¦/Ì#_ó Ǫ.¦ÐÎXæLQhŽœ)âó;çXU\¨ÐJˆºŸs¬jC~Sšê¯?ϱJÌY‘qk!¿c#Yeè­è9±ÞS’U_a8ˆ›rêÒgHV ù”[UL–TºŠœŸÜª<Æãƒ¶ô»ÔÏp«òvJÚWM¬þ ¹*_+P@1_>%WÕ;‰4½¯dâ<ϲº†AþT  íáœeUˆqà| ÆÃÀcœ°¬ê I=;5ïYºU=IÙéÐl:§[Õ@ èEœbgt«œ¡ª4$ÀÒø,ݪhBÇr;aYʝò)U©I“”yÇ·*w)Ïó¬ +5ààª'Æ9áª\bß²»º ~B¸ÚóH{Žp•Ê·qÀÞñÑ@°¦àýSzUkXç4;cU¥1…ò”MU×Ô|N¢ÊSúóÔ©x•÷”1UÎW¥—ÛIñŒ;•®ä\iÖιS{yjO)Sû: €O™R B*Ëî9‚TòxœÏRÛÀëžñ¢Ò€òõ,j #1â) *  =e?aÕgIO)ã˜ë9Õ©üÎQÔšc9£:O\[$m«¿ž¡:U«œÃ(‰rÆyªÉé¡ÍD^è9ç)ƒä!î¹N»JP †SœÃò4†S~cqîˆM9qTN_®Wdð˜ŠÆpÉ'ô¥«lòóS޶nô¥ +¸iù€[ÒÆcŠxV9×jšª§2<Ãcª}—Œ?êr9ç1Õ” ïÌžFaŠÇTãägÚ90'îxLº«q£/Õo•ì°!CÝü¥jP‹äw{þR\KX¬8E'}©ûêAãµlü¥Š2SÇ•ØtËå„¿”ðä31ðˆMþRUºð¢zôNÙøKée»šòÒmW?á/ET +æGòÙ½“ÈÈeÑJ Û4‰L5"ht¤d®ù„ÐTmÀ-Ò­¡©ê *ê…j-¡) ªsL( (æžÐ”FÑ£VÀN±m„¦jPŠæä¾šª!koxNM•-YÕãrÚMÙª;$(Ô´%Ê>™MÙ„ ´½‰ºõ'̦žGGQX7fS]%®RiP›®^%í =r=a9¥1]³F›yc9ÙGNnºªn;á4å˜gÖ(Ðw$5UƒkùfÖº‘šªØ ªÅµc7EÁpŒ*+Ð3¶Tt­!„œ©T뼌ÍZZG:a7¥QáŠê¨•Þ”U3·Êlô¦jPQlku=!:õF aÖ¨êƒèTωÊEËÊÕ) ÐÊÓ R4{ªSL2‡‹AAšûFuêùùQ‰þªŒ=¨N1-T®ÆDPƒjjOuªâØs…ŒSDûN•âÐÆ£×þ™\§äs*µÍ àBÉî=ß©’=fZ5B×4ˆpídùâÍ©Ž«‡§hãžæTfW4Ë3H•²j ¤¸¨~SîëUx(Û}$NøMMe$RX¦¢Ø?ÇoJò²ˆAP(–‘P{ÂoÊ"öR+d2‡õœßtU@ +#ƒŒóµ>Ïoª +‚.ÖC9œó›rÆèbà®çü¦òý€·3¢²÷vü¦j”Á»¨Èñ9¿©ŸÁÇ2h1œó›þ^çÒæ…BOЕ‰ñ„èÔ åæ +jÛˆNQ ”ºJí¢Òã$:õ…†Šÿ>!:U£€o˜ƒk߈NyÏ Ô…èÑ) žsj:)¦ÂžèT;ŠÑ[#ׯtª×m“êÔÈ +IÃ_`sÉñvä¯òH®êT’pÃ)Š!£±©@)8úÁÚ¡ÄObSa‚ºє² ¶rÊiʆʜ˜Ç(Ì^;L ;—=vÏ\ʱÅÙLQø)´ó”’›H=¢=iI¸™¬¤%y´gœÂOÜßq–º…¹Å&VMè`­¸ßòº'mƒpc"ñÐÂä¿wü¢Û¡Á/Ú¤³iE¡¼dÚÓŠÖì¹eÛ9Nä;IDÇÏuè<2CíÅ•®:CÛ¢íhBÛ(C9iBÛ2b÷×¹ìIAÛâ¾ßI +Ê]AL.жxîïžÔ>DAÉüYG6Ý$ü¤ *ºùžçS̉éHï©ßkÚX=‰ÄŽ‚™'ǘý“ÓßiGÝI´0Àž±³.•3;‰Ïv'S§âµa=!è,ÑËŠL^N–£)¯/g •ßÓqBeQzÜX8 .›T6òÍ7·ãÜÔ¡Áv |ŠK¨56©ÏŸ¦sfµÀëA]ƒÉ§ ®guUBüôUÈ'ô™Êå þ×`Í¥¤jƒ-SïXOH2Áwª¼ÉàÆ$Ã×âäÄä-Ä(³£ÂÔ›P d0`ù°òF|)òÍ;¾KULA šK•Wan vËã=ޤ–×Ⱦ\–u –m;s%õt³¸tãaÝ1N’çºzüu£§Oî…—Æ9ݽ'“Œrpbì9(UJ·õI=ÉO¬«I=9ëóî'[røÓdœ$µ– í$š„…¸ïž_²{¨s£•Ä£…‰9Ù$çï‰ävhpGRv[\†ƒ2‡R'D‘=xq‚ɉÛı½ :ô"I¨y£åP+ 0d¾´–ÏÁiŽ=".tÂË'=˜˜lAÇniãåbiuˆU¤c&CßÕêéýÓ1ôõáz–˜¯;~ýŒŽ`PQ†= ªËÚ¾@¾×»gaqîõ‘ÁvFµÇí?˰§R/Éý÷'Äz}EzʇçNbOÏ&Dy~†¯R4uÏŒmë3'±zœ›be„<ú„_ï`°#Ú“Ù—ž!Ø“q_ÌcÏ«'o8åJª„á<sjpc­÷dv^=}ut|Ç ž,¡$%êéË÷Ï=@²½|Å žç¯KÅ.)Ÿ{^=Au1î±&?ã)¯žî+ÙìuÍê¼zÙ¦‹S~ðêßóê)èP°ŠBsÝxõ¼–¶:ÉSKÞˆõ„âÜ Á$€›=±žâv ªÆÉ«Çñ–ÖaÚxõdR…xB§'åW¹ä‰­'mtz„K›ÿöÄ1NÔLÄSÚ ž> YôÖÉ*OyLb£“EO‰©‚q) ö„DOm¾¶€ìO=5h,[ÓÆ¢§ÍËÓiííûz¢'}?Éóø­bMv2å(7ò<"ÅP é¤ +ÞžEOΟèhØ<&žÀ°òÇUÚF§'ÙÞ ‹ž|A²tbÝXôÍKÓØ´ZûƢ稟è¨4¬=‹ž*}j¦®T:¨‹žcðˆj.Žhœ|zD7ÇW„ýžOOe_I¦ä$zê Óã¸ÃL€²Ñéy¬T¨xçÓ žÐª*F ÍÊÚ6:=5ŸÐáÞI§§»å=%^Ë™2ÝKßHôÄi²:§ ÓirèqF£t@8áÐϺ(t + c-‡žà(úÀA%9éðšã,ÝSçA4àEvB,ªüÈÉ¡'" =F¤fuÏ¡çÐŒe@3jÙ8ôÔÂmGú lzðwx!#ªä;IõÆ¡G£¿œ(ÞÓÆ¡·ªì3Ÿ4ˆe'‡žÄKoöæËžDFñAJ‡9ôt‘ºÛ.b“Ÿzz¾ ãlõ„B ¶0¢ª+0¸ô˜ªÓ_ ï.ëFªwÖ°g×;o4{¼ƒ;D)¦¹yöVå2‚ΰ½§¤t³FJüŸv%øñªP½ÚV¡@[ÛhöÎŽïXöž¶M’½ÕÙxƒ¤‚n“do.Ð=·ž™>ž +PƒSÕ8¬²A§'„O‚- HǺ/àž|H]j‚„¢¨e0ßÉÛ#|‚Š„›a”oËΖ<€}!ïÃÛ+_½/ EáÊdÑÓÙ"ŽÂ›Yê ž*øj(üIe#Ôª6"NSßÜNõä´vÙFÊŸžhpàžðB\ö©.aáÓ“Ì’e@qëN˜õÄǰ„I¨ÇÏâh,š¶êÑàFÉÒßVŠ6/K¶†Ž±žŠÊ6›éœ~"ÖSƒÀu êi9!ÖÓ,p€S¦fþdÖ~J‘À‰+Ë{f=rl„f“óêJÏ0ë1k=Ùˆhµ4Œ'Ìzª¨< +ÛÛ‘XO èž”éZAìˆõ«Ä~V ìt2ìaç9̉e¬Ø†=eý3/8@ü Ãçˆ ³T'T;cØÓšu&0Ûê–Ö ÃžÎð´Êþ2JOöô6?ª„7xÍO(ö”=¤?ú}N(ö8# àÙ,Y®&ûFC‘1«î‰,Ýá­c^?!ÖS‹ýK—'qG¬wÖvF¬'•LÀÿ%¢FΈõ4ÜPÝ3ÜuT/<#Öã,_»TÕlñ0™õhp2ŠFòš» N¸õtiVˆ…2oùÜ7²=@³wÁ2+,îÈõœûAlu A‹ÃËž]´ƒ~©ãŒ§,{J-ÒfH)óõpF²âX›¥vC?y¬^["¨6c—=|ζ§Ø§“H¸«âŒmOuƒ”@ÁÔ7Þ<É6u¨éèQy0G¶=¹§Ö¾볊ÿSn½­á9J½cã&½^œ?åŒIï‹Þ?©#Eµ9 +;â<¯l·n|yxFäc›4yD6±º÷ìxÅ]Ñ)^ñLã ¯y½ +<;VEÅ6¨ê +1ïp¨¶'*ï²»º~õ.ƒ-‚Ó¶,ÃÖjÅÂÛ©ŒÞ ë¯e*LbMY¢]úÙƒ)­zÿ†@ú« C‘j›!,)ø¡<Çø’£_­Æè/ÃÛcDÄÄ"ÛX öþÅNL¼áøé"†ò'oMÙ‡q ÿüêÆßèo·0Üqè¨n“0¬4gœÆ>&a[Éu{ƒñoÔPËŒ‚CüÕŒ›a£¬ÀîQ¸Ã²ƒ‹~$òqþBüBù“è0„cû|!­!Œú{/™ÛeÞ¥«¹úëïÇÌ HΘ±ðþ-¼ø7ÆíÜÅ¿¡UýêØuµ(q}ŒºZÍšøsušë/¾\4½KDD5H°› I¶ sUˆá/æ[ëoÖ&¶È Û"ÁðöÚ¢"M±ïW¯­Wå´ó§ÅVSxè§³«Vìé~jõ¨í~|´ÎÚ-Ë>‹©Ðο¸g1ƒDU–iÖãüí¯,6Dî/Y{ÜÎXôaαý°ž nÿê‚àìÇüjàµ<¯®Æø‹çÕšX¤û«+iA¿8\)RwÿÕØêhÃí§ŸU6ދշ€Š¿¸XÑADgm›W1UµŽ.Ï*!³÷_­ªîÄ-Û¢êª]y;S©nÕÛ_ ©E² — y•žÛ} +)Šãüâ>µî}kÓ) GÿxM±ã©Šó«ÇÔ¡jñ¼?ÞR´'ØnS©CŧĒW)ZŸ±`,7)þ¿Ûr‘úâþ-ãgVÍ™Øÿã¢9³M£¶róöŠÒ€þÀ¯Q”p—¶3Ê_ĤÛª—æÌ¯>P¬BoÈ%‚÷ +Þ(×'þ=ç_Ížúmàíñ`ÎĶvRIs´¿8:õRïÙ=*4–Yô¶Ê—[øø6=gD3÷ߨ\ ”K’°·þ˜3ñ7v„mÎôžÑ*O&l[Xµb¢›F°˜ É³Xí1*Ã~õ[zXÝ©k–ßÒsGs;'ÍÂ}üê®DÉ™cÿm°ô0¶L•ö¿õRÚÛJ³œv¶ Ò,Ï_-“`X°@ì¿=g¢‘môù÷/¾HûoÛiV s» ÍÒüÕüz‰‚žåy„¢:‘Çö:šE‡ùÕâˆÏ10²Ö6EjÞë"&÷Ï|4XùØx*£çŽ û6.ãÌêWë"Šºjá–R¦ÿŽº°÷ÏšøÙÿbPô”Þêö%²lûž_"Ѝ²O~±#z*·-¢g“Ê}hƒc~1Ú¶Ûkèy¢üÍbè)ÀÝo…ž‚¥lC¡—Tåh!\Xµòoé°¸ û™çú˜A·æùÕ#H%æLYé5?Ž@²‹¯þ# äsÁìlÿŸ·§ÆüÍöÇû[ÖòßÜ~ž2°øêñCkÒªøWk®Àßo=}Þâ%|³òáĚ勃ôhE~çàCy™E…=ð•3ú¿žŸ§þMϳ‘ åÎ󤻭wöòñ«œ +- ËŠçÙíȯÎ9³•$ùïŒwÐÜ´Èüõ ÝÛ¢Ó+Ë{$¡ú­¹’”Ç8¿{ê¨UÙc¥3 0ø«ƒÎ„’÷¼ßsX(GiýÅ/gˆ&ýolr­y~·É!3ŽÒПœÏ_Œr~þ-N9£4V¿Y–ÌkƒŒcŒ# ÓO}ñ¬ ÖGœöFvô·F8°éúøÿL¼ñã›ë ùÖµíp¾šÝÐYŽÓ³›öl—‚/7xª*ûÍÚû ð¤ßmhÓ÷öÓÈF,Ó÷wF6 3Èë¶ãÌ`{t©(&õ ˆ¿ë^þÅ­¦]s«!EKqñ»IM£lzþÆ ‰¡å±¤á@)áuñ¢QžòýiAó5àûóoLþÿ4ÿYÐÐÌ•„вola„*Ý-¦4ŽR¢ƒ¢¾…Ñ2£ndw9`Pׯoà—Ýš•ð©bäÛ/8çùrÂæ^9ÏЭ‚0ãz4Ð|ná >}G+¤‡…ÃÆkÍr^ñFÃk%[ {H¬ +åñ¬°åx6”hœ7öwݺû·Ùc¸þsõÓ0·6BdǪ̃2ÛéÚ–è?GHÔëÞýÁ`êݽÉëiKK1j+8®§Ìò˜d¶¨P¶‘4s°|7Æ/©(÷JÿH´VNt òq#+.#ÎÉÝÔ[&:ŒÁ­WY[]G4=%ß·DÆN‰ìøÈƒ_ºsO÷‹¦9sið߇÷ÌÅàô–7ÄÐ0½}4•|†­a­1¥öÕ7°ï«yð¥é¦¥©>n_pNHª×oX{ó=gP0QØ9D¾Î3z .ž-óömñçZöi*‚,:û¦áÝÓëH-ÕIî mŒèN¶â™06×7™ýEý¹s°_•‚ÏÃɶ§x«S^4_ B\EÀßUlÀB·'+ ­ºŸçÚŠ :‰ž#¤W³i¿Ü´Í¤ê5­oL­¶©š#B{DIÞÓ!˺lâõ‹î3âyëÍ;ô*“þÏÏ`ן8^÷eŠÒd}¾¸Ùëª ²²Õ‹çEéAdmޤD'ƒÞ\‹ÄuxßûÀ(r¦Ê_f½gG îBDZƒÐF&ûÓçY¥ânG1Á›ÌÛ'~hØ9­×\gIFÐðïÌó{½áßÛö ñàãÁ%׆O°|­?îÓÅM¾¸!Ü × ûÉȈ‚Óh±ŠAäˈ¾EˆÆ®äškk’f”ÀFÙÔGp«>™¨J5°‚ÜÃ-5ÏÎV¿l ïÂŒ­è”zƒ!€SGër§OPXwðaëFÝêØX *ýàÞl1Bƒ;|}"Z|RÄgÊ÷Y- Õn…nŽŸ‘ø>˜Ø8„7½ÊwhuV÷Z<(/VÈg†>Ù1Xz_'N^%_·1ñ,gÀ•ekÁô"‘bz!ẅîŸÛå\xœdçS+r¶ª7ôLï"‚×çô*¬®EÝ–œþÅÓT¯ËæyØýÑÙ“¼LšãkVÊΚLxFPJfÄ:Éþ¦'úgkùC*Ö×,W<Žu{ýKÕiZÛÙP©šæ1ìÈ5=iIú RÜïñ¡õ~ÏèÇ!í[•c+:ˆ‚^­ Ínéh¬' kÌê[ LëbjuFF왇ë…!& »5 ðSº` I)¹ƒ˜VºF]G-Ó(©0ŠDÁóتox=¤jþ"Ã`åôïÒTC¡´½?O²ƒ&"Ý êQ½Å$ìöXú„yO2Wù†È3lA¨x¿øñÏY#¼Ÿ>v¼å‘ŒÊaN£jgÃbòGrGáF,Ó3uîzó"tÅÖÍMœlÍÑ%lš—æë5K@}¦Š +€o/GWc4 +¹a¯Å­´p¹¸ãæi\¾¯—†Ë}­ÀDí³&Âx»šã¨ƒågÍuµŸ¼å2í›·žœ‰·^?g* lk’kDW¸aCå{×–5âÚFti›/578ƒN¼˜ºÉ¢§‘Ïß°Ú-ÓÛ“8f€b‘ˆL1‚6שѺ¢\g¡’ õw^Ë$ðzé®ÓiþÍìn>ΰ•Ø*)¡L|ä–ºY®wuœÅÅ¿PrÁ}Âàׇ»‘UÀȲÇzšv}景`Öúbð5rº¢ÒGäDµlâ…ºv“Þ¶=ÂrB£`AeÈ›¿Œ–6³Âò zþ,Û„ž>pâ¸çsVu èy¼9)Ñ›ƒìd FŠÁújTÞµD à±þýjþ¾&®ÀPÔº^«û‘Õ}-²÷oäÜå´Àþx¥‰~Là‡¿­κü•ý³R°>rûoä ùR³`ê… >J`9|ÕÕËÔëeâQcfóëÒÚýù)î'Œ2ŸxAŒº×.[k)«5 hljèžäo¯ee¾&!“i?î¾õŒ%Œœ/;¯œÇLb²—!õ1‡[Uøñ°¬óP[e„ä1â¤ç̈‡ø†=¿U‹¸ùKòš7fµ‚õê®UuÄæ^ãµ[kÛ˜»^b §bŒ¸Íå~°Ã+¾âTÌ*¾@ÚŸenÀq{\6H©^¥i´ž Èð”9YpÖJ7Ÿ—'e1Þ +/Ž0kw¾Ú'Fº–pP×å™F)iÜðªÇŒS$#ô>²âÙrÚõÌA޵gkg1j®«`Ô@—?£v_£.žÍˆ±Ÿ_Lœpød"ûš¦pÓ+^Hì>Ý«%ùЧÓ¥Htò ÛÐòy»®£ë-Pë1gàÆ_ÄÂhÄÇB ã äòt¾Õw'(Ë"ß[l©y³<¯å‰bü ÃØY³HSH¾g×!eK¡áz:¨øU.6KË”2“¡Æi'q=ÿ•® +cFº€<Ö‘=ÅpMYvžÅ¿W=Ïrõ¼Z¦mLÖ±£xK„=s}jÝ}ׇS\¾XRFŽƒÆämÙzÊîîRIÖÛQ#zóô}3ú%œXæEÃù®Q„.ŒRgž¥–X—ùì´-# !2" 9šD‰kê[ä7lóºå}@Éóse?L¯8*íkûR1ÍîM•_–xÍJñzÝuªÊ>xê2dn uÐÕp‹,XÝPŠFmMîÙ£–¯õ;Gˆ¡êÀƸRŸYÛ§­í3{©óˆ ]¹ÌH1È´yž&*ùXÞËV2xñ9©æÐû× J»É¦ª¹(ü¹ìÀ¯@ig¯â¸x­ZÚþŒz(—ëžc'Ð%eö)Ók‥ª§Ç†}†ºÖÀ¸ágJ|®·ƒQ·¦Œ")ÜùõTØÀ¥¨¢rËœ^#nwZFª’Ýú^ÜG§ÆÖAŒ9ðúÂt\þ`!H;ÂܵEŽ»“’ÛMºW"\|ÝÇv$»Õв¿PÀÛ÷©ôjB3JòßÎC3¥‘ÏCýVvý ë¤ßaïjK\J›}æð¹õo¤8²öõðržl”+„º;™êøìWÅ ¨%AäJzO…>©®CQX¿i¥Ë—ô™•ËPç5_7ïÈâÔéÄÜ„ì-ƒ®Hü(érn iÜoGœîxkÍãUñ{Ž|Ï»åh4Ï¢RÚÒyµòñb+q‹ãºlhF£Ç#hH’[[CK-#ãKñixw 5žß¹“ŽN.ÉbMc•»0˜î,xë}Ѓ…çhqjŪúWtíÙTDžaßG<1[‹x£N±«lÜE ìÉš³ÖrBb?&kkE.íÑÝ’;ïÊ…8g·,¡öZ "ˆ01R±¬Ís« +€n€ÝÌ‹<4‚$¬´k*½–Iî4xÖ@Ð_em~w•?Œ´ôQž|Ï–SÁä¶ŒD²àÁu¹ž~xÝŒh¯ýtÄK5t¸›¾b%/Å9h2±MŒÖˆcƒa¼!¬€>{)3½K;ÓÙ£±¶3rE!„\Ê+°¿cÔB3‡î(>1êIO±ŽToÿhð2ŠÝŠZ=í{Fµ+›ª†À è®cÔný#µúZFÖ e .ï+ÅÒ©6'jì–õùI:7’6>ð¤<Ô§µÆ¯LM[D]É¿!]”] ß‰*Wx-¯›7÷ús5 1ªê°é$’ŒöæðºÊó2ÁÑ…›(²î7'…6N¨C,š·w-E>égñ7× +/ߍe1‘“ÓášÈ{<³uA2(Z÷èKÑFZ‘$7”>N-ç`œ­Õbn±{0’ÒÐÀáßù&ºø®HfÍI½VŠf»+Ó”ÑèÜ.ŽÙ¬IÁ›A:©ùËŠw*¦¸ËjùÁò̧³æí™OKÃæQ=Í-ïnDx— Ä—Stj»kÀÜ" ²“8HkŒjNd*÷9ËÁ¾Í-ˆ>¥WÚ)Å>‘f–ŒÂ÷`ÓÉ6äû%8:+žä0„•uwÊÊÝ7/OøQXezBçE‰?fÁUó¤­åÌÍø2tLtt«ùšKçátN¼8˜÷¦Ì±mñ®?`n}Û×…^2VŠÂ½¦3ø:"à=´bN9N0ì~sž•CǦà"gÆ‹YˆFdŠuühú‘¬ibTÅ‹mfl4âÏ +;²âÇV(}ðÈmXB‰zu7Q Þ­(lŽR2?” ç]¨òŸ üQ2áÖ 8ŽcOÊ9,׊1{ž«Î#©Í®»ž#"þˆ‘_%F¾ Å~3ÂýnÁsÞ;{Þœ@#f‰¦xdDúe1½ŽX;y(ÖKá~?ÇFVVÝFŽ!‡4B:kP±SøÍÛäùð—oQ.á@+ÃWÖ†)üøˆŒ2ø:x§) +ä4§¾“ÜVª<ëBi\ºÈÜTiYg™U©69ˆlŽJR ÉVon0ˆµÔ‰³*×uó¢çòE¢Þ`Óz’ÕË­}=Õ’®‘˜öÛ$U~€–j]ø£TŠØ¿û5LÕõ`‡ŒØZ׿ôòÎØ­p7#Þ$ÒT>ö7IˆÂg9…®‡"6BëÙsŽ*2ð¶h?öuÀ±›©î¾Q_=ÕçÏÛÆõd±Mö²d¸Å2(íú®œáø~ŻބãÙqŽ”†YóñÝŽXkÓŠtÞ™ú#е§–“àcÕ>¯¢üÓ@A I¤ï|=°‹þ×–øë§âŒµ(©çÉ> …Z¾޲Sõ}ŒOÍ“&…ÒM,; +Ëâ"<—÷¯V;wuô1®¸ „²x¬Ü`ÌþуàŒW>qÛ§[\½‰7§Õ_ŽA'©:Ô¼¯V*mk#½DQð€É–¯tq¼[yTÑ–»Uו·„VU©{fD›é6;¸èio€í qöät·‹)#žþˆƒƒ(lTÄØÙ¿ù. wÃ÷•e¸¹àÑçI¹=º€÷C±0¥©Ú>}|¾@`ÆuË¡ýݨ,±FH/òúrÝé6¿€˜¯Eõ&ËßÍn.„ϼš$Ýõq%DÛâb¹RZ›rØUM“Caè3ºJH•^"¬û`˜ såA`33= Ñ x# %¸ÑVä‡_¤Œ÷ÚÇ×K‚b1\ü§Ö2 Ýò‚ˆpáJL/Ùüò8y6ëÍoÛÿïf&]¸«nì=½±/x<‘qbÂÉ +Áêû‰yôRÇAÕ­„Ó©Å:QÜõóØ_4ⳋ+ç1ë΃»ÕÉDµe}K=1‰x€!ÿéúÂŒZÁ³á][Vºýþü!>Šƒ”ª97 5Wb±öÖ|‘¿¬Wˆ¨÷övh1öe1É™Æ>Ö\Gí¨ùã‘?YÁÏS°•Î*Yx¡Æ„)€¯)Bk¢.ÀKhóçBMŽ='ç Z+rט”6ú|U{¼toç~#=òºÞ }¸r%| ±™îþ2@EEËüæàb.;OÞ2÷y&ÔS|ÑkS@/ ®¨R'°DΚÞpÌ5§[¼Ž“#fDxšöÔƒ!wì&\Ùz¶õdT#ÿ`„x8×3ôÁí—3XÝ‘íy×Ûx¾ŸóZ×ABçÏ(!1ÔIçüfk„åFøðn”[žºð3È¢ ?ñNGì½û’e<Üi KŒ’CCK€eY$c¯åbÖrÁ ‹}Ç!ìå|$‡Þ&"8xõŸ˜–½ZOqoNÒ³€$Vþ<2u0»ks-<Ö­­ æ»%:b(ÆÕˆ9øˆ +¥}ù!íÒ¨çJ½æÓ7P”KEÒŒð¶¬mÆ'„˜árÇ€Œ©VÇÄ¡¬ù|Gñ]vãí§A¡ïþd¹ÁƒÝ1ù]#p\Î_Ûµ(<Ê2ê=A”ÒmFKĽ¶™;÷§»¶²MQ„ÚuV`Ü(Ò Á„>tøž@^( É̹ÍÂOP9Ð5D¡…æ™  $O’+œrÑ ¼&̬¯ã¸Æ^z…W2 VL¸#̰^Ú?¥,/ Ž )Z#©ᥰ®ãH& Kïë稦³Fa¨ç(4¨…ê «nÀˆ#F#í5 iøžYªø"‚uF jZJÓ÷ô7¹³Þ2Ö0ž”Æ)׈)š¢O­£„aßC„õ“ƒº;îÝzT¾Æ\t¬ÁÅúPxt= RV#J‡to3Zž< ù¤¢™÷úm!㺭`ú +Ì>+¦›)>Ft5ÿsgp@2¤wÀÞÂQc†Êʬ9 ®\µÔî¡-¾=uþ3"—ŒšÁT©ÊNt{£@Ǿ^å!JaB¨!Zkç¿ïB±mÄ(ðÏàÉ(<ˆLêIÑÅÔfKNwá¿Ùr±â|ëÕï;ÐBÿÇIL–AHë}¿Ê4o½TÃMMA2pö(~Š6œñÛ[VÖ^òj/([Úß|$À<üéŸü$; +måZ}¯¤çÅâýñíÕ}n‚†ŒÐ.¦™=9€Z¿GOŠ¿»ó‰“}ðÄ?X«óž TÂxr~>ã#ÇrÞ+x”§ú’âá,_X»Œ?»qÕˆ³‡ ´Aîw±=ŸŽz±œ €¸5Ä +ÅóhÏÔ¡—õÌÊZ¸.eŽ(HÂ=ôKfÏ4ßæ7H8njw[>jwX»Tg>F‡ž©ÙCw :µC´ã˦ÖÓ+XS#­rH6Np¥|jSbªÔéñnki]vÀÝíÊÝõì$œã(‚£lœ¬QëWÖ‰z×óôd!˜ 1âP@”+ÖôóFF/›Ìûòøi¹Ú oZKŸ}Z +ízÙ4¦d÷à•ŠÙ®ÁÔU®à­Îv{-|]YÞ_ßþqGžÛó¬·¥ú—ê;þú+]V2ºCýZÏcäÏyØ#€wÑô‡­sXƒR÷êmûpõ{NÝåÏ‹<|hP€ñïSw‡üC—ò…œ;©dá1À2B;ª¿ +F>GrŽmªÆ¨'Ñý+éú GöR.¦y‡x®ÓË_StGœyÐ h8pl1!"GûvÞiNª—úg¥Ò°Ó/òÖª£÷Ⱥmés½ÿÌÕŸ„ḣóÃMh>Šùù¦þ„JòÇaèÕ5èªÓLÐïk=à%©úD_Î=¡]5¢¥QT[y ŸvFμT£ÕÀfË`•4³…2†WñÅÌVöæê‰—k$=§SDPjN†à÷é*xaÍÉm sGþÝÍÄ&¶1l2aäÞj¬SLùäÉä×4‡Ë{ãoæ(^Ø!Žô•`Ò‹ uë`ô´©>ã‹:s¬«¸ zL ºø|÷¯é±‡¿.¶ Ö$¡ÎÄ—Tò §ÈæôO°¦ŽH@½FôQTúIìø÷^HzTóEóÛÐx…D|®¾áñ´+çàÉ)Y7¡²ÿú=ÊÂ1ýѦ0eÁæm° ø1‰pP¶N †û/)û¶52¸ƒOV(F\q×ìø)6Á(6Ai\QjIÀtU>Ö"Û£%{z™k_|0…ç +“+eã´rbPãÈëéÎË/WZÉ·o\â§1 +ü#Ìn°æü\fÈZi°3¤"#*Ùy„No<5ƒ€x1Èõ*;l^^VF®„µ“+y¯bmQ£§§OË_fý¢›ÛùE·kAžM91¬ïiš^PÃf»ù­²Qô|iápòCn@|®òBd€Z“}­vW]zVPÁF$Us¦F¯Óô—0¤ø¬`ÖªÒŒëØ=AÆ„¶^h(JH¶î¹¥j sëŽe@æBZC[ÞEd…Wör®…$I 7T€uoGUÛÉhdƒ >·Waz¥`;ÖÁÓÉKñé…¥Â;Á}~EÕè^1³º’õR–„fý´ÁM89r޵«">ÇNÐ6»ó‡û¤ZÙ]<Ö´ñ-w8SŒ™c¤Iîò¹Ø¿XèüTB‰+-×(3ÿT—鶇´èLIT%AfõZ}£÷úp…Ùç 뫇ܨåˆ8¬j ª¢·iÍYj"tô€ª¬G  ŠÙŽ`Ï*† •;äK€J[„Š-;H`•|ü¶¢…w¹K>ê­°0T†: š]ÖP$ª;J€ÏT8­9è Γ ¬ýr™4çšrmŽ¢Œ©¾ŒÈ+–žÎY7—ïéH]—ÚÞdR Bô@ø'U—F‡wÄpÞêj¬@d{à$‚±Ä%Œêɾ–1æVåÚÔÁµ*¥Å'žÁ'v÷ƒ.…àÁõîܨìÔÍkhA_avŠð\3»—íùÍyf+"8åŠ*ﳇÐÀlÌ2ÜC‘ˆF&¬Ù&¸“is*¯úã - ö+ñ2ÌŸ3øq‰…ø´Q£obÞ^GtÈÓ Ds)Gj˜Ô“?zîèC’uŠWÒb"}š¸ßÂÌß"Õ»úÂ_Ï#–M¹—Û€×2|6V¦òEwL¬—U¬²ZðÖöÞiˆX´K1~@Á$  +„þ5U$x|‘Â~m·×÷íì{m%&ð™½2Júˆ´ÜäcR»ö%䙸Sk»7# Tê ‘T/0·ÀOêÁ…hû¢>Ó¨-›’òÑ÷̈##^’\Mî_qÒk'…®‰Hn6sÃ3ßq¤<ÉAA"Ìð›u Ùó#ôÀP››µ‹°È…„®ÄwPFÞjEWËÿß—Bpÿ|S8Wg1j^$ÇòQÏ@Ó(çŸl8|Z)íùÄš¤·"çqìÓ\Á¦—Á*禰Ä4M’Aƒ?† +ÚgWXWp…€´µüÌ¡Iþ>ª3\ +ÙJ¦ñªv-ØlòÀà¾}wV’þ[F<7Å^ÇáL)@õnuí!Fžµ õPö8Rçr”PÂ;ôÅ5J7c¿é”š¿ ‘‡Øâµ:Ž *º@×p$Þ;ßtÞÔ5K˜y‚q“Q=3”Ø©¨ˆŒ¨Öé§/ß? Y@%@¼A¿‹FrFR`÷´CÂ`¸p¬3Hi)2€á­Wxú’¢ufÎùârdE¹¶—fɈäÑlt*ôàr\ò,ó¼³c̪õw +¨O Ó>Ï-ƒ žÞOê(Qpºä–ícäM¹rSú)'qö‘_sçÆ‰ÖZ«óš8ä²nêšuÅòËøplqœ¡ã”PšþRÈÐ +eĘ`J¡¢)£«ÈúI¢9w ÞaºOý³w·"ÕQyâþ°V0PëÓOh»bÚWü;¤rš¢Â(_Y +ñÜ·õËŸŒ¨îQ¨nEõz´à <‡‘¤Ó@½®2½TõHêá›”péQ€“¿ŒÈ‹Ô&+ñ1K¨îëyÞ2‡ë)=¾ÛÔÉõZljÚÂV²þ~ýØ‹‰þÞ™c$ðç:FX«q±àÿãnw&]óyŠÊãÈ$6Uõ}þ =î²z‡ð¬ ‚ Ô·jFP'…¦Óvz΃=Ìù ‘;³ä8ëÚbR´Þ1­r*KæFÉ—qç½çn§Vžg=m±ëÛlæOÍÇ1™Ÿ†Û—QoÄä'07ß'|š‰ä…Ù"IÒ4<ÒÞYTF]¹n¶9 Ï&(w +k×¶^šòùVRÿ¤¶3„6‘vM“¡p½ ‚Ø2l­›Ù­$Œg¿ëçVµ7þ€‘MwÌTÕè%ñ#H)òwïmZß’¯gtðƇtmCQ^.Z™~ûa7d]∠~fkĔР+ÌŠ <ÈH¦ènÉ;Þžuú+ø?PR׈š“=[ tHÏ_Z;ÚÉ¡5uH‚ Pþª*ê(• Á~“:×ñ~…Š2­SîE÷×§äÞW\Û»X`À}]ö‚Ϙ­®}{tÉŒ‰Gs2”{±ƒ|Jì =ü5Ó›5„ +h:nùæTîÎÁ½ÝìÁJTØði‰›¶+@Â]é¤6s«¢™wƒ {Š6¯Â>GÓ¸œà<ãõ3”\\zÕϰ”7$ìîßq„ L‰èõÖŽ¬ÛƒÇÇunàþzëwB@>G:AÿõÊŸUƒPî»\I"è\ñÖÐôUX3 +ÎÆŠ*Ð ˆØú3ë…¾ÙSÝS± þDU·÷£Õ¦ŒÛÖk;þh¿*¶ ùHccj_‹Ì¥$WÐ(-;Ji(o8ßѨ@gI¯>+hRrIá„„ «„óŒ0Òê€|ú6bw\¢mpÇI(¶åNøM+7׋⭉¢fDX¯¤@žö™g/z‡¦¢S¥[±q**4‰sòƒµëIûÖdWµ¢Ö4ãÄ—Ö"f—yÔ <¶âø÷)ô£RÒÀU¢Šp )VÜ{žènÑcÊi*QÍP!„SL¡L3¯N/¤Òà¡]ïÏ/ê"•ÐeL‚kŒ¼"‡£¾G:&ÉËSzk…¹_1ÚÈ/Jå¡^#ÆQ#>¯ú]Â*@Æ[ÑC~//B‡¬ˆÍ[‡Ù„Õ¦õf 0¤‘E“[ÍX™¡ª²¬WÔ?kíýk‰œxÊT ¹5KÙF[¹¹ºÛµëæt)/âœ2ônKüÌbæû¨§‚ðFüŸê³XRžWÑîR!X—ò<‘IJyŒdøPYËì-Útû›ÒZ9±qò]ÀµüÏR MÓ.¶¹œG®p•2pöoÚ äMúS€»mä{G|Ãnc]Ir²l¯X†8K…aR=½EtAŧP6MÒŽC³B¼pýæ“í¥¢‰¿º# Ò»÷L‹)Ÿ~psgT¬fZþÚ9Rtb»^v•Ÿ1Çkkgmìnx‹X‰å×¾AEdžæÅ”‡‚M¢,ìµ3ZÉH¶ßh©CÛ1ÿÖÉxÈéíá¨45ÏZøî«8=BÐb x®Ø£A¡þsìp.£â®¦.m)ÏcïüäªÔhgC©Š*YYc2à3£ÙzâÍ6Ã=²1vCÜ Xµ#§¿¬üÒ»TNMN=ë~˜GêôLêû‰·ÜK9ƒâ±UhÔªiT­ ¥£òÁS Q}-ŒÂÔA‚å|P¹.²‰ìz ¥ÏMA­ƒé'–»ñÑ4ž†1t[Q¸`)ç€Â÷(1OrÕûZ‘KwFäbÞÜ~-B§£^s@æM¤Ú£åÒ¡ºî[U`GHòý8"Kš¢ÅMsïÊ€ëgAÉø¢kËÚk^Ê3X¹åüÆ_0,dÞsFnˆ·\ù»°ŒàÎûf +‚œéŸ/J)V1Ëz‘Ž0 |mÐÜy•Ø9Øš|S—âÕĮÎ!„J\èïÅáôJ¬I©\;‹ÊÔbl¯„—5Ë3ò…d®”„m?t9½1¤U¡`-¾lŸâóÑBˆ¿Àþ¢Ê2U-*T§_  n«ƒÀ3ºFBi yÍj¯ˆ9Ô"Þ­KÁ(r F3{@·ö­ e¡é¢ÒÂÃJH€ÁÔ ÇW’M‡öÖy +ìOsWÞbó$_áŠñîó¦¨íºÅô4Ál#ô3|oZP¾S´«}#èÇ»5€Ó)=”£þCYF-›q×yD³/ãÅI3 wÃ$¤"^»’q^ËyV¡:KU$„_©Ǹ'\¶;a¨È$¡ô+›gµÙ†’/¹gÔ@Ï·Þ´hs‚?U/Är»Ÿ9€F) „I ë5¢kSý»oºÈw´^ß$0׫}~ŠdiÏ@ ï6©f¼Š–í¤|W!ø>‹#Ùúh!Y—ò.š Rôžê»¬7a”œÂ,Qñõõ#ßÔºB‡'¿iF¸¡K2xSUpthŒ ª¡?ù<¶‚á] +†ç~L=Ù´ªƒiÀ†b£Ò€¶p·¼Kt°Eó6W€½ÁÁ «ÓLcÔÙ?÷ \V-¦Ó³¡ÜÇ~%3’yÓeRµßÈfˆézÊ$B`+誅T°xè†I^¢RmMHð‘óY»¡ ¯ Òk6ŽŸzÙ°q¾Ô½Þ¼m‘àJë­î·2ÉÝ5 Û!òãb ZøžM5òldQæZïX`ݱ‡Vzqîp§Gïu ŸrÚ([y[Dôz Y>lvÍQ]Y+ÏuEü.Ðì5“t©p„ÒÞ+`܉ÛÕÑ=Ò{[µ+ +\3ðÊü€càÜãy\æÌZž +qóÒÐÁ«f|â¶PdfËö—VCÿõø º÷òâ’òÆ1ÄgøºjTè6ðq»>·¤…Ö§¥š¤&Í¡Ò^À²"â)¾Å#¿ÒȹŽ#’¥I°x©zúµ›_GéÈ׿Uó‘3qT‚ŸçùáURÔ äæ‘÷%Uf2ǹ3Ϋ¸šî%pDÉ:…Q˜¿ÒŒVhr•rïñS‹9»ÝòàÃ"ÈÆ=x7 z­ 2ár-p½ì9| BÑý9ݾ¿Ìä\w²Gñ@ÁG»;àª^Æ÷mjÝ€Žþ<ê@25«>PÄæ*¡†™Qò¼kº:¼¿Á(æ—õŸ€R5#X¯•y®¶Ð!ŸU/¦ìY›„ô{hµŠÂå`Oå1Ù‘}ÔÓ…]RŒÈt!8)j`ºB±@}¾) ïµÆØdxT•×7=ÏSÛüøMÁë±¾¢Ná õä€#˜Í¡þ]m°%'ˆß½;9£Îà?&O–R½è„˜ý%3Æž +ÙÎù8Yþ4š¦ù¦H1—çO× ¢?„¾3jD]^ ÖݼFÍÁ+ˆ€UÃlãd¿­/Ph s3ŸÉÊ?>åUª‹ÎI £I¸Í¯»%ˆph4°¡"Þ½gíVÁ†ïB³ó³Tk±Ÿìì†W’‡ò»~ãqÌž&>]‡V58d·¿¯r1+@Šš,¦l3z¶µA½\ïoFr=C„\w÷ïoNNY¾Å}·@²fhc9$‘:ó¢£»óÆÇ(9:0×÷RB€¬¾Ö õðŸ@XA÷tR8'3i(ÚÎɆ®Àý…b¬…îRþôáa¬p”NaýŽ;,p*_ŽRέ`„0Úfk¸AëÍ}SœK#^F(zƒ^#S}G•gA,ñÒ9»²‡Žÿ8*™(–ºbé§ŒÀ®)k72&ù&Ã(G&ëµ æ¾Ù#U©¹UôŸAn²ô· èôhÏè &w_ËŽœès º”øöÒÝ‘ô©ØDÍÎ'„®Oȹ¢yl=Ü4Ä—Sƒœ®2 +ÚvØôFhSÁGýÂ^4™ãôvÐDÙÂwý”“â7£Ø†Ð(ôN¬/ðÝ<ëU”HǺúŒx[% „ñèU?ÏÿðjSV†+ÙÉOóL±8-ïƒÀ2%VžŽP;5Þê7#lÔJÅçüý n)|iypQ’÷-ІWåÝþÇkêxï}•ûàW*ÊŠ‚<åV|V%›þÖî½µô%Åt}‘ªêX‰9ÿvž›;»rxwD¨K[}¥QÏüÝü‘ Cƒ¨ïµö먷ví4sFÉ Wü–ú$M±@}M®ûû%dþvÄZ!ÏMlB Ýœut8KÆã 6 Ͷ4_2zŸ;4 +!üjàûDpB ùˆÅ6Òöu—´ÊÍž’9šᬖ󨅬·Û©r%H#”6S$IíöHëà ¡‹u3¬Ê=&ä¾}†ñ!;÷ùdÄeÀ²&µ÷Œ¼ð”‘ŒI3‹ú‚#õ¾›w GÆ3¢-Ó©ˆ ›& ‘ÝEâíÓÖV|‚p ¹O«Ÿ‡Žm!P‰BÖì¦ùt%C‰!Ä‚441ï[ŠÖ¾Ñ™Uƒ$–D÷ƒ^äÁ^äÁª·qÌüõf=B1Ô¢Ù_ íê ɇòl‰=œ¡*Þ¾QTާœbOä ÔU8ç/| —Üqäg¢•ã"øõñ󸊬È/ã€ìÊ;ÌJ¡j˜ùÐŽ¢–¡Ì–X8*@DCÖU‚¹ACr!^2J˜t(Y®úàPfnWÒDk·Í ¥^CņZ W3êT‚ró1Ô­ DÊ Ä´†b&À¬!‘äd` Ϩ;$¿¥-wÞ¿Ð{“`„·5#ÉÈDDgª¨‘“è²°†£ã¦ò‡­XäL9¢¥”ð±åbЃ¡ ½@mæ× uìÀ¸7ßE•‘ü“ £3ÕòM÷|¾%ÕâMò3:%T:Ñ)9{dqÞ3B?Qu ø0.>ø´S‹ÌŒéȪ{îêå,\*m†‘¢«f$ › u_š[5é‘T +¥,‹N(M°Ï™éc5yšy;©2’H¸Ãe©ö¶æOŸtŽªýƒAf¿DN1*¯kgzÊ{ÐG†ÄZ{¾ø`JĈ)®ÖsžãÚà”æzåmäÙL˜Rqøëˆë ܪ]8ìZß·Q#r…köÎà;›Ž¦¦£yÄŸý«UË¿e¥TEUêü“"âj×3y‘ÚÔ7ãyΡôï“J-‹«Uc÷CÖÕî‹ðôú“Ò¿ë匴惺á+`Ýæ $<[ëVÇ•ŽCYV‡ÂªÜ†ÄÂ]מµ ŠŸåC}ZiZ5 Öàd„Ôéé/ tªÿ6({Pð”îã& € Á_ʦ~ÿ&€ÁM…ÅC¹í¯Wœù)"¾€–ç—Ÿ"úL#i¥Oý*íLµNÊ>ÔWP†zãóòª4‰e_S@Ñ<Ï$mÊË>”“42šú§íˆO¸@ æêЖ¨ 9Æ-NýúÈJ‰RNi¿7íÊM;·ù‹.ÚÕmeóÙÉìB–5Úô‘ÁË9¼/ˆ*mqú^Ø´ý¾ÂWZ£ÎgĈ&˜þ’TA)^F4¹À-ùÌ3ÊAÝ Àç§Ü~ÁšgTB€|í®¸Å·ûò„’K·“EëŒw~Ì"È(zŒ†éN^¥.–ÿ=6>$R´Ûácí»:·®æu;!Ne»âøi’,z …R9`,ÊŸV w”Ò©)ââÂBvÒæaÆNôYd èÉx¸Âo¢„O,0ôU:K/ýÅcQ­…'Ëæ©k8èWÄ¥œ'`$®{4][Îí-K@ØŽŸR¨âäàÕ;ÊfŒ’Ëò‘þôy¬2ÉÊŽ(˜Æ3*Úvè2l¢¢À xš¶žÓÁ”޵.îʇ´¯†Ž,Ô¬ ,JU”ÇÁˆ§O]ªo©h›EF9”› ƒØ3²Ù2\`¥ÝßßzÚ½WF³òêž™f„Á³ij½eàÂòß ðK[úÝÈ”G¨ÊÈšÜcCAìy‹Ã~ÊËòû•ÕW‰÷µ~$Êð*Ò7[) +èÁ(+{ã‰oqGHEõ)5¢™ÞÒY­!ñuCQaBbïç›”åè³ 9(ÛJW~§O˜"%ü‘óÖöxÇ1‹`K y"—Íç£ßw°]Êæ¨;D+zºß­çcþDK[ŽsÁ«©é]"ùÒ\»”šG$’Ïv­°Ç貎ŒV´DîívxD§KÌQ«QBw›­Ç¢9Þºú齪e‰d˜VBQ³p%„z-Wú¨Ìº1~¡>²ñËŠ«y LG"ßïþ­`kö”ÞM ½C íu-±w@Ò³š_AŽ\W#WX1vVp¿†óÝûëJ?UòÌIÔ”'ÜÚMêÕZ€ÁëÃ×ÈU Åhæñ’ Xx¤†ˆ?" €Ï~|°¨oýb/"Û˜ë|^õ3–Ê(™yð‰Á×¹6m;[5†ž¼!7«Ñňñ–Ï•¿ý¢Ô÷Ó»I¿àãH?f°k½å&>í´­Í‚æ×kD¼q Ó4sMåíߨø:âþ Ф¸À”oO, K4á΃P²J¨·Æ9Û“ý¦“bÂö‘@qœ– E?³±¬²LÎJ¿âf.ùˆƒBø¨‹1CVŸå!Ñ-žÀÄ =V/¾G›Œ¡³|Šøás6=íÐ#k:w%®°äœ_ý‚µhÛ­•1+èWG3ŠN0WâÈEî˜Û´s­e/`Gw L¤¡K¡t+|·gÞÁÊ>¢qkwJµµ¢˜íq¿ŒPbOú†O ݺèfH·˜QïxvþêB×'ë]ÔùȯgÎc&€|èw®/9·±¡JÈ]?dÔÙê4(`S±lGà”Õø¶Ò}wiŸ8PWžU@sÚ¼µÚµN‡õñœC$çdq¿?ßdÍ™ƒº’M ³±ŠÅžÙ¹€õ÷qæÊAê`2¶Ÿˆjÿ©tÍ{EªûªëAD¡=‹È’†46r.,¡ ¬K:8”SíP¬g;£Ükͱ æ=T@iìŒòg)â®ç¢p¯“DßF°#Ǩçp„­à4´’rÔ!ÇøÎ²øÅÀ#úî8„a%R{YVDfù!ÈMå—<í£ +KùÈfª•WA`‚˜5¨a¯ÌY¾õ¸´ð2Î9Xa¥÷# žò[h’QO¦'Jvzž³a=ÿ2õO’÷J×”½ó¨ûD÷/%yqð“è¥ÃnßrÔä(ò*.„²ë8îšJ?Ê“#ì€&{4#X.q—\DˆtïU„QˆÉ­ï ^–¬Ã š¯Ÿù&…ŽOX-AÙà!¾ærK%Ý÷&Û¸móŒ5â.X—é+7ø€Vß$ê +cZ…†Ã½Âa~ñÙ•r“ùrøÂeØÅ-Ú‡¦Ã=&qFékÑ3@‹TÓzhìŶ…CdþÓd¢dÄ÷Xé–8¾bªÍ!az4·¸ º”GH—±u˜RލPñ ¨jÔåx`XO!´$Ñ<:L}¨™`úHHelúqWÊ5"—ÔFõ‰iùKpX#°ôˈóçHaƒHbz7‡fe¨ŸUq1o]Ñ{«`]Ûú‰–­^Ë»‚ ¾‹w1cgÚcg꾈L¦vX¨‰ÌüîId·¾àÝÿ>n ·ž•dV›õeVôg/OhS³O£ Êw_³¨&ke^f©µj ]:MÒBöݵ@šñüAŠ|¦¦dà¸N1v̨ë1¥íÍ$šQ°hÉm„è‹êBbáÂâÒEÏGÂ÷É€#Ÿt'YÛßynJÎ&’Nœ¡ËËL×5 +¢Q¬ (¤3‰v+›¾ +³¯3§ÿzíóoZiUʧºg³êªR|¡[(… +¯‘„Ä«®«,0±òñ”ƒ’ ã2ùgC?3iθ_F£)”´ú{ˆGyÏŸPŽûϽ3ÏL¹?ÿ)ç"š±y@¨¨Ókôˆƒ‘9)ÿd^¸†¾G…Éî¥ø¬Æô‹aj 4Fžn sôž2×Nô¯Ï˜ÕD½où¹¬QMƒ:ÈÖCø…Çõý<Žz ‡jtvIt>¶¥<0ïDuM:›Se=;´èeªÎól'uˆ“gØ£Ñï¹&¸Üï#’ ?Éä¿}±Eæ(z<¡„ÓGwWCªo#Þͤ\±ä>¾®¡8ýKež³0–øD7å*nÊõžP nDGßï#R|yÌDú÷oÎ#R”}õ¼ŽK ¸ï?BG÷ï.É×Q>s¤¨ß¡QУY-yDKÇëÙÌÀfžaˆOˆëìÆSÎÍå=¢E€~IxEê:ÅZÁê4ç©2_SîÍ„™ ¸Ïø„Áu’nµŸ_d*ôwlƒ­ƒ°6C±¸m,GóF|ãÙûÖ/Ïœ½{ÿ~8_3ãXºÂ±S£SF•¥IáÊ5j$¦MíÚz‹žPwU®S›¢#¾%àÚaŠEœö\«v@¸¼IJ­‹(îŠË-•D´›¼‹×!ä+OýÚŠ™kµéy ÐÀÊ8ý÷]Ï \ÞóÒ\Æn>J={Ý¸ÓÆF½»¨lfÖœ‚tSåûÇN +¥ü„þ— 1r†Ñ<Οäu“ä5sÁ©‰iÒM|Ý£'Àv lPèXÜ«fKO*¡¼Ï•Ç“Mé$½ìeKúÇo–ÅîÏZ—ë0Ç…<˜(…8?%<¸ŠÖý[Àb …N[ûs„ˆ‰†Ðá“õ?ü:z+}k5Õ9_£t }+ÁëG¾©¹¢ˆ‡çG^9`•g7ñ-‡¸N½xþâ1!û ¡Ë7—¡ÁÐ-©.³ ¿®ó¸/¡.‰ªå>àÎ\¤Ä£ãDžýÓu¿„v€.òIŒ^0ô-.Ò0»ô°›V‹éouŒ˜·ªñ¨;t‚Lä.o]4 +º¸:´Ïu©8°(n™z3¹+E ™Fœ‘&?Ë €†­À˜òús©dÇJÎÅÚ••†ÁK⎽q]>®ü8H1ÀXŒÐŠuÔïÅAù§¯ˆéÕÚC:­ŒŠÂ+Ì‚<•­0G./þ%¨}Íñû+éµF¬ µµØ6 XÒ¢nÚÈ  Ì xOŽu(†}¦ ²þyÚKþºÑ~‘GrÚ›ÖSJòÉ¡-VöÙÁkÒô;°•X)Üë…V˜šƒék:_óûˆì´Äbèu]3~sâ[ 1^õuJ…[<%[)…–wü ÜJèýìC¼éÒw !»éÁ®3:ôè|ü)?û°ÇÉyff­ û |lÇ"²ÍLDßáÖ¿a­†’•Ÿv׬¾´Jb‰?þPVïçS±°¶³ÎƽÄÝ2ÓvÖ´}ÃÔuj›Ëå¿ýó÷«s±¸=>ö…uìŒ “ÊêW¢ZÙ:kyî°œW|}-,­,â•éB^Jõ¼Ë˦÷÷¡të–ÜiLŠƒ«J4¸3Q„⥓…!†â€6©em±OBäÀ¡DÝÛ§Vž6eŒ7Ð*9 Ÿt½¤š.jãX¿Qª)•FçÕ}YŠÕ–û-[î1 x%² åùù¦«Z• UÂu‡t]mÄ&IöäÈœ8îIÝ£ƒQ-ÁóW2•¬ÒQ%äÞ½<ð ¡ÅR|ï†È1ÅÙn¼(Q¼6R +{ÖTyY-~ŠBhš‚Œã‡zˆ.ÞÑ+ñ,毘žQ‹@ Ç~¿PìÎ<”?¤¡Iñ<Š;¿¢Š«¿pËhÝ{0¦¸ø=|JõÊËýÎ…ßʹÉ?‘ ¹âU>Š‹œòz"×'®A?rb.Ä—è*U(ôÂë"Æ/)±@¢UÄ_îÅ㬊­Â¡[?x`¾ùÔéΜndb´Ú€HÖ¿ź–Æ&“Ã¥|9™AoJB= !'ûD׸Ü ;í¤õK&›á Ç>¶Ð„–ëSÄ»GRæßZ¬¶©±AòˆI¤ÅSžàXkˆ¢òW<Ûå³@Dfþˆ&ý§¿ôxW§Ã¶\ð$ 7>eiØ‹PŒžÛŠS8ðÖÕöCT$?§{âCx×E@$\·Y¹ÝöŽRg ?& »·XéÊÔN0Ræd¯ñ‰,kòŠˆ_?žà7žPJÿÁd¡Wb¥È$sDEj-€½6êP#rqº°¬ßNKs«chžÊ¿Ï((„·@O­t‹%жŒ5[DZž._íÛÆXf!&vr`˜1xÀ_ÁbçÙVŠ7Á‰Äsª—çÔº—ïi?} -ªêêºÒÛ‡ùJ¹=Î +wþ/ᘛ¤3«§U.NÙ}ô°o¹-úù0äd9iá('Bt6E¼g=ÞõõÏG©  “nêöc‘ØJEâõ4VàݽÇS*OG©<=!|êöšÔ(W½¦Òš8Žº&ñöë©•çO|JµCÖ’”@Nn/‡Šc”¨jÇúßòiØv–٠̰‚q§b®ˆØŠ 0Ðᤌö Âoº‹YU*Bül`8ø•ºCï>JÆê/¢r Múž|j›`À]aVSE9?1†1ˆ}þhvöêÏ"Ç­r=:õ½ÄB&(YÆï Hµ,œWöHRÆÏN5—ð¾¢Õ[áÀ”¶¿›yèÓ?ÖïšÛR† W9hþ0².(ýCÏØÑ7mX77Œz 3‰¿ù²`k°Þ°Î§]ÿa—ÒÆm¾×¤p2ê Œï)!±èM2(¨³ƒì&cª OXÛ:7­¦¿O:7D!’WáWe¢0ÖÞ¸þð9x2G»šfO0ÕtÏå@„r×+¹ž17Á’(Ð^@Eî¢Æ 3íaQÝj}•®237’P½W + ëPxqíÀ¿é?s;×£æãÕ ì£ö5Dé£î¼0׎þý€Oº¯Å׃ªÑ¾Oq9j5¬¬2 +°róW6Æ?sºû.ðNL*Î^·¦% +nç +ng¬ÉBöºâŽ!©–ŽOIBõ«^>|˜2ëØŠ"nQ9(|ý{êžìÈÉÞ‚ŸuMëóMQ O‘”O½ŠÞÞw¡åqXϙʢãäÐz1*âƒú#×­mr‚JëtÜQRU*b6ð®;xË?žr= ê>>‰t“„Ó !,nŽu¶ÃÏ@¦å]k¦Îó>U7Fª˜kÆ,½vh/—pöíÀ…(É]ï#öE¶‘N‰¦W:q¶ +‘•J,1d2ë$ôLÑØöCmÐ_„ÞJØhfÓækñKÜrz¬†(ö¡¹†K[W¼ñ)ðk#èÈI^éèOÓëØ»ÅØac„šPë~è,]Ñôß Õôd½s%;¨Ëâ•3½u¨ÉÍ“Ý.Nv hþÒ5X·?á^ ‡Š•Ö{³Wù·Þ)\ Ý4ج×Aîã¥Å=ÍrÙļ.±ÇÊMdql.z¡°r`PM†©Þ5åol@¼ûÇm@z¦.¬eÍ ÊoìÓ¹‰c} Ž‰Ò˜¥¡+¸(KÁ]IøóÇ}ì¥û(“ÄÔl·Œ±TƧB°f(¡Å©hXT_/ƒEn…oµ7”üAAz{£Úxæt‘Ò¥ +å‡\tÖŸƒï§zñX{*r,½KzyãY\?0ô4¾ïJXÿ ­#nu¼…(˜²Ë°ø€0Æ-qP y®2xÔ8‡ÍY(”ªë‰×¢Ð[öËzçûý€8Èûû±ƒ:e¿ëƹMÑjj²C.dÄ"5Cg7hþnc@{ÎÀP×èQ¿A¸åƒm’@B&÷;!-ó™ªmƒDŒÛ‚KV+@1ŸâIhX­˜u8ç>Ýpeâ-q^®lÿbf¦åü]ÄÆÀvÃðmDb­a=¤ç©lÖ™éZŠÇdŽkög•~SáÿZEþ1˜Àáªðòz  Ó]níMS¤ +˜#`zUOõªDVü‚\7ÈÎÜ¥T ã\´{ô¼ç° ½•øWW>… ”ÏßÇ¿—jK‰ÉC:è;Ž|êÎ8ãX—,ª½’?&'ŸÙÝÒÚÖ(JùÀU%©I/˜eܨÏ;=n-y ÷Á§ŠÌÓ)’æ*àÃèŠ¯è¡ õY5ó/÷’úÜãûgÌë#È<»ü™Àä~8}Í=Éþ[w5ån¸‚ý¸®úæ¾ÏÑmûù>vœéCùW¡ a2ÉŸZkÃì–o¨¥z20}izÐýÊS-W4†òšûͤ6¾´IcÚ«M)Ê‘¼ç'š.50¹VÒÉœæ¸UnñKL*Öhqüw‡²b#“gJ†ƒК&H 1™Vñ™¡]=¥Sãk”;æÃìÇ{ÂfÜ }Øpɺ B÷§ %­’ƒ.§‘Ç[ðn׉ +“ËТ‚5îû;Û"KÖñ™&Z¤•ÌLŽe¥ÔÒÑ`˜ºÇ!*³¸$:/sºM£>LêËáâŠ`GbÅs åtí ¬E÷BµcQS5+d¸Õ-“ß,ëðjºŒòx Ì{ÁI1ÌDÑMJxkbX +(‘.C̓¦cØ0¬s^–QnÌŠÖ–ƒi9»¥¼~Æ¢{À¤- +¼e¤hn¸¸ÞkÙ;=]W«û.ÝTäXuCàN Gç¶Ö+yô‘D(D( ‡ÃOJvß›`±VžƒJ&6¹çY„MC9YuºusŠuþ¢ûTžuÈB˜êàöj^ÝáÕfªö4rE*á¡#©Ÿæù¡±Ç“[ËX%Û_b—v§ÂZê+¬=‹†÷9xekt€µ'qÒõ<ù)å´Æ$hy4•d©èµ"ÕyµÏÕå͹ +-¦ÜÃÊ2n7ËßÎmtêÁ'¬‡ðn Y’ßÏéœ;$»pêàÅ!ú_a›D|êÇ·nwå*š´ï–÷Ù{¹1î0׌_-jDì~÷[ ¹]H²ôVn£ÈØžÂr>?!gwǹŽr“6Èa¦40Ì:)’Íõ_¨ãã™ê­üz rÖ÷¼sP(½z3âÌk + +~\›HýBëÈ$ûy°EAi½ˆpR ëG ƒ!oÚ;ü‹éþ® +°™%t6µ¬¯+ïLq:»¡!\¤95ªÏsQ¾ÂåEdY$….˜\ô¯50„líBÅV}lû0¶K8¡$w¡Â½1i…gÁÐ\)ĕИèB«ŠÀØ:Ù!ÂØ2@Á‘ºŸOïуlßkm8UZ"UàßZVZ=L÷1¤ÌÇ-¶©{>\VÖÜ®RN¿!ðUÞÉ‹©î÷óÒvhשîк¬3¤Ž7¢láX,R¶v«ìT,‡¾Ò(ÁßÒ¾Јw‘ÐI4¸Ÿ;z¸hÝ%|"Ž…†nν°ju yè-ršyˆÛTˆª•ÕÞ} L®ð"ä"¸Ö©îKùF!Ž´ë®;á…€Žm›4ȨCÎÑúà3ëfÞÓ›)Ù‰)\ð´hz¾r„$CjMˆUqÝçÆ-Â’<… ÚY—ñ†$×Q’P¯ç JÓZ)v|T®ÍqìGÒ…<®¬¸¿Ÿ/°}Ï/è‘€4Ìk~ù"½‰¨OÙ öVEgây¥3(:ÉퟬãÙ²+ˆÀñè\äÕƒ­—I˜ƒ$~À£Ñ]—܈He-*öðW¬¤7Ÿ*¹È4 :rm$[JÒ.rlkÛ?Tjé1‚>Æž&2S‘´Þã]¦²`ž´%Jãí.·½R qj+Ê¿ÐWv YfŠªy½dÈîX>“µ]¹h— êZpp„‚J´z?°Åë*êï»Ò!eJר'£g'•½NêU`U,”>¤õÂtñ@T1ißÉ_ NÞ +9×O½çˆ8t„SX °®`ËnÀ×O~Šq9²ãäµ»vGœaœÌ^ð Bå) µFá‡Ô¶FY\x÷½kňψÏp8 â~íàºÈßq‘ ÌŠve”J•½¤µª#¤éµ¨Ø ÌFK1\„¬+z¯pZI;£úùM±:ÀsH>ÍÓ¥+r€Î4;c¡¨ë+)aœ8®|4¾ +Ê|¾?ÏÛ\€ð<ÉWÚÖ‚_ˆ´4"RÂÔ²t+"‡ÀÕÄ)ºïWøFÑz«-£CnÀÚ=*C$¼²qÍ;繸ö]$èŒèÕZ;ÿ«U–O0H±|Zñn=”3l ¤LdëªÚ|Ëw\ @äú²êžø’…úæåº*üK|üÀí:ÃrK¿{ý‚cüc¸À3GÔ¯`‰±h{£\u{UH6¯3d8Àw Ú<ÍEÎ0÷îò5¾§‘Áþ&”äÑ«æ4`r¨`5õ„Ñ‚”ÑòæŠ5N»ñAïÑã?íË>wá8Öjrþ¢Î?NC‰â#bi$¥ÕH‹µ°S/|YÏÀG¯§%(õƒ…0ðãŽM[/Ò[¨&Ü¥šp[Ôo]oÙ¡ç1Ê~¢¢V%à˜kíʃ¼Ù\Ö‚©Ã•?Éš5?iÏŵ̅¯äXº-#hw0"¢õwÿ¶ˆ­Zó'ûÔA¨† cï:K±¢E±â½,ù–ëéZ Êô €dõaèû†WßÄÞ^®C„‘QÝ5hWGÏRª™­ä¦õ'”Ù¢:ÞQ.“X•)¥z—·ò¶çù|“&F¹u«ž}—zö[MÅÒ¹÷pd«Ï´8¯SU¤#ZÄÈOÑ8_@ÛKÂÚM ’0>>]1¯»4 £NDíŒñ¶¯m­-2=á ]&Ÿ'EþˆËæ¹Õ2CØ So ¶tÆ]NËeøBÖéènú"Ü%!• ö›Y•ÇGÍÁIo9´Ä®ë…ƒý“¦óʃ:£Púä㮼è†Îünáy –ieæÁˆvdOó õè½¼0ª“Ýàå,e×:§Çʉ”iÛTÜ8¿€`ÚiLßòbY#>î¿*!]QBºÊ—&ä" V£Áy›§­EP +ñ‚"Ì“fìó]Ë(èÇQèDZÕQŸRfh±ù$ÌI,ŒÌÍ‘L¹Ù¥Ÿ;áR ¼`m´¥ÿ¤Sâ¡›œ¦Yªk÷ócØI/ªéþŠýÁYRÞìV„]#'µÜhH%.P@)ïùTËjØš"7“ îkë82êæYH¯ïyV7ì®nØ,[2É—ÍrQ:l +Êž‡#òC …=Ÿg“BU(w,¶óˆä1'Å=,ï,‹†=0i¶ÓùV8°`Íôã.°UÂDžUh¥Õ¡O)%Ø[qÅõ8+‚}£ô§pŒVv#· Êí˜!oy !C™-¼!K[%|À @ +úQʸ§6ʱÖ}§¬qŠo ò‡Ò¯<©å^‡Á7Hœ:àXE?[@jןÇ✭÷ä=ëãqaPò#ÚY#b¡Õñçøõ–Çå@aߊPRï#Ü%5‹!")o² ¤¼euü«µÅO’¸ý‹À³}:·}‹ £«¬yu‰Ýâ—EÁþ@Í•nDŸfÊ&ÊtêÓ²Bóôoï˜ÆO¡ ñaB©‡9Z¤!Þ)L('¦êøD²Ñþ‹2s@k!d°N`Dôƒ ô>CÄÆ‰Öýù3Ö…þÌ({ÝŽ’âÝž'‚O+”µÌ…ø®À¾kÌlBžºÈ²œ¥ìv~~ + !®ø²{‡Œ®Ö‰ §‰ÖJÉôu'@¸Êlå0‹ÂÓ½÷ÐÀt‘%,Т{Π{HÃgî›ÅÌfœäóéüË®À¡`æ—ƒØç…ôÞð„;rÞ+˜cpçÑÎSÚš)’pð¨æoâá7FP¿öz”uââ@ØË°&{X“HÊíÓݶ@¤TªºBŽÛO¥þõSCÚ3ß3bÔ{×nŠÝ]^Ô¯°˜Ç“÷èG!ƒª_Ü¡„ü˜T™ûùý€y; *O÷åàæ]2—˜C“âôâïÒ«m¥é÷óàN¢,ÉÛªBwª¯íË<’ŒØÔÚ.üzÀ˺tŽß|êÂ$˜ýâµÀØ&¥T«üÏ,ɱ&ãk¨ß]„žø8][hWHúóîf'À׌à…gD]ýŒpþE!êkë ràtû&û%¹?g ®ø-?¤¥öî%hãÕߘàê]d¢´}àÊ—ÅVç +qEx%à¸óñÒJ­Uäôzƒ›¦q}ãÞV’…öï*:­ªàõÝ=<™?<`gÿ)?B º“ xl]Î-nÀßÞRgÒP“à"nÐC&õbgÑ9}‡ãLO®ãYWJióØøí³ Á/e7Ÿ +’•-–ê®+Ÿp£á{6ì|˜éŽP]]våµÅ­°ÐB‹ZLJ7„¿y˜¤ìÝêÃmã¾w‹ÿ°ûÇ»›ˆ] 3¤5é£+4ﻘY™¢uMWu{Ùò¬ƒ’W8ÂíDEz œ°‹'Ò•îeÂmœ=¬¶õ쇫!ÕËUˆî35w4ƒ£=AX}t')AšÂ€9ÀÑÂ)µ ÝP^Å +žnW„ÿNŸ` ÓÆš¯aÁÏà?¹bgVëóáZ™Ô¼?áR­?@PD_Øð÷Ü©­”¤êaŽçí’ÌÔeQ½BÛm±p —™Bìßoÿf'j%ð°ß¨ÅÛòݾ‰TÊð4ùõôâžñDî{ÅÅ|D€^ý¯ye_Ÿºh¢Ý +æ³Dù»/"sS½Ç^zîW1ïb™`¢Æf–÷4 TcûzÀEÔ‹:˜_?õ¦ŒL¡ÅÜcef,ï?  ÷<ËVïáƒWÀ“G(Ø=X ^PÔP5^ñ¯ô³B;xžÈ4µ}¶ýákÎðaìSx*µÞ¡,) ©pÒ%ó‰Ëšœ[|= + +à”P6õp¡3 ÞVÔõóß8äh…ð ªKŸþB¾!E ¥d{PÄÏû^Z”¥,ÚÏüýpÁ¤ ýÌMæ Š4~fëºp飲•)‡ô5™œÄœ¦B7üø{-¹G#Ġ𻛤߬Z…Ž_‰-s®Op¿ú[ %_¬­<ÍDÁz&Ô†5sPÚuP“H¿ý°Ê¬¯‡§ Ĉû©/02Aw$ÀNtàû–íÈ'Ò|¥­aås¤¥n‹ ¾1Ð ¢^Ñd8˯šåÒ=(!ú^ÀÅ @«Û*®û±’+!ôÔ™z~«õJOÄW¯È³ÞX•ÅóCÉ“¦~=g",žó¹ÕY¯"üê–F±”8·–³<Ê·‚•åM¹ïšAb1SÚ²ùš¹ê~0@Mv{¢?õxÕ¸Z£Ýy}‹°Ñž¬wPÿÊh ¼Äýw¼4xÏDxð¡6Öž¿ý¬©Ϙ#ŠÎ®s)‰$¦Df4¡˜É5ýú³55#¾K,xßö…0… Ôà½]¿³‘³ñ$ ©¸ÞÌK˜'%yoõ¯5#NjïG_Aé…­±°"œ_U +à„ ÖEÂÆWÃøÜ£D…ÌâŽQ¤EÈá×]¸_b“XÓ_Æhpò¥^€‡µÎ¯#>ÛÛõþoFÅøÔ”.åÝË ’(þŠ4¿uM¬õ~ ­dz+a¶‡ +âxH¾])£|RÄdà‰‘ùVš'±€ÿg¯^>¤ÒÞŠûd†bc¶5x¯RˆPq·2» 1˜†Ã¾ö4Ú<Ç´qÔ·JüJÝäŠ2B<Ézq¢eSX +œFPú|“UåõMÇ=!àÖIå…õäé +>Êyé@»é‡Î#ÆQ#>¯v/"í[æÊu' +^Ù%DÙ¤µ„œÞ±Ž/Wt Ö6ìyVo]öUtY¸W çÿ¬•õ¯u‡ÐZH™Û{•-Sduq‚ø¼†=ƒõP­U=þDšÎ‰:"ÐùÌOÿû¨§E(í#‹‘:åt€‹|*}[W‚™-#dªJUÒâ&ºû d·OºGFÙ`JŸÄ"ÉZâÑŸ9¼"<-Ë+I%»5b(úÆEŠÀmd÷g½Š!&Œ3êÚYœqW=‹­>÷U]|!”¥„Ô}¡¬Ã¹¥Ÿ®€w~ë©’ìß§eßÎ+ë¡EqrœNª”|—vÿ`¾åÑnWð5A(çld˜g³;¤‚„b­÷åö‹Ÿ‰#ºBn6ÂOä¥Ekã õú& [š´ê{¾§„£Qö~!= 'ÍùëáÛ9óãʰæu±{°ÛyâòÚZä`à):G\ [;Îå÷€çÕ’¶|:…‹Ðn©-äˆP}ˆå#U^hâ¸ÝHà˜a !¤È†ë…]{JÉšP¯ßx&*§ñ÷Zk©Øé÷{W³ŒR2=2¨zŒp”z@†˜z¶ñ†ðÄ–™' eÚ]6Xñ]Íè#€_)nÇk”T¤Þ›^P]K(èŒ ;û,ƒ-×J +Ü+@—3t:ÁºVënâë’ÌIçåJÚŽó£C2µ¥“VI+ ííëáS#J÷­Bï5i¿h +œ2^/ § +ÆÉ±×ÆI«ÛE³ìõ40Øûæ +õ[ƒE?Xñ%˜#}‡¬Þ‡hÆ`ÖIû˜árÓs†èÜã“7Ês¨?é¡QðS–y–ÁR§•ž%ˆcSµðò P˜ndç™g•¾‡äa9“ÖIæõ4mUmµ®îÖ›ƒÝÓµ£ú)›À¿9Û«*ß—0ÞÖ÷±29ìHè|†•3=. W-~+Åó:Ÿã}³6{ S¥Cî?SZÊÅQ®Ѐ’¹÷7R+©VVRká@ÏPçHõLîÒ39Û¾ºŽsh´HRiU–j‘Qò,E%Hšê{žÒjfã.G#‚1è³:X™žÄwsöïêý)6%@j#¿¡ð\†ôªŸ4ÏÈþÀ¾­éÁot=@Âî 2 ͪ«ÚZ4 vùìÝõËY°ƒŽÜzãÔ„§ÒK…`­Ó¢ G‰E  R$;Trx[ÊÕ+öVbcTßâ¥7¬Wù:ù¥X†È½Px-‚0MœQæm%]M¸¼(er{LÓeÒu"ò5U9°¯‰r žÿ𠺚ž~»¢L£q­.B‚YÓÜGÃ5V¤µˆÁUÕJîómW¹Ûìšζ”×»ìf²,u-XËx|¥T äBéý,ÇóáVûS–ÞßaÃfCVÊ$fæ,o vŠUU±Ð ö­³G3_>ÒÚŒ>ˆ±Å™QÅ’%ÚH©o½R¤ÔÇ¥A3UT•Jï-/‹0 SãQª••ÿþ|“fÌ3«ŒR5']U¤ßxµß%›Ñv´üyAÃM7÷º{1êmæØ÷«é19ceºÂ0ÑR„T-ZCε8].˜g)bNÕtójDÄœ|P„[DéȦï(_TŠ¢ä)Ð šn‰+J8òˆ•F:ÕI§‘Gòrgd7*_Ä +¿s3óf”‰Tf8¹â¹Ýµ ¹ÝxGµ/VJpY`úWK»Áü·¹Œ€Ù„Ư¦Ëÿ˜ƒ]a±7{:Në,Ø"ÜG›SjÆ_§Iù=Ñãáù݉ËCÃI´ÅE»s¤cû\%NwR(ç +°±àtPU­v+”¹o`4ÚY"áR·ñWçÙf$ƒ›8ÒQ­ì–V6aï·YtÐPQ -ÍßœæD…'Ϫäü(‹"Í>‡±,DŒgÝãZ?žT<¼KñðN5”(÷rqh¤“1']|ð?¦ ‘E¯Éq>?3¤Z–^ áJ¸víWc¯#¦Ž9^–¼»G ]NÌüFû—¿`mðÞÆ¡ÒçYDņðÿ™/Ð6ƒN~Døæç;‡Ž™ŒÀDs¨;y{@_¸ˆ,мéOÂK{([YéXЄ(VÛ~/Õ6¾ØN&Öh+Eøvn ¥Ì•µ›Ÿìz˜JÀrš»xHœ¯€8nÕeú§«Ál4x/ÒF]›Ã‚èߪ@X=6f‚¼Êã^Ø ¯ 9ôuüáw@WÄrPsHÁæÊ=ˆÔò? ÉA/³§” G DžASâòÔƒåŽO8»ÉZÞÝ’7t·ÇåQ.ÑÐ!죣’÷—w¼žôÇz +FCÅy˜^Lí§ÒjÙòŽŸJfÙ]Ð5î‘bˆˆ‡œ=ŸvòB9#}¤*¡@ÄÚÖO}#±¹ÊNDÒ~eŸÕÈ(á6Åùšß|©ÁÁ-`µÃ D_~ËqœO™Šz[¿ÎŸ-‡,¤¾oÄ ²ç¯wtÆÎ«[‡Û~.“ŸØÑ¸ÙÙžÈTÅDZXÕݨÝ;ìoÎò,AŠâì7=ý@!Ú“¦¯ÈÖû…ÀëïÀëë™H+Œ§vùgUï5¢;f³Öå9\Ÿ'=½tÖnÖZEý!q%#Vĵu®wçI<hÐÃM€ƒ¼ÞH&mGE&Ã"düŠŸ Üš™:#4^waà„=ӫε¦VºËò狟+Öj„×-ÎÊá£+qŒHØÜîlúL;¾ ±y$+†ÿT´Bб’íñˆ¬ŠyŸp!ï8L\G¨#©$È¡¼Êzv\ÈufR¬Íþ]ú”±*OÕž`ø¡VKQ¨q¤Õ›>ȸ[)”w +;}TßíJ¹‚™™J¾¯‚惺 +jòBøä7£Œ–ðo‹”³°vå!F¤×úö#â»Uª ”ê#DÞ Þ_ +€€°Òr†–~?Ó©[9wå:.°v%—ôƒ’ÿc/§¬J¯×K1ñàá4ÅöOêÕн=ƒT¿\Ëb¬W8ªÍåJ›¤…yšXƒÀÆÌ­ÇoQŠ +'‹‰è¨µ@'¢ O]¸"¯œöùõ”³iÊ.ˆÝ1 ŽU®¼á»„q)ú½1‚‚Ú‹íƒâáó„GY†R*÷s$ 1«Nn«K\Ú›WÀ;áÚ; +-Ø©ma`ÅGÁŠgÞÞC'àçåKÙãK‰µM {þ_öÞt9ŽãJ}¼Cÿq„ä@¹gÖ(üC„d]Í@–®(uÃá`@@SÄ ‹?ý=ßY²èÑM“D7Ôã±Ù8•••ëٗʱî®ZÞI#Ÿ%:ŸÅ:©7•´)gJºT‘±Éëœy³pf:>%c”SÍ8Z8¦ï¶¬â!ƒ!:ãÆp­ö‚4½•±G=ÇRsW¸ ÉñbâèÏ-$6L‚6pRžÊ é½ +¥£dJAø?g Ë\"ŸK¢öT‘Ò^ìV9÷…Ú8»k€Ó¡ ®U³ò]±,³ZûPHÊÉ^IÂ?Ø¢ä:c¡~$àžo!_rSà<Ò†ý„*ù˜ +êvH>¾PùZCû]4@"8dŸ!æ&y=®·]9'·PÇc.èJ·BŠÁ%U :ÑYÿœ£ ˆìô¬%NÌ>p­zN¤ÇWXY8µ.Î1s.NKt¢ÊÚDø¸Jœp ¥´œé4‰ÖÉ%)`ÁA-pãoÝøåÅøåX6PãN‚s€Š BŒ+ª,I g¡n‰«‘ï뽋¨/µ$pRrUÃö8Úåê,pŠL±é¿# 7ü¯™D°4Œ¢ œŒ]Ê8Z%æNHX¥‡œËzŸ”ŰYÄ«Z šaeZðݾ“Åv'yÐ`àHEXõÇ©˜áH–+:_vpo8=E,¨…+V"á‰†Æ bÔf[+0nàØ¼¤1àBºßy°XñŸå@Îó€ptõÍ4'΀Ÿ5€õ#q åà€$©~gbþ%÷«' %o)'àýÅñÂPÀ²#h¥V ÐÌA5$î@(”ðuÊPU¦¸œ"Øú8F—!Ú•K<-$r rq%V©HØ[”ÜãC@óÐø€Ãh‡h0(¯\$ú‚žò2²&Ãñ y¤ÑˆÓøÀóYé¨>ÛÃC1W ‰ÜwjÚË’ŸÁa„(4P¤WûvˆÉ…_ª‹0ŽA "%qЮqB (8x“8ä7ˆõO#Qä °—ñCP21ín`AEdf37”*Y=Û‰Ô¥ùPWäS;¶”†áj%¹xAa›Û¾zÜnå5l/Á~Æú¹*Ùã9†(ÊÒËÅÁX¼Ô»æ|Æ8'5K&K)"¶Ê¦• ƒ¿¤Øšb£Éy“í )N + ‹ Š»÷‘ÙëŽÌRqˆ•ü ÃÆFuÁx ô•ªCH„Ë…‹²Ö2zDn/-$æ˜+Ž-@H³FðC¯Ú‚ãlˆÇ)~¬ì˜ë)Q%qB²^Ø`‘ ‡A\¸c¨ŽìyFœ@Kœ4;?Á³EN[A '¾œ<]aàÒÅœ6¢%öÁBú…ŠRcAª§5IõO[ÉM^yi¹^všo¡úxöÀ™{ÈÊ{®ûµººÞ ­„ë +‚k“šÆ‡Z¥EáØ„ÆIpŽ ºŠ“{µ‹ïT‘Éyl]ž/g &j=°Û'vœ]šÔ$Ø” çTœ–¹Œ§}d¿²²ˆ½5‹;ÊL°±Òç_„XÉÕ¹4;˜Ïbá@8{p7­ã•}¬¬°±* {Aøš1’?»þsõ‡"~4…ŽqÎøA„ %k𠘾©±)~Qo•“ÏÞ?ò€]Z*×íƒCí & lv!ÂYe‰{‘µÆõÀ)¡Ùí>z³áö‚!sGOq–-—%Ë—úÛãtìæu2ü[‘±„s‹ç¥å¬ix9 U˜´—4Ñ\Žýˆà*¿°ÈHnR~AŒ¢SÏÎP4Û#¾Øú’=g"@Š¿¬ËTxma¬/ü€³úb™8ÛÃZݬ»âœ$𲑣lý¹3¯öÉw#åÃ!óCÎ7®{ LÆî¾W3•š‰°-îU(ƒH‡66 Ã5攨Üg©6‰œGîa‡ ’é¤N8_ {€²7;óc,Ág f¯”š#Û¶3+»Ù£ÿ`¿#;Ó‹ÿ8뵈Lfä®d/SÞ +-‡î&éŠ#þ€/ &ö:G„g@cG6ÎÈÇêÚ€Š,ü€Ï'¢Y5`0ökGò ø^Pcߢqàdfx€Xì +lä…‹°)J‰{ö+ƃ¦Bò%ò’ø®¼ñH˜-ésï^ ¤ôMh5 »ˆn¹;T8ÃÇ(Кjà$['¶A¼rDÌ„“z;^.$$tÖÐóè3v1@(_äªW\ïˆ ìˆÝáÞd¦ÐɱûIC”ÁzK\z ª8‘€{&gtÇ•¡‚cߘÆé¹ð °9Š1¾ùͲ "PGN^U|ŠäÏ…ó2KrX$ŒâTo•öŸpâÒùºá²ŠƒN¾þsQ,Á|r *]4/flZljc禂b®þ,RG+zs¡*,G±Ç”¶NÒžPQ2R'Œø£ý›G¿i-[U´>ó\Z ìzd÷™Âzd ãäÙPgDŽ·‘ÚÈô AR8ºFm pæOw.œvÝàô:srvxÑ܆J Çâ«;ŽÓ\‘È‘4p’5¨ç¯ù Ž‚l.Hnä8ÄDy,÷Ôé…•üƒÆó@PÀ>úpTÛCŽê“²(¶Q ¶1_}婨k8I¶¹7ЇâLUÛ…,œ‚8¾ i¨á¯TPl;±Whé +—ןڞ•xáªZP¶')\‘¹Þ¤¸ÅÊP±ˆžKb¡ÆžxÕòàLi½ÂVˆêLËéè&#î–«q‰í õ¨è—ÁX|*úbè¶€8.(¡Ü2§ˆ¨f„uÊì›Ì‰™=S¸EÑ\Âb f™5‘¸¼¸ßpÊ]ú2ê¨1ú*V7ƒ('2q6AVAk©J”¾±ØÈÈn2…6pP÷Å#šÆquÄYˆ¤[çò®VZ5z‘¤§ÿ{ù><„Y ßB’AB("çãV©:$Çy6¹Ëiühõ€%îWÊMÀÉ)sØ; +¦ã¢ÛÕi‘§h–3Ó MžÁh*€ÏÔ;´4So•:<„š$sU+͈Á…0`r†¯›¾$ÓÛDéì¨ÚܵÓ|bâÌþ*Ub> y±¿JàìEñBa [£4pÏè€CR§qç¿ ç†…®˜­?Èl-7œ> ÷…·¾Ä¦ADƒX;à•åú‡ÀÓ$yÀòĹÔÑ–3DØYÂA$~cɹbÇ"p0t‘ 5âš8¶ÄÂOWö–EŠE½C¨±äY3‡zx™f(±áE¡î± C/Î|ÓXÏdiƒYÎ4e“d"ë`e}"Ø^ “AÂB"nÍÁR½ÞqNU‘ªDMT"L Ýa6.sPºF0ÁRÁåp$²†·5,ÌNpÑògöW3 ²Lœæ8EIsÌÖÆhYÆ¡q°ÄH•Ê™Q 'gš= +îzopÉ7]TEËÁ˜Rëe0\TI¬?'×o–Ÿ˜WŽZ"¹N'%²PƦÁÈ@[$´ä†ÏÈ ‹4–{ìWÉA}RÕD,ÂHÐêD÷%‰¥ÙmL5°¡I>dñëEyC[ã8ƒ¨;Xx.«©¼!ë1§7в9b¨­u„Ðv’ +HŽÁM5ÊÓ‡Äj(V‹P,{ÂY¡+LsU{™Ñ§œC µ…Xî$8SF"‡«æ‚úH÷+Þ¥šÄHÕjC¹ØYTjºòÀ—!1šÕS…¦/@h©AÒ&©Ñv5Ú‹âm(ðY¸‚‰™+´˜!*è°„]“ÔÈ™éÔҒ龜Ҝ*á Œ³÷xØÄIÃHPG¼Ž“”ÅÎÐo5þŽú³&M±»ö2>¾ÌƬĥf$6OÄø‡*Ý‘]€Q8N3Œ¡RC¢?9ÎÙò‘«CÒ0Y¬‘Ïy £[+þfäåµ›ÂÚ lœëKR‰Íñž£<¤pÆÝ,Î8• î>,œ—yÂ~€föþV,~´,Zl?ƒUN²-èí8½<† 6RX ¡ûÜž«ƒ7N𨠙TI¶FÇ~üÓI(UBÂUÙC>~Ìä°âxYg!AÁGˆ7@.@˜ÕJ# A]¼ç­º.¤órsðƃGÊñŒ·$⤎”YPø“ÛAåÐŒ”á=‰îÄ­Ú‹=)³þ‰£.§Báʨ|j2‹‘uqµ»[¸;8\²!Ûïi¾Sx«‰ež ßG‹…ºaÿÙAÍx à¸z öJ/öE)¶æØ-™áQ¦ÈQétN °³kûx ‰…Ê(MT4+dˆê›t«Ð˜³ÚÀĺ%IBÊ3¢  ö²º¨jé„ aésÁ{<$6Ÿ÷ ½piF©øL%%+‡&•³ˆb¡Ôï„Ë|³jv –2õêfb'fVÊò€àd©y/‰VáWA9K2TE ãà÷£$Z•КA=)±ÚI +ü­ÎÊ¡f¤m@¬?ºkòª0H\1HC®C¡è¨cºVvd‡ß +RëÂ^%ûkå€*“SÀG+ oDÌÙƒ ©ŸP8Ç…&ô¡—uNÒ‡X?-¯Ç‰ +9}]¯äX¹'Õ ¤úRåÔåUż¥üЋd&‡û9 i¹dš×è"ØK‘>$ RÈM—l苈QM¦Éaå Û$áï›$R)@³äLDÙݰBPýp6„âøS{§hÊ%õS<úÜ>¡’â‚òAK}%xì¡.(¢Ø&ŠÂ¥ˆ³³PËÂWÞG©JàÞQÄŽ W -5xH„ÁFÑÏÊ÷®ç!Š’Q‰ xs Sdû££ÅJ¬*Ù5%Ý:Rð£,+lrQ<Ç9Ê3hE,޼XÑÙF‘¤x"ŠFyÀJ)øƒœ°j’SMW nET…Wâ +¥æàÃü!HœGPN‡àÄìþ–À˜ËôëÄÓ-V6E9I«WoÒ †(#×BB.|d3ETwBº…0¹+Xì¿C¡…\¼‹ŽîéÇO>yvqq:ù賯¾=¼¾ž^ž¿øêêÅׇ'ç/ö/^ÿöââå‹/ŽO®¿¼¼¸y}«¿aòÑÇ“þö†ž9o8"€Âä“驪·>„Ž/._|r:}ñ·“ãëWò<ùä«óë ¿½œþ|2ý…vz%MŒ^Û~~r† œL¯^ü÷ô·‡ZL_^¿ )ÿùòâüú¡Æß_¼¾ÛöNj¥7Îôÿ™žüôêzÉ©~wñ‹N5Ý×ÿþHó~\ÎîÞ¡`}¾^MϯÇöw¶ö‹?|öU|ñÅù±¾Œ¿3þ~ñ—‹óoéÌ]Ó±ÛÝð³éO´*3vþòOš£ÿþð˧q¹ÿñcv7ù/úñ¿úe’&_Oþþ79Æ[ßíì7N|ßDÿ9ÛÙ…—¤ÔtPØÁ]kðý³ï.‚É»ç㈾ÙTÚPF6pˆÄ2ÈäR«ƒºÚ bõ‹”< +Û ÈÐ84M 9¡ð€l’IFÚXfSÑ0`¦„u(GL*ŽØŠ>_¬FIc²j:„®ˆNÜ^DÀÕ˜SJ[d&Òù̽ÂÙk2ÿùý—ü>œ²~ƒ0±Ug†mÛÓyÙ +äVhÍÂÔÁâN¤wh°FúÀ%é½B2s^À­$4°Á—2õü&òÁµ Cã +#3ŽŽ¶:gÔåQ£:•‚¡*50̳ú9 7é"‚e[8^]&¶Ù¬ÂËŒ4µ:Ø•¢‚[Ó‰ /zî[B‡F€(¡¢€…Ù×\–ùy¸,xk‹*À™ Å`` ¥€=r*+¸m ±Ï€Å€w¦0ÎíNÏgºw Ò‡¶6·qÂÓoÚ° +â‚À³ÉQ†ÊÒ“÷ŒÁȲ¥»ÇùÐõ6ĪŸDêAÛÆ¨ƒCÕÒ¨#æTÃûú¹”íŠÀ§HÛÆfëÆªâ…Ûï#Î0`È…r¶BpuË +%IØœ`ÂÕ»6íš%Oº‡m9ØÐ2:è'%‘œ€…ôp£’‚ŒŽÂ G°ß1šT†Ô0‚ö†ãxKSÔÔ¬už·_!NQq+ÎXPIfáçleæJ&Èg +†­ZaÑ*2A ÈË©ÀâõTÑ©±%ÊB!¤-|ˆŒ V=É(Ô1`×äB¢"ÝÂ#¾óA1’Ëé¦"õ뵆ƒA?Ë +KÖƒ‡ÇÏ=óèw,ÛÚCÿÞÑ ƒÆQ& ÚN=\†S»;øN'†s 8O†pÖÎŒPssµ­WçuUIZÌ|§ë úh{®lu¦à0Ø…AùÁ‰K’DÄeH +äú«#?³¯T¥î „J¹n“Ž‚ +€œââw±w€À7~´W_¼áÉbÀ;S°}fð©9S0'BÔ“[ûYH'IÉÙ=Cã&¶˜µÚ4à3ªÀ¼²pû}S‘lÍ0bIæÚq­œó*÷\.JéÀ0Øçàú£CWV­¨¶ýÈ~kàX¬ßR½³Ÿ,Ø8bT¹0>,ÇðžFg¨ÝC8`òÃÅXH² @¶ÝXÓa°¦Š€„V Ø‚uzg\#0œ‘ #àä¬#-ÒY;cyÖ÷,…µMƒÑ†IïÓÆ;κó}X%8?@¼á™BÙÏRX==îE²ßé„ÇF~+gˆÜ{G§9ŠéCͽí`ì­CÛEß?ê † +æíh3ÚÀX…bhÓŽ6ü†›áM()ÊC¶-méŠáò¤žûÜÁ¸q ‘"`úì¾öÚ: :V¨,îdDxð$T,£ƒ!¼A!DC >ÚÑfä`×¼™ØÑÁP‚1p0x*W×GDOJÃpÀ7`ñ% +©X¿ÑÚæ~CžN`¼¡ÃÐÏ+æ63×÷Ä#^I!Þ½_¬SMv¿\íCcj'C#Flb³¶!´xk:4ÎàÜù)$[;3°³+‚¤¶Ί€#°Ƹ¿cÐù†Õ†ûQfo”¿¿|gLã !žHú:"ÜÇÎö`´áŽÚ6+m3Ób[­c +ÉRúg[\ìo>#ˆH²5k[;êJCÞ™ÂH‡Î31Óe$q@%ZáLC§hÍÛ4Xé(Àªl_âvþ¹lµt«ÝxH* +¥o`¿/;›‹¥gxßôãÛ9i—¯q27=HƒnÀ’ªg8öF¡åεxßYqO-ÁƒCó] `YV9§X³]Œ!¿ùDÅ2º¡çŸ‡fs3ÅÊ®fîàìR_œd~„-œ⸽\¢,xÂnfS!3!ø6ê5â ² I„ ÁZ‚¨Ëí‚þÉk[eظÆjÔ¨†øæ›Ý‘@öe3À7Q,ÂÝônì «È»ØüTÎòN÷¸0kM#z`StÉ©Y[ÎÇ@äQT`UV {9Ž#¢uà…ÑhH@UzóÊf6Uu1°•6Žàιl·ª„*@.›²pomÓ¡m²ÂÊ„3sUDcõ¬õ;i*I—²"tQ™Ü@l°ê½©¾™zÌqÙ|¶ÍÌFÆ|lo@Ôéì(2Ìëö$:Ž«1w9=Žl?Ûž„(ɦ‚q1Æu ›Ã)I#ŠËHdÈàh3Äçæœȯ)ïaè©:ë0ŒBpÆŒ•ór N-úq­v­‹¢‹¡_Jàj‚Ë=\J*Æ•wJŽä3]do¼Ï}h¾Öµ`˜ÈDɪ 3ô–¯­ƒ2ô~GíÅ,Ø#.Ê€]\@–åy`»-¡ãÁf«XrGÏMlê±(e¶ƒNq½©Dð­YÑÄ&Û¿T†0³0Ömg‡†™;@ÄæO§†_Ãú¡ŸƒÒì:„¾¯°ÔÏÐ(Oø0\¸zcSÆÉç¸`Kæwõ~Äúð™M «†Møl/¼²3ªå+4jÅd£éP‘V>ë4ú©C®"ëÕµÒZÍÈ!Ó”¾6±ë 1³.ð)û +•¥"š2#` ɀ]é7ö[”„¡Ù$£OÇ`tnmg1£êÌ-#VÚ` +M—M„˯/3$¼ƒ‡ª­+Ø's‰Ú£ÀŒu 9n' G1#æ4“)“g¤/FÇGôdv ¹”¦5\öQ _¬kN3&ToÚ0° + +ÁÅ®,î„{GbC¸¤ðÔÙ†ebíNg­Š©Î^9+Ø!‰±Õ"PQ¾)Mö»¯Ì]Ÿ —h«‚‘“%ý`îü×jœÝõ«DUšÔ<(:}¦àÚí•i18J(ª–®ÉËbc0Jtí«jÍå~;Iç%@ÎS¡{K¼ÏÂéˆQì'UŨ.#æšQQ«[˜C‡-´bÀjŒyCºñ}íÀT4`“µMʸ%á1‡ɶØ;@N+mËR€ôªÚkŒÛ[¯w¦0ÎÍl£ì‹§ç ÆjAS)²˜ # +ž’ nh¢…+‚Àu«ßCHoµ³’Ô,Åࢊ°*ú‚9øCÁ…÷õhTëW…†.ìWÁàÄTnë;jMF>›ÀëÜ™VÓ!¥—Y©«ÈÄ¢A´¥_¥øXWy 9?‚ñê™ý(ts_ÕQxfÏ&š”ŒdC1`/KaûÖo׫rtª£ñu~L G`«æg,\±òLÁœVÀj8ó¢]¼*ÆCx×®ó,UeQøÖã›Í>?û®œ`ŠûÆe”½ä˜,W–‘±ˆïLA—#E…\ìÌÀ©u\Úmˆø¶¨Œ+§« ²ì+²ªªƒ`±¶Âû- ·*™"L4Br«Yx+¢Ûè;ɪn »‰ +ÐÙy¸‹"¬K]õ\Ø®6ÿ}UG7$ÐêDÌ«ù¾êÙLHl¦Ô¦ +)b´ž{ya—F]‘IÎ$>dÔo¥®›¦#€ÕôìUÕ3sÔ™ñ´+1PÙ|Nj[)3"4Ä3ÿy]Ô—/EÑ2/홫3`£Úãh†Và¾u{*±1p°¶U˜Ôùì÷ÝÙxï» +!Ïȸl-`ðí™2'wã¿Ãm‹B×h9?X¾Kg3½ÞÁ84ßÝE8Ô׆æt7µ£]5,…åøã +¸¯o'ÒÝèAS£0·5¾ E±xÌ`Zîþ1ü +lhiÄE1ÚÅj~¨—ûæU‹ºÐ¶¹YqÔÉúáÍ£ö¦¡ u÷•>­ gp$XeÔÔbœeg +ŽêIþàNÓ)òPÖù +04ú¬x‘çªQQLªFÝ!]4cþx²)_PÔ0¢`— ,Ø @=ðˆpÉ€y°:ÕÔ{kª[…sC(L]<×—#XKÙqNå-ÒRÈ :\È€"ÍÀ"'¸ÓÒ"ð\Þü½¡ÉQEÕ ÜõÜ×0 +v?üã vd]mFLÀÚ)ؤONS©¬:Ò¨ËAjâ³#ÀA-'U5ðÒ­r—ðyÜ_ü)Ù™^+c®ÝtQ§ˆUe°ª(ÔŒôE +F(† mc.A\ÙB€)ÆÞoP¯=.’´mRó^Vº"bRR2Í’P.¶×ÍØ+S ˆ$ß'2)ÏÔ<*ÎuÉh<­ü]rô‰l(똥ƒâ (÷^ä%•ðë«•Þí=r˜ ­x™oêþŒHh¯rNƒžJ69Ê×R× Ì,2.Vë^í YËT‡þ¾‰|E¬ +vÉŽ{v"ñ·ls@‘íSY{­C̽ۨ†eĵÖ6ª_C?MQöÁéAIè<ƒ[µSÇf…›  Û#ÀíˆóCãõ.ÄVm`¨¹)œ6 +f– `%Lñˆ»µ^½íc½ƒ½ÞN‚Oú1¦~dêӲǡêö}³IÓtµa âš ¼º½ ¢GÏ"Nê“¬ŠŸ?'%S .@%œsÉ:Ð6A@ò*uäôÿQÛš +þ$z6½üݪ·qÝ…éABÕw“z†"\N—ÙI•­ÔuÖ©Pàêì¸-²7:¯GxPÌŒF!.Y endstream endobj 20 0 obj <>stream +N†¯RuP‹Ðn¤hv3³§”=é"ãìx†Šu‡`§ÂѶ +ä\#ób5º¡ÚeuBÑï#Å{±¸WùÕ#‹){Ñ.Ìs*w Ñ"m‡€kgÁ³ª‚ ©Ì´gX* åGàØ:ŒD=]p9/Ji‘PE PnzÓŠ„Ö̼8øô8Q…9xøf˜ùm%õc‘^«i”£Kµw@ÂtWykkòYs¬öªò£ë¨ŠJÝ>éG¥QR#¯òæ»oÒeí@¿~\Û ›SaëìèœFë ù΂¼Vh`l‹ +6…YzEUÌè`°5¨ÎèR [m$^³¨àR²]±®ŽËŠ:¡¢ï»Tþظ:?úVëÍïÇc0æ’ƒgç +«®€C7a‰#`P „_6ÂwòÅe +ù®ƒü¦-£·=ÏJ* Æš0ú쯫…9«Ó7~Tû±‹Ê"E̪]ÄÐ.êã«@¥UEtãLÅ–¥ù8~?Y·ìVz`àjúÄÊ^a2…lÃâ] ÷l®#{è£l^Ì“cÙ kàZ8Á¥Š”‚ Ìu³~Â#@‚a5xf 0küG%cï š®^¼hÁ³v×Z•¶hn~y†Ú"ótǃ‚Ð3gÀ†ÒŽ +L6/b=Bï jàMðÏl—|(²7®Iø¦bà˜zœoRÀ±±¥u¤ÄàÒEéú»"ˆF€æ •9~|_Åž’Š.Bª2‘0©´êJ÷m*’ ÅÄ).©ÄŒ”%'pîþ0IôøÍd¬›¥JS%V1(–l§KùfÕlY8ÈÅ^ObR„ärwœÉ]e–Á6&)FuIÔr2ÐAG,Yf%sT¸"Eê˜[èÈ7£mê’§’;¤DφÏFQËÁBjm³O½m4ž/Õh½²û£ÞD# +.J,ˆÌ«4;/Pàýœ18h[:âÞ>fa%¼ÖkPmSéšl$:‚( +ߡ˒Œ½’ºåº,Ìá›hpý*gArÎK `!v¶ZÀ0ƒKÎÝþÔØ +Iµ¶,Ïê& +Û…"I9˜Á$šLæ\w1@ÙW´­IYŽ¢.£Hˬº|$f5ïœaè„&B]*¦F$×PÅ'sÁÚt´¥;eǤ¶”a¾Rm°#BFº>ØÐ¯'û +…”!,Ùf`¾ÛElØ6X ß«ê['½vá>ŠsbÙ N†uÀÉlì·€‡:ËÀódÅqEBZ¨2!Ιܥn¶)÷›¹z\C0º&¼aèÚßÜ= Ä=ã°ó}”rwF„UqŠJµŸ„Á@ÙØïê»ÝC.Ò²©JÉìŠ1Ê5iêoŸ.îÀõcoì·¶{3­¸¥#ŠZt@it±ÏýÚ¥b+ÝéþªÀ.]µYÇÕu,Uèˆu«átse8•£ÛVÅÃk(] ÷¸Ö‚u`Qxc滋X »™‘‚ÐnPå¤ÚޱµkµëÜÄC ö%ˆ’WÁÁAoö«,q†²†Hô¦À‘ZWsG€ÿó亳Ö1MÉ-H]»X,J`u`Éâ'@¯>SÀ¨âX>( ™« 2 +õ˜h*ÐuŽ:43C ydN,ƒK§™¹ Œ†TÜ1¯ûa ½KIa†ßM,’@g‚œ….2„ Ç®¬Tf8ØØ”§Ç&‹åæÂ.@¸ÖÑÏÜæÄq fHåLÔ7 É¿Jç¢T¸T{¥ñÝŒŽÔ \šQÛ6˜‘ØŽ1¶¸Þõà€ÜCº`îT_4PÐÔ{õ†¹Xcdõ…ɪÏ^•mÍ=Š·.…Y61= ]!’DŸ®£ÕÀWìd²ÕäÖõ5¨Q÷Û¢aþö9kêr:ˆ‹¾ÜÙÁ\ïrœX¤¶Å*Q[ .ƒäbá‹YO ÕöÖ¶¨¥žCÎ\Ú’zP×® +¢ — 4ô ð¦V¨:#I³øÅ0‹Ç5ékX»¡žÂ¡iÛ ï8 skœÒH0§uP{Pi4(ÌKås$õôÏ)ç¼-·ºZ¶Öµ­IT°¶²ÞÙ×,൱§v-B#w»A–ÐK³K!߯q=¾[³(šf»–]ZSrH¿ÎXN•v `ã€B3¹nı™XÅ£Ýúuê#»¯!g/ë®è©ÐÌ6Û>Ú†YF’£ä²-yê~þq¼9©óÿ¬€®ÝhªµäÌ_ƒu%V°Ånþ½%|WœñxÙ¼œªîëÆá  +NÅbW¸î«]÷EEI0†nà ’€|_}Ï8õCb;iç¿fŒwG€ƒÒ@Í!a˜þ$t£7·;fÔ&؇§ka2µÓci“ÙHQMB;˜ AרJ$šÓØNmÐzÕ[Œ}+}oF/t—½ ë>rë^aÞu3vè^a­_—,ñÇSçÍ!9ô“ïJU°È8nmÍ#—•·ÏrM³Çȸç÷jŒ.£½ö{åHy +Å:Hef zdRˆÙv¡Uóˆ©oMKæg”r?Hy&4»‡UÐ5/i7¸höï6Z§¾EœÉl±C¨z_-´dðÝVÞ‹Éc¿gëÀ"ߣhm œÌwˆ³T(fÁg.ûhÙC^\gj[éF éN [ع—ø¦1цáÀÚ>¨Ñx ñhŽÕâ7š èÁ×SÃŽ­ÝmÑ(,H;ã¡§T¸˜×7oûôÒ ›ˆ• »“ƒW¦ì^w­Üƒ CðÖ¶9»1+¿#ÔãncI9Å£­ƒQ3ä©ÔóäÙÎ-\]t–ƒÀÂ÷jQ]2ª†‘W4Wg'Zã]áâ{Ô7Š(ÐX%/L´1Ü\5X±B4ÙÜ÷è—’»ÔáíJ!Ÿ±—mjŸ.r7[p7˜e¡V­KXæÆZ +ýÌÉ70·i‚›É©A-æ"%öMä + ŒÎóý4À|e%3¢«ù"'¯7ù½ö°H$ˆí²þ8YsIEAçhùp8äªF:mJ~0Å£—XWóÁ5ßö ÔmÝJèŽôÚÖâ%cŒ~ÌHVdÿ3ö° +渻r¦Ž‘¬!ÞQÎQ£ì.öÖ¶¥‡%›¿°É³ASÂ0öﳯ÷(INF*ÀÜïxRgj® ÖÃí4¦üMÞÍm°#cö 7›±Å*°;¼r‰iÃL¿äůA€£Ã`T'f§^NŠ‚}踎9jÕ×G×BÉ’ÀÀP,gh3¯§`éWÏ@RÊ ªÏØ%™ÐcÁì«ùµ6ߺ>²S1‰ˆg ï¡ ̤›–s̶’rozt¡YäÐRy$--ôbµ ¶ªöÖµž/ ™¢Ø´·@liÁг¡°ÅÁÔש³«%ç\ƒM#´`ZmÚË{U²s6úŒŒš]ÝnŒVÔ`mqiê±û]÷WºUìuœJ—ÒÓ –n4™rí®d`Ú³…Õ\ºÒïè^dÂj!ÑûÅM­9Ý™¹ÌXX,ÍCÔ£ˆÂ ±'Širüì]2Ï=›‡Æ™•ŠÝ=d sÿ¼Ym8^TÇïCÀõ—ms½¨|vÙö7úQ3Îß7“`ÃÒu´Q¢ØfØ4ö)f­ƒØ5¯~p\BÒ¸!6*°vNs4ßÅN‚p݃ÖÌ+¾ü˜‚É‹Q¦[¢“EØ´Ñ<:¯—ÑnBu”¼5Ö!~eWí²C5R-ÀÀ–5J¡¹¸h‘C" 20DK²äÕ#eÆÞ ÖqhcÉ.‡ ÞB²“1ãý`nÙ¸FÝŽÍ.Ô6ÚœÌ}"=#H hœrœ±ºp  ÍŽf©¬¬DU’2ÐLdhi¾YHƒê 1½?Pð¨Ý1Çß:Ç O +KÙ¾Uª¹ ù1·¼©ÌÍ3!\,ÕI[ K®çæã–cpv6Ú5¤Ì3Û ½WöàMâÁáÌ(÷ 9‰ƒ¤¦QÒÖÈ]”¼‚æòd~kI¥.qyêxG²AˆÏT—åB4ózÐ{¥÷FÆ|J©0j‹VkéB-½ƒ¢˜ÜXët"f˜/„îßÄ«©wPŒº¦Ì“ŒÙ­¤ÎÓ6Ëá{P!»¢™¢Ñá!q&Db0ÄsoÌÿ숇Ô]”ƒ„ +p "gGEfžÆáHcÃH@b³€1ö¼•õR\(3D¿Á½c_}8G鈅‘]†1`Õ“x_ˆL™a;šòŽ3±§ŽšdŒ={AªF,àÞ̯¼ym;ÌdÃ`Ï¿T»-Õ]ºº£i ®€{dÛ Üš±ŸY½BPù¦£UT¨U 9øDÁöò9?c"êž}·Q€kâ`î±ñ͘$ì®·3>00öP%[rNZnA«¦d0a“¹ê{ˆ—¥—ŠÝBÊU*sçÌÅS+ænõĦº¸ -ÐV)¬K,vŸPõ<¦Yò,ï1/R0.T¦7'¨ÃJlÝÙƒ«fØ÷áh#óæf–´¢(²B5AoZXöZ`V£g×8ëwPåHâêVÜvsîÕœœâÐÓ‚FÉ8Ñ;ÈFH8±Ê‚› _æ{–ü‰-î¥qÐjæœGÜ/êV¹žh¡ÈåKqF–Êê#„bQ]–âlîÒAšI¼ÊÙœx`3¡Q’|8•þ9õA‘¼žI}ûQ´Ë«Æ›¾oÝ;£AII‚ñËŽb´@†:ØÅa‰X^/Ýõuf0¦QWéšÉ,ÇÈwd7 +So›ò8­¡öлèõ¢s]CËY#·4•.9E‰N êlÚa4q +µÑºTn„7Ág×D?I—$-;ZÊqæ}gZIÛE6 ÷\GrÃPmìSóñ1¸õä6Pa(Ô|Å¢ÄUxðCç Äß%™Š)+¹š¯¶ì–_¾ Ì­RÛäM¯`"ytXˆš…ƒ-¹NÞÌ]ÀØéˆ*ÀÈE”di»Ù¶Ð³ëžÉiVVWv 'q缜ú Ü5 -)1æÂ¤®îœX[?™òrîΜt@†_ÄÎ''~m ª:CÓœêQ:à‚&Å(ˆ`DÖÎír 9mYÍœªñy61oá‚k¿¡¼Z +ì,{RØVgVv°èùż… ÀXëúÉ.Ú<mNø\î‰ùÌ3 ƒ˜c¤m2Ùë}Ð÷;PMTÐ19`Õ$™¨ŒÇõUuþEÍ©.Iiji[³Ë‚õ +ç˜2{9¤eèÖI  zêîI\H»I?µ>Ýö`¢˜ÙÜe飹vøíÍ­ÍÇlm-@¿¨GÇЭͤôÀ§H–ýIl´’gHȹª†ŠdÈ‘’-ù˜kæ ÌŽÅå]%Zü#ù~“d0W¢MÙîTÏŒº¬(8Çî]ô(ù™ÀÖèQNÝ‹®«ý56˜€…o@$ +æ0Éå=uÝŠÍÖZÂ0#ËÃŒo;— ЬE2¯÷;:Øhmmó(Má+½y'²RÀ:=|¡óÍìgN>ðe6„Ò¼¹)%'Z–#!ê̪P;CTfÊä2õEÛšÞ®JªáÝÅáá†é²‚ÙÏÎЪ-9g|TüY{ðž÷­w`±»EТ`#Wcð%Šá=’H# +˜‚ôÕvrsêzÆ">;F°="Mõ¢ú€îæY‹BG–úÑb§†‚ŠÔâ:Pðè¬ë4¾¥ù”FõC×Û¡#Ö¯e]-BI”êÝ…5Øû&`Qž×`wJcú½ø˜êÄD,ϾGwg±II®sIEøÏe`D­Ê¸˜’(³‡ ƒ|3Ÿñ±‚ï©æ½ii]¨fþOC¶÷c°-`3a݆®©­=`µ…T¡h^‹ äjrê;#&-š1¿¤×1ÎbäPãHO•!q´UZ”`³ÛŸ%ƒ‘Ž@±Úèc)#ÌW)ª,—pôpk_*]ÝRÄ Õ™ßl>žY•Å ´sa”Üo´¨Q˜×<ÿÙ)°Ü;åš‚ôýÖŽ‘Rˈ,–3Q£zƒmM¹',ö5”JOYTDÑÙEb«%î¯"A5[W]U„ëto·b¤R\6OÆš P¾{òs˜ãîâ°o»îiËöíÕ™kœaH†ÝIÕ|T`4Ú*‘ý2îñÍ…dÌi§HÖ{A ælìÅq‘çŽuÔ9e1PJKÇ• +m += H‰ck» ³‚,ø±Hm›€))9äÎ6Êr‹Ø5÷rÔŸê!ýÆžiºÌ˜rRœI9Âqj +ÎÙHXÑP“{•ö·¢åвô†ÜÖX” +õnÖ¶fõPl(-Ã`Ș¥ƒ Á;²»AuAÔÉÜ«ø ±6^S`ªFÝQ»c£¬H +=‡FÕÜéÜ’ +`úµ4æü¬š•†¦t«š´‡f®3ú* T½PíŒù`4$"¹™0^ŽÒ´Œ¡«ãÍw¨JbÁAJ§’ëRpDGà»0±Ú¦Yâš›æG­I¿8ƒ|«ÜÇ8ôüµŠöµƒÔãEZ§«P#EÃT,d؇qÑ{j¦1¯qʼnsçL5Êås÷0ÏnÔNùl7Êb 4ëîÍâ¾Ä@3«)¼¯ +¶Ø9Û¤X Š; ÄQ[0ê^Ž÷)™Ù7ÖnACÄ¿˜šPî2Z¶ž`=Z–Jl‚Å“áCÝFq'mk<â˜-@e g#Õ1+õQªRB€®Ú¨Ze”µTÁ¿JžlÓ[šµ” ØÇÌC©ª ¬€ï©œÏæ§s<ѸXº,¦Úv ÷P9šÓܯبè-Þ&K“…¶ÄÒÝÝpGšid[çìG#ÀÍ>œeø‰B”2¬`Í|X!\²mb´sœ» ÆxŸã( UÑj +нØ;³›ÄÔ̶œG{çW v1œj.(v®>úhºòØgeÊIhÊǼÍÂ"{¾òª¢µŒc™*wY…ŸÕ9±JrY³øN-8lÕl –á…s™JO"! b…H3Z;Ÿ›Ec·˜QôÚÑF,Í€©ŸÄ\úQv=9Æ+'†³’òbm«bêIkÌ€€Ýλö\'±Ôž!a0à¼&ÈLã'Ÿ«eÌŒ/Eò×)8Ž:jB6uõM³ñKÈá- g0 ²Oô‹–\Ï>‘Æ”7ªNš€¥é‹Ý3+ ñ>SpÓC\%ÌШ©BÛgÉžiƒJ=zi­t¦ßb€çF`‰”ª¸I%Ñ…ZÅÁ¦V‹ZhÆ‘Eõ2®3Nc\†k_;H±g½MÙü*c4Å\è¯ßþþ>gÍù\9-§©f½;3pw IšˆžftŠZæÀÜÒ”¡ð`F2É$^£ÁÊ‘¤þ~ëž\rÅÞoÁÀ9Ö¶v¬eœŸÁÌMuÆXë—ˆxS̹y4-&fu~¦0aIÆvÄ̶sÝâ“ü«,ª¸N¸ÜåòVz>LÓ±—ÑG@ äXûÝ7¥0?CРÞvp=*?‰n`&½dO ÃÚà³6ºÎ^y +Ì–lÄÔÔ÷¢îÎõ™Í>Ž^1ÕÒ^.ÊB¹pTší1^ÞÄ…ÒïÎ +fœ¶‡+¨gö i©G+jÆ|tÐL›iIçG`×:JÀUb/^³§Åz ° „Úº9ÜI¦cC5/[‹¸íaÔãS`×±úNM ôµ8ScJr*-ؘJßÔ—I¤žžJß›ËG ÙêÄuRj³šÑYÌ`éµífŸe}KOzŸjOÚ¡þ÷®g±M=r~`ã‡^ò’ù~[cS%«Ø§ÞÌyŒð¨ÅLUæü"àî·—´¤€Ý¾™2ºYÞ~;Zu ûã“îCå³ïŒß&ºû{ë‹åH¶Ð¢¨:2‰RQó8ââУp¥zØ#[s°ŒAX ikóæF0æýkÝ7äžõÏ’ Ík+ÀÁûYJV *ÎýÞ´•{–/*5Åܽt@ËqëëãA°”¯I®‡Ÿ-5:ûÉØes˜ç^on¾“ƒ1Ad?졎)5ÍßFƒa-ìÉP% âU ï1›ZÈ 4íºÌSÕ>6I¯ ° 8¶,Õþ˜t¶[,á]KÈ“‹í =ˆ=ÄÖcYÜ#ERWM%õw—^“ÝVoX`nZö”öŒël‹Ì»mÚ9¦ÌLÀ¬>X܉mÑÐØi®ú3‹ÈLæ½Õhh£V7iØ8B:{PlåÄ¿K€Á‚}ñ±Á2Ð' „÷’O%ÅàsòÕh]œÓ4geØãXé>µ|A–2 ô¢> ¹ç¥ð¨Äžo¹ó¹qÝ,¢[3 ٺŮɴÚÀm,w¤êWa4% ó¶DcªKIÜÆ ÁyL0:7‚ýNÛ‡Á‚a™úmoͶ´õ¬[3 ¶: |§KL ïZ‹°gçQË¢ƒ)­fB5ÆÜa&Ñ#P!š,“土ÑT²I€%Z‹ªZD/x`r c-ôTqªƒç<îÝĤ¹(ç§0fˆ¿Ó³Í-uûL°™¥Îöd$Z W€£w¹ïLX’¢ÀžŸ3‡ûæõR-×c|!‡ž)xðVigÍäcuÑt5ß…ng¡sï;ož4c+ ½ˆ[€±YË»ç¢å +³͈¹Ó+nS÷rÝ.ûS–<ô¤HqX­@èqYU¬î†Ë¦5!t‘€ +Éj*ª’Éxñ·Æò­™6˜m‘–Ý8•*åVþÀ©T ø8X܉ö]ÏÚ$ +çLÁf¿l7%@Ó`ºÄ´-MB'ößÔ…ÙŽúöù`õÿº3L>úxòÃßnýúÃg_µ_œ?»¼¹zõíáõõôò\€Ï¦?œßô×óóóéñ„¡ŒÄ±ôß~±ö~òÙkúí'ŽÿóÃoôÇÑÿ%Ð/ï&_Oþþ79ÆKßíì‚Y„ž¬ å +Q¸:$Æòô/8_b”«çâ À »¡hoâØ‹ƒE½.Ó†?pމ`ßìÐwˆÎÀfL茔8¨x®†Œp0ãp¢\…É–"¸3ºPñ7ù’ëýÄ2õá‘“ýü—¾èkÐ× òûáp'M¾Ö)ø?ú:dÇqQçq÷ÁÁÂéšJL &ÎÚWî-%¡ƒ't–Zl9Ã¥PÖŠhqŒP’°«ÖªÐÉ¡•¤¾†à3ÎNÕC#kˆµªxTš5Õµzh†‹×ÊîE$ŒÃ=3\ªÑ¢µzxÕ_þÛ(h’æ‘Ð*ø'ù÷kà·6½ îí0ø»ŒHDBÿüß#c“¹Ásc8t¤ØÖÏ?'8á]¤q÷Ÿ/É2mæ>ð8heÑÐÓŸùÒ„#™™÷̃™á\§(*ÿƒÅë±D“»Ý?æX0£q "ûz“ŒDOï¹ K4Y° ×ñån¨ç<øæó€ÐœÅ§Ö¾HΪ rO·aso.üÜRæ>÷jçotùÿßÎ_­ÅýŸ_¥xÏòº[JÔÌ“t‘Âà†ù}á±.71Û‹Ùfg{÷Í +• R¢ …Œwo|Ðç»àu{þlöÜÚ0;­¹6­{ç»x…ÆË:PB–6´Äþïú²Þmtçs§ËŒiþ²¾;±h’ß%Og÷ÜÆ®3ŒÈ=ðuäI +Wã +âBœíÝ &«ø{JæèƒåÚô\ðåÇÂUC½î{°h¾‹Wè¶øÝ²}»á¾óöήëÜç–j4÷¹·áH2€/þrqþíåÉùõÉùO»»fFeöÁÎ_^ã‰wòèùÿ|ùç“Sêfç“þsòŸ;ŸüðõÁ_.ާøùùÉÑõÉÅùáåoozðéä£_ÏNÏéÑ. ëòäÇ›ëéÕÇ“ÿØùä³ËËÃ;-Ž^œ_NÏñùêüz|†ÿ¹þíõÏ>røxòÉ_ÏOŽøœz=ÿévßOo¤åoonÞ íh¿ñ¨>ì<>ûêÅg§¯_¾ðËÎçä˜Z>0´ùàS¹øñ§G×Ï.nÎilÏ.~]vF/ùpQÓë«¥÷êÖ;|ª„@—>¿œ_¿Zz^ÚúƒÏhùù<°­3sùuÍwæÕôä§W×KOÇšÿÇC_4¹çò²ËñãáÕôÏ—Óÿ»™ž-4ï¼õÁ7üüâùõÉõÑ7lœå·þþätº<²¹õΟáõÍå7§´¼Óeç(¯.99ûΞUXv2ç7gß]þ¼Â~;ò(ÛµìÜ.§W7§Ëc k¾ ºgèþ C_ÌVÌÐéé÷KÅqÌoXþ¼/Ï/n.¦_^¾~ur´4³u¾ô朜?Âa{h|ãL.^O/¯/.—žÏøÂZ_¡“ó0É­- +xyö/Î^_\\¯pwÞÇ8˜q^vŸ|>}9ùt+~0mEÀ­¸·"à;—V-m%Àõ”_^’8sú—‹“«'%.Mð¶2àVÜÊ€[p+neÀ[§d7þ|úóÉ!´‚ˆ7ûÒ£q_Þ\]ž?{ðL®#ƒ}ñòåÕôúá±oÞ}Zúð/ú÷¯‚ìž F8^žù;þíoÿ7|6ïÞ_½ž}sóÀÀ7ïÒ{·4É¡¸9=¼üâ××çÓóåç6ÿ⇟媓ܿ8¿º>|‹IŽ/nÑÞ¿1—¥]º®n._MŸž.¯ ¾ýÒŸÜ)ä8*]œ^\þç/¯Ô–Ì2~¿­2Qi½I’Ê®wôOCã±›W˜ÊzËÓ»a•mù×Òsù×#²"ß^œœ_¬"û¿]åô¹E [îhM¸£§µîTõiÚQÞJô„Í)ë‚NO®¿=?¹z}zx4=›ž_}øziÒjÉט&RWK›É7Ñ^~o6…ʺ‰ýg2÷Óßú¹ìÌù×òò…5_cŽiS8ñ}„5~½Ä¥[K´·´»îhoù™l +’X$­9dz|@ú‡Iô².·ïðô—Ãß@Ú·ÎíõáåJWÚ¯¯fìúbyÞãâ&òr%'Ê—'§§«øž®óU|yyq¶üd¸ñŸÌéÉùôpi\¾¾XÞk{æ…>³Ë)‹SËNíðøøäúäçå§6¾ðáyߥÞ¨[·¼IJZxd·ô|Ž—Ï&mÁ¬v¾ü™;:º9»yØeöÔͼòá#¾–æ-fæhŸÿ ObÙiÞ~ë‘$“Ãó“³6ç=Ũlvú»£'ã6³üL6FpÈòÚæzyÌ\/'çÇÓ—'çVÁž%d¯§‡×Ÿ¯°k3o|øÐð帑ßi"›ua¥~\¥ùšG ¬2—M‰x‚Å2·ZŒµÇ +Gg¯/®ˆ4}sóÀÙ¼µÆ[ó«ôÐø6ÓÄö–ÑM §Þ·ËµÙxáÉ%k[ZÏöϦ>34]߈¼.eþÖzG0/ÎN$=ÂDÞ†ž®;í9¼<¹~u6½^Eo Zþ=àî6{ô⦿GRº9æ·¢ÂÛ(Ä·ÇÖþüîíÏ«å¾\G=ÓÖþü¦émíÏóòφ؟y·aîÓ•v~ks~,›ó¶¼ÈÖæ¼µ9omÎ[›ó +ÈÖæ¼µ9omÎ[›ó‚‰lmÎ…ŽO^¾¼Y¾ŠÄº#†§³)¸á)YϗΦwusù’D‘ç«åR¿õÒú0ä(­6·[ï|ð©ý6==½øeÙùžüôêšžï!—ïÒS¼ûÚún bšý‹ó«ëÃóåqÈÜ{[Üã«àälúÓåtzþ)!Ûé§$³ütñéÏ'§ÓëO/§ÇŸ^\ž?d›Øê涺¹­nn«›ûÈokÿnusë ›[…Û*蕹*Kþ¦§ôÇJº’™7><.lKOìð_'g7×Ô =qÖþÑ´?ŸŸ0€köȾ3Ÿ‹dq 7~ó.ÀÕëéÑË'þà—×zè"|ñëk"»+–ó/>‚ErÕY®,>Ï¿¸UÆ}˜s¹Ú8Û?¸¾j«ÌyleŽªnD™£šÖél•9[eÎV™³Uæl•9[eÎV™³Uæ¼ï­z*^[ÍÔV3õï å¹ +í[ÕÔª¦Þbjë®ÕxÊ :¶1Åë†NO®¿=ø†ïÑïJFx{Ôñ„……uÙœcNÙœ}Ù +qk.Äíúü‡eÏéò4á·G m£8ºÍ°¼A–}rKÀ_NŽWpüÓÖ|F«\©åyßÇ`}}\~o^MWqoìÍ·ê­úãO©lÕëÎ&?}õGÛª?Ö3,¿)[õǺá­úcñúVý±Ul”úJƒëÃ<¶*ƒ¶`»½¥Ó¬üxx5ýóåôÿn¦çG˳wÞz„ òç×'×GhIfe ´þþät…¬·Þùà3…昞ï.A¡gfx÷µõÝ?E4ûçWׇ•ºœwï¾·IÊuÞž'“nª,–izJ¬¤³yãßá¸4Š=ü×ÉÙÍ +æºÞþÑX­ÏOøÞ¬bÈzOÙ>—«| 8kóx¿·(˜º) Óò)×l¾øõõÅùtL>ÿâúR+ëÊäjþÅ-ï»å}׉AÜ0îiËyË裭æä½ï {ã}vzúÞqÃæˆCo‡47Åʾ¡n ïc oSÂêŸ}åÝ‹/Î{)+€2 /þrqþ-uÁ TvülúÓÉù샿¼æ>’£ÿþð ~LwnäŸ?ÞЛÝý±»ð×ìÞÚ]Û˜]Ý™[cîÔÈyÚÖü¿ýžîÌÏñÌêa³³6{HfÏì4î;/ðý]ñÀPãRî[ÿ†­ó‹ ^½ZÓ}f™¯.80K}•Vp<0Ýùà "¡×·8…?¼ Jñìââtò!ßø-QÜéåùçv¿¼99Êû‡ÆÌ6úõõÅåõ÷JTþð"M +-n›$^åO¾›žŠÓ=»õâðüôDÒ…Þÿòòäø¿§¿Iyþ+ß5¸º¾dƒÅø-¢7/èøôñ䇿Í! ȱ.?^ VÞbBrÃ4ש.GEÊžÝ2ûE׃0ÿíßü³Ìýh{žÏ4ý1L?~âôã_>þüÃcîí“û÷ýámŽ~Hó' q<²7~Œç¡×k¢î¿K|ý¾K°Ì×o]„[¼‚,¦ï;égvÒßÙÕ²à×ìÆÜÚ1ÝGÙPÛOÝë™ §b<»Cÿ5ž"ýéíÝúÑö*3 ž¹Üù þC9`òËØ‹˜ªMÿÞSõV+³€ÖÑÆ4Ù×7Ñà‡^~#^âË÷Óá‡^¾E‰ÿÚ1‘Û+Á§–ÊPZÉŽvš–;ù¡eOÿd?ø +HôÑÅÖBZ«€„†S*%¼‹«-Q³r–üpHÔ™/¿ü CƒÍDmíÙ ù}“:u]ÉÀóéáåÑ«y"à'Ÿ½fà—#¡O;‚pÝ!í9OÄØ×=À£—=G›LïÛ¯#ºÃôÎ@íμ¸;Óã³Z~Øs)“$a¯Ñ¿Ú§ý:Ú±ïdæ½[Ò6Ïÿg¯^ïòqð{©ââ?$Ò$Œ´¶aϧš'ŧ´WSörï#‹;®”šÂã 8‚=]ĘSË.fH1w.GÅÍÓ˳ð0ÞÒfL>ùËÅõwÓ£‹Ëc/¶}ÉñÝ={ûŸ}õ¥Îöû——gæRÏ'‰NÛñÅÓŸ}5¼ =G5£ã0fÎVè‡ã;+XÑ9t‰¹Cy}›8íú¶—2aÚÈ¡ºBg  š}ê ]ìwlÂ!6nQqßàÉãÞPˆZ”½8æúHPÄ·œ@A÷BŽtsóÞàÁYAD2õB-ø¥@H  ˜œ´ñt,ï¹Z Sã6ÐÛ>íµVXx ŠCòÄ$ìµâ£R2:ž4¼½Ò ‚r9B‹Ü +°7‰‘zé€#Ä+á¹™61ƒÓ {ÕC–¡Í§u¢E wc+øpÚK!fÏĶ‘`uPˆ¤ˆFø³Aš¦ñÇ\(@Ó ÀÉ%¡úÔðm:Û ª>ÑÙE/­O€TkfÁ‰¡Q"<ëºW#]kìÁeÞ•ÆæeŸ*$XÜúFÞÙìý%nmþ„ŠÆœ@GJ¢âˆÑèý‚S‡OÖèZŒ‰d·(Ìîî”nkn4ÛæÍö7—J ´©ÍÓF÷×1D’h‘œ£èÅÑOj‡œNTÓûZ\¤Áe"o)‰°©ºLä0f¢‚>àzîè)(“¸çŽË@-Ñ ;Ç‚Èl"€wí:X§àéÏÀ‹Î‡<`¥ýLC.^ ®•…Δ¨¼îm¯Ñ'_Ñ! ›å¥H»‘¶Øåêù¥í&¼¡T>9´€Ì{ •ŽÖ>ßTW#o8:&ȼÔt Dç-ñÚG7ð9¡U¨·¤ŸœRºÕ†Æ"/%¨ @·¿DGÓëÏNÚ7—QoÑåtD è¶¶è3ßVb"J„™&Æ€@;¤×7úkø_¹À´ «kåûëš+³Ûr{ëöwþÌŠºþ Œ{Êý§ÜAŒ/ˆN øï (Œ:HôLˆê3¢3 ž‚Ðh xè´ž•qZžÿ AÓþ Tú"ÏΕfF‰X¢°ƒ¬,6ÜÝž0»=®¦Ù6•fиMŒExbdE“,9ÉyòÅ{è?öøˆ0Rb´’‡õhvôÉúO/¹hIê]–ÀýÐI nx‘ÎéÁµ’ +¹a +t'<]Ýq…ïîÂþüÆ€Qüã_‰WdBtÜ)Ø»ÏéçVóLw—|nOníÛÞº»¿§ +$Ü]€É<Ö‰>]SduîÌœ»º»@ÜÕÜ2Î-ôÝÍaÝÙ4íu¤ F@LVâ+&ó£E‹…®ÎÎ?;‡¦q¼QUöwï›~¶“&_³æs +ä>gH$üŒÄÒмÈ<òžPx*à +N<Ýãªäž‘ßþM—ÏÔ.£ ¬R¡‚ˆDosÆ-Ð`]mz‰ð ƒdÀkçùà„‚qÃß68û{‡FD€÷ˆ‡[[LNG`y@IKfÂ[ Ðl2ðtÁxh¤®1Ro>E§ƒG„sãó_@ÁqwiŒ´Î‘ùJ¢éu\–¹¥#òÌXm|@»V `À¡Ch ’Ã&âP¹*WYF…áUb.h ™~9¾¯ŽO4µ!ü‡™ˆ`gÏlÖè0s9ô~ 1çƒP7ñi8:…p7î`Äè[óÓ‰t±šsr:dzÉçŒDM";Y-õ­Ä¬¾+|<][GظÂÒZ¥‹û¡æõìÎ š¤íL–¨7˜H¹…:!résºeHWÙcÖdAG;ÐY& ÜÏ©zÛeD `AÇ +ËB$[TY·»z£(‚šCÈ|à`Äß#1óç-‚lDˆ IÄÌiT¼PP°wQ•F–Û@ä.)3À8@kNl$Ô®t˜æ_¦\IúAÚÿa ´ÎdâiÎR!íDgÇæéû)/û-0÷Ô 5iÀŸ€þ¢@”Ð%Ó¾|°y={‡óJ™ð%,„Åk‰ætÚè¸ÛrÄrÀüÙ[‰¡Ÿ; º<˜ÕÝ÷ãøÛ÷K8ïÆ¨NÃÌ“ÈÖÝÄJ9ŸýÙ¿ŸþzýÙåôð^3;Ô›™ êJô Ó0¡ÛK(ŠFðe Œ9¨~“˜›atu(ðЂZ“P˜ª9E¿¹Ðý—õÊ1·É/“tÛz_+–kJØiüã@ÿØÕ¿æÿÐßW;¬{?I,´î“_vj³B×ýýcWÿšÿC_½w eî}.øáhy3¬‘³Â,ÿ³žçê«ó×7× ø>äÁò÷œ(HwýDñýDé_óèï¹Åg¬d?GüG?Gú×üúûýŸ#/ÚVbqñ«Ib*Ì^$ž­ÁñY9ô É“oOoè¿ùñ§G×;â2yvysõjòõáùáOÓËÉ7—ÇÓËßül"÷OOO~’ð.mù=-þ'“8y}½7ù*ŸOæÛ;³óÑí¼{ãs½sôÂ7?ž>Øþû‹›£Ws¹‹«Wö6¥oÎiK^ÝzuÿÕáåÑÅáédwòç)=œ^Zû㱋[o<¿>yýútl§»¼ ïç'§?O¹‹ËO>žìÉ&Ñ®ÞÚ¢w¼Õ÷¬ÑÇÈ&=îþÄ–ðÿËgÒ¬¾i¬oõi9-ØJþp¤ÿʪ`_ðÿúá÷ôÙqÂøîìtÝ{šîâãxõJV=ðÿ¯6ŒwyBŽe¬·Flgš~:x>B]¡ÿ£üÂò}öÕ‹g—„ËN§üöÁÉ„•_ì?§vá…¬3Nû‹g§7¨³ðaæ³è^Ó<æ/öÇH òÉĤ¯òÉÄþC«ÿ ŸÂO&ììæÇ»0]*O™‡?ÌÄîC,Ø/`–»’Ôxh’yBYÖ€.Ç̸ûÖàŸÓAž˜ÇâÕÎ'ÿ}~ñË9ÿAä^= >ù œ#(‰øyjO?ÙW«ƒì¡=íúÉùDüYã™–kŽ,üŸ“«âÐá|ϯþ¹BϯNŽÆ×eëž__^üs:±ÄŒþþ÷?’¦Òrïð„ß'²ªÔ~ªóþèV“ZƒÉ/_Ò¢SëïO®¹§ÀŸ8ýæRÿÇÎÝP;5;€¯Î¯NÄró‘ýìÁ–ŸŸ\½>=üMþäxVySwcò>ü>–e_½ˆÒË9Ù±IñÐ,Ì“Öbòé­îáåõ‚Û¿8?¾9¹^fÏßÐ v`…Ãó¦ âÝw¥Ñ%=|Wó¾dƸÄ}xXà®)øëÕô‹Ÿ§çßß³îoX¼g§ÓóãwµzÜÙ¸|K.Ý8½ñý{'²óÉ¿Nn0~ ‘Ä 0ØÄ!Π±ç'gDm­ ï-|7[­™˜‚Ê($ +ºa¨¾ÆÚŠ/L†c©0M¦ÚP#è4œçs)—Žo×^Ð$’ Ã4j៑nIŠ þª«®O¸–ÒÃÓÎož6+9bs©ù€1âÂKÖ×D³\U¯F¾ÝÂïmØl¦ÞÒœ 9Koÿ–@,"‹¨ÂªŽMLÂ#ÓÖ¿o1ÍÓü~1Í*vÏ-¦y{LC¼ãƒ¬X )Äy -F8¿«`Ž_tïõŠeXïa~~yñzòüÕáñÅ/…ºo.ýþŠw‹.ïE—o»ï½ ù¾u‚ßD¼ÑPÚÝKºoß#Öo&ÍÅLd<¡ô“/~}}H¨÷ÙôåÅåtò?ÓË+ÍðÞ)ùëÓË[€›«é·Ï$ûìd±×M>úQ–BìèêòˆWZlmsñúðh¶Í§ç¼œÕ¼º¸ü÷ê r|xùÏÒB¸¹VøµÐ¿i`›mA¨x +1ÊÄ<3Äѳ’Bn$Â#ôu¹’Œ›},¾’·ÀXýÄ\^ÞšÆÏÓËë%oÑ“T¾ü!å_>ß"ê-¢^НåóñdÎæ1ù;GFÁáÿë&Psïq\ bA°¹þ1yýoÜÝ·Äö”ë'¾Ü%8Ô§!ûÍÜž+­Õ!„ólÄñöK®òã¼a̱e7ŒÊ;¨2[Wãá 0d{JÉ ?~sƒ¡yzñË$O^_oñäOn C;žâ›Ÿíêý²³p¯‹¸Õp‡[ÝVô÷Êyþ ‡7§×ÿxH›Ñ™ / þÝ»ÞÅ7XÑï.ƒ¿GÂŽ_œnúz|{x:½¾žò ¿ýñÏ飿ÏúTþãc^Áþµs¾óíÑüô·WÈèÎÏÞõ}¡ãC4;Ë!‡È÷ üwgýŠÐö»/ŸM¾›ëH\ñ- תCØ“9¯h®…24WjoÿÓS`*é â#êÅ—âÂdÔœŽ/|y9žk{âà‚¨CËÁ×Èô˜·ˆ}CFì gïïÿvh¯·[jÑ'XÞ—Ö²4²?œbwT–­Ñן!E·¼N L3É[0CXš¤‚MÌyúøöׇ?Mϯµ_¢‰ˆÇ Fã¡"ÂgpηT"ÔC¨-çèq“! ³ZñªÄobÔ<æY.”3Bø|ËΔ²e]Æó'$úòOôʳ?¥l{èÂ@KŸ]HȽjÁ«5»&à ®ÒÑØiœ•s08â¨2{Ñü¶'·ãôP3¶o@f[ĬƒBö«/ÿ *–~ +â‹éóüœi—訷ˆ)< +0å‘ aH·˜v¸Ì/ÍâQXôåŸ73 +ôè„§¼‚{ƒk•Nvgè‹tWZ¤Í k–‚×+0»?œòÎv¸={‡ú(°´ô†ë‹S£½§¹ËºãäUÄ’•âz¹ùìŒÇ„ÇmÜ+ìÇ=gX™máš}6còœdìOy°Ù§œ* Nô. ½Üp‘BB²¡ýl›ußàV·þïèíÓaŸ ØùÈ[íŽl–“#ä*¶GgFm醣UJ›ÏÜóUÏ礵™¯">ŠîBî{%>\žV8å‹`FH’ÉÆ‚`Ð=[Iý4îÜV‡;^bz“Ú˜|‰µáCïRÔåG9Ú|ÂÞ„䨻Á#„>Éí¼ÿL½uùØÇæÎYQd>oˆfüSM†% R”@—Ÿþ›Ð>¸·Ð6°‘ Y› •nÁË ÌãÑÂwðÕÙ©{;o<ó„ÓVì´ XBÍ©¹Œ6Ûbeè#Ñ#Ž“OZ¦Ù ÕkŒ@ÖÅ t`èXvÔ[à:îÈí3ƒp8Ùp!õAã}–žÈú• .ê€þ+ ?w¾ç—;Ý9žòMÚS[nïûWA.(¨#"Âî‡Dœ"¡¾æCt¸{ÈH¸ˆ(^T„œp\h} ¸•Å,Úá*÷O½€ ø\Ä  ¢Í#ýgñi™Ðp¡á0Ÿ!“¿›·ÜÙbÙÙqØO‚c0wBvÖj¢ë>Pû˜£y:`´©Žî]n1ZnpZ[È '°Æ[Çmvn>bn­Ùá±H¸\Lg‘z¥ÒEö„dø¸Hw›Î@',Ã+œˆÑP@zßuæBª‰[‡kÁÐÉVâO2wæŠö€Å½³÷|TSJÄ£ÑyhAøîÍ®.pßÞÜùŽw¡xŽÑšw®ãB4¢P´ÛYP+±o ›è°9˜ö@Ì]GËÖáÿAwnhdb³—°ˆ»M÷Ñ9`yZ-ÌÝÎ<]2bÄè:GºÍÌÃÛ‘["ªJÄV\êè Ñ,1\ð¶“¡yO´c!]£÷y.m3cßjœ}BEd–-: 2ø""fé„ÒôSÀ;š\lH*Gè)ð›‰jËB±â­qyû*Ý«/ÿ„-:¹£Dg‘¦Jø¼µ KKœ 2?T=ŠDÜèèÁwêz|‡/:w–ÂÈ_°s1ŒÆP‰c¹§iFþd  É­hÉ «½€É»ÃÆ ^zõ ·˜¼È§1xã§”¦HìJ¯²Bh` dÓ°¼‘ú›; šˆO(‚æêÜ5,·XM†t–w`´ÓÙõ³b§‰i†AtÆ!m±=|nè‘6š0¡XNNg0tÀ1Å”ƒÑn– `d={csß|0ß„Pù×Îx°ãh„ž¢¿Wô¡ ¸ˆ™œ‰Âó‘G¤1’ $!¦}ÁDчd4wø²¸ó%BÎW¡õQUš  e…‰õA¼8¦7&%VŽ<ÇôóÚ„¹©4¤¡eçë3·6aŽ8ßjaX¼a­˜V”ÜOKA®¢yÉçNŒ7íq%•¸Þäp#–˜&Z²$â‘é ‡{ Vn!ƒVn-KäÓ0{Šk?K¸¾´ÀŒSsA‚jGgc€Ì÷×Êr´†­0Ax©Ið8©ëœtÞJangÞÚîPQ¬æ4¤Aƒbv¶§2#y•®×ÿÏÝ{n'Î{o ç¸‡˜Þ±M' ½$ô$Ð5Þöá\û‘änÜ(óŸùYk²Ë*[ÒnÚ6 9e^€ÆHÂŽ"Ä€^l(t‰! 0Øu!8€;‡dÕ[ÿ‘‘!U>…ê-Òn9ߌ›ÆÁŽ!hšA2 E.`ùH¨Gil ÷"Úù‘{Á é”Ù_P¹•îy+@º?²s8+¬k°ÿàÍÓ@f¤X@ݨA°šHÚ&#À”ƒŽ3ðñû©`€—ÖÊ0Ç(œAzU±‹*/q»‡WX!1$Ð @0xl…Ìx£]ˆD×HÓ=€š”ЉÊG”’ÚDÐÎ+VtŸÐªò#5Šf×t8òC¹oh—‘ÀK%ô&.Ì×QØ,'7ٵ׬€/É¿ ý17Å¿š/sá»Ê‡¤‚·áa(]VÐìÐ>tÏ×a®`0/ …lúÖhe8ŠÄ (-eZôG¥røhÏHO!Í3p TvЃҹ|Ïêl@3„7‚É\Y`'ùC†¡“gõò !R‡Ñæ•:CÂ2º)h–Í‚o½{a³$tÐæ.r·Ûìhx†0íJ!üPTHy|X"ŠèvI8\  ÛD/ì†ÿRÕ¯íì¤ ¨‡p:1àE¡(˜Y0¯ôþASƒà…q;F +æ: lÁ(=¥@ €#Â^cõBÑn×õ £Á­FÂíÏ™E¡hÀ_ ùý¬d B³z_ž¶>Ð@ @ö ÒO€è ñp$iÇ÷Ÿ1÷¡ óú€?lSAè»r(BÂûôa-€ €¾Axý,25ƒ48¼Ð*â`‚ùÊ Šõ‡èô)Gw;hÿB÷)ŒX2ôx…9õ# +š¡ðöZ´– hœA¯/0ÛèÕ Oëø¼¬R4Xœ^ ÐQÊ ˆ¸ÿBSþ…œä6ÐàÑÅN@F“ô[L+0„ **û ¼…v2iDcðhÀÚ¿0ý"‘b| à/+€8†“KC)pð.:´aHŽ~`£An0b¼CPkôCni\!î¿H úÅ1ØSk‚ä„M„pä‘ 2¿„Á·<0Ї‚Œ.~|§‡æ/L?´fŽl°0+øÀÖ†Á›ßpZÇ& a…WzqK{pƒ03EÞˆ®|Dî@î?³©ð2s Zþ²>M ¹GIè-CùtzÊt$ ív¤9!  j˜kÆ£{4&í_XÃG>NÈqHÖ¥ /4ÇámfÐßBÝd´ +¤}ÔÏ8ù$?ÀŽ”1í_X·2²ùp݃¿¨õ4w Æž{‚z®Ì©½ðÄPVy¥ÁǵÌ¡ªÎJ\Š o«Õü?«¸D¦‚TtÂm¸ÔD’›L芔;ÄP"»VÓõ>;ÜQþæûq6øO|üP1û.ºL†Î¿û뫸Bý +‰qù«mäRãZÞíÖ5õþ×pGÝ:4ò䂲ðwJ¡›!—ë %úö?JÑ|=C%t±1Ý?"2hSHXÚý{Ǹެ•º,ßr3^L'zÆÆ–¼Òô_8zµÔЖw]ó:‡×EéYøš3ù›7úØs›Õ¯ÚêÿK\,ö—îÁÁ¢ú—ò¯[‡1jã Ì¬Cïrüåû¢1LWþÿ°K©Ï¿ÿ`iü›·oÒûŸe°§`r7³6rSiÐÿê™æ7‡àU¶Zcù{>ÙÏôŒ‡)ø{ÇäÑ1¢tmÂß="@^ ½kn6Íô°v®äo)­4 Ñ˜¤«Êôs_ÛÍ©ghÇïüšbÍa7ž¦!Dâ*ÜðÚNÃež +)¶{ @OUÊê™úãw~³Ž[(åó›Ýj¨´'…þœ/§ª…EC–þß·Ù©érŠÐH:è´›N¨k©å×f7ßÏVzè%÷Öï]¸óÛm–ËÍ_Ó]uHí§;Æë¨k¬ò/þáïÇËÃdšn÷H£=Né¿}€ª íïé¨1›îëS Öº6ùÑ+¿Y\ãZcœÌá-¬'ŒPò®ŽìwÃ5µ‚êÆºÔ{qùß¾<µö`ËáXŸÃPXú7 ÙÉüóó@)óŒãz’ä8zå÷— †46áú°Êl–›.Gƒ ð¾>×›*¼-õV×ÈDåó5åÑ?+tuÒ W̵DÃrCQº˜&Sð·F}5ûÍ3Ô)uidÂÒÿóÚº¶$¡rÿ Ǻä?Wô°ÑÇp5¡SúÿÎ8ÿeƒ¡ôtË?}8hn.œ[ƒ¢º½É¿¬CZ–ýÿYGÄ>ßÝ› 0ÅVóÿ8ûOéõù÷ïîÂjºN†ûá¥ýˆ^ØÓ„‰ºÑÛ… B.Φ>bÃw2Ãõ_Cª1ÿOjC¥JqSßM©éî¯é Œ#ºÉUz8š/ç{F¾¦¾Ìn³…QH)Æ $„JIëJTj·m†»IyXkD¦zŇoÀ€²ôyÕë`Ò@"ÚŸËéNè;fUæÙ*sMâ²ÿ—û—›¯  hk="²„å›"XÇ}=õLÿ¦´þáÛ~ž.››gº]Ôú†šÃQ£§$Ûý¯"æþ+HYE/%!<ˆ–£ÓHàäy ’ £‘‹i8^n“é œG?üYŒñ‹ ¸Ÿæ³?‚$:“‚ÁПEA^Üp) ©éø°›žHÂ`ä<’xäO#aðri2§@¿N£ Ÿ8S!ü£ ¼,æR +'+tH| +Cg +?ñ‡I‚^.JÖÓ¿ÿÝÀo§Ð0@œ)Lü¡?L˜$q¹4ŽÇ›ÃzæO"fèL¹³SÿaÄ ].WXbN¦ç‘Þu9CšŒñ—ËÚ Cöù™ë3>SäÍûO#hèr‘#$è¹k4DžkÌ„ÿe¡×¨ŽDð0Ī‚Á ?gS—m膞a`à VèˆNkÛÕ@ÿ ZG‘_DëЩ¶xà +ÄFéo"·.n .W¯¦M×û%PôÏd¾¡ð™šVˆüÓ4­@ørM‹'繬ÂÙÏ#høÿPÛÒÃམ¿†DOu-…®Àä^ùƒÙo4Hþz£„q'9¢"× 7òÅüzËó,/Õuu‹Ñp½8Ýs'S›D~›?YÚáÁÐU©½›=žê"D^–ËÉœ<2¹ üºÊ\ܧ:®¡Åù‰?]#Bו“ãáç‰k9j.§tè7 +H¾´ëJȯÝfˆ_'¯åm»®|ÜM©ýð°®O<C~žËéþÓ%¤Ÿ¸®„ü hª½©Kåæ¡ç˜XFA3Œö…‹Þ¨öÛÃ^㜋ž;î\e¸þ: ¿¦7õÍö°—¯OwÔ–ÆG€õ±Íõåp=E“P<]c?ä ~Ç‘»ÜÝ[à‰/÷Ïv³ÛÃ0ç¨@•§ÿª7÷ #´”Û;rŸÑó)­d +¨¾ä—›Í®=\Ï©˜(T^²Màíb7ŸÜ\—óíÍx¯Qùçf7ý#câŽaö,–žÂ7vh<Ö7»›Ñôœ»G·*G`2­îrcÎL—ËÜ?û©V?·l¨#D^ná hç·`WÊ"Uªw`ÕþQÃ?¿Ÿázáæ!ïÜ—sŒ*®ƒæf+ $¼ òU¢ã}¹©ÐÝžJâ(®$ž•Ö“é?éx³žNuý…õÍ.W…truw‚ùQ/ô>?ßQl³¡°¾CÍÊM™R£h»)ïݼ³ÛEÑ›!+6P¼ý qó…²I‰ubXp;Ü‚5OÍW‡åPÄàÁ¿løðͰAÐäÍ&^ý–çSau2ÙνŒ ÀæwÞ,w’†Ë9%ÙÔv³gMcvÇm‡©J¿R V¾€ŽÞ¤û ǸY€&B' Ç|†Í–ƒ÷ÜF”éG‚!xQ«PL•v‹õf¼ØÑŒ_V.hÎÚŽÕ=4ûǕԬ“‰f¥‚Eànb‘ÛƒùáxšZ-Yª‡H" "ó +|½°»*%Ÿ†œl! ºåá¶afp\itíùôo°Òb¶ç¥OP¹<ÚØBNÄ•L/§Ó ÍdÚCÁjÒîïx¸”,gi‘&N¿lß4)ŠJ¥ùE¢žÕwxÏ'Ñ5½jœ.-ÜnôvÕ +3Ô9Mq+¨>#µípÌ£äú™[¦“Sú‰ê¬dùŽÖ³yØW°â„x åÝ„j•l'屡Ëqä†xùÞ|ǪÀf8fNB¥0¦å|=½ÙOÿaY¯b£PÖò8a!AÃõ~~˜ûáîv"àŽ¸@µtÊ–KV§e¯‚§òbEŒN¦Yq¸ïV6`{@€ +eKë^Ê +K +#È lU]AdiE¡dÁ”XÂA>ÊØ'pO‡!œõ›Êô/èRŸM´òÅÓ©¸Nà$d`<³õ”k-n€8ܬ‹‚‹¢4·Ç$‚Õ ÌŸù}ª1ªÏOjÊrÛ`$¬$Pa¹Mæ |Ó8lÑ®¿Anj¬‚®°`$ß…Fe#ß¹)6«•›ôp¼€y=¹)­Ù6d/>ã÷’\i´±nDæ×U®|‹š2Õ¦(ÁËLý¡0LeÔnF åÈ•áñy +~ iýì t"_JxýP@­4Xš`¾ÀFÝÏÁ¦“ÚŠ/äVÛý¿pÁJ=¹wJÌ]0›d +”âTp/4³xYp}“*ÅÑtT‡[È7ä,zå7šÇÀi¹â…M¬f–é³<\]™ºPV¹°²2†¾…OŠo ÿ‚»¦ÒFž“”î} •T8Ä›0£IœôR@n¢´^™é:­A¹IÖz‰Ã›œô㿊ê| L%oyœ6¨C?½MÑoù™¶N£EDÂOT$¿À¤cƒwâ)7÷†ã~yšh¾Ç¬*•¢ï=òÌö‚²K_é5átK'N³)BŽñh¼&7ÅŽÉmÆìa ÊCó#=¹ß(h\>͵1Üß³ëY.%,TŽ5ËtæëÉæoJ22A ‘Þ,é/^‡Ñçf9™îdËe6Ûį}ߤRµ@R¡À¹,#©nºÕº¤ûˆÀÌ® ç[Yn.y&ô( žKš§Ý¿7ÍÍ '¤Ã†WðœõºË¤Œ#Š7÷ا…åf4\>O·‡%%“‚w››­àMñ3Ú%É=¼…Ç›Ýd:9^j7¾ÇÍþ”Çì¦ññ7Xø¾7#ïh¾_ ¡†(õÖÓß~­ÞìéæóÓK_5Êm~…â«ánAI‹2}W~ ¦`FU(•wïf÷åen<·÷5ƼŸïYCàŸ–ÖKA‚w¦Õú_ð&°-[N³>¦§ü/C±í΋v˜w¿‘ƒˆj[£}D§WS+;Þ¬Aé=tRÊ@÷q¼¦¤N9‚Ï”[DTž®¡](Ý=JÄûK½ÿ+¡)~\R ù)ÕZƒ…4ËVz´Œ“õÑÊl™Ó:åšà¾B“ƒ<#êå&Sjþµ¨Õöìô˜Ê“›Ñ¿7ÙP‹w«Œl-ä·²þ|m¶Ùý§E£™ŒI ;´s“/¢T4 ¾œw|¥á(©TVضÖY^ÉTT¬.*ä<Š –‚V: ©ñvÉ^eÓ%*ò¼Éô:;4–Û–ò®§_CþÎ=Ü‹NˆÁ¯ª°Ü"ýgëüùå™è5q=ÕÞ9/BeñHŠÉ<‡n¡õ”¢”Ë0L‹w®)Ô·$ÆHç U®ºT¡So¹’_2²P®tÖ!_Ç0ä¸* ØzêþŒ|cªmn¶ãFjª¼yAŠqý ½AjBU69Ðx}OXd7ÙQÌŠÔµ‚Qùáz½Qá/ã•0—©ðdüx±¡ŠXç"¥&ÓVáa§ž é›R.“p‡<¤—Pï.xy»ppÙ®l鎨/gPÌñå-Ré*{Š>^ý«"ÑQeO¾,Ëâ+ÜÀKéKâ–ˆ›\½qrSô[Úm ½Vÿ¦U°†çÛå”<•Z.BöÙ#l]Á•„0œi½áÃönækoM\™K ­jÌYnCx–{T +9Ò2Lèâ³Rè"*JÇùÚtÌbZhºàJ79»@O0,$»Z¬(üVî=!$5,Z“†ÿgº¬OwŸÓñþ¸_Aµ‚~"Î0_”¶ç¾ôœ©F¦TгS(àC Ãr‡hý!ýŽõâqÖW+FoóCËî>Ýø¬š*þÛG ÛupÌ(>'cµä>:ÏWßþ‹Ôz‡YÞZ¨lÿûï? s|d1Ìi3b˜ýÁh°D‚•\í?þh#“»§>˜wðk3î-ÁËøcŒÒÉiõÇ:ƒÏƒÉvÿÇ>Ølèkîc\z€_oÑ×´?r›€_ktáæË8¿ŽÑ×TäÉ¿ìFX÷]*RÿþŸ÷ðkÓ`)ؼ)7øì„…ŒÏËâÑ>¹á۹̜júàWÔÑ`Öûì¡Àžæ3ÓÝüÚ‚_=¹ø~‚?Ñ`šœvè+Kô,\ñÏó™Ïþý¡—Ðv–5qcþ.{Hyý•„ÓŸöyê©æeÉçÒNÐÚÞÏ̱×ì§­hÉ–þ""¦ß`AÄw¥L،̖üU2k~ámâù¿ÿ¬[ó. +=Ì¿BMOï…Ìaž´o¶Š»Øù0Xà_4ÅpòZŸÌä9/ô‚§æ ÉéìzG?‚·ÁÏ`˜¶òü¼˜³e18;µwð¤ôÌ÷6ŒVKú©‘ˆøß½D!Ý{yN=OÖtÎg +Àþؽ_?W6¾¸ÏY7]g!ýúH/bwò§7O –_k ¬3X¯`øëâ'µÚ|òwùR-*Û™ù}1æÊU+Dò'1»r•ücÈo>ŒÿûÏ·x(c®ø~f(´~ˆ¥îä:3ÿšì –ðê-îÍN©D8÷ò™O'cß _ùÓ¯^‰–¤7ÕÛU¬åF¸û*÷LŸ`&¿]iOôé5[š”lKz™\úÓË eû¨Oj7.®E´·‡ñé´\Ù¤læJçÈÏBŠØy\ÉŒm”Šx¼Æì§çÍŸMW«qé”ÒsùZÃÿa&áÁLÀèÆŒ“â7†e;°fw K<ìa?Ì\9œ}#æxìþ`ÎXÔ‰Ö8šWP‚Ù±ö>üfÊÛ7ü¿Pdzt%)ÇW>òÀµY1£µÃLîì#f&]#Ì[×z_ ‚µo‹áÌžX¾bŽ\cƒ9Ë·^ÌõdLcîö yÞrߘwäq`¾¯ù=†¯êOA…§˜ß´7cþC+„­wXÈm`aâ}‡E’U?ÍŠX¬… °ÛñÌvo턱xü¡†%Ú÷_XrM¸°tÌ™Å2¯¦w,gÝ™±|ý'‰-Û7¬TÛš°²çÂ*CË;ö˜p9°º5TžF©9Ö(UX ï¶°öáÛˆu7îöò~?­¼u[alð´|Ã>šA76j?7°IwkÆ>'ñ +6Û ÷ØÂбU¬÷ƒmjÞö3îü`{7Y4b¥áÁhÚ¦«FkÚd5ÚgÝ–Ñ•IàFeù0âÕá­ÑOTW‹1ø{0FmvãmlýfŒÛ†wÆä®÷cÌÌžÆü 0–ú¥¥±òV¬k“jÀø¼|Z[ûvÓØÃA=o©¥ÑøÞÀÞ£hùó¶Dç-PÁÊ´í·õH ´²·µB&ccg6Y‰™É1uLžF¨h"ü½ˆ)hõ»L‘Õ2Ý}Ü~š’Ïß/¦ìãCÍTlàyS¥³¸7Õßž¦æ÷½ÇÔ39l¦~tk4 ëÃiúÕX™¾Éò·ÁbZ?gf&Êšú2k‰O³Íù2»…™¿-›ƒXke޾½ÿ˜ãå-fÎd ›¹èOyÌUW'h~vS÷æŽ7V0¿ùÚuó0fz5VË3óâƒ:˜·û‚ׂÝî ‹µûX±¸¶7 ñ8\[Bû”Ër÷h[ÒøgÃR˜=Í,Õò½ÃÒ{“–žqßµ –‹Ëä{²|¿Ô-ÛÏñÊŠM†«m1y²z­«­56ÞZcuâÕšœ§ì‹µj—­ÕîbmmZÝ÷Ö—§ÂÈ:Äçë×4øj]g;^ëÁãèØ¬TÇcóL}][ Ý÷ÚnŸnßléò&`+Õ[ý-ž°uæö­mp˜UmŸ¡žË¶ª”ÞmûE2øŸ-~Ù½ŸÑ®= Åì÷ß‘½=—¿íÚ«€+Ú›ë†Õþö6Û'ÛŠ}™ÆCö}ºltØÒӱ×qÕáJ%îH (¯£ð“¥uïbâè>d:Ž VvÌãMЊãg :-Ù—Ók}59Cýì3Q ,œE¿yê|²n†ÎÞf:p«ì͹˜÷_ûÍû«Ëáøê»ÈÈæÝu[4Ž\ÙüÓõèÎ.]jwç)‹ë»ñºöÆç°Áâ¶¿›Òn2_ztßy6¯î•Ÿ»kcÊäîõë~÷øÃŸs¯F‹ŽÇ¸n.<KÜå Ç<)Oêñ§ã)/?7žvðÍïùxëT= ïóÌsøzÁ½®ôkղޖÞäl Zñ–ÛöŽ·]¹3{‡åVÑ»|X/}ÆÿÏóü<òE&¦ /s(|µØÞï{i= |`!}?õÁ·ÛSw¸¿eZà‰à0?ìë&¼ý•íà£'_ƒv KÉ^1XâÑá#îŽQâU¢µ “ĈÈlˆu±Þ&-?óIÞÛ\d|“[’åÌ GvÞ Ìí0ùS1ÙüŽlcíþLð£å¯‡Óþ~ÔœôW¾"c§†,ß>ã +Üß…­‡žËè:ÍûÀ´g¦”ßL] ç>í„ÁB&c ¶|5Gpìùƒ?ng8ät¦¡ñQ åÓ¾F¨ùÜx–öeè'Ú³†oP8ê˜ä<+ ÊÝp;N.Â“ÝÆ¦&P¶TkÈ]±¸”3é@ä%~û™—“ßQS-IFÉi¹M[ÛÛèSnvý˜šÁ~ܹcÎyï)Ë1À³…Xo:ÛÆæÍû¬Árk./7·L!›ÍÚ¨Ûf¶_¹tl·û!Þ¹Ãí¦à]2ó=¿«ÏÆ¥»aäÍq÷óùòqïIô2÷qçÄqÿ8œïßÛæòýö!è» å]ü>;êÇËÎRüý¥ +f?¾o­ '³HÄwýDm[©'†yw6±Û£I_­àK¦Â~[²a·`ÉÉj±Maƒþ"å¾ÎS¹Iï+Õùê|¦¾mÃYÚv·øNGŸ«ty‹ïÒƒtÁ”ÞîÆ.ƒ%ã}tú3)²Ï4öû‡Ìç¨ÐΚ»‡I6\{¤²5¯7ÛïÌRÙíGµ‘óYãó\:âtäZoX*7w®zy[ç›ÊßúfÑüãtÑÊj{ª€Å÷… '2(” •Bß2®~\Ž]–3Ål}·(vg¹xqå\~•ÜÍr¼”r8¾K­×q¦ô-ìòñ!>5¹ÍYÿaÖžÆËöÚ+U¾´ËÀÐ~9ßWì‘]¯rÿN¦ –JÖrVfí×廙ÀÚÕø<©6[s²ú¾Å]á¯Ùc*”{}ìM«»·lÍ[ÍßÖ²œ¬½îÚOna«“³¡©^J¼êïûÁþ ëž"ùñ©µ[ –§OWÈñl÷Õñç„ÿ;üÜŽøÏ«ÇÖCÃ7µ¶ßó¨1¨9¶MÌøæjFš‰»f=f¯5¿öŸ£–sÜ6µÒ¯åX륑|jíš·‹vppO´«³xµýiÍ}wéFÀ`餾>[—ˆÅØÙ}ÆsÝP±ÿÝ­¹ì·Ý¯EuÜs}˜Ã½l¿5êõ_ÉÈ 6œ¾Äf•ÄKÓÛ¼¬rŽÊ+ñI9_Ëþ¯Áëd0Š¿9îÇØ[Æ2y{mã}¬ïµ,ýÛÇØ¨ßzjTú›æ2< C¦A {ùÌÃÎÖ»·Õʽ—ìDø}ܹ>Òá#³&ƒ×ýxh.Þ†‰d»3|IÖÃC©þ4º}®×GíI»>Ú9GÏãÈã¾m°Œñ:Þ”KÃIÈýõ=yã»Éªýê˜ðà´~ÿ’ž.3·ÏŸþâÏø³Öé>ŸIÿ—Ÿô—¾j ëûׂÚ`3ÿÓúvV÷­Ú³åb·›Þ·ó§Vìu¾~¬íó;T—¾o®Õ÷ö«t¿ˆZ—“E;› +/¨ïípy—{Š,{bº2vWñUò®±Z ÈüÃÚfÚÖ9ñ¶ûðû;ìÝoŠþÎf6ŠßmI¼fÚÖïÛ {0X~"ñàO§44î0¿wºKzûíÝ»3\ –ÏèÿçÜl2öj¥æÐãv’”:ÂÜÌ6çìqÁáHóõbIí½c>DŸõ –Ö‹›ÊœÚ߈x@âñÚׂƒ …ήY»FGåO`ŸêÙü»L´]H¥xa7üWÂ)Ï×*'"Ð9'«°ìæï55„þ+¾Böpœ}‹‡ä"D.sDÔP¬!²E®4 K·¨)òñ616jb<`Í£<’ªc‡Ôî§ÍÙa5Zç\ü¼ìq??‘ËÍŽ'Ù‘ïWåÕêf½Ïv›ÕT–ä*ô`6 +‰¤¸n9×¢&¤Fö†í* (Ƀ¾‚-ý÷f·HkÄä),\ £\¢û^õ†&F×SGfiǰSB÷T˜ 3=¼Û•$å‚m–ŠˆM6lpÏiÓT;fßbó ¥Æ»Íh¸¯ ÿ²§v] V–©RÌZ¤ƒTë-¢Ò"::Ϻ ÄóšÙ¬'(r¯4ó;ÿœ BŸµ–”òM êœEL0éâ×\ú²Stúy¶„¥Bø<:T½Dºu\¢9ñr¼1 J8¸L•WšRüûvs7_Áa:ÓK׊6ÏN©ý|Íà£y®³9ÁÛülè|÷™ŽAù—ñ´TáÎâÕÆÇ,D£&SjX§Ïâá,ð(0ùø<5Yªs©©±oae&õß¡¢‡—–@žÃÈ Í&}³—néÔoó)w((us~œ‚5Ù= OÃuì®/¤À è¢,ŠAoÑ´Fô-[¬eAgÕ +ÍÁ"ÖÛ ¡ÄhÎÀ4Ý}òf?›Þ0#7 ü{6]ßP4e¸¾N2—†ü95ÙŒ¦7 ~î² +/BÖìQåâÊþÝn¶` ÝÆ9¥jš®îk8_ÃSwACîÐ÷êôÿf¿UŒ§7stD?¼Yÿ…c ·4@ 2eê0žÁî•ÖYSÎWC·¶$:€Þm>ùæçÔÍa½XƒÝæÕͮƻùV=š‰7`#u¦#x„ö´Ò˜9”¢VTbÖÔìÓ\8“š} íV-– 0Ƚ«O›mì‡ë ‡8–/ø‘–ÒnãK,ðF»€"‚òC@,³Ä‰Àñd*ØôÏÇÑ=L,ÀØ—k³9Œù(È<È6³GU!Œç”l=õ¯Oéa>¬üŸ}mÍ#ÊI¾*tÝ­ˆ¿o²)Owëã·Ö€ ÇñàI—uøùÒÝÍË+ Mø·Çž‚[ƒ¨Kï¹õ„»rl¸Â â= DõŽ}f@kDø‹lœ€+ü»í‘÷¹ªWb¶÷ÃOdàî)æçáŸâÅ÷if·‹×…eû{”þ¨>¥!Ü›¼+×É»¾b꥜*†™|3è&}û; +¼ý°Â‹õ ×hî-î0Gpïí2Ÿ…7,U4[ù»\à›x…ÚíH +žþ»^옫ð#Ľ˜§‘hcžˆÇܳï&æI÷phváÐîgø)M8So)4Œx´hþ– ˆÂú¶,i‹³h^„…¼>*R ¦â|-,ñ‰µ—öì–jïÞ–‘2î 4è–ÕF +–®?ùd·ƒ×ˆ5?pÐ +œ¨]?ãLzý•ÈÁ/`V~"P£Ísc­Ôè`ן5½ÿþ8·¸Á"i–ntz©+5Z4-G¾ùFï°WÊÔîÕ%‚VèfŸîmñXæõA®Q×í8p§Ðhpæ4'UùF½.žÇUЊÜXùIÈ~v<Ê5Šç›¬B£!“¥ÞH¥$ÂV˜f?ð‚é¥%ßhÁ“´•FÞ®,yß¾‡!¦ÑºÍ&™Sÿí~9Ak¬°Kr”Ïjo×'a£ŽãYõ¾î«h4°‘6ÚÜå%2+5\ÖŒ{¥F‡»ÕÒVh4?­m!¿l£Tªï7X”ÆZ l^{ùFïŒvʶîäÝ>‹Ãžxíó,‚¥twû,+?«¦ŸÃKX¾Ñ@ïÏ—ïê²#5æWQƒÅxÌ>ÉÏoæŠZ«µiA©Ñ)^x2½ð‚±üØÁ- _» o%R¶Â»Ÿi´ç±K þ,Ït£¹·E^Ôè Ü••RÔ›uµ¸ø Ò‰€\£xeõ9Ul4RÍ F|£`‰šàµe­!ßhÙöRöz7;ÙFUX±Qƒ¥R” +c} àÍRáÐèaߨ^ò¶ñýœoÌ‹¸ÙæôÑ7Sj´„·¶¸|£•¨­mÇr‚yéxÚVűvRö[“R£süÅ}?oô±4ýÆÆN;jÔ`‘޵?2V]Ä–¶…Fßø` +È5j°Pƚ˸uö.Kà׮ب±7púä½Ã°Ý.__ÀF]pI¸RLºŒ‘»1h4ö#åJbÝf]D’FÞëjH{{‘oÔ`cuÔ]±Í>›u5úØôYjóê3h4IIGš{ÜâL£û„KÂ-¸ùÞ4 ÙßÇÄ â ÏåZyب÷˜Z0ÛÔîFó©L½÷y:t£ ¢ìá<6kl>4iáO´*‘:µ_cdf?†âG#mûß¾»Ù;'hô“’w·Ë¹P£P¾ê+ÉsŒŒ–>Y™{üÔ?.yŸºâ÷›¥ä©ˆóÇëÖâÛxînâfŸ6ŽtJ²øÊ>mKÙ;ä–ÏÍwÅçxeò1V~ZÅ–_*Of/O±ãçµÃâ[ùíF;Uy:Ë¥%O…ÛϛšâÛ»½›d…Z¡wÌ[áöé›t›е¿2ÅçxÇ\7«< ½ÙUžgYžbÇÏ_‚¯.å·û {MùéÀèJžŠ(6øLßâ=W~h{†*#-å·ÓÑ@@ùécÜ¿Q~Zû‰ÝªP,fÝnÞ߯¬®L}ú¾“>5Wã öéˆ:¢FâÙ•øùVbA6óÌÙ±Vô4¾uÜmwª®Ö3|N3Ÿ>< ï›Ù‘Iû:YÓô¡‘M¸͈³À§BX˜¶L¾û–Ÿ û ½ª0Ùd,h“o~?r€I4æ?OÆ4˸¯Ü¨1?ô*6Š´I£ÈJbÆ +µÿ…F{ï*Ì!åF¡ö/ÐÇü’¥uŠ¡R£Ï*ä},·%í‚oêâY5çnQ—œ÷>]åü\´÷•JâÎXJGHÕâ¹ôÜx¯²Ä[׆¨Ã»eâÑB7CÚx Æ/õ™ÅÝ9·àOÆãÌpÆú }‚¿= u~@֠ÕÞPt/À§,ôäPËÖšoÕÁW+t~œl´ +Ì4Àõ®±ºuËj$…Þ'Àöð‡ ÅÂÿ‰oí“&£1£zø +ƒn&è""Ç ô).§}³iÖÿ˜8ê8å|}`¯Ybh¶9’BÆs滺á»)&Û©<%×)®K&ÂÝ"ÜðÏ«Ðç"v"’'ì¹2ã!Q!:ú3ìfy»Zn|~óm¹¢8>ƒE0LÕ„F¿QÇüÁýÙÚ4H¾HG•WUbéž?|ú=m3–…Nb©UF-:êt7èYîp±oˆ\Ÿ*œ´²øuÅ…^Y·Þ3)L÷÷OwšÃœMùÏŒ÷Ug0ȯ,È|¬'÷wŠYONÊz¸Ñ˱äéUšž{'" ×e1ë™Ö½VZ);¦]ÚÒ%Ñ®”öçý`¼½êæhgW Ý Göé²<ÛVØ•´?Nfhã™Cc¥\"öTÕ"õ‡ÃŠö·ÜŒŠ•b‚5_([™Ù—a£¹·¬çôI9L™sBÃmCÑ:·Â?ÏŠÓ„Æß´ÆÎ!Œš”NÛ™Es_õñ+™vêÈW–~‰>è­LZ·ëß814\â}—?iß©ìºyà÷¾ü\ú榘ýa¸ :¤YCã»Qq: nB-ô„ +ÑG;9/á‚âÊ’øtßòõkäw(Èý¡±J*Ò7Û¸îµ0ù)a,>ZSMIAK ÓÍz&™þÎÓgIÇ‚I[g^DöêbÉ {~Aç‡3µ'éÞ/ N­J,§Pð*wijT–•I®?:TºRéºT{æö¬Î¾æ ª«t:æãÉ‹¨E}O˜¿¶GR•P‡9¹2 …‡¯Ê`Ñ®Ìwñ ¡ÖÇT†_bÄ5)F^“bþK‰Ä²Àã>6\¿ŠøÄ6Ì©ó½û%ݨsB+ÏÇö L‹ lù]ùUËøKvå>a>ÑPFç±23™îî-Ú´>½Ô±ê6>8Ú½ +ôtO‡ï-nYÅŒå]ºö‹ŽiÒaâI:">}cº"ݺgtäH·<‹&;Ub,@_ÙdDT¹®O±É]2AF\lOžÝ-þšô¶O}íOi@É©ñ]B¦µ’#Ç>”6HŸú1ªwÉ »S—0·|‚º‚†XÖÍú{»õ4{_y|þD»YÕArƒf§¨™†D–ú3d4yÚ×WB‡z×YTø§í§+á \,œ¬á£`“ƒµ¿?É­ˆ¼£ÊÄ +\L,D*t.vÚw(nqW‚x $ÜoŽn‹¶Õ­í]Z=ˆ½gŠ5_‚ß³›U{£á’ÈÊ©/ïÐá’]=ˆõw¿hïët“€¡ì'¹7h+IÚ©X>ݽÖÁ™”¨4Ť³¥k@Ñ¿¢-ñûÀ5&ï¥{@‡»ú}Y>cöU_Ÿ”(øk uTü5Â•Ì «‘ß!Q¦¹w|Ǫô¶,V¥e‰oУLû-—éÚyýQñvéÓ„ÚÅžlr+‚±ÅN„`h±Ë÷˶,–ç¬óDË"Ðŧ<ú½Ñå#¹§6 Fƒ•TèÁbO’v}ìL„t0ƒPÔ)è²å#A§%‡¤º¬È§«ÄñOôoÚûN}×±+0a×¥ç0MYÎ'8Õ{ +‹é  ÀÛŠ¢;dXÙýþBžÜm # +mž¬î‹‡³¦-ò úê’'÷†‰¼|Òµˆ¬I¡|b=@ò.÷8߸¤2ñ áIBTì‡Ç¼vx2"Ò8á¯^õ£×…«Âùóµm¨-n`eNu1(wƧtèSh¬u‘R¨~ºÄRL¬¼CáqÌÑÀoçq´# ÜgœâIø†$¤BdïŸÌÑ@e•ƒŽfÐq‚+«ckJÝÖŽ]á¬)q´“ö>¬ç,Ž&¶_`=Wàh°–+œ½¢zÄMtôòÄŸâ íJ¯1—’j©ZТ£Cy…=­f»âp+ôÝöu`‘|émÕ išœN\q3s¾qlT¦|\ªÈdåÏ^aeºFe6“{{3±~˜ó”öQP“B-,‡Q©G¿j¯X 3û×£nP N޵뺟à^–œ& Ê®å«FãC²PÂÇÀ¯—ê÷Ì"%Œ¾Ë-¾ `$]u&…L+ÊÒP5žBo4mYÀÊFù àœveáIR ÌÚy.­ãÙ¿T¿§kËÂ3¥¬GA¿—«…Óúäê9AªÊÂŽ†?Y·4äd¡GFvQ+W GüGQ"ÿ˜ xJÇø»ÐQWTè—”¼rª|ú–ŽÔ5JÝš.Š šéØz4]PÕBÖ‡®k­B1=ê®ÈT\Éï;]û\íôn¯4êÄp:I—T6i ¬1­í%L#êØHQêbIÆŸ¬(˜2^BQ{R\“³÷G”øÐK‘”:6WïŠÑ¶ 2Õ³ƒEÆ|V:½•åÊu<$#J—?Yád@<“>†óëªLAÅ€ñÊš>¿" º;¥sEÈn.:vô™Ûp"*ayË‚•b-þ|ý g_òíFÒ·OWr»Áý»"‚Î`¹†Žéˆ‚N€ºC§Ž cîT¹C';RA'<C§Ž cЂcèÔt‹ï" KAÇ¡/ÄÐ)4Ê èÑ‚'bèÔtl|ò¥:õr€bWÁЩ#èh/Üå:uݱ«¬ {»ß*½ +1ðÊH ž§pz—Ž<½ Su³Þ$bðÊx)Jb#ŸY{äé•wèòôf¥Òþä©cÎø@ õH3½tÚˆQ6b¬('ãõÁktñ©T¦‡¥{|°uäœîñ½ÉÂDûEw§4ƒûä»$‡|Ôð\©tI 2'BriXË:yMî­$…ÈÈFk¨NQ²øzìt·±ÂÐzF=QjCÓ¡ºt€Ý.>øÏ1wª\ì¦vlÃ[IZ`7_óÀå–€0z f¬Jjå +ãÆuT&Ár{©†y9›ü žœ—B—´^ÅØža^dªb:"¸¤Km{@,¥³l¤É»ÎÔ‡Ÿ#7É""ü +•‰O¬À¨ºÊNNE˜`^DÐ4-µK?ŽOsuâ„Ciâ_àÒµëè”8Öñ4h¡Ø¿ˆš;ÅO¾ùz0ecàõúV R¦ÒüéÂñiab4+cïA¸xeIN>d)§T&U>Å$ÖË(¦rrò EídŠI¿ûø;“î¤LHªéÓe÷ñƒ¶ÝêJ~KM¼œ¤ +™ +¤7‰È ë]ýÑØÝéîY¯#¾uöhwõ{òªXñ8Fñô*4¯F¡ç™óŽêƒÊ:CqJ'.Viä·„¸ií}'‡R&‡Š'^ö9áÙ«"9Ô48 õ+OèÛNôé‘2§ß%-T,Kr•\:ѽ£`*Á»:µrb®£ˆˆÊ)KóSõ±þÞ"µê8Ü”ÕÇJ'ºw”av.›8‚è\:e÷rîÉ0è{ê‘9êwÿ„³ä‘QéÒÑfV—b*t:É#£^:Õ##ê’ôî¿9ºð‰ý¿×ñÈøÍ1£ñâ(µÕƒ^ s‹<‡([/öÈ0ö>a»µ¥è‘ÅZkÂДºïSz¸†GÂÐŽ=22ˆTm|ÞÉ™#??$LPa´Á9ü†ÓXɺÂ÷±ú^ŠCM´,˜Øâ;Ž¦Ñ£,mΤw1(ë0åÓ: ++b[†ù*N04»VL¯Úìœ|‰=a¸ÌÍa'ÃÇdCÑ‚Z¸ºs‚f%ªWwB¼žÒ af­„Öt‚Bê„õî^V·T Õ³+¯ÝÆI‚¶¢˜t=<œ†ŸÿJx¸Óî;'‚n\=r„‡;3BõD<œb\ßUñp×@ jãá ²ñ^ׯÃqö¾wm<œÈÃ!⮇S½%àjx8ƒ$¤O5Ôò<<œÔS8ÖÉÝX|.^ìZš„žÇDÊé–zb"[ºb"5÷~{s1¼2!—ÎHHÍzøk-Î>á¥ë¹Æ‚ê¹à`•ï¢(׎x†à:e‡˜<œ@|^)݆½íñ6¿ioCÉ&”õödä¢NµÊ øˆÝ„,·<¶u\+#åcŠÛ°}Ò6TÐÆ!½/߆@†»åtúoFõèØ†ZÖ+]Ï5€n~ž}× ªGËst›–b˜5¬LùØUÓJÞÖh“¹B¼*êLAÍdf¹ÂDFeäÂɈT¨ Dª‘J›.€ÚSóåˆÔΕ©« R;WB¤v®„Híè¿úØ¥%ëË_- +X85ÈȆBiŒ•`‚_[êLß!° +'ÃÇ~N€~’‹è¹îh^~ î<¿å©P8½våeP8Ö?Æá~ NâUÐFšž…“ñé +»Ë]"¬v#¼¶DÎx/»^¬¨+]¨†ª»•<Š:¢!zM|‘á:LÆ«Û=©È<4:<ð×ðhÞÎ ñ‡ +"nE¸Y‚«Ó¹"ÞQñÀï_˜5Nv93s@g ÿÂ<ë§wÌÝä0OÊ?À<ÑÌ‚žŸz07:Lþ$1רû€¹³Ïø&ÕŒš¹ µJºÌ|Àva&ÎãJL.΀‘ŒEåqgwF«ØÍë®Q£®;òëItú&Fc™ZÛ嫨íE ìö­Ž°û|lȕ΅L<¼•¨a±Ò ‘Nv3ͦAÑ~¹ +šNNñ?ùxú1¶L¤ý…h:9,ÝÑýc£éäªÒ­Mw†D>M§xözU4Ü>æìý«¡éä°t:b{NDÓÉùÚ鮉¦“™ÝÍÇ®‰¦“Snøû”®…¦“ÃÒÉÝ6šNÜ%“Цt šNN9=òô^Œ¦“›?I4ÔÐtª´r +Ÿ¦“« +Ý©rU4>Š]ЦVņI]ƒbšŠ¡:ÅÎBÓÉ£(d.ì¬SÑtrX:ƒfÆSÑtGÔ»„Árm4Kæ´D )] M§j½^ M§r2rE4º|¹šNŽ´6~M4*’ëjh:9-R6_ðbìS#/oòùÅN¹ºI9‹×“£»07‡N æfß¡¨]\–¯NÜ%‹–æÌ|uòÚ…N:ÙN§O%>ò»¤­Xè\3ù^Õ:%è’nV`×Ì.§™êU_—ÀìkâéõÒIy3Ër5:Uo'³Ì­˜Ã|Üï¥Ui…YkzæÓJtwqš;æž+*ù¹iîä³Ëé:>!Í,’Kî”;Áâ“ʼnîΛæN3ËŒš—Jwš;u"“èN‹0šA(p¿h&º»8ÍÊþsb° íÊR¯Á9÷\ÍÔ¢Åôâ,ü‰VXøUGˆRY¢rŸ…åCsœäE•=å)ë=T[ŸÛ2o<+yàu&¨ÓÉdUnÕ€:=XM|áûî´©J +4ª`¸•¬7ÃÖðÝv„'¾k,éÝPJç=¨¶ïôF§×WW‹†U]/ª¾Ò+íTÖ¤·²{ýä£ÃnÐàO:ëqj;Îz.:˜a"»`=J67ÙRXGd¬L°ÍÇTµŽcÉ×m^ñV@PÙµwi?¿r µ¼ìR$åÄJútÍ‹ÐT‹¡–¹Œ"ñb*q}§ÄP·7§«î²™òdG­W“WEèÓ-õ 6©…Fž.]{ÿèÞ㳑—«¨µ¨ÎSê¹Â-¨ž‹³U£Z„›PzÃái±ª0šW´¿Ï8áµÉDV@$^F€z=ð×Èp}j9áէg¸SD>¾]œ¢KáîâLyºðD:2å]!ÃJ»uT2Ü pI:ð!çf¸SÌ÷úv|ª¯#ÃÎ[Í!úéYGºhM@–HÍ‘±^õk;zÕƒE§s °Vˆ|¼°–0z䀵â³$}õœéÍy­Q=×Àsz$NJ¶˜f=*ÇÇ &´ÆaL0]Þ©øv¹ƒh›QGÛüv ¿÷íUñb)ŒI ’³ËZ¢ŒÓ cây’ÙŽæEÑp•]%‹±_ô˜´)º–] f²­'6b,ç‡ÀLI{"ˆ t‰Pñ*œqMw{)†fhÝÚ¤Ï>Q*Œ °.†DoFºSÓ="RÊëc`˜ u³H÷ÕT(fCGQÆ5ÝÝ+WušÓ;=Ý£R,„z^žîæ£ãDžêYã +º¤šîQˆzV¼Ý Ãk+”L{ŒêaJ˜³|K ˆ„õ50÷;ÔÆ1g3‚Ÿë º¯üÄ}ÝE˜<÷›…°{¬wIœ‡Í®Œ‡‹Ô}¸Øw!Ntg3o¶B}S”‡Í>2?/”ÒÜI3ÎÑþd°5PÆþáùt¨¦ÐhÈd^ûoß•@xƒEûWÀ‚Ê +»ר„gú ÞxhBr ÜWÁþ=%…yÅÐ4×í²¥ Πg²ãÜ*Áðd±,y¿pÅFñ|¿(€BY)Nt·ðµGJÕÒÜá1ÅF –õõ`RkÈ„½™B-¥<‚nµ‘–¬âÈ.0«pkzPÐ'„y˜Hf_¾\Í4U/Çf04Öî15îï ‹@LÂ1)ìÆïºíHt +"î2j~âÚ³Œ´S ›¬[WüiŸÅLì==;Ë×VÎŤê!Q†$%õ†´Ñ]Rº¬nÕŒrׇ¶ Ÿ.ÌÌR·j„—ôuœ©ºlšŽ©ÛbuÛI!hj@9éÍ“ç£Ò\ê]âÿ´×Ó­ûâñ!¯5„¸§¥Ú%¯Ö~Ñ<)J tIþ¦#u?ñ‰]ªÞ³fÔZò±±vÕs¯%‡×r>æór¦ôÜÊÀhÝ>ØÜÕ.oäù«}áŽsëžÇ¨>4=§<¹‹o¢EX÷Vѳu +ØMÙnÖ}¯uîÏ2; +Q€—^ É¢/¦iµÀÊ”£´ôøÇ$¨Ùã»âò§ç;Pà0CcWñRž“läy/èêè_ Çyäþ •ieÑ9BתUÖSÎà}:Å´°<' òèäòŠiåÓ9‰bÓ½ReGpa%í¶r> +P/P×=$ +UèϨ§d½êCêÅÎȰ%3@ö†ÃóP€z1€è”çl ^  á" ^ ©r. +P/P€±:¨ˆlä³Q€2]’… ±ç•tŽGu¤|:3²]˜”E¤þÚ¤|b¯Â¯Jʧ–‘ízIù4øØ•’òŽÎèER>‘Ö÷Ë’òÉçG¾vR>íü•$åzP§ÄÚ³Hw¦û£ VÏêwÙÝP|^¿KbáôçõÓ¼ê*yýØ¡Égõ;)ÚV%¯Ÿþ8¥Kòú‰æü +wCÉçõS÷ +[âçåõ;š!QV¿£»¡ÎÌ맺’M‚LßåõS AÚøòú©gõSõ)×O=žÉ ß¡«š×O}h‚•|Q^?u'çÎ=1ˆb^?õI#TÏÍë§žÕï\|¥4¯ŸzÄÙÑ]Ðbê\rqöV¬[^#¯ŸzV¿ë Ò©Htß@¥‘×OÝÔ=Š‚>3¯ŸzV¿ òñ]Žy?9¯Ÿr-Pä]%ŸæŠáJyýÔïBDê%yýŽP¸¢¬~¬-vi^?á6<ÎêwtÉ™yýÔ" WÊë§žÕO´+/Èë§pÍ R/ÎëWÍê'¸çꢼ~ê]ÊXÑÓòú)Ì)“Õï +ùøtœëËÇwé-l>¾‹qSµ¬~' 9¦Gyý4pêѶçäõS Íš—Ìmógåõ““áüíÊ—¢ÒôÅgì—‹òú©Ÿ7óQ—åõã©-gFŸ“ïô …||—nCIV¿Ëòñéµ¥Õno8ÎëwZ*>‡¹J^?î Ù¬~è.‚+äõs©fõ; •¦qý…¢š#³ÆÎÊë§Ô¯Àå·6 òú]âëÓŸ×O½$+¯×OÝ´>)ßÙ(\·<Îëw^œÕiEñr^^?)æIœÕOö–³3òú©†w¹•¼p§æõStF§_’×O2/’¬~Ê÷–×ï<¿å©yýôÚ•—åõã0‰²Yý΋<Î맸"1ð—çõSW »J^?m‰|¼~ü U£:/Ìë§h„óRì +yýôPìò¼~ìLÊgõS@×*ìOå¼~êÂAÅyb^?uá8Œøbº•>õ¥Œê¦7®Ì%¦ÂÙøpà¼cW +_Õ\»÷bØb^âÒBkŒ?½ù°,EÛ*m\ 1͘"8„‰ëžžKbߊKăY¹Nºƒ_[¦Ðû4³ÛÝ“éx«ß³c–u8€ÙbxsnOkT]·ËXÚ¿ß%]­ò̆ç·~<Í%ñ|¿_Ä îÃ3^ §_ñÊëËŒ¥ê¤¼xãÖÄï‰4ÞúMð¶m=ÃÛâooÌx'1ÊâýÚ¢Œ÷÷Þ.þ^ò¬ñç³ÿ¸8v»GmG¥ú¡µ±–v‡Øþ•2mÓŸ^%r`°o˜ókS‡lXµ•¶aûÐ6­›Ú/͸y½óå­dàýÑöшEŒÍ‡±ÇÕÌ×mñ§»iÈÅAmÅé[ήX¿Á”¸òöæÁvó¾ÏR›WŸ‘²/ëéâKóes-O¢0ŸdÀÑsÝÝyb²ÄBÄõâUûÄñ©Õu;€·ñDÏ7;y¼`ÚÔwT¤3AHRÚtÝû<(¥‘Æ$ærß¾õ¶¹…¿™Žn6¦w ¿}â÷[Á•K´:Áø[+Qᙌ œýüfÆìÂ,™0¦»ÚébvÏÐ!¶ðÏ-LªYÇ<>ë’-³m¾ÁDšQØ=AJuZ›™î“4W©Õ¦B¥ÊÎÀ•u[y{±T‚¶˜yõ–w¼–Ážî¡Îa†Ü&m9Ńoüêc˜p°hã>Ùa¿%ôÁ¤:E'úòÚ ¿ºÑWš'{á^îEŸ+×îaÞü‰ö6™}î‹ìùY…].;øŽîè~˜¼­`;øÀ%|PqÑÄaÊá£Axʽ÷×’æ+ŶW#x –û +÷Nþ7™!n™Â… Ð`†æÌ=û¨ä…ðH' Ý› Ë8è÷:ä|—Ó¼„¼lf|óàs†pãk?0¥‡I¿Õ*2¦â}/ Pa±yŬ¤ãõ.G¸·ç¼}óѰ@f¯òg|¤Q%M¸™,ÐRJ.êñ®ì›÷žÓ€v™¾‹»‹€p¦'Yž…ñ>O|º(A_ßÜ]I Û^¶Þ¯ÝòŠ“Ì&=YòÃß|ô›c–jÙŸzÿ^Ò2Òa´F ýX,wEv¦›5ä€;:߇ŸdŽÓølY®µÈBçoOò3f nò +ýf̤Œàµç=,Ü]iBWà@0YË1«{ž“Táʘ´ˆì)Òíùyb¡ßŒÆx¢€O,ë,0©6NáÎf°1òƃŠãScÐ'©¢Û­§¸*æv‘‰õîGê0ËÛß÷"‰e²ñ â9{¢Ï›À©Uq_mj R¢^Ù^l!?”±PΈÊùœ|9x¥V½OiEÊÇŽ^°Æ—¯1ߥ} ._cŽËטSGªxkLe‰«C7)•×~áløÛÕ`Q¤„j§q>$ŤUx.œ ŸW²¤˜›ÁNXT¾3¶$‹™¿t„ÜÎ;aä™}àõdŸ_{÷ÕŒ‹®búE} •e€P"«Q‚t_ÒÄ-ÉKéU_:¸%©G¹Q“C$.Ò“ÏÙâ$!þJŠ¿ú%³ODσnñW1‰‚⦂>ñW\ü•ì— ¸+’U ðøÄš¤p_ðÞ-<}Š?ÏóÍDì%·x_RÅÐc13üzø¦ý0A2ýÒJ0n”`ÆK»ØÄn7Qe•¯»;wá3š V]‚ƒ®ãs1nAã ëÛ²¬—óñlc>Æ3üqó§x`÷;¡—føQòÒpÙK¡ +M;í`ÝdºçÊ ,°ø~ƒ<ð.ÞÓ-ð"§ž2¯Ùr kï¾y?Ê&\f6aŸ¼VÊI‰àËHuóa_ц2íèAÜe’} ½·ªÈ/ÝÁ¡cÉJZfÌÌìƒÙðÚØ¦xÕ["Ÿ/çÊø?­Übhqĺõ'šûZèijŽ3´yñ™•ŒµáÇaâž9ç†(i¸P¿źœ¡ÝÜaŽàäǦpÔÊmú¹]EnNôˆ-ö0À)ådK¦Ào›{´ˆñO¢’ô§£¦'öŒE¿î‚rÌÍ`|Iè“4pÛ_½?°‹/» /ùD”à¼íôé±Û6ƒ:Sû‡]ûh•=hž¹èASÑá›г$ŠI[†t¬îà !}'™»·™ ‘î¢ Œçƒ‘t$’$„ʇXÜý%ñðAÿI朡ƒ…ü ¼LPß¼Þ*áÝI¸3ƒ{ÒáÙ2wávï˱{Ò&ßK¶2º²ÛoÅyb4Xå ß2HˆZœ'ý!&>?ºË³¾gI}X7¾Ûy¾B߀Âú݃øÄþÜ£ÒSja#ænСXwѧ},ßÒí8]émAW&:Á>P<þ˜Ž1Ç|Aa¶ms¿¾,˜ã®ºf\PÜMÃJ¬BÀ(è…Œ›>›ƒGôšNw_w‚má ô™…n†t&;2Xt0$ü£ë®„¿i±#:<& ØÑhàŸòèaH¤Sä+Ú¸A:‘„®@ø†ð^g†[rgÝä¼äwelò’è1çFböA”l·tÂ?m?)ôôr>Zzrº Ïñ&nGd™”,÷r–Sð´ÚÁ/l4xrÍoqæÚ[–gnÚ÷/f’æ‡" ˆ‹²A(5:U2Ð'HÌ <‹Ëvžg 8ö·­—o¾·‰Št‹ðLZ¾ýiëKîã.ÚÇhïCz±Ø‘ŽPŒk°z±˜ý@‡&tn.:8ͧ¦£û[xút‹—cD„çSlŒ¢&§B‹2óqæœjÐMòO +ôÙ Xñ^ !!‚XáJb’;Ì0gœßÓ6+D .v² y·Ÿ·çH„ „GŒ,w2XÔ—ÐS(ôyAþ´Âìž&üô…Ùˉ"Ÿ:¾}îNU_©ó)µV®§8,"Nå|QáTîœh‚ ôŒ0Ð.²C,´t ‹ +NÿÓ¯Î}ú×HFî N7èÀ–á{ˆ›œ´`íÄG$o™×XÅËÑ)ˆ@y¥Ïé[¯y>†F]ï¡ý‰Î÷ÅÚUŽfè WéOæ ÿ¯ý"QZ€ºô(nå 5¥´Wüzåá™±duÃ[ÁêVÒaèÄNÌ*zâžiöÇJð%r*¢˜¼%Ó|pªaŠt¼+ò*Ô‹Éœ*ÔªP; }EÚE„D|Œ‰5ßÛ{ZQj7¯øSýGˆ€Ix sD.2 ¨'÷XêÞóD€*Ê@=ûÊÊ)V'«Uê¡XWL`G0àð=šaªóÒBg(ðJYŸo^TÉ÷qÞKk«º5*‘z|Iv™Ip9L6Â86.è0ìÍ:x.v5ÃN‘;ÑqW1ì>&ŠÜ‰Eq^ŰS4ë mÃΡװ;6ë¼›Ï÷uvŠfÐâ»Ø°S4ëÀ®¼ža'kÖ=_ °’‹^ÿ£‚a·ØCu ‡×&Eu«KÀ¬«³®–#Å|©K€óŸfØ9Ci¢ŽÖ`FÓ€^u PŒŽH;V—ø9¿˜ÿ@Ÿ’Rã?É1à?Ýרc“­ªóÎ ÷KKì~ùeŽ%¤5öËô#^;b¼£€Nö¢ÀŽç( +ç×- À‡÷³qÌ5f’yp†º±µñîÂu¼ÑH7Zw°§þø*ÚêýSÈ™s9ÐÃÐ.FŒ›Ã4h•äxK²—…ŠŒ´Ü¯û­»ºŒ"ó&'&ðÏ 'ûèë|ôœ< Ëû­¹" êcº-ñx2AGZ‰¼¬«MáqÅûíWˆ‘“çi°óà`ö}.^. ‹/ìIDÖ­Ö#| v‡ÎnxäË` ÍûÝ–+¼ODÜûm üê[Ù'^Ü9È…õüð, Š ¸*Q,#‚Tbè£H›.ßÓ0oºðlFG+´A"ŽU%³‰á-øÔô²íZñ™¨;WëvÇÅbohÇšmÛ²ÂPÙ&fΆw˜ÍncÖòA#†í—Ùæ>eeâùƒçµ¤ã¥1²dÔÅÁŠ „DapŒcM]5’(Fâ›'¹ð ³U#¸S=Þp%ÿÕH¢¡Óêë«FňõÂÁÛ|˜˜Þî‚AMÐD§R‹6¯Ø¸œq:b¬_xúÿH0Ñé‰gøõIX÷èËÆŸ•Èf&Òœ¾¥™¶KÆž{xÊþäC\‚'JÐ|bª?µPµ~xìE =`KA©ÒôA.‰ä-ï´1XÒKï—3UVÊ Î-‰Þ–Ü÷†fÊ_£\}¼Ÿ_gO•{®Ætp_7O ý—ÈWªq0Ïs/“: iÜRù û‡AÒ`a&¾7ðsŸ€`èÙDxÌNX‡±³OYÐñ±˜5h¢úÐì,d£ƒ8ÿ~òÓ·i¡ÏºŠÜí +Â_˜—ƒSòÂÁÞ^pî“`µAcoÎöæÅ/|]˜¹]¹ø²cy eɲaɹ£ŽAòo›µNy¸£a€wß+D?ù­Ž$küéu fÚ'¸O¤°\õ+ Èôæ)ÿÑîe²®ˆ#ŸÏUÛ1´ + !nÂíýóСÁµ4¨•Ë 4:4ÌÝ—@hthàX.„ÐèÐ@/Ü…šÀæÿÂÑqƒþøžËé®¶›Í×7níÁ—*Dk=ÙäwÓisúÏ>»VÓõþ&vãK52¥R$˜Ž7“)(Žœèüjð0Ê£|ùeÔ:’gÙÏhaQ4=ß³Ÿx/.=¶m›?Pw&ÄnY`úÙWÌM昽H¹á×õMëß²¨dÈ9MÙé.}ȹª•Ž„c"ã úÑ,$×IOŸ“>êëÎWL½”³/ùv#éÛãtj v²º­òÁ4:,Ú[1ÇÝc"ÓÚ”7 ‰G|˜Û‘L2xµ'ã#ß#|€ˆß æ®v‹˜óÇ´ø2h=ÝJºèÅ!ÀªæßßÙ%Vß }Ä98²kÀãˆö…™†’âv¯}ElæÓ÷ÔÉl;„îå·ú³Ãí[ôp`ßJ€©â³Û³>¦Îo!S²“øH¶µ;J_F5ÅK>þÁ%8_ô´òkq¾åKgýBœ/Bå,¿ç+¸Jäâ|…ŠÛ¯Ãù"”/¼ó—â|‘*ËÀ=Ρ|ûå×à|‘¾g°übœ/Bù«~)Îm8îøôWá|Ñ´ÓW#üBœ¯€ýBœ/RRèCÚ_ˆóeÝÛª8_Ix’Ä‘F;òy±Œ•97r€Æ' ‹ïð1‘ãHYЉÄövŠ«¢~„‰ 8 Þ@1µ’…‡»Ý‡¾ÃK2a–´9ËV1¶ +õTAÚ'¨€Èw „à(8Íl{ÚY]]ûæñV)p¡ÅÑ:gkÿ°¿õv¾ymíâ|´äxº3c8ÞhX!ÆàoWÏ<âPoˆX ¶CÁÛÌ•2"¨áuqP;ƒEŠ8²Òq:ØNpÖz)¼z/" „$@P†/B€Þˆ®©‹/"[–I¿€(´!BÀÇöfÁ“h +=" ˜piW"¶X³DpZÄDÐÀÙi’à~.]ÓBž*¯:ï†&îi°ò KèsHp›'¡6!Ÿv¢ +G×j<ª‚0ºôöJU³»/FÆëá·(?q­˜ï$ðñ®tG÷ÎKÖ4áÎX\’ +N„áÂ=ZÃÞ=òø_—­sUl3¸ì0t’’ð˜Kª€2Ši¶‚‰–ýJÒ?¦dþ›àKƒ¨á:¾Û.\cômÿ—¬±JÀËW ¸ÆT«$ñKטmf¿lák‡ÂÓ]EÅåÖ\  +Ð Äklö^2Àž¿÷ÉUÖ˜Þ* +£öv•¯€q C…O7ï“ïÃÀ+OJØtݦælSsÇ«õg»l6 V«NJ$_Ô†QôäOÛG}U¨_°7ЉgR£»¸Häb`ïmÝ ª ,—ɀїËÅJdÕ^¨ôaK(/*IàEa/Ææ°ç¢1öÜ{yR +¸¥†$VÊÈnqÅ>sËq¢”~-֒¯O­ë$ìH£äƒP_#lÈ&\ïÝìaX¨dúè*Dæ0?É;žÞ€ 9¡è3¯“1åŽ0 –kbÊar×n‰1· âëîðô¨*ÜÉbÙ-|Ð"¸sŲWtäxö§À¸æß +ÃŒ;‹t0vsÅÈÝ}ø(¼û°LîìÑ#ºÖð1xôÈ^=âô¹#à Pµ}$éºÁ&åê~rÑEÀ¦KéÉÃf:š üæeN/CZ·|ÂÑ)p=ÁjŸ˜jÇ/¯ãgëå]œË’v@$ +G˜¦Wý0Œ‡áŠÃŽ.æŽÃš¾Ó×ÄéŽjÄåÂjBñVà1îOìGA0½WÞöÁÏ0üó0YpG—ná™fñê‘/sœùR¢=)0Ĺ–3»l‘̧Ã뀎É9†ïÌ'ò :Ý:0p†>¿|IÂ_¼A¾/+ô‰6ù~xfêþpt¹ÕöB +.o'ß܃w>;壃eÔÏ‹{Ÿ=-¶r¤§Å~Ë¡Äyœú>æ4Áo%[ú|Âzûd>e‡Ü‘kßOók{•’ö¦–iöóÙ¥qœzn¾Ùr#O²]Uw—°^Ûý6v%oƒæj½Èu;ï³2z#U×Ì‹µ©“¦¢í¾á¤Ãj ?ñ)è–À>ÕÉ Y_PÞÑ5¨vÚ5lVtM*kªÌz^](:ˆs+zþ¿ö¾u7²ãHó ø,ØÆè(ï v¹m5˱=’=Ö`±hPlZ¢Íf lJ¶þì³ï÷Ež*Ve»ªÕôJH¶åâ9q2##"ã’)irb›’?Ûmÿt= +‘õÁtÙü±Û.ÃK¸õºÉ¢–_¦Ü é”–1‡òü—?pùóÿ5V¶j4„JëjÞ¼×9”ý×ÿù3øGþ—¡Ç8¥†™Ø&ͽ¿—ÒKÝÅ^ÖeÇ+±*²ÍòÐöÃ^˶Îþëÿû/gÿ|öw+ŸÿòöÅþNåÙ{ïáɧW÷_E€üüçW_\ßž_|{uwæ7ã?ÿá¿kßøÐ6!gü‘ùôüó³ŸìÆÿts~{æ6ýòì½ç|twÿ‹ëËûëW·wßn>ä£Ïþýüÿbóáf|ðüóæ'@É=4^ý”{¤Ïý惟¿zuÃ7Ÿþê›_þí«Ww÷›ÑÇ^¿¾þüæjóûW›gŸ~z~ÃNôð¿ÏþŠ‘}ô~ýöÌmÜ:<þç³ <øäÌ-5õ|*øÿÔ †»”Ú}O¡ú\RjIž8¼+)äÖséxÒO¹úî²ÅûµéÏØçîoñÇ¿áÇŸñè¯ï6ÿ¾ùßÿÇm^¯OÎRïKÿÄPrÙ¼ŸÛ¼ÄKùq.øžk0óáúÉç0dúû'×~øÉÕåýÅí7W?Ý|ð‡Ûkî\zw}ûÅF^Ÿ_sõé—_]}øá¯/n_Ü\ÝýæâåÕ ðÜžBçƒO®.n6‡Ý|øá¯_Ü9Z º6Я¯®¿øò~@5ÐwÛp)1>òÉ3ÈöÕÝg㛟||ûÍÅÍõ {T{_}òêëÛxñûo9FÿN_»¾þ8þ×[öòìÕÝíÕÝAÑm€~rñâúë×»áœìÞ«·ê(¾‘ßöë}4ßåÛð6C ï4Ä0)º¹«›W—ùëõëub>||{¯ >¾½¾¿¾¸ù¯/^Ü]ÜÞ¿û†µ©&þï.î.^¾¶ßªÚ«³¯ÇÿýLþ +wi>µZ³w®:øŒÐ™Ùõ^}µÏÙì–U›‹K!´^#5­j·ÄÐ ±áI1‡ž¼¯%Uý·$W[Š>ÖSwOvïsk!=èá0ô°‡öÐðh=K!.ñ៴y?¶éÉ˳Z–²÷7€ÎÏJXœsF2¸c7€`:ßÕËC:°k~<̇=lžñ±OªyÚ€ö¹¹äÒFwíýÔ ‚yfCÁÜÄJ5 ™`ñH%Ëd ½š8_ŸÏäÒÝ+2ŸÀÓgg¯)+­lÚþoÕ‹ÝÅ: mÏC‰Ï^œ•ÍO~ºùì[_h)!å^S럃|íÉ䆯´7 +i—Aß”C¨ÿóÄKÖóóñ,à§kÙ•Lê\šyä±ÑÊŸl2¹#ÔÝWN_kUE°ˆ‚j¾Eüðôî ¾ŽDp>@ ñIªxVMgE/¿Ri%7He(ÔKñð><õæbÇ'€å“‡¿BM™šJ“Ÿj¥ï——À¯CmµøžA×Ó’!ÿ=€NµV¨µD}P€o   «‹ç´rOR´@j\›i=5ÌÆÍå™ +.-•OJ êzÓª[ðG¯ÝõAb&/˜Ÿ¡Ã± ›–ê’ÄÜ[m@ ¹ 6pŸéUgÌÆܘþ-Ô}P«‚ZŠÁ•ºÑ ø—`!S„´@’âTËç`vÔV Ò½OT³pæ} ¡´x*ÐÜ 4£­AÔàÁî¥âï!ô­Ç+"ŽŠV"F>,=F\w`HĘØ\Ä%®fÈÆÓjøÐ%Öâb{`i„õà™²=¦„£h@³ˆAcÀ8³]8°ۆ Ú2þì4mûÕÅ=œèÛ×ï_¿¸ºxý>ÔâÅýõ7×÷ß¾ïÒßK÷^ßÞ¾úæâþêQõné^SïžÞ×;štùV‘ Ž –·ù@ÿ(Rá@=y(yÙÁ×êkxGkVDk<ün(¿ëÏ¢)©ÜzYj¡‰˜Vǀ쉃lCý8¸f/- ($Ï ÍÛB†ŒáAGè]]-Ez5‚ ]ÝCêðáø`RÀÿÀs¥ƒ¨A.ÏjN °~g¸[íÀqq2òJ—´ZØhyTèJ¡sÏ·q2Ö›j«âJ* ‰5ª]iê¨v46Çyuyö9¸û ±MTG˜þÍuÑ + ”s¦Î‚¸¬ök‚€uu¤d'·yè„ %÷ˆÀñKs$¢èyõ,³¯ ôh§óÐàÂtÁXA-%!@ôK†ˆ#”éf¢|[…ǾxRÛGX¬Véô¸ÙRíqÉ jz48Z]ò%ÒÂ9(0Í/5Pù{4-Îs_`¼§?‘B5a\¤9>ZU鋺jµ" +‚ú̧Á®UPª?{Zk%H(~ûêx!­C–ö©Ò£† 'P Kt p›ÂpúÁ"+¥ˆ¬S©€á!ߘ¶ïGèˆ A•Soù•‘qwÀ5äš÷Ò2ô!”n¶€ˆ³){ÇÄŠaùÞ’‰…#ÆçR “à'hiD+ß Ò!&~ã`ÛŒIk˜'ëã¹É˳ñ¯ë2 O¸ §ic:±‹ +˜P…a e1ãFƒÀ¡^À;84ˆ¬4}c´“y”È` Ž–ãô§ÛÌ'tC ò_'â¡Á=JÍ’áASÂuœúp‰ëP:õå¥ J?¦j¡WÛ }2tW+FCƒ1‰2¢}†T«X8ßP1PopûàÛ2زDóÜuÕÒèïh['u¨Af|c4#æÏh îA ¨V„) f'‡ƒt dÝQ øŒ}§%Dh+AÜ | -(ó! +²€ Yaü—Ñ×¹ÂwRë‡V9Á_~}wqõÅ·Ï¿º¹øöï¸rÐÏ©‹ræ‚Üƒßø‹7¤ˆ<é’˜x墜bc( ¿‚æZvSˆÃ|tÎV…I&tݸLjÈ1Žƒ'ñM ï + Óèp 2Xã¤\ •`ÖñÚºuºKÐ'~h%!°»ÉÑk»ä´ Â|¸"p(dƒ-yøìðQÍWöáÂtÁƒÇ‘ØS$ˆƒæí\óíÑÊ &°Y¾÷±ì ƒ†!à Ì%é +cÈÔZž{¾taã:7 U ˜íQ"˜ £Pf\ +-/s?s5*%b™ºÐk™ªb,Ÿg¨rÀ„íÒ'£Nx¨¹Ê{_ î°ŽÁ8»BËtÕ8eI ú…,ÄDˆA—Xµ] ƒ}äú7&Ÿ=ÒT*¬hÄWºûCM÷ÕÁèàø6š7vÑð€a¾¦ƒ\„EcL%7›Ö6øZ™CL£Å³F…¸ÀÑà!f‹ó-7.{Aùz`h PƒeÍ´dÈa£ÀÅ%„F ›%ÌÔù@#ËòÂEiU.xtè-)Ž‘6• ´ûy ßsJ˜º‚qµ-¶Lê€W4 L +ö*×Fs[Ï` ìVŠ`iÞ1sk›ïC$a­s†só㎡ˆF0`Î/†Íè?£gâ¸ÏÏŠ©.s^ƒ‰„Q¶È0}ËOøa l%H$ÄnràþÝ–ŸM¸Îud?:4âmÜc(×~*ÅV–PœûŽ£$óÒ‚1Yäq\þ£\uéž]9Ì~Dܤ…8îuѼ§At•”ýGáŠBÿý¸[Æ•H`‚öòæV Gá-Àv-0ö±§hMkæ¡<4OQ®ûU~‘·O­) +¹]¸ 7™kªjŠÊàk¬\0.ܽ‹\;œ¢Ôu…+ïh¾|²¦(}Ì Ù€ÃOoÉš£›Ñ'æŠ6£1G¹äMŸÎ»P˜xaÌQºú™Ë¤ðÜÐ;zŽÂÁY.ÜåÚŽž£•Ž)9 È[sô8«ÈÑaºßqç‹ÎA@ØNß'p$É-Sð¾v§ë¹†Ú +(p˜a>ÆÅtœu¯ÖqG“š®°R(“Æó +Ü;ã2×ñS…@•…è’ “5`”VäçÇl>$ Ò«“å†h~+ëC 2ÄÉ—jb @VäÕs=n…€¦žIùËÇR>ö\AüúøÏa›q6ý[d‡üàòA`A—μ¤ÖŸçøÙe¡N!·¡ª<9º±A%KIhI¢þõquä•ü^–ìÄ#¤¹ÞèæØë连¡C¿þ–•Ì·ÿÌÂÃ[zªlº³tL´å¥ã6–÷ ¡V¡ŽÇc²¸ßuÆMµGTFüµÅ-IØ:u ë t Ù÷o˜óêæH/ÓÏ}UIpPYË¡)A¤Âù8-V{Zæ‰ZIl¶‚«Ðq ‘ç%UÝ´™QÙÐ6gn;—ÃX÷,ð] -*jz±©ñÚ©DÌ@Ãz¨g æeñuY8‚N‡]µ@æìCÐL)¡UØD¿%<‘ðyR‰¢Í¡›V ŠH U!  fûòìõ,¢®*5xÉô©çÒzèp¦è'îtB¨Ã€›s´>î*ÁøÎps¤J8l‹P£+¿j’._ V)aû^†nJÎä§ÎacyÛ—L±×TÅ¢¶††.ˆñéТôU÷8Ô×ÇiˆËø¦µòakIt²¬‰éýfò^¼nj<ö6@#4µ6pߎ#ØK]‰ {$ýb{(ÚaµÐs'¥@‹rQŠ»vbïR*%À묱üî¡:W»Èln¼E€¿MòŽòä‘üî½lWj˜Ì^Ö£(úXëƒw¿3bƒ7ïŒçë jÌL¸/ôÜùB5k}*öƒ[õLÉ‹ Ñz‰;;©šØZTL9¿ž·HÉýè îÕ¢„‘B·„¥; +“Iš êfa|Ã]²@Ö5Ômné@Ðö ÓáÇ,Î Ææ °?zT3ºª~´ÌͯÍvêÖÞb0Øjäº'M¿£|`îùSgÖýÛpágO½ÇUÐÖýÄ Â×&º+ -ŸqûMä^>-Ôã³@ËI˜iÅ•‚.g„Ž`Â&m%'×â_ëQ)K =N¼1ÚÙª× ÖÇûñB\÷¤èw(ÆÀQŽ&»&ó:³*„êÃyd;G<ìZÅàLvù­Àw ºÇ`° Ful ŒùÁ+‹]F;ÙŒÇöã…¹!3ýNàƒÍ®àè•Mv) Cû‡ýojµ@ò¤F,vm5Üjí»¸en D<MªÑôúX£µ¾˜‡d4>æåiï̳¹;ó`pÓ¡Ë_¹ä£·°4‘¾äÙTHÆØ÷4HføR| “ü†gŸõjéÁ„Ñ'µ5xùß'î€EÿŽ©ŽÇ6T^\½¾þâöùÅí‹ç/®¾¹ºyõ+ÇÑß¼±öû ØŽ¦ë_OHÉÑâýÖžjka¿ý'¤4çÒTÉ •~þtTSmïè§{}:Jê^ƒÝçSR·­+otjýXU®~Þü;IþIëëïwlÑ™nòƒ2Q¯âðÔÛÈ‚xø}lRSÇ'õ2~h›“z¥†êÈ©Lm~´R<ÝF§ä±5…Ûo/Ÿ~÷êÕ_þróííßuõb×ӱެ‹ãͯet­Á|ì­d!pŽc–YÅRÂ9x+L‘‰Ý Û¾ýÈAdÅG Äêa$ wt¢«‚Ï äk^rcYïɵB¡i|RcàÖqy­“%MôöRêŒ*TªL èRP¢tDzHV/3„B#R0Ü÷(†Všg— Câñï\C*ܽJ<Ç(À¥Ö&™%dtUÈ.@ÄFAb1'EÕ'‰Ì ”$»Ìó±½´;¹/ÕJ|g ìÜ©x" O²ã¹&&ÂÃp4yRu0³ R?´EÛýz‚Å4,õéRêSçêazoM§ DÏɹ_=¯–zèé˜zèå˜z˜!¬ñÌ0Š&3"¤£Eòz€Ù7Õƒzn©‡ÖŽª‡Vªb© d¨¤'në–zÐLêÂn¨&мY=Ì–zP0†z˜a´zèõ˜zèùõ €Võ`ŠÇ¤ÞÙy€¬>Ð +,V gZrÞ& ;ž>Èëùú|MÉÑ›M…²6…Áp¢¬M©ÇcxÐbS+=Íäf#jàBDõ‹Éä]•âm;#X?÷]9ɺѓ€ÂÊÏœóüù\Âù¥Tâá~åÃærŽ1 óÓ6AìÂhŸs +)ç4Qf „t|ϯ aÍ«,$íÍfÑggFøÆ +iq1` Nh…"èáŒã2ôêxZœ3Ào¡ñu/Gù#¬·I¥ê¥d°QÁh"Cà $¡Uí+™ûe܆)Ž”ÙüVñ\÷1ƒŒT0#5"±ÂQx£´rR~@+úënŽ²è™©$Æ9­ bµ•DÔ…ÚFOª«’HÕV\J®ŠK=·t’jô$ âRoV:©¾W:éç t£'UÃ8>™ï̳å†m+nfü°>ôÎL6Ãfµ™fR=æ°øyj<ö¼Ç¶=·pΪ«´õy*¯Ò¦ž[‚¤= h+m<§tÔLj ­_5ŒÒ}Qf^ e&‹ËÊL—Žip ¢µ«†1´«4«=…"Õ¥ÎP®2te& âë^ŽòG”+ O5“ +È0“ +F›0©™?›É¦Ø/F¥ÃL6ÅsÝÇ b˜Ic™I ¤ì—ÂQ ŸÐj&Õè´¢¿îæ(‹ž™JbUÿJ¬ê_?74»nô$ ­™ìs„2—V€!ÛŠÑÒIªÑ“€vfR½tÒ}QÏ èFOšÌ¤>°ñtçàŠÔ†R~n±|•l¸±÷¤®ºfœ•Ú&zÿÑ +1*Mªæä±œ?Õé#Ý\Þö7”¹BHÞW»­ºímXöÑÎÊ[ÕŸ¬¶GØà—„–}YcÀëïõpNfÙæ²ëöÒóôêi‡»Ñ\}èQ~k¤T{2‚Ý9êñרŸ 1äó1œíé£í«õi~ðö<ÓÊËf ˜pk‡Ýð€¨vsõ¡Çñ{ÆI7çwz·KO.Ó}F[ /}[äSfÕBe;n*ù¨c…3ö¶ n®_ß?ÿüë››«û¿ci¿½^Þñ¶·Þ[ o»·6—y’ @%SÈ®[i}§åš­–Zµ´œh_µ\ ––kÞnnWaüÔšI5—·ý  ’÷¶Æl}Òr-?h9Õ‘èÁJ+”ætÎø­Ô’j/í0O žv¸ÍíéÕf«^ÕÞAÞ×ríá2¡h ŽÒ(Í?èœñ[©%Ý\ßv¿j9…à€°•fÛÓ«ÍÔ¼º9¿ëp_ËuU˜›Ã¯Ûº¢¿ÌÐru¯ì5´\Ý• +úZ.þÿÐrÇÔÎ)Šî·ß÷m‹ÓõpÁK´Xz ,LÈݰÀûjË!ð9ãžå1¢EÖõÕ:·€ÄeѽT˜Ü'U§Tw'éîÞ効uÉ­ ’Ô +r*!/rÓ… rõÇîóÂ:),…Éâë(dîâ°"key#L[x««ÉsoÈq¼{„YÄJM +¨Ë°cç /î> +™Ç–QñÌ"ª¬À+S2âiä†P® )b<–{”¥#„¬œX/­–QE†G%ámqî$-E*´¶.…0¥rTâgÀC^+ÂJË,óç¯ËãR–}dÉÃÔY}·“p±‹WÌuj˜J|bj ,+ȘêdƒdîÊÕæ½l©ž€xyx3r5¢&gʨy9 + +s—LÝ3-¡‚¡™—œx‹‚R8c2« œ >3âé¹ 4ÉoªêˆÉY¡GJ¿j cq#¼¯™³¸'øŒM•î˸Oj:·€‚ Q‚fv!ÛHŸ”;˜V +¯k*rÅ“!÷§éî’€·õ´Q7ó4 ƒǧ=Õ‹RÔêrÀBm²0ª¥IÅ‹T( ²’œQÕØ¨¯m”©S†+›]ƒÍµS€Œîþt‡ø7^°%ÓH’cZ†¤cišÚÈ ¶îî$ ÝPç…‰ÕÓ¸që>Û +;A¹ÁJÐÖt:·€ŒñéîN²¤ Ú'-ÌôÌ\YëV[¬K&¤ùö,ñˆŒ+ c|º»“€,ª¿Ó!ïS¢ºç‹Ïžß_ßß\á×/ñ±ÿ›W/®ÆÇScøào/onñúý‹ûû»ëÏ¿¾¿ZïÂF×w]~ÿMìA]~y}óâîêöðŠðí[þë~GÒŸüêúöâöòJßR¾ÿÍÅÍ×ÛþÇýÕß™`ÁÝ^¼ÜÝ$þOoBÊ¿)»ñ}$„­oÆùÿ.Ôßyýú—7W<¯|iô'W¾óí3^lzõâçß~üò«Ww÷Ww{3à¡ßá¶Ï½ >åB”$+úŒ(†íö /ƒ 0#ð¿¥nD]Ïf€Œ¼ èÜbÖ]y–Cgªß¹ÕÝI@º»Ï¿›×àbÉo +¯Ä®Û³ËË&ŠÑÝI@O6^ƒ–p –ij1§­ØüLþÊý=XZ¬;Hw÷tüÕã5X§°„@ ÅbÝ)@O6Þý(ÖÀ˜¦~âuǀΠF~'µã(¿âÑðà:ã0ÆF^·…XÔ¨³zëû=îK¿éÛtÚ¶2ƒ0ÀrÇ€xûPD8Á²?ªŽ7–* _Ž¢l€ÌCv¦ "–nìܳC ÜÆÀäJïZ»”Ã<ï\ö"b¾xfuXåP\žY0õéy*©ò:Óï‘®¹%]ç­íãpÛÞ€XÙ1ÿ˜w¢Ë}·í@Œ®zé‹W$ðjˆ¾½Dà-÷=²ðò_A&5‡˜¹ ¬4®PžÎM ¥­îP+ƒå±xÞ(ªuOz¢­XNRÂ3îQð}V/Jb_Z@,_E  +¢7¿ ÎBPÇ»8Àœýñ…1 gggÆ„žXÖ)Ig5à¿]"Ôˆ!e8°3Æ„žªÈ ¤¦ÎI@†R|üŠÚ¿Wôè¾Þ#Èùã¤O¿|õÕWôê//î/n^}ñcÀô0=ۧا½ØmÆ4?*ù@…g˜™â[ç}õôýyiÑÁ9t tnñ𠏽v½Ž«±×NÞðJ7ýw3zØ*§GÑ~y&5f÷•[@zFw'=ÙxwäÕõ¾Žã7Ù›ƒ3ÉA.šæC6ïØôø+ÝôÓqPÍ`ŽFÀb³€ÅœS€žl¼û‘‹1sW'¾öp èÜêRãg'—É‚ÞêÜŒeÃÍð¹$åÆçä;mxi[:leyv´ŽŸÕ°F.QÉ0ÕÅØ™GtAÃâŽrƒ „»È¥²î¤”{˜çÓEÄ"¼ª”Mr¨"ºX@eáú¿Ø]Ò‘'€½”° _¶£’{UyI[m€¤^ã­ºC-ÈÞ=#±–7%nƒnãK²/Œ){4)yF°ðC7@À¥¦PÎM ¥]­î4PØ…-©”.ünn_tl¥r’œ±¡Æ«®U‹×—o8$PªÙWð¬¦mØRKPì«; 1'D­z.O0Ðy³p×Ù% ÓŠ”;ÑHî^è¹}eJþ$ Cá}÷­ã +™Ú6ìÖz®ÛË©r’©w^ÔÙ/R¬r]vä?¿3€Î- ¹™Ï{]y-tw'éî>7Û*uAø ž:kÅuÞ£™wx@ç&âÕi|Fw'©îÞ1Ì];O5"Í‚Éi¦903ÃçÝQ<)¬Î@qç*ï¨ï¸äÆÔdâd¯òŠùíãî–â©ÝØ &uŒ`m˜I½¾ÁØ y>±ý–:? ®ŠyfE‡ÄëWS…öƒî©Õê ……æúxú•ŠçÛŠp +Mòãü}¶]ÄÒ 3&/-Ò8Dð[C,Ant<7äå$ kàÇq’Ilpu¢®%ŲÂ…3nD–ôk|§Y2z§ïe­ê±¼ÉÆBÓ÷¸VõÑå嫯eaåÇ%ªÄ%ªŸ=ù•¯´'½væ—\l·¦±> ôq뼆¯Ún2<ÝÝI@º»?™mi·>óŸ=³†I–‹†[ciÅèî$ ÕÝ;¦8m³‰È"m¹5¥2V +¡¸\³l#.Üh ¼½pѲ±…>+“´"ZìݲÔÄpweV  Ù¿P(kÏD Ýpƒ4 7(в#4÷¼ž’½(0÷Í([ Ê=Ò@†3`ÍÌÐ(+–ž ?϶i©T»M) H3å “Gq%aHv› ¬”Gdï K¾âô}äA>z¨å‡áóüè6ýè6}ç½·Ÿ éÇÉ`O†gw?N„Љ°-èù®‹«Ñyº_¬¥èJLÃ`¢…ÀÚÓ9ÉmeA ++²D$â¸kbêa¡³¯¼çÑ6ÞªÝaBÑR)>¦"®g]2aZK®ço Q »Cƒ„q‹“"†h©•¼ú*€cÒLY3îjîU'àÿ€T·À&WW¼÷rPK@†JsYNÄÕ–xV*ÁÅêUöãf &–Ö%׊5ÙHóµW:àà. RKÝ ÊÄ y˽V^6Ûeá„}InR_šÜyPhàú‰O)õdPžq°ImúÀ=ð—ÓrÇ‹@Áó¨TäÑ1Çk¨kÅŠ«9‚ôëq@¿Þ7˜#IXe½Ñ%f?r Ae(ŒCà‚9&f8nåEŒ˜c‚$'ëjH‹œçè‰h +H«¬‡äží½ðn€°ß OJjUVb6€ˆCÍxnÛ§}ŠAÛψj¬èŒ¬@*ÖyèN–¬É?D¨<êŠ85°¾{ Æ€²4ÒÞy‡&W€ãÿ—΋è)¹m±l ð+µ'6Ã4ÔêB†_×e³®4ÙHÞy_R„ç2ÑÆ¾ºxwëÀÁ°- ^:ïÖÖroÖÀ{\Nœ7Þóc‡˜$L^*\eܵÃk=ãf~š9nL_4kãFÇBsÜ~ô–Íqclyaü#Z&Z@Ñ™r¹}<É1û‚˜“ÍðHt—£kÜ&‡šDŒ×(>ÎŒƒÕmËêó®pæ ( V '}@1÷F7ž»œÇUå.ʪkŽ8#7ˆXŒ±äŒ“k’ÄcØ ãÍñ|?lÑ/NY£»@kÀµzQ  ׉Î'ψ%Ú‰}#®°Ø-`R]A¦®ø*tª‡„±z7€(<¼•›•î¼á\V  Ç–ILTûWãM¿<%?2p0k!‘Ä(ÐÑ CÇÈ%˜ðtk½THèT@h•Ç67àõE:Çc…޵ 2HäèŽÉ(ãU÷ð n¬ú¾a¨Á‹»Yý!R[¹Åõ9Øu+§j´…¬50Eb'N5׆'§T£ÓOg¾ÏRŸŸ¢ŸÞe1ðƒ>öþ÷Âí6üêîêê·/^@þBœùñí‹«¿áïÌPôÕÝ·Û¿Ãæ~÷ÑíýõÅÍõÅk©ÿtöÏgsᙃ‚3§w—NïÎ.¯õC«láI³\+.Ùò û»áAk£“¹g ‹@ç4É|œSwwîî 2k#K\´Ü`w eÂÀ™GHʳý4ÛãÆlhÿZ0:в€Â¹]ïy€˜‡¥`Ö1J…&Õ œ?x +·# MúìÌ‚Y }ÓX,HˆìǼ+.󋢄;‘a´‡?!w|Wèø280Їá39y_A<ëÆ€QPã¨T?tM¿s‹„'é9ú'Sý@Œ(EP#Ž(¼´äz:7 ¬tw +(q3‚Û‰ÐQP]Ý‘¬»†Æá*Ù© ¼*˜çŒ,Cú5P…ôÃ?gÕK;°°™Ÿ½ƒmÕ‚Üe?ºÕ¤üyÜòã  s(.Ó4ÀÕèc÷J€ #\sMüOÌå$çø0ÆÌùSÓ¹gç˜KVÖÅ;¸ø\l=!ˆa¶*þÇ€Áô88 ¬.Zi¡G"!)¼0‰Ÿ«‡Á­á-|Bx·¾Ë +g_©,Æ\Ç!µ]aáI8h/®V"$¡G˜Áà,1% °rbç¸aHx Žl •‡ƒ7µA?ð F­®ñm§•eYOš»Û% +h")­R$ˆ7OfF§D›Ã0U,Êš%TŽ˜ÅPŒEÔS'ovÜ?¡$n b4\Ã4qµ¦ßS©úL·Ê׈õÁUa|¤¤g‰¥G~Bt€§ˆo!ÖPkCÑ." .j ÆJAoM6ÿ-idÌ2Ú†´>â]½µ+úöiUùÇ´ªÇÒªþôc­ÅÀ¼ªÓW¼ãS,°ÿ`—¿S¤:ÍÐH…‡ÇùQ7(E(oôÆUð‰kÀÐL­àú:AÁ!G\ƶÌëôrO½˜ rpZ‹¡0¼Þ[±ÚMx—ð/76,NÁj Qb;8úzT3ˆÜDð•ImÞŸÝ ý#Fì~$E)d4ˆ”4G!£(|œS—YÄBÐNÁ7fq}Y¶¥ ÃÐ&±Gdž€c†ÏY1‚ˆ8Ås4ó@ M0h&¼ÆF±OÊ‚,²+F‘XyÞl‡˜Èˆ¸¹'…1F¥u6šÆGyõåà `$EQ(¼«:Ëq<(À¸Ê2|šneÎ\¿Í-Y@¼±>z¢wæÔÅ,®wà!ÒaåV†9Ì)ǺxâÁ/ÑÃñÌ)p»c`é–]ã5 i”ÿoÜ‹wÆáNA *wÚåè®g$R “½*«W?;K¡¹QŠcÔã0€Î- Ø„;qvˆ>Œ‘ÁÑ¥—MÍ}ÿG€2s˸ó6kÒøÓ O’° ˜Û ãôµŽãápJem™$2vnãtnÀ€¨ë&A^(£Y}%˜ªˆ']`"˜S¥–…5³& sÎ:3_ïxYßkÅ80 ?¤prTc,¦P2L“·»³€˜‚ðo }…Ôp !%'HÔáûw©U2úr¼±!0¨‰}qaP…­Á-' gwí…Bµ/5qñÐqÑH +ùæÍyŠb´CgH(i ¼>‚åù1!˜Î‚¾ªL"]Ý8GzÌ}G¥á©W¨óó@?4ßÖ\âÒ0¦"s¨4øD¹Ê½'qah½'H •Oeµ &m‚cß!Q/˜‚…B|ŽOæízTâ66/ÁH•Éq·L€¨ˆGJ“yÏÛç ´–C, 2?qs c€:M‚kǹ€pe,Ò&Þ’ÍMNH “oÌQ”žt©þíã£òc|t´ÌâÝ'±þ[JáI¥ýc/¿}ŠºBûAB(èY˜ãض;Cª8 úêLzäoâîW‚¤ZqÚæ@À¯kÌDY¼„&åO` ¢\ãÏ­ Z£Š•œ¹‡íÇoxQæ-¸õ…Xþ=sx Jâ‚ Ï•ÙÅ¥8+©(u¹6p~|yÆŒ2P³2¡Úb¤jôº>ž±|v¶}¡ÇuœîÛ܃ß5íiKra 3Ù¥ò@`&þ +Äkq¤Æ<5®¡-´±=3f¸\ï¬GM¿ÐcôcËB<†W©&1Žö æsE¹$J(H-`ù0nÉž;ËÜúi¦9Ö´ؘQ¶‡û.‹äri<‚‚ÃÃ]ó·ô–ŸpžxCÂ\†˜V V…K k—Ñ¿Z¸þÏ£}Í;mpÅà;p[ÎWüéÉYâËÀ"8+èÒµâD ’* ·QjæÀeC`&ÈÍÔ™„`¾:Ó *Kèqí6‰Ì@òJ¢©O=L©—áNyUG6PâI&J!0 c´q·Šw¢expI=óÕy~‡Cˆ ¢cŒ ã«pÃ\Ãà¸!;Ê^‡ÑèÒ’ä‰q{H5wyäÂ1½üMŸøððT:åBícz³f ó„¹Ì#gãÑPà©úr[ÔÐ㆟ôÖ23j]r_&žÏóô§ù´ôî   ;ÉQJïÂÚ„è3Èn!µû%Sa-:Ï +tNœ#²úÞrZkusÎ@mÂ÷upsù„•(éjF:† e¿2|æ¢9‚„²WL‰w  +Ì**^º3 ¤ drèä{ÍpÓ?Ä)x=òÔ =Zd)Þ ÷„Wí2)Òc{†Û¥vÏǦËÙ@‰ëª<9[“GhúRp©‹ ÃlI!ò„Ú;-<÷Cß²ˆ;ÃÃN,q”è&&9¦ã†œFÅ.x!&Û¹N Ò£Ûìå-Ïs‘¡³¿”ù¸´U@0„;Ÿ Êš1©åI@Fw¹ª"ª'YÆOuwÏ‘'$vq ×;s±”§+á˜ð˜" /wÁeØl“ëwÀ†'ð–zx8}‘Y”ŒN[eZ¦Ý£’ÃÒ + 2 +„ÒA¾” ÓB¹)ÀÝvÆÂÖ•e!ò¸švõœ“5Mˆ‚ 3õ4Q@*Ä2xeq¡£Ÿ˜¾ +,˜Þ1Ñ\€¿ã«!£™Žj* Í-”©+-ëˆ)ºùAvMºÕYœÏ…j”5ˆŽ.5â3J<úb +öIQ}:ü$ Ý…æòI@†ÇX§ú'YSZ!\“h&¤Ãñø¬ +ýþÆ-ƒÖ”ž@8¥vn!p}°[í(«±1@ô”Ö@†Ê+£XÅ#/ u;VÁrjªäÊÄF˜î±ÍªRËÜ Ä…–dʰ³sw'Ý}¯›1íÇðä‘dµ//î¾ kúúþ‚½þ£üwŽQÜ“Å(?Ûf®=Q ã½°! ãˆ}kY‘bÏ#zyVä$n€ÙŒ°YRWcâM‘“Yà!êæX§„ ªâs=°d—gƒYè®dϼ«Ê‹\6\Aß[²35A £ÄIåÂÛ¸äcn…Õj§Zõiá!ž\˜UàM„3‡Û1pš6üheV- Ú:®h%·zÊWü×úh;c”XóŠu-|à‰d DóA)~"Xx™Ój‚œ=TRq\º˜+ňk»ËöŒXÀ`Ö> ñƒd6&俯•÷ã’#eÇšQ ž¨Ì‘•Æx~‹câU¿ÜõA¼Îe?.#ô ,-ŒÈvT4sŽ7ÅX8©æ©VưC3!¬Jh»áò-W½“lmŒËà>T®á¢±†T€Ø±4ÖÖ’í@)%[L‘…ÇØS¦·,õP¢“3LºýâæêM€¿»/îîOüåí‹=°ØûZTwüc~õë«ë/¾¼ßùíŸ~wÈéµýöÀLÑ~˜ nwÞøÅ:6°ö¤ìµwÛÏL–‡ãÕ<¤½Ÿ”ÅU¯Id1Ñ K¬ðÅÁL·sv†€ƒË3oާ oâÞã2Ac®Œ¼¿š¥½#Ë~ê¦ÍÝ üæÇ—g¿¢ÅþJè‘™°€g%Ò”ƒ¦Cßyг…-AÅ”íàå º¬ï¯Óq‹ryûÛ§<Å'ÕN¼¼`VË\@K#è‘ôù"V¾“g1“DNl^Ö•CËTX¢:Ã÷‹¼—Cî®,ˆÃ +Ò]6fÓyN€Þh\›e˜åμ^/ •µÑc€´E&1ó‚æv„®ž‡.á'Uø„•¬wð«˜íë"V‡—}”âèºòZÉLçl<>˜W÷°1ÒSܰ2É"!žcµÒ"Œô¬ŽTxò޳ ©ò,+ŒïgøÐ¹Î2‹pÙNe#—yÊdŒ«•§Yö"ü>V]äz„¸6³ð¡`åeœUgiîÂ/kw³€ +â:’Ž3lá¸eE¥z> _np–kd=•ʸ' O d4Çþ'ϦȀÃÂs”sP”¤i,ŒZ¶íbH‘$ö,÷çV”Y\ Ñ6ËS˸+sØxD›•ï“ÓBÆÏuCXÀ\Væl\A #[Iˆ?S“£÷Ç4ú´k§-<=‘˜@ÄÊs]jºo±ÙŸÓ´Ì#a}z0“Îe¦:–¿ôôád±<ËA¸*ÇKñ'kãî2÷×2§÷Ã|¥ò2¦ìžÖZ_Ö;r!5ß™³ÖóòÜÁ›5&mîô +\©¬ÒYÍ9›¤AÞ=¯+FÔ”ÍðR©—y7ãÀdš²¹0¼eî…|ØS–éSŽ ›š·¦læAîÂJì<¢cÊÊA|¸©`¿…Þ)‹©¹Èi§^™cdMY–€œRóækÊ‚‹,6Ë x Œ5e¹ËÁzü§3QOÙÄÚRA×J­¦,wa·vOÿx{ÊBïâ 뵊ðYS“޹¬<ñïx|ݘ² <&‘®Ž×Ú˜S6±ª"¨Ǹ) šX™'ÑýPDjÊ&îG`âUq  =eñƒ©±ˆ›xáA±¦¬²Ù¶±Wwû‚s×ôH²-5°·@ùóŸtyùõË­·µç³œÿüì½>ÎÏá3_|{u÷þûgï½÷»‹/®~wq ßôì‹×ß\m.noùíÕWx³ùâîêõý«»«Íë/_ý•OðÉü½÷~ùÛ_ý?GõÉ endstream endobj 65 0 obj <>stream +H‰\“MnÛ0…÷<Å\@ã™áÿ6nÑUP]ôB›,œ‰ïôQ")Õ0d‰ŸÌ™÷æÑ—ŸWº<_…ž¾]É}:¡(ûµ´¯¯?î7}¸Ëõ—Ðz'á2/º¯xñ/^ïî“”%ãHÞ ' Jë»küÝ-)³„@Kæ+-ª‘}ÈÔx‰@ðP +|àR+­L8~m¢\ƒ§%‹W€(lØn¨ªàŒsÉØT<çœ@|âÔ +ÇÒTå”<µúõÜ5´ÕäæÔX£ÓPC4”]iŽ­×›SÏ17=y3¼-\r>ªDÎíÁ¤k›DMÙ[Ù¼æ±cèe ®¢WïÓWЬ,)uwXŠŽ•ö%ýuÝð*[Iÿ¡˜0@=&C0¹%å¹xSôDÃYM,vXœÎêþº—óa©¹ PƒC1ËÐ M¢÷5ô¥T·Äuˆ"ç0ÑætsÜÂù|Ä‘{`™ciXçZZc„½àíD*'xzG’»Õ±^]Ïo€qÀcf9OI«œOv½æöY~ÆßöÅý`Ÿº< endstream endobj 64 0 obj <>stream +H‰\“MnÜ0 …÷:/`Iýo3-º +Š ‹Àh“Å$@2÷údK²;‹±¥#ò=>ùòóJ—ç«ÐÓ·+¹O'eÿ-íñõÇý¦w¹þZï¤$$¬…辂þ}½»ÏãibÉ{á¤Ai}w¿»%e–hÉb¥E5²™/1¥`á—Ziu`ÂÁðoå<-AX¼DaÃqCU·`œKÆ¡â9çâ‡l¤V8–Ö *§ä©Õ¯ç6¨¡­ö 7§Æí … ¡ìJsl½Þœz޹éÉ›áÍhá’óP%rn “®m5eoeó:˜ÇyŒ¡—¸Š^½OßA³²¤4öÝ`):vØ—tö×uÃ_¨l%ý‡bÂõ@š Áä–”çâý LÑ g5±Øaýq:«ûë^Η¥ævY$@ .ż,Cƒ4aˆÞ×DЗRÝ^×!ŠœÃ@F›ÓÍq Cæú† #÷:Á2ÇҰν´0Æ{ÁÛ‰TNñôŽ$w«c¿ºžßãý€Ç9ÌrÞ’V9Ÿ:ízÍí³üþŒoöÅý`F«¹¢ endstream endobj 63 0 obj <>stream +H‰l”ÍnÛ0 €ï| +×C‘ú¡tmší²bæa`¬†¤@—÷FÙ²d,EàÈüDRâŸ_Nx|>9||:!OßÎ7dtJ@‡x›_áøÉð¯¼Õ û1Š‹”Ø”¨+ÎW¨[W8p&Ÿ2“ã€dza…8„BÑË(¥PL=G5ÀŽ”#²Sâ૆¹J9c*¤¥‚À”³òox¯ðfˆn}õïïOø¯ ©:´ •DÙN0wj/ …IŽU/˜º=¤X>ÛH\ñBQ¹’¤‹·wȰŠk÷Äûd«ì¬î‰°XjËž8Ëe4k‹(%éùȤv»MžÁ³å¡àã’‚î`“ÛfЈwµ&C*æ&›¾³ÕüXÆjm¼Äþ>ƒdYƒjäÒI^Îß%U;Y•| å%E›<ûfÑÌ’Hdذ4›æsÈÜÒ°‘-µ¹Üÿ’Æ­8ί~ïI·Øâ¸'RüÒ"fµôUzŒ’6ÂEH– Û¸hìg÷’6Ù*¤b39ÈÖ’ÝC“w5md´Vmó!­có8ÁqšêPO/Ü2à¶pvä•Ù²IYKÁé +>~?~˜þÀy‚ó³}/þ 0•ùÕ@ endstream endobj 59 0 obj <> endobj 70 0 obj <> endobj 71 0 obj <>stream +H‰„•tUņÿÏI@:D1†s/%tH/!ôNh +¼'$Ò"ˆ$Dš¡#`ˆ)Ò¤HQ¤—Ð[€ˆ`¡—Ü„&¥˜¼}o‚ËçÂ÷ÎY3çΞ}ÎÝÿÌÞßD Úy1Áí;U®Š¬ë‚¶^á¡ýïÇLXÈåÛ+:ÊΚÎÝY»}#ú…gg¨Od¿ÃûfzUV[^/µÍ ëÚۧܘÁ€ïuª¦†,ßãÚ• –=~ä«7pp¯ÐS^g’ÿÊ@;Ùþ‘ÏziÇxh,2Uºª¹uÖ“=PÕÕšÛËx‰˜E{Á°Gf«GËFmm4ž‰É“Y’,ÒǺçÄ’÷¿AÜÐó«º~úKòÀ›Otü +«%ëzñüß—A/tA `0š£3ú¢Fb,: %Úa ê¢5¦ 4Bc4AS4C0:b +&a*ú p¢J¢JÃePåPP•PU€ª¨†·P5PµPu†p¼ÑhkÁ‚7r §Æž ¹‘ùQQ>ªî5ÆëðÅ(‚¢(†7á‡âºýñhö€ƒʼnü„Û¹‡×° Ø‚­Øƒ]¸Š[¸»¸ÇœÌË\ÌMK²,KÓŸ•ÙšÁlËv…˜‹ùˆÄ§ˆbDc(>4A&“9–‰˜‰ñø±X¨6[¼ÅK|ñ†a¸ÔF*+¢7ÞÃtÌÀ—øX,„ íM,#ÍÃ<Áºh6莡+ºa"âÙ‹Ï1óÐ=±ñ¦áßx gðSÎà.ãr®äNîV…ûx™Wy9LcS×Ô7MMÓÜ´6 MÓVÎ<º‹)ºÞúïZºâµu¿ºë>Ž@ c<_\̵̔¢RSºÉ9$eò˜Bæ5SÔ”0eLŒ™jbM¼YlVšuæˆ9få·*[U¬öVO+Òšo-³V[¬íÖ>ë¬å²nX¬ô|~ýø¥Û¯ÚEl?Ûi—¶«ØÕì:v;ÂnO±ÛKíåö{½½ÉN°wÚ»>ŽÂ§£´£’£ƒ£‡cŽc•cƒc‹c»ã€#Ñ)Nog~g!g§Ÿ³¼³…3ÄÙ§T’¿›òo§Ü;švæ™dfz26¯î€æP®j˜æê"ÂEüŽOÅ×£p»$Êãý§ÂÒªp‚*Œ3Óͳʬ7I¬ª0À +¶†XñÖ"k•µÆÚlí±Ž[¬KÖ]ë‰*£ +Ù>¶¯]̶= +«Úµ= +£ì1Ù +WØëìöÖ¿) vtrÄ;V:Ö:6;þ¢°à_öÎV˜Ï£ðô3ªBf>òhDfжåYŠ3s½(׌‹K§Y“ ­ÙFn=?©sš-Ó3âµïêñ É(žaÿséßW*^Ôä©•5N)›Ò0¥dJ©”r—¦ê=!® ×€+ÝõÄ•æzèzàïëê’’êê—õFjœ¶ÑzJå{|®‡s˜û ù>° +ïñÅnŽÃ%b%^`c¦°E6ÉÛ(Õš.¦³yÛ´×\îj:h>w7ÝL'óŽ 1=L¨ikÚI3ÄIsi!-¥´“†ÒJÚJ©'õ¥4‘œ(%HISùAŽIš‘åwy å‘$KŠ<Ö +;#7ä¾Ì‘¹²O>—/e§ì–=²WVÉ7²_–ËRÙ$»ä²|'I2K¾—/ä¨Ì–_d¡œ”År^¾Ö]!e¥¸dµ¤Ê·rUÖÉMÙ,·d‹Ü–­Zµ rO üDÈ)ùYÈWzÞLW"ÇËa™)Çež¤ËAùIæË Y$ge™œ–%rIÖhͯ•k²^~• r]6ÊÙ&¿É>añ]>fOÆ6~€í…DÆà0GãÇ ‰á?Ä^Ç~ŽÀŽÄAÃ>NÇïü 8 iü9霋§œ‡gœ'\Å|\Á<ÜË2ÜÏr<Îü‰µø3kóÖá¬É$ð(«ñ¾Åc¬ÎïY•ÿ¡¼Úc›¼®ø=÷:/°“˜ÄN $ñ'qpœØ±§œ4!± N€b&@^Jªin]Y·¶R´þ¨öbHíÚ Uš+í^ÈžíÂ#ÚD«8(cRF]Äœµ =áfvÌeßÄüÅä6Áv¢>™Wz˜™6c^œg…˜X̘*Íüï̼Șgl‘•LÄ_&úVb‘Vž\d#µQÄÌÞ¶EF‡#|d$Eû°áÜ0áqDR¢)²=îL8 ›gÇáý³)S“‚x0·ð:RlGü¾cq-5˜¨É¡s‰Dø˜$“ⳇ£G0XÆ +tt¬¥eìèÐõë­£ÁÚÚàhë·yÚ3ýõiü{¢µ=“ÁG‚“=µËWe ‘’¯ˆKÁ¾!}gDxV*’BÐ=lGå2ȳ¶+QÎ/ÅHÃb#^Še¼ö®D泉œÎ>RȼL ©òÑ–ý$é‚~6꿦<½½5ä¥e.EÝ™6æ½ÿW^CJvKÊkŸ-5IçõŸ’Wÿ½:]¿Ä²±ö0b­•="«Ž‡µå_*+½_%h•„Vƒ`*Ïæ –*JËe>Jš Ш.ïEÖ¢dkr–""Ûygp€ß uØË(pv¬N® ËÜÄàCã­î­'†÷~µ!\=³±}¼»®®{Âß8Ô±þûl=Ø1äÝýt|úéݾXØÝ3¨…bÁùàTH«hîu…£ú÷2±qPÅÆYY·nŒj·t-–„â<ÂjIX§¼a”A»B©GF¤P6.ò#v(;Ê5E‘Y-BšÕi•u\j¾F?‹Ñ~¬~‰§õßQp9"ý†«Å”.cwërW¿72ždŒ䢽øŠÑ>J® X¤¹;5°… ê"¼=YþC$c¿Yœia“òàRVv?û•HBIÁ" –Ï´´.’‡ZP 3y僱˜˜}ó~“ì‡iúÄûÐý™/}¢ÿIŸÏå9]…,¬3 ¸/ýoy#4ÒB&F2FЃÎDsµã Òo¿¬»·ëw—MWIªûé—Ÿ-²1rXÚR.-}]NéæŠ*)ˆ“ +cbûþùEÎ.ÿÚî<ËÃÒÕp®ÌÑähº—êÙ®X™«·w “¯q¥òó*x¼>Ó²)g”\W¶àæ’Œßâvo9>2|BÂÃm*ÝÆÛ2Ð,“-þÔ¯wÏSñøÓ»½c$Ü炱#‡(Ù¥M£Ê¦UìEÙ6ªÙZ%»†(ÍÉÏ¥¸|nÊ8rÃ_VUSw¤Ñ½o¯©v©‡ýž*Rž²C½Z%S) ¬ìiæÄ;EJ:ôsWw¡ƒw›½¸EÞV= m•öz\q¥_I›ú¢{ iWÿضP¸wß\CÿT`Û¼ëÚíýÃ[†6öÚ£ $ÌC½ÁŽÀhÈßUn±'&ÛG}kûzÚ[Ú{{ý2KÕÞ­¾­]uFÎÙáËf5?öËšcL¨÷ÌŒK3ÑŸë­2öù²ÊÐhìo¼œŸ\>ÃOF£ÆqØÎ˜#²ÙYUÞ™ñî>5ºLÊ cšŒÁª¦N¤™œÙdè[_Š&“ÑXMh$2Ó·É61{èÐ,¥ôÙñ“ÑÆÆèÉqúd‘3éЀxç3e¡Y‰ø§ñ­šÆ%Ú¯ë7WV›Þ6Í`[U ˜‰ô1V°N¿©ß4½­øäý‰Óô–œöñ÷±¸yøócMјWáMÌK#¬–—³Vµ¯ìaSì6ŽE¼ ¿-gSâ›’tîSïMÉßÒÃxök¤¼ßÃ&è¶F0VOŸ2}Ĭt…iük¬Š?Ã’ü8ëãç7ay±~ýë,IgXˆt¶ž? +üc–<_Âó½x +0ÌÜ<ÄìüçûY¥ø2«äs¬šO2 diäqÊ[¬0–«k Öp†Ö§ðŸ³Qð¢Ó,,g¸5òNV}Ç„“Q£ÒÝØ!»ýs°Í ÖØCV¶ ËC¼ +¸†9;É›øXø Òz6©Ö›¬‰þʪhÛAÛV>¥~èÜý§™+D³¬–ÿ²_®±Q\W>3³~ÄÅ^¢„nLí8ޱ! À<ÁøÀ »6‹×^º»ÆÐ$U›)JÒÆJ£¨ùÑ$MÓü°øÑV´H•’’¶RE‘µU›ˆ_ªúH"ÒíwîÜÙŽWDu[çG%{ôùœ{æÎ̹çÞ{Î]ùfa÷¢l.[Šëä!ÅÝ)»Ü§dµW)w;¿‘z÷ññ»Þùß½$íξUÏü)o›´À;î=¼·/г]̸Ÿâ{{™ë Ï­Î$ïû£Ìu/3¶«RãW”Û)Ý„Ìw]ú}IÖ9ï>v{øöŒ½_jÝqúä‰·ÚØ2øÕï•:lÍœu¸)©r2–¼,w_¡_^šLµõËæ¿ÚÍpï1üneõ‚®á£ðAQöÅL1?Ô½ƒÒ¨è~+ÅÝOŸh@¯û¯¹eJ[÷o”RßÚd¡ÛVø-{[÷x—|Tx®À5Ú;¡VÑþ3ÒC^v®É.èÔ|P¸¢yÁæ†.Ö½ÉÎ,bìm6WXØÓ·sÇ¿£M>o˜Nßfr€Õ½ïSÍG¹Ö›¼TyäV·‰>Iö9+Ää3ò×L ù/ŠÉƒŸù1ÄäÉOïI‰)&ÿ–¢ùøe™gè°¹ù?§±¨k®~³„·å³Å’›ŽEß©ú¤ŸÊùq?Ÿ'’ÃñìŸ(~¯‘ ¦rùd6™ðS#þp|ä¤t4›Ê%R‡ó©ÌHÎËdÓ‰±T"Ù$[$#Çä¤d%%ƒrDòâs¶h–;¥ m‡´ËýHí•¥_úfIsù‘'r¦•D&‘ÇùŸ g»tK§l~Iƒ}ÓžLÊ é‘¸ŒÐ¿›Ö Œbóätž˜©>áȬ}E-zÊŒ$y¼‰3Ф φ°edài´c4OçMtüú¶þ›ïD;Ê8³¦W‚ÿ‡é›â#æ›cæmiîŒaÕï6±²Ì_á;²^nðwVÛ9Vmµ¸ Î9Ñ¥‹r¥ ïVKpV•ʆór3±Xk<½ÅZær]#«d9ûB-ržõÈVŒ+‹¹²Ž…PO§ð1OiÅö‰”^–Äü ,e²›m×yO¹û䞈¥Bî’/Ê +Y‚³¥Rv2Ì;¤VXËMLÖ!BÝJ¿ÀR%ÏË#ضól`ù žø¼ež&c™C÷Ñ£¯K5ߎúCÌæá@Eô·=’Z²õÁX(NþÓÈV¾då\•£¶ò ïrrj_lîg¬¼Yå¨>ÈŒ•/ùO±ü: endstream endobj 62 0 obj <>stream +H‰„T=o1 Ýõ+8&ÃÑ"õAiL\£@´HrA‡¢Ó¡i‡¸@šÿôQg»Ž—>‹ï$¾ÇGê6_¶´¹ÛFºý°¥ð"•¸þ&üù¾Òï°Ù>FZÞH(RdiDo Ð@¾…×ÇS žV8k+´ìƒ£û0ÕÊM'cË4‰*gËT„ÕFÜXÔHĸ£%\"/áâÌ»„N²„)w–THRgmÕi%en¹“jAŠI NcB뜓ö6\†PRLŽa.lÚijŠ,‰&”ÚÁ\-áâÕÙ©ó|¨ñÙ¯ðîÏŒL’ý ­³I¶37=›Ð„â#¤x¢zØhÎ8;[ªîJRî`˜£=}"€¹§†TR<HÆn‰™­´ôæ­I¬ôÁÉRƒ,!¨;žh u +U×;lÖ˜P¢ÒèGÎᔜ.\ûƒôYVÄæJ rQDT€3Ùj:)õû—1RRÕ +½S6¤&AÕàIÀ.®–K.ÃC¶6o|oÝݲµŸY¸‰Ûæ%cšŒ{tÄV·‹±wÁýt^çï¸#ÎyõÎÆò½œAeµä%œÎýC +J8ì©qU¯P=åÊN ëcwâŵA”Ñy·³sÕFئk) —aTàºÑó ð"œÆ](vêõ”7ŒÏ1<ÈYÂXÈ™>_`”&Eî>0Ÿ<ؼ^;Ûûp;ÿç±™gëù9Ô8Nâ¯7[(ãÆXï4ï÷«‡Ýã5:q5_×BW7cýôpóy¾þ> +»9ìîðú+À½1ê endstream endobj 61 0 obj <>stream +H‰œTMk1 ½ûWè˜FkÉY¾f»„BH2ÐCéihšÃn Ýÿ}žÉÌnRRJ1c[OèãIòln·´¹ÙFºú´¥ð"õqþº¶ýú¾ÒsØl"GЬš±çèm¯™è8B} õÏcx!¡ˆ%¤1q²˜q‰l©ö4BS‚g1\š¢ÔUÖÞVi:a’rôJ¯f]N¹‡ùrC7éÊŠ,>ÓU^}¯È{q§5†ÇpwÆ%eçh©ÿˆKù?.å/\ì}ÇEÿà¢o¹ØG\ m3sJhP­î'.¸p‰Ír¡K)T”S¯@Ä8ªœä§ Î5 ÕEnZ}’è‚ìâ\¼$ãœl†* LÒj#(™%%™=N@eÑ(¡FqJ»¬Ðþ ÒÌ1éiá¾ÖsHÜYNKFUê @¨"[ÔË•‹¡²íDA:ÐæRfÀüœÕNò~‘ -‘‰”|!¯shñòÚžÕj•%±Ô¹Ã¥* ’Wmá‘©“8[«† h¬H"¡¿hˆƒ¶´ +äÈ}Êä=WWJ…¿ +÷Ÿ0QAh‘„y’«ámÖ)^ëìmçy¹ Wÿ¾ùÍ0´ÁƒÍ#‡Ã Qõ¬ìŽä‡Cøvq})‘.n·»ûÏ»‡Ëï×°Âî¿ß ?Dá endstream endobj 60 0 obj <>stream +H‰dTËnÜ0 ¼ë+xlË%Q”ŽÍ6í)(‚èM‹" æÿeÙ»@a¬-ŽÍ×p¸ço:?\"Ý}¾P8_¾GZßI(ré…"ÑûúÎ_ÿz•Å2‰®­Sj«:¥8ì¿?ÃSx ‘4n¿“߀þ ×ðæQq ålÜs4JÖX²)­/Á_½„“'H8>ïG¶¤°ãõ(…SË»”[MT"K©»5k˜Vë4=ã¸Öpo…NY8æâ8Ò€”V+Þt¶Škâ¨h¨rëu3kó’= T.øÊšNbàÇn‚„íy=Ì„Ž&÷Úà7(°ÄEFû÷ñ¬-±ˆ $&$é¹Õ<ˆÙl;2xΉìeTŸ±A.‹€ +@Vn¬iô×PQ#L£F*Øz–nÎÙà`… ÉÇp·„ó²8—ËS¨Ûná!f¾J +b·Øiy .Ÿ¾Ü\þ„û%Ü?àçŸ»ß endstream endobj 56 0 obj <>stream +H‰dSMkÜ@ ½ëWè˜v¬¯ù:v·!Ð’–RC!'Ó$‡Ý@ºÿ"Ûë±Ãb<²Þhž¤§q÷û€ÝÃpÿý€°ï¡;ü%ÎHAÄ|5*ãZ ñ<¼CwïÛ¯gèúž±D8>n8sÈhJ®û<Ýìo™ðæÛ¯Ÿ·Ïý¸ë¡ÖPkñàL**Q 2Ü Oþÿð@i~wãâè#¾ƒj ™ +— %ãnLLëä{'óOC9Älx‰ØmB$Ï©¾²ä/,Q«„ª‚'HhÊ“w„‘mÝß ¹NýWކ¼¦ìXmÕ@³†œSC4·Šš$h–?[q€1WÎæÜâ“…jëÚfóÞ©„ê¸zÑÉ­9‡D É#Í­grÜÄoÑõcE±âRóÆOÁkl'`)~/JcõŽÅccjyù2Ó¥®ÙÏ­ò‘cF–îŽdîŸ%M7qчU\gnþ°ê|AVå—¯¬××4]cÓõYO-S¾FÖìo~ïüoúŸ âߪº endstream endobj 43 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 44 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 45 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 46 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 47 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 76 0 obj <>stream +H‰„UËn1 ¼ë+xlK‹ÔûØ8FÛCP410šER ÍÿjWëµs( ÛK®8CRCi÷mO»»½§›Û=¹Wç)ùù;ÙÏßî‘þ¸ÝþÁÓ鄨pÁn-Ài(ЂÖÓ©Ñ£:ûR‘h T+KBïPV@ú¨¦•L“mzèÅ©eùTöÅñËM)ôR§ èH4!dÐø¼z¦b»òc›ŸÅ#¿^,aQ!ý "ÌÅÄB¨„óûŽ–ØÅØÀÏ ]¢×„®R¶íñïªP¹*CuSG7ÎŒfÎÙŒ°‘ê@>×b:Ý#u[Ͱ6à«k„sjþº"h:@S%uÙ¦`Xr鬂Ädk×Twµ®gI¢jIØ {h4#oÔŠ­7絓i9{º²ÁžgWîóÕ+„) 9Ï“gsŒêyJn¦.Kj  yŠ1bœkÄÐÈb#t™ICX<£sÏ[Wælw°¼”>[½  ÅÌÃ7fcœÃe8¡rQ;Èz}“¥ ?8J²=lÊÁlðc?m¤`¬³ÅNÙRÀøxÛ#?´eâöŽ·^Òæ+ÖøŽT¯9/(¯—F ×6͎ѤŽšC™‹i¥~t¢óì+4S9S‰,¾Ò¥OîÉ}ÇçæøŸ‹gw<Ú­s|rÙ÷¸,RTBíµB‘Ç÷áþëí¾|º?|<þv‡£;Üá®û'ÀCW endstream endobj 75 0 obj <>stream +H‰lSInÃ0 ¼óü@d‘"µ\ë=EÑC t9$Úü(¥Ør‚ô`3â2ÚÓËŒÓ~öøð8#Ló›ÇzFï˜ÅNñ¹EÏõÓ³]AŠ+%aÊN#£xXcÉñ÷>á<ª¿<»vûŽ'Qç„Ô¥–¤É‘R6L©…õ+ +˜œpÀ%bwÂéÒê¶ŠÞTñ" ±©ŒxVÂÞP„Â.k÷WLO5ó Ò¹8ÔAH:iïÀ†“ËT6ÜŬ0˜´öî [ï,N3¡Pr±iÉÖY ²Yl–êBª #&6¡˜4 +ÅJ°’ÍníÔ¶—Y²9MWXMxrêk\‹ ³ mÜKÓî1 I]kš+¬Ä2ÖaËÜ–WâfKwW¬›» ³ù½®u”¼'ZdÕ9óòf$­›½g¶ÞßöÑ>ííx…?Ÿ›ƒ endstream endobj 74 0 obj <>stream +H‰\QKNÅ0 Üç¾@]Ûù8ÙR«'„Xp€Ø”'Aï/áÒ$¯°H£™ÎŒ'Éü´À|YîîpóòBP7 ÌcÁV¯n~´›ã(È%—‚X)0‰öðý6$’‰"p((9ž%ïîËD:Ö´Œ}…«+Š…¼0JaÛ#*ï^ÞÍa—5 Sømðé‚xL¢àCÆà=LÝu8$1j:™‰i‹1-·«Ë‚En„ª%˜RG-¯º÷RkÃÙn)Úv$éq!mPCuTiÄê‚Ϙx!ž³ê“ÌÿTYÑšö´~Žÿ'¯ö{üg÷#À«Àgõ endstream endobj 73 0 obj <>stream +H‰ìSKn…0 Üû¾ÆI¶/­ºz­*=êG}Rˢׯ„‡ºï® 3ÌŒK´Ûsf<Ýd„6ŒãŒ‚ŒLçñ²±y8°C¾&çñÛÈwóÝ™âuQ!u %% (¡_qã‚῞w‰ë1{Mä¢?JN𠌞·«YnÆ>áâ¦éœKbOOA¯,/t‘‰°® >@ÅQô;¤]‡Mu]î’àɇþ`Rv¦MÆ”ÜJL‰w;Ñ3v‰É÷ýz,I#¨]¦DÛŒwØ–P ÷ñ…˜@­lÔX Õ=h9ÖfÔëìiC¥TM¨}á/ÿëýËõ¾Á·gûÉáG€wN­E endstream endobj 72 0 obj <>stream +H‰\RAnÄ ¼ûþ0¸.­zÚV«ú€¨êªÚ­´í¡ß/œ("²ÇÌxgxK8œ“ÂÓSBx€B§êåõóïø C𦠕 ÛÁ)½‚Qø‡¿†—|åó9UùѨI"¨p¾CÁî`¼—Þ9¾eD{Ž•¬ d8Z²ˆXµŒ*5¡µ“ÖŒK*4ÕšFªH È‚3ô”F•Ç­³ô*\â|wÔÒP¬w ¹ª;4mÌÅ3;Ãu3owÞ-³nŠˆíùηت)lïQâî{©¸Í1M·ï×hLÏ6ËíbÝÅF‹åSŒ}ØÀ† Õôº™ÀÇ[y+@f7!ÙusM¾ “ç.w 9®z… .ð|οóþü‹š endstream endobj 38 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 39 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 40 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 41 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 42 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 81 0 obj <>stream +H‰\RAnà ¼ï+ö``Ã5´ê)­"ú«jT%•Òúý‚Áfíƒ;ÃÌ΂‡·„Ã9)<=%„(tª~¢,?ðŽß0¤IašP£B%u@œÒ+…úB^2ÿù z"¯:$"Œ +ç;ìÆ{éý˜÷·ŒhϱR” GKu«—Q…Z;i͸”BSåt0REb@6œ¡—4ʨު[2» É®/×Ôä»1y>ḃÌq×+Lpçsþ—/ð/À\X‹ endstream endobj 80 0 obj <>stream +H‰dRInÃ0 ¼óü€dR´¶kÝ¢§ zèŒ.'@šÿ¥dÙ±P²9£Ñ=¼M8œ&§ç a˜Þ ç;’MûÂû|…áU7¾ïà¢Øè‘™mA¬ˆ ©ß?á $Ö'é5c¯i6Î9;†ÔÛHoÓiÆ^sBOë2å¥ì^ᆌ¤#çÕE’¶Bp¾@Ù)ïlµ¸jÊÞ¦Ÿ˜éH,ÀŽ:½ 6„X¶˜Ê¹oµ.šìÿ€ó}/`Ÿ:fÙ:Äj›9"K,—7Æ’¶•Xfö´€Ñ 6_¡G›ÉK½[üÈnÖzJ‚åextÅ7äUÙ`ÌU¥®Hnw`%«´Œ?kP¹Ò€º¹”KW&‡:0#Ô6tr…ßð ­†—†]X«g;q`˜âZd.÷²ßE?ú#á夿ÿþ-˜ž endstream endobj 79 0 obj <>stream +H‰ìTKN1 Ýû¾@Ò8ÿl; VU]p€P¡i¥Ò×ÇùÌtè‚Å$~/γ[³yp³n„ÍpP8^‘P¡’¯ã¹²ÃaņgPR;üfò“ï=±ÇÇt028$rÒ‹ÞðfP”Ýâ×lÁD+]4½í}šŒÖ^’½Œée:Ûû\@¡SõyaöÏp©•ðJ©¨8Ìr6¥ˆã òQ^“tè‹§Y¼l H­‰ H«ÎŸsóœ[šm•ï5{Nvâ`7ûÚõŸ€\ì˜iaÔÊfÙDÉ„üz6ä°-Å8²»¡ ‘T±Aa¨$ÕDf˜óí[tñ·A¦vb¦Yu}bO¿ÀØËgÕFD½(–6ÇÎýOä+W :¦\•H¾ô]Õ¢*üŒGhå4<5¬} ÌšíÆŠ!j9)¿Ëòþáöw>3ªÌÁÿäÜ×äüîFîÐgéqÇ¿Ú=ü0(óÛ endstream endobj 78 0 obj <>stream +H‰|RËNÄ0 ¼û+ü¤NÇöJ@œ„zàV„ +»~Ÿ8‰Ó¡=¤õØ{¦éð”p8&ÂÛ»„𠄞깑Çù^ð †4¦ÉúÁ9=ÂHøƒ?†‡Üòv1BDË„–$èÙ0³ Óêèÿ«Z{k#!*ü,Èqí_*rÎИÙAÞìðµCâX7¦Š¬«“:Kq›)Ý5£;—5½™"£Îã¸n’8s›†RÝÊØx8Á;°²º/ͬÞz¦)eO&L\\°ª.þ˜e‹«^¿H‰»/A«§‚š:å‹jî^Ëä¼36§]³²þx_z“×ïÙYÊŽC³Á¢ÀK¬’w ¶é®Š¶óÙ>mç3íz§}ï ÷Çüç?ï —o endstream endobj 77 0 obj <>stream +H‰|RËNÄ0 ¼û+ü¤NÇöJ@œ„zàV„ +»~Ÿ8‰Ó¡=´õØ{¦Éð”p8&ÂÛ»„ð „žês#¯ó+¼à i&L3Z$$cˆsz„‘ð'§>†‡\»Àƒ !¢eBKôl˜Y&iuôÿU­½Æµ‘~ä¸ö/9ghÌì ߀NvøÚ!ñ ¬› SEÖÕI¥¸Í”îšÑËš‰ÞL‘Qçq\7Iœ¹MC©ˆnel<œàXYÝ—fVo=Ó”²'&..XU̲ÅÕ +¯¤ÄÝ— ÕSAMòE5w¯erÞ›Ó®YY<ˆ/=Éëçì,eÇ¡YÈ`Qà%VÉ;PÛtWEÛy‹lŸ¶ó™v½Ó¾w†ûc¾öÏð+ÀF‹–Õ endstream endobj 26 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 27 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 28 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 29 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 37 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 86 0 obj <>stream +H‰DRKNÄ0 Ýû¾@];qšÌ–€X hÔ¨#4 ,¸>Në´ªbù=ûù§Ž¯Çse|x¬w`L¼½¡™ŸwxÃoëÌXgd*ûù¾@`üCÁO„ñÙR>~ání A(e‰V —/hd³J£ñƒ˜‡88/z¢”ò§BN¸@g‚*–q;˜¬¤’LC§’0Úäiî“X‰J¢l™]Ñ¡—\À‰Ö5•ÉztÂÆÊ¢˜M6í:µ R&iÐÛ-à›’W{)·*nþ°eÆ¢ÄV¸ÃI)Xc[× Õõ›0ö}½½¯:¢^£K;ÜKwÂ[¯Z=ަëÑ®0ÞÎö_\à_€¯j¬ endstream endobj 85 0 obj <>stream +H‰DRANÄ0 ¼ûþ@];qšôJ@œ´êTˆZ|§u¶‡Z™±Çc[_+Ž§ÊøðXnÀ˜xÿ†~Þá ¿a¬ c]P‘I +âR_ 0þõ‰0>[þãn{…Å„R–h­pý‚F¶(¡4¯0ˆ½Pb¢ çEgJ)x*¤aÆ:4P±ŠëÁd%•dšKÂhc{¦=W˜lbkÑ@I”­²+:ô–+8Ñ\S™Ì£6VÅœh²i·©M2Iƒn·‚lJÞâ<§ÜP¨Xº½‡½2%¶ÆNJÁŒm]'T·{ìÂØ7öõî¾ZèÈz.íðÞºn½iõ8šnG»Àgx:ÙOq†30j endstream endobj 84 0 obj <>stream +H‰”UAnÄ ¼ó +`‰ !„kiÕÓ¶ªò„ZUé¡ê¡ß/&a’Ý•£H$X3ãlÒ¼FhÎáá1‚jâ€@mËcàÑZ€!¾¨@ð•pÏ ÷ñ«~ÒÓC`½KF;xÿVâñÔ’î:£ÔÛlm•z§[ò9ËÞ1TÓ»ž!YÒiuŸ²™7ªÏ,޼Ž%ƒÁ>[¢®ËVYŒ ÚõÌ?µùs ±ÕREÂ8”¬­ÀÅ›q!x¼÷IWj&ƒåV&¸ÐHëò9H­Ìp¹™BÚ1ò]1GöÄÈw[M*e†Ë­Â=;›F`ûÁêšáÄ„R{—@ЄIy'@ÞkÌ SZh‰l$J#šÚóÔÊWŽ—GÁgG·(ûËçƒõçâ: ˜±-ƒÛnî!·ç9ŸØîH +§/wq5ÅýÁ¤œWnÇJ·ã\VK„žÎé¿ò/ÀV»; endstream endobj 83 0 obj <>stream +H‰\TËNÄ0 ¼ç+üIã<šôJAœ´ê¨ºH ~'±ÓRU»ñŒíñ$:¼Î0\f 3¨»²mûéò÷ý®ÞàK óba^Áš0°Ëü¢0Ã/¨á™’?ê^Òô ø˜Ì8&.ï}„õ¦J榴7™=@;˨,V%­A"jFW%mVuä[¯´0A†mZsPžU}*k®xsHùâ$µ%‘³'ä=ßœY–™íX…ñ\…ñ\Å©^ÃËQS:é³íŒŸZ±Ït“éHèCRÞäÓ…¾2Wõ'À="Ú+ endstream endobj 82 0 obj <>stream +H‰Ì“ÁjÃ0 †ïz +½€IvÜø:o +])9ìÂØ(í Ûa¯?Ù^S ++ƒÁ0ú‘œßò‡LºMÂnïîB—FÂ4"YBÖXÄ#Žé8â'2îÔ·Tß˵$]Œ,ÑFçJO8 ï@>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 22 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 23 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 24 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 25 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 91 0 obj <>stream +H‰ÌTInÃ0 ¼ëü€j±l_ë +¤EàC`tAHsè÷KŠ’l9(‚ˆÔˆË %øð2Âá8"ÜÝ . +¡Eùk^~ÞÔ+|«Ã8!ÌW0€€é®3¡„~\ÕEpZm‹`}Û„ÐÁ¼(Õ6ýÀ#®}Óu¡ì’UBÓ¶=H–¶¦qÎSvöf¥ë#½KÔ7•uÝYgBü›Õ»:‰¾q"mÎ9^}Ë+éœÆge~IÜl”š£Ú¢R{¶g¥{ß r˜6”¨]HN‘ŠD;ÅmB<ŠCcÉ=Sa¶ õשּׁ—$ÞY*È…ØÆÚìP·C( +9š³'RºÞ +3ðûë +´ev±Ðä\ô4óÏ~²|/ é­Œ;åÑøCpu‰íîp—|S}ÓºðyŸŠ(sÖA|º +µµ˜¥É¬Þ$6žÅçî¥}}PgÕEIZÕUæ¾y@ðÕñ6–ί &^ös|X:ä‘J,?¦ü¤6Ð&²¤oj–Fyn51ohuÿ‡ÙѾH'õ'À-\ßï endstream endobj 90 0 obj <>stream +H‰Ü–½n1 Çw=_àh‘ÔµÆ-:¥Eà¡`4í`H=}û’:Ýùš¦C†5–|ÔŸ$ x÷i»û}„»w{Ï!BŽógòåû—ðžÂnˆp¼õ.ÇaÚ ¢ˆøš²¯ +pØ á„ÝÓ|½„gsŠöH®X'HÙžƒ[}aË +'ÿ®‚Êj[Þ†©Ul‘WË)L”5•«Ój i¨Ýk5qlX›¹±Å©gìsí…Ý-R±3•†ML9qÉX%mRž¸ ÖXÑéOÑÖoQoeR‹T˺eÔ¸±xþD¨ªWÛ)Ñê†öæ«— +™‚1»Ï0¬‚ÅÃk§—L“3¶”>stream +H‰\RKNÄ0 Ýû¾@¦±ã|º% VuÁFˆÍ0ÒÀ‚ëãÄÍТª¶üül¿8™^+NÇêñá±"ÜÀcôö»f¾Þá ¯0ÕÅc]ÐBÍJl¶ .õØãÂô¬œo¸!¡×P¢GŽÔj"ž?¡¡Í:áCJ]õ ]νï—ËŽqN› RïDYþ8™•,h)WÌw0ÜCÒÃiÿE1òªŒ5K¡p'rê:Z ššMNô¥™•’V +dõë`’}|šíøáPÖ!E1caª  „1¬ÚˆJÏŽø¾·ý–Xï!›ªÍ- ¡Ý‚²Ääï3›„­þ騯ä¿ %¢mN endstream endobj 88 0 obj <>stream +H‰ìVÍn1 ¾ç)üñÚNâ$WÄ© j<À +¨­Tzàõù’™ÎN) ¸¢j´3±ãß/ŸgöðþH‡«£Ð«×G +÷A¨Èò‹ãöícø@wáp< O$œR÷\ƽŽï‚ }'¥/oa÷ù!ÜC\JV„rÎ\Ýηahoƒgö±­i”;‚εjåFç°¹söJ*‚gÔ¦¬0­•mÈ& ®öEا&)ü7ÉÓ °É­ìl“dúâoÄa»×Pñi¦ø¼”x)·vns±ï&>i4î!ˆ+,ã:‡S¸^p??,h²ï‡óÝݤ™“Wâ³ç Äè¹6] ™¶¾S˜qqxUö¥m®9ѨÑlZ ž4rX´:Y¸™S)è©OhŒ ]ÙòN"©Ì$µqNÏdG>å.ðÄi}-€\!wvU¨ ÆQn`\[Lì%çb³ ÕÄ­e2„Qš$?IQYê’B›îRQNrlô´Øt6”wAp¦½Ã/÷:«o!"x e"4;-Ðlµ=j&4 ŸÀ÷_iRá\¦&u®Å#YÚ¬Èê$WÌà‰Ì‚:XØ ÙÓLnʹMv¡¿*gUŒ)Ö7ºõº}»)bb3Po=ù¨<²IÅìi“ÁT°¹H¹Xtå4<׫¸&€ýª0aèÑ;5öÚ¶ð«ë5ÿãþZÝêü´øsø„ѸŒÄxJ/¡—Ñx ù/äf~=þðµÞ Šö>íT„²›TpB#ÞsŸ–pBþW.jbBlìnæÕ7Ë7Wøÿq~0í¥n endstream endobj 87 0 obj <>stream +H‰dQÍnƒ0 ¾û)ü Î!\›M“*µSÅam«*¨ÔqØëÏ&Sðgüý4ï›s&<¾d„&„eF»,œËš7n}Ï@HØRÝ?ŸðOØí~à£jäiY8ä ÈWÒÁÈ8L $Ï>ÔQ—ð—­ï¼OO~ Õ2]ÏÙ¦%Èa‘…Á¾óÆ{«Å.š»½3‚u;â\6Ú­ u¸°p¬¥x¤:À¼¾²TSQÙlûÕ§´ɦRÆÕAÀf8*Ô(Bß"þû§7>Á+X=9ªW ½Èµ-óY¬ &_oëõÌ×{…?`Ñ endstream endobj 31 0 obj [30 0 R] endobj 92 0 obj <> endobj xref +0 93 +0000000004 65535 f +0000000016 00000 n +0000000147 00000 n +0000041093 00000 n +0000000000 00000 f +0000203127 00000 n +0000000000 00000 f +0000048075 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000048148 00000 n +0000048344 00000 n +0000049537 00000 n +0000054724 00000 n +0000120312 00000 n +0000000000 00000 f +0000203494 00000 n +0000203870 00000 n +0000204245 00000 n +0000204625 00000 n +0000199368 00000 n +0000199738 00000 n +0000200108 00000 n +0000200482 00000 n +0000045092 00000 n +0000207414 00000 n +0000041174 00000 n +0000041267 00000 n +0000041361 00000 n +0000041455 00000 n +0000041549 00000 n +0000200855 00000 n +0000195578 00000 n +0000195953 00000 n +0000196328 00000 n +0000196707 00000 n +0000197087 00000 n +0000191409 00000 n +0000191779 00000 n +0000192158 00000 n +0000192538 00000 n +0000192917 00000 n +0000041664 00000 n +0000042081 00000 n +0000042498 00000 n +0000042917 00000 n +0000043333 00000 n +0000043748 00000 n +0000044123 00000 n +0000044498 00000 n +0000190938 00000 n +0000045392 00000 n +0000045279 00000 n +0000182109 00000 n +0000190326 00000 n +0000189755 00000 n +0000189095 00000 n +0000181584 00000 n +0000181095 00000 n +0000180604 00000 n +0000044873 00000 n +0000045163 00000 n +0000045194 00000 n +0000045427 00000 n +0000182409 00000 n +0000182668 00000 n +0000195223 00000 n +0000194880 00000 n +0000194562 00000 n +0000194145 00000 n +0000193335 00000 n +0000199005 00000 n +0000198643 00000 n +0000198208 00000 n +0000197811 00000 n +0000197457 00000 n +0000202809 00000 n +0000202334 00000 n +0000201916 00000 n +0000201572 00000 n +0000201228 00000 n +0000207096 00000 n +0000206415 00000 n +0000206084 00000 n +0000205472 00000 n +0000204995 00000 n +0000207439 00000 n +trailer <]>> startxref 207624 %%EOF \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/design/iconset.svg b/kubernetes/dev/tekton/examples/example-bank/design/iconset.svg new file mode 100755 index 0000000..cf4e94e --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/design/iconset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/design/stride.ai b/kubernetes/dev/tekton/examples/example-bank/design/stride.ai new file mode 100755 index 0000000..08b44c8 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/design/stride.ai @@ -0,0 +1,1681 @@ +%PDF-1.5 %âãÏÓ +1 0 obj <>/OCGs[29 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream + + + + + application/pdf + + + stride + + + Adobe Illustrator 24.0 (Macintosh) + 2020-05-13T08:35:37-04:00 + 2020-05-13T08:35:39-04:00 + 2020-05-13T08:35:39-04:00 + + + + 256 + 52 + JPEG + /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgANAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9MnXLIBpKSG1VirXYQmE EGhPL+UHq1OPvlH5iPPeu/p+PPk5P5SfLbi7r3/t8uatcalDDN6CpJPMF5vHEvIqp6FjsBWmwrU5 KWUA1uT5MIYDIXYA81W1uobqFZoW5I1RuCpBU0ZWU0IIIoQcnCYkLDDJjMDRVckwdirgQRUbg9Di rsVWyyxQxPLK4SJAWd2NAAOpJwSkALLKMTI0OaBOt2yoJZIp4rY/8fDxMqAeLV+JR7sBlP5gcyCB 303/AJWRNAxMu6/xfwTAEEVG4PQ5e4zsVdirsVdirsVSu980aDZXkdpcXkSTOSrDkCEIFf3hr8P0 5jZNXihLhMhf45uZi0GbJEyjE19/u70yjkjkRZI2DxsKq6kEEHuCMyAQRYcSUSDR5rsKFO5ure2i 9W4kEUVVUu2wBYhRU/M5GUxEWWcMcpmoiyg7TzBo13J6dvdxySeoYVRWDFmA5fCBWooOvTKoanHI 0COdN2TR5YC5RIFWmGXuMka6vq/+L30traul/VvVjuUhl2kFNnmYrHvU0VQ3zGW8I4L6uP4svF4a 9Nd36VewutZk13Ura5RBp1usJs5FidGcyAlqyM7K3DjT4VHXIyA4QRzZQlMzkD9IqkF5a1rX7/Vt XttSsfq1paSsunzenJH6sYnmiBqzOr/DErVHHr0pQmWSEQAQWvBlnKUhIUBy+Z/Ur6LqurXflk6h cwAaiFuCIFikiBaJ3WMem5Z/iCjvv2wTiBKhyZYskpY+Ij1boHSvMPmK58oajqlxYgalbRSvZwCG aMTMlusigQuTL/ekx9fi41HXJSxxEwL2a8eaZxGRHqHLY77d3PnsnOgXl5eaPbXN6FF1KpMoWN4Q DyI2jkZ2G3ichMAGg34ZGUATzYpq9x+Za392tpDL9V9Y+hJAbMgRBm4CNZhyqy8OZduvKlBTLojH W/6XEyHPZobfD9Kjep+bgspp4JY/rLXBEdqgtzxiSGVqqzp9l5BGoViWPimEeFbGQ1NWOd+Xcf2f sTXzPceeINXsJNFha4sFiL3kCi3AkkDCqM0p5rVK04nrkMYhRvm3ZzmEhwCx15JPLN+bSW3F4y12 lrMpe3+qek04MjRSfvAWYmsalaKOp3yYGK/7WgnU150e7n+KR08n5hBSYhcNMt6A8XGxETW3OTj6 cm7KPT9P1OSE8q8aDpEeH9nm2E5vPn/R5b/stPFi1SPShpS2nJ1i+rJdlo/Q4BeAcry9T7O5Xj12 r3zVgTEOCulXtX6/sd8ZYzk8Ti68Vb3313fG1S2trrS5JVhglvoJuLBw6eqrogTi3qslVIQUofHJ QhLGTQMgfn9rGeSOYCyIEeRrnfQFFaZbzxRyyXAVJrmVpnjU1VKgKFrtU8VFT41y3DEgEnmTbTnm CQI8oivf+PuVNRvobGylu5q+nEKmgLHc0Gwqepw5cghEyPRjhxHJMRHMsAn/ADI1F4ZEl0+B4mUh 0PrUKkUINVp0zSS7VmRvEV8XpIdhwBBEzfw/Wk/lDzTqtnq9rYwyV0+5uEi+rSEuqLI4X4CdwRXM XRaycZiI+knl73N7S7PxzxSmR64xJsdaHV6/nUvEpfrPAR2zy/7yx3Eb3FegUV4k+yycCcoz8hfK 9/x76cnTXcgPqMTX491oSQa9LqLG7litNItGMvrRn4p0pUI/KvBVH2/HtlR8Uz9REYR39/46t48E Q9IMsstqP8J7x3+SN0RGTS4FIKpQ+ip6iIsTEDXwSgy7TioD8bdPscfVG8h+339ftR2XOOxzRfMd 3rFtC0clpZzSLUxO7Sy9aVEX7qgPY8jmBg1UsoFcMT8z8tnaarRRwSNicgPgPnv9wTT9EiTe7up7 n/IL+kny4RcAR/rVzJ8G/qJP2fdX2uJ+Yr6Yxj9p+Zv7KX6KSdHsCdybeKp/2Aw4P7uPuDHVf3sv 6x+9Bebb+4stFla3EgllZIRLGATH6jhC25FDQ/D70ynW5DDGa5nb5t/Z2GOTKOKqFnfrQv8At8kh sNLguY4LmJZ7OOyknEVoqRhnAR46R1J5ybVkL13qOmYePCJAEXHhJ228xt3nvt2ObOYkxPDLiEbN nbcHfuH82vfzV/J+oOuozWKW0sVvNEtwFKBY45OTo7IOR4pIUqB2Ne2S0OT1mNEAi/cd7+Ba+0sI MBMkGQNeZGxHxF/JmGbV0iW+ZEik0O7ikTmsyCILXj8UjBFNaGlGYHpmPqgDjIPVy9CSM0SOm/y3 Y/o3lODQddspiUlNwskKGNXQrJw58iHeWo4ow2pmFg0Yw5Inndj8bl2Op7RlqMMhuOGj05XXQDvD Ms2ro0IZdU+v+mLeI2O37/1T6n2ST+74U67fayrinxVQ4e+/0N3Dj4Ls8fdW3zv9Cnb3Wrvqs8E1 isWnIlYLwSqxkeo24faXY/h75GM5mZBjUehtnPHiGMSErn1jXL4t6ZcajM939ciESxzMluaEckHR tyaj3/DDhlM3xCt9kZ4QiI8Juxv719pNqMiyNcW4hcKDHHyBBbeo5qWqOm/EYYSmbsV+Px0RkjAV wm/x3ftQqXet/oGW4uLdYdTVXKQIDKKg/D8K77+AOVieTwiSKn82048XjCMTePbfkmNs0j20TS7S MilxQr8RG+x3GXwJIFuLMASIHJilv5ltI9cnlutQiEAdolH1m24AcyF5KZRxCqK/ZLVrvT4cENNk 4zInbu3/AB+3quTX4eAQA36n0/rv9nS92QXeo2U2kXV1b3UUkKxyD10kTgGCkf3leIofE5OcCRXU sceWIIlziEh0nzTp9tFL68yOSamlzaMBTqP71AP8964MOmnHn+n9S6jXY5kcPT3f8UUx8wX8LaRB OlwsHrMrITJEKgqairSIhpXsxyOXDKYoGmeHVQxnikLB9yH0bzTpC21vbSXUZYDi87XFsV5EnrSZ 237dcsx4JRiAd/m05dZjnMkbA+Y/Whb3V/P89wyado8dvBU8ZJ3Rnp4mjqB8qHNVkzaon0Qoef8A a73FptFGNzyGR8gf1KJvPzOtXBeztryPvwKj6PtofwyPHrI/wxl+Pe2eF2fMbSlE/jyLKdKury6s 0lvLRrK43DwMyvQjuGXsc2OGcpRuQ4S6fUY4wlUZcUe9FMoZSrbqwoR7HLSGoGmDXn5V2ktxI9td rbQsf3cXpPIUHhyM2/3Zpp9jxJNGh7v2vQYvaCQiBKPEe+wP96v0j8sLexv4LyXUHma3kSWNEjEY LIwYVqz7VGHD2SISEjK6N8mOp7elkgYiFcQrnfP5M3zcOgcyqylWAKkUIO4IOKg08/07yn5qiubG 5up/UsluFaXSzIzJHHy2PAn0/h60HTtmkxaPMDEyPpv6b5D7npM/aOmMZRiKlw/XXM+/nu9AzdvN uxVA3eiWF3JynTkh4B4dvTcRmq8lI7V7de+Uz08ZHdyMeqnAbfPru1+iI497S4mtf8lH5p8hHKJE A/1QMfAA+kkfjuNp/Mk/UBL4b/MUfmirO3W2tILZSWWCNYwx6kIoWv4ZZCPDEDuack+ORl3m1t9Z W99ZzWlwvKGZSjgbHfuD4jqMGTGJxMTyKcWWWOQlHmGI3vlzzEuoWZj9K6RHkLXIllgJ5RFOUypW jGtC0e7d/HNXk0uXjjVHnvZHTr+sc3dYtbg4JXcdhtQl1va+nlLl0ZFoejfo9JJJXWW7n4+q6LwR UQUSKNeyIOmZ+nwcFk7yP4AHkHWarVeKQAKiPnvzJ8ymeZDiJd5gkuU0i4+rWYv5XXgLU9GDGhr7 Ab5RqSRjNDiPc5WjjE5RxS4B3sZ8uT+Y11eE3+jyLEymIXLyyyGJTv8AD6ruADTem+a7Syy+IOKG 3fZNfMu21sMBxHgyC+dUBfyAZvm4efSdPMdg2vPpf1tDMKILYQzcw5XlvL/d0opPTLPDPDdNAzx4 +G/sKjaeabCXWJdPN6kkqs6LbJbTq6ld/iduSEBe9BXCcZq6Yx1ETPhv7Cu03zJa3l3NCt5HIER3 CLbzxN+7I5MHkPFwK/sjGWMgck484kSL+woXSvM9pe2d3HFqYuZ7eAubmO0mXhuV5spBVjWlFHge 2GWMgjb7WGPUCQPqsgdxag8z2h0SeRtWEksZC/X1tJQE5mi8o+JBNfwp88TjPFy+1A1A4D6vjRTD y1q8GoWkgS9+vy27lJZvQe33O4BVwvT2yOSNHlTbgyiQ53XlSQQ+WPJmo6rewRfW1u3MrSv60oDc ZAJChLHYO1N/oyrHr+KXCOnl3bN2bsjgjxn+Lz790/j0DRNN0S6so4Sti8cjXC8mdmUqeXxMSxNM nPMR6j0Y4tNGuAD6v0qWm6P5ZubZhBYQmONjEwZUfdTyIqpYdW33+eQhqDPcFlk0UcdAgcvxzWeY /L2jXWjw2UvO1toZFMAtqIQxJ2Hsa1OS8fg9RYHRjKOAbUlem/l1ofKC9iubhkPxcOQQdKU+CnEg k9P4ZaNUZRsNB7OjCVEnZmeUuW7FXYq7FXYq7FXYq7FXYq7FXYqkEv5geQ4dQl06XzJpceowFlms mvbcToy/aDRF+YI77Yqm+n39pqFnFeWcnq20wJjehFaEg7MAQQRQgjFURirsVdirsVdirsVdirsV YHP5W16XzvJqwiT6obiBgxcKRHFSrAKKs3UfEfH2zKGSPBTrTp5nNxdLCro3kK9t/Ml1q17PHJG8 srRRFFZqSVKuGoODKfwrgnmBjQTi0ZGQyJVdE/L79Gai99LPHdPwkWJPS9MqZF40DAnYLUbg/aOC eexTLFouCXETaS+W/KWvWum66lzZrHPc2gis1HpnlValCwHL4PhVa5ZkyxJFHq0YNNMRlY5jZS0r yZr1toesWkliBJIYvq/GVPiAblJ6Y4ECvFevgMMssTIG2OPSzEJCmWeQtN1Wx0iRdSQwzPMxjgqv FEHTiFCheRqaZRmkCdnN0eOUY+rvS5l80W+oXVxbaUyNI7AyxzW/xJyc7crau/GtK71Fd8jDDiBs VZ8v2s8mo1Ehwm+Ectx+pPDLqy+W7ma6t3lv2SQ/VOaOQN1Cq6RBTVfi3Q9aHAYxJroyjOcYcX8X 48mNafqfmSOdre10udPVT1y/qwjnUdTW2py+ZyccGOI2r8fFplqs8yAQTt5f8SmXmjWLi28vWTXd rKZrqRUngBUzKaFm48IpVagB7Lt4dMiMMZkg8myWqniiJCxL8eRSS384a/BDBTTrtLdQGatBxT4a 1Bs1Y05duvYnLRgiBQr8fFxZazITZB/H+a9IzGdk7FXYq7FXYq7FXYq7FXYq7FXYq+b9A/5xkit/ zQ1nV7fV7m3h064iuNPNxYkxSm4UyFRKHhST0mAVvT+njir3LyV5XTy1of6PEpmllubm9uH/AGfW vJ3uJAmwogaSi13piq3ylB54ijm/xVcWU8hSIQfUedA45eqW5pHsfh4/TirIMVdirsVdirsVdirs VdirsVdirsVdirsVdirsVdiriAeorTFXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FWC/lRbeTFs tVm8rG49CO9ksL8XDKS13ZErLIVX9ty/xM27UB6UJVZ1irsVdirsVdirsVdirsVdirsVdirsVdir sVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdiqA0f9A+lcfob6r6X1iT639T9Pj9Z29T1 PT29Tpyrv44qj8VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVdir//2Q== + + + + proof:pdf + uuid:65E6390686CF11DBA6E2D887CEACB407 + xmp.did:e85ebae8-2da8-41c6-9b4c-9a9c86bcdcb5 + uuid:36c39997-d0a0-5747-9e1a-3a6764a85350 + + xmp.iid:a0b2e635-7a5f-4301-995e-a93c3b0c79ce + xmp.did:a0b2e635-7a5f-4301-995e-a93c3b0c79ce + uuid:65E6390686CF11DBA6E2D887CEACB407 + default + + + + + saved + xmp.iid:a0b2e635-7a5f-4301-995e-a93c3b0c79ce + 2020-03-23T15:23-04:00 + Adobe Illustrator 24.0 (Macintosh) + / + + + saved + xmp.iid:e85ebae8-2da8-41c6-9b4c-9a9c86bcdcb5 + 2020-04-03T13:06:42-04:00 + Adobe Illustrator 24.0 (Macintosh) + / + + + + Web + Document + AIRobin + 1 + False + False + + 800.000000 + 600.000000 + Pixels + + + + + MyriadPro-Regular + Myriad Pro + Regular + Open Type + Version 2.106;PS 2.000;hotconv 1.0.70;makeotf.lib2.5.58329 + False + MyriadPro-Regular.otf + + + IBMPlexSans-SemiBold + IBM Plex Sans + SemiBold + Open Type + Version 3.1 + False + IBMPlexSans-SemiBold.ttf + + + + + + Cyan + Magenta + Yellow + Black + + + + + + Default Swatch Group + 0 + + + + White + RGB + PROCESS + 255 + 255 + 255 + + + Black + RGB + PROCESS + 0 + 0 + 0 + + + RGB Red + RGB + PROCESS + 255 + 0 + 0 + + + RGB Yellow + RGB + PROCESS + 255 + 255 + 0 + + + RGB Green + RGB + PROCESS + 0 + 255 + 0 + + + RGB Cyan + RGB + PROCESS + 0 + 255 + 255 + + + RGB Blue + RGB + PROCESS + 0 + 0 + 255 + + + RGB Magenta + RGB + PROCESS + 255 + 0 + 255 + + + R=193 G=39 B=45 + RGB + PROCESS + 193 + 39 + 45 + + + R=237 G=28 B=36 + RGB + PROCESS + 237 + 28 + 36 + + + R=241 G=90 B=36 + RGB + PROCESS + 241 + 90 + 36 + + + R=247 G=147 B=30 + RGB + PROCESS + 247 + 147 + 30 + + + R=251 G=176 B=59 + RGB + PROCESS + 251 + 176 + 59 + + + R=252 G=238 B=33 + RGB + PROCESS + 252 + 238 + 33 + + + R=217 G=224 B=33 + RGB + PROCESS + 217 + 224 + 33 + + + R=140 G=198 B=63 + RGB + PROCESS + 140 + 198 + 63 + + + R=57 G=181 B=74 + RGB + PROCESS + 57 + 181 + 74 + + + R=0 G=146 B=69 + RGB + PROCESS + 0 + 146 + 69 + + + R=0 G=104 B=55 + RGB + PROCESS + 0 + 104 + 55 + + + R=34 G=181 B=115 + RGB + PROCESS + 34 + 181 + 115 + + + R=0 G=169 B=157 + RGB + PROCESS + 0 + 169 + 157 + + + R=41 G=171 B=226 + RGB + PROCESS + 41 + 171 + 226 + + + R=0 G=113 B=188 + RGB + PROCESS + 0 + 113 + 188 + + + R=46 G=49 B=146 + RGB + PROCESS + 46 + 49 + 146 + + + R=27 G=20 B=100 + RGB + PROCESS + 27 + 20 + 100 + + + R=102 G=45 B=145 + RGB + PROCESS + 102 + 45 + 145 + + + R=147 G=39 B=143 + RGB + PROCESS + 147 + 39 + 143 + + + R=158 G=0 B=93 + RGB + PROCESS + 158 + 0 + 93 + + + R=212 G=20 B=90 + RGB + PROCESS + 212 + 20 + 90 + + + R=237 G=30 B=121 + RGB + PROCESS + 237 + 30 + 121 + + + R=199 G=178 B=153 + RGB + PROCESS + 199 + 178 + 153 + + + R=153 G=134 B=117 + RGB + PROCESS + 153 + 134 + 117 + + + R=115 G=99 B=87 + RGB + PROCESS + 115 + 99 + 87 + + + R=83 G=71 B=65 + RGB + PROCESS + 83 + 71 + 65 + + + R=198 G=156 B=109 + RGB + PROCESS + 198 + 156 + 109 + + + R=166 G=124 B=82 + RGB + PROCESS + 166 + 124 + 82 + + + R=140 G=98 B=57 + RGB + PROCESS + 140 + 98 + 57 + + + R=117 G=76 B=36 + RGB + PROCESS + 117 + 76 + 36 + + + R=96 G=56 B=19 + RGB + PROCESS + 96 + 56 + 19 + + + R=66 G=33 B=11 + RGB + PROCESS + 66 + 33 + 11 + + + + + + Grays + 1 + + + + R=0 G=0 B=0 + RGB + PROCESS + 0 + 0 + 0 + + + R=26 G=26 B=26 + RGB + PROCESS + 26 + 26 + 26 + + + R=51 G=51 B=51 + RGB + PROCESS + 51 + 51 + 51 + + + R=77 G=77 B=77 + RGB + PROCESS + 77 + 77 + 77 + + + R=102 G=102 B=102 + RGB + PROCESS + 102 + 102 + 102 + + + R=128 G=128 B=128 + RGB + PROCESS + 128 + 128 + 128 + + + R=153 G=153 B=153 + RGB + PROCESS + 153 + 153 + 153 + + + R=179 G=179 B=179 + RGB + PROCESS + 179 + 179 + 179 + + + R=204 G=204 B=204 + RGB + PROCESS + 204 + 204 + 204 + + + R=230 G=230 B=230 + RGB + PROCESS + 230 + 230 + 230 + + + R=242 G=242 B=242 + RGB + PROCESS + 242 + 242 + 242 + + + + + + Web Color Group + 1 + + + + R=63 G=169 B=245 + RGB + PROCESS + 63 + 169 + 245 + + + R=122 G=201 B=67 + RGB + PROCESS + 122 + 201 + 67 + + + R=255 G=147 B=30 + RGB + PROCESS + 255 + 147 + 30 + + + R=255 G=29 B=37 + RGB + PROCESS + 255 + 29 + 37 + + + R=255 G=123 B=172 + RGB + PROCESS + 255 + 123 + 172 + + + R=189 G=204 B=212 + RGB + PROCESS + 189 + 204 + 212 + + + + + + + Adobe PDF library 15.00 + 21.0.0 + + + + + + + + + + + + + + + + + + + + + + + + + endstream endobj 3 0 obj <> endobj 5 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 23 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 24 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 25 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 26 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 27 0 obj <>/Resources<>/ExtGState<>/Properties<>>>/TrimBox[0.0 0.0 500.0 500.0]/Type/Page>> endobj 28 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 800.0 600.0]/Type/Page>> endobj 31 0 obj <>/Resources<>/ExtGState<>/Font<>/ProcSet[/PDF/Text]/Properties<>>>/TrimBox[0.0 0.0 800.0 600.0]/Type/Page>> endobj 43 0 obj <>stream +H‰ÌW[oã¸~÷¯à£ŒÞ%=Îd²Ó3ɬãEQì…#+± _vc{¦ûïûCR’/ÙÙ¢í¢bŠäwÏõêþZ\}º–âÝûk1úe$…—RTøÏ‰xiG›Ñ»éèêúAŠf'¤…u5~WBìšÍèê–žw£«éT +%¦O#YH-¦P€ ?mU”Ò*Œua|YŠézôãøÃûÏ!ÞeÊŠñÛ‡Ûë‡ìoÓ?n¦€¨+bUÒ¯–U`õ ð¶¨J'L- ¯¥ÍzD+ëQ®]¡µqXrW(S ë +£0Õ®2‚ùb”+UÔÞŠ4Ô`Zw_bë¢óÂ[MS]%1‘<¯NàÇÖ5cjÌ+-xp„H'HÚ›BáœÓ…®ÈËB9×Íjf÷6ß’ä¸E`í|QÖJèÂ;Èg¹*L‰³a/àq75±«UatE§¡}]>DA•ÃPÒ¼,$$ź^œi](q|¥fô4ú~𠌥)ä m¼<ˆ‚¨ÒáÉÈÀÚª\]¸šEuÂj~«fd*Ö§ ‚8½.¬¬*ôgÜŒè™@á4©˜¬ÎÑ3—%=;¸–а‡^°Gžfª ìðÑâqpœ*œÑÂ@¾ªq¦h«G< PèÉ“:j¾X7YÅ öA:¨NЭa¦7’ár&Î ‰ »™bHB4+£a·+±À(L5#g:pŒ»²„—ùþßöZŸRu¾j,T¢‚§Nn?üi*¦™†§Þ‹›ÉÛ‡&7ì­ˆp¸Ôt~¶orói)ÆÓÉíõT|žd +“ûk|UFŒnï>0ÄÕTý=I‘BF”:U¾pá€å˜f¥/Z1Ÿeà°Ÿ‰Ýáñm“帻Ålµ‹YF?({ÜŠ=޼d9Ž,Ÿ™¥{±Ï¼oEº…*t¸Ãöq?[nÄÓ ‹»]óé&ótj»a¾qiµj_xµ}ÉœÏv‡°ÐŠíÓ9îÏíËn»™­zá›Ì‘œÛMD _6ËͳX,×bû"àñu¹_lûsÌÃf~€6ÚÕ,«ÄøW1ÛÌ£¸¹—¥g_SÒ8mWËç ïr»I:K÷mÅÙ¥ +†É%íª5x7§?úå.¾[|ªÝ>“(ä@á¢0gÄv·£GzbSÆ3áB힎5˰­9¬wûÙ&nÎàXã"å·×Rí·òžñÆ×ˆ¦®FZóegDqv„ɤAŒG̬:!àˆ"DÁÒL¡Ch­9‘Ä1~…÷ràCøãdŠ´*µ†Ì(´] êu t¬VŒ8Rù:&©´@VàÐçTEÎMBQ’ §íˆ×®'$çÐãc(±ðÍ+{rsp-mE7”†s6).'^ÌŸ„­LÂ7cÓ­Ò˜ænHð¥B 3Ê—|í +—A¢×žÜõÞŒ`ëß_Qî¨CñPRfe%6#Í’. #ײö”ØHô(&浓{›ôâöôÅ»ë(Ê®LÈáÒR"(¥ÆÅit‘6 H›–;Â%Vá‰0²-®})+B§Áƒ¤ßð>à—XÓ4!ÅL²êÄ^»ž’iÙI~í†dº«–CR¥åžH&¡ÎlD³tIÊh,üìÑ낵Êí°Ak<ç[«1T•…>žv˜²â +p=2%ÜÝ ‘ÛPþ­{”ø…t[¼1}1¾P‚ JE|î¦+*ð!1Yõ`™0·„gʈ×IæM'UúˆÒ â,û3å1dyÄ’Ž„Zõ¢Ð¯»Ó‰È†^à°ê¨à‡;85t*H 9õe(qkKa¢¨U¸RÀo*®uQ*.ôøš!—zʯWªÁÅl—²ÿ® @-•tú7®“ê2VN§)\r¢´ƒê†¶¥ú¦>–%à +§ºPáð1®qþ‹µiªC™x†Ö×AÖÿ úIßôÅŠ›åf¹5‡PFµÒM:ã9gÔW¼þwÔ»™3IÓ—\ÑyÔÆþFƒrÉ?ßOx5ÎßÝ~¼Íx™ª¿¿~Ó?Þ~º þ6o3VãÒRjl¾äÝñº3v‚Ÿö4õt/Lϵü{‚ø}½‰=~©3üðt´ûøºX6 Au-;cïXäï_–óÞgçhz › ä ¬‘ÊîýË!¹ü!íê‚O0¸õz»A¤9ìÀðŒõLëY³XnÚ,G7Γ˜íl>{\µ]‘ÏX q«uô:)ó‚Þ»fð<ûS7»5‚#d•—g“r@Aá°AúK¡ÕÕáù¬:y>Ù…% +[U !"ݬë(zG‹!a·¢äD* d´=b‡-°GÃΫ㪈×}RiW®\dæ‚!Ó§°/gƒôŸº}îb~I6|òþŽ"ƒîGö#»‘¿Ó.§ãíy£ãû&­[ã¸ÕBLñ&Åœ¤\Ó«ÜLð›O×ÿ%¦zú endstream endobj 29 0 obj <> endobj 44 0 obj [/View/Design] endobj 45 0 obj <>>> endobj 41 0 obj <> endobj 42 0 obj <> endobj 48 0 obj <> endobj 49 0 obj <>stream +H‰„•XUGÇÿÿ3W4¨XH AÅûž½·¬]{[¢îªQQT$¶ ö5hŒ±ÄK,‰±‹Ø–5š¢±óÀ»‰Å{Þóeó™Ý{¿™ygæÜwç?çœß<´r#!mÚW¬‚Ì뢶Ða‘}ÄLXðöëeg.çì ]PïÈ>YölõÒ§ÿðÞݽËÌrg×Þ+¬§o³ØA€ÿ$uª®™þþ»´+5,ËN|êôØ#lPpÔz ta »6,2s½R]íìa½&ç«ö\í®€i9pHTF<:U—»×#÷Êò¯zP÷sF¤²2UG EæÈnèÄš:›3»É&b–@î‡À™¥Íê·ò(}.&WF1–³H_\ìžoIp¿ â6@Ïoêùé/É/>Uû <Ñ™ÌëÕø¿/ƒèˆ,Â@4AôFŒÄ´E3´FÔF="Á¨hˆFhŒ´ÃLÄTôBS8àDQCq”@I”Bi”AY”CyT@ETBeTAU¼‹ ª£j¢Â1­L}XðBväн{#'|y‘ùá«êÞB¼ ?¼D!FŠèôÅ ôÓì0Šø wp/¯c ° ñ؋ݸ†Ûx€{¸ÏÌMo椃ÅXš%X’Ù‚!lÅÖ…˜…‚OņˆÆP|d‚M &s 1ãð ¦a±l®xI6ñÃg†áR),žø31 _b’XEÚ˜iŒd4ðk£Z¢ þ©ÙÒÇ|X€nèŽMØŒ1ÿBWD2‚3ØŸr—qWr5wq*ÜÏ+¼ÆÌn˜Ú¦®idê™&¦… 2-MCX9ri“õ,¼ôíšþzâ55^]4Ž#ÃÏ?.åzfHA©.e§–KÆ2¹L~ó–)hŠšR&ÆL5ÓLœYjV› æ¨9aå±*Z•¬6VwkˆµÐZa­µ6Y;¬ýÖ9ËeÝ´[i>¤ÙoÚþv€í´KØ•ìªv-»¡i·§ØKíåöJ{½ÑÞb'Ø»ì=_G‡ÓQÂQÁÑÖÑÍ1ϱƱɱͱÃqБè§—33¿Óßà,ëlê uö*~¬¤oÉ–eóÝI¾<õìsÉÈðdlneÍ¡`=ÕpÍÕ%…KøŸ‰ŸGáI”³Æë…%TáxU8ÃÌ4Ë̳ѳ`åU…•­k°g-±ÖX묭Ö^ë¤uѺlݳžªÂXU¸ÄöµýìB¶íQXÅ®éQeÇf)\eo°7ÛñQâhïˆs¬v¬wlu$üIa¾?)왥ÐÇ£ðÌsªBf<öhDF²¶•™Š3¼_•kú¥ôe˜¡Y“ ­ÙúPJ¾8­kš-é3Óã´ïäñ M/’nÿ}é?P*^ Ôä©‘i'—NJ.–\<¹Ìå©zO†+Ýõp¥¹žºR]\]ã\c\“S\}2ŸH™¡m´ÞRú%ÍQïT iXRtRxR`R©¤’ç/æºp +(°ÎwmcµÜ”¦™mió§g‡rVÎËE¹þjorUîIê–zË …•—YÚkdý³VÅ„˜v¦¿‰6ÃÌXO/×Ç›D]s·€cµ&¾þ¬¨×Îö·Xãuœý—ùi¯ñåéc2·óyúßôü{f1ÎLS¸ 5‹1C”LC•?¡Jæˆ6uµÊÇÉ yi‚•PQ˜nZÈs G˜Ég|L~ôTõS¶D{H9FY9Ki9Ckfug¦*;÷»Y£ÄÚ‹ñLTÖ¸‰si¼¬DLPªnS¢Æ+SS”ª”«nªæV®*UqK¹ZZÉZB©ZX^ÉÚÂÍV†±¹òn0v²?¶rvq®p"®s~åx\ådÜàÜäl<â4Üa~ãçxÌé¸ËEHçB¼ÔÊv3ø½”cÙø-óq-óp9ßà7Ì˯™ë˜ŸX€ù6ý¸‰ïp r³f×Vâ6f<˜@›ÛY„NîdQb9îfqdY7©yšux†õø ëò,yõyžÁ<Ç ¦°]lÂ$6æ=¾ÇÛlÏ«lÉ»ìÈ[lÇ;ìÀTvã3~Àúqa_!?äQVâ}¾Ï¡ØÃ±¸ÌìÀ‹lÀd6Í"yK¥zéh:˜÷LÍåN¦­æsÓÙ´7ï›PÓÍ„™V¦µ4Æ i"M¥™´”Ö$Í¥•Ô’:RWêICÉ!Ò@‚¥¾4’ï儤ÊQùA~—‡òHK’$Ë­°³rSÈ<™/ûåsùRvÉÙ+ûd|#d¥,—-²[®ÈwrLæÈ¿å 9.sågY,§e©\¯µFWÉ%Y-.Y+)ò­\“ rK¶ÊmÙ&w$^«6Aî+ŸÊAùE~’Eò•~of*‘ãäˆÌ–“²@Òäü( å”,‘s²BÎÈ2¹,ë´æ×ËuÙ(¿Ê&¹!›å®l—ßd'Ÿ2”Ù•Oرƒ°ƒ£Èáhe,ŽñcæGØÇá8À8È‘8ÄaØÏ™øŸá!ç •_à ç!óñŒ ðœsñ”kèÃUÌÅ},Å,Ó¬ÆYƒ?±&f-þÀê<ÆÊ<ΪüžïòÄX¯Ú˜6¯+|Ͻ6`0æbó‚M°CiJ€£BMœvØ’¢’6!U!‘¨¦©liJ•IK«uZ5mS§výÚ&¹™4÷O¦iÕ¤N +Û©U»îCÑ–VÖ®i×nË›=÷¾¯ç«ë‘¼¾÷ž{ï9Ï=çÜsÎ¥(½N[鯧wi/}@IúMÓG´Ÿ.Ñ }H)ºL‡èß4O:ÝGWè~•ûgT0‹zc•Æsì‡ìyöê€ÙK¢A´ +‡¨Õ¢ùªVÔ‰zш¼Õ,Z„G´‰vd°ˆèÈcÂ'6‹èa^ÄNŠnAá÷‰Ã¨”ö¡Ú˜E–DÔ‰#ÚìAÝDõ² 1c5â5³_¹Ùi7*Æc¬ˆ—2;êJ;¿ÀìÆãf›L¾BôT†®<–a#-ëˆGâà`†QÀíŽIÓ=ð]ôDÀ=𣉤–r¯¹×vϯ¹G݇çæÓ–ÕbâÐZ*äN³}É#ø½+éI¥šòÝC©Ôíàc‘|,ŠÏZ +L Š\Æ"k`ÜÞÉäÞdúÄHSzh$Õäñ¸cés“Éô¹‘&O*…UEy¤hWŽÔ›˜‹¹¨ ƒË¾dz¨)ÍRkkÆHó¤O¬­5­áæ¥äub׆L4!9ŠŽX†NLª©š§I4æÎÔdÛãû’1 õ¤‚(ä‘þ(#ìHÅìö,r⿳ªꨄA6vY,‰ŸPÓ:ŒWµ=µ¿1f-h mñÛá-§ÇÙqjnzZ?wñ¢°ÿçR’Ï€¿ ©óë0q1RÊá,¸ÛY¹â_‚Ö<«äoeÍ’¿"X$Áb¼Al­Ì¢¸ðö‚“mýÊud®ŠKá-ŸV¬UGª ŽËùmŸöz﹋ú/­©ÌÙ³<{y”ïÐÿ„'€í0°ÕáágDzxGàÝ øjàIFÛp½®¢¬“„:%Äû!>«¸Õ)6žÐ:ž'’V†Ö£huXW¯`V{¶¶rWM/v™ÍÓÙÚ;@=^?Eó½íôÇ .-X_ ¶6…wøôï¯f¼]]Þ̳ííÏòlc÷ÎÎξö**ªò »v÷nZòu´ut>àÓ6i>Yë¹r‰ßË_Ã#f§|Ëá%@¹³•Ê£”œ­Ðä¥Àìfã”zk[7ölç‘­µuÅݤµµPM-@÷ÕUÍÅã]]ñÅØ‡;Ž9F¶MMmwõ~Õœ~,™||6<¹÷ŽPÿüôƒûç†BƒwN©JKÙdE†<½Æ¥ÚðþRj+ƒ%Êom »$دZÂ¥ÐÚÑ«5t1Uì§¾œ^ }d1î÷ÇGt]ü +ϦÂÿÀòÔôƒÓSzXêMbjåÌTÑÈðà’‚éz£JéÄÒþ%h™áø!éé9]Ú:\Wî_‚~­g¨M‡vñìòKËg—sª¹?‘5*´ÿ†ÉÎý\ÿÕèï+©ú›W}æø J«,”ÚÉ6È­b*>ïÖú$Ág,Ò¬€l +ÓTòî¹Ì;­…†ž£ÙuÖ®&«0ÙŽÉð–­®vsÏÛÎH‹zœwXlãÛL‚‰ã£V½G«Çïœ=ßÔÛYÿ8• ëÞ*™<=NL ï88»4s£5Ð\ÔWYNß+Êæo®µ¹yÌ«ç.‘„’B™$”(BH‚0Âa¯PG¥Ð°•áøø,‹è|MŽa0ˆNܵ„dçŠìȵÑYÌm ¡3¨ë¨ã¥i špÊÀŒ¸LŸé¿_]% ŸO“gõ?SëåQ,â°ÇÕ9Ço<ç Qùª_I“>l5½ :Ø0Òm^…̨Çù®èÌ ÌÎ.Ð_ôÆC·ô.dZY4 àÕñÅ|Y*ÐðY鵉UÂ…¸üêrÞ^ï€g¥ŒãÁªª€§M²°ð,—„òB¥$TØË´¨"”›É@¦,¤gC[„±@[†Ó’V\F>MjI'çs–Þ3gz-+ßú©å•3+ôñ¢þ)•,êePüèn(þ+gs2W0Ççéþ†m¢ê¦·O&E¾a`/‘M|uå»ÄÊ“¿•?tß“º ¸¾ó$ýSãêÎ?…;_L¦2EÓ”»Öl|l±Îj”?ÈœÑt]¦0B°ÏÀæ½¥ùØR<ˆ/ÅbK“~ÿäRl<•Çgïž9•Âíîž9Lšé^žŸ~`z^ýäsÅ~è¯é€4}kT8+qhûÆŽŽõ*Æ”£5¢c¹ @'@È‘ “ùüÑ@™ùöðDossïDøg/{ïË<»©2¼%Þ¿Iÿ„Þìíövæ±ÊZÃJȬɌ€À›ÇÊ%4^€Õ_uS«óq™ÖG¥jUÑzK}Þã’à0®¼Å(²œªŒ"ÄÈbV^{çùÁññÁ“-C÷ï;4ÔŒ@³/?ú‰>?±4¦icKô]`©ÄyTõ͈Äò?ê›bI(¾…±-2 êúª#âÒ…ÓG·‹£^€ì_¼Hw©¼Wš—7}£¼na‘$ÝTžÜÍM—²„ŒDa1ƒnÄ)TFÎÏþþÔø÷žø€ªèEýMäà”þ7e†d5¼Ï›>xÐqÇÇÌ&.JÓ¼ÑÔþ±ÑÖ¾§¿¥bm°H“Ù¤ c—…ä~k³oYŸ‚?q†Þ/;ü½o|<Ä:x’ñqÜ$Õïf>:À긇5«ñf´{ØÕ°Aª¹ò/¾}/_ÆÐyDí“kéqÌ}ÄZè!Ö€¹ngv/7«FßFŸ@Þ3ÌÅ¿Íü$ëᯠMâÆ÷+ŒÏ³½À¢ÝÈŸÍÆ"Œö¼9ÿˆÙ>ö^ÈÁºÿ²_ö±U^eÞ÷½mYö––R°ÎÛÙ–®·Ú-”ðÑl m)UZºÞK¹£_¹·-4\â4N0JœŸc:ýËn,Y‚&þa\t +Ñ¢Ñeá#ˆÉ‚쮿çÜsëå2D4þѾùõyÎóž÷|<çœç9wF:Üãâ÷΢Ÿ%îQÉv{¥œv+Ò¨…"@=Ô@£•ûsið>-›S²Qaü¥Þ")ÅG:AiõÂÒêl‘.ôrd5¬v|Òîü|R‰¬tJe”»² Ê•è ¤ j™WÔ:ëð“r™¶¯HžÓ­;~Ýigþí²Î9,°Î9+P&ÓñeÞyYŸÑ%ë£òYÅÝÌŸ—2¯€o/J‰“ÎŒT9/K…ó[æW…\MîI|£sLÌ»9…ž}ƒ•©°ö›yGš(×A,qf¥Â[ î/ñg¡,õ­`MvâË1Yä~P‚Œg­óŽx~¹;(Ž;M!ÖOm×X³6Ö÷/RîĘf]³Ü}Ô}‰vŸ§Þ§{©¶Öê1ñ»ŸçÝ´tÓÏ2÷)Ð=|߈¿=§'öÅýbaR÷°f`Î[:ZçèÀœÃ{#~ã–²žßTÒǶ“±íŒ_à|ïH (Ç/%Î<¡¥€3]Àþ,Oß±§¶Àv– ’±aŽ—`µøLœHù—ÏÅŽ÷£‘õVî¦n¹ËêÞ—ˆcžæ<<-›L\Jƒ}¶ _ïpŽI±3%Ë5n™ØÕgÆÙr?Ðø—ŠÆÁ;¡ñ1‰‰“ÿ¼×È`âo:_#~*}66ÿûäÏé«ÓyKr’qJ Jmùv»ÏãÍ )¹áòãï™<‘ÎíÆpŸðÞ¶¹(‰æ¤t~ƒ½S>drUÍc?`>ïÇÌô4ï¥bòßм˜¤›=þ‚¬qßdlgÍ\N`/ïòØ“z–“ë^Aö’K6¡oåÝZó>Ã}™Ï¾ýûUë~†ý½QêœwÑÛ9W8·MäÂwi3_»WÐoçíÀ¹‰t ºWtL‰5[kîºÆÓì×dþï%ß©ßÏ£«ÿö#[óõºÉmä~où+uŒ]Ç­cv¶Æÿ Ì8uLI’ãy1~Õ[¿êæÆ¯Ò™{ý:¨ßþ†Læ„õôÛH{¯3÷'ñ1ÖÛ.»ÙÜ-ÔJ3|Œù¾aËÚg§¹#™{y¿@Ï;¹;hîF£Øë¥ÖÛlbãr[çG–¿ ½JäFr¦Žó ÌÝúÎ[*¹ê;ï2ýïc“{þ \¼[îNI¿é9W¿ K®7ɸôÎôìß”zïšìöU ÿ] +½ÓÈg̸îv¿Nÿi¹Qó˜úÁð æ_Ç8Ss?áC‡õhž™óUÒ_šž‚̽ßǺ߳þ«µhžL‹¹s(5ø²ÞÜójÝVüéOÜGÕ÷öþzÉÜawiÎ3$ƛկf_.gN¥Å¶iÎ<¾6ܰ>³_ScŽúþÄÚðÊ—ÃZdâ[?ågÓb’®kq Éóú2kú¸áû¬ÏicÎÏÅÏR‡ždM¿‘hÛgLûÄïû¸d;{¹¯=Fœ C›,uñ>Ì}ñ.ëyû¹«êqgó{œ¹r?å^ôG9{­”·J±·9{±Ó–×€_µ|R& ì I¼iQ}ž³ò+ð]KO?´¤Ú´BKÒvPa½Æásðüž€“ðWø–}¯LÁ¤µ+ð:ü FÜ>' yL$ÞCð +tC~“öÒiËÓðÓį²ø³ð5àb|á#it¦|¯²K俥T[Ú|þp÷óq²ìxÚÒHï³3½Oýè+”'}_•­ÌeÍü—ëN›sʹèúÝ/zâm4OÈû±/Û÷ ß«¾W3öd¼‘q3³%ó óœŸæŸùgþ™æŸÿïG3½wB>*Y2(Zâ/[Äçñ™ò"ù²µ‹¬JÜ øó䔺½Íê™èVÏ’nr§'ŽïJ{åWVwd½ó°Õ]Éqö[ÝÃ>luú‹VÏDÿ½Õ³äÛnnóèØT42xhQÎU9¡íý«òŒ•×d…©¿K%õ×Xé7òŸ ß·>r endstream endobj 46 0 obj <> endobj 47 0 obj <> endobj 50 0 obj <>stream +H‰|T}PWŸa˜Ý”ŒCÌîÝÌOõùôûÄAEÁ?€]`waAn‘Å;”åÓ"‡€H@QƒF@…£( ¨œ‘(¬z¨h¼JUz6ën–û']½ª®×¯_ÿºû×ýŽYZ`8޶Þ'd«ß–›ªUaŠ@uŸ·)£’ãÂÔf#/ð¸0ÛROgÑbTðÛo¿ðäœyå3 +m1 +Ç-éi3ß@äÞÈȽq‘{UÉñ*o—µ ‰"^Tt’|ñÒ¥® ÍÒ}Jz-”»º¸¸LIw¹·"!\):¨IRî×Èýâ#Ô‰ ê°$¥ÂYî'Ÿ‚ÐÈÕJR­5þ/K¹J#Wª’¢•jy˜hŒR‰þj¥Bž¤S(÷‡©cå fËïÔÈÿJ®Š—‹Xòíñ*³”$jäañŠE"JÂT”ˆ„äø$µJ©q^ä|0Q)_"W(#1 fc3,0Ãì1l.†ÍǰÅæŽc+0l†­ù ¢ñ£¶PäÛ„bX-Ö‡=}}ð"ü5þ‹­—,z-Æ ’H%^[η,³|G:“ßSµ„* îPOé`ú$ý“•ŸÕWVãÖó­“­ë§I§ÅM»iãe“nÓaÓ™Û.L´ã¢üS;‘k)d›'³)(@?°h|EÂ8…äè: fe²ˆž¤öLíauJè`Í;dÖ$¨Yâ Å{°Ã´‘ ðòE³rP¨ÚÑfõ,á¨u?Ã,ð‘‚ßu°zÇ™¯Ã¼!ˆf°½Ïï!Rõ…Yþ#Üêã 4 m"ß`d·Î‘“ ¶Z¼\‰'ÈšýæZ3§Ÿ;eÎÖ¯I”'ZIPîÃÏC.qºØÛG‹.z°Å;À†BÏ^:}®þ’ælt´ú@dTub/)ÎJ†pŒ„°ÏnµäÓ­$üfMÀtéxà[$_ퟠÜÃ}³‰" ÒC¶>8ëïaüX[x¢¦ Aö¶gŸ«³ˆ}¼&ÿX*/ÉÌ| ´>ˆI±í2ÂþÌ𕋬¦þ~jŸ ܆_þò~k'¢šyçúð =Òïê:ÿÕÝ’’qŠcZªï“ÌðÉý¡å>2ô©ûJû…ýÛÀBÁ¿Š® +nØñ¥ë–m•Õ +N’U¥&â°ÏHÀ>;£0á'zC%A–¦µøH?È’íD´i-ÐÈÿc=e\׉ƒ´ŸøÚ´† úã:Dƒ¿©‘–hõ}1ZÈíIŸmž3:a©]ÖECÓqT鉨ÈqóÖ´\åVòTíµ²Ùûãk#øLmɛ㬥LÛúvŸwµ 縊Ñm&Ë´6dfæÂÓ#"d{”çn¾üä[/¹«Tj…•ƒ›b;4õFFs혶ÂÉÊ¿¾+qPà£à̓CžçÏhºlePôö8Þ7Ý'GÄû ; 1Ü+¨eË +Jò‹¹{]M·e¯Û—Ìç™6D¯^är¥;3Ž—J‚3loxAÏX½:æP¨lÁÚ°üp{ˆÖ‹úŒ*¾²Ÿ,Ñì.Ý!C®s†œãG˜×÷}yÉi^Ò­¿¯Ð +«Ì7¼€#Ó&8˜v²èŠnL­ó–¡iŽÈ#G/ÁúÉ­¦ç¸|1ÓB/ò •}1§íªT¡Ý& ÙôœŒì ŽióûëvE lá®§ï~½ñã«»­»ƒJù}žN/•2ûaEÌéÁžÁñç„Z6ïùeÒaÀ#Wô¹¢Ñ<4ï…8 _//»ÀézÈô¥>@æö—6°1ðy=lwQãÈ Ùûj÷ ^‚¢Äéñ¸Ëîã#c¬´<Àú²>K?üúî£3G²J¹’~²(-±(N¾÷Pl ®ÐmÚ MÚàÛ?éAKºrìïi@?E™1æ©°XHe™‰£kHuY»»ÙK†¹3Z‚¤£saú£Žú–s|þv +Iü¾\¼%´¢2–Kö%4ö¦ÿ ëî/k¾Æ_»rª)ÔÒÌÓ[ùùuœ ºÀê iGt\PêNÕv‘ 'oxf,oßÖ{5,¤œ+ÌÈ;¤“J:Äz– ‰Á‡Œ 7CvFh¡Næ•+áZË[.ß”ýTã·’GŒÐDÃò9—7ÆÄeêp‰ºäätµ•:ÝÄwsJDIMù7à¶ww22ãàa'¤ºM¦Ò̇f“›¤‰ÛJs¡îTõùþ‚¶:FüNJE*viM~S~CS~IQHÉ^ë-olä¯6Ÿè~-üÝ&h¦ YVj8mR´>"ÛŠI…5¦.6FD¯R_¬«:S3…ËITS™@ŽXØwqºÜ?îƒTK;,G:òW +© ¶À.òs +Ù£åéiiÚŒ´Ï b•âÿ¶ÓL„™ÓN±0x&Â- ¶jhöBÜ(ótÈnTdèDþ‰cÿe²ÚcÚªâpHsï… Ã¥±ë5÷º`Ô8@Ô±ñ7Ø@Á˜@(ŒÊ6ƒʳãB)•ò(,áRÚò2±ŽgÁÉc:ÌÑÊs”W£ ¢.!Ëérfâ¹<¢ÿÞä|ßùÝïü¾ïk ‡ôýCßR6sT-«`œ0Ôj9ÚÒØ×3JÍš£¼ع +z à9–Z”“Fç(s 2œ+ðïrcûORþ²¤„ F‹“#å X^#¯NŽÝS…§åE!çyU†xÎÚzz¤qx`©r +©Òmƒ8êÑê%KÈ¢+prX³ˆîá|¥¶:öYÑÊ‚›¿ÀçŽR”ô„oC¯Ç‡À À<¿BÀk^!ÃTœm xNá‡ßú`ñÉúð[Èeàñ\1ãÜWïÙÌæŒ­ƒïº~ø“Uð.xÕ÷/è =yŽA×ø©| Àu ºØ÷%k "®¦¡¦ž&7­ÆÛ–IjcÌïu(ˆ~Ç;÷#fÝ~^‰vdÊI¼·;ïx{³õá5£æ’ž®ç½]q%•’ïz;Ë{;Ll!ÈÍGMwfš›.¡0McW uéT´šw(@Abö²³A¬X¸n[7·iJéÜמ'šÏÅpQThl~j +#“gG„Jrwã¤ùqôJ Ï£„ævb¾szÃÒ«*h¡;l˜)3F/£à‹Á~ÐQì" Æ]Ä9”ðæ8®ÃáYnž#è–äDW—*×ý¶}öýöZ×ç@»£Jô¯ ‹ endstream endobj 34 0 obj <> endobj 33 0 obj [/ICCBased 51 0 R] endobj 51 0 obj <>stream +H‰œ–yTSwÇoÉž•°Ãc [€°5la‘QIBHØADED„ª•2ÖmtFOE.®c­Ö}êÒõ0êè8´׎8GNg¦Óïï÷9÷wïïÝß½÷ó '¥ªµÕ0 Ö ÏJŒÅb¤  + 2y­.-;!à’ÆK°ZÜ ü‹ž^i½"LÊÀ0ðÿ‰-×é @8(”µrœ;q®ª7èLöœy¥•&†Qëñq¶4±jž½ç|æ9ÚÄ +V³)gB£0ñiœWו8#©8wÕ©•õ8_Å٥ʨQãüÜ«QÊj@é&»A)/ÇÙgº>'K‚óÈtÕ;\ú” Ó¥$ÕºF½ZUnÀÜå˜(4TŒ%)ë«”ƒ0C&¯”阤Z£“i˜¿óœ8¦Úbx‘ƒE¡ÁÁBÑ;…ú¯›¿P¦ÞÎӓ̹žAü om?çW= +€x¯Íú·¶Ò-Œ¯Àòæ[›Ëû0ñ¾¾øÎ}ø¦y)7ta¾¾õõõ>j¥ÜÇTÐ7úŸ¿@ï¼ÏÇtÜ›ò`qÊ2™±Ê€™ê&¯®ª6ê±ZL®Ä„?â_øóyxg)Ë”z¥ÈçL­UáíÖ*ÔuµSkÿSeØO4?׸¸c¯¯Ø°.òò· åÒR´ ßÞô-•’2ð5ßáÞüÜÏ ú÷Sá>Ó£V­š‹“då`r£¾n~ÏôY &à+`œ;ÂA4ˆÉ 䀰ÈA9Ð=¨- t°lÃ`;»Á~pŒƒÁ ðGp| ®[`Lƒ‡`<¯ "A ˆ YA+äùCb(ЇR¡,¨*T2B-Ð +¨ꇆ¡Ðnè÷ÐQètº}MA ï —0Óal»Á¾°ŽSàx ¬‚kà&¸^Á£ð>ø0|>_ƒ'á‡ð,ÂG!"F$H:Rˆ”!z¤éF‘Qd?r 9‹\A&‘GÈ ”ˆrQ ¢áhš‹ÊÑ´íE‡Ñ]èaô4zBgÐ×Á–àE#H ‹*B=¡‹0HØIøˆp†p0MxJ$ùD1„˜D, V›‰½Ä­ÄÄãÄKÄ»ÄY‰dEò"EÒI2’ÔEÚBÚGúŒt™4MzN¦‘Èþär!YKî ’÷?%_&ß#¿¢°(®”0J:EAi¤ôQÆ(Ç()Ó”WT6U@ æP+¨íÔ!ê~êêmêæD ¥eÒÔ´å´!ÚïhŸÓ¦h/èº']B/¢éëèÒÓ¿¢?a0nŒhF!ÃÀXÇØÍ8ÅøšñÜŒkæc&5S˜µ™˜6»lö˜Iaº2c˜K™MÌAæ!æEæ#…寒°d¬VÖë(ëk–Íe‹Øél »—½‡}Ž}ŸCâ¸qâ9 +N'çÎ)Î].ÂuæJ¸rî +î÷ wšGä xR^¯‡÷[ÞoÆœchžgÞ`>bþ‰ù$á»ñ¥ü*~ÿ ÿ:ÿ¥…EŒ…ÒbÅ~‹ËÏ,m,£-•–Ý–,¯Y¾´Â¬â­*­6X[ݱF­=­3­ë­·YŸ±~dó ·‘ÛtÛ´¹i ÛzÚfÙ6Û~`{ÁvÖÎÞ.ÑNg·Åî”Ý#{¾}´}…ý€ý§ö¸‘j‡‡ÏþŠ™c1X6„Æfm“Ž;'_9 œr:œ8Ýq¦:‹ËœœO:ϸ8¸¤¹´¸ìu¹éJq»–»nv=ëúÌMà–ï¶ÊmÜí¾ÀR 4 ö +n»3Ü£ÜkÜGݯz=Ä•[=¾ô„=ƒ<Ë=GTB(É/ÙSòƒ,]6*›-•–¾W:#—È7Ë*¢ŠÊe¿ò^YDYÙ}U„j£êAyTù`ù#µD=¬þ¶"©b{ųÊôÊ+¬Ê¯: !kJ4Gµm¥ötµ}uCõ%—®K7YV³©fFŸ¢ßY Õ.©=bàá?SŒîƕƩºÈº‘ºçõyõ‡Ø Ú† žkï5%4ý¦m–7Ÿlqlio™Z³lG+ÔZÚz²Í¹­³mzyâò]íÔöÊö?uøuôw|¿"űN»ÎåwW&®ÜÛe֥ﺱ*|ÕöÕèjõê‰5k¶¬yÝ­èþ¢Ç¯g°ç‡^yïkEk‡Öþ¸®lÝD_pß¶õÄõÚõ×7DmØÕÏîoê¿»1mãál {àûMśΠnßLÝlÜ<9”úO¤[þ˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ +¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ ÷„óû endstream endobj 7 0 obj <> endobj 16 0 obj <> endobj 17 0 obj <>stream +%!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 24.0 %%AI8_CreatorVersion: 24.0.0 %%For: (Anton McConville) () %%Title: (stride.ai) %%CreationDate: 2020-05-13 8:35 AM %%Canvassize: 16383 %%BoundingBox: 74 -878 4687 0 %%HiResBoundingBox: 74 -878 4686.9189453125 0 %%DocumentProcessColors: Cyan Magenta Yellow Black %AI5_FileFormat 14.0 %AI12_BuildNumber: 332 %AI3_ColorUsage: Color %AI7_ImageSettings: 0 %%RGBProcessColor: 0 0 0 ([Registration]) %AI3_Cropmarks: 3935 -600 4735 0 %AI3_TemplateBox: 250.5 -250.5 250.5 -250.5 %AI3_TileBox: 3957 -588 4691 -12 %AI3_DocumentPreview: None %AI5_ArtSize: 14400 14400 %AI5_RulerUnits: 6 %AI9_ColorModel: 1 %AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 %AI5_TargetResolution: 800 %AI5_NumLayers: 1 %AI9_OpenToView: 3162.94186046512 -1.74418604651146 1.72 1784 1128 18 0 0 173 65 0 0 0 1 1 0 1 1 0 1 %AI5_OpenViewLayers: 7 %%PageOrigin:-150 -550 %AI7_GridSettings: 72 8 72 8 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142 %AI9_Flatten: 1 %AI12_CMSettings: 00.MS %%EndComments endstream endobj 18 0 obj <>stream +%AI24_ZStandard_Data(µ/ýX¯~#†D ,°Öl‚™ÙÔaˆB[L°P=s=¡dïý:Am)-"¥¥&‹ OJgÿÁ¹?ö ù % C`‚ LH{Ðà¨ð ÁÑ A7#:û%eq‰\º*ëTŸbF¤l+‰ÄÊ &˜@B"¤<¦µÃÕPGB‘HGƒ±°ã8Òµ¨k•PüX4‡1ŽÅA(8|Í*í¡· ófŠg¤©95u;<Ì…¡…Ò}ßﮟ™)CÞÓšJuÉ¢~î^™4ÏRΜ¬Ê@À‘ û¡ÀÉ;ÂÃóÐ#‚Ù· ‘êË4$3ÊÒ ë¼ÖÎNÏLuìÆCÎgÍáµ’+Ê’ˆX•W¾±±éÊ"²BòÓa]$ Æq\8pq],(¬8…)èH$’~̑賣lkàëñDMGµæŒª‰DãÌoàÁ¸…šï +²ñbás ›óPÔÇÇŽãhŒ‘Çуê{ŽÉ^q,( ‹:ªuCŠ…;ƒðÞ¸1Ùì…œcŽ9Ž£SSUþäaËÃÎSظåQK0²¦¡°TÆq›OtáI³*C°šŸ"¥';…H5Ó3³CêeZo, ó¥Uz!—Ço?¿KNë%búîÈÙ²½ê+CÚ[ {¾|¹Uò„oetH·_3®ÉhLf¥Q¢ca ZÌ¢q*NQ O¢ñÅ_‹;¸Àßêcñ…â 3º:KÔu+Žbá!âq œ¬g#çõ;þ_¼ñIPÂN|!QE)N1 ª<þDƒjÁ Ä#VQÿ]ñ«Ì"66½iÏ×´U†d-©ïlî)òH4†Ž£È†âH±@«1F1èP0ª²2Êh¢ Æ)ƒŽd–"bÒºzóâYçeÈ}Ï#³oƒiæ+’½GÛJxC›§‡|u­•gîZþ?ËUè¿fr]˜V0‹\"žª ÓM)ÖÅŠ´m©‰É¹4?¥GªÄdÜ2„Œ­ñÝåTˇV5sïžËúsö”vƒxËa™ƒ ‡âXŒÃîø‚qØq,ô˜y F¢aW(‹Z±`ÃfÔŠ£±ÐèB-ã°Ô8~àÕ4²QYÇß±p,#±à.ú8+š<®G£L iHÖE +ªQ¸‘hÇÄÃg5Žºs$¼GãHT–Ë] !ùø>ÎêèBƒq(ÒæHÔ@tÍ8Åå%Ý\ãHäTƒ” ×¢ +k-Ž ¡`f映À¢©ÏècIiN×;‰T†”/Í +Û´*ÇBâ(;ŽÆ¡¨bóò|ÔQâXØbwPPr‰Ð€ÃÃìty½l•fü2¤ª·¹iaæ\Ò±ÐéQæãŒÆÂád,ÔÂØQ+•ß;ztd¼â8¼¯(¼â``…ãX8ŒÅQvœñÈ'?S:ìŒy,­ãž`4Ž2æŒÆáØk5 …"1…C‘x"Š9Š'nJT‚O:’‘ Å-$²°>V8‘W ×HškXÖ8ni¶9Ò:=èX`,ŽÄÆ¡H]GÝ`,O<ϊf¡ sDeHÑì«e‰ãºgZ‰èêÎJ»^i½4ú«2ÏòWYS +Ê—!¯9b©ƒC8ÇÌ2äè†z·¾ƒS†ô(Ó(ó%ñ›*TB$?gHN_©eHæ –!glítE™çÖØtÉÞ2Ä<®³}\è–9&(lçÒ$sÄäÊŃ:f)$8he’˜ !Ò98À8ðH4O\hcÑ8¼pQCÑX( +…"qÅ‘¨°ÂŠS˜ÂHAÓx"pâ*A‰&Ž.0¾ø"‘ÇÛ^ý,RñÌ£²’² \$ «a†?ÐöÙl®…[¸†â—wF×…),a·fed´(E-Ç«£±8‰'uÁ`,‰'ÆP‰'ÞâfáhŒc¡8Ï}ÇBƒ¡H<±q ]hegô±˜£‡Õ\#/TUYY¹Œ••õzŠR”‚1¶PµZY™¥%ŒF¯®;;Ÿ/·8Æxáj—N(¼X8jh*p±PËÃLE2²1'¾xã …‰\T*Ž…‚A¹` ƱÀ ©ÈE2²‘ 9ïéuûÝÇçÿÄ_œñÆ>‰&(Q K\ Ldâ‰DB‘X$‰Fb!qŒ¢ +R”§°©¸"¡P( +†¢¡XPÌ¢ ZÔ—‹/ŒEc±°˜bãf ãHÆ †‚±`0 ÆcmP£Ö¸†ØÈÆ Æ,tnÁ ˜XP,, YL©ì¼ÀÅ Ì'‹2*;c>¡`C>~Ø‚YÑP,ǔʮqœ1ŸP Fc¡1=hÊΘ _8žP,…ãÇ8 Œ…Å‚bA±XH,|!pÁ ^¸[ ….,4ƒÑX47ÞÈ6°q kP£Fƒ±`(g$fãVÆ0ŒÅb¡X$¹À.na‹:º˜Å‚¢¡`(Š„âŠT â¦(E£XH4ŒÄ"¡H(‰Ä™ÀÄ%,Q‰&&±ðÆWüÏûw{ý Ï²‘ŒTd"Ÿ˜ÎKKÊæä2p +<&" ‹ƒ fxa…N8>›ÉõøX8Æ-nq‰ûáùìêêz Ö0†-,a KC;3+«5ŠQŠRÔ+ ËeU ‡‚¦…2Þ´v‘V*ª©…cA J JP>‘ð¬¨e4Ž…"Ñì{´ëkYé ÒÂ,Ì´Á†bGb£ø''çÆ¹ÃæjªSŠÄ‘“ÉFFWC m”QFmô`0º¨b¡h"Ñ÷‰‡ë^ÏŠ:m,̱0aLƒ1‹QÌB‘8zn޳¢Îq€#Bñ ±ÎÁ#‚‚ )9(¸àÁaä¡!‚ˆ€T@á¡Á!CDÄ-@"<4\Ã0!ÂCƒù 0|€$ÂCˆ 0€X4Pp¨@ÑáÁÁ‚P`@(4<0H…D0<0H@@HhÁCƒ #p ¡!ƒ  ¡à‚   P€ÐD€Dh8C €àà Aâ!‚A (L0$@p Á  &8Lð€ƒ> (@" (8Dh + +2p`( *@!"B¡@DÈ&TˆPP`ÀC"(P` ÀaÁÃ2¨‘€‡ *HÀ‘Ž (<8DHàÎÁ ÀÀxààhA ƈ4\ðÐp ¬D(Hh`8È—”""ƒ àK$0@pˆÀáàÞƒ0\ЀAàà€À@"‚ƒ†4DxÀÁD 8p˜0¡Aˆ°€",`Ž, ÑH4Ž *@|€BDC <ðÐ!„CDC$x ‚ 8Xàà€ˆ¨Ð`ˆ°@&hˆà0‡<ƒ˜Àá¡ÁÁÑá DÂA† &8˜à0! (XÐ  $8T¸àÁ!B‚ $0@p¸B  ” ÁÁ "<@8P˜ÐPA$T€0ƒ0h° BD <4˜ Âƒ*HÈàøÀ "à ‘p`AC +ÅA"0hˆÀAÁ…\àa‚ 8ˆÐÑáà˜ Á0ˆh¸ÀÁ2`ˆ¸€!‚!$H¨à 4LppÁƒƒ„ˆ +Pxh€à ¡!₆".¸€!BG… +@@@@@88 ” A‚T€áÁƒ 88"à !‚ +pÐ@¡†† "4@X8¸àÁ!"á`‚Ćˆ‡ I% #`ˆ¸ÀO$\ðà0¡D8x82¨@¡@H€ˆÀƒÃ Š Ž 0Àbá¡Ñ ÁA”™,P(P`°@Ö¼úÐÛÉ’„0‚CDà]È\ PÁƒÃh¸€A H‚‡ <4džIa–$µÄKK‰­†¥ Ô³³öBn]¢ DàÁ'D4˜€ÁT€@R¨ bBÃ(4\ÁP2HX(©@BCˆ|‰‡I(8be–±lÎî^³´}Š RÏ/³©ž ZÑç«R¯9fÛì<*Vº#¦ÝìEô³MZ},UAò”=ñªÝoûøæñŽˆå¼–kËÚ‹k Óz²·ør”d;§d?rˉþÉÞ/Sï‹>£™%—±^iÈ\K›³|«MQ­‰¦«:Ñhª»¤£:3œüýieÉöµº2D¾©•™–¿¼I?_×cX¬Êî:–3U.7=»B7N–ÿò&cÁ©ûº4ê³\èç³åÔS¾ì—:¥ªid:cuÊG»[±lö ¿(« +]µF¥DùWÙ©7ň irưˆ’±žEèŸïˆ&ɰÐègcuø*™ï΢+§ÐÐ$¡åÐo;»ÒùU²’F䣢DYj;Cÿ¦²$]ÕŠ>–«¾a_­,#×Åz=Wb+<û˜­BÕ ±] Ö“¾"jgòzϱ—[N}%’Ð8çÛÍd•‹Œìz¹ã»§é[SIÕ\¿§/ÈhðÙt©•n[,O~]±•>O.Ó³»´4TZ%¯ ¶­+û9o©*IߠݪQ³|È:é+¡H¥J–Têøl·Ú•–z·™)ô"MïÁü×g¨½óö$³’M³ñû¬òÜíjå^3Vo¯¡D´MÉ̆è';Ùó—åˆðEeŸK#ºz^Yý^ˆö#Ìâ¡–*Õä!U"Úý»x¨pÓžè)5„ÕÚçê^gS,KvSw§¢cqŠõý|+…­9´ž1ñ~'œ)ãÞ¶Çwö©"©-·¾æå×™…¬†XS*XµÚËËjW×ÙeŽïD–¥°‰5¶»g°›Tw^,[mݧãrÙ»Õ©8;&¬;¶T–®æîÆfõ¬Í_y/¢‹¹4XÍ{Y±œÛ{%žÝ»» +±µ»¹4k£{εd¶÷V§ôýÕ´÷ú®Ôk»‹ªø½CÿöÖMÉ·Š­¹×íâ·3—ƒŸy•km ÁƒWdºkÕ¯ìbFû˜êsÆ7ééK´Ó/;•R¢½Tin R‘\½{–DBç }*¹çézb³Üˆ ÍŒ§ õ(ËŸIŽSšz)C»\z–Mœ³ò4›B'™I¥ºÕ;©ë>u|«éœ&óÖ‚xW¢Ë¤&µØK¾pJL·%•9m˜¾Á"m+Å,ó=_V{¯RXçÌø^ƒú ~Z+n-‰.M.»ûFMóÓ7º,D=º[úÕÖYï>xWûšëN9W*›h¯£laÙ½œSš=Z9ì- ñЈÇô¼¾cU>ëØo‰ŠU+§”Zü`{Tò8éÒ— &ÞVæ®*ô¶²Ü­ŠOé,þm®Ð±¨Ô“^êöŽ ?YWfê¢#ÂgV–OKùôk‰…¨§BTBCXštÿòWJýLÕà›fÛºÖ=åÚçÑÊX2Þ'ßåíÝ,Ó¤*EÅYÚ¨'*Gu)}^9ê~ÐSy£;¿/VY©–U>–½˜mªùe3…¬tÓÂã•Êü¤¢RkbÞ•_tTÌšTWЊÖrWʫĻ=/6ݧÐÏW +Bº5–E;¡ïÔ©R,9´K9ÚäÂ’¼· MV9#¦{ž¡]Yï&£Bo{¿K*E(-‰ð5Åòš´´Kž0 ±ù¾÷)ž’sÍ=g^ü>ñ²Ü¯¶Â—nm9/‘eñE¶Òz!TœßÇB®éwÞ1û1Ê{kªœk«¡£D¼£KÊW\Ô)þаXkx%Ý9é•®îiùRY‚FUzò&VュЫ“…Nj(ñöÃÄ’/¹;!:4Ú ©‡H^ó ï¬ËL‰ÉJS«WÞui›A,ÍNÉ!B™ˆ÷Ët;e™!½öl‰óxs÷’+z­ãtéNcUž%TgG˜nÖîW¬Ò,á³Ø–àoîîuj1–ôõO½3•°Ê]‚I“é».}멌oªÎÇ,ªªË»—Ãö&}GçË ÕK¹$mÊrYÉåãÓùF$<—+,"ôÏ Ë‰ª +«ðæê×± +]ÉÙ™ +Y‚Cã¼[a–²ýG«¼×1‹¹/'ž]b²KÚtUäCe¾zZîšµì^[–É’œx=•‘›¹rGêèµýüêáËMò·Lû Z¡!b„Íbç~fTð%–9ÅxÙü «îHxŲԱ ¿)'ÇgAù_‹Ÿr‹µ½TåzhsƒG¶¬ƒ·Ì–l RM¹óÝæª¼$Hm}I$x8e 4'Ï>Ù+VêõÎÞD—ë®gǶK¤¦Å’ õhv+»WΕ&A¼™ýn°¼DzËâ#6¡ÕÞIŸIÚ‘LV¬¦7FvÌ|A"Ò{}DöK¼’D¤–ž¡Ú) ý“ eUíÕR¡"RW.tÒ¤ºâ“,+&º¢r'5y›ý¨/9TìÄiC¶#Ú •ž¤Óíiž‚Cï”&iÙLÚm”冈á©Ü„ªgiïÝ"T¦Ò#ô¤;»¹\éf¦Øº±+ûÙ­‘eÃãqìèËÿÊˆŽ™ž2w»ÌÚTÍÊb)„Ê#tùó3ßì–±j•ZKÔ1ßð¬•ÔtŠe9 %¹BÄò‹Y¥¬O—ËgR–|ŽÑ„¿º%§¤hé¹ó¸%¿ìÙ¢óëä‚UB§zÜ2´C¿ÊV’JšEøKªòéI ïçË‹GhÚ4*¯Ö†e£•PÓ¥L¨tTŸ*«Ô•8©ÊØn‘P[#¿îXÒð¥~ÎØ‰S3u4~ž?¿:§2@(¹LÄâÁƒÃLX@DâA„ + 4LàÁ„XàAƒÃxÐà°àf¥¤FT‚™mÈZ47 ÝV—«!Ò ï+nÌy1$6'¾O£+Ø2:¶’¼ùM•lQ–K±oå Ô›µº]!«žø*䳪V=‡j‚vGõlÞ“SÆà‘¼åPjY’aÁƒBuSð¦K©Hå¹ ’;¬ÃšŠd•%öäR9*b¼ÌgŽË[DUœ¤”Um‹¼^,ÉYbÑwé©é•4éO‡FØÄbSúôéUI$’w3)v¦êE¥¼´b$Yfsu3µàaUIßY¯É*dD|ƒÅL\'ûL³\y‹ŠÜZYZ•.g$é +ǬˆÔW²È¯l[q)«–+ò¿¼ž…Vƈœ¹”È3Û×ÿ2†%׬\\7‡eJª®»í*XDêEWŒ ÕùúäMÉ"âìµ´äØ7ˬCdyuJ¿ÔA³¼R’öì[NîÅ£úU_l•+IßT¯×ŠM„& Ë™ìï«~ˆWjåŠXV•É*ÕÑoù1´+6bx“Õ“Þ2΢‚Fhèªê>ÊR&B­4Ò´2ª›Ï +šH5‹¹u¨îlËmS./Bd÷Ö3¯ÊMTäigëgƒå&rkÁbzêfXŰtUHÑÚ_™$’§+I$çTˆØâ"–…7Ý…SNd*eÄ\D:Yµ8‰8Ë ÍXÒ‹d¥’Èç\èÈ©=Ò‘\å’48 ¬·Ü‘K+Ò‰²J&«_ðÈ/[¦Ú¥'ò¹Ë”_FO#•¿8UòÈÝ‘•~®)m1d€\¢oò†øÛ<&º9»¤:ÌKªÎ=hpD€Aê>hpTÀƒ‡480<8„ƒâÁƒ$@$@@(>hpT@LÁàÀ ‘pð Áñð Áá8€íÒjð<øšk{‰¥ÌrðZ¹>ç÷{ͳ!e)ÊÞ Yçg?éèÇj1šBûÍ»´ÊTky‡vi‹µ¹Dû†h¥5Ø<¬MÙ•°6eã¡ÒšýVb™¹!»Ó¦L]‘%Q™ÇÐ'2!‘©Ft²fÙû£Dº!+×"ë³ÎW»'©ú²¢'}»+C,ÙiØ²Ž½HÏÎ̹du d„hhÃ{º$ÙŒjU°¨‡¾)Ãôm +KÑûªS±_YG¿îŠ·¢Wk–³Þ¡OhV’®Côœœ¬š¬—O.çÜ`ÕLÖþÊ]’ìXÏžKöŽu†c4ªûH/¤œC¢Ã²DjâÕíÈÅZ¹¬x¬O©bU•ÉÞÃ;•eA*G­ v&m+›¹WŒ´ã[ŒY‘*_yÉkã‚6%K:5›‚&sít2·-h®á•¹¶‚%=³²^]Á–¹Ô~'ßLNË,H—5òÇÆ’öb"†S­³RtæÙÊÙŸ_UÙî5Ãò)³Ô^ÉVª® ™yªG4YÈÊðþѽøòÖ«3ŸSn •j9«îØ3–ýäbÁ²RI(¬*ß*¯`©T’¬9Êϱ*Éùs„«åHü¬iO³HD¥ ‚vq´2B*·•Äû“Ê!1òq’ʵ’ã]^Ï\o}S®ì…™ç«•"UâÝ™M6¯fizž² )š&ÓÆTÞzüÌg9š"ôAAÃРðÐ!¢A0p`ÌA€p@ƒ0PpˆÐ0@L€Â.phP¡mÎ/r•¬ *ð±ðàÁá `‚†<˜ÐàÄâŒ$@,PxX€r Á$8T€¡aÈYðºâ$¬Kÿ Á³àï›v>FxÌRùt¦4‘¬P[,]õrYWóWìNåîAƒBV§à}ŠÊÔK§Xµ¸ÊÏâ¾è‚H.Ye¨%—¼c`SÐõ§ Ow—N1 Û+ä:/±5X(Ó©$f)š3sѪÊ2t,Ÿ™ºbT®2ýâ´+¿b&»…°0 žJmŸT©48 ëÊ$–&Ê)ó’ÓÚ7Õx +c.ž¢{3ü¾Ì]ކnYI›¦ü¦Ôµ¤Í‹"–³+h'¿üˆn圔UË`Ka!•¦Í¹TNq–æ¥q(WT† à–¢W%¶°\åÊn§gð‡·’v–wÖ‹³G3æ{=¯Ú¥ Lﮫ×}½ßÞ÷Þ]™j¡ï˜HE3÷ÇæïXÊbʺæ=Ñ\BzŒ^ÄôëºeUc“öe&ù½¼ûo1¤N"bZ§„Ù¤¥5K©\v¯’ž*{ ½hå.ÛÑO/Lº§ÑBb­LQ¹-šS]±"c‹ÝMúÜù­¥ÒÌ +A@¢Ê,yþ¯æl·š)sò»Mu,sx¥'•è9¢jê˜c¼‚VwŸ*IDÊŒ.’ùj|—)%aɹړÒJËT9…0ó?Hv2²òM%%¥)/ïìíSÖR³¼£º/_NçvËÒ!3Ë¢ÖËA0¼_»M‡6‰%‰-ׯÉ,µÙ݇ü"¶Ìù>œ’Vcw÷^š­RñŽ:Fõ)=ê³Ôe™y'ÞÐŒŽ¦ÌYeþm™?2š¥¹e¤;^¾øV×+ÁýÍnsX°tvD¤âRžÝEf÷«Ö$ÙživO–Yzõ«ëÙ-Ç‚äžyÆ.)ðng™Œ÷£ñ¥i;žºñz×™ìÝͦ´çÙ!Míâ\™2Ë®LRi+_HçñÝïЙxèþh—I‰äk¡ÝkeOI2šä¼•ª<×î΢üßSózí«÷z­þWf¢3³²Y²?³çIÖ>&>¥eá!¶Eô͚ŻÑHvsï„T:ÚੜÅ5K³¡ó3“T'IÖfŽ5·ß–ݼSßÜpðÐ5¯Ëâãí¦…Üf~ŠUî/¾<‘Ò4sõ!êN=ú‘Ô!•îLê‘ØùZê.é±íU¯§êÑa–­’|>®{ëºß3Iaþê*ÉWÙ¹"fŽñÞ›×H.:k‹ê²Wg–xv‡%JKDºS¶ý™Us~ésÏ!¼Û_¥yÿÛ¼?É?×)¢ßðõß›´!ÖS6×í+Y¢ýšFï™Ü6úõjûéw¤›ª2î™\ëúaý]6.>;ýjË1ádÉ’—å0ϦØæd]Å*™-ï!‚¾k*K‹Èõ-Us>Öµd_°ôRQgª’Ïl$ÌJ,Ÿ+šüô* æÉÒThÄ'¥OV³4–ÿ²jìû—IGT¨]ŸùCW“V²ö¬izqÝDV\±ÞA¤4¤,…uiªb•ØFU|uò®Ív-kNYÐc¿¨lìÓ”Æ~ÝTïçç˜Í*ël†Õ¢WÉ´ÍlU6+sH>¢YAkæmÊ6´›r^^uÊF%¯ä<9%ØÖ#ä^é­Ì)·ª•Á[ѯuUê¢úåL•׋´ˆ}‘t±¿ºúKúÕ½ïÂ+æ;zÉ?[ØÉø¬¡¾Šà –õ2© 1³¼óžÖ 9“¬dæ/σǼ»•Ñ„–“ì&o.Én’ìžY…Ên’¨ìNY,“Däʰì&ËÊY‰ˆy7Ul¶¸äΕXb",¼ÂK×0k\Î Óv&• uƈã•»–Z]¦ä™xäS«%ÍÎwÍ-"ó®eH¡™Ð®]r†Ef«í†ÌµœWŽËVU>»rÄ®ÆU'ä©‘;'ÛÆÊ˜_æ±)Iç•Ùg»ªR„ZÍó­¦Wd¬YæyJ‘s‘êŸ3‰ùðuäªyI>¯ìRš´‹`Ú&oŽ~™_LðÐòÞ!¿NÚ¤tšôëf¹<êùÒÊÒÆf±Xb±Íf«ÖüUÚ kÅÓVLÎû˜§òöcN#^! ݱwÓ-ø:—&ѬDVhe=,c õ¨l(©xßGHUSüôþÙµÛõejjVnyŠoÕQíSë¸gu­e-]*öNâ”éOfce©)ÒØUQMi:k«¦øÊº)*ƒ~å”ü*æŸD†‰ç›]-6vµûc'}ÕÐÇ.ORõì¯j¦Æe¶_VU9#Êê\ ïq^Ý?6k©«b¿Oöˆìì/äW‘ÉŠnwY:D5‡UŸ1—¤2㺌-«ÈÅÏ~æ*¦%±¹Ê’Õ«êGv)“É­±ªK&±SOðixeö—y §úË+ÇD¾ªM̬{s*+'I’™aÝek'VVaš]Îm,ëõd±¬¬²ye•¹²î¾§ÊAL+e*„v.wh‚åFs,ûQi;áå9ÉÑüWsÓŽ«Î:®ºü$å¯ò~U—×¢_Õ]bѼ£U‡ª”Ñädu–r}Š ëeßÓ”3E–ôÚ±ìÅ7;Uwæ«"Ë1«Ë±³š“ÊcŽYÇÞtÕhECìnÆìH¦*sb9:¢¢ó”Rë¿öLÈY¼«4â ^ùP!“ËËÉ»!Ê´Q«ø¡)í“Fµ}ЗÄC4.U ­fOа5šeZΞ %:ÏG‰%p:¶¶<ͨ¨Tö„®†Î%ÛÎ·KžË;ÛØV,8¶}¯ýIÂ#• ÎÏÖ¹Â=Óú+4IwÅXY<…ïØÅÓ3¬*ÝÙf4Ÿ¬à{«â§M4ÝÍ” srèÊ´†–Ó¬ÌZÚÊ6vDD™ÔWr ‘Ê”ŠÄ0¨BB¡¹àÁ!‚ +êWk©à¦G9•ž§`Qùå¡%™Çf7Á»±BDʼnWUê†WTVD.;·ËNsSŠ(+]t.#›•~äö ]Úém3Åoe¡³±îÈæ•;g¡§ˆò0¯ÖVMü4¹&‡è$[‘0ïÕ~ +/m¤•ö»íf½<³•:r—DãÏ•<Ÿmì#ÛøÊS&ˆ½±)í¦Sf¼ñå«\ͬ?ó,s7WM"‰gY\Ħ—W„˜æÃAWÒÁ¬ažUåKÑgEÛó=ñe–Geé)VXcEêæSVsu5VEuO²©+–ùB”/DäiTu–u–­¤z±Ä‚sr–œ^æâöÜïæÜ«R"‡e†Š™éȯВlÆ©m[’H!eÙ(_Ñg5:Ïì¦`ᙕH}¯XiÐ>du;&]™9D³É[þÅ*Ö×f^ZùŽïY•¼µù*ELuW)rùk¯þ+æ¡RoÛ³½²B,E +ïöœwT²ƒÿ ç~÷χJåëÊJIJ›ì AJŸýrJÇX;rêTa1Bˆƒ—ÅŠ‘Úà”ÁN9ÒqöúbÄT_ŠÐËõef)Ò+F#†MÛaf+qV[Òfž<›pÚšëà¯N/#1Ý4÷ ÎÔÜWM*D÷Í)Ógå0Íåͺª.d¤ÆtÖ©!D;ZÚéÐŽ¥#ÅJ›ˆ¥gV^XÒHñs³’h„>·K¤£ÖÒ°$¶iC<³²lŽÑeÞHž±è>Ø+™ô‘%R¹‘»±¢Ël‹.³7òšõeT†—Åì^Ʋ:c÷ºœBÙJL$¤Ëº°wãü0[Z-­ÊÕ^½­+¬í¢rä»ÃR›U~Ö•ðÎòÚ¸æßùÌ3a{r’òÚR)¯Ÿ%§ˆÍe†ÐÈÐr¨Î6Eû½.×ÝÏnâÏ-^± –•6Çg8CDwV:WÉŠòfJU6K9)‘°Nc,5uŲ¬*ëØ µVõ›¼R®+¾z2«úÌtÏwšÓ &,ÕÖYèªÍ–> ÍåVÉ^ ñI¶l™]å ù—cO¹éeVJtÍÑ|h +«°>¶QWºÊ´Ð®„/ºŠÜ¶LÍ>DXÆ +Ù%ÂÛäËçò-Râå•aO‡u›SA£,ϯ0g*²;k©­°ƒV»úýt¡ás²®î&–ë©ù_a ÖÕË•åŽþ×Õ{šö†²V¬Û³šX¾<âøŠ¦3^= ©X½ÒVo&Mn©lÕ¬)vRµòÕúR¶Êž¹äM–:¡+yT·«#É~^¯eëïß_öd)ü k¬¨$’r1ójÈnª·(ɧyd5Ø,F…„ìvH6'3y†Nvô+u²¼])$,Gv3eGä¡WˆçÌng——êåî²":±WIìe1BÛ•s˜ˆ7&Ú>d¾6gmSrvlmxÊ´"Ë>"gM§ì^|¡Y–îÓ»VÝZhŒãç:–<©C|Úü Ÿ'-²´§½0§Ðü¤ê} ‘*¬šÙÌT©Ã±•j]Mœ»—HáÓN…&‹ö¡’šëÞž¿ä\§³ÃqïíPù`žJÿ—°œÌ5¬3,#ª{Mò˜ïšfÇõ­üI„­CC›â3ÉÅê±µŠOŸJí3Tüø/ÕK´Ó!¦­¿ËÁ§ ¨”î e²HRc !…ˆH€ã€ @4 …ÂAá˜à>€³œF\0‘‚‹5¨1@„ tx ÝhòZ¶:S T^Œl¨Õ€e¾µ‹6h&MÈt6¢¶¥2µzo"§6~x¥à•ix€“ƒ‘=ƒŸÔŵ÷µÈkÀæÈG +Á#m½3ðêÏ”îG4» Š{ /(Å¥íôˆ¦rtnÇ…¨yJƒhàÊr^ǯ¡™0¯çqq8z¿ì T%{P™J{oqK¦}zº*f¡ˆ·P,o`ÝŽØE§—¼šX/K`¿0’ƈàP{ùb­ýž'Ÿýu~¡Ê¨°¶ÆÄ¸zÍ[`jü4gÓq× £•DE¹³ææÝ O<›eƒH:hE›ÅÄDC^™>>ÁõàWQØ”ñ±4m¤mkáˆHµÊ%y ¡êv^ËU-Ÿª ¢'×—ø%§ +f¤H@‹[Båi t²É¤KÅfæ; ÌZÖMÁ§öeÃÂäÌùDðDPô" M¤më„gødLyÎPç"^i/èc<+jDã;EVIbéêÜ%9žðw-5l’¿Ô¨Ž¸¸ò¦öDYÈð51“h ×¢ét g2D¿ÜŸT¼¯ ROªgO«Ý4¯¦¢ybø9A»Øó¤lô"˜çË…ËOïæ1EñÃÙ€¢Í»hGèÅt}\6YµF¿<~ϧ áýmgxm|ø‘²òŸÛ¥JÚÆywp•`Êfó¹yxMR1åh”~[0é4`p¹ˆ·ûŠ¢üC­Ñ´ž\C *-™A°d»nÔ$Á|‹ …YïqyÌاš +û!üŒ¡˜_ P¾±éx!ã+¾¡þÜ“EiAÑ'v@Ð_2”–¦Nj…¯ 4:ûgø,Ðy}`à«O®wçˆ5^eJ€u¾—Ö˜kèüÃ켂µ--ÕVÑ‹ÊV*óîœÿ㞟Y®4X–Ý~z¬lHÿÂ!_ƒ3æÏØž%ßçD–JÀšç Œä$ç뇜rÑ\6Žÿ]‰iX†´÷On7 –[Ù$wœ?-FV²Òͱ¾bvþwü¢û8O;ü ¥üÎ?Ù‡[œÝY‘`¤Çgsy< óf¦ùáQÖ{üÄ[þ)ñÃô +R%AËTÏÈ|Ó"î!ã_=ÆÈ'5‚M¼k-Øo°`ÉædLïûXRž,ËǦLX˜Ð™ôaEÀ¿ÌÙÙÓCq¿´ºž¼2¬LŠš„å.nøè­‰©þSžKk?dÅAQÊ~`7èIÈ”Vh4v€¤nžŸÏh +ñQЭàÏ*wði&Ocž±œZ£Ï²e³vKxÍ׫¤g÷ô°%Óùø9qEóvr싈:^bŽòDhÂ,sêûÔ£è‘#$ Bó‰ßVÒ ö®Î:+½æ)ÛÂ.Xâ–꼄M€œú 5W ÖÇРÓUÙÈòÈË€›þ¹ÌUàé¾0e2{êt›à§›5Ö£CBÄWOÑnÕ®7¤ôÈDuej“$SE(5I`ŸÐLVX餶6°[i=rØ2RÍŒ|l &ð†"Ú:u…w¶Öž‰´ž/]Oð­Ë¡0"µ ~ÅZõ°ƒÝÄXHŸ†s\®HTÓIAY?úç5VK!©Nr ‰üIÖm}êz…šøvÅË&FÁòÖv‘Û/—ƒ$~˜A;R0ÆohýAe­eþRï@í`Ýç–ÔÇ@Ûæhv€ØM ^?'N¬ Ï×#:Ì2#ÂᢙLçç€5öÕÒz¾ºy@Qš ¤Än^hvÊÍ›f2I¥áº2vCy}”ü¡IžM­<)–yä%Õp«§êGf&bˆûPåtÍÃM0sXàØþÒ¾ÎxSf: ájûå?S+» 7ÅÆ_©IepPvŒîàí¿,ÊßCÍzÚýàÛ 8£ÑvX[ g÷ƒÙ’޹ªÝ6Çý협äFDJ]¦t‡#ÊW& ÙQÜ!öy ) +J8þ–~¹g.³« Aëlà¤k;®R4_lIäûû5ÙȯĹ>IEãn]Å··ÀÞ*‰‚m˜¡'t)’ÇÂß.ƒ{á›õ> +”𦗼O‘Ï|#Æò.¯ 2z cÖlޱೞƒ¯Îþä‚P½±ØµµKcýk˜*7 çT€ $²c÷h6¾?¬UkÂggc^PՉХ7â.éz7¥Þß“Aº—í|d/µË[Hu'G¾±à{¯%‡&" ?; -ñ¤ùö +˜+¤æûî&Ê_€w|Ž<µ »|ê1Šõ´*Fßý"· Øf2ˆõ††½¢9lç.ŠU¼:š”¥œm@‚„ÜûõLÕCŸÏ­%X…™Ú¯¬•ßô-Tà§Q±^À— ™UçZÛP*™|8–õmXÓm}‰;+ fiÈSW_í6ŒáÝvl°×è¦bge„1c]',À€µIAæÐþeþ?„†1Ƥ©5ÿ½*PV$¹‰†¨Œhš4ú«´@¨hñ á`_æÐ׿E&Þô­rÎ$À¡’Oœ§n,–| 5dg~ŽI¦ ÏÄëJZŠI2« <_Úʈĭ¬«ö*Ÿ09œap¤¬I±`Õyü7¬»@áqáÏ5³¦>Èja ã›×=mEÓÑJl;€,N¥@ì`£0Èu‰.á±oŸÝÊÒµ€õäÎQoW5ï(~!Û¹hãoJÅ=m0Ë~LìâÖ^ê˜?8µcgS-·é^Ð+Ä(fwkh˜¬üý˜_Ù%»¡¯vîls´#s ê¶WWË;'$GK²Sˆ²ßVP4<‹…Ÿê#ê9íµKÄ̃o•‚–maxÀyqØþ`œ‹YI`QÂ|!öüUÖ)È4PeH?GÆ"¿ éÑ>¹ÜƒŸ`f½Ì)1$CZnns­TöÌ$Go=êÃñÆ®þðX¡–ÙE²nykU°r‰$á™ «>, (ˆgºç÷hœ<¾ÅH|ä~¦0Žçê©BLãÍ]Díé›û-ÖHÔ|ôâ§°A³ÿtðï9=Ö‡Yt[`>-?ê9¦zODü8rÓU=^\á›û2êÞ=Û—ÿ}©šm$NÓ‡´vSn7¬Î!Ç€¨Òe&ò!æ?ºÒzq:;¼ioxæÒ•µ«<ë×±¶#ˆ¢EÆ„2ƒ×7ŒåÌ U͇@ïÃø¹… +¾‰D鸋Ä$1owC“8(Úǧð2CãÛI±8ÿ+‰‹ËF\7*‚r·}$»7¶ÝTŠíÆf6Pí:ì‘ö#<)¦’jò‹1Ô}áÕãQÏsb_NE”î÷¶[³W@˜­¦4Ç–!ÎOê¤~Û`ñJ¹JÓ&é: ^‰+o†ÞèyÑS«WV·ÿÿ¸k_®Ë;d@Úݱ7m¢mË£—š]¼Cx¨ž¥X+Ã{Ó“Vô¾|ojŒuL&Ï_?Õ³dˆ¶&Ö"øJEˆnÇŽÃǼ­Õï\´ m=Ï·Þ%X=O=·MøÜR+DòÞQ¡FUŒD³þé2gÏ_¦°/(3¼ñ¤“/¥²ÿO†y +Mz¨ÔSbn}u?)Œ‡…·íR°òßÖ=&íE ?µeæ|š}‡7™Kòë•D~ñ8Oy¦Ìyæ‰'(Çh$n¸"O”5U>íÇp¦Í-$[Þ™[ž„=b’è&{5OBw*^v’v áÊ R-ÞL«ïä±¹‡M?øçâžAÔ?Ø+í¯ìþ… ¼Ráø«¤4ñ`ñPû8 RT¤ýæ«úu°`¼®9¶û7¹Ímt¼¤S²Y×äÝJ|ú°9£)¢©Úiî"€ˆŒ_ùGîÂJˆ +"p6Ã?&ˆ/jù ê*Š*X²WakrCeªŽ +¬‰ ZÞ ‰M\¡E,nŽ@]¼½j{ð`+B? r +@íM"Ñ–‘;½f æ8A|ì5žjl“í/\¶|§ê# ¤Äûˆ„á8”FØæáò„L0s~ÞMó„(ãzŒÉìn&æÿÈd8åø!È õ™IˆÄöoð" T`ÑäÑ‹å¾0õñq1ð`„€îÕ›@4PI¢Q=±Ô;í²†®þÇ[çX3Wß”Ll¶™pzüA*ÞJ¹O˜Á=%&/\iø Ùýì ˆã>)ÀJ,ÒœŠB®žP8EهȤ‘ô*؇GG<¦³â*Ï´|EÚxüÈ6ö8ÅÒ†æRÖrD™†¬‹Ñ1]jôt£M/a8GÌ + ÅÑ•›ÕCFx\#ÖßÃ[LN7V¨:5íœÓkªéãÚÑ=F +`ékà|èò©ôÚðñáòÒÂí…ó(NRAjAm¶Ùw÷qÉ’… éâ•«Ð\¸=܈®@²Þ”ûlzÐï™z¬ïùé·P¶Ç?\ýu/.7ˆr0Vû; ­ìs]®4i/_®§9«F®Ù4fÑË16õpO¯ÔhmÖ(ä"W8õf¸ö‰pÖ­Ç/d© ¡Q©T›»½Ób ÆòoÊ<( g$ÝFí]ìãùÖºQ‡]ÞY,åþ@f«å:ÿ£íའú Pª:¤Ö'’¿˜V‚p^…BºœV€ ‹ËZâÍiªëíôˆ„Óm_@ŸÛÌÆ¥cjA(¥Ô oŒ=}L'è—«ê­ñkâ)*QxÔ›þ»»k±+î%9¦ÒœS²Dö™bSržvó)›suðhº¤ + ˜Æ L›IÒ4¶æw[™Ðð?½¦{‘¸?Èë­¿2,SrfÎýUü&­¶„5`#=‹%v°¬¶¬gÇì!Ì4F®Kê«b5}¿ÜˆŠpelªÅGɵQüéè¼²{£g2@dÖ°Ñ'-ǬŒ øõ ?ûye +Gt±Ähñ(0¦6ûÂuÒ•~ÄÃi‹#?Bsú~ÄA6®<¼–¢B°²ÄÜ5ocg|9Ô 5DëXÕƒ#°b‚œua}ªqq‡ÐÅTôÑ-RúÄY*E·¨úƒ•Åž\/OšA$¢)®WØq}ùñÝ”×jÞmÞä4ð·ŒèÍïÔ5/$Oe?+´G$‹æ+gêçYÖÁá7*Lô»ó.¿fßâ•ü·²÷t¯LXmQ +ôÛOEEU]÷“ò)Ýn³ÛBô­-ï–“õ˜\ —̡;=^Æl¬Hê_»Š<˜n¯].•JÅüs«Be¿òR@û¿öÊ4uÎ/ûîAwÓŽF5^?ì™™µ~=î‰D CN4ÛJ±–GÀ•:)æÒòœ ñ2°ñ2S'éXåðÛ‹¤¥ §&c²×b?sW3‚o2§Í¦É– +f@Ý忏àƒÿ +ó€ôŠäUGª9bí½ëÝQ_—åg¨Œî¯Ÿ—ô=V³JÑLEí9†ó©ZZ&Ê#ïdž¥cç1ÂîåI1pãÅ“p)‚¤ÜŒþŠÙ=‘‡¥ª›Šƒ• +ÛKyÊT™U é ãOœ¾Ý„Ç®%7K¬~b%tQ‚´ÊóEh{_qržÓ1Àg/ftÎDz–Ÿ®afƒ¡…­þ³Hþbe­N•x<…D¥Ê—j ³Òî×ãZò¾ùæÔC"'ºÀ¨,i#@+¢¸{qãôW*öJÞ4;œ&ƒd€Lâ @¢¹ïè( Üw“½[³D ÓÀ¦ÜH'«ÏOç@¬2ð + ÄVOÂò-(ÀÞh…ËL¥8Yjxᇜ³@£H¡yë’Þ†V[7ÐÀ̳ӦpN~Ê!¼±\—e3–PÙ[ú‡O•c2µÈd¹&+ D’ðfYÄ眢px¢+8X-³§#±o©õù)ëÉ­¸J„ ܦ´ý4Õð/‡UP“­z‘@*Û: ˆ^\¯÷1é +ÐïÙì^‘[¢S”ÄC t‡‰5æàØY”pZ¦vK‚·”šh×K™à +™˜.H;LGj°Ó<”‘M›Ã#õðsÑ-þî9”ôÕÀ>:–…Ç.u'Åî…E+í”Sp1té5ˆ%œt­`4=x­ë+ÞH¤Ñ7êîrDD‚‚B63™IW\¢BÝï!Û©X>E¯(Ä‚­E$‡Âo*z˜3m´.ËÑô ô4Crê!dÐÂÍO $9µWàÌ áKD˜óź„Fܱ`¨¼”Áí †ÜÔ°(mîÚ6u¤ð‹)Ì’œ-x‚ƒ‘Dž"!½aÍÈ@éDÁw<ÌKRƒrÌî}#fì”j˜«øJ—ÄKLv¬½Þª…dʹי‡?ª^ûÈêNzE.1k/±’¯Lëƒó¶O(Wv²DW1lÒÔýø<«Câ¼à=È­.Ë… ˜¨Dxm+wS5•Y-.qÿѹw5€¡V.Ç/¤ë¼se„ï'?=¦„ƒ—?i;è[Û¢²”…?󫺕® ú&Ê¢£pœ„(ÇéÎSB³³¾Tîªe c‡ix40ÿ÷‰Ù8ˆr8Šn & Wéý6{6]`^f]ÈU}‘¾M~Â6ã +c¼4DŸÇ¤˜¾Õõ\~/ñ³ºsÄÖÅ^Â|›#òßTõà?4€b–‹j§ÉÊiÄI´LK­§ÿ5º£o94/2À(ÞEÐ6´0è©€Øý€²Î•¹jq"–Zú ÀìYBì?M\ª9ûÓrxŒ—^Ìž–bÚœ&¶¹‡'ÊlK“™¡yœÎfŠš)çÂïÅÃXãèHkþ%*Á÷ýpš`*O)2ý«÷}¬¸?¢ÿ7µ+?aÙ"L*aE ìÎ]$Š;7×+ÆAAy%5v‰±.·d×fJª$Î$Nìp]~ä¹_µmǹµü&¾ü¥‘‹ƒ¾Ý{/4öu™ÆúñͶ8{º­¢7ý«o žUÏÐ_ÑRÊ»-;Ð8—oGTxaës˜5ý„¥´ˆ|Q€{%võþ¶º+ð‚Z*ñÁbKJZ' ÙPKTæèXÔ*‰•Žªa? Bû¾a}w‡Eáæÿf˜¡¢Ù(ýÅdógûÚlE^ƒEáP[.ågôZôÓ½ @‡k3LW˜Ñ;ÄY DOÊ#ðˆ@Zˆ0EfÆÐIÉ7òãë”Åðò½˜`ñ‰9P-â|‡[º“ å:“Ú\äa_ “¡¥ŠyxãùóCÉ£­ õ™Ü¥×lNÞvN—½Î†b”Œþ8f8ÒÖ#;sÃàäMÇXò^ŸA&¯øù,ë±SÔà8#òävCA‹XA±ÁÞ׬ñŸY â¸3¸¸´ZNäù®Q>Œ¹.±gC™>Û.óQܨâˆß|’ƒhù8ìÑ!NX© ªPˆîåÐ]FÄGàÅA”Vh‚2›dïãËß̸Ïáq(b 51FÝÆp™ìÌA…ðb4­7× +k&¼Cæµè+8­ÓÉèðŠåÏ>êÀŠ>Lû*:û3'®Ð­Íú1Ï2OðXŽñÁÏy¡°áö¥ ›OˆÔÕ‡ =Y„8BüÞÅæ8‚ øŸ?¦à ñQÿe°ClÖ¿àô²‹d>……Å«V’ PôêÛ `F등Œo[i>pŒÌO©‘ÿ÷xn€™L,Y¹·+rbñBݱ5÷~oq† ¹¹ë°ÿ0ÒÏÉ÷ÊÈÓ¥€;íš½02c9¿[ã€/²ÀGŒ¤fî­œ,¾aÚßì‚0„²,_Ö¦³´`$×ç Í»-³ ËüÔ'I0Û'f¦Õ¼N~Ãt…JôÌ`â}Â'sÊl‹Å0é„|fê4^YtÏó’p31ªNë,©ïSrÏ t† JAõJŸ–Œ2(%õ·ÞÛKÊ ß=;΂Li¹~Áâ˜Ï”½:c–_ÑœăyA)Œ´õ„‘b5ë­8þÄCéé’¹õôUmë._˜Ê/ð&z"ÍŽãȆ+®Z±Q u¨Ü¬§±¬!sŒ6ÑpAí[Ý4"!œH\çY~ƒu@"M¿ã’·—Ý$É»öµEí¼gTª‡÷Óáâ>0ýºÞré–ÝÜêéF·Ÿ¶8ð_b¾'Öë2''ª¦[pë"f~ðNïO B§‰ƒˆ|d­ôÖN2Í"™‡VÎBÑÍ1ú%“ÑA£¿mèÑŸûŒ‹sòCL‘×o–Z¦T»ù\FT%ðb“#„ö‚ÙdNŒ|jN?ÍåÏ%×׬¶Í% µë"IíÖñÂ&o…Áš"‹ŒÝô”˜’Å!z±–§q„¨@ˆëEsÓscË€ø™OŒæL`<>¬™»^?˜MpCuÐ˾á­h¦ßs3í¥˜oƒ9^2‚F¬×x0]å»ÊŶ¦˜wwl2¢%zÒX˜@Mʲ&3¨Rh¸ÓYÄiQ:T45 9îBÞjp¤5ô?_WožŸà¾º¿É9kbèœ,Î|hb”90㋱mMÏp¯ù3ªMÙü4\ þ:h,Óõ39Ñ3òÓ¦‚³ŸÉŠ!¸kÐX1Å)šk&?4<LF÷"i”á¿•æÿ$|íÓ4E÷45¨_5v@žš>ÇjΆ5—BÂÌ%­It®± +|Í×Ò vaóϱY÷T.›@û·m ‰#FzjCõt#8ã.Â…Ø à¡jFªÖeä±Ì*H‘îÊ ¬ü¯`§öô—Œ¹—Ï6…Ü˸·(ÏÓÍFé\FídņÍà3³ VÝåð˜Ø„m¶¥Hk\CÂLn溿- dàp‚Åôtd²;!<:æ\ BNO™²Ø€¶ÎOóvÓêbû¾ëƒXÍœešö*5f@i‹ð²Ò56O¾1¼íy‹ZxZÀÒ™ô Ðcn(ØóÂìKtÈzw8›ËÓØ'™ðª"ô”t5S’$+ÇJ J\8\åW(÷ã¾z–†=ÍY~¶g±MvË#HU!WRïãŒÁJºæÇ‹°§Þ@Ò§“¹þ»¥¯8§ÛGì.°¨exÂ[a@X¶•üÈ/už€FÉˤò£Äò‘ÃVÀê³›xÌ 2è3K%yŒ@^~R€ š6y+Â'’AÖTªÇ/'KÈØYú•˜‚a©à…¢À÷yš¤‚WߟX¶;þªŒÇt,‡€²œ;ïBñ!üS˜ï²Â²Èel¿7ÄÿD¬ ¥ÒùÒ¯ÑÓp÷"/cÊŠP\ÐJS]$ˆRh’Ë.gRìöú!¢Ê!Mp¯’¸²:¨¤FnÛ»ùêÁVAW”&ÎV[ð·F¡0:´à6¸ÐÈ4ƒN +»ˆfÊvÃJÑÐr.Ьþ„¨žØi_§q™Ó…ùOpkT!•“Ѹiót2 à–‚¥ ßÈ´‹–6ò <']æ' ^‹m£Ì<ñÉþýš7'Ü^Xþý”G€¶!Sÿ?×8>-ç€QÓ‡ÊZ¦`;&J ’¤‘‡è+6hœ°w%›@D­h7ŒqVø:Þ2N´9OD’’5£WIß +NÁB©dZ.ó2žœT,±ž—ÄÒ©bÊÊ úê>:RŽ 1·ªP ›C•9”î{RZÉ1ªw-#‡Rp|~‰ +ÈxôÞNC¶„²‚^Ëÿ8-ȉ²Ÿ æ»f75´©A:É%ba:zGˆ\·[:,a1Øâ\Ø9WTÌUeg¡’pƒòç±i.7Ž–Nr älœ…¡sèB=a-:s0c˜4µ0TLžRAY7\5`éC›Få§a“ÒÎöóòPÔÀâÒ¥kžºÂ…]oµZúf~ñÐ’±Ú'8}”¯VÃÕÁò#hßBüP©X…¸C ÁBÑ“ìNõýÛSŒÝÁ§4HýÄÃØ’ê®vÐOÌD/¶4…LLX±' dÕÆžfX>ªÊ‰AÙz ÷CÞ´|%Ú£’‚ˆY²£õ\#èè´å—ZÊ=5ãë¨n!=‡¯—aô˜ðÐ$ú´ÎŠž'™Ñcz6]þ–5Âè‘Âg¦laêžçi¯…VÅóh[”LQ=päV ëyTÑC|¨Še=ÏŒ`{*jô|K +·¥­æ[j* ÒíÃ)¦Š`ð$U†!ÿ¶Éh:¡|ŠÛ„‡ñßùPë±×à`öNæèâ’ÚÅ»[íN¯²»'w +12hun'¤ ³9,ÒÎ{²èÎÆ•u€§iSoÒÅÚBƒ«ª$æ¹CÈÁXBV“ÃÀœ¡Øm!@v.šªÜ™²Ú¤4ËO (9L˜ÏNF†{«4I5»@æWµ&-v µ®®„?=Ãü­d§ÓœòÔMM<gØâ×S?jD½°á4Ê¥ù™Ã–¾Ì‹,MM;4TZˤ6öŸEoíbv#sSn¥ÿ¬|û¾ˆÓd*ÇV‚43]Ù¶ˆÌBÇÑ'¹SUC± 5Ó84?Zå]Œyé…*4p0†Ål¢OŒÙ´£Ä°%¯¼æ©yIÆñ¬2– a¬A‰Î&4Q•at±$žQwÍÖ~Ñ`Îõ³DÂ$Áüå8B—À˜½ÌÙ¤¶r¿´‡ãyçÚ7Aò%æÏÕƒm{Qh™ÐRx +'nè2JUÅ<š†%ÓÓÐ…öökB±i›ãF%65‹ÄYwÈ´Î1Íû”A ÷’¿)dí­-±ïe'àDâ i¿HØÂ +™ÂLÔGJbȸ•´«Ô1ÃGsư—¦ÅÇôÌÙ«íÚS*ô(ƒ^Œ•üµ(¥é«G7…`Æ||$OóÑ+~2 À–úÿ¾„p!جvòõÝ;%› ¼à—–>ŸWzâ[Wi}Õ4ŠßÆõ2)Ž©£H·GØà‘ЧééE|&Ð÷F“ê[¸PöŸ‹‚CÖ±ùø¦p[38^åt´ªXHKw:`j¯·|µ‹vYÙ/§tPrØU)Ä}w“ƒY+•;òÿ‡.•ýy%N1´R^àÒÑ'Ú_9$„(N²Ð“Åýóá0ŒüK-Ü­r—ëæ Ó™!=NÀLs8½fÁ ÒQ× +çµñÓ+¿‚&Í•ã„Ó‚?ª3;‰8 ½GÅnä$%u2Äb)V¦cw&$[ð§€R£T37­ßhælð©6U„Ÿg€° @4xñ&Z‰U²²J–wÇ¡nÖüášUÙ¯ÚÖ@¨ š—c=å»· o",–•`íï)2žñ(ÀÕt@ä‹ZëhŽ—¯+C’.Ô†<£æô‹¯`6ë÷Í‹ +¨xj€AOø¯šTÜ8À¡Çü”Îþ‚ˆâwäøÙÚ÷©¤Í>^c®–’'áHÍ6Ýq’ ˆäT Ñ=‘ù±å˜À÷’4ô`§IFBƒóx®Liè²Ó±Ä‹$ÁéFXá¿g¦È€¶€’X“È«=ÞŒé[éØXÅ:ÉÎXYe$‘¸óÒû9 +ÏY‡w^ãÞÒ@| ùø·1…‡²t¿¨J5 +24þ¦åWAëJã_•JF p<ˆ~Õ7_ì%oþS™ J¡Ñ°ú6‹ffQY ߟè0C/ä4žüZ¬wàšY Èrb–]Ò6–Õz劔ë<]R¾nÆR)¼AåT5Êà;Pôà~Fæ5eÛ‡,ŽuNùAÏL…ÖïªÍ3|˱Ü`w>L“öêëËŠ.Ÿ5‡j¢K|þ9­Ã¾+~¸7)—km­È—GÍý}Ü4rÌY Wø:‰h +Ôº£­ "¿ž°õûa™ü4õàßE=‰©$2q†©Ý‰.‡M^̤›¨I§'´ô)·(_Ñr&NæÒE_±‰å»± „%ü°aÂî&ÈšŽËÔcÄy®”&MÄ:»/ä ‡«›®©’“X1”ü^ÃþrmAPqÉ»„¼o1Õy]¢%¿q½+½’lxUÏªŽ‘•oèÓΑîT{'4’"h~= E˜Aµ¹Š\|ÁÚ§±ž‚ÍÇ:º’»ÊM*#ЃކVÈíR'y¿y[‚#F(S%©ÐêÐË­Ú¼aT^*^OQzƒHž`±VÙ7ìùÎpwéÍŒ™1@ûiÙ¿ù-^¦M“Ï@í@Ën¹Ü”Ú6væ4Í‚VºÜZSÌsw-óD‚ß±ìX*×FPËm·øp«Ôâý¼Ê`ª`` ëšnš/4Qßš…á$Ú´åp§%ë¾ÕdGžS ú¸õvëÛa‚ï5ªkœaLª +^1d¦9{ù—)žª žù˜ìÍÚhàå†% £|?‰a'³Õ×P• +:üy²ouû†@'7‡\IJ3²Xß9ÔÏðsøÞ HœPHÍ›v9œ^îg×ó¬ä_*~À˜açtyʆ*wr”f¢k¾’Ø_rü"màPý^MQ[~<ËA.ÏÅÃí狎¦jRCñ„œ¯Ò§†–€Ã YZS6é½ÿõW˜š.BS^À&øpëàqéü’+[Lð ?ïŠàÛ9kÿçû˜œ%÷*/Ù®¦Ä¸çÍ$mqTD{¨ç¼/9zþ¯W6“¶@ aõÊèÝöš‡>Mïv,K¦'z¼3á ým–ÑÍ{,˺Àã´)oˆ‚ô*"±¶•ìI…´.¨üì1Á{ÄÈÞ24qKø|+æ矵4©$ž|´QŸ§Uû­g +÷ìÊvɧ+¡3´Þ~oüå€Ó.æ4V¶âÍÉ5X\‡ÉMì«_yQ y@‚± +£dø×5ÁP™›/þâmml£Ü~ô%±¥ï’—”Òl Id¸´O7bÀYºBÛm§stŒ.÷«lB*¿3:¸†›Gÿ:OǸ±ÄiüQx|:†Ž«Gœë£DžY9±W#m¬H¶+£«éž¶Ë?ëìŪÜr•©(ªÌõF\9Â+eÓŒ¬‡.uwž –›YXfîÑL‘5±”Tùñxi!ì)ª¬qåý« g¼ž]š·lMê +úÀï˶!cêãÖR˜X,J} í£“-Hª1Mµ)@8*?Š)5ù´œ4×¢&q@ó¥Õb¢Ä·5”u +Õ#y8±!&A©”(¸OÝuâžÄZ’L¥Uy¢£ÛN³¢tÊ,ÔtJ$' ~¦ÓĽluÀÙ&Ñ+ZSÎIÓÊßÂs&õ0½Â™Vëefh&™‡Kãâ·˜b²Æ-(dg LmÁ3Ò /Y©Ìó-oÄ´ÇŸ‰,%º•&\Ÿ@’ޤGõMJ´ÌFöA)57iŠ“4¢Y—Db<Š,”$Mè8R~<‘&ù™2…¤Ç>}ºV@Â3²NGK%‹~¼£G±.˜# êFs) ½ï¨Ñdn–Q­2äÜÍ$X}MP!ù?Œž¼4µÆ WÃÚºªh‰KÊ›½Ò³@Ú}Ä@îø'Q¶Ôp¨¬C¼‚*&±Ï¥C’•Vû…—4°vü½íŸãý;¶`õºÄùÅo{‘tÈbš…n÷u[=°TùûXùšß_>9êàÒ£åŒý°ô±.Æj´‘]`Ž13Y1ÞØ»C!ÐG–€{àÂYþ¡:SqØàD©ºÓÁ}é„Ä·¬em»ï+Ì…ä‰Q GpÂny ‰óYC®vE ®µ:‹™q‰î=Í` Ö- ¨Vñw[oi0YAš +ÓGht;*«L Á¦—ú0ß'ñ´ ¡RÁÒ[Âû"ïÕ´>N~C¾®xíªèn[V‹] €„p{Rß? Xfå\{½õX‘Û6nn·ù>/âÒ­nAo1ü·³†ä0ÝðjÞ:F‰çíî’ƒ)xË6p÷{~ÂÃÙò®‹\Üò‹rÑÎE"Ó½‰½.Áø®œ· Ï—èž¼$Fz'Uº±lo«ÖÙr”^·ÜÓÛ®ºƒò½êÂMžée è†™ÂÞ éôÊ&xý­ô®õèöMþéUÀj=óz{-pÛ©tÈ0 Ýö +GíEF!IrÄÒ^1{°º^ÜÈÞ‰)á» üâ²ß³ûOì¥+‘Í«J¨’¡}íárQèÖ?ç˜ÈöC½cÙ¬xÃ@/z« °½%ñ†ÎžMú)³ 4<ôìTçÒ.åŒåpVÚ„]áÐdŠT¿v^0âáôaN6iPߦ²•d±“¤•+ÇmgO©z“%S}„¼`#È4$@Y®*‹EPÀ–Çx›?:j§‚dМÖKÍšL4™‰ ®’ +Ó/ÏŒÑ~œ>i%²•)ô‹P9¹’FHÒ²(B|BÂBž¤f¿ä‰¾3ÀöýO“®p#„ÏvÙä¼±§J&g«…‡`@MV‘WÊ? 6‘@ƒŠqÇP‡¢ÇqG¯Õâ3—‘D;+®Ê\†«0ZX ¨®jï&W¢§œ7߯hKùk1¾kT¨ÀãBã» +7_†K~éë½ó/Úm(4}-ê÷”ÌÓ®NO3§žèD r•›eK3Úuó´úsVÿYynñ´xé*ç]î-è%Ñuý°Ï—´äC ›’ºDŽÎ8¾Zñdépø±þìÉÄZrAñGTfÑ%κ’(îњ뢸}¦ÈxB {x@ïͪBŽcƒ<@qGNK>˜¶0ú•ÙÃ!ÿT ÀG«l¶mÅ—U¸fQ\gû¾ø³Y=¥`ËMƽ{Œ’!¿|K¥òŸ°½Þ3ÔÿÕ ùós|#=êÿþù?­œÞóóƒ.8òW_z \SåfVmÌ$OtÙ% IÆfÏ2—È’x5Ñ3Œ±Xš"t™†” •õÕ€^Ù£ÀV£ ØŽ¥"®ó‡K^¯8xÖá¨-FŠd6­ Ê€‘}Ó\w£´†-¤ *Œ«¯¯YËÂ8[6îjIÔí¿VA*³†› "CPÔKœ´ä»Då°z6À’QP%0ZŽèc"kìF…+V.vÌlãKùñØè`6Ðÿ ü“kÌóF%8ãÕ ´Pb +•éŸÍ½"Ô€¢lC*÷ ?SO‚ G¹ûúw?W³ÃjÎCHÀl $vòӊ +ÝÅ:¿Œ—¡…H[ù 5ÒBšýãM[ö† ?zPU` £clD'ÚíYUì–a™rAþ Í3€O#þ– €¨Ð9_ü§wAüù)ˆËõõÍ +¦pá׳¼s»wH¹>Íö÷Ýê?±øôñIÈ1H Kîøh”AhAoE"·¿ˆm½Â$¬Uƒ ² +¤—e¿ÅJg¥H~°>ôÍ˨;ú ¼üH¿^³RîKÔJ¾„À?4-ÿ+Ñ'~ ɶ„,Ì‚5g²O6|ãR¨ÒmÆ•]“N¡F¶oSWˆ Bø*¦ö—Cþ$`˜».’}”qRBwªé1N!yòcÍ£Ûèt)Ù‰MÂîìr®!âáÅý€Å®V*od[{BF0M÷ØÐ [$ã—I,‡¹¨d®ô×)g”^ïaº!"pÄ §0Ã*Õz5Èз<3Í8àéßìŒÒzwJE¯J[µ¢j‘o£wTR¨ÊYÁμ¯Ç8zŒÆ²ß¿_JÎãxªÏYõ-ÅÕ7Yßûãtn+2»ËâA@¹B45%hhc¨ñ§³šøêQ¯Ô¥éÀÕîÈH:5<#\µ¦²£„7 +æ·PXçERð"¶«SŸ,áȽ^1Ĺ—<ágá!2TÄ nŒ'wLïà¸\Äk CÂXjèÍ oãºs#b€ã€¤ñi çOX)¾põmaçÎäv÷Åéû¬Ï½ã1Ç·1(Þ’üÜé±½›Å3ϸU„t‘v¨$×SϯìûÏÜÉ6¸_€&c[Ù´EMC¦ž“£v}§ b'XÄšÀÓKÐ¥wóß8JÁÔNóÂüx˜»Š¹ûÊ‹y_¶ÛÇôâùÒþeãg2Âý0üuE/ôef”:Ó©kÀW8{\íe4\µ.ÊíW§ÖŸób úa÷~†¾°Ô¿BŸeêTI…ؼèÓ» Ëò/V£GÙ8Êñ€(_ü h àßX…¹YÎ}HXX[Û·Æ9ó¶‚Ýbâj˜ùª•ÅæüAí +„mœ‰{±äƒ„ª”(l;½ÁܾsºÚ vÙh›Û"~Ýô~Íý_ïNubL@ƃòáT-ánK#j´æˆ„+QNæÙ 럕õΰï íÑ{á0·VãWÃx.-ÞfŒ±È8c]Í_“K¥ZœT¦ÏûtÞÉ­îbö)Š$ðÇãÍö+Ê"’ Ðż>¢},Vî‰FñúÓ)8L&¸¬½±Óœ³÷R#ÛÚØ"ÿνmÿOCã >` ˆñ`µü|iA©Uïƒ;¹4I¼yª›J.ΉyúR° ¼ñ#6Ü%q§Ð;™æ×†Ûú\ªðh¯°â&Í 1¬ý@©LpûêÇ0Yù¼éÁjÁ2 +Ø_oX¢Ñ¥ ƒx‡˜}.ÖkåUÂáòƒ‰« PlDlä˜a£Ÿ6¾Ø” dÊ[Gš0åîÆ¹HŽÂI˜ +Ñ­t‘ÞªA¬{‡Æ,Í›ÊD…¿KÕfÍßùËܼc£÷Ž n4Ã.)çp zF¨ø Å×l† AÃMÇä`Š"j{ÊQпɇŒõŽ´þœë Àos‹âòw(‘öúåB\ŠoiJ‘ h€~¨oc·U“z +¨„†^ ŸÏ|"`7t¾Ÿ1 è¢û(ð¿ó÷¯¢Â ˆâb±àyx·ŠVÁ<üL¥ +?þo9ÜÔ¹ƒp²Š¡Eõ¢}$£G%|lpTJ&Åß‘UZ$éïbòN¨Èw×Qðz󪓗¹ ,•‚Ó–·L\»Q‡{C×3ÎæéØËt”3Èþ]•o_ŸîØq›ýÔodIs#@8ܲ'â§Uá—%ævÒNã²·I}ÄôÖ¾>ÈФ¿±¯‚ÛWg-'1Î(Fr‡»ë# PýÀ’Px(yKbÀ‡kÜâßæx¡Ø0°¶û‡n¼nww«y÷Ç6˜¸ßYÞÕ k±ôïp´£g¹ëS»¯œþTÀ¿Ò$+2×€JÛ±ÊJ { 0ìí¿U¼¯K:#%øªBb†+EyÉEb‘©W©$vÇt¾¬‹éèÝl+¸*KMˆ“ìÙÕÑ9×rÌަ#™U)+tIu‰<ì˲K×å.ù^Š£ÙÃe +¤ºtŠWmEJ†i%&c]“¯1Xü  òí¬6œÐ^8¥ïñAÏëE Ö\á[~¬¥tNœÎ3qãÊ1Mg:rÖʱe¦³.Aa”62V]ù¤LÞYpØÍ_3¾Db_$ñž´B;ðl›ÿ<Úà-%;(„Â×GÃFID¼†½ Æï:¨9q(:—¦~*ª¿ŠÞ€$êë/"*z¾¿ƒiþôLµ3Ó­øo;ò¶$ìÑ*; Æîx{»u^dÙ LVëÝÝ£‡ð”†Ç—öôÃQß‚¥®¨&¹¢ñè.9_…~a›)ý„üR)J«‰šK™Ñüdh–zÆ×éXqvÛeNQ­Y(.p~âò3>lIߨ2`ß¿±¦ò¼ç´e \ÓN \cqÌ–-“¡ +Þ³åyA½%¹ÉÝä­å€ÌŒ¾=&K <•¬`Ï…ç‘" +%ŸÛXÑ+Frgg%šžVò2¡1=@>\gì] +8{|Øc05äˆ^p«iAì#1 &a˜…Jð+Äyêw¢½¡œ¢Õ/Á»ÇcEÌaA摾¸ÎbÜÙ¥ûL³PþZÉÓy)0Ÿ3Ÿì¥ýyiNQ—âê僾BØg¢Ö™Pîf¢,x¦‘˜OCÏB xäÿG)*ÿ- 4OýŒ³Ä±ÂÈx¿u™Ý2L3ƒ˜Gó +ÍÐŽJ©¸V¡âÀšÅ3ip þ²ØénØ9%– rätZ_æJdé<Æ]°k±æÈ«šÜ”Â×ùûºñ+ ÀWÕ`×}›x×µíÛ*×lǵ°šnà­U–„`\w ¼®—ðÀóÝšÊÜš`×fLp…Ýh­àô»™‚A³ñ&“Å7vK¹œ»8Ú] +`ÉqÏp2î—ó@“nLKþÀz¡Ññ +@Ïg c¾yÔÇËn—b¬´ e1D5à¤m£¼i1w.õd6SÙÏ{XSl/x…*™S; ÖÚÜW¤Ä†?ë EaxÁì €ûhB &AñQ-¯¡­`Šs…D"ÏpÅž×Ìëì~Eq Þ …µ~o87‡Ú’%áæ²@JÞlno æçÉšÉ9£{jp0ÒÊ'ïj„ÊñËÉ=Ï*0KNoCâ;ºˆq®u÷•Ü8çü{ýyMWåDam=>Àå~Éóhh)©ÿݧSoì +*l-ë|/˜5–³xaQcE{~b~”äouí— Òãb:ì`zM x’ðûr±ˆ–Ê ¤Ú¦!, êGUýg¢”$¯ùÓœ¤º½/q¡!®™lµCøEÐý€TzuÃרòëN„£˜ÔçƆ+SdôÿIŒÉ•°NäðqTLHý‡mýxÏþ°†€ÔüüUB²zŒ@Lð_ZÌJ¥Ý]4äËs'ybbã:ÅÆ`©#i1‚X“½ +„f»?ª¼§ ¿{cØš0lIÃÞ4ˆÙ°›VÕêÐOb?äÈT¬š:'©µO‘ˆ„ˆÁ4Šì|æi¸'ž@”C÷ú – +îobm»]ºú†P~ì&$€w®X¾•ÿ±~ðÌbK z°Ph ÛÃxg dØQ–ˆöZ®ÊÛ8'Ýsú·d“Þá€oªßëXi[¾OøÃ"3£×ª, g ³€ZPDìzÈ¿G²tÒŠ0Ç Tëzn†kJ9ÖžÜö Ø¿€‡ïÑQe7òÒÕñ1ÿa«<òF¼£¶ãv³õØ3+ÀŽ„: BùZÏ·žU½Q¤b=è‹ßÑýÜ7%™ó«: áFt´Ûþß0¸EÓãICÑd– C˜h Áƒ"ò Ù3¿ Bwj0²„½å¯ÄŸIŒk„º…04m¸¦<-Ô«d“!dDþ ˜’ è:Îríq±uÞ>^¸"],Lj­BÚž`ÆTjLÛ׿1B·?7ƒÈÞ` ÐË^‘UQ$ÚyRõqcsVl.– ¯S°ø©ìe‚†‹Æºç[t#)0 bÝЧR L™ÈZº©Ø£NöE,ç úÄ^RæÐ`ǹKh­€¸Æ‚vùD^ž×ZðOqÝ#/:YKònÄËýë^–ˆ>å²gSHò·Ü7'¦‘mù9ë 4 %©ùÿæ_É%ÿ 1+ø½•B­ ¬û:ÂÎc¿ìÊÙÏ_/ÎÇŸ>*‹j¯>‰aR'‰ëýù„‰€ f 04É„kP$J4‚³\¿JÞŬr¥ÁÜI»ðãžf§D߯jï¼´ûdéþ‚ܯÃ}'6Çö]aLž6ÛœÙçNƒÅRì/öÛôú0×­˜¤+Cp½-®Ùëaë'üÈ„C¸…ÄŸH«å.ûtD©^Ñö·^]ÈGV Kò?ŸãW þ Ÿ‚Tú½› b`¿‰ K›Òxíï ö.à ¾=PÁ¶lríÍ_ŸìÖ¤ÀŽd\Çoqü~bÕÓ¸+‚z¤–é–`Ûç!í£è#R¼JЫþÕ³ãº_=WÚ1Ú dá:Ä7¢P,×ЉÂÜ@ +&©ø¼åt^ui)úó¢IÔ‡ÚîRN'‰çžD=ŒúDO§ÀêœïÕßx˜“ÜWªPMzT­pø+jÿ ‰M+qIö—ûôÃ’é$†ð‘55™»Á2é6üQÿc•{ºbÔh@rÇ1-UÚ©/w›|°þÎvr--I’×רõñ‡ {úΚ¾ IŸÜ•™>äÕ'ILÃNý+S?ò\,š‰æpl}T°Xý­pÐBKÈÉ›ÎaUm§ØZ-º®õ¾hÞzß#øéï0ÿò‘¾.öA - ¬>ðU¯ÙÅÓ !PÞÌñ·Qü5›˜ +u¬ºƒûÐUˆn¸‡ÂÀ VÕŸè¦^©y«LÂôü1\¬C-V@á¤:[A,kR§¾ºÐ™÷kt?‰õQû©ý…:©þØ{I€~j~@„5-T›'!n¡¶Ïvºp7Äkߦ-A:Â@ù¼a_ +íEi¡c ê¨×=Ãþ_žÑ 6&LXJ¬Uy˜Ê ¿=}q©ï¹ij¦ñ›×3b™<Øuø-o,=ðâg­wóÈI“ß픤ilÒôjÓ¡M@}e +„i…5V;¹`{ôP§ÅÓŸ¿J ©¯ïLT9áZ&Œ_‰ ]ï¯;¸¼â±Eè•':‡>Lïê‚‹oS¼y.Øt1R *|€h±"ð”Ö¶R@—s/ƒîê`¡%f¿ ¼-YŠ3'ù)MLò–·2MÿTn”ý‰ÀÌ–$hžS á z¡¹jÔÌi‰¿²áÀYV®þšþM+!ᆀ8 +͇*Ê IY[:‰Ž]ÄÂ}…È‹$Èìg LÞà)~8!@ùªWÔÏ¡ *&'Pé?_˜d!¡Ê[ô—z*ŒO¾ÙÚrЕÖÁ‡ÞÕÓv÷ð:{ŽàÀ‘Q·€…Á$µ© +ù:[à È&~ + ƒþ:„rþ–µ’g]•t¼X e5e©Í-•ÉÄ2ð¾h6É Àö¸o¼PÑ ¤m%€fd¾VìÚÀ~ ý6ß*9;Ūó«ÖŸ«ÚŸUaÀ¸ª˜«ªƒ¨*ASµfR¥‘¨¢&¨ÐSå]º9ÕQS=ÂT{–j›Rõ$‚T M”œ°iŠê»Cµ(;Ùë!¯÷é)¤ Hj%§&pªëEÐÝN@n1\-_ý0ïq,ÜüâF^g âh°å צ[Nî§ìð¹= ~° ù(û[¯å³?ÞfùçÎ1hXyÁ¿¥þ;®½þØ,`¼_™c¿+®¿Y»vt|ùàe²õÕ‹FÙt€‚2Âé3“‘¸?æE‹ߦu©0‰¨Sûõn¢Ih`„åøpsÔÙÈR¶Ò²‹4ûL'’l 1k ÈV$À”-ü‚š­]vYϾŸ$švõ i{±v +G'¬dª]Ìú´}©Nª¶3µ3ÒV𘸫tŒžÏ–åÁi±›$›‰þØÔˆ}œ6N¾Æåµdº®1jk )Ø¡ÅYjV9à ›·×¬ƒVñAÁ4&B¤X§ÒƸ²Æèx­ºÊ¼¦Œ.ÊH•‡M>’Ìa»:ÊTQÂ[Îð¡|ï£>„+§Ï\Á<Ñù SÀu¶Ðà•n­pžÙݽJŒnäB?óîÿš~i™S[ÌBúT_BÕØ ›Õ¶W{¢ðŠ1A\º„C.u Ô?qÒ£‰ÁÒ- ÂÀ‹t#ÜF ÍôÇÜfŒ£Q}Ä4á Ž€£ù „oàÔœS©SÁ=¥r0öøD  $)Ÿ$°J¥å2¥‚„)“‹Û43íuþã©Î¡ô. D*—“B´Z Y…ŸF)w˜¼ôØeE 3Ê÷5Œ<Úà¸r_§…ni±¦+¤¨Ã¹V´Ër2Iû "AÛí8÷æÈ%y§Dõ…¨Žüä<×iM›~…B¦Ú¢±ÊcaJdZ|öK+AÊóíl£®µ"»¢"&Znì‹2™ +v*+Dë8ïÐÖ©ç<­èB9¤pÐzA›4(æÅyd,h¼DÄÙP° ê‹ý hT¤`_‹ š~ â­ËMõ ¶~êŽT×Iɡ5Óyi…‹&%TÛ¦áˆ+Ø­KT`ƒ¯7à ¸£.u„¡@óEÉÎþC6CCãXA¨+ás<ƒÆ +(ç?Ä»G¿Þxº”Ëu}¸0±…URpnçnvóÄ̃<[x°Ô¨2 #û[_¯ãpÞ¥Êî9:NãÍþ®†HÿV癵t㸫ú½ýïÁ5¢6¿Se¹ëÊÆ£F¯>ö÷‚Î$:A$rèIŸäSbû«¤—Ivl jbº&þga< :ÑHÑ´qg™¯•,q¦ŠŒ j©iQ’„Ê奺Ûï/I‚EוLvѰ9?ÌÊË:ð0ŸBX‰t÷`²øa綺À°g?l›;Ú5Ë$ÝϦ*P„]S\kÓT´lš'éØvMeñ 㑳Êé‘Ä‹Ä$¡§íÿøNÔíÙ<ŽáŽë6 ïRZžÂ§éeÔÆº=¾bÎñBDyHã¡ ÞT)K‹j°ÇS + ” ßD_'Èæ¥‡$>°6Ý™ ,“¼Vß#ì3êŠ":JÈjCJôVãƒìy “ꚃŸFeªr]ÉÛÕáÍ~<¥²‚ZÔ8‡2Y-ÛNA+'Ó¸”B×ÑËšY@Á*”•bf¹ê ¿eûRMk!a >~³éµd·Û@“u©Õh;,("«“õ\õmªk½ ö‘õ4k Y팪g`gó þÎÍÓöÁ£ê’?!29Ç>%9ÐâåæxAiÕN +ˆŠ?¶ºÚYæAÖ1rÎ_[Û/ w#«bžâ“bRÝ[EíÇ_\q?±Y±3ùè?mWû3@¯òW;‚W¶S¯‚ > ÃÛsÿz8Œ¢´šrž•¡él½Š"G¶°Óz©šò2ðÒ!PëIÛ'tþ±½Ðs;JÍ"–!ÝâXAs@¹ïËΩªá»€ú¼­±‰gM6ëzÁS–±Se‹ °úxLJs½Ý•!±J$tTŸ+_ž<Ú;žèÌãÛ¾ÜÉ“^í=Úåîæw³ÜŒ§¯ÙÎ\›ýï/ê/ïÎM`'NÖh3Ƀ§y(ëæƒ±1ÝE + iðƒ(+ñ¥!Ï5Å¸È }ŸíØ×‘íÑÃÑ^vÛ.©¦ù ] Dö¼ «M…ë%`*õIªŒg«Zs‡J-ßÔΧ+ÉÄ•àÌŠ«4žÀ4“–½ôÿ›’å´ÒØoû÷_‚}„,á 7sQíÐé8ÖJŒ÷o¸Ñ=hŸ1ÌÆŸ!¡Æ$†0mÿ hºùõʵÌW”+<ªy³ðƒ›ãB"ÁX.s¯/9ö±]i~¥Êž³¢)&å}Ê`%£§F8ëÆÇTÓ]mé Ã+[y§'<¹°'ÞŽkj¡'@ e0’60ýo­µ1ú[æíÁÛ£žàÜ¡Ðt5qÀ2ìåÚ!Ng Ï -¢*iy[Ê­fÀž©­"!?W3ÐWÅ1±T¢‹ŸÅT]ÄúD ŠÅb¬Ó3¹w‘ž÷GYBÓèLJ|—Û~¥êqH[lR<@LKÈ)ÒõÖNH¿7¶".|¤¸»j9W«ëÕØóÎ]… 㥽‰ñþŠ*Á>Ìxø(( `Ø-Àh¢OLRèÅ9o´¯耱Hµï¨C`¶ªB–ÇF’ËÌ;¨^¦Ž°³¸þðáwì;”®¡ Dþìþ+°ìP™xÂEëkƒó0ʺ`M“7Š(¸37„AˆÜ’ë ½Lm¶¤ð.{%íÌÿÕQ 4ã=éÑà¿©ý'¦²h åâIï‹à ’›{¬7|vA¢Ma lv7¡†Xˆä¾N‡Ø{ÌVJcòZédCš>“†½ÿ”¦šžÍ`7¢ønüåõƒEô± €^õùïÁvfgJ¯³õc¯”µÚãVT` å£`…#‹€‘ç8RÊ”’LRKâG}^b9''z5}Ɉs‘R$ª×L«!QEÒ+lŠÍ™£™ÌB¯4j'œŠM …T-Ú‰±Åˆ5žR-½ª¥’Ìè(‘‰Õ[¡ +Uœ½SQ2DLæq^‘)¡­£ÚÈð›ùD¥?ìÇSzɯVÑØªr¨ªZ¥ó +Ï"¶ž°0JÛ첨Ðm¬ŠÙ›Ž–¢x‡æ ¡ŒcR­‘Nzê,6Õªz½ê*Љ½<õÉã‘Æe¾Æôªë‡ú^;¯í‡¸£~¢`shúH<¡0N+% ãE<#”ÀùgäòÊc‚|Á‡ºÇ0gÂg3žÏD q•TNIX¯®Úrߺ#”|³ƒ4ajjåðÌU!$#±Íbøû†Û÷­žÅ«pQÚ£ñRŒ71; Š™ UÐωëT»e¬ä6?1žŠÝ΢VõŠÉ Çb7²ÍÝ¢TOLU‰“8°„Zµ9¶š ™É†ò(¹ä1‘ÎbU„¢\R¦`*™B©ä=œ¨fÁ3pBPñyÚ˿ņòåãâìûç ]àe¦ž6{LÌ'f³ª›M$ÄxHTb"Ñ(!h‚îNøL'Ȇ†èn}6­ÏúGèCO!z^FhEò($°(hÄ´š  Š¡a”±z•Ä(ÿjªF9fŠóØÄ>%Ž0G&¼"Fðá½Åà½àÃQ!ÓÉŸ—pòyuF±Ì‹ìD"<Ñ…««õïqÌ7†æpĘÙ>ObŠ[‘•ùÊoj1ªbºM§fVÈDCôeƒt¾‡êø_GÕi1—G^ÚFÄ%4ºhW«F­É888Ô`ÑHr´j<-âp½¤–ƒóQq< µ¤JÇqM9Üy}éDÉ›ËJ¼Êœ>y q¾{Xÿ¶¢†D‡—VcH*”Ö‡ò &'!59#E +&7·‘%2FCÂ"’j9%!V:JŠD +†•tO)DɾfªÄæd­%‹ +Evˆ6ŽN(#IÔÂ,TRS²V'M;*:8RAÈ×8»IZA[$MD#šòL IŽZ($%{r†ï°eR(#%Yé[zÍY¡^¬Íé('³Ì< «j^#â̯Œ…!‡æ5Ÿ…áIçJuN1t¤œYl$aŸÙxhad"©ùËÈ/¡ b…wwèÛ*vG“Ñ8}(kH|Õ]˜n&”¬g#æÔ×õ޼vTÉ\ófÈejP‚óåîE£\r膛(ÓòP&¯¢‘^Ñ‰ÃÆÈØF—–èW×Âú-”À¯\4{íòl|ë …kÞ²ÔÜÊAvÑDj„ö’ÉÂì¥>);tF™M'ªEr“%W]1 9G´ø•Ë_£ ݈¼ØzŽJøš(ê¢o#^déBx²ñ+f"TÖ{½^Ad¿È*¢KÁ&Ù7vhç’¼‚Pvž4óÕ]ˆþš¨“Éé§…É8CŸŒ•V\—PÚ§(ØíõÇöªÁI•åæªÅ¯Í)3·cÄŠZÇP´Ç5™×d ‘{PI†oì kTQf¡§!hr3ÈtÿÏâ VàÌÄ[fä‡(œ6Bò@´;¨ 5›ÈLÉDj1O‘D•tK&v„‹î(ÄXÔ¦U=ãÄjß|½ˆŒ|ª öÁŠrÜRCñ ÌHÅgZA4áAš­8½wÊgË4½èÕ”4‰ 4^è4vfÜŽ¿TÆo‰Ð¬ð‘¤)oËþ„ É!'™MäÒ‚ r4§‘.I5 +µõ! 4~¬i•h!FO8Š}‹Æ·fn“HÉù™×·*”q¤¥Ä£›Z5=Íþ*MD'°FÊB6“\£«{¢DâQ§)HY6°,ËÆ?¹éRû®nçÿcbZäC㩟‘€„ÑÄd*e† ž†Ÿ¡Çð.ÑŠVaV¯°*q*íº]¦]Õ…8ÐtQ,X,D0„̰Œà–Cá 79¢´ÂH¸„IÛà!hòp¡…1gÂð ´@(E UƒfO˜®$xbÊà›8 ^°À%4CCYçiœ/œf8‹”†Š”ÄBIamJ $HÊR—.u^1_ GI¿ÔIÉ'\a¯Z(ì{ݾ!̺S +u‰ÿe8åg\ÕÀNnZäŽÇâ$Ñw<.• ÕÖ*¼­YJ$DÄD "",/ˆˆPT‚Hˆ'XjÂ…Z%î¦îpáC9 —©p²*œçI1áÜÈ᜛ fgÙÚ…r ÑÃÃ'Ôf¡á%5Qb?î¶Í„ð1ߤêµU=QTä)š˜ú‹CQQ‹Ù‚D±™˜F%ØËó‘pF˳³ä1bÙ —±¼ß?+h(^—(êIÅ*6;kUÿ®òùøå9êO[Çãf|˨æ'Ïf‚BÕ¢FgþZ²«Fâ¡yc¾»$¯è +ÉW'ðKhÚx½}›¸½/R‹EÆuwâ®)œ‹‡sè©®ÂkÆHÕ%jÞ˜Õ?"âO¨qÍÆ)¢èLÉÀÀ ,ÐøWøôàGPr†)j$@Páq˺´dBN³]ÐSÉÛyc‚TaÀ2ù#x)„€  ‚( T ‚00AÀL p:—(ÂÈL˜:•#«~hÈ5">O™ +wE‘%JщU<ƒêùÌIa‡cˆªÚyHT1Ü«ÎQbs8v!‹DE(k7‹ìvÇ‘j”¤Y6Oi Éæ ) Å”ö–*–DY_|L‹^Èè…ŒVУEÅ -sD,4lQÃá$é‹Z£†Q›E»˜ «5*iÅðœÐT©<ÒH!F›X-¦ ר¦XÕs YL2zçšK¨c7 _ªÜ¸šŠ–Œ¡Ý• àÌÜšÏ5NXÓæT¥«ÐJ®Š!™È®‘‘ÏÚŒ²yÀˆ'ÖMçE|KÃÎ ÅÞ(nÎCñ­":]4Ù§ªTÂK¿îì]M3$¯s¬Í(ÈR°3~L4žo>óO]þüóob=?ÕìÍ”ïcItìCåWeU'Ìç ÊOr–RꎞãYVµ¤ö¼{tK´"F'ÖU6þùoäO0î]æOÍùÓ?š!™c’Ì+t³!3º¹b cj2Ä’ø"Æ”i?Î$fÜ‚ªê5¨s"¸«À`é箎IQÔk‘J³¾R¢6^qSÝHgÉ$”t˜vÇ$¡,‰\’!Jt"Ÿ… ‹äˆY2wiIo$ºŒZi ÙxkˆµS…Û¶n9Wj:ÔØÇ3¨LAƪ G¿ªöš(/t\G¡ë‰))U‘ËT1U‚]ÈÆ¯šòIþn”¢`ÅÆ®p…kÞ[A\ÉvQY‚ù°£…yºF‹‘¯ÑZ+ +‡Ðddb¤v:iV­k4O((›°†a†_£¤»W§#ÌÌÞÔ×IÈ"¦Âžß±šù°{ÌæÕ5šÅÈ%´·$vÉŒL—HÚ*WK^$¦=\ÛLƒBc9H|j561ÖLý&sKžîŒÛ\w§Ö4\,ácM$g‹¤ìnkÈQ¢}ò³ëÉzW4A2ieLŸ·¡m\±§ñü[^äêHU]ú‚¬EU^‹¢%J3ÔÆCk  pMŒÂ­MˆM#–v“´úË­ûê”Äľ7anä÷å¼ÈæŸU4dkk¢î`xò"ßø¦µ'®x*¾8DA©|H*eœ"-íDLrÇ~nc¤ïËÏ¥º¿ìR›SW&›àü&‰‰˜×d1õÞQêGåI‘ò7†-™ÀnXj$buÎ(™ä²:"&!jƒÈ±ñ¢žÆ,JÊ‹âÃD.{ä.D5u-&èlºS‚ýŒ²®—Qìªô3‘aɦj~Í-5?O?ŸŽž‡„ä²’ÏéeZ„r–Cˆ<ÉÝv³v8ú¹ +®DÃᄘ·‘ÍRSy,‚1C(eGèM<¯È•IqÔVá:DDÆP´G¼Õ |M*DYuå}ûjªrQu™ÍÛDÃxñ)~Êõ8CyvÔ”Ë#©\­¨\îv”U5)RˆŠ¿êÇ +ý>㺫芯کþaÏln˜/×h§}[WzÒÚE3ã¬vÍŒá3NLm%¤Ó›F”–a§*6•ÑÛy¢¿w”h}9KJ(6¶œõŸ„i^8Èü+й^¡‚gåŽ<Ä$š®­¼PAžÚ‘ªÕn*ÁIPàþ¢Öíp´5ATI.~^LI&34I€L#£ VÚwW…}6üÌ4<Õ?Aax~XC¡Ÿ¾Bû~|òåB=MøižÏ71MȈÏpúéSƒù»0óÿƒà³ƒ`<¡ð>*7]ýt»¡\.šRð]þ ¿Ëážà +ö<¸uð/fX¿h +&†4ÍÛôGΞ)„†H4°Ã‡Ã¡äªÚ69ª&jt`ê$xjÁ¯Çäp³*xLsW Ri±®  +–\òà’¢¢²„PPDäc‰Þ2±'íÄžx DC± &ŽHæÚ$ éÕ0|¬üódÔ¯}[báe…Œ’ ËŒŽ÷ù‹Á…Z4Ä¡ª 5YxÍÄ@Ò±È#J2†aVnd 3?L 7Ã7vÇoÜÍ‹J8çÍÂb®yÅŠEEá +N)UyΊ˜ˆÅÄ'xü‡ûÁ©ÐFÎà*{Æv_~C¨e±…~0£Â0£íÅ¥™˜a8î™fð\“ºãu‡à"úàà*S4P¦Y{¨¨âÔð†÷ô§L~ô/_þV„#Â[ä‚Å`©Ó¥Jä+a‰)eÈoešð%ÅxÔBPŠV¼KÊ:ñ;p¢“‹äD¡Ú•EZ>u-•œ& #öpËq¶T +ݬ¥H 8èp’D¤~žÔa2 §ÿÿÆD*‡7(Ô¸uàç4ü!’)5 :§8cqJ‚ê@S D4D +4Ž+y5QA® +¸È‚B!h&ŒJÃW§?M=ÈO(• &„*Jè'ôÀXŠRc°”I*¼§RhËá°9ci…W0• nªÃUÖ䑼NS#£bgèâ—TiΚ8¡¨D¢a–³†%p(}h•Ó*¯E¡a,eWÉøÁSc˜ù¥–]>E 3E]r83<…áÇA*9…O ㆈœÅhˆˆ‚BX¸è"|XLÝ ³xíЇ1‘Ï $z iD_ªÏ48dü>h¦ö^-ø‰è =TLDÅ$Dks…•岈úeHÐÌÐQ…)%rÑ +³öÂGFk…Yt Ô€è€?'LH!œª3P[ŸÃ0 rž‚¦uýi¢´$„ˆLfÛP˜P(ÑAèo)ʇ •@Ž@3¡¸¾@#Ñ¥L¡¡6\.ÂRêâwÂE&$¤ S¸”8(&\¢ƒè`îêz ‰¨—Ô„F ’˜KW2-‰"¢å°;ÎfØ(ÛŠ%Xë±ä ¥F—Ðjh¥ nt0¯¼Â)|«Uuñ0ítÓP +CDPªŽÄ<=4KjyhüD|¨¥jñ„ZêP‰DèÁ"RÁŽh£8UyèÁª^æ2ÜÂÌØÅ0§‡ñJ( ÃDƒcé:4®Xð€ÉãqÁ(¢y{”·>¨Ü²LÙhÄqδB9¦ Añk€x€ð3pÑâ"pá +[ô!š +Oa:õ@1û¥ +ÎÄPÃÔ\•`ÅÙ#˜023¡HyJ-<¬šDqQ¢…*bŽþƵ-:U3$Ûmt@$Á2b$ÆB<3 DÃáÕѧ +ØÒŠ)j„ªäÙÀp³,Ô`?Ä¿LA‡($<2 ŒèR%KN,‡K·‡‘* Ùç¦Fô•íI5Á–Q0µ(X†ˆêÓñK¡ÚƒJ3[(ÃÅ=ÅB£J l¾ÿ‡Ó*˜jw¸‚'œþ™Õi˜Už\iJ5‡™ŠPS2x€ôÚK·Z9\ŠJ%ƒy¨• T¨èÁ'­Îo¢Îp¡2D iàLø8$L³K¨´4¸ +_º£p@ C‚¹¨xü v2šB‹CBA(*«TD¨ˆæ“™ðíçPåãíŽÛ+K¡•dø4Ü +}‰áL®7'Í…Š!·Q±+í!Ùù­Y覬_­¨cz'ϚɖßW4ƒ(7Y¡x2î±bÓgè¤ÀŽþQhñþIÆ©Ý +ug#¨Rà ~ œ» €½ œ’Öç/8†zŸtN««ý_w?=6 °p@™›WœÂ˜Ò™S¬×ìkHdÊ$½dÖùSY½|O:îRaç›Þñäœd°<Ò-Ž›QȬpÊÑÊßPX?"3Ë´L‚…Ÿí–÷Ǹ–¨:¦¡Ä-ù¥‘$JÕaËÒM¼êm;ެϳX¤-Ѽ7\¥Œ9;‚‰Rr‚¥ÂEF4¿ƒeÙÒ.™ ®[¸:KÀeI²«£…¸G|ñ³$µL±ä''ãžð³ñcüTÃq}`5'±Ý°”Þ¾cÖ!ƲWYæëwVÓ-3M(ãŠ÷Ü7).¸´Úú*›¬ެ`Â_ S•R•XmFFümp´zu%#"ÑÇ9Ö Ø+0OŸÝ^¤‘€—Ý9¨ÔZŒáú2[åçD†0ã” m€\?{ê F©óºœthœYOÉ-£Çu`3b«L+Àß)5äÛ×™ƒEÈ!SùÉšÞ§–‡øä“v¸¦ÃÕN1ͪsžêW‹ž’‚¾·3ÿ´2V`2SªWÐAJD8‚ÄÚ¦ÜV×Sy²)²¬éc¼STŸâ“KÉ“f.v®-R&(‰ÊÂÀhAÑîb>Å?  µ¡®_éNŠÕMv⊗ÿUq—Ž7•m´Ã“¸ÍkS­ËcbQð÷¶—ë5Ëfûú‰û>žBN2•Y‚•œ[®7öæƒÛBbÝZ‘y֨NJhÈÅù}U˜ÿÃèêø^T6–ºAêƒü‚ Ö¡k¯d‰ Ö†$Æ­ÿŤoõuåGÆO͇ü µFˆž´)µŸyOÄœAgŒeÍ‚ ÿ"…(û³ž@¢ös{9¹mˆxÔ˜³qaú3ª9–øüNõ¦×Wûá »6. ÿó`×ÒxFo/̉¹§8°Q¸ñ¿ü³ Tù\8Z·Yj]xs)›©#¼há K¨)£³U”˜pQ ·PžT*yŽ X‘¼ÿl[5O"dšOOMŒF*îß­Îr$Èš…pÈdѨô®Q 2¾,œ0[´áè}Æá±1üR^þmÉ(Ø¿ÂÈxç/3– nŠó;b‘C¾‡„ŒyÆTº$t¬$ [mÿ7uÙKI‘Ê”öLc3MAØ 6³6ô÷¿¬ÖžXÙð#ÔŸ5tÖ*ÔØ,‚¥’4L?×eY/`ìºE(Ø:³Lù•=§'·+ŠÕË•Mð&áʆ%ßVÌÞMp¯^n±wYO)ÚL.ÔfÁ —Œ¨‚6tŒCbTS ”õ;2ÆÏ½Ÿ]‚ß:>ù¯]¶!bÒÁ&©pæGòÍ„Ã}JZ•>P.¹®š4Gö×þRêÅC•«§®aŽ\ø;¸¸ +õ°ïKÆX“«¨h†5ö°[61²ØNÒŒœ¸µ¡‘0¦¼Þj¼; ² ¸YqÕA|Û‘C¿Ä*fÅ<pïo ©¶šVäx#žDš\¨@?ÅpÒé”p£Æª | UiU=vÎI ÑÝ\1<ïé¢×ä ^®ý†L”_ ;a»vÀë6–Sn ©0'Ã'GÙKt©¶t—‘B¿ð5¾^ö|ž ˜¿Ï ‘GíÁ"‹›üñ‘Ódîа5é ._àæ®Ê•cÒ±ãbdà{%1à7ýý®.sz;óUò0"œ’‘ÈjPð Òx¥Be=½up8Rüb9°[Ç^À‹c"ç¸, ÄpT¡'³eSE3´Ã™PQ A7 š‰B?®ÁU™ÿí›/@•A m_vñ¹Lô‡c¦È ÇÊÁ.ÓÂ|äÄ7~»à…µ–\Å.ís΂IèØ\U1Z¢£óÙûvT‹€TŒšÚG¼Bïj€y‹(é‚2Ha‘iz†2ÀL + À$øÉŠ'y¸€Iœäo1z¨LB×à’0vxfˇXIŽ)´;3`žý³çˆ<â5*@)bL„ÎÀÈwΧUÀ?Š›ùrÛDÇÙ`»šy)GÚè…fy`Å(‹ MøO‘nKÝc2ôø#$QZ MŽÎ‰z"G=Ÿvà¾TàqKDÃÝH²™Ž£(EèN~ üM鿘ÛOÑáÔÎú Úš´AQ“5ÒÍ(*qí»ß-ØHŒþbÜþQác>f3SŒðyœ§n>žEfW»ŽÑà¬ñ£ðA5 +²ÿk¾vTDz™¸ð:Vàö-¡–´pÆ‚`Ð?4ú\-1 ºVD¿˜VM- +Ù8.ÆlkÍÓ˜v×9ŠÁÅÑ`ŠW÷wŒ3`®Y¬m¼\Q# €˜‹Çbçn*ãS¡­Ï.«¿èÁÌ~gÃâÞ™¶zâj]#!SCîmð=É;t¶I¨JÏ}€èh^ÃåÀ½S ñ;»ÝÙ¹õ–84@`4$ý#ì¨]d÷ƒ”lã¼ÒÎÇ¡‘ÿ˦Ëø†¹æ04{ Ð"ÌÚhlŒœã«û|výKq5bƒ†Úrþ ûޱµsDbYõe³¸H_\ ´ŒW™é_.…jàrq¤hÃû_Ttmh¿ƒ¡Å ûò`Aüc%};S´ÙTݨ0×)Òá¡PÝ +2ÊøÒ/NˆæË@^¿Q{c άô©²Û¢þó{¬õ ÷Ø…Á‡!j§”· cZm(ŠuØô3ƒ²òï7‹þjAî+€ò•m˜#^\ò“+S鼫óq@«Y6Ui¹˜èÑðÝsÈéվңϵ¡¯ÏF‡$ -¥kXHÝ9&xUy¼oØéÞ‘l®xƈ¤Óî6É#ØÄo1“gøo˜i¾É…Q³†Þ™t{TD# †ýà—®%0lßqó¹t¢Qês·÷³k`D…³o·’±5Ä •oœ3lÉã"ÕDxúø9gBò r_Ür’ÿÿ@Ä¿‰X¶B4“×7g$û׿’…dxF T.¹)‰iÎY}Wħ<$z¨„ßðŸk…︤ýÒìŽ]⻋?çWܿ޵…vE¡?¿á—‹dsKÕ É«T¡æXZú!IÞ¹"þ—CC‚sUÙù'V^­æ…ghÚ:ÜXÇs#¨%í7UJ¦ê^Öz½ +F^X—w#§ǯí”àµÃ­,ËZÇ[¢<¢ƒ0É‘ö6>>¼ÕÝ8‹ð‹Ûã ”rêíìÚzÍaJŸ.™+‡4öÁ©«9ä^Ã̲pxØÀîŠõ€75aóÎ >‡frЇù´ÜÜû³a;¬Íª}àéäÈÜ(ƒ-Ã…à È;]`M ¿¸¤\5ùÒbÒb·‘X;ÙtµóW²Â÷Ã#óó•è™ùla’³Ö.nÉòŽ)T"ÜÃÍVzÌõ/{åïìžÿðQCìXÉ´‰'0Ô´žáJ;(ç`ÒÜ íÀ¼Ÿ¸—–?™vƒ¼Å1läPfÑbïþZBo4#ø™ˆìxNŒ †åSh/òu{O»F_•bXæœýø ¨tE sùªÚœüpÀsßðÎôãÔ¼¢èÍ8Wa^»+üC$A{Ú´l.{èÊaæÑÖáà$/‹ÆÍ¿öÌ:p7ÓŒžµVtr)ë ŒXuXú@J™!FëB3#PDøª™ï`´"ñ#…-N­Â”5,T‘ <$=^ï&&PÚ0UaÕW‘]Ç12·ö V³©:}Ùý½ó]Gªz¡ºíy 袦ðRÁÙÁò 0-ã݇0§½Xþ1™çívÆ$¦Ïu˲W|³è$À¥XÊ +3©7"N‘Ô‰œ„bN<ê=žÔ(u@±Â=ÏHÎÃ{Í:Í$ñ®$™m4úaÿ&íMDw¾bxé|Bˆ½°Ñ×YšË­1uk + +Ù0'.ŠùZƬb<]p”Úšx–¬aÂäà +ïû<†ª“G†^hܰX²¬ÛT›Ö#È Æl#‹‹õt“y6-b&zõ0¸È€˜ôhs.™*4²±+[SÃ58]üfh ;½*úP'>gOêÉõÎj)*èMéÆHn%’ñ)÷œ×ênh‰úä%ÅG[Û°cyƒ+«û€É‰„t,‹!½Ý5;= y!¤à\(-<pvš¥B+/ c˜=Ær#‘Ã3p €”_®ˆtòaŽ×+TºÏÎ|¯©))’°›å[¾ æ*¦3ãÂßQ®“ÊÄ´j\a©p2!<Æ´qÕF_€~3„Y Âw󢿱5 Hü‰zœºÜµG®–cïùÔ¨s]<Ë|Òü$´-^z+zà áfĘì èéM™!§¡â Â{ZRkâõP¡à”—|‚¸WðöôøÓ``pÂ5A|ºx¨ +hÝ2£ßά¦s‡Dã7^¯¨]{Ö Ý7cfª%±ïü9–^µ‚Í8ЭÊI'ɬ}˜úeIx×êŒã°èèÎ Š(6nl͸EèSˆ¶#É#J‘pÊ”»ÄØXOWð'iÝðúi[ 8,¼‘‹ÞDî:L¿ÐêC”×'ÄWØTå¢e-E¿ºÊqÎ-8½Sù»’¨É ·ÄäÒTg\A"–‹Ë×/™(pa4Vväàp“‘à*ÀP%4Ãåê—oiãr 7íuHåç@OÈùÙ·TK>â9E˜ÉìùwÛF™‰ ^Ìc*ëqéäœê¡-¹ã*ywýÖË««j&Ã,ˆëSÙ¸9)áÅIª<8nÁÅÚ´µ64ì–VÝTzàT:"µÈ8ȼ$ß–:ËÜØm뽄ªM†/’Z8,›¢ÓVÞ*Ûtº„Qal.ÖŒªo±ðÔ G“„;s1èYF0`)£AÕ›0¶—¦ƒRq3WY¥ç¤F(Ø…ôcòó¾R=²À¶° ßYoAÔ΀š2„))¶+‰J7¡A†˜R¸I—çl1™“Ü@ï¼ì~]pKÔ6¿ld/>sgv¸YXô€'”Ïጦ  kq9ºHÆç6•ÞÀ"{ó–Yø}¾„$~.÷4’ÖÛÇüÖX8§†Òœ3Þ3Ó†Ö—_3çpÊ"¸ªÇ<æ¦ðP=YÇ—ÿo£Ä +\¨l¯pF ¯aA7:ÛlÝÜU žNÈG{È·ø ”Ðëx}n/XyC§×tê™»S5`}ò¥àr­Bðã¿SmV k‡G•E> ÓGžmããè®]û#Ò!Ë»@_îï3±ß!8ª{åBO¶Ú†®Èk27{4ºäRßwI䨀ܑxÛµkój¸0òæ—¹µd†¯lac´èp‡ØÙßÿŠúëfÒDh|† EÔAR’Þ/¯jàKó­ùF‚¬)9ˆ¹5t¤rŒî <%Å ~ gCÙWX$~¼Ûuöj.y¯Çgj½w-4 c¢À|©Ò{êØŒ ¾á£§kÇ`­ÿã‡TdB Òî kö2‡ÎE­´ü Huï”ËE–w‚x ¸ÃZ M½ö݆¾-7aËÔ ®›Oàˆ£›<—R*Ü®Ï3sqöœ÷±aëwˆªÔi„Q·‘º‹B'4X(¡£Vaè`„.yãF•Ÿp:מ!ÉRȆh\Å¡R„:=j}1Üd4yOÚ»/¾3¯ª ,ÂV/ŒÅ‘<õòsÕt’%2rsàEzO\fe6·e¾¸]"¬n/~ ĺ´ç{ÑP…‡ÿ9ÁÓQRΜ< ŒJ:Yj¸°Is¸¨7*1!ûùG_¨K#ØzW…¾F,p•ˆîOŠE>A”Õ’r14ÉâŠç=}åsËÞ ñ)¦·t?Ge‚*Ó¨B 5?R´Ab¼c‰|ó˜I]’åUHÄH¨uµÜõÆô; æ«@aÎ-BÐûÒ}öP÷f·EBx}ƒ;0 TePK0§ϳfÖeÝzKª¼ ‡¦›§þ^† í(ƒŠy¯';åq+”¸‘zõEd¼vÀ +$,VHH`ßjÊô->Ë&t!äôA×_£Kà ÌÓ Ç†Ž…’‘ñ7É4ð^7Ôy¥1Á|wê;&Ô…¶\fÓ”Fƒ“ù{°‰é ,<#±`k?>ŸG™M_icÓöìRÝâF¶ídâ£È€b¨•±˜„$´#êI_B_3t†¶UÃÊ9ª6;oíi” ¼-2@þe–±àfiÔ ª;ø¯1s)½†ý,[õ ÓžÕIÚ¶ö¹ÿ†‰µòð-|Ñ‹ÀI@¢1ÎálJemÀ–T®‚Örœ[Ï{ˆ«‘ý¨{ŠÁü’•¥ˆcÂëAŠzVp%r(úѨ_­Ý{J½¦œy€ž©µ”ÖÍ­—LÀ9…œ¶Kæ¡\]èJÈ2Ç®=õé|$ˆàЩ¼¹^e¬‹8øm /•Æí¼3$¤N;]r~ʣø‹‚˜,Ã9Ñc¾?ê¯À¦i6‹Ä>=I!ËBEAbw‹ŠÝ^XøÚnl&£å•ò†Ï¹øm/üiº‚½ùƪ·ú` §÷8[K°˜?³Žé±Ef™K­Ú9ªSs‰3žê˜éxÀÀNd¬Ê,§ºÖ’Å +á1˪Øfg µ¼° +Òeì)Ý"‡PáS³!‰¶§z‡L`ÆgÄ‘¢½À™å•ôøy·H£æï™Nl´ó€b²:[h¹¿èëºÂ•j9|ü*â€ÑeTÞ“Ïq3`ÝŒ·èê.´Ý¤ ô¬Â[ÀDÌK“Z—Úh|3Z&©Bʶ¹ @2 pš­ÙÌId9Zmd?𩱶â `»H|5A pƒæN/2‡`_^Îà ¼IÁ6xì¢È‘ 6Ö§–§# á¦Ä©5cŒÊ|Tìi%×î×”3pæ09°ˆcåÜg±â"§È¾•nËw8å2w ‘ü bKE’3Æb5µDm‰ì6… /ÞŠ6BC~‘” ekBË*gÜΡ6:ãgq(S=’­žzn…–PÅoG¾:6Od<6¯'e¿¥¬©œS½ŸŠ†_ {Ö¥^Þç]…wƒŽôR·åØ}Ò·ìänФCã÷J+’Ý ÄÁûÞ¼ÄtóRÆCL@e‘š{‚Ÿqä· ÐÖº²±ÞdEÌÌœH‰ |ÃpñûUB<¾i%¸ß’Q¶ý½ÏßBôÏábA‘Àí M>otè´ÏɈÀ«oQÙB .sŽãÏžðMÖ×;u%>êªÆJ˜ñɨ9–ÂûÞÏIîdo oÙÌXöÊV?&Ô8Ù¸E|V¢^âàqÚ®h~ û+9 µn癌1â~£ŠÛc0™©³õ{÷aoxÏ¿esL;t×¢ÀçÓ’Þš¨·)º5îÕ1_ +ˆ)kÙÌ!6Mcm]©ag?Ô¶äØ:ïÌ/Ye™òêI|z1IA­õQKKn_ý/òF§Ï˜¨R6Aå˜i;8µN±*ûò¾š²i0–h)à‹yW"QÎÊ!£“Ĩf“AÐPbÓ+¶z•´çµöRÝ”‰FÂï; íã}{eótsDùÝUàŒæ–„ uÆ{–„ÔíOæ ›èÑÊ9õ5ŒŠ‹n£UÅ)äÁÂìÛ«d`–€Ëu3÷ªp®§÷ƒß¾îÝJ4³Ï”Y ý66)< $4~¤zü: ¢ª¼ý¡IDB¹¶áJäÏI—¤Óò† Í«Š¶m)Ù|$o[‡’ÄbôÙ{ Uy#KhÞuÂ"V]’Xír榋˜æ#κ°•;¾G>ðµ TãCó]è)Žáƒ½˜ÑìÅŠ€ø¢ý÷¯/¨zo~e÷ˆò/Ôqk0v˜=o‘ö·`Ì“=üÆÎ„Aa€·tÄ0¨ÊcwûRaˆ±áôðabŒ“Wc®èAt1˜@[3 Ïczcn)x ÅÌã1uyÔDÆŒÊã ÉXK¶7Ëh)cŠ\•‡¡[+ÇcÌñ¨aOÃÖÁ’à ¤Ö1®ãEpÔC8¤XîÿãsÕÁo¶ß¸´eö ¨UÇ„ÄßèÃÐÞp‰Þ°D&òÆñÇwÕê ­ÝXm¬nPŠ:( h«Z¯Ôâ_9«ŽùrÃàÝqÁK¸vâm`u o¾t¸ õlÙk`«j\fÚ€5k+»ÎŠªƒðoÖAŸlçutûôS4‹ ç”ß¡† è2ÁPY;å0NXkòjðW¦k¨Õ®Ñé\l „oÏ€bVvpM^|-À ‹ñaú/>+CQñ|L­_ÜŸ>ÖáÒëcÀ¾xÆ}ìØ‚0ô…ªü/¢FÚ¥Œï…½ý`Ö^,òGžõ"XûÃG/þ¸¬æ[ò¢¡^¨ Ìïâ(ÉÔ]ÔCÙ.Ô ˆ»x$<­‹üÈ$êbZíg9?ˆjcs!I¯å‚F‚ì$Á¢ ÛÆ^#qñ.ÌË‚, 1È€oa­A&ï[tÉÜ‚Õ!Ý>†BµÅä’d¶bþè¸%2t-¬¨BƱS2Dµ@ïBȧ…bii11Ci5DZ\µå³Àï t® +?‘ÍB€‡î±m¡h‹‰µ,P"$¯‰NQR…HúÈ"šˆˆ},>‘QcÑf°X^" ‘°aÑô&²á°P€"£¥ÈtÁ{*B +XØ\:ù«,’o®{¯x´EÄó +‚]dä]aÿ‹Œ«+nÄȨ¹‚!‰+ì4#äÝŠ;‰ÉV¬¥Vm„K­Øè|V]VP|#Ç +jaEq§¯¢+]E~á­ÂÃÎ^»šãȼ±Š¸˜‚®iU#,ª‚6t„ŒT!±#DŸŠ5<ÖT´ +f©p‡#©pêÝFÅ©ŸD¢™P—a¨«GDßSÄtî² Ú”sÔ—‚m–¦€ZÁûê‘î/…Ù³¥Ø,¹RÕ—R±#'ßu„@IaÒ H!ÙRÀ#$…]-oò>ÞÖE!è:²RQ€É,Q¬àÕBˆ”6‡bY„¡È‘:¡˜ZG´# ä:²k +Åúܬ#Œk1…æâE±9Ârõ'„¶ã'„TéFË‘Mø͘#³ì z"o82 OX3G¿cudm;A÷¶NT]Ôu¢:x„#Ó {­®#ñ*)' §8!IJ ¼ <²¼M0¤G†f†|dÔ5qߌÈ@Bæ$4HªN&†…$4Ñô!ñáL<¥Höe¢+#™˜LŒªõ˜¸;]Å€H2óÙ$Y †•D+0 +Ðò%>㋌­ðÄ)’Á¹D]O2´%¨”L8ŠQrô• ª”Œj%OÉœ TIaTbŠ•½r%¤¦„ŠÁ’%S-Ô²$GZR-éþ$P{Kè[G„èîMâ9^1“h­/ÑIœ&³•D “qO$\íPLr!‰à±®NjàH„N&ìEÂ3a˜HÜs&Q‰Vh"'$þZš¼lÐÔç´ !¨&{ ÀGð«k¢ÂG@e“Áy„ã6Y½#½›l"Ìt'!sÄJe›â„1ñ—r’Ÿ†..x윱“J'jS4"ºN—*o'Ü1â<ÉFää‰Àñ\zòæ"JÙ“M-â.>Y‹Eˆ­Ov¬ˆýdðõOØŒ5 0ƒëJ™± +@5Ñ•ˆ¾ø„¡§B¡#˜N†Böu(…8 .Ö[}^íÙ‰‡`T”Ý9Dº‹2¼!¨nF™­!äg+3Æ£ð† Æ@•CqæBÔ)Ó+ÄEIÙK!ÌuR6Nˆ“”²‘„ !zŽË +O€óE¿ƒ€"SÆnŠädÝ/eÚ‚‘)³Äf½$"šÂ‚à!S¨Ëh +uˆ3‘oESâ’¸B™2ÆA)’/eN€8rLÙ ‚ô“J)Œ)d óÿ¹{eqV÷ÐÐJ^4…v¶hS¨@ ´¶ +†·)¹ONá ;×õÔUùô ˆSºXm +!G4e œkSž œ‘W„ÿ”´)¼ÀâÂöþÀ_1  §pu?}Ó­òC!l +ü`¸¦pp~gJ¤×‡¶gŠËôádã|Àá¡|Àû^.>„‚¿òDêp:hÊvö€÷˜2öz°z)ƒT“–2_z ÚKá-ôà$d/¥<ùÈy@~ó€{B‹Ðq<ÀPL<€¨â€\¾”¾Cxúî`×R†Í0SövxE«$FqþVJeØá¼ÒuÀapO0\˜¥^çEÔ*tD)ròïàÅ3y—ƒÕ(e ò­rà(™ŒŠRâC”Q +5ÙTCÇ¡²^·š1ŠÃn$e{M3iókRÀ¬x¥Ä?˜¬n»æ~M[J>l»LÛ_JÄÑ«’»~ SL’‚7šBC~Ü +“¦  Û”"œB¼×)*=…‘à§”©‚ +‘ß Ú¡²ˆÁ¨l`H¥!à`ªà x££R`Ÿ©t¬ÊS¡€Ç¨BpÐ.XUš§Š p¸mU9¯_2.7]Ê¿¬ÂE諲#ÎôV•)Ê”‚§šèé¯õ®²¿* äý"Z%´«pŒÙ¢à@º”à ,)¼8 \K Ù/ZaWuX4˪ô2Xòn®´°Ve3¶*MÒ©CIŸ €úGK"BªR‚ bè†O¡'ˆjUèVV…@YK8˜F¬²â[H ÅÌ=I²cþ÷k•¾{úÊHƒb}rrmXIã ø×p´rCñL ‚§gU<ÜajE¯l¥ñÚpÙ­äL"‰+ŠÎ†;š+'eCãº2±Øð¯¬”^™Ékøå+³p ˆý +ÓYƒÅ¦WòÁ’­j¨-,ª´Kû¥F±: Î Óp¨cI4ć,Bœ›üfÈÚ¤²Gƒð*ËVÑÀË˨;C’'Ð yfÙóHp– žÁγ ç “-›7¹háR3Ø(-,3ÃØNKn˜!”©EªËðæÕrÆ2$op-#®½À–Æ'Ë_ ÛkɰslQldX{¶ì2Ø×–±>†å(Óóc/Z×1˜Ó-ãe¼e,Æ`_}Ë>³œŠáBœÄpP\¢b5. ç!—« C.å26aX¬Ó£²N.ÌÅïÁpÀ¹\óÏ…U0ø +éBir_ÔE`ð¦uyrßcneÛ¥l^ ïÑÄ ™uQ¿²†—Ñ~«Ç‹)MÌKaØ_襾»Zõ¢/²ýu—]И½$S»º°†…— QóeÀqajR¸Ø6ßÆð ƒ¹+mµ­ú%¶€þÂa-Œ{O nü—¼Ñ°†Õ³° ¦YÈ­ Œ%¾¾¾&$²@ã u‚ÐNƒ¡C,Ü=˜EÄBrõ`ÁÞ0k¬f¾^Aæ—À®ð ù†`Vm…L³Á¸‡)@+P„s¬pÖˆÙ^….Yb†µW@1ÖÊf5¨bJ Á“ +,f1,M…É‹D*0Š1 QÁ3†ýS˜®1;…&pŒÙM•îtLD¦€’ǰ-…Ãû˜¦Þ Z«³@&NR +B:‘l¨ldƱD!%ÉŒ +V-™‘„Âd“P2”­O†?aFÊDÞ²¨Œ7O¸R+óºò]ê=–Y%[¦YN Öeüá„Û«›ô˰±qª·æ0#Pœ€Ï^™ÊUf¦Ü—p‹f’Á„äÕŒ¡—p¤Íœ¸„º7³€–0;ÎŒ*_ ¢ Öªþmf²”]<³J ë™½N‚>³Å$üög& `-ÐÄ=V•U$Lµ3CÂKvFc WÑÌê#(ÌhVñóÆ£_¤ù~#М4ª5ÂõJs›Š`šma—¦™zàÿbCƒ/ £mr…Šà÷4×Ô¸¬D°jBFB£†Dg©¡ˆ}jÆ–9@aÒOM¼¼~¨æ a«Y¼ÔÊ*„º®fB€àÖŒ!„ßÌšµZÜA;ŸFÁ~®Y@ìá5Ó „7_3: ðn‚Þ ÞᬉŠÁò®ÇF/ ¼ËØÒ~/› üÇÙ¹>P m(:<¦MRÅÝ0ÂÆ†½6ëÞƒy¶Ò0pvõÀpÞ†%z°Ü„`dçñàÄróDA+ï@…º!Éì`7YÑšÜù:øÞ¬ÕAêåͼéà§ÞìY2\Þ›µs0ÞóÍKU÷¾É2Áþý†L98༾ +rPóÑ&ä`$À8ȦðpðB…8ÍÌýovm½Á?Ân`±ßLÄ Xÿ›‘m §m£ulðäùȨ´†"p&<"ĪH& “5¸µÕ4@=Ž4Àx 8ðÏ@G‚£±3H78s›J„3’èºÂÙ¸ .Î^ʸ‡Ã[y?q. ŠCûcàeq66?aœ±Å€VãÐH Œ9»ap›(5䎜•ö’S¦0åðþ‚ã*'©W帳œçåtðŠ9”‚ÁÊ™31®9[¼À9Ρ»ÎsèDü>À€—‚Î ö  CgÒE§“@:<0•N¿€f¦c(ÀàÖÐDQ¡åÔ)á«aõÕ! ®Ð:™f\‡£0pzÕvLò|°Ã¤0 Œ†‚ZÙáyv8€ï´3£a;Cò¹þ_`R¸Ãÿxä'?%wŒ ¸¥;ñb»C¶/°ä ~…ÒÞÆ ŽövýïŸ T"Ƨ„'î-hnx\Ú‚?ϼZP[ž²ÀÇ‘gYØÄåᇘ²<¤¾)æ!ÒL•µ«kž0žóðb(Ÿgþcƒ[l½³üt¾å[µÒ?N¹ð +B”×|0¯¦Óv “øŒÑÁ’åS@ˆKŸ°û¤2Q¿®cˆÕÌŽ  ¤…h!³Ô!î„(%TF +ÖA%·¥€~OùÚ ‚?–¤`N¡À/Õ¼›ˆ¤@œëC‹âÜÑÆ#)À”Å=õJÙI +’§jJŽH +x×ã¨m«IAßHlp]²$?»Ò‰¤`S +&be9u’‚(G#É6²IŠG +ÜÊjV:mÖ‘ëg$ÃÿYWæk):}àSú#ÓQž¾Ô}ÖMÁÇdãVÊcmEKCOÀm ݆ò)MÎ]‰bƒx-ÌYíƒÊBÐNyÏ,¬Ñì9B f*õ”¬Çà¦âb—‰õÔEÌ +ÚÕø² Ô3Úóh\ ›ÿ,!Ø•3<ÝQô¿¹¼Æo‚ûÀ»9‚¹l@æ¹#A{¹ë¨Ò$b]²ýæC=`ÆÓ¹ÂÛyÈ9€ C滀Q‰‡©µ0( `hPè)5vÀÒ’Š:`²©ü‘ÇWýsÀB»P(Êr ýv ïÄbÿÆΗuÂh)E)hB7ؾ½eô~Ü”ÄrN²6Šþtcÿhžf:…« } D^×À–˜G)éÕV ª#jíO¹ƒà›Š)Ži äIFÇ=S'ÓÀ ¢sX´/F1vWC«v¨È’ê ȬpÍ' Ðж*¹abô òÙBxÜ2@T.¹¨fï¤EÁ²ùý*:’’èwÅ@BqÅx#>À Éî ¶ŒÑ èËÓ uöøî^Iÿ?/+cíÍ,|¶¾<ºÀáiÖ•·ô;}´y˜ºk¤ ž¶TQGø&±p(fÒY„Ͳ^ +i_~ƒŸe$8–"‡ž·,=pB†p­âÙQ—àÑ{Iö\öHpQ¼«øo_Ÿ½ttL´xê´ð=1\ å(ð,YíôuZ +Ø.‡Ýì\nÁ^Ÿ€ÖsÖ眾O@·#×k¾tªA'Ð?­pCœ„Y x˜ zM 39u¯ósY,bûeHB[g–ÀA +ÇÙ´¥  ú«J1(îA`,õŽÇŸ­W„ÿU|ZÖÛ·³@òbÅ}·H¤M¶˜¼%¶ЕE-ûÌ÷óì© ¦e‡€Ö4FuB(iî^*0V¨IfBúòñrƒ€xã(òZGÖ¤â}@œUqd‘ð +>vx4g×åøA­ sþüäâUæ ÝÛ,­W›ª†ü~u˜m—9àJ‹ÁŠÿN¡œ¤<ÁŠDÕ ˆÜ±BÖP Äéa֥؀ps[QtòD@ [´f}ØÔIè–Ô+P+ÃùÈ!'©ŠÞžÕ +¬ü¹iò|=Ò¥½•|BnÙ’\€•*î`&‹_uТPh´×¯®ô+€Ú •™ˆgœìKÃ*€“›€W)mˆ³GêÐ#+"ªäpÓ( +×…›!O@<“)Ž0aš (ÕC/ó7ÏT àæßR8eWÏÎÚC©±É¡ acƒ&Œ€²P–;áCg€Ôˆ5ÑiÀI„ø"3JRpÓðEÅ.Œ ß3À ¥*ÎNQuß×\<*˜`ÏÃð[U !´ hl€öñ­\‡*ïÍægݺ8#ÛàÆþJÙò†ã@‚,ÈK#ºY•û®qknFVˆhdŘ„ˆÈe+H~tPl&2;}ŒcV‘Pöì}g4œ%"Àª3¶ÚŸHï¨Í-¦d„apã€Óa¸ÏÙnèY¬P[ÀÐç¡%$¿Ð"Û“f¸ã.¥Yc[T ’Æëˆ>«¿:þ)öyÄ£’šJ)O]AªÕÕD^"%Õ@X¿a•¥Bð~áZR  \”|1‡f €Èj¥Á@½Ùûå¨ÑI{G‰&x°Ù÷bÓV@\¦ãpm‹è¡€DjdA<Ö¨;Yàÿ?Ôª—eÞÿOÍtm>ƒŸ†ùÿ e°Û+5û8sÿù + —Â2Z[hêÿ¡Øéið%˜¡°ü—knæ Úš›YÂÿdÍÇltúŽÜ’Šwõ„õÂþûŽMØ’ ì_3uÃþ™D¸+…n-ReÿºmŸþŸÜÇ¿ µç?¯NarKc´Î^i‚S‹œÍ¢e˜iwPÁ¿RÌðËû®YBMµäþáÙ5t}SZÚZ ™Ñèa.Øÿ rÓu[”Ê]ý7?ù‘µ N°h3‰í¦è?ˆÕø±é£]¢ÉóÀщáfþï/.(RÂVþÚ¡›«ÀwEþ¯”Êø -îƒ +ª¸3Ù†þ”䊂Ó©ø£~¯óòì÷?t…k71u[Òûgø …èãz?n.¢çLí,íþ¿kfˆM=s†#ôš…nlo?òÜLˆÔE´Õþdi®C¢“ª×c8rf¿Ÿª=R‰:ìdž…ø}EìÍrýBR\Õ$\l•¬þ.*ê™$öÔ?ȯޠKЧA{‘?üºŠ²ôsV ãè\‰ÈbºJWáu4õ;tÎ1ZÌó wûü%Á Üèü-G:\Ïš_;4°¨/¿bþQ^óË“v³üÁ{ +²ÉÈ#“å2ø`ˆì^.2&9mj<ò»²ÿüÆž„é>~“¿Õ6~럎Õ"²˜-~#,ó?EEâ7bpÃÏà,|¼%lHø!f‡qû 1 YÔ³ ð‘"~„àîóò_¤õÜ÷ÑgeïWdBÝûïg›HížÝ4:—÷]‡3ð‚ +Õøpù¹ûüg>cä>ÑL÷£âe„(÷iXÓX¸gåÜgO®”±V>ˆÚ@p.ÁÍ 6÷ŠR´©@ü©à_ ´ +‚ã^¾ ÷ÙN÷í—KmsûT&°4ÀöÉúÌDÃñÚÓþ¹­uÄï»Ø+K=í3Û«}ööÆg8Π¦ýH”Šy†‚i“„ŒÜª§¦ýJi#s,Ç)Ï´¿‡¨7žö¦}›W¤°›öã:Zál„¦}ˆí©Ëãò8fÚ_űaŠÔóì'¤:ûŒÄðOj)‚:û<Üý+-ðý +v—dçt/uöFàgÛ×rÍŠžì)FwOþyNöEÁå|1 ¡û~ÿEèûP‡8`¿áÆj圉€}Ÿ +]·D4)Ì€ýî'zò, >ûV]eŸ§Ôßœ³dkÈokìË;Èñôfý€ž%þúŽÃ»L£‹j×w•ee£K>këwõ6 +ä)YÿpÁîRAY§aÐwSd¦lò"ë+µ‚ˆ8…dýt7¤¾‰°›Ÿ £SñÙ…g,ª?¾Éô¨þ]4'¨T$úúmnúTÕNPXŸ~ÄH)” ʈÁ6}")é£M.z,ý³“Z–$ä­[c¤ß$ +(O5Ž‘>¨4¸å0£ÏG‘\QÝŽ:ô¯cæ),gû}w'ï¬{±SЇ,_úbÔÛÒå绬M^¦í&y~ßâ|¼5ç//b¤‘ÎŒ ôf7ŸSro>O^¸à¾YÍO8ÊÒ;þÜÌü6=TÏó1d¢Ë0__0|eÎTü×å^-ßY£b~c‡€ƒµ Ñ•oÂ%ž€¤í?7x>~µ¸]›ËÔžÅÜ Ÿ%?*«Ê+¾O)ŠO‘ᔆ=~;®^Ö7ž•ãCïÍÊè Wp£P§Kfy|ÙŒ4¨ÂG‚‹›·ÁsfH¸â{ÏYÜ®ÿ‰_åëÌÔJx¦Ó,Füå1ýQ„…´Œ=|ŽR‰×<1uÞ Ÿ#¥4|Zvðwí5ܾ5·LF9 ðEø§éŽÐó‰&ƒ¯™¯Î$î÷À7§9Š‚ +êð5‡Ü %7à?±%+ôïiÇU®ƒK¿Gïýç`6±m—ë{9®§·gÁßuR›j–ˆì}_n´ÜÀ|êƒÞS²ÿ÷ŒþX‰ïK3îh¶ú—æï»ÇßòÊÚ*K*íÞÙŽ¡þqü±ú¼º÷…H‹¬~n¢{|þçãæãh¥¶~§2"º _*î?¢M)lKaýöß}é¢A׺ý;‡ˆºcÛþ›ÀÇŽËÙ-Y7¶ßHu©_—mšµöûÂHåÁúl1j/½J“µCíMôÑÂyÄÕ\£‘s¶¥XéµÏ>Öº—ø¥x;D„Ú™[ JÁ²¿Î¾›‚ƒGiÒšì›ÙL5ö×{©çÞ¢ +µŸ#ö¿‰¾ÑIX ì%‡÷õe¬|êÑ}>¨W’Ü Ê{}ðÈîÙ]»šQ€Í—r½ÏÛ‘o/šK·¾$nn¼õ¢vZÏ "@c ‡§¬ÀÓ—Ú=`=ˆjH¡`½¡¼¢™ÂÕûx¼Öïf¸úJÛ+¹±I—¾ê}¿V*ÂBd˜êO°ˆâj@cú”ÒîÔ¯ÃðÒd%ú”zö1{ˆ~ùüHŒE}×Xd©²MZ{©l +1:’ždy>]yIâôæðŽÑ€h"QGÓÃOãåé !Ù&†_ú¯§ n“'Üõè}gˆä΃Iß7`%z(*½ ¼…sW ¬A*½'¹™‡ÆÓÑþ£Ò'¯ œâ…>B¥gš],éAÈ<+2ÏI#KzOw) am.Â(ƒp+4Ô}Pü`¶ÿ!&uIÿ'{È~B]þš¨J»í¦T!=ùIYròVx.²ï"öGHOëÔ!=±{ìÀ5 +Òç!dÞtBz#¨ßW6Ri­ƒ ++¤—óíX7ƒ»ë·¿BúD×KûC4HßùkÇN-h¤ÿÈf¨`¥»]׃ô^?s@&.EWò8¤¥YÀ$À€bêEÿë_–mMÅD/ý}LÀÓ˜?€«C®=ðÚÍ…^ >¶)kAOù6{ºúºFÑHJµc~VXˆZ8´9÷ê¨bÎó˜‰Õ(SöΗ(zï§ãé\ç»Çd¥ç(“åY¼æ :¼âüi—רËmÞ߃¼ùN(>]ñÃlÞ½4DWÍç8s¶‚¾¢áK€æ?‰Ru¿y&Þ—¦ã—y³ù>·¡dÉ·c~| dnÀ§A˜+ÌC8¥9û‹(½`ÞLŽ45—thP1Uky˜¥áVZÅè+¯)–o¤Y¸û¬ümté<º8Uâô”'‚iDQÚŽQþо‡ÝËå“¿èq5Ò|ò¿ìx½{r R“ÇTç@wl–œú¦!OWYò64cÇ…µ¹;’·üd㿸ˆFÞŽ¬¡Q¤ Õ‘çM´¼Gȃv$_q‹AEìh<41t¨Ò­Ç×éU,ƒj\Y²ãU¦*]†_¡å8Þë2êHg|7 +^ªÐˆÊ%Ÿ¢P¢ñ¹i´>=.`ðP…Œÿì‚0ˆJâ†~ñÖ‡''îtòü$ö fÏgx½+þVýúDMŠ7¶¿‰ç8 ý(MŒ$¾VçŸ*P:ñÞ#ƸìX.( ãáFÍ`-ìTàÖ|„–}óJÙd[\3¼lÅA6ÜqUÇ%]x«Æ ì™ÐÝY¡ÂÛˆ;Üú¸àq oE¼,µ¼‡ð¡Å™r(xë)Yn1Äí[Ÿ#˜?¯mÿoÚ‹…è‚gÑvLÁî}Üh;L°Z;²S{§>æRPn¸Ò(ñ‡¿v !>¸B´S¦míº8ü¬ö‹¼ XÈu³ÓŒÚ÷×diM]Mû–F£)l?%í®£¬$‹b¯ü‰öû+"N…r±FÚ[xo–õ¢wö~)‚|Ý 7»õÐOއ[¸ëeöʦ¢¼Àà²iK‚ýfÁÌpNMG_ÄÎXìfh™}OwPÙ%×CóôV›îmÐÆ®'rfB‹&(¤§‚ìu0Q¶"±c ¡ã°§mVƒÃ^„vž6ëÉ(ã„}Ø÷ àúµ)ØQëï¶£2?R<û`~Ç!LI‡ñëé«õÌE\U‡Ý{Ý0äŠwJ]‘ÏkgíÈ‘ò{î +t×_ )CYAÝqé–«ædZì­üy—ëm-‹D¿ +pE!\/<ïr¿Üº;†`¦fJ‘[? %iî–ÜâëòG¸ k‘õ¬_Hû¼ ×{e]xmƒÐÄ k›Ú빨 J‚õÔ ”‚ÛPÑ‹2d=vâ!ôêò”¯´„ /éÿNÆÕ "w`ÙyÒ¥huáô}!O´:à)£Ï’¶ö«Þ¦;)yU¯¡´SA\zª·ÚâR H¶í.€gùÜYJg$]ŸúvØ;ØÔ]ú§}2g-õïLnq¤¾5Ç€Už6êg"º•íç¨ç[â[ÅØYŠz»}Ê]æBÝÔù¡00Z¨÷@CʇuÃñŒ«HŠOóÓÒCƉs‰z§+ˆg °‰p90²9ýr/K5¥›öuà×ÄRÓIpPþ0Í2Ýå{¼B5üDLë==¿nfš“Ž@f@“iK¿Âlí¬­SíWºÉ:Ns‡ Szàþ{ß·vÒsô+ª·ãÖЋ’Žÿ£×Ö/'ŒLÂõk”;‰á Ò¿ÄVv‚øRaKÈ£·^7æÑs”Œb 8ºKSÁžÑ[/’)õÝt⯢?#@’ÁØ$èøŠŒÔ×nß›~¼,tùIGè³ÈI/¸T¾'¤üîz²Ÿ ôLå¼›KÝÜ_ Â"'ý,ŽT>%úŸwžñó"'ètÏ~>å´®²¦)hŸc-øÂc>¯Å9Ñ’AÒÝs±MëB.ð«pSϹ'«×Aѹë¾WÄâƒ3É-'¦49´õ°0®4úY‘lV%‡L8EÊËc’ʹ_w‘œ UGÞ¥D"fbÆÈ:ƒŒþ"õõOä†ðÔœ(-ˆ:äHñW±eB +?.A7-ùiàHQ]<…Þ9ÿ˜ ÷ñ¢J[ë'‰÷ÿ[•ÇѰnÊIçŽÉKy½½)Òqð@x‰XR&ÇM<â""'pÜÂY—.ÐÛø:µ0«”F +¾8¬¥A!Y‡eíJ²†8ã,âŽûŒgÖbI‘f2>•92êdÜIŸ9D^ÅøâàðûÌ·´ÂA¢D¥ïâ ÏZKrT­çúIS.ÛÈ$PQr¨VA"Â{E|m[¸Cd)ÙÝÏJ·¯¯cUËâ<ƒ+ §Ëâiè“HUCÊoY<GU«cQÝ-¾=²k¸ÅåX‡ó¬ÈÜâr©à@`2¥2.»ÅUæ3†Ç‹gÖtÛáÅMD\ôgãW±¾Å•¾€VW:ù•·¸†Içoñ”bXÔH< ÷8UÂ-€øµøz‹Û‰°Rì[õÃv;*³~‹OYæœn—Âu½á[ÜW:Ø~‹¿gx +MqM¾ßâ(sN†.‘»²ù-®“œ(?eßâc¸Ê:¢Ë,îgÛ‚%h¢tÅË¢Ö vÅ-&ïyjD&»âŒã´fÛg쩎}Ì¸Õ +UÜÌV/ë~Kq0r^ŠUCÍw‚)‡O]Ï+E”Šùÿ&€yuLCy²{GR±‹Ü'ñÇ&Ú>×( endstream endobj 19 0 obj <>stream +€]E\iÄù' +qmТ‰üù!0Äõ §ÏÚå‚MDr~–ôhùð”^…Cöàáÿ®„Œ¬Õ9ÜÏ<ü n@î w|Çiø[T9Jëwð¸ØZ‡ÍÔßžžÝ¼Š Ã]]EÐvÛyêq.ÜD,&ÎÈ$5~AœíY‰OáMÎ%Ì)¼ìƒ›LO8(%.âYùMÂÑ}¦” u?JE¸wb8ö"b*á^Ûd5­xpÇêj¼Á¯XÆ1¡#}fð\ -zŠñ.¸á)”Ôm8 +¨à2zoJV— ®Öm íA+‡à½#5çÄNF:p¶Ÿ]̨4ÎY¼¬=fMPàámIñe¾‡’|,ú­J§ùzx¹ +øñ¶æP )mÞê–?Ô¡ À_=Ö97û ÿmÒŸÏÌ9¹‹=iY Æ×çïüõô2¦äýf›óè. ɲ®~¿pZk´g6/æ7 mÙÝÞ!ñÃoëÊ?ü~3+ŒXeRŒî»í"Ž9‡>ä\ûûŽW8”õÚj;w +õíKcD_"¡–/åÅ(E…bʱ¢M“üÁÂÃW·¿"TÝ?>Œ»å;Yœˆ<œŽxm~+^®÷¨­ñM>*»œ†v…šu+Ž#‚|Nµa©Þ{9w`˜%f¸7; ÇèFÍÉþ>{£‰Øãì­¾Ïߦ6R ë·Çgoýšf韽+o¢ß¤goå_J<)!ªsöö…“<¨Òž½ËfÙŒ&IÏÞ:Ðø1zöÞÅ-n°X™.íÙ[VUŠK$¦_Î<{£by ögïKUÛÛåùpogy@Víë‡{¢D¹"ìNAÀ½Ñ¨ 4âÛÛ’ “'CáÞ“ºÁÈÍ»N[”÷®!L ý䦬½Wñ„¤ÕíàÞ‚b3n­°¹½Ôâ9ƒd{ :NW£ `q÷®‡ê¦V¿½Ýä&|ÓÁÞûÆKG¯}¼w$«lðÞ´‘$;HR¸é„dxï ÏÆÆ›¡HiÅ{ËÛ:@ñÞC °ðȤLº—¯ã½)â†ýû†÷.뫾~Jqâ½;a–<øâµ~ {N˜Àw?ÆFÀ‹]~à{b¶Í&âÛú |Ÿ c­××Yêß¶Pª| N©øv´€­§°íu¼7#“7EYž@|Þ[¢Mï‡zèî½n}i··Ëé¡ï¦›kï?nïs\.¦wïjû2ßïÞEÉeÁðEVÇW·w¦1EÀZ···„ãÝ»3V‹Ö3Uôþ:& Yº®€’äÝ»òs $Sn ïÞQ;¶™ô+w¹‹Þ½›ÂOÕs÷ÖÐbÑ_µèöfvYÕ½žTÜÞ‡Šv{ûˆzv÷ÁÛnoXy…î0Úµº½7ˆ”Œüh‰÷Ž+B¤X¿-–h¼wŸïÆ—ÍÝþÞ¾A†˜X$¾ozñP™£|sÕ±&à=¢ìyxo]Øèý¯[sÁ{£Xï¶•ù~{/¦Câ÷äˆq gR žâ\œzKZ®·Í`!è¿ôÒ‰?Äl ó²SUïB—6Ê;¯ô‰óž•侼ˆoõí®ÉÛZš•hþçì ôÑñÖ&8¹dŒ>Å;ÄÚä®ùÂ[¨‚‹[1EU&ðþB¼t_¾;µÄTœèÒ¬ª  $6XœÜÎÝì ÿ]6éí>!£Òu9 1%{µ[5°4Ìn@ÌžCšXBì†ÝßÈt«¨Ö–é}F™8Œïƺûh›¾ÚAuWÉ#jhüŒŸîÅ:&ûŠ¥»Ò]÷»å”ïp[Èb-0º‰1áetÿ%Ž~{ƒîSƒjIyÈù×%#—q†Í6¸àÜsÅh—$ÊêusæÖÔŠšé–'^n<Üöö½a• ÿñ™Lª…Òcr{¾‡Ò¨•|¿§‡”û®Ú|¶d:îC£—Ÿ¡žØ]KŒÛËS&ì ,PÜ.k*cS+ÓJòá<ÿºµ´pÛC!ìQÜÖ¬†œ%ØKà^Á\”]Í÷Û¤~,,Ÿ¾]z!”õv4‚P¿†Ž¼oïHE~tÕ²ÈΆß,9©RÙmõÐmœ±ÏOä”–$/ÛÛ„†°ÉÈÛÜöxï$”Kb×mÛž7i¤Gn\ÛÂØ+mwؘja‡?19Û`.¥úÅå{LÊ6ûZ *Û9Ç×§×PÐ1¶å¹ ‰É'Þ:¨Á¶ïÑ:Ø~ Ñï]tχGÎ]ÕÆõ×.™Änè5½ .$´¶å3ây°ªu0)ëWÛhÙª‰5Òf›ÚÄ:rZGNÝcy¢6rV„VJÁ·Óîn ‚á˜Tü™è˜È¬þ2h™tc6ÕIºÚ¡žu&\0çbæ-|Úžm£ë*»6@ñýü9º({B‹a¸å>2Ù®¼¹"‰E’]•ò7Gq­Cö{­à²Âôd~lø”ÿcglßDq$Ùà8A÷eA±©ºì°±«Í¦X½‡2ÆÆ7½j±é]]žÒèÁVæ'¿9Âk"cÝŒ~¶‡ÛçÉY{ÆÆ’kØEiNñTNL+ì«ÙirŠÄ|a·ÊÃÄ]­u3Ø’ÍÕáÁîjÚjîàZÈ!°±‰s£´ì_¼ìMÝõ¬AÛ¯q øËu0Û¾/­¥gr“¯G“•T/6•Ò1†bÛëÜÖ[î|N/½VlñÛðœäuÙ6[¤¼—6jó輇‡Ül‚Flòݮߋ[än_jt]çá´WeÙH¸“®}±uÚ,”ÉÍõôà“– ŸJ®‘’ú3¦¸¦v @d•eR¸*a?àR¡°$j9iš¢Ý­»òÒO Í œ¾è¤³õ¤.Žý+£ŸTך…÷F +BµÖ½aPëkð.­»ZŸN`ªñWúÃhtQqCÎ:8ޱǜuö£\|ù³~v}¤”µ>gŒó ÔÂC1ûX— If±N_øŠŽ¡ˆá Ôi¸ƒ¯*>=ᇟâÓNÍÖÑÂð‚xŒ³È´ÕêVqÈX‘_¥™(´Lç ÒØ4ºÚ–û¨ŽJÕtïgiá‹jE +MWñŠ’^ä¹3mEž? ²Ï1ýa§¬UÐo¬0]UÅtFÖäK'CT¤†Ù-sé¼kæ,’MKÇF@Ê#%ÉÕBaq°´!à"á5×\¥¡µ>”qaè”f¢ŸÐÔMã¢ôLÞ`ÐÖ/OšEŸó++Ûu&’\†4é`§š+Sµ•¦À]I+Ûþñ,쯹I7ÙòTL3Ò$±õ”L."ý!z!#üÂQi™ÿÒýèœxš&æL`,lÃwý ¨¥PG7µE+ +GwòŸÚqéïnŽÂì4ut4£©cü™Äè#ƒ>’ÀÝ.Ú}”H%þ¸,Z®ù•è’+šŠŽÛ‘ pYâb +<õ;E#HT1C ¼ÜK´ƒy9ÊÞ:¢±<¢;2RßpĆh¶ÆweMFßé>4ÙB’b?t  ]K¢òÇuè³Øä¤GbK}£dZâîÿ¶ãC JT¯øDQ´ŒÓfu +î¿[O&:^qrp„n‰DªAç'ú M~üÚËP$kôÖ ñvÔM‹bA×_¢DÐÐwhÔ6üh’/n0hC@X(Ÿ×B¶{õ¡œ}ÀgªædäŸí9ŸyAîàÌc£ó•·žÏa2³Bèèâ¤gÎÑ@Öió$žðvC +NžìtïˆÁÊÃy +É).= Ƚ®§… ù÷>½=Ç£îOZùäóAÝPMô öÚgÊè¶?ߺ}–%œ^?%¸žßôg†ÕØJ)-¨Âü¬I‘sÓyëQfY÷|eúfà 4ëäB³ôÁhE »w{!ÌÜAKëúEèŠØuÛý÷+´’êʆŠç%¼«†ŽÞ[gÕmäÐ…*ÐÔCÓgø ¢!tÙ:ˆ óT‰Î•|?C• 9më§è:ÄbÑØVPeˆ˜fAÈ9åÔg.Âh,£ LTqóS£/5`=0zF)àv·ˆBm,ĨvTƒŸŒ¶GÝtK®?JfN;Hà ‘*ìÃKéBŸ9u$¥×[I€Y!ž&¥²Üú¤®wÌJ6Ö|>©>÷^é(²Åc¨tKÙÕé•€3$)lK×Òýut)ÚE˜Ý¼¾ôþþ)Ãô›ôÓô†û(Õ +3{½BSN¯šú2–¤]uÞ€vuÅгa~ýigÅ©‘kîœz™z:2EÂÅ×@ÎÆÙÔïa†7Í"Q£ŸRP…Tø#ƒz"ýøoûéø8ºêbW‹¢ÞuÙ£’®ÿ”ŽZâÔú†ÌSÁì\_eÐUê• ƒ{u’‡f«x¡S,UÕd ï60+§ +’‡op$óÎÞ”‡E ŒKë±vP‰jõ‚Õì]ëµ=•³UïaCò¶²ú¸1܋Ӹ ¸nßâšÝ b*$WÅm®3ôòŸ(ÝÅi¶®ÅÃvEB£(à5-Œ"y­¹mRj!½£W^9ŒÙ냅Z“ãëŸÛ| éšÏ¾Ò7Jä©_õJäý×ô¯fá;åĵ¬Pìî +µ+v¯°‰çSƒ?3w+†!sÔr¼k¨;l|bOc±%½ +=ŒU~~…‹èX~ä@×Þó©=9÷ß6d(—Gû° ˜l¦7 +P‡²„Ç©²ù0¥md³,2DoyÙˆô]‹YîNEÎ,fÀªü5;1ƒœ}©GƒÎö Sñì1&Ô³AÑ/ŒÊæm E4¢ä2´çä?FÑ2`x…A£U„ÙƒW´îQu±´Ý¨i‡ºæ«ù´šùÂQ›šÒN Úe0«µéÛM°¶cñ‹Z«1^8s­F¢ë^Ë ¾5„­vdÔØ:N‹²²lÙõÙú´Îýãþ316Ûf¡Ûrµ¸•áv’¿äY–Û–ºEl2LŸ_«ÊëVæ­pwo¶™Óx¹ÎJÕp±Np·Â2á~Ø÷ÐQLà®k‰[¢ ò/®tlþ¯À»#Çý4忏Éá,䪹»—ÜÀÇC|Ê¥âÞq¹˜ÃV~¿ÌÕ,gg‰wnΦ·|@÷p~"žtü%#ÉcI2EŸoºôäXŠ%ƒ­îéÞÖMê×"ó' ÙM´;üR'‰l1ÜŒ‚ø}©»BnÞ9áMcÈïÐV÷‚×J@¼*/ófT!‘·Wú&¦1ó[šwËi{^dKO™ð¸”ŸÞüOhO¯ +^ZùRcG<‡õ®BØ«_­½Ó½c&v ®ºÏ¶Ö+nvu ßb]žßò,hŠ–ó-¬Jã¨Z´Ç‚ÚuM}k¦Ãû}ØâÔÆû†ˆßÙÜLöðTÁ'õfÙ{²Ôï¼üßý*ÑÍ_:ÛÛ°¼¿À—UýðßÜé|9îcGkT´|opO^lÇ·5`O¯/c²ÀeéÙQ˜¹PwþN Ÿ3êpðw—Þ©3d××êûÖh z`=qÿRŠìÄ™€·óõ+ÍõÀÆ•æHA{`}©Eê÷‰—àùÀ$颸(¢ûÀÀzpÞ0‘ä€8ž#½/÷Fõ/Pའò¿m¯>ýW5~`µ,(; +ŠþcØWäe¦Ùö/|làŽË²a <¢Uû²¥(퉋Sõ^»–àxî)™-0YìÑPýQ²xâc"ÅeGêlÃ3;ssV•æU™š”ƒ.\HàJmš°RF`Øà铳FA xv{üÓŠIÍkÀÝ–¥ë¢<[>PµI3` }ÏA†2`¡5Èd®“®¼>‘w˜ñ9ŠÛ9äv ²Sš¤)À3`iå"žv‚ŽÌÍvîr9¥1Ô â « Ó  ‰ ëõ õ-£e•àì‰Oýàn—ÏhŽräü­‡Ãïžžc§è­}{Ê*ðlZüA4¡)Kêºe$›ƒï@Þ@6˜½äS:™˜…€?)&³Á¬6¢œÝèž +®ƒ€íQp 0ài!L „ØðÓ¢é£"ˆˆ/#=3©ù):Œ-’å?J¬œ<¼e8U‚ô£Œ[  ‡èÒ0`'9.6ŘY¥#‡Q«ˆ¥›âÄÓ¨z”Úm“aàÐWð^Ê%Ì,ÎÀA`­CÿHà£(P:TEr‚z0£Rcd™w5¹Û ™C\¢”s{é7¢ê¯Xpµb,g¦›=ßnñ œ²£€Œš4°&ñç-E犦ٳŸböÛ` W=¼“‚¥‚Aä5•b6Q#Þ +~$È5}èöÀ$×ì››Y£nð’êeã¤l_‚ÜòžIaJTe‚SÔbqÜxýHYµ ¾“XçüHHü–lÆmN° Ì<ŠN°¶G@'جû²²{œ`éãé·?!1p'¸=‘UœàRÊo6 '¸”Øeðà þ¿t_ßÀ¸¬ï`e­ù³÷§dM°ºeÀª Þü‹Ý2Kj–š‰}ç «,oXö¬ÖX`wÞ® WR~ó+ø÷ÅèÇ+]Áè@¾Ü'¾å!6ÙžX 8Æb¡Iq%½¶>þ•ÚáüeG”Žÿ(v¨€•]+UÅ-ÎG{wñPë€qͦ“Vž01ž B~Éx‚6o3Ã0_{’Æqv~òÁº·RJÞ6ž•zEø¿ÞmõM^L7ó +Ƴdv×+¿Ð±Ð|v,Énî‹Çz=æ¼Ùxú˜á«¤öÇÁ¼Ç(ûá¢ÍŠG¤„rÄÞá¼Ø‘ÝyÕì p ÁëÈkè,Ÿ7Æ,ËeÒLr.|Ž®ìÌKN&`&—¡ +>ÿ&;Ö°OfÝ›[Q‚RöEùs!¦%SÊ4ÁtÊž¦Z4ìV¥²ëÎJyWùk÷ÃqeLT¦°,[ÈÚ«,ƒœxéi™¤kã¶å·¾Û²·âÈå£à7|C¶Ë®§ÄìÚ˳ؿ,Çsøñ¬/”–«â4æVŒÌ¨Ñqe6Ùvö¥ñ÷FÍ`™Ç€ <9|–9"çÉc"ÕÌÈ¡œ‘8\< @&bÔñX3gße:rŽHSd¡©‹ÎµŸ×@Í,”í!à‚ü\ú½3$ÄÁòÄ‹>óYrm4?>–UÐSkŽ­eŸhb<…¾i™”ÍúìšeÑ‹V\ã}5cÓÙ‹Ê£ëû^Íÿ%œ~Õ¬«ÙtV(<*=¬ϰ`Ý'ƒG/&kŽVj¹aÈŠ_ooZ²æhß5”¹™ØÍš·‚)íœÈš±ÚN×ÇšÍR)†Ï#ù*ƒLLŒÓhN]öÄd4sª^W¼}„¶–I©˜Pª“üŠæò÷ÛiÖ;æÝòº0ñrš×ü ¾œfJhØü€’+šÕEeZ à)Yí!ÕCQüt×n,šµ.Œœfǽf]±Á^‘á†ctò¿,÷ê噡;¢yS¡PV‹R7D³Ú“ãßdÍöðñj(ÛÆ¢9áoeãPÂ< §¦ØT¢çY_¤Ùr/­wæ±Ôý’°Þ™K#§orŠ¿œ¹”3Ä`ÄÚâ3_1ù’]´ê³ñÊ™‹L™Âc®=4þsJÔXêAžÎ| D¼Æ +¤Pè3¯«´Ø=™ã×™°|hV<‘ÙiÖjHPcî4 %?,@Ib=ó°¥ÎÍeÞ\ÇÏ…$ò·"èY c<„!Ì‚öçü »“’Ð ]eNz¡YC•\­Î Æ T]i&š’8qÝŠ†­¡töE+zo…F+Pß|—ôèÑ'¯‹¶H§$Å•ô…A>ë\‘™“¤‰˜a–ÁTg…<\¼.,]x.ýSݦŒ,µ-Pzwhx\¦‰©Õ2-ú4Цi‰À1xÜô ”v¬œÞì;]T‘•ŧÓsõŒ©»P{GóuX…DuÍØ|dD娋ƒbVR D È¥v"¹º«bƒºªE–Ýt{T« U×[{YµYëg0ŠÕ»k5{‘®&‹`_­?”¤üßP´¶«EvJ³6ÖÊ‚ÖÞMNÔÚ’´ÁÖ.˜Ö8·fóìaUë\Ë‚rËõÆœ ŠºVõ2ãÝõ0L¡÷»§ÈØ9Þk?ÀüZ›:%`‹ÊØSñ ö¤„& !=â…r‘ØÍà @ñ¾æDÄŒ6v&œ ¹ +娈¶ØuîÌC7eð?6*ß7ˆ©{–[ç¡`ÓŸíIhÙŠHþ˰9Ô{' Ø`3(66.W!Øb›Ok_,öU® 56ª€6rqdÃjÒ:½°$écÏå¡X ¯H[èËyBøØŸØ&zíß‹¥œÍ§5aH tX>6nÙ«ê±Úø±%†R9’ýöˆbÌÒXlÛ¤æ§@9L²sB +Ep‘ÓK’†­óÙ=“ìR6¯æ¤1ˆh|({õÁ@Dñá.†²éÏèŒ×V([ú0ù˜B·A^(7¢E°Û0”MΑM‰ÐýùthXìÃ̆²¯ÇN¾¡ÂUdàcc)ªÝN,:šµ^>6¿¥¿ ‚è8×nã>#¬#Q@=òaͪvIÀöƒ}ýì³Ûô{`ÌfÔÇÞèâ™[c«¬æ =Û”§P•Ð×µ +${ĽÆfÅV/;¢FO=gÃŒéÃv[ÒH”tŽSÉbïå[­eBçð–Ú,ö î šÔXkŒàìVP1c_Ûf˜f߉1ßÂb ÌpOá°Ø÷ú¿Ÿ¢)±_'Üb½Ø"~~N {’±òWаIs€À) Û]ˈ±3[¢…†ùP×ÿ {³HθͰ²C³H 0,2ìËÜùϰ]¹Ï½²à ;¤„æÄ°´a—a«¨…o42ì"פ‡®,„-!‹¬GØKÌ<}Û2Ëè$5/0†y… ´C.ž‘Ñ`"¯ÎuÛŠ•‡q=aKfÐwêa/ Ùh5ag…Ûÿª¹"ذ½ˆ^˜¡ ;·hÿYqÁìÇóݾ2â}–A°k†ùýD°sŸ& ™¶1§a_Øáæö[óK‰LLª¼ôc¯¦ò/Ñãâ-}eÎ@Õ dûý[Ø¡uìîp†š] {…4cM²¹…Ý&eoËXͲÃÐ:–bv€¥¶÷¨Ùb3,Éœ-ò% |öt{ºÇÐ^Só@õhCÓ‹o`ÚÇ­¾ç +LûÿAƒõ¹ÔYÓnMÛwjFièDÕ–½o¢µm5Á“vÑ!=k÷xÁŠø©n˜Ø†h³„n¶5ί˥RFJgg‰ZìkhÃÙÖz™Zª‹q¶èlÿSR €³-«6Ä~`³]%dŒà1ò!¶µ<Ú¹Gˆm÷ÍvÃ#yв7ÛçþÀr©´Ù^ó¦ Òl÷RçG:#_#Q³­ ÆyÀ†òÍ6aåtÖvyÄ‘û nm×ß¼ë)ã“¡gm6h` láÙΠ܀`M[Ÿím]·8þ\(N?ßÏvï!jš#Êüê³]D¤JG|ˆŸm1ËKÄ®ƒwõl'Ð(i<Û›âi?…ÑÄg{ Â}T¯ÿÁg»¿6žµÈ4Ý=¶yK“ORc;_N¹ô9*å +Ù^¶¡ÐZ’Ü‘möëp™8mîr!F²M•E]TcŸq `;ë0}ùl`{"TK˜ ؾ’r î£el?GΦB8¶¡ÞHG¼¶?¤1,?Q2¶!KÍoƒšZ~õ×öBgêÙéO¨ˆ¨ÈŽmÚnoG€œ m'ºy|:²íPšl,P”m¼Sy̘ADzmO2u¨Ú÷`¶ê϶_˜ —âv™gܺ­'½­4Õ´>2R¡;ÇýŠ¥FÀÞ&PÌä⋨@n_/˜rj—ë,Ó™ØÕOÄýiç.á}Ì¢[’%‰†œnï®n©JvìŽ<§¦ÒîI~Ñ5ïö´2ŬÑmJ43áôæ:4ÞAny‡fòû¼)s¨·°ç†9ö~ÂI÷þWä(GÂþ“öèu0ó½¡>Pà8W}_zßÇÃ4|=¿ëWêT€¿ŸÌ€½99F¿ ð' +?wMðßO°™±ªw¬¬ìœíMÁ4`›Ž,ón_wdð8Û>Û+üó>×ê¥h¸C}Ãɪð«õpQêFŠ‚¸T_u£Œ²lnú¯“o—¸ƒ +ý~âÙL]NO<è 7Åiz;[qÔŠ1®J½”šú/Ž)™‚Œ{yíѸǧ¥6îÇ%Yÿø_€ì8zø¡L0.Y˜~üÛ¥6ȽNŒå!7úaä7Bòr—Ù1l'úÀÊ”\½¦ïLéw'ÿ4åuQì)4TMEö'‹•‹.írXÎÅ4I«Q|ïgjùa‚.W$ürh‡¹ŸsþÂ¸í«Øç©™g`‰æhý¿K͈ä¥Íëñ[H¼9¥Ê%ÎUYÊÛPVlÎäAi7¤ÏÑHÏ©¥Ï%z?‹èƒ:è‚G †Þ?DH Ñ ;À‡Š^±üêûæÑóõ7‹ttÊz'ï(k¯ôûO’¹Ñ’¦?nºÃéÐR»f<]b Î„8€$ê‚ ‚…Ñðõ¿’ºû‹i6õ‹TÏ¢<4­úéú„UÇ*+«­î§õÓõT +F²h½ñ Ñzç½hëèØ¸NÎõa– °ëî^A÷z=ÕŽè£æ¯¯)ìÄÕˆ%HuÊØI]"»:ùÁWv³&Jöš'®è·ÚuQ¨÷—}”¼<#ÔNó3ײöH¥Kx±ÔšyÜÚNrnG+ûŸOzn “Â=)'CÖ^Ÿ̽EÙÂI3tGZuwåÍîšû‡sEàÝ1Œí@ñó^e±¡¾Þ…ÌØ£öÄ•m¾'›èÒ÷çÐÝ•ßKû{$ÇÁ!¾YtIîN¦øï4-øüÀüÁWšf¦Aç~þýˆG /pŸÂ¡Ã¿²"Y6ÄÕÄ•‰±¦¢C_Œÿ÷AaðŒÇ13Ç?Š[ˆX5šÇïÚ²€aGo³’‘‡êëØˆÀ„M<™ò¸‚-aùmÝ/£ËKþ`˜¯J€˜ùÊÞÀªšož¨ñ+Ïù…š<žü Söyƒ4AŸúó ó‹ƒýDñÇ“þ +Óùù¼rúêñ\ŒÁÔWÕçž8–:·ä”Êú ù’±cT»)UŽÀ²o¦9iU²ßoÛÖ˶Å׸}ôï‹ýÓϲºW|'îu3µõ¥èöl^\3YŸ1Ù}ÏÈú_p$ëOnåm½=f×˽E<à +Í)a×Ó=3VîìzYV×k×Ïdnd¶ë'eþ]¿¦Àà¹ëßÖ ‹‚ÃÁ‹ºë¹+Áõaaõ®W#`Ÿñ?ò²Ä>‚ì§òGr˜Ù+ýŠË¥bÿ¬öGµõŸym¿|ûXÄ&Óä¸/¢Ÿ{·1ì^×ðž}à!RïÓ S‰¾¯„2ÆßsFðk•¥› ?"Ã/%-K@ _]ÎÔ‡øsþèWFCÅi?Ì&3þ}£ŠùöíäïÌÂW~©œÂüƒUÊ­¥Új~6;Ïù;ì+@&>Xè/—ÜLG_ý×€éoÀ±)!ÔÏ Àª¾;a~Ö—º6p>‹ˆ¼¾Ô‡˜’f¿Ø¯sÔ‡lö=6ÒßÚÖ~£Ï¯Ú·Ï¥˜Gè~¿†ˆ%ã}Ù^ºOßo”%µ Ã/…'Áo+~fdU»ÇoÈq ä“ßé tæ;Ƚ"£‡›?¤ ô;éÊ'ý!©ÿzã@-oýÐ-ÃÈþ«íÏU,DÍîoWÔ.À¿œ1ßäGçÓÊM +Iþç~óˆô'î#D²þâ‰ÉØIì¸èJ|ÿ F¶ŽÿsE^ý“?d0gÿ…M¯§ð¿‘ŠÆ¾ÖuJ«ùŸ‘8ßþ3~$ðɼcðûvÔ^‹ÿ0š$Ù‘±CøþAðW„<ÌVÊäè/š}¢$bnzÔ£‡ì/ I Ã>°L±Ù7o~—ÃëZh\¬öàÿÝÄ7ã<€íàðÿëÿÿ<1×°¾?¯ïû÷ÿûûGYIgÿÿÿ½“÷½wïÝ…YÞ¾žö;¹ÿÿ¿§ÖR!#ú"[›@¶Îg®.NouÙªù)‡ŸÉÓ{ËÈͼÓY˜±š†«i&Œw¸"&Ξ­tˆk\Nh;D)•̘¬ ”v¦Oïoê$´´pôW=Ä}JÑ+mv?Ô¨á*E¤ÉC«¯l>{èÖƒ÷ˆ ÿ옷1ƬÎÊÌ•ÍAŽ|ýŠÅš(Ó¯ÏÔµecäl-¯½¸x 8WœâÚöÅr¾p5cÝlØFÇÐmµ6‚n2¡[ cVgyX× »²Í2 ß™ÏñÂù©TE¿AÉèLáë{ +÷j?µY¦Îl¶Ñ{«múؼá]DiãüÉ}œ¿¹zǛרpô®˜Î=†y½¨2°CÈ1IgY ¥7` •!Јô@yŸGq.ÊDXIóë ”ö#ÿTªáÝꥱK«mþÖ~eßö'Ñî–‘#›eìÈjÁ9›Lw= +’=q~É’&»¶bßÝãÍ»‘*ï!GÀßsXƒ·Õ i¿®qvXQ& -BÉèï$´>’´uí~á­ó¥ë4zhµ š ÔÈGP {+—4… šóÔÃĘ×uºtO£aÛêÆe­€Åc}T9Èc8wãøÅyîÜRäóNa;ŠE=¸¡H>;JÔðž*=¼ã¼#ŸÝͤ&ÞT¿Ó°‚ìó:^º¾ÃÅû9‚sÿƯí×è±Õ;a:G=›ç{çõÔzÂv·Ïáý»Äø öE×F3v½S'øž™;ë0dsÆîZ¶ÆE€øâZ®0 Ä½¡ÈçŒu4‹U„SÎj-•-ᤙ>¹Û#KA»Á ÆáÈfMe"ñ+qr™> ½ÏáM“wFËÜÑ;á¸T)¸uâ$Ü +)öÝ3ygôµm›‘ÛÎ4{i´L]YÎÆÖ¶Í;…vóõÍk9­µ£–›áKÓö,ÚÕDâ¿Ä¹šHü׃$÷úÍ\Ÿ‰cë;ß9ûèð†2ßP ÚU:ÄuVÑYÄ“RO¡Çæœ3çgúÊh%NîWàbÑ'HÑØÀôQ¦…·aÞrä³$¡RÃöÒg¸Vã‘Æ2²9_%É”ÀXìL¡\[H2ï#i~/&k D:i +C2é#?‰Äoüõ‚ýºdÞ?P"|Wù™>¹·M š§éK£…"ï¶Jš]; +´p{$)hópñþ ܧÁk«oãêîÛÏŒãvX¿Åºˆ:ùºœ¤ÖK•†ÈoFŽ­ëxá¶>ˆu¶Í_[Ÿ±C›s¸ql<ö3Äõ§Rþ´éýG–ÜîSx·åÊ-î)XÁø¨pôJœ\œ?¹¯Ãó`»ïÞûDŽ€IšÜïôNЂ±G•0ìJšÝ?·žÓ•ë>‡y=ÈQïñÏÞùÊÙ7‚o5N \Ç”ë8ƒoû%veëYp\²Äóœ€K˜ß!G¾-ÕˆEïàEãgÚ§OÄNÁ¨öC«h_À²ûÞ} Æ<3&ûУßÇ„û:Ü:´¨g%êÙAx6b„ŽD’€¾¦/­ÇÌmç¿29ç WÛºÑ4|lrPc_ ÛN£_;,G_Ûäì•­‹éÎÍN©ÞÎÀ†c=U"±@‘ؘPôL(V帤µXE»˜TÛPÿ +¾> ?ƒ]BŒÊÎÔùMÒä~ A6k F>ë«—õ‘¿HÒï¾é{û<`ºÛÉ“p;U"ܾ³'ÑÔj! ªõÀU¾ÄSž‘ø…$ù| G_aÈæÌ!IhaÉç¼`Å£o ƼO³§VÓðÑ9„pu”©áïÀúé³–pþ¦Pî=£gVËà‘ÍC”|Ÿi´ë¡N ÿÒ¦÷çüÑý.Þ/мóþŽ!œL]Íe0°«›,ÆdÚí PÍ^ýà”•2½ßˆ2ðÛð¹õkÚVÎéÂÙI›‚vÎ`ܧÙK›…&ù:ƒ´†VÐY‹U´W0â9Ÿ`¬•6¿žHð'erdßR'׎:Eô fDÒU8.i0$k¥„:_:š½µF>{JÑ?~¥Ë¯ ÄâgÃÑ?†uºt?¨qï=òyoÜç9œû>‰xž'L÷w¾s¶¢Ýjäû@Šx¶á}#èæcìì9†îË3yjò š6'ÜÖ§L0ÒX?<µ"®œÖ2+ +Æ$õk õR©ˆHqÊôÐS©.zA<Û¦¯- +ÕðG•ÚB|¶M_›a+«yÂt¶f×6@êK ¼}í~Âyw÷íÛôÝÂõ#N@ÿdöKž_¯`ãoÀ"²Ï}-L™V¬r®[‘ìšxÒ +xìL¦Þ¹ç‹*»‚Žu”ô޵•4*P®ÿ$âý¤Ë¯‡"5üM _ÛéüÀô +\,z¡Ç=ç/îßô½ý›¿7¿Ó•Û1Þm…÷îžB» TJ± 0Õj 2*[õ¸œ¡P {‘æ_‚~ÂËz‚ŽLZ‚ Êš‰ó‹óuó1sdZ;²¹'Œç°8üšx~H6í¦Ñ¯ŸÑC›cêlmN®>ªü T@ÒzlÒQ§‡6f×G™~§Ò®í4¢ëŸF|ýNXîËØ™iiÓdG:úÀ +Åk•Sžàs6ðI8V£·ÖgìÖæ§Ñ°-ešøküØê;³ÙŒg7…‚»‚µƒ‘õÍ™BÍy‹Fÿ$Zø˜`Šv§hð;ÚO¡àèÐïóàù$MîoêüÚJš\ Æ»ûhrÐ~ +%¼@ o¤JÁ(QÏöãÙC~÷eà]ùg'aÞA|òÎó Î}™»3-M_mÃUë5^5í ­Ôéí ´ ÎÛ'-~•ôâÙ¨’Û÷¼·Î÷â}.Þ¯É[ë9ƒqßh2ðC¡ö©TCÛ¨ÒïÖáÊÙ9¤ˆ7Ófw{ó·ögêÐ꫚­•#«o¸l>ççcä¶Z™93íÐdŸ'ÂÔ³ózÑdàOÒüÛ*mz¿æŸÇé¾õ>µšèrÏ'p¡èÔˆ¤¤8ôAb½:,Gãtß:N \÷QÔÓüû=‹u5ÍÞ]ÃçFÿ êù F¾o4 84Ù—3÷cÞÆè˜·±ùæïÆÏ¬–Á£gæÌhœÁ·oó×Ö-°†j«ˆ\jÐxì j8*mz»PäÞgýz*}ƒ’uƒ’Þ(’ûw +ézÎW®#Y +ÚW=ÄÃ’ÏùÂ’N:ëÈæ·ú!¦F {bmÓu›õê'RÃ>ȦVƒ“PùAŒÊúˆÐ Mòu¦RšËzCPZÁ Æä˜×eêÌä›núçP ë0 ;•‰Ä¦PpG°b±3z¿×®ûîÕBŠ}÷OâžjìëB‘5 +Æ~¡ÈçÜ E¤7 jø©L$þ-";”)øî ãýîœRij›B¿ö¨á?pÑO¡" +1úý0Ýç1¬óF—B’ywÑc ½ó½ó5wm@Šyÿ¦/ÎÓàµÕ8rߌw#Y +ÚJ m$o$o¨ÐB%±÷6š´{ +íþOãÕ°o@ã±Qö@µùêfg¯ovXÌYvH2ÞÀåTûõże@ ù +§Ìäö:‚tv!ÞOÚüK˜_Û¬çqãüУŸMe"ñ'@¡hMöÖÙH•wáÝ-cG6ËÄÍ2sÛÙfíû$Úù›Á¶~=«³1qwÖDZÎãºÕ2uc²Lž™Vç÷oáèp]íÓHç)ó:‘eŸ7²ô=‡wæïŒ–©3“iøÎè¿8Ÿó•£s¾nž‘®ç|çj›¾·zH²oÇK÷qݼWîãÂy›=·>S‡VËÀ‘Í4yhµ_[Cgkù¶Ë‹k¹¼bà¾ý†&kõ²N#ÑS°NúìL£_ï@†dJèŒE$“v2%ü6€môÌ]Úl”Ø«xHö« ˜tŒ½èÒï×¶É5msŽ®ë¾y¦aGd§DsκbªåP¥tî …t¶ú!¦œ*þ'MÛò϶és«÷:!›3#Ÿ3Ô(⑤ ]$éwMúÝD¶‘äàO²ìÚM„ö'÷/qz? Åà„âgêìÚ@†{wÎ`ܯÙ[«{ ë„ùl°Ý×ñÊõ„ïþŽ·Î®¹Só4ul=‡+÷ƒûì&ÎîV sðv%´§R o§Pï$æþ êù™;´9fŽ,ÛsˆW/ˆIgP*+qzûuícù6 C·Õê€çj#ÊÁ^U„rî +À 9Û%Eí%…-ÁÆ%½Óµû@Š{?ªñ[ݨìV8*;Ó'!ç×fòôÞ>mþFÐÍ1âÙ;a™¹í\ó§V×èµÕ3{h2wdZ™º1™ÆOmž±C›cà¾c÷å+Û½¶u±¼2™0M¾á²Õ:á¹ÚF­–±»e˜3/ÆÇ²aÜÖŠÅÐÙ² ]#˜F×ô¹ÑD—}¾i”Ð'mr}âÝ•íkcض2Í^ZçQ¤ë8Ý·~UëÚ«Y½ÆÝÙ½ëœ×ÆØÝÙ™>2í•­g9×C‘}L ^[‰“;$Ùçõ<ŽWŽî)Ä«»O"žïI¬sò4ôHöSi×^ò´ƒù¼£]šÌë?w5l3b]„Ùµ„£câÈ´6os‘åŸoú$üC”{ÿ&®Óìµ=îÕ;„w´_[m¸Ö{ é>Ræ GBÑwˆb:‹IÑC\)­«pLê Òýž0ž‡:-ô^Dö(ÔÄ.ôÈçyÂt¶ŽWNÈQÏ.š ¢äûBŒ~ÿçPÏzܳ‰"ûl¡F?[èqïÖáÎù:5š­Ûü¹õ/]ÇáÆÕ=`=ÿSÈ÷ƒÿl Ľ‡oÎÖ ¤»‡ ÷¶K–ß­&÷Nsí£ÉÁ<÷uë¼OaÞÏœó3vkóŒš ä˜×#ìˆìU:ÄtÏ¢] cw1»4íP¥æàB-¬±¨xfµ0B»Åµ¾T6‚´uºtžxʘtÒR# ŸBÁ·Ò¥÷÷Þ}›>6_Ó§æmÛzN×ÍÞ1”ó5|l=†nL+ƒW&—iÅ®h4XŒÜ»Âý0™<²9,GÛt×h™¼[Ž©ûÙ+ÜÇ^ãì°¼4-M_›Ü£xWßpÝj™:4­ š,óVFËÔ‘É7\·zÇPÎ÷,Úu¡I¾ŽÄ)è¼xì V(þ›A¸zïŒþIÄûG™€? ³»®«¯l¶|u³µ0k{…»³2wcôLÞ™<ÃG6ÔÉ`0d³Ìš6 h1ï÷Þõ/íÓxׇ$û¼x®®Ñ{›iúÒäÁ7ZÇK×oÛú à[ß ÛÕ@ˆ}HòÏ9òu“uÂqõѦMŸMÓÇ6ߺÕ4{ms ÜXVæM»ShG‰½'÷óÎù™<4Z¯Œ'q®~2 {!I>¯Ó¥û7€n¾fo­¦ÉS«u¼uõ޳&ŸZ,&œ²RC¿8ï +þO¡…ÉRЊüó;^:;§+×õ¼‘XÐMúýŸD=϶ûÝÆï­¾tó8oÿ¦ÎãøÅy>7 G(ï9ÞÙ:ṺæO­¾¶m³W¶ÙÍc¯s[,M›¼sXWIîuœ°Û|…ëY¶:lfM»£87} +ÎHÜ©“[ QöÕC“u‘¥`m”)X?¥‚»‚޵T‰C Ըׅ&÷|Ob݃xשT ú +C8i+ ”u‚ˆ<‡sÆÎ¬Ž‘ÓÆÈÙÚ¹{ëbW·{u³±0j6ØÕ­ÆÂ¨ÕbP¤†6bÞï9¬óGâÀ?$ÙçgöÔ´1sdÙ›nã…ë;_:¯ó•ë@y½ˆòï+qvý·Î×ð¹Ñ4{k4"]‡J ÛT(ýÐ$`Í“8×yí:Ž œ¿ dó6ƒkÑ®Vêü ^<ö¦OÂøÖgêÔd>6ùFŽšÜóP¨‡Ý€j¸Ç°Îï|ëÛH,è@ o)Ôľ $í %­€…cÝê½ù¼ŽwÎãÂù™»4šæN­ 9òÙF$þ(SÃOùg-öù%̯MUbÑ3€Ñ(ÔÈgëtéøzŽÎóÎùżÏ¦û;à¹ï£h÷‡ ùl#qàJÜû;^:;§+çsã:aŠÜû=…v?ç çw¾u~(òÏIz#Ë¿¯ÄÉýMžÞûiü¨XôQ¦†?(‘Ͼჳ} ïì(RÃ/ᆸ>PâÐþQÌû5zj>†¬æ ÓÙLž];Ê”p‹„ hÿ$âý Ƽè0ïÎéÆý›@6/cG6×ì­ÕFš~ÿ©4ì›Dþ‹ÇïÀ…¤g âñMúý˜7¯å[,c\¯ +"Ù14Ù¬ÄHìF›qî Aöý/k+—´ƒ‘5ÖLº F_$éwïxízO¡Ý×éÒõœÁ¸_4ø£P½Ž>*õÐ÷Úý¾7ã÷q¸o§+·ýY´»ƒõìžB»ßSh÷kîÞè·²9æmŒÞÏ}"È?H1ïU~%ͯ÷YÄ«gîÒf¾3ÚFÐMÞ!Ä«õ<âÞjÔó<…výGq¯þAÔó;_:¿¶«}ñ|‘åŸJ=ôPª†½¨2°ï€íê®[ÍcXçƒóþ$ŸmT ø§HÚlTÒ R4ö¦Ð¯ôÈçw +éúOã_õv)UÄOeBÑ7‰†½Ñe`OÒä~£ËÀ~´Ø©V,ÖdHÖ X0v*ŠÊ„¢ÿ#LA/É÷•2½ÊÄ¡7`ê½ÄßÈòï‰=RæàgâüÚO¢…ÿi4l'av½P#Ÿ ´¸ç{ë¼áœï)´ûD’€Þé“Ð~%¼ûþa÷A¼óG–‚öæ×F²´ƒ÷>ТÝdÙµ£J m¤aûˆ2ðRÔ³}ÂywPbŸM$Ùg= +ÚF”€·N—®ß¾õžÃ:[’ïaúÝC|¶Ž—®ëxål"ñžMDé÷‘,m¤ÌÁODé÷‰*ùì¤ËA[)³kEÞB|ßÇðŽˆ2HqÏÎáÆÙ|pö#ß-5Šh'eÞ5yj^f®ŒŽI»ç™:²:çëös¼pþšVg¯j6V(rïaæ}¡É=¯¤Éµ>½cO£àÄ)èoÝú Þ=D¹÷©Vþ*{©÷ëÊÑ3|iòLÞ™ló×Ö÷j#± ?Êü:†tôum{øVß¾Õ5xlýæïÍߺõ.]¯Ñ{«¯m¶|m»g›¾6oã§æiü̺ Þ-3W6ã ºy›¿¶¦ŒÆÂlëlM=$ÙçkòÔüazô‹“cØlY†®LÖùÒu Æ¼ÿ“ˆçoájœ¿¹úPŽÞ!¬óEâ>žÂ»Þsx׃ù|Ð#_ç)¤ó4{k´ß[]Dé÷ŸD¿Û¥ÏÀ[*Õðv²G•"~£†? +õÐUr¿N—®ëxëê%ϯgðâ±–R5üK\ÛIü™4½·Ñäàwÿ2*i 8({‚~Á +Æo€4l‰ÿУßZÔóD”~G—€6!]ï ãùG¾”9ø< o)UÃ?…Šh‰Ðbßç ÓÙ>‰xž¨’Ï’ìó?‹whñÏÞñÚõš»6¯Ã•³} ï¾\Ÿ¡S«qüâ<âÞÍäÙµ©J Ú V8þ*m)RD{)³k/izï(RC»éóèÐNÚ´§JÚS§…Û¤ÌÁ/¹gÛð¹uÀµ¤˜÷—2½vR&÷'av}£ž3øæ‡ýþTª¡¢ zh5òý›@·úÐÍ 5îÝ=`»o“׿qüÞìC=;érÐ^ÂüÚ8€pÿšöµ1q¶,SG&ãx×lžÃ¹…³eƒnkÁ€ñ~Ob§áK£q¼n>¨Qïë„çjp]ÝÃH×uç<&ßšÜó?‰x^×gøÈ昹[Ž¡Ûjsã~"^}Ãm£iþÒè+Z-Ƶ`\1qdZ™¸´9Æ­LK“‡VÛªù¾µ.#wF_×níUíÖÎØÍ4|juÌœ×òm—ŸCx]Ýj­Ì\ͱ][ìÃÖUícwÂv5§ Ÿ‰[«kôÖ¼7îŠäû9ƒq_ެޙÛÎ:^¹¤¸÷u¸t]§K×oþÞ~Ï7ïI +ú¢IÀ¿ÄéýJš\;ç;Wã ÂÕ:à:z§®Iþù£ÊÁÿ4 +þQ§‡ßÀ¨á—:=üQ§à[i³ëu¸uçOî'm +ÚP§ß­Òfà­Äɵ›Dà +ü¡PÁßÉ|S‘HüQ¥…v’˜kK©†o)ÓÄuŠè™:¿ö#àbÜûAŽzöa×ñÊý®Ýÿ9ijƒõî!H>û§ïÿæ}£ÉÀŸ´)h(%´ŒX´¥P m£J¿û¼wç Æù™:´ÚÆï­ö9Ìë;„uGÎëxç{*ÕЖ*EüLž]›©ókû ÞyÁ¹:g0ÎYîÝ V8~&ï"I¿ûÇPÏþ)äû<á¹{¦.­–‘[›}ñ¼"ž·ùsë4wl4Ž œrä³™>¹w’e׿1¤û7‚jŸ‡ÏQÞJ—‚Û¢H@[gЮÆá¾ý¿8?#wFÇ´Í1l[y†Mž¹+£eæÎdžïR컉o¡E¾;‡ÏîÞ ¬ÛMú9m~·M›ßíSgx Zx?yn{ël=¸~Ã'×iêÖúÍ\?r¼«fH~,b[ sð¾ù{ûIb®´ùgÓìµÍ7{p½‡ÐîR컓2o¢F¿[¨qïNº´B½wR§ -É÷¯n[íuíÖê|å:‘$àoÚün‘$Ç| ó¾7îÎéºÙ4|j´ ÝMËèe¯m^މûY@µ†Lã`Dpï%"o+v…ûb×¹Z«Ž« ñz£œ§é+«a̰^ î½¶bêÎÄ~ïê«›åÙ¯­ëÛã¶Õò2005-ØÎcgøÌ´8‡m2NamÓm“a̲a¼Ëƒïa]W¶ž¥ñ;›gòδ1q?{eëa\‚‹Û[^üwyÁœÉaW¸.ÇÜÝY™;{ævL6 FM ŒÛb_0i5Øuí»ªý°+YŸcÞÆf¯œ­Ó¥û=…u6MZí³ˆW#av½‘äàOáÞZìóHb®}„)è‰Ä]‡K×cæÊ°1r·˜Mw’ìëA’yÿç¯æ1Ì£‘6ûÓ)á_ò¼óþO¢Ý­ã•û:_8û&ÍUþÝR§‡:߸?“wFôÙb6}nu“h÷F0BÑ.z ´qüæ|Þ[M£‡VØù, ™6{UÓò„éì›À·>s—6Ïà©Ñ3vk3M^Ûìƒxç íz \™Ì»Œ½¢me»´^“׿iêÖê™:4º&/í˼™Õ׳/Ãlg- Úœ¥ñK£y ë|Ž 퓈çóìB»›',·¥¹Só6|lö$Ÿ}ÉýF”v¨÷.š ü9ƒtÿÆÏíãÆù›?¸Ž#çy¾u¶Ó§÷~°âÑ>ŠäÚ6}lîeú»/Sg6ë|ál£I@»I|;m~·H–‚6“¦÷^ÂüÚ?Œw¶WÎî!¼³s¼p¾F¯­®Ùk«,¹i³»-rüÛ5úÝ:^9›¦Om†iëbd]]1w·¶&p¾®u1Žý‚‹Ð Å³Bð[lkLŒK† [NÓÊàe¯nŒ›yñ1,׌_N¡›ç'ÇЕ‰ÍÜ¥a¯lwï`"x؇\,˯·>\ß´_׺íÌÛüÅû<Ä ,KëZg‡Íè¡aiÕ´4‚jÚšAµ™†›–…aÓbùçÚâX¸ç +£æs&öS&ƒ]ͼ×u»®Ña0hY/N{‰à^´8-"ŽˆzçjÂUNÊðÊ<8UQ€àÁ©Ê‰Â§lµÓ§œ(L€àt?`àôÀéÓßùª¸ºW‡´³6½4v@ÔNœPíØ¥áÝ•a+Ð=¨j`¡KÖ„ªX°®ìÄ9=¨Âºrz€uE—å¯,Ì MNkGÞQÛéz ¡ª + «X¬$4Àz« X° P°Â’Ð@V XXWV&HPõ`BDha„(4x@a +®®®®®®®®®®¬®â°°®°¬$D @ÂÕÕU„®\a=¸j Aƒ«Wq$H°ª’PEk‚+, qW]®&`E¨êÐà„qW"\E  ¡++ +È vÔv:@°²’`UeÁª*‚–ÚN‡«* ®ªLx¦–…=H/{hZÁ´Tä)Vä!¶d,@SÜxC ÂÅ+§ðpeœ-ðáG°ÃÄu¸—á3<†Ëp^Ãqx×á7\†Ïp.ï†Çð~Ãg¸ —á2|†×pÎÃ}¸S“TÌ_›–Ð)x‹HµPĵ®L‹S1XÀ¦ð ÀøÙ‚t„;X}xxà‹2Ô +\ã—|úMI@’ËØQ¯µuÓðˆå%aQÊÁ!=(»=tˆ»> +s…Ô°$bJ)8D‡˜+DÆeaSË0R1Ø q˜Ç¨¥áÎMÇ$‡™'ª´5RÉbfaýà/P<#–-?ÒF—1¿q°rãÂ@ŒY?,}áÌÒ)€oCÌ$Y.vå€;Eñ¡'.Ä‹øïá7‡ßpžÃwøŒ"râPF¸§(Þ†Ý0Õ$s«ÂÆ–\ˆxÀˆ-§ Ž\D+¸^>¥~[@%C4Àˆ`ã'[„\ + s‚¡HBîEqÉǺ$sJàw š/Vd1-f˜ˆC(3ƒlŠ ˜ È4üñÙ‰„г ¢¦á*&&¡‘ÏÊÁ 4&WyP +ùA9ø£GføGª8ˆ2:~x´ñ9ÏW´~œÄËÂØFˆ¡#‰8]˜×€¯R2À9ñ)%î$cÄ‘®>œ(f‡ñ ~Ä“¸Òϧ/Tˆ!Ü‚¸Ú"øçÀK!9àH6 8wâA‰q%NÄ›8‘Œ€®>â>0«Fx%>)@§ì£’B²OJŠÉ>(5$ýšà¸ô!ÜaÀØ dY°5 `Zz‰Œ¸$BªiøC´SqU’ÓÓIž¦Š)l”G°Œ)jÙâ5Q¡Ìe:9Älä!)÷½TÜ¡y¹ØƒÒ2¬ÃÄ%"ÒÊÉUn—Jó‡q“€ªõ3#P fPÖÀÁ&<à&0àªð¬ 8¬ q!|2C’H&÷‰éå‰+kyãİã("º@›ÉØ$,ÙÇÈã«{¬_"ý±ü®¦N + +á!æ¡¡ÉxdQ CË%.c–+®¤a†ƒŠ»?hˆ¿@Lˆ¿?R\~}¸¨‚Cìõ±ÂóQI˜S•6®(}íK:í€õŸ'=ì¥K]YŠZe)k\e㪡˜ˆ 1x©˜PÈh&ãÄG$ør \Áf…ˆPÉe¤)Ù…õ…××È×Ù˜ P+s XæÅÖ|'cCMB'™šš­z›©Sâ2_dQ£4òeÌJ?hÅ +}ˆeu&ê8OÊ%^ÑÅ&Œ¢Ÿ­z™.°¨aöÈrFi¤ËV³,jž›Nú*»?b\‚{˜èÔDòçY™¤ûYúÄòÉ–û‹¤É¤Ò¤{¡8ñH²Ü¢šPþ4 ‹œz"± µT2è¹"Š›b%d­Bl´ü˜AŒ[„`µì²ÇQ¼¸ $ &Y &Q ç f7€ØÙø‹W=î²åÇ\¸îq.{¬¥kl|Å o,1ñ ,j—„J65ÁP$5U¯¼ ^Ù2ƒÀ +ú%ô9ôé÷Õ4ƒñËJÔ/®q°ÃMÆT+|5YXYTR…^ûÒ*ö6¦"&ŽÁåì…•µÇ$ +|Â,[j?h‘©à1khA³´±Å,SE•µÎÔÖ9QTV;ËUÖ³´à¹`bF @ ¿(¥õv„R厄¢å×ÈréCËVœÚê†êÄÎÔI¦%’@Ë0SK0ÎÌD$š•I!gt!ë°€¼7^—.bmc-aß,˜3UdYÃ|":Ù÷Heà’•^#¤•ƒJLT"Á!Ù÷¤‡dß“§’LÀxEŒø?#O:¦‹+j¥'¤ÐxTâ8Â1I¤h +(qŽ«V¶u ´j½Æ:À¼Æ?¼º_¼Ìœ*¬¸}&‘üüdÍó´l"xBŠiD“S±Ècæ‰)lnc(ØìX‡˜WËÚ“ÑHcfXȧ¦d¯¦¤0梑ÅKÆ!—‡BÄŽ«V¶JŒØ}O†ü>&Dì¸)<üa%[CV*¾1Šßr7Ë𪦘KDÅ%WH Í®âÀ"8*WeT +"QA)˜Ä¥`b/“MMF'áNGV0§ ++mß&Vzä.7(j:O0“LM/“NÏKÖ¿KYÐ"À®Â… sÇ´J [È>OH …’G…Õÿ-3ê ¨j¯œxf·PB~“²Ã‹H)+éŠ2i,d²ä>KGW¥‡­ÅÇ6%†­eMµ;p)•;xIÕÖAùñ+…P)sò„ ,„™]«û ‹Û¬Ë û{aá³ÆªYD&Ãüx ’ÇÛÌF$†—„F@/¿EH/¿HD-»D\T&©!éÇd‡¤_“’}O|HöAÉ!Ù÷¤Ç¤ bÁ$+.ÃJ"3+£øažÀ²¶© [fYÒl¹/ ¸‚fŠÚŠ'šè¤r ¡øG²È$]nÄ!¬[¸%<¾\¥†œ@YÁ+Qj1’-d“Dºl© à µx¡%`K2ér‡«\é†Q®øGÖ-·ž•UO+À¢¦¯¨ÚZ­Ã PõfVbü¿FU EM@‹;ž‘­3@Y<Ëã/?2G—±ÌÑ'tšŠ«–ßÕÓÊÁÕ”DˆLú!12ù—d5²O ’Ⱦ%D&ô˜üKrʪd“•‚LRˆ½FN+ ‘Ѐ*t[G´j "“€H¶ìD²€U¤ÐP²Ø‰­\|",?2 —md,[C'Sþ ³Ø˜V+)°–hb¥Z0f+`)‹£×!éa×áqǹq»9¹a›]ÑA«YÁÑí ì°é˜üøtLpÜy­Cþ!$dƒIˆÜ~H€ÜwR„ü¸V>°uÕ~…¬ÊÛÆB£ž¿´ ×´äðnQdl¹EzÑA¹qoð2*sXU›öGWû¢£¦Ã2¤Þ³Â„fd¥r;FÑb‹‡d!ÓlQe ’•‹í€—ùò„¶ÌÃ"”›ŽF /G[çÄ©RÜ W½Øa.^jD.è‹OðŠXЫà‰|±‡`wØBŸ) D À íÕ’Mí’i =Áˆ˜Ñ…´kq¥=d!Al1¥¿¢œz1*©ÿ³¢¸á–ذ‰ì ûbö²:æÄÇÖ-ÉŠ29 +êVÄÐ_AÏì„-™Ú,¤fi/3äZ.PÈ 8‘]²þÀ„óÞ»!Cmψû¶âÂw@ ,%“Ø¡G?;ÊÔðWõ°œ¯‚hÎ +`<ÒC–~´& Pc’qÀˆ9m‹ŽúÏŠ“Z'³Úx –nܪ}|òŦÒeÌõŠÏ‹â¤FcåAûV^Ë%†¬­Âbþ[l̶•uåEm{±1ÛYARãU9RÏaRßY)Òé²éiØAo¹Ü˜g,1ä,³<åD÷2@…¼sÙ”¾ J ›ž’Â{Y!A‹aAA×QRø·"4¶wBn­‰±“‚ê;X9•¹¤¤Öý ‹^Æú¶©Àè´uŸâ¢{8 TÆ0Tñ%•ÖjQA—U) ,‚ä+¡r'®N¹é°©Ëè1ûphÇÐ1§ Ç܆Àšn˺. ‘z­‹:퀵ÛýŒJ¾s‰Ao·Ô¨Ý°ìðuS|øm´6rThãžÜ¸Ý˜Üød¬.ll”4+¥õ–”Ò®Ee”þ`Å”Þ*11–†E™V‰é6Œ5õEAõ[YLû(œ4–ÍYÞr¢³-y±Í^!á+HñÔj%€*o•°°ë„Ä(ëÛÃ,®È‹2²%)¶wßî ŽíŸ!¶[–Þ :hÛs!’&wç)lâ"WÈ XÙ2VÉò›x±3MLq³Ð‚)äËýU€ 6€KÝ—@ë<—À9ñJïȤ‹Íg-Ú·1+VûÓP€T,H±X]8µY ¤f;d¥ETý[TH¿•ÉŽ@⇀ÃÑ[í ìŽtÒ„ˆé+;Ñå_­@ÆbßÊrÚ¿² þ­ÖQO;Q½g)©÷§rÂÞnqáDz¬øtF +Øöùà1¦…€ª–§‘N–É;‹‰3Ãv˜òÙÉ„0ËÀ„³è"Úï,.ümÀùŒH?a‡e-áÆd]µƒ²o`EhA­½ZUë-·\dzAr"Yµó¤¬z2|h× ØÑifÈ_p¡õ@‹¬.'´Ø++h; +ŒnÖ +ÃÞ:yáç)*º‚â›]yñÙ´äè·6æžåm¶¥Fßv‘Qƒbö2àÄÜå%…ì…Å-‚‹*íáˈ,-§²†*£2VNYëç"Ëh‘å”ÞÀ*:XRZû#&¶óÕíדSF%Õ‹¸rZoI)õ®˜Ò¨ˆÎ†\ÒtDÖœ€Ê°ÊYXHå LBµ¨ÖdH`ü;!7ÈЖ¼¸íVÿG‰Ñ³XVÐ4]Ì‹ŠYÌõTÈ`^VÈõ•u=eEÇR)Ñ7\)ÕZpâ9ð‚:ÏTH|µ)7üZߌJè}Š‹.ÖÅD F¥Dí!J)]aÈæœaÉçLÁG&muòž ƒÒK‚Ç€ ïÈŽ o„dHÿ ÆÿaÊ矛˜’‰µšÚ¤|Ö hDÎhLÒŽlÖXCëM>o­$œ7vIéöLÉŠ±8&4¶pNlØv—ô÷2ƒVÛbÃ.9b®ÙÞUòá¸ôèuZŽÐƒD©«dñ H¡ÏÆF²f¢US€]6ò­ŽY[€Z­1‹0M6à ¼(”›T é%T/môÙWO±8¬­†TÒ"²Œþ°&£[,"™4ƒŠŸ‘K.ÿ “}‰tðÓø¥u×è254é¬5@¥°ø©\þ>"é(¥Ó”¨CCÂbLC+( $™Gï$ÖÍ~ˆµ¢€ÖS¨‡v‘¤ß]‰f­Í’¢{)-¼‡#6˺)ôk'uþ©ˆu–T­-§´¼dÄ=CAáÏ”¼¸ß–Ô¸û•´R±ždÊ‚HΈHÎõ• Š‹/KYQ{Ö_Ëš¢-Qqû'-|-儯¥´¨×ZkØqV|ô»*@þX–õ‡Rå +R8µ¶Œfå*+jÿ¤…Ƕž¨·´¨Òª”ΨˆÎWA4g +C2é +H:å J<ç +J:å J>g N@e­¢tדSÆšúC°žÒXGgUJå C.i4&i©†ŠÄF¤G "Á E›Íù« ê÷°D´ohý¬EdI¥µ¨œÎXGe2 ;–‘Íùj5SÎÀ*ªÕ²RJkh½`¤“ưäsưäsæ0´Öâ2ZsiI­»ª v­+£W=*û%Ÿ3!›³?Îú‚Ï‚ ɺsp+™w'ir¿ š»*Z&5ûFRËæ&ªÛPBûƒþ@ +D #ÍêýE“ß'lwçÆm¥>Ç,Éì ²”Ö¶•µv]“÷+ ;‹E×òr:{8Uæ:@•î]^Ðfì˜ÇÈ1À…V $²_\LÐ! !KXËM#¾´Ñ§àü3™'iúIøq)#pÑX0îN%Ôpô \<ö§SÂ1=‘eŸrÄóM¤\Û@ ï×Ãy0[ yçL =•‰Ä¡É>ÏShçó,$ñœ½XK?‡)¢4 Ãnä X YòÑ~LÖT+ë§SÂ/5Âð[™¬7d9\ ˜ÎȹÍ2vd³ÎW®8M¤+éœÃžè¤ˆ:€1Ù°P´™@½ß Õû£T ?ŽuÕJÁŠÅ.e"‘ž$S¶`Äsžð“nòÂÏ9D–Sú+Ê©ÇJÂ)?è19CèI_Ñœ/´~j³ªˆÎ V8ÖO§‡µ(¥ÚVN¤XôRªˆ©Œ „£—BMì VPà±9?xAÙ¸¨¬¯zdÒzhÎp\ÒWA4g 7&ë G6k+ gwK$ÙwóÎYÙȤ3 pl +-ìP$:!)EÚè¥R#̨¤- ñœ³˜„ÒW<.ë,? +D[j„!–MZ Éuzh3}z›> ’&WA‹Fÿ4 +.¢ôûF”zTv/m*UÅezà¢Wð"ñwvm¥ÍA(PðXRfàͶûF•€ö‘Íùʈ˜n@£ñSÐ'uú#K7"û‚ýHs°AzÞ;^ºG–½ÊÙZ™¼1¹°¾*‚IGØ!Y/…z»Îw®¦ÉS“iüÖdœA9™f/mŽ™ËÎð¥ieæÎÜÆ´4{jµOã]Çñ¶u?´¹Ð­ç€ß”8¨*ÚJ »Ò¦÷ MòM +J¥z(m£Ê?ˆï'y~ªˆžÍÇÌmç¶³ùÇÏc-ñÔŠÈ’JWõ°¤—>½ß[g-îõ¤MA{Ê¢_£ÑmöŸG¼Z¨r¯3€Ù±‚t΀Êl\ÒT&!ЈôT(»SiGU¤SÆ2²93€ÑèHÁ½É4\_ýà”;DA•=D)¥'èÀ¤›DÃÊôÐ#@ÁØ´xìV=.ç*” ÈN…‚±'ev«tˆk HBe O@g«—ó’>êôÐ&ªì³ÄB’z¿‹G/J©Çp¤“JÔ³sçj G=?¥â°k`•·ª¤Ö–ŒÎM› Z8z-&Õ É¥K° %¾™:¿Pí0"}‹@Œ|?‡|=)sðCþ*{Âx~’ÏÀ)8ÈQÏNÚÔùÆù!JÀZj„á‡:-ôS% +m.?„v‹¶eàJÔ‹BMìSªˆŸÉóëŸJÃ^ Ç'ó~Ò¦`øQÏ5úÙ9€r1p÷áœÒ¨ ?€b±®éP½¿ÆÏM¾®a¯m_,FŽ »sX·Æ›gêÚ²5l³è  ã…ókõÌÚÌ£Hד:¹^A‹F 8&‹0ë"LÀšHüôÈ'G%mÅ£²_õWݨìN¡…ÂŒÉZ*q<÷wÀsÿ@‹BïÅåÔ{ÈB:K¡@¬‡&ûþR¦÷NºLPBñ¶Àƒ³^ЂÑAêùA8š'q®G¥B¸q)[áÈœ¨XôL(z*ŠO¤„v‘¤ gâüÚU7*;™´”‰Ã.T¹×wçæ!K?ZÊD"}E„SÎdTn°b²~"ýŠ~/"ë/$k*ý‰_)³k‰¬pô R4N•(´”8´¥N—@¹ß©4ì¼xìŽpæ|á<Ž×Íë€å4P)ÕÎPPø­$¤ÿÁ ʪ–5–=‰E{Iü½‡ùn¢I¾;iSðèB IŸ@Å¢WÚü:]º^ƒG=òy*ŠÁ Å£K@'P° Ejh;}~§Pï=D¹÷kþÔê™=³9Ç çÄP4v.Ô)øþ1Ô³qüâþa‘$ 7¢ôR' +½UL0 »Q%`Þï1¼«Á{ë5yk}†îŒ–‘+›eâʺÌ\mÈÖuÀpþºæe˜2­˜RCÏ…ôg€*‰ù|L™v&/-;dùGG°QI3ˆáè‡(g!˾y‰ô[(®•<¹þ Æ¢µ´¦0$“bÜû:^¹Ÿ*èÔp,ö H=¯Ô9ø¡Jö+k4&»j¡Ô)h0¡èpô Z8ú F4ÿ’0i^¬†‚âg5­ŸP ë ±^í¤úõ¬˜Òb¬#ü*¡r”tªágBJ{@òù? ñ´5 鬧N™<¿^*µð¦*±è­l`Ò PDz(T0¿A‹HÏ„¶—:Á=AŠÆ¾`…£—JQX+•vëœC87;©~ý‘M-…›³¾É3\•ãrÖ”¾ò¡9S•`Ü ÏÕC“}¾ˆòï9òu$1÷C¡~*ÿ•]ÃPZK i­5e”–€ã’NÀ±†* ÛH˜]ÀµÎµ[^3vh²6ÊŠÚϲ4"0¶XQå¨RDOE"ñ?xAÙ§N?# Ýã­#+Šä{ýn(oÄ:;©sÐg!­C8éÜNБI/úõD=¯´éý +\4Y +Ú>…y߈RОREüfDþ(„¶PeÞ¿dó7‚n¾\g=òm¡F ?‚‹¶Ôéá?öÞùüN$þëC•~ý©Ô{+x±ø´hôF$êxå„ û¼%ø7ÚÝ7~n¿&ï­¦Ák«{ÀtÛA9[f®Œ†1ûX~kÁx—‡-¶µ%Äè÷;D¥)ìè”—<»>ŽwP$v¥Í¯ßßÕEŸ}uƒô‚t––X´$1î¹3Êæ%'¾& ~ŠÄaQe MŸ[Ïá]o*ýz=$iPDÿ#š¿‹G¤áßäI“‡VsûuMûZ­+£uLy©´[+…ö3k¬%›ó‚”óT +ÄúA’5&tk¨ÖÑž…´SàqYCˆ!é£J í&Pðw +ýÚ@‰y÷УŸUŠè)ð¸¬'ĸüT$§R}'ØžBE´©Nƒýz‡>Aе˜ö¼›—H›FÃ5U Hº‘PmÖSy~RÂþÐ*Ú­‚dÊbPÒD’^çK×y ë<7®ÎéÊõ#q & o*ýú @Ä4ÖÓzÃљŽOyK‰©ÿZRz{ "Ú¡N ?·±a¼ ‚ŠýmuÆ-‰ ﵄D`Äcÿ1ôëC~7ã^N`‚ÜÛJ‘Þ R ÚGâ¿»'Œ‡AHæ×J²ygÙüU8&=b_O!ÞÿQÌkêüÚH—‚?ˆz^H2o ”ª¢íÀEã-5zx?e†·L™„6Ófw‹égS@´!Ȩ¬­xdÊlTÖT'{g×ߺùo„‘¾CÏáH'”9øï¤L · Z(ÞIœ€6÷íÃÕb|Þ»ºylÏá]Ÿ*¡è­tˆk$ä^=“§&_Ûl1²ZL†î,»ShGó0ÚÉ@’ytQ§­€†#í[MÜeJVÜ\SRëK@?—^ÈÑOˆÑ/rÏ×ô±Ñ3|hZ¢Ë?:‚Jz’Î~a5³G‚ï Æ½/]‘¤ß=Eb±†`C²FÀ‚qAGzÊÅaý ÇälÁI§ç;W×ô¹Ñ9_9zhÒïUöÙ>a»ÛÏíßø¹ùâmx":°‚J'u +z(„¿‚’N9ˋ輕Ŵ{ Z@QhYþQ™HüT%%Ø ìX@0»…UM:ÊÔð Eî]ÝþÓFFÓä©yš¼µºL7Ƥé½·>`<»¨1ðfºün£D o¡…ögáM¥šx#H¡èY/•vëëÜÿâc_\2zwi“Û30ᬱˆhÒU6,ë ;6婊]²Ï7¡‚i +H8åVJi0*¦vöÉéâÈè +E´‰û¶8Ü·ïs˜×3@ •·œœv/(»”iâ"5´8ÁF‚d\Ò`Hú&PïjìS$í 8.ë4(»Ñd`O¡Ý…šßJ¥ÞÚœ8çu¸s÷MÜ·Ñ{«gèÔfäÎè·²™F­¶ácó8o(QÏ&šä ZCµZ^PeYNe]Nd;0"Ë †äœôÉí9„rrŒÝËDz_0h²˜˜nnP£Ñ#x±Øs¾pu ÝVKÈ–U +ìL€;$]¨6×®É?‘zT1sÀsó àÜo*ˆ6#ž}EÛÊ<ËåÅ»4€à¬,ð)&ü +M –'’N–á3 ƒAÓn]ë|ØŒ ZXS Ãl.¢bW[Dì:j©p8bA àDm + /¶]¤3 eÊ8I~½T +ÅKÉæ¬•ª "TYËTLË ÚŽâÂßM^|-“CPI³Û¡Pë°'ªþ9q±’¨£Ré/ìD +öY­£³VÑ>Aæ5M–aȰòõl®gæÎú ÜçÛýœï\ݳhWQöicæÎÂxØVö!§¿¶xÛâ^["8‡øW—îÁƒáî êŠbÀÀ˾@iîe5,P"¬B–Qìƒ b­ Ey*E£<Áˆ¦–ÃS9Ë ªöÀ +FúFpNÛSØ7Wh ÍZÀ(–ÁJ,†/¥Ùm—è:*Dj¸V }ÆCÞÐe–JíÖP-Ø–u6 ú Š9늩V+Kê VÅDÍe¥Í¡5”¶PäSVàâQìG]ÊR)ç$Q/­¶“o¸pòŠ5—UZ‹Ë(Ý€Ç#Í„ +¦™P½ôåÝ|•«Å`Úh°®Úì‰7#‘ +Î>‘v³·M¾²u0¶á§?€¸¾Í`7`¸ìR*X®Ðš¥±È˜Ó¤ð¨Ë¬ä ³]^ÈZ),h1)'j«ULù©‘¦JñHg]AÕ†ØRZ[hò)[hÒ)7 19Y +Ö=‹v4NØmÆÅ4;kIÑE  "[…d3«4ê¥Ôx¤- ÕføJK€aÙ“( ¿O!^÷í˼mkîµX™92`„á$šŒÄ»)ôk;XùŸ@½cײ­–_YaàJ> xÐNÂâ ¦ªn á°Dš~4 Ö‹‡¨Å;L¸À-TQàZ­?šxY¨aH§_,% ˜!—Ø ¨b¼x”¤x¤à˜œDk-é«%bÚ +ÂÞ¤JHƒèbJã­Ú £d‘¤íKÈ™Zw‡&¤tQ¤ ÿi䣼p¬A`1¥+4!Í9öÍJ›†²Ø´ý$…öDÕC 1Ùoöâ¼ÌÜY¿ñkû9€s6Сž³7çiöÐæ«Z6§KGó0âÉ\‚‹W˜[ÀÊÀµ8lÉÛfiøÒd™º31š?·,Í_–×]¸RÑÞ´£€G-àkYQ?Á¾Æ1²à"ìÞrƒ\²ýþ02æÖ„Æ-Ôy ÕKÇÔ‘…Á”u¯œÂ8™ƒJ`ó‡ Àf»¼×¨ìèd[pÌ7–è-–rX—Ú ]HˆQPò™Ýà%5 ¡‡¥VHü7ÿ<òÍA‘|µÒ§—–"Ñ8[áÈœ;´¢ÊYPLe G8é +H4ë]JhgVÝ•Ði“Û‘2ý†Vκ‚“ÍYiÔKÇì}-¿Á¶8–‹æ-[„ XHa(uþÍ<ŒyòÔ Å™¨óožÉKËòÆÅí-®«Û–c8§â Ì.™c  `ÌfH`„˜‡Vˆi@…˜V^€‰u!w0@55±Šô›—F i;(å¬+¨Z­Lç;Š +ÛlÊ‹AˆX¾ÂÙaW¸/fEἡ *±Lô ¨m cRÞFIaŸyqw)AíLœ_[G°Îó|íîž°ÝÍc(·µÉkó0c}žKû>ˆuvÎw®Žy»e2-Øuíc9—¿P¡÷`¡grÀ}øª1À¿4dñHÞa.õ´0ha]W½,Ðæ‚‘“?\ù¶"‚NûÀ™kJ¡6ô)ˆ5ÒìÊB’‚ó޳W2Lh/HÍz+2è,/¦2‰ô‚ë/.§Ÿp‡³ÏS(uœªOämø8ÛrrÚ¡J{S(¸HÁH7‘†k#L.í”z8wÈ2"{'A±Ÿ”°CD)­3$ÕnXCõj<ÚBz[:³újVgaÈj1˜±þut饳® j}õfŽUAw‹gUȺºÍa2|dÚÀ3ìµÎþš¢á˜1v!æóÉ÷u­£·xÛ‡¢\¯\.¿´Æ5¾ÀÆ7¾M®ôNWÚ“´Þ[-6è+'žX¥R¯ÌS˜Gó,âi9,@" 'e‡¯“¤ÓZ`ÐPÍj05ÛAX,0ä¹%>>™r‡.$°P#å&RDùˆs6â ¤“Bû¥_OâôÒ `PÊ"¸¤ÒY('<ݪ¢{&-ü_Ââ‹À2bv`ƒR¦B¡èƒ÷nž0]TØm¸m3¿³]| œJêŠcMØ“æÃ~$÷´CÚ ÌÀ0 R4Åæ./f,JÂ.»`G¦…`Т«>±ûGÄÀÆ@¾6Œ]|a@õk‚—R°«›b@B¬CT„U5 ƒR¡¨U +ýÎH„²‰òé·.êü£·¨¨ñZwÜ `ªÕiœËaîÉ„ˆµ Õ2™†g"ÌAmT³v•Ÿ ‰Š²®)ª}él+MÞRŸ‡cTÃeQ¢„d<€ve1gÛÏg°,ÿÒÁ9\Èâ_ >\ç<÷€¯Z°‹Ø‚ß!¸x‡+ üsiùXêacøî/~‡à`4ÌžuE9ô’0F!Âkìd«llåËlLåK#ñ’ ÐC¬KY1(µ fDʦŒb? Iùƒ +™Ö—Ñú•O-†)œôV—ÓnÖÄÅ}Cyñ׊ԸÁ Œè–|Î_ODoUJå.i H?™'o–"Ñ(WñèÌj`-Õ.pY;‰‚(¡²-ÄĘˆ&¦uGpnËýŒå4ö‹o³a8Ý:íVÒ9ìÉÿ5…D}H§å°8p X¸ÖîµA‹q… Bõ~‘`¥(ðùÆ`­Æ-Dè¤â}èq±'•Nëg†à‡ c" àE;˜À;îFU@£ˆ26PÂÆj Íf»¤ ƒÙ2ö`RFhÉe†Õ¢pŠÌHq¨µ¯Ø˜ m1ƒ3rã¶"¢©=ºôÒG›]ÚÉÔÆT¶À$T;„ÙWëÎÕEŒƒ÷Ô¨¢}`Dâ*Uœ“B å$QÁº‡o–Á3ÃÆÌÙZ™¹1ºæ¯mÖéÚÕ4{h3ÿÛâWWxS,BÄVÌœ™X ÝÙMwÎˉd×øX ããøâéê;Ùòa°õ5î¢Â˜Ç‡ª1‰® (Ñ…U€_Æ+Â>Œ_„MÈ2 +†@Ç$ÖêÈ'öƒ—r——´…'¢Ù¡J@ú&PN.úü›!ÁÄv! Ä|eÀ¦V”LìJhé))<˜•4ÔFyiôP›K*#d,•2™žŒÕ…mÁÇçlô¸õéÖ™qñÔ€¸zh1g6ÏâðÅ%$ÈÀHQàwv‹j£LUC‘—aø ~0ñ´]ôž•"þ/ ”zÁN/67Ûà3‚O…± òØŠ¹ñazc`ýÆÈ.>Y ‹x!SÂ:V¡!KXåÌ&…j³`BŒ±ë¶Q‰›¦2âî`À©¶ ÉùÂNšƒ•ÑùÀ‰Fzh²ÏAö +«˜ýN‚z¶ÕJú¬@¬¨X¤©^<ÊV«š²'˜æZ11~e‚gÁ¼eT*á[í¹–†/~eõkmðŠ‰»³:…r´ŒÝXv)4<' 1©Ý)ÔÓÎ豉 mròÆ%Äê±lW]fB˜ë±–-cV-ŸÝ,ö€Š?åq&› î´3Äe b Ï2ÝHü0„ +ÞÊAÔª ”¥L$ÒZ_Hdó”츻BˆŒ5ê0rö=²:æ¦„Æ Â‹ê¼ú­Ÿ8=•æ>¥EÝaË©l¥£S+!Fæ\Å£3‡fBÌlÒ&!}-Ûj¯e·Íð5÷ÚÂò ´¸ˆ!våh¥€ô‰AÚèÓ¯eêÍF¢€2‚Ù +ZTÁª˜Œ‚E¡¨ [m{R#2ý~áXâ:þ0¥ETK¸ˆ ã 2Œu€`0Vñ¡h d̤Y/Ë2À5(@âsÕßnxpíÚˆ^x·pñüšðeLJF#öÁKlíņ¼×dÇX‘d`XRgìÚ´3zgYšÁ3­éß<…ƒ1«e€bgZlt¶%/¶`PRÌS§’2£ vªE£VK&²[X‘Å FVðÈ»mÊZ+bU5,k¤CA´¡Á?5œ:93"„–'%EàHNø† ~6÷Ä2@ULkÜŒB¤a°d†i·ð +À¹sRI×r ˜ÐËšRCÍøjõÀàûP3â-k&•í‚L*…Ò5, "‰²ÆG> ¯€émqB§}é1o`E–AŽIÙÃNe;V ?K’º³š°;`¥#ܘ¬?` õZV@=• +DOÓwFß ¾uqÑÈ7Cà™íVhÐnMrüªš2¿âð#!¸À“¢.𤨠+ééŠc»¾Àhìˆ`ú©Ðï™à›Ù•Lîœ +ƳBp².3ƒi]€Â‹l¼$̱tõ±—-µ1^lc¾è± +Æ,<Ôœ »Àé¸ð ˜8">Ãovd„8†ª:–x\L0f­ˆhÊ® ÊX)#¼MÅ…—cbc[d•̈-ÝuìªfŸ]´™@ »Ñ&Wk¥$S›å²‚þÐ%Uް#Së4ZØyù°‚p†HÀŒ°ªUN,‘dßÍëlͱ*ˆà\Y\DŸ²íåEï¶®Þ`(Ll¹/@j{9ä4~Ì{\˜Ðá(]zæ‹,j•7¼”-:@O1ÀX¥ÚíX[ÆN:,ÛÈBÊr¹¦qKk¯p FJ<)ƇÏÈ𘪣'nçuAÇÒ® h³O,qNkáKhvoIíÛ/HÔžpÒK¡ÞîÖ‹ÛÊ\+Æc7– ÊÜ“E …VŒ ¹¦RcQ€aS4(Ã"XýúçÛ0Žáµ¤C‘«§[~|ìëÅ€ùòÅ4PMÖ>QÔ(uÝ P~ˆ--Äfðè¾8¬ Ä +?ª"ú8Jø‹3¡ Ìoã-aö˜µklÜ¥ËnŒ€Øvl׆1=7³`;×:XÀd€x†O9©w6Œmp™%°c6«2Ãk`:w°‚*k)@B›ÁKªØÞê®H?›r£Ç±æ°ÿ•žBÊzÐLËóH§Qr†“é3ûâ+‚IÅa˜`(½ +¿5Òõⲋ§° F“w&Ã6Vd¹6îñõ·…‹ ÅK ÉãË–³D•7@#¬õ‡qŽ®¢Þ.ѸE6 +C`ã6n²eaŒ¤N\Ð1‚x%sîŠûy9à\ ž¸ââK6>\)¦‡qœÙ„z¼ +æX$Ë݈ƒµ¬f}Q;ðáX_¡¬=|ùìeWføFNʹí /¾Ø’ô„žò’2"™Ùþ%ÕÙŠI'ÖÉ…bØŒèzOÁö Èzµp¡Óp$[•ElIE8ŒÁqXˆ±¯>.7¾"8ö¢=; óé’ÇE¾ä1“.íø WÚø€/ºqÂâÆ „™!àj\CCÐ”Ç ×ϱ*î­¢8Uïá:<†ÏDí$ñ° jÕ¸ŠP³O'À4Pç1//<Ri¨]ÿ3)g+•~9(é PFe +C2龵ε>lq +²®oc_Æ0¼«$Е(`À‹¶nŒ[6fû0.¢j ÄÕÇ?β5x™Ç—_ù¨Ä+&<¢YÙ-2B\ÉÄmL/­q- ã"YƬìñ[iãt¡Ð5AaŒ„CÑ8´•E +39â®8"ÖÏ2˜âWEL܇óÌðnATŽgÞ«FÃì-4êÙÉ‚Ézæ ­æ^a_ž)¨¼ŽBÁÓLaem³Ä”7o+´ØFÖˆD7Œ‚F|¡‹d·Æ=ºhÕ@ÜTÆq)ñp A6ÆâÆr@6@×=^€ ;FØxnc|õ±ë§„Ú;$@ ðˆd/þÝ—qv\€ Æ>4ü¡Ä’ñ„³Àg,–¯xˆ\L‚Ÿ”Ä£r‚ø“Gª â?<‡_'8xúòÙóñH8òoõˆgdpXÊ•îV$Ú{<Ûç… ÝHÅ€‰Ëf-h_%Uº (}ÎËmÙø– ¯zUKp-Àºµ@¨!ú8 +`Ðö) @ö0Ò5î Èeã-^bã&[ÆI>@À( X52ð(À4ʸŸ°€ ¢âZ ð¹JoÃЀç…XÀ ± ¸ß‡)wÅÉhTr}ÄÀT\…sB±ƒŒÁ¥ÌH~n|@˜Ýø±¬1Æ/²~Œ,b°‘Á‡¥SÄ‹õƒ%’BÐq…£€^80–¡ÁÁ˜GÕ¸††¦1 C\$1ÈØ¨“À÷4@q®§#΀Gˆ;Íñ¢ ^$Ä•d†øÒŒçÉÉ)â>;4u]æ1—–a!œ’~G¸Dþ)"ZÉÄk)DKY§*«œf¢ŽOMÄ¢š©Pâ*[\AÃDm7y¢u­‹–þ6Þ¦6þòÅa\¥ƒ†q—,¤q +:V$#ÄÔ`«âštîøÕ€ÛeMñÿà‰Ó ž8Ø'NI‰KJâ €’8 $Þh‰ch2À±¤øÙ•ïû€«Aâ”’ø‚"ÎóÑrhhbøŒ¢ ˆ2Œ‰|ˆ[#”B¥›-Ðc1n!¶5.ÌlÕì%¡Ž˜Ý@H w?Þ€¤¤ÔQhcÊ`+Z°1Æ=8 `ôÓXFœVI6E#\_°9à¡Úü«EÅÛ"àô%f@‰o(Zâ’ø…#%>áèˆO0JâWFGˈˆkh2⚎ø†¨#.Âé‰g19q:IèÄyx¯¡à6Ž"B îa¢sðˆ•Ð.’,ŸMl²åSpÉ•ÎÁ$­˜] C0¿’a|DÃÑXµÂΓH«o¸£W¡‰“=(➊xRߊJâ_ ’xý€‰ß˜øWçŠ:â–Šôq¦¡£kâ@<‡óðž3síû ô²@¬LäÓSPIPÀÖ.œ€LôKR¥R Êî"—ÞN.¿9ŽˆÃ6PX:æ„U2WhƒÊ7æ¶aü¤ƒ1Š 9L ¯®(ÔðÆ­'^ùÅ»¢8„'®ÖÀ‰—1pâ[PH\‚Oà#ÄŸt„øSN‡Ê1âO7Eœè*ăxÐÿáM5BÜ€L‡²)âN9CÜH&ˆïpGGRãqðÅ^#§•EœP®öÐä„’§©XRìåaãÒ»ci¡Ž& …$ñL„Qc²rØTÈ×Ï6î†`![hãU Cˆ¼p¥qÎ8gGÀ¿¤ø ‡'N7a‰“E@â_QG»BVC yéüòø¡I¨ãfá —Š6>OÅãiKà{pí'^dÄ‘xï±á4œæ†Çð™ !~k€p¿p]é¼üö˜qÙýAÓû#æ`‘%Ý!¬ „>X;½@œlv4ÁôöÒI¸c‰¥è“¹ÄbLR$v’,¢¤õ³hŒM|˜AáV¿a%à|ˆnbøŒÏá;\‡ûðŽÃq¸Ç¡¹ò~½Æ-ÕHòeÙã.\b\Î4¿L<%û&û–8™üKb¤Ò;d„¦¤°xÄ”6LË%˜ŒD- hb2YÔ”4¾}Bw™*åÍò4 +Üå¢ÇÊ/Ž1²” ^A@þ0vòá:Z6¿Y âŠ’xÔÌ7â;<ˆçpn#ÃebxL ¯á4W3Ãkx Ÿáœßð®Ã{®F|B×?µ,!†ZÆ9>䀽 ¯~VvWMˆ¬°ô9½D4òˆ©¸ +™)yä+V iùÝ‘“‡Ì/˜Ý -6»@fdî˜qéåA3¬#Åå"ŽNÈO"y€E˜CŒ±hõ$ùfà|ð/¸T Ñ çæÊ¯&ý‚~B›4šõ•4„*i 6*齪JŸðÞפûQÌ“@ò†CFd—REüF“ƒ? ³ !FâŸ÷1¼ÛñÒ%mN©"þ"Ë?OTé×@Á_‹E/ešø… ùlN.Ðb޷уë:Þ9ï$ +&ÂäûBŽ}D‘‚>i“Û¡H m)RE£J@[‰Go%£ò+@ÑhãÊùBºÎôIø£PiòÐê?¹¾ó½jäûT&½ÓgØÞÏ}™63šËY1Žå›¡S£“6m'2ÎÎ+yv}Ó(¡jÜû<‡wuŽÝgúô~'Pïíλuºq?ˆqï+8Ñø§J{(X©sð]öÙ9ß83èæ ¤~«nTv©RÄÓwW3öª˜ò„šr… Ÿ2•‰ÈÙ‰´°'az’g·] +>QI_ýØ”JÞ†M†që`4‚gtÏá]¿Ê!î„|Ö^ˆ“Ä_[*U±;…z#ÉA_$þóC‘€õ)¡Ýö?wž¦OM޹»µ3}grê¡ £’¦ðÃS~ࢲfÚYré’6í#ÿ§7(’/ñLaˆ§CQ#q ;6…)êaýЬ¿š þl’T; ŠèÌ@ä+PÁø/ñœ-$éœ3°~ÎV;(»‚i“ð5æ-há賘„Ò„xQþ'ÑÂoò†*-´…ù˜<o)$ý‚ŽI™ƒ@zÝЉ‹*;ƒŽÞªJu +¾sç|Oø‰SÐû âAö}œÁ¸ºÆO­¢ìëVÚR(z)UÃOe"ñO°Qù¨ê Ò}Ã:B»_£×V÷Öù¤ÎÁ ão#’NÂìúïçÆr[^2njtÕÊAä¿êQÙ.ǰٙ;²Zç;Wï„éz¤^=3—FIú ƽ?swÖcÒÊ*ô¸ôY@Ç )èõì$Ë®-¥Š(†¸Ž ¬Ò1YÓNLØZ&%<‡' 5éb-úõrˆë F:i 80g +;:å­§5*¨4½&p†A›Å®iÛÆÃ „³¦2áX-Œ:=tñø”`ìNž†T%iüÒèkÜÏÒô¥ÑKž_¿`dw ÃR¶Â¡9O©":y‚o$KÁŸpß?š´¤xô L0æ„á.k«šrVÓY ËÚiØNÂô~"É?Oe¢±#@ÑU¶‰ ÿ¤"Ú†pv C<ë.r¼nŽhÖ`NLÿw‚âþšRbhrïÏØ™Õ7€m~Çk×´pô[KF½†" 4Ó&á?º¼&+Á¬°`¼§Pqˆû‡¶¨÷^âô~)a;ŒÃ”9è}ï0Õ IaU³/`áè‘0»¾‰3l/X)¥Šø 0üFš~¦¯Œ–©»å›Á¶ÚÈÐ#]v½޵ƒÊ<·VÏà©Ñ7qµá\½¾«P½ßjÈåÜ`F£ÓÂEjhC"~/ an9[ƒ×V7…~+˜´ÕÊî$ +þ5~j4ßb³<»õÅÇ´Úk[­ÍñÂyŸE¼ˆqï;‘~m ż/GF_ݶY"J¿_‡¦wð¢ñO0ü6ܵa†£-5Šh;xù°€ìKžƒöÒ&÷† òg9­9!¥ÅŽœnÕ~ 8£›ñBÍ Œ²¬’¾§Û×£MAÈæ»^êôО"qø•4oœ@¸žÓ•3ªä‰ùzL™–ß´¯µb¼‡‰]Óþ,cwËD’aFDÇ:íB‹{7Nß›ísxgó|ëì¢H@›†¯¬Ëèmg^†ËJâÙ+ô¸ô‚lú-s¼pxpÊXIe¯%¦ ʈ>+)a‹9½˜xô3qjôQ¦ßÝÆ¢ý$úÝ>™†ýŒ]‹GšÎÃj謅$Ôg­~v*UE¦MîöÇo¤¸gK™&~ +90»ÕŒJ[ +µÐn +õO¡‡þ I_E“Æò¡ISàqY#8¡¸¤É½yéŒHüthÖV1,= Å©TEÏÄ þQ£‡¶T(##4O#¬$ÊíR »ÓhaG`²®@$T»AJ©–~2âþÐ*Ú'Éœ!@IM~Á9úð­ÎùÂÕ=‡w¾ 4|U«iæ†ÓgsX í j×’Q[ÄÒËh·0ÄsÞP„ÓO~&P¯“5‘Þhrðû€õüÑd×3Hñè±zXú.ĵOaÞ§©[«iðÔhïœ'’ì»@Á?êÑO¡Ú +T8zª‹žò¯|G1é«fLæp™B¹ö‚Žþ‰Ãï E£½i8Æ”Ix/mrï Æ½odéwS@´Ȩ¤)ᔯ~`Ò dDÒP¨‡]¨r¯ÿ8êÑE˜€µÕpwú,ä Ó1yÞ:_ºnã×VËäÉW¶c– ‹™»åÂ:Ïsh×küμ [mtèÅdÔV²QÞSªˆÞ(ðž©C«yãnš¿³Æ +Æë\BŽ~|EÓ^Óêì à[í$jXgP*ËNPxRFi3&;”¨¢wòün¿pB’x¶‘Øï>’ôú©TE +=2é L>ë+š] sð¦ÁS£eÚÌh›¼¶¯38— EâýÀ…£-%šø—.»[#ÉÁïÄiXU@–µÓ§÷¾të2rg´M^›×¤ûF’ƒ +Å»ªÊ¯ DdwÚün$í¤È¯Íà„£-Џ)h_xÂ9Û¶É3|kØšAµYÇK×£Rý†'¦2/ª³X«êç²Rê3,¡­€Pv­¢ô!™] sp‹è¶•;«ƒ +÷Ƭjˆý×S[BŒÊ¾ …¢J¨laˆç¡eZìóN `4&3( •'äМ3ñ¤µŽ€ú A6ë*’?jøEþy£Ê¿¥K°ý4s+Ù4²$Ä‹ + - ñX£×VËÄÍ0k3¦L›õ9ij«hHþ&¶7y|Ù›>¸ž`…cW«©Ïb-•¤`¤ ôy#Ì?O…ñ/`Ñè™6ÁG“ƒ6Uê¢}4)h×ìµÕ0e³׊àâÚ\1p_VÚü X8ö#LA/c‡&_Ýì,MŸš|”ø}óè;´y'lW 9þù«Ù6Ëå°¯¸­\#˜FìÍXþEtÅœ•Í6yq6l>n;ÇÀmå˜52¹'±Î[€ªåÂ2¢–ÀÃr>Ê ü6}nuM^[N7.êô2P‹F¯ÀE㌞Y}eûZ´YŽq#£kôÖ²œîÛ­$ÜrX ­µŒŒö©ÓÄ´Èו:½}ÊÄ¡GpBñ[帤³Ž„Ò<¯x\ÖV4.;ˆ"¤=, ª­U$ÔCùD»[¢J¾ïJxcÂÙ3áìF$öÞÙC~?ŠTÑS`ôJ›ÝŸ3(÷gæÐj:4Ó÷öwÀmd9}pc>„zvcÞ]Ó§æ9-¢‹Ó"Fþ¥Ìî-#wFóNkaÆjú:ÖkîµõÅ;\qe³e 8(»-%ä,VRÉ® Ec—2qÈÉõT'?ÔiaâŸ_²$b¼cÖ¶4Ç~uqºË‹—…‰íÎùª“5„’µf`ŸÁ+“¹ýÚCèõ0þ³^×4ƽìÕµ`2res!\-c7ešø«jhÒhˆk)UÄ0ÝÏùÊu*…L ªÿÀÅ”žB˜t9hQÞDŽ?‰Ã±:>o,b Æ< …¶“(øÇÀÝ4š'‚Üã ÏÕøy!žÛHÒï>ŠÜ‰ÿ¶G–‚6S&áÍÄùµ‰&ùn Ç;»&o­ËÄmk=4?ô¨·å ÏÝ2pdóLÞ–Ð+¸jôA‘y_&oL&ÊœC(õ’€î|ëÑ##ga§àTëÕzú)ôØœ…ù¾Ž7îÓà¡y¿¸ïœMSdžfg¯j6ó6FÛøµ‘aÅ¢P;X“Ñ{PZˆRÏ_ׯ°2yiآͿÚ*Ç%½À…#ФÞÜt®£N"8áXƒ59µ»8zœµº¸?\!Mš”#k P˜CÙZ[RTå©SÅ5šø…ûn®ÙP£ÞXÔ)ø6šì$´öbº½PäsfòìÚ>†{ݧïQ +ú(ÔD¯œ-WÖiöÌ~íîoÛÍž»¯oµ6®kgðÒ´2zgY0›…ÕPíVÔz†‚Âc—¨~ID¿”jÔé¡_ ÂÑ÷xñì™»³~Ø–DIø:ÃöOcÝœÍCHGöÅxÇ~qZ ø–– E>ïAÊhM§œÔ9øs¾rtO£½ôù­©P(z¥Mo÷ü«ô€¤Øœ;|)e[¥qëÙ°q¦¶:ãÞðÄTF°b±¦R±X/ÀñHOµ0¤!ü˜œ1Hñœ¥Nú¤OÁ*!–ó(¤2‡$¡µ–Òz+ éÿ::&bÉçmE㲌gÏÔ•Õ×6/óYÌëjVgw¾u¾Á E› JçØ‡%ž¶“)á§T›eòÆd H<ïb’fÀ²MÎä•Ñ0e³LZ×îÖù/mP<·ZJ:m¦Ñ¯—É3Ó^åz‡Ð­6ªäö+ £L f÷ qøDÂûŸFþpÜ™#ÓÎìeuãæ©‰´…$ž3… ›sÔhø¦É[«gèÐæ§Q0 _ãf&óxïl&ϯg`ñŽDÒ ü>‹tÿ‡1¯O™n¸h¼“2o›?·ž Ñu]«±<ˆuõT‰D¨a$Îë4yj2 [ã¶,&ÎL,<7ë ÒÉ>’v´g Ý`Gä<……fÄÅLʈÞAŠ( ¥zX#mr»T +ÞaЍ¬u@)VEÕs]!ýX~#Ì?U"ÜÀ€ì VLv+ ”5ÖÍY Éç§• Ž…%Aµ³ŽˆÒ\DÚ7|p?†m+ÏÜõ"Ç¿m†#½C«hí¡Š(- è¡Õ“†"qXû4æ]þÕ ^DÖ˜j5¥•2½ßF­¶ dóH•w#œ5‡VÑšÃQúÏËÈæü„ZX÷,ÚÑ5\µ¹1†BE¬+ ÕvhBšô è‡*ýºS*¸c-¹¬³´ˆÎ h4zE¼úÊvciþÔ´H£õÓˆ0 Á†d½€…£Oâìz§RpOàâ‘fýúî\ÍÆ«}Ây7¯î)Ü«wÀz³‚u“ÝCRºÂÍz 鯉¨’uXõüB|vÌÛ¶ŠÜóaKPmJŠn•Ã3Ûà…d ªØ—8 kôÜèº3º Ô{_¢Ù-èÀüRªˆ~<÷gêÒfn\U¾œP´ŸJÈ1ïÃu-÷êâ‚›³3xf3Pâž_ºìn>»[%ËÁ±9µ~eóÙ®[í³ˆ×¨@¬Yû4æÑ4öêöÁbäȰB‘€tH`ç--h0.)˜:ÁÇoîóxóúR'¸3q~mž0^¿tëH—]OáÇeÝu„ÔÎ`”¾K›ó®nLÚNŸa{&.mæ56 &­ÞðDtÞ”v2%ô8á7fMþâ"4xà,\à0dÁ”Õ`4~lòN# D©7ç Êi™Fpi M:e)ˆ]Çk×$jHïÞÑF˜\úk¨Ök‹jçê‚Zcxò9 MîyE9.ë'SCÚ ô°S`ìW;2髞žƒÐ:‚‹É$Ù½™6 ßΚ+IéÇ"!%S2zoMõª|ú B,ë/û©—~Jw +C2iKF窕½IÜ…û¾(øg0Jw5 ½»XCoSBý†(½AI¡ÜÉS°VíÖV>.iUNkQ@먈5MŸš|»³B•{ýjuÒ_xÂ93˜á؇Ä|}f K¸&ãpßjö:Š„aÇ2²9g±’rmQ¥·¶ Ö˜|j¨B~†wÐbß—3ÓòÞÑ ® ÎX%©6VÍyÁ +G¿@ã`Dã ÛI“Þ{ È~aHèL¡G&Ñã`W°‚ñkòYcÁ¬(í<5:§+×ĈôrxÞzpö%ý  ›ŸÉ+“oøèºNàÜ]ƒÇÖeäÎæ«™Ïr[‹aÛÊײ­Vf®,Ç ×…÷z ë< ‚kA€¸áÊeà¨ÔvˆB:'iz;ŸÅ¼x–‹ëJwgyéh#ËÁ^a +§üA—m±Qû'-|…"ŸZA»/&{‡$¡ÝÃÑNU‚±Ur»Óg¡—BM”±#›ùÿ›¡C“ñ¼‘¤  ¤¸÷¯i_Ëmlصm›ýqÔ££L$Ò@“{s \YŒ™Œweiñ °¸ÕÔï`ew03{hÚC8™¦OM¾Ê}±¯›œSøFó:ì‹ð BIÜ“8¹þIqÆjýÌŠø’J@ UÆzâ©MÀ‚± Qæ}¤MÁ®ʨü%õƒU1Qg­)ìȤ-¬zÎlLÖ X@z, {âúƒÐ¶äÔþpdÔ;xQY;‰‚©NÚKŸÞ/$Éçƒ(ùèžÄ;ڇѮÓô±e÷j£†I³Û{íŒ(»’&¸3z?”*¡Íʵƒ$÷|"íhC:‡Ð­Ž¡#ÃòÞÑN¡aš>7Ƭ‡ÉÈ™eyëê#LA/D©×gôÐæ™<4mŽa-DéGïÚÑ1qcrŒÜVÞ1”óM£_O!Èæ\7AñÝ’ÌØþ')>&tf÷ßøÅùžB¼ï %ÝÉh]Aˆçü$Zø‰ýnD;[‡‹$æ~&=Öͺ üiæÚj›¿·™¨²Ïf€ÂÑvàâÑëtéú Y Ĉ÷¡F ?ÿ‹ÊºÁŒH:i“Û{íjŸ°ž×áÚy™73šû,ØÕmLÔÈ—Ó•ë2pisMžšÇáÎÍC’u’¦·ï„íê«ÚãX h×°Z;eYHçE¼šcúfðØd#MÀúh3PªâüaœB¬€Æ<&E†ç²Bbnâ Û>…y GO·’¸=·•ËY‰³ë©N0ö'i¡Ç>?sg6_׿ì ÞÙ,ÔÈg;qnƒ÷ì¹í S¦ kûb|+¶ÅÃBtà7˜ˆº;;džå^´8…X¼ë˜3m—·M&ÊœyñæG;Z ´[QîÑ1ncÚ˜22ZÈѯ/( ±þ[fÔsQ€x³Ö<–u•M­§·KÈQIƒ`=­·GLŒõÕ°‘–§£3í¶„âÚA È΀$”}ƒ‘P:“ÒZ‹U´kX£L{å`×ñÎu™¹3íõ­gk×èÇ<šM ƒfƒ]ß|XÍ_Û|7_Õ>öú¶Åæxéè£É®'Šô<ˆuõLÙÌ}د½¸jÕæ%Q«™ [‡– ëQÔ›4k£ËÀ^ã§VÃ¤ÑØ+[-vû`B˜{5…#Ú§Ò°¿ñ‹ópdrL™Vçk7GYÑÁ´œ %ਤw +éúa§Ðc“ÎàdT[’rÔû9Ô³(m¦YKBé,$ õŠ~®îA¼ëA|?HñÏ÷îõ¢IÀ¯´é¥"ÑØ±‚tʶœÊXL8婉4|i4ïZ0®õòšÙ[Óiú}¥ÏA´¸×sãê¹ù†+—õyÌ“…Ä|ôâ,cg¦•‘3ËþHîi©\(ÖP& ë.œ “f‹IêÕjPÒT)i&So‡RQHWHÀ4,›À +ëE-!‡¦ÜÖó5yoõ“ýmH ³­÷’'˜®Ñs›…$ûê¦Ñ¯/ºôûAz>üæaÇæØ–M4§ÏÂOÓwVó3±/~Æ%ƒgv»Á`Ô´]:á:)ˆ5'Êà\àaYl +ݰ +hÔbÐ2š½Ò©…ðC¬mPC¬dSëáˈl­…•„S¦{‚ã–Ü1¥ ‘È”›ÎI›fmѱV9e2 »ˆ'¤=mÈŠ2<0ÔÚx°8“™”°AX)…pÃR>bQAŠF/Eªè§TŸFÁ ^<ÖJ›Þ/cW6ãºÕP,ÖK „¦­öâ ÄŒžZv玮éc£¯n66Ç+G3y~½’5S'ØÏèÉÜ‹uq´øYØ×ˆ}ÕÓ,ÓˆïlÃ}ÓÒì¹icæÈ´×²Žå7öëfPN†"aØ1´Šj œ*ÖW¸;Ëïl׵γé¶ÉP' +kYLe M>å%N®ӵë8ܸÞc˜×—H¿µ…(¢Y_FÈ"¼Œ˜À œ•8½ê´ÐGÈ!ž hìN ‡5U Æ¡É>?U"±‡ˆRZg™˜è·“¶ †ï¢b‚^£Ñ÷„õêA8š¦MŽ™+Ã^ÕÆ´B}ÿ*ˆæìÀÆ#(aw C²Þ0…TÎêB*+€ñH MöÕW9; “æÅÔ~Ø nÞ)¬›uåüd ©Gÿ@êÍH^™È2‚ôëDâ@zÈò¯6â ¤™P é$P/ÍsXWßÂÑD”€êc ƒ’¾j’)c-Ùœ³¶œf·¸˜±V9eC¾³fFUþì’~-È‹-‡ÖP:葯oµDâ?ŸÆ:_#˜6•j˜ã…ó|Lã`>À …uaêi£\(j‘D½rLYÄԚÕPZ‡1NË5\eà3­#ÕÁ,WLÌw¿kK ºjH¦Öèr†BU¬ÿ“½ïÆŽ2¹ÊŠ:üƒÉ–QH”- ’$~ŒÊŒþuÅBK*­…¤”Q„´g™¨Þ[JJ½…Uϙ͂ŒKºPí(£Y =6³ +\0Ò•xlºT¦{ _Üê´(Ìí /tel:ïiqǧài1ºóõ1§f„®{Ûê£/›v‡9•G¦mßÞ +8ïÃLÒ6›`?LK9pîÉ ùFé2žŠà„‘ .ô½©Ê\å¢ÿ?î$?kqgåYГz4˧9<jI½*JUê +·ÈG×îï~ò5²ÞùœdœÞýäã<ÿwß'Ê3µ+K+ÓÅŸUË“•£Þê=Lòþ÷Ä}ô&;Çä_ëôÁ>«ÔcVæ?˜µn©ÉVøÃY¼9ÙßÙ®F"/îŸaæaÓk£ÏÏÏO½Ô2P¼?ë¤i¸·òQxéÿ\¬ú³’Õƒ­Á7-oüe0¾°‡ˆ{E~¯WÅCöÃð2=È$`ÃߪJ|ÿ¬ìßÁ aâágùÉìÿ÷ø}¬aß¶®£žÙó¢#Gu!qØñÍ?«f[Þ.2×bÍòÆÀ˜Q–µý=Ï·wŠ.ß wo»øIÇY +íÓK ap§ÿÿ¬ˆó‘v.X³®±×,?ˆJzÑž›Ø¾æq-8òŽ´´Dãÿ¬:³¦|n³~OœÅ øNü·ÈTwH½qEµçA-Dxf¸LÁMý³rÕÕƒ00˜/qÁuK>?«S»pXMGàqûõÿÁßøæ*þÊúö®üYÜÜàŽÁØY ûá€KrƼûYÀo„&t8ѼOõ¹W“-!oÎåÔÿâ¡ÐïØî/7/ì/'Üh~V,®*ñ³"æ5">dpÎcP³%‰×3ØmóëÁÿÜZ‡-9û¸øÉÀZ솓·ÿ 3õ ì3Í.Äò>õõ©åÔããð…"ümá6¥ |]/ðyÒ~BgõõaV¶Ã퉣ܯß{§vmhìGzâ#‚ùU»EÜÜ(ap²(ôqó{-qŒÎZ£ÿiÜ®;G]‘ã/Eþtè]ÇÓ?B”xEõÿõÙ·¶R‡÷PœŒ­ŸÉúiód^xš×ÇšL7=wôž¤tux΃*k©rêñËÑ÷¼è¼«…C>ºÿË+6˜wß!ˆ´'E÷ž‡õø.·õéÕ!{vç™æ…Þ-·Ò¸ù¾l¼h¡t5€é&•G²Â§dV’gb¦®|Ñ 9ÛâÌ9ÒãƒH¶ÞÔ Þ+m+òÖwÞo㺜`Ç SWöÓ¥w×R~Æ#ŸéSë߯î­Ïóœ*ÀRI»Zzô¹µÙfl(ÌÚò}„û’<+\<ØÐ«»X¼–ØÞMÆ¢¬ð…TÓ}º²µlkuCî½qˆC·èV;º©U·4-a5«ûß'ðs7tCyñÃÙì~¿Ÿd{æ¿D¢¶Ã½Qè¸$}çAŸ,9í—,AÎLÞa§ üÔÕÏ~½SªaF +ꪶúú±"ŸŽUÙ\=½Jñ®˜7VD;²ñ¹”)4 yZë¦Öó'é³w…ýÚê‹$ nSo8Z¸KÇNÞ[ïÈ8…×FÒζWa­N¾KÙsyû½"Óf#ÀâOM=AÍßW}bþùF²5[%Ê“<¢ L$ì³$ûÛpè‹FÃÝlNò"~ñJ•Ã`C ¹­¯t«êœKýSÁl:– 6ý!¹3º™ÝV +®¼zåë/p>ýþ?Ù™»‰ô £Ó¾$fr ÷Ö¥ö²iÃ~=•ß ˜"Íf;?uó7o)ãϯÜÔõ#âìö¥7ÇÁO%y™¡a&ôƒ?ù ÷štßjÄö·{×ñõƒ¼ò”>NØÿ6Ù×'Ê;Áôû‰WÃ侟§‹ßÜ#ÇNA·ß ¢Yñ¶»…Šm9ZGÈ«\± +ôà€½WÓaŸ¼igàSyvcÃê×V.Õ‚]QdžZ»‡­C­m]©v>åì`âGåêËöX_ðãÓ¸:•¾P,êÖÀÈ%Ë+ˆÖR§t£ÈüL" <ðtŠóôèvÝÖß-נ؇PÉ{r„¯Ó°{Ø¿‘þóÃø9´åÍ |1~u~ë< +ÓD=À·WtN4‹v)½ß[—;‡ðè®æ+·ûödïÊFöû:ˆ ë¾ÄÞå‹BÑ"%÷Xw`à~ †,7þY˜ÄCc6M7Ž"ñ._:&ÇŸ1Ä&Í«z›Î‘‡@@Ð u +?CKÃE%»2ñ—ï€IXžc7 o_=)Ÿ*™[Ôž¸&Æèè®ÁÔö¼*1àwc€øM#¿#>=ϼµQ©ýzJÎAF¼«f|ú£Oà¤z´u‰Þ.öÑߺÑýìD„·¸Ò‚¶‰QóÍf"%üX·½c#¶.êŠÕha @´c>_®¡‘¼—½'Ózˆ³Ìnšº¥!€5 ®1E€y +ö²M& +€sìz •£k‘S)dVq}‹û)|ôý:oC5‡ ª# {£- +Ç›ÙéB(ÄsânÑ•×X¢à±Zw28qÇ âðwš Qƒ#ðCç¹­M”(B+Ò +ûÑ´cèîËõáíëKÊÒîJÀ¬–öϖܾo[å° Ò*‡ùHÀŒúzàP s‹.‰v o [»UÜåÜÈ,Œ6X)vÖ/ãµÜkg¿/$ø¬ˆÌÊ;Ÿ…¥íÝrló¾]ŒÍ6÷WÕpf–ôy4?_l–éRÀ ‹(sxý‚aXbÆc{d\QIÿçzèÄMK?ú$ßÑxl¹kÜkÀ¢pÛæ;Ǩ*D¼vI8æD§<=â¹ß· »ìN`\3µ›-x¦¡×ùQ÷$‘Gg÷Zë†.àôïÈ +|éN1çÖŠ~è‹0sgX™±sUNYê=ªNÞ"Œ¸£óXR´o84¹(eÄ}ï¼-…—„†>f”†È R@2ŽðÕM!tUbv þª¾³šÅͽåªx¿¢YW€¥Œ}¾ff}"ȓڭžnM÷:צ×᜵œnÔP†¯ºâ/1ØÎ†­Æƒæ²¸Êô„°ÏÚü ½z½èW)¯WJ/¸ô©nê¤Òíõ¥yz,ÀÌ]pëM«’t”ˆ^ÃbtÙ÷OèpVYyþºÞXˆbn”ü….;Lÿà­ÆØsöÊp!÷9ÈtrK˜ˆË9IÊ“;Œº©ÆÈ[¥æÁKrþÈ- —=CrZÙ½¡Åe¯|¥â@ ·XÞŠKE|}§$ €rqÙþ6¾•fçŸî½|Žs \Ò@T\MiJÂíLFÈ㯦2CŒx줡 ·ÐæÉ§èYÓE¨ §;[Uñä%ýÚ¶ÞPÕ]– +$QMÁŒtèì½ãÝ„^ueÒO”£ÎC|Ç/ëMŽ6X§·iêm°:€úâmBÇçÔ}ðŸz"ýe ;EDNe\xô +•Yp¿H{´}|‚¬SI©$tGǦûF^Ï`)ØÐá‰4‡S×°ŠDä\ÔsL C"óÇ”’Ôpö ·âfqrlI;ùñÃRÔü^¹œ¼xSX{tµ[Óá•íSª mz‚•àŒÖÚ¸ª8¦æcO6¤¡¦0*÷UD›ýRìÃãˆ{…¬è€Ñ:™Ü¯¤`¾SHó+ãgåN¨È×Ï ¸·}t,výƒ~®¸†¸ìl$]XRÑ-š;JE„=ÀB]ëš¿*Ææ{FNj Úðy$3·Í«–cÁ¡9SªÄh–eó^‰‚#»˜YñÓFŽ!F6¿lꞀĒÊ9àXéHü‹®‹Ëj*üâ(Ц+kÁ ñÿu•õÛUÌd^üGHÍRð{†$¼#Ûd¯õ¹¬YOGš)œÏÇf÷oGF|üÀÿ9 628.25218134612523713( á !#<õøâ8©fê ÁaªÉüyPXϦ¶±¢JÜTgº…i€ô ´ßn–Á©œ)3‡Ðq`/›9a_ÈP†_Ú8‰nÓN0nvÞá4‹ÒqzƒHàé¸) +Ï& hX5ºa ÐéA[ ²jâK…á§i¶j=Ä{Ø ÑJ|5€)i30303IbÛK$s1§Ö$í•FÜ€ M ÙFXL˜rS’ü¤Å¿AM+sZ=[Ìð{›× ÍÇ¡xÈL]úÐfZH¤:|¤I$ j)„¥÷N Æ„ÁáÏÁÔ½ÅG`‹% {T™—O[g>å(Í cs€A½ƒЈLø­­Aô‘€jžÎ±ŸP'¨Ú‡ðt+fà,¼Dò”²H¢Œ-nTÄ­DDµ´™EÞ„"3.½")§ +‰04Y0qÇhäñÀŠo¸³F"Ñ4@½NPŠDÖ¡x‰ÄyìL K'hÃ+©XnÑê0À¡Á3nÍš™Bð­M•€Ìl€69ÂèÃm¡Ù‘#hbBÍ‚'ºO›KmäÈ¡¶:ˆH4P… ðm.(Ðü@#ÓñØ !‘T`þÀNuª3Sb˜ ÀDÑ‹gÞIdçupSïƒ @a +È¢¾O³c«D3sf@¡ÈQ3ME|í#Qô‚:XA#„‰@H™B¶>€ÁÜ>ËÙ»‹©ŽMµóv®Ò“¦„þ—E‡¾$“ º”/.‘9)¥/)¢PÍxb>´ã0(’ÅŽgâüƒâÜŠ?äÁŒGäÎìºô6¸ÖËúæFáR|®™>$@Ìp9² 3”D²ÀÙdfŠw¿×Ùkψ(cû@`ÕfBp/&4Ó:ŒíÃ9‰äùÌÆԃؽÿûÅ&Á`ˆ¶ŸL\¹¿¿Cóû»;cÌ>Íž§ªƒGOµ0£OPKá»3ã…Có¢׉Ž¨Î­ YÇâRš#°µt=ÕY°oö‹÷æ I!4ßú Î­^-$‚šÛÛ½`ì›±_T»õ2˜Ó1v¦ã 1•I‚8nŠ .»Ž +®ÉÂÌÈ‹ÌÙbõpb[˜¾Ì-³íœ¶Óж½ã‡€ u#Ä'êû½ s.=®ÁìîÃ(bXy›ðX4¯LÉÝIfÏÈsß2é0îÝ­jûQ )Ž?}ÂÁt]™h¬<Ö"è™1¹R2»®)Âçkߣ?©P@É×?ðà3ÁV nn<¦KTõ!8>JkLÊ@7œBÄðí…9µDû•ÓÚ)”¹ÅØTt»µÿ¡GÍ Á5m´&±)OzH%RP¤§ø8£…M î)o$J2º¾ßùáq§µÊŽÏœ:?Gt®ÌQí’³Ä!\õàØgMæMÞ’›1IÚŽxnZ$j(!i¨M£ßÐmP1ÂLj¥Ì_2eHc<Žˆù ƒeE»˜0âËp#Ö¿‘.ÿ‘â‚H§'+€UÀ9²…(Œ1ýš¿˜w‰ŠþššçÌ·~ƒÁ½.ÿ²)þÔœB,O8Ë0â+ÇýN<å¸üñ°2ùØúí* yÙ¸p‹ñâJ‚<É'‘—ÛcôÅPÏ=¹®ã—š ÇÖÛ8´ +"𥥗åEii*Išñ!*8þo’t»©õizˆ¼ƒ¯t –›ôÙH|HV‰Œ“…ù·˜QðIþб30пbßGóÇn˜õ\äõº!XP²ªoB¢óè+BF‹þ#@ž›°¶½èì +›K¤ûŸo“HƒQ¤kŽ.•uFôP0ZÆ%©ÕL…ZƒZ]‹¼üS’&r=¡×¬ûØ +:šz׬3:z§UÆË”˜6>#\–è>’ö,ÞÏ"×§8§ +D¿†{zWŸˆRQ#LÊ}õq™XäÚ#”ü€W”w:ã3HW­xœv\ŒM9·‹.:úlm(»—ëœNó&Ž’Fa4ÜBo»ü’Àd‹Y¾Ædë–x•aš–2Ì5wP;‰.‚Aÿh£\ÊRyÄÂ;”ö£Ä_¥ë<¤‹°>ù3RoiëÝ0Zf^¨sÊJBNôd†¿ÊFè|Z+¤TÂü¯_„Î¥‚—3%¬Èx&N-?åpqùçå>£èc!lÖãå9ÝÁo`MýNç89?¡Ã¯Ñ-v9ß©åK8¿jæñ#Ê:R=Y‡_µÝ‰Z|Sp^’+]½×’MŠç ޹³ùÄ ~l¾NYA?´*¥Wfh‘…k‰¹)uKë!Ôz‚¦­)Ýh"iYÒ)g1‘Õ>4ãNrVê€;« U’iLÄœð¼.ã‡\H8*Å¡ñBa)/éXÍF;óؾ&½C逻¼i9%ÆÔøm,á¼Àç,+iñã¥J<Àt¢¥Ÿ}NF®þ®JFœAÿl–±?w 2Iî ñK!Ãäl¤…8)xòär–¨°‰œ…àu-pÚP0õ|ƒÆ]"+ãBÈCÀ2² œ¢"óÜã²!4|?cØ9 בžéò/§u¡6«8°}ù¶T`x·ùËkB^÷q$ä>ÌlgjXM‰ ¡Ð¼›,×Ge‚ ²½HÁ8'Ñ(O -5BFzÄÜŸËrþ‰[ÔU—ƒÏní”fL{î¯k@[/ÄMÊIZ^$„µ'âtÕ<„©½ÝZ2mÓHð#YØcÓI€$ƒÕUÞ +‘-/î3••õ)uÁë²MwÒ§=Ù›à2ë`²qÖW²…)5ŸµšÜ‹?  Ù%ðDÁywF”Ù˜ Æ9òèãˆ9ƒMÈÎGŠ=ΖÎs­…® |¢ÄAÎ ]ˆ˜I}¡X¬lX-@²EYºá«IvuÆIú&è•tq|Ï8¦÷’)èì†tØ §ÛšF6Ý*Wÿª¶ůù+<çhŠéä#ýOh¤»(| æLG§Ê„/ñ¿„G«÷ü ßûtô´Uië©Týnï¼ØO34Ð>§±àjq¨*%°‰›ë2~a…Ä©Y±FG–rw×ÏçÀTaƒWõ\Qiƒ<æ[ñ'õëåð—ã"‘ Ûf«t±‘'O!u¶]Ð#6;«p™I:Qà”Á1€à…¨‰Ü¶F?±K¥~–O‰ ¼d`kÅì=¡IOé8MñV:zƒ25úâ¹æ[Lœââ§­çàV¢Û PŒoˆ3tÌîtÑ8Õ%ãí¼ëC¥¼€F20„ÂÌb”À½°ä=:@*bXÈÉ5XñD#9‡‰ +3¬×<=É9þ‚‘»[›ÝQzä(hS°hï½@•¿Æ|S÷"|mC9jÕ[ ]?…á¡]#Î>7 œŠx)|Bå(\§ùT„1?ö©%&‡5ª—†Ej¡ä:mÀ51òc‹=Ýp¡ñWcÀôͼÁç Í0ˆ{ ú[.=ë)I„#4e²‡N4—ð³q|-w£K˜QtƒK?áá¶Ni›Ws¾ð?D†gÕ%åº|ÄÎÉ ÌßÁÅP]´‡¤ÈµSíÃÉØ N’’<?·HK¹µC2ȹ²Ð•‘JŸ;Ø +¬2Ôë_ÚãháLÁÐÕG!Á˜jvÌ8膞Nö¿¡†µ\_)ò¿¾ ýˆYòŠðŸ&oð¯H êD·u¨U4°ç=¢¿¯ûT¢Œ6³þA …%v‹PŽŽÕÄÍÝ +K!t®vÇcöy~íÇÁB‰%°ð¾AÛÐÑWxó"Ž[dÈŠ¶€íôÊb¢ Û³£UÂÎËIJ¨}ùÕ—r`Ê!ò #Kå€é‡‘DŽg`’:¥@Nã›ö r%´þñéÌôÒžLƃKò·ÃŒq©î ¯ŽmÒ¨éÆ&ÁóÛò¥3%QÚ£€%9ûåÈ©©&‘~lÎ;R™Åè <ÛÖ~®<ž´{' ·`J¥UW¢J¹˜ºo0±,jr˜éÌ+ÅPA±û¦feX\ÖŸçøNš÷…{²y<¶Õ~-‘.þnêý(º•=bì5îôrJØØR=rÝtÓkŠFÔ§n•}(*Ç–® +æ@SÈ$Rò{ȼ(ÒÃÔÇÍ¿}Ò:Q¿ëétÜ„†òTWVóŠœU€x¯Å·P“Ò¿n‹/obø×&®oõi+¡`³9TT”èÄï‘Ã,'Ó’IÁÿZ'á%ò(‰ÒUsÝÇpõzI¤ma*nÙ©”¶ÏOÍCZŒ¬œºƒTÃw.•¤_ ¢éîŠÏý+ä`´s•B?L¥÷n‘íÖ<"‡šÝçneß|”tŠ ý—/aECN‹ÃóÌ´ññš&^§¥`®6yÇ+°é@n®÷ Žìçöè „gkãíd8D†“ÃìfÞ~h­ÚVã[§¶û ñï €ænFhî æOÿµÚ%>w ¯8i¤Á9e2Lf«Ï™˜Q +Ù“A“ƃ͖€ôá5j²µÜt1á$â$gÅ3m°cü9æë%>Ëå®Fœ ƒÂϤ”Ü’ Ï´¯ËL¬%íÚþ8vûBg;€´èª´¤(„Ž5c©‚ß/NÌä¬G8 Zd¡6à¹j†±¢½™°¡RÛT¼ "ˆdRaîn‡q.Œ€2¹H2mb¼qL?’쎵„R‹Œ’¿…å)Óy +bLGɼ2UAÖC„ÈšW1©IuÛï-ލº2]s ²õCC&c¾S:¡¼@}é¼H‹[‚Åu3¤xqÜ3£S˜Û%=Ω>g³½Bï‘<ÕéÈ4KXˆÍÙ”‡á4ˆµ:jiAòÎn1ù¥Tݨ¸Ç9nµÔ(µÅ[ÑNª!q¦¿Õ‰°d ^&Ž- K@5h=Xòãàøhm·kiïÿ¸0Ò™›>­Þ +"ç!ÚLs½Qho‡3O¬F|“KTí\Â㲌å\¾úr‚á?0Ú=ˆÆ™Ô·ðCâ›LXó¿;V£àMaALþ3ÖZ%õѸ\L´*‚,ɾڌØÍ ð«láÈ·ÂÒÄU9]GÇ/ü:|ÍžÀ I§€PG¼C½€µ²+ žãâÍôÏ + Ta7cW×.*Ç“ŠH’&ëÑï¿ÄIEUC €ƒä!0 ©ºäû¡E[0Ü”–€+,%üÈêM`“%3‰d˜lÂc'ñÊx¼§ÃÊ~Ýò–ì2ÊPAíðp·–;Þ(ÉÄfÐ¥â_ÍùE‚¨\h–0Y“~ë+x}ºË@<8íG'K–=7 S  ¼þÚXJùcÎù˜ ˜ò|0&@bvªoC¹”-秉åð\ۼij¡br‹ÌÀ/' Âͦ!ß¾ýÒ¶Bf´ÊÕ·@}OÆ*žšÀ £p— L3S,×S$°é6Û—pÛl¢MK +0lË>?üKZ ¤€£El‘´€¾6Æ èARÚ/dÿ;]j};nkK&Ål.ttI¸,[e5x9åvÍÅhWÆØ•gg³¯ÅMì´&G¿²Ö&N›\4bÉÃ*)){ºHàþÁDÍDä(žH;iUuºK½§+˜©N5tUÐx¸-aÚˆƒØ;wµk¿\ÇZz<¬ÑY݉e.ínU¦Í~;ÂÀ)mêŽZ%;\>¤ê’•—¥%j0²°""‹Î€ÓÏ !ËUê›IŒE¡m‘RiŸlysœ3!`F×^MRH8)$7,ÜÜ¥RMˆvKZÓ¤ƒ¥š i£ÒihBg±;McEEH3Ê'ÂÜóF„XêS¤A @¶Ÿ"Š¢(Š¢(Š¢(Š¢(@Xtïí±»3BÏÑ!°Š¬ÚÈ¢E ÛkÔ´­–”””Tv€4¨öF–›(Ì ` 7 >ó«ÍÛ½ûæú÷Í=Ïã›u·ÙÞoùßxož»Ç5ãŸû¾÷ë1ƺo¼»¾~ëí{Å[Þó¿ùï«¥zϯ½»_Ü-Æ·ûÛwÇ™ó½qÇ8ß¿±Íöv»«ÍJôRz½ïÜ÷›û­–ví¿˜ç«oV(7™cÿ½»ó­×,AX9vôãßqîô³~ßN¿Þ{ãnñþÙr›7þ˜Û¬7ǹÚÜýÎ:ouµûîóç÷ÛÞ·÷"ù +MœÛž¯Õ”îµ´æ­q¾wÛÍ?§‘ÎØ¢ +MXè *4r¦ÀÕªCABŠ¡§B#døÕKa# 6†g,ЩdÙ€ +Š›«R` Ð\È(4BÒ Ým®ÙçÍÑû7ïõFPKG¢z*¢zÎ0¦‚ÝY~¤ +Í(„fÔR¡”#ƒ®±·+ÇgÌÑŒëE}'W~Ô§€íîußÚw¿6Õ³ÇÚâìµ{Õ8Åy½û,¥{Ý—óœ‡éµßw¿ë­örØßì•kæ8Þ^Õ7{q¯^šµÕ•sÙËRíù®7KeŽ3ïÿ_µ­súÖ{=éçÜVþqÝ™ã™Ë¼Êe\ïþõ_îz»bœkÇLñî»Z\o¶Õ߬»Õçz©þúVk³ßõvì]{˯£cënœëþúçÚ5ÝúãËA²îò‹k¿Õg¾Û߬ӕs™£7gÝåò¥ÓÏù®øþ¬Ë˜ê\oÕ˜^Š·å´õ_ó¯m͛Ӝs]3G7æxöÊž¬»|cÏ]lqÅÕTïÞu§—×NõÿYWÌyw릿Sþsµ—W\÷ÅúZ›sý—ê½±Î:ª5Þ¿ò›íØî]yöº·îÞVžÞêmî»âëO›xÚN›˜-®ýjÎkÿ×öÚEگǵcþ3ßÕÓž9ڵͽӛ÷±¾·fîö[3ýÿê]9¦ºóŠ©î\&Úš©¶Zß}¯¯÷^ž÷¯ø^.{ÝX+U~ Éïz½šæÿk¾6ë²­·×O?Goæùú7G÷Κ×ÏáÊ9_-Ç}µ¸òÌË•ûú³Uæe¯˜~;¯˜ãÝÖÌõ\-×”g]/ÍšËR·æ[3GýÆßW­ë娷ÛâÚ±öxö×çj;¯Ÿê}½­9Ÿ@1U†©,Uu¯;K}Ž_ºúþOwæxõjÎ÷®Úd*eíÎÄ]/í8ß1·+Ç\æqÞ®·s|¯÷¢»v¯_îûö:ö´Í<ûŒC­^§©¿œ¯8Kq\Öqÿz3§yïÕw|ûž-¾W¯Çq¿6çåÅ÷b)æù®´)Î^ã|±Ç·ó¾ÝlŸ9Š¿·˜ãW ·a〰AÇÆNÁN=ZÀŠ_,²`¡i¦B(¢>N¨OXÈ_‚ø¥F/5rÎ$‚&(O“(Æ.YôŒ®Ôs¡(öXãmRUX²h)X~¤ ûÊ“þ†¾>’çs$M3¿1UCRÕAEÁóG3T…&-Aò#é§—Òþ¼7ïÜŸ¶2ôì¿Ñ~L&@,t®@ÞÛ;9*üëÇðüJ ‰Š™Ìò#…4®{ÂÂ’,AF< èˆ"Øñ›} +ö‰Š +À•} Y`I Eò5¦(Š©µ,XØ2CØÇPŽ£èi±Â’5OÐ45 ˆú*g*ä@èÀiaŸHR…å‡Id}1ìóÎyÆF¹e‚"úCz– <ÉØ š(½7¤™ ¯X¨EÈŸÄùt÷½™ƒªñE;œPIÁd¯åöæP K]´£··ØïP€4ÑÕHÅ/„líå›[3G1e†:®`!»¿¶W響‘`ɼ±½%H¾>®ýÀŰ1°ÔcÙõ3CÔw†ª= (X’è½S(û¬jüïüTß ¾X™*XlÜÜsz¯ñÓ"€å5žf,u2aÔ–Ÿ75Š”4•Ÿ— U°ež¶³ü8™0äT[üuæûÚì¯Ç¿_»¯¶ÿò¿uçúßßÿ½ÿÎû¶Üû«±×vnóæ½óŽ3÷Ûò·¿yç«»Ö]÷5¾ø^JŒíÕw|mî9ßÞmÏÛú{³ïÝo}ïíýïÞ/ÚûåC{ÿ>[Œ÷æßök-ö|{¿wÇcëwÇž÷Í÷eCï¾” — åo±ïc?çÜbÏýÿÜr|ÙPË"ÑK#$H‘²×+f‚Pœµ6™ÿk«ÝØsos¿Ùg­æÜvê}ßÞÛÞõåCùÇëýí½Üv¬-¿öbü½×wÝ÷Õõ^\íÖùWÎs¶Ú~^­ÞV[ooÖº[þ¹Ï—kn1Þ¼çÌÿϾzì·õÙfÝ÷ÅߎqÖ˜gìïåC9¿Úsλ·×ÚîíÕ½roy·ùëû;¿ßòíûÖöú{íæ_óÞ/÷Yóž}®VÿÍ1æ— ½ýò¡Ùãü/öö_¿ÞØg-×új»¯¶<ÿ7ö¹[ÞýeCÿ¿|è¾¹Z«7Ç–gìõ÷8[ßÿŒ»Í»Zú»î÷^6Tç{ùм¯ÎxoëùÕç½ñ®vãîíÍŸïîÎþ^-ÝsÏ{µ˜{ïÏÕæîý·ÿgÞ=ÖØ{Œ/Î>[œw×þv½íÿ㻵½¾ûŽñ½_¾ñ×üêóÝšãï¿l¨½|¨ß˜{«¯õöví=î^óÛ3ïë÷öÚë¬oß7_Ïíµ>oÖçk¹Íß^í7þŸëì·×÷²¡[_>Û««÷ckïçØk¯Ýv[½·îÖÞˆZümþÚ[‹ïκc̵¾|(×[÷«óÕö[lýÕ×÷ßóÖüߟû¿ÿ{/š/Çø²¡·ßK Ò÷½lèçãüµæoϽ÷gíÍÚûÛÿ¾l(ïw{›yµ´sÞ/§][~·×ÙæË†v}õþÛ{{¶Öîjiæ˜ç‹­µÕþˇ^­mµ9_‹m¾Ÿçˆz|ùОñÎÿ9ÎØnïûýÙÛÝ»¾¸s‹íÆ–l·¾lèÏ—Íÿ^´õܹÅ{|óÞ¾ß̵¿Öþ¿çwï·g˯¯–_/··ã˜¸ñ7kžÿ¶xwûùÝßf¯}öþ+ ãVœ;ßøzœ÷÷Öß Áòƒñ¿×oŽùÆÞ޽Õ^oþûÞÜVX¢›O âJ}â’} ìK‘²l€Šž'(~$¬sú!Í6qбor"ðIÒMÅ-Á36êÜëŒûÝöûÝ;¶×矯Íÿ¯·ÿŸ_ëyÖ:SK»®õRk +€ˆ)³üTʱ¥‚‰¨ÔG޽¦J3å™H +Ã4K‚å¸7TûH:”_r,9”KÎÆx³¡Ücž«Õ`ò„Y¼Bñ•Qhä4WcÇ;W˵ÎÔ:?õÝo]m·ÜêkñÅ›÷Îu×Õrû½þ_çýyÞÕþ[¢Ð„PJ-t–,P£ÏVÏOK,˜æL $AŽi‚0–C žàë 9-V¢àk,[î×Û­Ïøê¼µåã¯5æÜêo3·ûbû¶ý[ž_CAæ“@…¾ÔAQẰ®"Ò‘ŠIË!uê:uêiAÒCŠ„6¢hðOStQaœðL ( ÂÀÄ–9ê„6!QáÖIh©KDƒ¢PEP°òA„Ä\Ý/ÒyAŒŠDÆkY Vá§Ax1ñ€Z˜à!¶šÐNŠóDŠIdB¤Æ×¤‡«s1¢Ä#l)8£¨Ž8/„Æn@ˆèp B‹Õ'ÚÀÆB„ÃQ· 1"íFD -O¢y˜¼-ÛàÓÅ{(=Ä;CÖÁÿÀÒÄåÀŒA0 CË`¢¥`2˜4@ŒŽE ÊÏ·u©ˆ…E$¢ a(!–(y0–ÈU’8 îà[P™\|D©mâ³e„HèCá¹ý¹D,ÚÇ8œϧÓ£x 0°eœ‹Bh![àƒå“aX4†ÇbIx% +'ÿ„Xñ Z„O286Ÿtâ FoQpz„ „×›îÀ“ o‰8¯A©Ì.KUwa Cw8 øô-ó¨"¿s-!鎇ÁEˆˆâ'SI›*U\Ï3‰„w åb[—Ú‘Qeao]÷ÙŒÞð÷)qM¶)Mm +<€ú8hÆäÁ@;:ÁEOº³¢·ÌŽÚ³<‹\ ð'²Á¦“òBÅîrEDó 3q"ùÑð.p7*ü©ü@Ñ`±3bðäqÁX^l˜‚ݱ»¨‹û¸pEö ÝVÄt¹•½[æABÛuq"˜Ý9e8,Û ÖóíŒu5²%Ð@ EAº¨ì‡ÀªBa°QɧeT¡ÅºÊn¨|U*q‚lÀ¨ˆ0±‚¾*@à1ÔÃAݲN¶ +ªˆrð*ŠØLª…`ŸV©º8QƒD—%67®Ä®áAÃi8Kç&˜ã\ +0×àB½(\‘¢dÒÄ¥a¦F”Ðcv(#G@Ay0eÓ8A([ÖKŒsR½Èb²™ŒoR:ˆ&"‡‚0YÙ +ÎÅ LN£Ç“ V$2‰8§$b"tI$>%¡ÇÉ7:$ @I\”‘\p&¸¤ᨒÉg“l/^D¶,£€ #ÚXiè "*W%ELÎÅ'RMŠLãy=Bšt•H +Ü<"ŒƒÍ áv#B<Ò@I}‡ ¦Áp&"ˆÃ€§9½ÅbáŸCþªB´ æÙ²Lë|œBÞë1yે¨£x°á‘ÁH*Ó(ôÐãÁæ!10ð¨ úáP¹×`: .æ¨ ˜#bƒ,‡íç@} ŠCÁs9ˆ üãØ2ˆ&,pD\’Å1ÀèÚA¾Õ‘ r=úSiŽWjEn¤Š“ÅÆC Õvá)6‡“ñ°ÔnÚ"—ÑÖJh}6ÓÊn6Œ`›hN¾Á>„»I–Ú p1)%Ý0 pš x\N' ‘‹“Äx-h[Àâ`À +´>VGy¬2#†Kã0­®kl™Å¶h¼L,°Q~¤¯Á ÿDãi<4¸‹…BC'HWƒ×ðX¨12@à4 ,JÕ@AÃü^¾1ÉŽÝðù6@ÜÄ5Pa¤ÑÊhGC 41|áq2¶,äI$c‚l¼ !‡V ~¡'Ítb0Dcà³ †sKK -R#„ÇC!†> ð0L¥VǸx( ßÀY‚gX,6cË^¢›ŸÈ2*6“cØL7a,8´ Gcã`ˆ6dƒûB„)§vѺÐ>u4j–—²—v~cKó0ª•&@:¨4S‰¥Q¶B…&!&Ph}ÁABÛ²Öå¡u(£ƒÆ°ˆ1h vAÓ¢I 5¨-Ä$-2É h§íó4MŒ;Ðä(¤IH+¸ y4ÒÑÑNˆNãH,mraëÂÑFŒÖmËÎTj@£Ð,H{¾–E^+O·k +× [ã ±¬ œ¬Ý¼ZéeµKȪhU5‹Ž§1P0P´ #a¢Õ‰6š:-BÌ@´µ<´-Û£‹CÓZ}ÓP, !p( Í2á`hMÓ´Ó4m€gEÌ‚‰È5ðÖOCÓ4m¢ `hšä[$Ú…BDcLH" MÓ´Ó £i]ÙÑ4ÝÀÑ4 Š¡½R•†ÆÝHC0#m8Y‚[q•óÔ£+˜påÕ|V¸³™´´˜I3z“Æ ¡iL|×ä†R¥&¯ÌJï¨m‹›,ˆ›-{„T!NDÂç6‹ ͪñp ‰Q,ª3™¡ÑÂxu=YT\–‚gÑéäTŒÄ«oÙ©b…¬€bÒX `½<1íÀÀU0 ÈÁãu&=•¹(¸ž¨3±€.aÇ:à|òxb¬ñ¥¹p9T[60`À&|¸( ¨,®M—Ø|$££sqa8Š V…lÙ€ºQélUIS‚xØ|nEÈ>cJØôRè¡i§‘¦iFèÒ4âà¡i¥€¦ زÓDÓ´£¡i¹€pIV M0`À€[6Á¼Z• §u0ħÀY¡ç¥é0 t*¬%B€ƒE9ÄÁ-­¡™lY¦È±Îz¬8Tg2²`ɦãÙÌ  ‰«l²$ã媉q< «€ê´HÁ\&Vçµ¹BÁþ%ª…7ûkšöA.0ná¢;Oçrš¦™\©rvYQ0î£iš†@Ñ4-#¸¶O‰¡i)Ñ4¢©Ï–)\"š¦­,H^CÀÐ4Ñ4Ì ^“²¤  +F™Ÿ7¡TEçñÐ4-r1ÁP°5MÓZŽX°ùx†¦i ›¦i"k¢k4MÓJMÓn(¡,Àš¦iFoû-c@4ñh§"¢i ½ÃÓŠ=Œü ‘'ügÁÈRPi‡fJMCÈ^C´2m.åöy>hTád æA;m H?ÖÑ4mË(T)³}(Ô™4j¡› +¥úæ}Cš´8¤_,ÐlybÁBFÑ_ÉÃVùÁL\CæáVaÃP)Q@‘ ÅÎ4¢°ÒFHc"uèa¡§‚}”†4ßæžæç¡FQÅÏûDºÌŠ-DqLUÔh1‚f +–5ZTÔhA5ô„… (Ž© P Q£¨2‚ª¡‚è-A³üP«Õˆ-̆¸—$yI./ÉqU’¨˜YOØJTÕ¶«Iæ, »9*¸-+¸¸¸¸¸hp ß=1¾»eã®lƒ%ÒU*G¢Ãé+ò|øÉÅcµeIå(Ë>#ÃgdXp¸ÌˆË­´ˆœ¾-{‘>/ÒÁh[Èd-Á’Ù²ƒl[ÈäbYÈäKfr@:“{*d²ÁËàâ ä-‹ÜÌàe9¸Gµ䃛™¼jD·Ì ©„,¶,tš8dÁdL‹‰9MÌ 9m@, ę㦂WàK+.•ÃÄ=8lpé]¸ô”—ø£ú˜ã¦ Ñb|ÔåcÞ…?ªÏÂåIïÂ\`”ˆñÝŒò|u+ÈN…#ѹ™¤˜‘áSl(xâ2A;q™—9q™#ÂÂCFr»‰ËŒ¸Ì-“€ ­Ø¡²Ývv•í.•í ‡Ê>¶,;>ùEú`L&“C­ÙîôvSú§´ä endstream endobj 20 0 obj <>stream +do ™¬Žƒ-‹$X¶G_ÈäMéK°h –L¬€_|ɨÆ]Yƒ—¾ø9fp3¢Kfbpp³ÁË€qp3d7¨¸¾@YDrËœÀs¢sONÖà2A²ˆ„H&´P¥‘t ™IGû`&!sÜT”9ºˆÚ­,ˆ51éŠa“™˜3Ù2Ð(Ê&ÆÁxØà-+y73•.6ŒÌ©µ6%‰9Ë^A–§‡ÌôÁL>/ÒgË`—øÕçcJ#ƒÌ9Š(˜É–}T ŒÂL>gÄå7¥Ïô®ì£šTNИãf²e&êƒùœŒï&Œ¶Ìóq¾ƒ$3ñDÜÊ¥ÜÊmÄŸç“\ŽDç2[Ë‘èÜMéÙ-Ë ‡ÀwIʃ#RápñXÙ‘¡ã¨$pÂq|:‘C&?Ht¸Ø¥t(¹CáÈ&]†$:¹C1ø<:HË*»øp‹änÙ¸e §´’Æ–1LÚƒ„™Œzë`6± l3L]ø;mYè»P—°²mÛÀ:H˜É–%Hb'Ý KZø|Œ‹óá0Ž9n&8Ÿ­ÒÆ[•9nÈ‹FrGeë`0“„lÒÛù*ˉø|Œ…èc $A„Ä(¨ $†bi„•“Ce˘3I(™tž  än¶läС¸hpØ+FñRAtÿ ÂÃó0Ì-«A«CÀGƒkÓÃ0'(ð«$ñ¥"V>DtYŠŸˆ—À&7•iƒàLZ•:\ǵð0Lˆ]–"¹Ðhp®VÄÊC#¹Ô%¬4V^®FÌáR±˜U,˜¡_3yä†#]˜QnJŸ¨¡Ä¡h]‰C©-Ц`Ñ¢h߀Ó:f¢ œÁ7ûä©X2Òi[ܺˆ‡ÊnY'áºEk$Ÿ +Ð&¨]ÆLP˜€öÄB!¹t,h["XÓ\F8@”HÓqH$BÍá™P°Ôæ€ÑØ`Û ˜ÉFñ¸^ Ìà‘¤ÓB Sl G¢A« ¶†Ò5á0ÀL¨ ã®ÂÉ¿x¬ÌäÍJ¡RŒÑÀj„òp6ñ<áÀšÅ×ò% ö–©;0Z0î]¦ÂézÞà´­øÙº‰CkpG#¹±­d[Û¬T†×MxmËHáXm~ú@«PŽŒš`Él,ÛÜ2Í`5eia¨¯,4‚ƒÎ"+4Iimîàf840Ù²³ãBFÕ0 fIÑB÷aƒ#Ÿ„Öà[6Éœ˜ÉÅ1šey¹°8ÅJŠÆ"©°ž‚y`ÉçAD¶ ä#uê§Xyaq¨l‡›(Ђ7x…»ð°eÚÄ´•0.tÊþ^¤'šv˼„Gµ,B®ÑÄÄDÅ©ƒ1Ì‚ †ärݳÚã’è\ñ#qчpJã,:|h쇡‚ò±ßƒÞ²Nsm ðØ~•:ËÃØ2û=öáA + 2’ÖÆXĉ÷¸ÀDºovà d·¬¶æ„F 1É RE†â +x:ÿ +`­‰òDž^{?¤õ&Ê-µCe#WŒÈx˜˜DÙÐAi$·B·Lƒ> +'ƒë Ð>&„•ÇR<èK¤„ 4¸Y©[Vp°ñXO$šÂÃ`a‚‰DDoYçáñAZ›Q¦Ä‚Zâ’¼Yn×,!AYnÙö9¹‡ @Q)B–MÑ?Þܲ ÑD)Áyp¨¬øÙ˜‰ÅÀ…×/2qÌ{¹˜v¢]‡Ê:\#f8=Þܲ×£ |×5^T'ŠF1AÍäÁ-Bu¢h[MM4E‹¢](-KˆtÚ†uä~“ŠˆG Mt&Ç+²©þfZç‹H–Y)(›†Îå£PñAÛ¬Tgc&[fÒBœO4éÄ6%ÈiH8fâ+6f’1¨YLÅ(£²©Ú3Ѿ—ëÇADÑ MDÁ@Ñ*bÑDŠç4 3Ñ6 §DmËÂOŽh DkñÒe‚1vÅù.¥Èõù+ÎæTÈä„lI ÐX4©Ø|¶2N4©Ø +Š!3é3ÉN@…û§;=’ªüT°ï4<’¾! I~¥Þ„Þ P`Ãi~2,S&È©°F˜ £f¸)hƨøÁ8°5?ÚJÅLš +E’üè øDú…”Ž'U ŒÆÆÊ‘RB + ?Ha#…}"Icc i.Ðêá`5? +û(  +ð™¶ & ž'hR +¶N +–M°¥pY`Ɇ@Öwi$$¿Ž ÏPÕ¹øfWù‰JÐv×+ ‡âÒ@èÀiË0ø«-b~ºäT2LÔ‚¬Y+_¨ábc*üÅ–h“‘¬8™Hdcd1I€AµÆ† 2ÏÚ)ãÅVR0‰ûèÀò€x0Åëe"(xa^Œxc¢Oèˆiaºº†ÃàR‰Žïº„X¤Åk"a²¥HÜbË,Œ°,$„ –¥Kl1¼*¤Ö,!·´Ñt±NÓˆÊ8³rÁʵŠ94ŒV© P^•:Ü@\Hà¶ŒD0¼T¥M%¨,X®úBc*⚦Ԗ1œ>UBIJ‰AÅ€"‘J¨R(ö™Hšš¨T³(d‘ ”L!D4"@0p$É„’¡"fȨ€eR2zND0Gƒ‘HGbHaQ2!„ BŠŒf-\u¸3oÊm ¬Wk²©u‡ëW1ª¡·#Ö-c™bzQA‹šBÄ©J$ÆZ\:l_û…Ÿg×ÆÏ†‹³<•4Ðð* Æ£¼T‡6qxç&© Iµnˆ›¨^Xã^˜"¶e¬Ãê±”wûÔ£CØy›FB{E²‚ZÒ{)çdÓaæ'òηÀžŠµÔ¢¬£o þš¾Óå‡DµÄàh*XMDÎ-ãÐð9°Œyß…ø+ÈŠÓL–9Ìï†+6éÿ¾}L0ÐQž¦‚—âëb,5™“AltÅø „ »Àî©ÕŒ…œÎ«QÏ=Ð\]:Á‰¸Èò&¯våv`+Oê¹ylOO¿øäHly55I8o«Õæ2„ª +cÞèÿñ´Ò2ÏÓñER#z©Ä:íÌ•m&õmGƒj5&{ìœljIò¢ÑÙÒ®§F ,‰Ù¬w=­ñ¶nNaM\n¼[:ûGʼn{~³Ì¥®áü°Ÿˆ)jâ^•-º:î¾ .8k\ä ¬‰»‡A’ÃXá8óìd¤ƒäøŠ;Ÿ2y[èŽ2q áÌ¿ž R£ð0•ÒPƒûIŸ&7{¥ÆRŸÁZ÷R³*1­"uä~#³–ÁCµ.´€câ€ò »OÏÀL®ò8­Äq_äãT2i5Æ^$÷qU÷þùT =KPéýrà‹Sõo‘£Ê˜ñâ{Ö™5˜²|£ÚX¬`ïE¤RÔ;þ‚š}´2ê¨Î¡M´\³Í"$гõàSþ å™Bà5Þª Ë0g[Fc\W†¶Â|ƒñÉFÅbèΘ=Œq“¶€KÚª™ ëSÄZÇe¹\œ¸@5ôØ=]lŸÂÚ‹xT×ëÉ ¦0o‰·Õ牱øôN©µ%11®ºà¯âñ̯54 mroútî:w]°Gx;S$Ô0Ñ?(w~»[Š(du½¾>{^îSÛÊR¯Pê nlF0Á£ ‘8|8÷ÿÃÈ-¿ƒêÿ_6}\Êw qXn˵Ñ,—f‘aM ÊA๿ùB„ò Å)´w#¹]`ƒ¯æ9 å¿"Uóµq>ႊÇÜ Á™L?ÆÂìúO¨ÇbSЂ¦ÇëN\á_C黚P¶ÆéHmÝn³Ÿuúÿ »œ²ÞpëžÅŒ6åhÉj½dœráß\¯'G¶)Çï@ "=gUG[o†Sù’0½’~(çÀ01Í™‘i3®p-R_&911çOÌ ¡¸ri0]åb¤sŠeÀë€W:ŽÚpRðÚcÊh*ȲÌÑԂŬ^O„¡ “±Ã4j•ЫŽ´å…g,ª?{Ž“Å¿YßçºOqíÌÃ`q©Õ&¡S‚%"J—*múFoà—…4f™vòÛLØ$À÷œú¡5ggy>þÑPš9S$¸:ˆÑåðÿ¼ÿ ö5®â™øtàN£½únlKOÖ.¬vãÿ·â7ö+ô‚øAr}‰öþ Õ^ ³«&¡ë1¹öÚ3 •êkY]ˆAaÕÆ·ô!%…ãèþ­CÜU Ž:fsY(Û7(cæÚœ‡àýbºàùŽÌØ– «¢Ð!ĬƒÁ¤Ž*ËXŽŽå©©#¸RŽ4}ƒyPÃùú–å J ׌±n³Æ•hgfR`.°„+ÏW€uïWoŽ—-¶:*60?›˜Ÿ–Ï€4tU=¹A £ +ëÄbJàPñÇOl×»›4`émØZ`nQàÓ µK•„ ªJ–<¼£‹±7 +³Üÿ²ú…êʇ V:º‚÷ +õ-º|Iaíè†kþ-vŠn†ôÑ­‰VÑåÖ™£ Q è’ƒ×n„îzt­® +á[t‘,G7Oi›}¹AÍݳÝ;ÀxtåðÞ±˜l“PÌÑ ë¢‹¡<ºIHÛ48hÄ¢ËyLVùѵ‘k¥'BsŒŽÝq_Õ±“ÜÂ%,×(ZÀÅÞ“Ó0¬Î!#Û‡ˆeˆötÊrÛ̶bšó†Ý³Ð†V†P˜@?ÈN^Æ­þ9¥¿É‰Á)_ 'vì‡Ê&`*ª Ø^çUÖrXn¢6ä”5Þò![.àèò M æ~O*˜El/ßÎóù +zM¯1òCÆ6BqpÑ,Ÿž^f?³hæ“R€M‘"~¯1E ¾_µ]•9ø‘þ;âïi(‹ü€8œ¸X¤§šU0;¬U ±| +,!ëˆãˆ'~qrרwÀFü»W¸yXUÅvE±G<™âjáajD#Q]ØTû,{ƒM¶×F,¶h-Ã_-›Å@°ps|öãKœ ÈeS’˜É…ìñ±™©ðÎ3¢$äám˜D¼^YÌAõËj@ž¾ssñq.ŸŒÏé‡L GÜìSqÑÌäòv +K‰'—v=1Y>1o1ÅK Ï X0¢)……*ÊÎ= HØrT6ÉdóÖóéãS#"H8Þ/[X£kÑ*M-DaP#î K´Ì¸ÑvÞ…ž†³ ’š»â– ¿P¼ßÇoè&)éMÊ#Vörw*Üp›>tôv«ø8E üÚÓéÙa9‡)_«™m| wªÉÆGôü#ˆÌÕì_³À?C5˜ùÞ¼®ªÉ’ |ÕÌ_x)ÙTcݸÒCº)KÚ:™0§ óÚàwÜ™Òkf•j¦^€œNïáPy‚Øõýé/Ö…c,”-S’³‰˜Jˆª†4Y3—Û€ Ëë••=©q<ˆ×¦0ØÀá¿å¼}ÿâïëæ„-Ê¥H# žþK:ðã €–8>æ2¯ð@¡dï&;,Ñ¿/¾c»?Ê[Î@Åt¼ ª‹f͆·_3¯Í•)r8^¤¼/wÞ5çõò\o•½R÷J¶š ÏjOóÕÍÎþ¦þf¯¥°*v™Ùïîdާî +šk©€Õ÷™xE{WT;¸ß•f,œÃ ²çøK™ º[Ys×±£ +ÍôÂøI…¢ùQom»d­píFÂ!hg`‡™ò»Ól÷wôM‚æâöÑtšÚ`àë!LæN3Ñ—¤‹Ð÷È Í¹d»)eB ’¹âªøµÛšSjLÆÀS‹rÀ‰O©Ó®¹í‹AS^ˆÁ NÒƒ×60UålØdñÞůÀ5¼B…Å4OVa€Ü²¤æ ZRÏAÚ¥RÈ pxV€"ó•#JQ³yÀÂ<•Ô’v“W•À l‚õ{ù.Ç"²ƒX•0Xº”EþeìqË¡—ëš\ä6&H·À5Sÿ8qËø¡‡<¹ËùÆÂš¬‚EœŠBÒÓóÿ ´Xì‡!ün’LTD˜÷06”ÛÆôÞt¤$:AÝ2‘6+ßã䣑4Ù<c%­• ¹µ<ͨn©F&Èc@ÿ­7ÜdÏ<£@ $8‰¨ÕDºø|ò–6ÿ7M°™ÑÊÂôõÁ®ÿIdoäA×ú’*ï ¹.¯Ñg¼ý•{x:p2¡e­u Æ9JµjIX̶K Ž5ð‹ ñpƒîã2æT6|±Æ9¦°]ñÍxRT½tšM›@aè#YKù +˜ûê/£Jtγ~†4nã£Ü™£'PßÁщ?éÉFA$(ž±’û-¾ Ý7'k}øO´Jòɘ«x€S÷fj'E]ò†p}òf¨³gˆ¿/êX%ŒÙ\ÆÝÜFS˜è¢P×t­®08Ž ¤vB­\^Úµe/€Š¾9“wàn7þƒßÞ2ðÝ ƒ”R_ñ³ÛV¿ãïLf=hÀ¹IÆøXr(.#áÌTH¾NX¨«U?g*üÆkáFLf­ŸaVJ)Á‰óããB?ˆë<ƒBè=íPó¼)hs7xàÁ/Soj?š=ÅpñIS4óΓ=;%¸¦½ŒÈǵ‹4Dš¦t:Î…‰¬iÉrPWœÒ€Á»#¾‰‰qS‚ßx¥æøœò)Û b'âD…º>P‘jô{ýjÂu¬ïhýÛy€büˆ¿¿ïÜ÷™Ê\Æ–I9<÷8–»ÊI™ú¬ñ<ÚÚ•+…ß³ v¥o±fïp MœmÒ±mF9±ú~ ßtÖ|ÎøQèëë˜ 3'•7÷¹'mI¡ [×[‰˜lã(ñ;„†ü p|âdÈý_ó±Ü`©Ý}LǼô­(¼|Ý9¸pÚ¸â%¯•ËïdæAÀ€—¥>ptù\ÑÇë.Ì(pæ(Éé¢Cï¯J…‹½Å¾Ag/¯¯¬Í¶fpKÄÔ:q‚7)Ä3ü1”¦]š}§Mié™éº'ÓŽ2V6®Ì |×¶b +åßÈú.œ ïð­MÏÚNó]àígé–xÓ¶nNÿ?Ïnظ%È"ÀüŸ/#š~yÓÑ·°o/:àçû ¦þ$¢ÿ~½…Q”½úÔû)¥ûîù.° újT“.æiàìÞ~NE’Y­ðx½?Ú»ZE 4$K%Wø&D†ù’ 4‘€±‡n¿ˆ’+ÿÝ`N¡P¸´ƒ0JþF|&LA^1ì>‚1ÜJ¹ùr1±IÑâOQXÏk«,N‹ì +)ì»)PÝ¡*XÛ¬a±Ëlî2ÕDÂàï0ójt<†'øä%Ž$—9X9‡y†föFCû.Ïع2©‰#vtðO¢îÁ߹ΰ{+Ac—¢EµS‚Sž,ï©ô( +§ñ½³é2&öÏL$ ×CÑÎæ‰þ*OdÎáÑ]¶Ï‡³WõMóˆ—1Â$@UÏ´39Øñ¶ÖâsGfV$9ºq³9–ÅS¹{1S'ÌÆ÷⑨·i ,C¬äLjÚEsõZ)Ž‘Ðʆp6«äR‘ë‹öS¤ i’Œ'¸(MDÆ©ˆà»áVúE<éÙà^ÇíÈO9¤$8ÔÚ³ˆ1]©kMÿô‘ÿ´.‚^>ì±Ju8õN˸§ç=ó…&ù³¿;ŒG›o›_™‹ÊÞ¶®÷ÐÒ7ÿ%t$Ç0#âŒ|e– ¿•ªÅî ë…ŠY¼>ë2ªÖMù¸ªšdIŸ`^r£r4¶ÒLÍ—ä 'õ‰vðÃä³ä2Æž“í…Þ&´VJ]‚èÿ÷T õ${Bgc’!§Ù8ÜÛÐ8¤f¶NõA@¸L{'C·ðe *™¥6ojR¬×*„øG¡‚Hü8 §Ó¶d¹°øE1MpþY€Ë.E`9KY¡§3¯¾]ÔH Ô¬ ܆Ý—ñv5ÚjQãÇx°@lïCAŸlvéÈÖŠibçγ)Èr²¬cW?†×ÊCo–Ö/[-hš`©¾Ë }ù•+¸ìâë;éºróüï) Ã!à +ǘ‡€t‹™_=bdˆmrXÔKÐ?[î7ý'X¿p5Àݷ.ƒà €uHuîålÌz¿Ø~žœL'´Šmª1œne¦ÆÆ „Xú謡-»6 Äì!£Íl-!C²d”@ÈX1Ã: ùö˜êÑ2Œ{f<ó.Øpê7*`’íçÎðÿòÐ^¡.†g¤•]B(#¼†°P\g§Ü&sƧÙåbTHZI"ó]c³ÈœCseW§u/b¶Í’T8^ø¦—ú‹Ðpˆ:ø*Ë}´t=r›‘¬³«ôÖµ¾H9Ê.Â]ŠºÜ18 ¦¦'ÚË Ì>ñšÉ¦Æ/ÒkS-‘XãÂ) ¬Ìº’ÁÌ +Ÿ»49ƒ•ÈžÉA’[+·|37´Ú.B+BO…@­yÜ8’c²|£¡b¥0ÖCšX^ŸM1ÛÓ¥þÏÓËjÇËᆠ+ +WÕ±¼ƒä[«ðjáÕ›¤òÞô$=¥Õ¬ÁÙ7ñŸÌGF@š¯K©ŒÃ¨B8¿ï>홉´ßºˆFÕ5÷¥H“=îò¤0%MÇÃ=ñš)æ\¹¡¥yÔ²ú;¹X‹ÜS]¦ì(uâÀOwÓæ¼˜4Тuáë°)tç|XPG8ó<1QB‰ù ƒÆ „l¼êËC<9ž?y(ò3{Â×wÙpJº°O¤¿õl˜é‡&!u,/ßæùDÀ¾›ûÞAºXMuØÒ0UµÕ²5úíŤƒYÇqþ–b½B-ôù½>áZPÙ^‘dWOõHñ  >Kîë 2޳˜éΫV«¥Ÿ­EwÉÊgŽæ^¨\ÁÁ±†_2ë"Ql焹™Í³‹Õ÷Gf“–µ¤¯cr-7Ó{ä¦ðÆ–OÀÛÍbG%ò?øUÓ-äeZN[`àj›¾¦iÐKcÅ«¯/•™PTö]ñ2kw³|ºs«c«Ý>¸gÁ4,bùJíаâÉ‚©ít·ƒ¿çú«A:NÈs¡{ä~oLIéU{qN°?«l)pW£™àŒJ¯´?ñ7ÑØÝ­ &ƒ;ódëY‚CýÙ4wAºØñË­€åqªÿÝÝF£ ZnKýœ’ÉvÑ–Cœ÷#´`&Q/>Žî‚ynbÊeyëÉ¢§àµÜÆ©jfröQB)wçì¾×ØqÈ=h¤º4;¨aÒ@ä&2Éû;PÐJåG]z¼¬pi"#[—œšÿ ¬«Xáqç")ç¯ï›ÉxÙ™êVH¼tJ@p _·ß+ßÿ’jçoJ®éãþµUÓõ×¢r‡çízœèÓ/m7§‰‚‚¡‡ÃÍ¿/"óÎW|nä‡V›MÐUpì 5bÇ£³Ð±‘Ýn:¹@ÕœøäË·8Ë+o¶§Åׯ’MÆ4¼+«™û*eíÝóhä\R›}°6Áj¸Ù«)‘Âw^Òû"þkJþHŒ•Ìgç‡&ó`ý,"’Ú|CYøHù*R@yRÒb8†F`ÓÚÆr&TÕdn0ÅáúM3í3=@ +Lþ¥ >tÿ®VuÈ$úƒ¿j³nD6Šði<ø¸¨¨û¿ºµÙΧ&N]¢Ý˜ Âh+‹±³D¥ÏÖ§óŠ ¹QøHŸ5…î);g‘bÊL |wàí;eÚbY° M 'àŒéƒGd•?wþByó +di¶µÑMö‡Q~ÕðGÚI ‹zŽêã”K ó/ÁË …ÒÒý’ÈG@*æªç¸ëï3¡Ä8:Yû‰¸_~h +Å :V·ö +¤‘ –KøM o¯Ð§¥ÁóƪÕÃé¶@bÝTJ +8Š^îþ¢¶å ׯ˜¿«@rãmŽ¢ª:éÌ~BΗd;~üÞ­ìIâ61˜¢6¯›DV1’(ÏôZÜ%:€=¼ÄY…Ä€ŒÁyÕí¡÷ÁoVðyO Ý‹ãö@Ìúåí÷'Íj%>ã I7)TcHë·‹%ä¢8CRÑ%ŒÂ/Th——–°æþO5ôäâs7rÖPÆb-¾¼~ü„ý¢ë™»N·kæ‡A'ZR{ o¾Õ÷Ki\I‚£jΦú¿Ã,ʽ˜G îæÝ*õØ*þ*¢EF¨‘ý ùد7‰Òà9ÌŸ?Œäé–BJôÃ-å]ÏÈL0šî3¤~#GûíÔMPX0ݳ|Ù +¾I bEt΀ƒÏ^DÉÙ‘à ÃÍtå‘T¦-éSÖj‰)›°ÎEÃC…¥=*š)X«ÒC–6(QORr-ó ÿÆÁ£›Ë݃LQ4ÌYÊj¶K( CùªTo©n8žç&óÝ;Xp–&hÚ Õ|9ãè}aè:R±!çæñïΡÍ~F.¹H•»¦û÷–cùv5†Zí-®Çu`n½¼ È ÄS‰Åhóð|ûnì +ß°¹¿nÑFxÂmu/\g‰<§ÕCD²ó$U îi;WŽ´BD+„K.+ ©6zŽæb:¯n,MðôÝÖúÏüØ­â6BÊÐŒ @:ÀWÃ"ó•Z#7’`›:r^ÁïôÛ„&ü>8À;ôµlW·Þ[Xþ—œR…l‰ÏÏU –YÿîÎ!§ ¡hkQóag"щ;¿I.‘uá)Ht®À„\p+nÞÁ£€œËE7[®9†½Îgƒþ7¯&í"ÐÁÀÎ0hžÔ3Ú/ÙŽ3JH9³,žÃ róVž¶nÄÎ_ôBÇ$æAhßÕÞ_”íR­r¢“¥ÜÀÿìN{Ïš’Œk¬µXù9¢\?}áÚs„¥£èoº# ûZJÆ ;?kþG•’¿^ìî§¶8 JReU¥„—¨hx¥(DÑ< ›Œ ^î©æ÷³ø.–ï«8A ˜áU„²@„›x:àÂíüBQ{¥Xø’~*ìå^óÚ)*¸#s?^e9U*˜Ó/Ç…ÐÍ…z"…½šôQ…6_c¸„cµj0mÆN<³.vªOêVt Õ{¥.Ϧe^\±‹²¢â~9#å1[èïÒ¶¢ŽÜ(þœ‘jñ€¹Ý$v`qÙÄ^Þ’á¥Ô‡X‘å²:áÀ„¢ð.t¸²žÿ®ê~åÓÆòàË:‹g¾¿,çØ·ŒG½åÂJ§ÃD¨Ž¹Û(ª[‚W$o ŽÔ0nîÞ5.{òã!5Yr$(…•Œš¾€é½@9ËæUn hµ£7®*øðÇW¼C¯IAò¤='–÷B“Ì ˆ{´ª¬NŽ1ž2ètÌš«6®‰ÓÞ£ºÖ?æû6wG¾} ªx7IÀ{Á¡t˜dÊ“Q‹ä œ´2q¸“ +GG’‚XŸØ~.)@­z¡²n“¦H…%Ÿ*,ÚÀÓaLP/i<~ȼ ß0|¬­?(˳pÐ¥‡y¾ +é  {JÚÉÊ!@Œðõ6»Q€gbÊgaL‡øéïI,ôa â+>¨Xc˜â •f–¿‰J¶næhe6ëÕ¬“„ù`fY›—Â.q«¦ŒõKõ¥ÊÞJôª>‡†@õ Œ/`_»øÎTÄVª«H¯s)î¡6©›¿rT„³± +¥ÓËj5`N¥5«ð“¾Êéßã~¦ì | Uq›ŸÊq‹-ÙgžÝªÀ|Üx1lR 4ÿé0ðLÙ>nµõ¬ö¯âkÿ0l@›Id}:¬„&âEµ å ÿÐYg±/ÝšÎûÀKò»Rቸg +ù°– ”?!wÿÝGLbð5þ ç” +fˆ-Â/_¦f}Þ×ɽ~ý׊ÕnÕ“$©˜ô“¹ý̹?ÛÐŽ§µ%:}†U~—oûBµû*Ã(u÷÷Zâ´gAKÉèqÁÒ5g5Lö@ ˜NôÁ'ÊwB7†¡0n«‡¨e QŠòWô– ¢}¤~F óü€rŠÊɼ á‹Ò]+ibp;ªT©ùËÚ frØÖ¬¥Ì[$‚n…BO4WWîD/#2ñÛ¨KßÎ ©‰Fj~ÜŽÓ¯†ëŽß ®þcîŽ#ˬ2>t!DþŽU yÜrâD£ÃÄ ›aB¦Ü³¡ó™P1¶D8tø.NÎ}q‚õç\™ªø3ð#7§Û+ÉCÝ…šM™.U) ý¦°5@)ZóŒAa -‘릣ÄZ9( ÄåóQÀÇžuЀȘ¹J'„•‚:¹ÍnïÊ:ÆLœØèIŸÙAƒ(ðnaQ +hú3wR À$ÞÀÉ•08à‰é§OhøNЏâ!2bSŠòQZ|*G LÂj¡,º„Å7y¥Hß<3ù O9ôóù-\g ¿“~Wñb‡Qà^£ø¥.iJ†ÝM&ÄíÏB‹Fæ»{B È„Õ(ü\±Í"Ky}_*ÄÉ;qûãÙwy3?çú6º¡tkºÃ· SµôAjåSHAN7Å^Uèe×2\+hn†ºj¤i·t‚!ÚPÛ·€¾ó)u@=›˜ŠEÜDŸz䂒ŵÏ/ß<ÉøÙFn"Z)cŒä9ž9»2 "âÚ&䕺úCN-G¢¸i(¼ß³Œë*&õ'òcUÂKú.|?ú°#^Ò®¢Iðò˜6ðùä $¯©°>?êBýôf$ï§2zxD ƒÓ({ºèþ7¥»˜Š'ŸÕÄÚ'½«ø·ÇhÕB-Ó_Ë …¨…rœŽÊê±çÔåÅÐvœn­)?[ +mʈ•ÐQ‚ï•òhâèMø»_êßÈîÔBn¯Økj‹xæRpã­+˜bWó‚ Slᢠ¤°\ð'© ÒÞ-X~²J©e¯ycìþ²J£Ë‰«Òd4iÙV£ü«¸àÜ£âï8ìm9wF»Ñý%t1ĵ&ÞÝtdrâðÞ ×ÛÅÊ1 ž¾Gó]PÎ?W«]áó"J«`à H«ÉÚ¨hU¤‚@%”»íÇ­-ÈYÆ1£kØâ¶õ”/ØìÚt\­¯í¡)ü ¾Ebg³>%4u›&ÂðnR¨Ú”*ìUý Øê­Ô é„õB¹ðþ’û³9}ezÃê÷¾|@íF<ü/¡54c²ëq² „ +þ‚°2—CÌê&+wÝ#\m —L›ÿ.€±ÊŒK€*ÏÇ»çDŒ#ä­#¿YtqJ;$n¶Ô)(Uù \Fµ¢–áç¢Å…Ñ[òÒ­›*Çܺž^Ú¤Ø=7Hб™`JIp3{Ê]–ø.üp×=î'jK¦õjË'ìs}eS0V‚lžC¿ßLÌk ªÑ9ù‡Œv»’Œ`Öm{Ô4ÿ<µÞ†fýBmâxÌm§®,ÍHs¡TâÇ€VwÍsÓ°7€Á”ÒÑ^ ßAù©>À(crT±ª7›sK‰¨Mç&ÑŽ©ª‚ëc0fïºÅÙx©kŽwYü¹Û‚‹’Ó¸|ýÇ6„mC#}Ö²Ó&>j)jêÆ?<ߺ›6‹„1ôAyµÀf$Âã.†¢T(s`:@L(aT<‘§Ã½…ÊB‰ÃÙÅ1EÙù{¨°JÑ'ƒ ›7O´}Â@–l:[»5 ºKH#IŠÆ×nÁ\-Nq ©öéÇm§Ís·Q +´ÞE‡åZ¶4ô²J¸Å°øŸÑ”X`Þégó´Hþ•— +ù1§5VIŒv»‚{uß÷¿ˆô±ÿ¢¨Ø*oCºÍâì4-U;h‚džÃeb?{¸­à¿žš ËÞ³>;rý½×Q­ö6öçÓ÷J¸#Šÿ­ûÀ9U¦ˆ4ä{´_qïfÑ8QZg¥ÁŠÇ<ÊCæw©6³„‹Qñ8½qPgûjÙf†ÜPh.O¬,3D•WATŽ@+ÿåœf)ÛÂ4@X}2Òå‚çá!Gp€KñHjÖ£xF³€ÁƒmªŽ…;øíwz@¬r3F,Aì߃ÕäÃïí5_Èöþ¿ÙR´ou%=ЗÛþ¹£7ˆ¦¡—M³k*_A ÓPFñÛFx l1‚Æýªb•'‘× MŽä$⃽ÝX+®•DP¥L "’¡ö , ¡ÙNeã5ÙxŸ*ä&òÅe?èìb«Ò\I+e[pÕÝsõµ+ƒ¾A2Ð|Àñø’Ri|ýÈ<@jîÑ0@sÄp,1¤·AËŒ‚$%Ž6 jd·‹“Y Ô‡;2…@RÐÚ[TÀø0Ë$V抾ÙÉž|Ñ…ÉîN,Nr_’|¾ ¶(ýJ>Ó"T_Æã›¹a„%÷؆‰ƒg>ˆUÒ8[²î\ö&/öiÔÔÝ}“«~O9©9BêÁG DR¡]–,ÆÜeVÍ®•Hd;ÞoóVìSìþ8þ$= ýðWùKwy—¬¿åб ^ÅžèòÄí|C…ã ìc}ǻŨT‘ G¿äÄjúkcãó—uú늹!ksÿ¬˜Ÿ@èÈéÊ¥X™]/ràNõ}m + ñ@ü·ùSêgÄ&ÖVÍi@É‹ÀÞÆ?’-!â.Éã´ƒD§F#Ó;”:w®6mˆÎ¤»Êº“z¿³¥þB· ˆ†·Àþ53¤e)Î4ih«‘ô§¼uKëvó©Ô¨(ßýB‡Åï±Ë}«`YøÕál =ÇÁÃL¶[úËf Ó“¶ûŠÆgkñ6çòáJhÀ`?I‹¦V•í½ùJ»šKe›¸D »ý†£‰U:»’¸c@žù}A q…_*œJì¾Ñ5©L¢Åº×Æ´^¼2!ÿœ lÀùJ/¯Ø +¥¼mµÒ=óÜ!rÅj©·a¾¾ÈŠJl’žMºÙaJÑd*æï{Îø“ðæBXÉH* {²­ª–´#á¤Ï†ÀÒq ‘­u’¿Ð€àPè ¾¦ë·=³ùJ]% /†FãV+GÉι?€Ô’‘*5ßJÄÅF’ +äë#éè¾Å•'Gœ¬gòBt` ç5I®a×¢Ê"ÚjÈÑâW᣾§ZÓ‰ÜÙˆv'…·û YS…íÔw┃]LÊô¼‰ã8xÝëÞçš`’bòÌ-æù ²OÙÏÌ…Že_k¥=d5·Á;DM9(%q žHnýY –’FÕɵ‚{.keKNGÄpôHéþã»Â8aÛ5“€’+óS¯2×Ý ‰è'IÀeখr¢§¶þí cèCÒYžÙè!5ÐÝX +V(=—¥g•…Tw#T2q³ÈN–K°2PÅAéÑ]›´¾ Ê"ò6$Ÿtˆlc;„:)OÐ×½ ΠîVpër²*¬³[ä-}º‚캸UË {L××6Àॻ%uÎncÄül u m‚B‘+IRDnÅrÈcG Œ$pVæ}îK-¦·Ð~¬³F + !0ײžë¨±…•¶_,ãÙ_¥_¹*þ€ãI$è÷tÞ†b‘|–R“˜,Ô=–+Ì…úþ ®Ÿç¿TM'ž…z·=ǼÚ^)4‡{½šó™–|ÎN¢–‹êRàšëƒ§$ã‹ÁÏ`Ø%d£]Ü + Z`Xa"ô–ÏÊúšHãôâþý¾Ê3ÅÑ +cçßmì`‰a1Š×½s¥&‚d$)yÑH”Fp߆¦u>­¡sÚ}# Ç^œ–Ë…â•»^I’bìÒ: •rÁ«¿œT˜˜…Ýé¦G“©€Œ°‚ÊWJ‰aof]Ôà•LvšCTŠF.\HˆËgÑÏÛR´åV¼võÕ· š4ÔžAÂÅ®ŠšX±œÇj6 +]µtÇr-Ñcû, Û_Øc¶OkÌÃlA¦MwìQô¦)dâbè„%äÌÓ&¬7ýýÝÄû´Ð”% rõ0„çðÓyô;†DÕb…I8+8‹¼—®2›´íD’¨mkâ_+³áùfµÎŒVl ¥!1±ÕÖ”‡6ñ^˜ð^I(¸ÁJ§‰m¡ú¸0µì–C;áƒË%¡\œ0¦Ü»³oÁ +»®Žuótftª¢2f4çŒ# H7Cdä™=9TqÄãÇ}Nsyó°‰W'TÊþ@b,û^ws½ësÆB»«'XtíX°Iï\¯`ÂëŪ–9mïs’®¥Œ…bí…d‡QßiTÆ:Ö- áAĆd|‘ƒnw$tè–ò»&|ì/Õ +Ëö‚Žf”Šª¯€ÒÌ;ElD Tc¯I˜ IêM¾+šw¦ýн̳Ϫ•Xø¯•¹!SÒ^£k`vit½™Ý]¼²Ÿ—ÑÎN~U p¢ÿ<¡fƒ˜ÿ#˜s ¶jö–ÝD-—õÊZ)H¿ò-=wèG$sB°Gõ*P¶ÂX×w: r5À™^CÆ!×êé± #¯‹žO\ÄáC <ÇqÃ(²-a¿ãƒOûc½´Ùò™¶ðvY®wT¢§›´lmCøŸãkh:Ð߃.§=B¹‡›7Ì!±É{ÖúW&]Iþ,<…4®«"ò0ó²!êØÂÃü 1?íW°WªVÏÊž»FÔsŽj(òôÒ ìhjw°œæÀäèçÓF]Ïð'‘ø,J¨/ãŸ%Þ'NÌšæóÔ†ô¢Ïî +˜„Ài‚’I@ÿ­ã>½ 3æø¯ààÛ¤´D•Lî }IÑH¢¡’äph 3BÀvóX +}õiÕ¦\£Ï¥W˜q§òN¿çáHCÕ?~ßÿAšìhð—Î;¦+ƒÛ l,EÉ«ºŒe_xW¡Âhw)þç5”8QòÅ-ýxØð?8-oíÁÑbýó¡#ÑMrÒãô}íVÛ_L +ê;«¨ß O¨Y¨7åï4§L:œ"óÐRÀP:*Ó&àÑÖ¿Öþ]pÒ²"=寎ƒ;Ú ·Ó'ÂtÓ@Ë÷Á·­Äƒ5ìôÇ¿T½s€6*‡;ÚOÓ"CÇÂS UýžÏ +8•µé÷lЧ8h7Tª?‹Â[V¥Uæ"•€8“ºly.X`‡J¸ÞÕÇ)«Ò³÷m¾ä¤ï_v×ÇÍ»sµm`d +W€”n“e +Cûðµ½Zú]Rø8þŽ¢ÞAt´OÍ:U² + ]"ï–ŠPW0(ãÎÐéŸa?÷YÂáÈ ¯w/¤ =‰‡ãè§îú·¹IŸÀö{Ô›Æp¨{ (uÕœŒ +Yak=ŸòˈxªêÂë;^ͳw…[|§èËâ÷Þœk*ÂzŽ9eúØ‘‹ÖÚ8ûëÜ´hÔ÷tŠß¯P^¡­½©MçùZ^§ [óç]‹C[ó¥]³åù#¼Ç^#Í¥ÿ“4Ç™þVWÓ×\9Wöi;=_¬¦‚+Î?bm«*¬ê£¹¼c¹i]HŽ ú÷_øiPEœ²‰·´ÿDçØ] äw…mt[}w–qÖÝúÿ '¿Åçêg«^þ# )…©EfXÒšH¡‰î³{ói‘9sÌ×duë‘¡6ö<ê—Êcúk9Ê ”l¢õöä 31z­Åš‰ý«a:]°éK´5RÞÊ#yŠ«Æwÿÿe'rÁLÔ ¥¯`Rþ pÔ^˜uGkE,À‚Z㊉íE)–Ú¯b>sŽD(ø4ØŒ #Þùaµy½#çÛc*àØ³Á¯LU˜ÿ†¯ìá`àȰÑ|N+“~°Ï˜8†äÀß’xN`RXLeµN§+›?ÔZvà$’M«# +¥Œú嵊bæ•–Ùô˜ÕpÎ’À…Ïò ÛDZBLéU»ä!ø¤àº í±ä]hy«ZŠ—¢„ ÌÎ$ª2òu"ªJÚL“ªàõ.ÍbVº'cÁÉ_D .ƒ¿¸£?`N—'=Ô É‹a4ÕðÓTìQ\šÛùE¼ô³æ#:_.ºÅšF®H Rñoª¸šçàߢãp«E¹Âú†J9Bk¼MÛe_m–ç–íf¢)|øÁ!ü˜Êíj†fC}µ62²P¼öóš x: +«¹¡rmr©"žm§ŸWU ¥†BgQQs3*ÃËù„J“I·T‘¹»Çв/ þXÕÜÅtµ£–xĦSM‹l,Ê»ÕJ)º%ì]V@Í?rzÑ2;6¥QfÉä.´ËbANR º-´WºPUÆÀþµ#6RüøÉEIÍ6aœóH€úÖQQ5x©Ž((øz)÷ž¡,(†—GR3*ú5RÍT#å?]¦]ÀU¡ø’(qÚ³‹ÛOÒ½Áœ`"t¢]¾$½‹"×x|½†UéÐUð­8.cnÛöÚV +«t-·"ž/IØ9‡ºÁ‡×ãºGê¸w*‹d EÑdÖ¼(]µòŽ¡Á]ræ7øúhãŽ6%M ›L4ú¾ÛbÍ.íÓæêôðUfŽ9ž•̓jƒævȪK‡Ð»`¾Ä¨oÚ6˜|ð Óškè<¶Nav&h9²¸¶îäM%O–ˆBµÇÉ:± ¯Í´©þ–§4“YÔ·é"ê€my%ÙKr~Ò“B…SÞÿ}Îm¸•}°èÐ gŽ[§aÝ]‹=_M õ)¤×M´‹G€WÚ{ ë±áÞå3íŸaC´q^”M +$šÈk¡ÿ °+)«Hd9ìg¬U‚ç»"´“L¦ ؆u+9…—ùeχ1¬±ì¸^ZÞý#Nø+fv©sA•yEê™(9ËH†ØŽaßÒÏ£b±!À¡üËzÒB¾þúˆŠ…;ò*iˆôCKõ‡mÒ4F2Yj».°dÅî±ÕJàiåýñ²æ6´l¼DÅ>¡6¹iÉ» ¤ý‘Öˆ¹!/’Ò§íó$#²œBÛrúQ…Ä®¬‚Ûˆ~äJâ?ÖΘœâF‘ußñ¨“æðm â›·€hþbiý0:mšî³¡âÁ•‡vÏ"?¹ó§ººN:.E+NŒ@s±Ôü'‘‚5Ÿt½!›HWÿïÿ¾Dmþ}ÞŸ$ŸV—w}|Þutê»Ëª'o”Äæ‚ø<Š\ê, fÀÊÇ@À. +ëŠ4“–Ý…B½Óú+òŽÆE èèÁ.Ø á,3Qa\äM~bŸ‡Ùº±»Ú²›ìâªÕ¸’f6“düqŸðνP?ZØw+yœé¼Ï{Wi „f˳A矮–ˆdð–¢KSšîç‘—„“µ/þ˜jqtá)ŠïRs£F=A8vÙ¦PÂûõsŽÀ‚OS·cOûÌÒo4¯{¾¤Ù¯{ÇÓw}™nZâLZ·ºÉênì­³˜º1ff37ÎA$Ðd4¸Ì{ÔüÉÊ«RX䙞†Yu4ã[«eàÉGjìÈIâëÜž<¯])æZnto¤>[ªÒÕÞÛU¼¸[&LµÌò*˜i¥¬)I‡š˜=õöX9 +w]Œ&'„°úþê†V©¹•J۱ÙC¬9Oåª^ã÷Ú•¯õŽ`«sþ ÏVNޝo€ô‰Úµü7q[³ç(VCzæŠ`eÁn9‘•ÛØ¬iåZé¡_[ß®Ö*¡œ?Ðú#²‚jbðÕYN­ús{¦„sJ^¯xLoÂÚ°21…d…>’ÐúŠ÷#8ÄChzä#Щɥäq>?WY¦œx÷m@У7‘_(ƒ(ï£1ö„ ­L»:}ã¯!ÆùÜŠbL]r±J½únw·ŒQN©‘Jol'@ý +÷ +é +Y“_“È¢á5ÁÒò,–‹‚ùÛ},èáã0Ò…Ç:Y,—`øÄ… v(H\ <ßç](êã¸q½l]o`}d®q,#np•Î4øc$9…뫚¿Îiˆ½Q‡ #׋´ˆó²ññýÚØ'¹‰¨³µHNá?IP/V™%¾R,qïainŒ5Í@¤õÃ+MKú/,´~kßGsÜ]Ïêbˆf½ÜR}=‘ìg{¬8œ%XÓÌU H-[Õ×7I…Naãí&š“öeð]ÿ&µ1Gλçw +ÉÐÔ]µ DœÌÉ«ý­ÓæÍBû Zr +yK }êE2…ƒ3^HíbúkÏRP^ßÔƒ,6ØÛ”êë n8Ïf—gUGª—x›(Uycì,9…pw3ÛØÆÊÜ· Hl–8Eubsu<¦Ñ0µ%þ2¨7—™ö7¦ëÿa]n N¿ j¿žÒΕ)î „Øàã—8AQO[ôÂéCokäüdùº—¬]GañR íûLu½Ë8ÉùÔc[£¨Ë‹ƒÜ£çLí7–@ïèœÖŸ¦,%ÞCtƒÇ¡O½Üp>.tÚ'»Yø”WÈ~µå)q„«ÕàŒQè2ØNû¥üµ3$$^r>ÏM/ñrþõ€®?„s¼¯ö[PAÔ»Æið–ʯ=ªJ]Ÿj¨ˆR@Ø`ÚOOµöYÃhÿ7‚"­¦¸—Žîõ«Úãn`}¾×|eˆ§\7¶±5N1êiF› + MªPg Ýú­ö7–Ø¥€ð«%©† +»6†¶¨‡äGD=td)Ñ®òëç¡ LÄk×åÑVâoºuwÄv}ࣞ×h÷ÝØÆÊ¯ý†ƒn®ƒ)Ñþ‡j¥·ÿáêEJ˜Ú¯&Ùõ×(5ÛØÆ³j‰“«²ð­ŽgLqߘ[fGŒYíåÍê!YËÜ#bmÄ%²*wÅŒ"ñ!õÜŒázwcùúWQt0µoO±ÁÑÔEûéV +ùK‚—wÁný%ç’W³DëñÄÝð”8z:i?eHHœÛ1qüÚ£)Ó×KÚ]ÿˈO¡,`–x Á@jožHxvÞÚ³±Á\=¡ãM5ಫýiE]aZÒïÈ6çŽç‹Lû±{ý(SÄS² s†–ѦB½€éàj«vŸá¼sÂÔµ H¼BÇ%ÚâP>8rçpŽC¾¢œÏj8NÌÂdP¯‹˜& ĸbãž:B"çóhEÕ­|I ÞÆB‡ˆz‡nùB»ýzç¨ ø×W¨ õ6‡ˆzYQOsðÄý°* _•EÔãšõœOQ(ÈÝ3Ũœ·s1䆃Ø:lœ»Reák’Á)< P!oyhÖ{(º@Âj™ȵë†UüeåѪÖÇ6,æÝ +"SU®Åì[Œ +†^§BYEƒîTÚÈšºü@®öÅBû‹×~Ø!1^û³Z»±¹$’¬é0ÀRÚ S‡‘¢ö^Csµ/tÊëã |øøB½ƒFD½ƒªùˆõD“ÿ€¸×{6/o#"×\R@Ø÷€QïpÊ®ßØ‡A^œwl¸\/…_ûM&ÐpžåÚLÜFÄ +AXБ¥°x‹!ì¼VD´pá +ÕÕ߻<' ?TFæÈù¯"¢ÞGpÈ[!¡-‰‡¶Ä7ö­o34œt,=ΧÑi/+óÖoVªì_v4ÞÊ ÀbÞ ¬q#"Dfx+ŸÅ†õFD£¼ž™:ŽòJåU†Œòºf®P(Œ¥§AJ¸Å‚[Ô“¬óžbí:ÛN¡Ëddpþ¤û×ÇCÛ~§0n™%n–¸³p{ÿzXË¡¦œ/Pÿ¦*ö4ë_j¿î¦äO34ë7’‰£ÜqšøSÀ[‰ð&t +ÃP6‰à»\`|üÆ6/×·çw +[þµ_¾YíQµÇ½ HÜ‹´q?·Ø#²È+´‡½©;x›uëW´æw +ÁêNÚ_œâ)¤¼öª¶Ä–ùëå¼ñ‰˜K>"r½§Û°¾œÁ çC‹×> ‹§ÐAŠ´Ì“nA³¨ ˆw[ &sc-BØ&jRøæ"¢xðÄÝK]s¡N\fZ;. ¡NÜÆ ·XòÆê“öO)î¢dí:LpþMGœ°õ/FªP'MK‰·-á6R½¤¨¼Úggø8/³‹7N­mÿ:Ü­¾¿Q'W­ÎÔF¡än®Z +m—úø­`W\6¶±Îiú:Šøœ¾Úߓו(§cq@xæfx,¸lTQ²LiܲUÂe"RÍ…rsÞÎÉ[Ý,|v3Çý-Kú½¸Á¦%ý*hþ:ƒMÈ}EN!²1J*÷ìB½Ï×2aPîM„zÿÁy{7GÎ˼ÓþÚÒ¸Þ°1¯ÂAÌ%SÐSH™,´°l%. ˜62P߯ºyÆ SJˆ +™ýOœ^”ºù’ŠO6Öh™âÎÎsÜÝ,|ÆÕàp÷(ñÏå¼]2É^ŸR$ nr?!ê,CBâ~"ÿÚˆ¬öÊâõ¯€§Ä}¦$Ѭçž)Ô¯ ê•«VÇ',QߨEËÈú¨VÇÇ٣Ĺ6€z6!wŽÕ]_,í»]·þAÃYÿÉ>q÷*ÔÛØÚ¢H;kl¬ã¯eËDáhË@/—¡2.ÛX«å?Ó¾c4‡ú ·m| +?Ó~B~µá£ýÊtpÔŠºy¡ ëàËj„Zæ·1K‚¡Qlìrb­ßS NÚWG¦Í#4Ÿz’ŽÆ~—"ñÁ“zýå&¦{;q=cþNáŠ\€áëèœ|ã“êì-6¾Ï»ä…·ª¥­êëóH57ƒ ¹¯S¨›«ã#,…óm·åî·%ý öëkŠY¿Bà³þ”!žÂ•v‘ÔVBâ_ó©WÑdßX+à)ño2änÂmÜŸ¨7 +ª¨£ž/3ŠKT€ÑJöwn`cníQ‹i󼪮WM²ë½ÐUI÷‘¸ÂÀè˜Lª™ílIÿöð2gÈU}£Çt:ò±ÕœC>ÔƒLRœç^ƒ‹œÿ4´ì§´L#ú|Yeôù2P˳Xr’@°!M'&$.‘U¨)·MbÔ+°+©Š!»¨£—BÞ]B ¹Õ"ñ eq±²}@¤.VJȽI1m^„¤Ýëá–Æm˜\ žFÚ¯5Èu‘ÂFºÐ¾bòkÏ(0>> HÜt¤8FzÜÿ—Ù\áŠB½ ŠÎ¼BöŸU¨ol€Ê§·Ìr¯Ì¬.áWËü0°¤?ÜÌ÷”Tî¨%än6_7¦ƒKª¨¿%CtHx¾¾±3áùúÆ66%g'‹"E ñWfIÿˆÂ(w Yí¡¨Ã&Ï×ÓTóàcêiBÒàçfsprøxôtM[‰sF› +#.G#=î •ìú6"ñ35q}—¬]<__AUnq6ž¸D?–×oLÑÆ§ðK ~y±´ÿýkR:gßBÐ%3ÚT¨Á%„%Ë•ìgŒ¯ö¹A/ñÕÑy¾±¸ &/ Šæ_-ó3Ah4#ŸfÃ}`ͦízˆ‰s:$R=j¯FJÍIûLJz Œ˜ú‘h¼f´¥nÀKÝЉ²Xòyü¦¬pL–²Á±$PË|4C+±^/Ãzqö_ÖvZ^âG›ƒ¯)ÐõàÊPâä!\»ÎÙØæn>RäL„íÿÚ7mÜWåõ”‚"ñCÒàküný¤æS/N»ÚÃÖúÁJŒª ¶Ä˹«J8…²É,ñÕŸÂIšißnãU>åw©Á·qƒ· Ï×Éw±~É¢[?úIö7@s¨¬ ¢èoŒ ±v=¥IPùuò˜(äàI¢y±´RPHèu_´ñ)DdNƒßXD s +ù„€zž,¢žã ®]Ÿ@.V! ëËÙ›R×ã\øº,oDì–¯ÞCÑ!Ï $Ýòu¶õÊlP]ÿùµë’1!ꄪ´ÞgçË (¢ô*Xãj£Ð€¨ Ph–uc­yZFò“ì?D2!ç¼6⨂%W ×ÐÉZ«‹ˆâÉm¡Ò-Û˜GÌ%.‹h„~|Ù¬Z}=ú|¢Ûlåf–¸¬r¹Z+k‡…o€ÐPocaàåB¡+êyŠB¡¨GÐQö +q^«‹ „ +eVÀŠR…BCÆiyAã¼2:ce4‚ êBÑk24gÊÐó¨>™*@à +d.ÙÍq‘(ræp2¢ÌCæ©Ì€%A3YAÁªM ]‹$¡?’yTI§¢9+N¦C 9—˜Ö6-D–½6–ÅzÂŒ–ƒ²l>dZ¡.TãñŒ4-×ÍÐgmº)òþò¨Hâo¬@"¢°Çy»E`pèÈ¢ƒcSš…X„2ûÀ!§¤ /+;"F @C)„6ÖšÃÆY›+ä[|¨ÇÃÊy»'¨¢œ·{ÈÖúMòܾ>’¤Xn¢ +Â…‹‹Þ·1Xeúú,×Úï6¦ƒo¬¾PþX»n–›—ëÙ*ÔC.ceʃ†N_$ûQyc?FUò´¤ÿí:í4.âøÚO8¯g”¡«¸Hš¤Óà’i$Ó#?È^@4òÂ|j.Q^¿=êHŠðÔ8äªÝ~ó~NëÝ…5­n%.8°’Oê[iDZ;‘—O&®PÝX­úV¸~ÔlCkÜÌ8–^£¢Ž— ˜Õ°’òšªZ¡º1 +Ö¸&¨ª—‹yçz"ZI,€xdÙ‰hå8B€ÔlåA"¸ûPÓK!‹­ð°€7(Ò÷ßðÕ2÷84ë·°§t[â\y¸bvŒ8ïnL÷ÐÖkÿÉBû‹MlpóÌ0µ'ð”×Ç¿¶+À€úÒ¹~ø|Ô–Z¯m™Qq‰YÝÅ}b“‰yà£q¯hžVõuA8…ç*ìÄy¡}}¼"!!ñ¶M„kë'|K õ{Ï(.®zJ|cÞÒiFá"Ìúãÿ)ñð£2ÅPæÆ›Mwðé{|í7–˜ßÿzÇ{Z÷? +—Gk¹@¦˜!žÂ‘#æï¼+@Ñ!ç Ï×ÁRõ*x#xÞüuPAÔÇÐÔçJo_yâl[Ò_Šñ%’Åú âiZÒÏHGœ—?dýÆkÿÏ›¿®âH OÜ}¨Á£Ð)4ëMéà™B½ôbúº]³ný?ô©7Ë)×o¬-\FmÌ +.õ~èT=jŸ™4W? +—¯ƒŽ@иHñÆ(–¸[6Œq¡ý™îõjÛ㮀YèzóÓĪš–ô/Rí“”×ÇDÈÕþàãú…óö3uÑþEK ѼµQÿ +0Ïíë2L8…ï(C´_zbƒ·ÌqߨQ +ù7l°3þ¯=ü +øì£9r~íìEâ‡EÂ’þÖ F7™°¤ÑU!‡ãk¿‡\ê2µ:Þ@#™§=q‰~ÅÚõдðWO%ïBûmª—øq¡°ŠUõƃYøûƒÐ§Ôið¯Œz‰Ðö/ÔSЬ¢f­MHH\d7‰-ªÁ9 SŒ.ëwñ)ti‰œR¼¾åÚ­¨¨eîzÁ¨§Ø¼\ϯý "‡®]—Mæ×â E˜¶? æöCÖõŒäå[î +ËDÔ›ø*Þ…ö¡O½„¢–¹)z’æj_nÚ_ NƒOÀ¢÷„{sp¹%œÂ…‹î•Õ|êµ^ûW6ó»Ð~*Z¼¾3œ·'Þ…ö5’K½rµÿò©§0=ÐZæ‰ç0|¾îEŸn®"ÝØ÷/xñ_¿± Ý1-%¾ØJáÆìBûäxûûBjß)(–¸R4=´ø @ݹ¡O0^ûÇ]jx¹Åk_¥1l8¿·ØX[ïtýêè@É fhN•YMŠÂÆÚØdŠ{9ÏqŸh%ûS¹dÒ–x›.šõäF¡ýMúÍúq³¤ß¿0Yç_óPÃÆ +B_æ4xV5¢¾±Co®0„œMÍqçœHƒ» É)Œ7¨Æ¸ø…öÉÂIû¢H‚zd†©ýø€º&¾Pï[J|±¹:^þ`”×ÏDûeBü@K÷…(³±t$üiéŽ×ÁZUq/0×®£¦öƒK=24õrT5?2^û³,§ð½ÐŒãRï“=¾öï,9…d7ùÀ/‘dX¿fÝ„À}Œäƒ ¨–{RL›7?Ÿz˜R­}“áj$BPMUÜ7–f˜Ú»¶O½DÀiðŠÍËõ[äROá™…_‚\í·\[ê…ªæã_›K=q»:¾¤¹Úk +Ÿzâ…óöÅF#ú\ÃbýÛ¸Áãl´ùæª4ª($äBg +óuê`†fýšä¢µÌÛWF.iGÖyFÙ­_4¥®CHà³þ—ΜB±£Þ«Æ þ‚ïúù*î ¾õqôâ6Ö× Íz/ô´ŸÅ1ü¾Îy-¬%¨çñÕˆBH=Ê뇑V`Èż +U¥¤Îa£Ób@/7³ ÜQ²‘´˜7-O‰76Y YU¶£¨E]ÎpÞ®²iI¿ 2hßáÀÔ>lGÑÆºOl©›izš¾Î½Ñú0eB ™ˆÖXô‘=Ÿ]¤éǦ¹öï‡1³5;¯’Zá…¥¤n B€Ô,A‡õ2ÈÇ+ù¤¾Õ4•5ýSúGymAÓ¡ +ˆ_²Ÿ-MÓ’~H¦pðVÕ~%F'*¬õ¿#ùã»Çuœüçß­¿e¸¼EîEĤõŒ’âzGÆøøñóQÏi)(¯— îõÙ¶¤‹Dɲ¬æ„ªU̘zý¨€¥ÄçQîŒTÔŒ&*0²À‰Ò‘ù™G¹o,žÙ%hwý]<u®«BýÐÙØ‡è^Ò4"1˜¨¾]Åž«r_VGh‰Aãe/Ì(³Hå ò,¤[ØØÄ aW±9ˆ*ª–ïŒ ‰Ã–1@…6â#A«ã]¨ ê}þ›£ËÃ2çÙS<…c)ößÆÊ 7`IX Ç‚ËP'ÀËe޶ŒµbqÙh Ý2ôÃ(€}cbv, + Î;ʬóÜsNƒD¨G"LUü‰²¨»PªPõd#eŠ{š²”BKÈ©ŒØO‚5OÒK¡‘)uY×)Í]ˆÒZÈ(úxªH‘Ö CˆÒ+à”^ +µ@z)6M)a"yªÓSlpñS= +`~}c§€[{H*â u6 ˆç‘$ˆÏBÀåq`iÿÍ¡þ¢•9Ưý´©ý+`Ú<ž¹ÄÉÍÙúh߻ڈ'~}`^í«©¹ÄÃÓôe8'(ê±á ꧨÑZæ¥Ùç7(Jáà‰Ã ŠXŠÈöu-â<{„ y¡}xÓã^ŽîSâoÁýº*ÔãNõŽÊ>%¾±"PnšÂ»¦éñu"Iš‚Q{z œÂ.ŠQ/ôæ¯GÞîõrGùÞüuËéÛÌï›íK¬O'n¬c–ø~ +ªÃz&qâB+02–„å Ø‹ySƒ¥¤f<ë]©+TÛo$ühÚf1Ú+ª¸·S<â¼!!ñ8”pÞî çY¤ïju¼»vÝõePï Ö2OPR3Ú|”û‘œÂnsó*â‡TsY'ÝBV°bqeËL¤šË’µëkB<…ÖüFÔCÔg•'îìâ×þp9 ž±ÈjŸ +xƈ,ú¡Óà76²,Rõ~ƒóvs›…Ïú2¨‡@ѬaPî$œ¥>Þä­êë …U˜ºƒ=ÑS8§Ìo .qªq‰;/Ù¾±Í‰jpË:kÇe&€—ËBÒ-d ‹Ë66)[†’j.±ä-SW,.û ¤[–z,¸ÌSƒžVõÅ)Õ×?Ý¿nZæ˜ñÿj2¿nFdQWÛx\4:ÆÇûï'TÍáišK\{‰:®Ÿv׿1Ðhs…覽¤¼>>¦ÑS8q,ä”ióý;¹¡‰€?ȘÖ6>…ã)þ|ºõˆ,ê[3œ·7Rs‰oÌ·Üç·CMKúÏ #’ŠôE.@Üë]»Q¸”øªšKÜйªŒg +up +ç÷¡Ô>Ãyû(àÖævu¼¢_RΫ-ë7vð3KI…9/u-ÝÆT®1Ó +æ|‰1Ö¸³PÂXãFNÑÃa:ÔÍÀU1Œ¥!ö#Ã¥­Ý…Và<–Þ¢ úÖ`z)Þ·ºÞ>õCÔWºÀùeûúÃ¥Ûÿ’µë²g+q6 ˆûÆ`~v³ðGî^ÄÒ>:ÿG(Ò ×’9…/ÿÚGVqŸ[ ë³þ’$ÿbŸ¦Fr›«ãEÆkÿ‘«ÁåÂÈõ;x ¼ŽF¶¯{0Ó>Ì(9Ÿº¶ÿµëe(Æ BÈ¥ž‰¸pÞÓݰq½îqG|ºÌÆÆ Bÿõòâ¿>Üô‡UòÇsŽ”†ÑþˆDAÔU†x +§}¼ÎÿB½·Àp½,×Ú×>Ì·±ÒU~}ÛØÆTÏ«ã;[dôù0ØY$âÑ: MI0ƒh!E àË:_¶±bొ½lB +õ² +éT•û2È`âeð¬ø2HÙ³}H·g¯¯©6R&侂R×w wš vî!:­Ÿ„·¯KN!ûc ñX».–®dÿÆÜØ}Ü.gÞÁ[/O‘z±nLNXëG!ש¢žF¶‘í^ÿž#â‹LÎÔKL­ý˜Åh£uUÛ6ÖØô¸“ª²0PŒ«÷;v¯w@Ö‚ZÃ*îþ˜ym–ký])Ä-*²ŒÍâåJ”4ëÛC) $]t÷1Ø…ƒµ|‰*0jþ:¹Z\è¼Ç×>µÕTlæPo[DH’gáÄH=±ÁÅ.9 þ°qž/7WÇKÒ„ÜÙÖ¼1‘$x™t@Ö«bƒÐyU–¸—Œíëgꢽë'ÙÿÒ¡SøÒ¡bLm$£pàü÷ÚRÎ3I€Ä=Ž „~Ã7™_ߨ*¤hÍž&r³Ä}3ò¼±1ÎH°³Ö|yÙ<Ù4^Æ‹ìû¯=ˆ¼,b!ÝÂJº…L“ê.ˆBº…Œ²Š½ÌM¸… r¨`Ž—.`&IðL¼Lçòe Cf7‘ISÿÌ@œÄÓàW0«ÀþK !˜u^˜I"/ã§Á·ƒ‰ý52˜x‘ƒFH·°±št l¶ +õ’‘ŠúC s +7&Ó¨F*’µÌ +ù{Üaï 9Õ+„'ìŠoèpåvu<‰z°#׋¨9~JœM©¾Ž‰Q'ÔÏÑ‹ó0t}«²|½-1ëï*ñæj=8Ôà©Úã>¿làõ˜_g ŸÒhbž«ãE’‘Š:gÄ|´?âÓFd÷(©À°–y#e‰»ø¾µÇxèÚuÉ"!w¼ níIQÕô0äBP[â‹ÕX³¢ýÓ‹ÜS€ÜDâ|Ÿô«ü:Éи Øš4ën=’œ·Ÿ•QÈu·1%a9î‰vûz9~˜™®r팿úz\èVm5@>»×o¬oÚ/ç çaOè®+ˆfy¥Z=…å s ÝDûûŠÏb¤¨!‰[–w4¿·ØàÞê“‚Ú·8>ç¹ÔS¬Úˆ·3]ÌÂ/eòMq^†œ´-Àðuo·Á…Ì¡Þr¡ÿ @1è%îŒnˆ0ÅýáÀÔ~cØÆ¨²ðÇìqGÆuÀ,dÒ°’›¡½éa½–Ùõ”¶q^®Ñb^‰J„¬^êª\õmìB½\Æd”WŠÆt¨¢À‡õBjd}«¥{¿éP7‘]¡ª1Ó +< øžw,½ +ŠÅ¼šr,=R³,·”ÔÅŽQ^5Ii”×Ìn/æKŒ½ÍÆPóˆ,%•Àz…ê„eê²w0ñRÔ‰Ë:Ó¸e0B{+oi)©ó‡PÂû´ÑÀa岂„z@l'!ûe•üñ©W=æÆ"…ƒ!´›Ú’á"Ub´ÕÜôâÆ"u)/œ·'Æ€“vYŒ& +¢Þe2!#n®g[Ò\Ѭ_¨ +·ö¯D0D³Þ5D½o\$ÚDÂóINaƒFÅÚˆ£Å)d¿º1m^tUÒ¿qãJiG-™fÚ']2uÀâ^Ïñ)$ ÖZæcq›YЍÏrýf1z¦¦67/$ºÊ¯Ã­x ++„‚k®H œY¨äT5š *BN™‘ à  %#:¹Ú€aH(VLL,&Èd‘@…a‰QÅQcœb2èn ãO¯d,ž DšÔ†HB7”rê•™W; è¿óÉ<¹>î™NXÑ=mDûÄa[¹h‹§Œ˜fdˆϘ‰üú:¢Ãºì³ÇW5â‚&u$4ø™¯ rî12ϰcèˆ,Éìaí¡yƒU0݈M l#Á 1@š%ûG@îKÊÍL ö%{ŒqbxdZø"#–±¾öÚZˆ¸ç©-<Þ݇ØM "bÈ0^3R4¸^6:UÒk¯kt»·ßT(=}~b¸Ÿ,«Y¨18º§ÅùËí'êÜš¶îUœÛå~©;‚ ũŻ €ªô½Nâ× áYq$ö¤ö1œ» €µå‰¥~¸®Š» Ïf?Ôåè•îý +ª¸â*¾SÄO«û ¢|MÃTÛ~tSñQFò?hlO%;ç8üóù=1jFôcû¡êbÿU$ã–_ÁQ–ˆ`J³›È8EgOqÒ‚ÈEr$˜”] %PIA¦& ·ÅZ0*Žh±¥Ì-uª”a‡ÅHÿHu_1U™My¿øã¬£cfιª…¬ð¥S;nÐ +ÑC÷‘ÍÕ(“Ü +¿#ºåÓ¯@e™Iåö‚^6E} ȳV*Ôw7çk÷Ý@²_Ñ÷ý_Ã3‚…÷φ~¸'3‚ÆfTi·4‰Ð£ŒPPtX%øÚ]ìÒgD–º°".Í—Îf‡èY¼RDý—Èu¿a2L[UÇNæd í€PZ‹6³ZG’^.yñ‚ýº“)%çØðd7+ ºK°DU'k Áî„€Ÿ~†\Ùj.>Lmc¨Ü%½”So{ÈÏÄÁï+×cƒ'¦#•¬“!ÕuB`â”8õÀñ 0Û+ÀÌ´Pˆ§cH™5h€Â3(ýñ´IÅ]Á`¹$ã°ø±—•$ˆ1:®÷[ôÐW¥ oá0@’€ ­$´tqeâ.{žÎñžÉØg‰!–ý ~`ÔÅÿd +0Á–ÁÐP–Ÿ«Ë–6P‘÷v+FC½Ï¶{MϨªH…¤Ž§Œû·E|#ëî#ýV¤ÐŒTÀGª ¨î—¸ò|aûU“} +\¼ÐKÚõ%‚ì%­ûÄݶç½ÔxtÁÊPkï•wN¿ S`§}“°V‚µÔž ++œÜ6ÿ„$›!H#XM­ƒü·º¹4ÙS€/É'3lßm +Vª (Õ¾÷UC:g*6bÊç9H ”¡PŒ¬‰Tà.¸zãT +¡éÌUÆZ³m¥0i™­ÀšÓÇ ºŸV{gŸ5´·«ýÊ%¨…>ÉLÁFA”Yˆ £’_­¬´ïÕDÎ +S WpÀê-à +ü§þàUú£’>@®§ƒ@Õ¢³'/1ÚäûÛðÒ-3^«O€f£„‹oÃÉçÄÜ,°G¬?¿¼ÒaâÏõŒM»{ûjö`Ë0¸Ñã Ü"x·þ ‚>vÔÞ à\® |”©¥ŸåL±»ô#2E—Ð'A~· ð +5Ÿ½ C³Ác†ÍW·¼;ÙÄ +wë ±À–K†ÑgE[Os )ùº ƒï6дg¶ ºÛ ¹{³ï·aØ=E Æïèœ I5-ÜW?ÓM@0¾³šN¼Ú€Ñ£† Ï®vp¬õY¾+weP«[B±VÌ:e?è8eħ ½(ôPJ.:‚ŽjHÂ]6@>ß²Šê÷±p^võ3¾.µÑŸQ•]xɧ¤f:÷n"Î wŸ-˜÷Mµ51iÀ¡òPfðd0a¦lKè8G”‚Z(ƺ*†v=›êÃ41Ç?Í›Vðn¦÷Ö[rè8ÀD:i„^[.{……ETÐ>Ð)v8'úÔD®÷<ýTР+uÞ/¨º´A1;„s@ƒ"Y³!Ð7 4ròQ–¾»ãÝOv&ç.“¸J98ÄÕœ¦ –ø¿¹P‘ßh÷x7vþZ÷û7ökóë"ñÄ€GŽ÷ÝÃ9¹®h›4! *ëóÿVµr¬Ìw\«}™g˜gÊàú‚rP ö¹ä‘4ü©¢.(Ó +¿„@êf g‰ªD4KÏYÝý€†å +MûÈ}k ¯ óÍBú¾7Z¯TW¼èô Š˜`ì„`Â4õTÿ¯aò»|8Éqß¿0Ÿ““ÿŤ¤ˆÒŽ >KXBpGë à6:(Vœ$²Zˆß4†ãlöÔ>~z† D{6žf,)k)6/I.©ƒ²­KÂÒ€%ÙдX!íb˜ÂÒÌì9{bÈŠIÄ@ø¥ÖÕC¶‰DGŒQt Ã|*¬ ›Á'þ¢Y.º°)@Õ¬ó1k#|×+ …Íã/òŠHâ_)"Óx§_˜ã³ƒq–EF|V£÷ ˜ùø€•ƒÒKh­e1¨ß’Ð~ÏãU-Ë,›º:‚a#_bŸÓ^F˜ØT¸U-/›é¯^Ü:ÆnŒ@¼ñ Àþý_–âéÞjR询’È ÇPÍmSE^g7LÞ5<«sÁBÃرºëbè,|}t· ´»ÞZVùˆ,&•à·–d¨9Ž‚Ñ3Ž¡¨–ܤϱkËC{ÇÖcç’߯œ6æl€ÎtŸ‚0’¹ùxËG/ã›8 ®§¶0ÞyïÉ•øJ¸ußp¯^›Çˆ“>ÿ ›7$õày½»Z,×VsÁÊÉ\KDî0Eè~üi×z(+в†i×a/ œ¡F«PM<ƒV’\ÆA6õ8 aþïgœJÀþžJƵH¹AÀv\ +Yžú£Ü +¾§#ͷœ½¢€ÍâÔ±Ÿ‡N¶ª ½¢"XBršzŒ¼œ\ɵ–&¦Àõæ Ä.Ù’øµ'}–o…÷>É·ðØ´J:Ds¿¼ +Té{èZî´~Øü“€>çf=TXòŠï×Âm²}À“Ö‚àµî¿8[ßMŽX4BMg¯ +Í~ÒŸ’§øÈ²_èÖ í·= !<7•ø™Çq“âZ²ª«§”ÆP—xP ™ês]¾³`’á×uGÒF¡ÕTJÁǺÐ@^0Y£QY#vÝ{÷/ú@Y÷@ùùß´úÓ6 kUB„"pÀ<“¡:fÑB9-*©!=^¿®o²ˆ˜„}öÂ7ö¤‚ïˆm×F£Dßß®j`‰›e*/Ð3óNj¥'þOaÛggWÛÕb *Ç®¨[Êt\q­’ó“Ü;>©r!çÓÙVÛò±Q†IY‰z¢øä»ƒñ”ô0‰zŽ +ÆùÂÿš tWóyŸó¹x‚îˆêLÙÏpíÚfº-ï*Ä÷tÍuÍÉÐOêð:8öø?OA cæ8vu“pº’½ažVô«ˆeTïªP—©b¼—í°VÌ:Ž0¡W2íSª³›–ßVs~mß¡í&€±Ä õƒ.NPg—Þýs¬:LvKê´µe‘¶Våàk³h èü¿úƒãV¼Jürë¿lÙF±„¼*7®Ú7•¸w\.É^¨æ % ¡&çê¿}MÇm( +¹çKŒ®'ôÓæE¨M·+[(ÛO,šÉ> ke‘¬••4™€ƒ=ß=nî -æ]£”'‘ÅMމ} +¤Êg™û›¸f¦ŒZï/¡‚g6Ø’¶tBäK#P4ÀóͶ,Š'¯ ;LÜ;@§2JTÙéÛ}ïÿ¥ì‹f©ÕÅiÓå½r×¼_¯ÜíN.ÞéUÓ4¶­q15ã÷Äë&Ckº÷Æúi²Î±iëäZË|Íã×Pœd]êÖgGàçRý\ëÏáaa#ŽþZÞ“ÛL5“^“»pî¯8µImv[Ü?ó¨$&‡ØŠ—±è¥ÀZH XõTáNAoãdæ0N‘;óB:ÅrÆXÔå´aé—iàÓí_Ü䨇ëŽ]‡àŒ¼Eè¶äHÚØ‹÷1W^ΗlÀLõ¾hc‚Cc)¦dæ±\ǧÊS] ì¹\±I@%p'×SykîqùX†Ê7ãîªáy9s¼UW‰qsн½BžD¯½uHXBfý…l#x%€˜- ¡PÃÜXLö,oÚÕ  —ÇèIhð l*¢5ëuvÀÄØ‡ºCvô†G=¬®‘ê:ÅZÍ gdÚ+¸ïàÇ‹¿üp˜~eÝmþ5¾0vZÖ>u킃@3ƒîÚ~÷¶Íú<¬ +AeÁzyÁ"â*¡Š›Õõ“ίûñ¡jI9ã R¾!sû¬™q1¢­¾¶w›e±&Þ’t/Å6J*—]ØãSNÃâ4~Ât\¢ ™¨£3Vß“©]ÚÂÔŽ¯æ³v’.U³¸ƒLU9nÛ±F¤Ú™Î //ÿ ãQøå ì@ì©…ÿ¶¼-Q’óø} 3ª}c7ìØ°m;F#U‹5*tƒ~ÕYYNÿ­¶¨Tž oÕµ Æð¡O˜,ñøÒ4C>øü.ÅF5/u©ñØ&Ü…¥6·p”wOžj¸HÀ‘©«1ñ¤I‚škÁ/O¢˜¯ãéÑÀ—ù ¥ Y„ž-UTEµUò7/ÎÛr.[³-qéêÏíºÇ ¦Uæt·rU¤lÔéÉ€./ÛfB52+žÍ +6êlCËàÉÌÀÜY©veCõÆà/WRΛFÙäJô«ÀÒ1tÇC~ZÄ¿á$k_TÖXWã/Ò—#"DTíéÇwäa².ÁîwŒd,ØKq÷Ö|ú\[°£¼Ä‘6bà ¯ÿ¯€,Y+GÞ9 8Oß¼ïy‚¤$re‚Ô Âæ4L•8†ð +Z’³Xö#¹ÈTÁ-ÒœÚ&VäÖR¨\ ýGªTäÙæ aíEg6˜`EéjËM&¸n—põH—Qn:wÎ"bõX–CL[½EÐíKŠ'„Іwž=ɶylbOmªGé!yí['µ/°¯ý$ÊãDÑê‡Iö±w'%¥®Cx°à©ÀX_Ü~sªz’±§Ÿz˘E¬¬d»©’ÍFMóÃ9Öæ F—7ÇËÅêý×/èÄü(dã–/@­…ÃjÝOÏOÖù‹§F]5Ôšø‹:‡FµjKQ +u‚_º¤Q¥ýµsR4­ Öª¨Œ +šÖ‡ó²µçmB7­û#sΩÐ,ŒÚ ©É -Öƒjó|‹*µ ²?­šÔZ¯ç[NølägÓÌ›7½ÔP”$ð=N ±”v–zZXJt¾ A˜æƒ’ï´‰¾OqËl+,#R4#µæ6Õ}lŠª Ë[mŠÔ.µt6q åeŸ( 3ìõ‚-–1r2Åݲ€é¬~8Ç)º8Ó½Pu‰&LÅñçDJb&:Ñ·[–hæ–¸D ‹´zòD3ù(Òµ¤ë›½|mõ­ ;ƒzë‚ÁIiȰJ@kP•Þ¸ŠŒÅ¨×i?oÓwTˆmþ«s¾’u¤i«í³¼Œ"w«[OÆó'Ó^SXwl—LßB+WL¥óÏ›^¾€ºD€+ÝǶw씹œÆG“MB "Km1}õMãßo|œò°ßàù߰Дš‡÷øî^}uç¹bBlwâÛÄíâe[ŸxÅ_*›§C(ߋ êÎA£óŠXA +·îý³ŤK&ïD›ìözY%{C]cͯò’mH”d±‚g ÖʪÙî\èbÉ£|$éÎ#U– 2ßé’eOÞ#ºóœ”‡ÝY*JäJqµ1_¾2 ;¯FsF»(ÍiY}‚»‹4xqûu0Žqß6ŸhuŸ]ö¼" úNèÉÈ#¼ÃìKÄÜl脲…Ä"¤-Éé<¸H²¶l7rŠBšëB‘f žÌc³iÖé|ì²+Ì-K`OÛß+çM×O1J{Ùf1ˆqXUä”{>)_"‰ÛP‹[íH·®ïû”¿ÌÅös©aá/ä"0<ȧR=ÉUäó3r?Ÿs:c%#äöU õyd(4+‚€â8k¸öV' Z“bóݰ×/tbt –Ø»5/móp±’•(”õýf«S“9¬ÝGYû~ÌŠü Ø¶ö[côœØ‹ájd†iñç³ •¦ô¸­Wûã¡ýÅ–V¿¶@aÕX(m§¸™†ÊµôÚÎv×v†j¹«ì¼¿ÞÎúiæ}ÞeÃ&EýªÀK¿îˆ13†„­†BÁa™òx ¤ü\@êXyÕ(Úà²õ@vŽ\è'ú•ÔN3¡S‰´Cw—È"2íOò'º{¨“#b6D-¿ZSû~AR ®„‹áO5Ùc*yZh3ãS_äºV–tŠ8 gŒ ”B°M8B\Î`²°°ï¡~g¼šã­ÓÀ§?f»¦ ' t†Q('á7‚ä:>ØRÇŸˆBøzÅøgÝ]"ÙžCs˜W»Œûcè5Ü»î¢b7OÆIO"¢ 4¹/oÞËû<¡t11‹;Y%¾qhÿqºý#‡ +ã^þÑÊF޹fQè;£™˜dÙáOëŸ6¥þŠÕ4›þ2-j¨}ª&êMöcÙéÞnqø+·`Ø!¿&;-NÀê+@( àr0Óº¯¾3V1–eG¯K˜;-¨­·c¾Õ˱Ñrµ7§ü~v—xt%øHž„úN¶7ƒëT7)ˆöëèÞ‹Øg84›ØÖ&>ÕÉàƒìïxN,ByÑwÜh¢?¨ó‚×å´¾?zc²ªÞ…¤R 4ÐBsC) ÄG*g< òõûÀAeøÈ_ýSKOQÑ{µ"’±•€ò,œ#gåöˆ)¯”*,tSCß{ލ ?v²ýêáø.­`÷`å r¶S_ 2É:Ʋ÷˜ +³=|Û'h ÙªHúRÕq±¯ GßTÜ­[tÅ +«Mê*õDÇEõŽ5ÆÞ,¶Žƒßßdûx¿!ãY¨g«×-ÿÛ±. U„.â0´Bv>µ( ÅPl(Ⱦ8ûÿ9/¼Th‘÷ó.ֵѠÂvÆ:ò«4¥päóvó-(kô÷–H.)¸ J¶{ï$Û }ÝÐÐÊŠîûûúÀ¶2ÓŽ$G¥žž`”JM*[Ê9Á´j*ÃÒŒyQ˜¦RÄ æ±’ŸÆ÷{ïå÷oÝÕÿ8`õ³–}ÒE6»á1á@ººÿÜÖ`N·óŽè†7å$èt}=´‘W‰lÐ/optMDiäThj9ýGçÇÓûüÐèOŸáÔe¥£ˆªÈ_û¿t²8¤nE=dbÙwœÁèvnÙÁØ.ÒÅj)-•°¦ tïĨÙUCd7êmÌ^±—nó ?*õØ#U«ÚzÄ˹ãÿF›>Ãÿ[n$ÿ ¤'ÑnºQ€µ–PèìoˆÆö¢»¶KÕ~|túpzx×"Lm9ɵEŒûTj,ƒ-Ýðý¥ûî «7+ÿz£dMñk¥Å4NÕçt¨nÂ3»$)¶WÎ=Êß¾Î%æÊO€ÉÜÏRl‰<{ü™q¿þfï/­sóÕ¨½?nz;”w€éÛ³á¿à¶ãºˆûQ.J4ž®¨;¨³SmÕ*¤`ûã Ägg^sh¯ÙiñŸ¼½˜ôª £<öÁRš +N°&¿“ f VCÐV¬º%ÈäôÊwðÛšç.ˆ£¥j•œ¯“ŒQµy"-÷jDÜÞš±%~\`)Ótõžd“m¨ch ÚPœŽG=ø¤XÁ,Õ(CÅ ðóߺ(îhzð¢• Ôæÿ  +Y à-ªü=‘ã&@©ðmíÏ@¾’·”BÕìN˜ä§‚Ð5¬› x~޾aùuJ‹@ ©–Ɠå:€c+Òm¡3Ù2•Þ´éŒ*¹E7BKRL¿9°–0a™' …ÑœTÜ#Ó¸ŸEžÔ¸;(èí`DÄ•‡y}À@Q71Hˆ‘µëñ>a#85?QMD#é¦.þóu0ÀŽ;džõ\!ïÔ1:aðáÖ™$N‰ìß5/6 æ°cãþv’ˆÞÁ¿t-…žÝVéyvP Êh¼¶õôKéÀ#ÏèKç1Œ…’]EintQ»{í=HÐâ@œ˜¯È— +0RNlÅêE®)­K;™NƶðâÆ©gs t„K옗AØñˆD²—ykm30l°ÙÑq"jýZ‹ ̽½ë°¤ÐIq “~ZmÚÝ;m—pTwü„Òy£àžZU&0ø+õ&SÞšˆ\$¡b’Ø"¢Â,<ð½ò„ù+Ÿ;²'t +.tØ™°¶ÍÅëGóìKƒüIw²Yd£†s'96#-@öBYt#bÅÀD*Κ퓀CêßsG6Á%š37ýIí`èðÑPU¤yÎbàäÑ,FZLîÙçƒæ XîÑðÔLå: €€:'‚°B=í‹7— ÎIòYàÝ—H×> ›ò„h© Ÿ/ 9¹«Ë¿:—4椈d$©«[Çbm¢)«)6oq¾‹¢PÀ;ù£jú0«8óÙVø@'M¹×a1MÎä Ä4²Íú‡Q'ãá X‚]"€<ôU<‘AêeÏX""ý7÷Ì…ß à›§<¥ÍgQ÷§¦rÏ~ l½¸À 1sñ¹›KZÄSŽpNª¸P +ÑK¦Ü£¤”œŸ{îä˜ñdÏwi'ÿ`° +ê÷/©ÊŽ+É’¡èÄ+ŸN½»¦™({¡Ú&€4Â_£w X$:(Ç vÔI DÆ +¤iA?©fFjŸ.üÚ¿Üb‘SÚý9‚¿Ó¦ -ˆŸ¹Q™|ts5”½Rx=3ñ(‚ +hr©¾cwt Kôno F²DcetPª9f×9M¥‡-cÀ:]u-¡ +ÿS½)÷¥Iâ3q˜1R”ÖÞ£C5³?SY £ƒ™:ø o8£€œÊ4†E®ìD‚&~#óc ÁÊfa’fk}c,žRq…“Éâ«þµPÅ=d±$Ï +ú?ñ¥â,êÈ‘ëNFB•F.¬Q¥[1Kɵ[ ‰'*#ž²\Œjg¡ˆL\ÐFÑï.“ª?F¶EHUå¤Ò«°æB° K›Wð"¶ãTTXz]D²çøjì8jÿÎbÇ +¯[Í­1‹Yk#ú6ä¥(mÀY•&%½Ñ²÷ y‡¨[Š8 ™0¥ +=MDcA@”ÓŽ;u†2'f’³d¨ ót‚a¨H ?iXÄßzLE}éAu)iÈ_¿zs¦Åóo€Fþî©c–/?«q×E«ÅRfA‚pH¯@¿2¦J%5WÐðÊëJ¾ÝÞW…•]ÚÎ\‚Ï´yô(¢…’Ëüo5 åØ˜ik;ᮃõù@^ÞëÍÍrjôBÉe]àÀ(nyôJ$­¥’r¨Q§mç6&>Ó +À^’#Ñ4ì0‡^Ká®Æ’Ì«ßY8O\ŒX ÞÙ3¬c]šeoðWu¿ $¦ŠˆÄÑÙ*¾2fØÀ@!Ëh¡(Žq‰ÀR„‚á'ΊâIÄŠ|Á¨±jxonÏp”pHÖPö(Êþ³ç ü œgs€:Ô”¾b § Ù(S¾(Þö°°Ô·„¨¸ ‰V{â!døá§SÃ…/D?”U2Üðâ»øP tÎ|:òâA‡Š2u¨ì½nwb]>9M±`¦Û¹žFS¡Êß‚ÃÇQhó{Æ8úM¥.Ä{‹¥h?HÆ!¾2„+ãŸt!ŒC+KÃm‘>ÓEmüF—ÏF·8ß+BFϰ2nÐÛ*Làx‰ï$Q.¶uAC +VÈ~ÙT€êKÄ6ÏuüÈöšE|if¢„54 £.kŸžpËl5;qßr-ÊW‘^ª­€þ²•·¨U¸@ú߀Eít/+»ÄwÙ[ Ã(ìëˆQŽôàr´¹F]s²q1ŠRçzr€·ôy3¨zeÁ>ý#hLÖî£aÉ\Hø-Ž °Ó¬\;•2‚hÖ@’txÜÚ[1œ3€šýõQºÄUFFÝ‚O›âŽãËÑsQ³¦x‚pVûÏŠ¬©Ôêø¡åFUtIOlj<–°a-Fu¨£D~sø°È!ŸƒŠÜ¶š¹|nªŠü/mY=’–Ц>çvX£Eg!kè.d † F";= š%å³fcP"à_žAS°ŒJë¤lè·ÅhhühIJèÅÆuü=¬_Üñ:Õ[1äåÌ*ÇK°rÇ45ȇ¶wÜåoä¯y[-„’Rrª”&ë³üéáó»‹à +Ã_‚Áb»QæŸ"~YAü q,ŒanŽLÎÚ„|'ÝþÅã¶4E:´.¾ø ·éa¯R3<®‡q9Р4¼Z½ĆëÉy5ÂÝYÃ+16áÕ¢ÈeÃåp¯yCñÜ‚ð©Ø»y1Æ€Úð"£Ãï-Wï?½Å…ˆÖ9¦¿8¬È9þ{8†Ê^.]sÍ=æá¾ÒÓHÞKð†i+WŪڥˆP¸H ¢@[/¯ºÕ +Ö¦Áü•åt 7¦2Üž†^†à²²%eø=[¢1/w´Ã)¯ dŽ9W,=-!´ ïHÔZæƒJKJ¸Øãý›Œ^ŸÈp1 Àm;&láK› §åï[ÁàPeI_I½r…®„áWÊî±ú¯¬< ô`—;2Ȇ},Î%K@ +³wy½”z HÓªèºô „¹z%p’Ÿ5gí§ ®Iº8‰H§Tø›~öumXßù¯C¾“Û<™i¦À~¶^yRR×ÁUD0˜ö`ðQŒ… æ$/Ÿzë¸/NÐ[‘¢Wý)Ó8¸rĆ”³7'î1L$ý§DøPTc·àÑîÑ/ƒ²4 VYtÌ|B…T*ÁªSVæqO¤=TÔe&ø:¿·°OK¨€t \ ŠÎ3å ?¬Ï¡™"mTz¬`®heb3L)õEEã4”Rœð/ç¦]¿2¢S iعɧJôn"ãËž‰†nwN þ¹±¤ÉˆìhÄùŽéÀ¼L Y=ëc­©µúãùñõX½±ÌhåØA|¿FöykˆØ-F2ñ4’ô&Ì £S(‰*°oW6â3”ÿ5¼y>ˆÒc ·¤à½-D«!…Ös|æwBuÎòÜß¶qm.­§oªÏõƒñ9Ær(Ï‘‡¶å‘ß0ih€Äüq4EîµD]‰ÐßÁËÎLw¶Qþ²'¿œ8í‰>æ\@Ä”“ž€ÿõF!pN,HIÚh¤t5G­=Ò†ì/·9³Lý§7£$·%*›¤}ñ6{e22Ì+`ùðNe¯vº)U”cD¢>©gEe{ÕÚßÿ¥!ÒÆO’­åe°š ¢½Cmo|²õ!'¿óW…¶\Î÷0„Mã8'£ÏŠæF7B:+Ë*m¸ý8+†•{ZÖ+O¬ã[kÿò·cáXéŽpcQW,hÄë±öc*7Lžä¬1I@½V6¬(ý#CIoíö·ü-”ÎÝ5v™œ£_V¡-G¾Nçÿ;¥Ÿu޽¨•[µå°Š…EËqöŸÃÚ_%Ê®s#½£ç¾)‡Ý9ª¡éõ²kSŽãsÈñë·u•Ê‹U0Õd}8á§%«)ÇÆç¸ZVïÕˆ´ÆœM˜nd°! âèHüyl¡Í[-5’#¿€|ä7³Ä()žùž'†=ìm`3 +AÐÈBûµ7-—`Oáφöv%³[Cm6|ÈäC2J7G¦~#+€Ô.$ÎS*5¼(áLÊ¥—Ur][Bì2 r¹¯œÓŒËO0}nKü*g:¨+ü¯Š!ÞzáQ•aRޤCh‰“e$C‡äíKü³êÚŽ3Ýű}| +þݤÃx›¤cé1HpEláQì™}Êo*¾¦ÁE~6ÚÐn4µË’vöƒ@”ÛA,g»5¦1§¬‚¥ó%`ý¡â$ºo¨)QXœß÷u¸?ºÝãc"R^ÑÐ £©Žt`c‡µ ;VÇ3Ø¡`–ßyËœ¸–`GÀu¸'›¡Sfa×}à A5ÒÉ`&îìo§Üö:‘ "HÚ²PŸØ"&òÁX.ïG{DDdAaÒ̯Q¼«q“>äæ³EÊtŸ§ +ÑcØ}~ýÛ˜äÎß%Ö-–ªQ +À+ý›Ç@)š£|¶öÆÿuÑ2ŠZ3×êÑrˆài)Ô/½É5[]†drÿ‚Ô–:\.¢‹œ°‚¿u7üýãœ.¤Bô¯Cðá;÷ÿpÇ륟oÉ™’Ä„S ¾–&ÿøé ²”oCa){?jg'L{ç®ðҵ׆ֶ~ + Ïœ‰Ø±ÿÂc1‚#dcBn¤ÈGãdmËÈ>¥"w ~Ì}ª<<#`¡‚A +‚P 7êe½HÜänå!€¨šsº-öÍþä—,¢ ‡ñß÷ð_H¬2‘?s§üÈÙ"w̦gÚ[ú´ðÁ/2w:Žýâý¨žk·Èt8j癡%·Ï$‡òsÖ•ä›ÌÞ¬_цG`O°–”r²)£µwC(ºÇ44l©Yªï‚kE”¿¹12k¶ú„Õ©›)œƒ°-¶û]¬åM8é¹…ÃBU-{vÀPËÙF¸ÄªX£–zm¾"½u¸4 ä6Yýü8/RtR'VT"žÿаœàŽÙž-9ûÝoÐt&×$LžªYI*¡øâ¨B&Ç´hù†ªá·ýƒ +žÙIep7£¶2Ø`ù¹Fá£òüo‘Eg•îM*ÒÃÿRä¶>X"»ÌâÕ0xÀ‡o@Þ ^1sUé/±ê•K¡+¿—Q­å“úü)ʃ& ÓÜI*lW$Lñ¨¢¢9Ê"-ä ÃüögýHí‹H4Ãÿ—*y &;¡ C›£ÞŒ-Ýþ tyì7¹3Ü œ8™ b!ÏÌ£—E…bUuÒó·9´3(Ùhu–Y@Ý™Žn©Mœ‰oàõ›òú¼ýW=âþù/<¶¤ÊÝ×[Y•j—S¤·¤±ÎÓgKý5£VÎç=rnf=þiŠ”wµÀ‹ ä&‹/êû¡B `ÆøNÀÃØû°Ë S)Á +#Øë\7'2‘3Å3YLÄp8YfAf¦E ~ÜO•‹Ö‚R×€¯žz5¹È¯j¥  x{'~y»ÚńۼáAÐJö¤[ à£)øëËÝá 1‚Œ¼ÊR´o²Ã•ˆàR {¶xzãUñ,  ÐqœY)Œ×¸>ÖîlG6}¦§;s3tÑ»¯[\W°ÎZ–—å)jŽßÊJ 6„¬O)zk2 +¬q/”‡‹¥8-åP)‡)Žôd ÊÖ?ù1ù‚‰g‹¹)8æp`[‰Š‡Ö”´ü2t76ÕPnªClr–á^«,? mÕh|ÏèÏ%;erd2ÇØgßÔ“—£aâõc@¡ŽvïwßkgéW^b›£e†h”\°ì½yžÓ +Ûëõ§D¸kvVOöÇ]ê‡Z¼E‚kBd˜¥7ÒgÁü À$W`äÅeøÎK[vÑ™õòã¸ß14À:¿+£"²JÔÔñ\Ÿƒl c²DiÕ#é`I¸=K=ˆ\F}¯9¥v¸Kë S¡^Ôä/yŹç7½§l/{ÔÂ*Èsòç ¦šÌµ.AØ*“!þ¡Š¡±I×VW¯åø€Ûãþ©¢m»Xã½êosµàí)Ö>”»„ûiþÌó`[XóŽŽUu…t¼ +ÎÆj-¨¦‰M–q·I¬˜‰xÿÎ$èkBûKò$+üpéŠ>mGÿÿ &Qû·žEH( ÝÿÄ9‚M!ÖN‡÷ÏÈÔ°†–éfxXjPµ“SöƉc!'ãK¹Ö„Ä?“›¸ÞÄp«»ÿ—)#t äùVægÎxTH¢,3½¿ÜzžQÅ’~ß.?À%«þš©{lôhÞP× ƒ˜ŽÀ±úeù½V…gó”Ó,Iåq—æh_öÔcàÉË{ÇSÐÜ£Z;+‹½þ±ôû$ÓüD’?5jL¸ÓÆšÛt“ž~Œõ£Gú± +9Ô¤M•Ä­š˜îVÇnŠ„# Ùct |~DQÿ\TeñNEÆ¢æwðçDhõ‹;4@¬Ë“NFñŽ@´KÊVI”ÒÒEØ%g‚u=¢w ±–óVG +Ï2\c@Ì£fúÆx2ûQìã4Þc}FmDbqr›£ cH'¤®…xNrqA) ‹G5 ͦ¿—4ò›ç—m¡­¤fç#ž¦íBŒe8$|qö—*åÚ`±•<й‡£™/~ œboBq8ºœºÿOz› î@{+– ‰K•µÔ’öàdc£é÷#9“±ï¿¤¬uÖ€|éù͹Ïõ¯öÿºû^IÞ¶K„°Y2εb÷'ž“ì&©¸—O·¤?£It˜émð ÁZú.«é[Ú‘MÔ8Q8'ÃûL"p +—ÛCNU* ¨c¾ÀI9a`á¢yæ,D/Kù—Uû–%¶êÓWÀeÿÄHZ»!xJÊW²7a2~ ÍôMÕ^ …]‡ßSuÞy3AvpãG-à 5P)‹p×#B(¾ÄYrµòž†e@1ºSÒå:áÜ0$ùÇ<@´Y«žpCŒ ötÙÛ´÷ßò䃔 .p¶8=ÖDÿàÅô†ðüÃÌW K¾Mž%ÎñUAàù?ç&õ¿…v3Tª~þ0ikÍ1âšÞ`¹û«]KæZ úˆgeHÊÂ5b ½Xÿ¯›ôó7ÇÓM^Œñ2±§cI}$@ýR‚0JB:"/’¡Ãä| :àQ™Œ~Ž{¢ÇÔìt¸jဴë`1êsëv‡£¡?ëÑ~­q-áÞߥ¾çI/W¬ŸfyÕÏ.Qb_ü7­júí¦Hdˆ/4'6ì*jSHx8.'¤»§l?Û†æ¼8"a^æÈËHa²fwÿö[Å`ÿw‚ìv $^4`8TËú–èðJ]¶e¢;›¢0ÁCý¾9!@’ÇWÁpËrαKö<`Ý+bÈÌËDò š£D ^\oýJLøÞie„êõƒw±†b‰ÏWÉÇ‚ll@d¦0ü?eHoŠ­ùÄ*\*0Ô»GIÙoh¶_h† ú 4T;×°Ý~{¼è;qùŠ}Úe4d¿>îq¶Û¯ÿ>vÉîök@®p‘®Ý/ dy‘ÙöÖ¬³í|Š@ž¿Ç= ‡$ª¹©ù´ ¹‰¡£¥Œ°¡ +Qm¼é•ÉÙBæ °·ÿ«æ&Ý4+ï`)ÛFÍLökà1Õ›¼ýzÞ¥/‹¿67••~›ê= Ô ‘›ÞܤÿîdéÊì¨dÇöûeÎë%ÇZÕŠÙŽÑ)ûí~ûå#ÖÉYÙ¶zJ/;M–ÛoRBùc÷W®1û I:°l¿^q_ëý2¯W·_µî™Óv¾D Û@ÛïˆÌB7(÷âå5ûµîŠÇ¢Dˆe °ý~ük„˜6唨~™½m ãê¤1ØsûTÚBeˆ9û =!¢U ™ä^^'ßâ!~ûCä¢DÌw¸ýêH1Õ^Æ%û­MzµýZ,,/&XoÂÛ¯)(€ºyJ¾Pi–ýb¸ýb­8Ý8§Û2³g¿)Rœ·ê½Š&Åß~•ŽuN™po¿ë{ŠNæt“ uûÝFJžtÛ¯,ýyö›^¨¤»«ï—WÀáRv•,X"©=Ó:ñÉî}é?eJD­›Žó‡“˜üoìÜ%ûÕ•Í~Ú~](Ã…¼éfÿþ·ß9mÝqœØoX7tS6vBX§éçºiøÉV}v‘kUñIp:[íZ·´9-0y°ýÆu³ –øÌ~¯w‹yŽí÷• ±ó¢¯›NØ® ),ÀÉ Ì~¡ê¦DÙ~1½OÐLˆUr$CÛïæ“UÈ“)—ý®è¶_¯’žPàÍpšo¦yö;³•ȼñÙ~MrÐ*f‚ç­¢juûÑDV†dÞðç?äöëÍòÔþPöû—õš¹ýºrAëÉ6 ¥JÅö;!â¶b¤¥²_‰±wûíz¹dö;}¶ßˆ¿Ž‚0¤Ó›ß·ß'4ÀïÊØÙ/ûb·Þ°ý*ð¡ Qaêlj¬ 1!Ø.Ž[l¿×tΞˌœª™›.´Ù¿ýŽ Ô)Çϒܬ6û<ÞaÝ~®MOéö;hûÕ)º<øç`WÛc=™åÜ’´aÒÉ*ÑLjì˨ßò™>ÚÉù¯ÖK•ø1_E”¸F-…p0p€dˆ”z8²ßöëDÀ|¹çاuPÊž¬056•®*¥ê•5ÂoŠ;ùÚ¼=Ó]k¶öåGS…×=A6[” ¸ŸüÓfǽԴzU¨‹²çiLY±FþÕ+Ö |NQõ6Î})Âù|éÁ­EGŽÀ”QÑàå«j*| ˜˜Z½^½‹"çÁÖ;ꈰ(k^<óïYõæ°ÇäЪW]ˆÈÔV[†cU®Áûs\ñ9[§ ÿ4k°¢Âv³áè4ªŒJ}>6÷ÖmU릙z†ÀŽ j ñ(fäã¡‘žWü÷ˆ6Ä&â©4õ%tÆrëª öUœÅkäþØÃ'õYbže;ƒ¤‚ùÁaÙoI1ÿŠ•DVE²ÙO¼×\@É‘8¨U‰:”3įÜÿCÏU‚b¶WLaà9úGyýNMÅÏ‘ª)»~k“Œñäuƒ§ô¾² ‘©ÉQÉ:üQ Zî³qcœ‘Í”|2oôq§ëÞÛñ^…3D>VØ(n󙡼ʋ,²¡ù-F2›«å Íʵ«OÚ«0T—Ú5d¢IèÕõŠu Búƒ—Ý";1oýâ!JšuYû/3†DËø©Ê`|ÕÌäUÂTÄ +¨a^¬•?3ç,:W#kR¢èÐahAGäÍ Ú…Ô« {ê"©«JJ)š¢ÛıÈôPØêÿRŒ8Ó–ìNÑr©eÈúǽúgîÃ}­Ì¢µLƪâ\µ»˜ˆ†63Jkâ`Pïó£~¦Å *@©H̵d¢Œ÷™—Ayè}¹øývÖCÆ,*B&;Þ?#SK‹wbhË!Ò£<½ŒpºÃI1k†­(o\Rî +;X=ƒZK~ “…i*ŽUïý™âÈ%µ­´dÊÝ}™ª™VŒr—VB±ÜŠ­÷ÿð!rì*w7ëi+F­Å¯!›ç.ôUѡȮX0 Z± Ød¬Ü HŽþðÙ"íåTîZ£øPØ¢ì™VÄÇòþ¾ +À«aŒÞÅÖWuS‰ÅÎ0ñ¬¦ú(­¦ü„¶"X`ºÉg'K·%„²1ÃÈ× +ˆè2 Õ&^ÌPHÆKrd:kŸUš+7ŰËB.íc å®ÿ}P(3´|áXŽõ'Šk]Y^*+Nêä^æ¯ÐtÇ&›ÐŸ°¦*[B&O0ÖMP»i„|«[›Ø)á·nšº×¬ ‹±bVâÕ€3ºšH7¯Ä3$±«O¶˜ &Û1‘˜Ù€%@(`±X’ÎÝ3®Â8=ðèÿLv3‡1:nÅšȵÒ(ÔÅd°U5‡í9ÔLt¿pØmî£è³Üz8žNQËMÌD#YmóØÉxsæO ›8âÿ²–xâ‚O&.Poôƒé¶ã­¡ÇF²ëI…H/£7Ø”f¶ŽÙÝÞ23%|°JìŒ'—ö˜T·ÆòŽÕA`ü,LÆ,ÎÊdâ1©­æoÕÝ%O ¤tNŸ~y™êîÞ FkÍ* $ê® Äç¤tØÝÔòV°€~”aª»Øé`×fwõ›IOÏì¢BÝ¥¾¼‘ܯ)äLØÝ±»a/ƒ/u÷³ —Pé ö¹ÌVoÄåâad›¦\Aª! ;#)´%üÛc§Ðƒ˜ÓA¥m(ÉžøÍŵpGM ³–·{ÛÕý¸ß€òµL¤°¥,_Tu Ï…¨~ÂÆãKÜvVBd€, ‡SNm´0ðgÝGSäL·k€·íövFUO‘Ó†¦ôŒ\žÛH§`¥Ž& Ì€Aˆ•iüÔL¯=7 +º1iTç^½ï!¦(Htª%’(ú¯yº=¯Yƨ[( ·ø-áQ6–}(êþ“æAÈž 4²‰ lv¹}ÔU af¿4§Aa !›£.–ˆ’ ¥?wÆàH4£·ŸnIui¨¬*póOw X{Fщ…q+[_YÕìÖÝW¸2aü%VÛŸj®m®–wØmQ7­l¸®Z‚ñtmƒªFE]³^ª#JmÜ›ZÔêu4îÄÇlsqþO–F]²ò~¼¤Šº9$Þw‹ ް¢.÷b yºx^ÔõÅ­é§[ñ¼ uqÍ¥§Kõ¨ëåîàžwƒýb/ÔuƒôOú”6çéV¨{ôÿÌO·ÜÅá½þ=¡™D75{’à6–#¬¸ýŒ\sºÆ7{Ú¡I#Q—2v-DÜă+£®ˆ UôX»Tìêþ‹ªUþBX‰¨K€‰ +zœ}ô‚\<꞊ÿ¤!rž®¤º°£Cí_Oª¨ üpÿ–óZj+”9`fÂ&NÌfÙ˜xŠZµìÏÚ¥lqÒï™0-ë»Ô@½¹±Üò#Ç€¹qÌ‘\k"Çñ 﨨|ëŒköõýìxåÙÛÒR]­Ð¿ç5«kɽ™\é”M®7ƒÞ9ˆô²ÀtÇúèªûfÇë×ÔPƒ*­Xà´˜fú}ÛNØ?.H›`ûÙÞÒŒ0™~…ö°pÜÞko¤àäñJÍC•Æ">Ÿ¹Õ˼gç Óùÿ 0cuŒv}Zb4k,ß±w˜P½K/<ÌþøÜY¦öOZ#õI¹L³°°£@{\wên—zß MÛ‹^rÑ]É`PÂêNaR΋F”]:®”gPÞeñ·%ôbRÝ6¾)£a¯²·|G"‡¯dO"Åp+òß·xëòÙɡۛWBpù"0ÖNäp2ËQ5_lšÂ‰(ÕÑ k ›aA‰°%J¨/‚]W]ù—„™º€‡êË*4G‹nBÓ:Š]᥺¹?’P}…÷5ltÎZ¹¸´•ô„ ‡Ðép?uì^¸`‡ëµ¶°;Bo$[¬Ö·Ã‘‡K3Íþ +¥Ëƒ0!E ðÿ¤¡»;4ä´®I±CÍ[’–””éÓ“dE̽!8„ +VOe:VŸÈަ>¼»ÿT_šë–Œ´êÄ\ß{‘®þdÂEßy Ï’¬N]›­µF=Ö¬w³ +—\iû[ÅÉZòYï§«w«‘~þE*ë_jXÊdI2Ó¢µè¾Û¨´jH¦S†9iˆ·¡úÖxh[WO2Ã"³z©áu„Fþà•2yn¢–Ze´zåÊ3²ü}ªÛvŒU©ƒ¿ñ9†eóÙ%žŠˆ”nk¡Ó\’‘µ†²–û‹ê6M?Y÷íÊ>ͳ4}®½bÙ*åå\ýšF?]m4kYÝļ;ý\šV:*¡ÎµÓ;J"¢¼QûQÖƒZK扥L–Òºê=ûçÖ’YeDJL›}ZÍÆ¶NŸdýo6¹ß̤ÛÜ=ünzyž¢/ŠwÒÙ!Ë*"ùGW&yFSúmýe«nç¸ê”³„¨µH¸ë+‘u™Þ”ý™¹æ/¶e²½¥=š´âmÑÙOmÖW&KQ–•*iwn‡d™ŽëËZåQý¥÷îŽÙ!‹–þên°^Î<<#sê¨Ò©šáÑ•%zÑyÿËååÍÖYl«ô)½lþ+“ÅÐLvZVOšÞáÜ¿¨³ ˆ%5uò_jñ·e=û¨Ý§*»¹µWº¦ìËÖ×¾âÍÚÓ®0¿Ô™^¢Ò®‡– +É…veBTf5ºCôîì‹ú”kã»JZ¼qè^6LCOé¦aÝýÃKÓéT¾ìVõ±ûrê«S׺/‡Gú›êËwÓjé=‰žiwÈ’[i<22Â/¹Teç²\óÿSíŸÂ/…´O×Ó6x…¥C´ÊÌéÉûÍÐuçð‹e_xwÂr­~¹Zãâ貨UV.b©ÍÞÓ†æü¢´F¬!üæíT~9RšÐ8–W"K™_5˜_ŽÐn{öü‚¾ºLòæ©~6¯L[¿wZ¨ÃC}^êoGûk¯I–¨û)ýbM=¤ór{¿~ ét5§Ç"šNâ!ËÙñÇA½aéÝs1-¼íNªy7éÖã,² VúðZ³úE‘Œ†öK‘™j‘áÙ8YŽú3ãÒiÞ1YԗΚÚ/«yåÏó¥Ò¶_þÊ;2þj,Á¬¹½ò±Ø©æò%Õ(ÿÁ½¢‚¥²ªþ›Le%[}©ž3uy!2Ç…2Ḹ—Y²Ë×–òqËg©DV»_èjñVdË‘so*¿Ùаn/²¹­{q’Êä sb¢û?DœÀ°"EÇ + +ÀÀŠB 4ÀáB‰p¡\(ÔÀ + t`È @ÁムÊŠ! „ ˆ€#à F5'À Å„Ñ@ Ép‚¸PL”XÎÁdØÐ B€8ÜCcƒ>t … +: 2 26020I´€&Xè€(ðiPб6˜ÀAÃÆdDA°Ã:82|8Pâ‚ Üb@AG°[ +,HH2˜ûX¡AjÁ2d  "X"ƒŠqp6â7·1á 60ˆƒÛÀ (Døpp˜Á}P€@Ô3 ‘eÁ„#ƒÛÀÀ0”ý‚ÛÀ@q/¸ +„¸@ã‚ÛÀЈHpá‚I*p¡¬Ã?€ Dd€„!PÀÀ…2BH€@† êâÒb +e@ +Ž ¯@‚‰%¸ nà @&ÀÒ€‰·1$¸ ŒO À—@ñ ´€<°€*ÐP!·QAÐà(\(Jl`p°Ç…%60Øp +ЇGŠ (Dœ¨à%c±Meã @2hÐ  \hœxà6ƒÜ‹@dx€ˆyÀ… +,XqöÁ + šˆpÇ + š°€5˜>¬˜\pÁxX¡A&2 ‘(|ð8?Jà·øP!.¢„…ø@”ðPBƒ ”0Ê;BhŠj`7êC ²!4ÈC +B@¢Ã:0(€Ã…ê`‘€ˆ.tð°$ƒÈ :¼D@ CãÂ…É"Á@ƒ>&‚*600®A*ˆ@ƒ2 ˆ@C5D$4J\¨! âX O AƒBø@E¡€ +DÐ4 áÃp`àBɈh¨€C°¡ÁG~Èp’ +6ƒ‡ ,Pàh̆™HŠ*”Pá1aƒ„ €Ø@*68Ça€„â°Á‡nàƒ.°Âƒ,ðp "|ƒI/ Yq¡H:0 ¡ÁA„3,A‚60.E‰6…r` F1!œÀ`ãÃo0PÁÀ¢BmXhÀQ$|™HF†h„Œ$@tA‚Åè@t€,F¨¨ 4@@ÄŽŠTù@ +å 0PÁÆ6À`G°6ÐŇ. € 4xP +„fà(¤"‚ Œ²À¡‚ , è‚‹ @@hÀ}„_ÀÀ¡ÂP¨ êB!²€€WØ@Z[œPÁA•¤@p$ aʼn>@a h€AlTx Rl˜`ñ@$„Ðp + T `q(X\( è,<  Á‹ 0ƒ ˆð 6|d% !€ÄâÚ[à@” .Àá ,.Ö‚PPà¬Ã$¿P.Tx„ÏPÀÀðãBa€T`à¨!ÂF*jqÑÍÄʨP¡T|À€ +!‚TXè€F<á546­( † Ð8<Œ˜PÙE„ F\(JDDŠ$;ˆ`#‡”`AÆ…(dd(Ád\(Dp€èÀL0,JØã”ØÀ°À@/`Ñ€Ž ‹$Á‘aAÁ 2,(€`€Xpp ðð@ð ÃÄhÐA + @:Pp  À†H ÆÁH2.dÈ ¡ ø-p<„”„²&¶, JÄ :  Bਠ+®A¤n¢PÂÅS£C’a+&\±aA‚„ ɇt¡¸ ÅÀ$4€ɱB˜P|XaÃtÅŠ‹ X`( ¢|¡LP†eGf÷j-zÿ+Ñ“hUF®Kë™ú觪QÞÌoKk±Ùý¡‹R«îöãÑVs›D¹£WºšÂ›q­fOkW÷¾+o™¯¼´Zh#RÄžzªzu8¶­:xZ‹KO׌n~‹:zV«IhI>3­Þ*Ç6¤tÊ´{Ñ„Sú"›'’¯Í³7}ªtyŸ³¯œiZKÞî5UÎ+Õ™Ö¢‡7åÕ*qR×î:G©‰c×Zp]u[›©´Jó½|‘D¡Ÿ¿™¢Þ–¦å*ÑØwËN>ΕÖò#ÝÊÊ”®Sõ2jÕ¨™’ªÎZkY::é®\——›ž´Ö’zVªyÊÔœ³^kѳåÓ¹µ¼úu+êØZè'ž¼„¦¼;Ë*SZ»r’Ör˜fÄ)3i-&2E2C–»Eº1Rcíïy¬!3DuLZK™5WñÖhj'–Ok]êÍR&/­W~\å=/¦6­Ô¬›n!ÍZëÏFGVye6«Y‹VÖ¾†J_K{KC›µ”ÓV6hãå*ÕÖMͰ~s6VÑqqêä\B˳!ËkënäÙÌZSÕn­±Ì²3åó;´‹„Ë}VÕ±²ÝúS™µ O{·eÞg­I¦«C7$ωÏÉÌZÌyòÝ7äL{‰di˜«DeMkÑÎ)ééÕ¬cÍ×!‹­wÔ¬ñd†ã4dÑDò§6éd»ºD9«†œmÖâµ<Í3-ˆ±î‰£›µä:iLYlšç<×ïy:j-›E•©K·ß*­E·þÒ4,ļ–ò±è•–¶FuÖ´®„PCƒH®n Yí*H]ö¤l¿»•ɲÜË‹]ÚöòÇ¿¬D–*/¦ŸUk½Ü¾”IÖ’š½…9[ee²e¤| ݽ`âo×üAfªp‚ã"¯zŽ Ž Ž åƒã‚ãÂjMñµŠúCÉ’¤ÊÇBfÈf)!D>–ãï®HîUõe=¸T×cJ^F·OËR"Ie©z•›…ú«Ôuéüñ¥D$¥&zåÖU±2Ÿ´ŸÕ*E¢Y·÷üêÒ©]êØbÍî«%rR YÊ^²W]ŽÝjÑL«93dÑüùž¨8µeiCFyeô\:ït3µ ‹¢©=õ:&yÚ,Y)]Ýì­” ¡"1‹è—ëñ—)ª"U]¥Ò5¡¾h=xUФ^Jd©2d!{-Z•jÏ%“Õå­w•Üí³g¥|˜• 1²©­¥p™™”ˆˆx„z†h¦††¦§×ʤ+d!Ýë9²Ðí&_x6…§[ë–V‘Ö×*«ò®÷™^¬|sšk†,DY6¦Í´¡§ú!‹G^®~«¼ÑLïîéT®Ò"’âúãnž¬‚,´h_Bhl©˜ŠiFdc&!Â'd1\+*µÌ¬JÈRš™™¹V”þVH¥\(¼µªÝuý7•M¦Ž(@6ÔÔ4¡L +Óƒ&&Ë·”¢‰Ëƒ,¦ß2ÎmL,ڲХN¨*%u™–‘°L­| K­`ñ®jí%D¸xßéÕ–6oPÔVæ:ÂIMKçÔ!dy© +E’ê¥2ͧÑX²,žsé‹÷¼²,¢•åu´£\EŠ$Oré“kiðY0Ó +òÄ—6¹ÏÛZq?ºW_åÿÙ=!"ÝÚe ‘™0•ÌdG×iN‘¡‘:/­¿9Y’Q"V‘áÒ¡Ï;Fæ#3$Ê¥A2µÃA2ûɆv"ók'ÉnW·ÈðÇQ2³kGɬöž%³ËÃ%3±>çêyš¶³CЉåÇ#L,£ îèÙ& ‘A–SÌgíèKÖ$\ëYÙëyãº3Ú\•ƒ{ÄRµMçX.¥¸X5·—dG,Ô¹Ý/7ïÆVO5i.•‰5ýT›çå7/ÛÔ‘)s±šîžbª‰S‰,{UXôÛ­¡ÅݲÁ´©ë¬fUÕê;˜ªeÛõ¨¢]ê³O¦2YH³±ï»E;™Ky ¯f,ª’ÚuiNNkWSšM%’GIVÓCjokÁ,ÔôÙ‘æº6Ú.GSjG¼¦¹ÆªL–fšL£“>ítiHYl׫û*]lÑ–4›ÿ×è¬r®JD/S—F­–ezısyÒ¶ðH­?æ!‹ÉWÂAU&ÞBœT§þ(­*GµTM”ªVZé§i¼7ÚÚnÙ|Վαµ-Õ9G4¸‡G\#Ý'÷„§¶[ËÑ552$ò^Ý„craYÙóHž“Í‹µTfã™öÈ=H^Lõ1s’lÛ´ë^?KÎM*£±ª–Söeî³ðÎÆì$»mÄ3Ú¦¥gD,fém¯|¨KN*ßFç³0/³|¦ºëÞÇ·š¥ÍÝH›_Í+-{ÝÇ̱YQq3ý›Wïò ùl£:¯]–š÷|¥kù´Ð|æ¹ó-]6ÍÙ³ë<…6“æjýÆÐ{¶ƒh<ê¢EÓ÷DY¥ã´ÑZZQm¦U´#Ý6«Ûã´û®Öeíz3 uóÕ ÇVª<škïJ÷ð¾JtFX†eyy5dæ æë”žJefµ³IX;JT¨N\DÝõË7’RR)æN’êíê&‰L­ÎHýSi’ôËËô +×w'ñ<¸úª¢DãœO3ÓŸÓM÷dΩº[#²Ë±¬{VåyÇTE•ÿÞð¬tTj®2"]Ûó­^£Õþ^¹¾·‰>³îú”4•NJxº¾û¿„ë5œ"LÒSW¥%¢uפg=ºîqȾdk^éÕhÑP­«&ZÍõ·Õ<»›¿W}«†\Y£›¿ÑŠu»!ʲÂ3V)1‡n÷I¸×2ô˜ž>"ŸŽô‹VùUä=#Z4úaјŠY¾iîóˆžóI¿¤“®™Þ9ó‘~q½–ôH¯D­çÚìeè2’~)«sú´y,5õf)ÏJIþÙ¢õʇËÊRMM6š²ðÊÇ%4IöÍ_\ýhѾ²Ô,EC%¢wÕwŒ÷ÅLï6¿KŒÐGh‡w$šã]‘Þ•­Yù㻣•Ý—$WŽ­c¿Ì,µù]¦’Ò·Ô&o?×ÝíÒrïcQr™ÍvO<_­ªOïÑˈ$ò± SqÈÊÔŽ†N©hÌòÒž›%Ê©¢Ú•ÔRoNrªuK¼Iº*’šòƪ?ú‹>ù!)Ê+ERµ[c^´ôœw³h¨$¤8¥ˆ¿úH m£š6¶‚,š„ÎÝ¢ûf)¯| 9ŸsÆÌÍôw=©KI…¨YSö]Iô{æÙÎ;jËÚM<:ªºÜT§$¢HT¯îiìjQšÙ;e— ^‰TáP¢ó¾7ÎÓDÒ=[üZ‰˜ì5EºøeïTßMÝ­±ó‹žÞ‹ü:çégS•ßü Vž,©›êÚ•3C,ûêtH6Kz£#ô/o¬º²»Ò¿º¼k÷!M•OgVfc‹uW;.ç©™Y©.¥§«sïÐiÊtÝÙ;<35•§n_Põ–h2w/±P™”}Ч¶Ÿ’hP‰ìW7ˆ'óX×¶I?wª®Ž*íìð,o_n¯ºÏéó²o¦ïG§?Â)²w LÒ®º½Œî&„—Eš“t¨vséÅ*[4ÞT­tnÇýzªlL§¹²Ÿ–ÝÐW³UeuË>±2ûr˜ãï\ÝfW&·.ÂñìhûŽ’)’_aíJÄ–®É×#™GK™h•ÍI?f»29¥Ù»Ùï¡ÓÇßM%”H…6Ç_ù°!®"ÇÇq\ ýLgfexDg­bfQÙ¿ž®w³Õü?Gœ q‚D'PD4– ʉsÝIòrͯU3KíB ËŠ h¤+p\(xà¸à¸à¸à¸à¸P>$e’f5¨Zhš«M«õíïYÔœ›ºÌ‡G¶±Ú(J=e4‰OÏÎZ­ƒèïql»3Ú,õ,æ™æêÊÐÿaå/1_‰(þèBÛ¹‘Ö!]™äîÏ×Ýœ½ý:§ÐW$uHsèT:תéN¢ïô•É¥¿|Ɉ§û­ïú窣Â)‰ýÌè°Î¦Dœ6õ\ºûéõ´¾21úw¾þ²w5RÌ:Õ—Sͬ¥=”èÑy:§Ýv?XY®k=bч\¯ÓXÊ)P¬ @cA%c)€‡ˆ x|t¤È€Bĉ +<ÉÛ¾29_ñ¬þa»jêZ½³~;&y.ÚÙbëŠPÕútx£kµ¥ºïÏ”Ÿ‘æ%­DX×Uü¤Ijn}•z+ÂEWz¶¬vºº5·"ª$Û*Ê#Õ)=ÍRŸ4ö™"!%B·—GY6xg‹I¯O_8jv+Ý]˜D‰,éÛHíò–ULÛO/1™žî’뺿³åu»‹¶‹:wã-zdÚE[¯fá™"ùÀ³zUÕÕ)«ª´p“&Ueû¬R“P0 Qçv³,ÛÜïòÄ=Äåεe¥%T;³ßप”‰ígzWyÞ—1=gfgK¥áj}n·˜zxŸ»¯îLõîg›5xƒ,V»³%“^µ‡KC[µ¶”–â¯n¥ëО9u»šÚæu¦D´ðžÞ«ùl9ZëÑ‘oµtŸi-˜ˆz¸“u¦|,7;,I *êþ:º–Zë¼%»Sa–¢U±–KZ¬Á-³ÑçsžÑ”E§öSqn— zœ6åã|sYe®È©ùH¦¶¸ægeu¯ô^ÓÁ"S$6"ë7SÑvñb·°¬œZOµù ² :uË.ç¶Kd£´m.OË2Õ^‘阎†ùµßÜ¡ÂUý¤nÞ§|·§ˆ–ª;¹ßúìêkÈ ²\•ÈF¦t D”‰~Ñ\Rkþ7&eòCZ$2e¢&»33¼m¿Ôùef2É­-o”!Tø]›´÷ÌEÃ,ͽôOk‰®l“)”·SZê®ÞÌ4¯•k:ÕYùŽiÓþ†v¯H +qŠÈJ5•*•È” E–ÍÊÍšÔ?u1‘>^ûë«Íù>óìÖ”™K[¤DÌ$_um¯Ë!/¨j•ƒ§k6•®Ñ^‰ uwMKš÷f•&Ϻ§¨dŠdY»^´Ey³é#³ÄÓZ³ÑGœ q"E‡‡‰Åã &$Š(&@n ++:&‹ÇˆX +)R`x +'€BÄ""&ªÄÄÃÉR!JL<<ˆ˜cE + |4`ˆðXÑá‘"¡Á +L`PAƒ, `EË)0L8†€ÃÃÄ ++8"/G“ÿ\œU½òaE—¸4ºéˆšæUm?çüZˆ–˜ŠõÊ3*ûUaY~´|´kל2,­¢<«Q^çeôZ³RúÐJJÏ-Ë´VW_è3µí•åÏ~M?—R]÷ÈEÆÿv)Ñ}¦¼4ª§a©‘•«ÉŠvéUÕâúÔú:Ã#*QzïÔôŒôdf™/TK,õ˜‹»D;x;%yÎú»ð¼eKE–ª„þݦ²¥Òá•m|Jc¥F–ÆA¥•—Ö¦Kh8éò\óºOĵQ-­®¢S³]¿OÒi¢ÏõßñìÉzÞWÝÍ­ªÓpWuì·ë4ÉŠ:Fú›il‘ÊG&/fmî:ÔC$›ÔM,+¡ZÓŽ²ö¦\9ä¼Ó-ŸV¯ÖW¤:ISoXúe7°Ô.Sïdå]—S[›vvš¬J;ß(³K¿$nÞÕ\)Oï”·òŒr ‘ÈŒQõl×°®¬º>CÏ•~9Ì£:åXe•þÔF^Sª±R3ïî•°ìkë_éìšIiõìÖî†È©{tª©:[V]j¦¹Ï—âéžtª«_šé®ÈTo³‰ôª$<ËL›Õ7J£Vz~±tkÍ6io¢Ý÷¶ÙÒú“wzd'^ÑNÚ/Ÿ”KmžSãNÞJúZ¤Këäízò÷åWŸj´þÎj Me6§§v7_ãÑÝbêêëw%n]¥9Ó{²þë,<}¥¾Œ4M†„ßÅAÒD×Ó¶P}¥”³~±¢¢VîŸsë—§=´µ{T£¹) S1—0¨pIu™D£ „JÕ„ã0 @òp8Ó“(뀼j$."‡‚±ˆL(Ñ“d "b1 d¦hˆ HêÿNÁ" ¼”˜{!:'•ÓÃ’?iÔÔëŠk/7Ý…JÂÓyúçˆÁUK_$Y  |21i—í^ɳ*Ü&ˆ°öDÆD¾dˆ‡Aô¨TÄE—Ã9s4Ay{÷$'·$*-û”br#ÇÁ£å¿;bæ·oPG¨ü‘Ί'hFYx1!`Eêc­2è2ç$·å —yKâ#¸„…ÒCE¢Ú%3Q,ŸƒHsqÅ"‘ øØ=rþ;,w>fMáÚkÜ!$³T Ò‚P"³Zá¾Æ­¤”Ð×u•Í•„̪^\ 6ƒ§ Q$‘°i\èät0ðón¾šÁÙEB³T—;™ê¿õ£sŒ–<õ.¸ ¶KÞÏxöCσ¨`Z^®1¤:VÅ㲯VL€ŒzÜEší1|4Hn«p ‡²Dâœz©¾—ã +œ –e©Ãç°î@Pc÷¶‹Q…D@;[ÈE+Z£üÀxa—¨OŸIcc(KÃõ"I÷‰ÈVìÏBlžd2 £8@ëi¸4ºøƒÒÅÅ &k£ñÁÖóîª`¬㼇0¬˜’W÷²nØe¯<©È +$gþ°„Ʀäâ›dÙE» M¢ñî-ÿÅ]Ž\Ž=ÛŒ2B»’æò°"kÐ/„–"5>?íO~Œ ¦‹;Î`ŠŸ¼½lAp'¼ ><ÝÇø\2ÇmòZf,äþË{V’”*’N˜'s§b™þ±£¾]‘1ëÍNWÃXƒÓ}H] +‹¿É–±nž¨Ìuµíî2䀒SS Ø~§1éÃ>V2 &¶®¬‰áwùP¾p±Ç˜–Œ‚ú}Ã2/ÍO›y3˜†À-≷š‚àk< ²ÚíRÁ˜ `»0Wt¼Ÿ¦ ÐpLi³Ì곉ãÓi²kƒŒFtÄî=ÿôZåÓ§Ö„ÁÙu9áÆ¦ ê"fª‡z½·2a 0`W`À7¡vL33¥ºcµ-„DÎL56æzÛæ—_a‰°âÁ°t¿%6è½™kôÖç›J>Ú£ûúJ¾'Ý»œ)hÂË4&tžÈ¨Ød†ô³™²›Œ­M Óµ+V§óSgu¢+ŠiþtµȰÅMÀóx”}±øhÕF¥9©È…X +/¥“fÉþg,mh`Ì#ê˜Gç>DA6?½ÕDúhÞ˜ÕÝh˜dz œ†ä5翦L¨×.ýžÆ)“ýþ÷()‰ð 6>‘–©pO=á?FŠ1D¦BŸnù@)#Û$ž:F‹‡JRçfBLE_:éRO–¹ª—n1—ø.GŽÞaxßQœ\4]’ñ~áºÊŸ—Xe}P¶`Ë`Ôùq¹3#6—¥M7É(S^[™Œ*vó¥R Éûµ9_¡&•«ûö¿ò¸ajˆc^ØcLž‰óÙACY€Ê =Å:|æ£)¦kßu o‚F1kÝ.deŒRA[wOø‹dåyéôáÌî6ö\Öñ4û²&Úžmêü">¿ñˆ›Y3% ¨Ôo¸jªT7ɽ_:Â@"V™ñkÞ^mÅ–ŒX•2¤¥ècñ™Ç*¸‚‹tÅù¶…ÄØ' M‹ª làÀú³Íœ¢5:¢ig“šŒ¶ܤ´q@O‹‡„™ð°¥É0%ù½ÊÏIKΙsëê“_´®´"a«&¤AaÒQý×b0ø¥Ž7 À?¡C‘k¼x© +TnìMùØ9沃à¬È&¤à9ËRás®ïÅS~̯ƒýYÐqˆmÝ“œ"Î4Œ£ƒ¯,J.b=Þ€G4àZ Ø…çq9h Ù>Ÿç_²­ +ö,M,‹³™ª*¿ó±?ôŒbŸÇë¨íÝ “ÌLH£W‚÷b-§na”!€ò ‘kGÆŒÛ_º:SXÙúܪZÛ«”Ü÷ F×s”’ûnoþ.[º`HïÐ5e’dB>?³9°xiU\ŒrÉÜ…¥ðhy59»Ï–sD§¸9³Gà­å|Ùá¡;´å[7%õ(ÎóÿØq²|çëý<*Ýʬ™ÝPJR”F]ó?Øë"TèÎ=Z"»Í^'A 3a°“]_¦/îºg­tNWæLC—÷VB#·’JÏÀ ˨Û¼ºd ×Àù?e(­©¢Qﶈk©P‹›RC=g1(ÐKFd/⻬4]–´oߎÿ@.B˜Ž>?tµ"µÙÉ¡YÍý¬&]Í´ôsטQô÷Ú=(ë:ÎCúQ§]>HHyg¶L4qw³I´þ¦·Â”|H’™¾\¹øÐC|ĺ„r‹7W”´ ´àVóhi]¤å³Ãj#gÍ‚ô‹/¾õ¾|%^qb?³§XgÒ7#…“³â6·klo:Òz°fi/ÏikK—¾Ôå"ñ>¨!¿ŠñªMàÖAƒÁE% ©¬„¯E¶|“6oà/þ¤—ècòÄÝ'tyá±Sëz]ýΧWô€tÁN2ÓLˆßù@Ò·Ñ~ € +W*›$娔—¤œý°îX)±’EÌ´Ò»„ŠÁ Ä‚s€îÍžU&çŸ5¯)Ã7—jã¯%ùÅFÎ "|À¹¶r»9Š‹ž–ž-+üÌywÙÊd{(õØEÑ' õsìd>.º÷E^Ljj ~% ¨J?¿¨õ¶ìåÌhÊÈb×Úr™4Šš@Ê9ÏÅNgŠÁa"Pš¨d6>¸§Ãõ¤èêÄW—áWÊG…–T6"A³ë­vu{Òm£Øh>Þío°MNÁJ!"¶·àùj䥺1mÆÓ#“:ä™ñìæ˜ö ‡YÓ[¾‡L>ÊÚ³ÎD«M®œÎYZþëUÁƒ£ {5}yßÿ} ÍQÙÔ{50èÓ\ØYájŠ6®ü¬íáF•K‡ÔÓŸJ¹ZÍp(±ò’Êg&àCæò_é8oežßc2á8(›0$GÝpò#ù¶Ž+ =W f1k¼©&UÀ’ÖÓëÕC…è•Õ¡·ê}u¡ç +Ô[¯·x½Y°žáŒKÏb¬Dð™ +‰ÔëCxFtÓþÆ ‚±é¬1,4¾‚6G<ˆ¾‚­"*BHÜYAoãû5¯>ž»ë‡W—=ülŒäãVÈò²-ÓëO#_ø‘?DÐG1 qµÞ*%gŒ$0«+æg £³ÉI*P°R*QI$©”ƾȣ¼@ÝS¡Î¥âÚ.÷µ­N?"•SÓÀŒÑÝ%Ê (<óº­NIC•ç6Ò5#çùÑRÞ¯{²÷hÞÙÞ,&MbÞ¦ízÄH©ÏÉä':Eyù |Å º4åý¢Sv8º)g¿'ùÊc¦kUäÌê²|tÑñ\+—IhL[6F—¥¸<6g›`Ô ³Ê+±ÇTtà²pEæÓ>ŽÚeœ[¨Œy›ô12ü½Ðu©ù¹é‘SÔ7»ºaÈrÎHxÔœ¨u³Ä%ÌÙÿ²ôilÖÅ ÔèXGCó!Áa/¿·$W ö'<Ç£|·}iÑ·•ÔTâ9‘ ’ÇA"§ WÂÎÌNl©çúÎÓú:"îËkD[]%¸u}ƒ6ûÁ +Z"ï#6³[Pó¢LTC᢯/«|øt3¡ú“Íí‡<¼vœx›ÈõÂe@ \ÏJûtJcª°‡Ívëw µ”æ”Väªá@¦DÅ›^ŠÄô‰±q†I@‹É˜¥ÐO"œðüfÖœáGÄÖEŽ¦Ë +4@ _Æ+j0YúÎxÔ4pÎéM×N $*ë ñ½m_µP£÷©43Ëp…¿Õ¥PoWÃdc¡[; 7›ˆ¿7²x[Yƒf3%À O… µ)fmµ)G¬\¿ú‰ßm"k t“¶páHlRN§+_˜6¤,Àˤ:žŸ½BK"Þ›à·[°nšÇ®§ýL:(\ äÿêš¡W]N‰ßز}gS &Ó¸"º&],NGƒnqwž§£÷±²{tµiÛ^ã)Ž–¯Y¨u jm·”j¼%›&rK¶ ­·(KÜ,êhøK¶—.ù TÊM5Âkî%ÞÇ™í{Ò|9œ]æœ_ŽEªÙW«f±S¦qZ[Þmö ÌF¥+ ߆º¿ÛùwVšV\- Á-Ü ñ‡ñ*~%×ÇMv™ª­— ívöâšÞ¯OɆ²cfÕ8ÑA±èW %ýPjŒ5ƒY!CýëW$³f=@ðêÛkâŽkÎþI0 Éó$ù°cÙ˜N=äáE¿~•j—»}«€$Í +û¼Œp§SÙ¼3И3T…Ì.|Ã@/ùNÑ’= ya AYƒu¶A@þœÇ^-Vg¬”D®yú¶µÇmì)^þ£ýBBˆ‡¨)NÇSÍ [÷ø‡îä¡új僀ªs¨øÛÛôVP4ˆD ¶.êñ#~±¹! F’+MR¡9K=#EQiŒ3Ì*³|31öŠ¢ð‹èH…ô”8IÀ‰h[ÑžõF"˜%–vk¥Ü`“ÛLè/bŒæZ⥺~ú=!…èj‹u|B.¾Í„0ï¦&0x‚ð•Pô›]ßå†fŽHÁa«²Kq ¹ä_Vlû²'Š*'Ó‚drÄ5uI!¸Z_êH1¦R›'ÝñÕ0йüËUˆŒ„â>¥«¦èLS^¸)÷²ŒûvÚéÐ ¢Y9Ö¿åÊ~qÅméªEÄTKxw–NÊýa[fN´ &bˆ~T„ýzÄÂAq» W™ R¡âð­U¨ó iüÀÈk«£Ä…oÈܳô¬fº!uOÎMÂí%¢Tv‘@Áì +¿Nc«jËåè:çÁ­:ò5LoÏõɧ٠(“Œƒˆ4¿x—²'ßÚ:Õct¸U… È´28ù2"DN‡ÄRä¸lÆOHÉy[Å +®5du·föÌÏ‹x +Û¼ø0)]ÌǸz‹ÿ㎸Zp=qmÆç™¬uÓÈyÉäQß@hà ٣kúý€÷¬ó¢VÆ8ÿP³X7¥ÿSEÖÁP”Úsho/#ªé3¸qRžxLÁ!3†-qÔ=É]•²”"uvÂÑ„ðBÕ_^ ȩڋúÅÒ’M÷§È³ùmoqÃYÊô….†* 0×IH±/¼\•£;Obh£iç7jðd>÷±QXo– "êýÙ†BXée¿¤L/Güµr¼†|#ÔùŠŠi×h¦µg¦í[ein]'`m›§à¡Ó Ç¢ÄzÓ Á;] eöŒð-a‡Û,ϤBíŸ"¹H÷r™öOOž·µZp{¾(AkRî®HŒ£ªi +$-ݬ•ŸØ\“_BwFüÙÏ<+4ž#ý¯Ñ83·¹Š1üÒ­ÏÙàQOJ<‡ê¯ÛUÇ:jLÄ]´DI–Y­ÌC0뺃šVªÜ?G¸g¹’é]‹-VË V¸ÕH½p#<êO»Ø:û$ÆHò²0*Tüôô@rí~íØ\pìÂì“b󘓰åunc…™.ù°s¯Y:å2Ûëa7F©$Å$Š‚]˜ +¯ƒ±¤âØÜ(éÄY§\”ɹ‹òØbf†r7h’Ìt\â­– ‚':ÌôµFyS°/ {çæ‘ùȬw/y¶ÂªU´XŽzÊ~8Ãi÷|ZÐʰ_ Xcê›é\ xßè<ðû'Äl]äFÙµ½bÐ9SÄ—ðàL™ fP¢S(Õ/ãa¼.bn?Õ3âwŠò•€ß,ÁïóÊ–‘« n„{†„ÎÊeŽ1-‰‚»0v|«Yc>š72Ýaq”Ü ËÈÝ.{˜ãê€Ýî;“g3ç²0…„T¼#*3`¹Ú+¶Â9]Q^J&¶kCвSÍØò±®%Tñ¯õý¯kˆªI ‘ÃÜÜ4"VUºGˆo|kÑÑàUð`öÙ8: l  «³>)‡ây•o˜­‹4Pª9 À0ZÁåß 50œkª¹—À)/ÑôÉ™|±¥1Àoç‰@¢¬Á§~Å„ØÝ-#!7Ç^‘ûíÙ›=D›Í×Jíˆs÷®FåÅìº.+d×à_ˆ¸«SuWä!‚Œ‰ ßa‰Àu!à'3£¿è~XÛ§p†'¼ EŽfðì´ù FúòÑoÅùIî^?|§Ê€÷y mòûб+„üGÿùÞåkaì)F#e¡„2_\ƒ!_¿ž‚¬–jÜ'ªí&•ší„¬ç€HXš’úJ«Û)ŒLƒÒÖž%Š]T™µ8a æ²íà7žTÕH K²ç™Öª ¨ (ÑBL"«©‰âÍ=Ô¹9q|"Ö m>Uêíß eÃiÎ%™(æDdeê¦<“:¯¼4-š¿b´KnDþ6ˆË%å•èÇ]ûTÁ‘ÃÜ?®‹H zÍÀÌ4âtvâY™ô±ë«–õû#…×Gĵx>2Û¯š†¼+,ËlE°ò¸'s¹ ÎßV§‘ÉÎ|=: %þ´ÿ†kÍ/^‚Úß½$R‹™´… €U7âšm í÷±TÜå¦Õ’AŒ·çZ*8Ú†Ùð‚dí¾KÚûn,gã¼¼`)ûöÝ‚eì¾ÃÞƒ/<Õ†ì¿gÙzaî&’¬­éõj2‘©šéÄÔ3Šu¼+z:oHÓ…‰e階â~pè('™ÚJ‹Ö+«ÇÉ(0§ýÑ*…‰¶ìp– yFMê~:mIA[ ß9Λo&11+4VÈ„L»”ÒWùƒ6¶¬8¤±7¨,|šh|3xˆÑp[[D\ A4Ú¥6ääNë=•¥€vÛ˜+¸ìq†¬\ú ÆÊo“oñ3ë¯×àñ´þRªJŠxÊxö¨Q†o> I¤¡Clˆ‡~Û­€Œ‰iÚFˆ2ïA¦jÝ$Ù&sH~鞟5k¢d#ŽƒŽÅ"Ùþ|*Rƒ„ç€ÈÉ:µø +³ñǬùìgUBg™\À)†¾‚ƒŠ­Þ:U™ê £¬¨(jd&ë.mdä2ÅNéK}…2qþyà5/bWdXIRulûÆ^2Z$‹ (qI_Ö¥©Ppu…µ +0R)ìј„Ð( +“ri`©YÔÙi÷?çDÓX=>Ö’JxInq$% +?vÀý!mÚË‘‹FAì(Ñ!ZYÚx©‡í^E²‰Ø©îÆvøð$gxPO®“Vê(  y¦O¼œ5ø‰¼ìW²^ §6cæ–¥U”˜¡Ýr×Zãø¬n‘Læ÷ÄŽ€«¬×³ jˆ°å.Y>ŒHF7d(oû3ó¾6.·ƒQ+h™ +!¦ƒ¸Œ„Ìêl`üšÈfD½®°°X™:…`"»˜w¦¤C¿}Jl‘7„æL!SÒGA9DıD;Öá4œ+^¢I‹ß„Z©FSlçg/Ex…P‹ÞÌbi!Ÿ @W‹…4áÏVOU:/ DçìS"ô¼1´2=.è@BZIè8ÿ¼/s] %¾q ŠMÔvQ(Š¡ßãb¾mKJÙ †ª•ŒÒëó¡ßC”h±€g5v)²Á +=á/yqq0³Ü%±kÛ~Í„r€„œÞB&ÒE[Hºrã2YW¼'€bö&TÓ kŽÓ½@Cñ}Ðažê˜ +b¯rNp…Ôx™8Ñ£ºcTÅÇE깤 +•X×ÅKš=ðêØœ+á¥]gÌÈ:BDΠñ¼Kˆ}±ÄL ‹PH8ó¤rÕ…ƒ©ü¾"áaÑ,§¤ÐFTj*3%¯…é cªr§£wìP§¢ÖKÈV/“܇)–¡­˜JÈŽ™US•Š6T¼›ÖPsê—\8_™Øœ~S5Ê[é˜Ó±/\Ñ¢º$lÕ3yð}ó>stream +Ö‡\ôP€ïXº5œ?!¤Ø¼µ`£ &²¦¸Û—eÊ:î¼6Q}Dó4Bs! +Íô› ­µ?Ç칊Câ¼çå^Ò¸¤h…4èÑ®Ýø¾S?ö•=7ŽÅ²,ê~[˜öÛ*V„§6ê½ š®Gj¨Éwa/ä…B„>s[s­¥“‹>GÖ  cd|áovÝÿšj¢uù<ѧ‘2µ Å +Cl³Ó“U™/­jåÞÔ¢Wÿ¥Ül^!²Oj˜NíCø«·<¦¤Ã}Ïá´ŠWºÇ7/‘qÔën•LóLŽw”9®ý;ôeÁïÝém~"Ðõ–ùã—sfêcѨy%ÝÑ…{Nˆ²Š‚[[ãçFz +½3ÿxþEÜÙ$´¨z3ÉOˆßš¦ì)uþHNy¢u>Õv%TÕ0¥îá³{-mÀ0¬\ýªrH5^<Ÿ#B;i iôz—lQJ+ëЇ¸ÿ´í›wËE¬ÀÛöÜ`è¢Qªƒ3 ôt+8§Ç;gì"QW¹Â2p:Ý …/Î\r¿:µh–sªZÎ:…Ûø4õ6ž¶$§ÂÏt^ÐØ©Á5ˆ²ræT7!Í‹2ƒì?¤ð‹<êËU™!t 0¹JA`!¾ï¡ÀÚ"–¤cŸ<›§ âÆl£‘ÿ¼ê쳎5Í2„dšSmô¢ÏøÔBÛ¾Õ üzÉ7æÈx[rùiw”Ò9308´MÀµÒá@3ѹF(\“%ñ]í5ƒš–RÔÝzÞOãKÞZöY“¤Éòèd–½òJj72«âHHîD¥î5Ý‚Ë,¨ÇÛ+´5¨U<òІŽÐ…„gÑûº¤”·Ñ~rü!€àä%±–]—ÕÒJëÑè‹ìDAZd™ù¿>µôÉ)hŠã2Êyhª&ºK²þ“Û¨õÙþ¬›ÛVÐUkX!ÒmH”!õUMö-ĉZóào½~´ Jú8âôHG)²aMrkÇËvIGÄ¥Ãæq¥³ÿ† @@ }ÌE°&Ã̪ýþg‚óÙÉ +„çÔ| %Ý®Š´ýzäšÉ¶R徟…Õ¤¯m”èWß[86Ä\—wJþ/¹&!gÇUñ âpxÅKqÁüðenž“tžÃf2’ÖÙÑtÂ(½gžWŹɮÐrðuØR Â?½3£NM·OvJºíì•ck‘ÒVý«¹£öкjó~ É<É ….¨mºL™ n Íß} 0?`CO`ø^öÅ™GJ#óÇéj‰’ÂsO;¾WRft·H××€s2Ð ˆÕU¡cá¸$p"ÈæÙ2Kœb¤KÂm5>å!Sþ¬Š†˜Ffn«Kn<Õå†.¥F1 ü"¶{€QSßihPÔ–Î#ÀHƒtØ¡ãÄðnÐý/˜¢ê&àz߇nÃ+¾fÇ QÂ~¤cÏâi}òpt#ù`w¶»ò,.T5Ï]O>0ænNâ[A@¸}kÃö§µ$4ëÆÙ;pÊÒ®5í¤+ ü£¦S›Y¸ès¿3'»L»wKlßj•›\A!+ÃÛ7BÆåqa+®Ú¡jˆ‘3í.‰/MÞø†ý7^ ôgô…¡ €Fq1døL"T³ÅÌJó¢b‹ @qg8}Ⱥ;É܆Pq阃¸3È¥‹Ø`k¾Ñ`ÚRîÒþxòŽj.‘Àû N}ŸÏga»Q³Ô%[`…ÝZ&îM ‹¡á5ÿ5Äú 8»3ò!¦»,ÎõfaT6`ÀÛ‘8¦„ÝIn\c$"·Ed¥-Á…”ÌbÌÊY´¹sãY0·dÍ^òHЬ—§¢ãpÖò‹–Ý¥||as àøJ€Øñ‡þ³zép–5åBf>„û– nÌΙ©1ðnöfñÑò,­£0lJh¿ à»yÍÁ™U <ÆŸFÎ= “ø9TØh$€WX †ÜÈ—–—P½>º´Q¦RDZɄw¨šÆ¯+Ôveó!¿_2àjjûüÃåÑøñ9DýgP + Ù@ÉV’{¯°‘ BB M?à½t`QK“=°°ÏÕÖM‘óYD`ÜÉ™„¥ qM;q“{Kñüãø™škc6ÎXAC3àé Ïߌàû‘ˆÓ#.ÿ6‘þë––8rY‚õ˜ª­ƒ–Ô—>2 uSÆÁ€Iž¤ŒšªÌ" E÷Tìõ„†d, -ñÇ:×óáÕp\"¸}ûôt/vþk½¸±{f” WåUxuã÷ý!äÈ^Zb½*ã_WƒCrœ_Ý)îffï>'üî*î}âqÓqþ°Ý7‡_5—¿m-f1 Ê 6[2!_Hày;˜­S/ u¥à>¿Ëð4æ4 ÌëÕ ¶sç¢jRˆ˜¿À´­®ŠË…¡]nÚ‡XOX{Œ½‡Å)B hÖ¼7í«Ss¿™kiÃ7“žáÌâ">•I¼·'ªDy4':UDX2Äp™å:–_Zчa×ÇÙ$`±e‡¼"”wÝÇ`k ‰sëw¹‘yÁ_ÀFw²7æ”wWz#’§û,ù‹+÷£G‚È™uµörÐ’W´ÕúÓæ¯™‚º„½ÿøƒû°ù!«ŒÞßCšº¢±˜ ë-L—‘«Wº„û‘kv\£!°;Î[¿‚¦tó;’(ª…$+»•)–ýÇ@'ü¡ìÇù +) |ü½í–ïUe¥%œŠGà%ó.ÒÍ/óóñª,͵$19 +øA“@°öA¤ûYé­¬Hk›Y,„ÿþe÷*b°âÛŒ«¬Z_% 9gáX>€vPª¦ºDÌ[[£]¬£‘ºÐö¾0À„Í(–ª ×ÐVÝE85\aUá gY,ÂB ßx"È–ªØû`Ÿ?h­ÁP2J;zÌ ÀÅ!”ÌÏ„hh¹‹`CÅເ¨c®Ÿ ]$Ý}Jpí+Ü.lC)䵂š%*x´0+6 f¶+\ÎìßjõTï7ðÖåÉ¡'…bL+{[‰¹Ä Bÿ®ÐXɺ°õ¨¢.TAA¾Ò·ö˜#iuŽy6ÐäÜäuk9·—ÀËýø3Ä3!ȶ§·8=‹Ž óUºV—›*ø óäÛá(ªöוW„Öµ§!ÝæìÊ™N¶^›E~1`ô:–ߺ%¦Œ`0ÝÌ÷œf®óÛÇÊ©¬"I6kERN:›%ý~„¾‘íàKs×`ŠÌYGg#ÈD›_ùm™hÂÊÑÏÊ_eܱ^ìœóR?½³ã5˜p&¨M¢eífÉC=O‹ a•÷›•{m¨MK­†µ„Jž¹“U ¶ð8H‚%»Ú‡½ +ŸÂîÞ›>©Ãå$( “ =Ï 3IW©Oó:ñêAK,Eí`i+¸ÍJÏAë²È?­\ÒòN ËÞB¤ÐÚ áë_íäH/ˆëî@#8Ì¡–1çS²œP9—¯àΧ{¥Ð¬«Œ mª±tr¯Ç‰,ÖþZwÕ‹nJIeê×®v‚Žò.i•4 s+øIná™j’4~Ø ËÞ±ïúàg$ »S¦Ü³LþA\û5“¾ïõ„¦ûAÅ?nÇÒVcew&H„Ûqª^òÑUq³‰Zà Ú‡Kó©!S~ÓP)`¬ÌÕFÏŸ[ü^ŽÊ/M²Ô±(B†±BMœÿ C‹,QòÚjÈðdÜ6Ì(rbÚØÊ…1jn¨ä +Ä>»7äD~Âå§þã(FÕ$%KâT󳕜b/66%¿_[9¾³¡w‘øÕÅí!·q°ùå—ÔU®>8Y¨ËHöšn£¸Ý´ÄèšÕ0 gô”Þàâ+‚™SÐŒׯ9›Vµ|Ô*¹8û÷ˆ÷Ô…91Ö°MCL_ˆŸ¦²i?\Ætƒ‚¸Ý<¢;‰d—GôÝõ*±bôqT0“+×hß,Ö›}ˆÁ#<Ò7¿`)l`ÍU˜ ½W’`sZyøqí=¸Ñ¼FÞ;e¶æò€íÿ Õà)µà£úål KoI×…Ý¿¢­Þíès+ó —Ÿîkó*6~3a] Å|:TqµOd1VÎ>mJØÒ½L˜Bm76òä‹° }©Ì{Á÷Â-SBªÙܘólÌ»(tCGP ¥aÍsWXÌN¡ûZ+”VÂð®zŠe­ÜZ#ïzKT{¸gŒZàB`aŸÆwþO®ï¬§b1jç ˆv6Žª‘Ä(Ò aÒÈ¡¿àŽÍÈÆ8#"Ôl¸õm%B:ÜG¨¿Õ=#ùGmðNÝ~B¬¯kÐF»û<Öˆ›ò§|€Ðåù~Nœªê)XõŠÕƒýÊÁmiÔ)š×¨ B“ëCǪ}ÌK«~X Ì[‘<áƒÃµõr“ž\ZÒ£ÚëØV h¹ªÿ@/<´é 3v¹J®ÖQ‚‡@Ó¼Ð.ùìx”cÉÓôd Ñž¨L{aà'1Xt¢‚T~ÂÄ'~üºÀ*àr9±@ù;zªÖRU¯/ŒG„wWç>&×è§Fš"¢Ï<E¹‚ZÓƒ¨NÆCqþ¸<†‡¹åEÀ“éŽ@'ÿ¤0ÂÕÊ,ÄI\EýEù:i…ˆ3ݾC§”F¸ÚIDšÂŒÆjú”ßK C„å¶þ!UUnV#“ŠÔ£g͘^ëvá¬rÀ¬j²)~:e^ûŠcF¿Wí%«gwÏ«°?p\«Ã¼(|­i·gR¤©Ô½ÚSb—Øøä.¡:|÷²^=ÏÈ!Èß!¦õ×FÉc¿‘tH‰Œœ¬·äVñÖ|qD+¨bhð«› +åkŽ®Kç"·Ë‹fT ´<H2RÒWQ8å:æ{Èa7?µ¤—b5 â‚huõ© UßʘŒ»…s(#Ií„¢!®›LÚ÷l M%€`™éG#CædÍÑÆÌ ùЄ›´P]ÕÈ„:u#îÔ*ËD|0´ Ú±~†á^†¤EÄâŒfš>)¯½Ýa-Àͯg~%;„ülK¥Œ]´º’١⽌ò°ªÅÜÄhp+—‚þ†èe¾¢§ô°ÕÔÐÔãµÍV{TýóÛ¹²ÞUÀÆ ë)“ñS4^ïë©'Ó@~œo#hÌéæ +ºÕ4Îëcr WÜ×´ªt.Ü’€"ÊP#"Ê`pÕD`«3Q¢Áéú'@¥D&GÝ:"x½Å`S“•oüöJ>ýhŸ¸nõ_N®Kåä…ÉÅcá6L0­ZCà÷°`E–ñxóòyî÷ÆÉ›2¿™&õ«ìš|×ÍÁÛ>ÁËIÂ[!Pyä µ¾å@i¸‚×ví +n „i°“”íO -YS!‹’w…¸Ê¤UÝYÙòq²AÜÁgUO\ûŸÿûZG,fýI}êó°6¢±&Èi«’^ܵº¯¤órþisVüwÛÕt³ÛÝ|úPO§Qæ^Œ"žÄ}·m2Ùà'…#CÞ)ª¨"šL± +f±˜UòI„ò}âÓP~„:L6þp•$V¦ªt L ž0èL¢Vê¼p Îbé hÃ%x— +ùýª‘­¨à¿sv•ªØTN×Crlr_éUÔ‘SZdDÒËaÌØd*=ô Ë Â æ;ªFßW{§o;Àr7jÆq{ ¢sá¾RDå•I­ñ0»'ÓCWÏl‚·V®å’®ŒSC'TZP>ûéñP¶È:)Âb\ÂN8|ç÷ÞPC Fè›c¹û‘pˆ ”Ô ‡‰"ê³üª9T‡ÈLsÑW@xT‘H³ V×Äèzq¦ º­ê€#ðĵҘYµ¾0Î2r3:QÎ,K m¥uü ¨ê€j~ "õ#7xy+!tO”T†Ž¶Š ý"Pï(qΧ:ù|çDÊ3÷}i  + +Å›0é‰Ýïx‚¯WÙõTÇpé5tÊŒ±÷ Ä²­1Ý|±K¢—E2v«TÅ”ÔþÒ-ÏP–Œäþ.1\‹w˜­ö>Ò˜4FL (w€‚C„?ÆC’RAbÚ].Tµ¨L—ØKUöì8fàÂo˜[ ìœfè4C’Ÿ~‹ÜŽ×©ÓV”ÉÙÈ#âç¢-ìþðEöAÛrÛÒÏõŠ»¼uÝíB mÎ\M«…Zs´O§6v«Y-³ÖAzãêVŒ¢õCá·]¶Ð& ø:\ A £r¤Ò×ñmÔ|é]Ú Ý !‰ý®…Ô¨ŒéÓL‡›ìŽ€˜°es¸þ¢~ìoÆD‘W!ÏO±z6HÎæD›™}W!-WÈQ.¥¸qÛ*ÜÑÕ¹)äÂR~ÓWðé*V˲Áð·Ò+f§„ +9æs- ¦VØHÇÁjrµs{4àgèÝâ=•Y¯•Iõ,[ßy9w®‹_$?÷ãj=WrøºpìVúâß5Þ{EÚˆAu¶óf!Š0y .”ÊG†&N`m‡‰ëhj¿="AÛá4÷Mîðs¬}“K?ûp*Ù™=L ìÌã’3ת°¢n"eÙß°ŽKÄU¹”°T96\àw2(Έ‹ð…ôw®ÀU×má¹¢4\Dë§B³ö/­N^‹Èÿù«ÎQlƒV•i>@¥ zÆÙ.@fÛ:wl;Ý2Á=V mé·½Ú•!îrI~®œy~Z‰A;F1ç =„~ðx+{ÉŽ+1 !Ï(¯E™æ™ùÌ$¶“h“c™µT–©,ó‡´ *ë'}†€ò ˆÚN’&æ×®¾`UºW7¯Ê}’Ös‰Mr¼* fºb3¸7Uªt„]ÙΪ´–êGÒKì½ÅÞϸ¹ÄFÓ-vUeóŽÛ‹L||^lΔØ;þÅŽ `‰ M/6—zZ$ëîÔqzUÄ,vÕ˜Ó9-¿éGÈiŠÅÞç§!±}×»…=ã™ÄÖñ-64áe6Å-'êЗé.¾iA¼«Gò   +¬(â'2j4C´]oØG²ÞñØ*‘kxl\}É‘S½D² ŸñDŸÏO¼2zÂí5R3ÜÑÄÌ@Þ-fêZŽ_œ êýÙFXä–Áô§îü\”Æ,Ýuc”¯+·ïŠ3{Ú ÌŽø*´Ûï¯sÚQœÉâœë9L}XΩâ_—7˜öÇüË- +G™CfÂ…¨ÏDêy™T·h,+<Ä•è‰j±æ_û9³Ì¦\¸FËâÖø±83í|+ êÜœÏj éÊ1ƒÃ—îÌøÕX7[JŠ3_àØ" 3Û¹XjkX5-Sj‹31ç(k>ËìÒB9HÝŽ$;.Å™ƒóhê/£ÎL©8òæx8  8ól~‚É^ <öUñ°)”¬U;M>C_šÕ؆ºWÅ™àÛw´¸o9pÞ…Ç&”Þ›P§þ{Ž1@»ÁVÞí2­¼v£5J™Îp“£OFlQ ®±UVäSÚeu™TŽ|Ãòï\…âûq,l_÷÷ Ra'²D¿Æ~!Œé*ø²C…ùÚs¹l×Ù~8˜T}ß·}€>ŸÚraA +áî*ñï*:8É’H[ꇷ™_/´ƒ7 ™Ç“:¿•жêÀZ‹AÊI§Ø×l–:Ø jÛƒr‘ZhúIUyxMïîJbAWa;õj\´'ÐÄ0“q$uI£¶›p“qÞÊñçmVKÞdR+b¢à™ó%§jÀšÝoØ´k–r,vÔtz‡•½£ì/zagêˆz’§Œ*Ĩ{÷I«ËP6¼¬‡Ã;L;Kfœ5íÿæ|p¹ÆCE ¯õíråþœf‹#x”ˆé*“ϨÚvSìl\ÀH5ôÜŠXÇá­I#HЕXá\E*$ P ÐWaPåDÂz³€(”îݽòŸ1—ݸ÷²Ø{LjÑù-.h÷Þÿl æÙ{wϱ„ ¸ÀѪ4r¯DWLHƒ«-.¸ª!PåœÇdE˜;D×–¬jÖ”[½V8ºf§"dÚNfg¤6Í×_ Lz#µ)©íÔÍd©¿âŠ£Ò2~âÔšú‡×Í’ÚÞûѹ‘Ú΄êÑ;¢oãÑü©Q’œiù¡éH_„[&“zî`7µæÅÅÀ]·ÀE/ˆíŸ†'Öùd럭•¹¸Ù5óE«RåQç|‹£íê½[“Öì¸D*·{ß0}”÷¯VZË#¥Óg2Ã3.dÊ<Ÿ4B6?A ¾§ìF”ž–){g4‚yªJx@ «¶õòf/ Ч(fh  mŽÎ ý´„£þT’Ö…®ÉµÏÁ5Hc9Uh{Ñï[P×^$“7ÿçíý–‰}èÜ[±ÛŽ<^eŽØN ÿøÔ5g?j#Ü`SùC…’ß Ê}\5·àƒ7˜ðÂús)L÷r^7‚¶ÙPy¦ÙöŽïq +,ÿ­éÓrè—”-i¡÷^Á˜ªö®>Û*šZdOë϶9ù=ª»ŠšB…°•ífÆô“P;[S¦“8 <¶/³óâ‰æPž†Mkô¬è%féBƒ™^[QHìç‹cŽw^Û!zuÃ7¢}`o Bô¸A“Ãæ°÷6~^³2êmuþÊŽæGÁL(9´Lž-?c„haèNïELŽXűŒüÅÔfÏ¡¡.½û;çç_¤ñ ΑÚ}¨¾Q§‘%*?=i0CqwV0qU÷$õb”Þ¿íA÷'çðè‘‹Äè²Ï‰“›ñ ’zŽ_"¶ú'[‰¡qz4-,š,Ä4¦\ºA¦Cº~XŒ,ðhøþëÁK@ÿn'b¯qèY)ã9±é+œŠRi·@¤Ëà$_R‡Ov냦/ÙØ5î„:r»ä¡^‘Þ¦{…­ñ¼h[c£þãéË«k¶ÁêëŒuRþÚ†,h¦GöÌ9WÈ]'ˆ44Tˆvl`è+À{y2üî:æ%§°çz,/æÈ 0-²î ¤÷°êUb‘bŒÏ6N~«&«ƒ{Kgz~…öïØÑÕ2&a) •‹úeÓÐ*<ì÷¸ïVpk2ÂIª}=1òߢ|ã-ÄÞK>stream +H‰¤W[sÛ¸~ׯÀ£8"$äcÖqvÜÙÓXÛ>t;Z¢-6é5¥xýïû€¤$&Û™Œ/ÄÎ8···Wâí¯W‰øéý•X¼½ºKĺ)ÿˆ~Ý.ÞþŒ­Ç~‘ˆDI" þžëÅÃâ§íI—øŸ›€¾Z% ]=,ÒT >Y.U’Y‘i-Ó4)Äj¿XÞ}º½ýpóñçhõßEš$߀¬•™R¥C&¬ëÕâ…S€‰½&ÿí"‘eAºXúŸAëò‡ð*ˆÒ3UVI±Þ³AûEœÉ\ÚnãLka¤ÉR—R' +ÚKc¬ˆS#•Àõ"Nq^Úá<ˤN&Ò¤ –ÖhQÈB§„ ¸( +À¥6$)³ÒÌNçJÄ*•™˜ÉB˜‡%HU!-4g:“*-JËÄ16aΔõ‚!H[™“ ¯WŽ›šX•+þŽVœO¬2°:7Á#¸mpÙ„hç2|cÍÈ<ÂdÃÑÇà—ÄϱÞ òìô/u6b¨Òc$21ùgÀo¤R°O§2Í9k%5öðŠœm|VŠ*Á¸5…Qà›;‡Ó‚ø¥²(ýv7–Š)H¤‘9®˜ø¾Sœ) CÄ*qz¨š¨é7‚xI^Œvž}AáÞßè~›ƒ'Ý«õž^/&·°Ehþ?Ï·«ô?!C€ ñ•°Ke^ÿZÞDWŠe+ÛZ¬##–]!ZÅò@@)±ü3ŠS|¢{ø=Q6ú÷êo$‰ÕLšö!"„î9еXî«HÏCÓµ¢¯×G·Ý¢¸ ý×Á½|#Îø,«v#êþ©^7Õn÷Ê’üSAmx¼D¬6IdY_Îy1dÇQÍjÝ?uLû(ªd‡CµþB˜M/ªså€ÞŽÌjZñ²mÖÛKÌåSýÜ£{çê?=GxP©{Œ }Ÿ£\,«½èìùµÛ­ûþá\êÐlêÖ©@Š×пm‡«{¾D¾,q{Õ®o^ºqToßnwIõXÁ´ +îvõ#á4‡f屮v—4Õæ+!TN·ê±Ž‹KÉxse!Í, ^Œ¯ Ú½ÅU„Y¾ûõÓõg*D=­•/L¢+i™9®ªT²È“tR!(Ÿ#°(ú4çÔ°PÉt•%þp\d|fNVE8 •“• ‡Ã‚ѳ“•êð¢ð_>Iü‚Õû«”0¸ô$'àè6÷xÈ>ºðt(0Öxá ×.äçžZ{¼BÁ²sÛ÷ó‰dÙW÷=:»?8%ÇËJ+Ñ3ä§!aµâØ×á_ëÌ ß×ô¼‡$—ŸV][íf(º ÜzŒÿîám ï â٥̞2E%^\F¬¢‚üqé±mH™"$¶ãn~™‰6xe/¶•ϵÈ!–Ù]çØ>¥÷Ç=œ†Æá;a™z™²< ËÏן~{óŽƒsE ëæöãEp´'ÝÛç N•¢Zè,P‡Ïƒ}Q™ +?å +°«Üð*Ön¥ Ê'……릴ᢙ„Åzqz0R¥#40%RÍŠ$Ü ¡ÊNì¬ÐŽQ·BŽE‹KÍþQ;I;†€xDÕùM,q©B@–”Ò+¼–Ø·m ·|ÌôÔ&ÃÙn1lž`,å`t*â\Ê%Ó»Ç2‹…M¤ÕE>½i@Ow# ~‹©òkøJ³1h™[êtУ¥É]Ÿ‹>IÛá^p  — +dð =äD‘x5ÜȹÚ0ŽznUZ©JŸLÚ²Ú¹LÉÅd5¯ÒXr8R%÷“¹ÌsJµ²H¸ÙÕx–µ2ãþŒZføÌêÆ@:òZƒ +:”lI‰ Ž%‹=ˆ6­Ô™ï£±‰ÇBŸëZQ™$®Îa“¸QåTᎊ«Òa“}IÎ7×mNá´vž¶dv4ë¥<ŽÄ)ž'æ(¨ÀgšqÖ #“ŒÃ ’­´¥oyq¢J<Á%¸(t¤P`zQßi_C†™ï_©flß± ‰ÿÿ}'ÚÊ®)w£<7͘ågku‡=U  ¹ðkà ¶”‰ì{e!²D°AßöäÄu(#øEâþF_íû.`ˆzì;\¢B×LŸ¡ºzÌ—¨±ÿC{Š2X!;”†їñyÉ”½ÁJjîgÊM_5›PpþX·Ç¦Á{i[±m·˜9¸wtƒý­ó':HÒéÛÅ*ÏS$)ä £-²•›÷×oÞýrÑ2Ü~wן£Œ§Ü\]_T¯ÙIõzÿƒÕ éÕqUoT#ĆT†ˆ jÑH^¨T–+ ²>. –úSY&4 ú…ÿ X *;¢@.W”ÑË<÷ÁDQ=Á§¤l§ ‘·5FqœbM7NÁ5µ™Ü"ÒGèkGég¢˜DCûÔõШgÖr7ëE ªÖM¸$_!í¨Rý<³Ñÿ¡Ö—…*-µÎDPH#é‘FAæšê[=XžRËÉ¡%M9œG¢,Š:á DŸ¬TOF2—ôL`Ÿ4Í/&N.&ú{ÄɆc¤(9µ:!0° êˆ®yÞù3³ž&™.Âna&tÞZÏÓûbpª¥ëQËmx]þ>SÓËØ-üÓôwe§÷˜„&?º;Ø-ü‹ô—ãÞª¿¸SQ(‹Å(–膱tãšû0ƒB%¬É¨G+\…“¥,<ÜÙtíQÜkŸÇ™™rŽÉ©£`¸f¼'•MnÔ£N6++S­EƒdœÐ«æF!ISw(DIéînºtìå ­7ÞñõžYVL¯ïû¥sHo'¥ó@¶mª]ŒQcI÷ŸT57]fnWÕú •ß‘%©ÈvwbrÑXvIÉ3$I£DüzO ­âS–ÍLÝ}Ù6ë-8ãPúTži©|‘ä;3Žöuý¥ÃPŠ‘ªš)ìÕzK… + ÚÚU×0‰y_.©|ÓÐwÇPã¿[ö¾’rU³«îws£œSªá1qbFÝnj®êeŸûÙÞà>²ìEgX½êœ3†6`÷*æ¼Ñ€5UÚ¶q„@Û4ýóñéðêß´¤ÀEÇÃj¡Çà[ÝvýaVM?~¶5Ý» ÜL†Öp®ÎkzåÓÅXçÑõ}üeÌèöÒÂ÷7wW¿DŠÝse䌻ß>_}Ç!è‹>»h(¬èëÂJ£‘ó‚Τ‰žÌ&qiÌò@µ6Û©6œ +4XÒ±*ùƒ«&b¢bððAÎ@…@ jùM'©]†Œå]½ÇÌÕ”‹‡X‘ªf=­—Yxx;jœó 6Ú„¤˜i6I®KF$À:Äó ªWNÐOøx¿Ãz°‘=ßÜä–d’bKKä?7pz9ˆòræ×Îd…³XYïLfâ¡à.N&š‘ºËÔA«¿JÑÃcœŸn" +žÎ 4û±Gè®wÝ7"·?úüÄYµçôylÁ‰"ã%â4Q¤ÍÌÄÐô}½oÚQf÷0éÃhA§.·¬·m·ëiî"öofÒÓ±¾º9¤Z»‚äÆ5IìvõÿH¯–Ý6Ž x×WìQ<ˆ˜™ç1„À€“áKCÑŠÂHŽÿ>UÕ³I10’\´êålO?«»î›#²s¦äúi·Yÿ¹^Úü Šu)vQç^ÏÛ;`£ò¨Kl.h9Üš¤ïe½Û,,lG˜üþ7žý~3ÎöVÁ ö¶ˆâø2\æSª„§FÛvÛùðÑÆÁÃaÈœ)X>,6›Õö~EZø_LæDï¡Dˆ®ätçÊf·8†îÛ÷·3”ò§Y’?ßÍ2fÊGŽ®w?ÿtn©Û‡_Þ}zûÃ-óy ßí'œíöÂwq8ZFàxõG” 6•k¹íèˆRr^V°›$]¢ÓÂÎ͸P.ÜóRåv6íøžk"öRá56tÇ|·FÑ0ÌŒBðh§*cÖV +l¨’ Ø$5cíæöØ  ØË8Uбz ñç1a—œûÜ$„ÌrÔ^ ØÆÄŸ`_£ó©òú®’ã央¢Q5Ë´`,CVæäT“S4/WçÉ“AÕªŸÂÈIFý‹Ë+LŽ!d‚ëî¼4EÔe?‘X´ ˆÛÄa1èS†IUnÜhúO2Jp—;KQ6nÌp,3al r§Œx`ÈIy S<?[f ZÅË9êGy\¢V±jb"–Fvå‚1Ypˆ‘Wõ!æ¨I‰Ÿ“ÈX£ÝX€Æ›ë¼—Aliì§#BJ5B9àÒœ+<¯ÎA$5X­ÑÔ˜4 e9'}£huObE*ý¸ÇŠÿS+v¼I ¸„bö2½¶ ãH ™ˆŸËŦ¡Š—è «&Ú$%íKLseµñBõÁæ‡AáFQ{);UN´R®Y”}h“³ø­+¾W4‚ÉxAÊ*{çô[È£µÞd/¼F1äbÅÔ­éʹˆ£4È«ŸÉµh]Qs—ă©7RÕ}Ž¿±@ã™U= ÍÅ\Œ­)U±Z¤@©¢- ÁqV +¾V¶ ríŽ6n<(ŒhXAÿ+ ÖX+É÷<š„ÂÆÓR Ac¤ ÆiÁDJa/y+âÃê€G^·;;»e¬ ¾lnÜ{"l¥Cªi¥™3´zm‡€Ýø×¢Àt0š…o xþ‹xm—ÓèwnaHPMÝ›ffø¯Ëá"€f†q®(y¬ÃX ö‹IØÕm„1 YèÅ´­alvyÕeuÂ%g-Ì ‚G*d}Wuzh½ÆÔ·Ä„¡8YâO§­u˜Y4š¾ÈÉš¹©*[Ìv´1ì=þåý²S²WÉO×ÙíèKv;•"lG@AT^‘^kI,B=/p«ÂWƒBM”[WK¸`¤*•7s‹™dX’ªæñdä1ˆŠèÁ^¬ð”CR,X„EB*Ý‚:¯A†BüùSì ˽ú1Á”ZÔ0¤E!…j¯ÇöÊ™ŽÆ ýOgÁRûôÙÜöÈõ˜0{™»#Ú…DmCÀÊëY…“ÔuzÑl“·Ï<íuÓ?Ë+¾÷“¨oÂôÍ$M*»lÚw®6(¬Úô` ú í2>¡Æƒ7¼éâ‘™öUÀYbß"ÞÓÊþ;ãèýÉ'ç +Oï;±å`äy¸3X +‘jŒè@z}ö¨âpJ/Rx4ú&Éäš&³„PÓàKhU2®7/ìà«lúÀ1ŠŽjt†ô[ë°1žp¬3è¹6fµ~Yƒj¬†Õ\âÀx:}z³,“Oi?ɰW¯fÚÈÿzÚì@GÀ-™ÒïÏ÷3$|ènµ_ßÏ’(Þ€³i1îýå"OZjù¦1ùTß¿R²7‡w³2\¿ûûw<èè°Þ‹íE›vO«®³óX¿ÿÊ+÷ãx|¥,o>ßï>Ï´p‘KÞ4#˜¸r1ñDêéiŠöÊŸ.*êã~SW›Õ‹”|ƒ¢.ýYí'–Bí‡Ë÷»g#}K öjùò‡É¼aaçWÃvg¥ñþôõ"aúGb&ƒî†Ï‡#ˆþó{`¦dZˆA²)šëšÛ¿®þ`SsQþ endstream endobj 39 0 obj <>stream +H‰l–M®$5„÷} +_ =N§í´· ˆBˆxâgÁ ÁÜ_⋬z=h„FóªíòO8"2\~üX>üð±•o¾ýX?Z™íúÿÔŸ~}üRþz|øøs+oŸK«góg„þö¶KùüÆÛïyûûçÇßÅJ㟕>[µæ³¸íº×Šòöé¡WŸϨ³<[}•§M†esL/ÏÞëX‡î³¼=žýÔVž^›Ñí«Ft€Õ~h¯ËY$êÞ®á#jtV;utV£¹xXg¯žÃchÏQ§í϶;èYÕ#=jkšÁÄÉ ÷:†àì:Nb-ãÔÏîuÎQNõ9³5èõ<švªÙ`¸sº=r>xüÔÙNî6¦àÌH4c-ƒÖϺàž(j:¬Õ9z±!g=q4Ú. «N·â»úØ"ÆÕšuÔ±À;ËÄjã-ë7?¢¼¯K.ÎEÃu¬¨(D2¯Û#{†ç× Gs~"ëÃnîÞÐá=Ïi9‘Ã6¨{N¯ÞÀ´ë\ÉýD+8Gª ˜å ÙEÛ4&/£{ tÏÑtœ!Næ„¢…-æ.ãÔìpg9Dªè¹­ajñ`+dž«vx×ÛÉ& ‡ž•ÃgR †Zɱ×Zˆ+h0Т¬YWË“2ÎðÛ5$'ë4”౨æ‚W6‹5r8´Qæ@¢•ïýð¾×-¯Ì]ê·3ñ̘:êÑS¥°Ê`vò1†9Ø,’uI-ùûb1F$ÓªšYéÆ*a·Ý i˜Ó¤f1yH’‘ÅÕ1=ž ¸kÏY”´y¯§5GÖJK$œã´«V5ºT+ó¡ Ç0UdGŠ:†tU!mjóÛˆ,¸fÒ™ +ƒY’ÿì»ì†'iMiàêöȈžú„%α§äÛÊŒU*㟩j#"àŸ°dû$ÙÙÞ0!vÙCÔ#ó)½öuÀŒªÝ³È¯Pƒ„2‘½‹hx¥ÜYfÂúRÞì0)0åWhû¡c¦–gÃtž¨)]7p¤Ý%(ej€A#‰·½‹”…‡ÓÞÔ[¨RŒàœEÁÓ.–û)ˆ`æ)ÂÒX42ˤQú¡ŸÈUps^äUXP¶63Ê(ô%ñ}¯‚3²¾˜§âFlÈS-Rt+ß89I½ýnº^°dìv'Ö¶¥%Náé_o‰ë@.®t˜JW)°P¦å.&`ŠÜÄ ‹‚±¤ !wö¬Í1ï̆GúxO¥£r€¢Q™²Íêø¥«¸·2‚<ºJ?c( ” …ÐÐÆ„Á‚C2…›N0fÒ%ñ¹ÈT;¨ªR/Y˸|ñ¡ôšé‚“•N³)u0õΤ£ÀåZVhº%˜’g¢ÔÁµS{¬r²“ªž0ôî7Y­ï+Ec»e:8LUYzÆ1òn¿n²Ø½èzË*8× w”]wAó´£ÊOÍ ™a¯›ã«‹äíñÛ㧯> Z.Ãtpòå³@w=µÙò®ò\öì¯ÖýPB^¿6—®"ñžg#Bk{ýÂàz¯Žœ¸ß'ޭ׺wûÚõžÙîû‘E;ªq\€º2­¿ztAèKèÉû¼š_ðÞ(±Pí}ºnX™²½~eå˜>\xÞ'ޭ׺wûÞöžúê à¯%°ƒÃôUbº/›‚à%tƒÒ}5}¸ºÞÛùÌO­÷|Æ"åχõMíÅÿõܳþÓs¯KÉR/žš‘ðæIö‰ø»øýéñ¯j ! endstream endobj 38 0 obj <>stream +H‰\TIŽÜ0 ¼óü€Ô"µXº¦ä49äF–ƒ;À¤ÿ¤$K3’Ñh-´TUdѾ}»óíåîøÓç;Ó9Žîü›:üûI?ø/ÝîßïOv¶d a«£ºÌüÜñô+žþ~Ò ;ü„5a õ`H¼?¨Fëè•ò sflʧ`³/œ¼õ1p*˜"—b£FÞ©/útP v‹Ê!µKQb›oä;‘åʃL^0J=F‡R€iÅm&Å¢âJyÞS]”*;ÉÙæ,«Ó Tøú®Fb´©€¿Ë SJc>è]‚@™ŠòP¨ˆ+Ðg;Å‚àT’JìS¶ERÍ6¹Âù‡‚|a]ãu¼½óéesž©Ù,—ÍV‘Ó@6ÛBŒT‚›|ÀfJ©Ÿ#'˜€C|äÁ%ˆ'-GTÒæ^qñãæeÝΠïÖë½=®ô;é¬N'ÝFWŽÇJ«g¥ÕT¿zþѵÊçƒâjbY=¾°î$SÔV[™D´&‘J‹N÷Z”ŠF×PßE‘Ä…SDœí½ìú¹úê,FüÊ`ZÝ'µ{ÓbsÝ~´À8?GNH1¡£NF#ÑJÑæ9þ¨Wè®›ö¥9^Öý¼XFQ:þ¨Z™‹:Yý‹^éË ¾Ž¯ô_€‹Ã endstream endobj 37 0 obj <>stream +H‰d’KNÃ@ @÷>…/Çžÿl ˆU…* º H%÷—°fÒREcùÅÏŒ/އ‰ñáqB¸cäí &~Þá ¿aœ^ç™jQ²IÇq™Õú¬ÖÏ.(Èú úª2yr1œÏ`Ï0¸Ä˜¹’ñk£ZIjURÿì)”¤ú ÉŒ.QÞâVrU ê•5ûj¤pÓgMé:Y)Šï¾Î÷4«º‡)ÅH^¢…Y5_H²l½XŸÂ•RA®Jä{t;Ö; 7¾·wJÿI—YþÖÔÖÚ[骂’DJzK:”‡ˆmx]Mضփ$ª±;JÚs˜¾¯ÉÈ·5‰¾±ÎHi OðGx:è{:¯uÉv endstream endobj 36 0 obj <>stream +H‰DQËn„0 ¼û+ü;¯%×Òª§Uµê¡õq€J[þ_ê8E(“ñx4Æ0¾Í<^gá§ç™éNÂIúqŸôÁ¿4ÎïÂucʈC/óVÑ}E÷{£;+ e_‡ \W2a%MìprÉà“!ª‚9±± Ô §#uÇYßiT¤8ö +VòN TjTc³Ø¥…㪤­LÖ6ìþÔ`×3ö˜V)wÛjÄc«O´irHjÁ¥e¤óeŒNšï-„¸b$L¨{;ï´ì[£úÞ…¢ô€Ü3ó1å‹nôrů»Ñ¿ndWo endstream endobj 35 0 obj <>stream +H‰\ÐA +à Ðýœâ_À:cLc¶µ¡«PJh»h +ÁûCµ‚Ú ™¯È談ž=ãtö íïŒ%€£‹Å©v@X>¤/qú ´AÀñŒctÇxe¥ÔXI†Æ›†U%ý?…K ¥ä„ÛÛÖHþy¯µ«‘†cNìmL‰dÚ¢<çÂßÿ_ô MsÜÙW€÷à=ì endstream endobj 32 0 obj <>stream +H‰ì—MŽ-· …çwµ«'QÿSw‚ŒŒÀðÀ hØžØ^Þþ|‡ªFÀ¸Ý}‹,Š¢ÈÃCõ—_¾ÿˆÇwÿø8^__ñ¨qý¾õç??¿~:þx}ùø1ŸßŽäŸãÛ'ª¡úõÛë+ŠÈ‡eVëñùûKŠß_ï_zHqY\–©¸«¢÷›j³¼V?ïMôù|ýòúსtýµ8VÄŽ´pº'Ò‚/Ki%šjŸë™_ÅÊSJÍ.ãwªZí_Ÿ¯]¹[ß>6Ç÷n+dùP¹†Q’ MÆ3¤:ýÑ4÷Ýæ6-+ÏØ{×¾wó÷íä½y~o®Vú¶*?9˹üŸTW‘þ]ÝÿY]k=$«$¸Ñã)ð˜¼ÑÙs8[ȹÍ#Y }æ¹e3…ØÈü¬”ÛB¢ )ŒYØ0ä +HÂàôÄRBÍGÊL ½Q”Ð<Ò1«¡¶!³rÉéìÄ:CÀGSç qôcË~¸d¡Œzp¼¤cå0ó@š=«0¡àFIÓ[˜…ЛvÞƒ#ÂÆXÄÆœºŒ-…nâ…²Þó‚B"ÎÌZ«ÄÁZNaÅÍ›rr°E%õvêÁ„õHð¸!f7ÎäˆT¡èCU)!‚ë4Cµ¶Š4ÛADV<”Üñ¤˜Š›br<âk}a³'Rlìá))94-Ï!ªÔe…ˆØ#{•ÓWÁÜs]fU,M Ý«?»¤F"ߕӓ;gÅSXyj®‚Ê/Öù¢ò-R*sΕ”fa*65l&Cšbáì æÊ0‰/Ys®Q²e,zw’dYb7A¤„±à¥êPbè’;E|÷¬# +}XeeJlæÎGñ #ñ¿Gã€Eb™2'¦ìoÇô”O²[xOš¢0X9R’¨u©jɘ=‡s‚ïQšD}E£th#¸7‚k,XHŒ4\•BØJ‘HhY«…éÞ$ŸÁ$`&¼€ƒä’‰YiMƒ* ¶¸¼ ¬$Íp†¢\±6g„‘/†äÔÖ +ÒØ8(š¬Îѹ§/(M;âÉ’¿®Ý+ áPd·hÔ ™oÎÍÝWv4RÖNkÖºÁp¶h¥¸ƒ½YÙ2÷K֊ʦ+Êe¼RÜ<]uß|´ÅЮô'ÆÎ–-ï§TÖÇsÎõ|§Pã•§ Òx29(yO¦/fÙk1£Â»k5ö”(¥9öZO¯Üh0°T­\P1 ”JÛ d4Ý6Lf½ÀHÝ´¹¡•îrÔ_p6ðsºÁn""ö~ºÁ`‘ÉÕ.}ÔTîn26aŸ§ÝŒ¶výhlÄr·«±Yê}kgãH–¼úÝT×y³ÁsiîtaEÑ”›OLk7ÙÀ\ +ÆÆFVå«Þte•F£MO23XkÝÈÎ`».ƒ“ ¾ⳓ+ DQØM¦æ˜L7ÛZc^pÌ‹Œ­‘¨¶‘µÑY6·.—ùæzƒ»ÜÃÀÀlëÏ´0x°Zº‡ xÞ|¦ ÓsÜ8¨û=ª@$yÚF 6Ê|Ϻ¡êægòÚÒ>+9ÝvÒ©ÑÙî9k`Þö9lÐiÏõšÓ¦&ãâ6;m3Þh‰I…Î+@ŽŒSàz^€, KÏå!GMëf‘½aÊyéÈ‘®°ç>KúT¹n+Ðr£ÀçM&smôâºjE]žŒwæ<=‹VØMSYÇõãàË ,'‘…ü€/]’«‘ }+˜¤†ÓÌE>W@ô¦IŠæpÑ©N|ï[P2ì½ÐPS…:}S—G÷DÓK†Ù<Èä\éKȦÞÝ\k&ƒXtWœS\1Û‹Ìü²r®+T* +Å4ë2}2¸bvó[[‹t“KžO¥¿l•œ–¢%’[4 •.†0z.CÝkÊ®Ð5t!¢žÍnÕo/§ÝßD•JdkªçÊ$CªsêP’NJ£éÛþdÔ£ãqó§ô´oGe“ +óWÅ +Ñé`I™/u;5ŠáÌ»ò¢6òµò†hsl™ES¾s/àÕv×ÑrÞªçw— ÜåŸÁárÁƒ[”’¾à£99.lu±ñ> endobj xref +0 53 +0000000004 65535 f +0000000016 00000 n +0000000147 00000 n +0000041566 00000 n +0000000000 00000 f +0000041666 00000 n +0000000000 00000 f +0000062023 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000062096 00000 n +0000062314 00000 n +0000063431 00000 n +0000129019 00000 n +0000194607 00000 n +0000260195 00000 n +0000000000 00000 f +0000042035 00000 n +0000042406 00000 n +0000042777 00000 n +0000043148 00000 n +0000043519 00000 n +0000043893 00000 n +0000047482 00000 n +0000277834 00000 n +0000044311 00000 n +0000276130 00000 n +0000059340 00000 n +0000059227 00000 n +0000275912 00000 n +0000275602 00000 n +0000275254 00000 n +0000274693 00000 n +0000273316 00000 n +0000268998 00000 n +0000047669 00000 n +0000048094 00000 n +0000044741 00000 n +0000047553 00000 n +0000047584 00000 n +0000055357 00000 n +0000055457 00000 n +0000048417 00000 n +0000048695 00000 n +0000055883 00000 n +0000059375 00000 n +0000277859 00000 n +trailer <<27E4B473CF31434BB3E82B6F280F6A43>]>> startxref 278068 %%EOF \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/images/add-application.png b/kubernetes/dev/tekton/examples/example-bank/images/add-application.png new file mode 100755 index 0000000..d4b8bff Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/add-application.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/allow-sign-in.png b/kubernetes/dev/tekton/examples/example-bank/images/allow-sign-in.png new file mode 100755 index 0000000..5b76d6f Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/allow-sign-in.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/appdiag1.png b/kubernetes/dev/tekton/examples/example-bank/images/appdiag1.png new file mode 100755 index 0000000..10d2f5a Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/appdiag1.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/create-role.png b/kubernetes/dev/tekton/examples/example-bank/images/create-role.png new file mode 100755 index 0000000..afec493 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/create-role.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/disable-email.png b/kubernetes/dev/tekton/examples/example-bank/images/disable-email.png new file mode 100755 index 0000000..8604ec8 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/disable-email.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/kiali.png b/kubernetes/dev/tekton/examples/example-bank/images/kiali.png new file mode 100755 index 0000000..3121c18 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/kiali.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/logdna.png b/kubernetes/dev/tekton/examples/example-bank/images/logdna.png new file mode 100755 index 0000000..2fd3269 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/logdna.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/logdna_appid_select.png b/kubernetes/dev/tekton/examples/example-bank/images/logdna_appid_select.png new file mode 100755 index 0000000..85544ba Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/logdna_appid_select.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/loyalty-1.png b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-1.png new file mode 100755 index 0000000..89afa2a Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-1.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/loyalty-bank.png b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-bank.png new file mode 100755 index 0000000..ee024f0 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-bank.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/loyalty-phone.png b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-phone.png new file mode 100755 index 0000000..b064085 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-phone.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/loyalty-profile.png b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-profile.png new file mode 100755 index 0000000..f5d52ff Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-profile.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/loyalty-spending.png b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-spending.png new file mode 100755 index 0000000..d8471b3 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-spending.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/loyalty-transactions.png b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-transactions.png new file mode 100755 index 0000000..c55bdc2 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-transactions.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/loyalty-user-role-added.png b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-user-role-added.png new file mode 100755 index 0000000..1f15120 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-user-role-added.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/loyalty-user-role.png b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-user-role.png new file mode 100755 index 0000000..861eb77 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-user-role.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/loyalty-user-test.png b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-user-test.png new file mode 100755 index 0000000..03d34ee Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/loyalty-user-test.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/new-app.png b/kubernetes/dev/tekton/examples/example-bank/images/new-app.png new file mode 100755 index 0000000..17c7d18 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/new-app.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/pattern-flow-diag.png b/kubernetes/dev/tekton/examples/example-bank/images/pattern-flow-diag.png new file mode 100755 index 0000000..ab2a8ec Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/pattern-flow-diag.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/schema-1.png b/kubernetes/dev/tekton/examples/example-bank/images/schema-1.png new file mode 100755 index 0000000..5a4f4da Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/schema-1.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/sim1.png b/kubernetes/dev/tekton/examples/example-bank/images/sim1.png new file mode 100755 index 0000000..54ad04f Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/sim1.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/sim2.png b/kubernetes/dev/tekton/examples/example-bank/images/sim2.png new file mode 100755 index 0000000..5cecaa4 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/sim2.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/sim3.png b/kubernetes/dev/tekton/examples/example-bank/images/sim3.png new file mode 100755 index 0000000..6836e42 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/sim3.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/sim4.png b/kubernetes/dev/tekton/examples/example-bank/images/sim4.png new file mode 100755 index 0000000..c61b9cf Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/sim4.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/simulator_checkin.png b/kubernetes/dev/tekton/examples/example-bank/images/simulator_checkin.png new file mode 100755 index 0000000..7c2e9c8 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/simulator_checkin.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/simulator_events.png b/kubernetes/dev/tekton/examples/example-bank/images/simulator_events.png new file mode 100755 index 0000000..7a481bb Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/simulator_events.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/simulator_katy.png b/kubernetes/dev/tekton/examples/example-bank/images/simulator_katy.png new file mode 100755 index 0000000..97ba86d Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/simulator_katy.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/simulator_main.png b/kubernetes/dev/tekton/examples/example-bank/images/simulator_main.png new file mode 100755 index 0000000..8ca39be Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/simulator_main.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/user-creation.png b/kubernetes/dev/tekton/examples/example-bank/images/user-creation.png new file mode 100755 index 0000000..81eb196 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/user-creation.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/images/writer-credentials.png b/kubernetes/dev/tekton/examples/example-bank/images/writer-credentials.png new file mode 100755 index 0000000..18f0cd9 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/images/writer-credentials.png differ diff --git a/kubernetes/dev/tekton/examples/example-bank/manifest.yml b/kubernetes/dev/tekton/examples/example-bank/manifest.yml new file mode 100755 index 0000000..79ced1c --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/manifest.yml @@ -0,0 +1,8 @@ +applications: +- path: . + memory: 256M + instances: 1 + domain: mybluemix.net + name: bank + host: bank + disk_quota: 1024M diff --git a/kubernetes/dev/tekton/examples/example-bank/package-lock.json b/kubernetes/dev/tekton/examples/example-bank/package-lock.json new file mode 100755 index 0000000..3e25c15 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/package-lock.json @@ -0,0 +1,1352 @@ +{ + "name": "NodejsStarterApp", + "version": "0.0.1", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "accept-language": { + "version": "3.0.18", + "resolved": "https://registry.npmjs.org/accept-language/-/accept-language-3.0.18.tgz", + "integrity": "sha1-9QJfF79lpGaoRYOMz5jNuHfYM4Q=", + "requires": { + "bcp47": "^1.1.2", + "stable": "^0.1.6" + } + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "ajv": { + "version": "6.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.0.tgz", + "integrity": "sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "alea": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/alea/-/alea-0.0.9.tgz", + "integrity": "sha1-9zjLRfg0MAafRc9pzL8xLdV6nho=" + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "async": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz", + "integrity": "sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==" + }, + "bcp47": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/bcp47/-/bcp47-1.1.2.tgz", + "integrity": "sha1-NUvjMH/9CEM6ePXh4glYRfifx/4=" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + } + }, + "bowser": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.9.0.tgz", + "integrity": "sha512-2ld76tuLBNFekRgmJfT2+3j5MIrP6bFict8WAIT3beq+srz1gcKNAdNKMqHqauQt63NmAa88HfP1/Ypa9Er3HA==" + }, + "buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" + }, + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + }, + "camelize": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz", + "integrity": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "cfenv": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cfenv/-/cfenv-1.2.2.tgz", + "integrity": "sha512-fl8xrG9ezqfO7L664lL+/vkqXun0D/xS/0IJ9++IMHLR6SI0If56C/KIHy9oIGb8jq9swHZFdct1MfN/80yYUw==", + "requires": { + "js-yaml": "3.13.x", + "ports": "1.1.x", + "underscore": "1.9.x" + } + }, + "circular-json": { + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.5.9.tgz", + "integrity": "sha512-4ivwqHpIFJZBuhN3g/pEcdbnGUywkBblloGbkglyloVjjR3uT6tieI89MVOfbP2tHX5sgb01FuLgAOzebNlJNQ==" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "connect-flash": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/connect-flash/-/connect-flash-0.1.1.tgz", + "integrity": "sha1-2GMPJtlaf4UfmVax6MxnMvO2qjA=" + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "requires": { + "safe-buffer": "5.1.2" + } + }, + "content-security-policy-builder": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/content-security-policy-builder/-/content-security-policy-builder-2.1.0.tgz", + "integrity": "sha512-/MtLWhJVvJNkA9dVLAp6fg9LxD2gfI6R2Fi1hPmfjYXSahJJzcfvoeDOxSyp4NvxMuwWv3WMssE9o31DoULHrQ==" + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + }, + "cookie-parser": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.4.tgz", + "integrity": "sha512-lo13tqF3JEtFO7FyA49CqbhaFkskRJ0u/UAiINgrIXeRCY41c88/zxtrECl8AKH3B0hj9q10+h3Kt8I7KlW4tw==", + "requires": { + "cookie": "0.3.1", + "cookie-signature": "1.0.6" + }, + "dependencies": { + "cookie": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", + "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" + } + } + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "dasherize": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dasherize/-/dasherize-2.0.0.tgz", + "integrity": "sha1-bYCcnNDPe7iVLYD8hPoT1H3bEwg=" + }, + "date-format": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-3.0.0.tgz", + "integrity": "sha512-eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "denque": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/denque/-/denque-1.4.1.tgz", + "integrity": "sha512-OfzPuSZKGcgr96rf1oODnfjqBFmr1DVoc/TrItj3Ohe0Ah1C5WX5Baquw/9U9KovnQ88EqmJbD66rKYUQYN1tQ==" + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "dns-prefetch-control": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dns-prefetch-control/-/dns-prefetch-control-0.2.0.tgz", + "integrity": "sha512-hvSnros73+qyZXhHFjx2CMLwoj3Fe7eR9EJsFsqmcI1bB2OBWL/+0YzaEaKssCHnj/6crawNnUyw74Gm2EKe+Q==" + }, + "dont-sniff-mimetype": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/dont-sniff-mimetype/-/dont-sniff-mimetype-1.1.0.tgz", + "integrity": "sha512-ZjI4zqTaxveH2/tTlzS1wFp+7ncxNZaIEWYg3lzZRHkKf5zPT/MnEG6WL0BhHMJUabkh8GeU5NL5j+rEUCb7Ug==" + }, + "dotenv": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", + "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" + }, + "double-ended-queue": { + "version": "2.1.0-0", + "resolved": "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz", + "integrity": "sha1-ED01J/0xUo9AGIEwyEHv3XgmTlw=" + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "ejs": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz", + "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "es6-promise": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "expect-ct": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/expect-ct/-/expect-ct-0.2.0.tgz", + "integrity": "sha512-6SK3MG/Bbhm8MsgyJAylg+ucIOU71/FzyFalcfu5nY19dH8y/z0tBJU0wrNBXD4B27EoQtqPF/9wqH0iYAd04g==" + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + } + }, + "express-http-proxy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/express-http-proxy/-/express-http-proxy-1.6.0.tgz", + "integrity": "sha512-7Re6Lepg96NA2wiv7DC5csChAScn4K76/UgYnC71XiITCT1cgGTJUGK6GS0pIixudg3Fbx3Q6mmEW3mZv5tHFQ==", + "requires": { + "debug": "^3.0.1", + "es6-promise": "^4.1.1", + "raw-body": "^2.3.0" + }, + "dependencies": { + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-deep-equal": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", + "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "feature-policy": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/feature-policy/-/feature-policy-0.3.0.tgz", + "integrity": "sha512-ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ==" + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + } + }, + "flatted": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.1.tgz", + "integrity": "sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg==" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" + }, + "frameguard": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/frameguard/-/frameguard-3.1.0.tgz", + "integrity": "sha512-TxgSKM+7LTA6sidjOiSZK9wxY0ffMPY3Wta//MqwmX0nZuEHc8QrkV8Fh3ZhMJeiH+Uyh/tcaarImRy8u77O7g==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "graceful-fs": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", + "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==" + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", + "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", + "requires": { + "ajv": "^6.5.5", + "har-schema": "^2.0.0" + } + }, + "helmet": { + "version": "3.21.3", + "resolved": "https://registry.npmjs.org/helmet/-/helmet-3.21.3.tgz", + "integrity": "sha512-8OjGNdpG3WQhPO71fSy2fT4X3FSNutU1LDeAf+YS+Vil6r+fE7w8per5mNed6egGYbZl3QhKXgFzMYSwys+YQw==", + "requires": { + "depd": "2.0.0", + "dns-prefetch-control": "0.2.0", + "dont-sniff-mimetype": "1.1.0", + "expect-ct": "0.2.0", + "feature-policy": "0.3.0", + "frameguard": "3.1.0", + "helmet-crossdomain": "0.4.0", + "helmet-csp": "2.9.5", + "hide-powered-by": "1.1.0", + "hpkp": "2.0.0", + "hsts": "2.2.0", + "ienoopen": "1.1.0", + "nocache": "2.1.0", + "referrer-policy": "1.2.0", + "x-xss-protection": "1.3.0" + }, + "dependencies": { + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + } + }, + "helmet-crossdomain": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/helmet-crossdomain/-/helmet-crossdomain-0.4.0.tgz", + "integrity": "sha512-AB4DTykRw3HCOxovD1nPR16hllrVImeFp5VBV9/twj66lJ2nU75DP8FPL0/Jp4jj79JhTfG+pFI2MD02kWJ+fA==" + }, + "helmet-csp": { + "version": "2.9.5", + "resolved": "https://registry.npmjs.org/helmet-csp/-/helmet-csp-2.9.5.tgz", + "integrity": "sha512-w9nps5adqFQwgktVPDbXkARmZot/nr8aegzQas9AXdBSwBFBBefPpDSTV0wtgHlAUdDwY6MZo7qAl9yts3ppJg==", + "requires": { + "bowser": "2.9.0", + "camelize": "1.0.0", + "content-security-policy-builder": "2.1.0", + "dasherize": "2.0.0" + } + }, + "hide-powered-by": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hide-powered-by/-/hide-powered-by-1.1.0.tgz", + "integrity": "sha512-Io1zA2yOA1YJslkr+AJlWSf2yWFkKjvkcL9Ni1XSUqnGLr/qRQe2UI3Cn/J9MsJht7yEVCe0SscY1HgVMujbgg==" + }, + "hpkp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hpkp/-/hpkp-2.0.0.tgz", + "integrity": "sha1-EOFCJk52IVpdMMROxD3mTe5tFnI=" + }, + "hsts": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/hsts/-/hsts-2.2.0.tgz", + "integrity": "sha512-ToaTnQ2TbJkochoVcdXYm4HOCliNozlviNsg+X2XQLQvZNI/kCHR9rZxVYpJB3UPcHz80PgxRyWQ7PdU1r+VBQ==", + "requires": { + "depd": "2.0.0" + }, + "dependencies": { + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + } + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "ibmcloud-appid": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ibmcloud-appid/-/ibmcloud-appid-6.1.0.tgz", + "integrity": "sha512-pV99Gxs5opt1T5TjLnkOO8KlYnbzJlhMiNXFg6ARTNp0SIT8eHLA1jsGSn/kJUSQKKtZBviQo6kA6mi8R2VYHA==", + "requires": { + "accept-language": "^3.0.18", + "body-parser": "^1.17.2", + "connect-flash": "^0.1.1", + "cookie-parser": "^1.4.3", + "ejs": "^2.5.6", + "helmet": "^3.11.0", + "jsonwebtoken": "^8.4.0", + "log4js": "^3.0.6", + "q": "^1.4.1", + "request": "^2.88.0", + "rsa-pem-from-mod-exp": "^0.8.4", + "underscore": "^1.8.3" + }, + "dependencies": { + "date-format": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-1.2.0.tgz", + "integrity": "sha1-YV6CjiM90aubua4JUODOzPpuytg=" + }, + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "log4js": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-3.0.6.tgz", + "integrity": "sha512-ezXZk6oPJCWL483zj64pNkMuY/NcRX5MPiB0zE6tjZM137aeusrOnW1ecxgF9cmwMWkBMhjteQxBPoZBh9FDxQ==", + "requires": { + "circular-json": "^0.5.5", + "date-format": "^1.2.0", + "debug": "^3.1.0", + "rfdc": "^1.1.2", + "streamroller": "0.7.0" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "streamroller": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-0.7.0.tgz", + "integrity": "sha512-WREzfy0r0zUqp3lGO096wRuUp7ho1X6uo/7DJfTlEi0Iv/4gT7YHqXDjKC2ioVGBZtE8QzsQD9nx1nIuoZ57jQ==", + "requires": { + "date-format": "^1.2.0", + "debug": "^3.1.0", + "mkdirp": "^0.5.1", + "readable-stream": "^2.3.0" + } + } + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ienoopen": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ienoopen/-/ienoopen-1.1.0.tgz", + "integrity": "sha512-MFs36e/ca6ohEKtinTJ5VvAJ6oDRAYFdYXweUnGY9L9vcoqFOU4n2ZhmJ0C4z/cwGZ3YIQRSB3XZ1+ghZkY5NQ==" + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsonwebtoken": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz", + "integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==", + "requires": { + "jws": "^3.2.2", + "lodash.includes": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isinteger": "^4.0.4", + "lodash.isnumber": "^3.0.3", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.once": "^4.0.0", + "ms": "^2.1.1", + "semver": "^5.6.0" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "jwa": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", + "requires": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "requires": { + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" + } + }, + "lodash.includes": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", + "integrity": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=" + }, + "lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" + }, + "lodash.isinteger": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", + "integrity": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=" + }, + "lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" + }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" + }, + "lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" + }, + "lodash.once": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=" + }, + "log4js": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.1.2.tgz", + "integrity": "sha512-knS4Y30pC1e0n7rfx3VxcLOdBCsEo0o6/C7PVTGxdVK+5b1TYOSGQPn9FDcrhkoQBV29qwmA2mtkznPAQKnxQg==", + "requires": { + "date-format": "^3.0.0", + "debug": "^4.1.1", + "flatted": "^2.0.1", + "rfdc": "^1.1.4", + "streamroller": "^2.2.3" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.43.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz", + "integrity": "sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==" + }, + "mime-types": { + "version": "2.1.26", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.26.tgz", + "integrity": "sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==", + "requires": { + "mime-db": "1.43.0" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + }, + "nocache": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/nocache/-/nocache-2.1.0.tgz", + "integrity": "sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==" + }, + "node-random-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/node-random-name/-/node-random-name-1.0.1.tgz", + "integrity": "sha1-niQEx6AeCQWi92Fogh7bLc0U91g=", + "requires": { + "alea": "0.0.9" + } + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "ee-first": "1.1.1" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "ports": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ports/-/ports-1.1.0.tgz", + "integrity": "sha1-twGqKF6V2ujJbNonUhdySh9/bGA=" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "proxy-addr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", + "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", + "requires": { + "forwarded": "~0.1.2", + "ipaddr.js": "1.9.1" + } + }, + "psl": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.7.0.tgz", + "integrity": "sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ==" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "redis": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/redis/-/redis-3.0.2.tgz", + "integrity": "sha512-PNhLCrjU6vKVuMOyFu7oSP296mwBkcE6lrAjruBYG5LgdSqtRBoVQIylrMyVZD/lkF24RSNNatzvYag6HRBHjQ==", + "requires": { + "denque": "^1.4.1", + "redis-commands": "^1.5.0", + "redis-errors": "^1.2.0", + "redis-parser": "^3.0.0" + } + }, + "redis-commands": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/redis-commands/-/redis-commands-1.5.0.tgz", + "integrity": "sha512-6KxamqpZ468MeQC3bkWmCB1fp56XL64D4Kf0zJSwDZbVLLm7KFkoIcHrgRvQ+sk8dnhySs7+yBg94yIkAK7aJg==" + }, + "redis-errors": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz", + "integrity": "sha1-62LSrbFeTq9GEMBK/hUpOEJQq60=" + }, + "redis-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz", + "integrity": "sha1-tm2CjNyv5rS4pCin3vTGvKwxyLQ=", + "requires": { + "redis-errors": "^1.0.0" + } + }, + "redisscan": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/redisscan/-/redisscan-2.0.0.tgz", + "integrity": "sha1-AObWOGxeKDRF5yhvBHLHJpCyBiE=", + "requires": { + "async": "~0.2.10", + "redis": "^2.7.1" + }, + "dependencies": { + "redis": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/redis/-/redis-2.8.0.tgz", + "integrity": "sha512-M1OkonEQwtRmZv4tEWF2VgpG0JWJ8Fv1PhlgT5+B+uNq2cA3Rt1Yt/ryoR+vQNOQcIEgdCdfH0jr3bDpihAw1A==", + "requires": { + "double-ended-queue": "^2.1.0-0", + "redis-commands": "^1.2.0", + "redis-parser": "^2.6.0" + } + }, + "redis-parser": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-2.6.0.tgz", + "integrity": "sha1-Uu0J2srBCPGmMcB+m2mUHnoZUEs=" + } + } + }, + "referrer-policy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/referrer-policy/-/referrer-policy-1.2.0.tgz", + "integrity": "sha512-LgQJIuS6nAy1Jd88DCQRemyE3mS+ispwlqMk3b0yjZ257fI1v9c+/p6SD5gP5FGyXUIgrNOAfmyioHwZtYv2VA==" + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + } + } + }, + "rfdc": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.1.4.tgz", + "integrity": "sha512-5C9HXdzK8EAqN7JDif30jqsBzavB7wLpaubisuQIGHWf2gUXSpzy6ArX/+Da8RjFpagWsCn+pIgxTMAmKw9Zug==" + }, + "rsa-pem-from-mod-exp": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/rsa-pem-from-mod-exp/-/rsa-pem-from-mod-exp-0.8.4.tgz", + "integrity": "sha1-NipCxtMEBW1JOz8SvOq7LGV2ptQ=" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "streamroller": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-2.2.3.tgz", + "integrity": "sha512-AegmvQsscTRhHVO46PhCDerjIpxi7E+d2GxgUDu+nzw/HuLnUdxHWr6WQ+mVn/4iJgMKKFFdiUwFcFRDvcjCtw==", + "requires": { + "date-format": "^2.1.0", + "debug": "^4.1.1", + "fs-extra": "^8.1.0" + }, + "dependencies": { + "date-format": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-2.1.0.tgz", + "integrity": "sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==" + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "underscore": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.2.tgz", + "integrity": "sha512-D39qtimx0c1fI3ya1Lnhk3E9nONswSKhnffBI0gME9C99fYOkNi04xs8K6pePLhvl1frbDemkaBQ5ikWllR2HQ==" + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "requires": { + "punycode": "^2.1.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "x-xss-protection": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/x-xss-protection/-/x-xss-protection-1.3.0.tgz", + "integrity": "sha512-kpyBI9TlVipZO4diReZMAHWtS0MMa/7Kgx8hwG/EuZLiA6sg4Ah/4TRdASHhRRN3boobzcYgFRUFSgHRge6Qhg==" + } + } +} diff --git a/kubernetes/dev/tekton/examples/example-bank/package.json b/kubernetes/dev/tekton/examples/example-bank/package.json new file mode 100755 index 0000000..5c07a4c --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/package.json @@ -0,0 +1,24 @@ +{ + "name": "NodejsStarterApp", + "version": "0.0.1", + "private": true, + "scripts": { + "start": "node app.js", + "dev": "DEVMODE=true node app.js" + }, + "dependencies": { + "body-parser": "^1.19.0", + "cfenv": "^1.2.2", + "dotenv": "^8.2.0", + "express": "^4.16.4", + "express-http-proxy": "^1.6.0", + "ibmcloud-appid": "^6.1.0", + "log4js": "^6.1.0", + "node-random-name": "^1.0.1", + "request": "^2.88.2" + }, + "repository": {}, + "engines": { + "node": "8.x" + } +} diff --git a/kubernetes/dev/tekton/examples/example-bank/pipelines/ACKNOWLEDGEMENT.md b/kubernetes/dev/tekton/examples/example-bank/pipelines/ACKNOWLEDGEMENT.md new file mode 100755 index 0000000..4c3b226 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/pipelines/ACKNOWLEDGEMENT.md @@ -0,0 +1 @@ +Parts of this pipeline related to Sonarqube were borrowed from Siamak Sadeghianfar and his [work](https://github.com/siamaksade/tekton-cd-demo) on Tekton. diff --git a/kubernetes/dev/tekton/examples/example-bank/pipelines/bank-pipelinerun.yaml b/kubernetes/dev/tekton/examples/example-bank/pipelines/bank-pipelinerun.yaml new file mode 100755 index 0000000..e3fea2d --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/pipelines/bank-pipelinerun.yaml @@ -0,0 +1,40 @@ +--- +apiVersion: tekton.dev/v1alpha1 +kind: PipelineRun +metadata: + generateName: bank-run- +spec: + pipelineRef: + name: example-bank + resources: + - name: bank-git + resourceSpec: + type: git + params: + - name: url + value: https://github.com/IBM/example-bank.git + - name: revision + value: main + - name: transaction-image + resourceSpec: + type: image + params: + - name: url + value: image-registry.openshift-image-registry.svc:5000/bank-infra/transaction + - name: user-image + resourceSpec: + type: image + params: + - name: url + value: image-registry.openshift-image-registry.svc:5000/bank-infra/user + - name: ui-image + resourceSpec: + type: image + params: + - name: url + value: image-registry.openshift-image-registry.svc:5000/bank-infra/ui + workspaces: + - name: local-maven-repo + persistentVolumeClaim: + claimName: maven-repo-pvc + serviceAccountName: pipeline diff --git a/kubernetes/dev/tekton/examples/example-bank/pipelines/bank-pvc.yaml b/kubernetes/dev/tekton/examples/example-bank/pipelines/bank-pvc.yaml new file mode 100755 index 0000000..aa03367 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/pipelines/bank-pvc.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: maven-repo-pvc +spec: + resources: + requests: + storage: 5Gi + volumeMode: Filesystem + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/pipelines/deployments/transaction.yaml b/kubernetes/dev/tekton/examples/example-bank/pipelines/deployments/transaction.yaml new file mode 100755 index 0000000..b728303 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/pipelines/deployments/transaction.yaml @@ -0,0 +1,60 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: transaction-service + labels: + app: transaction-service +spec: + replicas: 1 + selector: + matchLabels: + app: transaction-service + template: + metadata: + labels: + app: transaction-service + annotations: + sidecar.istio.io/inject: "false" + spec: + containers: + - name: transaction-service + image: ykoyfman/bank-transaction-service:1.0 + imagePullPolicy: Always + ports: + - name: http-server + containerPort: 9080 + envFrom: + - secretRef: + name: bank-db-secret + - secretRef: + name: bank-oidc-secret + env: + - name: USER_SERVICE_URL + value: "http://user-service:9080/bank/v1/users" + - name: KNATIVE_SERVICE_URL + value: "http://process-transaction.bank-renamed-no-mesh.svc.cluster.local" + - name: WLP_LOGGING_CONSOLE_LOGLEVEL + value: INFO +--- +apiVersion: v1 +kind: Service +metadata: + name: transaction-service + labels: + app: transaction-service +spec: + ports: + - port: 9080 + targetPort: 9080 + selector: + app: transaction-service +--- +apiVersion: v1 +kind: Route +metadata: + name: transaction-service +spec: + to: + kind: Service + name: transaction-service + diff --git a/kubernetes/dev/tekton/examples/example-bank/pipelines/deployments/ui.yaml b/kubernetes/dev/tekton/examples/example-bank/pipelines/deployments/ui.yaml new file mode 100755 index 0000000..0b86bfb --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/pipelines/deployments/ui.yaml @@ -0,0 +1,53 @@ +--- + apiVersion: v1 + kind: Service + metadata: + name: mobile-simulator-service + labels: + app: mobile-simulator + spec: + ports: + - port: 80 + protocol: TCP + targetPort: 8080 + type: LoadBalancer + selector: + app: mobile-simulator +--- +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: mobile-simulator-deployment + labels: + app: mobile-simulator +spec: + strategy: + type: Recreate + template: + metadata: + labels: + app: mobile-simulator + spec: + containers: + - image: anthonyamanse/mobile-simulator:example-bank-1.0 + imagePullPolicy: Always + name: mobile-simulator + envFrom: + - secretRef: + name: mobile-simulator-secrets + env: + - name: PORT + value: '8080' + ports: + - containerPort: 8080 + +--- +apiVersion: v1 +kind: Route +metadata: + name: mobile-simulator-service +spec: + to: + kind: Service + name: mobile-simulator-service + diff --git a/kubernetes/dev/tekton/examples/example-bank/pipelines/deployments/user.yaml b/kubernetes/dev/tekton/examples/example-bank/pipelines/deployments/user.yaml new file mode 100755 index 0000000..8fe34e1 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/pipelines/deployments/user.yaml @@ -0,0 +1,51 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: user-service + labels: + app: user-service +spec: + replicas: 1 + selector: + matchLabels: + app: user-service + template: + metadata: + labels: + app: user-service + spec: + containers: + - name: user-service + image: anthonyamanse/user-service:example-bank-1.0 + imagePullPolicy: Always + ports: + - name: http-server + containerPort: 9080 + envFrom: + - secretRef: + name: bank-db-secret + - secretRef: + name: bank-oidc-secret +--- +apiVersion: v1 +kind: Service +metadata: + name: user-service + labels: + app: user-service +spec: + ports: + - port: 9080 + targetPort: 9080 + selector: + app: user-service +--- +apiVersion: v1 +kind: Route +metadata: + name: user-service +spec: + to: + kind: Service + name: user-service + diff --git a/kubernetes/dev/tekton/examples/example-bank/pipelines/example-bank-pipeline.yaml b/kubernetes/dev/tekton/examples/example-bank/pipelines/example-bank-pipeline.yaml new file mode 100755 index 0000000..52573a6 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/pipelines/example-bank-pipeline.yaml @@ -0,0 +1,129 @@ +apiVersion: tekton.dev/v1alpha1 +kind: Pipeline +metadata: + name: example-bank +spec: + resources: + - name: bank-git + type: git + - name: transaction-image + type: image + - name: user-image + type: image + - name: ui-image + type: image + tasks: + - name: code-analysis + params: + - name: GOALS + value: + - install + - 'sonar:sonar' + - '-Dsonar.host.url=http://sonarqube:9000' + - '-Dsonar.userHome=/tmp/sonar' + - '-DskipITs' + - '-Darguments=-DskipITs' + resources: + inputs: + - name: source + resource: bank-git + taskRef: + kind: Task + name: maven + workspaces: + - name: maven-repo + workspace: local-maven-repo + - name: build-transaction + params: + - name: TLSVERIFY + value: 'false' + - name: MAVEN_ARGS_APPEND + value: '-pl :transaction-service -am package' + - name: PATH_CONTEXT + value: bank-app-backend/ + resources: + inputs: + - name: source + resource: bank-git + outputs: + - name: image + resource: transaction-image + runAfter: + - code-analysis + taskRef: + kind: Task + name: s2i-java-8 + - name: build-user + params: + - name: TLSVERIFY + value: 'false' + - name: MAVEN_ARGS_APPEND + value: '-pl :user-service -am package' + - name: PATH_CONTEXT + value: bank-app-backend/ + resources: + inputs: + - name: source + resource: bank-git + outputs: + - name: image + resource: user-image + runAfter: + - code-analysis + taskRef: + kind: Task + name: s2i-java-8 + - name: build-ui + params: + - name: TLSVERIFY + value: 'false' + resources: + inputs: + - name: source + resource: bank-git + outputs: + - name: image + resource: ui-image + runAfter: + - code-analysis + taskRef: + kind: Task + name: s2i-nodejs + - name: deploy-transaction + params: + - name: COMMANDS + value: > + oc apply -f + https://raw.githubusercontent.com/IBM/example-bank/main/bank-app-backend/transaction-service/deployment.yaml + -n example-bank + runAfter: + - build-transaction + taskRef: + kind: Task + name: openshift-client + - name: deploy-user + params: + - name: COMMANDS + value: > + oc apply -f + https://raw.githubusercontent.com/IBM/example-bank/main/bank-app-backend/user-service/deployment.yaml + -n example-bank + runAfter: + - build-user + taskRef: + kind: Task + name: openshift-client + - name: deploy-ui + params: + - name: COMMANDS + value: > + oc apply -f + https://raw.githubusercontent.com/IBM/example-bank/main/deployment.yaml + -n example-bank + runAfter: + - build-transaction + taskRef: + kind: Task + name: openshift-client + workspaces: + - name: local-maven-repo diff --git a/kubernetes/dev/tekton/examples/example-bank/pipelines/sonarqube.yaml b/kubernetes/dev/tekton/examples/example-bank/pipelines/sonarqube.yaml new file mode 100755 index 0000000..efaf893 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/pipelines/sonarqube.yaml @@ -0,0 +1,113 @@ +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: sonarqube + labels: + app: sonarqube + app.kubernetes.io/component: sonarqube + app.kubernetes.io/instance: sonarqube + app.kubernetes.io/name: sonarqube + app.kubernetes.io/part-of: sonarqube +spec: + replicas: 1 + selector: + matchLabels: + app: sonarqube + name: sonarqube + template: + metadata: + labels: + app: sonarqube + name: sonarqube + spec: + containers: + - name: sonarqube + imagePullPolicy: Always + image: docker.io/sonarqube:8-community-beta + ports: + - containerPort: 9000 + protocol: TCP + volumeMounts: + - mountPath: /opt/sq/temp + name: sonarqube-temp + - mountPath: /opt/sq/conf + name: sonarqube-conf + - mountPath: /opt/sq/data + name: sonarqube-data + - mountPath: /opt/sq/extensions + name: sonarqube-extensions + - mountPath: /opt/sq/logs + name: sonarqube-logs + livenessProbe: + failureThreshold: 10 + httpGet: + path: / + port: 9000 + scheme: HTTP + initialDelaySeconds: 45 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 1 + readinessProbe: + failureThreshold: 10 + httpGet: + path: / + port: 9000 + scheme: HTTP + initialDelaySeconds: 10 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 1 + resources: + limits: + cpu: "1" + memory: 4Gi + requests: + cpu: 200m + memory: 512Mi + volumes: + - name: sonarqube-temp + emptyDir: {} + - name: sonarqube-conf + emptyDir: {} + - name: sonarqube-data + emptyDir: {} + - name: sonarqube-extensions + emptyDir: {} + - name: sonarqube-logs + emptyDir: {} +--- +apiVersion: v1 +kind: Route +metadata: + labels: + app: sonarqube + name: sonarqube +spec: + port: + targetPort: 9000-tcp + tls: + termination: edge + to: + kind: Service + name: sonarqube + weight: 100 + wildcardPolicy: None +--- +apiVersion: v1 +kind: Service +metadata: + labels: + app: sonarqube + name: sonarqube +spec: + ports: + - name: 9000-tcp + port: 9000 + protocol: TCP + targetPort: 9000 + selector: + app: sonarqube + name: sonarqube + type: ClusterIP \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/mvn-task-settings.yaml b/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/mvn-task-settings.yaml new file mode 100755 index 0000000..69d3497 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/mvn-task-settings.yaml @@ -0,0 +1,263 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: maven-settings +data: + settings.xml: | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/mvn-task.yaml b/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/mvn-task.yaml new file mode 100755 index 0000000..b9afac1 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/mvn-task.yaml @@ -0,0 +1,40 @@ +--- +apiVersion: tekton.dev/v1alpha1 +kind: Task +metadata: + name: maven +spec: + workspaces: + - name: maven-repo + inputs: + params: + - name: GOALS + description: The Maven goals to run + type: array + default: ["package"] + - name: MAVEN_SETTINGS_CONFIGMAP + description: The configmap containing Maven settings.xml + type: string + default: maven-settings + resources: + - name: source + type: git + steps: + - name: mvn + image: gcr.io/cloud-builders/mvn + workingDir: /workspace/source/bank-app-backend + command: ["/usr/bin/mvn"] + args: + - -DskipITs + - -Dmaven.test.skip=true + - -Dmaven.repo.local=$(workspaces.maven-repo.path) + - -s + - /var/config/settings.xml + - "$(inputs.params.GOALS)" + volumeMounts: + - name: maven-settings + mountPath: /var/config + volumes: + - name: maven-settings + configMap: + name: $(inputs.params.MAVEN_SETTINGS_CONFIGMAP) diff --git a/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/oc-task.yaml b/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/oc-task.yaml new file mode 100755 index 0000000..f0a4844 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/oc-task.yaml @@ -0,0 +1,15 @@ +apiVersion: tekton.dev/v1alpha1 +kind: Task +metadata: + name: openshift-client +spec: + inputs: + params: + - name: COMMANDS + type: string + steps: + - name: run-commands + image: quay.io/openshift/origin-cli:latest + script: | + #!/usr/bin/env bash + $(inputs.params.COMMANDS) diff --git a/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/task-s2i-java.yaml b/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/task-s2i-java.yaml new file mode 100755 index 0000000..db0de98 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/task-s2i-java.yaml @@ -0,0 +1,123 @@ +apiVersion: tekton.dev/v1alpha1 +kind: Task +metadata: + name: s2i-java-8 +spec: + inputs: + params: + - default: . + description: The location of the path to run s2i from + name: PATH_CONTEXT + type: string + - default: 'true' + description: >- + Verify the TLS on the registry endpoint (for push/pull to a non-TLS + registry) + name: TLSVERIFY + type: string + - default: '' + description: Additional Maven arguments + name: MAVEN_ARGS_APPEND + type: string + - default: 'false' + description: Remove the Maven repository after the artifact is built + name: MAVEN_CLEAR_REPO + type: string + - default: '' + description: The base URL of a mirror used for retrieving artifacts + name: MAVEN_MIRROR_URL + type: string + resources: + - name: source + type: git + outputs: + resources: + - name: image + type: image + steps: + - args: + - |- + echo "MAVEN_CLEAR_REPO=$(inputs.params.MAVEN_CLEAR_REPO)" > env-file + + [[ '$(inputs.params.MAVEN_ARGS_APPEND)' != "" ]] && + echo "MAVEN_ARGS_APPEND=$(inputs.params.MAVEN_ARGS_APPEND)" >> env-file + + [[ '$(inputs.params.MAVEN_MIRROR_URL)' != "" ]] && + echo "MAVEN_MIRROR_URL=$(inputs.params.MAVEN_MIRROR_URL)" >> env-file + + echo "Generated Env file" + echo "------------------------------" + cat env-file + echo "------------------------------" + command: + - /bin/sh + - '-c' + image: quay.io/openshift-pipeline/s2i + name: gen-env-file + resources: {} + volumeMounts: + - mountPath: /env-params + name: envparams + workingDir: /env-params + - command: + - s2i + - build + - $(inputs.params.PATH_CONTEXT) + - registry.access.redhat.com/redhat-openjdk-18/openjdk18-openshift + - '--image-scripts-url' + - 'image:///usr/local/s2i' + - '--as-dockerfile' + - /gen-source/Dockerfile.gen + - '--environment-file' + - /env-params/env-file + image: quay.io/openshift-pipeline/s2i + name: generate + resources: {} + volumeMounts: + - mountPath: /gen-source + name: gen-source + - mountPath: /env-params + name: envparams + workingDir: /workspace/source + - command: + - buildah + - bud + - '--tls-verify=$(inputs.params.TLSVERIFY)' + - '--layers' + - '-f' + - /gen-source/Dockerfile.gen + - '-t' + - $(outputs.resources.image.url) + - . + image: 'quay.io/buildah/stable:v1.11.4' + name: build + resources: {} + securityContext: + privileged: true + volumeMounts: + - mountPath: /var/lib/containers + name: varlibcontainers + - mountPath: /gen-source + name: gen-source + workingDir: /gen-source + - command: + - buildah + - push + - '--tls-verify=$(inputs.params.TLSVERIFY)' + - $(outputs.resources.image.url) + - 'docker://$(outputs.resources.image.url)' + image: 'quay.io/buildah/stable:v1.11.4' + name: push + resources: {} + securityContext: + privileged: true + volumeMounts: + - mountPath: /var/lib/containers + name: varlibcontainers + volumes: + - emptyDir: {} + name: varlibcontainers + - emptyDir: {} + name: gen-source + - emptyDir: {} + name: envparams diff --git a/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/task-s2i-nodejs.yaml b/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/task-s2i-nodejs.yaml new file mode 100755 index 0000000..011e70e --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/pipelines/tasks/task-s2i-nodejs.yaml @@ -0,0 +1,83 @@ +apiVersion: tekton.dev/v1alpha1 +kind: Task +metadata: + name: s2i-nodejs +spec: + inputs: + params: + - default: '8' + description: The version of the nodejs + name: VERSION + type: string + - default: . + description: The location of the path to run s2i from. + name: PATH_CONTEXT + type: string + - default: 'true' + description: >- + Verify the TLS on the registry endpoint (for push/pull to a non-TLS + registry) + name: TLSVERIFY + type: string + resources: + - name: source + type: git + outputs: + resources: + - name: image + type: image + steps: + - command: + - s2i + - build + - $(inputs.params.PATH_CONTEXT) + - registry.access.redhat.com/rhscl/nodejs-$(inputs.params.VERSION)-rhel7 + - '--as-dockerfile' + - /gen-source/Dockerfile.gen + image: quay.io/openshift-pipeline/s2i + name: generate + resources: {} + volumeMounts: + - mountPath: /gen-source + name: gen-source + workingDir: /workspace/source + - command: + - buildah + - bud + - '--tls-verify=$(inputs.params.TLSVERIFY)' + - '--layers' + - '-f' + - /gen-source/Dockerfile.gen + - '-t' + - $(outputs.resources.image.url) + - . + image: 'quay.io/buildah/stable:v1.11.4' + name: build + resources: {} + securityContext: + privileged: true + volumeMounts: + - mountPath: /var/lib/containers + name: varlibcontainers + - mountPath: /gen-source + name: gen-source + workingDir: /gen-source + - command: + - buildah + - push + - '--tls-verify=$(inputs.params.TLSVERIFY)' + - $(outputs.resources.image.url) + - 'docker://$(outputs.resources.image.url)' + image: 'quay.io/buildah/stable:v1.11.4' + name: push + resources: {} + securityContext: + privileged: true + volumeMounts: + - mountPath: /var/lib/containers + name: varlibcontainers + volumes: + - emptyDir: {} + name: varlibcontainers + - emptyDir: {} + name: gen-source diff --git a/kubernetes/dev/tekton/examples/example-bank/public/favicon.ico b/kubernetes/dev/tekton/examples/example-bank/public/favicon.ico new file mode 100755 index 0000000..f00be52 Binary files /dev/null and b/kubernetes/dev/tekton/examples/example-bank/public/favicon.ico differ diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/account-deselected.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/account-deselected.svg new file mode 100755 index 0000000..894ed6d --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/account-deselected.svg @@ -0,0 +1 @@ +account-deselected \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/account-selected.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/account-selected.svg new file mode 100755 index 0000000..4ed932b --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/account-selected.svg @@ -0,0 +1 @@ +account-selected \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/admin.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/admin.svg new file mode 100755 index 0000000..4db2eda --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/admin.svg @@ -0,0 +1 @@ +admin \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/bank.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/bank.svg new file mode 100755 index 0000000..9f0beb1 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/bank.svg @@ -0,0 +1 @@ +bankBANK \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/banklogo.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/banklogo.svg new file mode 100755 index 0000000..09c987c --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/banklogo.svg @@ -0,0 +1 @@ +banklogo \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/cafe.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/cafe.svg new file mode 100755 index 0000000..a292976 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/cafe.svg @@ -0,0 +1 @@ +cafeCAFE \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/cloud.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/cloud.svg new file mode 100755 index 0000000..fc38987 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/cloud.svg @@ -0,0 +1 @@ +cloud \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/deploy-rules.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/deploy-rules.svg new file mode 100755 index 0000000..e2804c7 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/deploy-rules.svg @@ -0,0 +1,12 @@ + + + + + +Deploy rules + + diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/eventlist-deselected.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/eventlist-deselected.svg new file mode 100755 index 0000000..e5bdd97 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/eventlist-deselected.svg @@ -0,0 +1 @@ +eventlist-deselected \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/eventlist-selected.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/eventlist-selected.svg new file mode 100755 index 0000000..604e73d --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/eventlist-selected.svg @@ -0,0 +1 @@ +eventlist-selected \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/flash.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/flash.svg new file mode 100755 index 0000000..63ec480 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/flash.svg @@ -0,0 +1,13 @@ + + + + + +Flash + diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/fuel.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/fuel.svg new file mode 100755 index 0000000..6af8399 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/fuel.svg @@ -0,0 +1 @@ +fuelFUEL \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/groceries.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/groceries.svg new file mode 100755 index 0000000..2eb008b --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/groceries.svg @@ -0,0 +1 @@ +groceriesGROCERIES \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/istio.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/istio.svg new file mode 100755 index 0000000..81a6d03 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/istio.svg @@ -0,0 +1 @@ +istio \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/lightbulb.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/lightbulb.svg new file mode 100755 index 0000000..eed3571 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/lightbulb.svg @@ -0,0 +1 @@ +lightbulb \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/loop.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/loop.svg new file mode 100755 index 0000000..3af6846 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/loop.svg @@ -0,0 +1,10 @@ + + + + + +Loop + \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/loyaltylogo.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/loyaltylogo.svg new file mode 100755 index 0000000..fe2c15a --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/loyaltylogo.svg @@ -0,0 +1,17 @@ + + + + +loyaltylogo + + + + + + diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/newyork.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/newyork.svg new file mode 100755 index 0000000..efd1c0b --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/newyork.svg @@ -0,0 +1 @@ +newyork \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/programming.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/programming.svg new file mode 100755 index 0000000..731a29e --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/programming.svg @@ -0,0 +1,15 @@ + + + + + + +Development + diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/reservation-deselected.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/reservation-deselected.svg new file mode 100755 index 0000000..cc3d72e --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/reservation-deselected.svg @@ -0,0 +1 @@ +reservation-deselected \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/reservation-selected.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/reservation-selected.svg new file mode 100755 index 0000000..0e824aa --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/reservation-selected.svg @@ -0,0 +1 @@ +reservation-selected \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/restaurant.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/restaurant.svg new file mode 100755 index 0000000..7899049 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/restaurant.svg @@ -0,0 +1 @@ +restaurantRESTAURANT \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/rideshare.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/rideshare.svg new file mode 100755 index 0000000..4474aa6 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/rideshare.svg @@ -0,0 +1 @@ +rideshareRIDE SHARE \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/secure.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/secure.svg new file mode 100755 index 0000000..c71666d --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/secure.svg @@ -0,0 +1 @@ +secure \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/statistics-deselected.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/statistics-deselected.svg new file mode 100755 index 0000000..17dcebe --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/statistics-deselected.svg @@ -0,0 +1 @@ +statsicongrey \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/statistics-selected.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/statistics-selected.svg new file mode 100755 index 0000000..d8107d0 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/statistics-selected.svg @@ -0,0 +1 @@ +statsiconred \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/threat.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/threat.svg new file mode 100755 index 0000000..4eb5221 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/threat.svg @@ -0,0 +1 @@ +threat \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/transactions-deselected.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/transactions-deselected.svg new file mode 100755 index 0000000..45c6ed0 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/transactions-deselected.svg @@ -0,0 +1 @@ +crediticongrey \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/images/transactions-selected.svg b/kubernetes/dev/tekton/examples/example-bank/public/images/transactions-selected.svg new file mode 100755 index 0000000..7bd4cb8 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/images/transactions-selected.svg @@ -0,0 +1 @@ +crediticonred \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/index.html b/kubernetes/dev/tekton/examples/example-bank/public/index.html new file mode 100755 index 0000000..1c37acc --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/index.html @@ -0,0 +1,1236 @@ + + + + + Example Bank - Microservice Example on OpenShift V4 + + + + + + + + + +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/account.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/account.js new file mode 100755 index 0000000..6a4bc31 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/account.js @@ -0,0 +1,112 @@ +class Account extends HTMLElement { + + events = "" + points = "" + name = "" + + constructor() { + // Always call super first in constructor + super(); + + console.log('INITIALIZED ACCOUNT VIEW'); + var customElement = this; + + let template = document.getElementById('accountview'); + let templateContent = template.content; + + + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + + let sr = this.shadowRoot; + let logoutButton = sr.getElementById("logoutAccountButton") + logoutButton.addEventListener("click", e => { + this.logout(); + }) + + + let deleteButton = sr.getElementById("deleteAccountButton") + deleteButton.addEventListener("click", e => { + this.delete(); + }) + } + + logout() { + // clear cookies of tokens + document.cookie = "access_token=; Max-Age=0'" + document.cookie = "id_token=; Max-Age=0'" + + // clear local storage + localStorage.clear() + + var phoneview = document.getElementById("phoneview"); + var mobileview = phoneview.getMobileView(); + mobileview.innerHTML = ""; + var welcome = document.createElement('welcome-element') + welcome.setAttribute('mode','INTEGRATED') + mobileview.appendChild(welcome) + + phoneview.hideNavigation(); + } + + delete() { + let phoneview = document.getElementById("phoneview"); + let mobileview = phoneview.getMobileView(); + mobileview.innerHTML = ""; + let element = document.createElement('loading-spinner-element'); + element.setAttribute("status", "Deleting account...") + mobileview.appendChild(element) + + setTimeout(() => { + deleteUserProfile(loyalty.getCookie('access_token'), success => { + if (success) { + element.setAttribute("status", "Successfully deleted account. Logging out...") + setTimeout(() => { + this.logout(); + }, 2500) + } + }) + }, 1500) + } + + connectedCallback(){ + var customElement = this; + var sr = this.shadowRoot; + + /* where to make a data call for points/events */ + + this.mode = customElement.getAttribute('mode'); + this.events = customElement.getAttribute('events'); + this.points = customElement.getAttribute('points'); + + if (this.events == null) { + this.events = '-' + } + if (this.points == null) { + this.points = '-' + } + + this.name = customElement.getAttribute('name') || localStorage.getItem("loyaltyname") + + if(this.name == null){ + this.name = ""; + }else{ + console.log('SETTING NAME') + } + + + this.nameelement = sr.getElementById('name'); + this.nameelement.innerHTML = this.name; + } +} + +try { + customElements.define('account-element', Account); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/asset.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/asset.js new file mode 100755 index 0000000..9673593 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/asset.js @@ -0,0 +1,45 @@ +class Asset extends HTMLElement { + + static get observedAttributes() { + return ['assetimage', 'text', 'link']; + } + + constructor(details) { + // Always call super first in constructor + super(); + + let template = document.getElementById('assetlink'); + let templateContent = template.content; + + this.details = details; + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + connectedCallback(){ + var customElement = this; + var sr = this.shadowRoot; + this.assetimage = sr.getElementById('assetimage'); + this.assetimage.src = customElement.getAttribute('assetimage'); + this.assettext = sr.getElementById('text'); + this.assettext.innerHTML = customElement.getAttribute('text'); + + let link = customElement.getAttribute('link') + if (link) { + this.assettext.addEventListener("click", e => { + window.location = link + }) + } + } +} + +try { + customElements.define('asset-element', Asset); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/demoaccounts-devmode.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/demoaccounts-devmode.js new file mode 100755 index 0000000..dd15c0d --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/demoaccounts-devmode.js @@ -0,0 +1,30 @@ +function loginWithAppId(username, password, callback) { + let jsonBody = { + id_token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6ImFwcElkLTY4ZDI1ZDQ2LThmZGItNDhlMy1iODNkLTJhYzY2YzI5MTA2NC0yMDIwLTAxLTMxVDAwOjI5OjI4Ljg1NiIsInZlciI6NH0.eyJpc3MiOiJodHRwczovL3VzLXNvdXRoLmFwcGlkLmNsb3VkLmlibS5jb20vb2F1dGgvdjQvMTIzIiwiYXVkIjpbIjEyMyJdLCJleHAiOjAsInRlbmFudCI6IjY4ZDI1ZDQ2LThmZGItNDhlMy1iODNkLTJhYzY2YzI5MTA2NCIsImlhdCI6MCwiZW1haWwiOiJKb2huQFNtaXRoLm9yZyIsIm5hbWUiOiJKb2huIFNtaXRoIiwic3ViIjoiMTIzIiwicHJlZmVycmVkX3VzZXJuYW1lIjoiTGl0YUNhdnJhayIsImdpdmVuX25hbWUiOiJKb2huIiwiZmFtaWx5X25hbWUiOiJTbWl0aCIsImlkZW50aXRpZXMiOlt7InByb3ZpZGVyIjoiY2xvdWRfZGlyZWN0b3J5IiwiaWQiOiIxMjMifV0sImFtciI6WyJjbG91ZF9kaXJlY3RvcnkiXX0.ABC", + access_token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6ImFwcElkLTY4ZDI1ZDQ2LThmZGItNDhlMy1iODNkLTJhYzY2YzI5MTA2NC0yMDIwLTAxLTMxVDAwOjI5OjI4Ljg1NiIsInZlciI6NH0.eyJpc3MiOiJodHRwczovL3VzLXNvdXRoLmFwcGlkLmNsb3VkLmlibS5jb20vb2F1dGgvdjQvMTIzIiwiZXhwIjowLCJhdWQiOlsiMTIzIl0sInN1YiI6IjEyMyIsImFtciI6WyJjbG91ZF9kaXJlY3RvcnkiXSwiaWF0IjowLCJ0ZW5hbnQiOiIxMjMiLCJzY29wZSI6Im9wZW5pZCBhcHBpZF9kZWZhdWx0IGFwcGlkX3JlYWR1c2VyYXR0ciBhcHBpZF9yZWFkcHJvZmlsZSBhcHBpZF93cml0ZXVzZXJhdHRyIGFwcGlkX2F1dGhlbnRpY2F0ZWQifQ.ABC" + } + + document.cookie = 'access_token=' + jsonBody.access_token + ';' + document.cookie = 'id_token=' + jsonBody.id_token+ ';' + callback(jsonBody) +} + +function getRandomUser(callback) { + let text = "John Smith" + let name = text.split(' ') + let firstname = name[0] + let surname = name[1] + let password = name[0] + name[1] + let email = name[0] + "@" + name[1] + ".org" + callback(firstname, surname, password, email) +} + +function createAccountAppId(firstname, lastname, password, email, callback) { + let json = {} + json.status = "user created successfully" + callback(json) +} + +function getAllUsers(callback) { + callback(['JohnSmith']) +} diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/demoaccounts.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/demoaccounts.js new file mode 100755 index 0000000..53f569e --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/demoaccounts.js @@ -0,0 +1,67 @@ +function loginWithAppId(username, password, callback) { + let jsonBody = {username, password} + + fetch("/demo/login", { + method: 'POST', + headers: { + 'Content-type': 'application/json', + }, + body: JSON.stringify(jsonBody) + }).then((response) => { + console.log(response) + return response.json(); + }).then((json) => { + console.log(json) + callback(json) + }).catch((error) => { + callback(null) + }) +} + +function getRandomUser(callback) { + fetch("/demo/random_user") + .then((response) => { + return response.text() + }) + .then((text) => { + let name = text.split(' ') + let firstname = name[0] + let surname = name[1] + let password = name[0] + name[1] + let email = name[0] + "@" + name[1] + ".org" + callback(firstname, surname, password, email) + }) +} + +function createAccountAppId(firstname, lastname, password, email, callback) { + let jsonRequestBody = {} + jsonRequestBody.firstName = firstname + jsonRequestBody.lastName = lastname + jsonRequestBody.password = password + jsonRequestBody.email = email + + fetch('/demo/create_account', { + method: 'POST', + headers: { + 'Content-type': 'application/json' + }, + body: JSON.stringify(jsonRequestBody) + }).then((response) => { + console.log(response) + return response.json() + }).then((json) => { + callback(json) + }) +} + +function getAllUsers(callback) { + fetch('/demo/get_all_users') + .then((response) => { + return response.json() + }).then((users) => { + callback(users) + }) +} + +// sample appid account +// loginWithAppId("RolandeColla", "RolandeColla") diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/libertyclient-devmode.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/libertyclient-devmode.js new file mode 100755 index 0000000..a46b441 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/libertyclient-devmode.js @@ -0,0 +1,137 @@ +let SECURE_USER_BACKEND_URL='/proxy_user' +let SECURE_EVENT_BACKEND_URL='/proxy_transaction' +// DEVMODE +let mode = 'INTEGRATED' +function createProfile(access_token, callback) { + callback(true) +} + +function deleteUserProfile(access_token, callback) { + callback(true) +} + +function getTransactions(access_token, callback) { + let testdata = [{ + "amount": 20, + "category": "Cafe", + "date": "2020-04-27T22:09:39.183Z", + "pointsEarned": 20, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Starbucks", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + }, + { + "amount": 15, + "category": "Carshare", + "date": "2020-04-27T22:09:39.183Z", + "pointsEarned":15, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Uber", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + }, + { + "amount": 70, + "category": "Gas", + "date": "2020-04-27T22:09:39.183Z", + "pointsEarned": 100, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Esso", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + }, + { + "amount": 20, + "category": "Meals", + "date": "2020-04-27T22:09:39.183Z", + "pointsEarned":20, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Sweetgreen", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + },, + { + "amount": 127, + "category": "Groceries", + "date": "2020-04-27T22:09:39.183Z", + "pointsEarned": 200, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Whole Foods", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + }, + { + "amount": 34, + "category": "Meals", + "date": "2020-04-17T22:09:39.183Z", + "pointsEarned":34, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Shake Shack", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + }, + , + { + "amount": 20, + "category": "Meals", + "date": "2020-04-18T22:09:39.183Z", + "pointsEarned":20, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Sweetgreen", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + },, + { + "amount": 127, + "category": "Groceries", + "date": "2020-04-27T22:09:39.183Z", + "pointsEarned": 200, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Whole Foods", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + }, + { + "amount": 5.75, + "category": "Cafe", + "date": "2020-04-28T22:09:39.183Z", + "pointsEarned":34, + "processed": true, + "transactionId": "c2eb0fb9-2af0-43a3-820d-fa210203f698", + "transactionName": "Starbucks", + "userId": "60e67c81-1a27-4423-a890-db653941822a" + } + ] + callback(null, testdata) +} + +function getSpending(access_token, callback) { + var data = [ + { + "category": "Cafe", + "amount": 45 + }, + { + "category": "Groceries", + "amount": 239 + }, + { + "category": "Fuel", + "amount": 75 + }, + { + "category": "Ride Share", + "amount": 35 + }, + { + "category": "Restaurant", + "amount": 90 + } + ]; + callback(null, data) +} + +function createTransaction(access_token, transactionName, category, amount, callback) { + callback(true) +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/libertyclient.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/libertyclient.js new file mode 100755 index 0000000..b80e742 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/libertyclient.js @@ -0,0 +1,227 @@ +let SECURE_USER_BACKEND_URL='/proxy_user' +let SECURE_EVENT_BACKEND_URL='/proxy_transaction' + +function createProfile(access_token, callback) { + let jsonRequestBody = {} + jsonRequestBody.consentGiven = true + + fetch(SECURE_USER_BACKEND_URL + '/bank/v1/users', { + method: 'POST', + headers: { + 'Authorization': 'Bearer ' + access_token, + 'Content-type': 'application/json' + }, + body: JSON.stringify(jsonRequestBody) + }).then((response) => { + if (response.status == '204') { + callback(true) + } else { + callback(false) + } + }) +} + +function getUserStats(access_token, callback) { + fetch(SECURE_USER_BACKEND_URL + '/bank/v1/userEvents/self/info', { + method: 'GET', + headers: { + 'Authorization': 'Bearer ' + access_token + } + }).then(async (response) => { + if (response.status == '200') { + return response.json() + } else { + let responsetext = await response.text() + console.log(responsetext) + throw responsetext + } + }).then((json) => { + callback(null, json.eventCount, json.pointsEarned) + }).catch(e => { + console.log(e) + callback(e, null, null) + }) +} + +function getUserEvents(access_token, callback) { + fetch(SECURE_USER_BACKEND_URL + '/bank/v1/userEvents/self', { + method: 'GET', + headers: { + 'Authorization': 'Bearer ' + access_token + } + }).then(async (response) => { + if (response.status == '200') { + return response.json() + } else { + let responsetext = await response.text() + console.log(responsetext) + throw responsetext + } + }).then((events) => { + callback(null, events) + }).catch(e => { + console.log(e) + callback(e, null) + }) +} + +function getUserEventsWithData(access_token, callback) { + getUserEvents(access_token, (err, events) => { + let queryParams = '' + + if (events.length == 0) { + callback(null, events) + } else { + events.forEach(element => { + queryParams += 'id=' + element + '&' + }); + + fetch(SECURE_EVENT_BACKEND_URL + '/bank/v1/events?' + queryParams, { + method: 'GET', + headers: { + 'Authorization': 'Bearer ' + access_token + } + }).then(async (response) => { + console.log(response) + if (response.status == '200') { + return response.json() + } else { + let responsetext = await response.text() + console.log(responsetext) + throw responsetext + } + }).then((events) => { + callback(null, events) + }).catch(e => { + callback(e, null) + }) + + } + }) +} + +function getEvents(access_token, callback) { + fetch(SECURE_EVENT_BACKEND_URL + '/bank/v1/events', { + method: 'GET', + headers: { + 'Authorization': 'Bearer ' + access_token + } + }).then(async (response) => { + if (response.status == '200') { + return response.json() + } else { + let responsetext = await response.text() + console.log(responsetext) + throw responsetext + } + }).then((events) => { + callback(null, events) + }).catch(e => { + console.log(e) + callback(e, null) + }) +} + +function checkInEvent(access_token, eventId, callback) { + let jsonRequestBody = {} + jsonRequestBody.eventId = eventId + + fetch(SECURE_USER_BACKEND_URL + '/bank/v1/userEvents', { + method: 'POST', + headers: { + 'Authorization': 'Bearer ' + access_token, + 'Content-type': 'application/json' + }, + body: JSON.stringify(jsonRequestBody) + }).then((response) => { + console.log(response) + if (response.status == '204') { + callback(true) + } else { + callback(false) + } + }) +} + +function deleteUserProfile(access_token, callback) { + fetch(SECURE_USER_BACKEND_URL + '/bank/v1/users/self', { + method: 'DELETE', + headers: { + 'Authorization': 'Bearer ' + access_token + } + }).then((response) => { + console.log(response) + if (response.status == '204') { + callback(true) + } else { + callback(false) + } + }) +} + +function getTransactions(access_token, callback) { + fetch(SECURE_EVENT_BACKEND_URL + '/bank/v1/transactions', { + method: 'GET', + headers: { + 'Authorization': 'Bearer ' + access_token + } + }).then(async (response) => { + if (response.status == '200') { + return response.json() + } else { + let responsetext = await response.text() + console.log(responsetext) + throw responsetext + } + }).then((transactions) => { + callback(null, transactions) + }).catch(e => { + console.log(e) + callback(e, null) + }) +} + +function getSpending(access_token, callback) { + fetch(SECURE_EVENT_BACKEND_URL + '/bank/v1/transactions/spending', { + method: 'GET', + headers: { + 'Authorization': 'Bearer ' + access_token + } + }).then(async (response) => { + if (response.status == '200') { + return response.json() + } else { + let responsetext = await response.text() + console.log(responsetext) + throw responsetext + } + }).then((transactions) => { + callback(null, transactions) + }).catch(e => { + console.log(e) + callback(e, null) + }) +} + +function createTransaction(access_token, transactionName, category, amount, callback) { + let jsonRequestBody = { transactionName, category, amount } + + fetch(SECURE_EVENT_BACKEND_URL + '/bank/v1/transactions', { + method: 'POST', + headers: { + 'Authorization': 'Bearer ' + access_token, + 'Content-type': 'application/json' + }, + body: JSON.stringify(jsonRequestBody) + }).then(response => { + console.log(response) + if (response.status == '204') { + callback(true) + } else { + callback(false) + } + }).catch(e => { + console.log(e) + callback(false) + }) +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/localstoragehelper.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/localstoragehelper.js new file mode 100755 index 0000000..9ca51db --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/clientHelpers/localstoragehelper.js @@ -0,0 +1,31 @@ +function attendEvent(userSubject, event) { + let localStorageId = userSubject + '-events' + let userEvents = localStorage.getItem(localStorageId) + + if (userEvents == null || userEvents == "") { + let events = [] + events.push(event) + localStorage.setItem(userSubject + '-events', JSON.stringify(events)) + } else { + let arrayOfEvents = JSON.parse(userEvents) + if (arrayOfEvents.filter(e => e.eventId === event.eventId).length > 0) { + console.log('event exists in local storage') + } else { + arrayOfEvents.push(event) + } + localStorage.setItem(localStorageId, JSON.stringify(arrayOfEvents)) + } +} + +function getStoredEvents(userSubject) { + let storedEventsString = localStorage.getItem(userSubject + '-events') + if (storedEventsString == null || storedEventsString == "") return null + return JSON.parse(storedEventsString) +} + +function removeStoredEvent(userSubject, eventId) { + let localStorageId = userSubject + '-events' + let storedEvents = getStoredEvents(userSubject) + storedEvents = storedEvents.filter(e => e.eventId != eventId) + localStorage.setItem(localStorageId, JSON.stringify(storedEvents)) +} diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/home.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/home.js new file mode 100755 index 0000000..321e8b9 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/home.js @@ -0,0 +1,89 @@ +class Home extends HTMLElement { + + constructor() { + super(); + + console.log('INITIALIZING HOMESCREEN'); + + let template = document.getElementById('homescreen'); + let templateContent = template.content; + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + generateTransaction(access_token, shadowRoot, tile){ + var limit = tile.detail.eventData.limit * 100; + var base = tile.detail.eventData.base * 100; + + var charge = Math.floor(Math.random() * (limit - base + 1)) + base; + charge=charge/100; + charge=charge.toFixed(2); + + var entity = tile.detail.eventData.name.toUpperCase() + + console.log('CREATING A CREDIT CARD CHARGE OF $' + charge + ' ON ' + entity ); + + createTransaction(access_token, entity, entity, charge, + (success) => { + if (success) { + let text = 'CREDIT CARD $' + charge + ' ON ' + entity ; + this.showNotification(shadowRoot, text) + } else { + this.showNotification(shadowRoot, "Failed creating transaction. Please check logs") + } + }) + } + + showNotification(shadowRoot, notificationText) { + var notifcationArea = shadowRoot.getElementById('notificationarea'); + notifcationArea.innerHTML = ''; + + var message = document.createElement('div'); + message.innerHTML = notificationText + message.className = 'notification'; + notifcationArea.appendChild(message); + + setTimeout(function(){ + message.remove() + }, 2000); + } + + connectedCallback() { + + var sr = this.shadowRoot; + + var tiles = sr.getElementById('APPTILES'); + + var homescreen = this; + + tiles.addEventListener('APPTILE', e => { + console.log('HOMESCREEN RECIEVED EVENT FROM TILE: ' + e.detail.eventData.name.toLocaleUpperCase()); + + switch(e.detail.eventData.name){ + + case 'bank': + sr.host.parentElement.innerHTML = ''; + break; + + default: + let access_token = loyalty.getCookie('access_token') + if (access_token != "") { + homescreen.generateTransaction(access_token, sr, e) + } else { + homescreen.showNotification(sr, 'Please log in using the Bank app.') + } + break; + } + }); + } +} + +try { + customElements.define('homescreen-element', Home); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/login.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/login.js new file mode 100755 index 0000000..bda84cf --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/login.js @@ -0,0 +1,148 @@ +class Login extends HTMLElement { + + static get observedAttributes() { + return ['firstname', 'surname']; + } + + clickCheck(){ + console.log('login.clickCheck'); + if(this.checkbox.checked){ + this.createAccountButton.disabled = false; + }else{ + this.createAccountButton.disabled = true; + } + } + + createAccount() { + console.log('login.createAccount'); + + /* where to make a data call for points/events */ + let sr = this.shadowRoot + var firstname = sr.getElementById('firstname').innerHTML; + var surname = sr.getElementById('surname').innerHTML; + var email = sr.getElementById('email').innerHTML; + + var phoneview = document.getElementById("phoneview"); + var mobileview = phoneview.getMobileView(); + this.MODE = this.getAttribute('mode') + let previousMobileView = mobileview.innerHTML + mobileview.innerHTML = ""; + + // create loading spinner first + var element = document.createElement('loading-spinner-element'); + element.setAttribute("status", "Creating account...") + mobileview.appendChild(element) + + createAccountAppId(firstname, surname, firstname + "" + surname, email, (json) => { + console.log(json) + if (json.status == "user created successfully") { + + element.setAttribute("status", "Logging in...") + let usernamepassword = firstname + "" + surname + loginWithAppId(usernamepassword, usernamepassword, (jsonWithTokens) => { + // when creation of account + // and login complete, create the profile + element.setAttribute("status", "Creating user profile...") + createProfile(jsonWithTokens.access_token, success => { + // then show account view + if (success) { + this.createTransactionsView(firstname, surname) + } + // else edge case when failed to create user profile + }) + // edge case when unable to sign in + }) + } else { + // edge case when failed to register with app id + element.setAttribute("status", json.message) + setTimeout(() => { + mobileview.innerHTML = previousMobileView + }, 2000) + } + }) + } + + createTransactionsView(firstname, surname) { + var accountinfo ={ + firstname:firstname, + surname: surname + } + + var fullname = accountinfo.firstname + ' ' + accountinfo.surname + + var phoneview = document.getElementById("phoneview"); + var mobileview = phoneview.getMobileView(); + let element = document.createElement('transactions-element') + element.setAttribute('name', fullname); + element.setAttribute('mode', this.MODE); + mobileview.innerHTML = ""; + mobileview.appendChild(element); + + localStorage.setItem("loyaltyname", fullname); + + phoneview.showNavigation(); + } + + constructor() { + // Always call super first in constructor + super(); + + let template = document.getElementById('loginview'); + let templateContent = template.content; + + const shadow = this.attachShadow({mode: 'open'}) + .appendChild(templateContent.cloneNode(true)); + + var sr = this.shadowRoot; + + this.checkbox = sr.getElementById('gdprcheck'); + + this.checkbox.addEventListener('click', e => { + this.clickCheck(); + }); + + this.createAccountButton = sr.getElementById('createAccountButton'); + + this.createAccountButton.addEventListener('click', e =>{ + this.createAccount(); + }); + + } + + connectedCallback(){ + + var ids = ['firstname', 'surname', 'password', 'username', 'email']; + + var sr = this.shadowRoot; + var customElement = this; + + ids.forEach(function(id){ + var element = sr.getElementById(id); + var data = customElement.getAttribute(id); + element.innerHTML = data; + }) + let firstnameDiv = sr.getElementById('firstname') + let surnameDiv = sr.getElementById('surname') + let usernameDiv = sr.getElementById('username') + let passwordDiv = sr.getElementById('password') + let emailDiv = sr.getElementById('email') + firstnameDiv.addEventListener('input', function () { + usernameDiv.innerHTML = this.innerHTML + surnameDiv.innerHTML + passwordDiv.innerHTML = this.innerHTML.replace(/./g,'*') + surnameDiv.innerHTML.replace(/./g,'*') + emailDiv.innerHTML = this.innerHTML + "@" + surnameDiv.innerHTML + ".org" + }) + surnameDiv.addEventListener('input', function () { + usernameDiv.innerHTML = firstnameDiv.innerHTML + this.innerHTML + passwordDiv.innerHTML = firstnameDiv.innerHTML.replace(/./g,'*') + this.innerHTML.replace(/./g,'*') + emailDiv.innerHTML = firstnameDiv.innerHTML + "@" + this.innerHTML + ".org" + }) + } +} + +try { + customElements.define('login-element', Login); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/loyalty.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/loyalty.js new file mode 100755 index 0000000..4785266 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/loyalty.js @@ -0,0 +1,91 @@ +class Loyalty { + + mobileview; + + constructor() { + + console.log('INITIALIZING LOYALTY APP'); + + var phoneview = document.getElementById("phoneview"); + this.mobileview = phoneview.getMobileView(); + + // if cookie exists - then user is logged in + // navigate to account section + + // if(this.mode=='INTEGRATED'){ + // if (this.getCookie('access_token') != "" && this.getCookie('id_token') != "") { + // let id_object = this.parseJwt(this.getCookie('id_token')) + // console.log(id_object) + + // var accountinfo = { + // firstname: id_object.given_name, + // surname: id_object.family_name + // } + + // var fullname = accountinfo.firstname + ' ' + accountinfo.surname + + // this.mobileview.innerHTML = ""; + + // let element = document.createElement('transactions-element') + // element.setAttribute('name', fullname); + // element.setAttribute('mode', this.mode); + // this.mobileview.appendChild(element); + + // localStorage.setItem("loyaltyname", fullname); + // console.log(phoneview) + // phoneview.showNavigation(); + // } + // } + } + + signup() { + console.log('loyalty.signup'); + + // var phoneview = document.getElementById("phoneview"); + // var mobileview = phoneview.getMobileView(); + this.mobileview.innerHTML = ""; + + var element = document.createElement('login-element'); + getRandomUser((firstname, surname, password, email) => { + element.setAttribute('firstname', firstname); + element.setAttribute('surname', surname); + element.setAttribute('password', password); + element.setAttribute('email', email); + element.setAttribute('username', firstname + surname); + + this.mobileview.appendChild(element); + }) + + /* same as mobileview.innerHTML = + '' */ + } + + parseJwt (token) { + var base64Url = token.split('.')[1]; + var base64 = base64Url.replace('/-/g', '+').replace('/_/g', '/'); + var jsonPayload = decodeURIComponent(atob(base64).split('').map(function(c) { + return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2); + }).join('')); + + return JSON.parse(jsonPayload); + }; + + getCookie(cname) { + var name = cname + "="; + var decodedCookie = decodeURIComponent(document.cookie); + var ca = decodedCookie.split(';'); + for(var i = 0; i { + + console.log(e) + + var id = e.detail.eventData.id; + + // console.log('HOMESCREEN RECIEVED EVENT FROM NAV BUTTON: ' + id.toLocaleUpperCase()); + + this.setAllButtonsDisabled(); + + var button = sr.getElementById(id); + button.setEnabled(); + navelement.activeview = id; + + var mobileview = this.getMobileView(); + mobileview.innerHTML = "<" + id + "-element>"; + }); + } +} + +try { + customElements.define('navigation-element', Navigation); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/navigationbutton.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/navigationbutton.js new file mode 100755 index 0000000..3e8b90f --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/navigationbutton.js @@ -0,0 +1,79 @@ +class NavigationButton extends HTMLElement { + + + SELECTEDSUFFIX = '-selected.svg'; + DESELECTEDSUFFIX = '-deselected.svg' + + static get observedAttributes() { + return ['imagename','viewname','mode']; + } + + constructor() { + super(); + + let template = document.getElementById('navigationbutton'); + let templateContent = template.content; + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + setMode(mode){ + this.mode = mode; + + var imagestring = this.imagename; + + if(this.mode=='active'){ + imagestring = imagestring + this.SELECTEDSUFFIX; + }else{ + imagestring = imagestring + this.DESELECTEDSUFFIX; + } + + this.buttonimage.src = './images/' + imagestring; + } + + setEnabled(){ + this.setMode('active'); + } + + setDisabled(){ + this.setMode('inactive'); + } + + connectedCallback(){ + var customElement = this; + var sr = this.shadowRoot; + this.buttonimage = sr.getElementById('navbuttonimage'); + this.button = sr.getElementById('navbutton'); + + // this.mode = customElement.getAttribute('mode'); + this.viewname = customElement.getAttribute('viewname'); + this.imagename = customElement.getAttribute('imagename') + + this.setMode(customElement.getAttribute('mode')); + + this.button.onclick = function () { + console.log('CLICKING NAV BUTTON: ' + customElement.viewname.toLocaleUpperCase()); + var customEvent = new CustomEvent( 'NAV', { + detail: { + eventData: {"id":customElement.viewname} + }, + bubbles: true + }); + customElement.dispatchEvent(customEvent); + } + + console.log('ADDING NAVIGATION BUTTON : ' + this.viewname.toLocaleUpperCase()); + } +} + + +try { + customElements.define('navigationbutton-element', NavigationButton); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/phone.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/phone.js new file mode 100755 index 0000000..e47658e --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/phone.js @@ -0,0 +1,54 @@ +class Phone extends HTMLElement { + + constructor() { + super(); + + console.log('INITIALIZING MOBILE PHONE'); + + let template = document.getElementById('phone'); + let templateContent = template.content; + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + getMobileView(){ + var sr = this.shadowRoot; + var mobileview = sr.getElementById('mobileview'); + return mobileview; + } + + showNavigation(){ + var sr = this.shadowRoot; + var nav = sr.getElementById("mobilenavigation"); + nav.style.display = "flex"; + } + + hideNavigation(){ + var sr = this.shadowRoot; + var nav = sr.getElementById("mobilenavigation"); + nav.style.display = "none"; + } + + connectedCallback() { + var sr = this.shadowRoot; + var phone = this; + var basebutton = sr.getElementById('basebutton'); + var mobileview = sr.getElementById('mobileview'); + var navigation = sr.getElementById('mobilenavigation'); + var apptiles = sr.getElementById('APPTILES'); + basebutton.addEventListener('click', e => { + mobileview.innerHTML = ''; + phone.hideNavigation(); + }); + } +} + +try { + customElements.define('phone-element', Phone); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/spinner.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/spinner.js new file mode 100755 index 0000000..e864e89 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/spinner.js @@ -0,0 +1,35 @@ +class LoadingSpinner extends HTMLElement { + + static get observedAttributes() { return ['status']; } + + constructor() { + // Always call super first in constructor + super(); + + let template = document.getElementById('loadingspinner'); + let templateContent = template.content; + + console.log('INITIALIZING SPINNER') + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + attributeChangedCallback(name, oldValue, newValue) { + // if status attribute is set, change to custom status + console.log("ATTRIBUTE CHANGED") + if (name == "status") { + this.shadowRoot.getElementById("status").innerHTML = newValue + } + } +} + +try { + customElements.define('loading-spinner-element', LoadingSpinner); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/statistics.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/statistics.js new file mode 100755 index 0000000..a36e225 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/statistics.js @@ -0,0 +1,72 @@ +class Statistics extends HTMLElement { + + events = "" + points = "" + name = "" + + constructor() { + // Always call super first in constructor + super(); + + console.log('INITIALIZED ACCOUNT VIEW'); + var customElement = this; + + let template = document.getElementById('statistics'); + let templateContent = template.content; + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + connectedCallback(){ + + console.log('INITIALIZING ANALYSIS'); + + var sr = this.shadowRoot; + var ctx = sr.getElementById('myChart'); + getSpending(loyalty.getCookie('access_token'), (err, spending) => { + if (err == null) { + console.log(spending) + let labels = [] + let values = [] + + spending.forEach(entry => { + labels.push(entry.category) + values.push(entry.amount) + }) + + let data = { + labels: labels, + datasets: [{ + label: 'Spending Breakdown', + data: values, + backgroundColor: [ + 'rgba(178, 35, 60, 1.0)', + 'rgba(229, 45, 78, 1.0)', + 'rgba(236, 108, 131, 1.0)', + 'rgba(244, 171, 184, 1.0)', + 'rgba(252, 234, 237, 1.0)', + 'rgba(102, 20, 34, 1.0)' + ] + }] + }; + + let myDoughnutChart = new Chart(ctx, { + type: 'doughnut', + data: data + }); + } + + }) + } +} + +try { + customElements.define('statistics-element', Statistics); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/tile.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/tile.js new file mode 100755 index 0000000..0c2febf --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/tile.js @@ -0,0 +1,50 @@ +class Tile extends HTMLElement { + + static get observedAttributes() { + return ['tileimage', 'tiletext', 'limit', 'base']; + } + + constructor() { + super(); + + let template = document.getElementById('tile'); + let templateContent = template.content; + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + connectedCallback(){ + var customElement = this; + var sr = this.shadowRoot; + this.tileimage = sr.getElementById('buttonImage'); + this.tileimage.src = customElement.getAttribute('tileimage'); + this.tiletext = customElement.getAttribute('tiletext'); + this.limit=customElement.getAttribute('ceiling'); + this.base=customElement.getAttribute('base'); + this.button = sr.getElementById('tileButton'); + this.button.onclick = function () { + console.log('CLICKING TILE: ' + customElement.tiletext.toLocaleUpperCase()); + var customEvent = new CustomEvent( 'APPTILE', { + detail: { + eventData: {"name":customElement.tiletext,"limit":customElement.limit,"base":customElement.base} + }, + bubbles: true + }); + customElement.dispatchEvent(customEvent); + + } + + console.log('ADDING TILE : ' + this.tiletext.toLocaleUpperCase()); + } +} + +try { + customElements.define('tile-element', Tile); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/transaction.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/transaction.js new file mode 100755 index 0000000..fd61c86 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/transaction.js @@ -0,0 +1,54 @@ +class Transaction extends HTMLElement { + + observables = ['vendor', 'date', 'amount', 'points']; + + static get observedAttributes() { + return observables; + } + + constructor() { + super(); + + let template = document.getElementById('transaction'); + let templateContent = template.content; + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + connectedCallback() { + + var sr = this.shadowRoot; + + var transactionComponent = this; + + console.log('LOADING TRANSACTION DATA'); + + this.observables.forEach(function(id){ + var element = sr.getElementById(id); + element.innerHTML = transactionComponent.getAttribute(id); + }) + + + + // eventscomponent.addEventListener(eventid, e => { + // console.log(e.detail) + // let id_object = loyalty.parseJwt(loyalty.getCookie('id_token')) + // attendEvent(id_object.sub, e.detail.eventData) + // // re-attach this component + // let container = this.parentElement + // let content = container.innerHTML + // container.innerHTML = content + // }); + } +} + +try { + customElements.define('transaction-element', Transaction); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/transactions.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/transactions.js new file mode 100755 index 0000000..741bcfb --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/transactions.js @@ -0,0 +1,94 @@ +class Transactions extends HTMLElement { + + balance = 0; + points = 0; + + constructor() { + super(); + + let template = document.getElementById('transactions'); + let templateContent = template.content; + + console.log('INITIALIZING TRANSACTIONS VIEW') + + const shadow = this.attachShadow({ + mode: 'open' + }) + .appendChild(templateContent.cloneNode(true)); + } + + createTransaction(vendor, date, amount, points){ + var transaction = document.createElement('transaction-element'); + transaction.setAttribute('vendor', vendor); + transaction.setAttribute('date', date); + if (amount != '-') amount = amount.toFixed(2); + if (points != '-') points = points.toFixed(2); + transaction.setAttribute('amount', amount); + transaction.setAttribute('points',points); + return transaction; + } + + connectedCallback() { + var sr = this.shadowRoot; + var transactionlist = sr.getElementById('TRANSACTIONLIST'); + var balance = sr.getElementById('BALANCE'); + var points = sr.getElementById('POINTS'); + var transactionComponent = this; + + getTransactions(loyalty.getCookie('access_token'), (err, _transactions) => { + console.log(_transactions) + if (err == null) { + let transactions = _transactions.sort((a,b) => new Date(b.date) -new Date(a.date)) + transactions.forEach(transaction => { + const date = new Date(transaction.date) + const year = new Intl.DateTimeFormat('en', { year: 'numeric' }).format(date) + const month = new Intl.DateTimeFormat('en', { month: 'short' }).format(date) + const day = new Intl.DateTimeFormat('en', { day: '2-digit' }).format(date) + if (transaction.amount != null || transaction.amount != undefined) transactionComponent.balance += transaction.amount + if (transaction.pointsEarned != null || transaction.pointsEarned != undefined) transactionComponent.points += transaction.pointsEarned + if (transaction.amount == null || transaction.amount == undefined) transaction.amount = '-' + if (transaction.pointsEarned == null || transaction.pointsEarned == undefined) transaction.pointsEarned = '-' + let transactionElement = transactionComponent.createTransaction(transaction.transactionName, month + " " + day + " " + year, transaction.amount, transaction.pointsEarned) + transactionlist.appendChild(transactionElement) + }) + + balance.innerHTML = '$' + transactionComponent.balance.toFixed(2); + points.innerHTML = transactionComponent.points.toFixed(2); + } else if (err == 'User not registered') { + let phoneview = document.getElementById("phoneview"); + let mobileview = phoneview.getMobileView(); + mobileview.innerHTML = ""; + let element = document.createElement('loading-spinner-element'); + element.setAttribute("status", "User is marked for deletion...") + mobileview.appendChild(element) + phoneview.hideNavigation(); + + setTimeout(() => { + element.setAttribute("status", "Logging out...") + setTimeout(() => { + // clear cookies of tokens + document.cookie = "access_token=; Max-Age=0'" + document.cookie = "id_token=; Max-Age=0'" + + // clear local storage + localStorage.clear() + + mobileview.innerHTML = ""; + var welcome = document.createElement('welcome-element') + welcome.setAttribute('mode','INTEGRATED') + mobileview.appendChild(welcome) + + }, 2500) + }, 2000) + } + }) + } +} + +try { + customElements.define('transactions-element', Transactions); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/kubernetes/dev/tekton/examples/example-bank/public/javascript/welcome.js b/kubernetes/dev/tekton/examples/example-bank/public/javascript/welcome.js new file mode 100755 index 0000000..b19a1a7 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/javascript/welcome.js @@ -0,0 +1,108 @@ +class Welcome extends HTMLElement { + + constructor() { + + super(); + + console.log('INITIALIZING WELCOME VIEW'); + + let template = document.getElementById('welcomeview'); + let templateContent = template.content; + + const shadow = this.attachShadow({mode: 'open'}) + .appendChild(templateContent.cloneNode(true)); + + } + + connectedCallback() { + + let sr = this.shadowRoot; + + let selectUserInput = sr.getElementById("usernameselect") + let signinButton = sr.getElementById("signin") + + var phoneview = document.getElementById("phoneview"); + var mobileview = phoneview.getMobileView(); + + if (loyalty.getCookie('access_token') != "" && loyalty.getCookie('id_token') != "") { + let id_object = loyalty.parseJwt(loyalty.getCookie('id_token')) + console.log(id_object) + + var accountinfo = { + firstname: id_object.given_name, + surname: id_object.family_name + } + + var fullname = accountinfo.firstname + ' ' + accountinfo.surname + + mobileview.innerHTML = ""; + + let element = document.createElement('transactions-element') + element.setAttribute('name', fullname); + mobileview.appendChild(element); + + localStorage.setItem("loyaltyname", fullname); + + phoneview.showNavigation(); + } else { + getAllUsers((users) => { + users.forEach(user => { + var option = document.createElement("option"); + option.text = user + selectUserInput.add(option) + }); + }) + } + + signinButton.addEventListener("click", e => { + this.signin(selectUserInput.value, selectUserInput.value) + }) + } + + + signin(username, password) { + let sr = this.shadowRoot; + + var mobileview = sr.host.parentElement; + mobileview.innerHTML = ""; + + // create loading spinner first + var element = document.createElement('loading-spinner-element'); + element.setAttribute("status", "Logging in...") + mobileview.appendChild(element) + + loginWithAppId(username, password, (jsonWebToken) => { + // when login complete, + // re-initialize app? + new Loyalty(this.mode); + let id_object = loyalty.parseJwt(jsonWebToken.id_token) + console.log(id_object) + + var accountinfo = { + firstname: id_object.given_name, + surname: id_object.family_name + } + + var fullname = accountinfo.firstname + ' ' + accountinfo.surname + + mobileview.innerHTML = ""; + + let element = document.createElement('transactions-element') + element.setAttribute('name', fullname); + mobileview.appendChild(element); + + localStorage.setItem("loyaltyname", fullname); + + phoneview.showNavigation(); + // edge case when unable to sign in + }) + } +} + +try { + customElements.define('welcome-element', Welcome); +} catch (err) { + const h3 = document.createElement('h3') + h3.innerHTML = err + document.body.appendChild(h3) +} diff --git a/kubernetes/dev/tekton/examples/example-bank/public/schedule.html b/kubernetes/dev/tekton/examples/example-bank/public/schedule.html new file mode 100755 index 0000000..d4641e7 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/schedule.html @@ -0,0 +1 @@ +View the Cloud Dev Conf schedule & directory. \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/style/loyalty.css b/kubernetes/dev/tekton/examples/example-bank/public/style/loyalty.css new file mode 100755 index 0000000..fb54a2a --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/style/loyalty.css @@ -0,0 +1,132 @@ +:root { + --loyalty-background-color: white; + --loyalty-app-color: white; + --loyalty-text-color: #494A4B; + --loyalty-button-color: #FF7E00; + --loyalty-highlight-color: #FF002E; + --loyalty-phone-color: #39687E; + --loyalty-sensor-color: #88a4b1; + --loyalty-divide-color: aliceblue; + --loyalty-highlight-color: #fff2e5; +} + +.loyalty { + padding: 0; + margin: 0; + background-color: var(--loyalty-background-color); + /* #F5F8FA; #33729b; #9f805e; */ + /* font-family: 'Open Sans', sans-serif;*/ + font-family: 'IBM Plex Sans', sans-serif; + /* font-family: 'Questrial', sans-serif; */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + display: flex; + flex-direction: row; + justify-content: center; + color: var(--loyalty-text-color); +} + +.container { + width: 900px; + height: 600px; + margin: 70px; + background: var(--loyalty-app-color); + display: flex; + flex-direction: row; +} + +.navigation { + display: flex; + /* min-height: 15%; + max-height:15%; */ + flex-direction: column; + width: 50%; + padding-right: 50px; +} + +.app { + display: flex; + flex-direction: column; + justify-content: center; + align-content: center; + align-items: center; + width: 50%; + /* background: aliceblue; */ +} + +.titlebar { + display: flex; + flex-direction: row; +} + +.logo { + display: flex; + flex-direction: row; + justify-content: center; + align-content: center; +} + +.icon { + width: 40px; +} + +.title { + display: flex; + flex-direction: row; + justify-content: center; + align-content: center; + align-items: center; + margin: 10px; + text-transform: uppercase; + font-weight: bold; +} + +.about { + display: flex; + flex-direction: row; + justify-content: left; + align-content: center; + align-items: center; + margin: 10px; + margin-left: 5px; + text-transform: uppercase; + font-weight: normal; + font-size: 12px; + line-height: 18px; + word-spacing: 2px; + padding-bottom: 20px; +} + +.instruction { + display: flex; + flex-direction: row; + justify-content: left; + align-content: center; + align-items: center; + margin: 10px; + margin-left: 5px; + text-transform: uppercase; + font-weight: bold; + font-size: 16px; + line-height: 20px; + word-spacing: 2px; + color: var(--loyalty-text-color); +} + +.linkbar { + display: flex; + flex-direction: row; + margin-top: 20px; +} + +.linktext { + display: flex; + flex-direction: row; + justify-content: center; + align-content: center; + align-items: center; + margin: 10px; + text-transform: uppercase; + font-weight: bold; + font-size: 14px; +} \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/public/transaction.html b/kubernetes/dev/tekton/examples/example-bank/public/transaction.html new file mode 100755 index 0000000..e75c7ff --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/public/transaction.html @@ -0,0 +1,61 @@ + \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/routes/createUser.js b/kubernetes/dev/tekton/examples/example-bank/routes/createUser.js new file mode 100755 index 0000000..7652213 --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/routes/createUser.js @@ -0,0 +1,197 @@ +const express = require('express') +const router = express.Router() +const request = require('request') +// use .env file +const dotenv = require('dotenv'); +dotenv.config(); +// random name generator +const random_name = require('node-random-name'); +// app id self service manager +const SelfServiceManager = require("ibmcloud-appid").SelfServiceManager; +let APP_ID_IAM_APIKEY = process.env.APP_ID_IAM_APIKEY +let APP_ID_MANAGEMENT_URL = process.env.APP_ID_MANAGEMENT_URL +let selfServiceManager = new SelfServiceManager({ + iamApiKey: APP_ID_IAM_APIKEY, + managementUrl: APP_ID_MANAGEMENT_URL +}); +// app id client credentials +const APP_ID_CLIENT_ID = process.env.APP_ID_CLIENT_ID +const APP_ID_CLIENT_SECRET = process.env.APP_ID_CLIENT_SECRET +const APP_ID_TOKEN_URL = process.env.APP_ID_TOKEN_URL +// IAM token url +const IAM_TOKEN_URL = 'https://iam.cloud.ibm.com/identity/token' + +router.get('/random_user', function (req, res) { + res.send(random_name()) +}) + +router.post('/login', function (req, res) { + getAppIdToken(req.body.username, req.body.password, (err, response, body) => { + if (err) { + console.log(err) + console.log(response) + console.log(body) + res.send(err) + } else { + let jsonBody = JSON.parse(body) + if (jsonBody.error) { + console.log(jsonBody) + res.status('404').send(body) + } else { + if (response.statusCode == 200) { + let expiry = jsonBody.expires_in || 1 + let cookieOptions = { + maxAge: expiry * 1000 + } + res.cookie('access_token', jsonBody.access_token, cookieOptions) + res.cookie('id_token', jsonBody.id_token, cookieOptions) + res.send(body) + } else { + res.status(response.statusCode).send(body) + } + } + } + }) +}) + +router.post('/create_account', function (req, res) { + let reqeustBody = req.body + let userData = { + displayName: reqeustBody.firstName + " " + reqeustBody.lastName, + userName: reqeustBody.firstName + reqeustBody.lastName, + emails: [ + { + value: reqeustBody.email, + type: "home" + } + ], + password: reqeustBody.password, + name: { + familyName: reqeustBody.lastName, + givenName: reqeustBody.firstName + } + } + + selfServiceManager.signUp(userData, "en").then(function (user) { + console.log('user created successfully'); + res.send({user , status: "user created successfully"}) + }).catch(function (err) { + console.log(err); + if (err.statusCode) { + res.status(err.statusCode).send(err) + } else { + res.status('404').send(err) + } + }); +}) + +router.get("/get_all_users", function(req, res) { + getIAMToken(APP_ID_IAM_APIKEY, IAM_TOKEN_URL).then((token) => { + getUsersAppID(token, (users) => { + if (users == null) { + let empty = [] + res.send(empty) + } + res.send(users) + }) + }) +}); + +function getAppIdToken(username, password, callback) { + let options = { + url: APP_ID_TOKEN_URL + "/token", + method: 'POST', + headers: { + 'Authorization': 'Basic ' + new Buffer(APP_ID_CLIENT_ID + ":" + APP_ID_CLIENT_SECRET).toString('base64'), + 'Content-Type' : 'application/x-www-form-urlencoded' + }, + form: { + username, + password, + grant_type: 'password' + } + } + + request(options, function (err, response, body) { + callback(err, response, body) + }) +} + +function getIAMToken(iamApiKey, iamTokenUrl) { + if (!iamApiKey) { + return Promise.reject("You must pass 'iamToken' to self-service-manager APIs or specify 'iamApiKey' in selfServiceManager init options."); + } + var reqOptions = { + url: iamTokenUrl, + method: "POST", + headers: { + "Content-Type": "application/x-www-form-urlencoded", + "Accept": "application/json" + }, + form: { + "grant_type": "urn:ibm:params:oauth:grant-type:apikey", + "apikey": iamApiKey + } + }; + return new Promise(function (resolve, reject) { + request(reqOptions, function (error, response, body) { + if (error) { + console.log("Obtained IAM token failure: " + error.message); + reject(error.message); + } else { + if (response.statusCode === 200) { + var IAMAccessToken = JSON.parse(body)["access_token"]; + // console.log("Obtained IAM token: " + IAMAccessToken); + resolve(IAMAccessToken); + } else { + console.log("Obtained IAM token failure"); + console.log("Got status code: " + response.statusCode); + console.log(body); + reject(body); + } + } + }); + }); +}; + +function getUsersAppID(iamToken, callback) { + let reqOptions = { + url: APP_ID_MANAGEMENT_URL + '/cloud_directory/Users', + method: "GET", + headers: { + "Authorization": "Bearer " + iamToken + } + } + + request(reqOptions, function (error, response, body) { + if (error) { + console.log("Obtaining users failed") + console.log(error); + callback(null) + } else { + if (response.statusCode === 200) { + let responseBody = JSON.parse(body); + let users = responseBody.Resources + // get usernames + users = users.map((element) => { + return element.userName + }) + // remove test accounts + users = users.filter((element) => { + if (element == 'testadmin' || element == 'gregdritschler' || element.includes('admin')) { + return false + } + return true + }) + callback(users) + } else { + console.log("Obtaining users failed") + console.log("Got status code: " + response.statusCode); + console.log(body); + callback(null) + } + } + }) +} + +module.exports = router diff --git a/kubernetes/dev/tekton/examples/example-bank/scripts/createappid.sh b/kubernetes/dev/tekton/examples/example-bank/scripts/createappid.sh new file mode 100755 index 0000000..9fc6c7b --- /dev/null +++ b/kubernetes/dev/tekton/examples/example-bank/scripts/createappid.sh @@ -0,0 +1,166 @@ +# Check if ibmcloud is in user's account +ibmcloud_accountname=$(ibmcloud target --output json | jq -j '.account.name') + +## check if account is in quicklabs (labs.cognitiveclass.ai) or workshop clusters account in DEG +if [ "$ibmcloud_accountname" = "QuickLabs - IBM Skills Network" ]; then + echo "\n" + echo "WARNING: You're logged in as ${ibmcloud_accountname}" + echo "Please log in again using -- ibmcloud login -u YOUR_IBM_CLOUD_EMAIL" + echo "and run this script again" + exit 1 +elif [ "$ibmcloud_accountname" = "DEGCloud DEGCloud's Account" ]; then + echo "\n" + echo "WARNING: You're logged in as ${ibmcloud_accountname}" + echo "Please log in again using -- ibmcloud login -u YOUR_IBM_CLOUD_EMAIL" + echo "and run this script again" + exit 1 +fi +# end check + + +RG=$(ibmcloud resource groups --default | grep -i ^default | awk '{print $1}') +ibmcloud target -g $RG + +ibmcloud resource service-instance appid-example-bank +if [ "$?" -ne "0" ]; then + ibmcloud resource service-instance-create appid-example-bank appid lite us-south +fi + +ibmcloud resource service-key appid-example-bank-credentials +if [ "$?" -ne "0" ]; then + ibmcloud resource service-key-create appid-example-bank-credentials Writer --instance-name appid-example-bank +fi + +credentials=$(ibmcloud resource service-key appid-example-bank-credentials) + +mgmturl=$(echo "$credentials" | awk '/managementUrl/{ print $2 }') +apikey=$(echo "$credentials" | awk '/apikey/{ print $2 }') + +iamtoken=$(ibmcloud iam oauth-tokens | awk '/IAM/{ print $3" "$4 }') + +printf "\nSetting cloud directory options\n" +response=$(curl -X PUT -w "\n%{http_code}" \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + -H "Authorization: $iamtoken" \ + -d '{ + "isActive":true, + "config": + { + "selfServiceEnabled":true, + "interactions": + { + "identityConfirmation": + { + "accessMode":"OFF", + "methods": ["email"] + }, + "welcomeEnabled":true, + "resetPasswordEnabled":true, + "resetPasswordNotificationEnable":true + }, + "signupEnabled":true, + "identityField":"userName" + } + }' \ + "${mgmturl}/config/idps/cloud_directory") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "200" ] && printf "\nFAILED to set cloud directory options\n" && exit 1 + +printf "\nCreating application\n" +response=$(curl -X POST -w "\n%{http_code}" \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + -H "Authorization: $iamtoken" \ + -d '{"name": "mobile-simulator", "type": "regularwebapp"}' \ + "${mgmturl}/applications") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "200" ] && printf "\nFAILED to create application\n" && exit 1 + +clientid=$(echo "${response}" | head -n1 | jq -j '.clientId') + +printf "\nDefining admin scope\n" +response=$(curl -X PUT -w "\n%{http_code}" \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + -H "Authorization: $iamtoken" \ + -d '{"scopes": ["admin"]}' \ + "${mgmturl}/applications/$clientid/scopes") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "200" ] && printf "\nFAILED to define admin scope\n" && exit 1 + +printf "\nDefining admin role\n" +response=$(curl -X POST -w "\n%{http_code}" \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + -H "Authorization: $iamtoken" \ + -d '{"name": "admin", + "access": [ {"application_id": "'$clientid'", "scopes": [ "admin" ]} ] + }' \ + "${mgmturl}/roles") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "201" ] && printf "\nFAILED to define admin role\n" && exit 1 + +roleid=$(echo "${response}" | head -n1 | jq -j '.id') + +printf "\nDefining admin user in cloud directory\n" +response=$(curl -X POST -w "\n%{http_code}" \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + -H "Authorization: $iamtoken" \ + -d '{"emails": [ + {"value": "bankadmin@yopmail.com","primary": true} + ], + "userName": "bankadmin", + "password": "password" + }' \ + "${mgmturl}/cloud_directory/sign_up?shouldCreateProfile=true") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "201" ] && printf "\nFAILED to define admin user in cloud directory\n" && exit 1 + +printf "\nGetting admin user profile\n" +response=$(curl -X GET -w "\n%{http_code}" \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + -H "Authorization: $iamtoken" \ + "${mgmturl}/users?email=bankadmin@yopmail.com&dataScope=index") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "200" ] && printf "\nFAILED to get admin user profile\n" && exit 1 + +userid=$(echo "${response}" | head -n1 | jq -j '.users[0].id') + +printf "\nAdding admin role to admin user\n" +response=$(curl -X PUT -w "\n%{http_code}" \ + -H 'Content-Type: application/json' \ + -H 'Accept: application/json' \ + -H "Authorization: $iamtoken" \ + -d '{"roles": { "ids": ["'$roleid'"]}}' \ + "${mgmturl}/users/$userid/roles") + +echo $response + +code=$(echo "${response}" | tail -n1) +[ "$code" -ne "200" ] && printf "\nFAILED to add admin role to admin user\n" && exit 1 + +printf "\nApp ID instance created and configured" +printf "\nManagement server: $mgmturl" +printf "\nApi key: $apikey" +printf "\n" \ No newline at end of file diff --git a/kubernetes/dev/tekton/examples/example-bank/scripts/createsecrets.sh b/kubernetes/dev/tekton/examples/example-bank/scripts/createsecrets.sh new file mode 100755 index 0000000..e69de29 diff --git a/lp/backstage/backstage.yaml b/lp/backstage/backstage.yaml new file mode 100644 index 0000000..cd9d1a7 --- /dev/null +++ b/lp/backstage/backstage.yaml @@ -0,0 +1,116 @@ +# kubernetes/backstage.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: backstage + namespace: backstage +spec: + replicas: 1 + selector: + matchLabels: + app: backstage + template: + metadata: + labels: + app: backstage + spec: + containers: + - name: backstage + image: roadiehq/community-backstage-image + imagePullPolicy: IfNotPresent + ports: + - name: http + containerPort: 7000 + env: + - name: POSTGRES_USER + value: backstage + - name: POSTGRES_PASSWORD + value: backstage + - name: POSTGRES_DB + value: backstage + - name: POSTGRES_SERVICE_HOST + value: postgres13.postgres + - name: POSTGRES_SERVICE_PORT + value: "5432" + - name: GITEA_TOKEN + value: + - name: APP_CONFIG_auth_environment + value: development + - name: APP_CONFIG_provider_github_development_clientID + value: "Ov23linGjyUcqg1CpmlF" + - name: APP_CONFIG_provider_github_development_clientSecret + value: "3cc49adb5168df96662e0ad00db74ed1913849ce" + volumeMounts: + - mountPath: /usr/src/app/app-config.yaml + subPath: app-config.yaml + name: app-config + volumes: + - name: app-config + configMap: + name: app-config +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: backstage-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/backstage + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: backstage-pvc + namespace: backstage +spec: + storageClassName: "" + volumeName: backstage-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: Service +metadata: + name: backstage + namespace: backstage +spec: + type: NodePort + selector: + app: backstage + ports: + - name: http + port: 80 + targetPort: 7000 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: backstage-tls + namespace: backstage +spec: + entryPoints: + - websecure + routes: + - match: Host(`backstage-lp.allarddcs.nl`) + kind: Rule + services: + - name: backstage + port: 80 + tls: + secretName: backstage-lp.allarddcs.nl-tls + diff --git a/lp/backstage/catalog-info.yaml b/lp/backstage/catalog-info.yaml new file mode 100644 index 0000000..a1510d0 --- /dev/null +++ b/lp/backstage/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-backstage + title: Backstage (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/backstage/certificate.yaml b/lp/backstage/certificate.yaml new file mode 100755 index 0000000..1b3edc7 --- /dev/null +++ b/lp/backstage/certificate.yaml @@ -0,0 +1,16 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: backstage-lp.allarddcs.nl-tls + namespace: backstage +spec: + dnsNames: + - backstage-lp.allarddcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: backstage-lp.allarddcs.nl-tls + usages: + - digital signature + - key encipherment diff --git a/lp/backstage/configmap.dev b/lp/backstage/configmap.dev new file mode 100644 index 0000000..d3fca91 --- /dev/null +++ b/lp/backstage/configmap.dev @@ -0,0 +1,119 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: app-config + namespace: backstage +data: + app-config.yaml: | + app: + title: Backstage-Dev + baseUrl: https://backstage-dev.allarddcs.nl # Frontend URL + + backend: + baseUrl: https://backstage-dev.allarddcs.nl # Backend URL (API) + listen: + port: 7007 + http: + auth: + environment: development + providers: + guest: + development: + allowEveryone: true + cors: + origin: https://backstage-dev.allarddcs.nl + methods: [GET, POST, PUT, DELETE, PATCH] + credentials: true + trustProxy: true + database: + client: pg + connection: + host: ${POSTGRES_SERVICE_HOST} + port: ${POSTGRES_SERVICE_PORT} + user: ${POSTGRES_USER} + password: ${POSTGRES_PASSWORD} + database: ${POSTGRES_DB} + + integrations: + gitea: + - host: gitea-dev.allarddcs.nl + apiBaseUrl: https://gitea-dev.allarddcs.nl/api/v1 + token: "7c289d89b02489984fc9850411bb26f6ee4e9d37" + + logging: + logLevel: info + loggers: + catalog: + level: debug + backend: + level: debug + csp: + connect-src: ["'self'", 'http:', 'https:'] + + techdocs: + builder: local + generator: + runIn: local + publisher: + type: local + + organization: + name: AllardDCS + rollbar: + organization: my-company + # NOTE: The rollbar-backend & accountToken key may be deprecated in the future (rep> + accountToken: my-rollbar-account-token + auth: + environment: development + providers: + guest: + development: + allowEveryone: true # Guest auth enabled + + permission: + enabled: false # Disable permission enforcement + + catalog: + providers: + gitea: + yourProviderId: + organization: 'allarddcs' # string + host: gitea-dev.allarddcs.nl + branch: 'master' # Optional, defaults to 'main' + catalogPath: 'catalog-info.yaml' # Optional, defaults to catalog-info.yaml + schedule: + # supports cron, ISO duration, "human duration" as used in code + frequency: { minutes: 30 } + # supports ISO duration, "human duration" as used in code + timeout: { minutes: 3 } + locations: + - type: url + target: https://gitea-dev.allarddcs.nl/allard/kubernetes/raw/branch/master/group.yaml + rules: + - allow: [Group] + + - type: url + target: https://gitea-dev.allarddcs.nl/allard/kubernetes/raw/branch/master/system.yaml + rules: + - allow: [System] + + - type: url + target: https://gitea-dev.allarddcs.nl/allard/kubernetes/raw/branch/master/catalog-info.yaml + rules: + - allow: [Component] + + processors: + gitea: + - host: gitea-dev.allarddcs.nl + apiBaseUrl: https://gitea-dev.allarddcs.nl/api/v1 + + kubernetes: + serviceLocatorMethod: + type: multiTenant + + clusterLocatorMethods: + - type: config + clusters: + - name: local-cluster + url: https://kubernetes.default.svc + authProvider: serviceAccount diff --git a/lp/backstage/configmap.yaml b/lp/backstage/configmap.yaml new file mode 100644 index 0000000..715db6f --- /dev/null +++ b/lp/backstage/configmap.yaml @@ -0,0 +1,386 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: app-config + namespace: backstage +data: + app-config.yaml: | + app: + title: Backstage Voorbeeld App + baseUrl: https://backstage-lp.allarddcs.nl + googleAnalyticsTrackingId: # UA-000000-0 + #datadogRum: + # clientToken: '123456789' + # applicationId: qwerty + # site: # datadoghq.eu default = datadoghq.com + # env: # optional + + support: + url: https://github.com/backstage/backstage/issues # Used by common ErrorPage + items: # Used by common SupportButton component + - title: Issues + icon: github + links: + - url: https://github.com/backstage/backstage/issues + title: GitHub Issues + - title: Discord Chatroom + icon: chat + links: + - url: https://discord.gg/MUpMjP2 + title: '#backstage' + + backend: + baseUrl: https://backstage-lp.allarddcs.nl + listen: + port: 7000 + database: + client: pg + connection: + host: postgres13.postgres + port: 5432 + user: backstage + password: backstage + cache: + store: memory + cors: + origin: http://localhost:3000 + methods: [GET, POST, PUT, DELETE] + credentials: true + csp: + connect-src: ["'self'", 'http:', 'https:'] + # Content-Security-Policy directives follow the Helmet format: https://helmetjs.github.io/#reference + # Default Helmet Content-Security-Policy values can be removed by setting the key to false + reading: + allow: + - host: example.com + - host: '*.mozilla.org' + # workingDirectory: /tmp # Use this to configure a working directory for the scaffolder, defaults to the OS temp-dir + + # See README.md in the proxy-backend plugin for information on the configuration format + proxy: + '/circleci/api': + target: https://circleci.com/api/v1.1 + headers: + Circle-Token: ${CIRCLECI_AUTH_TOKEN} + + '/jenkins/api': + target: http://localhost:8080 + headers: + Authorization: ${JENKINS_BASIC_AUTH_HEADER} + + '/travisci/api': + target: https://api.travis-ci.com + changeOrigin: true + headers: + Authorization: ${TRAVISCI_AUTH_TOKEN} + travis-api-version: '3' + + '/newrelic/apm/api': + target: https://api.newrelic.com/v2 + headers: + X-Api-Key: ${NEW_RELIC_REST_API_KEY} + + '/pagerduty': + target: https://api.pagerduty.com + headers: + Authorization: Token token=${PAGERDUTY_TOKEN} + + '/buildkite/api': + target: https://api.buildkite.com/v2/ + headers: + Authorization: ${BUILDKITE_TOKEN} + + '/sentry/api': + target: https://sentry.io/api/ + allowedMethods: ['GET'] + headers: + Authorization: ${SENTRY_TOKEN} + + '/ilert': + target: https://api.ilert.com + allowedMethods: ['GET', 'POST', 'PUT'] + allowedHeaders: ['Authorization'] + headers: + Authorization: ${ILERT_AUTH_HEADER} + + organization: + name: AllardDCS + + # Reference documentation http://backstage.io/docs/features/techdocs/configuration + # Note: After experimenting with basic setup, use CI/CD to generate docs + # and an external cloud storage when deploying TechDocs for production use-case. + # https://backstage.io/docs/features/techdocs/how-to-guides#how-to-migrate-from-techdocs-basic-to-recommended-deployment-approach + techdocs: + builder: 'local' # Alternatives - 'external' + generator: + runIn: 'docker' + # dockerImage: my-org/techdocs # use a custom docker image + # pullImage: true # or false to disable automatic pulling of image (e.g. if custom docker login is required) + publisher: + type: 'local' # Alternatives - 'googleGcs' or 'awsS3' or 'azureBlobStorage' or 'openStackSwift'. Read documentation for using alternatives. + + sentry: + organization: my-company + + rollbar: + organization: my-company + # NOTE: The rollbar-backend & accountToken key may be deprecated in the future (replaced by a proxy config) + accountToken: my-rollbar-account-token + + lighthouse: + baseUrl: http://localhost:3003 + + kubernetes: + serviceLocatorMethod: + type: 'multiTenant' + clusterLocatorMethods: + - type: 'config' + clusters: [] + + kafka: + clientId: backstage + clusters: + - name: cluster + brokers: + - localhost:9092 + + integrations: + github: + - host: github.com + token: + $env: GITHUB_TOKEN + gitea: + - host: gitea-dev.allarddcs.nl + apiBaseUrl: https://gitea-dev.allarddcs.nl/api/v1 + token: "7c289d89b02489984fc9850411bb26f6ee4e9d37" + + gitlab: + - host: gitlab.com + token: ${GITLAB_TOKEN} + bitbucket: + - host: bitbucket.org + username: ${BITBUCKET_USERNAME} + appPassword: ${BITBUCKET_APP_PASSWORD} + azure: + - host: dev.azure.com + token: ${AZURE_TOKEN} + # googleGcs: + # clientEmail: 'example@example.com' + # privateKey: ${GCS_PRIVATE_KEY} + + catalog: + rules: + - allow: + - Component + - API + - Resource + - Group + - User + - Template + - System + - Domain + - Location + + processors: + githubOrg: + providers: + - target: https://github.com + token: + $env: GITHUB_TOKEN + gitea: + - host: gitea-dev.allarddcs.nl + apiBaseUrl: https://gitea-dev.allarddcs.nl/api/v1 + #### Example for how to add your GitHub Enterprise instance using the API: + # - target: https://ghe.example.net + # apiBaseUrl: https://ghe.example.net/api + # token: ${GHE_TOKEN} + ldapOrg: + ### Example for how to add your enterprise LDAP server + # providers: + # - target: ldaps://ds.example.net + # bind: + # dn: uid=ldap-reader-user,ou=people,ou=example,dc=example,dc=net + # secret: ${LDAP_SECRET} + # users: + # dn: ou=people,ou=example,dc=example,dc=net + # options: + # filter: (uid=*) + # map: + # description: l + # groups: + # dn: ou=access,ou=groups,ou=example,dc=example,dc=net + # options: + # filter: (&(objectClass=some-group-class)(!(groupType=email))) + microsoftGraphOrg: + ### Example for how to add your Microsoft Graph tenant + #providers: + # - target: https://graph.microsoft.com/v1.0 + # authority: https://login.microsoftonline.com + # tenantId: ${MICROSOFT_GRAPH_TENANT_ID} + # clientId: ${MICROSOFT_GRAPH_CLIENT_ID} + # clientSecret: ${MICROSOFT_GRAPH_CLIENT_SECRET_TOKEN} + # userFilter: accountEnabled eq true and userType eq 'member' + # groupFilter: securityEnabled eq false and mailEnabled eq true and groupTypes/any(c:c+eq+'Unified') + + locations: + + - type: url + target: https://gitea-dev.allarddcs.nl/allard/kubernetes/raw/branch/master/group.yaml + rules: + - allow: [Group] + + - type: url + target: https://gitea-dev.allarddcs.nl/allard/kubernetes/raw/branch/master/system.yaml + rules: + - allow: [System] + + - type: url + target: https://gitea-dev.allarddcs.nl/allard/kubernetes/raw/branch/master/catalog-info.yaml + rules: + - allow: [Component] + + scaffolder: + # Use to customize default commit author info used when new components are created + # defaultAuthor: + # name: Scaffolder + # email: scaffolder@backstage.io + # Use to customize the default commit message when new components are created + # defaultCommitMessage: 'Initial commit' + github: + token: + $env: GITHUB_TOKEN + visibility: public # or 'internal' or 'private' + gitea: + api: + baseUrl: https://gitea-dev.allarddcs.nl + token: ${GITEA_TOKEN} + visibility: public # or 'internal' or 'private' + gitlab: + api: + baseUrl: https://gitlab.com + token: ${GITLAB_TOKEN} + visibility: public # or 'internal' or 'private' + azure: + baseUrl: https://dev.azure.com/{your-organization} + api: + token: ${AZURE_TOKEN} + bitbucket: + api: + host: https://bitbucket.org + username: ${BITBUCKET_USERNAME} + token: ${BITBUCKET_TOKEN} + visibility: public # or or 'private' + + auth: + environment: development + ### Providing an auth.session.secret will enable session support in the auth-backend + # session: + # secret: custom session secret + providers: + google: + development: + clientId: arbitrary-value + clientSecret: arbitrary-value + github: + development: + clientId: arbitrary-value + clientSecret: arbitrary-value + enterpriseInstanceUrl: arbitrary-value + gitlab: + development: + clientId: arbitrary-value + clientSecret: arbitrary-value + audience: arbitrary-value + saml: + entryPoint: 'http://localhost:7001/' + issuer: 'passport-saml' + okta: + development: + clientId: arbitrary-value + clientSecret: arbitrary-value + audience: arbitrary-value + oauth2: + development: + clientId: arbitrary-value + clientSecret: arbitrary-value + authorizationUrl: arbitrary-value + tokenUrl: arbitrary-value + ### + # provide a list of scopes as needed for your OAuth2 Server: + # + # scope: saml-login-selector openid profile email + oidc: + # Note that you must define a session secret (see above) since the oidc provider requires session support. + # Note that by default, this provider will use the 'none' prompt which assumes that your are already logged on in the IDP. + # You should set prompt to: + # - auto: will let the IDP decide if you need to log on or if you can skip login when you have an active SSO session + # - login: will force the IDP to always present a login form to the user + development: + metadataUrl: arbirarty-value + clientId: arbirarty-value + clientSecret: arbirarty-value + authorizationUrl: arbirarty-value + tokenUrl: arbirarty-value + tokenSignedResponseAlg: arbirarty-value + scope: arbirarty-value # default='openid profile email' + prompt: arbirarty-value # default=none (allowed values: auto, none, consent, login) + auth0: + development: + clientId: arbirarty-value + clientSecret: arbirarty-value + domain: arbirarty-value + microsoft: + development: + clientId: arbirarty-value + clientSecret: arbirarty-value + tenantId: arbirarty-value + onelogin: + development: + clientId: arbirarty-value + clientSecret: arbirarty-value + issuer: arbirarty-value + + costInsights: + engineerCost: 200000 + products: + computeEngine: + name: Compute Engine + icon: compute + cloudDataflow: + name: Cloud Dataflow + icon: data + cloudStorage: + name: Cloud Storage + icon: storage + bigQuery: + name: BigQuery + icon: search + events: + name: Events + icon: data + metrics: + DAU: + name: Daily Active Users + default: true + MSC: + name: Monthly Subscribers + + homepage: + clocks: + - label: UTC + timezone: UTC + - label: NYC + timezone: 'America/New_York' + - label: STO + timezone: 'Europe/Stockholm' + - label: TYO + timezone: 'Asia/Tokyo' + + pagerduty: + eventsBaseUrl: 'https://events.pagerduty.com/v2' + jenkins: + instances: + - name: default + baseUrl: https://jenkins.example.com + username: backstage-bot + apiKey: 123456789abcdef0123456789abcedf012 diff --git a/lp/catalog-info.yaml b/lp/catalog-info.yaml new file mode 100644 index 0000000..da94964 --- /dev/null +++ b/lp/catalog-info.yaml @@ -0,0 +1,32 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: LP-cluster + namespace: default + description: Alle deployment van LP-cluster in github + annotations: + backstage.io/techdocs-ref: dir:. + links: + - url: https://github.com/AllardKrings/kubernetes + title: AllardDCS Kubernetes Configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + - ./coturn/catalog-info.yaml + - ./clair/catalog-info.yaml + - ./quay/catalog-info.yaml + - ./traefik/catalog-info.yaml + - ./roundcube/catalog-info.yaml + - ./matrix/catalog-info.yaml + - ./drupal/catalog-info.yaml + - ./kubernetes/catalog-info.yaml + - ./pgadmin/catalog-info.yaml + - ./backstage/catalog-info.yaml + - ./postfixadmin/catalog-info.yaml + - ./dockermail/catalog-info.yaml + - ./mongodb/catalog-info.yaml + - ./postgres13/catalog-info.yaml + - ./nfs/catalog-info.yaml diff --git a/lp/clair/catalog-info.yaml b/lp/clair/catalog-info.yaml new file mode 100644 index 0000000..b22cb77 --- /dev/null +++ b/lp/clair/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-clair + title: Clair (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/clair/helm/clair-from-helm.yaml b/lp/clair/helm/clair-from-helm.yaml new file mode 100644 index 0000000..4ea79e7 --- /dev/null +++ b/lp/clair/helm/clair-from-helm.yaml @@ -0,0 +1,408 @@ +--- +# Source: clair/charts/postgresql/templates/networkpolicy.yaml +kind: NetworkPolicy +apiVersion: "networking.k8s.io/v1" +metadata: + name: clair-postgresql + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-10.0.0 + app.kubernetes.io/instance: clair + app.kubernetes.io/managed-by: Helm +spec: + podSelector: + matchLabels: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: clair + ingress: + # Allow inbound connections + - ports: + - port: 5432 +--- +# Source: clair/charts/postgresql/templates/secrets.yaml +apiVersion: v1 +kind: Secret +metadata: + name: clair-postgresql + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-10.0.0 + app.kubernetes.io/instance: clair + app.kubernetes.io/managed-by: Helm +type: Opaque +data: + postgresql-postgres-password: "YjBRQTI1QjdnRw==" + postgresql-password: "Y2xhaXI=" +--- +# Source: clair/templates/configmap.yaml +apiVersion: v1 +kind: ConfigMap +metadata: + name: clair-clair + labels: + app.kubernetes.io/name: clair + helm.sh/chart: clair-0.2.9 + app.kubernetes.io/instance: clair + app.kubernetes.io/managed-by: Helm +data: + config.yaml: | + clair: + database: + # Database driver + type: pgsql + options: + # PostgreSQL Connection string + # https://www.postgresql.org/docs/current/static/libpq-connect.html#LIBPQ-CONNSTRING + # This should be done using secrets or Vault, but for now this will also work + source: "postgres://postgres:clair@clair-postgresql:5432/postgres?sslmode=disable" + # Number of elements kept in the cache + # Values unlikely to change (e.g. namespaces) are cached in order to save prevent needless roundtrips to the database. + cachesize: 16384 + + # 32-bit URL-safe base64 key used to encrypt pagination tokens + # If one is not provided, it will be generated. + # Multiple clair instances in the same cluster need the same value. + paginationkey: "" + api: + # v3 grpc/RESTful API server address + addr: "0.0.0.0:6060" + + # Health server address + # This is an unencrypted endpoint useful for load balancers to check to healthiness of the clair server. + healthaddr: "0.0.0.0:6061" + + # Deadline before an API request will respond with a 503 + timeout: 900s + + # Optional PKI configuration + # If you want to easily generate client certificates and CAs, try the following projects: + # https://github.com/coreos/etcd-ca + # https://github.com/cloudflare/cfssl + servername: + cafile: + keyfile: + certfile: + + worker: + namespace_detectors: + - os-release + - lsb-release + - apt-sources + - alpine-release + - redhat-release + + feature_listers: + - apk + - dpkg + - rpm + + updater: + # Frequency the database will be updated with vulnerabilities from the default data sources + # The value 0 disables the updater entirely. + interval: "2h" + enabledupdaters: + - debian + - ubuntu + - rhel + - alpine + + notifier: + # Number of attempts before the notification is marked as failed to be sent + attempts: 3 + + # Duration before a failed notification is retried + renotifyinterval: 2h + + http: + # Optional endpoint that will receive notifications via POST requests + endpoint: "" + + # Optional PKI configuration + # If you want to easily generate client certificates and CAs, try the following projects: + # https://github.com/cloudflare/cfssl + # https://github.com/coreos/etcd-ca + servername: + cafile: + keyfile: + certfile: + + # Optional HTTP Proxy: must be a valid URL (including the scheme). + proxy: +--- +# Source: clair/charts/postgresql/templates/svc-headless.yaml +apiVersion: v1 +kind: Service +metadata: + name: clair-postgresql-headless + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-10.0.0 + app.kubernetes.io/instance: clair + app.kubernetes.io/managed-by: Helm + # Use this annotation in addition to the actual publishNotReadyAddresses + # field below because the annotation will stop being respected soon but the + # field is broken in some versions of Kubernetes: + # https://github.com/kubernetes/kubernetes/issues/58662 + service.alpha.kubernetes.io/tolerate-unready-endpoints: "true" +spec: + type: ClusterIP + clusterIP: None + # We want all pods in the StatefulSet to have their addresses published for + # the sake of the other Postgresql pods even before they're ready, since they + # have to be able to talk to each other in order to become ready. + publishNotReadyAddresses: true + ports: + - name: tcp-postgresql + port: 5432 + targetPort: tcp-postgresql + selector: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: clair +--- +# Source: clair/charts/postgresql/templates/svc.yaml +apiVersion: v1 +kind: Service +metadata: + name: clair-postgresql + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-10.0.0 + app.kubernetes.io/instance: clair + app.kubernetes.io/managed-by: Helm + annotations: +spec: + type: ClusterIP + ports: + - name: tcp-postgresql + port: 5432 + targetPort: tcp-postgresql + selector: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: clair + role: primary +--- +# Source: clair/templates/service.yaml +apiVersion: v1 +kind: Service +metadata: + name: clair-clair + labels: + app.kubernetes.io/name: clair + helm.sh/chart: clair-0.2.9 + app.kubernetes.io/instance: clair + app.kubernetes.io/managed-by: Helm +spec: + type: NodePort + ports: + - name: clair-api + port: 6060 + nodePort: 30060 + targetPort: 6060 + protocol: TCP + name: "clair-api" + - name: clair-health + port: 6061 + nodePort: 30061 + targetPort: 6061 + protocol: TCP + name: "clair-health" + selector: + app.kubernetes.io/name: clair + app.kubernetes.io/instance: clair +--- +# Source: clair/templates/deployment.yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: clair-clair + labels: + app.kubernetes.io/name: clair + helm.sh/chart: clair-0.2.9 + app.kubernetes.io/instance: clair + app.kubernetes.io/managed-by: Helm +spec: + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/name: clair + app.kubernetes.io/instance: clair + template: + metadata: + labels: + app.kubernetes.io/name: clair + helm.sh/chart: clair-0.2.9 + app.kubernetes.io/instance: clair + app.kubernetes.io/managed-by: Helm + spec: + volumes: + - name: "clair-config" + configMap: + name: clair-clair + nodeSelector: + kubernetes.io/arch: amd64 + containers: + - name: clair + image: "quay.io/coreos/clair:v4.3.6" + imagePullPolicy: IfNotPresent + args: + - "-log-level=debug" + ports: + - name: clair-api + containerPort: 6060 + protocol: TCP + - name: clair-health + containerPort: 6061 + protocol: TCP + livenessProbe: + httpGet: + path: /health + port: 6061 + readinessProbe: + httpGet: + path: /health + port: 6061 + volumeMounts: + - name: "clair-config" + mountPath: /etc/clair + resources: + limits: + cpu: 2 + memory: 3000Mi + requests: + cpu: 50m + memory: 2000Mi + env: + - name: CLAIR_CONF + value: "/clair/config.yaml" + - name: CLAIR_MODE + value: "combo" + +--- +# Source: clair/charts/postgresql/templates/statefulset.yaml +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: clair-postgresql + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-10.0.0 + app.kubernetes.io/instance: clair + app.kubernetes.io/managed-by: Helm + annotations: +spec: + serviceName: clair-postgresql-headless + replicas: 1 + updateStrategy: + type: RollingUpdate + selector: + matchLabels: + app.kubernetes.io/name: postgresql + app.kubernetes.io/instance: clair + role: primary + template: + metadata: + name: clair-postgresql + labels: + app.kubernetes.io/name: postgresql + helm.sh/chart: postgresql-10.0.0 + app.kubernetes.io/instance: clair + app.kubernetes.io/managed-by: Helm + role: primary + spec: + securityContext: + fsGroup: 1001 + nodeSelector: + kubernetes.io/arch: amd64 + containers: + - name: clair-postgresql + image: docker.io/bitnami/postgresql:11.10.0-debian-10-r2 + imagePullPolicy: "IfNotPresent" + resources: + limits: + cpu: 2 + memory: 512Mi + requests: + cpu: 50m + memory: 512Mi + securityContext: + runAsUser: 1001 + env: + - name: BITNAMI_DEBUG + value: "true" + - name: POSTGRESQL_PORT_NUMBER + value: "5432" + - name: POSTGRESQL_VOLUME_DIR + value: "/bitnami/postgresql" + - name: PGDATA + value: "/bitnami/postgresql/data" + - name: POSTGRES_USER + value: "postgres" + - name: POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: clair-postgresql + key: postgresql-password + - name: POSTGRESQL_ENABLE_LDAP + value: "no" + - name: POSTGRESQL_ENABLE_TLS + value: "no" + - name: POSTGRESQL_LOG_HOSTNAME + value: "false" + - name: POSTGRESQL_LOG_CONNECTIONS + value: "false" + - name: POSTGRESQL_LOG_DISCONNECTIONS + value: "false" + - name: POSTGRESQL_PGAUDIT_LOG_CATALOG + value: "off" + - name: POSTGRESQL_CLIENT_MIN_MESSAGES + value: "error" + - name: POSTGRESQL_SHARED_PRELOAD_LIBRARIES + value: "pgaudit" + ports: + - name: tcp-postgresql + containerPort: 5432 + livenessProbe: + exec: + command: + - /bin/sh + - -c + - exec pg_isready -U "postgres" -h 127.0.0.1 -p 5432 + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 6 + readinessProbe: + exec: + command: + - /bin/sh + - -c + - -e + - | + exec pg_isready -U "postgres" -h 127.0.0.1 -p 5432 + [ -f /opt/bitnami/postgresql/tmp/.initialized ] || [ -f /bitnami/postgresql/.initialized ] + initialDelaySeconds: 5 + periodSeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 6 + volumeMounts: + - name: dshm + mountPath: /dev/shm + - name: data + mountPath: /bitnami/postgresql + subPath: + volumes: + - name: dshm + emptyDir: + medium: Memory + sizeLimit: 1Gi + volumeClaimTemplates: + - metadata: + name: data + spec: + accessModes: + - "ReadWriteOnce" + resources: + requests: + storage: "1Gi" diff --git a/lp/clair/helm/values.yaml b/lp/clair/helm/values.yaml new file mode 100644 index 0000000..cdbb1d0 --- /dev/null +++ b/lp/clair/helm/values.yaml @@ -0,0 +1,86 @@ +# Default values for clair. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. +replicaCount: 1 +logLevel: debug +insecureTls: false +image: + repository: quay.io/coreos/clair + tag: v2.1.6 + pullPolicy: IfNotPresent +service: + name: clair + type: ClusterIP + internalApiPort: 6060 + externalApiPort: 6060 + internalHealthPort: 6061 + externalHealthPort: 6061 +ingress: + enabled: false + # ingressClassName: "" + # Used to create Ingress record (should used with service.type: ClusterIP). + hosts: + - clair-clair + annotations: + # kubernetes.io/ingress.global-static-ip-name: "test-ip" + # kubernetes.io/tls-acme: "true" + tls: + # Secrets must be manually created in the namespace. + # - secretName: chart-example-tls + # hosts: + # - chart-example.local +resources: + limits: + cpu: 2 + memory: 3000Mi + requests: + cpu: 50m + memory: 2000Mi +config: + #postgresURI: "postgres13.postgres://clair.clair@host:5432/clair?sslmode=disable" + # paginationKey: "XxoPtCUzrUv4JV5dS+yQ+MdW7yLEJnRMwigVY/bpgtQ=" + updateInterval: 2h + # notificationWebhookEndpoint: https://example.com/notify/me + enabledUpdaters: + - debian + - ubuntu + - rhel + - oracle + - alpine + enabledNamespaceDetectors: + - os-release + - lsb-release + - apt-sources + - alpine-release + - redhat-release + enabledFeatureListers: + - apk + - dpkg + - rpm +# Configuration values for the postgresql dependency. +# ref: https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md +nodeSelector: + kubernetes.io/arch: amd64 + +postgresql: +# The dependant Postgres chart can be disabled, to connect to +# an existing database by defining config.postgresURI + enabled: true + image: + debug: true + resources: + requests: + cpu: 50m + memory: 512Mi + limits: + cpu: 2 + memory: 512Mi + postgresqlUsername: clair + postgresqlPassword: clair + persistence: + size: 1Gi + networkPolicy: + enabled: true +nodeSelector: + kubernetes.io/arch: amd64 + diff --git a/lp/clair/yaml/README.md b/lp/clair/yaml/README.md new file mode 100644 index 0000000..821cb2c --- /dev/null +++ b/lp/clair/yaml/README.md @@ -0,0 +1,13 @@ +=#Postgress13: + +installeren van extensies: +- inloggen incontainer: + kubectl exec -it postgres13-0 -n postgres +- inloggen op dadabase clair: + psql -U clair --dbname=clair +- sql uitvoeren: + create extension if not exists "uuid-ossp"; + +/q + +exit diff --git a/lp/clair/yaml/clair.yaml b/lp/clair/yaml/clair.yaml new file mode 100644 index 0000000..fee1210 --- /dev/null +++ b/lp/clair/yaml/clair.yaml @@ -0,0 +1,111 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: clair + namespace: quay +spec: + replicas: 1 + selector: + matchLabels: + app: clair + template: + metadata: + labels: + app: clair + spec: + containers: + - image: quay.io/projectquay/clair:4.7.2 + name: clairv4 + resources: + limits: + memory: 500Mi + cpu: 1 + requests: + memory: 200Mi + cpu: 500m + ports: + - containerPort: 6060 + name: endpoint + protocol: TCP + - containerPort: 8089 + name: health + protocol: TCP + env: + - name: CLAIR_CONF + value: /clair/config.yaml + - name: CLAIR_MODE + value: combo + volumeMounts: + - mountPath: /clair/ + name: clair +# livenessProbe: +# httpGet: +# path: /health +# port: 6061 +# readinessProbe: +# httpGet: +# path: /health +# port: 6061 + nodeSelector: + kubernetes.io/arch: amd64 + volumes: + - name: clair + persistentVolumeClaim: + claimName: clair-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: clair + namespace: quay +spec: + ports: + - name: endpoint + port: 6060 + nodePort: 30081 + protocol: TCP + targetPort: 6060 + - name: health + port: 8089 + nodePort: 30088 + protocol: TCP + targetPort: 8089 + selector: + app: clair + type: NodePort +status: + loadBalancer: {} +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: clair-pvc + namespace: quay +spec: + accessModes: + - ReadWriteMany + resources: + requests: + storage: 1Gi + storageClassName: "" + volumeMode: Filesystem + volumeName: clair-pv +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: clair-pv +spec: + accessModes: + - ReadWriteMany + capacity: + storage: 1Gi + mountOptions: + - hard + - nfsvers=4.1 + nfs: + path: /mnt/nfs_share/clair + server: 192.168.2.110 + persistentVolumeReclaimPolicy: Retain + volumeMode: Filesystem + diff --git a/lp/clair/yaml/ingresroutes.yaml b/lp/clair/yaml/ingresroutes.yaml new file mode 100755 index 0000000..f222ae6 --- /dev/null +++ b/lp/clair/yaml/ingresroutes.yaml @@ -0,0 +1,42 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: clair-http + namespace: quay +spec: + entryPoints: + - web + routes: + - match: Host(`clair-lp.alldcs.nl`) + kind: Rule + services: + - name: clair + port: 8081 + - match: Host(`clairh-lp.alldcs.nl`) + kind: Rule + services: + - name: health + port: 8088 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: clair-tls + namespace: quay +spec: + entryPoints: + - websecure + routes: + - match: Host(`clair-lp.alldcs.nl`) + kind: Rule + services: + - name: clair + port: 8081 + - match: Host(`clairh-lp.alldcs.nl`) + kind: Rule + services: + - name: health + port: 8088 + tls: + certResolver: letsencrypt + diff --git a/lp/coturn/catalog-info.yaml b/lp/coturn/catalog-info.yaml new file mode 100644 index 0000000..f51d5ab --- /dev/null +++ b/lp/coturn/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-coturn + title: Coturn (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/coturn/lp/README.md b/lp/coturn/lp/README.md new file mode 100644 index 0000000..80bc038 --- /dev/null +++ b/lp/coturn/lp/README.md @@ -0,0 +1,33 @@ +#configuratie: + +Ik heb: hostNetwork: true — so ports 3478 (UDP/TCP) and 5349 (TCP) are bound directly on the node network interface. + +#ACHTERGRONFINFO + +#ICE server (Interactive Connectivity Establishment server) +is a network component used in +#WebRTC (Web Real-Time Communication) +and other peer-to-peer communication protocols to facilitate the establishment of a direct connection +between two devices (peers) over the internet. + +ICE is a framework used to handle the complexities of establishing these connections, +especially when peers are behind firewalls or NATs (Network Address Translators). +The main role of an ICE server is to help peers find the best possible path for direct communication. + +Here are some key components of ICE: + +#STUN (Session Traversal Utilities for NAT): + +A STUN server helps clients discover their public-facing IP address and port, which is needed when +they are behind a NAT or firewall. It assists in detecting if the peer is behind a NAT and helps with +establishing connectivity. + +#TURN (Traversal Using Relays around NAT): +A TURN server is used when a direct connection cannot be established between peers due to network +restrictions like strict NATs or firewalls. +In this case, the TURN server acts as a relay to route traffic between the peers. +ICE servers (STUN and TURN) work together to ensure the peers can communicate by testing various +potential connection paths and selecting the best one. + +In WebRTC, developers often configure ICE servers to make sure the communication is as efficient +as possible, even when the devices are on different networks with possible connectivity barriers diff --git a/lp/coturn/lp/coturn-cert.yaml b/lp/coturn/lp/coturn-cert.yaml new file mode 100644 index 0000000..d7cf03f --- /dev/null +++ b/lp/coturn/lp/coturn-cert.yaml @@ -0,0 +1,12 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: coturn-cert + namespace: matrix +spec: + secretName: coturn-cert + issuerRef: + name: letsencrypt + kind: ClusterIssuer + dnsNames: + - "coturn-lp.allarddcs.nl" diff --git a/lp/coturn/lp/coturn.yaml b/lp/coturn/lp/coturn.yaml new file mode 100644 index 0000000..22b6a96 --- /dev/null +++ b/lp/coturn/lp/coturn.yaml @@ -0,0 +1,105 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: coturn + namespace: matrix +spec: + replicas: 1 + selector: + matchLabels: + app: coturn + template: + metadata: + labels: + app: coturn + spec: +# hostNetwork: true + containers: + - name: coturn + image: coturn/coturn:latest + env: + - name: DETECT_EXTERNAL_IP + value: "yes" + - name: DETECT_RELAY_IP + value: "yes" + ports: + - name: turn-udp + containerPort: 3478 + protocol: UDP + - name: turn-tcp + containerPort: 3478 + protocol: TCP + - name: turns-tcp + containerPort: 5349 + protocol: TCP + volumeMounts: + - name: coturn-cert + mountPath: /etc/coturn/certs + readOnly: true + - name: coturn-data + mountPath: /etc/coturn/turnserver.conf + subPath: config/turnserver.conf + - name: coturn-data + mountPath: /var/log + subPath: logs + volumes: + - name: coturn-data + persistentVolumeClaim: + claimName: coturn-pvc + - name: coturn-cert + secret: + secretName: coturn-cert +--- +apiVersion: v1 +kind: Service +metadata: + name: coturn + namespace: matrix +spec: + type: LoadBalancer + ports: + - name: turn-udp + port: 3478 + protocol: UDP + targetPort: 3478 + - name: turn-tcp + port: 3478 + protocol: TCP + targetPort: 3478 + - name: turns-tcp + port: 5349 + protocol: TCP + targetPort: 5349 + selector: + app: coturn +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: coturn-pvc + namespace: matrix +spec: + storageClassName: "" + volumeName: coturn-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: coturn-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + volumeMode: Filesystem + hostPath: + path: /mnt/nfs_share/coturn/lp + type: Directory diff --git a/lp/coturn/lp/generate-user-password.py b/lp/coturn/lp/generate-user-password.py new file mode 100644 index 0000000..031223a --- /dev/null +++ b/lp/coturn/lp/generate-user-password.py @@ -0,0 +1,18 @@ +import hmac +import hashlib +import base64 +import time + +# Replace with your actual secret and realm +secret = b'heleenvanderpol' +realm = 'coturn-lp.allarddcs.nl' + +# Step 1: Generate a timestamp-based username valid for ~24 hours +username = str(int(time.time()) + 3600 * 24) + +# Step 2: Create password using HMAC-SHA1 +key = hmac.new(secret, username.encode('utf-8'), hashlib.sha1) +password = base64.b64encode(key.digest()).decode('utf-8') + +print("Username:", username) +print("Password:", password) diff --git a/lp/dockermail/README.md b/lp/dockermail/README.md new file mode 100644 index 0000000..0c1d3a9 --- /dev/null +++ b/lp/dockermail/README.md @@ -0,0 +1,29 @@ +kubectl apply -f pvc.yaml + +helm repo add docker-mailserver https://docker-mailserver.github.io/docker-mailserver-helm + +helm upgrade --install docker-mailserver docker-mailserver/docker-mailserver --namespace mail --create-namespace + +kubectl exec -it -n mail deploy/docker-mailserver -- bash + + setup email add admin@allarddcs.nl Dockermail01@ + + setup config dkim keysize 2048 domain 'allarddcs.nl' + +2025-01-22 13:09:42+00:00 INFO rspamd-dkim: Here is the content of the TXT DNS record mail._domainkey.allarddcs.nl that you need to create: + +v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwiLS07tI7kyAeIiR+hroK2r2v6/5/2CjLY2kzM2RA4nfnb/ZFG5/tYEF34NMBsZ4/fqki+ACUyN+65d1b7qa2Lxl+sj6honkVnmZHmayYhZbRp1odgim4IOdxRhqnJ3S0T3aVN7XLIgDng2/Uoyl/78qlPWMRZFbxe4h2z8iw3KTtTh3IrMsDnWWeatYO+Bx2WJDMc63qKuiZZ2XL4cC6ptrhKHRcAgErZFlUFyrZzfj7LhXx0Mq+6XLJGAGuVgo797qe4WM/y80PjoGQKCM9VduyFJd4du5DbGA9mhsB3Pu8o+MUt17xb/iWkpLMGO/0GBgLwLM5j7lfDwYOcFmDwIDAQAB + +rspamd: stopped +rspamd: started + + + +helm upgrade docker-mailserver docker-mailserver/docker-mailserver -n mail + + + +supervisorctl restart postfix +in etc/postfix/generic + +@allarddcs.nl @allarddcs.nl diff --git a/lp/dockermail/TXT-DNS-record-mail._domainkey.allarddcs.nl b/lp/dockermail/TXT-DNS-record-mail._domainkey.allarddcs.nl new file mode 100644 index 0000000..586f51a --- /dev/null +++ b/lp/dockermail/TXT-DNS-record-mail._domainkey.allarddcs.nl @@ -0,0 +1 @@ +v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqRda3lUfPZNi94d4P/82nBtM3rH2KLi7xOOSYm0njK6jtuqfJEvA5Mp3SH8JP7AtOamVXHGqsK1AWxCjPcyRGsHaenp6pDzBToNWbWTbgL/yfI1YIfHagUfpR+1EIUyaIb1NsFOSuEOVecSXQqPnPFVAYAcobDF/5q5z1eM0uPNHyTH0HGVlH038O8tH/INkjmVUa1l6IttdYVeU942J2n4p7hFNqzSc9EcLmaS2Q8DEB1+5i02vhu62qKojYSYo+jr5ThhqOQEy07xOCCenGq7yps9nHbvgmt9m6RlfxIJ9SwphzPm9zIGuK4hxt8MrFD408L+eympWRrDFLfm4owIDAQAB diff --git a/lp/dockermail/catalog-info.yaml b/lp/dockermail/catalog-info.yaml new file mode 100644 index 0000000..4a7933c --- /dev/null +++ b/lp/dockermail/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-dockermail + title: Dockermail (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/dockermail/ingressroute.yaml b/lp/dockermail/ingressroute.yaml new file mode 100644 index 0000000..ff29f9b --- /dev/null +++ b/lp/dockermail/ingressroute.yaml @@ -0,0 +1,64 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: docker-mailserver-ingress + annotations: + traefik.ingress.kubernetes.io/router.entrypoints: web, websecure + traefik.ingress.kubernetes.io/router.rule: "Host(`mail.allarddcs.nl`)" +spec: + rules: + - host: mail.allarddcs.nl + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: docker-mailserver + port: + number: 25 + # Add other ports for IMAP, POP3, etc. + - host: mail.allarddcs.nl + tcp: + - port: 25 + backend: + service: + name: docker-mailserver + port: + number: 25 + - port: 465 + backend: + service: + name: docker-mailserver + port: + number: 465 + - port: 587 + backend: + service: + name: docker-mailserver + port: + number: 587 + - port: 993 + backend: + service: + name: docker-mailserver + port: + number: 993 + - port: 143 + backend: + service: + name: docker-mailserver + port: + number: 143 + - port: 110 + backend: + service: + name: docker-mailserver + port: + number: 110 + - port: 995 + backend: + service: + name: docker-mailserver + port: + number: 995 diff --git a/lp/dockermail/ingressrouteTCP.yaml b/lp/dockermail/ingressrouteTCP.yaml new file mode 100644 index 0000000..27a4f6b --- /dev/null +++ b/lp/dockermail/ingressrouteTCP.yaml @@ -0,0 +1,23 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: ingressroute-tcp-dockermailserver + namespace: mail # Use the appropriate namespace where your Mailserver is deployed +spec: + entryPoints: + - smtp + - imap + - pop3 + routes: + - match: HostSNI(`*`) # This will match all hostnames, change it to match a specific domain if needed + services: + - name: docker-mailserver # Replace with your actual mailserver service name + port: 25 # SMTP port for Mailserver (adjust as needed) + - match: HostSNI(`*`) # IMAP route + services: + - name: docker-mailserver + port: 143 # IMAP port for Mailserver (adjust as needed) + - match: HostSNI(`*`) # POP3 route + services: + - name: docker-mailserver + port: 110 # POP3 port for Mailserver (adjust as needed) diff --git a/lp/dockermail/logs.sh b/lp/dockermail/logs.sh new file mode 100755 index 0000000..8024c4f --- /dev/null +++ b/lp/dockermail/logs.sh @@ -0,0 +1 @@ +microk8s kubectl logs docker-mailserver-0 -n mail diff --git a/lp/dockermail/pvc.yaml b/lp/dockermail/pvc.yaml new file mode 100755 index 0000000..9fbd53a --- /dev/null +++ b/lp/dockermail/pvc.yaml @@ -0,0 +1,124 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: mail-docker-mailserver-mail-config-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + volumeMode: Filesystem + hostPath: + path: /mnt/nfs_share/dockermail/config + type: Directory +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: mail-docker-mailserver-mail-config-pvc + namespace: mail +spec: + storageClassName: "" + volumeName: mail-docker-mailserver-mail-config-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: mail-docker-mailserver-mail-data-pv +spec: + storageClassName: "" + capacity: + storage: 5Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + volumeMode: Filesystem + hostPath: + path: /mnt/nfs_share/dockermail/data + type: Directory +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: mail-docker-mailserver-mail-data-pvc + namespace: mail +spec: + storageClassName: "" + volumeName: mail-docker-mailserver-mail-data-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: mail-docker-mailserver-mail-log-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + volumeMode: Filesystem + hostPath: + path: /mnt/nfs_share/dockermail/log + type: Directory +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: mail-docker-mailserver-mail-log-pvc + namespace: mail +spec: + storageClassName: "" + volumeName: mail-docker-mailserver-mail-log-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: mail-docker-mailserver-mail-state-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + volumeMode: Filesystem + hostPath: + path: /mnt/nfs_share/dockermail/state + type: Directory +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: mail-docker-mailserver-mail-state-pvc + namespace: mail +spec: + storageClassName: "" + volumeName: mail-docker-mailserver-mail-state-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/lp/dockermail/setup.sh b/lp/dockermail/setup.sh new file mode 100644 index 0000000..612a28e --- /dev/null +++ b/lp/dockermail/setup.sh @@ -0,0 +1 @@ +setup email add admin@allarddcs.nl Dockermail01@ diff --git a/lp/dockermail/tls-secret.yaml b/lp/dockermail/tls-secret.yaml new file mode 100644 index 0000000..bf0e818 --- /dev/null +++ b/lp/dockermail/tls-secret.yaml @@ -0,0 +1,17 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: mail-certificate + namespace: mail # Replace with your desired namespace (in this case, "mail") +spec: + secretName: mail-certificate-secret # The name of the Kubernetes secret to store the cert and key + issuerRef: + name: letsencrypt # Reference to the ClusterIssuer you created earlier + kind: ClusterIssuer + commonName: mail.allarddcs.nl # The common name for your mail domain + dnsNames: + - mail.allarddcs.nl # Additional DNS names (e.g., subdomains) + usages: + - digital signature + - key encipherment + - server auth diff --git a/lp/drupal/catalog-info.yaml b/lp/drupal/catalog-info.yaml new file mode 100644 index 0000000..9ba6bb6 --- /dev/null +++ b/lp/drupal/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-drupal + title: Drupal (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/drupal/drupal.yaml b/lp/drupal/drupal.yaml new file mode 100644 index 0000000..20f994e --- /dev/null +++ b/lp/drupal/drupal.yaml @@ -0,0 +1,146 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: drupal + namespace: drupal + labels: + app: drupal +spec: + replicas: 1 + selector: + matchLabels: + app: drupal + template: + metadata: + labels: + app: drupal + spec: + initContainers: + - name: init-sites-volume + image: drupal + command: ['/bin/bash', '-c'] + args: ['chown www-data:www-data /var/www/html/sites -R'] + volumeMounts: + - name: drupal-data + mountPath: /var/www/html/sites + subPath: sites + containers: + - name: drupal + image: drupal + imagePullPolicy: Always + env: + - name: ServerName + value: drupal-lp.alldcs.nl +# - name: GITEA__database__DB_TYPE +# value: mysql +# - name: GITEA__database__HOST +# value: mariadb.mariadb:3306 +# - name: GITEA__database__NAME +# value: gitea +# - name: GITEA__database__USER +# value: gitea +# - name: GITEA__database__PASSWD +# value: gitea + ports: + - containerPort: 80 + volumeMounts: + - name: drupal-data + mountPath: /var/www/html/modules + subPath: modules + - name: drupal-data + mountPath: /var/www/html/profiles + subPath: profiles + - name: drupal-data + mountPath: /var/www/html/themes + subPath: themes + - name: drupal-data + mountPath: /var/www/html/sites + subPath: sites + volumes: + - name: drupal-data + persistentVolumeClaim: + claimName: drupal-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: drupal + namespace: drupal + labels: + app: drupal +spec: + sessionAffinity: None + ports: + - protocol: TCP + port: 80 + selector: + app: drupal + type: LoadBalancer +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: drupal-tls + namespace: drupal +spec: + entryPoints: + - websecure + routes: + - match: Host(`drupal-lp.alldcs.nl`) + kind: Rule + services: + - name: drupal + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: drupal-http + namespace: drupal +spec: + entryPoints: + - web + routes: + - match: Host(`drupal-lp.alldcs.nl`) + kind: Rule + services: + - name: drupal + port: 80 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: drupal-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/drupal/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: drupal-pvc + namespace: drupal +spec: + storageClassName: "" + volumeName: drupal-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + diff --git a/lp/kubernetes/README.md b/lp/kubernetes/README.md new file mode 100755 index 0000000..ba0ab84 --- /dev/null +++ b/lp/kubernetes/README.md @@ -0,0 +1,17 @@ +3) microk8s enable dashboard +2) creer account: kubectl apply -f ServiceAccount.yaml +3) creeer clusterrolebinding: kubectl aply -f ClusterRoleBinding.yaml +4) creeer ingressroute: kubectl apply -f Ingressroute-tls.yaml +5) genereer token: +kubectl -n kube-system create token admin-user --duration=8544h + +Herinstallatie: + +na herinstallatie moet je de config opnieuw kopieren anders klopt het certificaat niet meer: + +sudo cp -i /var/snap/microk8s/current/credentials/client.config ${HOME}/.kube/config + +sudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/config + + + diff --git a/lp/kubernetes/TIPS.md b/lp/kubernetes/TIPS.md new file mode 100755 index 0000000..60c6e00 --- /dev/null +++ b/lp/kubernetes/TIPS.md @@ -0,0 +1,38 @@ +#Als een pvc in de status "terminating" blijft hangen kan het volgende commando +#helpen: + +kubectl patch pvc {PVC_NAME} -p '{"metadata":{"finalizers":null}}' + +#Switchen van context: + +kubectl config set-context --current --namespace=tektontutorial + +#Als je bij uitvoeren van kubectl "connection refused " krijgt +#kunnen de volgende commando's helpen: + +sudo microk8s.refresh-certs --cert ca.crt +sudo microk8s.refresh-certs --cert server.crt + +aanpassen clusternaam: + +nano /var/snap/micrk8s/current/credentials/client.config + +Daarna certificaten opnieuw genereren: + +sudo microk8s.refresh-certs --cert ca.crt +sudo microk8s.refresh-certs --cert server.crt + +kubectl configuratie opnieuw genereren: + +microk8s.kubectl config view --raw > $HOME/.kube/config + +#metallb speaker permission errors + +sudo nano /etc/apparmor.d/cri-containerd.apparmor.d +network, +sudo apparmor_parser -r /etc/apparmor.d/cri-containerd.apparmor.d + +#volle schijf: + +sudo microk8s ctr images list -q | xargs -r sudo microk8s ctr images rm + diff --git a/lp/kubernetes/catalog-info.yaml b/lp/kubernetes/catalog-info.yaml new file mode 100644 index 0000000..ebf4785 --- /dev/null +++ b/lp/kubernetes/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-kubernetes + title: Kubernetes (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/kubernetes/certificate.yaml b/lp/kubernetes/certificate.yaml new file mode 100755 index 0000000..53d7b6c --- /dev/null +++ b/lp/kubernetes/certificate.yaml @@ -0,0 +1,16 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: kubernetes-lp.allarddcs.nl-tls + namespace: kube-system +spec: + dnsNames: + - kubernetes-lp.allarddcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: kubernetes-lp.allarddcs.nl-tls + usages: + - digital signature + - key encipherment diff --git a/lp/kubernetes/clusterrolebinding.yaml b/lp/kubernetes/clusterrolebinding.yaml new file mode 100755 index 0000000..faa8927 --- /dev/null +++ b/lp/kubernetes/clusterrolebinding.yaml @@ -0,0 +1,12 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: admin-user +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: cluster-admin +subjects: +- kind: ServiceAccount + name: admin-user + namespace: kube-system diff --git a/lp/kubernetes/create-token.sh b/lp/kubernetes/create-token.sh new file mode 100755 index 0000000..95a7f2d --- /dev/null +++ b/lp/kubernetes/create-token.sh @@ -0,0 +1 @@ +microk8s kubectl -n kube-system create token admin-user --duration=8544h diff --git a/lp/kubernetes/ingressroute-tls-lp.yaml b/lp/kubernetes/ingressroute-tls-lp.yaml new file mode 100755 index 0000000..c35f280 --- /dev/null +++ b/lp/kubernetes/ingressroute-tls-lp.yaml @@ -0,0 +1,31 @@ +apiVersion: traefik.io/v1alpha1 +kind: ServersTransport +metadata: + name: kubernetes-dashboard-transport + namespace: kube-system + +spec: + serverName: kubernetes-dashboard + insecureSkipVerify: true +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: kubernetes-dashboard-tls + namespace: kube-system +spec: + entryPoints: # [1] + - websecure + routes: # [2] + - kind: Rule + match: Host(`kubernetes-lp.allarddcs.nl`) # [3] + priority: 10 # [4] + services: # [8] + - kind: Service + name: kubernetes-dashboard + namespace: kube-system + port: 443 # [9] + serversTransport: kubernetes-dashboard-transport + tls: # [11] + secretName: kubernetes-lp.allarddcs.nl-tls +# certResolver: letsencrypt diff --git a/lp/kubernetes/kubetoken-amd.txt b/lp/kubernetes/kubetoken-amd.txt new file mode 100755 index 0000000..70c9902 --- /dev/null +++ b/lp/kubernetes/kubetoken-amd.txt @@ -0,0 +1 @@ +eyJhbGciOiJSUzI1NiIsImtpZCI6IlRxZzNuLW5jeThFYTJtN0xSN2VhWF96Y1dpcTRRZVZ2ZUMtOFpRNThfb2cifQ.eyJhdWQiOlsiaHR0cHM6Ly9rdWJlcm5ldGVzLmRlZmF1bHQuc3ZjIl0sImV4cCI6MTcyMTg5MTgxOSwiaWF0IjoxNjkxMTMzNDE5LCJpc3MiOiJodHRwczovL2t1YmVybmV0ZXMuZGVmYXVsdC5zdmMiLCJrdWJlcm5ldGVzLmlvIjp7Im5hbWVzcGFjZSI6Imt1YmUtc3lzdGVtIiwic2VydmljZWFjY291bnQiOnsibmFtZSI6ImFkbWluLXVzZXIiLCJ1aWQiOiJkMjZiMDk3MS1kYmYwLTRhODYtOGUyMy0yYTU5MTEyY2M4OGMifX0sIm5iZiI6MTY5MTEzMzQxOSwic3ViIjoic3lzdGVtOnNlcnZpY2VhY2NvdW50Omt1YmUtc3lzdGVtOmFkbWluLXVzZXIifQ.GrwQolQgSrZ9yhXe54u6GcpksbgDk1C-sMJOKpDrKdr7FQGCNjq68cWuqWa-Fajtv39azFDzf5BiHsntcKeDMAFLJRGelKiM-yBqvD3cdXOU6fuhG-rUfnjVKAzJlVx95d5OJElgIqZ7bV1CnoLxuG5FTjhFKOzIJgMRvFZw8b4UJzbJF-SOASnOk4lEr_NYNJYdEIJB2VRWo-4nejohCEV4-ySHZikxBG88Di75Jkx2nUWlX_xCKvAdMe6LhZ9wA-DZGwtNEJZ_dwdUUCUcwzZ9M_i8TewujzrM6I4rPaSfEfvFJfj_pEOfZHQ0XhRYq2grxLppdwnYQzW5T2-suw diff --git a/lp/kubernetes/serviceaccount.yaml b/lp/kubernetes/serviceaccount.yaml new file mode 100755 index 0000000..27b6bb8 --- /dev/null +++ b/lp/kubernetes/serviceaccount.yaml @@ -0,0 +1,5 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: admin-user + namespace: kube-system diff --git a/lp/matrix/catalog-info.yaml b/lp/matrix/catalog-info.yaml new file mode 100644 index 0000000..437568a --- /dev/null +++ b/lp/matrix/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-matrix + title: Matrix (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/matrix/lp/README.md b/lp/matrix/lp/README.md new file mode 100644 index 0000000..549fd09 --- /dev/null +++ b/lp/matrix/lp/README.md @@ -0,0 +1,72 @@ +#Installatie: +You only need to expose port 443 (HTTPS) on your public IP. +All Matrix client communication and server-to-server federation is done over HTTPS. + +Dus ingressroute van entrypoint 443 naar poort 8008 is voldoende. +Je hoeft niks open te zetten op de internet router + +#configuratie STUN & TURN: + +als je de container directory "data" mount op een pvc dan vind je daar de bestanden: + +homeserver.db homeserver.db-wal matrix-lp.allarddcs.nl.log.config media_store +homeserver.db-shm homeserver.yaml matrix-lp.allarddcs.nl.signing.key + +homeserver.yaml bevat: + +turn_uris: + - "turn:coturn-lp.allarddcs.nl:3478?transport=udp" + - "turn:coturn-lp.allarddcs.nl:3478?transport=tcp" +stun_uris: + - "stun:stun.l.google.com:19302" + - "stun:stun1.l.google.com:19302" + - "stun:stun2.l.google.com:19302" + +#registratie admin: + +kubectl exec -it matrix-644984f6b7-d7jcp -n matrix -- register_new_matrix_user http://localhost:8008 -u admin -p Matrix01@ \ + -a -k f0hE.OTU8UXQ44yIHPWtO+8CKhM-b:QZNngk_qhE8EvgmP-3h@ + +#registratie gewone gebruiker: + +kubectl exec -it matrix-644984f6b7-d7jcp -n matrix -- register_new_matrix_user http://localhost:8008 -u diederick -p Matrix01@ \ + --no-admin -k f0hE.OTU8UXQ44yIHPWtO+8CKhM-b:QZNngk_qhE8EvgmP-3h@ + +#algemeen: + +usage: register_new_matrix_user [-h] [-u USER] [--exists-ok] [-p PASSWORD | --password-file PASSWORD_FILE] [-t USER_TYPE] [-a | --no-admin] (-c CONFIG | -k SHARED_SECRET) + [server_url] + +Used to register new users with a given homeserver when registration has been disabled. The homeserver must be configured with +the 'registration_shared_secret' option set. + +positional arguments: + server_url URL to use to talk to the homeserver. By default, tries to find a suitable URL from the configuration + file. Otherwise, defaults to 'http://localhost:8008'. + +options: + -h, --help show this help message and exit + -u USER, --user USER Local part of the new user. Will prompt if omitted. + --exists-ok Do not fail if user already exists. + -p PASSWORD, --password PASSWORD + New password for user. Will prompt for a password if this flag and `--password-file` are both omitted. + --password-file PASSWORD_FILE + File containing the new password for user. If set, will override `--password`. + -t USER_TYPE, --user_type USER_TYPE + User type as specified in synapse.api.constants.UserTypes + -a, --admin Register new user as an admin. Will prompt if --no-admin is not set either. + --no-admin Register new user as a regular user. Will prompt if --admin is not set either. + -c CONFIG, --config CONFIG + Path to server config file. Used to read in shared secret. + -k SHARED_SECRET, --shared-secret SHARED_SECRET + Shared secret as defined in server config file. +#COTURN: + +#check udp: + +nc -zvu coturn-lp.allarddcs.nl 3478 +nc -zv coturn-lp.allarddcs.nl 3478 +nc -zv coturn-lp.allarddcs.nl 5349 + +#checken certificaat: +kubectl describe secret coturn-cert -n matrix diff --git a/lp/matrix/lp/element.yaml b/lp/matrix/lp/element.yaml new file mode 100755 index 0000000..0a77739 --- /dev/null +++ b/lp/matrix/lp/element.yaml @@ -0,0 +1,98 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: element + namespace: matrix + labels: + app: element +spec: + replicas: 1 + selector: + matchLabels: + app: element + template: + metadata: + labels: + app: element + spec: + containers: + - name: element + image: vectorim/element-web + securityContext: + runAsUser: 0 # Run as root (user ID 0) + runAsGroup: 0 # Run as root group (group ID 0) + ports: + - containerPort: 80 + env: + - name: SYNAPSE_SERVER + value: "https://matrix-lp.allarddcs.nl" + - name: BASE_URL + value: "https://element-lp.allarddcs.nl" + volumeMounts: + - name: element-config + mountPath: /config + volumes: + - name: element-config + configMap: + name: element-config +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: element-config +data: + config.json: | + { + "default_homeserver": "https://matrix-lp.allarddcs.nl", + "branding": { + "brand": "AllardDCS", + "icon": "/path/to/logo.png" + } + } +--- +apiVersion: v1 +kind: Service +metadata: + name: element + namespace: matrix +spec: + ports: + - name: http + targetPort: 80 + port: 80 + selector: + app: element + type: ClusterIP +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: element-http + namespace: matrix +spec: + entryPoints: + - web + routes: + - match: Host(`element-lp.allarddcs.nl`) + kind: Rule + services: + - name: element + port: 80 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: element-tls + namespace: matrix +spec: + entryPoints: + - websecure + routes: + - match: Host(`element-lp.allarddcs.nl`) + kind: Rule + services: + - name: element + port: 80 + tls: + secretName: element-lp.allarddcs.nl-tls + diff --git a/lp/matrix/lp/ingressroute-http.yaml b/lp/matrix/lp/ingressroute-http.yaml new file mode 100644 index 0000000..1a8ff6b --- /dev/null +++ b/lp/matrix/lp/ingressroute-http.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: acme-challenge + namespace: cert-manager +spec: + entryPoints: + - web + routes: + - match: PathPrefix(`/\.well-known/acme-challenge/`) + kind: Rule + services: + - name: cert-manager + port: 80 diff --git a/lp/matrix/lp/matrix-certificate.yaml b/lp/matrix/lp/matrix-certificate.yaml new file mode 100755 index 0000000..e524df4 --- /dev/null +++ b/lp/matrix/lp/matrix-certificate.yaml @@ -0,0 +1,16 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: matrix-lp.allarddcs.nl-tls + namespace: matrix +spec: + dnsNames: + - matrix-lp.allarddcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: matrix-lp.allarddcs.nl-tls + usages: + - digital signature + - key encipherment diff --git a/lp/matrix/lp/matrix.yaml b/lp/matrix/lp/matrix.yaml new file mode 100755 index 0000000..866736a --- /dev/null +++ b/lp/matrix/lp/matrix.yaml @@ -0,0 +1,116 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: matrix + namespace: matrix + labels: + app: matrix +spec: + replicas: 1 + selector: + matchLabels: + app: matrix + template: + metadata: + labels: + app: matrix + spec: + containers: + - name: matrix + image: matrixdotorg/synapse:latest +# args: +# - generate + env: + - name: SYNAPSE_SERVER_NAME + value: "matrix-lp.allarddcs.nl" +# - name: SYNAPSE_REPORT_STATS +# value: "yes" + volumeMounts: + - mountPath: /data + name: matrix + volumes: + - name: matrix + persistentVolumeClaim: + claimName: matrix-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: matrix + namespace: matrix +spec: + ports: + - name: http + targetPort: 8008 + port: 8008 + selector: + app: matrix + type: NodePort +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: matrix-http + namespace: matrix +spec: + entryPoints: + - web + routes: + - match: Host(`matrix-lp.allarddcs.nl`) + kind: Rule + services: + - name: matrix + port: 8008 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: matrix-tls + namespace: matrix +spec: + entryPoints: + - websecure + routes: + - match: Host(`matrix-lp.allarddcs.nl`) + kind: Rule + services: + - name: matrix + port: 8008 + tls: + secretName: matrix-lp.allarddcs.nl-tls +# certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: matrix-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/matrix/lp + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: matrix-pvc + namespace: matrix +spec: + storageClassName: "" + volumeName: matrix-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/lp/matrix/lp/recoverykey.txt b/lp/matrix/lp/recoverykey.txt new file mode 100644 index 0000000..93b456b --- /dev/null +++ b/lp/matrix/lp/recoverykey.txt @@ -0,0 +1,2 @@ +account: test +recovery key: EsTz j5um bhAd WG9u GiHo bkt5 EjRa 7Bhh UxbH 89PT QEn2 zm2e diff --git a/lp/matrix/prod/README.md b/lp/matrix/prod/README.md new file mode 100644 index 0000000..e4814eb --- /dev/null +++ b/lp/matrix/prod/README.md @@ -0,0 +1,47 @@ + +#registratie admin: + +kubectl exec -it matrix-644984f6b7-d7jcp -n matrix -- register_new_matrix_user http://localhost:8008 -u admin -p Matrix01@ \ + -a -k f0hE.OTU8UXQ44yIHPWtO+8CKhM-b:QZNngk_qhE8EvgmP-3h@ + +#registratie gewone gebruiker: + +kubectl exec -it matrix-644984f6b7-d7jcp -n matrix -- register_new_matrix_user http://localhost:8008 -u diederick -p Matrix01@ \ + --no-admin -k f0hE.OTU8UXQ44yIHPWtO+8CKhM-b:QZNngk_qhE8EvgmP-3h@ + +#algemeen: + +usage: register_new_matrix_user [-h] [-u USER] [--exists-ok] [-p PASSWORD | --password-file PASSWORD_FILE] [-t USER_TYPE] [-a | --no-admin] (-c CONFIG | -k SHARED_SECRET) + [server_url] + +Used to register new users with a given homeserver when registration has been disabled. The homeserver must be configured with +the 'registration_shared_secret' option set. + +positional arguments: + server_url URL to use to talk to the homeserver. By default, tries to find a suitable URL from the configuration + file. Otherwise, defaults to 'http://localhost:8008'. + +options: + -h, --help show this help message and exit + -u USER, --user USER Local part of the new user. Will prompt if omitted. + --exists-ok Do not fail if user already exists. + -p PASSWORD, --password PASSWORD + New password for user. Will prompt for a password if this flag and `--password-file` are both omitted. + --password-file PASSWORD_FILE + File containing the new password for user. If set, will override `--password`. + -t USER_TYPE, --user_type USER_TYPE + User type as specified in synapse.api.constants.UserTypes + -a, --admin Register new user as an admin. Will prompt if --no-admin is not set either. + --no-admin Register new user as a regular user. Will prompt if --admin is not set either. + -c CONFIG, --config CONFIG + Path to server config file. Used to read in shared secret. + -k SHARED_SECRET, --shared-secret SHARED_SECRET + Shared secret as defined in server config file. +#coturn: + +check udp: + +nc -zvu coturn-prod.allarddcs.nl 3478 +nc -zv coturn-prod.allarddcs.nl 3478 +nc -zv coturn-prod.allarddcs.nl 5349 + diff --git a/lp/matrix/prod/coturn-cert.yaml b/lp/matrix/prod/coturn-cert.yaml new file mode 100644 index 0000000..a6d7799 --- /dev/null +++ b/lp/matrix/prod/coturn-cert.yaml @@ -0,0 +1,12 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: coturn-cert + namespace: matrix +spec: + secretName: coturn-cert + issuerRef: + name: letsencrypt + kind: ClusterIssuer + dnsNames: + - "matrix-prod.allarddcs.nl" diff --git a/lp/matrix/prod/coturn-certificate.yaml b/lp/matrix/prod/coturn-certificate.yaml new file mode 100755 index 0000000..8ffa4b1 --- /dev/null +++ b/lp/matrix/prod/coturn-certificate.yaml @@ -0,0 +1,16 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: coturn-prod.allarddcs.nl-tls + namespace: matrix +spec: + dnsNames: + - cotrun-prod.allarddcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: coturn-prod.allarddcs.nl-tls + usages: + - digital signature + - key encipherment diff --git a/lp/matrix/prod/coturn.yaml b/lp/matrix/prod/coturn.yaml new file mode 100644 index 0000000..7d1c2e4 --- /dev/null +++ b/lp/matrix/prod/coturn.yaml @@ -0,0 +1,153 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: coturn + namespace: matrix +spec: + replicas: 1 + selector: + matchLabels: + app: coturn + template: + metadata: + labels: + app: coturn + spec: + containers: + - name: coturn + image: coturn/coturn:latest + ports: + - name: turn-udp + containerPort: 3478 + protocol: UDP + - name: turn-tcp + containerPort: 3478 + protocol: TCP + - name: turns-tcp + containerPort: 5349 + protocol: TCP + volumeMounts: + - name: coturn-cert + mountPath: "/etc/coturn/certs" + readOnly: true + - name: coturn-config + mountPath: /etc/coturn + - name: coturn-data + mountPath: /var/log + subPath: logs + args: + - "--tls-listening-port=5349" + - "--cert=/etc/coturn/certs/tls.crt" + - "--pkey=/etc/coturn/certs/tls.key" + volumes: + - name: coturn-config + configMap: + name: coturn-config + - name: coturn-data + persistentVolumeClaim: + claimName: coturn-pvc + - name: coturn-cert + secret: + secretName: coturn-cert +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: coturn-config + namespace: matrix +data: + turnserver.conf: | + listening-port=3478 + tls-listening-port=5349 + listening-ip=0.0.0.0 + relay-ip=0.0.0.0 + total-quota=100 + bps-capacity=0 + cert=/etc/coturn/certs/fullchain.pem + pkey=/etc/coturn/certs/privkey.pem + log-file=/var/log/turnserver.log + no-stdout-log + verbose + + min-port=49152 + max-port=65535 + + # External IP (public or internal depending on setup) + listening-ip=0.0.0.0 + relay-ip=0.0.0.0 + external-ip=82.174.234.158 + + # Secure authentication + use-auth-secret + static-auth-secret=heleenvanderpol + realm=matrix-prod.allarddcs.nl + + # Enable TLS + cert=/etc/coturn/certs/fullchain.pem + pkey=/etc/coturn/certs/privkey.pem + + # WebRTC-specific settings + fingerprint + lt-cred-mech + stale-nonce + + # Allow peers to communicate via relay + no-multicast-peers + no-loopback-peers +--- +apiVersion: v1 +kind: Service +metadata: + name: coturn + namespace: matrix +spec: + selector: + app: coturn + type: LoadBalancer + ports: + - name: coturn-udp + port: 3478 + targetPort: 3478 + protocol: UDP + - name: coturn-tcp + port: 3478 + targetPort: 3478 + protocol: TCP + - name: coturn-tls + port: 5349 + targetPort: 5349 + protocol: TCP +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: coturn-pvc + namespace: matrix +spec: + storageClassName: "" + volumeName: coturn-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: coturn-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/coturn + readOnly: false diff --git a/lp/matrix/prod/ingressroute-http.yaml b/lp/matrix/prod/ingressroute-http.yaml new file mode 100644 index 0000000..1a8ff6b --- /dev/null +++ b/lp/matrix/prod/ingressroute-http.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: acme-challenge + namespace: cert-manager +spec: + entryPoints: + - web + routes: + - match: PathPrefix(`/\.well-known/acme-challenge/`) + kind: Rule + services: + - name: cert-manager + port: 80 diff --git a/lp/matrix/prod/matrix-certificate.yaml b/lp/matrix/prod/matrix-certificate.yaml new file mode 100755 index 0000000..1a4a7c4 --- /dev/null +++ b/lp/matrix/prod/matrix-certificate.yaml @@ -0,0 +1,16 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: matrix-prod.allarddcs.nl-tls + namespace: matrix +spec: + dnsNames: + - matrix-prod.allarddcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: matrix-prod.allarddcs.nl-tls + usages: + - digital signature + - key encipherment diff --git a/lp/matrix/prod/matrix.yaml b/lp/matrix/prod/matrix.yaml new file mode 100755 index 0000000..5ab473e --- /dev/null +++ b/lp/matrix/prod/matrix.yaml @@ -0,0 +1,116 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: matrix + namespace: matrix + labels: + app: matrix +spec: + replicas: 1 + selector: + matchLabels: + app: matrix + template: + metadata: + labels: + app: matrix + spec: + containers: + - name: matrix + image: matrixdotorg/synapse:latest +# args: +# - generate + env: + - name: SYNAPSE_SERVER_NAME + value: "matrix.allarddcs.nl" +# - name: SYNAPSE_REPORT_STATS +# value: "yes" + volumeMounts: + - mountPath: /data + name: matrix + volumes: + - name: matrix + persistentVolumeClaim: + claimName: matrix-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: matrix + namespace: matrix +spec: + ports: + - name: http + targetPort: 8008 + port: 8008 + selector: + app: matrix + type: NodePort +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: matrix-http + namespace: matrix +spec: + entryPoints: + - web + routes: + - match: Host(`matrix-prod.allarddcs.nl`) + kind: Rule + services: + - name: matrix + port: 8008 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: mattrix-tls + namespace: matrix +spec: + entryPoints: + - websecure + routes: + - match: Host(`matrix-prod.allarddcs.nl`) + kind: Rule + services: + - name: matrix + port: 8008 + tls: + secretName: matrix-prod.allarddcs.nl-tls +# certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: matrix-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/matrix/prod + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: matrix-pvc + namespace: matrix +spec: + storageClassName: "" + volumeName: matrix-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/lp/mongodb/README.md b/lp/mongodb/README.md new file mode 100755 index 0000000..1609c29 --- /dev/null +++ b/lp/mongodb/README.md @@ -0,0 +1,5 @@ +# kubernetes mongodb Manifest YAML's + +Kubernetes manifests for mongoDB Deployment. + +Full Documentation: Refer https://devopscube.com/deploy-mongodb-kubernetes/ for step by step process to use these manifests. diff --git a/lp/mongodb/catalog-info.yaml b/lp/mongodb/catalog-info.yaml new file mode 100644 index 0000000..3207223 --- /dev/null +++ b/lp/mongodb/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-mongodb + title: Mongodb (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/mongodb/ingressroute.yaml b/lp/mongodb/ingressroute.yaml new file mode 100755 index 0000000..776ae70 --- /dev/null +++ b/lp/mongodb/ingressroute.yaml @@ -0,0 +1,21 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: mongodb-express-tls + namespace: mongodb +spec: + entryPoints: + - websecure + routes: + - match: Host(`mongodb-lp.allarddcs.nl`) + kind: Rule + services: + - name: mongo-express + port: 8081 + tls: + certResolver: letsencrypt + + + + + diff --git a/lp/mongodb/mongo-express.yaml b/lp/mongodb/mongo-express.yaml new file mode 100755 index 0000000..a2f2630 --- /dev/null +++ b/lp/mongodb/mongo-express.yaml @@ -0,0 +1,47 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: mongodb-express + namespace: mongodb + labels: + app: mongo-express +spec: + replicas: 1 + selector: + matchLabels: + app: mongo-express + template: + metadata: + labels: + app: mongo-express + spec: + containers: + - name: mongo-express + image: mongo-express + ports: + - containerPort: 8081 + env: + - name: ME_CONFIG_OPTIONS_EDITORTHEME + value: "ambiance" + - name: ME_CONFIG_MONGODB_SERVER + value: mongodb + - name: ME_CONFIG_BASICAUTH_USERNAME + value: "admin" + - name: ME_CONFIG_BASICAUTH_PASSWORD + value: "Mongodb01" +--- +apiVersion: v1 +kind: Service +metadata: + name: mongo-express + namespace: mongodb + labels: + name: mongo-express +spec: + type: ClusterIP + ports: + - port: 8081 + name: http + selector: + app: mongo-express + diff --git a/lp/mongodb/mongodb.yaml b/lp/mongodb/mongodb.yaml new file mode 100755 index 0000000..44756cd --- /dev/null +++ b/lp/mongodb/mongodb.yaml @@ -0,0 +1,86 @@ +apiVersion: apps/v1 +kind: ReplicaSet +metadata: + labels: + app: mongodb + name: mongodb + namespace: mongodb +spec: + replicas: 1 + selector: + matchLabels: + app: mongodb + template: + metadata: + labels: + app: mongodb + spec: + containers: + - image: mongodb/mongodb-community-server + name: mongodb +# args: ["--dbpath","/data/db"] + env: + - name: MONGO_INITDB_ROOT_USERNAME + value: admin + - name: MONGO_INITDB_ROOT_PASSWORD + value: Mongodb01 + volumeMounts: + - name: "mongo-data-dir" + mountPath: "/data/db" + nodeSelector: + kubernetes.io/arch: amd64 + volumes: + - name: "mongo-data-dir" + persistentVolumeClaim: + claimName: "mongo-data" +--- +apiVersion: v1 +kind: Service +metadata: + labels: + app: mongodb + name: mongodb + namespace: mongodb +spec: + ports: + - port: 27017 + protocol: TCP + targetPort: 27017 + selector: + app: mongodb + type: ClusterIP +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: mongo-data-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/mongodb + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: mongo-data + namespace: mongodb +spec: + storageClassName: "" + volumeName: mongo-data-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/lp/nfs/README.md b/lp/nfs/README.md new file mode 100755 index 0000000..ae9a26d --- /dev/null +++ b/lp/nfs/README.md @@ -0,0 +1,35 @@ +NFS Installatie: +================ + +helm repo add nfs-subdir-external-provisioner \ +https://kubernetes-sigs.github.io/nfs-subdir-external-provisioner + +helm install -n nfs-provisioning --create-namespace nfs-subdir-external-provisioner \ +nfs-subdir-external-provisioner/nfs-subdir-external-provisioner \ +--set nfs.server=192.168.2.110 --set nfs.path=/opt/dynamic-storage + + +Testen: + +kubectl apply -f demo-pvc.yaml +kubectl apply -f test-pod.yaml + + +kubectl exec -it test-pod -n nfs-provisioning -- df -h + +#nfs als default storage instellen: + +kubectl get storageclass + +NAME PROVISIONER RECLAIMPOLICY VOLUMEBINDINGMODE ALLOWVOLUMEEXPANSION AGE +microk8s-hostpath microk8s.io/hostpath Delete WaitForFirstConsumer false 33m +nfs-client cluster.local/nfs-subdir-external-provisioner Delete Immediate true 18m + + +kubectl patch storageclass microk8s-hostpath -p \ +'{"metadata": \ +{"annotations":{"storageclass.kubernetes.io/is-default-class":"false"}}}' + +kubectl patch storageclass nfs-client -p \ +'{"metadata": \ +{"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}' diff --git a/lp/nfs/catalog-info.yaml b/lp/nfs/catalog-info.yaml new file mode 100644 index 0000000..c42a0a9 --- /dev/null +++ b/lp/nfs/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-nfs + title: Nfs (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/nfs/demo-pvc.yaml b/lp/nfs/demo-pvc.yaml new file mode 100755 index 0000000..593e53e --- /dev/null +++ b/lp/nfs/demo-pvc.yaml @@ -0,0 +1,12 @@ +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: demo-claim + namespace: nfs-provisioning +spec: + storageClassName: nfs-client + accessModes: + - ReadWriteMany + resources: + requests: + storage: 10Mi diff --git a/lp/nfs/k3s/nfs.yaml b/lp/nfs/k3s/nfs.yaml new file mode 100755 index 0000000..36adf5b --- /dev/null +++ b/lp/nfs/k3s/nfs.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: nfs-provisioning +--- +apiVersion: helm.cattle.io/v1 +kind: HelmChart +metadata: + name: nfs-provisioning + namespace: kube-system +spec: + repo: https://kubernetes-sigs.github.io/nfs-subdir-external-provisioner + chart: nfs-subdir-external-provisioner + targetNamespace: nfs-provisioning + valuesContent: |- + nfs: + server: 192.168.2.100 + path: /opt/dynamic-storage diff --git a/lp/nfs/nfs-storage-class.yaml b/lp/nfs/nfs-storage-class.yaml new file mode 100644 index 0000000..ce630a8 --- /dev/null +++ b/lp/nfs/nfs-storage-class.yaml @@ -0,0 +1,13 @@ +apiVersion: storage.k8s.io/v1 +kind: StorageClass +metadata: + name: nfs-csi +provisioner: nfs.csi.k8s.io +parameters: + server: 192.168.2.110 + share: /mnt/nfs_share/nfs-dynamic/ +reclaimPolicy: Delete +volumeBindingMode: Immediate +mountOptions: + - hard + - nfsvers=4.1 diff --git a/lp/nfs/test-nfs.yaml b/lp/nfs/test-nfs.yaml new file mode 100755 index 0000000..d33b930 --- /dev/null +++ b/lp/nfs/test-nfs.yaml @@ -0,0 +1,29 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: fedoratest + labels: + app: fedoratest +spec: + replicas: 1 + selector: + matchLabels: + app: fedora + template: + metadata: + labels: + app: fedora + spec: + containers: + - name: fedora + image: fedora + command: ["/bin/bash", "-c", "--"] + args: ["while true; do sleep 30; done;"] + volumeMounts: + - name: nfs-vol + mountPath: /opt/nfs + volumes: + - name: nfs-vol + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share diff --git a/lp/nfs/test-pod.yaml b/lp/nfs/test-pod.yaml new file mode 100755 index 0000000..a4a1230 --- /dev/null +++ b/lp/nfs/test-pod.yaml @@ -0,0 +1,22 @@ +kind: Pod +apiVersion: v1 +metadata: + name: test-pod + namespace: nfs-provisioning +spec: + containers: + - name: test-pod + image: busybox:latest + command: + - "/bin/sh" + args: + - "-c" + - "touch /mnt/SUCCESS && sleep 600" + volumeMounts: + - name: nfs-pvc + mountPath: "/mnt" + restartPolicy: "Never" + volumes: + - name: nfs-pvc + persistentVolumeClaim: + claimName: demo-claim diff --git a/lp/pgadmin/catalog-info.yaml b/lp/pgadmin/catalog-info.yaml new file mode 100644 index 0000000..0c388f1 --- /dev/null +++ b/lp/pgadmin/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-pgadmin + title: Pgadmin (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/pgadmin/certificate.yaml b/lp/pgadmin/certificate.yaml new file mode 100755 index 0000000..255e1c4 --- /dev/null +++ b/lp/pgadmin/certificate.yaml @@ -0,0 +1,16 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: pgadmin-lp.allarddcs.nl-tls + namespace: postgres +spec: + dnsNames: + - pgadmin-lp.allarddcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: pgadmin-lp.allarddcs.nl-tls + usages: + - digital signature + - key encipherment diff --git a/lp/pgadmin/pgadmin.yaml b/lp/pgadmin/pgadmin.yaml new file mode 100755 index 0000000..49cb7d2 --- /dev/null +++ b/lp/pgadmin/pgadmin.yaml @@ -0,0 +1,134 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: pgadmin-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + volumeMode: Filesystem + hostPath: + path: /mnt/nfs_share/pgadmin/lp + type: Directory +--- +#apiVersion: v1 +#kind: PersistentVolume +#metadata: +# name: pgadmin-pv +#spec: +# storageClassName: "" +# capacity: +# storage: 1Gi +# accessModes: +# - ReadWriteMany +# persistentVolumeReclaimPolicy: Retain +# mountOptions: +# - hard +# - nfsvers=4.1 +# nfs: +# server: 192.168.2.110 +# path: /mnt/nfs_share/pgadmin/lp +# readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: pgadmin-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: pgadmin-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: pgadmin + namespace: postgres + labels: + app: pgadmin +spec: + replicas: 1 + selector: + matchLabels: + app: pgadmin + template: + metadata: + labels: + app: pgadmin + spec: + containers: + - name: pgadmin + image: dpage/pgadmin4 + ports: + - containerPort: 80 + env: + - name: PGADMIN_DEFAULT_EMAIL + value: admin@alldcs.nl + - name: PGADMIN_DEFAULT_PASSWORD + value: Pgadmin01@ + volumeMounts: + - mountPath: /var/lib/pgadmin + name: pgadmin + volumes: + - name: pgadmin + persistentVolumeClaim: + claimName: pgadmin-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: pgadmin + namespace: postgres + labels: + name: pgadmin +spec: + selector: + app.kubernetes.io/name: pgadmin + ports: + - protocol: TCP + port: 80 + targetPort: 80 + selector: + app: pgadmin +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: pgadmin-tls + namespace: postgres +spec: + entryPoints: + - websecure + routes: + - match: Host(`pgadmin-lp.allarddcs.nl`) + kind: Rule + services: + - name: pgadmin + port: 80 + tls: + secretName: pgadmin-lp.allarddcs.nl-tls +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: pgadmin-http + namespace: postgres +spec: + entryPoints: + - web + routes: + - match: Host(`pgadmin-lp.allarddcs.nl`) + kind: Rule + services: + - name: pgadmin + port: 80 + diff --git a/lp/postfixadmin/catalog-info.yaml b/lp/postfixadmin/catalog-info.yaml new file mode 100644 index 0000000..6402486 --- /dev/null +++ b/lp/postfixadmin/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-postfixadmin + title: Postfixadmin (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/postfixadmin/postfixadmin.yaml b/lp/postfixadmin/postfixadmin.yaml new file mode 100755 index 0000000..c71976a --- /dev/null +++ b/lp/postfixadmin/postfixadmin.yaml @@ -0,0 +1,104 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postfixadmin-pv + labels: + type: local +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/postfixadmin + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postfixadmin-pvc + namespace: mail +spec: + storageClassName: "" + volumeName: postfixadmin-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1G +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: postfixadmin + namespace: mail + labels: + app: postfixadmin +spec: + replicas: 1 + selector: + matchLabels: + app: postfixadmin + template: + metadata: + labels: + app: postfixadmin + spec: + containers: + - name: postfixadmin + image: amd64/postfixadmin + ports: + - containerPort: 80 + env: + - name: POSTFIXADMIN_DB_TYPE + value: pgsql + - name: POSTFIXADMIN_DB_HOST + value: postgres13.postgres + - name: POSTFIXADMIN_DB_USER + value: postfixadmin + - name: POSTFIXADMIN_DB_PASSWORD + value: postfixadmin + - name: POSTFIXADMIN_DB_NAME + value: postfixadmin + volumeMounts: + - name: postfixconfig + mountPath: /var/www/html/ + volumes: + - name: postfixconfig + persistentVolumeClaim: + claimName: postfixadmin-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: postfixadmin + namespace: mail +spec: + selector: + app.kubernetes.io/name: postfixadmin + ports: + - protocol: TCP + port: 80 + targetPort: 80 + selector: + app: postfixadmin +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: ingressroute-postfixadmin-tls + namespace: mail +spec: + entryPoints: + - websecure + routes: + - match: Host(`postfixadmin-lp.allarddcs.nl`) + kind: Rule + services: + - name: postfixadmin + port: 80 + tls: + certResolver: letsencrypt diff --git a/lp/postgres13/README.md b/lp/postgres13/README.md new file mode 100644 index 0000000..28a717a --- /dev/null +++ b/lp/postgres13/README.md @@ -0,0 +1,18 @@ +#corrupte WAL-archive + +#postgres starten zonder database te starten door volgende toe te voegen in yaml:: + + command: ["sh"] + args: ["-c", "while true; do echo $(date -u) >> /tmp/run.log; sleep 5; done"] + +#dan inloggen in draaiende container + +kubectl exec -it postgres14-0 -n postgres -- sh + +#Switchen naar user POSTGRES + +su postgres + +#WAL-arhive resetten: + +pg_resetwal /var/lib/postgresql/data -f diff --git a/lp/postgres13/catalog-info.yaml b/lp/postgres13/catalog-info.yaml new file mode 100644 index 0000000..f29fa2b --- /dev/null +++ b/lp/postgres13/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-postgres13 + title: Postgres13 (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/postgres13/postgres13lp.yaml b/lp/postgres13/postgres13lp.yaml new file mode 100755 index 0000000..493f18c --- /dev/null +++ b/lp/postgres13/postgres13lp.yaml @@ -0,0 +1,90 @@ +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: postgres13 + namespace: postgres +spec: + serviceName: postgres13 + replicas: 1 + selector: + matchLabels: + app: postgres13 + template: + metadata: + labels: + app: postgres13 + spec: + containers: + - name: postgres13 + image: postgres:13 +# command: ["sh"] +# args: ["-c", "while true; do echo $(date -u) >> /tmp/run.log; sleep 5; done"] + resources: + limits: + memory: 500Mi + cpu: 1 + requests: + memory: 200Mi + cpu: 500m + ports: + - containerPort: 5432 + env: + - name: POSTGRES_DB + value: quay + - name: POSTGRES_USER + value: quay + - name: POSTGRES_PASSWORD + value: quay + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: postgres + volumes: + - name: postgres + persistentVolumeClaim: + claimName: postgres13-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres13 + labels: + name: postgres13 + namespace: postgres +spec: + type: ClusterIP + ports: + - port: 5432 + name: postgres + selector: + app: postgres13 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgres13-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + volumeMode: Filesystem + hostPath: + path: /mnt/nfs_share/postgres13lp + type: Directory +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres13-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: postgres13-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi diff --git a/lp/quay/README.md b/lp/quay/README.md new file mode 100755 index 0000000..f4b9eb2 --- /dev/null +++ b/lp/quay/README.md @@ -0,0 +1,88 @@ +#Installatie + +#eigen namespace: + +kubectl create ns quay + +#Redis: + +is al geinstalleeerd op de odroid, 192.168.2.239:6379 password: Redis01@ + +#Postgress13: + +is al geinstalleerd op de odroid. 192.168.2.235:5432 password: quay + +installeren van extensies: +- inloggen incontainer: + kubectl exec -it postgres13-0 -n postgres +- inloggen op dadabase quay: + psql -U quay --dbname=quay +- sql uitvoeren: + create extension if not exists pg_trgm; + +#quay +kubectl apply -f quay.yaml -n quay + +#SSL configureren: + +Mounten van een certificaat is helaas niet mogelijk omdat dit dezelfde directory in de container +is waar je ook al config.yaml mount vanaf de nfs-share. + +daarom: + +- eerst op pisvrwsv01 letsencrypt-certificaat laten maken via certmanager: + +kubectl apply -f certificate.yaml + +Er ontstaat dan een secret: "quay.alldcs.nl-tls" + +dan de ssl-cert en ssl.key extraheren: + +kubectl get secret quay.alldcs.nl-tls -o json -o=jsonpath="{.data.tls\.crt}" | base64 -d > ssl.cert +kubectl get secret quay.alldcs.nl-tls -o json -o=jsonpath="{.data.tls\.key}" | base64 -d > ssl.key + +Vervolgens deze twee bestandjes kopieren naar /mnt/nfs-share/quay/conf op de NFS-server. +NIET VERGETEN ZE LEESBAAR TE MAKEN: chmod 777.... + +#verdere configuratie: + +stop quay: + kubectl delete -f quay.yaml + +start quay in config mode: + kubectl apply -f quay-config.yaml + +op een of andere manier werkt de ingressroute nu niet meer, daarom moet je nodeport +gebruiken: + +ga naar: + localhost: + + LET OP: dit moet!! LOCALHOST zijn. +log in met quay config enhet password uit de yamlfile: config01 +configureer quay +download de config.yaml (die komt in /home/ubuntu/Downloads +untar de config.yaml + tar -zxf +kopieer de config.yaml naar de /mnt/nfs_share/quay/conf directory +start de gewone quay weer op. + kubectl apply -f quay.yaml + + + + +#autorisaties + +je kunt FEATURE_USER_CREATION: true zetten in de config.yaml en dan gebruiker opvoeren. +vervolgens met pgadmin voor dit account "verified" op "true" zetten (via mail werkt nog niet). + +Deze gebruiker kun je dan in de config.yaml bij SUPER_USER opvoeren. +Dan quay opnieuw opstarten en je bent administrator! + +#integratie met Clair: + +Quay starten in config mode: + +kubectl run --rm -it --name quay_config -p 8080:8080 \ + -v /home/ubuntu:/conf/stack \ + quay.io/projectquay/quay:v3.10.0 config Quay01@@ diff --git a/lp/quay/catalog-info.yaml b/lp/quay/catalog-info.yaml new file mode 100644 index 0000000..75081ad --- /dev/null +++ b/lp/quay/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-quay + title: Quay (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/quay/certificate/certificate.yaml b/lp/quay/certificate/certificate.yaml new file mode 100755 index 0000000..c92a657 --- /dev/null +++ b/lp/quay/certificate/certificate.yaml @@ -0,0 +1,16 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: quay.alldcs.nl-tls + namespace: quay +spec: + dnsNames: + - quay-lp.alldcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: quay-lp.alldcs.nl-tls + usages: + - digital signature + - key encipherment diff --git a/lp/quay/credentials/create-quay-credentials b/lp/quay/credentials/create-quay-credentials new file mode 100755 index 0000000..7647a18 --- /dev/null +++ b/lp/quay/credentials/create-quay-credentials @@ -0,0 +1,2 @@ +cd ~/ +microk8s kubectl create secret generic quay-credentials --from-file=.dockerconfigjson=.docker/config.json --type=kubernetes.io/dockerconfigjson diff --git a/lp/quay/credentials/quay-credentials.yaml b/lp/quay/credentials/quay-credentials.yaml new file mode 100755 index 0000000..695499f --- /dev/null +++ b/lp/quay/credentials/quay-credentials.yaml @@ -0,0 +1,7 @@ +apiVersion: v1 +kind: Secret +metadata: + name: quay-credentials +data: + .dockerconfigjson: ewogICJhdXRocyI6IHsKICAgICJxdWF5LmFsbGRjcy5ubCI6IHsKICAgICAgImF1dGgiOiAiWVd4c1lYSmtLM0p2WW05ME9raE1VVXBFVlZNMlNGSTNSMHRPVkVvMlJVNDFWVW8xT0VkS1FURXlOVkpMU0VOSU1FbzNVRkJPVGtGRlFVczJRMFpCVkRVNFNVdEVOalZhUTBsQ05qWT0iLAogICAgICAiZW1haWwiOiAiIgogICAgfQogIH0KfQ== +type: kubernetes.io/dockerconfigjson diff --git a/lp/quay/ingressroute-http.yaml b/lp/quay/ingressroute-http.yaml new file mode 100755 index 0000000..d488698 --- /dev/null +++ b/lp/quay/ingressroute-http.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: quay-http + namespace: quay +spec: + entryPoints: + - web + routes: + - match: Host(`quay-lp.allarddcs.nl`) + kind: Rule + services: + - name: quay + port: 8080 diff --git a/lp/quay/ingressroute-tls.yaml b/lp/quay/ingressroute-tls.yaml new file mode 100755 index 0000000..f9a3711 --- /dev/null +++ b/lp/quay/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: quay-tls + namespace: quay +spec: + entryPoints: + - websecure + routes: + - match: Host(`quay-lp.allarddcs.nl`) + kind: Rule + services: + - name: quay + port: 443 + tls: + certResolver: letsencrypt diff --git a/lp/quay/ingressrouteTCP.yaml b/lp/quay/ingressrouteTCP.yaml new file mode 100755 index 0000000..5ad1c29 --- /dev/null +++ b/lp/quay/ingressrouteTCP.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: quay-tcp + namespace: quay +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`quay-lp.alldcs.nl`) + services: + - name: quay + port: 443 + tls: + passthrough: true + diff --git a/lp/quay/quay-config.yaml b/lp/quay/quay-config.yaml new file mode 100755 index 0000000..43eac1a --- /dev/null +++ b/lp/quay/quay-config.yaml @@ -0,0 +1,94 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: quay + namespace: quay + labels: + app: quay +spec: + replicas: 1 + selector: + matchLabels: + app: quay + template: + metadata: + labels: + app: quay + spec: + containers: + - name: quay + image: quay.io/projectquay/quay:latest + args: + - config + env: + - name: CONFIG_APP_PASSWORD + value: config01 + ports: + - containerPort: 8080 + name: web + - containerPort: 8443 + name: websecure + volumeMounts: + - mountPath: /quay-registry/conf/stack/ + name: quay + subPath: conf + - mountPath: /quay-registry/datastorage/ + name: quay + subPath: data + nodeSelector: + kubernetes.io/arch: amd64 + volumes: + - name: quay + persistentVolumeClaim: + claimName: quay-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: quay + namespace: quay +spec: + ports: + - name: http + targetPort: 8080 + port: 8080 + - name: https + targetPort: 8443 + port: 443 + selector: + app: quay + type: NodePort +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: quay-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/quay + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: quay-pvc + namespace: quay +spec: + storageClassName: "" + volumeName: quay-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi diff --git a/lp/quay/quay.yaml b/lp/quay/quay.yaml new file mode 100755 index 0000000..36aa70d --- /dev/null +++ b/lp/quay/quay.yaml @@ -0,0 +1,89 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: quay + namespace: quay + labels: + app: quay +spec: + replicas: 1 + selector: + matchLabels: + app: quay + template: + metadata: + labels: + app: quay + spec: + containers: + - name: quay + image: quay.io/projectquay/quay:latest + ports: + - containerPort: 8080 + name: web + - containerPort: 8443 + name: websecure + volumeMounts: + - mountPath: /quay-registry/conf/stack/ + name: quay + subPath: conf + - mountPath: /quay-registry/datastorage/ + name: quay + subPath: data + nodeSelector: + kubernetes.io/arch: amd64 + volumes: + - name: quay + persistentVolumeClaim: + claimName: quay-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: quay + namespace: quay +spec: + ports: + - name: http + targetPort: 8080 + port: 8080 + - name: https + targetPort: 8443 + port: 443 + selector: + app: quay + type: NodePort +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: quay-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/quay + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: quay-pvc + namespace: quay +spec: + storageClassName: "" + volumeName: quay-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi diff --git a/lp/roundcube/README.md b/lp/roundcube/README.md new file mode 100644 index 0000000..08f37db --- /dev/null +++ b/lp/roundcube/README.md @@ -0,0 +1,4 @@ +helm repo add mlohr https://helm-charts.mlohr.com/ +helm repo update + +helm install roundcube mlohr/roundcube -f values.yaml -n mail diff --git a/lp/roundcube/catalog-info.yaml b/lp/roundcube/catalog-info.yaml new file mode 100644 index 0000000..fd218a9 --- /dev/null +++ b/lp/roundcube/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-roundcube + title: Roundcube (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/roundcube/certificate.yaml b/lp/roundcube/certificate.yaml new file mode 100755 index 0000000..2de50d8 --- /dev/null +++ b/lp/roundcube/certificate.yaml @@ -0,0 +1,16 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: roudcube-lp.allarddcs.nl-tls + namespace: mail +spec: + dnsNames: + - roundcube-lp.allarddcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: roundcube-lp.allarddcs.nl-tls + usages: + - digital signature + - key encipherment diff --git a/lp/roundcube/ingressroute-tls.yaml b/lp/roundcube/ingressroute-tls.yaml new file mode 100644 index 0000000..b2f0176 --- /dev/null +++ b/lp/roundcube/ingressroute-tls.yaml @@ -0,0 +1,17 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: roundcube-tls + namespace: mail +spec: + entryPoints: + - websecure + routes: + - kind: Rule + match: Host(`roundcube-lp.allarddcs.nl`) + services: + - name: roundcube + port: 80 + tls: + secretName: roundcube-lp.allarddcs.nl-tls +# certResolver: letsencrypt diff --git a/lp/roundcube/install.sh b/lp/roundcube/install.sh new file mode 100755 index 0000000..4b03bcb --- /dev/null +++ b/lp/roundcube/install.sh @@ -0,0 +1,2 @@ +microk8s helm install roundcube mlohr/roundcube -f values.yaml -n mail +microk8s kubectl get pod -n mail | grep roundcube diff --git a/lp/roundcube/uninstall.sh b/lp/roundcube/uninstall.sh new file mode 100755 index 0000000..9690a10 --- /dev/null +++ b/lp/roundcube/uninstall.sh @@ -0,0 +1 @@ +microk8s helm uninstall roundcube -n mail diff --git a/lp/roundcube/upgrade.sh b/lp/roundcube/upgrade.sh new file mode 100755 index 0000000..6ef5008 --- /dev/null +++ b/lp/roundcube/upgrade.sh @@ -0,0 +1 @@ +microk8s helm upgrade roundcube mlohr/roundcube -f values.yaml -n mail diff --git a/lp/roundcube/values.yaml b/lp/roundcube/values.yaml new file mode 100644 index 0000000..be35076 --- /dev/null +++ b/lp/roundcube/values.yaml @@ -0,0 +1,408 @@ +## Roundcube Docker image +image: roundcube/roundcubemail:{{ .Chart.AppVersion }}-fpm-alpine + +## ImagePullPolicy for Roundcube Docker image +imagePullPolicy: IfNotPresent + +## RBAC Role Based Access Control for resources +rbac: + # Specifies whether RBAC resources should be created + create: false + rules: [] + ## Enable RBAC rules + # - apiGroups: + # - myApiGroups + # resourceNames: + # - myResourceNames + # resources: + # - myResources + # verbs: + # - use + +## Service Account for Deployment +serviceAccount: + # Specifies whether ServiceAccount resource should be created + create: false + # The name of the ServiceAccount to use. + # If not set and create is true, a name is generated using a template + name: "" + additionalLabels: {} + additionalAnnotations: {} + +## Roundcube Core Configuration +config: + + ## DES Key for session encryption. + ## Will be generated randomly if not set. + desKey: + + ## User interface default language. + defaultLanguage: en_US + + ## Allow for custom skin installation + skins: + classic: + enabled: false + composerPackage: + name: roundcube/classic + version: 1.6.0 + + larry: + enabled: false + composerPackage: + name: roundcube/larry + version: 1.6.1 + + ## custom skin example + #custom: + # enabled: true + # composerPackage: + # name: custom (defaults to roundcube/{{ skin name }}) + # version: 1.0 (defaults to rounddube version) + + ## User interface default skin. + defaultSkin: elastic + + ## Plugin configuration + plugins: + + ## https://github.com/roundcube/roundcubemail/blob/master/plugins/managesieve/config.inc.php.dist + managesieve: + enabled: false + config: + host: "%h:4190" + useTls: true + + ## Context menu plugin: Adds context menus with common tasks to various parts of Roundcube + ## https://packagist.org/packages/johndoh/contextmenu + ## Example for a dynamically installed plugin (via composer) + contextmenu: + + ## Enabled installing and loading the plugin. + enabled: false + + ## composer package information + composerPackage: + name: "johndoh/contextmenu" + version: "3.3" + + ## Maximum allowed upload file size (e.g., for attachmentes). + ## Do not forget to adjust ingress accordingly, e.g., by adding the following annotation: + ## nginx.ingress.kubernetes.io/proxy-body-size: 25m + uploadMaxFilesize: 25M + + ## Custom Roundcube configuration parameters + customRoundcubeConfig: | + /* + * Custom Roundcube Configuration values + * Check https://github.com/roundcube/roundcubemail/wiki/Configuration for available options. + */ + + // $config['skin_logo'] = ""; + // $config['support_url'] = "https://roundcube.net/"; + + ## Custom configuration for PHP interpreter + customPhpConfig: | + ## Configure custom memory limit for PHP + # memory_limit=128M + + ## Custom configuration for PHP-FPM + ## Comment lines with semicolumn (;) in this file + ## don't use pound (#) to comment lines + customPhpFpmConfig: | + ;pm.max_children=200 + ;pm.status_path=/status + +## Configure database creation/usage +database: + ## Which database source should be used + ## Supported values: + ## * external: Do not create a database, but use an existing external database. See `externalDatabase` for further configuration. + ## * zalando-postgres: Request a database to be created by Zalando Postgres operator (https://github.com/zalando/postgres-operator, operator needs to be preinstalled) + source: external + + ## Number of database cluster instances to be launched + ## (only applicable for source=zalando-postgres) + instances: + + ## Size of the volume to be created for the database + volumeSize: 5Gi + + ## Name of the StorageClass to be used for the volume + storageClassName: + +## Configuration for an external database (not deployed within this chart) +## When working with a NetworkPolicy, add an egress rule to networkPolicy.egress.additionalRules to allow access to the database. +externalDatabase: + ## Type of the external database. supported: mysql, pgsql, sqlite + type: pgsql + + ## Hostname of the external database server + host: postgres13.postgres + + ## Port number of the external database server + port: 5432 + + ## Database name + name: roundkube + + ## Username for the external database server + user: roundkube + + ## Password for the external database server + password: roundkube + +## IMAP settings +imap: + ## Hostname or IP address of your IMAP server + host: mail.allarddcs.nl + + ## IMAP port. Default ports depending on encryption setting: + ## 143 - none, STARTTLS + ## 993 - SSL/TLS (recommended) + port: 143 + + ## Transport encryption. Please change port accordingly. Allowed values: + ## none - no encryption + ## starttls - use STARTTLS + ## ssltls - use SSL/TLS (recommended) + encryption: starttls + + +## SMTP settings +smtp: + ## Hostname or IP address of your SMTP server + host: mail.allarddcs.nl + + ## SMTP port. Default ports depending on encryption setting: + ## 25 - none + ## 465 - SSL/TLS + ## 587 - STARTTLS (recommended) + port: 587 + + ## Transport encryption. Please change port accordingly. Allowed values: + ## none - no encryption + ## starttls - use STARTTLS + ## ssltls - use SSL/TLS (recommended) + encryption: starttls + + ## SMTP username (use "%u" tp use IMAP username) + username: "%u" + + ## SMTP password (use "%p" tp use IMAP password) + password: "%p" + + +## Additional configuration for the ConfigMap resource +configMap: + ## Additional labels for the ConfigMap resource + additionalLabels: {} + + ## Additional annotations for the ConfigMap resource + additionalAnnotations: {} + + +## Additional configuration for the Secret resource +secret: + ## Additional labels for the Secret resource + additionalLabels: {} + + ## Additional annotations for the Secret resource + additionalAnnotations: {} + + +## Additional configuration for the Deployment resource +deployment: + ## Number of instances of Roundcube to be started + replicas: 1 + + ## Deployment strategy (see https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/deployment-v1/#DeploymentSpec) + strategy: + ## Deployment strategy type + type: RollingUpdate + + ## Roundcube container's HTTP port + port: 80 + + ## Define additional ImagePullSecrets. + imagePullSecrets: + ## You can refer to existing ImagePullSecrets as follows: + # - name: my-custom-secret + + ## Additional labels for the Deployment resource + additionalLabels: {} + + ## Additional annotations for the Deployment resource + additionalAnnotations: {} + + ## Pod affinity rule preset (see https://docs.bitnami.com/tutorials/assign-pod-nodes-helm-affinity-rules/) + podAffinityPreset: "" + + ## Pod anti affinity rule preset (see https://docs.bitnami.com/tutorials/assign-pod-nodes-helm-affinity-rules/) + podAntiAffinityPreset: hard + + ## Custom affinity rules (overrides podAffinityPreset and podAntiAffinityPreset) + affinity: {} + + ## Configure resource allocation and limits + # resources: + # requests: + # memory: "256Mi" + # cpu: "1000m" + # limits: + # memory: "256Mi" + # cpu: "1000m" + + ## Allow defining custom actions to be executed before deploying main container (e.g.: to prepare database) + initContainers: [] + # - name: init + # image: alpine:3 + # command: [sh, -c] + # args: + # - echo "Hello, world!" > /mnt/extra-storage/test + # volumeMounts: + # - name: extra-storage + # mountPath: /mnt/extra-storage + + ## Additional volume mounts for the Deployment resource + additionalVolumeMounts: [] + # - name: extra-storage + # mountPath: /mnt/extra-storage + + ## Additional volumes for the Deployment resource + additionalVolumes: [] + # - name: extra-storage + # emptyDir: {} + + ## Additional environment variables for the Deployment resource + additionalEnv: [] + # - name: MY_ENV_VAR + # value: value + + containers: + nginx: + image: nginx:1.25.4 + imagePullPolicy: IfNotPresent + + +## Additional configuration for the Service resource +service: + ## Service port for HTTP + port: 80 + + + ## Additional labels for the Service resource + additionalLabels: {} + + ## Additional annotations for the Service resource + additionalAnnotations: {} + + ## https://kubernetes.io/docs/concepts/services-networking/dual-stack/ + ipFamilyPolicy: PreferDualStack + + +## Ingress resource configuration +ingress: + ## Enable Ingress resource + enabled: true + ## Whether deploy https or plain http ingress + useTLS: true + + class: + host: roundcube.allarddcs.nl + path: "/" + pathType: ImplementationSpecific + Classname: nginx + + ## TLS settings + tls: + + ## Configure secret name, e.g., to re-use an existing secret + secretName: + + ## Additional labels for the Ingress resource + additionalLabels: {} + + ## Additional annotations for the Ingress resource + additionalAnnotations: {} + + +## PodDisruptionBudget configuration +pdb: + ## Enable PodDisruptionBudget + enabled: true + + minAvailable: 1 + maxUnavailable: "" + + + ## Additional labels for the PodDisruptionBudget resource + additionalLabels: {} + + ## Additional annotations for the PodDisruptionBudget resource + additionalAnnotations: {} + + +## NetworkPolicy configuration +## A NetworkPolicy can prevent unauthorized access to remote hosts on network level. +## By default, if enabled, the NetworkPolicy allows to connect to any IP with the IMAP and SMTP ports configured above. +## This also applies for the managesieve plugin, if enabled. +## More information on network policies: https://kubernetes.io/docs/concepts/services-networking/network-policies/ +networkPolicy: + + ## Create a NetworkPolicy resource + enabled: false + + ## Egress policies for Roundcube environment + egress: + ## IMAP related Egress policies + imap: + + ## Explicitely configure allowed peers for the IMAP connection. + ## See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#networkpolicypeer-v1-networking-k8s-io for all possible options. + peers: + - ipBlock: + cidr: 0.0.0.0/0 + + + ## SMTP related Egress policies + smtp: + + ## Explicitely configure allowed peers for the SMTP connection. + ## See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#networkpolicypeer-v1-networking-k8s-io for all possible options. + peers: + - ipBlock: + cidr: 0.0.0.0/0 + + + ## managesieve related Egress policies + managesieve: + + ## Explicitely configure allowed peers for the managesieve connection. Will only be used if managesieve plugin is enabled. + ## See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#networkpolicypeer-v1-networking-k8s-io for all possible options. + peers: + - ipBlock: + cidr: 0.0.0.0/0 + + + ## Add additional, custom egress rules. + ## See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#networkpolicyegressrule-v1-networking-k8s-io. + additionalRules: [] + ## Example rule for a zalando postgres cluster called "shared-postgres" in namespace "postgres" + # - to: + # - namespaceSelector: + # matchLabels: + # kubernetes.io/metadata.name: postgres + # - podSelector: + # matchLabels: + # cluster-name: shared-postgres + # ports: + # - port: 5432 + # protocol: TCP + + + ## Additional labels for the NetworkPolicy + additionalLabels: {} + + ## Additional annotations for the NetworkPolicy + additionalAnnotations: {} diff --git a/lp/traefik/README.md b/lp/traefik/README.md new file mode 100644 index 0000000..fb0b3fa --- /dev/null +++ b/lp/traefik/README.md @@ -0,0 +1,36 @@ +1) traefik installeren via helmchart: +helm repo add traefik https://helm.traefik.io/traefik +helm repo update +kubectl create namespace traefik + +2) persistent storage aanmaken: + +kubect apply -f traefik-pvc + +When enabling persistence for certificates, permissions on acme.json can be +lost when Traefik restarts. You can ensure correct permissions with an +initContainer. See https://github.com/traefik/traefik-helm-chart/blob/master/EXAMPLES.md#use-traefik-native-lets-encrypt-integration-without-cert-manager + +3) Installeren + +helm install traefik traefik/traefik -f values.yaml -n traefik + +CHECK OF PORTFORWARDING VAN POORT 80 en 443 OP DE ROUTER NAAR DE LOADBALANCER GOED STAAT! +HERSTART NA WIJZIGING DE KPN-ROUTER! + +4) TLS verzwaren (tlsoption.yml is afkomstig van whoami-voorbeeld) + +kubectl apply -f tlsoption.yaml + +7) Daschboard toegankelijk maken (dashboard.yaml is afkomstig van helm-documentatie van traefik zelf) + +kubectl apply -f ingressroute-dashboard.yaml - n traefik + +#migreren: + +kubectl apply -f https://raw.githubusercontent.com/traefik/traefik/v2.10/docs/content/reference/dynamic-configuration/kubernetes-crd-rbac.yml +kubectl apply -f https://raw.githubusercontent.com/traefik/traefik/v2.10/docs/content/reference/dynamic-configuration/kubernetes-crd-definition-v1.yml + + + + diff --git a/lp/traefik/catalog-info.yaml b/lp/traefik/catalog-info.yaml new file mode 100644 index 0000000..952d693 --- /dev/null +++ b/lp/traefik/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: lp-traefik + title: Traefik (lp) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/lp/traefik/clusterrole.yaml b/lp/traefik/clusterrole.yaml new file mode 100644 index 0000000..b05dc5c --- /dev/null +++ b/lp/traefik/clusterrole.yaml @@ -0,0 +1,11 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: traefik +rules: + - apiGroups: ["traefik.io"] + resources: ["ingressroutes", "ingressroutesstatus"] + verbs: ["get", "list", "watch", "create", "update", "delete"] + - apiGroups: [""] + resources: ["services", "endpoints", "pods", "secrets"] + verbs: ["get", "list", "watch"] diff --git a/lp/traefik/clusterrolebinding.yaml b/lp/traefik/clusterrolebinding.yaml new file mode 100644 index 0000000..25a61c9 --- /dev/null +++ b/lp/traefik/clusterrolebinding.yaml @@ -0,0 +1,12 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: traefik-ingressroute +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: traefik +subjects: + - kind: ServiceAccount + name: traefik + namespace: traefik diff --git a/lp/traefik/forwarded_headers.yaml b/lp/traefik/forwarded_headers.yaml new file mode 100644 index 0000000..a1d3550 --- /dev/null +++ b/lp/traefik/forwarded_headers.yaml @@ -0,0 +1,10 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: Middleware +metadata: + name: forwarded-headers +spec: + headers: + customResponseHeaders: + X-Forwarded-Proto: "https" + X-Forwarded-For: "{remote}" + X-Real-IP: "{remote}" diff --git a/lp/traefik/ingressroute-dashboard.yaml b/lp/traefik/ingressroute-dashboard.yaml new file mode 100755 index 0000000..30b5fd4 --- /dev/null +++ b/lp/traefik/ingressroute-dashboard.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: traefik-dashboard + namespace: traefik +spec: + entryPoints: + - websecure + routes: + - match: Host(`traefik-lp.allarddcs.nl`) && (PathPrefix(`/dashboard`) || PathPrefix(`/api`)) + kind: Rule + services: + - name: api@internal + kind: TraefikService diff --git a/lp/traefik/ingressroutes/ingressroute-dev-http.yaml b/lp/traefik/ingressroutes/ingressroute-dev-http.yaml new file mode 100644 index 0000000..d6f1d4b --- /dev/null +++ b/lp/traefik/ingressroutes/ingressroute-dev-http.yaml @@ -0,0 +1,36 @@ +apiVersion: v1 +kind: Service +metadata: + name: dev-http + namespace: traefik +spec: + ports: + - protocol: TCP + port: 80 + targetPort: 80 +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: dev-http + namespace: traefik +subsets: + - addresses: + - ip: 192.168.2.181 + ports: + - port: 80 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: dev-http + namespace: traefik +spec: + entryPoints: + - web + routes: + - match: HostRegexp(`^[a-z0-9]+-dev\.allarddcs\.nl$`) + kind: Rule + services: + - name: dev-http + port: 80 diff --git a/lp/traefik/ingressroutes/ingressroute-gitea-http.yaml b/lp/traefik/ingressroutes/ingressroute-gitea-http.yaml new file mode 100644 index 0000000..3e1fcdb --- /dev/null +++ b/lp/traefik/ingressroutes/ingressroute-gitea-http.yaml @@ -0,0 +1,41 @@ +apiVersion: v1 +kind: Service +metadata: + name: gitea-http + namespace: traefik +spec: + ports: + - protocol: TCP + port: 80 + targetPort: 80 +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: gitea-http + namespace: traefik +subsets: + - addresses: + - ip: 192.168.2.181 + ports: + - port: 80 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: gitea-http + namespace: traefik +spec: + entryPoints: + - web + routes: + - match: Host(`gitea-dev.allarddcs.nl`) + kind: Rule + services: + - name: gitea-http + port: 80 + - match: Host(`gitea-dev.allarddcs.nl`) && PathPrefix(`/.well-known/acme-challenge/`) + kind: Rule + services: + - name: gitea-http + port: 80 diff --git a/lp/traefik/ingressroutes/ingressroute-odroid-http.yaml b/lp/traefik/ingressroutes/ingressroute-odroid-http.yaml new file mode 100644 index 0000000..e83568e --- /dev/null +++ b/lp/traefik/ingressroutes/ingressroute-odroid-http.yaml @@ -0,0 +1,36 @@ +apiVersion: v1 +kind: Service +metadata: + name: odroid-http + namespace: traefik +spec: + ports: + - protocol: TCP + port: 80 + targetPort: 80 +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: odroid-http + namespace: traefik +subsets: + - addresses: + - ip: 192.168.2.230 + ports: + - port: 80 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: odroid-http + namespace: traefik +spec: + entryPoints: + - web + routes: + - match: HostRegexp(`^[a-z0-9]+-odroid\.allarddcs\.nl$`) + kind: Rule + services: + - name: odroid-http + port: 80 diff --git a/lp/traefik/ingressroutes/ingressroute-prod-http.yaml b/lp/traefik/ingressroutes/ingressroute-prod-http.yaml new file mode 100644 index 0000000..460cdb0 --- /dev/null +++ b/lp/traefik/ingressroutes/ingressroute-prod-http.yaml @@ -0,0 +1,36 @@ +apiVersion: v1 +kind: Service +metadata: + name: prod-http + namespace: traefik +spec: + ports: + - protocol: TCP + port: 80 + targetPort: 80 +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: prod-http + namespace: traefik +subsets: + - addresses: + - ip: 192.168.2.191 + ports: + - port: 80 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: prod-http + namespace: traefik +spec: + entryPoints: + - web + routes: + - match: HostRegexp(`^[a-z0-9]+-prod\.allarddcs\.nl$`) + kind: Rule + services: + - name: prod-http + port: 80 diff --git a/lp/traefik/ingressroutes/ingressroute-riscv-http.yaml b/lp/traefik/ingressroutes/ingressroute-riscv-http.yaml new file mode 100644 index 0000000..f2aec08 --- /dev/null +++ b/lp/traefik/ingressroutes/ingressroute-riscv-http.yaml @@ -0,0 +1,36 @@ +apiVersion: v1 +kind: Service +metadata: + name: riscv-http + namespace: traefik +spec: + ports: + - protocol: TCP + port: 80 + targetPort: 80 +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: riscv-http + namespace: traefik +subsets: + - addresses: + - ip: 192.168.2.113 + ports: + - port: 80 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: riscv-http + namespace: traefik +spec: + entryPoints: + - web + routes: + - match: HostRegexp(`^[a-z0-9]+-riscv\.allarddcs\.nl$`) + kind: Rule + services: + - name: riscv-http + port: 80 diff --git a/lp/traefik/ingressroutes/ingressrouteTCP-dev-tls.yaml b/lp/traefik/ingressroutes/ingressrouteTCP-dev-tls.yaml new file mode 100644 index 0000000..67b1cb7 --- /dev/null +++ b/lp/traefik/ingressroutes/ingressrouteTCP-dev-tls.yaml @@ -0,0 +1,37 @@ +apiVersion: v1 +kind: Service +metadata: + name: dev-tls + namespace: traefik +spec: + ports: + - protocol: TCP + port: 443 + targetPort: 443 +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: dev-tls + namespace: traefik +subsets: + - addresses: + - ip: 192.168.2.181 + ports: + - port: 443 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: dev-tls + namespace: traefik +spec: + entryPoints: + - websecure + routes: + - match: HostSNIRegexp(`^[a-z0-9]+-dev\.allarddcs\.nl$`) + services: + - name: dev-tls + port: 443 + tls: + passthrough: true diff --git a/lp/traefik/ingressroutes/ingressrouteTCP-odroid-tls.yaml b/lp/traefik/ingressroutes/ingressrouteTCP-odroid-tls.yaml new file mode 100644 index 0000000..6e805fd --- /dev/null +++ b/lp/traefik/ingressroutes/ingressrouteTCP-odroid-tls.yaml @@ -0,0 +1,37 @@ +apiVersion: v1 +kind: Service +metadata: + name: odroid-tls + namespace: traefik +spec: + ports: + - protocol: TCP + port: 443 + targetPort: 443 +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: odroid-tls + namespace: traefik +subsets: + - addresses: + - ip: 192.168.2.230 + ports: + - port: 443 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: odroid-tls + namespace: traefik +spec: + entryPoints: + - websecure + routes: + - match: HostSNIRegexp(`^[a-z0-9]+-odroid\.allarddcs\.nl$`) + services: + - name: odroid-tls + port: 443 + tls: + passthrough: true diff --git a/lp/traefik/ingressroutes/ingressrouteTCP-prod-tls.yaml b/lp/traefik/ingressroutes/ingressrouteTCP-prod-tls.yaml new file mode 100644 index 0000000..69b1a52 --- /dev/null +++ b/lp/traefik/ingressroutes/ingressrouteTCP-prod-tls.yaml @@ -0,0 +1,37 @@ +apiVersion: v1 +kind: Service +metadata: + name: prod-tls + namespace: traefik +spec: + ports: + - protocol: TCP + port: 443 + targetPort: 443 +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: prod-tls + namespace: traefik +subsets: + - addresses: + - ip: 192.168.2.191 + ports: + - port: 443 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: prod-tls + namespace: traefik +spec: + entryPoints: + - websecure + routes: + - match: HostSNIRegexp(`^[a-z0-9]+-prod\.allarddcs\.nl$`) + services: + - name: prod-tls + port: 443 + tls: + passthrough: true diff --git a/lp/traefik/ingressroutes/ingressrouteTCP-riscv-tls.yaml b/lp/traefik/ingressroutes/ingressrouteTCP-riscv-tls.yaml new file mode 100644 index 0000000..954c17f --- /dev/null +++ b/lp/traefik/ingressroutes/ingressrouteTCP-riscv-tls.yaml @@ -0,0 +1,39 @@ +apiVersion: v1 +kind: Service +metadata: + name: riscv-tls + namespace: traefik +spec: + type: ExternalName + externalName: 192.168.2.113 + ports: + - protocol: TCP + port: 443 + targetPort: 443 +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: riscv-tls + namespace: traefik +subsets: + - addresses: + - ip: 192.168.2.113 + ports: + - port: 443 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: riscv-tls + namespace: traefik +spec: + entryPoints: + - websecure + routes: + - match: HostSNIRegexp(`^[a-z0-9]+-riscv\.allarddcs\.nl$`) + services: + - name: riscv-tls + port: 443 + tls: + passthrough: true diff --git a/lp/traefik/temp.yaml b/lp/traefik/temp.yaml new file mode 100644 index 0000000..6fa728f --- /dev/null +++ b/lp/traefik/temp.yaml @@ -0,0 +1,24 @@ +apiVersion: v1 +data: + dbPassword: cm91bmRrdWJl + dbUsername: cm91bmRrdWJl + desKey: ZUdmaFIzdGNNVlhKZW10VkN1b0JRRmIyUUxSc0hoM3diRzBZbE9ySGVEaFdJTUoyOU1qRE01UnlTOEhvTHgzdw== + smtpPassword: JXA= + smtpUsername: JXU= +kind: Secret +metadata: + annotations: + meta.helm.sh/release-name: roundcube + meta.helm.sh/release-namespace: mail + creationTimestamp: "2025-01-25T09:41:15Z" + labels: + app.kubernetes.io/instance: roundcube + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/name: roundcube + app.kubernetes.io/version: 1.6.9 + helm.sh/chart: roundcube-1.16.0 + name: roundcube + namespace: mail + resourceVersion: "45407979" + uid: 3362cf2e-450f-40db-8f78-4f2e3198ea48 +type: Opaque diff --git a/lp/traefik/tlsoption.yaml b/lp/traefik/tlsoption.yaml new file mode 100755 index 0000000..5a0c5b9 --- /dev/null +++ b/lp/traefik/tlsoption.yaml @@ -0,0 +1,8 @@ +apiVersion: traefik.io/v1alpha1 +kind: TLSOption +metadata: + name: tsloption + namespace: traefik +spec: + minVersion: VersionTLS12 + diff --git a/lp/traefik/traefik-pvc.yaml b/lp/traefik/traefik-pvc.yaml new file mode 100644 index 0000000..85cd67e --- /dev/null +++ b/lp/traefik/traefik-pvc.yaml @@ -0,0 +1,34 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: traefik-pv +spec: + storageClassName: "" + capacity: + storage: 128Mi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/traefik/lp + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: traefik-pvc + namespace: traefik +spec: + storageClassName: "" + volumeName: traefik-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 128Mi + diff --git a/lp/traefik/values.yaml b/lp/traefik/values.yaml new file mode 100644 index 0000000..d6b07e0 --- /dev/null +++ b/lp/traefik/values.yaml @@ -0,0 +1,239 @@ +USER-SUPPLIED VALUES: +affinity: {} +autoscaling: + enabled: false +global: + # Adjust timeout settings for Traefik + timeout: + connect: 30s # Time to wait for a connection to establish (default: 30s) + read: 300s # Increase read timeout for longer responses (default: 60s) + write: 300s # Increase write timeout for larger pushes (default: 60s) +#certificatesResolvers: +# letsencrypt: +# acme: +# email: admin@allarddcs.nl +# storage: /data/acme.json +# httpChallenge: +# entryPoint: web +commonLabels: {} +deployment: + additionalContainers: [] + additionalVolumeMounts: {} + additionalVolumes: [] + annotations: {} + dnsConfig: {} + enabled: true + imagePullSecrets: [] + initContainers: [] + kind: Deployment + labels: {} + lifecycle: {} + minReadySeconds: 0 + podAnnotations: {} + podLabels: {} + replicas: 1 + runtimeClassName: null + shareProcessNamespace: false + terminationGracePeriodSeconds: 60 +envFrom: [] +experimental: + kubernetesGateway: + enabled: false + plugins: {} +extraObjects: [] +globalArguments: +- --global.checknewversion +- --global.sendanonymoususage +hostNetwork: false +image: + pullPolicy: Always + registry: docker.io + repository: traefik + tag: "" +ingressClass: + enabled: true + isDefaultClass: true +ingressRoute: + dashboard: + annotations: {} + enabled: true + entryPoints: + - traefik + labels: {} + matchRule: PathPrefix(`/dashboard`) || PathPrefix(`/api`) + middlewares: [] + tls: {} + healthcheck: + annotations: {} + enabled: false + entryPoints: + - traefik + labels: {} + matchRule: PathPrefix(`/ping`) + middlewares: [] + tls: {} +livenessProbe: + failureThreshold: 3 + initialDelaySeconds: 2 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 2 +logs: + access: + enabled: false + fields: + general: + defaultmode: keep + names: {} + headers: + defaultmode: drop + names: {} + filters: {} + general: + level: ERROR +metrics: + prometheus: + entryPoint: metrics +nodeSelector: {} +persistence: + enabled: true + existingClaim: traefik-pvc + path: /data +podDisruptionBudget: + enabled: false +podSecurityContext: + fsGroupChangePolicy: OnRootMismatch + runAsGroup: 65532 + runAsNonRoot: true + runAsUser: 65532 +podSecurityPolicy: + enabled: false +ports: +ports: + web: + expose: + default: true + exposedPort: 80 + port: 8000 + protocol: TCP + allowACMEByPass: true + websecure: + expose: + default: true + exposedPort: 443 + http3: + enabled: false + middlewares: [] + port: 8443 + protocol: TCP + allowACMEByPass: true + tls: + certResolver: "" + domains: [] + enabled: true + options: "" + traefik: + expose: + default: true + exposedPort: 9000 + port: 9000 + protocol: TCP + metrics: + expose: + default: false + exposedPort: 9100 + port: 9100 + protocol: TCP + imap: + expose: + default: true + exposedPort: 143 + port: 9143 + protocol: TCP + pop3: + expose: + default: true + exposedPort: 110 + port: 9110 + protocol: TCP + pop3s: + expose: + default: true + exposedPort: 995 + port: 9995 + protocol: TCP + smtp: + expose: + default: true + exposedPort: 25 + port: 9025 + protocol: TCP + smtps: + expose: + default: true + exposedPort: 465 + port: 9465 + protocol: TCP +priorityClassName: "" +providers: + file: + content: "" + enabled: true + watch: true + kubernetesCRD: + allowCrossNamespace: false + allowEmptyServices: true + allowExternalNameServices: true + enabled: true + namespaces: [] + kubernetesIngress: + allowEmptyServices: true + allowExternalNameServices: true + disableIngressClassLookup: false + enabled: true + namespaces: [] + publishedService: + enabled: false +rbac: + enabled: true + namespaced: false + secretResourceNames: [] +readinessProbe: + failureThreshold: 1 + initialDelaySeconds: 2 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 2 +resources: {} +securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL +service: + additionalServices: {} + annotations: {} + annotationsTCP: {} + annotationsUDP: {} + enabled: true + externalIPs: [] + labels: {} + loadBalancerSourceRanges: [] + single: true + spec: {} + type: LoadBalancer +serviceAccount: + name: "" +serviceAccountAnnotations: {} +startupProbe: null +tlsOptions: {} +tlsStore: {} +tolerations: [] +topologySpreadConstraints: [] +tracing: {} +updateStrategy: + rollingUpdate: + maxSurge: 1 + maxUnavailable: 0 + type: RollingUpdate + diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..4226150 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,6 @@ +site_name: Kubernetes Deployments +nav: + - Home: README.md +docs_dir: docs +theme: + name: material diff --git a/node_modules/.yarn-integrity b/node_modules/.yarn-integrity new file mode 100644 index 0000000..553cf2e --- /dev/null +++ b/node_modules/.yarn-integrity @@ -0,0 +1,10 @@ +{ + "systemParams": "linux-x64-115", + "modulesFolders": [], + "flags": [], + "linkedModules": [], + "topLevelPatterns": [], + "lockfileEntries": {}, + "files": [], + "artifacts": {} +} \ No newline at end of file diff --git a/node_modules/catalog-info.yaml b/node_modules/catalog-info.yaml new file mode 100644 index 0000000..2b79fc6 --- /dev/null +++ b/node_modules/catalog-info.yaml @@ -0,0 +1,10 @@ +apiVersion: backstage.io/v1alpha1 +kind: System +metadata: + name: node_modules + title: Node_modules System +spec: + owner: platform-team + partOf: + - ../catalog-info.yaml + subcomponents: diff --git a/odroid/README.md b/odroid/README.md new file mode 100644 index 0000000..fd58af8 --- /dev/null +++ b/odroid/README.md @@ -0,0 +1 @@ +Dit zijn alle services op het PROD-cluster: diff --git a/odroid/catalog-info.yaml b/odroid/catalog-info.yaml new file mode 100644 index 0000000..9708133 --- /dev/null +++ b/odroid/catalog-info.yaml @@ -0,0 +1,28 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: ODROID-cluster + namespace: default + description: Alle deployments van ODROID-cluster + annotations: + backstage.io/techdocs-ref: dir:. + links: + - url: https://github.com/AllardKrings/kubernetes/odroid + title: AllardDCS Kubernetes Configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + - ./redis/catalog-info.yaml + - ./postgres-operator-percona/catalog-info.yaml + - ./nginx/catalog-info.yaml + - ./mongodb-operator/catalog-info.yaml + - ./traefik/catalog-info.yaml + - ./cnpg/catalog-info.yaml + - ./postgres-operator-zalando/catalog-info.yaml + - ./kubernetes/catalog-info.yaml + - ./pgadmin/catalog-info.yaml + - ./phpmyadmin/catalog-info.yaml + - ./minio/catalog-info.yaml diff --git a/odroid/cnpg/README.md b/odroid/cnpg/README.md new file mode 100755 index 0000000..2f98958 --- /dev/null +++ b/odroid/cnpg/README.md @@ -0,0 +1,19 @@ +#Installatie: +============ +kubectl apply --server-side -f \ + https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.26/releases/cnpg-1.26.0.yaml +#Cluster aanmaken: +---------------- + +kubectl apply -f postgres15.yaml + +#Monitoring +----------- + +kubectl create ns monitoring +helm upgrade --install \ + -f https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/main/docs/src/samples/monitoring/kube-stack-config.yaml \ + prometheus-community \ + prometheus-community/kube-prometheus-stack -n monitoring +kubectl apply -n monitoring -f \ + https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/main/docs/src/samples/monitoring/prometheusrule.yaml diff --git a/odroid/cnpg/catalog-info.yaml b/odroid/cnpg/catalog-info.yaml new file mode 100644 index 0000000..2e92d88 --- /dev/null +++ b/odroid/cnpg/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: odroid-cnpg + title: Cnpg (odroid) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/odroid/cnpg/cnpg-1.23.2.yaml b/odroid/cnpg/cnpg-1.23.2.yaml new file mode 100644 index 0000000..b61fb46 --- /dev/null +++ b/odroid/cnpg/cnpg-1.23.2.yaml @@ -0,0 +1,16082 @@ +apiVersion: v1 +kind: Namespace +metadata: + labels: + app.kubernetes.io/name: cloudnative-pg + name: cnpg-system +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.15.0 + name: backups.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: Backup + listKind: BackupList + plural: backups + singular: backup + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - jsonPath: .spec.cluster.name + name: Cluster + type: string + - jsonPath: .spec.method + name: Method + type: string + - jsonPath: .status.phase + name: Phase + type: string + - jsonPath: .status.error + name: Error + type: string + name: v1 + schema: + openAPIV3Schema: + description: Backup is the Schema for the backups API + properties: + apiVersion: + description: |- + APIVersion defines the versioned schema of this representation of an object. + Servers should convert recognized schemas to the latest internal value, and + may reject unrecognized values. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + type: string + kind: + description: |- + Kind is a string value representing the REST resource this object represents. + Servers may infer this from the endpoint the client submits requests to. + Cannot be updated. + In CamelCase. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + type: string + metadata: + type: object + spec: + description: |- + Specification of the desired behavior of the backup. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + cluster: + description: The cluster to backup + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + method: + default: barmanObjectStore + description: |- + The backup method to be used, possible options are `barmanObjectStore`, + `volumeSnapshot` or `plugin`. Defaults to: `barmanObjectStore`. + enum: + - barmanObjectStore + - volumeSnapshot + - plugin + type: string + online: + description: |- + Whether the default type of backup with volume snapshots is + online/hot (`true`, default) or offline/cold (`false`) + Overrides the default setting specified in the cluster field '.spec.backup.volumeSnapshot.online' + type: boolean + onlineConfiguration: + description: |- + Configuration parameters to control the online/hot backup with volume snapshots + Overrides the default settings specified in the cluster '.backup.volumeSnapshot.onlineConfiguration' stanza + properties: + immediateCheckpoint: + description: |- + Control whether the I/O workload for the backup initial checkpoint will + be limited, according to the `checkpoint_completion_target` setting on + the PostgreSQL server. If set to true, an immediate checkpoint will be + used, meaning PostgreSQL will complete the checkpoint as soon as + possible. `false` by default. + type: boolean + waitForArchive: + default: true + description: |- + If false, the function will return immediately after the backup is completed, + without waiting for WAL to be archived. + This behavior is only useful with backup software that independently monitors WAL archiving. + Otherwise, WAL required to make the backup consistent might be missing and make the backup useless. + By default, or when this parameter is true, pg_backup_stop will wait for WAL to be archived when archiving is + enabled. + On a standby, this means that it will wait only when archive_mode = always. + If write activity on the primary is low, it may be useful to run pg_switch_wal on the primary in order to trigger + an immediate segment switch. + type: boolean + type: object + pluginConfiguration: + description: Configuration parameters passed to the plugin managing + this backup + properties: + name: + description: Name is the name of the plugin managing this backup + type: string + parameters: + additionalProperties: + type: string + description: |- + Parameters are the configuration parameters passed to the backup + plugin for this backup + type: object + required: + - name + type: object + target: + description: |- + The policy to decide which instance should perform this backup. If empty, + it defaults to `cluster.spec.backup.target`. + Available options are empty string, `primary` and `prefer-standby`. + `primary` to have backups run always on primary instances, + `prefer-standby` to have backups run preferably on the most updated + standby, if available. + enum: + - primary + - prefer-standby + type: string + required: + - cluster + type: object + status: + description: |- + Most recently observed status of the backup. This data may not be up to + date. Populated by the system. Read-only. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + azureCredentials: + description: The credentials to use to upload data to Azure Blob Storage + properties: + connectionString: + description: The connection string to be used + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + inheritFromAzureAD: + description: Use the Azure AD based authentication without providing + explicitly the keys. + type: boolean + storageAccount: + description: The storage account where to upload data + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + storageKey: + description: |- + The storage account key to be used in conjunction + with the storage account name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + storageSasToken: + description: |- + A shared-access-signature to be used in conjunction with + the storage account name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: object + backupId: + description: The ID of the Barman backup + type: string + backupLabelFile: + description: Backup label file content as returned by Postgres in + case of online (hot) backups + format: byte + type: string + backupName: + description: The Name of the Barman backup + type: string + beginLSN: + description: The starting xlog + type: string + beginWal: + description: The starting WAL + type: string + commandError: + description: The backup command output in case of error + type: string + commandOutput: + description: Unused. Retained for compatibility with old versions. + type: string + destinationPath: + description: |- + The path where to store the backup (i.e. s3://bucket/path/to/folder) + this path, with different destination folders, will be used for WALs + and for data. This may not be populated in case of errors. + type: string + encryption: + description: Encryption method required to S3 API + type: string + endLSN: + description: The ending xlog + type: string + endWal: + description: The ending WAL + type: string + endpointCA: + description: |- + EndpointCA store the CA bundle of the barman endpoint. + Useful when using self-signed certificates to avoid + errors with certificate issuer and barman-cloud-wal-archive. + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + endpointURL: + description: |- + Endpoint to be used to upload data to the cloud, + overriding the automatic endpoint discovery + type: string + error: + description: The detected error + type: string + googleCredentials: + description: The credentials to use to upload data to Google Cloud + Storage + properties: + applicationCredentials: + description: The secret containing the Google Cloud Storage JSON + file with the credentials + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + gkeEnvironment: + description: |- + If set to true, will presume that it's running inside a GKE environment, + default to false. + type: boolean + type: object + instanceID: + description: Information to identify the instance where the backup + has been taken from + properties: + ContainerID: + description: The container ID + type: string + podName: + description: The pod name + type: string + type: object + method: + description: The backup method being used + type: string + online: + description: Whether the backup was online/hot (`true`) or offline/cold + (`false`) + type: boolean + phase: + description: The last backup status + type: string + s3Credentials: + description: The credentials to use to upload data to S3 + properties: + accessKeyId: + description: The reference to the access key id + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + inheritFromIAMRole: + description: Use the role based authentication without providing + explicitly the keys. + type: boolean + region: + description: The reference to the secret containing the region + name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + secretAccessKey: + description: The reference to the secret access key + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + sessionToken: + description: The references to the session key + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: object + serverName: + description: |- + The server name on S3, the cluster name is used if this + parameter is omitted + type: string + snapshotBackupStatus: + description: Status of the volumeSnapshot backup + properties: + elements: + description: The elements list, populated with the gathered volume + snapshots + items: + description: BackupSnapshotElementStatus is a volume snapshot + that is part of a volume snapshot method backup + properties: + name: + description: Name is the snapshot resource name + type: string + tablespaceName: + description: |- + TablespaceName is the name of the snapshotted tablespace. Only set + when type is PG_TABLESPACE + type: string + type: + description: Type is tho role of the snapshot in the cluster, + such as PG_DATA, PG_WAL and PG_TABLESPACE + type: string + required: + - name + - type + type: object + type: array + type: object + startedAt: + description: When the backup was started + format: date-time + type: string + stoppedAt: + description: When the backup was terminated + format: date-time + type: string + tablespaceMapFile: + description: Tablespace map file content as returned by Postgres in + case of online (hot) backups + format: byte + type: string + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: + status: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.15.0 + name: clusterimagecatalogs.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: ClusterImageCatalog + listKind: ClusterImageCatalogList + plural: clusterimagecatalogs + singular: clusterimagecatalog + scope: Cluster + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: ClusterImageCatalog is the Schema for the clusterimagecatalogs + API + properties: + apiVersion: + description: |- + APIVersion defines the versioned schema of this representation of an object. + Servers should convert recognized schemas to the latest internal value, and + may reject unrecognized values. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + type: string + kind: + description: |- + Kind is a string value representing the REST resource this object represents. + Servers may infer this from the endpoint the client submits requests to. + Cannot be updated. + In CamelCase. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + type: string + metadata: + type: object + spec: + description: |- + Specification of the desired behavior of the ClusterImageCatalog. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + images: + description: List of CatalogImages available in the catalog + items: + description: CatalogImage defines the image and major version + properties: + image: + description: The image reference + type: string + major: + description: The PostgreSQL major version of the image. Must + be unique within the catalog. + minimum: 10 + type: integer + required: + - image + - major + type: object + maxItems: 8 + minItems: 1 + type: array + x-kubernetes-validations: + - message: Images must have unique major versions + rule: self.all(e, self.filter(f, f.major==e.major).size() == 1) + required: + - images + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.15.0 + name: clusters.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: Cluster + listKind: ClusterList + plural: clusters + singular: cluster + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - description: Number of instances + jsonPath: .status.instances + name: Instances + type: integer + - description: Number of ready instances + jsonPath: .status.readyInstances + name: Ready + type: integer + - description: Cluster current status + jsonPath: .status.phase + name: Status + type: string + - description: Primary pod + jsonPath: .status.currentPrimary + name: Primary + type: string + name: v1 + schema: + openAPIV3Schema: + description: Cluster is the Schema for the PostgreSQL API + properties: + apiVersion: + description: |- + APIVersion defines the versioned schema of this representation of an object. + Servers should convert recognized schemas to the latest internal value, and + may reject unrecognized values. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + type: string + kind: + description: |- + Kind is a string value representing the REST resource this object represents. + Servers may infer this from the endpoint the client submits requests to. + Cannot be updated. + In CamelCase. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + type: string + metadata: + type: object + spec: + description: |- + Specification of the desired behavior of the cluster. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + affinity: + description: Affinity/Anti-affinity rules for Pods + properties: + additionalPodAffinity: + description: AdditionalPodAffinity allows to specify pod affinity + terms to be passed to all the cluster's pods. + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the + node(s) with the highest sum are the most preferred. + items: + description: The weights of all of the matched WeightedPodAffinityTerm + fields are added per-node to find the most preferred node(s) + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated + with the corresponding weight. + properties: + labelSelector: + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. + properties: + matchExpressions: + description: matchExpressions is a list of label + selector requirements. The requirements are + ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that + the selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + properties: + matchExpressions: + description: matchExpressions is a list of label + selector requirements. The requirements are + ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that + the selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. + type: string + required: + - topologyKey + type: object + weight: + description: |- + weight associated with matching the corresponding podAffinityTerm, + in the range 1-100. + format: int32 + type: integer + required: + - podAffinityTerm + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + description: |- + If the affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to a pod label update), the + system may or may not try to eventually evict the pod from its node. + When there are multiple elements, the lists of nodes corresponding to each + podAffinityTerm are intersected, i.e. all terms must be satisfied. + items: + description: |- + Defines a set of pods (namely those matching the labelSelector + relative to the given namespace(s)) that this pod should be + co-located (affinity) or not co-located (anti-affinity) with, + where co-located is defined as running on a node whose value of + the label with key matches that of any node on which + a pod of the set of pods is running + properties: + labelSelector: + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. + properties: + matchExpressions: + description: matchExpressions is a list of label + selector requirements. The requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that the + selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + properties: + matchExpressions: + description: matchExpressions is a list of label + selector requirements. The requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that the + selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. + type: string + required: + - topologyKey + type: object + type: array + x-kubernetes-list-type: atomic + type: object + additionalPodAntiAffinity: + description: |- + AdditionalPodAntiAffinity allows to specify pod anti-affinity terms to be added to the ones generated + by the operator if EnablePodAntiAffinity is set to true (default) or to be used exclusively if set to false. + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the anti-affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling anti-affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the + node(s) with the highest sum are the most preferred. + items: + description: The weights of all of the matched WeightedPodAffinityTerm + fields are added per-node to find the most preferred node(s) + properties: + podAffinityTerm: + description: Required. A pod affinity term, associated + with the corresponding weight. + properties: + labelSelector: + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. + properties: + matchExpressions: + description: matchExpressions is a list of label + selector requirements. The requirements are + ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that + the selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + properties: + matchExpressions: + description: matchExpressions is a list of label + selector requirements. The requirements are + ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that + the selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. + type: string + required: + - topologyKey + type: object + weight: + description: |- + weight associated with matching the corresponding podAffinityTerm, + in the range 1-100. + format: int32 + type: integer + required: + - podAffinityTerm + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + description: |- + If the anti-affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the anti-affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to a pod label update), the + system may or may not try to eventually evict the pod from its node. + When there are multiple elements, the lists of nodes corresponding to each + podAffinityTerm are intersected, i.e. all terms must be satisfied. + items: + description: |- + Defines a set of pods (namely those matching the labelSelector + relative to the given namespace(s)) that this pod should be + co-located (affinity) or not co-located (anti-affinity) with, + where co-located is defined as running on a node whose value of + the label with key matches that of any node on which + a pod of the set of pods is running + properties: + labelSelector: + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. + properties: + matchExpressions: + description: matchExpressions is a list of label + selector requirements. The requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that the + selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + properties: + matchExpressions: + description: matchExpressions is a list of label + selector requirements. The requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that the + selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. + type: string + required: + - topologyKey + type: object + type: array + x-kubernetes-list-type: atomic + type: object + enablePodAntiAffinity: + description: |- + Activates anti-affinity for the pods. The operator will define pods + anti-affinity unless this field is explicitly set to false + type: boolean + nodeAffinity: + description: |- + NodeAffinity describes node affinity scheduling rules for the pod. + More info: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node matches the corresponding matchExpressions; the + node(s) with the highest sum are the most preferred. + items: + description: |- + An empty preferred scheduling term matches all objects with implicit weight 0 + (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + properties: + preference: + description: A node selector term, associated with the + corresponding weight. + properties: + matchExpressions: + description: A list of node selector requirements + by node's labels. + items: + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. + properties: + key: + description: The label key that the selector + applies to. + type: string + operator: + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchFields: + description: A list of node selector requirements + by node's fields. + items: + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. + properties: + key: + description: The label key that the selector + applies to. + type: string + operator: + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + weight: + description: Weight associated with matching the corresponding + nodeSelectorTerm, in the range 1-100. + format: int32 + type: integer + required: + - preference + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + description: |- + If the affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to an update), the system + may or may not try to eventually evict the pod from its node. + properties: + nodeSelectorTerms: + description: Required. A list of node selector terms. + The terms are ORed. + items: + description: |- + A null or empty node selector term matches no objects. The requirements of + them are ANDed. + The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + properties: + matchExpressions: + description: A list of node selector requirements + by node's labels. + items: + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. + properties: + key: + description: The label key that the selector + applies to. + type: string + operator: + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchFields: + description: A list of node selector requirements + by node's fields. + items: + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. + properties: + key: + description: The label key that the selector + applies to. + type: string + operator: + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + type: array + x-kubernetes-list-type: atomic + required: + - nodeSelectorTerms + type: object + x-kubernetes-map-type: atomic + type: object + nodeSelector: + additionalProperties: + type: string + description: |- + NodeSelector is map of key-value pairs used to define the nodes on which + the pods can run. + More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ + type: object + podAntiAffinityType: + description: |- + PodAntiAffinityType allows the user to decide whether pod anti-affinity between cluster instance has to be + considered a strong requirement during scheduling or not. Allowed values are: "preferred" (default if empty) or + "required". Setting it to "required", could lead to instances remaining pending until new kubernetes nodes are + added if all the existing nodes don't match the required pod anti-affinity rule. + More info: + https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + type: string + tolerations: + description: |- + Tolerations is a list of Tolerations that should be set for all the pods, in order to allow them to run + on tainted nodes. + More info: https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/ + items: + description: |- + The pod this Toleration is attached to tolerates any taint that matches + the triple using the matching operator . + properties: + effect: + description: |- + Effect indicates the taint effect to match. Empty means match all taint effects. + When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: |- + Key is the taint key that the toleration applies to. Empty means match all taint keys. + If the key is empty, operator must be Exists; this combination means to match all values and all keys. + type: string + operator: + description: |- + Operator represents a key's relationship to the value. + Valid operators are Exists and Equal. Defaults to Equal. + Exists is equivalent to wildcard for value, so that a pod can + tolerate all taints of a particular category. + type: string + tolerationSeconds: + description: |- + TolerationSeconds represents the period of time the toleration (which must be + of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, + it is not set, which means tolerate the taint forever (do not evict). Zero and + negative values will be treated as 0 (evict immediately) by the system. + format: int64 + type: integer + value: + description: |- + Value is the taint value the toleration matches to. + If the operator is Exists, the value should be empty, otherwise just a regular string. + type: string + type: object + type: array + topologyKey: + description: |- + TopologyKey to use for anti-affinity configuration. See k8s documentation + for more info on that + type: string + type: object + backup: + description: The configuration to be used for backups + properties: + barmanObjectStore: + description: The configuration for the barman-cloud tool suite + properties: + azureCredentials: + description: The credentials to use to upload data to Azure + Blob Storage + properties: + connectionString: + description: The connection string to be used + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + inheritFromAzureAD: + description: Use the Azure AD based authentication without + providing explicitly the keys. + type: boolean + storageAccount: + description: The storage account where to upload data + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + storageKey: + description: |- + The storage account key to be used in conjunction + with the storage account name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + storageSasToken: + description: |- + A shared-access-signature to be used in conjunction with + the storage account name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: object + data: + description: |- + The configuration to be used to backup the data files + When not defined, base backups files will be stored uncompressed and may + be unencrypted in the object store, according to the bucket default + policy. + properties: + additionalCommandArgs: + description: |- + AdditionalCommandArgs represents additional arguments that can be appended + to the 'barman-cloud-backup' command-line invocation. These arguments + provide flexibility to customize the backup process further according to + specific requirements or configurations. + + + Example: + In a scenario where specialized backup options are required, such as setting + a specific timeout or defining custom behavior, users can use this field + to specify additional command arguments. + + + Note: + It's essential to ensure that the provided arguments are valid and supported + by the 'barman-cloud-backup' command, to avoid potential errors or unintended + behavior during execution. + items: + type: string + type: array + compression: + description: |- + Compress a backup file (a tar file per tablespace) while streaming it + to the object store. Available options are empty string (no + compression, default), `gzip`, `bzip2` or `snappy`. + enum: + - gzip + - bzip2 + - snappy + type: string + encryption: + description: |- + Whenever to force the encryption of files (if the bucket is + not already configured for that). + Allowed options are empty string (use the bucket policy, default), + `AES256` and `aws:kms` + enum: + - AES256 + - aws:kms + type: string + immediateCheckpoint: + description: |- + Control whether the I/O workload for the backup initial checkpoint will + be limited, according to the `checkpoint_completion_target` setting on + the PostgreSQL server. If set to true, an immediate checkpoint will be + used, meaning PostgreSQL will complete the checkpoint as soon as + possible. `false` by default. + type: boolean + jobs: + description: |- + The number of parallel jobs to be used to upload the backup, defaults + to 2 + format: int32 + minimum: 1 + type: integer + type: object + destinationPath: + description: |- + The path where to store the backup (i.e. s3://bucket/path/to/folder) + this path, with different destination folders, will be used for WALs + and for data + minLength: 1 + type: string + endpointCA: + description: |- + EndpointCA store the CA bundle of the barman endpoint. + Useful when using self-signed certificates to avoid + errors with certificate issuer and barman-cloud-wal-archive + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + endpointURL: + description: |- + Endpoint to be used to upload data to the cloud, + overriding the automatic endpoint discovery + type: string + googleCredentials: + description: The credentials to use to upload data to Google + Cloud Storage + properties: + applicationCredentials: + description: The secret containing the Google Cloud Storage + JSON file with the credentials + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + gkeEnvironment: + description: |- + If set to true, will presume that it's running inside a GKE environment, + default to false. + type: boolean + type: object + historyTags: + additionalProperties: + type: string + description: |- + HistoryTags is a list of key value pairs that will be passed to the + Barman --history-tags option. + type: object + s3Credentials: + description: The credentials to use to upload data to S3 + properties: + accessKeyId: + description: The reference to the access key id + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + inheritFromIAMRole: + description: Use the role based authentication without + providing explicitly the keys. + type: boolean + region: + description: The reference to the secret containing the + region name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + secretAccessKey: + description: The reference to the secret access key + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + sessionToken: + description: The references to the session key + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: object + serverName: + description: |- + The server name on S3, the cluster name is used if this + parameter is omitted + type: string + tags: + additionalProperties: + type: string + description: |- + Tags is a list of key value pairs that will be passed to the + Barman --tags option. + type: object + wal: + description: |- + The configuration for the backup of the WAL stream. + When not defined, WAL files will be stored uncompressed and may be + unencrypted in the object store, according to the bucket default policy. + properties: + compression: + description: |- + Compress a WAL file before sending it to the object store. Available + options are empty string (no compression, default), `gzip`, `bzip2` or `snappy`. + enum: + - gzip + - bzip2 + - snappy + type: string + encryption: + description: |- + Whenever to force the encryption of files (if the bucket is + not already configured for that). + Allowed options are empty string (use the bucket policy, default), + `AES256` and `aws:kms` + enum: + - AES256 + - aws:kms + type: string + maxParallel: + description: |- + Number of WAL files to be either archived in parallel (when the + PostgreSQL instance is archiving to a backup object store) or + restored in parallel (when a PostgreSQL standby is fetching WAL + files from a recovery object store). If not specified, WAL files + will be processed one at a time. It accepts a positive integer as a + value - with 1 being the minimum accepted value. + minimum: 1 + type: integer + type: object + required: + - destinationPath + type: object + retentionPolicy: + description: |- + RetentionPolicy is the retention policy to be used for backups + and WALs (i.e. '60d'). The retention policy is expressed in the form + of `XXu` where `XX` is a positive integer and `u` is in `[dwm]` - + days, weeks, months. + It's currently only applicable when using the BarmanObjectStore method. + pattern: ^[1-9][0-9]*[dwm]$ + type: string + target: + default: prefer-standby + description: |- + The policy to decide which instance should perform backups. Available + options are empty string, which will default to `prefer-standby` policy, + `primary` to have backups run always on primary instances, `prefer-standby` + to have backups run preferably on the most updated standby, if available. + enum: + - primary + - prefer-standby + type: string + volumeSnapshot: + description: VolumeSnapshot provides the configuration for the + execution of volume snapshot backups. + properties: + annotations: + additionalProperties: + type: string + description: Annotations key-value pairs that will be added + to .metadata.annotations snapshot resources. + type: object + className: + description: |- + ClassName specifies the Snapshot Class to be used for PG_DATA PersistentVolumeClaim. + It is the default class for the other types if no specific class is present + type: string + labels: + additionalProperties: + type: string + description: Labels are key-value pairs that will be added + to .metadata.labels snapshot resources. + type: object + online: + default: true + description: |- + Whether the default type of backup with volume snapshots is + online/hot (`true`, default) or offline/cold (`false`) + type: boolean + onlineConfiguration: + default: + immediateCheckpoint: false + waitForArchive: true + description: Configuration parameters to control the online/hot + backup with volume snapshots + properties: + immediateCheckpoint: + description: |- + Control whether the I/O workload for the backup initial checkpoint will + be limited, according to the `checkpoint_completion_target` setting on + the PostgreSQL server. If set to true, an immediate checkpoint will be + used, meaning PostgreSQL will complete the checkpoint as soon as + possible. `false` by default. + type: boolean + waitForArchive: + default: true + description: |- + If false, the function will return immediately after the backup is completed, + without waiting for WAL to be archived. + This behavior is only useful with backup software that independently monitors WAL archiving. + Otherwise, WAL required to make the backup consistent might be missing and make the backup useless. + By default, or when this parameter is true, pg_backup_stop will wait for WAL to be archived when archiving is + enabled. + On a standby, this means that it will wait only when archive_mode = always. + If write activity on the primary is low, it may be useful to run pg_switch_wal on the primary in order to trigger + an immediate segment switch. + type: boolean + type: object + snapshotOwnerReference: + default: none + description: SnapshotOwnerReference indicates the type of + owner reference the snapshot should have + enum: + - none + - cluster + - backup + type: string + tablespaceClassName: + additionalProperties: + type: string + description: |- + TablespaceClassName specifies the Snapshot Class to be used for the tablespaces. + defaults to the PGDATA Snapshot Class, if set + type: object + walClassName: + description: WalClassName specifies the Snapshot Class to + be used for the PG_WAL PersistentVolumeClaim. + type: string + type: object + type: object + bootstrap: + description: Instructions to bootstrap this cluster + properties: + initdb: + description: Bootstrap the cluster via initdb + properties: + dataChecksums: + description: |- + Whether the `-k` option should be passed to initdb, + enabling checksums on data pages (default: `false`) + type: boolean + database: + description: 'Name of the database used by the application. + Default: `app`.' + type: string + encoding: + description: The value to be passed as option `--encoding` + for initdb (default:`UTF8`) + type: string + import: + description: |- + Bootstraps the new cluster by importing data from an existing PostgreSQL + instance using logical backup (`pg_dump` and `pg_restore`) + properties: + databases: + description: The databases to import + items: + type: string + type: array + postImportApplicationSQL: + description: |- + List of SQL queries to be executed as a superuser in the application + database right after is imported - to be used with extreme care + (by default empty). Only available in microservice type. + items: + type: string + type: array + roles: + description: The roles to import + items: + type: string + type: array + schemaOnly: + description: |- + When set to true, only the `pre-data` and `post-data` sections of + `pg_restore` are invoked, avoiding data import. Default: `false`. + type: boolean + source: + description: The source of the import + properties: + externalCluster: + description: The name of the externalCluster used + for import + type: string + required: + - externalCluster + type: object + type: + description: The import type. Can be `microservice` or + `monolith`. + enum: + - microservice + - monolith + type: string + required: + - databases + - source + - type + type: object + localeCType: + description: The value to be passed as option `--lc-ctype` + for initdb (default:`C`) + type: string + localeCollate: + description: The value to be passed as option `--lc-collate` + for initdb (default:`C`) + type: string + options: + description: |- + The list of options that must be passed to initdb when creating the cluster. + Deprecated: This could lead to inconsistent configurations, + please use the explicit provided parameters instead. + If defined, explicit values will be ignored. + items: + type: string + type: array + owner: + description: |- + Name of the owner of the database in the instance to be used + by applications. Defaults to the value of the `database` key. + type: string + postInitApplicationSQL: + description: |- + List of SQL queries to be executed as a superuser in the application + database right after is created - to be used with extreme care + (by default empty) + items: + type: string + type: array + postInitApplicationSQLRefs: + description: |- + PostInitApplicationSQLRefs points references to ConfigMaps or Secrets which + contain SQL files, the general implementation order to these references is + from all Secrets to all ConfigMaps, and inside Secrets or ConfigMaps, + the implementation order is same as the order of each array + (by default empty) + properties: + configMapRefs: + description: ConfigMapRefs holds a list of references + to ConfigMaps + items: + description: |- + ConfigMapKeySelector contains enough information to let you locate + the key of a ConfigMap + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: array + secretRefs: + description: SecretRefs holds a list of references to + Secrets + items: + description: |- + SecretKeySelector contains enough information to let you locate + the key of a Secret + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: array + type: object + postInitSQL: + description: |- + List of SQL queries to be executed as a superuser immediately + after the cluster has been created - to be used with extreme care + (by default empty) + items: + type: string + type: array + postInitTemplateSQL: + description: |- + List of SQL queries to be executed as a superuser in the `template1` + after the cluster has been created - to be used with extreme care + (by default empty) + items: + type: string + type: array + secret: + description: |- + Name of the secret containing the initial credentials for the + owner of the user database. If empty a new secret will be + created from scratch + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + walSegmentSize: + description: |- + The value in megabytes (1 to 1024) to be passed to the `--wal-segsize` + option for initdb (default: empty, resulting in PostgreSQL default: 16MB) + maximum: 1024 + minimum: 1 + type: integer + type: object + pg_basebackup: + description: |- + Bootstrap the cluster taking a physical backup of another compatible + PostgreSQL instance + properties: + database: + description: 'Name of the database used by the application. + Default: `app`.' + type: string + owner: + description: |- + Name of the owner of the database in the instance to be used + by applications. Defaults to the value of the `database` key. + type: string + secret: + description: |- + Name of the secret containing the initial credentials for the + owner of the user database. If empty a new secret will be + created from scratch + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + source: + description: The name of the server of which we need to take + a physical backup + minLength: 1 + type: string + required: + - source + type: object + recovery: + description: Bootstrap the cluster from a backup + properties: + backup: + description: |- + The backup object containing the physical base backup from which to + initiate the recovery procedure. + Mutually exclusive with `source` and `volumeSnapshots`. + properties: + endpointCA: + description: |- + EndpointCA store the CA bundle of the barman endpoint. + Useful when using self-signed certificates to avoid + errors with certificate issuer and barman-cloud-wal-archive. + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + name: + description: Name of the referent. + type: string + required: + - name + type: object + database: + description: 'Name of the database used by the application. + Default: `app`.' + type: string + owner: + description: |- + Name of the owner of the database in the instance to be used + by applications. Defaults to the value of the `database` key. + type: string + recoveryTarget: + description: |- + By default, the recovery process applies all the available + WAL files in the archive (full recovery). However, you can also + end the recovery as soon as a consistent state is reached or + recover to a point-in-time (PITR) by specifying a `RecoveryTarget` object, + as expected by PostgreSQL (i.e., timestamp, transaction Id, LSN, ...). + More info: https://www.postgresql.org/docs/current/runtime-config-wal.html#RUNTIME-CONFIG-WAL-RECOVERY-TARGET + properties: + backupID: + description: |- + The ID of the backup from which to start the recovery process. + If empty (default) the operator will automatically detect the backup + based on targetTime or targetLSN if specified. Otherwise use the + latest available backup in chronological order. + type: string + exclusive: + description: |- + Set the target to be exclusive. If omitted, defaults to false, so that + in Postgres, `recovery_target_inclusive` will be true + type: boolean + targetImmediate: + description: End recovery as soon as a consistent state + is reached + type: boolean + targetLSN: + description: The target LSN (Log Sequence Number) + type: string + targetName: + description: |- + The target name (to be previously created + with `pg_create_restore_point`) + type: string + targetTLI: + description: The target timeline ("latest" or a positive + integer) + type: string + targetTime: + description: The target time as a timestamp in the RFC3339 + standard + type: string + targetXID: + description: The target transaction ID + type: string + type: object + secret: + description: |- + Name of the secret containing the initial credentials for the + owner of the user database. If empty a new secret will be + created from scratch + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + source: + description: |- + The external cluster whose backup we will restore. This is also + used as the name of the folder under which the backup is stored, + so it must be set to the name of the source cluster + Mutually exclusive with `backup`. + type: string + volumeSnapshots: + description: |- + The static PVC data source(s) from which to initiate the + recovery procedure. Currently supporting `VolumeSnapshot` + and `PersistentVolumeClaim` resources that map an existing + PVC group, compatible with CloudNativePG, and taken with + a cold backup copy on a fenced Postgres instance (limitation + which will be removed in the future when online backup + will be implemented). + Mutually exclusive with `backup`. + properties: + storage: + description: Configuration of the storage of the instances + properties: + apiGroup: + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource being referenced + type: string + name: + description: Name is the name of resource being referenced + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + tablespaceStorage: + additionalProperties: + description: |- + TypedLocalObjectReference contains enough information to let you locate the + typed referenced object inside the same namespace. + properties: + apiGroup: + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource being + referenced + type: string + name: + description: Name is the name of resource being + referenced + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + description: Configuration of the storage for PostgreSQL + tablespaces + type: object + walStorage: + description: Configuration of the storage for PostgreSQL + WAL (Write-Ahead Log) + properties: + apiGroup: + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource being referenced + type: string + name: + description: Name is the name of resource being referenced + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + required: + - storage + type: object + type: object + type: object + certificates: + description: The configuration for the CA and related certificates + properties: + clientCASecret: + description: |- + The secret containing the Client CA certificate. If not defined, a new secret will be created + with a self-signed CA and will be used to generate all the client certificates.
+
+ Contains:
+
+ - `ca.crt`: CA that should be used to validate the client certificates, + used as `ssl_ca_file` of all the instances.
+ - `ca.key`: key used to generate client certificates, if ReplicationTLSSecret is provided, + this can be omitted.
+ type: string + replicationTLSSecret: + description: |- + The secret of type kubernetes.io/tls containing the client certificate to authenticate as + the `streaming_replica` user. + If not defined, ClientCASecret must provide also `ca.key`, and a new secret will be + created using the provided CA. + type: string + serverAltDNSNames: + description: The list of the server alternative DNS names to be + added to the generated server TLS certificates, when required. + items: + type: string + type: array + serverCASecret: + description: |- + The secret containing the Server CA certificate. If not defined, a new secret will be created + with a self-signed CA and will be used to generate the TLS certificate ServerTLSSecret.
+
+ Contains:
+
+ - `ca.crt`: CA that should be used to validate the server certificate, + used as `sslrootcert` in client connection strings.
+ - `ca.key`: key used to generate Server SSL certs, if ServerTLSSecret is provided, + this can be omitted.
+ type: string + serverTLSSecret: + description: |- + The secret of type kubernetes.io/tls containing the server TLS certificate and key that will be set as + `ssl_cert_file` and `ssl_key_file` so that clients can connect to postgres securely. + If not defined, ServerCASecret must provide also `ca.key` and a new secret will be + created using the provided CA. + type: string + type: object + description: + description: Description of this PostgreSQL cluster + type: string + enablePDB: + default: true + description: |- + Manage the `PodDisruptionBudget` resources within the cluster. When + configured as `true` (default setting), the pod disruption budgets + will safeguard the primary node from being terminated. Conversely, + setting it to `false` will result in the absence of any + `PodDisruptionBudget` resource, permitting the shutdown of all nodes + hosting the PostgreSQL cluster. This latter configuration is + advisable for any PostgreSQL cluster employed for + development/staging purposes. + type: boolean + enableSuperuserAccess: + default: false + description: |- + When this option is enabled, the operator will use the `SuperuserSecret` + to update the `postgres` user password (if the secret is + not present, the operator will automatically create one). When this + option is disabled, the operator will ignore the `SuperuserSecret` content, delete + it when automatically created, and then blank the password of the `postgres` + user by setting it to `NULL`. Disabled by default. + type: boolean + env: + description: |- + Env follows the Env format to pass environment variables + to the pods created in the cluster + items: + description: EnvVar represents an environment variable present in + a Container. + properties: + name: + description: Name of the environment variable. Must be a C_IDENTIFIER. + type: string + value: + description: |- + Variable references $(VAR_NAME) are expanded + using the previously defined environment variables in the container and + any service environment variables. If a variable cannot be resolved, + the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". + Escaped references will never be expanded, regardless of whether the variable + exists or not. + Defaults to "". + type: string + valueFrom: + description: Source for the environment variable's value. Cannot + be used if value is not empty. + properties: + configMapKeyRef: + description: Selects a key of a ConfigMap. + properties: + key: + description: The key to select. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the ConfigMap or its key + must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + description: |- + Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, + spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. + properties: + apiVersion: + description: Version of the schema the FieldPath is + written in terms of, defaults to "v1". + type: string + fieldPath: + description: Path of the field to select in the specified + API version. + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. + properties: + containerName: + description: 'Container name: required for volumes, + optional for env vars' + type: string + divisor: + anyOf: + - type: integer + - type: string + description: Specifies the output format of the exposed + resources, defaults to "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + description: Selects a key of a secret in the pod's namespace + properties: + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the Secret or its key must + be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + envFrom: + description: |- + EnvFrom follows the EnvFrom format to pass environment variables + sources to the pods to be used by Env + items: + description: EnvFromSource represents the source of a set of ConfigMaps + properties: + configMapRef: + description: The ConfigMap to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the ConfigMap must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + description: An optional identifier to prepend to each key in + the ConfigMap. Must be a C_IDENTIFIER. + type: string + secretRef: + description: The Secret to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the Secret must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + ephemeralVolumeSource: + description: EphemeralVolumeSource allows the user to configure the + source of ephemeral volumes. + properties: + volumeClaimTemplate: + description: |- + Will be used to create a stand-alone PVC to provision the volume. + The pod in which this EphemeralVolumeSource is embedded will be the + owner of the PVC, i.e. the PVC will be deleted together with the + pod. The name of the PVC will be `-` where + `` is the name from the `PodSpec.Volumes` array + entry. Pod validation will reject the pod if the concatenated name + is not valid for a PVC (for example, too long). + + + An existing PVC with that name that is not owned by the pod + will *not* be used for the pod to avoid using an unrelated + volume by mistake. Starting the pod is then blocked until + the unrelated PVC is removed. If such a pre-created PVC is + meant to be used by the pod, the PVC has to updated with an + owner reference to the pod once the pod exists. Normally + this should not be necessary, but it may be useful when + manually reconstructing a broken cluster. + + + This field is read-only and no changes will be made by Kubernetes + to the PVC after it has been created. + + + Required, must not be nil. + properties: + metadata: + description: |- + May contain labels and annotations that will be copied into the PVC + when creating it. No other fields are allowed and will be rejected during + validation. + type: object + spec: + description: |- + The specification for the PersistentVolumeClaim. The entire content is + copied unchanged into the PVC that gets created from this + template. The same fields as in a PersistentVolumeClaim + are also valid here. + properties: + accessModes: + description: |- + accessModes contains the desired access modes the volume should have. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + description: |- + dataSource field can be used to specify either: + * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + * An existing PVC (PersistentVolumeClaim) + If the provisioner or an external controller can support the specified data source, + it will create a new volume based on the contents of the specified data source. + When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + If the namespace is specified, then dataSourceRef will not be copied to dataSource. + properties: + apiGroup: + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource being referenced + type: string + name: + description: Name is the name of resource being referenced + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + description: |- + dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + volume is desired. This may be any object from a non-empty API group (non + core object) or a PersistentVolumeClaim object. + When this field is specified, volume binding will only succeed if the type of + the specified object matches some installed volume populator or dynamic + provisioner. + This field will replace the functionality of the dataSource field and as such + if both fields are non-empty, they must have the same value. For backwards + compatibility, when namespace isn't specified in dataSourceRef, + both fields (dataSource and dataSourceRef) will be set to the same + value automatically if one of them is empty and the other is non-empty. + When namespace is specified in dataSourceRef, + dataSource isn't set to the same value and must be empty. + There are three important differences between dataSource and dataSourceRef: + * While dataSource only allows two specific types of objects, dataSourceRef + allows any non-core object, as well as PersistentVolumeClaim objects. + * While dataSource ignores disallowed values (dropping them), dataSourceRef + preserves all values, and generates an error if a disallowed value is + specified. + * While dataSource only allows local objects, dataSourceRef allows objects + in any namespaces. + (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + properties: + apiGroup: + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource being referenced + type: string + name: + description: Name is the name of resource being referenced + type: string + namespace: + description: |- + Namespace is the namespace of resource being referenced + Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + type: string + required: + - kind + - name + type: object + resources: + description: |- + resources represents the minimum resources the volume should have. + If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements + that are lower than previous value but must still be higher than capacity recorded in the + status field of the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + selector: + description: selector is a label query over volumes to + consider for binding. + properties: + matchExpressions: + description: matchExpressions is a list of label selector + requirements. The requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that the selector + applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + description: |- + storageClassName is the name of the StorageClass required by the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + type: string + volumeAttributesClassName: + description: |- + volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + If specified, the CSI driver will create or update the volume with the attributes defined + in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass + will be applied to the claim but it's not allowed to reset this field to empty string once it is set. + If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass + will be set by the persistentvolume controller if it exists. + If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + exists. + More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled. + type: string + volumeMode: + description: |- + volumeMode defines what type of volume is required by the claim. + Value of Filesystem is implied when not included in claim spec. + type: string + volumeName: + description: volumeName is the binding reference to the + PersistentVolume backing this claim. + type: string + type: object + required: + - spec + type: object + type: object + ephemeralVolumesSizeLimit: + description: |- + EphemeralVolumesSizeLimit allows the user to set the limits for the ephemeral + volumes + properties: + shm: + anyOf: + - type: integer + - type: string + description: Shm is the size limit of the shared memory volume + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + temporaryData: + anyOf: + - type: integer + - type: string + description: TemporaryData is the size limit of the temporary + data volume + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + externalClusters: + description: The list of external clusters which are used in the configuration + items: + description: |- + ExternalCluster represents the connection parameters to an + external cluster which is used in the other sections of the configuration + properties: + barmanObjectStore: + description: The configuration for the barman-cloud tool suite + properties: + azureCredentials: + description: The credentials to use to upload data to Azure + Blob Storage + properties: + connectionString: + description: The connection string to be used + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + inheritFromAzureAD: + description: Use the Azure AD based authentication without + providing explicitly the keys. + type: boolean + storageAccount: + description: The storage account where to upload data + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + storageKey: + description: |- + The storage account key to be used in conjunction + with the storage account name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + storageSasToken: + description: |- + A shared-access-signature to be used in conjunction with + the storage account name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: object + data: + description: |- + The configuration to be used to backup the data files + When not defined, base backups files will be stored uncompressed and may + be unencrypted in the object store, according to the bucket default + policy. + properties: + additionalCommandArgs: + description: |- + AdditionalCommandArgs represents additional arguments that can be appended + to the 'barman-cloud-backup' command-line invocation. These arguments + provide flexibility to customize the backup process further according to + specific requirements or configurations. + + + Example: + In a scenario where specialized backup options are required, such as setting + a specific timeout or defining custom behavior, users can use this field + to specify additional command arguments. + + + Note: + It's essential to ensure that the provided arguments are valid and supported + by the 'barman-cloud-backup' command, to avoid potential errors or unintended + behavior during execution. + items: + type: string + type: array + compression: + description: |- + Compress a backup file (a tar file per tablespace) while streaming it + to the object store. Available options are empty string (no + compression, default), `gzip`, `bzip2` or `snappy`. + enum: + - gzip + - bzip2 + - snappy + type: string + encryption: + description: |- + Whenever to force the encryption of files (if the bucket is + not already configured for that). + Allowed options are empty string (use the bucket policy, default), + `AES256` and `aws:kms` + enum: + - AES256 + - aws:kms + type: string + immediateCheckpoint: + description: |- + Control whether the I/O workload for the backup initial checkpoint will + be limited, according to the `checkpoint_completion_target` setting on + the PostgreSQL server. If set to true, an immediate checkpoint will be + used, meaning PostgreSQL will complete the checkpoint as soon as + possible. `false` by default. + type: boolean + jobs: + description: |- + The number of parallel jobs to be used to upload the backup, defaults + to 2 + format: int32 + minimum: 1 + type: integer + type: object + destinationPath: + description: |- + The path where to store the backup (i.e. s3://bucket/path/to/folder) + this path, with different destination folders, will be used for WALs + and for data + minLength: 1 + type: string + endpointCA: + description: |- + EndpointCA store the CA bundle of the barman endpoint. + Useful when using self-signed certificates to avoid + errors with certificate issuer and barman-cloud-wal-archive + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + endpointURL: + description: |- + Endpoint to be used to upload data to the cloud, + overriding the automatic endpoint discovery + type: string + googleCredentials: + description: The credentials to use to upload data to Google + Cloud Storage + properties: + applicationCredentials: + description: The secret containing the Google Cloud + Storage JSON file with the credentials + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + gkeEnvironment: + description: |- + If set to true, will presume that it's running inside a GKE environment, + default to false. + type: boolean + type: object + historyTags: + additionalProperties: + type: string + description: |- + HistoryTags is a list of key value pairs that will be passed to the + Barman --history-tags option. + type: object + s3Credentials: + description: The credentials to use to upload data to S3 + properties: + accessKeyId: + description: The reference to the access key id + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + inheritFromIAMRole: + description: Use the role based authentication without + providing explicitly the keys. + type: boolean + region: + description: The reference to the secret containing + the region name + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + secretAccessKey: + description: The reference to the secret access key + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + sessionToken: + description: The references to the session key + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: object + serverName: + description: |- + The server name on S3, the cluster name is used if this + parameter is omitted + type: string + tags: + additionalProperties: + type: string + description: |- + Tags is a list of key value pairs that will be passed to the + Barman --tags option. + type: object + wal: + description: |- + The configuration for the backup of the WAL stream. + When not defined, WAL files will be stored uncompressed and may be + unencrypted in the object store, according to the bucket default policy. + properties: + compression: + description: |- + Compress a WAL file before sending it to the object store. Available + options are empty string (no compression, default), `gzip`, `bzip2` or `snappy`. + enum: + - gzip + - bzip2 + - snappy + type: string + encryption: + description: |- + Whenever to force the encryption of files (if the bucket is + not already configured for that). + Allowed options are empty string (use the bucket policy, default), + `AES256` and `aws:kms` + enum: + - AES256 + - aws:kms + type: string + maxParallel: + description: |- + Number of WAL files to be either archived in parallel (when the + PostgreSQL instance is archiving to a backup object store) or + restored in parallel (when a PostgreSQL standby is fetching WAL + files from a recovery object store). If not specified, WAL files + will be processed one at a time. It accepts a positive integer as a + value - with 1 being the minimum accepted value. + minimum: 1 + type: integer + type: object + required: + - destinationPath + type: object + connectionParameters: + additionalProperties: + type: string + description: The list of connection parameters, such as dbname, + host, username, etc + type: object + name: + description: The server name, required + type: string + password: + description: |- + The reference to the password to be used to connect to the server. + If a password is provided, CloudNativePG creates a PostgreSQL + passfile at `/controller/external/NAME/pass` (where "NAME" is the + cluster's name). This passfile is automatically referenced in the + connection string when establishing a connection to the remote + PostgreSQL server from the current PostgreSQL `Cluster`. This ensures + secure and efficient password management for external clusters. + properties: + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the Secret or its key must + be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + sslCert: + description: |- + The reference to an SSL certificate to be used to connect to this + instance + properties: + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the Secret or its key must + be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + sslKey: + description: |- + The reference to an SSL private key to be used to connect to this + instance + properties: + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the Secret or its key must + be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + sslRootCert: + description: |- + The reference to an SSL CA public key to be used to connect to this + instance + properties: + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the Secret or its key must + be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + required: + - name + type: object + type: array + failoverDelay: + default: 0 + description: |- + The amount of time (in seconds) to wait before triggering a failover + after the primary PostgreSQL instance in the cluster was detected + to be unhealthy + format: int32 + type: integer + imageCatalogRef: + description: Defines the major PostgreSQL version we want to use within + an ImageCatalog + properties: + apiGroup: + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource being referenced + type: string + major: + description: The major version of PostgreSQL we want to use from + the ImageCatalog + type: integer + x-kubernetes-validations: + - message: Major is immutable + rule: self == oldSelf + name: + description: Name is the name of resource being referenced + type: string + required: + - kind + - major + - name + type: object + x-kubernetes-map-type: atomic + x-kubernetes-validations: + - message: Only image catalogs are supported + rule: self.kind == 'ImageCatalog' || self.kind == 'ClusterImageCatalog' + - message: Only image catalogs are supported + rule: self.apiGroup == 'postgresql.cnpg.io' + imageName: + description: |- + Name of the container image, supporting both tags (`:`) + and digests for deterministic and repeatable deployments + (`:@sha256:`) + type: string + imagePullPolicy: + description: |- + Image pull policy. + One of `Always`, `Never` or `IfNotPresent`. + If not defined, it defaults to `IfNotPresent`. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/containers/images#updating-images + type: string + imagePullSecrets: + description: The list of pull secrets to be used to pull the images + items: + description: |- + LocalObjectReference contains enough information to let you locate a + local object with a known type inside the same namespace + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + type: array + inheritedMetadata: + description: Metadata that will be inherited by all objects related + to the Cluster + properties: + annotations: + additionalProperties: + type: string + type: object + labels: + additionalProperties: + type: string + type: object + type: object + instances: + default: 1 + description: Number of instances required in the cluster + minimum: 1 + type: integer + livenessProbeTimeout: + description: |- + LivenessProbeTimeout is the time (in seconds) that is allowed for a PostgreSQL instance + to successfully respond to the liveness probe (default 30). + The Liveness probe failure threshold is derived from this value using the formula: + ceiling(livenessProbe / 10). + format: int32 + type: integer + logLevel: + default: info + description: 'The instances'' log level, one of the following values: + error, warning, info (default), debug, trace' + enum: + - error + - warning + - info + - debug + - trace + type: string + managed: + description: The configuration that is used by the portions of PostgreSQL + that are managed by the instance manager + properties: + roles: + description: Database roles managed by the `Cluster` + items: + description: |- + RoleConfiguration is the representation, in Kubernetes, of a PostgreSQL role + with the additional field Ensure specifying whether to ensure the presence or + absence of the role in the database + + + The defaults of the CREATE ROLE command are applied + Reference: https://www.postgresql.org/docs/current/sql-createrole.html + properties: + bypassrls: + description: |- + Whether a role bypasses every row-level security (RLS) policy. + Default is `false`. + type: boolean + comment: + description: Description of the role + type: string + connectionLimit: + default: -1 + description: |- + If the role can log in, this specifies how many concurrent + connections the role can make. `-1` (the default) means no limit. + format: int64 + type: integer + createdb: + description: |- + When set to `true`, the role being defined will be allowed to create + new databases. Specifying `false` (default) will deny a role the + ability to create databases. + type: boolean + createrole: + description: |- + Whether the role will be permitted to create, alter, drop, comment + on, change the security label for, and grant or revoke membership in + other roles. Default is `false`. + type: boolean + disablePassword: + description: DisablePassword indicates that a role's password + should be set to NULL in Postgres + type: boolean + ensure: + default: present + description: Ensure the role is `present` or `absent` - + defaults to "present" + enum: + - present + - absent + type: string + inRoles: + description: |- + List of one or more existing roles to which this role will be + immediately added as a new member. Default empty. + items: + type: string + type: array + inherit: + default: true + description: |- + Whether a role "inherits" the privileges of roles it is a member of. + Defaults is `true`. + type: boolean + login: + description: |- + Whether the role is allowed to log in. A role having the `login` + attribute can be thought of as a user. Roles without this attribute + are useful for managing database privileges, but are not users in + the usual sense of the word. Default is `false`. + type: boolean + name: + description: Name of the role + type: string + passwordSecret: + description: |- + Secret containing the password of the role (if present) + If null, the password will be ignored unless DisablePassword is set + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + replication: + description: |- + Whether a role is a replication role. A role must have this + attribute (or be a superuser) in order to be able to connect to the + server in replication mode (physical or logical replication) and in + order to be able to create or drop replication slots. A role having + the `replication` attribute is a very highly privileged role, and + should only be used on roles actually used for replication. Default + is `false`. + type: boolean + superuser: + description: |- + Whether the role is a `superuser` who can override all access + restrictions within the database - superuser status is dangerous and + should be used only when really needed. You must yourself be a + superuser to create a new superuser. Defaults is `false`. + type: boolean + validUntil: + description: |- + Date and time after which the role's password is no longer valid. + When omitted, the password will never expire (default). + format: date-time + type: string + required: + - name + type: object + type: array + type: object + maxSyncReplicas: + default: 0 + description: |- + The target value for the synchronous replication quorum, that can be + decreased if the number of ready standbys is lower than this. + Undefined or 0 disable synchronous replication. + minimum: 0 + type: integer + minSyncReplicas: + default: 0 + description: |- + Minimum number of instances required in synchronous replication with the + primary. Undefined or 0 allow writes to complete when no standby is + available. + minimum: 0 + type: integer + monitoring: + description: The configuration of the monitoring infrastructure of + this cluster + properties: + customQueriesConfigMap: + description: The list of config maps containing the custom queries + items: + description: |- + ConfigMapKeySelector contains enough information to let you locate + the key of a ConfigMap + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: array + customQueriesSecret: + description: The list of secrets containing the custom queries + items: + description: |- + SecretKeySelector contains enough information to let you locate + the key of a Secret + properties: + key: + description: The key to select + type: string + name: + description: Name of the referent. + type: string + required: + - key + - name + type: object + type: array + disableDefaultQueries: + default: false + description: |- + Whether the default queries should be injected. + Set it to `true` if you don't want to inject default queries into the cluster. + Default: false. + type: boolean + enablePodMonitor: + default: false + description: Enable or disable the `PodMonitor` + type: boolean + podMonitorMetricRelabelings: + description: The list of metric relabelings for the `PodMonitor`. + Applied to samples before ingestion. + items: + description: |- + RelabelConfig allows dynamic rewriting of the label set for targets, alerts, + scraped samples and remote write samples. + + + More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config + properties: + action: + default: replace + description: |- + Action to perform based on the regex matching. + + + `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. + `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. + + + Default: "Replace" + enum: + - replace + - Replace + - keep + - Keep + - drop + - Drop + - hashmod + - HashMod + - labelmap + - LabelMap + - labeldrop + - LabelDrop + - labelkeep + - LabelKeep + - lowercase + - Lowercase + - uppercase + - Uppercase + - keepequal + - KeepEqual + - dropequal + - DropEqual + type: string + modulus: + description: |- + Modulus to take of the hash of the source label values. + + + Only applicable when the action is `HashMod`. + format: int64 + type: integer + regex: + description: Regular expression against which the extracted + value is matched. + type: string + replacement: + description: |- + Replacement value against which a Replace action is performed if the + regular expression matches. + + + Regex capture groups are available. + type: string + separator: + description: Separator is the string between concatenated + SourceLabels. + type: string + sourceLabels: + description: |- + The source labels select values from existing labels. Their content is + concatenated using the configured Separator and matched against the + configured regular expression. + items: + description: |- + LabelName is a valid Prometheus label name which may only contain ASCII + letters, numbers, as well as underscores. + pattern: ^[a-zA-Z_][a-zA-Z0-9_]*$ + type: string + type: array + targetLabel: + description: |- + Label to which the resulting string is written in a replacement. + + + It is mandatory for `Replace`, `HashMod`, `Lowercase`, `Uppercase`, + `KeepEqual` and `DropEqual` actions. + + + Regex capture groups are available. + type: string + type: object + type: array + podMonitorRelabelings: + description: The list of relabelings for the `PodMonitor`. Applied + to samples before scraping. + items: + description: |- + RelabelConfig allows dynamic rewriting of the label set for targets, alerts, + scraped samples and remote write samples. + + + More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config + properties: + action: + default: replace + description: |- + Action to perform based on the regex matching. + + + `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. + `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. + + + Default: "Replace" + enum: + - replace + - Replace + - keep + - Keep + - drop + - Drop + - hashmod + - HashMod + - labelmap + - LabelMap + - labeldrop + - LabelDrop + - labelkeep + - LabelKeep + - lowercase + - Lowercase + - uppercase + - Uppercase + - keepequal + - KeepEqual + - dropequal + - DropEqual + type: string + modulus: + description: |- + Modulus to take of the hash of the source label values. + + + Only applicable when the action is `HashMod`. + format: int64 + type: integer + regex: + description: Regular expression against which the extracted + value is matched. + type: string + replacement: + description: |- + Replacement value against which a Replace action is performed if the + regular expression matches. + + + Regex capture groups are available. + type: string + separator: + description: Separator is the string between concatenated + SourceLabels. + type: string + sourceLabels: + description: |- + The source labels select values from existing labels. Their content is + concatenated using the configured Separator and matched against the + configured regular expression. + items: + description: |- + LabelName is a valid Prometheus label name which may only contain ASCII + letters, numbers, as well as underscores. + pattern: ^[a-zA-Z_][a-zA-Z0-9_]*$ + type: string + type: array + targetLabel: + description: |- + Label to which the resulting string is written in a replacement. + + + It is mandatory for `Replace`, `HashMod`, `Lowercase`, `Uppercase`, + `KeepEqual` and `DropEqual` actions. + + + Regex capture groups are available. + type: string + type: object + type: array + type: object + nodeMaintenanceWindow: + description: Define a maintenance window for the Kubernetes nodes + properties: + inProgress: + default: false + description: Is there a node maintenance activity in progress? + type: boolean + reusePVC: + default: true + description: |- + Reuse the existing PVC (wait for the node to come + up again) or not (recreate it elsewhere - when `instances` >1) + type: boolean + type: object + plugins: + description: |- + The plugins configuration, containing + any plugin to be loaded with the corresponding configuration + items: + description: |- + PluginConfiguration specifies a plugin that need to be loaded for this + cluster to be reconciled + properties: + name: + description: Name is the plugin name + type: string + parameters: + additionalProperties: + type: string + description: Parameters is the configuration of the plugin + type: object + required: + - name + type: object + type: array + postgresGID: + default: 26 + description: The GID of the `postgres` user inside the image, defaults + to `26` + format: int64 + type: integer + postgresUID: + default: 26 + description: The UID of the `postgres` user inside the image, defaults + to `26` + format: int64 + type: integer + postgresql: + description: Configuration of the PostgreSQL server + properties: + enableAlterSystem: + description: |- + If this parameter is true, the user will be able to invoke `ALTER SYSTEM` + on this CloudNativePG Cluster. + This should only be used for debugging and troubleshooting. + Defaults to false. + type: boolean + ldap: + description: Options to specify LDAP configuration + properties: + bindAsAuth: + description: Bind as authentication configuration + properties: + prefix: + description: Prefix for the bind authentication option + type: string + suffix: + description: Suffix for the bind authentication option + type: string + type: object + bindSearchAuth: + description: Bind+Search authentication configuration + properties: + baseDN: + description: Root DN to begin the user search + type: string + bindDN: + description: DN of the user to bind to the directory + type: string + bindPassword: + description: Secret with the password for the user to + bind to the directory + properties: + key: + description: The key of the secret to select from. Must + be a valid secret key. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the Secret or its key + must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + searchAttribute: + description: Attribute to match against the username + type: string + searchFilter: + description: Search filter to use when doing the search+bind + authentication + type: string + type: object + port: + description: LDAP server port + type: integer + scheme: + description: LDAP schema to be used, possible options are + `ldap` and `ldaps` + enum: + - ldap + - ldaps + type: string + server: + description: LDAP hostname or IP address + type: string + tls: + description: Set to 'true' to enable LDAP over TLS. 'false' + is default + type: boolean + type: object + parameters: + additionalProperties: + type: string + description: PostgreSQL configuration options (postgresql.conf) + type: object + pg_hba: + description: |- + PostgreSQL Host Based Authentication rules (lines to be appended + to the pg_hba.conf file) + items: + type: string + type: array + pg_ident: + description: |- + PostgreSQL User Name Maps rules (lines to be appended + to the pg_ident.conf file) + items: + type: string + type: array + promotionTimeout: + description: |- + Specifies the maximum number of seconds to wait when promoting an instance to primary. + Default value is 40000000, greater than one year in seconds, + big enough to simulate an infinite timeout + format: int32 + type: integer + shared_preload_libraries: + description: Lists of shared preload libraries to add to the default + ones + items: + type: string + type: array + syncReplicaElectionConstraint: + description: |- + Requirements to be met by sync replicas. This will affect how the "synchronous_standby_names" parameter will be + set up. + properties: + enabled: + description: This flag enables the constraints for sync replicas + type: boolean + nodeLabelsAntiAffinity: + description: A list of node labels values to extract and compare + to evaluate if the pods reside in the same topology or not + items: + type: string + type: array + required: + - enabled + type: object + type: object + primaryUpdateMethod: + default: restart + description: |- + Method to follow to upgrade the primary server during a rolling + update procedure, after all replicas have been successfully updated: + it can be with a switchover (`switchover`) or in-place (`restart` - default) + enum: + - switchover + - restart + type: string + primaryUpdateStrategy: + default: unsupervised + description: |- + Deployment strategy to follow to upgrade the primary server during a rolling + update procedure, after all replicas have been successfully updated: + it can be automated (`unsupervised` - default) or manual (`supervised`) + enum: + - unsupervised + - supervised + type: string + priorityClassName: + description: |- + Name of the priority class which will be used in every generated Pod, if the PriorityClass + specified does not exist, the pod will not be able to schedule. Please refer to + https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/#priorityclass + for more information + type: string + projectedVolumeTemplate: + description: |- + Template to be used to define projected volumes, projected volumes will be mounted + under `/projected` base folder + properties: + defaultMode: + description: |- + defaultMode are the mode bits used to set permissions on created files by default. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + Directories within the path are not affected by this setting. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. + format: int32 + type: integer + sources: + description: sources is the list of volume projections + items: + description: Projection that may be projected along with other + supported volume types + properties: + clusterTrustBundle: + description: |- + ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field + of ClusterTrustBundle objects in an auto-updating file. + + + Alpha, gated by the ClusterTrustBundleProjection feature gate. + + + ClusterTrustBundle objects can either be selected by name, or by the + combination of signer name and a label selector. + + + Kubelet performs aggressive normalization of the PEM contents written + into the pod filesystem. Esoteric PEM features such as inter-block + comments and block headers are stripped. Certificates are deduplicated. + The ordering of certificates within the file is arbitrary, and Kubelet + may change the order over time. + properties: + labelSelector: + description: |- + Select all ClusterTrustBundles that match this label selector. Only has + effect if signerName is set. Mutually-exclusive with name. If unset, + interpreted as "match nothing". If set but empty, interpreted as "match + everything". + properties: + matchExpressions: + description: matchExpressions is a list of label + selector requirements. The requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that the + selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + name: + description: |- + Select a single ClusterTrustBundle by object name. Mutually-exclusive + with signerName and labelSelector. + type: string + optional: + description: |- + If true, don't block pod startup if the referenced ClusterTrustBundle(s) + aren't available. If using name, then the named ClusterTrustBundle is + allowed not to exist. If using signerName, then the combination of + signerName and labelSelector is allowed to match zero + ClusterTrustBundles. + type: boolean + path: + description: Relative path from the volume root to write + the bundle. + type: string + signerName: + description: |- + Select all ClusterTrustBundles that match this signer name. + Mutually-exclusive with name. The contents of all selected + ClusterTrustBundles will be unified and deduplicated. + type: string + required: + - path + type: object + configMap: + description: configMap information about the configMap data + to project + properties: + items: + description: |- + items if unspecified, each key-value pair in the Data field of the referenced + ConfigMap will be projected into the volume as a file whose name is the + key and content is the value. If specified, the listed keys will be + projected into the specified paths, and unlisted keys will not be + present. If a key is specified which is not present in the ConfigMap, + the volume setup will error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start with '..'. + items: + description: Maps a string key to a path within a + volume. + properties: + key: + description: key is the key to project. + type: string + mode: + description: |- + mode is Optional: mode bits used to set permissions on this file. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. + format: int32 + type: integer + path: + description: |- + path is the relative path of the file to map the key to. + May not be an absolute path. + May not contain the path element '..'. + May not start with the string '..'. + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: optional specify whether the ConfigMap + or its keys must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + downwardAPI: + description: downwardAPI information about the downwardAPI + data to project + properties: + items: + description: Items is a list of DownwardAPIVolume file + items: + description: DownwardAPIVolumeFile represents information + to create the file containing the pod field + properties: + fieldRef: + description: 'Required: Selects a field of the + pod: only annotations, labels, name, namespace + and uid are supported.' + properties: + apiVersion: + description: Version of the schema the FieldPath + is written in terms of, defaults to "v1". + type: string + fieldPath: + description: Path of the field to select in + the specified API version. + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + mode: + description: |- + Optional: mode bits used to set permissions on this file, must be an octal value + between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. + format: int32 + type: integer + path: + description: 'Required: Path is the relative + path name of the file to be created. Must not + be absolute or contain the ''..'' path. Must + be utf-8 encoded. The first item of the relative + path must not start with ''..''' + type: string + resourceFieldRef: + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. + properties: + containerName: + description: 'Container name: required for + volumes, optional for env vars' + type: string + divisor: + anyOf: + - type: integer + - type: string + description: Specifies the output format of + the exposed resources, defaults to "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + required: + - path + type: object + type: array + x-kubernetes-list-type: atomic + type: object + secret: + description: secret information about the secret data to + project + properties: + items: + description: |- + items if unspecified, each key-value pair in the Data field of the referenced + Secret will be projected into the volume as a file whose name is the + key and content is the value. If specified, the listed keys will be + projected into the specified paths, and unlisted keys will not be + present. If a key is specified which is not present in the Secret, + the volume setup will error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start with '..'. + items: + description: Maps a string key to a path within a + volume. + properties: + key: + description: key is the key to project. + type: string + mode: + description: |- + mode is Optional: mode bits used to set permissions on this file. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. + format: int32 + type: integer + path: + description: |- + path is the relative path of the file to map the key to. + May not be an absolute path. + May not contain the path element '..'. + May not start with the string '..'. + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: optional field specify whether the Secret + or its key must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + serviceAccountToken: + description: serviceAccountToken is information about the + serviceAccountToken data to project + properties: + audience: + description: |- + audience is the intended audience of the token. A recipient of a token + must identify itself with an identifier specified in the audience of the + token, and otherwise should reject the token. The audience defaults to the + identifier of the apiserver. + type: string + expirationSeconds: + description: |- + expirationSeconds is the requested duration of validity of the service + account token. As the token approaches expiration, the kubelet volume + plugin will proactively rotate the service account token. The kubelet will + start trying to rotate the token if the token is older than 80 percent of + its time to live or if the token is older than 24 hours.Defaults to 1 hour + and must be at least 10 minutes. + format: int64 + type: integer + path: + description: |- + path is the path relative to the mount point of the file to project the + token into. + type: string + required: + - path + type: object + type: object + type: array + x-kubernetes-list-type: atomic + type: object + replica: + description: Replica cluster configuration + properties: + enabled: + description: |- + If replica mode is enabled, this cluster will be a replica of an + existing cluster. Replica cluster can be created from a recovery + object store or via streaming through pg_basebackup. + Refer to the Replica clusters page of the documentation for more information. + type: boolean + source: + description: The name of the external cluster which is the replication + origin + minLength: 1 + type: string + required: + - enabled + - source + type: object + replicationSlots: + default: + highAvailability: + enabled: true + description: Replication slots management configuration + properties: + highAvailability: + default: + enabled: true + description: Replication slots for high availability configuration + properties: + enabled: + default: true + description: |- + If enabled (default), the operator will automatically manage replication slots + on the primary instance and use them in streaming replication + connections with all the standby instances that are part of the HA + cluster. If disabled, the operator will not take advantage + of replication slots in streaming connections with the replicas. + This feature also controls replication slots in replica cluster, + from the designated primary to its cascading replicas. + type: boolean + slotPrefix: + default: _cnpg_ + description: |- + Prefix for replication slots managed by the operator for HA. + It may only contain lower case letters, numbers, and the underscore character. + This can only be set at creation time. By default set to `_cnpg_`. + pattern: ^[0-9a-z_]*$ + type: string + type: object + synchronizeReplicas: + description: Configures the synchronization of the user defined + physical replication slots + properties: + enabled: + default: true + description: When set to true, every replication slot that + is on the primary is synchronized on each standby + type: boolean + excludePatterns: + description: List of regular expression patterns to match + the names of replication slots to be excluded (by default + empty) + items: + type: string + type: array + required: + - enabled + type: object + updateInterval: + default: 30 + description: |- + Standby will update the status of the local replication slots + every `updateInterval` seconds (default 30). + minimum: 1 + type: integer + type: object + resources: + description: |- + Resources requirements of every generated Pod. Please refer to + https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + for more information. + properties: + claims: + description: |- + Claims lists the names of resources, defined in spec.resourceClaims, + that are used by this container. + + + This is an alpha field and requires enabling the + DynamicResourceAllocation feature gate. + + + This field is immutable. It can only be set for containers. + items: + description: ResourceClaim references one entry in PodSpec.ResourceClaims. + properties: + name: + description: |- + Name must match the name of one entry in pod.spec.resourceClaims of + the Pod where this field is used. It makes that resource available + inside a container. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + schedulerName: + description: |- + If specified, the pod will be dispatched by specified Kubernetes + scheduler. If not specified, the pod will be dispatched by the default + scheduler. More info: + https://kubernetes.io/docs/concepts/scheduling-eviction/kube-scheduler/ + type: string + seccompProfile: + description: |- + The SeccompProfile applied to every Pod and Container. + Defaults to: `RuntimeDefault` + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile defined in a file on the node should be used. + The profile must be preconfigured on the node to work. + Must be a descending path, relative to the kubelet's configured seccomp profile location. + Must be set if type is "Localhost". Must NOT be set for any other type. + type: string + type: + description: |- + type indicates which kind of seccomp profile will be applied. + Valid options are: + + + Localhost - a profile defined in a file on the node should be used. + RuntimeDefault - the container runtime default profile should be used. + Unconfined - no profile should be applied. + type: string + required: + - type + type: object + serviceAccountTemplate: + description: Configure the generation of the service account + properties: + metadata: + description: |- + Metadata are the metadata to be used for the generated + service account + properties: + annotations: + additionalProperties: + type: string + description: |- + Annotations is an unstructured key value map stored with a resource that may be + set by external tools to store and retrieve arbitrary metadata. They are not + queryable and should be preserved when modifying objects. + More info: http://kubernetes.io/docs/user-guide/annotations + type: object + labels: + additionalProperties: + type: string + description: |- + Map of string keys and values that can be used to organize and categorize + (scope and select) objects. May match selectors of replication controllers + and services. + More info: http://kubernetes.io/docs/user-guide/labels + type: object + type: object + required: + - metadata + type: object + smartShutdownTimeout: + default: 180 + description: |- + The time in seconds that controls the window of time reserved for the smart shutdown of Postgres to complete. + Make sure you reserve enough time for the operator to request a fast shutdown of Postgres + (that is: `stopDelay` - `smartShutdownTimeout`). + format: int32 + type: integer + startDelay: + default: 3600 + description: |- + The time in seconds that is allowed for a PostgreSQL instance to + successfully start up (default 3600). + The startup probe failure threshold is derived from this value using the formula: + ceiling(startDelay / 10). + format: int32 + type: integer + stopDelay: + default: 1800 + description: |- + The time in seconds that is allowed for a PostgreSQL instance to + gracefully shutdown (default 1800) + format: int32 + type: integer + storage: + description: Configuration of the storage of the instances + properties: + pvcTemplate: + description: Template to be used to generate the Persistent Volume + Claim + properties: + accessModes: + description: |- + accessModes contains the desired access modes the volume should have. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + description: |- + dataSource field can be used to specify either: + * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + * An existing PVC (PersistentVolumeClaim) + If the provisioner or an external controller can support the specified data source, + it will create a new volume based on the contents of the specified data source. + When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + If the namespace is specified, then dataSourceRef will not be copied to dataSource. + properties: + apiGroup: + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource being referenced + type: string + name: + description: Name is the name of resource being referenced + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + description: |- + dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + volume is desired. This may be any object from a non-empty API group (non + core object) or a PersistentVolumeClaim object. + When this field is specified, volume binding will only succeed if the type of + the specified object matches some installed volume populator or dynamic + provisioner. + This field will replace the functionality of the dataSource field and as such + if both fields are non-empty, they must have the same value. For backwards + compatibility, when namespace isn't specified in dataSourceRef, + both fields (dataSource and dataSourceRef) will be set to the same + value automatically if one of them is empty and the other is non-empty. + When namespace is specified in dataSourceRef, + dataSource isn't set to the same value and must be empty. + There are three important differences between dataSource and dataSourceRef: + * While dataSource only allows two specific types of objects, dataSourceRef + allows any non-core object, as well as PersistentVolumeClaim objects. + * While dataSource ignores disallowed values (dropping them), dataSourceRef + preserves all values, and generates an error if a disallowed value is + specified. + * While dataSource only allows local objects, dataSourceRef allows objects + in any namespaces. + (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + properties: + apiGroup: + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource being referenced + type: string + name: + description: Name is the name of resource being referenced + type: string + namespace: + description: |- + Namespace is the namespace of resource being referenced + Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + type: string + required: + - kind + - name + type: object + resources: + description: |- + resources represents the minimum resources the volume should have. + If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements + that are lower than previous value but must still be higher than capacity recorded in the + status field of the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + selector: + description: selector is a label query over volumes to consider + for binding. + properties: + matchExpressions: + description: matchExpressions is a list of label selector + requirements. The requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that the selector + applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + description: |- + storageClassName is the name of the StorageClass required by the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + type: string + volumeAttributesClassName: + description: |- + volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + If specified, the CSI driver will create or update the volume with the attributes defined + in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass + will be applied to the claim but it's not allowed to reset this field to empty string once it is set. + If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass + will be set by the persistentvolume controller if it exists. + If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + exists. + More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled. + type: string + volumeMode: + description: |- + volumeMode defines what type of volume is required by the claim. + Value of Filesystem is implied when not included in claim spec. + type: string + volumeName: + description: volumeName is the binding reference to the PersistentVolume + backing this claim. + type: string + type: object + resizeInUseVolumes: + default: true + description: Resize existent PVCs, defaults to true + type: boolean + size: + description: |- + Size of the storage. Required if not already specified in the PVC template. + Changes to this field are automatically reapplied to the created PVCs. + Size cannot be decreased. + type: string + storageClass: + description: |- + StorageClass to use for PVCs. Applied after + evaluating the PVC template, if available. + If not specified, the generated PVCs will use the + default storage class + type: string + type: object + superuserSecret: + description: |- + The secret containing the superuser password. If not defined a new + secret will be created with a randomly generated password + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + switchoverDelay: + default: 3600 + description: |- + The time in seconds that is allowed for a primary PostgreSQL instance + to gracefully shutdown during a switchover. + Default value is 3600 seconds (1 hour). + format: int32 + type: integer + tablespaces: + description: The tablespaces configuration + items: + description: |- + TablespaceConfiguration is the configuration of a tablespace, and includes + the storage specification for the tablespace + properties: + name: + description: The name of the tablespace + type: string + owner: + description: Owner is the PostgreSQL user owning the tablespace + properties: + name: + type: string + type: object + storage: + description: The storage configuration for the tablespace + properties: + pvcTemplate: + description: Template to be used to generate the Persistent + Volume Claim + properties: + accessModes: + description: |- + accessModes contains the desired access modes the volume should have. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + description: |- + dataSource field can be used to specify either: + * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + * An existing PVC (PersistentVolumeClaim) + If the provisioner or an external controller can support the specified data source, + it will create a new volume based on the contents of the specified data source. + When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + If the namespace is specified, then dataSourceRef will not be copied to dataSource. + properties: + apiGroup: + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource being + referenced + type: string + name: + description: Name is the name of resource being + referenced + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + description: |- + dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + volume is desired. This may be any object from a non-empty API group (non + core object) or a PersistentVolumeClaim object. + When this field is specified, volume binding will only succeed if the type of + the specified object matches some installed volume populator or dynamic + provisioner. + This field will replace the functionality of the dataSource field and as such + if both fields are non-empty, they must have the same value. For backwards + compatibility, when namespace isn't specified in dataSourceRef, + both fields (dataSource and dataSourceRef) will be set to the same + value automatically if one of them is empty and the other is non-empty. + When namespace is specified in dataSourceRef, + dataSource isn't set to the same value and must be empty. + There are three important differences between dataSource and dataSourceRef: + * While dataSource only allows two specific types of objects, dataSourceRef + allows any non-core object, as well as PersistentVolumeClaim objects. + * While dataSource ignores disallowed values (dropping them), dataSourceRef + preserves all values, and generates an error if a disallowed value is + specified. + * While dataSource only allows local objects, dataSourceRef allows objects + in any namespaces. + (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + properties: + apiGroup: + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource being + referenced + type: string + name: + description: Name is the name of resource being + referenced + type: string + namespace: + description: |- + Namespace is the namespace of resource being referenced + Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + type: string + required: + - kind + - name + type: object + resources: + description: |- + resources represents the minimum resources the volume should have. + If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements + that are lower than previous value but must still be higher than capacity recorded in the + status field of the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + selector: + description: selector is a label query over volumes + to consider for binding. + properties: + matchExpressions: + description: matchExpressions is a list of label + selector requirements. The requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that the + selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + description: |- + storageClassName is the name of the StorageClass required by the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + type: string + volumeAttributesClassName: + description: |- + volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + If specified, the CSI driver will create or update the volume with the attributes defined + in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass + will be applied to the claim but it's not allowed to reset this field to empty string once it is set. + If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass + will be set by the persistentvolume controller if it exists. + If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + exists. + More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled. + type: string + volumeMode: + description: |- + volumeMode defines what type of volume is required by the claim. + Value of Filesystem is implied when not included in claim spec. + type: string + volumeName: + description: volumeName is the binding reference to + the PersistentVolume backing this claim. + type: string + type: object + resizeInUseVolumes: + default: true + description: Resize existent PVCs, defaults to true + type: boolean + size: + description: |- + Size of the storage. Required if not already specified in the PVC template. + Changes to this field are automatically reapplied to the created PVCs. + Size cannot be decreased. + type: string + storageClass: + description: |- + StorageClass to use for PVCs. Applied after + evaluating the PVC template, if available. + If not specified, the generated PVCs will use the + default storage class + type: string + type: object + temporary: + default: false + description: |- + When set to true, the tablespace will be added as a `temp_tablespaces` + entry in PostgreSQL, and will be available to automatically house temp + database objects, or other temporary files. Please refer to PostgreSQL + documentation for more information on the `temp_tablespaces` GUC. + type: boolean + required: + - name + - storage + type: object + type: array + topologySpreadConstraints: + description: |- + TopologySpreadConstraints specifies how to spread matching pods among the given topology. + More info: + https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ + items: + description: TopologySpreadConstraint specifies how to spread matching + pods among the given topology. + properties: + labelSelector: + description: |- + LabelSelector is used to find matching pods. + Pods that match this label selector are counted to determine the number of pods + in their corresponding topology domain. + properties: + matchExpressions: + description: matchExpressions is a list of label selector + requirements. The requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that the selector + applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select the pods over which + spreading will be calculated. The keys are used to lookup values from the + incoming pod labels, those key-value labels are ANDed with labelSelector + to select the group of existing pods over which spreading will be calculated + for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + MatchLabelKeys cannot be set when LabelSelector isn't set. + Keys that don't exist in the incoming pod labels will + be ignored. A null or empty list means only match against labelSelector. + + + This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default). + items: + type: string + type: array + x-kubernetes-list-type: atomic + maxSkew: + description: |- + MaxSkew describes the degree to which pods may be unevenly distributed. + When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference + between the number of matching pods in the target topology and the global minimum. + The global minimum is the minimum number of matching pods in an eligible domain + or zero if the number of eligible domains is less than MinDomains. + For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + labelSelector spread as 2/2/1: + In this case, the global minimum is 1. + | zone1 | zone2 | zone3 | + | P P | P P | P | + - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; + scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) + violate MaxSkew(1). + - if MaxSkew is 2, incoming pod can be scheduled onto any zone. + When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence + to topologies that satisfy it. + It's a required field. Default value is 1 and 0 is not allowed. + format: int32 + type: integer + minDomains: + description: |- + MinDomains indicates a minimum number of eligible domains. + When the number of eligible domains with matching topology keys is less than minDomains, + Pod Topology Spread treats "global minimum" as 0, and then the calculation of Skew is performed. + And when the number of eligible domains with matching topology keys equals or greater than minDomains, + this value has no effect on scheduling. + As a result, when the number of eligible domains is less than minDomains, + scheduler won't schedule more than maxSkew Pods to those domains. + If value is nil, the constraint behaves as if MinDomains is equal to 1. + Valid values are integers greater than 0. + When value is not nil, WhenUnsatisfiable must be DoNotSchedule. + + + For example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same + labelSelector spread as 2/2/2: + | zone1 | zone2 | zone3 | + | P P | P P | P P | + The number of domains is less than 5(MinDomains), so "global minimum" is treated as 0. + In this situation, new pod with the same labelSelector cannot be scheduled, + because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, + it will violate MaxSkew. + format: int32 + type: integer + nodeAffinityPolicy: + description: |- + NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector + when calculating pod topology spread skew. Options are: + - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. + - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations. + + + If this value is nil, the behavior is equivalent to the Honor policy. + This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag. + type: string + nodeTaintsPolicy: + description: |- + NodeTaintsPolicy indicates how we will treat node taints when calculating + pod topology spread skew. Options are: + - Honor: nodes without taints, along with tainted nodes for which the incoming pod + has a toleration, are included. + - Ignore: node taints are ignored. All nodes are included. + + + If this value is nil, the behavior is equivalent to the Ignore policy. + This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag. + type: string + topologyKey: + description: |- + TopologyKey is the key of node labels. Nodes that have a label with this key + and identical values are considered to be in the same topology. + We consider each as a "bucket", and try to put balanced number + of pods into each bucket. + We define a domain as a particular instance of a topology. + Also, we define an eligible domain as a domain whose nodes meet the requirements of + nodeAffinityPolicy and nodeTaintsPolicy. + e.g. If TopologyKey is "kubernetes.io/hostname", each Node is a domain of that topology. + And, if TopologyKey is "topology.kubernetes.io/zone", each zone is a domain of that topology. + It's a required field. + type: string + whenUnsatisfiable: + description: |- + WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy + the spread constraint. + - DoNotSchedule (default) tells the scheduler not to schedule it. + - ScheduleAnyway tells the scheduler to schedule the pod in any location, + but giving higher precedence to topologies that would help reduce the + skew. + A constraint is considered "Unsatisfiable" for an incoming pod + if and only if every possible node assignment for that pod would violate + "MaxSkew" on some topology. + For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + labelSelector spread as 3/1/1: + | zone1 | zone2 | zone3 | + | P P P | P | P | + If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled + to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies + MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler + won't make it *more* imbalanced. + It's a required field. + type: string + required: + - maxSkew + - topologyKey + - whenUnsatisfiable + type: object + type: array + walStorage: + description: Configuration of the storage for PostgreSQL WAL (Write-Ahead + Log) + properties: + pvcTemplate: + description: Template to be used to generate the Persistent Volume + Claim + properties: + accessModes: + description: |- + accessModes contains the desired access modes the volume should have. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + description: |- + dataSource field can be used to specify either: + * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + * An existing PVC (PersistentVolumeClaim) + If the provisioner or an external controller can support the specified data source, + it will create a new volume based on the contents of the specified data source. + When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + If the namespace is specified, then dataSourceRef will not be copied to dataSource. + properties: + apiGroup: + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource being referenced + type: string + name: + description: Name is the name of resource being referenced + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + description: |- + dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + volume is desired. This may be any object from a non-empty API group (non + core object) or a PersistentVolumeClaim object. + When this field is specified, volume binding will only succeed if the type of + the specified object matches some installed volume populator or dynamic + provisioner. + This field will replace the functionality of the dataSource field and as such + if both fields are non-empty, they must have the same value. For backwards + compatibility, when namespace isn't specified in dataSourceRef, + both fields (dataSource and dataSourceRef) will be set to the same + value automatically if one of them is empty and the other is non-empty. + When namespace is specified in dataSourceRef, + dataSource isn't set to the same value and must be empty. + There are three important differences between dataSource and dataSourceRef: + * While dataSource only allows two specific types of objects, dataSourceRef + allows any non-core object, as well as PersistentVolumeClaim objects. + * While dataSource ignores disallowed values (dropping them), dataSourceRef + preserves all values, and generates an error if a disallowed value is + specified. + * While dataSource only allows local objects, dataSourceRef allows objects + in any namespaces. + (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + properties: + apiGroup: + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource being referenced + type: string + name: + description: Name is the name of resource being referenced + type: string + namespace: + description: |- + Namespace is the namespace of resource being referenced + Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + type: string + required: + - kind + - name + type: object + resources: + description: |- + resources represents the minimum resources the volume should have. + If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements + that are lower than previous value but must still be higher than capacity recorded in the + status field of the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + selector: + description: selector is a label query over volumes to consider + for binding. + properties: + matchExpressions: + description: matchExpressions is a list of label selector + requirements. The requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that the selector + applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + description: |- + storageClassName is the name of the StorageClass required by the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + type: string + volumeAttributesClassName: + description: |- + volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + If specified, the CSI driver will create or update the volume with the attributes defined + in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass + will be applied to the claim but it's not allowed to reset this field to empty string once it is set. + If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass + will be set by the persistentvolume controller if it exists. + If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + exists. + More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled. + type: string + volumeMode: + description: |- + volumeMode defines what type of volume is required by the claim. + Value of Filesystem is implied when not included in claim spec. + type: string + volumeName: + description: volumeName is the binding reference to the PersistentVolume + backing this claim. + type: string + type: object + resizeInUseVolumes: + default: true + description: Resize existent PVCs, defaults to true + type: boolean + size: + description: |- + Size of the storage. Required if not already specified in the PVC template. + Changes to this field are automatically reapplied to the created PVCs. + Size cannot be decreased. + type: string + storageClass: + description: |- + StorageClass to use for PVCs. Applied after + evaluating the PVC template, if available. + If not specified, the generated PVCs will use the + default storage class + type: string + type: object + required: + - instances + type: object + x-kubernetes-validations: + - message: imageName and imageCatalogRef are mutually exclusive + rule: '!(has(self.imageCatalogRef) && has(self.imageName))' + status: + description: |- + Most recently observed status of the cluster. This data may not be up + to date. Populated by the system. Read-only. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + availableArchitectures: + description: AvailableArchitectures reports the available architectures + of a cluster + items: + description: AvailableArchitecture represents the state of a cluster's + architecture + properties: + goArch: + description: GoArch is the name of the executable architecture + type: string + hash: + description: Hash is the hash of the executable + type: string + required: + - goArch + - hash + type: object + type: array + azurePVCUpdateEnabled: + description: AzurePVCUpdateEnabled shows if the PVC online upgrade + is enabled for this cluster + type: boolean + certificates: + description: The configuration for the CA and related certificates, + initialized with defaults. + properties: + clientCASecret: + description: |- + The secret containing the Client CA certificate. If not defined, a new secret will be created + with a self-signed CA and will be used to generate all the client certificates.
+
+ Contains:
+
+ - `ca.crt`: CA that should be used to validate the client certificates, + used as `ssl_ca_file` of all the instances.
+ - `ca.key`: key used to generate client certificates, if ReplicationTLSSecret is provided, + this can be omitted.
+ type: string + expirations: + additionalProperties: + type: string + description: Expiration dates for all certificates. + type: object + replicationTLSSecret: + description: |- + The secret of type kubernetes.io/tls containing the client certificate to authenticate as + the `streaming_replica` user. + If not defined, ClientCASecret must provide also `ca.key`, and a new secret will be + created using the provided CA. + type: string + serverAltDNSNames: + description: The list of the server alternative DNS names to be + added to the generated server TLS certificates, when required. + items: + type: string + type: array + serverCASecret: + description: |- + The secret containing the Server CA certificate. If not defined, a new secret will be created + with a self-signed CA and will be used to generate the TLS certificate ServerTLSSecret.
+
+ Contains:
+
+ - `ca.crt`: CA that should be used to validate the server certificate, + used as `sslrootcert` in client connection strings.
+ - `ca.key`: key used to generate Server SSL certs, if ServerTLSSecret is provided, + this can be omitted.
+ type: string + serverTLSSecret: + description: |- + The secret of type kubernetes.io/tls containing the server TLS certificate and key that will be set as + `ssl_cert_file` and `ssl_key_file` so that clients can connect to postgres securely. + If not defined, ServerCASecret must provide also `ca.key` and a new secret will be + created using the provided CA. + type: string + type: object + cloudNativePGCommitHash: + description: The commit hash number of which this operator running + type: string + cloudNativePGOperatorHash: + description: The hash of the binary of the operator + type: string + conditions: + description: Conditions for cluster object + items: + description: "Condition contains details for one aspect of the current + state of this API Resource.\n---\nThis struct is intended for + direct use as an array at the field path .status.conditions. For + example,\n\n\n\ttype FooStatus struct{\n\t // Represents the + observations of a foo's current state.\n\t // Known .status.conditions.type + are: \"Available\", \"Progressing\", and \"Degraded\"\n\t // + +patchMergeKey=type\n\t // +patchStrategy=merge\n\t // +listType=map\n\t + \ // +listMapKey=type\n\t Conditions []metav1.Condition `json:\"conditions,omitempty\" + patchStrategy:\"merge\" patchMergeKey:\"type\" protobuf:\"bytes,1,rep,name=conditions\"`\n\n\n\t + \ // other fields\n\t}" + properties: + lastTransitionTime: + description: |- + lastTransitionTime is the last time the condition transitioned from one status to another. + This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. + format: date-time + type: string + message: + description: |- + message is a human readable message indicating details about the transition. + This may be an empty string. + maxLength: 32768 + type: string + observedGeneration: + description: |- + observedGeneration represents the .metadata.generation that the condition was set based upon. + For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date + with respect to the current state of the instance. + format: int64 + minimum: 0 + type: integer + reason: + description: |- + reason contains a programmatic identifier indicating the reason for the condition's last transition. + Producers of specific condition types may define expected values and meanings for this field, + and whether the values are considered a guaranteed API. + The value should be a CamelCase string. + This field may not be empty. + maxLength: 1024 + minLength: 1 + pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ + type: string + status: + description: status of the condition, one of True, False, Unknown. + enum: + - "True" + - "False" + - Unknown + type: string + type: + description: |- + type of condition in CamelCase or in foo.example.com/CamelCase. + --- + Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be + useful (see .node.status.conditions), the ability to deconflict is important. + The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt) + maxLength: 316 + pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$ + type: string + required: + - lastTransitionTime + - message + - reason + - status + - type + type: object + type: array + configMapResourceVersion: + description: |- + The list of resource versions of the configmaps, + managed by the operator. Every change here is done in the + interest of the instance manager, which will refresh the + configmap data + properties: + metrics: + additionalProperties: + type: string + description: |- + A map with the versions of all the config maps used to pass metrics. + Map keys are the config map names, map values are the versions + type: object + type: object + currentPrimary: + description: Current primary instance + type: string + currentPrimaryFailingSinceTimestamp: + description: |- + The timestamp when the primary was detected to be unhealthy + This field is reported when `.spec.failoverDelay` is populated or during online upgrades + type: string + currentPrimaryTimestamp: + description: The timestamp when the last actual promotion to primary + has occurred + type: string + danglingPVC: + description: |- + List of all the PVCs created by this cluster and still available + which are not attached to a Pod + items: + type: string + type: array + firstRecoverabilityPoint: + description: |- + The first recoverability point, stored as a date in RFC3339 format. + This field is calculated from the content of FirstRecoverabilityPointByMethod + type: string + firstRecoverabilityPointByMethod: + additionalProperties: + format: date-time + type: string + description: The first recoverability point, stored as a date in RFC3339 + format, per backup method type + type: object + healthyPVC: + description: List of all the PVCs not dangling nor initializing + items: + type: string + type: array + image: + description: Image contains the image name used by the pods + type: string + initializingPVC: + description: List of all the PVCs that are being initialized by this + cluster + items: + type: string + type: array + instanceNames: + description: List of instance names in the cluster + items: + type: string + type: array + instances: + description: The total number of PVC Groups detected in the cluster. + It may differ from the number of existing instance pods. + type: integer + instancesReportedState: + additionalProperties: + description: InstanceReportedState describes the last reported state + of an instance during a reconciliation loop + properties: + isPrimary: + description: indicates if an instance is the primary one + type: boolean + timeLineID: + description: indicates on which TimelineId the instance is + type: integer + required: + - isPrimary + type: object + description: The reported state of the instances during the last reconciliation + loop + type: object + instancesStatus: + additionalProperties: + items: + type: string + type: array + description: InstancesStatus indicates in which status the instances + are + type: object + jobCount: + description: How many Jobs have been created by this cluster + format: int32 + type: integer + lastFailedBackup: + description: Stored as a date in RFC3339 format + type: string + lastSuccessfulBackup: + description: |- + Last successful backup, stored as a date in RFC3339 format + This field is calculated from the content of LastSuccessfulBackupByMethod + type: string + lastSuccessfulBackupByMethod: + additionalProperties: + format: date-time + type: string + description: Last successful backup, stored as a date in RFC3339 format, + per backup method type + type: object + latestGeneratedNode: + description: ID of the latest generated node (used to avoid node name + clashing) + type: integer + managedRolesStatus: + description: ManagedRolesStatus reports the state of the managed roles + in the cluster + properties: + byStatus: + additionalProperties: + items: + type: string + type: array + description: ByStatus gives the list of roles in each state + type: object + cannotReconcile: + additionalProperties: + items: + type: string + type: array + description: |- + CannotReconcile lists roles that cannot be reconciled in PostgreSQL, + with an explanation of the cause + type: object + passwordStatus: + additionalProperties: + description: PasswordState represents the state of the password + of a managed RoleConfiguration + properties: + resourceVersion: + description: the resource version of the password secret + type: string + transactionID: + description: the last transaction ID to affect the role + definition in PostgreSQL + format: int64 + type: integer + type: object + description: PasswordStatus gives the last transaction id and + password secret version for each managed role + type: object + type: object + onlineUpdateEnabled: + description: OnlineUpdateEnabled shows if the online upgrade is enabled + inside the cluster + type: boolean + phase: + description: Current phase of the cluster + type: string + phaseReason: + description: Reason for the current phase + type: string + pluginStatus: + description: PluginStatus is the status of the loaded plugins + items: + description: PluginStatus is the status of a loaded plugin + properties: + backupCapabilities: + description: |- + BackupCapabilities are the list of capabilities of the + plugin regarding the Backup management + items: + type: string + type: array + capabilities: + description: |- + Capabilities are the list of capabilities of the + plugin + items: + type: string + type: array + name: + description: Name is the name of the plugin + type: string + operatorCapabilities: + description: |- + OperatorCapabilities are the list of capabilities of the + plugin regarding the reconciler + items: + type: string + type: array + version: + description: |- + Version is the version of the plugin loaded by the + latest reconciliation loop + type: string + walCapabilities: + description: |- + WALCapabilities are the list of capabilities of the + plugin regarding the WAL management + items: + type: string + type: array + required: + - name + - version + type: object + type: array + poolerIntegrations: + description: The integration needed by poolers referencing the cluster + properties: + pgBouncerIntegration: + description: PgBouncerIntegrationStatus encapsulates the needed + integration for the pgbouncer poolers referencing the cluster + properties: + secrets: + items: + type: string + type: array + type: object + type: object + pvcCount: + description: How many PVCs have been created by this cluster + format: int32 + type: integer + readService: + description: Current list of read pods + type: string + readyInstances: + description: The total number of ready instances in the cluster. It + is equal to the number of ready instance pods. + type: integer + resizingPVC: + description: List of all the PVCs that have ResizingPVC condition. + items: + type: string + type: array + secretsResourceVersion: + description: |- + The list of resource versions of the secrets + managed by the operator. Every change here is done in the + interest of the instance manager, which will refresh the + secret data + properties: + applicationSecretVersion: + description: The resource version of the "app" user secret + type: string + barmanEndpointCA: + description: The resource version of the Barman Endpoint CA if + provided + type: string + caSecretVersion: + description: Unused. Retained for compatibility with old versions. + type: string + clientCaSecretVersion: + description: The resource version of the PostgreSQL client-side + CA secret version + type: string + externalClusterSecretVersion: + additionalProperties: + type: string + description: The resource versions of the external cluster secrets + type: object + managedRoleSecretVersion: + additionalProperties: + type: string + description: The resource versions of the managed roles secrets + type: object + metrics: + additionalProperties: + type: string + description: |- + A map with the versions of all the secrets used to pass metrics. + Map keys are the secret names, map values are the versions + type: object + replicationSecretVersion: + description: The resource version of the "streaming_replica" user + secret + type: string + serverCaSecretVersion: + description: The resource version of the PostgreSQL server-side + CA secret version + type: string + serverSecretVersion: + description: The resource version of the PostgreSQL server-side + secret version + type: string + superuserSecretVersion: + description: The resource version of the "postgres" user secret + type: string + type: object + switchReplicaClusterStatus: + description: SwitchReplicaClusterStatus is the status of the switch + to replica cluster + properties: + inProgress: + description: InProgress indicates if there is an ongoing procedure + of switching a cluster to a replica cluster. + type: boolean + type: object + tablespacesStatus: + description: TablespacesStatus reports the state of the declarative + tablespaces in the cluster + items: + description: TablespaceState represents the state of a tablespace + in a cluster + properties: + error: + description: Error is the reconciliation error, if any + type: string + name: + description: Name is the name of the tablespace + type: string + owner: + description: Owner is the PostgreSQL user owning the tablespace + type: string + state: + description: State is the latest reconciliation state + type: string + required: + - name + - state + type: object + type: array + targetPrimary: + description: |- + Target primary instance, this is different from the previous one + during a switchover or a failover + type: string + targetPrimaryTimestamp: + description: The timestamp when the last request for a new primary + has occurred + type: string + timelineID: + description: The timeline of the Postgres cluster + type: integer + topology: + description: Instances topology. + properties: + instances: + additionalProperties: + additionalProperties: + type: string + description: PodTopologyLabels represent the topology of a Pod. + map[labelName]labelValue + type: object + description: Instances contains the pod topology of the instances + type: object + nodesUsed: + description: |- + NodesUsed represents the count of distinct nodes accommodating the instances. + A value of '1' suggests that all instances are hosted on a single node, + implying the absence of High Availability (HA). Ideally, this value should + be the same as the number of instances in the Postgres HA cluster, implying + shared nothing architecture on the compute side. + format: int32 + type: integer + successfullyExtracted: + description: |- + SuccessfullyExtracted indicates if the topology data was extract. It is useful to enact fallback behaviors + in synchronous replica election in case of failures + type: boolean + type: object + unusablePVC: + description: List of all the PVCs that are unusable because another + PVC is missing + items: + type: string + type: array + writeService: + description: Current write pod + type: string + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: + scale: + specReplicasPath: .spec.instances + statusReplicasPath: .status.instances + status: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.15.0 + name: imagecatalogs.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: ImageCatalog + listKind: ImageCatalogList + plural: imagecatalogs + singular: imagecatalog + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + name: v1 + schema: + openAPIV3Schema: + description: ImageCatalog is the Schema for the imagecatalogs API + properties: + apiVersion: + description: |- + APIVersion defines the versioned schema of this representation of an object. + Servers should convert recognized schemas to the latest internal value, and + may reject unrecognized values. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + type: string + kind: + description: |- + Kind is a string value representing the REST resource this object represents. + Servers may infer this from the endpoint the client submits requests to. + Cannot be updated. + In CamelCase. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + type: string + metadata: + type: object + spec: + description: |- + Specification of the desired behavior of the ImageCatalog. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + images: + description: List of CatalogImages available in the catalog + items: + description: CatalogImage defines the image and major version + properties: + image: + description: The image reference + type: string + major: + description: The PostgreSQL major version of the image. Must + be unique within the catalog. + minimum: 10 + type: integer + required: + - image + - major + type: object + maxItems: 8 + minItems: 1 + type: array + x-kubernetes-validations: + - message: Images must have unique major versions + rule: self.all(e, self.filter(f, f.major==e.major).size() == 1) + required: + - images + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.15.0 + name: poolers.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: Pooler + listKind: PoolerList + plural: poolers + singular: pooler + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - jsonPath: .spec.cluster.name + name: Cluster + type: string + - jsonPath: .spec.type + name: Type + type: string + name: v1 + schema: + openAPIV3Schema: + description: Pooler is the Schema for the poolers API + properties: + apiVersion: + description: |- + APIVersion defines the versioned schema of this representation of an object. + Servers should convert recognized schemas to the latest internal value, and + may reject unrecognized values. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + type: string + kind: + description: |- + Kind is a string value representing the REST resource this object represents. + Servers may infer this from the endpoint the client submits requests to. + Cannot be updated. + In CamelCase. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + type: string + metadata: + type: object + spec: + description: |- + Specification of the desired behavior of the Pooler. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + cluster: + description: |- + This is the cluster reference on which the Pooler will work. + Pooler name should never match with any cluster name within the same namespace. + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + deploymentStrategy: + description: The deployment strategy to use for pgbouncer to replace + existing pods with new ones + properties: + rollingUpdate: + description: |- + Rolling update config params. Present only if DeploymentStrategyType = + RollingUpdate. + --- + TODO: Update this to follow our convention for oneOf, whatever we decide it + to be. + properties: + maxSurge: + anyOf: + - type: integer + - type: string + description: |- + The maximum number of pods that can be scheduled above the desired number of + pods. + Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). + This can not be 0 if MaxUnavailable is 0. + Absolute number is calculated from percentage by rounding up. + Defaults to 25%. + Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when + the rolling update starts, such that the total number of old and new pods do not exceed + 130% of desired pods. Once old pods have been killed, + new ReplicaSet can be scaled up further, ensuring that total number of pods running + at any time during the update is at most 130% of desired pods. + x-kubernetes-int-or-string: true + maxUnavailable: + anyOf: + - type: integer + - type: string + description: |- + The maximum number of pods that can be unavailable during the update. + Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). + Absolute number is calculated from percentage by rounding down. + This can not be 0 if MaxSurge is 0. + Defaults to 25%. + Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods + immediately when the rolling update starts. Once new pods are ready, old ReplicaSet + can be scaled down further, followed by scaling up the new ReplicaSet, ensuring + that the total number of pods available at all times during the update is at + least 70% of desired pods. + x-kubernetes-int-or-string: true + type: object + type: + description: Type of deployment. Can be "Recreate" or "RollingUpdate". + Default is RollingUpdate. + type: string + type: object + instances: + default: 1 + description: 'The number of replicas we want. Default: 1.' + format: int32 + type: integer + monitoring: + description: The configuration of the monitoring infrastructure of + this pooler. + properties: + enablePodMonitor: + default: false + description: Enable or disable the `PodMonitor` + type: boolean + podMonitorMetricRelabelings: + description: The list of metric relabelings for the `PodMonitor`. + Applied to samples before ingestion. + items: + description: |- + RelabelConfig allows dynamic rewriting of the label set for targets, alerts, + scraped samples and remote write samples. + + + More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config + properties: + action: + default: replace + description: |- + Action to perform based on the regex matching. + + + `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. + `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. + + + Default: "Replace" + enum: + - replace + - Replace + - keep + - Keep + - drop + - Drop + - hashmod + - HashMod + - labelmap + - LabelMap + - labeldrop + - LabelDrop + - labelkeep + - LabelKeep + - lowercase + - Lowercase + - uppercase + - Uppercase + - keepequal + - KeepEqual + - dropequal + - DropEqual + type: string + modulus: + description: |- + Modulus to take of the hash of the source label values. + + + Only applicable when the action is `HashMod`. + format: int64 + type: integer + regex: + description: Regular expression against which the extracted + value is matched. + type: string + replacement: + description: |- + Replacement value against which a Replace action is performed if the + regular expression matches. + + + Regex capture groups are available. + type: string + separator: + description: Separator is the string between concatenated + SourceLabels. + type: string + sourceLabels: + description: |- + The source labels select values from existing labels. Their content is + concatenated using the configured Separator and matched against the + configured regular expression. + items: + description: |- + LabelName is a valid Prometheus label name which may only contain ASCII + letters, numbers, as well as underscores. + pattern: ^[a-zA-Z_][a-zA-Z0-9_]*$ + type: string + type: array + targetLabel: + description: |- + Label to which the resulting string is written in a replacement. + + + It is mandatory for `Replace`, `HashMod`, `Lowercase`, `Uppercase`, + `KeepEqual` and `DropEqual` actions. + + + Regex capture groups are available. + type: string + type: object + type: array + podMonitorRelabelings: + description: The list of relabelings for the `PodMonitor`. Applied + to samples before scraping. + items: + description: |- + RelabelConfig allows dynamic rewriting of the label set for targets, alerts, + scraped samples and remote write samples. + + + More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config + properties: + action: + default: replace + description: |- + Action to perform based on the regex matching. + + + `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. + `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. + + + Default: "Replace" + enum: + - replace + - Replace + - keep + - Keep + - drop + - Drop + - hashmod + - HashMod + - labelmap + - LabelMap + - labeldrop + - LabelDrop + - labelkeep + - LabelKeep + - lowercase + - Lowercase + - uppercase + - Uppercase + - keepequal + - KeepEqual + - dropequal + - DropEqual + type: string + modulus: + description: |- + Modulus to take of the hash of the source label values. + + + Only applicable when the action is `HashMod`. + format: int64 + type: integer + regex: + description: Regular expression against which the extracted + value is matched. + type: string + replacement: + description: |- + Replacement value against which a Replace action is performed if the + regular expression matches. + + + Regex capture groups are available. + type: string + separator: + description: Separator is the string between concatenated + SourceLabels. + type: string + sourceLabels: + description: |- + The source labels select values from existing labels. Their content is + concatenated using the configured Separator and matched against the + configured regular expression. + items: + description: |- + LabelName is a valid Prometheus label name which may only contain ASCII + letters, numbers, as well as underscores. + pattern: ^[a-zA-Z_][a-zA-Z0-9_]*$ + type: string + type: array + targetLabel: + description: |- + Label to which the resulting string is written in a replacement. + + + It is mandatory for `Replace`, `HashMod`, `Lowercase`, `Uppercase`, + `KeepEqual` and `DropEqual` actions. + + + Regex capture groups are available. + type: string + type: object + type: array + type: object + pgbouncer: + description: The PgBouncer configuration + properties: + authQuery: + description: |- + The query that will be used to download the hash of the password + of a certain user. Default: "SELECT usename, passwd FROM public.user_search($1)". + In case it is specified, also an AuthQuerySecret has to be specified and + no automatic CNPG Cluster integration will be triggered. + type: string + authQuerySecret: + description: |- + The credentials of the user that need to be used for the authentication + query. In case it is specified, also an AuthQuery + (e.g. "SELECT usename, passwd FROM pg_catalog.pg_shadow WHERE usename=$1") + has to be specified and no automatic CNPG Cluster integration will be triggered. + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + parameters: + additionalProperties: + type: string + description: |- + Additional parameters to be passed to PgBouncer - please check + the CNPG documentation for a list of options you can configure + type: object + paused: + default: false + description: |- + When set to `true`, PgBouncer will disconnect from the PostgreSQL + server, first waiting for all queries to complete, and pause all new + client connections until this value is set to `false` (default). Internally, + the operator calls PgBouncer's `PAUSE` and `RESUME` commands. + type: boolean + pg_hba: + description: |- + PostgreSQL Host Based Authentication rules (lines to be appended + to the pg_hba.conf file) + items: + type: string + type: array + poolMode: + default: session + description: 'The pool mode. Default: `session`.' + enum: + - session + - transaction + type: string + type: object + serviceTemplate: + description: Template for the Service to be created + properties: + metadata: + description: |- + Standard object's metadata. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + properties: + annotations: + additionalProperties: + type: string + description: |- + Annotations is an unstructured key value map stored with a resource that may be + set by external tools to store and retrieve arbitrary metadata. They are not + queryable and should be preserved when modifying objects. + More info: http://kubernetes.io/docs/user-guide/annotations + type: object + labels: + additionalProperties: + type: string + description: |- + Map of string keys and values that can be used to organize and categorize + (scope and select) objects. May match selectors of replication controllers + and services. + More info: http://kubernetes.io/docs/user-guide/labels + type: object + type: object + spec: + description: |- + Specification of the desired behavior of the service. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + allocateLoadBalancerNodePorts: + description: |- + allocateLoadBalancerNodePorts defines if NodePorts will be automatically + allocated for services with type LoadBalancer. Default is "true". It + may be set to "false" if the cluster load-balancer does not rely on + NodePorts. If the caller requests specific NodePorts (by specifying a + value), those requests will be respected, regardless of this field. + This field may only be set for services with type LoadBalancer and will + be cleared if the type is changed to any other type. + type: boolean + clusterIP: + description: |- + clusterIP is the IP address of the service and is usually assigned + randomly. If an address is specified manually, is in-range (as per + system configuration), and is not in use, it will be allocated to the + service; otherwise creation of the service will fail. This field may not + be changed through updates unless the type field is also being changed + to ExternalName (which requires this field to be blank) or the type + field is being changed from ExternalName (in which case this field may + optionally be specified, as describe above). Valid values are "None", + empty string (""), or a valid IP address. Setting this to "None" makes a + "headless service" (no virtual IP), which is useful when direct endpoint + connections are preferred and proxying is not required. Only applies to + types ClusterIP, NodePort, and LoadBalancer. If this field is specified + when creating a Service of type ExternalName, creation will fail. This + field will be wiped when updating a Service to type ExternalName. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + type: string + clusterIPs: + description: |- + ClusterIPs is a list of IP addresses assigned to this service, and are + usually assigned randomly. If an address is specified manually, is + in-range (as per system configuration), and is not in use, it will be + allocated to the service; otherwise creation of the service will fail. + This field may not be changed through updates unless the type field is + also being changed to ExternalName (which requires this field to be + empty) or the type field is being changed from ExternalName (in which + case this field may optionally be specified, as describe above). Valid + values are "None", empty string (""), or a valid IP address. Setting + this to "None" makes a "headless service" (no virtual IP), which is + useful when direct endpoint connections are preferred and proxying is + not required. Only applies to types ClusterIP, NodePort, and + LoadBalancer. If this field is specified when creating a Service of type + ExternalName, creation will fail. This field will be wiped when updating + a Service to type ExternalName. If this field is not specified, it will + be initialized from the clusterIP field. If this field is specified, + clients must ensure that clusterIPs[0] and clusterIP have the same + value. + + + This field may hold a maximum of two entries (dual-stack IPs, in either order). + These IPs must correspond to the values of the ipFamilies field. Both + clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + items: + type: string + type: array + x-kubernetes-list-type: atomic + externalIPs: + description: |- + externalIPs is a list of IP addresses for which nodes in the cluster + will also accept traffic for this service. These IPs are not managed by + Kubernetes. The user is responsible for ensuring that traffic arrives + at a node with this IP. A common example is external load-balancers + that are not part of the Kubernetes system. + items: + type: string + type: array + x-kubernetes-list-type: atomic + externalName: + description: |- + externalName is the external reference that discovery mechanisms will + return as an alias for this service (e.g. a DNS CNAME record). No + proxying will be involved. Must be a lowercase RFC-1123 hostname + (https://tools.ietf.org/html/rfc1123) and requires `type` to be "ExternalName". + type: string + externalTrafficPolicy: + description: |- + externalTrafficPolicy describes how nodes distribute service traffic they + receive on one of the Service's "externally-facing" addresses (NodePorts, + ExternalIPs, and LoadBalancer IPs). If set to "Local", the proxy will configure + the service in a way that assumes that external load balancers will take care + of balancing the service traffic between nodes, and so each node will deliver + traffic only to the node-local endpoints of the service, without masquerading + the client source IP. (Traffic mistakenly sent to a node with no endpoints will + be dropped.) The default value, "Cluster", uses the standard behavior of + routing to all endpoints evenly (possibly modified by topology and other + features). Note that traffic sent to an External IP or LoadBalancer IP from + within the cluster will always get "Cluster" semantics, but clients sending to + a NodePort from within the cluster may need to take traffic policy into account + when picking a node. + type: string + healthCheckNodePort: + description: |- + healthCheckNodePort specifies the healthcheck nodePort for the service. + This only applies when type is set to LoadBalancer and + externalTrafficPolicy is set to Local. If a value is specified, is + in-range, and is not in use, it will be used. If not specified, a value + will be automatically allocated. External systems (e.g. load-balancers) + can use this port to determine if a given node holds endpoints for this + service or not. If this field is specified when creating a Service + which does not need it, creation will fail. This field will be wiped + when updating a Service to no longer need it (e.g. changing type). + This field cannot be updated once set. + format: int32 + type: integer + internalTrafficPolicy: + description: |- + InternalTrafficPolicy describes how nodes distribute service traffic they + receive on the ClusterIP. If set to "Local", the proxy will assume that pods + only want to talk to endpoints of the service on the same node as the pod, + dropping the traffic if there are no local endpoints. The default value, + "Cluster", uses the standard behavior of routing to all endpoints evenly + (possibly modified by topology and other features). + type: string + ipFamilies: + description: |- + IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this + service. This field is usually assigned automatically based on cluster + configuration and the ipFamilyPolicy field. If this field is specified + manually, the requested family is available in the cluster, + and ipFamilyPolicy allows it, it will be used; otherwise creation of + the service will fail. This field is conditionally mutable: it allows + for adding or removing a secondary IP family, but it does not allow + changing the primary IP family of the Service. Valid values are "IPv4" + and "IPv6". This field only applies to Services of types ClusterIP, + NodePort, and LoadBalancer, and does apply to "headless" services. + This field will be wiped when updating a Service to type ExternalName. + + + This field may hold a maximum of two entries (dual-stack families, in + either order). These families must correspond to the values of the + clusterIPs field, if specified. Both clusterIPs and ipFamilies are + governed by the ipFamilyPolicy field. + items: + description: |- + IPFamily represents the IP Family (IPv4 or IPv6). This type is used + to express the family of an IP expressed by a type (e.g. service.spec.ipFamilies). + type: string + type: array + x-kubernetes-list-type: atomic + ipFamilyPolicy: + description: |- + IPFamilyPolicy represents the dual-stack-ness requested or required by + this Service. If there is no value provided, then this field will be set + to SingleStack. Services can be "SingleStack" (a single IP family), + "PreferDualStack" (two IP families on dual-stack configured clusters or + a single IP family on single-stack clusters), or "RequireDualStack" + (two IP families on dual-stack configured clusters, otherwise fail). The + ipFamilies and clusterIPs fields depend on the value of this field. This + field will be wiped when updating a service to type ExternalName. + type: string + loadBalancerClass: + description: |- + loadBalancerClass is the class of the load balancer implementation this Service belongs to. + If specified, the value of this field must be a label-style identifier, with an optional prefix, + e.g. "internal-vip" or "example.com/internal-vip". Unprefixed names are reserved for end-users. + This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load + balancer implementation is used, today this is typically done through the cloud provider integration, + but should apply for any default implementation. If set, it is assumed that a load balancer + implementation is watching for Services with a matching class. Any default load balancer + implementation (e.g. cloud providers) should ignore Services that set this field. + This field can only be set when creating or updating a Service to type 'LoadBalancer'. + Once set, it can not be changed. This field will be wiped when a service is updated to a non 'LoadBalancer' type. + type: string + loadBalancerIP: + description: |- + Only applies to Service Type: LoadBalancer. + This feature depends on whether the underlying cloud-provider supports specifying + the loadBalancerIP when a load balancer is created. + This field will be ignored if the cloud-provider does not support the feature. + Deprecated: This field was under-specified and its meaning varies across implementations. + Using it is non-portable and it may not support dual-stack. + Users are encouraged to use implementation-specific annotations when available. + type: string + loadBalancerSourceRanges: + description: |- + If specified and supported by the platform, this will restrict traffic through the cloud-provider + load-balancer will be restricted to the specified client IPs. This field will be ignored if the + cloud-provider does not support the feature." + More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/ + items: + type: string + type: array + x-kubernetes-list-type: atomic + ports: + description: |- + The list of ports that are exposed by this service. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + items: + description: ServicePort contains information on service's + port. + properties: + appProtocol: + description: |- + The application protocol for this port. + This is used as a hint for implementations to offer richer behavior for protocols that they understand. + This field follows standard Kubernetes label syntax. + Valid values are either: + + + * Un-prefixed protocol names - reserved for IANA standard service names (as per + RFC-6335 and https://www.iana.org/assignments/service-names). + + + * Kubernetes-defined prefixed names: + * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior- + * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455 + * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455 + + + * Other protocols should use implementation-defined prefixed names such as + mycompany.com/my-custom-protocol. + type: string + name: + description: |- + The name of this port within the service. This must be a DNS_LABEL. + All ports within a ServiceSpec must have unique names. When considering + the endpoints for a Service, this must match the 'name' field in the + EndpointPort. + Optional if only one ServicePort is defined on this service. + type: string + nodePort: + description: |- + The port on each node on which this service is exposed when type is + NodePort or LoadBalancer. Usually assigned by the system. If a value is + specified, in-range, and not in use it will be used, otherwise the + operation will fail. If not specified, a port will be allocated if this + Service requires one. If this field is specified when creating a + Service which does not need it, creation will fail. This field will be + wiped when updating a Service to no longer need it (e.g. changing type + from NodePort to ClusterIP). + More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + format: int32 + type: integer + port: + description: The port that will be exposed by this service. + format: int32 + type: integer + protocol: + default: TCP + description: |- + The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". + Default is TCP. + type: string + targetPort: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the pods targeted by the service. + Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + If this is a string, it will be looked up as a named port in the + target Pod's container ports. If this is not specified, the value + of the 'port' field is used (an identity map). + This field is ignored for services with clusterIP=None, and should be + omitted or set equal to the 'port' field. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service + x-kubernetes-int-or-string: true + required: + - port + type: object + type: array + x-kubernetes-list-map-keys: + - port + - protocol + x-kubernetes-list-type: map + publishNotReadyAddresses: + description: |- + publishNotReadyAddresses indicates that any agent which deals with endpoints for this + Service should disregard any indications of ready/not-ready. + The primary use case for setting this field is for a StatefulSet's Headless Service to + propagate SRV DNS records for its Pods for the purpose of peer discovery. + The Kubernetes controllers that generate Endpoints and EndpointSlice resources for + Services interpret this to mean that all endpoints are considered "ready" even if the + Pods themselves are not. Agents which consume only Kubernetes generated endpoints + through the Endpoints or EndpointSlice resources can safely assume this behavior. + type: boolean + selector: + additionalProperties: + type: string + description: |- + Route service traffic to pods with label keys and values matching this + selector. If empty or not present, the service is assumed to have an + external process managing its endpoints, which Kubernetes will not + modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. + Ignored if type is ExternalName. + More info: https://kubernetes.io/docs/concepts/services-networking/service/ + type: object + x-kubernetes-map-type: atomic + sessionAffinity: + description: |- + Supports "ClientIP" and "None". Used to maintain session affinity. + Enable client IP based session affinity. + Must be ClientIP or None. + Defaults to None. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + type: string + sessionAffinityConfig: + description: sessionAffinityConfig contains the configurations + of session affinity. + properties: + clientIP: + description: clientIP contains the configurations of Client + IP based session affinity. + properties: + timeoutSeconds: + description: |- + timeoutSeconds specifies the seconds of ClientIP type session sticky time. + The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP". + Default value is 10800(for 3 hours). + format: int32 + type: integer + type: object + type: object + trafficDistribution: + description: |- + TrafficDistribution offers a way to express preferences for how traffic is + distributed to Service endpoints. Implementations can use this field as a + hint, but are not required to guarantee strict adherence. If the field is + not set, the implementation will apply its default routing strategy. If set + to "PreferClose", implementations should prioritize endpoints that are + topologically close (e.g., same zone). + This is an alpha field and requires enabling ServiceTrafficDistribution feature. + type: string + type: + description: |- + type determines how the Service is exposed. Defaults to ClusterIP. Valid + options are ExternalName, ClusterIP, NodePort, and LoadBalancer. + "ClusterIP" allocates a cluster-internal IP address for load-balancing + to endpoints. Endpoints are determined by the selector or if that is not + specified, by manual construction of an Endpoints object or + EndpointSlice objects. If clusterIP is "None", no virtual IP is + allocated and the endpoints are published as a set of endpoints rather + than a virtual IP. + "NodePort" builds on ClusterIP and allocates a port on every node which + routes to the same endpoints as the clusterIP. + "LoadBalancer" builds on NodePort and creates an external load-balancer + (if supported in the current cloud) which routes to the same endpoints + as the clusterIP. + "ExternalName" aliases this service to the specified externalName. + Several other fields do not apply to ExternalName services. + More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + type: string + type: object + type: object + template: + description: The template of the Pod to be created + properties: + metadata: + description: |- + Standard object's metadata. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + properties: + annotations: + additionalProperties: + type: string + description: |- + Annotations is an unstructured key value map stored with a resource that may be + set by external tools to store and retrieve arbitrary metadata. They are not + queryable and should be preserved when modifying objects. + More info: http://kubernetes.io/docs/user-guide/annotations + type: object + labels: + additionalProperties: + type: string + description: |- + Map of string keys and values that can be used to organize and categorize + (scope and select) objects. May match selectors of replication controllers + and services. + More info: http://kubernetes.io/docs/user-guide/labels + type: object + type: object + spec: + description: |- + Specification of the desired behavior of the pod. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + activeDeadlineSeconds: + description: |- + Optional duration in seconds the pod may be active on the node relative to + StartTime before the system will actively try to mark it failed and kill associated containers. + Value must be a positive integer. + format: int64 + type: integer + affinity: + description: If specified, the pod's scheduling constraints + properties: + nodeAffinity: + description: Describes node affinity scheduling rules + for the pod. + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node matches the corresponding matchExpressions; the + node(s) with the highest sum are the most preferred. + items: + description: |- + An empty preferred scheduling term matches all objects with implicit weight 0 + (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). + properties: + preference: + description: A node selector term, associated + with the corresponding weight. + properties: + matchExpressions: + description: A list of node selector requirements + by node's labels. + items: + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. + properties: + key: + description: The label key that the + selector applies to. + type: string + operator: + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchFields: + description: A list of node selector requirements + by node's fields. + items: + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. + properties: + key: + description: The label key that the + selector applies to. + type: string + operator: + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + weight: + description: Weight associated with matching + the corresponding nodeSelectorTerm, in the + range 1-100. + format: int32 + type: integer + required: + - preference + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + description: |- + If the affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to an update), the system + may or may not try to eventually evict the pod from its node. + properties: + nodeSelectorTerms: + description: Required. A list of node selector + terms. The terms are ORed. + items: + description: |- + A null or empty node selector term matches no objects. The requirements of + them are ANDed. + The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. + properties: + matchExpressions: + description: A list of node selector requirements + by node's labels. + items: + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. + properties: + key: + description: The label key that the + selector applies to. + type: string + operator: + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchFields: + description: A list of node selector requirements + by node's fields. + items: + description: |- + A node selector requirement is a selector that contains values, a key, and an operator + that relates the key and values. + properties: + key: + description: The label key that the + selector applies to. + type: string + operator: + description: |- + Represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + type: string + values: + description: |- + An array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. If the operator is Gt or Lt, the values + array must have a single element, which will be interpreted as an integer. + This array is replaced during a strategic merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + type: array + x-kubernetes-list-type: atomic + required: + - nodeSelectorTerms + type: object + x-kubernetes-map-type: atomic + type: object + podAffinity: + description: Describes pod affinity scheduling rules (e.g. + co-locate this pod in the same node, zone, etc. as some + other pod(s)). + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the + node(s) with the highest sum are the most preferred. + items: + description: The weights of all of the matched WeightedPodAffinityTerm + fields are added per-node to find the most preferred + node(s) + properties: + podAffinityTerm: + description: Required. A pod affinity term, + associated with the corresponding weight. + properties: + labelSelector: + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. + properties: + matchExpressions: + description: matchExpressions is a list + of label selector requirements. The + requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label + key that the selector applies + to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + properties: + matchExpressions: + description: matchExpressions is a list + of label selector requirements. The + requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label + key that the selector applies + to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. + type: string + required: + - topologyKey + type: object + weight: + description: |- + weight associated with matching the corresponding podAffinityTerm, + in the range 1-100. + format: int32 + type: integer + required: + - podAffinityTerm + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + description: |- + If the affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to a pod label update), the + system may or may not try to eventually evict the pod from its node. + When there are multiple elements, the lists of nodes corresponding to each + podAffinityTerm are intersected, i.e. all terms must be satisfied. + items: + description: |- + Defines a set of pods (namely those matching the labelSelector + relative to the given namespace(s)) that this pod should be + co-located (affinity) or not co-located (anti-affinity) with, + where co-located is defined as running on a node whose value of + the label with key matches that of any node on which + a pod of the set of pods is running + properties: + labelSelector: + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. + properties: + matchExpressions: + description: matchExpressions is a list + of label selector requirements. The requirements + are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key + that the selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + properties: + matchExpressions: + description: matchExpressions is a list + of label selector requirements. The requirements + are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key + that the selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. + type: string + required: + - topologyKey + type: object + type: array + x-kubernetes-list-type: atomic + type: object + podAntiAffinity: + description: Describes pod anti-affinity scheduling rules + (e.g. avoid putting this pod in the same node, zone, + etc. as some other pod(s)). + properties: + preferredDuringSchedulingIgnoredDuringExecution: + description: |- + The scheduler will prefer to schedule pods to nodes that satisfy + the anti-affinity expressions specified by this field, but it may choose + a node that violates one or more of the expressions. The node that is + most preferred is the one with the greatest sum of weights, i.e. + for each node that meets all of the scheduling requirements (resource + request, requiredDuringScheduling anti-affinity expressions, etc.), + compute a sum by iterating through the elements of this field and adding + "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the + node(s) with the highest sum are the most preferred. + items: + description: The weights of all of the matched WeightedPodAffinityTerm + fields are added per-node to find the most preferred + node(s) + properties: + podAffinityTerm: + description: Required. A pod affinity term, + associated with the corresponding weight. + properties: + labelSelector: + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. + properties: + matchExpressions: + description: matchExpressions is a list + of label selector requirements. The + requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label + key that the selector applies + to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + properties: + matchExpressions: + description: matchExpressions is a list + of label selector requirements. The + requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label + key that the selector applies + to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. + type: string + required: + - topologyKey + type: object + weight: + description: |- + weight associated with matching the corresponding podAffinityTerm, + in the range 1-100. + format: int32 + type: integer + required: + - podAffinityTerm + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + description: |- + If the anti-affinity requirements specified by this field are not met at + scheduling time, the pod will not be scheduled onto the node. + If the anti-affinity requirements specified by this field cease to be met + at some point during pod execution (e.g. due to a pod label update), the + system may or may not try to eventually evict the pod from its node. + When there are multiple elements, the lists of nodes corresponding to each + podAffinityTerm are intersected, i.e. all terms must be satisfied. + items: + description: |- + Defines a set of pods (namely those matching the labelSelector + relative to the given namespace(s)) that this pod should be + co-located (affinity) or not co-located (anti-affinity) with, + where co-located is defined as running on a node whose value of + the label with key matches that of any node on which + a pod of the set of pods is running + properties: + labelSelector: + description: |- + A label query over a set of resources, in this case pods. + If it's null, this PodAffinityTerm matches with no Pods. + properties: + matchExpressions: + description: matchExpressions is a list + of label selector requirements. The requirements + are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key + that the selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both matchLabelKeys and labelSelector. + Also, matchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + description: |- + MismatchLabelKeys is a set of pod label keys to select which pods will + be taken into consideration. The keys are used to lookup values from the + incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + to select the group of existing pods which pods will be taken into consideration + for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + pod labels will be ignored. The default value is empty. + The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate. + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + description: |- + A label query over the set of namespaces that the term applies to. + The term is applied to the union of the namespaces selected by this field + and the ones listed in the namespaces field. + null selector and null or empty namespaces list means "this pod's namespace". + An empty selector ({}) matches all namespaces. + properties: + matchExpressions: + description: matchExpressions is a list + of label selector requirements. The requirements + are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key + that the selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + description: |- + namespaces specifies a static list of namespace names that the term applies to. + The term is applied to the union of the namespaces listed in this field + and the ones selected by namespaceSelector. + null or empty namespaces list and null namespaceSelector means "this pod's namespace". + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + description: |- + This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + the labelSelector in the specified namespaces, where co-located is defined as running on a node + whose value of the label with key topologyKey matches that of any node on which any of the + selected pods is running. + Empty topologyKey is not allowed. + type: string + required: + - topologyKey + type: object + type: array + x-kubernetes-list-type: atomic + type: object + type: object + automountServiceAccountToken: + description: AutomountServiceAccountToken indicates whether + a service account token should be automatically mounted. + type: boolean + containers: + description: |- + List of containers belonging to the pod. + Containers cannot currently be added or removed. + There must be at least one container in a Pod. + Cannot be updated. + items: + description: A single application container that you want + to run within a pod. + properties: + args: + description: |- + Arguments to the entrypoint. + The container image's CMD is used if this is not provided. + Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + of whether the variable exists or not. Cannot be updated. + More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + items: + type: string + type: array + x-kubernetes-list-type: atomic + command: + description: |- + Entrypoint array. Not executed within a shell. + The container image's ENTRYPOINT is used if this is not provided. + Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + of whether the variable exists or not. Cannot be updated. + More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + items: + type: string + type: array + x-kubernetes-list-type: atomic + env: + description: |- + List of environment variables to set in the container. + Cannot be updated. + items: + description: EnvVar represents an environment variable + present in a Container. + properties: + name: + description: Name of the environment variable. + Must be a C_IDENTIFIER. + type: string + value: + description: |- + Variable references $(VAR_NAME) are expanded + using the previously defined environment variables in the container and + any service environment variables. If a variable cannot be resolved, + the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". + Escaped references will never be expanded, regardless of whether the variable + exists or not. + Defaults to "". + type: string + valueFrom: + description: Source for the environment variable's + value. Cannot be used if value is not empty. + properties: + configMapKeyRef: + description: Selects a key of a ConfigMap. + properties: + key: + description: The key to select. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the ConfigMap + or its key must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + description: |- + Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, + spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. + properties: + apiVersion: + description: Version of the schema the + FieldPath is written in terms of, defaults + to "v1". + type: string + fieldPath: + description: Path of the field to select + in the specified API version. + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. + properties: + containerName: + description: 'Container name: required + for volumes, optional for env vars' + type: string + divisor: + anyOf: + - type: integer + - type: string + description: Specifies the output format + of the exposed resources, defaults to + "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + description: Selects a key of a secret in + the pod's namespace + properties: + key: + description: The key of the secret to + select from. Must be a valid secret + key. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the Secret + or its key must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + envFrom: + description: |- + List of sources to populate environment variables in the container. + The keys defined within a source must be a C_IDENTIFIER. All invalid keys + will be reported as an event when the container is starting. When a key exists in multiple + sources, the value associated with the last source will take precedence. + Values defined by an Env with a duplicate key will take precedence. + Cannot be updated. + items: + description: EnvFromSource represents the source of + a set of ConfigMaps + properties: + configMapRef: + description: The ConfigMap to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the ConfigMap + must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + description: An optional identifier to prepend + to each key in the ConfigMap. Must be a C_IDENTIFIER. + type: string + secretRef: + description: The Secret to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the Secret must + be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + x-kubernetes-list-type: atomic + image: + description: |- + Container image name. + More info: https://kubernetes.io/docs/concepts/containers/images + This field is optional to allow higher level config management to default or override + container images in workload controllers like Deployments and StatefulSets. + type: string + imagePullPolicy: + description: |- + Image pull policy. + One of Always, Never, IfNotPresent. + Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/containers/images#updating-images + type: string + lifecycle: + description: |- + Actions that the management system should take in response to container lifecycle events. + Cannot be updated. + properties: + postStart: + description: |- + PostStart is called immediately after a container is created. If the handler fails, + the container is terminated and restarted according to its restart policy. + Other management of the container blocks until the hook completes. + More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the + request. HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP + server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + sleep: + description: Sleep represents the duration that + the container should sleep before being terminated. + properties: + seconds: + description: Seconds is the number of seconds + to sleep. + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for the backward compatibility. There are no validation of this field and + lifecycle hooks will fail in runtime when tcp handler is specified. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + preStop: + description: |- + PreStop is called immediately before a container is terminated due to an + API request or management event such as liveness/startup probe failure, + preemption, resource contention, etc. The handler is not called if the + container crashes or exits. The Pod's termination grace period countdown begins before the + PreStop hook is executed. Regardless of the outcome of the handler, the + container will eventually terminate within the Pod's termination grace + period (unless delayed by finalizers). Other management of the container blocks until the hook completes + or until the termination grace period is reached. + More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the + request. HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP + server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + sleep: + description: Sleep represents the duration that + the container should sleep before being terminated. + properties: + seconds: + description: Seconds is the number of seconds + to sleep. + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for the backward compatibility. There are no validation of this field and + lifecycle hooks will fail in runtime when tcp handler is specified. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + type: object + livenessProbe: + description: |- + Periodic probe of container liveness. + Container will be restarted if the probe fails. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. + format: int32 + type: integer + grpc: + description: GRPC specifies an action involving + a GRPC port. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. + HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + initialDelaySeconds: + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + periodSeconds: + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. + format: int32 + type: integer + successThreshold: + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + format: int32 + type: integer + tcpSocket: + description: TCPSocket specifies an action involving + a TCP port. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + timeoutSeconds: + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + type: object + name: + description: |- + Name of the container specified as a DNS_LABEL. + Each container in a pod must have a unique name (DNS_LABEL). + Cannot be updated. + type: string + ports: + description: |- + List of ports to expose from the container. Not specifying a port here + DOES NOT prevent that port from being exposed. Any port which is + listening on the default "0.0.0.0" address inside a container will be + accessible from the network. + Modifying this array with strategic merge patch may corrupt the data. + For more information See https://github.com/kubernetes/kubernetes/issues/108255. + Cannot be updated. + items: + description: ContainerPort represents a network port + in a single container. + properties: + containerPort: + description: |- + Number of port to expose on the pod's IP address. + This must be a valid port number, 0 < x < 65536. + format: int32 + type: integer + hostIP: + description: What host IP to bind the external + port to. + type: string + hostPort: + description: |- + Number of port to expose on the host. + If specified, this must be a valid port number, 0 < x < 65536. + If HostNetwork is specified, this must match ContainerPort. + Most containers do not need this. + format: int32 + type: integer + name: + description: |- + If specified, this must be an IANA_SVC_NAME and unique within the pod. Each + named port in a pod must have a unique name. Name for the port that can be + referred to by services. + type: string + protocol: + default: TCP + description: |- + Protocol for port. Must be UDP, TCP, or SCTP. + Defaults to "TCP". + type: string + required: + - containerPort + type: object + type: array + x-kubernetes-list-map-keys: + - containerPort + - protocol + x-kubernetes-list-type: map + readinessProbe: + description: |- + Periodic probe of container service readiness. + Container will be removed from service endpoints if the probe fails. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. + format: int32 + type: integer + grpc: + description: GRPC specifies an action involving + a GRPC port. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. + HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + initialDelaySeconds: + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + periodSeconds: + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. + format: int32 + type: integer + successThreshold: + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + format: int32 + type: integer + tcpSocket: + description: TCPSocket specifies an action involving + a TCP port. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + timeoutSeconds: + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + type: object + resizePolicy: + description: Resources resize policy for the container. + items: + description: ContainerResizePolicy represents resource + resize policy for the container. + properties: + resourceName: + description: |- + Name of the resource to which this resource resize policy applies. + Supported values: cpu, memory. + type: string + restartPolicy: + description: |- + Restart policy to apply when specified resource is resized. + If not specified, it defaults to NotRequired. + type: string + required: + - resourceName + - restartPolicy + type: object + type: array + x-kubernetes-list-type: atomic + resources: + description: |- + Compute Resources required by this container. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + properties: + claims: + description: |- + Claims lists the names of resources, defined in spec.resourceClaims, + that are used by this container. + + + This is an alpha field and requires enabling the + DynamicResourceAllocation feature gate. + + + This field is immutable. It can only be set for containers. + items: + description: ResourceClaim references one entry + in PodSpec.ResourceClaims. + properties: + name: + description: |- + Name must match the name of one entry in pod.spec.resourceClaims of + the Pod where this field is used. It makes that resource available + inside a container. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + restartPolicy: + description: |- + RestartPolicy defines the restart behavior of individual containers in a pod. + This field may only be set for init containers, and the only allowed value is "Always". + For non-init containers or when this field is not specified, + the restart behavior is defined by the Pod's restart policy and the container type. + Setting the RestartPolicy as "Always" for the init container will have the following effect: + this init container will be continually restarted on + exit until all regular containers have terminated. Once all regular + containers have completed, all init containers with restartPolicy "Always" + will be shut down. This lifecycle differs from normal init containers and + is often referred to as a "sidecar" container. Although this init + container still starts in the init container sequence, it does not wait + for the container to complete before proceeding to the next init + container. Instead, the next init container starts immediately after this + init container is started, or after any startupProbe has successfully + completed. + type: string + securityContext: + description: |- + SecurityContext defines the security options the container should be run with. + If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. + More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + properties: + allowPrivilegeEscalation: + description: |- + AllowPrivilegeEscalation controls whether a process can gain more + privileges than its parent process. This bool directly controls if + the no_new_privs flag will be set on the container process. + AllowPrivilegeEscalation is true always when the container is: + 1) run as Privileged + 2) has CAP_SYS_ADMIN + Note that this field cannot be set when spec.os.name is windows. + type: boolean + appArmorProfile: + description: |- + appArmorProfile is the AppArmor options to use by this container. If set, this profile + overrides the pod's appArmorProfile. + Note that this field cannot be set when spec.os.name is windows. + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile loaded on the node that should be used. + The profile must be preconfigured on the node to work. + Must match the loaded name of the profile. + Must be set if and only if type is "Localhost". + type: string + type: + description: |- + type indicates which kind of AppArmor profile will be applied. + Valid options are: + Localhost - a profile pre-loaded on the node. + RuntimeDefault - the container runtime's default profile. + Unconfined - no AppArmor enforcement. + type: string + required: + - type + type: object + capabilities: + description: |- + The capabilities to add/drop when running containers. + Defaults to the default set of capabilities granted by the container runtime. + Note that this field cannot be set when spec.os.name is windows. + properties: + add: + description: Added capabilities + items: + description: Capability represent POSIX capabilities + type + type: string + type: array + x-kubernetes-list-type: atomic + drop: + description: Removed capabilities + items: + description: Capability represent POSIX capabilities + type + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + description: |- + Run container in privileged mode. + Processes in privileged containers are essentially equivalent to root on the host. + Defaults to false. + Note that this field cannot be set when spec.os.name is windows. + type: boolean + procMount: + description: |- + procMount denotes the type of proc mount to use for the containers. + The default is DefaultProcMount which uses the container runtime defaults for + readonly paths and masked paths. + This requires the ProcMountType feature flag to be enabled. + Note that this field cannot be set when spec.os.name is windows. + type: string + readOnlyRootFilesystem: + description: |- + Whether this container has a read-only root filesystem. + Default is false. + Note that this field cannot be set when spec.os.name is windows. + type: boolean + runAsGroup: + description: |- + The GID to run the entrypoint of the container process. + Uses runtime default if unset. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. + format: int64 + type: integer + runAsNonRoot: + description: |- + Indicates that the container must run as a non-root user. + If true, the Kubelet will validate the image at runtime to ensure that it + does not run as UID 0 (root) and fail to start the container if it does. + If unset or false, no such validation will be performed. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + type: boolean + runAsUser: + description: |- + The UID to run the entrypoint of the container process. + Defaults to user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. + format: int64 + type: integer + seLinuxOptions: + description: |- + The SELinux context to be applied to the container. + If unspecified, the container runtime will allocate a random SELinux context for each + container. May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. + properties: + level: + description: Level is SELinux level label that + applies to the container. + type: string + role: + description: Role is a SELinux role label that + applies to the container. + type: string + type: + description: Type is a SELinux type label that + applies to the container. + type: string + user: + description: User is a SELinux user label that + applies to the container. + type: string + type: object + seccompProfile: + description: |- + The seccomp options to use by this container. If seccomp options are + provided at both the pod & container level, the container options + override the pod options. + Note that this field cannot be set when spec.os.name is windows. + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile defined in a file on the node should be used. + The profile must be preconfigured on the node to work. + Must be a descending path, relative to the kubelet's configured seccomp profile location. + Must be set if type is "Localhost". Must NOT be set for any other type. + type: string + type: + description: |- + type indicates which kind of seccomp profile will be applied. + Valid options are: + + + Localhost - a profile defined in a file on the node should be used. + RuntimeDefault - the container runtime default profile should be used. + Unconfined - no profile should be applied. + type: string + required: + - type + type: object + windowsOptions: + description: |- + The Windows specific settings applied to all containers. + If unspecified, the options from the PodSecurityContext will be used. + If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is linux. + properties: + gmsaCredentialSpec: + description: |- + GMSACredentialSpec is where the GMSA admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the + GMSA credential spec named by the GMSACredentialSpecName field. + type: string + gmsaCredentialSpecName: + description: GMSACredentialSpecName is the name + of the GMSA credential spec to use. + type: string + hostProcess: + description: |- + HostProcess determines if a container should be run as a 'Host Process' container. + All of a Pod's containers must have the same effective HostProcess value + (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + In addition, if HostProcess is true then HostNetwork must also be set to true. + type: boolean + runAsUserName: + description: |- + The UserName in Windows to run the entrypoint of the container process. + Defaults to the user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + type: string + type: object + type: object + startupProbe: + description: |- + StartupProbe indicates that the Pod has successfully initialized. + If specified, no other probes are executed until this completes successfully. + If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. + This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, + when it might take a long time to load data or warm a cache, than during steady-state operation. + This cannot be updated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. + format: int32 + type: integer + grpc: + description: GRPC specifies an action involving + a GRPC port. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. + HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + initialDelaySeconds: + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + periodSeconds: + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. + format: int32 + type: integer + successThreshold: + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + format: int32 + type: integer + tcpSocket: + description: TCPSocket specifies an action involving + a TCP port. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + timeoutSeconds: + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + type: object + stdin: + description: |- + Whether this container should allocate a buffer for stdin in the container runtime. If this + is not set, reads from stdin in the container will always result in EOF. + Default is false. + type: boolean + stdinOnce: + description: |- + Whether the container runtime should close the stdin channel after it has been opened by + a single attach. When stdin is true the stdin stream will remain open across multiple attach + sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the + first client attaches to stdin, and then remains open and accepts data until the client disconnects, + at which time stdin is closed and remains closed until the container is restarted. If this + flag is false, a container processes that reads from stdin will never receive an EOF. + Default is false + type: boolean + terminationMessagePath: + description: |- + Optional: Path at which the file to which the container's termination message + will be written is mounted into the container's filesystem. + Message written is intended to be brief final status, such as an assertion failure message. + Will be truncated by the node if greater than 4096 bytes. The total message length across + all containers will be limited to 12kb. + Defaults to /dev/termination-log. + Cannot be updated. + type: string + terminationMessagePolicy: + description: |- + Indicate how the termination message should be populated. File will use the contents of + terminationMessagePath to populate the container status message on both success and failure. + FallbackToLogsOnError will use the last chunk of container log output if the termination + message file is empty and the container exited with an error. + The log output is limited to 2048 bytes or 80 lines, whichever is smaller. + Defaults to File. + Cannot be updated. + type: string + tty: + description: |- + Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. + Default is false. + type: boolean + volumeDevices: + description: volumeDevices is the list of block devices + to be used by the container. + items: + description: volumeDevice describes a mapping of a + raw block device within a container. + properties: + devicePath: + description: devicePath is the path inside of + the container that the device will be mapped + to. + type: string + name: + description: name must match the name of a persistentVolumeClaim + in the pod + type: string + required: + - devicePath + - name + type: object + type: array + x-kubernetes-list-map-keys: + - devicePath + x-kubernetes-list-type: map + volumeMounts: + description: |- + Pod volumes to mount into the container's filesystem. + Cannot be updated. + items: + description: VolumeMount describes a mounting of a + Volume within a container. + properties: + mountPath: + description: |- + Path within the container at which the volume should be mounted. Must + not contain ':'. + type: string + mountPropagation: + description: |- + mountPropagation determines how mounts are propagated from the host + to container and the other way around. + When not set, MountPropagationNone is used. + This field is beta in 1.10. + When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified + (which defaults to None). + type: string + name: + description: This must match the Name of a Volume. + type: string + readOnly: + description: |- + Mounted read-only if true, read-write otherwise (false or unspecified). + Defaults to false. + type: boolean + recursiveReadOnly: + description: |- + RecursiveReadOnly specifies whether read-only mounts should be handled + recursively. + + + If ReadOnly is false, this field has no meaning and must be unspecified. + + + If ReadOnly is true, and this field is set to Disabled, the mount is not made + recursively read-only. If this field is set to IfPossible, the mount is made + recursively read-only, if it is supported by the container runtime. If this + field is set to Enabled, the mount is made recursively read-only if it is + supported by the container runtime, otherwise the pod will not be started and + an error will be generated to indicate the reason. + + + If this field is set to IfPossible or Enabled, MountPropagation must be set to + None (or be unspecified, which defaults to None). + + + If this field is not specified, it is treated as an equivalent of Disabled. + type: string + subPath: + description: |- + Path within the volume from which the container's volume should be mounted. + Defaults to "" (volume's root). + type: string + subPathExpr: + description: |- + Expanded path within the volume from which the container's volume should be mounted. + Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. + Defaults to "" (volume's root). + SubPathExpr and SubPath are mutually exclusive. + type: string + required: + - mountPath + - name + type: object + type: array + x-kubernetes-list-map-keys: + - mountPath + x-kubernetes-list-type: map + workingDir: + description: |- + Container's working directory. + If not specified, the container runtime's default will be used, which + might be configured in the container image. + Cannot be updated. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + dnsConfig: + description: |- + Specifies the DNS parameters of a pod. + Parameters specified here will be merged to the generated DNS + configuration based on DNSPolicy. + properties: + nameservers: + description: |- + A list of DNS name server IP addresses. + This will be appended to the base nameservers generated from DNSPolicy. + Duplicated nameservers will be removed. + items: + type: string + type: array + x-kubernetes-list-type: atomic + options: + description: |- + A list of DNS resolver options. + This will be merged with the base options generated from DNSPolicy. + Duplicated entries will be removed. Resolution options given in Options + will override those that appear in the base DNSPolicy. + items: + description: PodDNSConfigOption defines DNS resolver + options of a pod. + properties: + name: + description: Required. + type: string + value: + type: string + type: object + type: array + x-kubernetes-list-type: atomic + searches: + description: |- + A list of DNS search domains for host-name lookup. + This will be appended to the base search paths generated from DNSPolicy. + Duplicated search paths will be removed. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + dnsPolicy: + description: |- + Set DNS policy for the pod. + Defaults to "ClusterFirst". + Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. + DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. + To have DNS options set along with hostNetwork, you have to specify DNS policy + explicitly to 'ClusterFirstWithHostNet'. + type: string + enableServiceLinks: + description: |- + EnableServiceLinks indicates whether information about services should be injected into pod's + environment variables, matching the syntax of Docker links. + Optional: Defaults to true. + type: boolean + ephemeralContainers: + description: |- + List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing + pod to perform user-initiated actions such as debugging. This list cannot be specified when + creating a pod, and it cannot be modified by updating the pod spec. In order to add an + ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. + items: + description: |- + An EphemeralContainer is a temporary container that you may add to an existing Pod for + user-initiated activities such as debugging. Ephemeral containers have no resource or + scheduling guarantees, and they will not be restarted when they exit or when a Pod is + removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the + Pod to exceed its resource allocation. + + + To add an ephemeral container, use the ephemeralcontainers subresource of an existing + Pod. Ephemeral containers may not be removed or restarted. + properties: + args: + description: |- + Arguments to the entrypoint. + The image's CMD is used if this is not provided. + Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + of whether the variable exists or not. Cannot be updated. + More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + items: + type: string + type: array + x-kubernetes-list-type: atomic + command: + description: |- + Entrypoint array. Not executed within a shell. + The image's ENTRYPOINT is used if this is not provided. + Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + of whether the variable exists or not. Cannot be updated. + More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + items: + type: string + type: array + x-kubernetes-list-type: atomic + env: + description: |- + List of environment variables to set in the container. + Cannot be updated. + items: + description: EnvVar represents an environment variable + present in a Container. + properties: + name: + description: Name of the environment variable. + Must be a C_IDENTIFIER. + type: string + value: + description: |- + Variable references $(VAR_NAME) are expanded + using the previously defined environment variables in the container and + any service environment variables. If a variable cannot be resolved, + the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". + Escaped references will never be expanded, regardless of whether the variable + exists or not. + Defaults to "". + type: string + valueFrom: + description: Source for the environment variable's + value. Cannot be used if value is not empty. + properties: + configMapKeyRef: + description: Selects a key of a ConfigMap. + properties: + key: + description: The key to select. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the ConfigMap + or its key must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + description: |- + Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, + spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. + properties: + apiVersion: + description: Version of the schema the + FieldPath is written in terms of, defaults + to "v1". + type: string + fieldPath: + description: Path of the field to select + in the specified API version. + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. + properties: + containerName: + description: 'Container name: required + for volumes, optional for env vars' + type: string + divisor: + anyOf: + - type: integer + - type: string + description: Specifies the output format + of the exposed resources, defaults to + "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + description: Selects a key of a secret in + the pod's namespace + properties: + key: + description: The key of the secret to + select from. Must be a valid secret + key. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the Secret + or its key must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + envFrom: + description: |- + List of sources to populate environment variables in the container. + The keys defined within a source must be a C_IDENTIFIER. All invalid keys + will be reported as an event when the container is starting. When a key exists in multiple + sources, the value associated with the last source will take precedence. + Values defined by an Env with a duplicate key will take precedence. + Cannot be updated. + items: + description: EnvFromSource represents the source of + a set of ConfigMaps + properties: + configMapRef: + description: The ConfigMap to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the ConfigMap + must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + description: An optional identifier to prepend + to each key in the ConfigMap. Must be a C_IDENTIFIER. + type: string + secretRef: + description: The Secret to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the Secret must + be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + x-kubernetes-list-type: atomic + image: + description: |- + Container image name. + More info: https://kubernetes.io/docs/concepts/containers/images + type: string + imagePullPolicy: + description: |- + Image pull policy. + One of Always, Never, IfNotPresent. + Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/containers/images#updating-images + type: string + lifecycle: + description: Lifecycle is not allowed for ephemeral + containers. + properties: + postStart: + description: |- + PostStart is called immediately after a container is created. If the handler fails, + the container is terminated and restarted according to its restart policy. + Other management of the container blocks until the hook completes. + More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the + request. HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP + server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + sleep: + description: Sleep represents the duration that + the container should sleep before being terminated. + properties: + seconds: + description: Seconds is the number of seconds + to sleep. + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for the backward compatibility. There are no validation of this field and + lifecycle hooks will fail in runtime when tcp handler is specified. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + preStop: + description: |- + PreStop is called immediately before a container is terminated due to an + API request or management event such as liveness/startup probe failure, + preemption, resource contention, etc. The handler is not called if the + container crashes or exits. The Pod's termination grace period countdown begins before the + PreStop hook is executed. Regardless of the outcome of the handler, the + container will eventually terminate within the Pod's termination grace + period (unless delayed by finalizers). Other management of the container blocks until the hook completes + or until the termination grace period is reached. + More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the + request. HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP + server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + sleep: + description: Sleep represents the duration that + the container should sleep before being terminated. + properties: + seconds: + description: Seconds is the number of seconds + to sleep. + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for the backward compatibility. There are no validation of this field and + lifecycle hooks will fail in runtime when tcp handler is specified. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + type: object + livenessProbe: + description: Probes are not allowed for ephemeral containers. + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. + format: int32 + type: integer + grpc: + description: GRPC specifies an action involving + a GRPC port. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. + HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + initialDelaySeconds: + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + periodSeconds: + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. + format: int32 + type: integer + successThreshold: + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + format: int32 + type: integer + tcpSocket: + description: TCPSocket specifies an action involving + a TCP port. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + timeoutSeconds: + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + type: object + name: + description: |- + Name of the ephemeral container specified as a DNS_LABEL. + This name must be unique among all containers, init containers and ephemeral containers. + type: string + ports: + description: Ports are not allowed for ephemeral containers. + items: + description: ContainerPort represents a network port + in a single container. + properties: + containerPort: + description: |- + Number of port to expose on the pod's IP address. + This must be a valid port number, 0 < x < 65536. + format: int32 + type: integer + hostIP: + description: What host IP to bind the external + port to. + type: string + hostPort: + description: |- + Number of port to expose on the host. + If specified, this must be a valid port number, 0 < x < 65536. + If HostNetwork is specified, this must match ContainerPort. + Most containers do not need this. + format: int32 + type: integer + name: + description: |- + If specified, this must be an IANA_SVC_NAME and unique within the pod. Each + named port in a pod must have a unique name. Name for the port that can be + referred to by services. + type: string + protocol: + default: TCP + description: |- + Protocol for port. Must be UDP, TCP, or SCTP. + Defaults to "TCP". + type: string + required: + - containerPort + type: object + type: array + x-kubernetes-list-map-keys: + - containerPort + - protocol + x-kubernetes-list-type: map + readinessProbe: + description: Probes are not allowed for ephemeral containers. + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. + format: int32 + type: integer + grpc: + description: GRPC specifies an action involving + a GRPC port. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. + HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + initialDelaySeconds: + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + periodSeconds: + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. + format: int32 + type: integer + successThreshold: + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + format: int32 + type: integer + tcpSocket: + description: TCPSocket specifies an action involving + a TCP port. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + timeoutSeconds: + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + type: object + resizePolicy: + description: Resources resize policy for the container. + items: + description: ContainerResizePolicy represents resource + resize policy for the container. + properties: + resourceName: + description: |- + Name of the resource to which this resource resize policy applies. + Supported values: cpu, memory. + type: string + restartPolicy: + description: |- + Restart policy to apply when specified resource is resized. + If not specified, it defaults to NotRequired. + type: string + required: + - resourceName + - restartPolicy + type: object + type: array + x-kubernetes-list-type: atomic + resources: + description: |- + Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources + already allocated to the pod. + properties: + claims: + description: |- + Claims lists the names of resources, defined in spec.resourceClaims, + that are used by this container. + + + This is an alpha field and requires enabling the + DynamicResourceAllocation feature gate. + + + This field is immutable. It can only be set for containers. + items: + description: ResourceClaim references one entry + in PodSpec.ResourceClaims. + properties: + name: + description: |- + Name must match the name of one entry in pod.spec.resourceClaims of + the Pod where this field is used. It makes that resource available + inside a container. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + restartPolicy: + description: |- + Restart policy for the container to manage the restart behavior of each + container within a pod. + This may only be set for init containers. You cannot set this field on + ephemeral containers. + type: string + securityContext: + description: |- + Optional: SecurityContext defines the security options the ephemeral container should be run with. + If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. + properties: + allowPrivilegeEscalation: + description: |- + AllowPrivilegeEscalation controls whether a process can gain more + privileges than its parent process. This bool directly controls if + the no_new_privs flag will be set on the container process. + AllowPrivilegeEscalation is true always when the container is: + 1) run as Privileged + 2) has CAP_SYS_ADMIN + Note that this field cannot be set when spec.os.name is windows. + type: boolean + appArmorProfile: + description: |- + appArmorProfile is the AppArmor options to use by this container. If set, this profile + overrides the pod's appArmorProfile. + Note that this field cannot be set when spec.os.name is windows. + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile loaded on the node that should be used. + The profile must be preconfigured on the node to work. + Must match the loaded name of the profile. + Must be set if and only if type is "Localhost". + type: string + type: + description: |- + type indicates which kind of AppArmor profile will be applied. + Valid options are: + Localhost - a profile pre-loaded on the node. + RuntimeDefault - the container runtime's default profile. + Unconfined - no AppArmor enforcement. + type: string + required: + - type + type: object + capabilities: + description: |- + The capabilities to add/drop when running containers. + Defaults to the default set of capabilities granted by the container runtime. + Note that this field cannot be set when spec.os.name is windows. + properties: + add: + description: Added capabilities + items: + description: Capability represent POSIX capabilities + type + type: string + type: array + x-kubernetes-list-type: atomic + drop: + description: Removed capabilities + items: + description: Capability represent POSIX capabilities + type + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + description: |- + Run container in privileged mode. + Processes in privileged containers are essentially equivalent to root on the host. + Defaults to false. + Note that this field cannot be set when spec.os.name is windows. + type: boolean + procMount: + description: |- + procMount denotes the type of proc mount to use for the containers. + The default is DefaultProcMount which uses the container runtime defaults for + readonly paths and masked paths. + This requires the ProcMountType feature flag to be enabled. + Note that this field cannot be set when spec.os.name is windows. + type: string + readOnlyRootFilesystem: + description: |- + Whether this container has a read-only root filesystem. + Default is false. + Note that this field cannot be set when spec.os.name is windows. + type: boolean + runAsGroup: + description: |- + The GID to run the entrypoint of the container process. + Uses runtime default if unset. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. + format: int64 + type: integer + runAsNonRoot: + description: |- + Indicates that the container must run as a non-root user. + If true, the Kubelet will validate the image at runtime to ensure that it + does not run as UID 0 (root) and fail to start the container if it does. + If unset or false, no such validation will be performed. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + type: boolean + runAsUser: + description: |- + The UID to run the entrypoint of the container process. + Defaults to user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. + format: int64 + type: integer + seLinuxOptions: + description: |- + The SELinux context to be applied to the container. + If unspecified, the container runtime will allocate a random SELinux context for each + container. May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. + properties: + level: + description: Level is SELinux level label that + applies to the container. + type: string + role: + description: Role is a SELinux role label that + applies to the container. + type: string + type: + description: Type is a SELinux type label that + applies to the container. + type: string + user: + description: User is a SELinux user label that + applies to the container. + type: string + type: object + seccompProfile: + description: |- + The seccomp options to use by this container. If seccomp options are + provided at both the pod & container level, the container options + override the pod options. + Note that this field cannot be set when spec.os.name is windows. + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile defined in a file on the node should be used. + The profile must be preconfigured on the node to work. + Must be a descending path, relative to the kubelet's configured seccomp profile location. + Must be set if type is "Localhost". Must NOT be set for any other type. + type: string + type: + description: |- + type indicates which kind of seccomp profile will be applied. + Valid options are: + + + Localhost - a profile defined in a file on the node should be used. + RuntimeDefault - the container runtime default profile should be used. + Unconfined - no profile should be applied. + type: string + required: + - type + type: object + windowsOptions: + description: |- + The Windows specific settings applied to all containers. + If unspecified, the options from the PodSecurityContext will be used. + If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is linux. + properties: + gmsaCredentialSpec: + description: |- + GMSACredentialSpec is where the GMSA admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the + GMSA credential spec named by the GMSACredentialSpecName field. + type: string + gmsaCredentialSpecName: + description: GMSACredentialSpecName is the name + of the GMSA credential spec to use. + type: string + hostProcess: + description: |- + HostProcess determines if a container should be run as a 'Host Process' container. + All of a Pod's containers must have the same effective HostProcess value + (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + In addition, if HostProcess is true then HostNetwork must also be set to true. + type: boolean + runAsUserName: + description: |- + The UserName in Windows to run the entrypoint of the container process. + Defaults to the user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + type: string + type: object + type: object + startupProbe: + description: Probes are not allowed for ephemeral containers. + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. + format: int32 + type: integer + grpc: + description: GRPC specifies an action involving + a GRPC port. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. + HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + initialDelaySeconds: + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + periodSeconds: + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. + format: int32 + type: integer + successThreshold: + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + format: int32 + type: integer + tcpSocket: + description: TCPSocket specifies an action involving + a TCP port. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + timeoutSeconds: + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + type: object + stdin: + description: |- + Whether this container should allocate a buffer for stdin in the container runtime. If this + is not set, reads from stdin in the container will always result in EOF. + Default is false. + type: boolean + stdinOnce: + description: |- + Whether the container runtime should close the stdin channel after it has been opened by + a single attach. When stdin is true the stdin stream will remain open across multiple attach + sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the + first client attaches to stdin, and then remains open and accepts data until the client disconnects, + at which time stdin is closed and remains closed until the container is restarted. If this + flag is false, a container processes that reads from stdin will never receive an EOF. + Default is false + type: boolean + targetContainerName: + description: |- + If set, the name of the container from PodSpec that this ephemeral container targets. + The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. + If not set then the ephemeral container uses the namespaces configured in the Pod spec. + + + The container runtime must implement support for this feature. If the runtime does not + support namespace targeting then the result of setting this field is undefined. + type: string + terminationMessagePath: + description: |- + Optional: Path at which the file to which the container's termination message + will be written is mounted into the container's filesystem. + Message written is intended to be brief final status, such as an assertion failure message. + Will be truncated by the node if greater than 4096 bytes. The total message length across + all containers will be limited to 12kb. + Defaults to /dev/termination-log. + Cannot be updated. + type: string + terminationMessagePolicy: + description: |- + Indicate how the termination message should be populated. File will use the contents of + terminationMessagePath to populate the container status message on both success and failure. + FallbackToLogsOnError will use the last chunk of container log output if the termination + message file is empty and the container exited with an error. + The log output is limited to 2048 bytes or 80 lines, whichever is smaller. + Defaults to File. + Cannot be updated. + type: string + tty: + description: |- + Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. + Default is false. + type: boolean + volumeDevices: + description: volumeDevices is the list of block devices + to be used by the container. + items: + description: volumeDevice describes a mapping of a + raw block device within a container. + properties: + devicePath: + description: devicePath is the path inside of + the container that the device will be mapped + to. + type: string + name: + description: name must match the name of a persistentVolumeClaim + in the pod + type: string + required: + - devicePath + - name + type: object + type: array + x-kubernetes-list-map-keys: + - devicePath + x-kubernetes-list-type: map + volumeMounts: + description: |- + Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. + Cannot be updated. + items: + description: VolumeMount describes a mounting of a + Volume within a container. + properties: + mountPath: + description: |- + Path within the container at which the volume should be mounted. Must + not contain ':'. + type: string + mountPropagation: + description: |- + mountPropagation determines how mounts are propagated from the host + to container and the other way around. + When not set, MountPropagationNone is used. + This field is beta in 1.10. + When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified + (which defaults to None). + type: string + name: + description: This must match the Name of a Volume. + type: string + readOnly: + description: |- + Mounted read-only if true, read-write otherwise (false or unspecified). + Defaults to false. + type: boolean + recursiveReadOnly: + description: |- + RecursiveReadOnly specifies whether read-only mounts should be handled + recursively. + + + If ReadOnly is false, this field has no meaning and must be unspecified. + + + If ReadOnly is true, and this field is set to Disabled, the mount is not made + recursively read-only. If this field is set to IfPossible, the mount is made + recursively read-only, if it is supported by the container runtime. If this + field is set to Enabled, the mount is made recursively read-only if it is + supported by the container runtime, otherwise the pod will not be started and + an error will be generated to indicate the reason. + + + If this field is set to IfPossible or Enabled, MountPropagation must be set to + None (or be unspecified, which defaults to None). + + + If this field is not specified, it is treated as an equivalent of Disabled. + type: string + subPath: + description: |- + Path within the volume from which the container's volume should be mounted. + Defaults to "" (volume's root). + type: string + subPathExpr: + description: |- + Expanded path within the volume from which the container's volume should be mounted. + Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. + Defaults to "" (volume's root). + SubPathExpr and SubPath are mutually exclusive. + type: string + required: + - mountPath + - name + type: object + type: array + x-kubernetes-list-map-keys: + - mountPath + x-kubernetes-list-type: map + workingDir: + description: |- + Container's working directory. + If not specified, the container runtime's default will be used, which + might be configured in the container image. + Cannot be updated. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + hostAliases: + description: |- + HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts + file if specified. + items: + description: |- + HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the + pod's hosts file. + properties: + hostnames: + description: Hostnames for the above IP address. + items: + type: string + type: array + x-kubernetes-list-type: atomic + ip: + description: IP address of the host file entry. + type: string + required: + - ip + type: object + type: array + x-kubernetes-list-map-keys: + - ip + x-kubernetes-list-type: map + hostIPC: + description: |- + Use the host's ipc namespace. + Optional: Default to false. + type: boolean + hostNetwork: + description: |- + Host networking requested for this pod. Use the host's network namespace. + If this option is set, the ports that will be used must be specified. + Default to false. + type: boolean + hostPID: + description: |- + Use the host's pid namespace. + Optional: Default to false. + type: boolean + hostUsers: + description: |- + Use the host's user namespace. + Optional: Default to true. + If set to true or not present, the pod will be run in the host user namespace, useful + for when the pod needs a feature only available to the host user namespace, such as + loading a kernel module with CAP_SYS_MODULE. + When set to false, a new userns is created for the pod. Setting false is useful for + mitigating container breakout vulnerabilities even allowing users to run their + containers as root without actually having root privileges on the host. + This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature. + type: boolean + hostname: + description: |- + Specifies the hostname of the Pod + If not specified, the pod's hostname will be set to a system-defined value. + type: string + imagePullSecrets: + description: |- + ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. + If specified, these secrets will be passed to individual puller implementations for them to use. + More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod + items: + description: |- + LocalObjectReference contains enough information to let you locate the + referenced object inside the same namespace. + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + type: object + x-kubernetes-map-type: atomic + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + initContainers: + description: |- + List of initialization containers belonging to the pod. + Init containers are executed in order prior to containers being started. If any + init container fails, the pod is considered to have failed and is handled according + to its restartPolicy. The name for an init container or normal container must be + unique among all containers. + Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. + The resourceRequirements of an init container are taken into account during scheduling + by finding the highest request/limit for each resource type, and then using the max of + of that value or the sum of the normal containers. Limits are applied to init containers + in a similar fashion. + Init containers cannot currently be added or removed. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + items: + description: A single application container that you want + to run within a pod. + properties: + args: + description: |- + Arguments to the entrypoint. + The container image's CMD is used if this is not provided. + Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + of whether the variable exists or not. Cannot be updated. + More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + items: + type: string + type: array + x-kubernetes-list-type: atomic + command: + description: |- + Entrypoint array. Not executed within a shell. + The container image's ENTRYPOINT is used if this is not provided. + Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + of whether the variable exists or not. Cannot be updated. + More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + items: + type: string + type: array + x-kubernetes-list-type: atomic + env: + description: |- + List of environment variables to set in the container. + Cannot be updated. + items: + description: EnvVar represents an environment variable + present in a Container. + properties: + name: + description: Name of the environment variable. + Must be a C_IDENTIFIER. + type: string + value: + description: |- + Variable references $(VAR_NAME) are expanded + using the previously defined environment variables in the container and + any service environment variables. If a variable cannot be resolved, + the reference in the input string will be unchanged. Double $$ are reduced + to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". + Escaped references will never be expanded, regardless of whether the variable + exists or not. + Defaults to "". + type: string + valueFrom: + description: Source for the environment variable's + value. Cannot be used if value is not empty. + properties: + configMapKeyRef: + description: Selects a key of a ConfigMap. + properties: + key: + description: The key to select. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the ConfigMap + or its key must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + description: |- + Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['']`, `metadata.annotations['']`, + spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. + properties: + apiVersion: + description: Version of the schema the + FieldPath is written in terms of, defaults + to "v1". + type: string + fieldPath: + description: Path of the field to select + in the specified API version. + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. + properties: + containerName: + description: 'Container name: required + for volumes, optional for env vars' + type: string + divisor: + anyOf: + - type: integer + - type: string + description: Specifies the output format + of the exposed resources, defaults to + "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + description: Selects a key of a secret in + the pod's namespace + properties: + key: + description: The key of the secret to + select from. Must be a valid secret + key. + type: string + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the Secret + or its key must be defined + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + envFrom: + description: |- + List of sources to populate environment variables in the container. + The keys defined within a source must be a C_IDENTIFIER. All invalid keys + will be reported as an event when the container is starting. When a key exists in multiple + sources, the value associated with the last source will take precedence. + Values defined by an Env with a duplicate key will take precedence. + Cannot be updated. + items: + description: EnvFromSource represents the source of + a set of ConfigMaps + properties: + configMapRef: + description: The ConfigMap to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the ConfigMap + must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + description: An optional identifier to prepend + to each key in the ConfigMap. Must be a C_IDENTIFIER. + type: string + secretRef: + description: The Secret to select from + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: Specify whether the Secret must + be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + x-kubernetes-list-type: atomic + image: + description: |- + Container image name. + More info: https://kubernetes.io/docs/concepts/containers/images + This field is optional to allow higher level config management to default or override + container images in workload controllers like Deployments and StatefulSets. + type: string + imagePullPolicy: + description: |- + Image pull policy. + One of Always, Never, IfNotPresent. + Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/containers/images#updating-images + type: string + lifecycle: + description: |- + Actions that the management system should take in response to container lifecycle events. + Cannot be updated. + properties: + postStart: + description: |- + PostStart is called immediately after a container is created. If the handler fails, + the container is terminated and restarted according to its restart policy. + Other management of the container blocks until the hook completes. + More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the + request. HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP + server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + sleep: + description: Sleep represents the duration that + the container should sleep before being terminated. + properties: + seconds: + description: Seconds is the number of seconds + to sleep. + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for the backward compatibility. There are no validation of this field and + lifecycle hooks will fail in runtime when tcp handler is specified. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + preStop: + description: |- + PreStop is called immediately before a container is terminated due to an + API request or management event such as liveness/startup probe failure, + preemption, resource contention, etc. The handler is not called if the + container crashes or exits. The Pod's termination grace period countdown begins before the + PreStop hook is executed. Regardless of the outcome of the handler, the + container will eventually terminate within the Pod's termination grace + period (unless delayed by finalizers). Other management of the container blocks until the hook completes + or until the termination grace period is reached. + More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the + request. HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP + server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + sleep: + description: Sleep represents the duration that + the container should sleep before being terminated. + properties: + seconds: + description: Seconds is the number of seconds + to sleep. + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + description: |- + Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + for the backward compatibility. There are no validation of this field and + lifecycle hooks will fail in runtime when tcp handler is specified. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + type: object + livenessProbe: + description: |- + Periodic probe of container liveness. + Container will be restarted if the probe fails. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. + format: int32 + type: integer + grpc: + description: GRPC specifies an action involving + a GRPC port. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. + HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + initialDelaySeconds: + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + periodSeconds: + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. + format: int32 + type: integer + successThreshold: + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + format: int32 + type: integer + tcpSocket: + description: TCPSocket specifies an action involving + a TCP port. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + timeoutSeconds: + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + type: object + name: + description: |- + Name of the container specified as a DNS_LABEL. + Each container in a pod must have a unique name (DNS_LABEL). + Cannot be updated. + type: string + ports: + description: |- + List of ports to expose from the container. Not specifying a port here + DOES NOT prevent that port from being exposed. Any port which is + listening on the default "0.0.0.0" address inside a container will be + accessible from the network. + Modifying this array with strategic merge patch may corrupt the data. + For more information See https://github.com/kubernetes/kubernetes/issues/108255. + Cannot be updated. + items: + description: ContainerPort represents a network port + in a single container. + properties: + containerPort: + description: |- + Number of port to expose on the pod's IP address. + This must be a valid port number, 0 < x < 65536. + format: int32 + type: integer + hostIP: + description: What host IP to bind the external + port to. + type: string + hostPort: + description: |- + Number of port to expose on the host. + If specified, this must be a valid port number, 0 < x < 65536. + If HostNetwork is specified, this must match ContainerPort. + Most containers do not need this. + format: int32 + type: integer + name: + description: |- + If specified, this must be an IANA_SVC_NAME and unique within the pod. Each + named port in a pod must have a unique name. Name for the port that can be + referred to by services. + type: string + protocol: + default: TCP + description: |- + Protocol for port. Must be UDP, TCP, or SCTP. + Defaults to "TCP". + type: string + required: + - containerPort + type: object + type: array + x-kubernetes-list-map-keys: + - containerPort + - protocol + x-kubernetes-list-type: map + readinessProbe: + description: |- + Periodic probe of container service readiness. + Container will be removed from service endpoints if the probe fails. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. + format: int32 + type: integer + grpc: + description: GRPC specifies an action involving + a GRPC port. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. + HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + initialDelaySeconds: + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + periodSeconds: + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. + format: int32 + type: integer + successThreshold: + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + format: int32 + type: integer + tcpSocket: + description: TCPSocket specifies an action involving + a TCP port. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + timeoutSeconds: + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + type: object + resizePolicy: + description: Resources resize policy for the container. + items: + description: ContainerResizePolicy represents resource + resize policy for the container. + properties: + resourceName: + description: |- + Name of the resource to which this resource resize policy applies. + Supported values: cpu, memory. + type: string + restartPolicy: + description: |- + Restart policy to apply when specified resource is resized. + If not specified, it defaults to NotRequired. + type: string + required: + - resourceName + - restartPolicy + type: object + type: array + x-kubernetes-list-type: atomic + resources: + description: |- + Compute Resources required by this container. + Cannot be updated. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + properties: + claims: + description: |- + Claims lists the names of resources, defined in spec.resourceClaims, + that are used by this container. + + + This is an alpha field and requires enabling the + DynamicResourceAllocation feature gate. + + + This field is immutable. It can only be set for containers. + items: + description: ResourceClaim references one entry + in PodSpec.ResourceClaims. + properties: + name: + description: |- + Name must match the name of one entry in pod.spec.resourceClaims of + the Pod where this field is used. It makes that resource available + inside a container. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + restartPolicy: + description: |- + RestartPolicy defines the restart behavior of individual containers in a pod. + This field may only be set for init containers, and the only allowed value is "Always". + For non-init containers or when this field is not specified, + the restart behavior is defined by the Pod's restart policy and the container type. + Setting the RestartPolicy as "Always" for the init container will have the following effect: + this init container will be continually restarted on + exit until all regular containers have terminated. Once all regular + containers have completed, all init containers with restartPolicy "Always" + will be shut down. This lifecycle differs from normal init containers and + is often referred to as a "sidecar" container. Although this init + container still starts in the init container sequence, it does not wait + for the container to complete before proceeding to the next init + container. Instead, the next init container starts immediately after this + init container is started, or after any startupProbe has successfully + completed. + type: string + securityContext: + description: |- + SecurityContext defines the security options the container should be run with. + If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. + More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + properties: + allowPrivilegeEscalation: + description: |- + AllowPrivilegeEscalation controls whether a process can gain more + privileges than its parent process. This bool directly controls if + the no_new_privs flag will be set on the container process. + AllowPrivilegeEscalation is true always when the container is: + 1) run as Privileged + 2) has CAP_SYS_ADMIN + Note that this field cannot be set when spec.os.name is windows. + type: boolean + appArmorProfile: + description: |- + appArmorProfile is the AppArmor options to use by this container. If set, this profile + overrides the pod's appArmorProfile. + Note that this field cannot be set when spec.os.name is windows. + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile loaded on the node that should be used. + The profile must be preconfigured on the node to work. + Must match the loaded name of the profile. + Must be set if and only if type is "Localhost". + type: string + type: + description: |- + type indicates which kind of AppArmor profile will be applied. + Valid options are: + Localhost - a profile pre-loaded on the node. + RuntimeDefault - the container runtime's default profile. + Unconfined - no AppArmor enforcement. + type: string + required: + - type + type: object + capabilities: + description: |- + The capabilities to add/drop when running containers. + Defaults to the default set of capabilities granted by the container runtime. + Note that this field cannot be set when spec.os.name is windows. + properties: + add: + description: Added capabilities + items: + description: Capability represent POSIX capabilities + type + type: string + type: array + x-kubernetes-list-type: atomic + drop: + description: Removed capabilities + items: + description: Capability represent POSIX capabilities + type + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + description: |- + Run container in privileged mode. + Processes in privileged containers are essentially equivalent to root on the host. + Defaults to false. + Note that this field cannot be set when spec.os.name is windows. + type: boolean + procMount: + description: |- + procMount denotes the type of proc mount to use for the containers. + The default is DefaultProcMount which uses the container runtime defaults for + readonly paths and masked paths. + This requires the ProcMountType feature flag to be enabled. + Note that this field cannot be set when spec.os.name is windows. + type: string + readOnlyRootFilesystem: + description: |- + Whether this container has a read-only root filesystem. + Default is false. + Note that this field cannot be set when spec.os.name is windows. + type: boolean + runAsGroup: + description: |- + The GID to run the entrypoint of the container process. + Uses runtime default if unset. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. + format: int64 + type: integer + runAsNonRoot: + description: |- + Indicates that the container must run as a non-root user. + If true, the Kubelet will validate the image at runtime to ensure that it + does not run as UID 0 (root) and fail to start the container if it does. + If unset or false, no such validation will be performed. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + type: boolean + runAsUser: + description: |- + The UID to run the entrypoint of the container process. + Defaults to user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. + format: int64 + type: integer + seLinuxOptions: + description: |- + The SELinux context to be applied to the container. + If unspecified, the container runtime will allocate a random SELinux context for each + container. May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is windows. + properties: + level: + description: Level is SELinux level label that + applies to the container. + type: string + role: + description: Role is a SELinux role label that + applies to the container. + type: string + type: + description: Type is a SELinux type label that + applies to the container. + type: string + user: + description: User is a SELinux user label that + applies to the container. + type: string + type: object + seccompProfile: + description: |- + The seccomp options to use by this container. If seccomp options are + provided at both the pod & container level, the container options + override the pod options. + Note that this field cannot be set when spec.os.name is windows. + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile defined in a file on the node should be used. + The profile must be preconfigured on the node to work. + Must be a descending path, relative to the kubelet's configured seccomp profile location. + Must be set if type is "Localhost". Must NOT be set for any other type. + type: string + type: + description: |- + type indicates which kind of seccomp profile will be applied. + Valid options are: + + + Localhost - a profile defined in a file on the node should be used. + RuntimeDefault - the container runtime default profile should be used. + Unconfined - no profile should be applied. + type: string + required: + - type + type: object + windowsOptions: + description: |- + The Windows specific settings applied to all containers. + If unspecified, the options from the PodSecurityContext will be used. + If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is linux. + properties: + gmsaCredentialSpec: + description: |- + GMSACredentialSpec is where the GMSA admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the + GMSA credential spec named by the GMSACredentialSpecName field. + type: string + gmsaCredentialSpecName: + description: GMSACredentialSpecName is the name + of the GMSA credential spec to use. + type: string + hostProcess: + description: |- + HostProcess determines if a container should be run as a 'Host Process' container. + All of a Pod's containers must have the same effective HostProcess value + (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + In addition, if HostProcess is true then HostNetwork must also be set to true. + type: boolean + runAsUserName: + description: |- + The UserName in Windows to run the entrypoint of the container process. + Defaults to the user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + type: string + type: object + type: object + startupProbe: + description: |- + StartupProbe indicates that the Pod has successfully initialized. + If specified, no other probes are executed until this completes successfully. + If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. + This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, + when it might take a long time to load data or warm a cache, than during steady-state operation. + This cannot be updated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + properties: + exec: + description: Exec specifies the action to take. + properties: + command: + description: |- + Command is the command line to execute inside the container, the working directory for the + command is root ('/') in the container's filesystem. The command is simply exec'd, it is + not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + a shell, you need to explicitly call out to that shell. + Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + description: |- + Minimum consecutive failures for the probe to be considered failed after having succeeded. + Defaults to 3. Minimum value is 1. + format: int32 + type: integer + grpc: + description: GRPC specifies an action involving + a GRPC port. + properties: + port: + description: Port number of the gRPC service. + Number must be in the range 1 to 65535. + format: int32 + type: integer + service: + description: |- + Service is the name of the service to place in the gRPC HealthCheckRequest + (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + + + If this is not specified, the default behavior is defined by gRPC. + type: string + required: + - port + type: object + httpGet: + description: HTTPGet specifies the http request + to perform. + properties: + host: + description: |- + Host name to connect to, defaults to the pod IP. You probably want to set + "Host" in httpHeaders instead. + type: string + httpHeaders: + description: Custom headers to set in the request. + HTTP allows repeated headers. + items: + description: HTTPHeader describes a custom + header to be used in HTTP probes + properties: + name: + description: |- + The header field name. + This will be canonicalized upon output, so case-variant names will be understood as the same header. + type: string + value: + description: The header field value + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + description: Path to access on the HTTP server. + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Name or number of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + scheme: + description: |- + Scheme to use for connecting to the host. + Defaults to HTTP. + type: string + required: + - port + type: object + initialDelaySeconds: + description: |- + Number of seconds after the container has started before liveness probes are initiated. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + periodSeconds: + description: |- + How often (in seconds) to perform the probe. + Default to 10 seconds. Minimum value is 1. + format: int32 + type: integer + successThreshold: + description: |- + Minimum consecutive successes for the probe to be considered successful after having failed. + Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + format: int32 + type: integer + tcpSocket: + description: TCPSocket specifies an action involving + a TCP port. + properties: + host: + description: 'Optional: Host name to connect + to, defaults to the pod IP.' + type: string + port: + anyOf: + - type: integer + - type: string + description: |- + Number or name of the port to access on the container. + Number must be in the range 1 to 65535. + Name must be an IANA_SVC_NAME. + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + value overrides the value provided by the pod spec. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + format: int64 + type: integer + timeoutSeconds: + description: |- + Number of seconds after which the probe times out. + Defaults to 1 second. Minimum value is 1. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + format: int32 + type: integer + type: object + stdin: + description: |- + Whether this container should allocate a buffer for stdin in the container runtime. If this + is not set, reads from stdin in the container will always result in EOF. + Default is false. + type: boolean + stdinOnce: + description: |- + Whether the container runtime should close the stdin channel after it has been opened by + a single attach. When stdin is true the stdin stream will remain open across multiple attach + sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the + first client attaches to stdin, and then remains open and accepts data until the client disconnects, + at which time stdin is closed and remains closed until the container is restarted. If this + flag is false, a container processes that reads from stdin will never receive an EOF. + Default is false + type: boolean + terminationMessagePath: + description: |- + Optional: Path at which the file to which the container's termination message + will be written is mounted into the container's filesystem. + Message written is intended to be brief final status, such as an assertion failure message. + Will be truncated by the node if greater than 4096 bytes. The total message length across + all containers will be limited to 12kb. + Defaults to /dev/termination-log. + Cannot be updated. + type: string + terminationMessagePolicy: + description: |- + Indicate how the termination message should be populated. File will use the contents of + terminationMessagePath to populate the container status message on both success and failure. + FallbackToLogsOnError will use the last chunk of container log output if the termination + message file is empty and the container exited with an error. + The log output is limited to 2048 bytes or 80 lines, whichever is smaller. + Defaults to File. + Cannot be updated. + type: string + tty: + description: |- + Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. + Default is false. + type: boolean + volumeDevices: + description: volumeDevices is the list of block devices + to be used by the container. + items: + description: volumeDevice describes a mapping of a + raw block device within a container. + properties: + devicePath: + description: devicePath is the path inside of + the container that the device will be mapped + to. + type: string + name: + description: name must match the name of a persistentVolumeClaim + in the pod + type: string + required: + - devicePath + - name + type: object + type: array + x-kubernetes-list-map-keys: + - devicePath + x-kubernetes-list-type: map + volumeMounts: + description: |- + Pod volumes to mount into the container's filesystem. + Cannot be updated. + items: + description: VolumeMount describes a mounting of a + Volume within a container. + properties: + mountPath: + description: |- + Path within the container at which the volume should be mounted. Must + not contain ':'. + type: string + mountPropagation: + description: |- + mountPropagation determines how mounts are propagated from the host + to container and the other way around. + When not set, MountPropagationNone is used. + This field is beta in 1.10. + When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified + (which defaults to None). + type: string + name: + description: This must match the Name of a Volume. + type: string + readOnly: + description: |- + Mounted read-only if true, read-write otherwise (false or unspecified). + Defaults to false. + type: boolean + recursiveReadOnly: + description: |- + RecursiveReadOnly specifies whether read-only mounts should be handled + recursively. + + + If ReadOnly is false, this field has no meaning and must be unspecified. + + + If ReadOnly is true, and this field is set to Disabled, the mount is not made + recursively read-only. If this field is set to IfPossible, the mount is made + recursively read-only, if it is supported by the container runtime. If this + field is set to Enabled, the mount is made recursively read-only if it is + supported by the container runtime, otherwise the pod will not be started and + an error will be generated to indicate the reason. + + + If this field is set to IfPossible or Enabled, MountPropagation must be set to + None (or be unspecified, which defaults to None). + + + If this field is not specified, it is treated as an equivalent of Disabled. + type: string + subPath: + description: |- + Path within the volume from which the container's volume should be mounted. + Defaults to "" (volume's root). + type: string + subPathExpr: + description: |- + Expanded path within the volume from which the container's volume should be mounted. + Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. + Defaults to "" (volume's root). + SubPathExpr and SubPath are mutually exclusive. + type: string + required: + - mountPath + - name + type: object + type: array + x-kubernetes-list-map-keys: + - mountPath + x-kubernetes-list-type: map + workingDir: + description: |- + Container's working directory. + If not specified, the container runtime's default will be used, which + might be configured in the container image. + Cannot be updated. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + nodeName: + description: |- + NodeName is a request to schedule this pod onto a specific node. If it is non-empty, + the scheduler simply schedules this pod onto that node, assuming that it fits resource + requirements. + type: string + nodeSelector: + additionalProperties: + type: string + description: |- + NodeSelector is a selector which must be true for the pod to fit on a node. + Selector which must match a node's labels for the pod to be scheduled on that node. + More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ + type: object + x-kubernetes-map-type: atomic + os: + description: |- + Specifies the OS of the containers in the pod. + Some pod and container fields are restricted if this is set. + + + If the OS field is set to linux, the following fields must be unset: + -securityContext.windowsOptions + + + If the OS field is set to windows, following fields must be unset: + - spec.hostPID + - spec.hostIPC + - spec.hostUsers + - spec.securityContext.appArmorProfile + - spec.securityContext.seLinuxOptions + - spec.securityContext.seccompProfile + - spec.securityContext.fsGroup + - spec.securityContext.fsGroupChangePolicy + - spec.securityContext.sysctls + - spec.shareProcessNamespace + - spec.securityContext.runAsUser + - spec.securityContext.runAsGroup + - spec.securityContext.supplementalGroups + - spec.containers[*].securityContext.appArmorProfile + - spec.containers[*].securityContext.seLinuxOptions + - spec.containers[*].securityContext.seccompProfile + - spec.containers[*].securityContext.capabilities + - spec.containers[*].securityContext.readOnlyRootFilesystem + - spec.containers[*].securityContext.privileged + - spec.containers[*].securityContext.allowPrivilegeEscalation + - spec.containers[*].securityContext.procMount + - spec.containers[*].securityContext.runAsUser + - spec.containers[*].securityContext.runAsGroup + properties: + name: + description: |- + Name is the name of the operating system. The currently supported values are linux and windows. + Additional value may be defined in future and can be one of: + https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration + Clients should expect to handle additional values and treat unrecognized values in this field as os: null + type: string + required: + - name + type: object + overhead: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. + This field will be autopopulated at admission time by the RuntimeClass admission controller. If + the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. + The RuntimeClass admission controller will reject Pod create requests which have the overhead already + set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value + defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. + More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md + type: object + preemptionPolicy: + description: |- + PreemptionPolicy is the Policy for preempting pods with lower priority. + One of Never, PreemptLowerPriority. + Defaults to PreemptLowerPriority if unset. + type: string + priority: + description: |- + The priority value. Various system components use this field to find the + priority of the pod. When Priority Admission Controller is enabled, it + prevents users from setting this field. The admission controller populates + this field from PriorityClassName. + The higher the value, the higher the priority. + format: int32 + type: integer + priorityClassName: + description: |- + If specified, indicates the pod's priority. "system-node-critical" and + "system-cluster-critical" are two special keywords which indicate the + highest priorities with the former being the highest priority. Any other + name must be defined by creating a PriorityClass object with that name. + If not specified, the pod priority will be default or zero if there is no + default. + type: string + readinessGates: + description: |- + If specified, all readiness gates will be evaluated for pod readiness. + A pod is ready when all its containers are ready AND + all conditions specified in the readiness gates have status equal to "True" + More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates + items: + description: PodReadinessGate contains the reference to + a pod condition + properties: + conditionType: + description: ConditionType refers to a condition in + the pod's condition list with matching type. + type: string + required: + - conditionType + type: object + type: array + x-kubernetes-list-type: atomic + resourceClaims: + description: |- + ResourceClaims defines which ResourceClaims must be allocated + and reserved before the Pod is allowed to start. The resources + will be made available to those containers which consume them + by name. + + + This is an alpha field and requires enabling the + DynamicResourceAllocation feature gate. + + + This field is immutable. + items: + description: |- + PodResourceClaim references exactly one ResourceClaim through a ClaimSource. + It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. + Containers that need access to the ResourceClaim reference it with this name. + properties: + name: + description: |- + Name uniquely identifies this resource claim inside the pod. + This must be a DNS_LABEL. + type: string + source: + description: Source describes where to find the ResourceClaim. + properties: + resourceClaimName: + description: |- + ResourceClaimName is the name of a ResourceClaim object in the same + namespace as this pod. + type: string + resourceClaimTemplateName: + description: |- + ResourceClaimTemplateName is the name of a ResourceClaimTemplate + object in the same namespace as this pod. + + + The template will be used to create a new ResourceClaim, which will + be bound to this pod. When this pod is deleted, the ResourceClaim + will also be deleted. The pod name and resource name, along with a + generated component, will be used to form a unique name for the + ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses. + + + This field is immutable and no changes will be made to the + corresponding ResourceClaim by the control plane after creating the + ResourceClaim. + type: string + type: object + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + restartPolicy: + description: |- + Restart policy for all containers within the pod. + One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted. + Default to Always. + More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy + type: string + runtimeClassName: + description: |- + RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used + to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. + If unset or empty, the "legacy" RuntimeClass will be used, which is an implicit class with an + empty definition that uses the default runtime handler. + More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class + type: string + schedulerName: + description: |- + If specified, the pod will be dispatched by specified scheduler. + If not specified, the pod will be dispatched by default scheduler. + type: string + schedulingGates: + description: |- + SchedulingGates is an opaque list of values that if specified will block scheduling the pod. + If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the + scheduler will not attempt to schedule the pod. + + + SchedulingGates can only be set at pod creation time, and be removed only afterwards. + items: + description: PodSchedulingGate is associated to a Pod to + guard its scheduling. + properties: + name: + description: |- + Name of the scheduling gate. + Each scheduling gate must have a unique name field. + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + securityContext: + description: |- + SecurityContext holds pod-level security attributes and common container settings. + Optional: Defaults to empty. See type description for default values of each field. + properties: + appArmorProfile: + description: |- + appArmorProfile is the AppArmor options to use by the containers in this pod. + Note that this field cannot be set when spec.os.name is windows. + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile loaded on the node that should be used. + The profile must be preconfigured on the node to work. + Must match the loaded name of the profile. + Must be set if and only if type is "Localhost". + type: string + type: + description: |- + type indicates which kind of AppArmor profile will be applied. + Valid options are: + Localhost - a profile pre-loaded on the node. + RuntimeDefault - the container runtime's default profile. + Unconfined - no AppArmor enforcement. + type: string + required: + - type + type: object + fsGroup: + description: |- + A special supplemental group that applies to all containers in a pod. + Some volume types allow the Kubelet to change the ownership of that volume + to be owned by the pod: + + + 1. The owning GID will be the FSGroup + 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) + 3. The permission bits are OR'd with rw-rw---- + + + If unset, the Kubelet will not modify the ownership and permissions of any volume. + Note that this field cannot be set when spec.os.name is windows. + format: int64 + type: integer + fsGroupChangePolicy: + description: |- + fsGroupChangePolicy defines behavior of changing ownership and permission of the volume + before being exposed inside Pod. This field will only apply to + volume types which support fsGroup based ownership(and permissions). + It will have no effect on ephemeral volume types such as: secret, configmaps + and emptydir. + Valid values are "OnRootMismatch" and "Always". If not specified, "Always" is used. + Note that this field cannot be set when spec.os.name is windows. + type: string + runAsGroup: + description: |- + The GID to run the entrypoint of the container process. + Uses runtime default if unset. + May also be set in SecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence + for that container. + Note that this field cannot be set when spec.os.name is windows. + format: int64 + type: integer + runAsNonRoot: + description: |- + Indicates that the container must run as a non-root user. + If true, the Kubelet will validate the image at runtime to ensure that it + does not run as UID 0 (root) and fail to start the container if it does. + If unset or false, no such validation will be performed. + May also be set in SecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + type: boolean + runAsUser: + description: |- + The UID to run the entrypoint of the container process. + Defaults to user specified in image metadata if unspecified. + May also be set in SecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence + for that container. + Note that this field cannot be set when spec.os.name is windows. + format: int64 + type: integer + seLinuxOptions: + description: |- + The SELinux context to be applied to all containers. + If unspecified, the container runtime will allocate a random SELinux context for each + container. May also be set in SecurityContext. If set in + both SecurityContext and PodSecurityContext, the value specified in SecurityContext + takes precedence for that container. + Note that this field cannot be set when spec.os.name is windows. + properties: + level: + description: Level is SELinux level label that applies + to the container. + type: string + role: + description: Role is a SELinux role label that applies + to the container. + type: string + type: + description: Type is a SELinux type label that applies + to the container. + type: string + user: + description: User is a SELinux user label that applies + to the container. + type: string + type: object + seccompProfile: + description: |- + The seccomp options to use by the containers in this pod. + Note that this field cannot be set when spec.os.name is windows. + properties: + localhostProfile: + description: |- + localhostProfile indicates a profile defined in a file on the node should be used. + The profile must be preconfigured on the node to work. + Must be a descending path, relative to the kubelet's configured seccomp profile location. + Must be set if type is "Localhost". Must NOT be set for any other type. + type: string + type: + description: |- + type indicates which kind of seccomp profile will be applied. + Valid options are: + + + Localhost - a profile defined in a file on the node should be used. + RuntimeDefault - the container runtime default profile should be used. + Unconfined - no profile should be applied. + type: string + required: + - type + type: object + supplementalGroups: + description: |- + A list of groups applied to the first process run in each container, in addition + to the container's primary GID, the fsGroup (if specified), and group memberships + defined in the container image for the uid of the container process. If unspecified, + no additional groups are added to any container. Note that group memberships + defined in the container image for the uid of the container process are still effective, + even if they are not included in this list. + Note that this field cannot be set when spec.os.name is windows. + items: + format: int64 + type: integer + type: array + x-kubernetes-list-type: atomic + sysctls: + description: |- + Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported + sysctls (by the container runtime) might fail to launch. + Note that this field cannot be set when spec.os.name is windows. + items: + description: Sysctl defines a kernel parameter to be + set + properties: + name: + description: Name of a property to set + type: string + value: + description: Value of a property to set + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + windowsOptions: + description: |- + The Windows specific settings applied to all containers. + If unspecified, the options within a container's SecurityContext will be used. + If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + Note that this field cannot be set when spec.os.name is linux. + properties: + gmsaCredentialSpec: + description: |- + GMSACredentialSpec is where the GMSA admission webhook + (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the + GMSA credential spec named by the GMSACredentialSpecName field. + type: string + gmsaCredentialSpecName: + description: GMSACredentialSpecName is the name of + the GMSA credential spec to use. + type: string + hostProcess: + description: |- + HostProcess determines if a container should be run as a 'Host Process' container. + All of a Pod's containers must have the same effective HostProcess value + (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + In addition, if HostProcess is true then HostNetwork must also be set to true. + type: boolean + runAsUserName: + description: |- + The UserName in Windows to run the entrypoint of the container process. + Defaults to the user specified in image metadata if unspecified. + May also be set in PodSecurityContext. If set in both SecurityContext and + PodSecurityContext, the value specified in SecurityContext takes precedence. + type: string + type: object + type: object + serviceAccount: + description: |- + DeprecatedServiceAccount is a deprecated alias for ServiceAccountName. + Deprecated: Use serviceAccountName instead. + type: string + serviceAccountName: + description: |- + ServiceAccountName is the name of the ServiceAccount to use to run this pod. + More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + type: string + setHostnameAsFQDN: + description: |- + If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). + In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). + In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN. + If a pod does not have FQDN, this has no effect. + Default to false. + type: boolean + shareProcessNamespace: + description: |- + Share a single process namespace between all of the containers in a pod. + When this is set containers will be able to view and signal processes from other containers + in the same pod, and the first process in each container will not be assigned PID 1. + HostPID and ShareProcessNamespace cannot both be set. + Optional: Default to false. + type: boolean + subdomain: + description: |- + If specified, the fully qualified Pod hostname will be "...svc.". + If not specified, the pod will not have a domainname at all. + type: string + terminationGracePeriodSeconds: + description: |- + Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. + Value must be non-negative integer. The value zero indicates stop immediately via + the kill signal (no opportunity to shut down). + If this value is nil, the default grace period will be used instead. + The grace period is the duration in seconds after the processes running in the pod are sent + a termination signal and the time when the processes are forcibly halted with a kill signal. + Set this value longer than the expected cleanup time for your process. + Defaults to 30 seconds. + format: int64 + type: integer + tolerations: + description: If specified, the pod's tolerations. + items: + description: |- + The pod this Toleration is attached to tolerates any taint that matches + the triple using the matching operator . + properties: + effect: + description: |- + Effect indicates the taint effect to match. Empty means match all taint effects. + When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + type: string + key: + description: |- + Key is the taint key that the toleration applies to. Empty means match all taint keys. + If the key is empty, operator must be Exists; this combination means to match all values and all keys. + type: string + operator: + description: |- + Operator represents a key's relationship to the value. + Valid operators are Exists and Equal. Defaults to Equal. + Exists is equivalent to wildcard for value, so that a pod can + tolerate all taints of a particular category. + type: string + tolerationSeconds: + description: |- + TolerationSeconds represents the period of time the toleration (which must be + of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, + it is not set, which means tolerate the taint forever (do not evict). Zero and + negative values will be treated as 0 (evict immediately) by the system. + format: int64 + type: integer + value: + description: |- + Value is the taint value the toleration matches to. + If the operator is Exists, the value should be empty, otherwise just a regular string. + type: string + type: object + type: array + x-kubernetes-list-type: atomic + topologySpreadConstraints: + description: |- + TopologySpreadConstraints describes how a group of pods ought to spread across topology + domains. Scheduler will schedule pods in a way which abides by the constraints. + All topologySpreadConstraints are ANDed. + items: + description: TopologySpreadConstraint specifies how to spread + matching pods among the given topology. + properties: + labelSelector: + description: |- + LabelSelector is used to find matching pods. + Pods that match this label selector are counted to determine the number of pods + in their corresponding topology domain. + properties: + matchExpressions: + description: matchExpressions is a list of label + selector requirements. The requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label key that the + selector applies to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + description: |- + MatchLabelKeys is a set of pod label keys to select the pods over which + spreading will be calculated. The keys are used to lookup values from the + incoming pod labels, those key-value labels are ANDed with labelSelector + to select the group of existing pods over which spreading will be calculated + for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + MatchLabelKeys cannot be set when LabelSelector isn't set. + Keys that don't exist in the incoming pod labels will + be ignored. A null or empty list means only match against labelSelector. + + + This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default). + items: + type: string + type: array + x-kubernetes-list-type: atomic + maxSkew: + description: |- + MaxSkew describes the degree to which pods may be unevenly distributed. + When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference + between the number of matching pods in the target topology and the global minimum. + The global minimum is the minimum number of matching pods in an eligible domain + or zero if the number of eligible domains is less than MinDomains. + For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + labelSelector spread as 2/2/1: + In this case, the global minimum is 1. + | zone1 | zone2 | zone3 | + | P P | P P | P | + - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; + scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) + violate MaxSkew(1). + - if MaxSkew is 2, incoming pod can be scheduled onto any zone. + When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence + to topologies that satisfy it. + It's a required field. Default value is 1 and 0 is not allowed. + format: int32 + type: integer + minDomains: + description: |- + MinDomains indicates a minimum number of eligible domains. + When the number of eligible domains with matching topology keys is less than minDomains, + Pod Topology Spread treats "global minimum" as 0, and then the calculation of Skew is performed. + And when the number of eligible domains with matching topology keys equals or greater than minDomains, + this value has no effect on scheduling. + As a result, when the number of eligible domains is less than minDomains, + scheduler won't schedule more than maxSkew Pods to those domains. + If value is nil, the constraint behaves as if MinDomains is equal to 1. + Valid values are integers greater than 0. + When value is not nil, WhenUnsatisfiable must be DoNotSchedule. + + + For example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same + labelSelector spread as 2/2/2: + | zone1 | zone2 | zone3 | + | P P | P P | P P | + The number of domains is less than 5(MinDomains), so "global minimum" is treated as 0. + In this situation, new pod with the same labelSelector cannot be scheduled, + because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, + it will violate MaxSkew. + format: int32 + type: integer + nodeAffinityPolicy: + description: |- + NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector + when calculating pod topology spread skew. Options are: + - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. + - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations. + + + If this value is nil, the behavior is equivalent to the Honor policy. + This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag. + type: string + nodeTaintsPolicy: + description: |- + NodeTaintsPolicy indicates how we will treat node taints when calculating + pod topology spread skew. Options are: + - Honor: nodes without taints, along with tainted nodes for which the incoming pod + has a toleration, are included. + - Ignore: node taints are ignored. All nodes are included. + + + If this value is nil, the behavior is equivalent to the Ignore policy. + This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag. + type: string + topologyKey: + description: |- + TopologyKey is the key of node labels. Nodes that have a label with this key + and identical values are considered to be in the same topology. + We consider each as a "bucket", and try to put balanced number + of pods into each bucket. + We define a domain as a particular instance of a topology. + Also, we define an eligible domain as a domain whose nodes meet the requirements of + nodeAffinityPolicy and nodeTaintsPolicy. + e.g. If TopologyKey is "kubernetes.io/hostname", each Node is a domain of that topology. + And, if TopologyKey is "topology.kubernetes.io/zone", each zone is a domain of that topology. + It's a required field. + type: string + whenUnsatisfiable: + description: |- + WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy + the spread constraint. + - DoNotSchedule (default) tells the scheduler not to schedule it. + - ScheduleAnyway tells the scheduler to schedule the pod in any location, + but giving higher precedence to topologies that would help reduce the + skew. + A constraint is considered "Unsatisfiable" for an incoming pod + if and only if every possible node assignment for that pod would violate + "MaxSkew" on some topology. + For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + labelSelector spread as 3/1/1: + | zone1 | zone2 | zone3 | + | P P P | P | P | + If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled + to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies + MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler + won't make it *more* imbalanced. + It's a required field. + type: string + required: + - maxSkew + - topologyKey + - whenUnsatisfiable + type: object + type: array + x-kubernetes-list-map-keys: + - topologyKey + - whenUnsatisfiable + x-kubernetes-list-type: map + volumes: + description: |- + List of volumes that can be mounted by containers belonging to the pod. + More info: https://kubernetes.io/docs/concepts/storage/volumes + items: + description: Volume represents a named volume in a pod that + may be accessed by any container in the pod. + properties: + awsElasticBlockStore: + description: |- + awsElasticBlockStore represents an AWS Disk resource that is attached to a + kubelet's host machine and then exposed to the pod. + More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + properties: + fsType: + description: |- + fsType is the filesystem type of the volume that you want to mount. + Tip: Ensure that the filesystem type is supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + TODO: how do we prevent errors in the filesystem from compromising the machine + type: string + partition: + description: |- + partition is the partition in the volume that you want to mount. + If omitted, the default is to mount by volume name. + Examples: For volume /dev/sda1, you specify the partition as "1". + Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). + format: int32 + type: integer + readOnly: + description: |- + readOnly value true will force the readOnly setting in VolumeMounts. + More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + type: boolean + volumeID: + description: |- + volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). + More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + type: string + required: + - volumeID + type: object + azureDisk: + description: azureDisk represents an Azure Data Disk + mount on the host and bind mount to the pod. + properties: + cachingMode: + description: 'cachingMode is the Host Caching mode: + None, Read Only, Read Write.' + type: string + diskName: + description: diskName is the Name of the data disk + in the blob storage + type: string + diskURI: + description: diskURI is the URI of data disk in + the blob storage + type: string + fsType: + description: |- + fsType is Filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + type: string + kind: + description: 'kind expected values are Shared: multiple + blob disks per storage account Dedicated: single + blob disk per storage account Managed: azure + managed data disk (only in managed availability + set). defaults to shared' + type: string + readOnly: + description: |- + readOnly Defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + type: boolean + required: + - diskName + - diskURI + type: object + azureFile: + description: azureFile represents an Azure File Service + mount on the host and bind mount to the pod. + properties: + readOnly: + description: |- + readOnly defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + type: boolean + secretName: + description: secretName is the name of secret that + contains Azure Storage Account Name and Key + type: string + shareName: + description: shareName is the azure share Name + type: string + required: + - secretName + - shareName + type: object + cephfs: + description: cephFS represents a Ceph FS mount on the + host that shares a pod's lifetime + properties: + monitors: + description: |- + monitors is Required: Monitors is a collection of Ceph monitors + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + items: + type: string + type: array + x-kubernetes-list-type: atomic + path: + description: 'path is Optional: Used as the mounted + root, rather than the full Ceph tree, default + is /' + type: string + readOnly: + description: |- + readOnly is Optional: Defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + type: boolean + secretFile: + description: |- + secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + type: string + secretRef: + description: |- + secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + type: object + x-kubernetes-map-type: atomic + user: + description: |- + user is optional: User is the rados user name, default is admin + More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + type: string + required: + - monitors + type: object + cinder: + description: |- + cinder represents a cinder volume attached and mounted on kubelets host machine. + More info: https://examples.k8s.io/mysql-cinder-pd/README.md + properties: + fsType: + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://examples.k8s.io/mysql-cinder-pd/README.md + type: string + readOnly: + description: |- + readOnly defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + More info: https://examples.k8s.io/mysql-cinder-pd/README.md + type: boolean + secretRef: + description: |- + secretRef is optional: points to a secret object containing parameters used to connect + to OpenStack. + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + type: object + x-kubernetes-map-type: atomic + volumeID: + description: |- + volumeID used to identify the volume in cinder. + More info: https://examples.k8s.io/mysql-cinder-pd/README.md + type: string + required: + - volumeID + type: object + configMap: + description: configMap represents a configMap that should + populate this volume + properties: + defaultMode: + description: |- + defaultMode is optional: mode bits used to set permissions on created files by default. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + Defaults to 0644. + Directories within the path are not affected by this setting. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. + format: int32 + type: integer + items: + description: |- + items if unspecified, each key-value pair in the Data field of the referenced + ConfigMap will be projected into the volume as a file whose name is the + key and content is the value. If specified, the listed keys will be + projected into the specified paths, and unlisted keys will not be + present. If a key is specified which is not present in the ConfigMap, + the volume setup will error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start with '..'. + items: + description: Maps a string key to a path within + a volume. + properties: + key: + description: key is the key to project. + type: string + mode: + description: |- + mode is Optional: mode bits used to set permissions on this file. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. + format: int32 + type: integer + path: + description: |- + path is the relative path of the file to map the key to. + May not be an absolute path. + May not contain the path element '..'. + May not start with the string '..'. + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: optional specify whether the ConfigMap + or its keys must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + csi: + description: csi (Container Storage Interface) represents + ephemeral storage that is handled by certain external + CSI drivers (Beta feature). + properties: + driver: + description: |- + driver is the name of the CSI driver that handles this volume. + Consult with your admin for the correct name as registered in the cluster. + type: string + fsType: + description: |- + fsType to mount. Ex. "ext4", "xfs", "ntfs". + If not provided, the empty value is passed to the associated CSI driver + which will determine the default filesystem to apply. + type: string + nodePublishSecretRef: + description: |- + nodePublishSecretRef is a reference to the secret object containing + sensitive information to pass to the CSI driver to complete the CSI + NodePublishVolume and NodeUnpublishVolume calls. + This field is optional, and may be empty if no secret is required. If the + secret object contains more than one secret, all secret references are passed. + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + type: object + x-kubernetes-map-type: atomic + readOnly: + description: |- + readOnly specifies a read-only configuration for the volume. + Defaults to false (read/write). + type: boolean + volumeAttributes: + additionalProperties: + type: string + description: |- + volumeAttributes stores driver-specific properties that are passed to the CSI + driver. Consult your driver's documentation for supported values. + type: object + required: + - driver + type: object + downwardAPI: + description: downwardAPI represents downward API about + the pod that should populate this volume + properties: + defaultMode: + description: |- + Optional: mode bits to use on created files by default. Must be a + Optional: mode bits used to set permissions on created files by default. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + Defaults to 0644. + Directories within the path are not affected by this setting. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. + format: int32 + type: integer + items: + description: Items is a list of downward API volume + file + items: + description: DownwardAPIVolumeFile represents + information to create the file containing the + pod field + properties: + fieldRef: + description: 'Required: Selects a field of + the pod: only annotations, labels, name, + namespace and uid are supported.' + properties: + apiVersion: + description: Version of the schema the + FieldPath is written in terms of, defaults + to "v1". + type: string + fieldPath: + description: Path of the field to select + in the specified API version. + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + mode: + description: |- + Optional: mode bits used to set permissions on this file, must be an octal value + between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. + format: int32 + type: integer + path: + description: 'Required: Path is the relative + path name of the file to be created. Must + not be absolute or contain the ''..'' path. + Must be utf-8 encoded. The first item of + the relative path must not start with ''..''' + type: string + resourceFieldRef: + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. + properties: + containerName: + description: 'Container name: required + for volumes, optional for env vars' + type: string + divisor: + anyOf: + - type: integer + - type: string + description: Specifies the output format + of the exposed resources, defaults to + "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource to select' + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + required: + - path + type: object + type: array + x-kubernetes-list-type: atomic + type: object + emptyDir: + description: |- + emptyDir represents a temporary directory that shares a pod's lifetime. + More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir + properties: + medium: + description: |- + medium represents what type of storage medium should back this directory. + The default is "" which means to use the node's default medium. + Must be an empty string (default) or Memory. + More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir + type: string + sizeLimit: + anyOf: + - type: integer + - type: string + description: |- + sizeLimit is the total amount of local storage required for this EmptyDir volume. + The size limit is also applicable for memory medium. + The maximum usage on memory medium EmptyDir would be the minimum value between + the SizeLimit specified here and the sum of memory limits of all containers in a pod. + The default is nil which means that the limit is undefined. + More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + ephemeral: + description: |- + ephemeral represents a volume that is handled by a cluster storage driver. + The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, + and deleted when the pod is removed. + + + Use this if: + a) the volume is only needed while the pod runs, + b) features of normal volumes like restoring from snapshot or capacity + tracking are needed, + c) the storage driver is specified through a storage class, and + d) the storage driver supports dynamic volume provisioning through + a PersistentVolumeClaim (see EphemeralVolumeSource for more + information on the connection between this volume type + and PersistentVolumeClaim). + + + Use PersistentVolumeClaim or one of the vendor-specific + APIs for volumes that persist for longer than the lifecycle + of an individual pod. + + + Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to + be used that way - see the documentation of the driver for + more information. + + + A pod can use both types of ephemeral volumes and + persistent volumes at the same time. + properties: + volumeClaimTemplate: + description: |- + Will be used to create a stand-alone PVC to provision the volume. + The pod in which this EphemeralVolumeSource is embedded will be the + owner of the PVC, i.e. the PVC will be deleted together with the + pod. The name of the PVC will be `-` where + `` is the name from the `PodSpec.Volumes` array + entry. Pod validation will reject the pod if the concatenated name + is not valid for a PVC (for example, too long). + + + An existing PVC with that name that is not owned by the pod + will *not* be used for the pod to avoid using an unrelated + volume by mistake. Starting the pod is then blocked until + the unrelated PVC is removed. If such a pre-created PVC is + meant to be used by the pod, the PVC has to updated with an + owner reference to the pod once the pod exists. Normally + this should not be necessary, but it may be useful when + manually reconstructing a broken cluster. + + + This field is read-only and no changes will be made by Kubernetes + to the PVC after it has been created. + + + Required, must not be nil. + properties: + metadata: + description: |- + May contain labels and annotations that will be copied into the PVC + when creating it. No other fields are allowed and will be rejected during + validation. + type: object + spec: + description: |- + The specification for the PersistentVolumeClaim. The entire content is + copied unchanged into the PVC that gets created from this + template. The same fields as in a PersistentVolumeClaim + are also valid here. + properties: + accessModes: + description: |- + accessModes contains the desired access modes the volume should have. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + description: |- + dataSource field can be used to specify either: + * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + * An existing PVC (PersistentVolumeClaim) + If the provisioner or an external controller can support the specified data source, + it will create a new volume based on the contents of the specified data source. + When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + If the namespace is specified, then dataSourceRef will not be copied to dataSource. + properties: + apiGroup: + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource + being referenced + type: string + name: + description: Name is the name of resource + being referenced + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + description: |- + dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + volume is desired. This may be any object from a non-empty API group (non + core object) or a PersistentVolumeClaim object. + When this field is specified, volume binding will only succeed if the type of + the specified object matches some installed volume populator or dynamic + provisioner. + This field will replace the functionality of the dataSource field and as such + if both fields are non-empty, they must have the same value. For backwards + compatibility, when namespace isn't specified in dataSourceRef, + both fields (dataSource and dataSourceRef) will be set to the same + value automatically if one of them is empty and the other is non-empty. + When namespace is specified in dataSourceRef, + dataSource isn't set to the same value and must be empty. + There are three important differences between dataSource and dataSourceRef: + * While dataSource only allows two specific types of objects, dataSourceRef + allows any non-core object, as well as PersistentVolumeClaim objects. + * While dataSource ignores disallowed values (dropping them), dataSourceRef + preserves all values, and generates an error if a disallowed value is + specified. + * While dataSource only allows local objects, dataSourceRef allows objects + in any namespaces. + (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + properties: + apiGroup: + description: |- + APIGroup is the group for the resource being referenced. + If APIGroup is not specified, the specified Kind must be in the core API group. + For any other third-party types, APIGroup is required. + type: string + kind: + description: Kind is the type of resource + being referenced + type: string + name: + description: Name is the name of resource + being referenced + type: string + namespace: + description: |- + Namespace is the namespace of resource being referenced + Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + type: string + required: + - kind + - name + type: object + resources: + description: |- + resources represents the minimum resources the volume should have. + If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements + that are lower than previous value but must still be higher than capacity recorded in the + status field of the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Limits describes the maximum amount of compute resources allowed. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + description: |- + Requests describes the minimum amount of compute resources required. + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + otherwise to an implementation-defined value. Requests cannot exceed Limits. + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + type: object + type: object + selector: + description: selector is a label query over + volumes to consider for binding. + properties: + matchExpressions: + description: matchExpressions is a list + of label selector requirements. The + requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label + key that the selector applies + to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + description: |- + storageClassName is the name of the StorageClass required by the claim. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + type: string + volumeAttributesClassName: + description: |- + volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + If specified, the CSI driver will create or update the volume with the attributes defined + in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass + will be applied to the claim but it's not allowed to reset this field to empty string once it is set. + If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass + will be set by the persistentvolume controller if it exists. + If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + exists. + More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled. + type: string + volumeMode: + description: |- + volumeMode defines what type of volume is required by the claim. + Value of Filesystem is implied when not included in claim spec. + type: string + volumeName: + description: volumeName is the binding reference + to the PersistentVolume backing this claim. + type: string + type: object + required: + - spec + type: object + type: object + fc: + description: fc represents a Fibre Channel resource + that is attached to a kubelet's host machine and then + exposed to the pod. + properties: + fsType: + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + TODO: how do we prevent errors in the filesystem from compromising the machine + type: string + lun: + description: 'lun is Optional: FC target lun number' + format: int32 + type: integer + readOnly: + description: |- + readOnly is Optional: Defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + type: boolean + targetWWNs: + description: 'targetWWNs is Optional: FC target + worldwide names (WWNs)' + items: + type: string + type: array + x-kubernetes-list-type: atomic + wwids: + description: |- + wwids Optional: FC volume world wide identifiers (wwids) + Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously. + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + flexVolume: + description: |- + flexVolume represents a generic volume resource that is + provisioned/attached using an exec based plugin. + properties: + driver: + description: driver is the name of the driver to + use for this volume. + type: string + fsType: + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. + type: string + options: + additionalProperties: + type: string + description: 'options is Optional: this field holds + extra command options if any.' + type: object + readOnly: + description: |- + readOnly is Optional: defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + type: boolean + secretRef: + description: |- + secretRef is Optional: secretRef is reference to the secret object containing + sensitive information to pass to the plugin scripts. This may be + empty if no secret object is specified. If the secret object + contains more than one secret, all secrets are passed to the plugin + scripts. + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + type: object + x-kubernetes-map-type: atomic + required: + - driver + type: object + flocker: + description: flocker represents a Flocker volume attached + to a kubelet's host machine. This depends on the Flocker + control service being running + properties: + datasetName: + description: |- + datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker + should be considered as deprecated + type: string + datasetUUID: + description: datasetUUID is the UUID of the dataset. + This is unique identifier of a Flocker dataset + type: string + type: object + gcePersistentDisk: + description: |- + gcePersistentDisk represents a GCE Disk resource that is attached to a + kubelet's host machine and then exposed to the pod. + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + properties: + fsType: + description: |- + fsType is filesystem type of the volume that you want to mount. + Tip: Ensure that the filesystem type is supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + TODO: how do we prevent errors in the filesystem from compromising the machine + type: string + partition: + description: |- + partition is the partition in the volume that you want to mount. + If omitted, the default is to mount by volume name. + Examples: For volume /dev/sda1, you specify the partition as "1". + Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + format: int32 + type: integer + pdName: + description: |- + pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + type: string + readOnly: + description: |- + readOnly here will force the ReadOnly setting in VolumeMounts. + Defaults to false. + More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + type: boolean + required: + - pdName + type: object + gitRepo: + description: |- + gitRepo represents a git repository at a particular revision. + DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an + EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir + into the Pod's container. + properties: + directory: + description: |- + directory is the target directory name. + Must not contain or start with '..'. If '.' is supplied, the volume directory will be the + git repository. Otherwise, if specified, the volume will contain the git repository in + the subdirectory with the given name. + type: string + repository: + description: repository is the URL + type: string + revision: + description: revision is the commit hash for the + specified revision. + type: string + required: + - repository + type: object + glusterfs: + description: |- + glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. + More info: https://examples.k8s.io/volumes/glusterfs/README.md + properties: + endpoints: + description: |- + endpoints is the endpoint name that details Glusterfs topology. + More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod + type: string + path: + description: |- + path is the Glusterfs volume path. + More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod + type: string + readOnly: + description: |- + readOnly here will force the Glusterfs volume to be mounted with read-only permissions. + Defaults to false. + More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod + type: boolean + required: + - endpoints + - path + type: object + hostPath: + description: |- + hostPath represents a pre-existing file or directory on the host + machine that is directly exposed to the container. This is generally + used for system agents or other privileged things that are allowed + to see the host machine. Most containers will NOT need this. + More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath + --- + TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not + mount host directories as read/write. + properties: + path: + description: |- + path of the directory on the host. + If the path is a symlink, it will follow the link to the real path. + More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath + type: string + type: + description: |- + type for HostPath Volume + Defaults to "" + More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath + type: string + required: + - path + type: object + iscsi: + description: |- + iscsi represents an ISCSI Disk resource that is attached to a + kubelet's host machine and then exposed to the pod. + More info: https://examples.k8s.io/volumes/iscsi/README.md + properties: + chapAuthDiscovery: + description: chapAuthDiscovery defines whether support + iSCSI Discovery CHAP authentication + type: boolean + chapAuthSession: + description: chapAuthSession defines whether support + iSCSI Session CHAP authentication + type: boolean + fsType: + description: |- + fsType is the filesystem type of the volume that you want to mount. + Tip: Ensure that the filesystem type is supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi + TODO: how do we prevent errors in the filesystem from compromising the machine + type: string + initiatorName: + description: |- + initiatorName is the custom iSCSI Initiator Name. + If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface + : will be created for the connection. + type: string + iqn: + description: iqn is the target iSCSI Qualified Name. + type: string + iscsiInterface: + description: |- + iscsiInterface is the interface Name that uses an iSCSI transport. + Defaults to 'default' (tcp). + type: string + lun: + description: lun represents iSCSI Target Lun number. + format: int32 + type: integer + portals: + description: |- + portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port + is other than default (typically TCP ports 860 and 3260). + items: + type: string + type: array + x-kubernetes-list-type: atomic + readOnly: + description: |- + readOnly here will force the ReadOnly setting in VolumeMounts. + Defaults to false. + type: boolean + secretRef: + description: secretRef is the CHAP Secret for iSCSI + target and initiator authentication + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + type: object + x-kubernetes-map-type: atomic + targetPortal: + description: |- + targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port + is other than default (typically TCP ports 860 and 3260). + type: string + required: + - iqn + - lun + - targetPortal + type: object + name: + description: |- + name of the volume. + Must be a DNS_LABEL and unique within the pod. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + nfs: + description: |- + nfs represents an NFS mount on the host that shares a pod's lifetime + More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs + properties: + path: + description: |- + path that is exported by the NFS server. + More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs + type: string + readOnly: + description: |- + readOnly here will force the NFS export to be mounted with read-only permissions. + Defaults to false. + More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs + type: boolean + server: + description: |- + server is the hostname or IP address of the NFS server. + More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs + type: string + required: + - path + - server + type: object + persistentVolumeClaim: + description: |- + persistentVolumeClaimVolumeSource represents a reference to a + PersistentVolumeClaim in the same namespace. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims + properties: + claimName: + description: |- + claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. + More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims + type: string + readOnly: + description: |- + readOnly Will force the ReadOnly setting in VolumeMounts. + Default false. + type: boolean + required: + - claimName + type: object + photonPersistentDisk: + description: photonPersistentDisk represents a PhotonController + persistent disk attached and mounted on kubelets host + machine + properties: + fsType: + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + type: string + pdID: + description: pdID is the ID that identifies Photon + Controller persistent disk + type: string + required: + - pdID + type: object + portworxVolume: + description: portworxVolume represents a portworx volume + attached and mounted on kubelets host machine + properties: + fsType: + description: |- + fSType represents the filesystem type to mount + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. + type: string + readOnly: + description: |- + readOnly defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + type: boolean + volumeID: + description: volumeID uniquely identifies a Portworx + volume + type: string + required: + - volumeID + type: object + projected: + description: projected items for all in one resources + secrets, configmaps, and downward API + properties: + defaultMode: + description: |- + defaultMode are the mode bits used to set permissions on created files by default. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + Directories within the path are not affected by this setting. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. + format: int32 + type: integer + sources: + description: sources is the list of volume projections + items: + description: Projection that may be projected + along with other supported volume types + properties: + clusterTrustBundle: + description: |- + ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field + of ClusterTrustBundle objects in an auto-updating file. + + + Alpha, gated by the ClusterTrustBundleProjection feature gate. + + + ClusterTrustBundle objects can either be selected by name, or by the + combination of signer name and a label selector. + + + Kubelet performs aggressive normalization of the PEM contents written + into the pod filesystem. Esoteric PEM features such as inter-block + comments and block headers are stripped. Certificates are deduplicated. + The ordering of certificates within the file is arbitrary, and Kubelet + may change the order over time. + properties: + labelSelector: + description: |- + Select all ClusterTrustBundles that match this label selector. Only has + effect if signerName is set. Mutually-exclusive with name. If unset, + interpreted as "match nothing". If set but empty, interpreted as "match + everything". + properties: + matchExpressions: + description: matchExpressions is a + list of label selector requirements. + The requirements are ANDed. + items: + description: |- + A label selector requirement is a selector that contains values, a key, and an operator that + relates the key and values. + properties: + key: + description: key is the label + key that the selector applies + to. + type: string + operator: + description: |- + operator represents a key's relationship to a set of values. + Valid operators are In, NotIn, Exists and DoesNotExist. + type: string + values: + description: |- + values is an array of string values. If the operator is In or NotIn, + the values array must be non-empty. If the operator is Exists or DoesNotExist, + the values array must be empty. This array is replaced during a strategic + merge patch. + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + description: |- + matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels + map is equivalent to an element of matchExpressions, whose key field is "key", the + operator is "In", and the values array contains only "value". The requirements are ANDed. + type: object + type: object + x-kubernetes-map-type: atomic + name: + description: |- + Select a single ClusterTrustBundle by object name. Mutually-exclusive + with signerName and labelSelector. + type: string + optional: + description: |- + If true, don't block pod startup if the referenced ClusterTrustBundle(s) + aren't available. If using name, then the named ClusterTrustBundle is + allowed not to exist. If using signerName, then the combination of + signerName and labelSelector is allowed to match zero + ClusterTrustBundles. + type: boolean + path: + description: Relative path from the volume + root to write the bundle. + type: string + signerName: + description: |- + Select all ClusterTrustBundles that match this signer name. + Mutually-exclusive with name. The contents of all selected + ClusterTrustBundles will be unified and deduplicated. + type: string + required: + - path + type: object + configMap: + description: configMap information about the + configMap data to project + properties: + items: + description: |- + items if unspecified, each key-value pair in the Data field of the referenced + ConfigMap will be projected into the volume as a file whose name is the + key and content is the value. If specified, the listed keys will be + projected into the specified paths, and unlisted keys will not be + present. If a key is specified which is not present in the ConfigMap, + the volume setup will error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start with '..'. + items: + description: Maps a string key to a + path within a volume. + properties: + key: + description: key is the key to project. + type: string + mode: + description: |- + mode is Optional: mode bits used to set permissions on this file. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. + format: int32 + type: integer + path: + description: |- + path is the relative path of the file to map the key to. + May not be an absolute path. + May not contain the path element '..'. + May not start with the string '..'. + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: optional specify whether + the ConfigMap or its keys must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + downwardAPI: + description: downwardAPI information about + the downwardAPI data to project + properties: + items: + description: Items is a list of DownwardAPIVolume + file + items: + description: DownwardAPIVolumeFile represents + information to create the file containing + the pod field + properties: + fieldRef: + description: 'Required: Selects + a field of the pod: only annotations, + labels, name, namespace and uid + are supported.' + properties: + apiVersion: + description: Version of the + schema the FieldPath is written + in terms of, defaults to "v1". + type: string + fieldPath: + description: Path of the field + to select in the specified + API version. + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + mode: + description: |- + Optional: mode bits used to set permissions on this file, must be an octal value + between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. + format: int32 + type: integer + path: + description: 'Required: Path is the + relative path name of the file + to be created. Must not be absolute + or contain the ''..'' path. Must + be utf-8 encoded. The first item + of the relative path must not + start with ''..''' + type: string + resourceFieldRef: + description: |- + Selects a resource of the container: only resources limits and requests + (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. + properties: + containerName: + description: 'Container name: + required for volumes, optional + for env vars' + type: string + divisor: + anyOf: + - type: integer + - type: string + description: Specifies the output + format of the exposed resources, + defaults to "1" + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + description: 'Required: resource + to select' + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + required: + - path + type: object + type: array + x-kubernetes-list-type: atomic + type: object + secret: + description: secret information about the + secret data to project + properties: + items: + description: |- + items if unspecified, each key-value pair in the Data field of the referenced + Secret will be projected into the volume as a file whose name is the + key and content is the value. If specified, the listed keys will be + projected into the specified paths, and unlisted keys will not be + present. If a key is specified which is not present in the Secret, + the volume setup will error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start with '..'. + items: + description: Maps a string key to a + path within a volume. + properties: + key: + description: key is the key to project. + type: string + mode: + description: |- + mode is Optional: mode bits used to set permissions on this file. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. + format: int32 + type: integer + path: + description: |- + path is the relative path of the file to map the key to. + May not be an absolute path. + May not contain the path element '..'. + May not start with the string '..'. + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + optional: + description: optional field specify whether + the Secret or its key must be defined + type: boolean + type: object + x-kubernetes-map-type: atomic + serviceAccountToken: + description: serviceAccountToken is information + about the serviceAccountToken data to project + properties: + audience: + description: |- + audience is the intended audience of the token. A recipient of a token + must identify itself with an identifier specified in the audience of the + token, and otherwise should reject the token. The audience defaults to the + identifier of the apiserver. + type: string + expirationSeconds: + description: |- + expirationSeconds is the requested duration of validity of the service + account token. As the token approaches expiration, the kubelet volume + plugin will proactively rotate the service account token. The kubelet will + start trying to rotate the token if the token is older than 80 percent of + its time to live or if the token is older than 24 hours.Defaults to 1 hour + and must be at least 10 minutes. + format: int64 + type: integer + path: + description: |- + path is the path relative to the mount point of the file to project the + token into. + type: string + required: + - path + type: object + type: object + type: array + x-kubernetes-list-type: atomic + type: object + quobyte: + description: quobyte represents a Quobyte mount on the + host that shares a pod's lifetime + properties: + group: + description: |- + group to map volume access to + Default is no group + type: string + readOnly: + description: |- + readOnly here will force the Quobyte volume to be mounted with read-only permissions. + Defaults to false. + type: boolean + registry: + description: |- + registry represents a single or multiple Quobyte Registry services + specified as a string as host:port pair (multiple entries are separated with commas) + which acts as the central registry for volumes + type: string + tenant: + description: |- + tenant owning the given Quobyte volume in the Backend + Used with dynamically provisioned Quobyte volumes, value is set by the plugin + type: string + user: + description: |- + user to map volume access to + Defaults to serivceaccount user + type: string + volume: + description: volume is a string that references + an already created Quobyte volume by name. + type: string + required: + - registry + - volume + type: object + rbd: + description: |- + rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. + More info: https://examples.k8s.io/volumes/rbd/README.md + properties: + fsType: + description: |- + fsType is the filesystem type of the volume that you want to mount. + Tip: Ensure that the filesystem type is supported by the host operating system. + Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd + TODO: how do we prevent errors in the filesystem from compromising the machine + type: string + image: + description: |- + image is the rados image name. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + type: string + keyring: + description: |- + keyring is the path to key ring for RBDUser. + Default is /etc/ceph/keyring. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + type: string + monitors: + description: |- + monitors is a collection of Ceph monitors. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + items: + type: string + type: array + x-kubernetes-list-type: atomic + pool: + description: |- + pool is the rados pool name. + Default is rbd. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + type: string + readOnly: + description: |- + readOnly here will force the ReadOnly setting in VolumeMounts. + Defaults to false. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + type: boolean + secretRef: + description: |- + secretRef is name of the authentication secret for RBDUser. If provided + overrides keyring. + Default is nil. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + type: object + x-kubernetes-map-type: atomic + user: + description: |- + user is the rados user name. + Default is admin. + More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + type: string + required: + - image + - monitors + type: object + scaleIO: + description: scaleIO represents a ScaleIO persistent + volume attached and mounted on Kubernetes nodes. + properties: + fsType: + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". + Default is "xfs". + type: string + gateway: + description: gateway is the host address of the + ScaleIO API Gateway. + type: string + protectionDomain: + description: protectionDomain is the name of the + ScaleIO Protection Domain for the configured storage. + type: string + readOnly: + description: |- + readOnly Defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + type: boolean + secretRef: + description: |- + secretRef references to the secret for ScaleIO user and other + sensitive information. If this is not provided, Login operation will fail. + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + type: object + x-kubernetes-map-type: atomic + sslEnabled: + description: sslEnabled Flag enable/disable SSL + communication with Gateway, default false + type: boolean + storageMode: + description: |- + storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. + Default is ThinProvisioned. + type: string + storagePool: + description: storagePool is the ScaleIO Storage + Pool associated with the protection domain. + type: string + system: + description: system is the name of the storage system + as configured in ScaleIO. + type: string + volumeName: + description: |- + volumeName is the name of a volume already created in the ScaleIO system + that is associated with this volume source. + type: string + required: + - gateway + - secretRef + - system + type: object + secret: + description: |- + secret represents a secret that should populate this volume. + More info: https://kubernetes.io/docs/concepts/storage/volumes#secret + properties: + defaultMode: + description: |- + defaultMode is Optional: mode bits used to set permissions on created files by default. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values + for mode bits. Defaults to 0644. + Directories within the path are not affected by this setting. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. + format: int32 + type: integer + items: + description: |- + items If unspecified, each key-value pair in the Data field of the referenced + Secret will be projected into the volume as a file whose name is the + key and content is the value. If specified, the listed keys will be + projected into the specified paths, and unlisted keys will not be + present. If a key is specified which is not present in the Secret, + the volume setup will error unless it is marked optional. Paths must be + relative and may not contain the '..' path or start with '..'. + items: + description: Maps a string key to a path within + a volume. + properties: + key: + description: key is the key to project. + type: string + mode: + description: |- + mode is Optional: mode bits used to set permissions on this file. + Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + If not specified, the volume defaultMode will be used. + This might be in conflict with other options that affect the file + mode, like fsGroup, and the result can be other mode bits set. + format: int32 + type: integer + path: + description: |- + path is the relative path of the file to map the key to. + May not be an absolute path. + May not contain the path element '..'. + May not start with the string '..'. + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + optional: + description: optional field specify whether the + Secret or its keys must be defined + type: boolean + secretName: + description: |- + secretName is the name of the secret in the pod's namespace to use. + More info: https://kubernetes.io/docs/concepts/storage/volumes#secret + type: string + type: object + storageos: + description: storageOS represents a StorageOS volume + attached and mounted on Kubernetes nodes. + properties: + fsType: + description: |- + fsType is the filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + type: string + readOnly: + description: |- + readOnly defaults to false (read/write). ReadOnly here will force + the ReadOnly setting in VolumeMounts. + type: boolean + secretRef: + description: |- + secretRef specifies the secret to use for obtaining the StorageOS API + credentials. If not specified, default values will be attempted. + properties: + name: + default: "" + description: |- + Name of the referent. + This field is effectively required, but due to backwards compatibility is + allowed to be empty. Instances of this type with an empty value here are + almost certainly wrong. + TODO: Add other useful fields. apiVersion, kind, uid? + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + TODO: Drop `kubebuilder:default` when controller-gen doesn't need it https://github.com/kubernetes-sigs/kubebuilder/issues/3896. + type: string + type: object + x-kubernetes-map-type: atomic + volumeName: + description: |- + volumeName is the human-readable name of the StorageOS volume. Volume + names are only unique within a namespace. + type: string + volumeNamespace: + description: |- + volumeNamespace specifies the scope of the volume within StorageOS. If no + namespace is specified then the Pod's namespace will be used. This allows the + Kubernetes name scoping to be mirrored within StorageOS for tighter integration. + Set VolumeName to any name to override the default behaviour. + Set to "default" if you are not using namespaces within StorageOS. + Namespaces that do not pre-exist within StorageOS will be created. + type: string + type: object + vsphereVolume: + description: vsphereVolume represents a vSphere volume + attached and mounted on kubelets host machine + properties: + fsType: + description: |- + fsType is filesystem type to mount. + Must be a filesystem type supported by the host operating system. + Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + type: string + storagePolicyID: + description: storagePolicyID is the storage Policy + Based Management (SPBM) profile ID associated + with the StoragePolicyName. + type: string + storagePolicyName: + description: storagePolicyName is the storage Policy + Based Management (SPBM) profile name. + type: string + volumePath: + description: volumePath is the path that identifies + vSphere volume vmdk + type: string + required: + - volumePath + type: object + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + required: + - containers + type: object + type: object + type: + default: rw + description: 'Type of service to forward traffic to. Default: `rw`.' + enum: + - rw + - ro + type: string + required: + - cluster + - pgbouncer + type: object + status: + description: |- + Most recently observed status of the Pooler. This data may not be up to + date. Populated by the system. Read-only. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + instances: + description: The number of pods trying to be scheduled + format: int32 + type: integer + secrets: + description: The resource version of the config object + properties: + clientCA: + description: The client CA secret version + properties: + name: + description: The name of the secret + type: string + version: + description: The ResourceVersion of the secret + type: string + type: object + pgBouncerSecrets: + description: The version of the secrets used by PgBouncer + properties: + authQuery: + description: The auth query secret version + properties: + name: + description: The name of the secret + type: string + version: + description: The ResourceVersion of the secret + type: string + type: object + type: object + serverCA: + description: The server CA secret version + properties: + name: + description: The name of the secret + type: string + version: + description: The ResourceVersion of the secret + type: string + type: object + serverTLS: + description: The server TLS secret version + properties: + name: + description: The name of the secret + type: string + version: + description: The ResourceVersion of the secret + type: string + type: object + type: object + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: + scale: + specReplicasPath: .spec.instances + statusReplicasPath: .status.instances + status: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.15.0 + name: scheduledbackups.postgresql.cnpg.io +spec: + group: postgresql.cnpg.io + names: + kind: ScheduledBackup + listKind: ScheduledBackupList + plural: scheduledbackups + singular: scheduledbackup + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - jsonPath: .spec.cluster.name + name: Cluster + type: string + - jsonPath: .status.lastScheduleTime + name: Last Backup + type: date + name: v1 + schema: + openAPIV3Schema: + description: ScheduledBackup is the Schema for the scheduledbackups API + properties: + apiVersion: + description: |- + APIVersion defines the versioned schema of this representation of an object. + Servers should convert recognized schemas to the latest internal value, and + may reject unrecognized values. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources + type: string + kind: + description: |- + Kind is a string value representing the REST resource this object represents. + Servers may infer this from the endpoint the client submits requests to. + Cannot be updated. + In CamelCase. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + type: string + metadata: + type: object + spec: + description: |- + Specification of the desired behavior of the ScheduledBackup. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + backupOwnerReference: + default: none + description: |- + Indicates which ownerReference should be put inside the created backup resources.
+ - none: no owner reference for created backup objects (same behavior as before the field was introduced)
+ - self: sets the Scheduled backup object as owner of the backup
+ - cluster: set the cluster as owner of the backup
+ enum: + - none + - self + - cluster + type: string + cluster: + description: The cluster to backup + properties: + name: + description: Name of the referent. + type: string + required: + - name + type: object + immediate: + description: If the first backup has to be immediately start after + creation or not + type: boolean + method: + default: barmanObjectStore + description: |- + The backup method to be used, possible options are `barmanObjectStore` + and `volumeSnapshot`. Defaults to: `barmanObjectStore`. + enum: + - barmanObjectStore + - volumeSnapshot + type: string + online: + description: |- + Whether the default type of backup with volume snapshots is + online/hot (`true`, default) or offline/cold (`false`) + Overrides the default setting specified in the cluster field '.spec.backup.volumeSnapshot.online' + type: boolean + onlineConfiguration: + description: |- + Configuration parameters to control the online/hot backup with volume snapshots + Overrides the default settings specified in the cluster '.backup.volumeSnapshot.onlineConfiguration' stanza + properties: + immediateCheckpoint: + description: |- + Control whether the I/O workload for the backup initial checkpoint will + be limited, according to the `checkpoint_completion_target` setting on + the PostgreSQL server. If set to true, an immediate checkpoint will be + used, meaning PostgreSQL will complete the checkpoint as soon as + possible. `false` by default. + type: boolean + waitForArchive: + default: true + description: |- + If false, the function will return immediately after the backup is completed, + without waiting for WAL to be archived. + This behavior is only useful with backup software that independently monitors WAL archiving. + Otherwise, WAL required to make the backup consistent might be missing and make the backup useless. + By default, or when this parameter is true, pg_backup_stop will wait for WAL to be archived when archiving is + enabled. + On a standby, this means that it will wait only when archive_mode = always. + If write activity on the primary is low, it may be useful to run pg_switch_wal on the primary in order to trigger + an immediate segment switch. + type: boolean + type: object + pluginConfiguration: + description: Configuration parameters passed to the plugin managing + this backup + properties: + name: + description: Name is the name of the plugin managing this backup + type: string + parameters: + additionalProperties: + type: string + description: |- + Parameters are the configuration parameters passed to the backup + plugin for this backup + type: object + required: + - name + type: object + schedule: + description: |- + The schedule does not follow the same format used in Kubernetes CronJobs + as it includes an additional seconds specifier, + see https://pkg.go.dev/github.com/robfig/cron#hdr-CRON_Expression_Format + type: string + suspend: + description: If this backup is suspended or not + type: boolean + target: + description: |- + The policy to decide which instance should perform this backup. If empty, + it defaults to `cluster.spec.backup.target`. + Available options are empty string, `primary` and `prefer-standby`. + `primary` to have backups run always on primary instances, + `prefer-standby` to have backups run preferably on the most updated + standby, if available. + enum: + - primary + - prefer-standby + type: string + required: + - cluster + - schedule + type: object + status: + description: |- + Most recently observed status of the ScheduledBackup. This data may not be up + to date. Populated by the system. Read-only. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + properties: + lastCheckTime: + description: The latest time the schedule + format: date-time + type: string + lastScheduleTime: + description: Information when was the last time that backup was successfully + scheduled. + format: date-time + type: string + nextScheduleTime: + description: Next time we will run a backup + format: date-time + type: string + type: object + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: + status: {} +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: cnpg-manager + namespace: cnpg-system +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: cnpg-manager +rules: +- apiGroups: + - "" + resources: + - configmaps + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - "" + resources: + - configmaps/status + verbs: + - get + - patch + - update +- apiGroups: + - "" + resources: + - events + verbs: + - create + - patch +- apiGroups: + - "" + resources: + - nodes + verbs: + - get + - list + - watch +- apiGroups: + - "" + resources: + - persistentvolumeclaims + verbs: + - create + - delete + - get + - list + - patch + - watch +- apiGroups: + - "" + resources: + - pods + verbs: + - create + - delete + - get + - list + - patch + - watch +- apiGroups: + - "" + resources: + - pods/exec + verbs: + - create + - delete + - get + - list + - patch + - watch +- apiGroups: + - "" + resources: + - pods/status + verbs: + - get +- apiGroups: + - "" + resources: + - secrets + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - "" + resources: + - secrets/status + verbs: + - get + - patch + - update +- apiGroups: + - "" + resources: + - serviceaccounts + verbs: + - create + - get + - list + - patch + - update + - watch +- apiGroups: + - "" + resources: + - services + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - admissionregistration.k8s.io + resources: + - mutatingwebhookconfigurations + verbs: + - get + - list + - patch + - update +- apiGroups: + - admissionregistration.k8s.io + resources: + - validatingwebhookconfigurations + verbs: + - get + - list + - patch + - update +- apiGroups: + - apiextensions.k8s.io + resources: + - customresourcedefinitions + verbs: + - get + - list + - update +- apiGroups: + - apps + resources: + - deployments + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - batch + resources: + - jobs + verbs: + - create + - delete + - get + - list + - patch + - watch +- apiGroups: + - coordination.k8s.io + resources: + - leases + verbs: + - create + - get + - update +- apiGroups: + - monitoring.coreos.com + resources: + - podmonitors + verbs: + - create + - delete + - get + - list + - patch + - watch +- apiGroups: + - policy + resources: + - poddisruptionbudgets + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - postgresql.cnpg.io + resources: + - backups + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - postgresql.cnpg.io + resources: + - backups/status + verbs: + - get + - patch + - update +- apiGroups: + - postgresql.cnpg.io + resources: + - clusterimagecatalogs + verbs: + - get + - list + - watch +- apiGroups: + - postgresql.cnpg.io + resources: + - clusters + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - postgresql.cnpg.io + resources: + - clusters/finalizers + verbs: + - update +- apiGroups: + - postgresql.cnpg.io + resources: + - clusters/status + verbs: + - get + - patch + - update + - watch +- apiGroups: + - postgresql.cnpg.io + resources: + - imagecatalogs + verbs: + - get + - list + - watch +- apiGroups: + - postgresql.cnpg.io + resources: + - poolers + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - postgresql.cnpg.io + resources: + - poolers/finalizers + verbs: + - update +- apiGroups: + - postgresql.cnpg.io + resources: + - poolers/status + verbs: + - get + - patch + - update + - watch +- apiGroups: + - postgresql.cnpg.io + resources: + - scheduledbackups + verbs: + - create + - delete + - get + - list + - patch + - update + - watch +- apiGroups: + - postgresql.cnpg.io + resources: + - scheduledbackups/status + verbs: + - get + - patch + - update +- apiGroups: + - rbac.authorization.k8s.io + resources: + - rolebindings + verbs: + - create + - get + - list + - patch + - update + - watch +- apiGroups: + - rbac.authorization.k8s.io + resources: + - roles + verbs: + - create + - get + - list + - patch + - update + - watch +- apiGroups: + - snapshot.storage.k8s.io + resources: + - volumesnapshots + verbs: + - create + - get + - list + - patch + - watch +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: cnpg-manager-rolebinding +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: cnpg-manager +subjects: +- kind: ServiceAccount + name: cnpg-manager + namespace: cnpg-system +--- +apiVersion: v1 +data: + queries: | + backends: + query: | + SELECT sa.datname + , sa.usename + , sa.application_name + , states.state + , COALESCE(sa.count, 0) AS total + , COALESCE(sa.max_tx_secs, 0) AS max_tx_duration_seconds + FROM ( VALUES ('active') + , ('idle') + , ('idle in transaction') + , ('idle in transaction (aborted)') + , ('fastpath function call') + , ('disabled') + ) AS states(state) + LEFT JOIN ( + SELECT datname + , state + , usename + , COALESCE(application_name, '') AS application_name + , COUNT(*) + , COALESCE(EXTRACT (EPOCH FROM (max(now() - xact_start))), 0) AS max_tx_secs + FROM pg_catalog.pg_stat_activity + GROUP BY datname, state, usename, application_name + ) sa ON states.state = sa.state + WHERE sa.usename IS NOT NULL + metrics: + - datname: + usage: "LABEL" + description: "Name of the database" + - usename: + usage: "LABEL" + description: "Name of the user" + - application_name: + usage: "LABEL" + description: "Name of the application" + - state: + usage: "LABEL" + description: "State of the backend" + - total: + usage: "GAUGE" + description: "Number of backends" + - max_tx_duration_seconds: + usage: "GAUGE" + description: "Maximum duration of a transaction in seconds" + + backends_waiting: + query: | + SELECT count(*) AS total + FROM pg_catalog.pg_locks blocked_locks + JOIN pg_catalog.pg_locks blocking_locks + ON blocking_locks.locktype = blocked_locks.locktype + AND blocking_locks.database IS NOT DISTINCT FROM blocked_locks.database + AND blocking_locks.relation IS NOT DISTINCT FROM blocked_locks.relation + AND blocking_locks.page IS NOT DISTINCT FROM blocked_locks.page + AND blocking_locks.tuple IS NOT DISTINCT FROM blocked_locks.tuple + AND blocking_locks.virtualxid IS NOT DISTINCT FROM blocked_locks.virtualxid + AND blocking_locks.transactionid IS NOT DISTINCT FROM blocked_locks.transactionid + AND blocking_locks.classid IS NOT DISTINCT FROM blocked_locks.classid + AND blocking_locks.objid IS NOT DISTINCT FROM blocked_locks.objid + AND blocking_locks.objsubid IS NOT DISTINCT FROM blocked_locks.objsubid + AND blocking_locks.pid != blocked_locks.pid + JOIN pg_catalog.pg_stat_activity blocking_activity ON blocking_activity.pid = blocking_locks.pid + WHERE NOT blocked_locks.granted + metrics: + - total: + usage: "GAUGE" + description: "Total number of backends that are currently waiting on other queries" + + pg_database: + query: | + SELECT datname + , pg_catalog.pg_database_size(datname) AS size_bytes + , pg_catalog.age(datfrozenxid) AS xid_age + , pg_catalog.mxid_age(datminmxid) AS mxid_age + FROM pg_catalog.pg_database + metrics: + - datname: + usage: "LABEL" + description: "Name of the database" + - size_bytes: + usage: "GAUGE" + description: "Disk space used by the database" + - xid_age: + usage: "GAUGE" + description: "Number of transactions from the frozen XID to the current one" + - mxid_age: + usage: "GAUGE" + description: "Number of multiple transactions (Multixact) from the frozen XID to the current one" + + pg_postmaster: + query: | + SELECT EXTRACT(EPOCH FROM pg_postmaster_start_time) AS start_time + FROM pg_catalog.pg_postmaster_start_time() + metrics: + - start_time: + usage: "GAUGE" + description: "Time at which postgres started (based on epoch)" + + pg_replication: + query: "SELECT CASE WHEN ( + NOT pg_catalog.pg_is_in_recovery() + OR pg_catalog.pg_last_wal_receive_lsn() = pg_catalog.pg_last_wal_replay_lsn()) + THEN 0 + ELSE GREATEST (0, + EXTRACT(EPOCH FROM (now() - pg_catalog.pg_last_xact_replay_timestamp()))) + END AS lag, + pg_catalog.pg_is_in_recovery() AS in_recovery, + EXISTS (TABLE pg_stat_wal_receiver) AS is_wal_receiver_up, + (SELECT count(*) FROM pg_catalog.pg_stat_replication) AS streaming_replicas" + metrics: + - lag: + usage: "GAUGE" + description: "Replication lag behind primary in seconds" + - in_recovery: + usage: "GAUGE" + description: "Whether the instance is in recovery" + - is_wal_receiver_up: + usage: "GAUGE" + description: "Whether the instance wal_receiver is up" + - streaming_replicas: + usage: "GAUGE" + description: "Number of streaming replicas connected to the instance" + + pg_replication_slots: + query: | + SELECT slot_name, + slot_type, + database, + active, + (CASE pg_catalog.pg_is_in_recovery() + WHEN TRUE THEN pg_catalog.pg_wal_lsn_diff(pg_catalog.pg_last_wal_receive_lsn(), restart_lsn) + ELSE pg_catalog.pg_wal_lsn_diff(pg_catalog.pg_current_wal_lsn(), restart_lsn) + END) as pg_wal_lsn_diff + FROM pg_catalog.pg_replication_slots + WHERE NOT temporary + metrics: + - slot_name: + usage: "LABEL" + description: "Name of the replication slot" + - slot_type: + usage: "LABEL" + description: "Type of the replication slot" + - database: + usage: "LABEL" + description: "Name of the database" + - active: + usage: "GAUGE" + description: "Flag indicating whether the slot is active" + - pg_wal_lsn_diff: + usage: "GAUGE" + description: "Replication lag in bytes" + + pg_stat_archiver: + query: | + SELECT archived_count + , failed_count + , COALESCE(EXTRACT(EPOCH FROM (now() - last_archived_time)), -1) AS seconds_since_last_archival + , COALESCE(EXTRACT(EPOCH FROM (now() - last_failed_time)), -1) AS seconds_since_last_failure + , COALESCE(EXTRACT(EPOCH FROM last_archived_time), -1) AS last_archived_time + , COALESCE(EXTRACT(EPOCH FROM last_failed_time), -1) AS last_failed_time + , COALESCE(CAST(CAST('x'||pg_catalog.right(pg_catalog.split_part(last_archived_wal, '.', 1), 16) AS pg_catalog.bit(64)) AS pg_catalog.int8), -1) AS last_archived_wal_start_lsn + , COALESCE(CAST(CAST('x'||pg_catalog.right(pg_catalog.split_part(last_failed_wal, '.', 1), 16) AS pg_catalog.bit(64)) AS pg_catalog.int8), -1) AS last_failed_wal_start_lsn + , EXTRACT(EPOCH FROM stats_reset) AS stats_reset_time + FROM pg_catalog.pg_stat_archiver + metrics: + - archived_count: + usage: "COUNTER" + description: "Number of WAL files that have been successfully archived" + - failed_count: + usage: "COUNTER" + description: "Number of failed attempts for archiving WAL files" + - seconds_since_last_archival: + usage: "GAUGE" + description: "Seconds since the last successful archival operation" + - seconds_since_last_failure: + usage: "GAUGE" + description: "Seconds since the last failed archival operation" + - last_archived_time: + usage: "GAUGE" + description: "Epoch of the last time WAL archiving succeeded" + - last_failed_time: + usage: "GAUGE" + description: "Epoch of the last time WAL archiving failed" + - last_archived_wal_start_lsn: + usage: "GAUGE" + description: "Archived WAL start LSN" + - last_failed_wal_start_lsn: + usage: "GAUGE" + description: "Last failed WAL LSN" + - stats_reset_time: + usage: "GAUGE" + description: "Time at which these statistics were last reset" + + pg_stat_bgwriter: + runonserver: "<17.0.0" + query: | + SELECT checkpoints_timed + , checkpoints_req + , checkpoint_write_time + , checkpoint_sync_time + , buffers_checkpoint + , buffers_clean + , maxwritten_clean + , buffers_backend + , buffers_backend_fsync + , buffers_alloc + FROM pg_catalog.pg_stat_bgwriter + metrics: + - checkpoints_timed: + usage: "COUNTER" + description: "Number of scheduled checkpoints that have been performed" + - checkpoints_req: + usage: "COUNTER" + description: "Number of requested checkpoints that have been performed" + - checkpoint_write_time: + usage: "COUNTER" + description: "Total amount of time that has been spent in the portion of checkpoint processing where files are written to disk, in milliseconds" + - checkpoint_sync_time: + usage: "COUNTER" + description: "Total amount of time that has been spent in the portion of checkpoint processing where files are synchronized to disk, in milliseconds" + - buffers_checkpoint: + usage: "COUNTER" + description: "Number of buffers written during checkpoints" + - buffers_clean: + usage: "COUNTER" + description: "Number of buffers written by the background writer" + - maxwritten_clean: + usage: "COUNTER" + description: "Number of times the background writer stopped a cleaning scan because it had written too many buffers" + - buffers_backend: + usage: "COUNTER" + description: "Number of buffers written directly by a backend" + - buffers_backend_fsync: + usage: "COUNTER" + description: "Number of times a backend had to execute its own fsync call (normally the background writer handles those even when the backend does its own write)" + - buffers_alloc: + usage: "COUNTER" + description: "Number of buffers allocated" + + pg_stat_database: + query: | + SELECT datname + , xact_commit + , xact_rollback + , blks_read + , blks_hit + , tup_returned + , tup_fetched + , tup_inserted + , tup_updated + , tup_deleted + , conflicts + , temp_files + , temp_bytes + , deadlocks + , blk_read_time + , blk_write_time + FROM pg_catalog.pg_stat_database + metrics: + - datname: + usage: "LABEL" + description: "Name of this database" + - xact_commit: + usage: "COUNTER" + description: "Number of transactions in this database that have been committed" + - xact_rollback: + usage: "COUNTER" + description: "Number of transactions in this database that have been rolled back" + - blks_read: + usage: "COUNTER" + description: "Number of disk blocks read in this database" + - blks_hit: + usage: "COUNTER" + description: "Number of times disk blocks were found already in the buffer cache, so that a read was not necessary (this only includes hits in the PostgreSQL buffer cache, not the operating system's file system cache)" + - tup_returned: + usage: "COUNTER" + description: "Number of rows returned by queries in this database" + - tup_fetched: + usage: "COUNTER" + description: "Number of rows fetched by queries in this database" + - tup_inserted: + usage: "COUNTER" + description: "Number of rows inserted by queries in this database" + - tup_updated: + usage: "COUNTER" + description: "Number of rows updated by queries in this database" + - tup_deleted: + usage: "COUNTER" + description: "Number of rows deleted by queries in this database" + - conflicts: + usage: "COUNTER" + description: "Number of queries canceled due to conflicts with recovery in this database" + - temp_files: + usage: "COUNTER" + description: "Number of temporary files created by queries in this database" + - temp_bytes: + usage: "COUNTER" + description: "Total amount of data written to temporary files by queries in this database" + - deadlocks: + usage: "COUNTER" + description: "Number of deadlocks detected in this database" + - blk_read_time: + usage: "COUNTER" + description: "Time spent reading data file blocks by backends in this database, in milliseconds" + - blk_write_time: + usage: "COUNTER" + description: "Time spent writing data file blocks by backends in this database, in milliseconds" + + pg_stat_replication: + primary: true + query: | + SELECT usename + , COALESCE(application_name, '') AS application_name + , COALESCE(client_addr::text, '') AS client_addr + , COALESCE(client_port::text, '') AS client_port + , EXTRACT(EPOCH FROM backend_start) AS backend_start + , COALESCE(pg_catalog.age(backend_xmin), 0) AS backend_xmin_age + , pg_catalog.pg_wal_lsn_diff(pg_catalog.pg_current_wal_lsn(), sent_lsn) AS sent_diff_bytes + , pg_catalog.pg_wal_lsn_diff(pg_catalog.pg_current_wal_lsn(), write_lsn) AS write_diff_bytes + , pg_catalog.pg_wal_lsn_diff(pg_catalog.pg_current_wal_lsn(), flush_lsn) AS flush_diff_bytes + , COALESCE(pg_catalog.pg_wal_lsn_diff(pg_catalog.pg_current_wal_lsn(), replay_lsn),0) AS replay_diff_bytes + , COALESCE((EXTRACT(EPOCH FROM write_lag)),0)::float AS write_lag_seconds + , COALESCE((EXTRACT(EPOCH FROM flush_lag)),0)::float AS flush_lag_seconds + , COALESCE((EXTRACT(EPOCH FROM replay_lag)),0)::float AS replay_lag_seconds + FROM pg_catalog.pg_stat_replication + metrics: + - usename: + usage: "LABEL" + description: "Name of the replication user" + - application_name: + usage: "LABEL" + description: "Name of the application" + - client_addr: + usage: "LABEL" + description: "Client IP address" + - client_port: + usage: "LABEL" + description: "Client TCP port" + - backend_start: + usage: "COUNTER" + description: "Time when this process was started" + - backend_xmin_age: + usage: "COUNTER" + description: "The age of this standby's xmin horizon" + - sent_diff_bytes: + usage: "GAUGE" + description: "Difference in bytes from the last write-ahead log location sent on this connection" + - write_diff_bytes: + usage: "GAUGE" + description: "Difference in bytes from the last write-ahead log location written to disk by this standby server" + - flush_diff_bytes: + usage: "GAUGE" + description: "Difference in bytes from the last write-ahead log location flushed to disk by this standby server" + - replay_diff_bytes: + usage: "GAUGE" + description: "Difference in bytes from the last write-ahead log location replayed into the database on this standby server" + - write_lag_seconds: + usage: "GAUGE" + description: "Time elapsed between flushing recent WAL locally and receiving notification that this standby server has written it" + - flush_lag_seconds: + usage: "GAUGE" + description: "Time elapsed between flushing recent WAL locally and receiving notification that this standby server has written and flushed it" + - replay_lag_seconds: + usage: "GAUGE" + description: "Time elapsed between flushing recent WAL locally and receiving notification that this standby server has written, flushed and applied it" + + pg_settings: + query: | + SELECT name, + CASE setting WHEN 'on' THEN '1' WHEN 'off' THEN '0' ELSE setting END AS setting + FROM pg_catalog.pg_settings + WHERE vartype IN ('integer', 'real', 'bool') + ORDER BY 1 + metrics: + - name: + usage: "LABEL" + description: "Name of the setting" + - setting: + usage: "GAUGE" + description: "Setting value" +kind: ConfigMap +metadata: + labels: + cnpg.io/reload: "" + name: cnpg-default-monitoring + namespace: cnpg-system +--- +apiVersion: v1 +kind: Service +metadata: + name: cnpg-webhook-service + namespace: cnpg-system +spec: + ports: + - port: 443 + targetPort: 9443 + selector: + app.kubernetes.io/name: cloudnative-pg +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: + app.kubernetes.io/name: cloudnative-pg + name: cnpg-controller-manager + namespace: cnpg-system +spec: + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/name: cloudnative-pg + template: + metadata: + labels: + app.kubernetes.io/name: cloudnative-pg + spec: + containers: + - args: + - controller + - --leader-elect + - --config-map-name=cnpg-controller-manager-config + - --secret-name=cnpg-controller-manager-config + - --webhook-port=9443 + command: + - /manager + env: + - name: OPERATOR_IMAGE_NAME + value: ghcr.io/cloudnative-pg/cloudnative-pg:1.23.2 + - name: OPERATOR_NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: MONITORING_QUERIES_CONFIGMAP + value: cnpg-default-monitoring + image: ghcr.io/cloudnative-pg/cloudnative-pg:1.23.2 + livenessProbe: + httpGet: + path: /readyz + port: 9443 + scheme: HTTPS + name: manager + ports: + - containerPort: 8080 + name: metrics + protocol: TCP + - containerPort: 9443 + name: webhook-server + protocol: TCP + readinessProbe: + httpGet: + path: /readyz + port: 9443 + scheme: HTTPS + resources: + limits: + cpu: 100m + memory: 200Mi + requests: + cpu: 100m + memory: 100Mi + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + readOnlyRootFilesystem: true + runAsGroup: 10001 + runAsUser: 10001 + seccompProfile: + type: RuntimeDefault + volumeMounts: + - mountPath: /controller + name: scratch-data + - mountPath: /run/secrets/cnpg.io/webhook + name: webhook-certificates + securityContext: + runAsNonRoot: true + seccompProfile: + type: RuntimeDefault + serviceAccountName: cnpg-manager + terminationGracePeriodSeconds: 10 + volumes: + - emptyDir: {} + name: scratch-data + - name: webhook-certificates + secret: + defaultMode: 420 + optional: true + secretName: cnpg-webhook-cert +--- +apiVersion: admissionregistration.k8s.io/v1 +kind: MutatingWebhookConfiguration +metadata: + name: cnpg-mutating-webhook-configuration +webhooks: +- admissionReviewVersions: + - v1 + clientConfig: + service: + name: cnpg-webhook-service + namespace: cnpg-system + path: /mutate-postgresql-cnpg-io-v1-backup + failurePolicy: Fail + name: mbackup.cnpg.io + rules: + - apiGroups: + - postgresql.cnpg.io + apiVersions: + - v1 + operations: + - CREATE + - UPDATE + resources: + - backups + sideEffects: None +- admissionReviewVersions: + - v1 + clientConfig: + service: + name: cnpg-webhook-service + namespace: cnpg-system + path: /mutate-postgresql-cnpg-io-v1-cluster + failurePolicy: Fail + name: mcluster.cnpg.io + rules: + - apiGroups: + - postgresql.cnpg.io + apiVersions: + - v1 + operations: + - CREATE + - UPDATE + resources: + - clusters + sideEffects: None +- admissionReviewVersions: + - v1 + clientConfig: + service: + name: cnpg-webhook-service + namespace: cnpg-system + path: /mutate-postgresql-cnpg-io-v1-scheduledbackup + failurePolicy: Fail + name: mscheduledbackup.cnpg.io + rules: + - apiGroups: + - postgresql.cnpg.io + apiVersions: + - v1 + operations: + - CREATE + - UPDATE + resources: + - scheduledbackups + sideEffects: None +--- +apiVersion: admissionregistration.k8s.io/v1 +kind: ValidatingWebhookConfiguration +metadata: + name: cnpg-validating-webhook-configuration +webhooks: +- admissionReviewVersions: + - v1 + clientConfig: + service: + name: cnpg-webhook-service + namespace: cnpg-system + path: /validate-postgresql-cnpg-io-v1-backup + failurePolicy: Fail + name: vbackup.cnpg.io + rules: + - apiGroups: + - postgresql.cnpg.io + apiVersions: + - v1 + operations: + - CREATE + - UPDATE + resources: + - backups + sideEffects: None +- admissionReviewVersions: + - v1 + clientConfig: + service: + name: cnpg-webhook-service + namespace: cnpg-system + path: /validate-postgresql-cnpg-io-v1-cluster + failurePolicy: Fail + name: vcluster.cnpg.io + rules: + - apiGroups: + - postgresql.cnpg.io + apiVersions: + - v1 + operations: + - CREATE + - UPDATE + resources: + - clusters + sideEffects: None +- admissionReviewVersions: + - v1 + clientConfig: + service: + name: cnpg-webhook-service + namespace: cnpg-system + path: /validate-postgresql-cnpg-io-v1-pooler + failurePolicy: Fail + name: vpooler.cnpg.io + rules: + - apiGroups: + - postgresql.cnpg.io + apiVersions: + - v1 + operations: + - CREATE + - UPDATE + resources: + - poolers + sideEffects: None +- admissionReviewVersions: + - v1 + clientConfig: + service: + name: cnpg-webhook-service + namespace: cnpg-system + path: /validate-postgresql-cnpg-io-v1-scheduledbackup + failurePolicy: Fail + name: vscheduledbackup.cnpg.io + rules: + - apiGroups: + - postgresql.cnpg.io + apiVersions: + - v1 + operations: + - CREATE + - UPDATE + resources: + - scheduledbackups + sideEffects: None diff --git a/odroid/cnpg/create-minio-secret.sh b/odroid/cnpg/create-minio-secret.sh new file mode 100755 index 0000000..3b12115 --- /dev/null +++ b/odroid/cnpg/create-minio-secret.sh @@ -0,0 +1,6 @@ +microk8s kubectl delete secret minio-creds -n postgres +microk8s kubectl create secret generic minio-creds \ + --from-literal=MINIO_ACCESS_KEY=Gudh6fKAlGv5PFWxLrCS \ + --from-literal=MINIO_SECRET_KEY=L2CxDKJAvXS2h0KyWWX3fu9twiVIzR1tZpoEYINl \ + --from-literal=REGION=us-east \ + -n postgres diff --git a/odroid/cnpg/examples/backup-example.yaml b/odroid/cnpg/examples/backup-example.yaml new file mode 100644 index 0000000..69130c8 --- /dev/null +++ b/odroid/cnpg/examples/backup-example.yaml @@ -0,0 +1,7 @@ +apiVersion: postgresql.cnpg.io/v1 +kind: Backup +metadata: + name: pg-backup-example +spec: + cluster: + name: pg-backup diff --git a/odroid/cnpg/examples/cluster-example-initdb-sql-refs.yaml b/odroid/cnpg/examples/cluster-example-initdb-sql-refs.yaml new file mode 100644 index 0000000..09cb0c8 --- /dev/null +++ b/odroid/cnpg/examples/cluster-example-initdb-sql-refs.yaml @@ -0,0 +1,47 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: post-init-sql-configmap +data: + configmap.sql: | + create table configmaps (i integer); + insert into configmaps (select generate_series(1,10000)); +--- +apiVersion: v1 +kind: Secret +metadata: + name: post-init-sql-secret +stringData: + secret.sql: | + create table secrets (i integer); + insert into secrets (select generate_series(1,10000)); +--- +apiVersion: postgresql.cnpg.io/v1 +kind: Cluster +metadata: + name: cluster-example-initdb +spec: + instances: 3 + + bootstrap: + initdb: + database: appdb + owner: appuser + postInitSQL: + - create table numbers (i integer) + - insert into numbers (select generate_series(1,10000)) + postInitTemplateSQL: + - create extension intarray + postInitApplicationSQL: + - create table application_numbers (i integer) + - insert into application_numbers (select generate_series(1,10000)) + postInitApplicationSQLRefs: + configMapRefs: + - name: post-init-sql-configmap + key: configmap.sql + secretRefs: + - name: post-init-sql-secret + key: secret.sql + + storage: + size: 1Gi diff --git a/odroid/cnpg/examples/cluster-pvc-template.yaml b/odroid/cnpg/examples/cluster-pvc-template.yaml new file mode 100644 index 0000000..5e5a7fe --- /dev/null +++ b/odroid/cnpg/examples/cluster-pvc-template.yaml @@ -0,0 +1,25 @@ +apiVersion: postgresql.cnpg.io/v1 +kind: Cluster +metadata: + name: postgresql-pvc-template +spec: + instances: 3 + + # Example of rolling update strategy: + # - unsupervised: automated update of the primary once all + # replicas have been upgraded (default) + # - supervised: requires manual supervision to perform + # the switchover of the primary + primaryUpdateStrategy: unsupervised + + # Persistent storage configuration + storage: + size: 1Gi + pvcTemplate: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + storageClassName: standard + volumeMode: Filesystem diff --git a/odroid/cnpg/examples/cluster-storage-class-with-backup.yaml b/odroid/cnpg/examples/cluster-storage-class-with-backup.yaml new file mode 100644 index 0000000..3aee8d5 --- /dev/null +++ b/odroid/cnpg/examples/cluster-storage-class-with-backup.yaml @@ -0,0 +1,32 @@ +apiVersion: postgresql.cnpg.io/v1 +kind: Cluster +metadata: + name: pg-backup +spec: + instances: 3 + + # Example of rolling update strategy: + # - unsupervised: automated update of the primary once all + # replicas have been upgraded (default) + # - supervised: requires manual supervision to perform + # the switchover of the primary + primaryUpdateStrategy: unsupervised + + # Persistent storage configuration + storage: + storageClass: standard + size: 1Gi + + # Backup properties + backup: + barmanObjectStore: + destinationPath: s3://BUCKET_NAME/path/to/folder + s3Credentials: + accessKeyId: + name: aws-creds + key: ACCESS_KEY_ID + secretAccessKey: + name: aws-creds + key: ACCESS_SECRET_KEY + wal: + compression: gzip diff --git a/odroid/cnpg/monitoring/grafana-dashboard.json b/odroid/cnpg/monitoring/grafana-dashboard.json new file mode 100644 index 0000000..13346f5 --- /dev/null +++ b/odroid/cnpg/monitoring/grafana-dashboard.json @@ -0,0 +1,6450 @@ +{ + "annotations": { + "list": [ + { + "builtIn": 1, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "target": { + "limit": 100, + "matchAny": false, + "tags": [], + "type": "dashboard" + }, + "type": "dashboard" + } + ] + }, + "editable": true, + "fiscalYearStartMonth": 0, + "graphTooltip": 1, + "links": [ + { + "asDropdown": false, + "icon": "external link", + "includeVars": false, + "keepTime": false, + "tags": [ + "cloudnativepg" + ], + "targetBlank": false, + "title": "Related Dashboards", + "tooltip": "", + "type": "dashboards", + "url": "" + } + ], + "liveNow": false, + "panels": [ + { + "collapsed": true, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 563, + "panels": [], + "title": "Row title", + "type": "row" + }, + { + "collapsed": false, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 1 + }, + "id": 562, + "panels": [], + "title": "Summary", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 7, + "w": 3, + "x": 0, + "y": 2 + }, + "id": 334, + "options": { + "alertInstanceLabelFilter": "{namespace=~\"$namespace\",pod=~\"$cluster-[0-9]+$\"}", + "alertName": "", + "dashboardAlerts": false, + "folder": "", + "groupBy": [], + "groupMode": "default", + "maxItems": 20, + "sortOrder": 1, + "stateFilter": { + "error": true, + "firing": true, + "noData": false, + "normal": true, + "pending": true + }, + "viewMode": "list" + }, + "title": "Alerts", + "type": "alertlist" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 15, + "x": 3, + "y": 2 + }, + "id": 336, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "markdown" + }, + "pluginVersion": "10.2.2", + "title": "Overview", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 3, + "x": 18, + "y": 2 + }, + "id": 352, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "markdown" + }, + "pluginVersion": "10.2.2", + "title": "Storage", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 3, + "x": 21, + "y": 2 + }, + "id": 354, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "markdown" + }, + "pluginVersion": "10.2.2", + "title": "Backups", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "dark-blue", + "value": null + } + ] + }, + "unit": "dateTimeFromNow" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 3, + "y": 3 + }, + "id": 338, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value", + "wideLayout": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "max(cnpg_pg_postmaster_start_time{namespace=~\"$namespace\",pod=~\"$instances\"})*1000", + "format": "time_series", + "hide": false, + "instant": true, + "interval": "", + "intervalFactor": 1, + "legendFormat": "", + "refId": "A" + } + ], + "title": "Last failover", + "transformations": [], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 6, + "w": 3, + "x": 5, + "y": 3 + }, + "id": 342, + "interval": "1m", + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(cnpg_pg_stat_database_xact_commit{namespace=~\"$namespace\",pod=~\"$instances\"}[$__interval])) + sum(rate(cnpg_pg_stat_database_xact_rollback{namespace=~\"$namespace\",pod=~\"$instances\"}[$__interval]))", + "interval": "", + "legendFormat": "TPS", + "range": true, + "refId": "TPS" + } + ], + "title": "TPS", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "CPU Utilisation from Requests", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "orange", + "value": 0.8 + }, + { + "color": "red", + "value": 0.9 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 3, + "x": 8, + "y": 3 + }, + "id": 344, + "interval": "1m", + "links": [], + "options": { + "minVizHeight": 75, + "minVizWidth": 75, + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "mean" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "sum(node_namespace_pod_container:container_cpu_usage_seconds_total:sum_irate{ namespace=\"$namespace\"}) / sum(kube_pod_container_resource_requests{job=\"kube-state-metrics\", namespace=\"$namespace\", resource=\"cpu\"})", + "format": "time_series", + "instant": true, + "intervalFactor": 2, + "refId": "A" + } + ], + "title": "CPU Utilisation", + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "Memory Utilisation from Requests", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "orange", + "value": 0.8 + }, + { + "color": "red", + "value": 0.9 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 3, + "x": 11, + "y": 3 + }, + "id": 348, + "interval": "1m", + "links": [], + "options": { + "minVizHeight": 75, + "minVizWidth": 75, + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "mean" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "sum(container_memory_working_set_bytes{job=\"kubelet\", metrics_path=\"/metrics/cadvisor\", namespace=\"$namespace\",container!=\"\", image!=\"\"}) / sum(max by(pod) (kube_pod_container_resource_requests{job=\"kube-state-metrics\", namespace=\"$namespace\", resource=\"memory\"}))", + "format": "time_series", + "instant": true, + "intervalFactor": 2, + "refId": "A" + } + ], + "title": "Memory Utilisation", + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "max": 30, + "min": 0, + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "yellow", + "value": 1 + }, + { + "color": "orange", + "value": 10 + }, + { + "color": "red", + "value": 20 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 14, + "y": 3 + }, + "id": 465, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "max(cnpg_pg_replication_lag{namespace=~\"$namespace\",pod=~\"$instances\"})", + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Replication Lag", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "yellow", + "value": 1 + }, + { + "color": "orange", + "value": 10 + }, + { + "color": "red", + "value": 20 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 16, + "y": 3 + }, + "id": 467, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "max(cnpg_pg_stat_replication_write_lag_seconds{namespace=~\"$namespace\",pod=~\"$instances\"})", + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Write Lag", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "#EAB839", + "value": 60000000000 + }, + { + "color": "red", + "value": 80000000000 + } + ] + }, + "unit": "decbytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 2, + "w": 3, + "x": 18, + "y": 3 + }, + "id": 358, + "links": [], + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "sum" + ], + "fields": "", + "values": false + }, + "textMode": "value", + "wideLayout": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "cnpg_pg_database_size_bytes{namespace=\"$namespace\"}", + "format": "table", + "instant": true, + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Database Size", + "transformations": [ + { + "id": "groupBy", + "options": { + "fields": { + "Value": { + "aggregations": [ + "max" + ], + "operation": "aggregate" + }, + "datname": { + "aggregations": [], + "operation": "groupby" + } + } + } + } + ], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "Elapsed time since the last successful base backup.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [ + { + "options": { + "from": 1, + "result": { + "color": "semi-dark-orange", + "index": 0, + "text": "Invalid date" + }, + "to": 1e+42 + }, + "type": "range" + }, + { + "options": { + "from": -2147483648, + "result": { + "color": "red", + "index": 1, + "text": "N/A" + }, + "to": -1577847600 + }, + "type": "range" + } + ], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "semi-dark-red", + "value": -108000 + }, + { + "color": "semi-dark-orange", + "value": -107999 + }, + { + "color": "#EAB839", + "value": -89999 + }, + { + "color": "green", + "value": -86399 + } + ] + }, + "unit": "dtdurations" + }, + "overrides": [] + }, + "gridPos": { + "h": 2, + "w": 3, + "x": 21, + "y": 3 + }, + "id": 360, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "-(time() - max(cnpg_collector_last_available_backup_timestamp{namespace=\"$namespace\",pod=~\"$instances\"}))", + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Last Base Backup", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "orange", + "value": 0.8 + }, + { + "color": "red", + "value": 0.9 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 3, + "x": 18, + "y": 5 + }, + "id": 356, + "options": { + "minVizHeight": 75, + "minVizWidth": 75, + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "max(max by(persistentvolumeclaim) (1 - kubelet_volume_stats_available_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"$instances\"} / kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"$instances\"}))", + "format": "time_series", + "interval": "", + "legendFormat": "DATA", + "range": true, + "refId": "DATA" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "max(max by(persistentvolumeclaim) (1 - kubelet_volume_stats_available_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"(${instances})-wal\"} / kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"(${instances})-wal\"}))", + "format": "time_series", + "interval": "", + "legendFormat": "WAL", + "range": true, + "refId": "WAL" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "max(\n sum by (namespace,persistentvolumeclaim) (kubelet_volume_stats_used_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"(${instances})-tbs.*\"}) \n /\n sum by (namespace,persistentvolumeclaim) (kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"(${instances})-tbs.*\"}) \n *\n on(namespace, persistentvolumeclaim) group_left(volume)\n kube_pod_spec_volumes_persistentvolumeclaims_info{pod=~\"$instances\"}\n)", + "hide": false, + "instant": false, + "legendFormat": "Tablespaces (max)", + "range": true, + "refId": "Max Tablespace" + } + ], + "title": "Volume Space Usage", + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "Computes the time since the last known WAL archival in the primary.\nWe ensure to ignore the metric in the replicas by using (1 - cnpg_pg_replication_in_recovery ) as a multiplicative factor. It will be 0 for replicas, 1 for the primary.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [ + { + "options": { + "match": "null", + "result": { + "color": "red", + "index": 0, + "text": "No backups" + } + }, + "type": "special" + }, + { + "options": { + "from": -1e+22, + "result": { + "color": "text", + "index": 1, + "text": "No data" + }, + "to": 0 + }, + "type": "range" + } + ], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + } + ] + }, + "unit": "dtdurations" + }, + "overrides": [] + }, + "gridPos": { + "h": 2, + "w": 3, + "x": 21, + "y": 5 + }, + "id": 362, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "max((1 - cnpg_pg_replication_in_recovery{namespace=~\"$namespace\",pod=~\"$instances\"}) * (time() - timestamp(cnpg_pg_stat_archiver_seconds_since_last_archival{namespace=~\"$namespace\",pod=~\"$instances\"}) +\ncnpg_pg_stat_archiver_seconds_since_last_archival{namespace=~\"$namespace\",pod=~\"$instances\"}))", + "format": "time_series", + "interval": "", + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Last archived WAL", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "dark-blue", + "value": null + } + ] + }, + "unit": "string" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 3, + "y": 6 + }, + "id": 340, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "/^full$/", + "values": false + }, + "text": {}, + "textMode": "value", + "wideLayout": true + }, + "pluginVersion": "10.2.2", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "builder", + "exemplar": false, + "expr": "cnpg_collector_postgres_version{namespace=~\"$namespace\",pod=~\"$instances\"}", + "format": "table", + "hide": false, + "instant": true, + "interval": "", + "intervalFactor": 1, + "legendFormat": "{{pod}}", + "range": false, + "refId": "A" + } + ], + "title": "Version", + "transformations": [], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "yellow", + "value": 1 + }, + { + "color": "orange", + "value": 10 + }, + { + "color": "red", + "value": 20 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 14, + "y": 6 + }, + "id": 466, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "max(cnpg_pg_stat_replication_flush_lag_seconds{namespace=~\"$namespace\",pod=~\"$cluster-[0-9]+$\"})", + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Flush Lag", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "yellow", + "value": 1 + }, + { + "color": "orange", + "value": 10 + }, + { + "color": "red", + "value": 20 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 16, + "y": 6 + }, + "id": 468, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "max(cnpg_pg_stat_replication_replay_lag_seconds{namespace=~\"$namespace\",pod=~\"$cluster-[0-9]+$\"})", + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Replay Lag", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "#EAB839", + "value": 80000000000 + }, + { + "color": "red", + "value": 90000000000 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 2, + "w": 3, + "x": 8, + "y": 7 + }, + "id": 346, + "links": [], + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "center", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(node_namespace_pod_container:container_cpu_usage_seconds_total:sum_irate{ namespace=\"$namespace\"})", + "hide": false, + "interval": "", + "legendFormat": "Total", + "range": true, + "refId": "B" + } + ], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "Excluding cache", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "#EAB839", + "value": 80000000000 + }, + { + "color": "red", + "value": 90000000000 + } + ] + }, + "unit": "decbytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 2, + "w": 3, + "x": 11, + "y": 7 + }, + "id": 350, + "links": [], + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "center", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(container_memory_working_set_bytes{pod=~\"$instances\", namespace=\"$namespace\", container!=\"\", image!=\"\"})", + "hide": false, + "interval": "", + "legendFormat": "Total", + "range": true, + "refId": "B" + } + ], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [ + { + "options": { + "0": { + "color": "red", + "index": 1, + "text": "N/A" + } + }, + "type": "value" + }, + { + "options": { + "match": "null", + "result": { + "color": "red", + "index": 0, + "text": "No backups" + } + }, + "type": "special" + } + ], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + } + ] + }, + "unit": "dateTimeAsIso" + }, + "overrides": [] + }, + "gridPos": { + "h": 2, + "w": 3, + "x": 21, + "y": 7 + }, + "id": 364, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "max(cnpg_collector_first_recoverability_point{namespace=~\"$namespace\",pod=~\"$instances\"})*1000", + "format": "time_series", + "interval": "", + "legendFormat": "{{pod}}", + "range": true, + "refId": "A" + } + ], + "title": "First Recoverability Point", + "type": "stat" + }, + { + "collapsed": true, + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 9 + }, + "id": 12, + "panels": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 3, + "x": 0, + "y": 20 + }, + "id": 191, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Instance", + "transparent": true, + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 2, + "x": 3, + "y": 20 + }, + "id": 192, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Status", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 3, + "x": 5, + "y": 20 + }, + "id": 193, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Clustering / replicas", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 2, + "x": 8, + "y": 20 + }, + "id": 384, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Zone", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 4, + "x": 10, + "y": 20 + }, + "id": 195, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Connections", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 3, + "x": 14, + "y": 20 + }, + "id": 196, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Max Connections", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "gridPos": { + "h": 1, + "w": 3, + "x": 17, + "y": 20 + }, + "id": 197, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Wraparound", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 2, + "x": 20, + "y": 20 + }, + "id": 313, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Started", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 2, + "x": 22, + "y": 20 + }, + "id": 198, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Version", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 3, + "w": 3, + "x": 0, + "y": 21 + }, + "id": 61, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "\n \n

$instances

\n
", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [ + { + "options": { + "0": { + "index": 0, + "text": "Down" + }, + "1": { + "index": 1, + "text": "Up" + } + }, + "type": "value" + } + ], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "dark-red" + }, + { + "color": "green", + "value": 1 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 3, + "y": 21 + }, + "id": 33, + "options": { + "colorMode": "background", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "min(kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"})", + "instant": true, + "interval": "", + "legendFormat": "", + "refId": "A" + } + ], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [ + { + "options": { + "0": { + "color": "red", + "index": 1, + "text": "No" + }, + "1": { + "color": "green", + "index": 0, + "text": "Yes" + } + }, + "type": "value" + } + ], + "noValue": "-", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 5, + "y": 21 + }, + "id": 60, + "options": { + "colorMode": "background", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "1 - cnpg_pg_replication_in_recovery{namespace=~\"$namespace\",pod=~\"$instances\"} + cnpg_pg_replication_is_wal_receiver_up{namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "transformations": [], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "noValue": "-", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 1, + "x": 7, + "y": 21 + }, + "id": 229, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_replication_streaming_replicas{namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "transformations": [], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "This metric depends on exporting the: `topology.kubernetes.io/zone` label through kube-state-metrics (not enabled by default). Can be added by changing its configuration with:\n\n```yaml\nmetricLabelsAllowlist:\n - nodes=[topology.kubernetes.io/zone]\n```", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "blue" + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 8, + "y": 21 + }, + "id": 386, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "/^label_topology_kubernetes_io_zone$/", + "values": false + }, + "text": { + "valueSize": 18 + }, + "textMode": "value" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "kube_pod_info{namespace=~\"$namespace\",pod=~\"$instances\"} * on(node,instance) group_left(label_topology_kubernetes_io_zone) kube_node_labels", + "format": "table", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "transformations": [], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 4, + "x": 10, + "y": 21 + }, + "id": 58, + "options": { + "legend": { + "calcs": [ + "last", + "mean" + ], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.2.1", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "sum by (pod) (cnpg_backends_total{namespace=~\"$namespace\",pod=~\"$instances\"})", + "instant": false, + "interval": "", + "legendFormat": "-", + "refId": "A" + } + ], + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "decimals": 0, + "mappings": [], + "max": 100, + "min": 0, + "noValue": "<1%", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "#EAB839", + "value": 75 + }, + { + "color": "red", + "value": 90 + } + ] + }, + "unit": "percent" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 3, + "x": 14, + "y": 21 + }, + "id": 32, + "options": { + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true, + "text": {} + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "100 * sum by (pod) (cnpg_backends_total{namespace=~\"$namespace\",pod=~\"$instances\"}) / sum by (pod) (cnpg_pg_settings_setting{name=\"max_connections\",namespace=~\"$namespace\",pod=~\"$instances\"})", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "max": 2147483647, + "min": 0, + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "#EAB839", + "value": 200000000 + }, + { + "color": "red", + "value": 1000000000 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 3, + "x": 17, + "y": 21 + }, + "id": 8, + "options": { + "displayMode": "lcd", + "minVizHeight": 10, + "minVizWidth": 0, + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showUnfilled": true, + "text": {}, + "valueMode": "color" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "max by (pod) (cnpg_pg_database_xid_age{namespace=~\"$namespace\",pod=~\"$instances\"})", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "type": "bargauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "dark-blue" + } + ] + }, + "unit": "dateTimeFromNow" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 20, + "y": 21 + }, + "id": 314, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": false, + "expr": "cnpg_pg_postmaster_start_time{namespace=~\"$namespace\",pod=~\"$instances\"}*1000", + "format": "time_series", + "hide": false, + "instant": true, + "interval": "", + "intervalFactor": 1, + "legendFormat": "", + "refId": "A" + } + ], + "transformations": [], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "dark-blue" + } + ] + }, + "unit": "string" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 22, + "y": 21 + }, + "id": 42, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "/^full$/", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "cnpg_collector_postgres_version{namespace=~\"$namespace\",pod=~\"$instances\"}", + "format": "table", + "hide": false, + "instant": true, + "interval": "", + "intervalFactor": 1, + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "transformations": [], + "type": "stat" + } + ], + "targets": [ + { + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "refId": "A" + } + ], + "title": "Server Health", + "type": "row" + }, + { + "collapsed": true, + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 10 + }, + "id": 41, + "panels": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 3, + "x": 0, + "y": 21 + }, + "id": 187, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Instance", + "transparent": true, + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 3, + "x": 3, + "y": 21 + }, + "id": 183, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Max Connections", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 3, + "x": 6, + "y": 21 + }, + "id": 184, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Shared Buffers", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 3, + "x": 9, + "y": 21 + }, + "id": 185, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Effective Cache Size", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 3, + "x": 12, + "y": 21 + }, + "id": 186, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Work Mem", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 3, + "x": 15, + "y": 21 + }, + "id": 188, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Maintenance Work Mem", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 3, + "x": 18, + "y": 21 + }, + "id": 189, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Random Page Cost", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 3, + "x": 21, + "y": 21 + }, + "id": 190, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Sequential Page Cost", + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 3, + "w": 3, + "x": 0, + "y": 22 + }, + "id": 86, + "options": { + "code": { + "language": "plaintext", + "showLineNumbers": false, + "showMiniMap": false + }, + "content": "\n \n

$instances

\n
", + "mode": "html" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "kube_pod_container_status_ready{container=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "type": "text" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "dark-purple" + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 3, + "x": 3, + "y": 22 + }, + "id": 30, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_settings_setting{name=\"max_connections\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "dark-purple" + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 3, + "x": 6, + "y": 22 + }, + "id": 24, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "max by (pod) (cnpg_pg_settings_setting{name=\"shared_buffers\",namespace=~\"$namespace\",pod=~\"$instances\"}) * max by (pod) (cnpg_pg_settings_setting{name=\"block_size\",namespace=~\"$namespace\",pod=~\"$instances\"})", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "dark-purple" + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 3, + "x": 9, + "y": 22 + }, + "id": 57, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "max by (pod) (cnpg_pg_settings_setting{name=\"effective_cache_size\",namespace=~\"$namespace\",pod=~\"$instances\"}) * max by (pod) (cnpg_pg_settings_setting{name=\"block_size\",namespace=~\"$namespace\",pod=~\"$instances\"})", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "dark-purple" + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 3, + "x": 12, + "y": 22 + }, + "id": 26, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_settings_setting{name=\"work_mem\",namespace=~\"$namespace\",pod=~\"$instances\"} * 1024", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "dark-purple" + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 3, + "x": 15, + "y": 22 + }, + "id": 47, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_settings_setting{name=\"maintenance_work_mem\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "dark-purple" + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 3, + "x": 18, + "y": 22 + }, + "id": 48, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_settings_setting{name=\"random_page_cost\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "dark-purple" + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 3, + "x": 21, + "y": 22 + }, + "id": 56, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.1.5", + "repeat": "instances", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_settings_setting{name=\"seq_page_cost\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "filterable": true, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "dark-purple" + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 9, + "w": 24, + "x": 0, + "y": 31 + }, + "id": 150, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": true, + "sortBy": [] + }, + "pluginVersion": "10.1.5", + "repeatDirection": "v", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_settings_setting{namespace=~\"$namespace\",pod=~\"$instances\"}", + "format": "table", + "instant": true, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Configurations", + "transformations": [ + { + "id": "organize", + "options": { + "excludeByName": { + "Time": true, + "__name__": true, + "container": true, + "endpoint": true, + "instance": true, + "job": true, + "name": false, + "namespace": true, + "pod": false + }, + "indexByName": { + "Time": 0, + "Value": 9, + "__name__": 1, + "container": 2, + "endpoint": 3, + "instance": 4, + "job": 5, + "name": 7, + "namespace": 8, + "pod": 6 + }, + "renameByName": { + "__name__": "", + "name": "parameter" + } + } + }, + { + "id": "groupingToMatrix", + "options": { + "columnField": "pod", + "rowField": "parameter", + "valueField": "Value" + } + }, + { + "id": "organize", + "options": { + "excludeByName": {}, + "indexByName": {}, + "renameByName": { + "parameter\\pod": "parameter" + } + } + } + ], + "type": "table" + } + ], + "targets": [ + { + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "refId": "A" + } + ], + "title": "Configuration", + "type": "row" + }, + { + "collapsed": true, + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 11 + }, + "id": 10, + "panels": [ + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fill": 1, + "fillGradient": 0, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 47 + }, + "hiddenSeries": false, + "id": 273, + "legend": { + "avg": false, + "current": false, + "max": false, + "min": false, + "show": true, + "total": false, + "values": false + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "null as zero", + "options": { + "alertThreshold": true + }, + "percentage": false, + "pluginVersion": "9.4.7", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "sum(node_namespace_pod_container:container_cpu_usage_seconds_total:sum_irate{pod=~\"$instances\", namespace=~\"$namespace\"}) by (pod)", + "format": "time_series", + "interval": "", + "intervalFactor": 2, + "legendFormat": "{{pod}}", + "refId": "A", + "step": 10 + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "sum(node_namespace_pod_container:container_cpu_usage_seconds_total:sum_irate{pod=~\"$instances\", namespace=~\"$namespace\"})", + "hide": false, + "interval": "", + "legendFormat": "total", + "refId": "B" + } + ], + "thresholds": [], + "timeRegions": [], + "title": "CPU Usage", + "tooltip": { + "shared": true, + "sort": 2, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "mode": "time", + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:189", + "format": "short", + "logBase": 1, + "min": 0, + "show": true + }, + { + "$$hashKey": "object:190", + "format": "short", + "logBase": 1, + "show": false + } + ], + "yaxis": { + "align": false + } + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fill": 2, + "fillGradient": 0, + "gridPos": { + "h": 7, + "w": 12, + "x": 12, + "y": 47 + }, + "hiddenSeries": false, + "id": 275, + "legend": { + "avg": false, + "current": false, + "max": false, + "min": false, + "show": true, + "total": false, + "values": false + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "null as zero", + "options": { + "alertThreshold": true + }, + "percentage": false, + "pluginVersion": "9.4.7", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [ + { + "alias": "quota - requests", + "color": "#F2495C", + "dashes": true, + "fill": 0, + "hiddenSeries": true, + "hideTooltip": true, + "legend": true, + "linewidth": 2, + "stack": false + }, + { + "alias": "quota - limits", + "color": "#FF9830", + "dashes": true, + "fill": 0, + "hiddenSeries": true, + "hideTooltip": true, + "legend": true, + "linewidth": 2, + "stack": false + } + ], + "spaceLength": 10, + "stack": false, + "steppedLine": false, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "sum(container_memory_working_set_bytes{pod=~\"$instances\", namespace=\"$namespace\", container!=\"\", image!=\"\"}) by (pod)", + "format": "time_series", + "interval": "", + "intervalFactor": 2, + "legendFormat": "{{pod}}", + "refId": "A", + "step": 10 + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "sum(container_memory_working_set_bytes{pod=~\"$instances\", namespace=\"$namespace\", container!=\"\", image!=\"\"})", + "hide": false, + "interval": "", + "legendFormat": "total", + "refId": "B" + } + ], + "thresholds": [], + "timeRegions": [], + "title": "Memory Usage (w/o cache)", + "tooltip": { + "shared": true, + "sort": 2, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "mode": "time", + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:246", + "format": "bytes", + "logBase": 1, + "min": 0, + "show": true + }, + { + "$$hashKey": "object:247", + "format": "short", + "logBase": 1, + "show": false + } + ], + "yaxis": { + "align": false + } + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 24, + "x": 0, + "y": 54 + }, + "id": 39, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "sum(cnpg_backends_total{namespace=~\"$namespace\",pod=~\"$instances\"}) by (pod)", + "hide": false, + "interval": "", + "legendFormat": "total ({{pod}})", + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "sum(cnpg_backends_total{namespace=~\"$namespace\",pod=~\"$instances\"}) by (state, pod)", + "interval": "", + "legendFormat": "{{state}} ({{pod}})", + "refId": "A" + } + ], + "title": "Session States", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 62 + }, + "id": 50, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "sum(rate(cnpg_pg_stat_database_xact_commit{namespace=~\"$namespace\",pod=~\"$instances\"}[5m])) by (pod)", + "interval": "", + "legendFormat": "committed ({{pod}})", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "sum(rate(cnpg_pg_stat_database_xact_rollback{namespace=~\"$namespace\",pod=~\"$instances\"}[5m])) by (pod)", + "hide": false, + "interval": "", + "legendFormat": "rolled back ({{pod}})", + "refId": "B" + } + ], + "title": "Transactions [5m]", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 62 + }, + "id": 4, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "max by (pod) (cnpg_backends_max_tx_duration_seconds{namespace=~\"$namespace\",pod=~\"$instances\"})", + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Longest Transaction", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 70 + }, + "id": 55, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "rate(cnpg_pg_stat_database_deadlocks{datname=\"\",namespace=~\"$namespace\",pod=~\"$instances\"}[5m])", + "hide": false, + "instant": false, + "interval": "", + "legendFormat": "count ({{pod}})", + "refId": "B" + } + ], + "title": "Deadlocks [5m]", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 70 + }, + "id": 54, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_backends_waiting_total{namespace=~\"$namespace\",pod=~\"$instances\"}", + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Blocked Queries", + "type": "timeseries" + } + ], + "targets": [ + { + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "refId": "A" + } + ], + "title": "Operational Stats", + "type": "row" + }, + { + "collapsed": false, + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 12 + }, + "id": 35, + "panels": [], + "targets": [ + { + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "refId": "A" + } + ], + "title": "Storage & I/O", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "#EAB839", + "value": 0.7 + }, + { + "color": "red", + "value": 0.8 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 13 + }, + "id": 424, + "options": { + "minVizHeight": 75, + "minVizWidth": 75, + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true, + "text": {} + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "max by(persistentvolumeclaim) (1 - kubelet_volume_stats_available_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"$instances\"} / kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"$instances\"})", + "format": "time_series", + "interval": "", + "legendFormat": "{{persistentvolumeclaim}}", + "range": true, + "refId": "FREE_SPACE" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "max by(persistentvolumeclaim) (1 - kubelet_volume_stats_available_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"(${instances})-wal\"} / kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"(${instances})-wal\"})", + "format": "time_series", + "interval": "", + "legendFormat": "{{persistentvolumeclaim}}", + "range": true, + "refId": "FREE_SPACE_WAL" + } + ], + "title": "Volume Space Usage: PGDATA and WAL", + "transformations": [], + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "decimals": 2, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "#EAB839", + "value": 0.8 + }, + { + "color": "red", + "value": 0.9 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 13 + }, + "id": 426, + "options": { + "minVizHeight": 75, + "minVizWidth": 75, + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "max by(persistentvolumeclaim) (kubelet_volume_stats_inodes_used{namespace=\"$namespace\", persistentvolumeclaim=~\"$instances\"} / kubelet_volume_stats_inodes{namespace=\"$namespace\", persistentvolumeclaim=~\"$instances\"})", + "format": "time_series", + "interval": "", + "legendFormat": "{{persistentvolumeclaim}}", + "range": true, + "refId": "FREE_INODES" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "max by(persistentvolumeclaim) (kubelet_volume_stats_inodes_used{namespace=\"$namespace\", persistentvolumeclaim=~\"(${instances})-wal\"} / kubelet_volume_stats_inodes{namespace=\"$namespace\", persistentvolumeclaim=~\"(${instances})-wal\"})", + "format": "time_series", + "interval": "", + "legendFormat": "{{persistentvolumeclaim}}", + "range": true, + "refId": "FREE_INODES_WAL" + } + ], + "title": "Volume Inode Usage: PGDATA and WAL", + "transformations": [], + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "#EAB839", + "value": 0.7 + }, + { + "color": "red", + "value": 0.8 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 24, + "x": 0, + "y": 21 + }, + "id": 564, + "options": { + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true, + "text": {} + }, + "pluginVersion": "10.1.5", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "expr": "sum by (namespace,persistentvolumeclaim) (kubelet_volume_stats_used_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"(${instances})-tbs.*\"}) \n/\nsum by (namespace,persistentvolumeclaim) (kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"(${instances})-tbs.*\"}) \n*\non(namespace, persistentvolumeclaim) group_left(volume,pod)\nkube_pod_spec_volumes_persistentvolumeclaims_info{pod=~\"$instances\"}", + "format": "time_series", + "interval": "", + "legendFormat": "{{volume}}-{{pod}}", + "range": true, + "refId": "FREE_SPACE" + } + ], + "title": "Volume Space Usage: Tablespaces", + "transformations": [], + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 28 + }, + "id": 44, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(cnpg_pg_stat_database_tup_deleted{datname=\"\",namespace=~\"$namespace\",pod=~\"$instances\"}[5m]))", + "interval": "", + "legendFormat": "deleted", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(cnpg_pg_stat_database_tup_inserted{datname=\"\",namespace=~\"$namespace\",pod=~\"$instances\"}[5m]))", + "hide": false, + "interval": "", + "legendFormat": "inserted", + "range": true, + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(cnpg_pg_stat_database_tup_fetched{datname=\"\",namespace=~\"$namespace\",pod=~\"$instances\"}[5m]))", + "hide": false, + "interval": "", + "legendFormat": "fetched", + "range": true, + "refId": "C" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(cnpg_pg_stat_database_tup_returned{datname=\"\",namespace=~\"$namespace\",pod=~\"$instances\"}[5m]))", + "hide": false, + "interval": "", + "legendFormat": "returned", + "range": true, + "refId": "D" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(cnpg_pg_stat_database_tup_updated{datname=\"\",namespace=~\"$namespace\",pod=~\"$instances\"}[5m]))", + "hide": false, + "interval": "", + "legendFormat": "updated", + "range": true, + "refId": "E" + } + ], + "title": "Tuple I/O [5m]", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 28 + }, + "id": 46, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "rate(cnpg_pg_stat_database_blks_hit{datname=\"\",namespace=~\"$namespace\",pod=~\"$instances\"}[5m])", + "interval": "", + "legendFormat": "hit ({{pod}})", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "rate(cnpg_pg_stat_database_blks_read{datname=\"\",namespace=~\"$namespace\",pod=~\"$instances\"}[5m])", + "hide": false, + "interval": "", + "legendFormat": "read ({{pod}})", + "range": true, + "refId": "B" + } + ], + "title": "Block I/O [5m]", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + } + ] + }, + "unit": "decbytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 36 + }, + "id": 22, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.0.5", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "max by (datname) (cnpg_pg_database_size_bytes{datname!~\"template.*\",datname!=\"postgres\",namespace=~\"$namespace\",pod=~\"$instances\"})", + "interval": "", + "legendFormat": " {{pod}}: {{datname}}", + "range": true, + "refId": "A" + } + ], + "title": "Database Size", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "decbytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 36 + }, + "id": 2, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "rate(cnpg_pg_stat_database_temp_bytes{datname=\"\",namespace=~\"$namespace\",pod=~\"$instances\"}[5m])", + "instant": false, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Temp Bytes [5m]", + "type": "timeseries" + }, + { + "collapsed": true, + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 44 + }, + "id": 37, + "panels": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 8, + "x": 0, + "y": 57 + }, + "id": 6, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_collector_pg_wal_archive_status{value=\"ready\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "interval": "", + "legendFormat": "ready ({{pod}})", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_collector_pg_wal_archive_status{value=\"done\",namespace=~\"$namespace\",pod=~\"$instances\"}", + "hide": false, + "interval": "", + "legendFormat": "done ({{pod}})", + "refId": "B" + } + ], + "title": "WAL Segment Archive Status", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 8, + "x": 8, + "y": 57 + }, + "id": 52, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "rate(cnpg_pg_stat_archiver_archived_count{namespace=~\"$namespace\",pod=~\"$instances\"}[5m])", + "interval": "", + "legendFormat": "archived ({{pod}})", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "rate(cnpg_pg_stat_archiver_failed_count{namespace=~\"$namespace\",pod=~\"$instances\"}[5m])", + "hide": false, + "interval": "", + "legendFormat": "failed ({{pod}})", + "refId": "B" + } + ], + "title": "Archiver Status [5m]", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 8, + "x": 16, + "y": 57 + }, + "id": 53, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_stat_archiver_seconds_since_last_archival{namespace=~\"$namespace\",pod=~\"$instances\"}", + "interval": "", + "legendFormat": "age ({{pod}})", + "refId": "A" + } + ], + "title": "Last Archive Age", + "type": "timeseries" + } + ], + "targets": [ + { + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "refId": "A" + } + ], + "title": "Write Ahead Log", + "type": "row" + }, + { + "collapsed": true, + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 45 + }, + "id": 18, + "panels": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "line" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "#EAB839", + "value": 600 + }, + { + "color": "dark-red", + "value": 3600 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 6, + "x": 0, + "y": 21 + }, + "id": 16, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_replication_lag{namespace=~\"$namespace\",pod=~\"$instances\"}", + "instant": false, + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Replication Lag", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 6, + "x": 6, + "y": 21 + }, + "id": 14, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_stat_replication_write_lag_seconds{namespace=~\"$namespace\",pod=~\"$cluster-[0-9]+$\"}", + "instant": false, + "interval": "", + "legendFormat": "{{pod}} -> {{application_name}}", + "refId": "A" + } + ], + "title": "Write Lag", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 6, + "x": 12, + "y": 21 + }, + "id": 59, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_stat_replication_flush_lag_seconds{namespace=~\"$namespace\",pod=~\"$cluster-[0-9]+$\"}", + "instant": false, + "interval": "", + "legendFormat": "{{pod}} -> {{application_name}}", + "refId": "A" + } + ], + "title": "Flush Lag", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 6, + "x": 18, + "y": 21 + }, + "id": 20, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_stat_replication_replay_lag_seconds{namespace=~\"$namespace\",pod=~\"$cluster-[0-9]+$\"}", + "interval": "", + "legendFormat": "{{pod}} -> {{application_name}}", + "refId": "A" + } + ], + "title": "Replay Lag", + "type": "timeseries" + } + ], + "targets": [ + { + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "refId": "A" + } + ], + "title": "Replication", + "type": "row" + }, + { + "collapsed": true, + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 46 + }, + "id": 231, + "panels": [ + { + "cards": {}, + "color": { + "cardColor": "#b4ff00", + "colorScale": "sqrt", + "colorScheme": "interpolateOranges", + "exponent": 0.5, + "mode": "spectrum" + }, + "dataFormat": "timeseries", + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "custom": { + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "scaleDistribution": { + "type": "linear" + } + } + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 59 + }, + "heatmap": {}, + "hideZeroBuckets": false, + "highlightCards": true, + "id": 233, + "legend": { + "show": false + }, + "options": { + "calculate": true, + "calculation": {}, + "cellGap": 2, + "cellValues": {}, + "color": { + "exponent": 0.5, + "fill": "#b4ff00", + "mode": "scheme", + "reverse": false, + "scale": "exponential", + "scheme": "Oranges", + "steps": 128 + }, + "exemplars": { + "color": "rgba(255,0,255,0.7)" + }, + "filterValues": { + "le": 1e-9 + }, + "legend": { + "show": false + }, + "rowsFrame": { + "layout": "auto" + }, + "showValue": "never", + "tooltip": { + "show": true, + "yHistogram": false + }, + "yAxis": { + "axisPlacement": "left", + "reverse": false, + "unit": "s" + } + }, + "pluginVersion": "9.4.7", + "reverseYBuckets": false, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_collector_collection_duration_seconds{namespace=~\"$namespace\",pod=~\"$instances\"}", + "interval": "", + "legendFormat": "", + "refId": "A" + } + ], + "title": "Collection Duration", + "tooltip": { + "show": true, + "showHistogram": false + }, + "type": "heatmap", + "xAxis": { + "show": true + }, + "yAxis": { + "format": "s", + "logBase": 1, + "show": true + }, + "yBucketBound": "auto" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 0, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "auto", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 59 + }, + "id": 235, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_collector_last_collection_error{namespace=~\"$namespace\",pod=~\"$instances\"}", + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "Errors", + "type": "timeseries" + } + ], + "targets": [ + { + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "refId": "A" + } + ], + "title": "Collector Stats", + "type": "row" + }, + { + "collapsed": true, + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 47 + }, + "id": 239, + "panels": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 0, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "auto", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "dateTimeAsIso" + }, + "overrides": [] + }, + "gridPos": { + "h": 6, + "w": 8, + "x": 0, + "y": 60 + }, + "id": 237, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_collector_first_recoverability_point{namespace=~\"$namespace\",pod=~\"$instances\"}*1000 > 0", + "format": "time_series", + "interval": "", + "legendFormat": "{{pod}}", + "refId": "A" + } + ], + "title": "First Recoverability Point", + "type": "timeseries" + } + ], + "targets": [ + { + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "refId": "A" + } + ], + "title": "Backups", + "type": "row" + }, + { + "collapsed": true, + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 48 + }, + "id": 293, + "panels": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": -1, + "drawStyle": "line", + "fillOpacity": 8, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 6, + "w": 5, + "x": 0, + "y": 40 + }, + "id": 295, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.2.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_stat_bgwriter_checkpoints_req{namespace=~\"$namespace\",pod=~\"$instances\"}", + "format": "time_series", + "hide": false, + "instant": false, + "interval": "", + "intervalFactor": 1, + "legendFormat": "req/{{pod}}", + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_stat_bgwriter_checkpoints_timed{namespace=~\"$namespace\",pod=~\"$instances\"}", + "format": "time_series", + "interval": "", + "intervalFactor": 1, + "legendFormat": "timed/{{pod}}", + "refId": "A" + } + ], + "title": "Requested/Timed", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": -1, + "drawStyle": "line", + "fillOpacity": 8, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "ms" + }, + "overrides": [] + }, + "gridPos": { + "h": 6, + "w": 5, + "x": 5, + "y": 40 + }, + "id": 296, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.2.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_stat_bgwriter_checkpoint_write_time{namespace=~\"$namespace\",pod=~\"$instances\"}", + "format": "time_series", + "hide": false, + "instant": false, + "interval": "", + "intervalFactor": 1, + "legendFormat": "write/{{pod}}", + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "exemplar": true, + "expr": "cnpg_pg_stat_bgwriter_checkpoint_sync_time{namespace=~\"$namespace\",pod=~\"$instances\"}", + "format": "time_series", + "interval": "", + "intervalFactor": 1, + "legendFormat": "sync/{{pod}}", + "refId": "A" + } + ], + "title": "Write/Sync time", + "type": "timeseries" + } + ], + "targets": [ + { + "datasource": { + "uid": "${DS_PROMETHEUS}" + }, + "refId": "A" + } + ], + "title": "Checkpoints", + "type": "row" + } + ], + "refresh": "30s", + "revision": 1, + "schemaVersion": 38, + "tags": [ + "cloudnativepg" + ], + "templating": { + "list": [ + { + "current": { + "selected": false, + "text": "default", + "value": "default" + }, + "hide": 0, + "includeAll": false, + "label": "Datasource", + "multi": false, + "name": "DS_PROMETHEUS", + "options": [], + "query": "prometheus", + "queryValue": "", + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "type": "datasource" + }, + { + "current": { + "isNone": true, + "selected": false, + "text": "None", + "value": "" + }, + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "definition": "cnpg_collector_up", + "hide": 0, + "includeAll": false, + "multi": false, + "name": "namespace", + "options": [], + "query": { + "query": "cnpg_collector_up", + "refId": "StandardVariableQuery" + }, + "refresh": 1, + "regex": "/namespace=\"(?[^\"]+)/g", + "skipUrlSync": false, + "sort": 0, + "type": "query" + }, + { + "current": { + "isNone": true, + "selected": false, + "text": "None", + "value": "" + }, + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "definition": "cnpg_collector_up{namespace=~\"$namespace\"}", + "hide": 0, + "includeAll": false, + "multi": false, + "name": "cluster", + "options": [], + "query": { + "query": "cnpg_collector_up{namespace=~\"$namespace\"}", + "refId": "PrometheusVariableQueryEditor-VariableQuery" + }, + "refresh": 1, + "regex": "/\\bcluster\\b=\"(?[^\"]+)/g", + "skipUrlSync": false, + "sort": 1, + "type": "query" + }, + { + "current": { + "selected": true, + "text": [ + "All" + ], + "value": [ + "$__all" + ] + }, + "datasource": { + "type": "prometheus", + "uid": "${DS_PROMETHEUS}" + }, + "definition": "cnpg_collector_up{namespace=~\"$namespace\",pod=~\"$cluster-[0-9]+$\"}", + "hide": 0, + "includeAll": true, + "multi": true, + "name": "instances", + "options": [], + "query": { + "query": "cnpg_collector_up{namespace=~\"$namespace\",pod=~\"$cluster-[0-9]+$\"}", + "refId": "StandardVariableQuery" + }, + "refresh": 1, + "regex": "/pod=\"(?[^\"]+)/g", + "skipUrlSync": false, + "sort": 1, + "type": "query" + } + ] + }, + "time": { + "from": "now-6h", + "to": "now" + }, + "timepicker": { + "nowDelay": "" + }, + "timezone": "", + "title": "CloudNativePG", + "uid": "cloudnative-pg", + "version": 1, + "weekStart": "" +} diff --git a/odroid/cnpg/monitoring/grafana-lb.yaml b/odroid/cnpg/monitoring/grafana-lb.yaml new file mode 100644 index 0000000..e6ad76e --- /dev/null +++ b/odroid/cnpg/monitoring/grafana-lb.yaml @@ -0,0 +1,21 @@ +apiVersion: v1 +kind: Service +metadata: + name: grafana-lb + namespace: monitoring +spec: + externalTrafficPolicy: Cluster + internalTrafficPolicy: Cluster + ipFamilies: + - IPv4 + ports: + - nodePort: 30093 + port: 3000 + protocol: TCP + targetPort: 3000 + selector: + app.kubernetes.io/instance: prometheus-community + app.kubernetes.io/name: grafana + type: LoadBalancer +status: + loadBalancer: diff --git a/odroid/cnpg/postgres13/backup.yaml b/odroid/cnpg/postgres13/backup.yaml new file mode 100644 index 0000000..332d30c --- /dev/null +++ b/odroid/cnpg/postgres13/backup.yaml @@ -0,0 +1,8 @@ +apiVersion: postgresql.cnpg.io/v1 +kind: Backup +metadata: + name: postgres13-backup + namespace: postgres +spec: + cluster: + name: postgres13 diff --git a/odroid/cnpg/postgres13/create.yaml b/odroid/cnpg/postgres13/create.yaml new file mode 100644 index 0000000..2df3cbf --- /dev/null +++ b/odroid/cnpg/postgres13/create.yaml @@ -0,0 +1,50 @@ +apiVersion: postgresql.cnpg.io/v1 +kind: Cluster +metadata: + name: postgres13 + namespace: postgres +spec: + imageName: ghcr.io/cloudnative-pg/postgresql:13.14-3 + instances: 3 + superuserSecret: + name: superuser-secret + bootstrap: + initdb: + postInitSQL: + - CREATE USER admin WITH PASSWORD 'Postgres01@' + - ALTER USER admin WITH SUPERUSER + - CREATE USER harbor WITH PASSWORD 'harbor' + - CREATE DATABASE harbor OWNER harbor + storage: + size: 5Gi + + monitoring: + enablePodMonitor: true + + backup: + barmanObjectStore: + destinationPath: 's3://backups/' + endpointURL: 'http://minio.postgres:9000' + s3Credentials: + accessKeyId: + name: minio-creds + key: MINIO_ACCESS_KEY + secretAccessKey: + name: minio-creds + key: MINIO_SECRET_KEY + retentionPolicy: "1d" +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres13-lb + namespace: postgres +spec: + selector: + cnpg.io/cluster: postgres13 + role: primary + ports: + - port: 5432 + targetPort: 5432 + type: LoadBalancer + diff --git a/odroid/cnpg/postgres13/recover1.yaml b/odroid/cnpg/postgres13/recover1.yaml new file mode 100644 index 0000000..3465df3 --- /dev/null +++ b/odroid/cnpg/postgres13/recover1.yaml @@ -0,0 +1,46 @@ +apiVersion: postgresql.cnpg.io/v1 +kind: Cluster +metadata: + name: postgres13-1 + namespace: postgres +spec: + instances: 3 + imageName: ghcr.io/cloudnative-pg/postgresql:13.14-3 + + superuserSecret: + name: superuser-secret + + storage: + size: 5Gi + storageClass: nfs-client + + monitoring: + enablePodMonitor: true + + backup: + barmanObjectStore: + destinationPath: 's3://backups/' + endpointURL: 'http://minio.postgres:9000' + s3Credentials: + accessKeyId: + name: minio-creds + key: MINIO_ACCESS_KEY + secretAccessKey: + name: minio-creds + key: MINIO_SECRET_KEY + retentionPolicy: "1d" + bootstrap: + recovery: + source: postgres13 + externalClusters: + - name: postgres13 + barmanObjectStore: + destinationPath: 's3://backups/' + endpointURL: 'http://minio.postgres:9000' + s3Credentials: + accessKeyId: + name: minio-creds + key: MINIO_ACCESS_KEY + secretAccessKey: + name: minio-creds + key: MINIO_SECRET_KEY diff --git a/odroid/cnpg/postgres13/recover2.yaml b/odroid/cnpg/postgres13/recover2.yaml new file mode 100644 index 0000000..69348d0 --- /dev/null +++ b/odroid/cnpg/postgres13/recover2.yaml @@ -0,0 +1,46 @@ +apiVersion: postgresql.cnpg.io/v1 +kind: Cluster +metadata: + name: postgres13 + namespace: postgres +spec: + instances: 3 + imageName: ghcr.io/cloudnative-pg/postgresql:13.14-3 + + superuserSecret: + name: superuser-secret + + storage: + size: 5Gi + storageClass: nfs-client + + monitoring: + enablePodMonitor: true + + backup: + barmanObjectStore: + destinationPath: 's3://backups/' + endpointURL: 'http://minio.postgres:9000' + s3Credentials: + accessKeyId: + name: minio-creds + key: MINIO_ACCESS_KEY + secretAccessKey: + name: minio-creds + key: MINIO_SECRET_KEY + retentionPolicy: "1d" + bootstrap: + recovery: + source: postgres13-1 + externalClusters: + - name: postgres13-1 + barmanObjectStore: + destinationPath: 's3://backups/' + endpointURL: 'http://minio.postgres:9000' + s3Credentials: + accessKeyId: + name: minio-creds + key: MINIO_ACCESS_KEY + secretAccessKey: + name: minio-creds + key: MINIO_SECRET_KEY diff --git a/odroid/cnpg/postgres13/schedulebackup.yaml b/odroid/cnpg/postgres13/schedulebackup.yaml new file mode 100644 index 0000000..48de77b --- /dev/null +++ b/odroid/cnpg/postgres13/schedulebackup.yaml @@ -0,0 +1,9 @@ +apiVersion: postgresql.cnpg.io/v1 +kind: ScheduledBackup +metadata: + name: postgres13-backup +spec: + schedule: "0 0 14 * * *" + backupOwnerReference: self + cluster: + name: postgres13 diff --git a/odroid/cnpg/postgres14/backup.yaml b/odroid/cnpg/postgres14/backup.yaml new file mode 100644 index 0000000..15549e8 --- /dev/null +++ b/odroid/cnpg/postgres14/backup.yaml @@ -0,0 +1,8 @@ +apiVersion: postgresql.cnpg.io/v1 +kind: Backup +metadata: + name: postgres14-backup + namespace: postgres +spec: + cluster: + name: postgres14 diff --git a/odroid/cnpg/postgres14/create.yaml b/odroid/cnpg/postgres14/create.yaml new file mode 100644 index 0000000..2270ba3 --- /dev/null +++ b/odroid/cnpg/postgres14/create.yaml @@ -0,0 +1,50 @@ +apiVersion: postgresql.cnpg.io/v1 +kind: Cluster +metadata: + name: postgres14 + namespace: postgres +spec: + imageName: ghcr.io/cloudnative-pg/postgresql:14.11-3 + instances: 3 + superuserSecret: + name: superuser-secret + bootstrap: + initdb: + postInitSQL: + - CREATE USER admin WITH PASSWORD 'Postgres01@' + - ALTER USER admin WITH SUPERUSER + - CREATE USER harbor WITH PASSWORD 'harbor' + - CREATE DATABASE harbor OWNER harbor + storage: + size: 5Gi + + monitoring: + enablePodMonitor: true + + backup: + barmanObjectStore: + destinationPath: 's3://backups/' + endpointURL: 'http://minio.postgres:9000' + s3Credentials: + accessKeyId: + name: minio-creds + key: MINIO_ACCESS_KEY + secretAccessKey: + name: minio-creds + key: MINIO_SECRET_KEY + retentionPolicy: "1d" +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres14-lb + namespace: postgres +spec: + selector: + cnpg.io/cluster: postgres14 + role: primary + ports: + - port: 5432 + targetPort: 5432 + type: LoadBalancer + diff --git a/odroid/cnpg/script.sh b/odroid/cnpg/script.sh new file mode 100755 index 0000000..a29d914 --- /dev/null +++ b/odroid/cnpg/script.sh @@ -0,0 +1,9 @@ +CLUSTER_NAME=postgres13 +NAMESPACE=postgres + +PRIMARY=$(kubectl get cluster -n "$NAMESPACE" "$CLUSTER_NAME" -o jsonpath='{.status.currentPrimary}') +for pvc in $(kubectl get pvc -n "$NAMESPACE" -l"cnpg.io/cluster=$CLUSTER_NAME" -o name); do + ROLE=$([ "$pvc" = "persistentvolumeclaim/$PRIMARY" ] && echo primary || echo replica) + kubectl label -n "$NAMESPACE" "$pvc" --overwrite "cnpg.io/instanceRole=$ROLE" "role=$ROLE" +done +kubectl delete pod -n "$NAMESPACE" -l "cnpg.io/cluster=$CLUSTER_NAME" diff --git a/odroid/cnpg/superuser-secret.yaml b/odroid/cnpg/superuser-secret.yaml new file mode 100644 index 0000000..ed57c88 --- /dev/null +++ b/odroid/cnpg/superuser-secret.yaml @@ -0,0 +1,8 @@ +apiVersion: v1 +data: + username: cG9zdGdyZXMK + password: UG9zdGdyZXMwMUA= +kind: Secret +metadata: + name: superuser-secret +type: kubernetes.io/basic-auth diff --git a/odroid/cnpg/tenant.txt b/odroid/cnpg/tenant.txt new file mode 100644 index 0000000..d0334b2 --- /dev/null +++ b/odroid/cnpg/tenant.txt @@ -0,0 +1,2 @@ +LyxDkhkSaQvoLUfb +ew3h3CEilTbGu6rpGG918zl0LdnVP32s diff --git a/odroid/grafana/README.md b/odroid/grafana/README.md new file mode 100644 index 0000000..d9ce851 --- /dev/null +++ b/odroid/grafana/README.md @@ -0,0 +1,6 @@ +#Installatie grafana Dashboard: + +log in op gui van grafana: admin prom-operator +Maak nieuw dashboard aan. + +Importeer dashboard met id : 20417 diff --git a/odroid/grafana/ingressroute.yaml b/odroid/grafana/ingressroute.yaml new file mode 100755 index 0000000..203e790 --- /dev/null +++ b/odroid/grafana/ingressroute.yaml @@ -0,0 +1,21 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: grafana-odroid-alldcs + namespace: monitoring +spec: + entryPoints: + - websecure + routes: + - match: Host(`grafana-odroid.alldcs.nl`) + kind: Rule + services: + - name: prometheus-community-grafana + port: 80 + tls: + certResolver: letsencrypt + + + + + diff --git a/odroid/kubernetes/README.md b/odroid/kubernetes/README.md new file mode 100755 index 0000000..ba0ab84 --- /dev/null +++ b/odroid/kubernetes/README.md @@ -0,0 +1,17 @@ +3) microk8s enable dashboard +2) creer account: kubectl apply -f ServiceAccount.yaml +3) creeer clusterrolebinding: kubectl aply -f ClusterRoleBinding.yaml +4) creeer ingressroute: kubectl apply -f Ingressroute-tls.yaml +5) genereer token: +kubectl -n kube-system create token admin-user --duration=8544h + +Herinstallatie: + +na herinstallatie moet je de config opnieuw kopieren anders klopt het certificaat niet meer: + +sudo cp -i /var/snap/microk8s/current/credentials/client.config ${HOME}/.kube/config + +sudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/config + + + diff --git a/odroid/kubernetes/TIPS.md b/odroid/kubernetes/TIPS.md new file mode 100755 index 0000000..60c6e00 --- /dev/null +++ b/odroid/kubernetes/TIPS.md @@ -0,0 +1,38 @@ +#Als een pvc in de status "terminating" blijft hangen kan het volgende commando +#helpen: + +kubectl patch pvc {PVC_NAME} -p '{"metadata":{"finalizers":null}}' + +#Switchen van context: + +kubectl config set-context --current --namespace=tektontutorial + +#Als je bij uitvoeren van kubectl "connection refused " krijgt +#kunnen de volgende commando's helpen: + +sudo microk8s.refresh-certs --cert ca.crt +sudo microk8s.refresh-certs --cert server.crt + +aanpassen clusternaam: + +nano /var/snap/micrk8s/current/credentials/client.config + +Daarna certificaten opnieuw genereren: + +sudo microk8s.refresh-certs --cert ca.crt +sudo microk8s.refresh-certs --cert server.crt + +kubectl configuratie opnieuw genereren: + +microk8s.kubectl config view --raw > $HOME/.kube/config + +#metallb speaker permission errors + +sudo nano /etc/apparmor.d/cri-containerd.apparmor.d +network, +sudo apparmor_parser -r /etc/apparmor.d/cri-containerd.apparmor.d + +#volle schijf: + +sudo microk8s ctr images list -q | xargs -r sudo microk8s ctr images rm + diff --git a/odroid/kubernetes/catalog-info.yaml b/odroid/kubernetes/catalog-info.yaml new file mode 100644 index 0000000..46e8ba9 --- /dev/null +++ b/odroid/kubernetes/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: odroid-kubernetes + title: Kubernetes (odroid) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/odroid/kubernetes/cluster-issuer.yaml b/odroid/kubernetes/cluster-issuer.yaml new file mode 100755 index 0000000..4d2d314 --- /dev/null +++ b/odroid/kubernetes/cluster-issuer.yaml @@ -0,0 +1,14 @@ +apiVersion: cert-manager.io/v1 +kind: ClusterIssuer +metadata: + name: letsencrypt +spec: + acme: + email: admin@allarddcs.nl + server: https://acme-v02.api.letsencrypt.org/directory + privateKeySecretRef: + name: letsencrypt-account-key + solvers: + - http01: + ingress: + class: traefik diff --git a/odroid/kubernetes/clusterrolebinding.yaml b/odroid/kubernetes/clusterrolebinding.yaml new file mode 100755 index 0000000..faa8927 --- /dev/null +++ b/odroid/kubernetes/clusterrolebinding.yaml @@ -0,0 +1,12 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: admin-user +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: cluster-admin +subjects: +- kind: ServiceAccount + name: admin-user + namespace: kube-system diff --git a/odroid/kubernetes/create-token.sh b/odroid/kubernetes/create-token.sh new file mode 100755 index 0000000..95a7f2d --- /dev/null +++ b/odroid/kubernetes/create-token.sh @@ -0,0 +1 @@ +microk8s kubectl -n kube-system create token admin-user --duration=8544h diff --git a/odroid/kubernetes/ingressroute-tls-odroid.yaml b/odroid/kubernetes/ingressroute-tls-odroid.yaml new file mode 100755 index 0000000..99e068f --- /dev/null +++ b/odroid/kubernetes/ingressroute-tls-odroid.yaml @@ -0,0 +1,29 @@ +apiVersion: traefik.io/v1alpha1 +kind: ServersTransport +metadata: + name: kubernetes-dashboard-transport + namespace: kube-system +spec: + serverName: kubernetes-dashboard + insecureSkipVerify: true +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: kubernetes-dashboard-tls + namespace: kube-system +spec: + entryPoints: # [1] + - websecure + routes: # [2] + - kind: Rule + match: Host(`kubernetes-odroid.allarddcs.nl`) # [3] + priority: 10 # [4] + services: # [8] + - kind: Service + name: kubernetes-dashboard + namespace: kube-system + port: 443 # [9] + serversTransport: kubernetes-dashboard-transport + tls: # [11] + certResolver: letsencrypt diff --git a/odroid/kubernetes/serviceaccount.yaml b/odroid/kubernetes/serviceaccount.yaml new file mode 100755 index 0000000..27b6bb8 --- /dev/null +++ b/odroid/kubernetes/serviceaccount.yaml @@ -0,0 +1,5 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: admin-user + namespace: kube-system diff --git a/odroid/minio/catalog-info.yaml b/odroid/minio/catalog-info.yaml new file mode 100644 index 0000000..76861f4 --- /dev/null +++ b/odroid/minio/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: odroid-minio + title: Minio (odroid) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/odroid/minio/minio.txt b/odroid/minio/minio.txt new file mode 100644 index 0000000..d90878c --- /dev/null +++ b/odroid/minio/minio.txt @@ -0,0 +1,3 @@ +Username: I8VTWUTPITYMGQ8BL22V + Password: Snd6kC8KL73E7FyHaf3vMmgD8iDSHlGdEcrAHIoJ + Note: Copy the credentials to a secure location. MinIO will not display these again. diff --git a/odroid/minio/minio.yaml b/odroid/minio/minio.yaml new file mode 100644 index 0000000..c337437 --- /dev/null +++ b/odroid/minio/minio.yaml @@ -0,0 +1,140 @@ +apiVersion: apps/v1 # for k8s versions before 1.9.0 use apps/v1beta2 and before 1.8.0 use extensions/v1beta1 +kind: Deployment +metadata: + # This name uniquely identifies the Deployment + name: minio + namespace: postgres # Change this value to match the namespace metadata.name +spec: + selector: + matchLabels: + app: minio + strategy: + type: Recreate + template: + metadata: + labels: + # Label is used as selector in the service. + app: minio + spec: + # Refer to the PVC created earlier + volumes: + - name: storage + persistentVolumeClaim: + # Name of the PVC created earlier + claimName: minio-pvc + containers: + - name: minio + # Pulls the default Minio image from Docker Hub + image: minio/minio:latest + command: + - /bin/bash + - -c + args: + - minio server /storage --console-address :9090 + env: + # Minio access key and secret key + - name: MINIO_ROOT_USER + value: "admin" + - name: MINIO_ROOT_PASSWORD + value: "Minio01@" + ports: + - containerPort: 9000 + hostPort: 9000 + - containerPort: 9090 + hostPort: 9090 + # Mount the volume into the pod + volumeMounts: + - name: storage # must match the volume name, above + mountPath: "/storage" +--- +apiVersion: v1 +kind: Service +metadata: + name: minio + namespace: postgres +spec: + type: ClusterIP + ports: + - name: minio-console + port: 9090 + selector: + app: minio +--- +apiVersion: v1 +kind: Service +metadata: + name: minio-api + namespace: postgres +spec: + type: ClusterIP + ports: + - name: minio-api + port: 9000 + selector: + app: minio +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: minio-allarddcs-tls + namespace: postgres +spec: + entryPoints: + - websecure + routes: + - match: Host(`minio-odroid.allarddcs.nl`) + kind: Rule + services: + - name: minio + port: 9090 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: minio-api-allarddcs-tls + namespace: postgres +spec: + entryPoints: + - websecure + routes: + - match: Host(`minio-odroid-api.allarddcs.nl`) + kind: Rule + services: + - name: minio-api + port: 9000 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: minio-pv +spec: + storageClassName: "" + capacity: + storage: 5Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/minio + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: minio-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: minio-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 5Gi diff --git a/odroid/mongodb-operator/README.md b/odroid/mongodb-operator/README.md new file mode 100644 index 0000000..205369c --- /dev/null +++ b/odroid/mongodb-operator/README.md @@ -0,0 +1,17 @@ +INSTALLATIE: +============ + +#als nog niet gedaan: + +kubectl create ns mongodb-operator +kubectl create ns mongodb + +#als nog niet gedaan: + +helm repo add mongodb https://mongodb.github.io/helm-charts +helm repo update + +#installatie operator: + +helm install community-operator mongodb/community-operator --namespace mongodb-operator --set operator.watchNamespace="*" + diff --git a/odroid/mongodb-operator/catalog-info.yaml b/odroid/mongodb-operator/catalog-info.yaml new file mode 100644 index 0000000..85853be --- /dev/null +++ b/odroid/mongodb-operator/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: odroid-mongodb-operator + title: Mongodb-operator (odroid) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/odroid/nginx/catalog-info.yaml b/odroid/nginx/catalog-info.yaml new file mode 100644 index 0000000..ef0bd7b --- /dev/null +++ b/odroid/nginx/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: odroid-nginx + title: Nginx (odroid) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/odroid/nginx/nginx-odroid/nginx-odroid.yaml b/odroid/nginx/nginx-odroid/nginx-odroid.yaml new file mode 100755 index 0000000..7a64fa8 --- /dev/null +++ b/odroid/nginx/nginx-odroid/nginx-odroid.yaml @@ -0,0 +1,78 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx + labels: + app: nginx +spec: + replicas: 1 + selector: + matchLabels: + app: nginx + template: + metadata: + labels: + app: nginx + spec: + containers: + - name: nginx + image: nginx:1.14.2 + volumeMounts: + - mountPath: /usr/share/nginx/html + name: nginx + subPath: html + ports: + - containerPort: 80 + volumes: + - name: nginx + persistentVolumeClaim: + claimName: nginx-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: nginx + labels: + name: nginx +spec: + type: NodePort + ports: + - port: 80 + nodePort: 30080 + name: http + selector: + app: nginx +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nginx-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/nginx-odroid + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nginx-pvc +spec: + storageClassName: "" + volumeName: nginx-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/odroid/nginx/nginx-odroid/odroid/nginx-pv.yaml b/odroid/nginx/nginx-odroid/odroid/nginx-pv.yaml new file mode 100755 index 0000000..183521a --- /dev/null +++ b/odroid/nginx/nginx-odroid/odroid/nginx-pv.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nginx-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/nginx-odroid + readOnly: false + diff --git a/odroid/nginx/nginx-odroid/odroid/nginx-pvc.yaml b/odroid/nginx/nginx-odroid/odroid/nginx-pvc.yaml new file mode 100755 index 0000000..88fa8c3 --- /dev/null +++ b/odroid/nginx/nginx-odroid/odroid/nginx-pvc.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nginx-pvc +spec: + storageClassName: "" + volumeName: nginx-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + + + + diff --git a/odroid/nginx/nginx-odroid/odroid/nginx-svc.yaml b/odroid/nginx/nginx-odroid/odroid/nginx-svc.yaml new file mode 100755 index 0000000..e236bd2 --- /dev/null +++ b/odroid/nginx/nginx-odroid/odroid/nginx-svc.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: Service +metadata: + name: nginx + labels: + name: nginx +spec: + type: NodePort + ports: + - port: 80 + nodePort: 30080 + name: http + selector: + app: nginx diff --git a/odroid/nginx/nginx-odroid/raspberry/external-nginx-svc.yaml b/odroid/nginx/nginx-odroid/raspberry/external-nginx-svc.yaml new file mode 100755 index 0000000..fa4b92f --- /dev/null +++ b/odroid/nginx/nginx-odroid/raspberry/external-nginx-svc.yaml @@ -0,0 +1,20 @@ + +apiVersion: v1 +kind: Service +metadata: + name: external-nginx +spec: + ports: + - protocol: TCP + port: 30080 + targetPort: 30080 +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: external-nginx +subsets: + - addresses: + - ip: 192.168.2.111 + ports: + - port: 30080 diff --git a/odroid/nginx/nginx-odroid/raspberry/ingressroute-http.yml b/odroid/nginx/nginx-odroid/raspberry/ingressroute-http.yml new file mode 100755 index 0000000..9619d08 --- /dev/null +++ b/odroid/nginx/nginx-odroid/raspberry/ingressroute-http.yml @@ -0,0 +1,13 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: odroid-http-alldcs +spec: + entryPoints: + - web + routes: + - match: Host(`odroid.alldcs.nl`) + kind: Rule + services: + - name: external-nginx + port: 30080 diff --git a/odroid/nginx/nginx-odroid/raspberry/ingressroute-tls.yml b/odroid/nginx/nginx-odroid/raspberry/ingressroute-tls.yml new file mode 100755 index 0000000..72b7473 --- /dev/null +++ b/odroid/nginx/nginx-odroid/raspberry/ingressroute-tls.yml @@ -0,0 +1,15 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: odroid-tls-alldcs +spec: + entryPoints: + - websecure + routes: + - match: Host(`odroid.alldcs.nl`) + kind: Rule + services: + - name: external-nginx + port: 80 + tls: + certResolver: letsencrypt diff --git a/odroid/pgadmin/catalog-info.yaml b/odroid/pgadmin/catalog-info.yaml new file mode 100644 index 0000000..02c5071 --- /dev/null +++ b/odroid/pgadmin/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: odroid-pgadmin + title: Pgadmin (odroid) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/odroid/pgadmin/pgadmin.yaml b/odroid/pgadmin/pgadmin.yaml new file mode 100755 index 0000000..9aa8f38 --- /dev/null +++ b/odroid/pgadmin/pgadmin.yaml @@ -0,0 +1,101 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: pgadmin + namespace: postgres + labels: + app: pgadmin +spec: + replicas: 1 + selector: + matchLabels: + app: pgadmin + template: + metadata: + labels: + app: pgadmin + spec: + containers: + - name: pgadmin + image: dpage/pgadmin4 + ports: + - containerPort: 80 + env: + - name: PGADMIN_DEFAULT_EMAIL + value: admin@alldcs.nl + - name: PGADMIN_DEFAULT_PASSWORD + value: Pgadmin01@ + volumeMounts: + - mountPath: /var/lib/pgadmin + name: pgadmin + volumes: + - name: pgadmin + persistentVolumeClaim: + claimName: pgadmin-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: pgadmin + namespace: postgres + labels: + name: pgadmin +spec: + type: ClusterIP + ports: + - port: 80 + name: http + selector: + app: pgadmin +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: pgadmin-odroid-alldcs + namespace: postgres +spec: + entryPoints: + - websecure + routes: + - match: Host(`pgadmin-odroid.allarddcs.nl`) + kind: Rule + services: + - name: pgadmin + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: pgadmin-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/pgadmin/odroid + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: pgadmin-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: pgadmin-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/odroid/phpmyadmin/catalog-info.yaml b/odroid/phpmyadmin/catalog-info.yaml new file mode 100644 index 0000000..8b30f01 --- /dev/null +++ b/odroid/phpmyadmin/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: odroid-phpmyadmin + title: Phpmyadmin (odroid) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/odroid/phpmyadmin/phpmyadmin.yaml b/odroid/phpmyadmin/phpmyadmin.yaml new file mode 100755 index 0000000..de158e8 --- /dev/null +++ b/odroid/phpmyadmin/phpmyadmin.yaml @@ -0,0 +1,101 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: phpmyadmin + namespace: mariadb + labels: + app: phpmyadmin +spec: + replicas: 1 + selector: + matchLabels: + app: phpmyadmin + template: + metadata: + labels: + app: phpmyadmin + spec: + containers: + - name: phpmyadmin + image: arm64v8/phpmyadmin + ports: + - containerPort: 80 + env: + - name: PMA_HOST + value: mariadb + - name: PMA_PORT + value: "3306" + - name: MYSQL_ROOT_PASSWORD + value: "zabbix" +# volumeMounts: +# - name: phpconfig +# mountPath: /etc/phpmyadmin +# volumes: +# - name: phpconfig +# persistentVolumeClaim: +# claimName: phpmyadmin-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: phpmyadmin + namespace: mariadb +spec: + selector: + app.kubernetes.io/name: phpmyadmin + ports: + - protocol: TCP + port: 80 + targetPort: 80 + selector: + app: phpmyadmin +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: phpmyadmin-tls-alldcs + namespace: mariadb +spec: + entryPoints: + - websecure + routes: + - match: Host(`phpmyadmin-dev.alldcs.nl`) + kind: Rule + services: + - name: phpmyadmin + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: phpmyadmin-pv + labels: + type: local +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/phpmyadmin + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: phpmyadmin-pvc + namespace: mariadb +spec: + storageClassName: "" + volumeName: phpmyadmin-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1G + diff --git a/odroid/postgres-operator-percona/catalog-info.yaml b/odroid/postgres-operator-percona/catalog-info.yaml new file mode 100644 index 0000000..2e40144 --- /dev/null +++ b/odroid/postgres-operator-percona/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: odroid-postgres-operator-percona + title: Postgres-operator-percona (odroid) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/odroid/postgres-operator-percona/handmatig/README.md b/odroid/postgres-operator-percona/handmatig/README.md new file mode 100755 index 0000000..c7cb794 --- /dev/null +++ b/odroid/postgres-operator-percona/handmatig/README.md @@ -0,0 +1,6 @@ +#deploy operator +kubectl apply --server-side -f \ +https://raw.githubusercontent.com/percona/percona-postgresql-operator/main/deploy/bundle.yaml +#deploy cluster +kubectl apply +-f https://raw.githubusercontent.com/percona/percona-postgresql-operator/main/deploy/cr.yaml diff --git a/odroid/postgres-operator-percona/handmatig/cluster.yaml b/odroid/postgres-operator-percona/handmatig/cluster.yaml new file mode 100755 index 0000000..39d5bad --- /dev/null +++ b/odroid/postgres-operator-percona/handmatig/cluster.yaml @@ -0,0 +1,271 @@ +apiVersion: pgv2.percona.com/v2 +kind: PerconaPGCluster +metadata: + name: cluster1 +# finalizers: +# - percona.com/delete-pvc +# - percona.com/delete-ssl +spec: + crVersion: 2.3.0 +# secrets: +# customTLSSecret: +# name: cluster1-cert +# customReplicationTLSSecret: +# name: replication1-cert + +# standby: +# enabled: true +# host: "" +# port: "" +# repoName: repo1 + +# openshift: true + +# users: +# - name: rhino +# databases: +# - zoo +# options: "SUPERUSER" +# password: +# type: ASCII +# secretName: "rhino-credentials" + +# databaseInitSQL: +# key: init.sql +# name: cluster1-init-sql + +# pause: true +# unmanaged: true + +# dataSource: +# postgresCluster: +# clusterName: cluster1 +# repoName: repo1 +# options: +# - --type=time +# - --target="2021-06-09 14:15:11-04" +# pgbackrest: +# stanza: db +# configuration: +# - secret: +# name: pgo-s3-creds +# global: +# repo1-path: /pgbackrest/postgres-operator/hippo/repo1 +# repo: +# name: repo1 +# s3: +# bucket: "my-bucket" +# endpoint: "s3.ca-central-1.amazonaws.com" +# region: "ca-central-1" + + image: perconalab/percona-postgresql-operator:main-ppg15-postgres + imagePullPolicy: Always + postgresVersion: 15 + port: 5432 + + expose: + annotations: + my-annotation: percona-lb + labels: + my-label: percona-lb + type: LoadBalancer + + instances: + - name: instance1 + replicas: 3 +# resources: +# limits: +# cpu: 2.0 +# memory: 4Gi +# +# sidecars: +# - name: testcontainer +# image: mycontainer1:latest +# - name: testcontainer2 +# image: mycontainer1:latest +# +# topologySpreadConstraints: +# - maxSkew: 1 +# topologyKey: my-node-label +# whenUnsatisfiable: DoNotSchedule +# labelSelector: +# matchLabels: +# postgres-operator.crunchydata.com/instance-set: instance1 +# +# tolerations: +# - effect: NoSchedule +# key: role +# operator: Equal +# value: connection-poolers +# +# priorityClassName: high-priority +# +# walVolumeClaimSpec: +# accessModes: +# - "ReadWriteOnce" +# resources: +# requests: +# storage: 1Gi +# + dataVolumeClaimSpec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + + proxy: + pgBouncer: + replicas: 3 + image: perconalab/percona-postgresql-operator:main-ppg15-pgbouncer +# exposeSuperusers: true +# resources: +# limits: +# cpu: 200m +# memory: 128Mi +# +# expose: +# annotations: +# my-annotation: value1 +# labels: +# my-label: value2 +# type: LoadBalancer +# +# affinity: +# podAntiAffinity: +# preferredDuringSchedulingIgnoredDuringExecution: +# - weight: 1 +# podAffinityTerm: +# labelSelector: +# matchLabels: +# postgres-operator.crunchydata.com/cluster: keycloakdb +# postgres-operator.crunchydata.com/role: pgbouncer +# topologyKey: kubernetes.io/hostname +# +# tolerations: +# - effect: NoSchedule +# key: role +# operator: Equal +# value: connection-poolers +# +# topologySpreadConstraints: +# - maxSkew: 1 +# topologyKey: my-node-label +# whenUnsatisfiable: ScheduleAnyway +# labelSelector: +# matchLabels: +# postgres-operator.crunchydata.com/role: pgbouncer +# +# sidecars: +# - name: bouncertestcontainer1 +# image: mycontainer1:latest +# +# customTLSSecret: +# name: keycloakdb-pgbouncer.tls +# +# config: +# global: +# pool_mode: transaction + + backups: + pgbackrest: +# metadata: +# labels: + image: perconalab/percona-postgresql-operator:main-ppg15-pgbackrest +# configuration: +# - secret: +# name: cluster1-pgbackrest-secrets +# jobs: +# priorityClassName: high-priority +# resources: +# limits: +# cpu: 200m +# memory: 128Mi +# tolerations: +# - effect: NoSchedule +# key: role +# operator: Equal +# value: connection-poolers +# +# global: +# repo1-retention-full: "14" +# repo1-retention-full-type: time +# repo1-path: /pgbackrest/postgres-operator/cluster1/repo1 +# repo1-cipher-type: aes-256-cbc +# repo1-s3-uri-style: path +# repo2-path: /pgbackrest/postgres-operator/cluster1-multi-repo/repo2 +# repo3-path: /pgbackrest/postgres-operator/cluster1-multi-repo/repo3 +# repo4-path: /pgbackrest/postgres-operator/cluster1-multi-repo/repo4 +# repoHost: +# priorityClassName: high-priority +# +# topologySpreadConstraints: +# - maxSkew: 1 +# topologyKey: my-node-label +# whenUnsatisfiable: ScheduleAnyway +# labelSelector: +# matchLabels: +# postgres-operator.crunchydata.com/pgbackrest: "" +# affinity: +# podAntiAffinity: +# preferredDuringSchedulingIgnoredDuringExecution: +# - weight: 1 +# podAffinityTerm: +# labelSelector: +# matchLabels: +# postgres-operator.crunchydata.com/cluster: keycloakdb +# postgres-operator.crunchydata.com/role: pgbouncer +# topologyKey: kubernetes.io/hostname +# + manual: + repoName: repo1 + options: + - --type=full + repos: + - name: repo1 + schedules: + full: "0 0 * * 6" +# differential: "0 1 * * 1-6" + volume: + volumeClaimSpec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi +# - name: repo2 +# s3: +# bucket: "" +# endpoint: "" +# region: "" +# - name: repo3 +# gcs: +# bucket: "" +# - name: repo4 +# azure: +# container: "" +# +# restore: +# enabled: true +# repoName: repo1 +# options: +# PITR restore in place +# - --type=time +# - --target="2021-06-09 14:15:11-04" +# restore individual databases +# - --db-include=hippo + + pmm: + enabled: true + image: percona/pmm-client:2.37.0 +# imagePullPolicy: IfNotPresent + secret: cluster1-pmm-secret + serverHost: monitoring-service +# patroni: +# dynamicConfiguration: +# postgresql: +# parameters: +# max_parallel_workers: 2 +# max_worker_processes: 2 +# shared_buffers: 1GB +# work_mem: 2MB diff --git a/odroid/postgres-operator-percona/handmatig/percona-pmm.yaml b/odroid/postgres-operator-percona/handmatig/percona-pmm.yaml new file mode 100755 index 0000000..edaadb6 --- /dev/null +++ b/odroid/postgres-operator-percona/handmatig/percona-pmm.yaml @@ -0,0 +1,122 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: percona-pmm-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/percona-pmm + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: percona-pmm-pvc +spec: + storageClassName: "" + volumeName: percona-pmm-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: percona-pmm + labels: + app: percona-pmm +spec: + replicas: 1 + selector: + matchLabels: + app: percona-pmm + template: + metadata: + labels: + app: percona-pmm + spec: + containers: + - name: percona-pmm + image: percona/pmm-server:2 + ports: + - containerPort: 443 + env: + - name: DISABLE_UPDATES #Disable automatic updates + value: 'true' + - name: DISABLE_TELEMETRY #Disable built-in telemetry and disable STT if telemetry is disabled + value: 'true' + - name: METRICS_RESOLUTION #High metrics resolution in seconds + value: 10s + - name: METRICS_RESOLUTION_HR #High metrics resolution (same as above) + value: 10s + - name: METRICS_RESOLUTION_MR #Medium metrics resolution in seconds + value: '100s' + - name: METRICS_RESOLUTION_LR #Low metrics resolution in seconds + value: '500s' + - name: DATA_RETENTION #How long to keep time-series data in ClickHouse. This variable accepts golang style duration format, example: 24h, 30m, 10s + value: '24h' + - name: ENABLE_VM_CACHE #Enable cache in VM + value: 'false' + - name: ENABLE_ALERTING #Enable integrated alerting + value: 'false' + - name: ENABLE_AZUREDISCOVER #Enable support for discovery of Azure databases + value: 'false' + - name: ENABLE_BACKUP_MANAGEMENT #Enable integrated backup tools + value: 'true' + - name: ENABLE_DBAAS #Enable DBaaS features + value: 'true' + - name: PMM_PUBLIC_ADDRESS #External IP address or the DNS name on which PMM server is running. + value: '' + - name: PMM_DEBUG #Enables a more verbose log level + value: '' + - name: PMM_TRACE + value: '' + volumeMounts: + - mountPath: /svr + name: percona-pmm + volumes: + - name: percona-pmm + persistentVolumeClaim: + claimName: percona-pmm-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: percona-pmm +spec: + selector: + app.kubernetes.io/name: percona-pmm + ports: + - protocol: TCP + port: 443 + targetPort: 443 + selector: + app: percona-pmm +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: percona-pmm-tls +spec: + entryPoints: + - websecure + routes: + - match: Host(`percona.alldcs.nl`) + kind: Rule + services: + - name: percona-pmm + port: 443 + tls: + certResolver: letsencrypt diff --git a/odroid/postgres-operator-percona/helm/cluster.yaml b/odroid/postgres-operator-percona/helm/cluster.yaml new file mode 100755 index 0000000..39d5bad --- /dev/null +++ b/odroid/postgres-operator-percona/helm/cluster.yaml @@ -0,0 +1,271 @@ +apiVersion: pgv2.percona.com/v2 +kind: PerconaPGCluster +metadata: + name: cluster1 +# finalizers: +# - percona.com/delete-pvc +# - percona.com/delete-ssl +spec: + crVersion: 2.3.0 +# secrets: +# customTLSSecret: +# name: cluster1-cert +# customReplicationTLSSecret: +# name: replication1-cert + +# standby: +# enabled: true +# host: "" +# port: "" +# repoName: repo1 + +# openshift: true + +# users: +# - name: rhino +# databases: +# - zoo +# options: "SUPERUSER" +# password: +# type: ASCII +# secretName: "rhino-credentials" + +# databaseInitSQL: +# key: init.sql +# name: cluster1-init-sql + +# pause: true +# unmanaged: true + +# dataSource: +# postgresCluster: +# clusterName: cluster1 +# repoName: repo1 +# options: +# - --type=time +# - --target="2021-06-09 14:15:11-04" +# pgbackrest: +# stanza: db +# configuration: +# - secret: +# name: pgo-s3-creds +# global: +# repo1-path: /pgbackrest/postgres-operator/hippo/repo1 +# repo: +# name: repo1 +# s3: +# bucket: "my-bucket" +# endpoint: "s3.ca-central-1.amazonaws.com" +# region: "ca-central-1" + + image: perconalab/percona-postgresql-operator:main-ppg15-postgres + imagePullPolicy: Always + postgresVersion: 15 + port: 5432 + + expose: + annotations: + my-annotation: percona-lb + labels: + my-label: percona-lb + type: LoadBalancer + + instances: + - name: instance1 + replicas: 3 +# resources: +# limits: +# cpu: 2.0 +# memory: 4Gi +# +# sidecars: +# - name: testcontainer +# image: mycontainer1:latest +# - name: testcontainer2 +# image: mycontainer1:latest +# +# topologySpreadConstraints: +# - maxSkew: 1 +# topologyKey: my-node-label +# whenUnsatisfiable: DoNotSchedule +# labelSelector: +# matchLabels: +# postgres-operator.crunchydata.com/instance-set: instance1 +# +# tolerations: +# - effect: NoSchedule +# key: role +# operator: Equal +# value: connection-poolers +# +# priorityClassName: high-priority +# +# walVolumeClaimSpec: +# accessModes: +# - "ReadWriteOnce" +# resources: +# requests: +# storage: 1Gi +# + dataVolumeClaimSpec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + + proxy: + pgBouncer: + replicas: 3 + image: perconalab/percona-postgresql-operator:main-ppg15-pgbouncer +# exposeSuperusers: true +# resources: +# limits: +# cpu: 200m +# memory: 128Mi +# +# expose: +# annotations: +# my-annotation: value1 +# labels: +# my-label: value2 +# type: LoadBalancer +# +# affinity: +# podAntiAffinity: +# preferredDuringSchedulingIgnoredDuringExecution: +# - weight: 1 +# podAffinityTerm: +# labelSelector: +# matchLabels: +# postgres-operator.crunchydata.com/cluster: keycloakdb +# postgres-operator.crunchydata.com/role: pgbouncer +# topologyKey: kubernetes.io/hostname +# +# tolerations: +# - effect: NoSchedule +# key: role +# operator: Equal +# value: connection-poolers +# +# topologySpreadConstraints: +# - maxSkew: 1 +# topologyKey: my-node-label +# whenUnsatisfiable: ScheduleAnyway +# labelSelector: +# matchLabels: +# postgres-operator.crunchydata.com/role: pgbouncer +# +# sidecars: +# - name: bouncertestcontainer1 +# image: mycontainer1:latest +# +# customTLSSecret: +# name: keycloakdb-pgbouncer.tls +# +# config: +# global: +# pool_mode: transaction + + backups: + pgbackrest: +# metadata: +# labels: + image: perconalab/percona-postgresql-operator:main-ppg15-pgbackrest +# configuration: +# - secret: +# name: cluster1-pgbackrest-secrets +# jobs: +# priorityClassName: high-priority +# resources: +# limits: +# cpu: 200m +# memory: 128Mi +# tolerations: +# - effect: NoSchedule +# key: role +# operator: Equal +# value: connection-poolers +# +# global: +# repo1-retention-full: "14" +# repo1-retention-full-type: time +# repo1-path: /pgbackrest/postgres-operator/cluster1/repo1 +# repo1-cipher-type: aes-256-cbc +# repo1-s3-uri-style: path +# repo2-path: /pgbackrest/postgres-operator/cluster1-multi-repo/repo2 +# repo3-path: /pgbackrest/postgres-operator/cluster1-multi-repo/repo3 +# repo4-path: /pgbackrest/postgres-operator/cluster1-multi-repo/repo4 +# repoHost: +# priorityClassName: high-priority +# +# topologySpreadConstraints: +# - maxSkew: 1 +# topologyKey: my-node-label +# whenUnsatisfiable: ScheduleAnyway +# labelSelector: +# matchLabels: +# postgres-operator.crunchydata.com/pgbackrest: "" +# affinity: +# podAntiAffinity: +# preferredDuringSchedulingIgnoredDuringExecution: +# - weight: 1 +# podAffinityTerm: +# labelSelector: +# matchLabels: +# postgres-operator.crunchydata.com/cluster: keycloakdb +# postgres-operator.crunchydata.com/role: pgbouncer +# topologyKey: kubernetes.io/hostname +# + manual: + repoName: repo1 + options: + - --type=full + repos: + - name: repo1 + schedules: + full: "0 0 * * 6" +# differential: "0 1 * * 1-6" + volume: + volumeClaimSpec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi +# - name: repo2 +# s3: +# bucket: "" +# endpoint: "" +# region: "" +# - name: repo3 +# gcs: +# bucket: "" +# - name: repo4 +# azure: +# container: "" +# +# restore: +# enabled: true +# repoName: repo1 +# options: +# PITR restore in place +# - --type=time +# - --target="2021-06-09 14:15:11-04" +# restore individual databases +# - --db-include=hippo + + pmm: + enabled: true + image: percona/pmm-client:2.37.0 +# imagePullPolicy: IfNotPresent + secret: cluster1-pmm-secret + serverHost: monitoring-service +# patroni: +# dynamicConfiguration: +# postgresql: +# parameters: +# max_parallel_workers: 2 +# max_worker_processes: 2 +# shared_buffers: 1GB +# work_mem: 2MB diff --git a/odroid/postgres-operator-percona/helm/get-password.sh b/odroid/postgres-operator-percona/helm/get-password.sh new file mode 100755 index 0000000..b359c46 --- /dev/null +++ b/odroid/postgres-operator-percona/helm/get-password.sh @@ -0,0 +1,2 @@ +echo user: $(microk8s kubectl get secret cluster1-pguser-cluster1 -o jsonpath="{.data.user}" | base64 -d) +echo password: $(microk8s kubectl get secret cluster1-pguser-cluster1 -o jsonpath="{.data.password}" | base64 -d) diff --git a/odroid/postgres-operator-percona/helm/pmm/ingressroute.yaml b/odroid/postgres-operator-percona/helm/pmm/ingressroute.yaml new file mode 100755 index 0000000..ab3edf7 --- /dev/null +++ b/odroid/postgres-operator-percona/helm/pmm/ingressroute.yaml @@ -0,0 +1,15 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: percona-pmm-tls +spec: + entryPoints: + - websecure + routes: + - match: Host(`percona.alldcs.nl`) + kind: Rule + services: + - name: percona-pmm + port: 443 + tls: + certResolver: letsencrypt diff --git a/odroid/postgres-operator-percona/helm/pmm/ingressrouteTCP.yaml b/odroid/postgres-operator-percona/helm/pmm/ingressrouteTCP.yaml new file mode 100755 index 0000000..70e7f83 --- /dev/null +++ b/odroid/postgres-operator-percona/helm/pmm/ingressrouteTCP.yaml @@ -0,0 +1,28 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: percona-route-tcp-tls +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`percona.alldcs.nl`) + services: + - name: percona-pmm + port: 443 + tls: + passthrough: true +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: percona-route-tcp-http +spec: + entryPoints: + - web + routes: + - match: HostSNI(`percona.alldcs.nl`) + services: + - name: percona-pmm + port: 80 + diff --git a/odroid/postgres-operator-percona/helm/pmm/secret.yaml b/odroid/postgres-operator-percona/helm/pmm/secret.yaml new file mode 100755 index 0000000..459e465 --- /dev/null +++ b/odroid/postgres-operator-percona/helm/pmm/secret.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: Secret +metadata: + name: pmm-secret + labels: + app.kubernetes.io/name: pmm +type: Opaque +data: +# base64 encoded password +# encode some password: `echo -n "admin" | base64` + PMM_ADMIN_PASSWORD: YWRtaW4= diff --git a/odroid/postgres-operator-percona/helm/pmm/values.yaml b/odroid/postgres-operator-percona/helm/pmm/values.yaml new file mode 100755 index 0000000..4276af4 --- /dev/null +++ b/odroid/postgres-operator-percona/helm/pmm/values.yaml @@ -0,0 +1,258 @@ +## @section Percona Monitoring and Management (PMM) parameters +## Default values for PMM. +## This is a YAML-formatted file. +## Declare variables to be passed into your templates. + +## PMM image version +## ref: https://hub.docker.com/r/percona/pmm-server/tags +## @param image.repository PMM image repository +## @param image.pullPolicy PMM image pull policy +## @param image.tag PMM image tag (immutable tags are recommended) +## @param image.imagePullSecrets Global Docker registry secret names as an array +## +image: + repository: percona/pmm-server + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "2.39.0" + imagePullSecrets: [] + +## PMM environment variables +## ref: https://docs.percona.com/percona-monitoring-and-management/setting-up/server/docker.html#environment-variables +## +pmmEnv: + ## @param pmmEnv.DISABLE_UPDATES Disables a periodic check for new PMM versions as well as ability to apply upgrades using the UI (need to be disabled in k8s environment as updates rolled with helm/container update) + ## + DISABLE_UPDATES: "1" +# ENABLE_DBAAS: "1" +# optional variables to integrate Grafana with internal iDP, see also secret part +# GF_AUTH_GENERIC_OAUTH_ENABLED: 'true' +# GF_AUTH_GENERIC_OAUTH_SCOPES: '' +# GF_AUTH_GENERIC_OAUTH_AUTH_URL: '' +# GF_AUTH_GENERIC_OAUTH_TOKEN_URL: '' +# GF_AUTH_GENERIC_OAUTH_API_URL: '' +# GF_AUTH_GENERIC_OAUTH_ALLOWED_DOMAINS: '' + +## @param pmmResources optional [Resources](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) requested for [PMM container](https://docs.percona.com/percona-monitoring-and-management/setting-up/server/index.html#set-up-pmm-server) + ## pmmResources: + ## requests: + ## memory: "32Gi" + ## cpu: "8" + ## limits: + ## memory: "64Gi" + ## cpu: "32" +pmmResources: {} + +## Readiness probe Config +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes +## @param readyProbeConf.initialDelaySeconds Number of seconds after the container has started before readiness probes is initiated +## @param readyProbeConf.periodSeconds How often (in seconds) to perform the probe +## @param readyProbeConf.failureThreshold When a probe fails, Kubernetes will try failureThreshold times before giving up +## +readyProbeConf: + initialDelaySeconds: 1 + periodSeconds: 5 + failureThreshold: 6 + +## @section PMM secrets +## +secret: + ## @param secret.name Defines the name of the k8s secret that holds passwords and other secrets + ## + name: pmm-secret + ## @param secret.create If true then secret will be generated by Helm chart. Otherwise it is expected to be created by user. + ## + create: true + ## @param secret.pmm_password Initial PMM password - it changes only on the first deployment, ignored if PMM was already provisioned and just restarted. If PMM admin password is not set, it will be generated. + ## E.g. + ## pmm_password: admin + ## + ## To get password execute `kubectl get secret pmm-secret -o jsonpath='{.data.PMM_ADMIN_PASSWORD}' | base64 --decode` + ## + pmm_password: "" + ## + # GF_AUTH_GENERIC_OAUTH_CLIENT_ID optional client ID to integrate Grafana with internal iDP, requires other env defined as well under pmmEnv + # GF_AUTH_GENERIC_OAUTH_CLIENT_ID: + # GF_AUTH_GENERIC_OAUTH_CLIENT_SECRET optional secret to integrate Grafana with internal iDP, requires other env defined as well under pmmEnv + # GF_AUTH_GENERIC_OAUTH_CLIENT_SECRET: + +## @param certs Optional certificates, if not provided PMM would use generated self-signed certificates, +## please provide your own signed ssl certificates like this: +## certs: + ## name: pmm-certs + ## files: + ## certificate.crt: + ## certificate.key: + ## ca-certs.pem: + ## dhparam.pem: +certs: {} + +## @section PMM network configuration +## Service configuration +## +service: + ## @param service.name Service name that is dns name monitoring services would send data to. `monitoring-service` used by default by pmm-client in Percona operators. + ## + name: percona-pmm + ## @param service.type Kubernetes Service type + ## + type: NodePort + + ## Ports 443 and/or 80 + ## + ports: + ## @param service.ports[0].port https port number + - port: 443 + ## @param service.ports[0].targetPort target port to map for statefulset and ingress + targetPort: https + ## @param service.ports[0].protocol protocol for https + protocol: TCP + ## @param service.ports[0].name port name + name: https + ## @param service.ports[1].port http port number + - port: 80 + ## @param service.ports[1].targetPort target port to map for statefulset and ingress + targetPort: http + ## @param service.ports[1].protocol protocol for http + protocol: TCP + ## @param service.ports[1].name port name + name: http + +## Ingress controller configuration +## +ingress: + ## @param ingress.enabled -- Enable ingress controller resource + enabled: false + ## @param ingress.nginxInc -- Using ingress controller from NGINX Inc + nginxInc: false + ## @param ingress.annotations -- Ingress annotations configuration + annotations: {} + ## kubernetes.io/ingress.class: nginx + ## kubernetes.io/tls-acme: "true" + ### nginx proxy to https + ## nginx.ingress.kubernetes.io/backend-protocol: "HTTPS" + ## @param ingress.community.annotations -- Ingress annotations configuration for community managed ingress (nginxInc = false) + community: + annotations: {} + ## kubernetes.io/ingress.class: nginx + ## kubernetes.io/tls-acme: "true" + ## @param ingress.ingressClassName -- Sets the ingress controller class name to use. + ingressClassName: "" + + ## Ingress resource hostnames and path mappings + hosts: + ## @param ingress.hosts[0].host hostname + - host: chart-example.local + ## @param ingress.hosts[0].paths path mapping + paths: [] + + ## @param ingress.pathType -- How ingress paths should be treated. + pathType: Prefix + + ## @param ingress.tls -- Ingress TLS configuration + tls: [] + ## - secretName: chart-example-tls + ## hosts: + ## - chart-example.local + +## @section PMM storage configuration +## Claiming storage for PMM using Persistent Volume Claims (PVC) +## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/ +## +storage: + ## @param storage.name name of PVC + name: pmm-storage + ## @param storage.storageClassName optional PMM data Persistent Volume Storage Class + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + storageClassName: "" + ## + ## @param storage.size size of storage [depends](https://docs.percona.com/percona-monitoring-and-management/setting-up/server/index.html#set-up-pmm-server) on number of monitored services and data retention + ## + size: 10Gi + ## + ## @param storage.dataSource VolumeSnapshot to start from + ## + dataSource: {} + ## name: before-vX.Y.Z-upgrade + ## kind: VolumeSnapshot + ## apiGroup: snapshot.storage.k8s.io + ## + ## @param storage.selector select existing PersistentVolume + ## + selector: {} + ## matchLabels: + ## release: "stable" + ## matchExpressions: + ## - key: environment + ## operator: In + ## values: + ## - dev + +## @section PMM kubernetes configurations +## @param nameOverride String to partially override common.names.fullname template with a string (will prepend the release name) +## +nameOverride: "" + +## @param extraLabels Labels to add to all deployed objects +## +extraLabels: {} + +## Pods Service Account +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ +## @param serviceAccount.create Specifies whether a ServiceAccount should be created +## @param serviceAccount.annotations Annotations for service account. Evaluated as a template. Only used if `create` is `true`. +## @param serviceAccount.name Name of the service account to use. If not set and create is true, a name is generated using the fullname template. +## +serviceAccount: + create: true + annotations: {} + name: "pmm-service-account" + +## @param podAnnotations Pod annotations +## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ +## +podAnnotations: {} + +## @param podSecurityContext Configure Pods Security Context +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod +## E.g +## podSecurityContext: + ## fsGroup: 2000 +## +podSecurityContext: {} + +## @param securityContext Configure Container Security Context +## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod +## securityContext.capabilities The capabilities to add/drop when running containers +## securityContext.runAsUser Set pmm containers' Security Context runAsUser +## securityContext.runAsNonRoot Set pmm container's Security Context runAsNonRoot +## E.g. +## securityContext: + ## capabilities: + ## drop: + ## - ALL + ## readOnlyRootFilesystem: true + ## runAsNonRoot: true + ## runAsUser: 1000 +securityContext: {} + + +## @param nodeSelector Node labels for pod assignment +## Ref: https://kubernetes.io/docs/user-guide/node-selection/ +## +nodeSelector: {} + +## @param tolerations Tolerations for pod assignment +## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ +## +tolerations: [] + +## @param affinity Affinity for pod assignment +## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity +## +affinity: {} diff --git a/odroid/postgres-operator-zalando/.golangci.yml b/odroid/postgres-operator-zalando/.golangci.yml new file mode 100755 index 0000000..4ffc191 --- /dev/null +++ b/odroid/postgres-operator-zalando/.golangci.yml @@ -0,0 +1,5 @@ +# https://github.com/golangci/golangci/wiki/Configuration + +service: + prepare: + - make deps diff --git a/odroid/postgres-operator-zalando/README.md b/odroid/postgres-operator-zalando/README.md new file mode 100755 index 0000000..79976cf --- /dev/null +++ b/odroid/postgres-operator-zalando/README.md @@ -0,0 +1,22 @@ +Installatie: +============ +helm repo add postgres-operator-charts https://opensource.zalando.com/postgres-operator/charts/postgres-operator +helm install postgres-operator postgres-operator-charts/postgres-operator + +helm repo add postgres-operator-ui-charts https://opensource.zalando.com/postgres-operator/charts/postgres-operator-ui +helm install postgres-operator-ui postgres-operator-ui-charts/postgres-operator-ui -f postgres-operator-values.yaml + +Password: +--------- + +echo "Password: $(kubectl -n default get secret \ +postgres.postgres-cluster-1.credentials.postgresql.acid.zalan.do -o \ +jsonpath="{.data.password}" | base64 -d)" + +External access: +---------------- + +exposen via loadbalancer! + +Let op bij installatie UI wel de postgres-operator-values.yaml meenemen i.v.m. URL! +b.v. appUrl: "http://pgzalando.alldcs.online:8081" diff --git a/odroid/postgres-operator-zalando/catalog-info.yaml b/odroid/postgres-operator-zalando/catalog-info.yaml new file mode 100644 index 0000000..ea613ff --- /dev/null +++ b/odroid/postgres-operator-zalando/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: odroid-postgres-operator-zalando + title: Postgres-operator-zalando (odroid) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/odroid/postgres-operator-zalando/get-password.sh b/odroid/postgres-operator-zalando/get-password.sh new file mode 100755 index 0000000..4f97976 --- /dev/null +++ b/odroid/postgres-operator-zalando/get-password.sh @@ -0,0 +1,2 @@ +echo User: $(microk8s kubectl get secret postgres.postgres-cluster-2.credentials.postgresql.acid.zalan.do -o jsonpath="{.data.username}" | base64 -d) +echo Password: $(microk8s kubectl get secret postgres.postgres-cluster-2.credentials.postgresql.acid.zalan.do -o jsonpath="{.data.password}" | base64 -d) diff --git a/odroid/postgres-operator-zalando/ingressroute-tls.yml b/odroid/postgres-operator-zalando/ingressroute-tls.yml new file mode 100755 index 0000000..8ce4a52 --- /dev/null +++ b/odroid/postgres-operator-zalando/ingressroute-tls.yml @@ -0,0 +1,15 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: postgres-operator-tls-alldcs +spec: + entryPoints: + - websecure + routes: + - match: Host(`pgzalando.alldcs.nl`) + kind: Rule + services: + - name: postgres-operator-ui + port: 8081 + tls: + certResolver: letsencrypt diff --git a/odroid/postgres-operator-zalando/install.sh b/odroid/postgres-operator-zalando/install.sh new file mode 100755 index 0000000..01dcb60 --- /dev/null +++ b/odroid/postgres-operator-zalando/install.sh @@ -0,0 +1,2 @@ +microk8s helm install postgres-operator postgres-operator-charts/postgres-operator +microk8s helm install postgres-operator-ui postgres-operator-ui-charts/postgres-operator-ui -f postgres-operator-ui-values.yaml diff --git a/odroid/postgres-operator-zalando/postgres-cluster-2-lb.yaml b/odroid/postgres-operator-zalando/postgres-cluster-2-lb.yaml new file mode 100755 index 0000000..0ee92eb --- /dev/null +++ b/odroid/postgres-operator-zalando/postgres-cluster-2-lb.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: Service +metadata: + name: postgres-cluster-2-lb + namespace: default +spec: + ports: + - port: 5432 + protocol: TCP + targetPort: 5432 + selector: +# app: postgres-cluster-1-0 + statefulset.kubernetes.io/pod-name: postgres-cluster-2-0 + type: LoadBalancer diff --git a/odroid/postgres-operator-zalando/postgres-cluster.yaml b/odroid/postgres-operator-zalando/postgres-cluster.yaml new file mode 100755 index 0000000..38e2b69 --- /dev/null +++ b/odroid/postgres-operator-zalando/postgres-cluster.yaml @@ -0,0 +1,30 @@ +kind: "postgresql" +apiVersion: "acid.zalan.do/v1" + +metadata: + name: "postgres-cluster" + namespace: "default" + labels: + team: acid + +spec: + teamId: "acid" + postgresql: + version: "15" + numberOfInstances: 3 + enableMasterLoadBalancer: true + enableLogicalBackup: true + volume: + size: "2Gi" + + + allowedSourceRanges: + # IP ranges to access your cluster go here + + resources: + requests: + cpu: 100m + memory: 100Mi + limits: + cpu: 500m + memory: 500Mi diff --git a/odroid/postgres-operator-zalando/postgres-operator-ui-lb.yaml b/odroid/postgres-operator-zalando/postgres-operator-ui-lb.yaml new file mode 100755 index 0000000..eb0db08 --- /dev/null +++ b/odroid/postgres-operator-zalando/postgres-operator-ui-lb.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: postgres-operator-ui-lb +spec: + ports: + - name: http + targetPort: 8081 + port: 8081 + selector: + app: postgres-operator-ui + type: LoadBalancer diff --git a/odroid/postgres-operator-zalando/postgres-operator-ui-np.yaml b/odroid/postgres-operator-zalando/postgres-operator-ui-np.yaml new file mode 100755 index 0000000..4b9aa2d --- /dev/null +++ b/odroid/postgres-operator-zalando/postgres-operator-ui-np.yaml @@ -0,0 +1,25 @@ +apiVersion: v1 +kind: Service +metadata: + annotations: + meta.helm.sh/release-name: postgres-operator-ui + meta.helm.sh/release-namespace: default + labels: + app.kubernetes.io/instance: postgres-operator-ui + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/name: postgres-operator-ui + helm.sh/chart: postgres-operator-ui-1.10.0 + name: postgres-operator-ui + namespace: default +spec: + ports: + - port: 8081 + protocol: TCP + targetPort: 8081 + selector: + app.kubernetes.io/instance: postgres-operator-ui + app.kubernetes.io/name: postgres-operator-ui + sessionAffinity: None + type: NodePort +status: + loadBalancer: {} diff --git a/odroid/postgres-operator-zalando/postgres-operator-ui-values.yaml b/odroid/postgres-operator-zalando/postgres-operator-ui-values.yaml new file mode 100755 index 0000000..d226df6 --- /dev/null +++ b/odroid/postgres-operator-zalando/postgres-operator-ui-values.yaml @@ -0,0 +1,110 @@ +# Default values for postgres-operator-ui. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +# configure ui image +image: + registry: registry.opensource.zalan.do + repository: acid/postgres-operator-ui + tag: v1.9.0 + pullPolicy: "IfNotPresent" + +# Optionally specify an array of imagePullSecrets. +# Secrets must be manually created in the namespace. +# ref: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod +# imagePullSecrets: +# - name: + +rbac: + # Specifies whether RBAC resources should be created + create: true + +serviceAccount: + # Specifies whether a ServiceAccount should be created + create: true + # The name of the ServiceAccount to use. + # If not set and create is true, a name is generated using the fullname template + name: + +# configure UI pod resources +resources: + limits: + cpu: 200m + memory: 200Mi + requests: + cpu: 100m + memory: 100Mi + +# configure UI ENVs +envs: + # IMPORTANT: While operator chart and UI chart are independent, this is the interface between + # UI and operator API. Insert the service name of the operator API here! + appUrl: "http://pgzalando.alldcs.online:8081" + operatorApiUrl: "http://postgres-operator:8080" + operatorClusterNameLabel: "cluster-name" + resourcesVisible: "False" + targetNamespace: "default" + teams: + - "acid" + +# Extra pod annotations +podAnnotations: + {} + +# configure extra UI ENVs +# Extra ENVs are writen in kubenertes format and added "as is" to the pod's env variables +# https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/ +# https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#environment-variables +# UI specific env variables can be found here: https://github.com/zalando/postgres-operator/blob/master/ui/operator_ui/main.py +extraEnvs: + [] + # Exemple of settings to make snapshot view working in the ui when using AWS + # - name: WALE_S3_ENDPOINT + # value: https+path://s3.us-east-1.amazonaws.com:443 + # - name: SPILO_S3_BACKUP_PREFIX + # value: spilo/ + # - name: AWS_ACCESS_KEY_ID + # valueFrom: + # secretKeyRef: + # name: + # key: AWS_ACCESS_KEY_ID + # - name: AWS_SECRET_ACCESS_KEY + # valueFrom: + # secretKeyRef: + # name: + # key: AWS_SECRET_ACCESS_KEY + # - name: AWS_DEFAULT_REGION + # valueFrom: + # secretKeyRef: + # name: + # key: AWS_DEFAULT_REGION + # - name: SPILO_S3_BACKUP_BUCKET + # value: + +# configure UI service +service: + type: "NodePort" + port: "8081" + # If the type of the service is NodePort a port can be specified using the nodePort field + # If the nodePort field is not specified, or if it has no value, then a random port is used + # nodePort: 32521 + annotations: + {} + +# configure UI ingress. If needed: "enabled: true" +ingress: + enabled: false + annotations: + {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + ingressClassName: "" + hosts: + - host: ui.example.org + paths: [""] + tls: [] + # - secretName: ui-tls + # hosts: + # - ui.exmaple.org diff --git a/odroid/postgres-operator-zalando/postgres-pv.yaml b/odroid/postgres-operator-zalando/postgres-pv.yaml new file mode 100755 index 0000000..adba68d --- /dev/null +++ b/odroid/postgres-operator-zalando/postgres-pv.yaml @@ -0,0 +1,33 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgres-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.50.101 + path: /nfs_share/postgres-operator-zalando + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres-pvc +spec: + storageClassName: "" + volumeName: postgres-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi + diff --git a/odroid/postgres-operator-zalando/raspberry/external-postgres-operator-ui.yaml b/odroid/postgres-operator-zalando/raspberry/external-postgres-operator-ui.yaml new file mode 100755 index 0000000..ebc4d83 --- /dev/null +++ b/odroid/postgres-operator-zalando/raspberry/external-postgres-operator-ui.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: Service +metadata: + name: external-postgres-operator-ui +spec: + ports: + - protocol: TCP + port: 80 + targetPort: 8081 +--- +apiVersion: v1 +kind: Endpoints +metadata: + name: external-postgres-operator-ui +subsets: + - addresses: + - ip: 192.168.80.81 + ports: + - port: 8081 diff --git a/odroid/postgres-operator-zalando/raspberry/ingressroute-http.yml b/odroid/postgres-operator-zalando/raspberry/ingressroute-http.yml new file mode 100755 index 0000000..d0bfeb2 --- /dev/null +++ b/odroid/postgres-operator-zalando/raspberry/ingressroute-http.yml @@ -0,0 +1,13 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: postgres-operator-ui-http-alldcs +spec: + entryPoints: + - web + routes: + - match: Host(`postgres-operator.alldcs.nl`) + kind: Rule + services: + - name: external-postgres-operator-ui + port: 80 diff --git a/odroid/postgres-operator-zalando/raspberry/ingressroute-tls.yml b/odroid/postgres-operator-zalando/raspberry/ingressroute-tls.yml new file mode 100755 index 0000000..72b7473 --- /dev/null +++ b/odroid/postgres-operator-zalando/raspberry/ingressroute-tls.yml @@ -0,0 +1,15 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: odroid-tls-alldcs +spec: + entryPoints: + - websecure + routes: + - match: Host(`odroid.alldcs.nl`) + kind: Rule + services: + - name: external-nginx + port: 80 + tls: + certResolver: letsencrypt diff --git a/odroid/redis/catalog-info.yaml b/odroid/redis/catalog-info.yaml new file mode 100644 index 0000000..039d9f0 --- /dev/null +++ b/odroid/redis/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: odroid-redis + title: Redis (odroid) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/odroid/redis/gui/ingressroute.yaml b/odroid/redis/gui/ingressroute.yaml new file mode 100755 index 0000000..4cadaee --- /dev/null +++ b/odroid/redis/gui/ingressroute.yaml @@ -0,0 +1,21 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: redis-alldcs-tls + namespace: redis +spec: + entryPoints: + - websecure + routes: + - match: Host(`redis-odroid.alldcs.nl`) + kind: Rule + services: + - name: redis-insight + port: 5540 + tls: + certResolver: letsencrypt + + + + + diff --git a/odroid/redis/gui/redis-insight.yaml b/odroid/redis/gui/redis-insight.yaml new file mode 100755 index 0000000..3091ae3 --- /dev/null +++ b/odroid/redis/gui/redis-insight.yaml @@ -0,0 +1,39 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: redis-insight + namespace: redis + labels: + app: redis-insight +spec: + replicas: 1 + selector: + matchLabels: + app: redis-insight + template: + metadata: + labels: + app: redis-insight + spec: + containers: + - name: redis-insight + image: redis/redisinsight + ports: + - containerPort: 5540 + env: +--- +apiVersion: v1 +kind: Service +metadata: + name: redis-insight + namespace: redis + labels: + name: redis-insight +spec: + type: ClusterIP + ports: + - port: 5540 + name: http + selector: + app: redis-insight + diff --git a/odroid/redis/redis.yaml b/odroid/redis/redis.yaml new file mode 100755 index 0000000..18b1020 --- /dev/null +++ b/odroid/redis/redis.yaml @@ -0,0 +1,210 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: redis-configuration + namespace: redis + labels: + app: redis +data: + master.conf: | + maxmemory 400mb + maxmemory-policy allkeys-lru + maxclients 20000 + timeout 300 + appendonly no + dbfilename dump.rdb + dir /data + slave.conf: | + replicaof redis-0.redis.default.svc.cluster.local 6379 + maxmemory 400mb + maxmemory-policy allkeys-lru + maxclients 20000 + timeout 300 + dir /data +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: redis + namespace: redis +spec: + serviceName: "redis" + replicas: 3 + selector: + matchLabels: + app: redis + template: + metadata: + labels: + app: redis + spec: + initContainers: + - name: init-redis + image: redis:latest + command: + - bash + - "-c" + - | + set -ex + # Generate redis server-id from pod ordinal index. + [[ `hostname` =~ -([0-9]+)$ ]] || exit 1 + ordinal=${BASH_REMATCH[1]} + # Copy appropriate redis config files from config-map to respective directories. + if [[ $ordinal -eq 0 ]]; then + cp /mnt/master.conf /etc/redis-config.conf + else + cp /mnt/slave.conf /etc/redis-config.conf + fi + volumeMounts: + - name: redis-pvc + mountPath: /etc + subPath: redis-claim + - name: config-map + mountPath: /mnt/ + containers: + - name: redis + image: redis:latest + ports: + - containerPort: 6379 + name: redis + command: + - redis-server + - "/etc/redis-config.conf" + volumeMounts: + - name: redis-pvc + mountPath: /data + subPath: redis-data + - name: redis-pvc + mountPath: /etc + subPath: redis-claim + volumes: + - name: config-map + configMap: + name: redis-configuration + volumeClaimTemplates: + - metadata: + name: redis-pvc + spec: + storageClassName: "" + accessModes: [ "ReadWriteMany" ] + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: Service +metadata: + name: redis + namespace: redis + labels: + app: redis +spec: + ports: + - port: 6379 + targetPort: redis + clusterIP: None + selector: + app: redis +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: redis-pv-0 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/redis-0 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: redis-pv-1 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/redis-1 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: redis-pv-2 +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/redis-2 + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: redis-pvc-redis-0 + namespace: redis +spec: + storageClassName: "" + volumeName: redis-pv-0 + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: redis-pvc-redis-1 + namespace: redis +spec: + storageClassName: "" + volumeName: redis-pv-1 + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: redis-pvc-redis-2 + namespace: redis +spec: + storageClassName: "" + volumeName: redis-pv-2 + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/odroid/traefik/README.md b/odroid/traefik/README.md new file mode 100755 index 0000000..fb0b3fa --- /dev/null +++ b/odroid/traefik/README.md @@ -0,0 +1,36 @@ +1) traefik installeren via helmchart: +helm repo add traefik https://helm.traefik.io/traefik +helm repo update +kubectl create namespace traefik + +2) persistent storage aanmaken: + +kubect apply -f traefik-pvc + +When enabling persistence for certificates, permissions on acme.json can be +lost when Traefik restarts. You can ensure correct permissions with an +initContainer. See https://github.com/traefik/traefik-helm-chart/blob/master/EXAMPLES.md#use-traefik-native-lets-encrypt-integration-without-cert-manager + +3) Installeren + +helm install traefik traefik/traefik -f values.yaml -n traefik + +CHECK OF PORTFORWARDING VAN POORT 80 en 443 OP DE ROUTER NAAR DE LOADBALANCER GOED STAAT! +HERSTART NA WIJZIGING DE KPN-ROUTER! + +4) TLS verzwaren (tlsoption.yml is afkomstig van whoami-voorbeeld) + +kubectl apply -f tlsoption.yaml + +7) Daschboard toegankelijk maken (dashboard.yaml is afkomstig van helm-documentatie van traefik zelf) + +kubectl apply -f ingressroute-dashboard.yaml - n traefik + +#migreren: + +kubectl apply -f https://raw.githubusercontent.com/traefik/traefik/v2.10/docs/content/reference/dynamic-configuration/kubernetes-crd-rbac.yml +kubectl apply -f https://raw.githubusercontent.com/traefik/traefik/v2.10/docs/content/reference/dynamic-configuration/kubernetes-crd-definition-v1.yml + + + + diff --git a/odroid/traefik/catalog-info.yaml b/odroid/traefik/catalog-info.yaml new file mode 100644 index 0000000..7329246 --- /dev/null +++ b/odroid/traefik/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: odroid-traefik + title: Traefik (odroid) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/odroid/traefik/clusterrole.yaml b/odroid/traefik/clusterrole.yaml new file mode 100644 index 0000000..b05dc5c --- /dev/null +++ b/odroid/traefik/clusterrole.yaml @@ -0,0 +1,11 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: traefik +rules: + - apiGroups: ["traefik.io"] + resources: ["ingressroutes", "ingressroutesstatus"] + verbs: ["get", "list", "watch", "create", "update", "delete"] + - apiGroups: [""] + resources: ["services", "endpoints", "pods", "secrets"] + verbs: ["get", "list", "watch"] diff --git a/odroid/traefik/clusterrolebinding.yaml b/odroid/traefik/clusterrolebinding.yaml new file mode 100644 index 0000000..25a61c9 --- /dev/null +++ b/odroid/traefik/clusterrolebinding.yaml @@ -0,0 +1,12 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: traefik-ingressroute +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: traefik +subjects: + - kind: ServiceAccount + name: traefik + namespace: traefik diff --git a/odroid/traefik/ingressroute-dashboard.yaml b/odroid/traefik/ingressroute-dashboard.yaml new file mode 100755 index 0000000..2b2462c --- /dev/null +++ b/odroid/traefik/ingressroute-dashboard.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: traefik-dashboard + namespace: traefik +spec: + entryPoints: + - websecure + routes: + - match: Host(`traefik-odroid.allarddcs.nl`) && (PathPrefix(`/dashboard`) || PathPrefix(`/api`)) + kind: Rule + services: + - name: api@internal + kind: TraefikService diff --git a/odroid/traefik/tlsoption.yaml b/odroid/traefik/tlsoption.yaml new file mode 100755 index 0000000..5a0c5b9 --- /dev/null +++ b/odroid/traefik/tlsoption.yaml @@ -0,0 +1,8 @@ +apiVersion: traefik.io/v1alpha1 +kind: TLSOption +metadata: + name: tsloption + namespace: traefik +spec: + minVersion: VersionTLS12 + diff --git a/odroid/traefik/traefik-pvc.yaml b/odroid/traefik/traefik-pvc.yaml new file mode 100644 index 0000000..aafca04 --- /dev/null +++ b/odroid/traefik/traefik-pvc.yaml @@ -0,0 +1,34 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: traefik-pv +spec: + storageClassName: "" + capacity: + storage: 128Mi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/traefik/odroid + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: traefik-pvc + namespace: traefik +spec: + storageClassName: "" + volumeName: traefik-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 128Mi + diff --git a/odroid/traefik/values.org b/odroid/traefik/values.org new file mode 100644 index 0000000..40e057c --- /dev/null +++ b/odroid/traefik/values.org @@ -0,0 +1,1130 @@ +# Default values for Traefik +# This is a YAML-formatted file. +# Declare variables to be passed into templates + +image: # @schema additionalProperties: false + # -- Traefik image host registry + registry: docker.io + # -- Traefik image repository + repository: traefik + # -- defaults to appVersion. It's used for version checking, even prefixed with experimental- or latest-. + # When a digest is required, `versionOverride` can be used to set the version. + tag: # @schema type:[string, null] + # -- Traefik image pull policy + pullPolicy: IfNotPresent + +# -- Add additional label to all resources +commonLabels: {} + +deployment: + # -- Enable deployment + enabled: true + # -- Deployment or DaemonSet + kind: Deployment + # -- Number of pods of the deployment (only applies when kind == Deployment) + replicas: 1 + # -- Number of old history to retain to allow rollback (If not set, default Kubernetes value is set to 10) + revisionHistoryLimit: # @schema type:[integer, null];minimum:0 + # -- Amount of time (in seconds) before Kubernetes will send the SIGKILL signal if Traefik does not shut down + terminationGracePeriodSeconds: 60 + # -- The minimum number of seconds Traefik needs to be up and running before the DaemonSet/Deployment controller considers it available + minReadySeconds: 0 + ## -- Override the liveness/readiness port. This is useful to integrate traefik + ## with an external Load Balancer that performs healthchecks. + ## Default: ports.traefik.port + healthchecksPort: # @schema type:[integer, null];minimum:0 + ## -- Override the liveness/readiness host. Useful for getting ping to respond on non-default entryPoint. + ## Default: ports.traefik.hostIP if set, otherwise Pod IP + healthchecksHost: "" + ## -- Override the liveness/readiness scheme. Useful for getting ping to + ## respond on websecure entryPoint. + healthchecksScheme: # @schema enum:[HTTP, HTTPS, null]; type:[string, null]; default: HTTP + ## -- Override the readiness path. + ## Default: /ping + readinessPath: "" + # -- Override the liveness path. + # Default: /ping + livenessPath: "" + # -- Additional deployment annotations (e.g. for jaeger-operator sidecar injection) + annotations: {} + # -- Additional deployment labels (e.g. for filtering deployment by custom labels) + labels: {} + # -- Additional pod annotations (e.g. for mesh injection or prometheus scraping) + # It supports templating. One can set it with values like traefik/name: '{{ template "traefik.name" . }}' + podAnnotations: {} + # -- Additional Pod labels (e.g. for filtering Pod by custom labels) + podLabels: {} + # -- Additional containers (e.g. for metric offloading sidecars) + additionalContainers: [] + # https://docs.datadoghq.com/developers/dogstatsd/unix_socket/?tab=host + # - name: socat-proxy + # image: alpine/socat:1.0.5 + # args: ["-s", "-u", "udp-recv:8125", "unix-sendto:/socket/socket"] + # volumeMounts: + # - name: dsdsocket + # mountPath: /socket + # -- Additional volumes available for use with initContainers and additionalContainers + additionalVolumes: [] + # - name: dsdsocket + # hostPath: + # path: /var/run/statsd-exporter + # -- Additional initContainers (e.g. for setting file permission as shown below) + initContainers: [] + # The "volume-permissions" init container is required if you run into permission issues. + # Related issue: https://github.com/traefik/traefik-helm-chart/issues/396 + # - name: volume-permissions + # image: busybox:latest + # command: ["sh", "-c", "touch /data/acme.json; chmod -v 600 /data/acme.json"] + # volumeMounts: + # - name: data + # mountPath: /data + # -- Use process namespace sharing + shareProcessNamespace: false + # -- Custom pod DNS policy. Apply if `hostNetwork: true` + dnsPolicy: "" + # -- Custom pod [DNS config](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.30/#poddnsconfig-v1-core) + dnsConfig: {} + # -- Custom [host aliases](https://kubernetes.io/docs/tasks/network/customize-hosts-file-for-pods/) + hostAliases: [] + # -- Pull secret for fetching traefik container image + imagePullSecrets: [] + # -- Pod lifecycle actions + lifecycle: {} + # preStop: + # exec: + # command: ["/bin/sh", "-c", "sleep 40"] + # postStart: + # httpGet: + # path: /ping + # port: 8080 + # host: localhost + # scheme: HTTP + # -- Set a runtimeClassName on pod + runtimeClassName: "" + +# -- [Pod Disruption Budget](https://kubernetes.io/docs/reference/kubernetes-api/policy-resources/pod-disruption-budget-v1/) +podDisruptionBudget: # @schema additionalProperties: false + enabled: false + maxUnavailable: # @schema type:[string, integer, null];minimum:0 + minAvailable: # @schema type:[string, integer, null];minimum:0 + +# -- Create a default IngressClass for Traefik +ingressClass: # @schema additionalProperties: false + enabled: true + isDefaultClass: true + name: "" + +core: # @schema additionalProperties: false + # -- Can be used to use globally v2 router syntax. Deprecated since v3.4 /!\. + # See https://doc.traefik.io/traefik/v3.0/migration/v2-to-v3/#new-v3-syntax-notable-changes + defaultRuleSyntax: "" + +# Traefik experimental features +experimental: + # -- Defines whether all plugins must be loaded successfully for Traefik to start + abortOnPluginFailure: false + fastProxy: + # -- Enables the FastProxy implementation. + enabled: false + # -- Enable debug mode for the FastProxy implementation. + debug: false + kubernetesGateway: + # -- Enable traefik experimental GatewayClass CRD + enabled: false + # -- Enable traefik experimental plugins + plugins: {} + # demo: + # moduleName: github.com/traefik/plugindemo + # version: v0.2.1 + +gateway: + # -- When providers.kubernetesGateway.enabled, deploy a default gateway + enabled: true + # -- Set a custom name to gateway + name: "" + # -- By default, Gateway is created in the same `Namespace` than Traefik. + namespace: "" + # -- Additional gateway annotations (e.g. for cert-manager.io/issuer) + annotations: {} + # -- [Infrastructure](https://kubernetes.io/blog/2023/11/28/gateway-api-ga/#gateway-infrastructure-labels) + infrastructure: {} + # -- Define listeners + listeners: + web: + # -- Port is the network port. Multiple listeners may use the same port, subject to the Listener compatibility rules. + # The port must match a port declared in ports section. + port: 8000 + # -- Optional hostname. See [Hostname](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.Hostname) + hostname: "" + # Specify expected protocol on this listener. See [ProtocolType](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.ProtocolType) + protocol: HTTP + # -- Routes are restricted to namespace of the gateway [by default](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.FromNamespaces + namespacePolicy: # @schema type:[string, null] + # websecure listener is disabled by default because certificateRefs needs to be added, + # or you may specify TLS protocol with Passthrough mode and add "--providers.kubernetesGateway.experimentalChannel=true" in additionalArguments section. + # websecure: + # # -- Port is the network port. Multiple listeners may use the same port, subject to the Listener compatibility rules. + # # The port must match a port declared in ports section. + # port: 8443 + # # -- Optional hostname. See [Hostname](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.Hostname) + # hostname: + # # Specify expected protocol on this listener See [ProtocolType](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.ProtocolType) + # protocol: HTTPS + # # -- Routes are restricted to namespace of the gateway [by default](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.FromNamespaces) + # namespacePolicy: + # # -- Add certificates for TLS or HTTPS protocols. See [GatewayTLSConfig](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io%2fv1.GatewayTLSConfig) + # certificateRefs: + # # -- TLS behavior for the TLS session initiated by the client. See [TLSModeType](https://gateway-api.sigs.k8s.io/reference/spec/#gateway.networking.k8s.io/v1.TLSModeType). + # mode: + +gatewayClass: # @schema additionalProperties: false + # -- When providers.kubernetesGateway.enabled and gateway.enabled, deploy a default gatewayClass + enabled: true + # -- Set a custom name to GatewayClass + name: "" + # -- Additional gatewayClass labels (e.g. for filtering gateway objects by custom labels) + labels: {} + +# -- Only dashboard & healthcheck IngressRoute are supported. It's recommended to create workloads CR outside of this Chart. +ingressRoute: + dashboard: + # -- Create an IngressRoute for the dashboard + enabled: false + # -- Additional ingressRoute annotations (e.g. for kubernetes.io/ingress.class) + annotations: {} + # -- Additional ingressRoute labels (e.g. for filtering IngressRoute by custom labels) + labels: {} + # -- The router match rule used for the dashboard ingressRoute + matchRule: PathPrefix(`/dashboard`) || PathPrefix(`/api`) + # -- The internal service used for the dashboard ingressRoute + services: + - name: api@internal + kind: TraefikService + # -- Specify the allowed entrypoints to use for the dashboard ingress route, (e.g. traefik, web, websecure). + # By default, it's using traefik entrypoint, which is not exposed. + # /!\ Do not expose your dashboard without any protection over the internet /!\ + entryPoints: ["traefik"] + # -- Additional ingressRoute middlewares (e.g. for authentication) + middlewares: [] + # -- TLS options (e.g. secret containing certificate) + tls: {} + healthcheck: + # -- Create an IngressRoute for the healthcheck probe + enabled: false + # -- Additional ingressRoute annotations (e.g. for kubernetes.io/ingress.class) + annotations: {} + # -- Additional ingressRoute labels (e.g. for filtering IngressRoute by custom labels) + labels: {} + # -- The router match rule used for the healthcheck ingressRoute + matchRule: PathPrefix(`/ping`) + # -- The internal service used for the healthcheck ingressRoute + services: + - name: ping@internal + kind: TraefikService + # -- Specify the allowed entrypoints to use for the healthcheck ingress route, (e.g. traefik, web, websecure). + # By default, it's using traefik entrypoint, which is not exposed. + entryPoints: ["traefik"] + # -- Additional ingressRoute middlewares (e.g. for authentication) + middlewares: [] + # -- TLS options (e.g. secret containing certificate) + tls: {} + +updateStrategy: # @schema additionalProperties: false + # -- Customize updateStrategy of Deployment or DaemonSet + type: RollingUpdate + rollingUpdate: + maxUnavailable: 0 # @schema type:[integer, string, null] + maxSurge: 1 # @schema type:[integer, string, null] + +readinessProbe: # @schema additionalProperties: false + # -- The number of consecutive failures allowed before considering the probe as failed. + failureThreshold: 1 + # -- The number of seconds to wait before starting the first probe. + initialDelaySeconds: 2 + # -- The number of seconds to wait between consecutive probes. + periodSeconds: 10 + # -- The minimum consecutive successes required to consider the probe successful. + successThreshold: 1 + # -- The number of seconds to wait for a probe response before considering it as failed. + timeoutSeconds: 2 +livenessProbe: # @schema additionalProperties: false + # -- The number of consecutive failures allowed before considering the probe as failed. + failureThreshold: 3 + # -- The number of seconds to wait before starting the first probe. + initialDelaySeconds: 2 + # -- The number of seconds to wait between consecutive probes. + periodSeconds: 10 + # -- The minimum consecutive successes required to consider the probe successful. + successThreshold: 1 + # -- The number of seconds to wait for a probe response before considering it as failed. + timeoutSeconds: 2 + +# -- Define [Startup Probe](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#define-startup-probes) +startupProbe: {} + +providers: # @schema additionalProperties: false + kubernetesCRD: + # -- Load Kubernetes IngressRoute provider + enabled: true + # -- Allows IngressRoute to reference resources in namespace other than theirs + allowCrossNamespace: false + # -- Allows to reference ExternalName services in IngressRoute + allowExternalNameServices: false + # -- Allows to return 503 when there is no endpoints available + allowEmptyServices: true + # -- When the parameter is set, only resources containing an annotation with the same value are processed. Otherwise, resources missing the annotation, having an empty value, or the value traefik are processed. It will also set required annotation on Dashboard and Healthcheck IngressRoute when enabled. + ingressClass: "" + # labelSelector: environment=production,method=traefik + # -- Array of namespaces to watch. If left empty, Traefik watches all namespaces. . When using `rbac.namespaced`, it will watch helm release namespace and namespaces listed in this array. + namespaces: [] + # -- Defines whether to use Native Kubernetes load-balancing mode by default. + nativeLBByDefault: false + + kubernetesIngress: + # -- Load Kubernetes Ingress provider + enabled: true + # -- Allows to reference ExternalName services in Ingress + allowExternalNameServices: false + # -- Allows to return 503 when there is no endpoints available + allowEmptyServices: true + # -- When ingressClass is set, only Ingresses containing an annotation with the same value are processed. Otherwise, Ingresses missing the annotation, having an empty value, or the value traefik are processed. + ingressClass: # @schema type:[string, null] + # labelSelector: environment=production,method=traefik + # -- Array of namespaces to watch. If left empty, Traefik watches all namespaces. . When using `rbac.namespaced`, it will watch helm release namespace and namespaces listed in this array. + namespaces: [] + # IP used for Kubernetes Ingress endpoints + publishedService: + # -- Enable [publishedService](https://doc.traefik.io/traefik/providers/kubernetes-ingress/#publishedservice) + enabled: true + # -- Override path of Kubernetes Service used to copy status from. Format: namespace/servicename. + # Default to Service deployed with this Chart. + pathOverride: "" + # -- Defines whether to use Native Kubernetes load-balancing mode by default. + nativeLBByDefault: false + + kubernetesGateway: + # -- Enable Traefik Gateway provider for Gateway API + enabled: false + # -- Toggles support for the Experimental Channel resources (Gateway API release channels documentation). + # This option currently enables support for TCPRoute and TLSRoute. + experimentalChannel: false + # -- Array of namespaces to watch. If left empty, Traefik watches all namespaces. . When using `rbac.namespaced`, it will watch helm release namespace and namespaces listed in this array. + namespaces: [] + # -- A label selector can be defined to filter on specific GatewayClass objects only. + labelselector: "" + # -- Defines whether to use Native Kubernetes load-balancing mode by default. + nativeLBByDefault: false + statusAddress: + # -- This IP will get copied to the Gateway status.addresses, and currently only supports one IP value (IPv4 or IPv6). + ip: "" + # -- This Hostname will get copied to the Gateway status.addresses. + hostname: "" + # -- The Kubernetes service to copy status addresses from. When using third parties tools like External-DNS, this option can be used to copy the service loadbalancer.status (containing the service's endpoints IPs) to the gateways. Default to Service of this Chart. + service: + enabled: true + name: "" + namespace: "" + + file: + # -- Create a file provider + enabled: false + # -- Allows Traefik to automatically watch for file changes + watch: true + # -- File content (YAML format, go template supported) (see https://doc.traefik.io/traefik/providers/file/) + content: "" + +# -- Add volumes to the traefik pod. The volume name will be passed to tpl. +# This can be used to mount a cert pair or a configmap that holds a config.toml file. +# After the volume has been mounted, add the configs into traefik by using the `additionalArguments` list below, eg: +# `additionalArguments: +# - "--providers.file.filename=/config/dynamic.toml" +# - "--ping" +# - "--ping.entrypoint=web"` +volumes: [] +# - name: public-cert +# mountPath: "/certs" +# type: secret +# - name: '{{ printf "%s-configs" .Release.Name }}' +# mountPath: "/config" +# type: configMap + +# -- Additional volumeMounts to add to the Traefik container +additionalVolumeMounts: [] +# -- For instance when using a logshipper for access logs +# - name: traefik-logs +# mountPath: /var/log/traefik + +logs: + general: + # -- Set [logs format](https://doc.traefik.io/traefik/observability/logs/#format) + format: # @schema enum:["common", "json", null]; type:[string, null]; default: "common" + # By default, the level is set to INFO. + # -- Alternative logging levels are TRACE, DEBUG, INFO, WARN, ERROR, FATAL, and PANIC. + level: "INFO" # @schema enum:[TRACE,DEBUG,INFO,WARN,ERROR,FATAL,PANIC]; default: "INFO" + # -- To write the logs into a log file, use the filePath option. + filePath: "" + # -- When set to true and format is common, it disables the colorized output. + noColor: false + access: + # -- To enable access logs + enabled: false + # -- Set [access log format](https://doc.traefik.io/traefik/observability/access-logs/#format) + format: # @schema enum:["common", "json", null]; type:[string, null]; default: "common" + # filePath: "/var/log/traefik/access.log + # -- Set [bufferingSize](https://doc.traefik.io/traefik/observability/access-logs/#bufferingsize) + bufferingSize: # @schema type:[integer, null] + # -- Set [filtering](https://docs.traefik.io/observability/access-logs/#filtering) + filters: # @schema additionalProperties: false + # -- Set statusCodes, to limit the access logs to requests with a status codes in the specified range + statuscodes: "" + # -- Set retryAttempts, to keep the access logs when at least one retry has happened + retryattempts: false + # -- Set minDuration, to keep access logs when requests take longer than the specified duration + minduration: "" + # -- Enables accessLogs for internal resources. Default: false. + addInternals: false + fields: + general: + # -- Set default mode for fields.names + defaultmode: keep # @schema enum:[keep, drop, redact]; default: keep + # -- Names of the fields to limit. + names: {} + # -- [Limit logged fields or headers](https://doc.traefik.io/traefik/observability/access-logs/#limiting-the-fieldsincluding-headers) + headers: + # -- Set default mode for fields.headers + defaultmode: drop # @schema enum:[keep, drop, redact]; default: drop + names: {} + +metrics: + # -- Enable metrics for internal resources. Default: false + addInternals: false + + ## Prometheus is enabled by default. + ## It can be disabled by setting "prometheus: null" + prometheus: + # -- Entry point used to expose metrics. + entryPoint: metrics + # -- Enable metrics on entry points. Default: true + addEntryPointsLabels: # @schema type:[boolean, null] + # -- Enable metrics on routers. Default: false + addRoutersLabels: # @schema type:[boolean, null] + # -- Enable metrics on services. Default: true + addServicesLabels: # @schema type:[boolean, null] + # -- Buckets for latency metrics. Default="0.1,0.3,1.2,5.0" + buckets: "" + # -- When manualRouting is true, it disables the default internal router in + ## order to allow creating a custom router for prometheus@internal service. + manualRouting: false + # -- Add HTTP header labels to metrics. See EXAMPLES.md or upstream doc for usage. + headerLabels: {} # @schema type:[object, null] + service: + # -- Create a dedicated metrics service to use with ServiceMonitor + enabled: false + labels: {} + annotations: {} + # -- When set to true, it won't check if Prometheus Operator CRDs are deployed + disableAPICheck: # @schema type:[boolean, null] + serviceMonitor: + # -- Enable optional CR for Prometheus Operator. See EXAMPLES.md for more details. + enabled: false + metricRelabelings: [] + relabelings: [] + jobLabel: "" + interval: "" + honorLabels: false + scrapeTimeout: "" + honorTimestamps: false + enableHttp2: false + followRedirects: false + additionalLabels: {} + namespace: "" + namespaceSelector: {} + prometheusRule: + # -- Enable optional CR for Prometheus Operator. See EXAMPLES.md for more details. + enabled: false + additionalLabels: {} + namespace: "" + + # datadog: + # ## Address instructs exporter to send metrics to datadog-agent at this address. + # address: "127.0.0.1:8125" + # ## The interval used by the exporter to push metrics to datadog-agent. Default=10s + # # pushInterval: 30s + # ## The prefix to use for metrics collection. Default="traefik" + # # prefix: traefik + # ## Enable metrics on entry points. Default=true + # # addEntryPointsLabels: false + # ## Enable metrics on routers. Default=false + # # addRoutersLabels: true + # ## Enable metrics on services. Default=true + # # addServicesLabels: false + # influxdb2: + # ## Address instructs exporter to send metrics to influxdb v2 at this address. + # address: localhost:8086 + # ## Token with which to connect to InfluxDB v2. + # token: xxx + # ## Organisation where metrics will be stored. + # org: "" + # ## Bucket where metrics will be stored. + # bucket: "" + # ## The interval used by the exporter to push metrics to influxdb. Default=10s + # # pushInterval: 30s + # ## Additional labels (influxdb tags) on all metrics. + # # additionalLabels: + # # env: production + # # foo: bar + # ## Enable metrics on entry points. Default=true + # # addEntryPointsLabels: false + # ## Enable metrics on routers. Default=false + # # addRoutersLabels: true + # ## Enable metrics on services. Default=true + # # addServicesLabels: false + # statsd: + # ## Address instructs exporter to send metrics to statsd at this address. + # address: localhost:8125 + # ## The interval used by the exporter to push metrics to influxdb. Default=10s + # # pushInterval: 30s + # ## The prefix to use for metrics collection. Default="traefik" + # # prefix: traefik + # ## Enable metrics on entry points. Default=true + # # addEntryPointsLabels: false + # ## Enable metrics on routers. Default=false + # # addRoutersLabels: true + # ## Enable metrics on services. Default=true + # # addServicesLabels: false + otlp: + # -- Set to true in order to enable the OpenTelemetry metrics + enabled: false + # -- Enable metrics on entry points. Default: true + addEntryPointsLabels: # @schema type:[boolean, null] + # -- Enable metrics on routers. Default: false + addRoutersLabels: # @schema type:[boolean, null] + # -- Enable metrics on services. Default: true + addServicesLabels: # @schema type:[boolean, null] + # -- Explicit boundaries for Histogram data points. Default: [.005, .01, .025, .05, .1, .25, .5, 1, 2.5, 5, 10] + explicitBoundaries: [] + # -- Interval at which metrics are sent to the OpenTelemetry Collector. Default: 10s + pushInterval: "" + # -- Service name used in OTLP backend. Default: traefik. + serviceName: # @schema type:[string, null] + http: + # -- Set to true in order to send metrics to the OpenTelemetry Collector using HTTP. + enabled: false + # -- Format: ://:. Default: http://localhost:4318/v1/metrics + endpoint: "" + # -- Additional headers sent with metrics by the reporter to the OpenTelemetry Collector. + headers: {} + ## Defines the TLS configuration used by the reporter to send metrics to the OpenTelemetry Collector. + tls: + # -- The path to the certificate authority, it defaults to the system bundle. + ca: "" + # -- The path to the public certificate. When using this option, setting the key option is required. + cert: "" + # -- The path to the private key. When using this option, setting the cert option is required. + key: "" + # -- When set to true, the TLS connection accepts any certificate presented by the server regardless of the hostnames it covers. + insecureSkipVerify: # @schema type:[boolean, null] + grpc: + # -- Set to true in order to send metrics to the OpenTelemetry Collector using gRPC + enabled: false + # -- Format: ://:. Default: http://localhost:4318/v1/metrics + endpoint: "" + # -- Allows reporter to send metrics to the OpenTelemetry Collector without using a secured protocol. + insecure: false + ## Defines the TLS configuration used by the reporter to send metrics to the OpenTelemetry Collector. + tls: + # -- The path to the certificate authority, it defaults to the system bundle. + ca: "" + # -- The path to the public certificate. When using this option, setting the key option is required. + cert: "" + # -- The path to the private key. When using this option, setting the cert option is required. + key: "" + # -- When set to true, the TLS connection accepts any certificate presented by the server regardless of the hostnames it covers. + insecureSkipVerify: false + +## Tracing +# -- https://doc.traefik.io/traefik/observability/tracing/overview/ +tracing: # @schema additionalProperties: false + # -- Enables tracing for internal resources. Default: false. + addInternals: false + # -- Service name used in selected backend. Default: traefik. + serviceName: # @schema type:[string, null] + # -- Defines additional resource attributes to be sent to the collector. + resourceAttributes: {} + # -- Defines the list of request headers to add as attributes. It applies to client and server kind spans. + capturedRequestHeaders: [] + # -- Defines the list of response headers to add as attributes. It applies to client and server kind spans. + capturedResponseHeaders: [] + # -- By default, all query parameters are redacted. Defines the list of query parameters to not redact. + safeQueryParams: [] + # -- The proportion of requests to trace, specified between 0.0 and 1.0. Default: 1.0. + sampleRate: # @schema type:[number, null]; minimum:0; maximum:1 + otlp: + # -- See https://doc.traefik.io/traefik/v3.0/observability/tracing/opentelemetry/ + enabled: false + http: + # -- Set to true in order to send metrics to the OpenTelemetry Collector using HTTP. + enabled: false + # -- Format: ://:. Default: http://localhost:4318/v1/metrics + endpoint: "" + # -- Additional headers sent with metrics by the reporter to the OpenTelemetry Collector. + headers: {} + ## Defines the TLS configuration used by the reporter to send metrics to the OpenTelemetry Collector. + tls: + # -- The path to the certificate authority, it defaults to the system bundle. + ca: "" + # -- The path to the public certificate. When using this option, setting the key option is required. + cert: "" + # -- The path to the private key. When using this option, setting the cert option is required. + key: "" + # -- When set to true, the TLS connection accepts any certificate presented by the server regardless of the hostnames it covers. + insecureSkipVerify: false + grpc: + # -- Set to true in order to send metrics to the OpenTelemetry Collector using gRPC + enabled: false + # -- Format: ://:. Default: http://localhost:4318/v1/metrics + endpoint: "" + # -- Allows reporter to send metrics to the OpenTelemetry Collector without using a secured protocol. + insecure: false + ## Defines the TLS configuration used by the reporter to send metrics to the OpenTelemetry Collector. + tls: + # -- The path to the certificate authority, it defaults to the system bundle. + ca: "" + # -- The path to the public certificate. When using this option, setting the key option is required. + cert: "" + # -- The path to the private key. When using this option, setting the cert option is required. + key: "" + # -- When set to true, the TLS connection accepts any certificate presented by the server regardless of the hostnames it covers. + insecureSkipVerify: false + +global: # @schema additionalProperties: false + checkNewVersion: true + # -- Please take time to consider whether or not you wish to share anonymous data with us + # See https://doc.traefik.io/traefik/contributing/data-collection/ + sendAnonymousUsage: false + # -- Required for Azure Marketplace integration. + # See https://learn.microsoft.com/en-us/partner-center/marketplace-offers/azure-container-technical-assets-kubernetes?tabs=linux,linux2#update-the-helm-chart + azure: + # -- Enable specific values for Azure Marketplace + enabled: false + images: + proxy: + image: traefik + tag: latest + registry: docker.io/library + hub: + image: traefik-hub + tag: latest + registry: ghcr.io/traefik + +# -- Additional arguments to be passed at Traefik's binary +# See [CLI Reference](https://docs.traefik.io/reference/static-configuration/cli/) +# Use curly braces to pass values: `helm install --set="additionalArguments={--providers.kubernetesingress.ingressclass=traefik-internal,--log.level=DEBUG}"` +additionalArguments: [] +# - "--providers.kubernetesingress.ingressclass=traefik-internal" +# - "--log.level=DEBUG" + +# -- Additional Environment variables to be passed to Traefik's binary +# @default -- See _values.yaml_ +env: [] + +# -- Environment variables to be passed to Traefik's binary from configMaps or secrets +envFrom: [] + +ports: + traefik: + port: 8080 + # -- Use hostPort if set. + hostPort: # @schema type:[integer, null]; minimum:0 + # -- Use hostIP if set. If not set, Kubernetes will default to 0.0.0.0, which + # means it's listening on all your interfaces and all your IPs. You may want + # to set this value if you need traefik to listen on specific interface + # only. + hostIP: # @schema type:[string, null] + + # Defines whether the port is exposed if service.type is LoadBalancer or + # NodePort. + # + # -- You SHOULD NOT expose the traefik port on production deployments. + # If you want to access it from outside your cluster, + # use `kubectl port-forward` or create a secure ingress + expose: + default: false + # -- The exposed port for this service + exposedPort: 8080 + # -- The port protocol (TCP/UDP) + protocol: TCP + web: + ## -- Enable this entrypoint as a default entrypoint. When a service doesn't explicitly set an entrypoint it will only use this entrypoint. + # asDefault: true + port: 8000 + # hostPort: 8000 + # containerPort: 8000 + expose: + default: true + exposedPort: 80 + ## -- Different target traefik port on the cluster, useful for IP type LB + targetPort: # @schema type:[string, integer, null]; minimum:0 + # The port protocol (TCP/UDP) + protocol: TCP + # -- See [upstream documentation](https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport) + nodePort: # @schema type:[integer, null]; minimum:0 + redirections: + # -- Port Redirections + # Added in 2.2, one can make permanent redirects via entrypoints. + # Same sets of parameters: to, scheme, permanent and priority. + # https://docs.traefik.io/routing/entrypoints/#redirection + entryPoint: {} + forwardedHeaders: + # -- Trust forwarded headers information (X-Forwarded-*). + trustedIPs: [] + insecure: false + proxyProtocol: + # -- Enable the Proxy Protocol header parsing for the entry point + trustedIPs: [] + insecure: false + # -- Set transport settings for the entrypoint; see also + # https://doc.traefik.io/traefik/routing/entrypoints/#transport + transport: + respondingTimeouts: + readTimeout: # @schema type:[string, integer, null] + writeTimeout: # @schema type:[string, integer, null] + idleTimeout: # @schema type:[string, integer, null] + lifeCycle: + requestAcceptGraceTimeout: # @schema type:[string, integer, null] + graceTimeOut: # @schema type:[string, integer, null] + keepAliveMaxRequests: # @schema type:[integer, null]; minimum:0 + keepAliveMaxTime: # @schema type:[string, integer, null] + websecure: + ## -- Enable this entrypoint as a default entrypoint. When a service doesn't explicitly set an entrypoint it will only use this entrypoint. + # asDefault: true + port: 8443 + hostPort: # @schema type:[integer, null]; minimum:0 + containerPort: # @schema type:[integer, null]; minimum:0 + expose: + default: true + exposedPort: 443 + ## -- Different target traefik port on the cluster, useful for IP type LB + targetPort: # @schema type:[string, integer, null]; minimum:0 + ## -- The port protocol (TCP/UDP) + protocol: TCP + # -- See [upstream documentation](https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport) + nodePort: # @schema type:[integer, null]; minimum:0 + # -- See [upstream documentation](https://kubernetes.io/docs/concepts/services-networking/service/#application-protocol) + appProtocol: # @schema type:[string, null] + # -- See [upstream documentation](https://doc.traefik.io/traefik/routing/entrypoints/#allowacmebypass) + allowACMEByPass: false + http3: + ## -- Enable HTTP/3 on the entrypoint + ## Enabling it will also enable http3 experimental feature + ## https://doc.traefik.io/traefik/routing/entrypoints/#http3 + ## There are known limitations when trying to listen on same ports for + ## TCP & UDP (Http3). There is a workaround in this chart using dual Service. + ## https://github.com/kubernetes/kubernetes/issues/47249#issuecomment-587960741 + enabled: false + advertisedPort: # @schema type:[integer, null]; minimum:0 + forwardedHeaders: + # -- Trust forwarded headers information (X-Forwarded-*). + trustedIPs: [] + insecure: false + proxyProtocol: + # -- Enable the Proxy Protocol header parsing for the entry point + trustedIPs: [] + insecure: false + # -- See [upstream documentation](https://doc.traefik.io/traefik/routing/entrypoints/#transport) + transport: + respondingTimeouts: + readTimeout: # @schema type:[string, integer, null] + writeTimeout: # @schema type:[string, integer, null] + idleTimeout: # @schema type:[string, integer, null] + lifeCycle: + requestAcceptGraceTimeout: # @schema type:[string, integer, null] + graceTimeOut: # @schema type:[string, integer, null] + keepAliveMaxRequests: # @schema type:[integer, null]; minimum:0 + keepAliveMaxTime: # @schema type:[string, integer, null] + # -- See [upstream documentation](https://doc.traefik.io/traefik/routing/entrypoints/#tls) + tls: + enabled: true + options: "" + certResolver: "" + domains: [] + # -- One can apply Middlewares on an entrypoint + # https://doc.traefik.io/traefik/middlewares/overview/ + # https://doc.traefik.io/traefik/routing/entrypoints/#middlewares + # -- /!\ It introduces here a link between your static configuration and your dynamic configuration /!\ + # It follows the provider naming convention: https://doc.traefik.io/traefik/providers/overview/#provider-namespace + # - namespace-name1@kubernetescrd + # - namespace-name2@kubernetescrd + middlewares: [] + metrics: + # -- When using hostNetwork, use another port to avoid conflict with node exporter: + # https://github.com/prometheus/prometheus/wiki/Default-port-allocations + port: 9100 + # -- You may not want to expose the metrics port on production deployments. + # If you want to access it from outside your cluster, + # use `kubectl port-forward` or create a secure ingress + expose: + default: false + # -- The exposed port for this service + exposedPort: 9100 + # -- The port protocol (TCP/UDP) + protocol: TCP + +# -- TLS Options are created as [TLSOption CRDs](https://doc.traefik.io/traefik/https/tls/#tls-options) +# When using `labelSelector`, you'll need to set labels on tlsOption accordingly. +# See EXAMPLE.md for details. +tlsOptions: {} + +# -- TLS Store are created as [TLSStore CRDs](https://doc.traefik.io/traefik/https/tls/#default-certificate). This is useful if you want to set a default certificate. See EXAMPLE.md for details. +tlsStore: {} + +service: + enabled: true + ## -- Single service is using `MixedProtocolLBService` feature gate. + ## -- When set to false, it will create two Service, one for TCP and one for UDP. + single: true + type: LoadBalancer + # -- Additional annotations applied to both TCP and UDP services (e.g. for cloud provider specific config) + annotations: {} + # -- Additional annotations for TCP service only + annotationsTCP: {} + # -- Additional annotations for UDP service only + annotationsUDP: {} + # -- Additional service labels (e.g. for filtering Service by custom labels) + labels: {} + # -- Additional entries here will be added to the service spec. + # -- Cannot contain type, selector or ports entries. + spec: {} + # externalTrafficPolicy: Cluster + # loadBalancerIP: "1.2.3.4" + # clusterIP: "2.3.4.5" + loadBalancerSourceRanges: [] + # - 192.168.0.1/32 + # - 172.16.0.0/16 + ## -- Class of the load balancer implementation + # loadBalancerClass: service.k8s.aws/nlb + externalIPs: [] + # - 1.2.3.4 + ## One of SingleStack, PreferDualStack, or RequireDualStack. + # ipFamilyPolicy: SingleStack + ## List of IP families (e.g. IPv4 and/or IPv6). + ## ref: https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services + # ipFamilies: + # - IPv4 + # - IPv6 + ## + additionalServices: {} + ## -- An additional and optional internal Service. + ## Same parameters as external Service + # internal: + # type: ClusterIP + # # labels: {} + # # annotations: {} + # # spec: {} + # # loadBalancerSourceRanges: [] + # # externalIPs: [] + # # ipFamilies: [ "IPv4","IPv6" ] + +autoscaling: + # -- Create HorizontalPodAutoscaler object. + # See EXAMPLES.md for more details. + enabled: false + +persistence: + # -- Enable persistence using Persistent Volume Claims + # ref: http://kubernetes.io/docs/user-guide/persistent-volumes/. + # It can be used to store TLS certificates along with `certificatesResolvers..acme.storage` option + enabled: false + name: data + existingClaim: "" + accessMode: ReadWriteOnce + size: 128Mi + storageClass: "" + volumeName: "" + path: /data + annotations: {} + # -- Only mount a subpath of the Volume into the pod + subPath: "" + +# -- Certificates resolvers configuration. +# Ref: https://doc.traefik.io/traefik/https/acme/#certificate-resolvers +# See EXAMPLES.md for more details. +certificatesResolvers: {} + +# -- If hostNetwork is true, runs traefik in the host network namespace +# To prevent unschedulable pods due to port collisions, if hostNetwork=true +# and replicas>1, a pod anti-affinity is recommended and will be set if the +# affinity is left as default. +hostNetwork: false + +# -- Whether Role Based Access Control objects like roles and rolebindings should be created +rbac: # @schema additionalProperties: false + enabled: true + # When set to true: + # 1. It switches respectively the use of `ClusterRole` and `ClusterRoleBinding` to `Role` and `RoleBinding`. + # 2. It adds `disableIngressClassLookup` on Kubernetes Ingress with Traefik Proxy v3 until v3.1.4 + # 3. It adds `disableClusterScopeResources` on Ingress and CRD (Kubernetes) providers with Traefik Proxy v3.1.2+ + # **NOTE**: `IngressClass`, `NodePortLB` and **Gateway** provider cannot be used with namespaced RBAC. + # See [upstream documentation](https://doc.traefik.io/traefik/providers/kubernetes-ingress/#disableclusterscoperesources) for more details. + namespaced: false + # Enable user-facing roles + # https://kubernetes.io/docs/reference/access-authn-authz/rbac/#user-facing-roles + aggregateTo: [] + # List of Kubernetes secrets that are accessible for Traefik. If empty, then access is granted to every secret. + secretResourceNames: [] + +# -- Enable to create a PodSecurityPolicy and assign it to the Service Account via RoleBinding or ClusterRoleBinding +podSecurityPolicy: + enabled: false + +# -- The service account the pods will use to interact with the Kubernetes API +serviceAccount: # @schema additionalProperties: false + # If set, an existing service account is used + # If not set, a service account is created automatically using the fullname template + name: "" + +# -- Additional serviceAccount annotations (e.g. for oidc authentication) +serviceAccountAnnotations: {} + +# -- [Resources](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) for `traefik` container. +resources: {} + +# -- This example pod anti-affinity forces the scheduler to put traefik pods +# -- on nodes where no other traefik pods are scheduled. +# It should be used when hostNetwork: true to prevent port conflicts +affinity: {} +# podAntiAffinity: +# requiredDuringSchedulingIgnoredDuringExecution: +# - labelSelector: +# matchLabels: +# app.kubernetes.io/name: '{{ template "traefik.name" . }}' +# app.kubernetes.io/instance: '{{ .Release.Name }}-{{ include "traefik.namespace" . }}' +# topologyKey: kubernetes.io/hostname + +# -- nodeSelector is the simplest recommended form of node selection constraint. +nodeSelector: {} +# -- Tolerations allow the scheduler to schedule pods with matching taints. +tolerations: [] +# -- You can use topology spread constraints to control +# how Pods are spread across your cluster among failure-domains. +topologySpreadConstraints: [] +# This example topologySpreadConstraints forces the scheduler to put traefik pods +# on nodes where no other traefik pods are scheduled. +# - labelSelector: +# matchLabels: +# app.kubernetes.io/name: '{{ template "traefik.name" . }}' +# maxSkew: 1 +# topologyKey: kubernetes.io/hostname +# whenUnsatisfiable: DoNotSchedule + +# -- [Pod Priority and Preemption](https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/) +priorityClassName: "" + +# -- [SecurityContext](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#security-context-1) +# @default -- See _values.yaml_ +securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: [ALL] + readOnlyRootFilesystem: true + +# -- [Pod Security Context](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#security-context) +# @default -- See _values.yaml_ +podSecurityContext: + runAsGroup: 65532 + runAsNonRoot: true + runAsUser: 65532 + +# +# -- Extra objects to deploy (value evaluated as a template) +# +# In some cases, it can avoid the need for additional, extended or adhoc deployments. +# See #595 for more details and traefik/tests/values/extra.yaml for example. +extraObjects: [] + +# -- This field override the default Release Namespace for Helm. +# It will not affect optional CRDs such as `ServiceMonitor` and `PrometheusRules` +namespaceOverride: "" + +# -- This field override the default app.kubernetes.io/instance label for all Objects. +instanceLabelOverride: "" + +# -- This field override the default version extracted from image.tag +versionOverride: "" + +# Traefik Hub configuration. See https://doc.traefik.io/traefik-hub/ +hub: + # -- Name of `Secret` with key 'token' set to a valid license token. + # It enables API Gateway. + token: "" + # -- Disables all external network connections. + offline: false + # -- By default, Traefik Hub provider watches all namespaces. When using `rbac.namespaced`, it will watch helm release namespace and namespaces listed in this array. + namespaces: [] # @schema required:true + apimanagement: + # -- Set to true in order to enable API Management. Requires a valid license token. + enabled: false + admission: + # -- WebHook admission server listen address. Default: "0.0.0.0:9943". + listenAddr: "" + # -- Certificate name of the WebHook admission server. Default: "hub-agent-cert". + secretName: "hub-agent-cert" + # -- Set custom certificate for the WebHook admission server. The certificate should be specified with _tls.crt_ and _tls.key_ in base64 encoding. + customWebhookCertificate: {} + # -- Set it to false if you need to disable Traefik Hub pod restart when mutating webhook certificate is updated. It's done with a label update. + restartOnCertificateChange: true + openApi: + # -- When set to true, it will only accept paths and methods that are explicitly defined in its OpenAPI specification + validateRequestMethodAndPath: false + + experimental: + # -- Set to true in order to enable AI Gateway. Requires a valid license token. + aigateway: false + providers: + consulCatalogEnterprise: + # -- Enable Consul Catalog Enterprise backend with default settings. + enabled: false + # -- Use local agent caching for catalog reads. + cache: false + # -- Enable Consul Connect support. + connectAware: false + # -- Consider every service as Connect capable by default. + connectByDefault: false + # -- Constraints is an expression that Traefik matches against the container's labels + constraints: "" + # -- Default rule. + defaultRule: "Host(`{{ normalize .Name }}`)" + endpoint: + # -- The address of the Consul server + address: "" + # -- Data center to use. If not provided, the default agent data center is used + datacenter: "" + # -- WaitTime limits how long a Watch will block. If not provided, the agent default + endpointWaitTime: 0 + httpauth: + # -- Basic Auth password + password: "" + # -- Basic Auth username + username: "" + # -- The URI scheme for the Consul server + scheme: "" + tls: + # -- TLS CA + ca: "" + # -- TLS cert + cert: "" + # -- TLS insecure skip verify + insecureSkipVerify: false + # -- TLS key + key: "" + # -- Token is used to provide a per-request ACL token which overrides the agent's + token: "" + # -- Expose containers by default. + exposedByDefault: true + # -- Sets the namespaces used to discover services (Consul Enterprise only). + namespaces: "" + # -- Sets the partition used to discover services (Consul Enterprise only). + partition: "" + # -- Prefix for consul service tags. + prefix: "traefik" + # -- Interval for check Consul API. + refreshInterval: 15 + # -- Forces the read to be fully consistent. + requireConsistent: false + # -- Name of the Traefik service in Consul Catalog (needs to be registered via the + serviceName: "traefik" + # -- Use stale consistency for catalog reads. + stale: false + # -- A list of service health statuses to allow taking traffic. + strictChecks: "passing, warning" + # -- Watch Consul API events. + watch: false + microcks: + # -- Enable Microcks provider. + enabled: false + auth: + # -- Microcks API client ID. + clientId: "" + # -- Microcks API client secret. + clientSecret: "" + # -- Microcks API endpoint. + endpoint: "" + # -- Microcks API token. + token: "" + # -- Microcks API endpoint. + endpoint: "" + # -- Polling interval for Microcks API. + pollInterval: 30 + # -- Polling timeout for Microcks API. + pollTimeout: 5 + tls: + # -- TLS CA + ca: "" + # -- TLS cert + cert: "" + # -- TLS insecure skip verify + insecureSkipVerify: false + # -- TLS key + key: "" + redis: + # -- Enable Redis Cluster. Default: true. + cluster: # @schema type:[boolean, null] + # -- Database used to store information. Default: "0". + database: # @schema type:[string, null] + # -- Endpoints of the Redis instances to connect to. Default: "". + endpoints: "" + # -- The username to use when connecting to Redis endpoints. Default: "". + username: "" + # -- The password to use when connecting to Redis endpoints. Default: "". + password: "" + sentinel: + # -- Name of the set of main nodes to use for main selection. Required when using Sentinel. Default: "". + masterset: "" + # -- Username to use for sentinel authentication (can be different from endpoint username). Default: "". + username: "" + # -- Password to use for sentinel authentication (can be different from endpoint password). Default: "". + password: "" + # -- Timeout applied on connection with redis. Default: "0s". + timeout: "" + tls: + # -- Path to the certificate authority used for the secured connection. + ca: "" + # -- Path to the public certificate used for the secure connection. + cert: "" + # -- Path to the private key used for the secure connection. + key: "" + # -- When insecureSkipVerify is set to true, the TLS connection accepts any certificate presented by the server. Default: false. + insecureSkipVerify: false + # Enable export of errors logs to the platform. Default: true. + sendlogs: # @schema type:[boolean, null] + + tracing: + # -- Tracing headers to duplicate. + # To configure the following, tracing.otlp.enabled needs to be set to true. + additionalTraceHeaders: + enabled: false + traceContext: + # -- Name of the header that will contain the parent-id header copy. + parentId: "" + # -- Name of the header that will contain the trace-id copy. + traceId: "" + # -- Name of the header that will contain the traceparent copy. + traceParent: "" + # -- Name of the header that will contain the tracestate copy. + traceState: "" + +# -- Required for OCI Marketplace integration. +# See https://docs.public.content.oci.oraclecloud.com/en-us/iaas/Content/Marketplace/understanding-helm-charts.htm +oci_meta: + # -- Enable specific values for Oracle Cloud Infrastructure + enabled: false + # -- It needs to be an ocir repo + repo: traefik + images: + proxy: + image: traefik + tag: latest + hub: + image: traefik-hub + tag: latest + diff --git a/odroid/traefik/values.yaml b/odroid/traefik/values.yaml new file mode 100644 index 0000000..273809f --- /dev/null +++ b/odroid/traefik/values.yaml @@ -0,0 +1,229 @@ +USER-SUPPLIED VALUES: +additionalArguments: [] +additionalVolumeMounts: [] +affinity: {} +autoscaling: + enabled: false +certificatesResolvers: + letsencrypt: + acme: + email: admin@allarddcs.nl + storage: /data/acme.json + httpChallenge: + entryPoint: web +commonLabels: {} +core: + defaultRuleSyntax: v2 +deployment: + additionalContainers: [] + additionalVolumes: [] + annotations: {} + dnsConfig: {} + enabled: true + imagePullSecrets: [] + initContainers: + - name: volume-permissions + image: busybox:latest + command: ["sh", "-c", "touch /data/acme.json; chmod -v 600 /data/acme.json"] + volumeMounts: + - mountPath: /data + name: data + kind: Deployment + labels: {} + lifecycle: {} + minReadySeconds: 0 + podAnnotations: {} + podLabels: {} + replicas: 1 + runtimeClassName: null + shareProcessNamespace: false + terminationGracePeriodSeconds: 60 +env: +envFrom: [] +experimental: + kubernetesGateway: + enabled: false + plugins: {} +extraObjects: [] +globalArguments: +- --global.checknewversion +- --global.sendanonymoususage +hostNetwork: false +image: + pullPolicy: Always + registry: docker.io + repository: traefik + tag: "" +ingressClass: + enabled: true + isDefaultClass: true +ingressRoute: + dashboard: + annotations: {} + enabled: true + entryPoints: + - traefik + labels: {} + matchRule: PathPrefix(`/dashboard`) || PathPrefix(`/api`) + middlewares: [] + tls: {} + healthcheck: + annotations: {} + enabled: true + entryPoints: + - traefik + labels: {} + matchRule: PathPrefix(`/ping`) + middlewares: [] + tls: {} +livenessProbe: + failureThreshold: 3 + initialDelaySeconds: 2 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 2 +logs: + access: + enabled: false + fields: + general: + defaultmode: keep + names: {} + headers: + defaultmode: drop + names: {} + filters: {} + general: + level: ERROR +#metrics: +# prometheus: +# entryPoint: metrics +nodeSelector: {} +persistence: + enabled: false + existingClaim: traefik-pvc + path: /data +podDisruptionBudget: + enabled: false +podSecurityContext: + fsGroupChangePolicy: OnRootMismatch + runAsGroup: 65532 + runAsNonRoot: true + runAsUser: 65532 +podSecurityPolicy: + enabled: false +ports: +# metrics: +# exposedPort: 9100 +# port: 9100 +# protocol: TCP + traefik: + expose: + default: true + exposedPort: 9000 + port: 9000 + protocol: TCP + web: + expose: + default: true + exposedPort: 80 + port: 8000 + protocol: TCP + allowACMEByPass: true + websecure: + respondingTimeouts: + readTimeout: 600 + expose: + default: true + exposedPort: 443 + http3: + enabled: false + middlewares: [] + port: 8443 + protocol: TCP + allowACMEByPass: true + tls: + certResolver: "" + domains: [] + enabled: true + options: "" + transport: + respondingTimeouts: + readTimeout: 0 # @schema type:[string, integer, null] + writeTimeout: 0 # @schema type:[string, integer, null] + idleTimeout: 0 # @schema type:[string, integer, null] + lifeCycle: + requestAcceptGraceTimeout: # @schema type:[string, integer, null] + graceTimeOut: # @schema type:[string, integer, null] + keepAliveMaxRequests: # @schema type:[integer, null]; minimum:0 + keepAliveMaxTime: # @schema type:[string, integer, null] +priorityClassName: "" +providers: + file: + content: "" + enabled: false + watch: true + kubernetesCRD: + allowCrossNamespace: false + allowEmptyServices: false + allowExternalNameServices: false + enabled: true + namespaces: [] + kubernetesIngress: + allowEmptyServices: false + allowExternalNameServices: false + disableIngressClassLookup: false + enabled: true + namespaces: [] + publishedService: + enabled: false +rbac: + enabled: true + namespaced: false + secretResourceNames: [] +readinessProbe: + failureThreshold: 1 + initialDelaySeconds: 2 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 2 +resources: + requests: + memory: "512Mi" + cpu: "500m" + limits: + memory: "1Gi" + cpu: "1" +securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + readOnlyRootFilesystem: true +service: + additionalServices: {} + annotations: {} + annotationsTCP: {} + annotationsUDP: {} + enabled: true + externalIPs: [] + labels: {} + loadBalancerSourceRanges: [] + single: true + spec: {} + type: LoadBalancer +serviceAccount: + name: "" +serviceAccountAnnotations: {} +startupProbe: null +tlsOptions: {} +tlsStore: {} +tolerations: [] +topologySpreadConstraints: [] +tracing: {} +updateStrategy: + rollingUpdate: + maxSurge: 1 + maxUnavailable: 0 + type: RollingUpdate +volumes: [] diff --git a/prod/README.md b/prod/README.md new file mode 100644 index 0000000..fd58af8 --- /dev/null +++ b/prod/README.md @@ -0,0 +1 @@ +Dit zijn alle services op het PROD-cluster: diff --git a/prod/bookstack/README.md b/prod/bookstack/README.md new file mode 100755 index 0000000..a72713d --- /dev/null +++ b/prod/bookstack/README.md @@ -0,0 +1,6 @@ +user: admin@dialdcs.com +password: Bookstack01@ + +user: allardkrings@gmail.com +password: Bookstack01@ + diff --git a/prod/bookstack/bookstack.yaml b/prod/bookstack/bookstack.yaml new file mode 100755 index 0000000..ae997f3 --- /dev/null +++ b/prod/bookstack/bookstack.yaml @@ -0,0 +1,111 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: bookstack + namespace: bookstack + labels: + app: bookstack +spec: + replicas: 1 + selector: + matchLabels: + app: bookstack + template: + metadata: + labels: + app: bookstack + spec: + containers: + - name: bookstack + image: linuxserver/bookstack + ports: + - containerPort: 80 + env: + - name: APP_URL + value: https://bookstack-prod.allarddcs.nl + - name: PUID + value: "1001" + - name: PGID + value: "986" + - name: DB_HOST + value: "mariadb.mariadb" + - name: DB_USER + value: "bookstack" + - name: DB_PASS + value: "bookstack" + - name: DB_DATABASE + value: "bookstack" + volumeMounts: + - mountPath: "/config" + name: bookstackvolume + volumes: + - name: bookstackvolume + persistentVolumeClaim: + claimName: bookstack-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: bookstack + namespace: bookstack + labels: + app: bookstack +spec: + ports: + - port: 80 + protocol: TCP + selector: + app: bookstack + type: ClusterIP +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: bookstack-tls + namespace: bookstack +spec: + entryPoints: + - websecure + routes: + - match: Host(`bookstack-prod.allarddcs.nl`) + kind: Rule + services: + - name: bookstack + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: bookstack-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/bookstack + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: bookstack-pvc + namespace: bookstack +spec: + storageClassName: "" + volumeName: bookstack-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/prod/bookstack/catalog-info.yaml b/prod/bookstack/catalog-info.yaml new file mode 100644 index 0000000..4fa56b9 --- /dev/null +++ b/prod/bookstack/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-bookstack + title: Bookstack (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/bookstack/password b/prod/bookstack/password new file mode 100755 index 0000000..91a7b54 --- /dev/null +++ b/prod/bookstack/password @@ -0,0 +1 @@ +$2y$10$OjssYrHC0lDRCH.2/XQ6.OnAypqeG2hb6zZniqk7OxD2J3 diff --git a/prod/catalog-info.yaml b/prod/catalog-info.yaml new file mode 100644 index 0000000..d880b26 --- /dev/null +++ b/prod/catalog-info.yaml @@ -0,0 +1,36 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: PROD-cluster + namespace: default + description: deployments PROD-cluster + annotations: + backstage.io/techdocs-ref: dir:. + links: + - url: https://github.com/AllardKrings/kubernetes/dev/ + title: AllardDCS PROD-cluster + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + - ./postgres16/catalog-info.yaml + - ./mattermost/catalog-info.yaml + - ./nginx/catalog-info.yaml + - ./wordpress/catalog-info.yaml + - ./spreed/catalog-info.yaml + - ./traefik/catalog-info.yaml + - ./postgres14/catalog-info.yaml + - ./dnsutils/catalog-info.yaml + - ./nextcloud/catalog-info.yaml + - ./drupal/catalog-info.yaml + - ./bookstack/catalog-info.yaml + - ./mariadb/catalog-info.yaml + - ./kubernetes/catalog-info.yaml + - ./pgadmin/catalog-info.yaml + - ./nodejs/catalog-info.yaml + - ./matterbridge/catalog-info.yaml + - ./postgres13/catalog-info.yaml + - ./phpmyadmin/catalog-info.yaml + - ./xwiki/catalog-info.yaml diff --git a/prod/dnsutils/catalog-info.yaml b/prod/dnsutils/catalog-info.yaml new file mode 100644 index 0000000..79ed451 --- /dev/null +++ b/prod/dnsutils/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-dnsutils + title: Dnsutils (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/dnsutils/dnsutils.yaml b/prod/dnsutils/dnsutils.yaml new file mode 100755 index 0000000..ee6f6f7 --- /dev/null +++ b/prod/dnsutils/dnsutils.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: dnsutils +--- +apiVersion: v1 +kind: Pod +metadata: + name: dnsutils + namespace: dnsutils +spec: + containers: + - name: dnsutils + image: registry.k8s.io/e2e-test-images/jessie-dnsutils:1.3 + command: + - sleep + - "infinity" + imagePullPolicy: IfNotPresent + restartPolicy: Always diff --git a/prod/drupal/catalog-info.yaml b/prod/drupal/catalog-info.yaml new file mode 100644 index 0000000..9a4ada5 --- /dev/null +++ b/prod/drupal/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-drupal + title: Drupal (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/drupal/drupal.yaml b/prod/drupal/drupal.yaml new file mode 100644 index 0000000..ddeb654 --- /dev/null +++ b/prod/drupal/drupal.yaml @@ -0,0 +1,146 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: drupal + namespace: drupal + labels: + app: drupal +spec: + replicas: 1 + selector: + matchLabels: + app: drupal + template: + metadata: + labels: + app: drupal + spec: + initContainers: + - name: init-sites-volume + image: drupal + command: ['/bin/bash', '-c'] + args: ['chown www-data:www-data /var/www/html/sites -R'] + volumeMounts: + - name: drupal-data + mountPath: /var/www/html/sites + subPath: sites + containers: + - name: drupal + image: drupal:8.6 + imagePullPolicy: Always + env: + - name: ServerName + value: drupal-prod.alldcs.nl +# - name: GITEA__database__DB_TYPE +# value: mysql +# - name: GITEA__database__HOST +# value: mariadb.mariadb:3306 +# - name: GITEA__database__NAME +# value: gitea +# - name: GITEA__database__USER +# value: gitea +# - name: GITEA__database__PASSWD +# value: gitea + ports: + - containerPort: 80 + volumeMounts: + - name: drupal-data + mountPath: /var/www/html/modules + subPath: modules + - name: drupal-data + mountPath: /var/www/html/profiles + subPath: profiles + - name: drupal-data + mountPath: /var/www/html/themes + subPath: themes + - name: drupal-data + mountPath: /var/www/html/sites + subPath: sites + volumes: + - name: drupal-data + persistentVolumeClaim: + claimName: drupal-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: drupal + namespace: drupal + labels: + app: drupal +spec: + sessionAffinity: None + ports: + - protocol: TCP + port: 80 + selector: + app: drupal + type: LoadBalancer +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: drupal-tls + namespace: drupal +spec: + entryPoints: + - websecure + routes: + - match: Host(`drupal-prod.alldcs.nl`) + kind: Rule + services: + - name: drupal + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: drupal-http + namespace: drupal +spec: + entryPoints: + - web + routes: + - match: Host(`drupal-prod.alldcs.nl`) + kind: Rule + services: + - name: drupal + port: 80 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: drupal-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/drupal/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: drupal-pvc + namespace: drupal +spec: + storageClassName: "" + volumeName: drupal-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + diff --git a/prod/grafana/README.md b/prod/grafana/README.md new file mode 100755 index 0000000..1303d41 --- /dev/null +++ b/prod/grafana/README.md @@ -0,0 +1,3 @@ +1) enable microk8s built-in observability +2) apply ingressroute-tls (in namespace observability) +3) log in with password: prom-operator diff --git a/prod/grafana/ingressroute-tls.yaml b/prod/grafana/ingressroute-tls.yaml new file mode 100755 index 0000000..20a0087 --- /dev/null +++ b/prod/grafana/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: grafana-tls + namespace: observability +spec: + entryPoints: + - websecure + routes: + - match: Host(`grafana-prod.allarddcs.nl`) + kind: Rule + services: + - name: kube-prom-stack-grafana + port: 80 + tls: + certResolver: letsencrypt diff --git a/prod/grafana/ingressroute-tls2.yaml b/prod/grafana/ingressroute-tls2.yaml new file mode 100755 index 0000000..0086ff0 --- /dev/null +++ b/prod/grafana/ingressroute-tls2.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: grafana-tls-alldcs + namespace: observability +spec: + entryPoints: + - websecure + routes: + - match: Host(`grafana-prod.alldcs.nl`) + kind: Rule + services: + - name: kube-prom-stack-grafana + port: 80 + tls: + certResolver: letsencrypt diff --git a/prod/kubernetes/README.md b/prod/kubernetes/README.md new file mode 100755 index 0000000..ba0ab84 --- /dev/null +++ b/prod/kubernetes/README.md @@ -0,0 +1,17 @@ +3) microk8s enable dashboard +2) creer account: kubectl apply -f ServiceAccount.yaml +3) creeer clusterrolebinding: kubectl aply -f ClusterRoleBinding.yaml +4) creeer ingressroute: kubectl apply -f Ingressroute-tls.yaml +5) genereer token: +kubectl -n kube-system create token admin-user --duration=8544h + +Herinstallatie: + +na herinstallatie moet je de config opnieuw kopieren anders klopt het certificaat niet meer: + +sudo cp -i /var/snap/microk8s/current/credentials/client.config ${HOME}/.kube/config + +sudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/configsudo chown $(id -u):$(id -g) $HOME/.kube/config + + + diff --git a/prod/kubernetes/TIPS.md b/prod/kubernetes/TIPS.md new file mode 100755 index 0000000..60c6e00 --- /dev/null +++ b/prod/kubernetes/TIPS.md @@ -0,0 +1,38 @@ +#Als een pvc in de status "terminating" blijft hangen kan het volgende commando +#helpen: + +kubectl patch pvc {PVC_NAME} -p '{"metadata":{"finalizers":null}}' + +#Switchen van context: + +kubectl config set-context --current --namespace=tektontutorial + +#Als je bij uitvoeren van kubectl "connection refused " krijgt +#kunnen de volgende commando's helpen: + +sudo microk8s.refresh-certs --cert ca.crt +sudo microk8s.refresh-certs --cert server.crt + +aanpassen clusternaam: + +nano /var/snap/micrk8s/current/credentials/client.config + +Daarna certificaten opnieuw genereren: + +sudo microk8s.refresh-certs --cert ca.crt +sudo microk8s.refresh-certs --cert server.crt + +kubectl configuratie opnieuw genereren: + +microk8s.kubectl config view --raw > $HOME/.kube/config + +#metallb speaker permission errors + +sudo nano /etc/apparmor.d/cri-containerd.apparmor.d +network, +sudo apparmor_parser -r /etc/apparmor.d/cri-containerd.apparmor.d + +#volle schijf: + +sudo microk8s ctr images list -q | xargs -r sudo microk8s ctr images rm + diff --git a/prod/kubernetes/catalog-info.yaml b/prod/kubernetes/catalog-info.yaml new file mode 100644 index 0000000..4cd352f --- /dev/null +++ b/prod/kubernetes/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-kubernetes + title: Kubernetes (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/kubernetes/cluster-issuer.yaml b/prod/kubernetes/cluster-issuer.yaml new file mode 100755 index 0000000..4d2d314 --- /dev/null +++ b/prod/kubernetes/cluster-issuer.yaml @@ -0,0 +1,14 @@ +apiVersion: cert-manager.io/v1 +kind: ClusterIssuer +metadata: + name: letsencrypt +spec: + acme: + email: admin@allarddcs.nl + server: https://acme-v02.api.letsencrypt.org/directory + privateKeySecretRef: + name: letsencrypt-account-key + solvers: + - http01: + ingress: + class: traefik diff --git a/prod/kubernetes/clusterrolebinding.yaml b/prod/kubernetes/clusterrolebinding.yaml new file mode 100755 index 0000000..faa8927 --- /dev/null +++ b/prod/kubernetes/clusterrolebinding.yaml @@ -0,0 +1,12 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: admin-user +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: cluster-admin +subjects: +- kind: ServiceAccount + name: admin-user + namespace: kube-system diff --git a/prod/kubernetes/create-token.sh b/prod/kubernetes/create-token.sh new file mode 100755 index 0000000..95a7f2d --- /dev/null +++ b/prod/kubernetes/create-token.sh @@ -0,0 +1 @@ +microk8s kubectl -n kube-system create token admin-user --duration=8544h diff --git a/prod/kubernetes/ingressroute-dashboard.yaml b/prod/kubernetes/ingressroute-dashboard.yaml new file mode 100755 index 0000000..f9492cc --- /dev/null +++ b/prod/kubernetes/ingressroute-dashboard.yaml @@ -0,0 +1,30 @@ +apiVersion: traefik.io/v1alpha1 +kind: ServersTransport +metadata: + name: kubernetes-dashboard-transport + namespace: kube-system + +spec: + serverName: kubernetes-dashboard + insecureSkipVerify: true +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: kubernetes-dashboard-tls + namespace: kube-system +spec: + entryPoints: # [1] + - websecure + routes: # [2] + - kind: Rule + match: Host(`kubernetes-prod.allarddcs.nl`) # [3] + priority: 10 # [4] + services: # [8] + - kind: Service + name: kubernetes-dashboard + namespace: kube-system + port: 443 # [9] + serversTransport: kubernetes-dashboard-transport + tls: # [11] + certResolver: letsencrypt diff --git a/prod/kubernetes/ingressroute-tls-prod.yaml b/prod/kubernetes/ingressroute-tls-prod.yaml new file mode 100755 index 0000000..b4fb7b4 --- /dev/null +++ b/prod/kubernetes/ingressroute-tls-prod.yaml @@ -0,0 +1,31 @@ +apiVersion: traefik.io/v1alpha1 +kind: ServersTransport +metadata: + name: kubernetes-dashboard-transport + namespace: kube-system + +spec: + serverName: kubernetes-dashboard + insecureSkipVerify: true + +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: kubernetes-dashboard-tls + namespace: kube-system +spec: + entryPoints: # [1] + - websecure + routes: # [2] + - kind: Rule + match: Host(`kubernetes-prod.allarddcs.nl`) # [3] + priority: 10 # [4] + services: # [8] + - kind: Service + name: kubernetes-dashboard + namespace: kube-system + port: 443 # [9] + serversTransport: kubernetes-dashboard-transport + tls: # [11] + certResolver: letsencrypt diff --git a/prod/kubernetes/serviceaccount.yaml b/prod/kubernetes/serviceaccount.yaml new file mode 100755 index 0000000..27b6bb8 --- /dev/null +++ b/prod/kubernetes/serviceaccount.yaml @@ -0,0 +1,5 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: admin-user + namespace: kube-system diff --git a/prod/mariadb/catalog-info.yaml b/prod/mariadb/catalog-info.yaml new file mode 100644 index 0000000..95c51f7 --- /dev/null +++ b/prod/mariadb/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-mariadb + title: Mariadb (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/mariadb/create-secret.sh b/prod/mariadb/create-secret.sh new file mode 100755 index 0000000..0d6356e --- /dev/null +++ b/prod/mariadb/create-secret.sh @@ -0,0 +1 @@ +microk8s kubectl create secret generic mariadb-secret --from-file=username=./username.txt --from-file=password=./password.txt diff --git a/prod/mariadb/login.sh b/prod/mariadb/login.sh new file mode 100755 index 0000000..c79c168 --- /dev/null +++ b/prod/mariadb/login.sh @@ -0,0 +1 @@ +microk8s kubectl exec -it mariadb-sts-0 -- mariadb -uroot -psecret -n databases diff --git a/prod/mariadb/mariadb-prod.yaml b/prod/mariadb/mariadb-prod.yaml new file mode 100755 index 0000000..e025e01 --- /dev/null +++ b/prod/mariadb/mariadb-prod.yaml @@ -0,0 +1,81 @@ +apiVersion: v1 +kind: Service +metadata: + name: mariadb + namespace: mariadb + labels: + app: mariadb +spec: + ports: + - port: 3306 + name: mariadb-port + clusterIP: None + selector: + app: mariadb +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: mariadb-sts + namespace: mariadb +spec: + serviceName: "mariadb" + replicas: 1 + selector: + matchLabels: + app: mariadb + template: + metadata: + labels: + app: mariadb + spec: + containers: + - name: mariadb + image: mariadb:10.11.4 + ports: + - containerPort: 3306 + name: mariadb-port + env: + - name: MARIADB_ROOT_PASSWORD + value: "jamesbrown" + - name: innodb_force_recovery + value: "1" + volumeMounts: + - name: datadir + mountPath: /var/lib/mysql/ + volumes: + - name: datadir + persistentVolumeClaim: + claimName: mariadb-pvc +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: mariadb-pv + labels: + type: local +spec: + storageClassName: "" + capacity: + storage: 4Gi + accessModes: + - ReadWriteMany + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/mariadb/prod/ + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: mariadb-pvc + namespace: mariadb +spec: + storageClassName: "" + volumeName: mariadb-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 4Gi diff --git a/prod/mariadb/password.txt b/prod/mariadb/password.txt new file mode 100755 index 0000000..536aca3 --- /dev/null +++ b/prod/mariadb/password.txt @@ -0,0 +1 @@ +secret \ No newline at end of file diff --git a/prod/mariadb/username.txt b/prod/mariadb/username.txt new file mode 100755 index 0000000..93ca142 --- /dev/null +++ b/prod/mariadb/username.txt @@ -0,0 +1 @@ +root \ No newline at end of file diff --git a/prod/matterbridge/bot-account.txt b/prod/matterbridge/bot-account.txt new file mode 100644 index 0000000..63e0693 --- /dev/null +++ b/prod/matterbridge/bot-account.txt @@ -0,0 +1,3 @@ +user: matrix +password: Matrix01@ +key: xfxh83q14prftd61c4y4hiuw6w diff --git a/prod/matterbridge/catalog-info.yaml b/prod/matterbridge/catalog-info.yaml new file mode 100644 index 0000000..652ea4b --- /dev/null +++ b/prod/matterbridge/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-matterbridge + title: Matterbridge (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/matterbridge/logs.txt b/prod/matterbridge/logs.txt new file mode 100644 index 0000000..6350ffa --- /dev/null +++ b/prod/matterbridge/logs.txt @@ -0,0 +1,8 @@ +time="2025-02-28T11:15:19Z" level=info msg="Running version 1.26.1-dev c4157a4" prefix=main +time="2025-02-28T11:15:19Z" level=info msg="WARNING: THIS IS A DEVELOPMENT VERSION. Things may break." prefix=main +time="2025-02-28T11:15:19Z" level=info msg="Parsing gateway mygateway" prefix=router +time="2025-02-28T11:15:19Z" level=info msg="Starting bridge: matrix.my-matrix " prefix=router +time="2025-02-28T11:15:19Z" level=info msg="Connecting https://matrix-lp.allarddcs.nl" prefix=matrix +time="2025-02-28T11:15:20Z" level=info msg="Connection succeeded" prefix=matrix +time="2025-02-28T11:15:20Z" level=info msg="matrix.my-matrix: joining #mattermost (ID: #mattermostmatrix.my-matrix)" prefix=matrix +time="2025-02-28T11:15:20Z" level=fatal msg="Starting gateway failed: Bridge matrix.my-matrix failed to join channel: contents=[123 34 101 114 114 99 111 100 101 34 58 34 77 95 85 78 75 78 79 87 78 34 44 34 101 114 114 111 114 34 58 34 35 109 97 116 116 101 114 109 111 115 116 32 119 97 115 32 110 111 116 32 108 101 103 97 108 32 114 111 111 109 32 73 68 32 111 114 32 114 111 111 109 32 97 108 105 97 115 34 125] msg=Failed to POST JSON to /_matrix/client/r0/join/#mattermost code=400 wrapped=M_UNKNOWN: #mattermost was not legal room ID or room alias" prefix=main diff --git a/prod/matterbridge/matterbridge.yaml b/prod/matterbridge/matterbridge.yaml new file mode 100644 index 0000000..e7bcf6d --- /dev/null +++ b/prod/matterbridge/matterbridge.yaml @@ -0,0 +1,72 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: matterbridge + namespace: mattermost +spec: + replicas: 1 + selector: + matchLabels: + app: matterbridge + template: + metadata: + labels: + app: matterbridge + spec: + containers: + - name: matterbridge + image: 42wim/matterbridge:latest + volumeMounts: + - name: config-volume + mountPath: /etc/matterbridge + volumes: + - name: config-volume + configMap: + name: matterbridge-config +--- +apiVersion: v1 +kind: Service +metadata: + name: matterbridge + namespace: mattermost +spec: + selector: + app: matterbridge + ports: + - protocol: TCP + port: 80 + targetPort: 4242 +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: matterbridge-config + namespace: mattermost +data: + matterbridge.toml: | + [general] + RemoteNickFormat="{NICK}" + + [matrix] + [matrix.my-matrix] + Server="https://matrix-lp.allarddcs.nl" + Login="mattermost" + Password="Matrix01@" + RemoteNickFormat="{NICK}" + + [mattermost] + [mattermost.my-mattermost] + Server="mattermost-prod.allarddcs.nl" + Token="xfxh83q14prftd61c4y4hiuw6w" + Team="matrix" + RemoteNickFormat="{NICK}" + + [[gateway]] + name="mygateway" + enable=true + [[gateway.inout]] + account="matrix.my-matrix" + channel="!UDCHpOSdDiIbbhoBrb:matrix-lp.allarddcs.nl" + [[gateway.inout]] + account="mattermost.my-mattermost" + channel="matrix" diff --git a/prod/mattermost/README.md b/prod/mattermost/README.md new file mode 100755 index 0000000..6bba712 --- /dev/null +++ b/prod/mattermost/README.md @@ -0,0 +1,5 @@ +Nieuwe gebruikers toevoegen: + +- naar system console +- signup +- aanmelden aanzetten diff --git a/prod/mattermost/catalog-info.yaml b/prod/mattermost/catalog-info.yaml new file mode 100644 index 0000000..6414e04 --- /dev/null +++ b/prod/mattermost/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-mattermost + title: Mattermost (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/mattermost/mattermost.yaml b/prod/mattermost/mattermost.yaml new file mode 100755 index 0000000..f6ca211 --- /dev/null +++ b/prod/mattermost/mattermost.yaml @@ -0,0 +1,144 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: mattermost +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: mattermost + namespace: mattermost + labels: + app: mattermost +spec: + replicas: 1 + selector: + matchLabels: + app: mattermost + template: + metadata: + labels: + app: mattermost + spec: + containers: + - name: mattermost + image: allardkrings/mattermost + env: + - name: DB_PORT_NUMBER + value: "3306" + - name: MM_SQLSETTINGS_DRIVERNAME + value: "mysql" + - name: MM_SQLSETTINGS_DATASOURCE + value: "mattermost:mattermost@tcp(mariadb.mariadb.svc.cluster.local:3306)/mattermost?charset=utf8mb4,utf8&readTimeout=30s&writeTimeout=30s" + - name: MM_USERNAME + value: "mattermost" + - name: MM_PASSWORD + value: "mattermost" + - name: MM_DBNAME + value: "mattermost" + - name: DOMAIN + value: "mattermost-prod.allarddcs.nl" + - name: MM_SERVICESETTINGS_SITEURL + value: "https://mattermost-prod.allarddcs.nl" + - name: PMA_HOST + value: mariadb.mariadb.svc.cluster.local + - name: PMA_PORT + value: "3306" + - name: MYSQL_ROOT_PASSWORD + value: "zabbix" + - name: TZ + value: "UTZ" + volumeMounts: + - mountPath: /mattermost/config + name: mattermost + - mountPath: /mattermost/data + name: mattermost + - mountPath: /mattermost/logs + name: mattermost + - mountPath: /mattermost/plugins + name: mattermost + volumes: + - name: mattermost + persistentVolumeClaim: + claimName: mattermost-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: mattermost + namespace: mattermost +spec: + ports: + - name: http + targetPort: 8065 + port: 8065 + selector: + app: mattermost + type: NodePort +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: mattermost-http + namespace: mattermost +spec: + entryPoints: + - web + routes: + - match: Host(`mattermost-prod.allarddcs.nl`) + kind: Rule + services: + - name: mattermost + port: 8065 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: mattermost-tls + namespace: mattermost +spec: + entryPoints: + - websecure + routes: + - match: Host(`mattermost-prod.allarddcs.nl`) + kind: Rule + services: + - name: mattermost + port: 8065 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: mattermost-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/mattermost + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: mattermost-pvc + namespace: mattermost +spec: + storageClassName: "" + volumeName: mattermost-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/prod/nextcloud/README.md b/prod/nextcloud/README.md new file mode 100644 index 0000000..cf450dd --- /dev/null +++ b/prod/nextcloud/README.md @@ -0,0 +1,66 @@ +#Installeren: +1. zorg dat mariadb draait +2. kubectl apply -f + +#NATS +Neural Autonomic Transport System +| Feature | Role of NATS in Nextcloud | +| -------------------------- | ----------------------------------------- | +| Real-time events | Broadcast file/app events across services | +| Microservice messaging | Decouples internal communication | +| Push notifications | Enables scalable mobile/web push | +| Scaling WebSocket services | Helps distribute WebSocket load | +#SPREED +"Spread" + "Speed" +Spreed started as a standalone WebRTC project, originally developed by the German company struktur AG. +Struktur AG was later acquired by Nextcloud GmbH, and Spreed became tightly integrated with Nextcloud Talk. +| Feature | Role of Spreed | +| -------------------------- | ------------------------------------------------ | +| **Video & voice calls** | Handles WebRTC signaling for 1:1 and group calls | +| **Text chat** | Powers chat rooms, messages, mentions, etc. | +| **Screensharing** | Facilitates screen sharing over WebRTC | +| **TURN/STUN support** | Helps users connect through firewalls/NATs | +| **Signaling server** | Coordinates call setup between users | +| **Multiparty conferences** | Manages group call state and media routing | +The High-performance backend developed by our Partner Struktur AG available in their +GitHub organisation. +The High-performance backend itself consists of multiple modules, the most important ones +being a: +- signaling server and a +- WebRTC media gateway. + +Nextcloud Talk comes as an app within Nextcloud, but it needs +- Spreed (the WebRTC backend) and a +- TURN server for video and audio calls. The best practice is to set up Coturn for this. + +#TURN server: +This acts as a fallback for peer-to-peer connections if direct connection fails. +A TURN server is used to proxy the traffic from participants behind a firewall. +If individual participants cannot connect to others a TURN server is most likely required +Voor Matrix en Nextcloud gebruiken we coturn. coturn draait in cluster LattePanda en is door traefik exposed op poorten: + + - name: turn-udp +containerPort: 3478 +protocol: UDP + - name: turn-tcp +containerPort: 3478 +protocol: TCP + - name: turns-tcp +containerPort: 5349 +protocol: TCP + +#STUN server: +This is used to discover the public IP address of a client when it's behind a NAT (e.g., router). + +#Handige commando's: + +kubectl exec -n nextcloud -it deployment/nextcloud -- cat /var/www/html/config/config.php + +#Upgrade: +kubectl exec -it nextcloud-55b6c999bd-pzwxb -n nextcloud -- php /var/www/html/occ upgrade + +5-10-2025: upgrade naar 32.0.0 + + + + diff --git a/prod/nextcloud/catalog-info.yaml b/prod/nextcloud/catalog-info.yaml new file mode 100644 index 0000000..32200c1 --- /dev/null +++ b/prod/nextcloud/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-nextcloud + title: Nextcloud (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/nextcloud/logs b/prod/nextcloud/logs new file mode 100755 index 0000000..7fe65bd --- /dev/null +++ b/prod/nextcloud/logs @@ -0,0 +1,25 @@ +#!/bin/bash + +NAMESPACE="nextcloud" + +if [ "$#" -ne 1 ]; then + echo "Usage: $0 " + exit 1 +fi + +APP_NAME=$1 + +if [[ "$APP_NAME" != "nextcloud" && "$APP_NAME" != "spreed" ]]; then + echo "Error: Invalid argument. Use 'nextcloud' or 'spreed'." + exit 1 +fi + +POD_NAME=$(microk8s kubectl get pods -n $NAMESPACE -l app=$APP_NAME -o jsonpath='{.items[0].metadata.name}') + +if [ -z "$POD_NAME" ]; then + echo "Error: No pod found for app=$APP_NAME in namespace $NAMESPACE" + exit 1 +fi + +echo "Fetching logs for pod: $POD_NAME" +microk8s kubectl logs -n $NAMESPACE $POD_NAME diff --git a/prod/nextcloud/nats.yaml b/prod/nextcloud/nats.yaml new file mode 100644 index 0000000..0238d6f --- /dev/null +++ b/prod/nextcloud/nats.yaml @@ -0,0 +1,33 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nats + namespace: nextcloud +spec: + replicas: 1 + selector: + matchLabels: + app: nats + template: + metadata: + labels: + app: nats + spec: + containers: + - name: nats + image: nats:latest + ports: + - containerPort: 4222 +--- +apiVersion: v1 +kind: Service +metadata: + name: nats + namespace: nextcloud +spec: + selector: + app: nats + ports: + - name: client + port: 4222 + targetPort: 4222 diff --git a/prod/nextcloud/nextcloud-certificate/README.md b/prod/nextcloud/nextcloud-certificate/README.md new file mode 100644 index 0000000..89df109 --- /dev/null +++ b/prod/nextcloud/nextcloud-certificate/README.md @@ -0,0 +1,45 @@ +AANMAKEN CERTIFICAAT: + +Uitleg: + +omdat traefik de TLS interrupt doet moet Nextcloud Traefik vertrouwen. +Er komt immers alleen http verkeer bij Nextcloud binnen. +Verkeer van buiten moet echter wel weten dat het echt met Nextcloud praat. +Daarom werkt het Trafik default certificate ook niet. +Je moet dus een eigen certificaat aanmaken voor nextcloud-prod.allard.dcs. +Dit doe je in mijn geval via cert-manager die op zijn beurt de cert-issuer Letstencrypt gebruikt. In je route geef je dan ipv TLS Letsencrypt de naam van het secret op dat je certificaat bevat. Dus Traefik doet nog steeds de TLS-interrupt, +maar gebruikt daarbij het Nextcloud certificaat i.p.v. het default certificaat. + + +2.Maak certificaat aan: + +kubectl apply -f certificate.yaml + +3.Updaten route: + +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nextcloud + namespace: traefik +spec: + entryPoints: + - websecure + routes: + - match: Host(`nextcloud-prod.allarddcs.nl`) + kind: Rule + services: + - name: nextcloud + port: 80 + tls: + secretName: nextcloud-prod.allarddcs.nl + +4.herstarten traefik: + +kubectl rollout restart deployment traefik -n traefik + +5: checken certificaat issuer: + +openssl s_client -connect nextcloud-prod.allarddcs.nl:443 -servername nextcloud-prod.allarddcs.nl | openssl x509 -noout -text | grep "Issuer:" + +Dit mag nu niet meer TRAEFIK DEFAULT CERTIFICATE zijn. diff --git a/prod/nextcloud/nextcloud-certificate/certificate.yaml b/prod/nextcloud/nextcloud-certificate/certificate.yaml new file mode 100755 index 0000000..8ba4926 --- /dev/null +++ b/prod/nextcloud/nextcloud-certificate/certificate.yaml @@ -0,0 +1,16 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: nextcloud-prod.allarddcs.nl + namespace: nextcloud +spec: + dnsNames: + - nextcloud-prod.allarddcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: nextcloud-prod.allarddcs.nl + usages: + - digital signature + - key encipherment diff --git a/prod/nextcloud/nextcloud-certificate/check-sertificate.sh b/prod/nextcloud/nextcloud-certificate/check-sertificate.sh new file mode 100755 index 0000000..c319114 --- /dev/null +++ b/prod/nextcloud/nextcloud-certificate/check-sertificate.sh @@ -0,0 +1 @@ +openssl s_client -connect nextcloud-prod.allarddcs.nl:443 -servername nextcloud-prod.allarddcs.nl | openssl x509 -noout -text | grep "Issuer:" diff --git a/prod/nextcloud/nextcloud-certificate/nextcloud-selfsigned.crt b/prod/nextcloud/nextcloud-certificate/nextcloud-selfsigned.crt new file mode 100644 index 0000000..3137afc --- /dev/null +++ b/prod/nextcloud/nextcloud-certificate/nextcloud-selfsigned.crt @@ -0,0 +1,30 @@ +-----BEGIN CERTIFICATE----- +MIIFLTCCAxWgAwIBAgIUPO3LZvWoawNHGXyTzL706CRIeWEwDQYJKoZIhvcNAQEL +BQAwJjEkMCIGA1UEAwwbbmV4dGNsb3VkLXByb2QuYWxsYXJkZGNzLm5sMB4XDTI1 +MDIwNjA4MDMzNVoXDTI2MDIwNjA4MDMzNVowJjEkMCIGA1UEAwwbbmV4dGNsb3Vk +LXByb2QuYWxsYXJkZGNzLm5sMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKC +AgEAnN/IBA7l6Np7DV9olpGStpVyFc//o/78sp+rtHQB+U8ipqx3IB9gnMLhwPMb +WhUczE/3uAv4FXHmC1BHgC791fVFaG0EnTvnQ/lgQUA6YxWMqVD/DeXdOwpbvR8z +5i5ej/+R9NJU1Z+bHFs7qezyjt32woqU/AcbppIqSaotqOMg8VXa0JAWoDREGAvj +i2mrQuVjJtDCb3VtCsCy0QjrxFUuWkL1mlbMbu7eK7nNAayLT3EXnyL/aqk1ehlw +NBmhpHH8w5JgF7lhOzhb79JiiIu8TmvFiSkVJ+5b8Vshq2VbGIOVi9d9O5vzLYsO +96EGtC6je8MdrWrOscnVnlU6QBiCx0zIAUEcmZJGBM9EGObJ99tiGLyjyhAAT3yS +2AUpnRx1t0NSugT5/TDokfMWAfPrcvy7YL557V82Nj0GWlfJAKf9mFyCvqkLNDpr +2XUaecAkXFYXYYHh6CPOcGhxIvKeoWvxUVVucIQ4AEWstnRvpX9dxdWTmnIJ3mwI +f5BO/UqwuEhIMPOSHcK1f1WALGqySYRynVR3woMZe0d1fEqjUa90QGrBlzkZGC7m +qQ/s66la61Za4Z2xpLf+bpIWF58i3QrTgML+J4/2eukDBoHEGuRw/eT0Q1Nm273k +P0285RVB7Ajfjz6H0GpY0biF7A4qUtQQFMiTaj6v8+uerIsCAwEAAaNTMFEwHQYD +VR0OBBYEFLpljsx8toJnnXd2DbN4JNg7xfoVMB8GA1UdIwQYMBaAFLpljsx8toJn +nXd2DbN4JNg7xfoVMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggIB +ADVC+HEVR4O+xxHLCcYC2L6z4unKG03oFEglqwPYYPrBX05yhrY3hCE4poWDRi4s +o+Mlan01yPIHKVN/YnlRvwsTqlyZGeQ1proFWOYAEC5e/iuEkZUlFkscaI74FcQH +yw0B61He2nDi7xIWJZdzxZngnYvZ/A7GkmM9Bb+7sPfc/CBOkRLab7+OT93pNR7i +dMcNaRuMbdSQPIxO4J04Zzf8ecb7ueuxcNrZcAPO0g0gBvnY/YC5tCTnhtASX2mq +mroPi+u1YHXvUS+gBZmVE1DeFRhmtv40r9oosa/15zNJV/ORlK9ibiS5m0ykyBZP +aPSmHfjLc0RXMCRqxs4SSr1wHwM+WLquuX4IpnpkS9fuxRl8MLdHx0xXvAPg8/pW +0rk5+aaDUWrU5Uli+6cYelzVUAEtwXKBg3wiclk7v3QIdtTLDCmYg8J5SIVb+X9+ +o8BQH9V6x6h0MDobZeX972gs4bxDmYFAD4eXAb78FFFDLE8EFzS/LgnPLsuaE9Yg +fMYJ3xzXxSb1Q52yT8L/fxfJlNQ9m0rS3klCJJCffzRCCV9pf/zeP5A9aaRm5gvR +rL158acXwbQh/u02HyO6eGQZp4GePEQolbJPUuVCl6hEtQiszTl0VjAExnWGbu/3 +Xv79AAS75T7uyjezSpx7Ts6EK4FYz8bxb5zJyTMn86v/ +-----END CERTIFICATE----- diff --git a/prod/nextcloud/nextcloud-certificate/nextcloud-selfsigned.key b/prod/nextcloud/nextcloud-certificate/nextcloud-selfsigned.key new file mode 100644 index 0000000..392ec91 --- /dev/null +++ b/prod/nextcloud/nextcloud-certificate/nextcloud-selfsigned.key @@ -0,0 +1,52 @@ +-----BEGIN PRIVATE KEY----- +MIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQCc38gEDuXo2nsN +X2iWkZK2lXIVz/+j/vyyn6u0dAH5TyKmrHcgH2CcwuHA8xtaFRzMT/e4C/gVceYL +UEeALv3V9UVobQSdO+dD+WBBQDpjFYypUP8N5d07Clu9HzPmLl6P/5H00lTVn5sc +Wzup7PKO3fbCipT8BxumkipJqi2o4yDxVdrQkBagNEQYC+OLaatC5WMm0MJvdW0K +wLLRCOvEVS5aQvWaVsxu7t4ruc0BrItPcRefIv9qqTV6GXA0GaGkcfzDkmAXuWE7 +OFvv0mKIi7xOa8WJKRUn7lvxWyGrZVsYg5WL1307m/Mtiw73oQa0LqN7wx2tas6x +ydWeVTpAGILHTMgBQRyZkkYEz0QY5sn322IYvKPKEABPfJLYBSmdHHW3Q1K6BPn9 +MOiR8xYB8+ty/LtgvnntXzY2PQZaV8kAp/2YXIK+qQs0OmvZdRp5wCRcVhdhgeHo +I85waHEi8p6ha/FRVW5whDgARay2dG+lf13F1ZOacgnebAh/kE79SrC4SEgw85Id +wrV/VYAsarJJhHKdVHfCgxl7R3V8SqNRr3RAasGXORkYLuapD+zrqVrrVlrhnbGk +t/5ukhYXnyLdCtOAwv4nj/Z66QMGgcQa5HD95PRDU2bbveQ/TbzlFUHsCN+PPofQ +aljRuIXsDipS1BAUyJNqPq/z656siwIDAQABAoICAAGyxIISvTdzohBnf4Tdx5ZV +cNo+mbhnSsoOQ3gdJ2ZRDoF6bYG6BTw9Od9yYlHr15d4qChkbMeip4ho0pVXLOVT +lfBG+d1P6DWKrhmWvesTsSWmHFTEr8vzVUHrZA7yYpCxhh1953A2naHFdRRmXcvh +KEo74NgHpat8epu4jWz+JH2oXcmTPcN3PWN7QXfhaXq8bAHgEbLONSOAKY9sxsyl +1W4hunH0zZrH2Dzl8ou5l/qAsW5GHTjE4zDStK3Dt0XF/CQL4iFvntdayVgD0ZBD +3wKEVSuid7mqcXFf+LHX05Ak4IoWh6MNEallD4Dry9xIgvmUh644cUtocXkY2BwU +MK8yg33uYw4CKKB/tQLWhcOROAqU1VBkiqXVprbWwXtZo6EvdA+eAmHxsuYdAC/l +S/lLyew9nyT69RkDJpXE7C6nZ3ut0wfRs8VAwWnr7JtYPbYosjZ4ACzADFnUWkJt +DUxivk58Ew/AH8saDQfaVTcO2J4R8T8VupBh7axzNKJG2E/zt/53BPa1Iy7/DDtd +AIQeRt1G2t/qWznQ+7c9HelGFoUjVAAAj2vUCaYe8WdyNcwG0Powqf6s1jZ9rRU9 +KSFrAbygNeHiq4VzS7D+0N93nvZqstLxvnuTGFD8T6Q1B9FbFuA4mevyQRBFE5SF +WIDQ4c/RU5VtQEvAt7FxAoIBAQDNla5rP7qqR40PnHKpuqCShG8xzdm/gc2FkE/b +BUb25h/S2kPFCSGasPLpL/F0m3v4mx6jiMyRAdQVxOHV2bs0RdL2V3z65+swCfNf +ESvTOAsGDIH4BbrqWwOSonSTFL006T2ACXDArvmYd4572KZ2B8Qv3Pp1TO4i1j3z +/HBoi3F7FwZaYGZT1pVWAkoXCDQj46QSz7Cgo6zR1lhKiQkPcqpAVlFghLfTiEdz +obeOX8oDdmKyh6SkJIiZ//VNivdBgL/TmBD0ZdNXnf+6Ys8iww+sWobAPgPva7Bl +TNgZzH0HEXwC8i8DZh0s1oCdAbaFuisalzGtqUHwqMQDQD2RAoIBAQDDWB7DVfYr +rKzRF2IJke7YeXWLl5DCW3SQjohF40Or0zyoVEDEvQgQFL0JLQ7wv9ZzJvt+GjaH +iNcKRYBVR1nb6Fw1TDu+cI8DhsWg13UK30S/H9O5w0s6YlwY+62knlOWepl84pAp +Y1a9u0+/UR7WJm5eO7plZMqggyWdArjIek56xrCnvvPuxv9HCKxpJKcwTLVlA5q3 +vihfIBM3i32TLOeo7A81IBGHVGstHY6b4ch8IW0tS5GJFwAIvwgxCFxanQjHrwfp +HLbigTXKcqX1gzJeuHV2K3Y10qSNfZNbZxvcYyxnQ63+0tgpHorJqj1/aLM4y3E3 +op/LgyBjPypbAoIBADdN0tPrGu3/vYS7k2TxXYzMr5T4SWFpK76IadMDgmmc0mbI +bH6uzClu/ImaahvyT9E6+W0Iue8wTLtmcVIz9lZDilLWijp89RnBM4UZe26gnuaL +qtLrx7KPtVBW/4EpjRSUwgSVhY1wBJjtYJkUWQNbZ31wtrejcFRSyeu+twaIrIhu +UzkwwZZAHYA7sW6suEoHTPX6hQtRvIXeYXX7k0JimEYiclXCnij7ei0zDcvxHMj9 +qeNY9gNqCI1U+8pWXdlzJydmuvjkA4yIZmjfd9VkH+0/lQxWInzfvV4i4+dcyS2D +mJa6S8dgSuzq70JNWapzwHCwx55t790rqT8uouECggEAZjLBDXL4sorJcy7nlJgr +vEd3Lsvh6T0Ns99N/jpTGh8OmgZSSFuZT0h6ScWwDlZfLKmVY7j1FF2MG4yXAoas +xXdAXoX+r7iVqcOlu2tdiY2bmt5c19ALmIUDJ/LsOra2hoCnsoWZ5H1bUTIhG7em +CWXb0iMvdoKP3AAg+o8E+6W5T1SJ8Yjed+rWfWRVR0Ds00EembWUCVNMLdBLHYE1 +9nzEykSOBD49zW5mEBlplbY/PGoEg3EIuA83blv7PiPgpWuIv2ecHOJv7/qnmL34 +g4TbImEg2u0MEEae3oN3R5efJOMhxPjMnAfVHVYkSDNvryuosCsHlZLYRRHaLPJM +BwKCAQAl06bCvDxbRONlnlMss/NOpx28IMgqSoM8jGYFy/hXni/PXrySZ9KurtE7 +PGaccgzUxJsZxDLuQuqgZ2XDu+TfwDKitjJq3bmIQPq3c0vp5hCL1WnWOuLstjpP +xUxZwXXIHdTeKeTnIQchvPFt7a6EZxXDmKtwYtNLVeORsmhMnjpl0oR11sT7c8ea +PP6+uYzKwPUNcT39HQPAEkevN0oAEqSJZHmEpsO2KLsvB1h5iM1lq70TNer7Slps +x46utJPQA2Jqneb0lNHGBJGCJHUWH1UnCLlcC/QbQst+8bgU/jWST4ZJ4ReqcE9b +94Uzs1ncbpaJSiptNhu74s1ivs25 +-----END PRIVATE KEY----- diff --git a/prod/nextcloud/nextcloud.yaml b/prod/nextcloud/nextcloud.yaml new file mode 100755 index 0000000..19d5668 --- /dev/null +++ b/prod/nextcloud/nextcloud.yaml @@ -0,0 +1,258 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: nextcloud +--- +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: nextcloud-prod.allarddcs.nl + namespace: nextcloud +spec: + dnsNames: + - nextcloud-prod.allarddcs.nl + issuerRef: + group: cert-manager.io + kind: ClusterIssuer + name: letsencrypt + secretName: nextcloud-prod.allarddcs.nl + usages: + - digital signature + - key encipherment +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nextcloud # < name of the deploymentand reference + namespace: nextcloud + labels: + app: nextcloud # < label for tagging and reference +spec: + replicas: 1 # < number of pods to deploy + selector: + matchLabels: + app: nextcloud + strategy: + rollingUpdate: + maxSurge: 1 # < The number of pods that can be created above the desired amount of pods during an update + maxUnavailable: 1 # < The number of pods that can be unavailable during the update process + type: RollingUpdate # < New pods are added gradually, and old pods are terminated gradually + template: + metadata: + labels: + app: nextcloud + spec: + containers: + - image: nextcloud + name: nextcloud # < name of container + imagePullPolicy: Always # < always use the latest image when creating container/pod + env: # < environment variables. See https://hub.docker.com/r/linuxserver/nextcloud + - name: PGID + value: "1000" # < group "ubuntu" + - name: PUID + value: "1000" # < user "ubuntu" + - name: MYSQL_HOST + value: mariadb.mariadb.svc.cluster.local + - name: MYSQL_DATABASE + value: "nextcloud" + - name: MYSQL_USER + value: "nextcloud" + - name: MYSQL_PASSWORD + value: "nextcloud" + - name: MYSQL_ROOT_PASSWORD + value: "zabbix" + - name: NEXTCLOUD_HOSTNAME + value: "nextcloud-prod.allarddcs.nl" + - name: TZ + value: Europe/Amsterdam + - name: OVERWRITEPROTOCOL + value: "https" + - name: APACHE_SERVER_NAME + value: "nextcloud-prod.allarddcs.nl" + ports: + - containerPort: 80 # < required network portnumber. See https://hub.docker.com/r/linuxserver/nextcloud + name: http + protocol: TCP + volumeMounts: # < the volume mount in the container. Look at the relation volumelabel->pvc->pv + - name: nfs-nextcloud + mountPath: /var/www/html + subPath: html + - name: nfs-nextcloud + mountPath: /var/www/html/data + subPath: data + - name: nfs-nextcloud + mountPath: /var/www/html/config + subPath: config + - name: nfs-nextcloud + mountPath: /var/www/html/custom_apps + subPath: nextapps + - name: nfs-nextcloud + mountPath: /etc/apache2/apache2.conf + subPath: apache2.conf + volumes: + - name: nfs-nextcloud # < linkname of the volume for the pvc + persistentVolumeClaim: + claimName: nextcloud-pvc # < pvc name we created in the previous yaml + +--- +kind: Service +apiVersion: v1 +metadata: + name: nextcloud # < name of the service + namespace: nextcloud +spec: + selector: + app: nextcloud # < reference to the deployment (connects service with the deployment) + ports: + - name: http + protocol: TCP + port: 80 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nextcloud-http + namespace: nextcloud +spec: + entryPoints: + - web + routes: + - match: Host(`nextcloud-prod.allarddcs.nl`) + kind: Rule + services: + - name: nextcloud + port: 80 + middlewares: + - name: redirect-to-https + namespace: nextcloud +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nextcloud-tls + namespace: nextcloud +spec: + entryPoints: + - websecure + routes: + - match: Host(`nextcloud-prod.allarddcs.nl`) + kind: Rule + services: + - name: nextcloud + port: 80 + middlewares: + - name: nextcloud-headers + namespace: nextcloud + tls: + secretName: nextcloud-prod.allarddcs.nl +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nextcloud-well-known + namespace: nextcloud +spec: + entryPoints: + - websecure + routes: + - match: Host(`nextcloud-prod.allarddcs.nl`) && PathPrefix(`/.well-known`) + kind: Rule + middlewares: + - name: nextcloud-well-known-redirect + namespace: nextcloud + services: + - name: nextcloud + port: 80 + tls: + secretName: nextcloud-prod.allarddcs.nl +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nextcloud-talk + namespace: nextcloud +spec: + entryPoints: + - websecure + routes: + - match: Host(`nextcloud-prod.allarddcs.nl`) && PathPrefix(`/nextcloud/apps/spreed`) + kind: Rule + services: + - name: nextcloud + port: 80 + middlewares: + - name: nextcloud-headers + namespace: nextcloud + tls: + secretName: nextcloud-prod.allarddcs.nl +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: nextcloud-headers + namespace: nextcloud +spec: + headers: + stsSeconds: 31536000 + stsIncludeSubdomains: true + stsPreload: true + customRequestHeaders: + X-Forwarded-Proto: "https" + Connection: "Upgrade" + Upgrade: "websocket" +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: redirect-to-https + namespace: nextcloud +spec: + redirectScheme: + scheme: https + permanent: true +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: nextcloud-well-known-redirect + namespace: nextcloud +spec: + redirectRegex: + regex: "https://(.*)/.well-known/(card|cal)dav" + replacement: "https://${1}/remote.php/dav/" + permanent: true +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nextcloud-pv +spec: + storageClassName: "" + capacity: + storage: 10Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/nextcloud + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nextcloud-pvc + namespace: nextcloud +spec: + storageClassName: "" + volumeName: nextcloud-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 10Gi + diff --git a/prod/nextcloud/spreed-certificate/spreed-certificate.yaml b/prod/nextcloud/spreed-certificate/spreed-certificate.yaml new file mode 100644 index 0000000..55e0fd2 --- /dev/null +++ b/prod/nextcloud/spreed-certificate/spreed-certificate.yaml @@ -0,0 +1,12 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: spreed-prod.allarddcs.nl + namespace: nextcloud +spec: + secretName: spreed-prod.allarddcs.nl + issuerRef: + name: letsencrypt + kind: ClusterIssuer + dnsNames: + - spreed-prod.allarddcs.nl diff --git a/prod/nextcloud/spreed.yaml b/prod/nextcloud/spreed.yaml new file mode 100644 index 0000000..def0a43 --- /dev/null +++ b/prod/nextcloud/spreed.yaml @@ -0,0 +1,152 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: spreed-prod.allarddcs.nl + namespace: nextcloud +spec: + secretName: spreed-prod.allarddcs.nl + issuerRef: + name: letsencrypt + kind: ClusterIssuer + dnsNames: + - spreed-prod.allarddcs.nl +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: spreed + namespace: nextcloud +spec: + replicas: 1 + selector: + matchLabels: + app: spreed + template: + metadata: + labels: + app: spreed + spec: + containers: + - name: spreed + image: ghcr.io/strukturag/nextcloud-spreed-signaling:latest + ports: + - containerPort: 3478 + - containerPort: 5349 + - containerPort: 8443 + - containerPort: 8080 + volumeMounts: + - mountPath: /var/run + name: spreed-socket + - mountPath: /etc/tls + name: spreed-prod-cert + readOnly: true + - name: spreed-config + mountPath: /config/server.conf # Mount location inside the container + subPath: server.conf # Ensure we only mount the file, not the entire directory + volumes: + - name: spreed-socket + emptyDir: {} + - name: spreed-prod-cert + secret: + secretName: spreed-prod.allarddcs.nl + - name: spreed-config + persistentVolumeClaim: + claimName: spreed-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: spreed + namespace: nextcloud +spec: + type: ClusterIP + selector: + app: spreed + ports: + - name: websocket-web + protocol: TCP + port: 8080 + targetPort: 8080 + - name: websocket + protocol: TCP + port: 8443 + targetPort: 8443 + - name: stun-port + protocol: TCP + port: 3478 + targetPort: 3478 + - name: signaling-port + protocol: TCP + port: 5349 + targetPort: 5349 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: spreed-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/spreed + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: spreed-pvc + namespace: nextcloud +spec: + storageClassName: "" + volumeName: spreed-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: spreed + namespace: nextcloud +spec: + entryPoints: + - websecure + routes: + - match: Host(`spreed-prod.allarddcs.nl`) + kind: Rule + services: + - name: spreed + port: 8080 + middlewares: + - name: websocket-headers +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: websocket-headers + namespace: nextcloud +spec: + headers: + customRequestHeaders: + X-Forwarded-Proto: "https" + customResponseHeaders: + Connection: "Upgrade" + Upgrade: "websocket" + accessControlAllowMethods: + - GET + - OPTIONS + - POST + accessControlAllowHeaders: + - "*" + diff --git a/prod/nginx/catalog-info.yaml b/prod/nginx/catalog-info.yaml new file mode 100644 index 0000000..b28dbbc --- /dev/null +++ b/prod/nginx/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-nginx + title: Nginx (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/nginx/nginx-prod.yaml b/prod/nginx/nginx-prod.yaml new file mode 100755 index 0000000..149ab11 --- /dev/null +++ b/prod/nginx/nginx-prod.yaml @@ -0,0 +1,101 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: nginx +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nginx-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/nginx-prod + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nginx-pvc + namespace: nginx +spec: + storageClassName: "" + volumeName: nginx-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx + namespace: nginx + labels: + app: nginx +spec: + replicas: 1 + selector: + matchLabels: + app: nginx + template: + metadata: + labels: + app: nginx + spec: + containers: + - name: nginx + image: nginx:1.14.2 + volumeMounts: + - mountPath: /usr/share/nginx/html + name: nginx + subPath: html + ports: + - containerPort: 80 + volumes: + - name: nginx + persistentVolumeClaim: + claimName: nginx-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: nginx + namespace: nginx + labels: + name: nginx +spec: + type: ClusterIP + ports: + - port: 80 + name: http + selector: + app: nginx +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: nginx-tls-alldcs + namespace: nginx +spec: + entryPoints: + - websecure + routes: + - match: Host(`nginx-prod.alldcs.nl`) + kind: Rule + services: + - name: nginx + port: 80 + tls: + certResolver: letsencrypt diff --git a/prod/nodejs/catalog-info.yaml b/prod/nodejs/catalog-info.yaml new file mode 100644 index 0000000..a8800b8 --- /dev/null +++ b/prod/nodejs/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-nodejs + title: Nodejs (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/nodejs/myfirstnodejsapp.yaml b/prod/nodejs/myfirstnodejsapp.yaml new file mode 100755 index 0000000..f3d59ba --- /dev/null +++ b/prod/nodejs/myfirstnodejsapp.yaml @@ -0,0 +1,156 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nodejs + namespace: nodejs + labels: + app: nodejs +spec: + replicas: 1 + selector: + matchLabels: + app: nodejs + template: + metadata: + labels: + app: nodejs + spec: + containers: + - name: nodejs + image: allardkrings/myfirstnodejsapp + imagePullPolicy: Always + ports: + - containerPort: 8080 +--- +apiVersion: v1 +kind: Service +metadata: + name: nodejs + namespace: nodejs + labels: + app: nodejs +spec: + ports: + - port: 8080 + protocol: TCP + selector: + app: nodejs + type: ClusterIP +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: nodejs-tls + namespace: nodejs +spec: + entryPoints: + - websecure + routes: + - match: Host(`nodejs-prod.alldcs.nl`) + kind: Rule + services: + - name: nodejs + port: 8080 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: nodejs-http + namespace: nodejs +spec: + entryPoints: + - web + routes: + - match: Host(`nodejs-prod.alldcs.nl`) + kind: Rule + services: + - name: nodejs + port: 8080 +--- +apiVersion: apps/v1 +kind: ReplicaSet +metadata: + labels: + app: mongodb + name: mongodb + namespace: nodejs +spec: + replicas: 1 + selector: + matchLabels: + app: mongodb + template: + metadata: + labels: + app: mongodb + spec: + containers: + - image: mongodb/mongodb-community-server + name: mongodb +# args: ["--dbpath","/data/db"] + env: + - name: MONGO_INITDB_ROOT_USERNAME + value: admin + - name: MONGO_INITDB_ROOT_PASSWORD + value: Mongodb01 + volumeMounts: + - name: "mongo-data-dir" + mountPath: "/data/db" + volumes: + - name: "mongo-data-dir" + persistentVolumeClaim: + claimName: "nodejs-pvc" +--- +apiVersion: v1 +kind: Service +metadata: + labels: + app: mongodb + name: mongodb + namespace: nodejs +spec: + ports: + - port: 27017 + protocol: TCP + targetPort: 27017 + selector: + app: mongodb + type: ClusterIP +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nodejs-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/nodejsapp + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nodejs-pvc + namespace: nodejs +spec: + storageClassName: "" + volumeName: nodejs-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + diff --git a/prod/nodejs/nodejs.yaml b/prod/nodejs/nodejs.yaml new file mode 100755 index 0000000..3c65e52 --- /dev/null +++ b/prod/nodejs/nodejs.yaml @@ -0,0 +1,156 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nodejs + namespace: nodejs + labels: + app: nodejs +spec: + replicas: 1 + selector: + matchLabels: + app: nodejs + template: + metadata: + labels: + app: nodejs + spec: + containers: + - name: nodejs + image: allardkrings/nodejs + imagePullPolicy: Always + ports: + - containerPort: 8080 +--- +apiVersion: v1 +kind: Service +metadata: + name: nodejs + namespace: nodejs + labels: + app: nodejs +spec: + ports: + - port: 8080 + protocol: TCP + selector: + app: nodejs + type: ClusterIP +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: nodejs-tls + namespace: nodejs +spec: + entryPoints: + - websecure + routes: + - match: Host(`nodejs-prod.alldcs.nl`) + kind: Rule + services: + - name: nodejs + port: 8080 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: nodejs-http + namespace: nodejs +spec: + entryPoints: + - web + routes: + - match: Host(`nodejs-prod.alldcs.nl`) + kind: Rule + services: + - name: nodejs + port: 8080 +--- +apiVersion: apps/v1 +kind: ReplicaSet +metadata: + labels: + app: mongodb + name: mongodb + namespace: nodejs +spec: + replicas: 1 + selector: + matchLabels: + app: mongodb + template: + metadata: + labels: + app: mongodb + spec: + containers: + - image: mongodb/mongodb-community-server + name: mongodb +# args: ["--dbpath","/data/db"] + env: + - name: MONGO_INITDB_ROOT_USERNAME + value: admin + - name: MONGO_INITDB_ROOT_PASSWORD + value: Mongodb01 + volumeMounts: + - name: "mongo-data-dir" + mountPath: "/data/db" + volumes: + - name: "mongo-data-dir" + persistentVolumeClaim: + claimName: "nodejs-pvc" +--- +apiVersion: v1 +kind: Service +metadata: + labels: + app: mongodb + name: mongodb + namespace: nodejs +spec: + ports: + - port: 27017 + protocol: TCP + targetPort: 27017 + selector: + app: mongodb + type: ClusterIP +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nodejs-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/nodejsapp + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nodejs-pvc + namespace: nodejs +spec: + storageClassName: "" + volumeName: nodejs-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + diff --git a/prod/pgadmin/README.md b/prod/pgadmin/README.md new file mode 100644 index 0000000..494e702 --- /dev/null +++ b/prod/pgadmin/README.md @@ -0,0 +1,12 @@ +inloggen in pgadmin: + +user: allard@alldcs.nl +password: Pgadmin01@ + +connecting to servers: + +server: postgres13 +user zabbix +passworrd: zabbix + + diff --git a/prod/pgadmin/catalog-info.yaml b/prod/pgadmin/catalog-info.yaml new file mode 100644 index 0000000..b588d73 --- /dev/null +++ b/prod/pgadmin/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-pgadmin + title: Pgadmin (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/pgadmin/pgadmin.yaml b/prod/pgadmin/pgadmin.yaml new file mode 100755 index 0000000..be604b4 --- /dev/null +++ b/prod/pgadmin/pgadmin.yaml @@ -0,0 +1,109 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: pgadmin-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/pgadmin/prod + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: pgadmin-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: pgadmin-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: pgadmin + namespace: postgres + labels: + app: pgadmin +spec: + replicas: 1 + selector: + matchLabels: + app: pgadmin + template: + metadata: + labels: + app: pgadmin + spec: + containers: + - name: pgadmin + image: dpage/pgadmin4:9.5.0 + ports: + - containerPort: 80 + env: + - name: PGADMIN_DEFAULT_EMAIL + value: admin@allarddcs.nl + - name: PGADMIN_DEFAULT_PASSWORD + value: Pgadmin01@ + volumeMounts: + - mountPath: /var/lib/pgadmin + name: pgadmin +# - mountPath: /etc/ssl/certs +# name: certs + volumes: + - name: pgadmin + persistentVolumeClaim: + claimName: pgadmin-pvc + - name: certs + secret: + secretName: cockroachdb.node + defaultMode: 256 + +--- +apiVersion: v1 +kind: Service +metadata: + name: pgadmin + namespace: postgres + labels: + name: pgadmin +spec: + selector: + app.kubernetes.io/name: pgadmin + ports: + - protocol: TCP + port: 80 + targetPort: 80 + selector: + app: pgadmin +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: pgadmin-tls + namespace: postgres +spec: + entryPoints: + - websecure + routes: + - match: Host(`pgadmin-prod.allarddcs.nl`) + kind: Rule + services: + - name: pgadmin + port: 80 + tls: + certResolver: letsencrypt diff --git a/prod/pgadmin/secret-cockroachdb-client-root.yaml b/prod/pgadmin/secret-cockroachdb-client-root.yaml new file mode 100644 index 0000000..6abd0c5 --- /dev/null +++ b/prod/pgadmin/secret-cockroachdb-client-root.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +data: + ca.crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURKVENDQWcyZ0F3SUJBZ0lRV1FaUEZBWUE4bHlSSDU0OHlrWEJ6VEFOQmdrcWhraUc5dzBCQVFzRkFEQXIKTVJJd0VBWURWUVFLRXdsRGIyTnJjbTloWTJneEZUQVRCZ05WQkFNVERFTnZZMnR5YjJGamFDQkRRVEFlRncweQpOREEzTWpnd09USXpNVEphRncwek5EQTRNRFl3T1RJek1USmFNQ3N4RWpBUUJnTlZCQW9UQ1VOdlkydHliMkZqCmFERVZNQk1HQTFVRUF4TU1RMjlqYTNKdllXTm9JRU5CTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEEKTUlJQkNnS0NBUUVBcjNWSlk4ZEUzT0x2QjVTRWhOL1dQVlViUVQ1QVdad0hYMnhPbngyZ1VmU09VTEt1M1lJYgpwM09mNmc3SzR4TG4zVm14azJIeXQ3dlAzVUhEZVdFSnRiUjJoOVBjNldRdFZpK0ZsRldSU0owSjdQYS9TWVJ6CnZvTlk1REVybXRWbUhFSytZZEFzUG5IdVAvTyt6ZlVHaDBtSENxRFQzYzZCNFNNaGdYN2hGSTBySzBnaEErcjEKZWh5TUEraXdCVm1mYXRDaUdJMjVVV3lKOVVMVCt5L0FyT3hxTWlrdXc2bkVEbWJRQlA1bjRNdlZKdFc2YW1CUAozSnBWYzVhOTN4VHlKZWpKc1J2cHZxUzRHQ2FYYytRVyt1YTVqK0lSKzU3c0NFWmU3dnJPYy8yeVhIQzgzOHhVClBLQ3BVZjhENlZiUWlIeU1rMkdDbElxblA3UmxRa3BRclFJREFRQUJvMFV3UXpBT0JnTlZIUThCQWY4RUJBTUMKQXVRd0VnWURWUjBUQVFIL0JBZ3dCZ0VCL3dJQkFUQWRCZ05WSFE0RUZnUVUvODhhRkZJWFZkZEllWnNKMVVzSQo2bHdvc0Q0d0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFJOEdKM2JvVmVwS3RaMllYWFhOT29HbGRPbytwS3FsCjE5Uk5jai9JOC8wUlp4OFk4WFFJdnFBRWxBWWZITi91WEtiZlhTVzVyaDE3cUI0aTgxa2VyR3ErWEwxRnBsMlQKdWJrWDY3MVFxamVFbzZHaDY2d2RwMTRzKzRMaUZGQkJGNDQ3K2ZJTVptV0tQc1N5ME80RklsYytHZ245SXFOdQozWHkyVFlXbmZoUWEvTzZDcXdkZVpEamNtSFhmanRpTjdSZFZsdlhidERVUk1NVnNjNDZjNlZsQW5Ic0Q1dThrCnBvMkF2THkzR1hRYUJFb01NNW1OTVJsSlBYeThPM1Y2ZjJoeFpTWUNFNWtrSmhFNXJkUkczR2ltYnhvN0crbisKaHVEcTFML3NHQjBJcmpOSnNPN0dMVVJwREROZFJVbmlCb1NGWWh5R3JaUnFDRkVuT0RLUXRocz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= + client.root.crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURJRENDQWdpZ0F3SUJBZ0lRV1V5SlNadzh0UjRaTzdiVjg3dm50REFOQmdrcWhraUc5dzBCQVFzRkFEQXIKTVJJd0VBWURWUVFLRXdsRGIyTnJjbTloWTJneEZUQVRCZ05WQkFNVERFTnZZMnR5YjJGamFDQkRRVEFlRncweQpOREEzTWpnd09USXpNak5hRncweU9UQTRNREl3T1RJek1qTmFNQ014RWpBUUJnTlZCQW9UQ1VOdlkydHliMkZqCmFERU5NQXNHQTFVRUF4TUVjbTl2ZERDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUIKQU40RHpoOTlsNi9ycWpvRlNKbWdQcWxoVHZWYk0rejRmZEVSTW9LT1VQSkhmVjdOMXhRMC9JL0htVkR4WW5RMwpCSVZucERmNnVpc1lVM0FHQkZPbGRFWk43bXlUaDhEaDZlTFlkM2RrSzY4VjVFQTNKU1VmK3lGNmgwNWQxRlg1CnJiMTV1MEFhallOMm1IVHRZenQwalZGR1pGbURocFRPN1hGbWQ2cGNmNmdqT2VVKyt0TjJHZFdFc3pVeUphSDEKM0tBSStBVjN4TFZra0U1Tk9NeU54dGF3R2Z6RjlmY2dFS0Z3Zmora0hOdFZEcnpFcDVaR2h0TlBrUXlyRTlXMwpndi85VkNwcHFnUGE3YzV1ajJTd3Btb3E0a1NMbXJ4ay9tL0FZbzFsWktYbjgxb2liODFyV2k2QWxSbDZjTjFyCllWd1VoOFZYTmFOL3h0YmhHemhGbU9rQ0F3RUFBYU5JTUVZd0RnWURWUjBQQVFIL0JBUURBZ1dnTUJNR0ExVWQKSlFRTU1Bb0dDQ3NHQVFVRkJ3TUNNQjhHQTFVZEl3UVlNQmFBRlAvUEdoUlNGMVhYU0htYkNkVkxDT3BjS0xBKwpNQTBHQ1NxR1NJYjNEUUVCQ3dVQUE0SUJBUUFzOVlxSmppUTZTWExMZlBwMmdPMTQzZ0JlU2NvbGhqalpxREQrCmEwTkdyM3ZiaU9YcVB6b0JkVmhmNkN0a0RHZkh4OVIyaTFoNzBleDF5azBoczUrVjNLSUxqWmRSdUVSS2NoTXMKa3htWExhQll3UVAxT0dPNmVEbSt5STZ5bUdsNjg5QTc0ZEdXMWtrcElON3JkSVRZeXFGaHJLUUF2WjE4ODNlTgp0Uk9Vb0ZLa3R1SWNnTm9YY3BtU1UxaC9OK05EUUpwQzlsckRoWmxCSXlhbkVFTkwyRHBOdTNvU0gxVGcwUTFOCjVLdjd4dkRQREhoZnFJOWF1UkJ2Ky8zRExzeDNwMUtVZTljbHZSbGxxSllzOERXNEJFamxLNkRoS1ZIelFLK1QKSER3UVg3VXpIOHRoODNZd0FxMWZZVDlienBoZ2JrNnRoV3MrNDJDTGg5bG15SGg2Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K + client.root.key: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFcEFJQkFBS0NBUUVBM2dQT0gzMlhyK3VxT2dWSW1hQStxV0ZPOVZzejdQaDkwUkV5Z281UThrZDlYczNYCkZEVDhqOGVaVVBGaWREY0VoV2VrTi9xNkt4aFRjQVlFVTZWMFJrM3ViSk9Id09IcDR0aDNkMlFycnhYa1FEY2wKSlIvN0lYcUhUbDNVVmZtdHZYbTdRQnFOZzNhWWRPMWpPM1NOVVVaa1dZT0dsTTd0Y1daM3FseC9xQ001NVQ3NgowM1laMVlTek5USWxvZlhjb0FqNEJYZkV0V1NRVGswNHpJM0cxckFaL01YMTl5QVFvWEIrUDZRYzIxVU92TVNuCmxrYUcwMCtSREtzVDFiZUMvLzFVS21tcUE5cnR6bTZQWkxDbWFpcmlSSXVhdkdUK2I4QmlqV1ZrcGVmeldpSnYKeld0YUxvQ1ZHWHB3M1d0aFhCU0h4VmMxbzMvRzF1RWJPRVdZNlFJREFRQUJBb0lCQVFDRG1JSFBES1NpcysrYwpvSkVkN212MS9pWE5MUmdrT0U1clkrUXFtcXpFVHpleXdCUGllRjNUNDUydTZzVk8yV1dtcFg0amFFeDlTdGY2CktMYmIxZENMODVtRlpoVXJjVDB2SnR2NU9yamgrUG5vVGtlSUwrS3RQM0dBTkFHdVRHWjlUdkI4Mk1CVTBqRWYKN2EzS0NoWFJ2UVd5UVZHK1ZzRkxYRTlGL2JuMU1JRkluaE8wYnJ1cHVRWUFZZlo5aXdXV2tNdWF6TUl4bmdhawpIV3lNQmxYZVdDbFdrc0R5STJQTy9EaUtLd1V3WmVWWVJDenVTYWpWVmhHS2Z3Z2tMd1pTRDVYKzh5N0hjemRFCmxVVUtLalJmdzQzQkxqTUt2bkM1QzBiYjJvdDlzbXprTXAwTVhWSk5ndzhDenQ1T2pxa2t5a0xiUE9nQ256bkkKcGdzZTBVRlpBb0dCQVBkOHB5K0x3WW85YWYvMHBXVmM1bUM5VVVQbm9sTXZRTGhENUJ0Qmg3ckMrM3ovUDUwNgpYLy92QnNURlZGb1VGMGFVWmQxd3J0WkNybkM0YnZ2M3ZKR0ZoN3J3anlvRUR6VGRXNXFxZXJWUGU1eHFwYVdaCkZ2bVJjVllsV0ZIbGFhK3dNNHhWMXVhK1VaR2Q3K1R6NzZndTI0azVWK1R6YVJnODJzR3dNaGxmQW9HQkFPV20KMlBTQkt4Y2NTTlU0dUpIVGFSQUl5dlYwSmhtYjl3NURaczN6ZjJZQVYvSHJSUUNLMlAxTENrTmFrNUIxdlo1cQpMck0vN0R2T3lCRngzNU9zbzQ0TmRaWEJqTExpVEdWL3RRazJsYVBhNFNuTWV5Z1N4N2M5ZUY2REQ3TlA2SGVHCkk0eHgxTE5Ed2Rud2RzZ3dhYnY1ZDd3UnFPa1JYU2QzSTBncTRFcTNBb0dCQU5vbUhwaGljRzhTUTJWQ21LZ0kKZzJteWR2ZU1MaUYwL1c5dktKcDk0TTVYSUtiRnQ2VTMxM2Naa3JYUDJ0S3I4dmhieG82eXpPcEFUTk0vUDFVSwp3a1RqbHdqSkV1ak9PemsyQlpFSHhMSWRKYkJ5c1NDUEdSbFRncnVVbjQxUTB4L3lDUDRpakJOSW4wM2tFWm1YCkRDRUxiS2hBeTZFY2pmNjNaWHhsZTBPeEFvR0FNNExWTHlLNTg1a1lqUnNINjAyc1J6aHhyZFM3cHdyZ3c0WkMKelBkTklDZjdrZnZmb2x1Q2lHNElnMHNSeGxsaWl1SHVUNjZLNG05aldPWmQ2OVhSYWMrRERIQTVpdlpQaElTOApxckJmcUQwMFBCZnRsL04rY0krTkxFWGhnNnJzemNKOHZzZlptY3djOHpHSXN5YUkwTzBIK2x0THM5dDlOWmozCmhQeDVDc2tDZ1lBNU1uaUwzK09OZWxxRzUwclVRbFI1a0N1amhOTHlXSmFab3RPRkp5Z2dDUjJBcE5nb3VEUXEKcktIK09OYTY2L1VCM0V2YnhORnZtdm1EbWdrcnQyRHA0SEx3bFNsQUF1K1NyRjFteGtNQ1JNdFZkdDNpRUhEaQo0ZjFJMHhGS0x1Y29Ld28wWStPdVcyelhyTHpsb3JQQW1seUNoNlpvd1RNUUcrMjcwTmw0Nnc9PQotLS0tLUVORCBSU0EgUFJJVkFURSBLRVktLS0tLQo= +kind: Secret +metadata: + name: cockroachdb.client.root + namespace: postgres +type: Opaque diff --git a/prod/pgadmin/secret-cockroachdb-node.yaml b/prod/pgadmin/secret-cockroachdb-node.yaml new file mode 100644 index 0000000..2517a61 --- /dev/null +++ b/prod/pgadmin/secret-cockroachdb-node.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +data: + ca.crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURKVENDQWcyZ0F3SUJBZ0lRV1FaUEZBWUE4bHlSSDU0OHlrWEJ6VEFOQmdrcWhraUc5dzBCQVFzRkFEQXIKTVJJd0VBWURWUVFLRXdsRGIyTnJjbTloWTJneEZUQVRCZ05WQkFNVERFTnZZMnR5YjJGamFDQkRRVEFlRncweQpOREEzTWpnd09USXpNVEphRncwek5EQTRNRFl3T1RJek1USmFNQ3N4RWpBUUJnTlZCQW9UQ1VOdlkydHliMkZqCmFERVZNQk1HQTFVRUF4TU1RMjlqYTNKdllXTm9JRU5CTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEEKTUlJQkNnS0NBUUVBcjNWSlk4ZEUzT0x2QjVTRWhOL1dQVlViUVQ1QVdad0hYMnhPbngyZ1VmU09VTEt1M1lJYgpwM09mNmc3SzR4TG4zVm14azJIeXQ3dlAzVUhEZVdFSnRiUjJoOVBjNldRdFZpK0ZsRldSU0owSjdQYS9TWVJ6CnZvTlk1REVybXRWbUhFSytZZEFzUG5IdVAvTyt6ZlVHaDBtSENxRFQzYzZCNFNNaGdYN2hGSTBySzBnaEErcjEKZWh5TUEraXdCVm1mYXRDaUdJMjVVV3lKOVVMVCt5L0FyT3hxTWlrdXc2bkVEbWJRQlA1bjRNdlZKdFc2YW1CUAozSnBWYzVhOTN4VHlKZWpKc1J2cHZxUzRHQ2FYYytRVyt1YTVqK0lSKzU3c0NFWmU3dnJPYy8yeVhIQzgzOHhVClBLQ3BVZjhENlZiUWlIeU1rMkdDbElxblA3UmxRa3BRclFJREFRQUJvMFV3UXpBT0JnTlZIUThCQWY4RUJBTUMKQXVRd0VnWURWUjBUQVFIL0JBZ3dCZ0VCL3dJQkFUQWRCZ05WSFE0RUZnUVUvODhhRkZJWFZkZEllWnNKMVVzSQo2bHdvc0Q0d0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFJOEdKM2JvVmVwS3RaMllYWFhOT29HbGRPbytwS3FsCjE5Uk5jai9JOC8wUlp4OFk4WFFJdnFBRWxBWWZITi91WEtiZlhTVzVyaDE3cUI0aTgxa2VyR3ErWEwxRnBsMlQKdWJrWDY3MVFxamVFbzZHaDY2d2RwMTRzKzRMaUZGQkJGNDQ3K2ZJTVptV0tQc1N5ME80RklsYytHZ245SXFOdQozWHkyVFlXbmZoUWEvTzZDcXdkZVpEamNtSFhmanRpTjdSZFZsdlhidERVUk1NVnNjNDZjNlZsQW5Ic0Q1dThrCnBvMkF2THkzR1hRYUJFb01NNW1OTVJsSlBYeThPM1Y2ZjJoeFpTWUNFNWtrSmhFNXJkUkczR2ltYnhvN0crbisKaHVEcTFML3NHQjBJcmpOSnNPN0dMVVJwREROZFJVbmlCb1NGWWh5R3JaUnFDRkVuT0RLUXRocz0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= + client.root.crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURJRENDQWdpZ0F3SUJBZ0lRV1V5SlNadzh0UjRaTzdiVjg3dm50REFOQmdrcWhraUc5dzBCQVFzRkFEQXIKTVJJd0VBWURWUVFLRXdsRGIyTnJjbTloWTJneEZUQVRCZ05WQkFNVERFTnZZMnR5YjJGamFDQkRRVEFlRncweQpOREEzTWpnd09USXpNak5hRncweU9UQTRNREl3T1RJek1qTmFNQ014RWpBUUJnTlZCQW9UQ1VOdlkydHliMkZqCmFERU5NQXNHQTFVRUF4TUVjbTl2ZERDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUIKQU40RHpoOTlsNi9ycWpvRlNKbWdQcWxoVHZWYk0rejRmZEVSTW9LT1VQSkhmVjdOMXhRMC9JL0htVkR4WW5RMwpCSVZucERmNnVpc1lVM0FHQkZPbGRFWk43bXlUaDhEaDZlTFlkM2RrSzY4VjVFQTNKU1VmK3lGNmgwNWQxRlg1CnJiMTV1MEFhallOMm1IVHRZenQwalZGR1pGbURocFRPN1hGbWQ2cGNmNmdqT2VVKyt0TjJHZFdFc3pVeUphSDEKM0tBSStBVjN4TFZra0U1Tk9NeU54dGF3R2Z6RjlmY2dFS0Z3Zmora0hOdFZEcnpFcDVaR2h0TlBrUXlyRTlXMwpndi85VkNwcHFnUGE3YzV1ajJTd3Btb3E0a1NMbXJ4ay9tL0FZbzFsWktYbjgxb2liODFyV2k2QWxSbDZjTjFyCllWd1VoOFZYTmFOL3h0YmhHemhGbU9rQ0F3RUFBYU5JTUVZd0RnWURWUjBQQVFIL0JBUURBZ1dnTUJNR0ExVWQKSlFRTU1Bb0dDQ3NHQVFVRkJ3TUNNQjhHQTFVZEl3UVlNQmFBRlAvUEdoUlNGMVhYU0htYkNkVkxDT3BjS0xBKwpNQTBHQ1NxR1NJYjNEUUVCQ3dVQUE0SUJBUUFzOVlxSmppUTZTWExMZlBwMmdPMTQzZ0JlU2NvbGhqalpxREQrCmEwTkdyM3ZiaU9YcVB6b0JkVmhmNkN0a0RHZkh4OVIyaTFoNzBleDF5azBoczUrVjNLSUxqWmRSdUVSS2NoTXMKa3htWExhQll3UVAxT0dPNmVEbSt5STZ5bUdsNjg5QTc0ZEdXMWtrcElON3JkSVRZeXFGaHJLUUF2WjE4ODNlTgp0Uk9Vb0ZLa3R1SWNnTm9YY3BtU1UxaC9OK05EUUpwQzlsckRoWmxCSXlhbkVFTkwyRHBOdTNvU0gxVGcwUTFOCjVLdjd4dkRQREhoZnFJOWF1UkJ2Ky8zRExzeDNwMUtVZTljbHZSbGxxSllzOERXNEJFamxLNkRoS1ZIelFLK1QKSER3UVg3VXpIOHRoODNZd0FxMWZZVDlienBoZ2JrNnRoV3MrNDJDTGg5bG15SGg2Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K + client.root.key: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFcEFJQkFBS0NBUUVBM2dQT0gzMlhyK3VxT2dWSW1hQStxV0ZPOVZzejdQaDkwUkV5Z281UThrZDlYczNYCkZEVDhqOGVaVVBGaWREY0VoV2VrTi9xNkt4aFRjQVlFVTZWMFJrM3ViSk9Id09IcDR0aDNkMlFycnhYa1FEY2wKSlIvN0lYcUhUbDNVVmZtdHZYbTdRQnFOZzNhWWRPMWpPM1NOVVVaa1dZT0dsTTd0Y1daM3FseC9xQ001NVQ3NgowM1laMVlTek5USWxvZlhjb0FqNEJYZkV0V1NRVGswNHpJM0cxckFaL01YMTl5QVFvWEIrUDZRYzIxVU92TVNuCmxrYUcwMCtSREtzVDFiZUMvLzFVS21tcUE5cnR6bTZQWkxDbWFpcmlSSXVhdkdUK2I4QmlqV1ZrcGVmeldpSnYKeld0YUxvQ1ZHWHB3M1d0aFhCU0h4VmMxbzMvRzF1RWJPRVdZNlFJREFRQUJBb0lCQVFDRG1JSFBES1NpcysrYwpvSkVkN212MS9pWE5MUmdrT0U1clkrUXFtcXpFVHpleXdCUGllRjNUNDUydTZzVk8yV1dtcFg0amFFeDlTdGY2CktMYmIxZENMODVtRlpoVXJjVDB2SnR2NU9yamgrUG5vVGtlSUwrS3RQM0dBTkFHdVRHWjlUdkI4Mk1CVTBqRWYKN2EzS0NoWFJ2UVd5UVZHK1ZzRkxYRTlGL2JuMU1JRkluaE8wYnJ1cHVRWUFZZlo5aXdXV2tNdWF6TUl4bmdhawpIV3lNQmxYZVdDbFdrc0R5STJQTy9EaUtLd1V3WmVWWVJDenVTYWpWVmhHS2Z3Z2tMd1pTRDVYKzh5N0hjemRFCmxVVUtLalJmdzQzQkxqTUt2bkM1QzBiYjJvdDlzbXprTXAwTVhWSk5ndzhDenQ1T2pxa2t5a0xiUE9nQ256bkkKcGdzZTBVRlpBb0dCQVBkOHB5K0x3WW85YWYvMHBXVmM1bUM5VVVQbm9sTXZRTGhENUJ0Qmg3ckMrM3ovUDUwNgpYLy92QnNURlZGb1VGMGFVWmQxd3J0WkNybkM0YnZ2M3ZKR0ZoN3J3anlvRUR6VGRXNXFxZXJWUGU1eHFwYVdaCkZ2bVJjVllsV0ZIbGFhK3dNNHhWMXVhK1VaR2Q3K1R6NzZndTI0azVWK1R6YVJnODJzR3dNaGxmQW9HQkFPV20KMlBTQkt4Y2NTTlU0dUpIVGFSQUl5dlYwSmhtYjl3NURaczN6ZjJZQVYvSHJSUUNLMlAxTENrTmFrNUIxdlo1cQpMck0vN0R2T3lCRngzNU9zbzQ0TmRaWEJqTExpVEdWL3RRazJsYVBhNFNuTWV5Z1N4N2M5ZUY2REQ3TlA2SGVHCkk0eHgxTE5Ed2Rud2RzZ3dhYnY1ZDd3UnFPa1JYU2QzSTBncTRFcTNBb0dCQU5vbUhwaGljRzhTUTJWQ21LZ0kKZzJteWR2ZU1MaUYwL1c5dktKcDk0TTVYSUtiRnQ2VTMxM2Naa3JYUDJ0S3I4dmhieG82eXpPcEFUTk0vUDFVSwp3a1RqbHdqSkV1ak9PemsyQlpFSHhMSWRKYkJ5c1NDUEdSbFRncnVVbjQxUTB4L3lDUDRpakJOSW4wM2tFWm1YCkRDRUxiS2hBeTZFY2pmNjNaWHhsZTBPeEFvR0FNNExWTHlLNTg1a1lqUnNINjAyc1J6aHhyZFM3cHdyZ3c0WkMKelBkTklDZjdrZnZmb2x1Q2lHNElnMHNSeGxsaWl1SHVUNjZLNG05aldPWmQ2OVhSYWMrRERIQTVpdlpQaElTOApxckJmcUQwMFBCZnRsL04rY0krTkxFWGhnNnJzemNKOHZzZlptY3djOHpHSXN5YUkwTzBIK2x0THM5dDlOWmozCmhQeDVDc2tDZ1lBNU1uaUwzK09OZWxxRzUwclVRbFI1a0N1amhOTHlXSmFab3RPRkp5Z2dDUjJBcE5nb3VEUXEKcktIK09OYTY2L1VCM0V2YnhORnZtdm1EbWdrcnQyRHA0SEx3bFNsQUF1K1NyRjFteGtNQ1JNdFZkdDNpRUhEaQo0ZjFJMHhGS0x1Y29Ld28wWStPdVcyelhyTHpsb3JQQW1seUNoNlpvd1RNUUcrMjcwTmw0Nnc9PQotLS0tLUVORCBSU0EgUFJJVkFURSBLRVktLS0tLQo= + node.crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUQrakNDQXVLZ0F3SUJBZ0lRSFg4K0ZtNTF2eW5NdHl5b1c0SXhFakFOQmdrcWhraUc5dzBCQVFzRkFEQXIKTVJJd0VBWURWUVFLRXdsRGIyTnJjbTloWTJneEZUQVRCZ05WQkFNVERFTnZZMnR5YjJGamFDQkRRVEFlRncweQpOREEzTWpnd09USXpNamxhRncweU9UQTRNREl3T1RJek1qbGFNQ014RWpBUUJnTlZCQW9UQ1VOdlkydHliMkZqCmFERU5NQXNHQTFVRUF4TUVibTlrWlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUIKQUw5SmpZRm80UnFsOEFUcmFLNXdwM2x4Tk5iRTh2a1IzRyszYXV0elNydTkxamFMeVZ1akVzZFhFa0ZpSnZURQpmNTZDL2VXajdaVjY4N1hFaFZiU3FyZUwyRG5oY0Q4M09JelZXS2VKekt6bFV6QkdwQi9xRko4ZkZBeVJMNXIxClVsb1ZQWmE2NjlqRzJreFZmOTI2OFF0VFhia3dpZ1ZOdXB3di9PU0M0THVmTVA1RlZ6Z0IxTEcrbEhvemJzdzkKNC80TXVuNWtlQVd5bG5wcmJ5eW9yc1B0RFdvbktmS3ErNDBBczJ5SWgySGFSd09hTHlpMytZZmZHUzI0K1NkVAp5Ukc1NjVrb1lKeVFyOGVVU2RVTDM0RFB3WW1UazhtK0lySlNoZHdBSXdiZ20vVTh2em5OMHBWRG0xRm82akp1ClZ1NTJQQndMT2VIUGMvTlY4b0c0Ym1FQ0F3RUFBYU9DQVNBd2dnRWNNQTRHQTFVZER3RUIvd1FFQXdJRm9EQWQKQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0h3WURWUjBqQkJnd0ZvQVUvODhhRkZJWApWZGRJZVpzSjFVc0k2bHdvc0Q0d2dja0dBMVVkRVFTQndUQ0J2b0lKYkc5allXeG9iM04wZ2hKamIyTnJjbTloClkyaGtZaTF3ZFdKc2FXT0NHbU52WTJ0eWIyRmphR1JpTFhCMVlteHBZeTVrWldaaGRXeDBnaXhqYjJOcmNtOWgKWTJoa1lpMXdkV0pzYVdNdVpHVm1ZWFZzZEM1emRtTXVZMngxYzNSbGNpNXNiMk5oYklJTktpNWpiMk5yY205aApZMmhrWW9JVktpNWpiMk5yY205aFkyaGtZaTVrWldaaGRXeDBnaWNxTG1OdlkydHliMkZqYUdSaUxtUmxabUYxCmJIUXVjM1pqTG1Oc2RYTjBaWEl1Ykc5allXeUhCSDhBQUFFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFDT3oKT2JsNXl4K0Q2ZFV6c1hPK1lPZG9VZnNlNjVzajk2ZEx3SmhwUjhZc21sY2JiVDJKVzBWckE4VmNLU1NudWhQSgppTWx6RkNzYTJsek1TSXpnU2o3N0hTUXZ2TUxQeXh6K0hFSDVQOTd6Yi9YdkdxWEpxS0t1UDNNLzZmalcyRG9qCks4RWFDQVNsRUNBekpuVkdYOHlZNWNheFY2NlFWRHBxcTJmTjVUVEw0QmtHTW5iWnhaanZJTWFZOEtLNWgwTHMKODhiSDNLTzdieFUyUEszdGFDZVpsTHIwUTVyTWkrM1NTMGRuMEVRV3h2Mi9uaGxqckVDSU0xQzZPcE15amthQgp0bW1icnJPcHREMUZvbjIxb2VERmpsUlJ4WVFKTmYyVFdrUkdkdHRaOVhXVWROblZuY2hId3ZvbTd2eHNHbW85CnBDdTVOSXFPZFp3OHRVa2ZFZ2c9Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K + node.key: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFcFFJQkFBS0NBUUVBdjBtTmdXamhHcVh3Qk90b3JuQ25lWEUwMXNUeStSSGNiN2RxNjNOS3U3M1dOb3ZKClc2TVN4MWNTUVdJbTlNUi9ub0w5NWFQdGxYcnp0Y1NGVnRLcXQ0dllPZUZ3UHpjNGpOVllwNG5Nck9WVE1FYWsKSCtvVW54OFVESkV2bXZWU1doVTlscnJyMk1iYVRGVi8zYnJ4QzFOZHVUQ0tCVTI2bkMvODVJTGd1NTh3L2tWWApPQUhVc2I2VWVqTnV6RDNqL2d5NmZtUjRCYktXZW10dkxLaXV3KzBOYWljcDhxcjdqUUN6YklpSFlkcEhBNW92CktMZjVoOThaTGJqNUoxUEpFYm5ybVNoZ25KQ3Z4NVJKMVF2ZmdNL0JpWk9UeWI0aXNsS0YzQUFqQnVDYjlUeS8KT2MzU2xVT2JVV2pxTW01VzduWThIQXM1NGM5ejgxWHlnYmh1WVFJREFRQUJBb0lCQVFDODlnZlhZcWVjRDNmLwpKQjJRMUxCY0F6elRQRk5aUUErbVBHWmVtTkdtakcxa0RNcW92M3I1ZUVZTVdNMXExZ0hMc0ZMbjJ2d0R3aVdsCjFiQnlpRUVrZC96dGtJbTFxUE13REVFN242Q1UyeVZHZDBJQ1ZOWnlLZDFBWE52T0U3RjZVNmsza1FjU2FiMlQKMHBJeGswNHloZlA3MEx0SGFmV0IvTld4VnFoeUxhWDZIOCt2UkszWmNMU0YwRGY3YUpKRTNuVjFzazlvUGNqcgpxQnpKdDdDZVBZbkRRbWlaNGF3c05zS3Vlc3VvNklLRnpTd0k1ckg5bElDSDk5Vzh1Wk1zbzRMTWtlSThvRTk1CnJIZmVhUFUwOUZtdVpHUWVxcTQ3R2Jid2xJbWFrUzk3NElCanY1dTdhME9hRUN6a3JxVzhBWTRQczVMQVk3TjIKbHlnREJUYkJBb0dCQU5HVVU3YXAzSkRMSkpZa053OFZaMVVSV29rWi82cXE0RDN4cnNET3JtN09lbERjVmdGVQorL2ZKR05yVnBTSGxIZGFPcUU3alVXM3BvWE9JSnpmYjVWTkhVMVlhbXg5Mm5LeTc4WjREa1ZNOWNNbU9ScWZKCmlmZEdGUEV0SHFOb3R3RC9oN2xNZHdMRXFXTVpHSHYyTk9aOSs2RVdMbEl0eGhKd2F5OTF2QXo5QW9HQkFPbW8KQk5xSFU3TXFjbVUvZFpiU2tEYUVYUTVYUUNwVllEaUR2QmdZNXYyOW52NHBBNDF5NjhhajlaUmxuTE9Ic2xtbgp2QnMrc3ZwaVlRV0hPdzRCWlBCSkVjSk56UHlDQTdmSG56K2lOc0hjSEZZcFpqQU12RlhxbG44ZGhnMFc4bUV4CkJYZkxKSHZZZTdwanU2aXhJV2RKWGJNVFpWbUI3eVFSazduUkhCWTFBb0dCQUtBajQ1ZVcwWmU5OGJYYjlFcE4KUTRqbjJyTWFMNWFjUFA1NEZ0enkwS3lRanp3TU1KZVI5WHBQcWZORS9vb1l4U1QyR3JzMHpUcmNJMmJoS1g1dwpReG5RVFdoa3FoVnZqNllaY2pVWWFzb2REM3FqZ1craCt3NzcrUEtVVkczdWpLOXhrYWJRTzd2Y3c4V2FIbkJTCkgvZmpXZ3VycERkZERKVjRXeDZIcXVxTkFvR0JBS0E0R1ZQcjFjWVdoaWpOTWduQXl5akc3TFJudWRVTmhCUmMKcUw3eFhIdUQ2aUVuNklxMjBkdjlFK20xSDVXdnArbDRiakZVZGcvaEk5eFJsWG9PRkxQN3R0VEEycDRQWFJOSgpLL2JMZWJiSEF4dEYrZzlhdkU1QnRQN25OTU9IQjU4RHFWY3lrZ3JtTURsb0tBY05wdlVYUnN3RHNjeUZuNERoCkdLWWpNSm85QW9HQVM0ekFjeWVzWktrVlRyVEFNTkgyMDF6RjZ0UlE2SnhSQm1FM0pMVTF3ZDNIUVd4RDU3Z3MKSWZ5NzVuaUYxY3M2OUVxZDlnd1diaUpnT0tpZHdaY0xTOHNRTENYVjg0cHdKaUFOeC92VzJaYkxGOXREU2xSUQpQb05FWmhPdThyK1owU0I3WU4zQ1NWVTRaQzNvVVMzbWNRTkY4ajFwTkRlem9JTVFmYTByK2F3PQotLS0tLUVORCBSU0EgUFJJVkFURSBLRVktLS0tLQo= +kind: Secret +metadata: + name: cockroachdb.node + namespace: postgres +type: Opaque diff --git a/prod/phpmyadmin/catalog-info.yaml b/prod/phpmyadmin/catalog-info.yaml new file mode 100644 index 0000000..989060d --- /dev/null +++ b/prod/phpmyadmin/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-phpmyadmin + title: Phpmyadmin (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/phpmyadmin/phpmyadmin.yaml b/prod/phpmyadmin/phpmyadmin.yaml new file mode 100755 index 0000000..6f422f6 --- /dev/null +++ b/prod/phpmyadmin/phpmyadmin.yaml @@ -0,0 +1,61 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: phpmyadmin + namespace: mariadb + labels: + app: phpmyadmin +spec: + replicas: 1 + selector: + matchLabels: + app: phpmyadmin + template: + metadata: + labels: + app: phpmyadmin + spec: + containers: + - name: phpmyadmin + image: phpmyadmin + ports: + - containerPort: 80 + env: + - name: PMA_HOST + value: mariadb + - name: PMA_PORT + value: "3306" + - name: MYSQL_ROOT_PASSWORD + value: "zabbix" +--- +apiVersion: v1 +kind: Service +metadata: + name: phpmyadmin + namespace: mariadb +spec: + selector: + app.kubernetes.io/name: phpmyadmin + ports: + - protocol: TCP + port: 80 + targetPort: 80 + selector: + app: phpmyadmin +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: phpmyadmin-tls + namespace: mariadb +spec: + entryPoints: + - websecure + routes: + - match: Host(`phpmyadmin-prod.allarddcs.nl`) + kind: Rule + services: + - name: phpmyadmin + port: 80 + tls: + certResolver: letsencrypt diff --git a/prod/postgres13/README.md b/prod/postgres13/README.md new file mode 100644 index 0000000..28a717a --- /dev/null +++ b/prod/postgres13/README.md @@ -0,0 +1,18 @@ +#corrupte WAL-archive + +#postgres starten zonder database te starten door volgende toe te voegen in yaml:: + + command: ["sh"] + args: ["-c", "while true; do echo $(date -u) >> /tmp/run.log; sleep 5; done"] + +#dan inloggen in draaiende container + +kubectl exec -it postgres14-0 -n postgres -- sh + +#Switchen naar user POSTGRES + +su postgres + +#WAL-arhive resetten: + +pg_resetwal /var/lib/postgresql/data -f diff --git a/prod/postgres13/catalog-info.yaml b/prod/postgres13/catalog-info.yaml new file mode 100644 index 0000000..5e3b29d --- /dev/null +++ b/prod/postgres13/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-postgres13 + title: Postgres13 (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/postgres13/postgres13prod.yaml b/prod/postgres13/postgres13prod.yaml new file mode 100755 index 0000000..19ce3d5 --- /dev/null +++ b/prod/postgres13/postgres13prod.yaml @@ -0,0 +1,93 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: postgres +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgres13-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/postgres13prod + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres13-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: postgres13-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: postgres13 + namespace: postgres +spec: + serviceName: postgres13 + replicas: 1 + selector: + matchLabels: + app: postgres13 + template: + metadata: + labels: + app: postgres13 + spec: + containers: + - name: postgres13 + image: postgres:13 + ports: + - containerPort: 5432 + env: + - name: POSTGRES_DB + value: zabbix + - name: POSTGRES_USER + value: zabbix + - name: POSTGRES_PASSWORD + value: zabbix + - name: POSTGRES_EXTENSIONS + value: pg_trgm + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: postgres + volumes: + - name: postgres + persistentVolumeClaim: + claimName: postgres13-pvc + nodeSelector: + kubernetes.io/arch: arm64 +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres13 + labels: + name: postgres13 + namespace: postgres +spec: + type: ClusterIP + ports: + - port: 5432 + name: postgres + selector: + app: postgres13 diff --git a/prod/postgres14/README.md b/prod/postgres14/README.md new file mode 100644 index 0000000..28a717a --- /dev/null +++ b/prod/postgres14/README.md @@ -0,0 +1,18 @@ +#corrupte WAL-archive + +#postgres starten zonder database te starten door volgende toe te voegen in yaml:: + + command: ["sh"] + args: ["-c", "while true; do echo $(date -u) >> /tmp/run.log; sleep 5; done"] + +#dan inloggen in draaiende container + +kubectl exec -it postgres14-0 -n postgres -- sh + +#Switchen naar user POSTGRES + +su postgres + +#WAL-arhive resetten: + +pg_resetwal /var/lib/postgresql/data -f diff --git a/prod/postgres14/catalog-info.yaml b/prod/postgres14/catalog-info.yaml new file mode 100644 index 0000000..dd0afcb --- /dev/null +++ b/prod/postgres14/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-postgres14 + title: Postgres14 (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/postgres14/postgres14prod.yaml b/prod/postgres14/postgres14prod.yaml new file mode 100755 index 0000000..ec8e816 --- /dev/null +++ b/prod/postgres14/postgres14prod.yaml @@ -0,0 +1,87 @@ +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: postgres14 + namespace: postgres +spec: + serviceName: postgres14 + replicas: 1 + selector: + matchLabels: + app: postgres14 + template: + metadata: + labels: + app: postgres14 + spec: + containers: + + - name: postgres14 + image: postgres:14 +# command: ["sh"] +# args: ["-c", "while true; do echo $(date -u) >> /tmp/run.log; sleep 5; done"] + ports: + - containerPort: 5432 + env: + - name: POSTGRES_DB + value: postgres + - name: POSTGRES_USER + value: postgres + - name: POSTGRES_PASSWORD + value: Postgres14 + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: postgres + volumes: + - name: postgres + persistentVolumeClaim: + claimName: postgres14-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres14 + namespace: postgres + labels: + name: postgres14 +spec: + type: ClusterIP + ports: + - port: 5432 + name: postgres + selector: + app: postgres14 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgres14-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/postgres14prod + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres14-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: postgres14-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi diff --git a/prod/postgres16/catalog-info.yaml b/prod/postgres16/catalog-info.yaml new file mode 100644 index 0000000..7aedc07 --- /dev/null +++ b/prod/postgres16/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-postgres16 + title: Postgres16 (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/postgres16/postgres16prod.yaml b/prod/postgres16/postgres16prod.yaml new file mode 100755 index 0000000..52361c9 --- /dev/null +++ b/prod/postgres16/postgres16prod.yaml @@ -0,0 +1,84 @@ +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: postgres16 + namespace: postgres +spec: + serviceName: postgres16 + replicas: 1 + selector: + matchLabels: + app: postgres16 + template: + metadata: + labels: + app: postgres16 + spec: + containers: + - name: postgres16 + image: postgres:16 + ports: + - containerPort: 5432 + env: + - name: POSTGRES_DB + value: defectdojo + - name: POSTGRES_USER + value: defectdojo + - name: POSTGRES_PASSWORD + value: defectdojo + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: postgres + volumes: + - name: postgres + persistentVolumeClaim: + claimName: postgres16-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres16 + namespace: postgres + labels: + name: postgres16 +spec: + type: ClusterIP + ports: + - port: 5432 + name: postgres + selector: + app: postgres16 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgres16-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/postgres16prod + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres16-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: postgres16-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi diff --git a/prod/spreed/catalog-info.yaml b/prod/spreed/catalog-info.yaml new file mode 100644 index 0000000..d642fcb --- /dev/null +++ b/prod/spreed/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-spreed + title: Spreed (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/spreed/prod/spreed-certificate/spreed-certificate-internal.yaml b/prod/spreed/prod/spreed-certificate/spreed-certificate-internal.yaml new file mode 100644 index 0000000..58edd4a --- /dev/null +++ b/prod/spreed/prod/spreed-certificate/spreed-certificate-internal.yaml @@ -0,0 +1,12 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: spreed-prod.allarddcs.nl + namespace: nextcloud +spec: + secretName: spreed-prod.allarddcs.nl + issuerRef: + name: letsencrypt + kind: ClusterIssuer + dnsNames: + - spreed.nextcloud.svc.cluster.local diff --git a/prod/spreed/prod/spreed-certificate/spreed-certificate.yaml b/prod/spreed/prod/spreed-certificate/spreed-certificate.yaml new file mode 100644 index 0000000..55e0fd2 --- /dev/null +++ b/prod/spreed/prod/spreed-certificate/spreed-certificate.yaml @@ -0,0 +1,12 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: spreed-prod.allarddcs.nl + namespace: nextcloud +spec: + secretName: spreed-prod.allarddcs.nl + issuerRef: + name: letsencrypt + kind: ClusterIssuer + dnsNames: + - spreed-prod.allarddcs.nl diff --git a/prod/spreed/prod/spreed.yaml b/prod/spreed/prod/spreed.yaml new file mode 100644 index 0000000..1da521a --- /dev/null +++ b/prod/spreed/prod/spreed.yaml @@ -0,0 +1,139 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: spreed + namespace: nextcloud +spec: + replicas: 1 + selector: + matchLabels: + app: spreed + template: + metadata: + labels: + app: spreed + spec: + containers: + - name: spreed + image: ghcr.io/strukturag/nextcloud-spreed-signaling:latest + ports: + - containerPort: 3478 + - containerPort: 5349 + - containerPort: 8443 + - containerPort: 8080 + volumeMounts: + - mountPath: /var/run + name: spreed-socket + - mountPath: /etc/tls + name: spreed-prod-cert + readOnly: true + - name: spreed-config + mountPath: /config/server.conf # Mount location inside the container + subPath: server.conf # Ensure we only mount the file, not the entire directory + volumes: + - name: spreed-socket + emptyDir: {} + - name: spreed-prod-cert + secret: + secretName: spreed-prod.allarddcs.nl + - name: spreed-config + persistentVolumeClaim: + claimName: spreed-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: spreed + namespace: nextcloud +spec: + type: ClusterIP + selector: + app: spreed + ports: + - name: websocket-web + protocol: TCP + port: 8080 + targetPort: 8080 + - name: websocket + protocol: TCP + port: 8443 + targetPort: 8443 + - name: stun-port + protocol: TCP + port: 3478 + targetPort: 3478 + - name: signaling-port + protocol: TCP + port: 5349 + targetPort: 5349 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: spreed-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/spreed + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: spreed-pvc + namespace: nextcloud +spec: + storageClassName: "" + volumeName: spreed-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: spreed + namespace: nextcloud +spec: + entryPoints: + - websecure + routes: + - match: Host(`spreed-prod.allarddcs.nl`) + kind: Rule + services: + - name: spreed + port: 8080 +# middlewares: +# - name: websocket-headers +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: websocket-headers + namespace: nextcloud +spec: + headers: + customRequestHeaders: + X-Forwarded-Proto: "https" + customResponseHeaders: + Connection: "Upgrade" + Upgrade: "websocket" + accessControlAllowMethods: + - GET + - OPTIONS + - POST + accessControlAllowHeaders: + - "*" + diff --git a/prod/traefik/README.md b/prod/traefik/README.md new file mode 100755 index 0000000..611fb57 --- /dev/null +++ b/prod/traefik/README.md @@ -0,0 +1,36 @@ +1) traefik installeren via helmchart: +helm repo add traefik https://helm.traefik.io/traefik +helm repo update +kubectl create namespace traefik + +2) persistent storage aanmaken: + +kubectl apply -f traefik-pvc.yaml + +When enabling persistence for certificates, permissions on acme.json can be +lost when Traefik restarts. You can ensure correct permissions with an +initContainer. See https://github.com/traefik/traefik-helm-chart/blob/master/EXAMPLES.md#use-traefik-native-lets-encrypt-integration-without-cert-manager + +3) Installeren + +helm install traefik traefik/traefik -f values.yaml -n traefik + +CHECK OF PORTFORWARDING VAN POORT 80 en 443 OP DE ROUTER NAAR DE LOADBALANCER GOED STAAT! +HERSTART NA WIJZIGING DE KPN-ROUTER! + +4) TLS verzwaren (tlsoption.yml is afkomstig van whoami-voorbeeld) + +kubectl apply -f tlsoption.yaml + +7) Daschboard toegankelijk maken (dashboard.yaml is afkomstig van helm-documentatie van traefik zelf) + +kubectl apply -f ingressroute-dashboard.yaml - n traefik + +#migreren: + +kubectl apply -f https://raw.githubusercontent.com/traefik/traefik/v2.10/docs/content/reference/dynamic-configuration/kubernetes-crd-rbac.yml +kubectl apply -f https://raw.githubusercontent.com/traefik/traefik/v2.10/docs/content/reference/dynamic-configuration/kubernetes-crd-definition-v1.yml + + + + diff --git a/prod/traefik/catalog-info.yaml b/prod/traefik/catalog-info.yaml new file mode 100644 index 0000000..eb9a606 --- /dev/null +++ b/prod/traefik/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-traefik + title: Traefik (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/traefik/clusterrole.yaml b/prod/traefik/clusterrole.yaml new file mode 100644 index 0000000..b05dc5c --- /dev/null +++ b/prod/traefik/clusterrole.yaml @@ -0,0 +1,11 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: traefik +rules: + - apiGroups: ["traefik.io"] + resources: ["ingressroutes", "ingressroutesstatus"] + verbs: ["get", "list", "watch", "create", "update", "delete"] + - apiGroups: [""] + resources: ["services", "endpoints", "pods", "secrets"] + verbs: ["get", "list", "watch"] diff --git a/prod/traefik/clusterrolebinding.yaml b/prod/traefik/clusterrolebinding.yaml new file mode 100644 index 0000000..25a61c9 --- /dev/null +++ b/prod/traefik/clusterrolebinding.yaml @@ -0,0 +1,12 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: traefik-ingressroute +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: traefik +subjects: + - kind: ServiceAccount + name: traefik + namespace: traefik diff --git a/prod/traefik/ingressroute-dashboard.yaml b/prod/traefik/ingressroute-dashboard.yaml new file mode 100755 index 0000000..6e1886d --- /dev/null +++ b/prod/traefik/ingressroute-dashboard.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: traefik-dashboard + namespace: traefik +spec: + entryPoints: + - websecure + routes: + - match: Host(`traefik-prod.allarddcs.nl`) && (PathPrefix(`/dashboard`) || PathPrefix(`/api`)) + kind: Rule + services: + - name: api@internal + kind: TraefikService diff --git a/prod/traefik/tlsoption.yaml b/prod/traefik/tlsoption.yaml new file mode 100755 index 0000000..5a0c5b9 --- /dev/null +++ b/prod/traefik/tlsoption.yaml @@ -0,0 +1,8 @@ +apiVersion: traefik.io/v1alpha1 +kind: TLSOption +metadata: + name: tsloption + namespace: traefik +spec: + minVersion: VersionTLS12 + diff --git a/prod/traefik/traefik-pvc.yaml b/prod/traefik/traefik-pvc.yaml new file mode 100644 index 0000000..09f4430 --- /dev/null +++ b/prod/traefik/traefik-pvc.yaml @@ -0,0 +1,34 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: traefik-pv +spec: + storageClassName: "" + capacity: + storage: 128Mi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/traefik/prod + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: traefik-pvc + namespace: traefik +spec: + storageClassName: "" + volumeName: traefik-pv + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 128Mi + diff --git a/prod/traefik/values.yaml b/prod/traefik/values.yaml new file mode 100755 index 0000000..ec6884c --- /dev/null +++ b/prod/traefik/values.yaml @@ -0,0 +1,218 @@ +USER-SUPPLIED VALUES: +additionalArguments: [] +additionalVolumeMounts: [] +affinity: {} +autoscaling: + enabled: false +certificatesResolvers: + letsencrypt: + acme: + email: admin@allarddcs.nl + storage: /data/acme.json + httpChallenge: + entryPoint: web +commonLabels: {} +core: + defaultRuleSyntax: v2 +deployment: + additionalContainers: [] + additionalVolumes: [] + annotations: {} + dnsConfig: {} + enabled: true + imagePullSecrets: [] + initContainers: + - name: volume-permissions + image: busybox:latest + command: ["sh", "-c", "touch /data/acme.json; chmod -v 600 /data/acme.json"] + volumeMounts: + - mountPath: /data + name: data + kind: Deployment + labels: {} + lifecycle: {} + minReadySeconds: 0 + podAnnotations: {} + podLabels: {} + replicas: 1 + runtimeClassName: null + shareProcessNamespace: false + terminationGracePeriodSeconds: 60 +env: +envFrom: [] +experimental: + kubernetesGateway: + enabled: false + plugins: {} +extraObjects: [] +globalArguments: +- --global.checknewversion +- --global.sendanonymoususage +hostNetwork: false +image: + pullPolicy: Always + registry: docker.io + repository: traefik + tag: "" +ingressClass: + enabled: true + isDefaultClass: true +ingressRoute: + dashboard: + annotations: {} + enabled: true + entryPoints: + - traefik + labels: {} + matchRule: PathPrefix(`/dashboard`) || PathPrefix(`/api`) + middlewares: [] + tls: {} + healthcheck: + annotations: {} + enabled: false + entryPoints: + - traefik + labels: {} + matchRule: PathPrefix(`/ping`) + middlewares: [] + tls: {} +livenessProbe: + failureThreshold: 3 + initialDelaySeconds: 2 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 2 +logs: + access: + enabled: false + fields: + general: + defaultmode: keep + names: {} + headers: + defaultmode: drop + names: {} + filters: {} + general: + level: ERROR +metrics: + prometheus: + entryPoint: metrics +nodeSelector: {} +persistence: + enabled: true + existingClaim: traefik-pvc + path: /data +podDisruptionBudget: + enabled: false +podSecurityContext: + fsGroupChangePolicy: OnRootMismatch + runAsGroup: 65532 + runAsNonRoot: true + runAsUser: 65532 +podSecurityPolicy: + enabled: false +ports: + metrics: + expose: + default: false + exposedPort: 9100 + port: 9100 + protocol: TCP + traefik: + expose: + default: true + exposedPort: 9000 + port: 9000 + protocol: TCP + web: + expose: + default: true + exposedPort: 80 + port: 8000 + protocol: TCP + allowACMEByPass: true + websecure: + expose: + default: true + exposedPort: 443 + http3: + enabled: false + forwardedHeaders: + trustedIPs: + - "10.0.0.0/8" # Adjust based on your network + - "192.168.0.0/16" + - "172.16.0.0/12" + middlewares: [] + port: 8443 + protocol: TCP + allowACMEByPass: true + tls: + certResolver: "" + domains: [] + enabled: true + options: "" +priorityClassName: "" +providers: + file: + content: "" + enabled: false + watch: true + kubernetesCRD: + allowCrossNamespace: false + allowEmptyServices: false + allowExternalNameServices: false + enabled: true + namespaces: [] + kubernetesIngress: + allowEmptyServices: false + allowExternalNameServices: false + disableIngressClassLookup: false + enabled: true + namespaces: [] + publishedService: + enabled: false +rbac: + enabled: true + namespaced: false + secretResourceNames: [] +readinessProbe: + failureThreshold: 1 + initialDelaySeconds: 2 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 2 +resources: {} +securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + readOnlyRootFilesystem: true +service: + additionalServices: {} + annotations: {} + annotationsTCP: {} + annotationsUDP: {} + enabled: true + externalIPs: [] + labels: {} + loadBalancerSourceRanges: [] + single: true + spec: {} + type: LoadBalancer +serviceAccount: + name: "" +serviceAccountAnnotations: {} +startupProbe: null +tlsOptions: {} +tlsStore: {} +tolerations: [] +topologySpreadConstraints: [] +tracing: {} +updateStrategy: + rollingUpdate: + maxSurge: 1 + maxUnavailable: 0 + type: RollingUpdate +volumes: [] diff --git a/prod/wordpress/catalog-info.yaml b/prod/wordpress/catalog-info.yaml new file mode 100644 index 0000000..683a283 --- /dev/null +++ b/prod/wordpress/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-wordpress + title: Wordpress (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/wordpress/prod/ingressroute-http.yml b/prod/wordpress/prod/ingressroute-http.yml new file mode 100755 index 0000000..496d2b2 --- /dev/null +++ b/prod/wordpress/prod/ingressroute-http.yml @@ -0,0 +1,15 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: wordpress-http +spec: + entryPoints: + - web + routes: + - match: Host(`wordpress.alldcs.nl`) + kind: Rule + middlewares: + - name: redirect-to-https + services: + - name: wordpress + port: 80 diff --git a/prod/wordpress/prod/ingressroute-tls.yml b/prod/wordpress/prod/ingressroute-tls.yml new file mode 100755 index 0000000..ddc2da4 --- /dev/null +++ b/prod/wordpress/prod/ingressroute-tls.yml @@ -0,0 +1,15 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: wordpress-tls +spec: + entryPoints: + - websecure + routes: + - match: Host(`wordpress.alldcs.nl`) + kind: Rule + services: + - name: wordpress + port: 80 + tls: + certResolver: letsencrypt diff --git a/prod/wordpress/prod/wordpress-pv.yaml b/prod/wordpress/prod/wordpress-pv.yaml new file mode 100755 index 0000000..aff60b0 --- /dev/null +++ b/prod/wordpress/prod/wordpress-pv.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: wordpress-pv + labels: + type: local +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/wordpress + readOnly: false diff --git a/prod/wordpress/prod/wordpress-pvc.yaml b/prod/wordpress/prod/wordpress-pvc.yaml new file mode 100755 index 0000000..be93b40 --- /dev/null +++ b/prod/wordpress/prod/wordpress-pvc.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: wordpress-pvc +spec: + storageClassName: "" + volumeName: wordpress-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1G + + + + + diff --git a/prod/wordpress/prod/wordpress.yaml b/prod/wordpress/prod/wordpress.yaml new file mode 100755 index 0000000..f5f306f --- /dev/null +++ b/prod/wordpress/prod/wordpress.yaml @@ -0,0 +1,51 @@ +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: wordpress +spec: + replicas: 1 + selector: + matchLabels: + app: wordpress + template: + metadata: + labels: + app: wordpress + spec: + containers: + - name: wordpress + image: wordpress + ports: + - containerPort: 80 + name: wordpress + volumeMounts: + - name: wordpress-data + mountPath: /var/www + env: + - name: WORDPRESS_DB_HOST + value: mariadb-service + - name: WORDPRESS_DB_PASSWORD + value: wordpress + - name: WORDPRESS_DB_USER + value: wordpress + - name: WORDPRESS_DB_NAME + value: wordpress + volumes: + - name: wordpress-data + persistentVolumeClaim: + claimName: wordpress-pvc +--- +kind: Service +apiVersion: v1 +metadata: + name: wordpress +spec: + type: NodePort + selector: + app: wordpress + ports: + - name: http + protocol: TCP + port: 80 + targetPort: 80 diff --git a/prod/wordpress/riscv/README.md b/prod/wordpress/riscv/README.md new file mode 100644 index 0000000..be3d99f --- /dev/null +++ b/prod/wordpress/riscv/README.md @@ -0,0 +1,2 @@ +user: admin +password: Wz76)2Tbv%vB!4)5R& diff --git a/prod/wordpress/riscv/ingressroutes.yaml b/prod/wordpress/riscv/ingressroutes.yaml new file mode 100644 index 0000000..00a5f7d --- /dev/null +++ b/prod/wordpress/riscv/ingressroutes.yaml @@ -0,0 +1,46 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: wordpress-http + namespace: wordpress +spec: + entryPoints: + - web + routes: + - match: Host(`wordpress-riscv.allarddcs.nl`) + kind: Rule + services: + - name: joomla + port: 80 + middlewares: + - name: redirect-to-https + namespace: wordpress +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: wordpress-tls + namespace: wordpress +spec: + entryPoints: + - websecure + routes: + - match: Host(`wordpress-riscv.allarddcs.nl`) + kind: Rule + services: + - name: wordpress + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: redirect-to-https + namespace: wordpress +spec: + redirectScheme: + scheme: https + permanent: true + + diff --git a/prod/wordpress/riscv/wordpress.yaml b/prod/wordpress/riscv/wordpress.yaml new file mode 100755 index 0000000..1eee943 --- /dev/null +++ b/prod/wordpress/riscv/wordpress.yaml @@ -0,0 +1,153 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: wordpress + namespace: wordpress + labels: + app: wordpress +spec: + replicas: 1 + selector: + matchLabels: + app: wordpress + strategy: + rollingUpdate: + maxSurge: 0 + maxUnavailable: 1 + type: RollingUpdate + template: + metadata: + labels: + app: wordpress + spec: + containers: + - image: riscv64/wordpress:6.7.2-php8.1-fpm-alpine + name: wordpress + imagePullPolicy: Always + env: + - name: WORDPRESS_DB_HOST + value: "mariadb.mariadb" + - name: WORDPRESS_DB_PASSWORD + value: "wordpress" + - name: WORDPRESS_DB_USER + value: "wordpress" + - name: WORDPRESS_DB_NAME + value: "wordpress" + ports: + - containerPort: 9000 + name: php-fpm + protocol: TCP + volumeMounts: + - name: nfs-wordpress + mountPath: /var/www/html + subPath: html + - name: nginx + image: riscv64/nginx:1.27.4-alpine + ports: + - containerPort: 80 + volumeMounts: + - name: nfs-wordpress + mountPath: /var/www/html + subPath: html + - name: nfs-wordpress + mountPath: /etc/nginx/conf.d/default.conf + subPath: default.conf + volumes: + - name: nfs-wordpress + persistentVolumeClaim: + claimName: wordpress-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: wordpress + namespace: wordpress +spec: + selector: + app: wordpress + ports: + - protocol: TCP + port: 80 + targetPort: 80 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: wordpress-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/wordpress/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: wordpress-pvc + namespace: wordpress +spec: + storageClassName: "" + volumeName: wordpress-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: wordpress-http + namespace: wordpress +spec: + entryPoints: + - web + routes: + - match: Host(`wordpress-riscv.allarddcs.nl`) + kind: Rule + services: + - name: wordpress + port: 80 + middlewares: + - name: redirect-to-https + namespace: wordpress +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: wordpress-tls + namespace: wordpress +spec: + entryPoints: + - websecure + routes: + - match: Host(`wordpress-riscv.allarddcs.nl`) + kind: Rule + services: + - name: wordpress + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: redirect-to-https + namespace: wordpress +spec: + redirectScheme: + scheme: https + permanent: true + + + diff --git a/prod/xwiki/catalog-info.yaml b/prod/xwiki/catalog-info.yaml new file mode 100644 index 0000000..82d36a2 --- /dev/null +++ b/prod/xwiki/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: prod-xwiki + title: Xwiki (prod) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/prod/xwiki/xwiki.yaml b/prod/xwiki/xwiki.yaml new file mode 100755 index 0000000..0105596 --- /dev/null +++ b/prod/xwiki/xwiki.yaml @@ -0,0 +1,128 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: xwiki + namespace: xwiki + labels: + app: xwiki +spec: + replicas: 1 + selector: + matchLabels: + app: xwiki + template: + metadata: + labels: + app: xwiki + spec: + containers: + - name: xwiki + image: xwiki + ports: + - containerPort: 8080 + env: + - name: DB_DATABASE + value: xwiki + - name: DB_USER + value: xwiki + - name: DB_PASSWORD + value: xwiki + - name: DB_HOST + value: mariadb.mariadb + volumeMounts: + - mountPath: "/usr/local/xwiki" + name: xwikidata + volumes: + - name: xwikidata + persistentVolumeClaim: + claimName: xwiki-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: xwiki + namespace: xwiki + labels: + app: xwiki +spec: + ports: + - port: 8080 + protocol: TCP + selector: + app: xwiki + type: NodePort +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: xwiki-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/xwiki + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: xwiki-pvc + namespace: xwiki +spec: + storageClassName: "" + volumeName: xwiki-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: xwiki-http + namespace: xwiki +spec: + entryPoints: + - web + routes: + - match: Host(`xwiki-prod.allarddcs.nl`) + kind: Rule + middlewares: + services: + - name: xwiki + port: 8080 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: xwiki-tls + namespace: xwiki +spec: + entryPoints: + - websecure + routes: + - match: Host(`xwiki-prod.allarddcs.nl`) + kind: Rule + services: + - name: xwiki + port: 8080 + tls: + certResolver: letsencrypt + + + + + + + + diff --git a/push.sh b/push.sh new file mode 100755 index 0000000..858ba52 --- /dev/null +++ b/push.sh @@ -0,0 +1,6 @@ +#!/bin/bash +set -e +git add * +git commit -m "change" || true # don't fail if nothing to commit +git push https://allardkrings:$GITHUB_TOKEN@github.com/allardkrings/kubernetes.git master +git push https://allard:$GITEA_TOKEN@gitea-dev.allarddcs.nl/allardDCS/kubernetes.git master diff --git a/riscv/README.md b/riscv/README.md new file mode 100644 index 0000000..fd58af8 --- /dev/null +++ b/riscv/README.md @@ -0,0 +1 @@ +Dit zijn alle services op het PROD-cluster: diff --git a/riscv/argo-workflows/README.md b/riscv/argo-workflows/README.md new file mode 100644 index 0000000..347c267 --- /dev/null +++ b/riscv/argo-workflows/README.md @@ -0,0 +1,10 @@ +#Ingressroutes: + +Blijkbaar moet je ingressrouteTCP configureren op API traefik.io. +Kortom, geen TLS-interrupt door traefik, maar verkeer op entrypoint 443/websecure gewoon ongewijzigd doorsturen naar argo-server + +#Over de workflow + +Je moet een pvc aanmaken om gegevens door te geven tussen de steps. +Voor build moet je de docker directory mounten in de container met maven. +Voor deploy moet je een kubeconfig mounten de verwijst naar kubernetes op de host. diff --git a/riscv/argo-workflows/argo-workflows-install.yaml b/riscv/argo-workflows/argo-workflows-install.yaml new file mode 100644 index 0000000..513d24a --- /dev/null +++ b/riscv/argo-workflows/argo-workflows-install.yaml @@ -0,0 +1,1354 @@ +# This is an auto-generated file. DO NOT EDIT +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: clusterworkflowtemplates.argoproj.io +spec: + group: argoproj.io + names: + kind: ClusterWorkflowTemplate + listKind: ClusterWorkflowTemplateList + plural: clusterworkflowtemplates + shortNames: + - clusterwftmpl + - cwft + singular: clusterworkflowtemplate + scope: Cluster + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + properties: + apiVersion: + type: string + kind: + type: string + metadata: + type: object + spec: + type: object + x-kubernetes-map-type: atomic + x-kubernetes-preserve-unknown-fields: true + required: + - metadata + - spec + type: object + served: true + storage: true +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: cronworkflows.argoproj.io +spec: + group: argoproj.io + names: + kind: CronWorkflow + listKind: CronWorkflowList + plural: cronworkflows + shortNames: + - cwf + - cronwf + singular: cronworkflow + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + properties: + apiVersion: + type: string + kind: + type: string + metadata: + type: object + spec: + type: object + x-kubernetes-map-type: atomic + x-kubernetes-preserve-unknown-fields: true + status: + type: object + x-kubernetes-map-type: atomic + x-kubernetes-preserve-unknown-fields: true + required: + - metadata + - spec + type: object + served: true + storage: true +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: workflowartifactgctasks.argoproj.io +spec: + group: argoproj.io + names: + kind: WorkflowArtifactGCTask + listKind: WorkflowArtifactGCTaskList + plural: workflowartifactgctasks + shortNames: + - wfat + singular: workflowartifactgctask + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + properties: + apiVersion: + type: string + kind: + type: string + metadata: + type: object + spec: + type: object + x-kubernetes-map-type: atomic + x-kubernetes-preserve-unknown-fields: true + status: + type: object + x-kubernetes-map-type: atomic + x-kubernetes-preserve-unknown-fields: true + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: + status: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: workfloweventbindings.argoproj.io +spec: + group: argoproj.io + names: + kind: WorkflowEventBinding + listKind: WorkflowEventBindingList + plural: workfloweventbindings + shortNames: + - wfeb + singular: workfloweventbinding + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + properties: + apiVersion: + type: string + kind: + type: string + metadata: + type: object + spec: + type: object + x-kubernetes-map-type: atomic + x-kubernetes-preserve-unknown-fields: true + required: + - metadata + - spec + type: object + served: true + storage: true +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: workflows.argoproj.io +spec: + group: argoproj.io + names: + kind: Workflow + listKind: WorkflowList + plural: workflows + shortNames: + - wf + singular: workflow + scope: Namespaced + versions: + - additionalPrinterColumns: + - description: Status of the workflow + jsonPath: .status.phase + name: Status + type: string + - description: When the workflow was started + format: date-time + jsonPath: .status.startedAt + name: Age + type: date + - description: Human readable message indicating details about why the workflow + is in this condition. + jsonPath: .status.message + name: Message + type: string + name: v1alpha1 + schema: + openAPIV3Schema: + properties: + apiVersion: + type: string + kind: + type: string + metadata: + type: object + spec: + type: object + x-kubernetes-map-type: atomic + x-kubernetes-preserve-unknown-fields: true + status: + type: object + x-kubernetes-map-type: atomic + x-kubernetes-preserve-unknown-fields: true + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: workflowtaskresults.argoproj.io +spec: + group: argoproj.io + names: + kind: WorkflowTaskResult + listKind: WorkflowTaskResultList + plural: workflowtaskresults + singular: workflowtaskresult + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + properties: + apiVersion: + type: string + kind: + type: string + message: + type: string + metadata: + type: object + outputs: + properties: + artifacts: + items: + properties: + archive: + properties: + none: + type: object + tar: + properties: + compressionLevel: + format: int32 + type: integer + type: object + zip: + type: object + type: object + archiveLogs: + type: boolean + artifactGC: + properties: + podMetadata: + properties: + annotations: + additionalProperties: + type: string + type: object + labels: + additionalProperties: + type: string + type: object + type: object + serviceAccountName: + type: string + strategy: + enum: + - "" + - OnWorkflowCompletion + - OnWorkflowDeletion + - Never + type: string + type: object + artifactory: + properties: + passwordSecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + url: + type: string + usernameSecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + required: + - url + type: object + azure: + properties: + accountKeySecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + blob: + type: string + container: + type: string + endpoint: + type: string + useSDKCreds: + type: boolean + required: + - blob + - container + - endpoint + type: object + deleted: + type: boolean + from: + type: string + fromExpression: + type: string + gcs: + properties: + bucket: + type: string + key: + type: string + serviceAccountKeySecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + required: + - key + type: object + git: + properties: + branch: + type: string + depth: + format: int64 + type: integer + disableSubmodules: + type: boolean + fetch: + items: + type: string + type: array + insecureIgnoreHostKey: + type: boolean + passwordSecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + repo: + type: string + revision: + type: string + singleBranch: + type: boolean + sshPrivateKeySecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + usernameSecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + required: + - repo + type: object + globalName: + type: string + hdfs: + properties: + addresses: + items: + type: string + type: array + force: + type: boolean + hdfsUser: + type: string + krbCCacheSecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + krbConfigConfigMap: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + krbKeytabSecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + krbRealm: + type: string + krbServicePrincipalName: + type: string + krbUsername: + type: string + path: + type: string + required: + - path + type: object + http: + properties: + auth: + properties: + basicAuth: + properties: + passwordSecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + usernameSecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + type: object + clientCert: + properties: + clientCertSecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + clientKeySecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + type: object + oauth2: + properties: + clientIDSecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + clientSecretSecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + endpointParams: + items: + properties: + key: + type: string + value: + type: string + required: + - key + type: object + type: array + scopes: + items: + type: string + type: array + tokenURLSecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + type: object + type: object + headers: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + url: + type: string + required: + - url + type: object + mode: + format: int32 + type: integer + name: + type: string + optional: + type: boolean + oss: + properties: + accessKeySecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + bucket: + type: string + createBucketIfNotPresent: + type: boolean + endpoint: + type: string + key: + type: string + lifecycleRule: + properties: + markDeletionAfterDays: + format: int32 + type: integer + markInfrequentAccessAfterDays: + format: int32 + type: integer + type: object + secretKeySecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + securityToken: + type: string + useSDKCreds: + type: boolean + required: + - key + type: object + path: + type: string + raw: + properties: + data: + type: string + required: + - data + type: object + recurseMode: + type: boolean + s3: + properties: + accessKeySecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + bucket: + type: string + caSecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + createBucketIfNotPresent: + properties: + objectLocking: + type: boolean + type: object + encryptionOptions: + properties: + enableEncryption: + type: boolean + kmsEncryptionContext: + type: string + kmsKeyId: + type: string + serverSideCustomerKeySecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + type: object + endpoint: + type: string + insecure: + type: boolean + key: + type: string + region: + type: string + roleARN: + type: string + secretKeySecret: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + useSDKCreds: + type: boolean + type: object + subPath: + type: string + required: + - name + type: object + type: array + exitCode: + type: string + parameters: + items: + properties: + default: + type: string + description: + type: string + enum: + items: + type: string + type: array + globalName: + type: string + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + type: string + optional: + type: boolean + required: + - key + type: object + default: + type: string + event: + type: string + expression: + type: string + jqFilter: + type: string + jsonPath: + type: string + parameter: + type: string + path: + type: string + supplied: + type: object + type: object + required: + - name + type: object + type: array + result: + type: string + type: object + phase: + type: string + progress: + type: string + required: + - metadata + type: object + served: true + storage: true +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: workflowtasksets.argoproj.io +spec: + group: argoproj.io + names: + kind: WorkflowTaskSet + listKind: WorkflowTaskSetList + plural: workflowtasksets + shortNames: + - wfts + singular: workflowtaskset + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + properties: + apiVersion: + type: string + kind: + type: string + metadata: + type: object + spec: + type: object + x-kubernetes-map-type: atomic + x-kubernetes-preserve-unknown-fields: true + status: + type: object + x-kubernetes-map-type: atomic + x-kubernetes-preserve-unknown-fields: true + required: + - metadata + - spec + type: object + served: true + storage: true + subresources: + status: {} +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: workflowtemplates.argoproj.io +spec: + group: argoproj.io + names: + kind: WorkflowTemplate + listKind: WorkflowTemplateList + plural: workflowtemplates + shortNames: + - wftmpl + singular: workflowtemplate + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + properties: + apiVersion: + type: string + kind: + type: string + metadata: + type: object + spec: + type: object + x-kubernetes-map-type: atomic + x-kubernetes-preserve-unknown-fields: true + required: + - metadata + - spec + type: object + served: true + storage: true +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: argo + namespace: argo +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: argo-server + namespace: argo +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: argo-role + namespace: argo +rules: +- apiGroups: + - coordination.k8s.io + resources: + - leases + verbs: + - create + - get + - update +- apiGroups: + - "" + resources: + - secrets + verbs: + - get +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + labels: + rbac.authorization.k8s.io/aggregate-to-admin: "true" + name: argo-aggregate-to-admin +rules: +- apiGroups: + - argoproj.io + resources: + - workflows + - workflows/finalizers + - workfloweventbindings + - workfloweventbindings/finalizers + - workflowtemplates + - workflowtemplates/finalizers + - cronworkflows + - cronworkflows/finalizers + - clusterworkflowtemplates + - clusterworkflowtemplates/finalizers + - workflowtasksets + - workflowtasksets/finalizers + - workflowtaskresults + - workflowtaskresults/finalizers + verbs: + - create + - delete + - deletecollection + - get + - list + - patch + - update + - watch +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + labels: + rbac.authorization.k8s.io/aggregate-to-edit: "true" + name: argo-aggregate-to-edit +rules: +- apiGroups: + - argoproj.io + resources: + - workflows + - workflows/finalizers + - workfloweventbindings + - workfloweventbindings/finalizers + - workflowtemplates + - workflowtemplates/finalizers + - cronworkflows + - cronworkflows/finalizers + - clusterworkflowtemplates + - clusterworkflowtemplates/finalizers + - workflowtaskresults + - workflowtaskresults/finalizers + verbs: + - create + - delete + - deletecollection + - get + - list + - patch + - update + - watch +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + labels: + rbac.authorization.k8s.io/aggregate-to-view: "true" + name: argo-aggregate-to-view +rules: +- apiGroups: + - argoproj.io + resources: + - workflows + - workflows/finalizers + - workfloweventbindings + - workfloweventbindings/finalizers + - workflowtemplates + - workflowtemplates/finalizers + - cronworkflows + - cronworkflows/finalizers + - clusterworkflowtemplates + - clusterworkflowtemplates/finalizers + - workflowtaskresults + - workflowtaskresults/finalizers + verbs: + - get + - list + - watch +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: argo-cluster-role +rules: +- apiGroups: + - "" + resources: + - pods + - pods/exec + verbs: + - create + - get + - list + - watch + - update + - patch + - delete +- apiGroups: + - "" + resources: + - configmaps + verbs: + - get + - watch + - list +- apiGroups: + - "" + resources: + - persistentvolumeclaims + - persistentvolumeclaims/finalizers + verbs: + - create + - update + - delete + - get +- apiGroups: + - argoproj.io + resources: + - workflows + - workflows/finalizers + - workflowtasksets + - workflowtasksets/finalizers + - workflowartifactgctasks + verbs: + - get + - list + - watch + - update + - patch + - delete + - create +- apiGroups: + - argoproj.io + resources: + - workflowtemplates + - workflowtemplates/finalizers + - clusterworkflowtemplates + - clusterworkflowtemplates/finalizers + verbs: + - get + - list + - watch +- apiGroups: + - argoproj.io + resources: + - workflowtaskresults + verbs: + - list + - watch + - deletecollection +- apiGroups: + - "" + resources: + - serviceaccounts + verbs: + - get + - list +- apiGroups: + - argoproj.io + resources: + - cronworkflows + - cronworkflows/finalizers + verbs: + - get + - list + - watch + - update + - patch + - delete +- apiGroups: + - "" + resources: + - events + verbs: + - create + - patch +- apiGroups: + - policy + resources: + - poddisruptionbudgets + verbs: + - create + - get + - delete +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: argo-server-cluster-role +rules: +- apiGroups: + - "" + resources: + - configmaps + verbs: + - get + - watch + - list +- apiGroups: + - "" + resources: + - secrets + verbs: + - get + - create +- apiGroups: + - "" + resources: + - pods + - pods/exec + - pods/log + verbs: + - get + - list + - watch + - delete +- apiGroups: + - "" + resources: + - events + verbs: + - watch + - create + - patch +- apiGroups: + - "" + resources: + - serviceaccounts + verbs: + - get + - list + - watch +- apiGroups: + - argoproj.io + resources: + - eventsources + - sensors + - workflows + - workfloweventbindings + - workflowtemplates + - cronworkflows + - clusterworkflowtemplates + verbs: + - create + - get + - list + - watch + - update + - patch + - delete +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: argo-binding + namespace: argo +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: argo-role +subjects: +- kind: ServiceAccount + name: argo + namespace: argo +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: argo-binding +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: argo-cluster-role +subjects: +- kind: ServiceAccount + name: argo + namespace: argo +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: argo-server-binding +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: argo-server-cluster-role +subjects: +- kind: ServiceAccount + name: argo-server + namespace: argo +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: workflow-controller-configmap + namespace: argo +--- +apiVersion: v1 +kind: Service +metadata: + name: argo-server + namespace: argo +spec: + ports: + - name: web + port: 2746 + targetPort: 2746 + selector: + app: argo-server +--- +apiVersion: scheduling.k8s.io/v1 +kind: PriorityClass +metadata: + name: workflow-controller +value: 1000000 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: argo-server + namespace: argo +spec: + selector: + matchLabels: + app: argo-server + template: + metadata: + labels: + app: argo-server + spec: + containers: + - args: + - server + - "--auth-mode=server" + env: [] + image: carvicsforth/argocli:master-linux-riscv64 + name: argo-server + ports: + - containerPort: 2746 + name: web + readinessProbe: + httpGet: + path: / + port: 2746 + scheme: HTTPS + initialDelaySeconds: 10 + periodSeconds: 20 + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + readOnlyRootFilesystem: true + runAsNonRoot: true + volumeMounts: + - mountPath: /tmp + name: tmp + nodeSelector: + kubernetes.io/os: linux + securityContext: + runAsNonRoot: true + serviceAccountName: argo-server + volumes: + - emptyDir: {} + name: tmp +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: workflow-controller + namespace: argo +spec: + selector: + matchLabels: + app: workflow-controller + template: + metadata: + labels: + app: workflow-controller + spec: + containers: + - args: + - "--executor-image=carvicsforth/argoexec:master-linux-riscv64" + command: + - workflow-controller + env: + - name: LEADER_ELECTION_IDENTITY + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: metadata.name + image: carvicsforth/workflow-controller:master-linux-riscv64 + livenessProbe: + failureThreshold: 3 + httpGet: + path: /healthz + port: 6060 + initialDelaySeconds: 90 + periodSeconds: 60 + timeoutSeconds: 30 + name: workflow-controller + ports: + - containerPort: 9090 + name: metrics + - containerPort: 6060 + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + readOnlyRootFilesystem: true + runAsNonRoot: true + nodeSelector: + kubernetes.io/os: linux + priorityClassName: workflow-controller + securityContext: + runAsNonRoot: true + serviceAccountName: argo diff --git a/riscv/argo-workflows/argo-workflows-pvc.yaml b/riscv/argo-workflows/argo-workflows-pvc.yaml new file mode 100644 index 0000000..170219a --- /dev/null +++ b/riscv/argo-workflows/argo-workflows-pvc.yaml @@ -0,0 +1,31 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: argo-workflows-pv + labels: + type: local +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/argo-workflows/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: argo-workflows-pvc + namespace: argo +spec: + storageClassName: "" + volumeName: argo-workflows-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi diff --git a/riscv/argo-workflows/catalog-info.yaml b/riscv/argo-workflows/catalog-info.yaml new file mode 100644 index 0000000..f594d0e --- /dev/null +++ b/riscv/argo-workflows/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-argo-workflows + title: Argo-workflows (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/argo-workflows/create-docker-credentials.sh b/riscv/argo-workflows/create-docker-credentials.sh new file mode 100755 index 0000000..ea305ee --- /dev/null +++ b/riscv/argo-workflows/create-docker-credentials.sh @@ -0,0 +1,4 @@ +kubectl create secret generic docker-creds \ + --from-literal=username=allardkrings@gmail.com \ + --from-literal=password='Kubernetes01@' \ + -n argo diff --git a/riscv/argo-workflows/create-gitea-credentials.sh b/riscv/argo-workflows/create-gitea-credentials.sh new file mode 100755 index 0000000..28889bc --- /dev/null +++ b/riscv/argo-workflows/create-gitea-credentials.sh @@ -0,0 +1,4 @@ +kubectl create secret generic gitea-creds \ + --from-literal=username=allard \ + --from-literal=password='Gitea01@' \ + -n argo diff --git a/riscv/argo-workflows/create-github-credentials.sh b/riscv/argo-workflows/create-github-credentials.sh new file mode 100755 index 0000000..53d6867 --- /dev/null +++ b/riscv/argo-workflows/create-github-credentials.sh @@ -0,0 +1,4 @@ +kubectl create secret generic github-creds \ + --from-literal=username=allardkrings@gmail.com \ + --from-literal=password='Kubernetes01@' \ + -n argo diff --git a/riscv/argo-workflows/create-kube-config.sh b/riscv/argo-workflows/create-kube-config.sh new file mode 100755 index 0000000..dfba61d --- /dev/null +++ b/riscv/argo-workflows/create-kube-config.sh @@ -0,0 +1 @@ +kubectl create secret generic kubeconfig-secret --from-file=config=/home/ubuntu/.kube/config diff --git a/riscv/argo-workflows/create-nexus-credentials.sh b/riscv/argo-workflows/create-nexus-credentials.sh new file mode 100755 index 0000000..3e4dfaa --- /dev/null +++ b/riscv/argo-workflows/create-nexus-credentials.sh @@ -0,0 +1,4 @@ +kubectl create secret generic nexus-credentials \ + --from-literal=username=admin \ + --from-literal=password='Nexus01@' \ + -n argo diff --git a/riscv/argo-workflows/ingressrouteTCP-tls.yaml b/riscv/argo-workflows/ingressrouteTCP-tls.yaml new file mode 100644 index 0000000..bb1df3c --- /dev/null +++ b/riscv/argo-workflows/ingressrouteTCP-tls.yaml @@ -0,0 +1,17 @@ +#apiVersion: traefik.containo.us/v1alpha1 +apiVersion: traefik.io/v1alpha1 +kind: IngressRouteTCP +metadata: + name: argo-workflows-tcp-tls + namespace: argo +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`argo-riscv.allarddcs.nl`) + services: + - name: argo-server + port: 2746 + tls: + passthrough: true + diff --git a/riscv/argo-workflows/rbac.yaml b/riscv/argo-workflows/rbac.yaml new file mode 100644 index 0000000..d323a18 --- /dev/null +++ b/riscv/argo-workflows/rbac.yaml @@ -0,0 +1,38 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: argo-workflow + namespace: argo +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: argo-workflow-role + namespace: argo +rules: + # Allow managing Deployments + - apiGroups: ["apps"] + resources: ["deployments"] + verbs: ["get", "list", "create", "update", "patch", "delete"] + # Allow managing Services + - apiGroups: [""] + resources: ["services"] + verbs: ["get", "list", "create", "update", "patch", "delete"] + # Allow managing Traefik IngressRoutes + - apiGroups: ["traefik.io"] + resources: ["ingressroutes"] + verbs: ["get", "list", "create", "update", "patch", "delete"] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: argo-workflow-rolebinding + namespace: argo +subjects: + - kind: ServiceAccount + name: argo-workflow + namespace: argo +roleRef: + kind: Role + name: argo-workflow-role + apiGroup: rbac.authorization.k8s.io diff --git a/riscv/argo-workflows/templates/clone-build-deploy-template.yaml b/riscv/argo-workflows/templates/clone-build-deploy-template.yaml new file mode 100644 index 0000000..587e4db --- /dev/null +++ b/riscv/argo-workflows/templates/clone-build-deploy-template.yaml @@ -0,0 +1,72 @@ +apiVersion: argoproj.io/v1alpha1 +kind: WorkflowTemplate +metadata: + name: clone-build-deploy + namespace: argo +spec: + entrypoint: main + volumes: + - name: workdir + persistentVolumeClaim: + claimName: argo-workflows-pvc + - name: dockersock + hostPath: + path: /var/run/docker.sock + - name: kubeconfig + secret: + secretName: kubeconfig-secret + + templates: + - name: main + steps: + - - name: build + template: git-clone + - - name: deploy + template: deploy-app + + - name: git-clone + container: + image: allardkrings/riscv64-maven + command: ["sh", "-c"] + args: + - | + echo "Cleaning up /src directory..." && \ + rm -rf /src/* /src/.* 2>/dev/null || true && \ + git clone http://allard:Gitea01%40@gitea.gitea.svc.cluster.local:3000/allard/olproperties.git /src && \ + cd /src && \ + git status && \ + ls -la && \ + mvn clean install + env: + - name: USERNAME + valueFrom: + secretKeyRef: + name: gitea-creds + key: username + - name: PASSWORD + valueFrom: + secretKeyRef: + name: gitea-creds + key: password + volumeMounts: + - name: workdir + mountPath: /src + - name: dockersock + mountPath: /var/run/docker.sock + + - name: deploy-app + serviceAccountName: argo-workflow + container: + image: allardkrings/riscv64-kubectl + command: ["sh", "-c"] + args: + - | + echo "Contents of /src:" && ls -la /src && \ + echo "Checking deployment.yaml:" && cat /src/deployment.yaml && \ + echo "Deploying application..." && \ + kubectl apply -f /src/deployment.yaml --validate=false + volumeMounts: + - name: workdir + mountPath: /src + continueOn: + failed: true diff --git a/riscv/argo-workflows/templates/dag-target.yaml b/riscv/argo-workflows/templates/dag-target.yaml new file mode 100644 index 0000000..292d31d --- /dev/null +++ b/riscv/argo-workflows/templates/dag-target.yaml @@ -0,0 +1,51 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Workflow +metadata: + generateName: dag-target- + namespace: argo + name: dag-target +spec: + entrypoint: dag-target + arguments: + parameters: + - name: target + value: E + + templates: + - name: dag-target + dag: + target: "{{workflow.parameters.target}}" + + tasks: + - name: A + template: echo + arguments: + parameters: [{name: message, value: A}] + - name: B + depends: "A" + template: echo + arguments: + parameters: [{name: message, value: B}] + - name: C + depends: "A" + template: echo + arguments: + parameters: [{name: message, value: C}] + - name: D + depends: "B && C" + template: echo + arguments: + parameters: [{name: message, value: D}] + - name: E + depends: "D" + template: echo + arguments: + parameters: [{name: message, value: E}] + + - name: echo + inputs: + parameters: + - name: message + container: + image: riscv64/alpine + command: [echo, "{{inputs.parameters.message}}"] diff --git a/riscv/argo-workflows/templates/git-clone-workflow-template.yaml b/riscv/argo-workflows/templates/git-clone-workflow-template.yaml new file mode 100644 index 0000000..ee02a82 --- /dev/null +++ b/riscv/argo-workflows/templates/git-clone-workflow-template.yaml @@ -0,0 +1,25 @@ +apiVersion: argoproj.io/v1alpha1 +kind: WorkflowTemplate +metadata: + name: git-clone-template +spec: + entrypoint: git-clone + templates: + - name: git-clone + inputs: + artifacts: + - name: argo-source + path: /src + git: + repo: https://gitea-riscv/allard/olproperties.git + usernameSecret: + name: github-creds + key: username + passwordSecret: + name: github-creds + key: password + container: + image: allardkrings/riscv64-maven + command: ["sh", "-c"] + args: ["git status && ls && cat VERSION"] + workingDir: /src diff --git a/riscv/argo-workflows/templates/git-clone-workflow.yaml b/riscv/argo-workflows/templates/git-clone-workflow.yaml new file mode 100644 index 0000000..4f92a20 --- /dev/null +++ b/riscv/argo-workflows/templates/git-clone-workflow.yaml @@ -0,0 +1,26 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Workflow +metadata: + generateName: git-clone- + namespace: argo +spec: + entrypoint: git-clone + templates: + - name: git-clone + inputs: + artifacts: + - name: argo-source + path: /src + git: + repo: gitea.gitea.svc.cluster.local/allard/olproperties.git + usernameSecret: + name: github-creds + key: username + passwordSecret: + name: github-creds + key: password + container: + image: allardkrings/riscv64-maven + command: ["sh", "-c"] + args: ["git status && ls && cat VERSION"] + workingDir: /src diff --git a/riscv/argo-workflows/templates/input-artifact-git.yaml b/riscv/argo-workflows/templates/input-artifact-git.yaml new file mode 100644 index 0000000..bdb8f11 --- /dev/null +++ b/riscv/argo-workflows/templates/input-artifact-git.yaml @@ -0,0 +1,27 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Workflow +metadata: + generateName: input-artifact-git- + name: input-artifact-git + namespace: argo +spec: + entrypoint: git-clone + templates: + - name: git-clone + inputs: + artifacts: + - name: argo-source + path: /src + git: + repo: https://gitea-riscv/allard/olproperties.git + usernameSecret: + name: github-creds + key: username + passwordSecret: + name: github-creds + key: password + container: + image: allardkrings/riscv64-maven + command: [sh, -c] + args: ["git status && ls && cat VERSION"] + workingDir: /src diff --git a/riscv/catalog-info.yaml b/riscv/catalog-info.yaml new file mode 100644 index 0000000..ce0aad5 --- /dev/null +++ b/riscv/catalog-info.yaml @@ -0,0 +1,36 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: RISCV-cluster + namespace: default + description: Alle deployment van RISCV-cluster github + annotations: + backstage.io/techdocs-ref: dir:. + links: + - url: https://github.com/AllardKrings/kubernetes + title: AllardDCS Kubernetes Configuration + docs: + - url: ./README.md +spec: + type: service + lifecycle: production + owner: group:default/allarddcs + - ./nexus/catalog-info.yaml + - ./nginx/catalog-info.yaml + - ./olproperties/catalog-info.yaml + - ./traefik/catalog-info.yaml + - ./openliberty/catalog-info.yaml + - ./gitea/catalog-info.yaml + - ./argo-workflows/catalog-info.yaml + - ./postgres14/catalog-info.yaml + - ./dnsutils/catalog-info.yaml + - ./nextcloud/catalog-info.yaml + - ./monica/catalog-info.yaml + - ./zabbix/catalog-info.yaml + - ./drupal/catalog-info.yaml + - ./jenkins/catalog-info.yaml + - ./mariadb/catalog-info.yaml + - ./kubernetes/catalog-info.yaml + - ./pgadmin/catalog-info.yaml + - ./joomla/catalog-info.yaml + - ./phpmyadmin/catalog-info.yaml diff --git a/riscv/dnsutils/catalog-info.yaml b/riscv/dnsutils/catalog-info.yaml new file mode 100644 index 0000000..92effbc --- /dev/null +++ b/riscv/dnsutils/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-dnsutils + title: Dnsutils (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/dnsutils/dnsutils-riscv.yaml b/riscv/dnsutils/dnsutils-riscv.yaml new file mode 100755 index 0000000..299187b --- /dev/null +++ b/riscv/dnsutils/dnsutils-riscv.yaml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: Pod +metadata: + name: dnsutils +spec: + containers: + - name: dnsutils + image: allardkrings/riscv64-dnsutils:1.0 + command: + - sleep + - "infinity" + imagePullPolicy: IfNotPresent + restartPolicy: Always diff --git a/riscv/drupal/README.md b/riscv/drupal/README.md new file mode 100644 index 0000000..0ea7c8d --- /dev/null +++ b/riscv/drupal/README.md @@ -0,0 +1,2 @@ +User: admin +Pasword: DrupalDrupal01@ diff --git a/riscv/drupal/catalog-info.yaml b/riscv/drupal/catalog-info.yaml new file mode 100644 index 0000000..b806511 --- /dev/null +++ b/riscv/drupal/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-drupal + title: Drupal (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/drupal/drupal.bak b/riscv/drupal/drupal.bak new file mode 100644 index 0000000..5235fd1 --- /dev/null +++ b/riscv/drupal/drupal.bak @@ -0,0 +1,135 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: drupal + namespace: drupal + labels: + app: drupal +spec: + replicas: 1 + selector: + matchLabels: + app: drupal + template: + metadata: + labels: + app: drupal + spec: + containers: + - name: drupal + image: riscv64/drupal:11.1.2-php8.3-fpm-alpine3.21 + imagePullPolicy: Always + env: + - name: MYSQL_DATABASE + value: drupal + - name: MYSQL_USER + value: drupal + - name: MYSQL_PASSWORD + value: DRUPAL + - name: MYSQL_ROOT_PASSWORD + value: password + ports: + - containerPort: 9000 + volumeMounts: + - name: drupal-data + mountPath: /var/www/html + - name: nginx + image: riscv64/nginx:1.27.4-alpine + ports: + - containerPort: 80 + volumeMounts: + - name: drupal-data + mountPath: /var/www/html + - name: nginx-config + mountPath: /etc/nginx/conf.d/default.conf + subPath: default.conf + volumes: + - name: drupal-data + persistentVolumeClaim: + claimName: drupal-pvc + - name: nginx-config + configMap: + name: nginx-config +--- +apiVersion: v1 +kind: Service +metadata: + name: drupal + namespace: drupal + labels: + app: drupal +spec: + selector: + app: drupal + type: NodePort + sessionAffinity: None + ports: + - protocol: TCP + port: 80 + targetPort: 80 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: drupal-tls + namespace: drupal +spec: + entryPoints: + - websecure + routes: + - match: Host(`drupal-riscv.allarddcs.nl`) + kind: Rule + services: + - name: drupal + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: drupal-http + namespace: drupal +spec: + entryPoints: + - web + routes: + - match: Host(`drupal-riscv.allarddcs.nl`) + kind: Rule + services: + - name: drupal + port: 80 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: drupal-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/drupal/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: drupal-pvc + namespace: drupal +spec: + storageClassName: "" + volumeName: drupal-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/riscv/drupal/drupal.yaml b/riscv/drupal/drupal.yaml new file mode 100644 index 0000000..99693c1 --- /dev/null +++ b/riscv/drupal/drupal.yaml @@ -0,0 +1,135 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: drupal + namespace: drupal + labels: + app: drupal +spec: + replicas: 1 + selector: + matchLabels: + app: drupal + template: + metadata: + labels: + app: drupal + spec: + containers: + - name: drupal + image: riscv64/drupal:fpm + imagePullPolicy: Always + env: + - name: MYSQL_DATABASE + value: drupal + - name: MYSQL_USER + value: drupal + - name: MYSQL_PASSWORD + value: DRUPAL + - name: MYSQL_ROOT_PASSWORD + value: password + ports: + - containerPort: 9000 + volumeMounts: + - name: drupal-data + mountPath: /opt/drupal/web + - name: nginx + image: riscv64/nginx:1.27.4-alpine + ports: + - containerPort: 80 + volumeMounts: + - name: drupal-data + mountPath: /opt/drupal/web + - name: nginx-config + mountPath: /etc/nginx/conf.d/default.conf + subPath: default.conf + volumes: + - name: drupal-data + persistentVolumeClaim: + claimName: drupal-pvc + - name: nginx-config + configMap: + name: nginx-config +--- +apiVersion: v1 +kind: Service +metadata: + name: drupal + namespace: drupal + labels: + app: drupal +spec: + selector: + app: drupal + type: NodePort + sessionAffinity: None + ports: + - protocol: TCP + port: 80 + targetPort: 80 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: drupal-tls + namespace: drupal +spec: + entryPoints: + - websecure + routes: + - match: Host(`drupal-riscv.allarddcs.nl`) + kind: Rule + services: + - name: drupal + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: drupal-http + namespace: drupal +spec: + entryPoints: + - web + routes: + - match: Host(`drupal-riscv.allarddcs.nl`) + kind: Rule + services: + - name: drupal + port: 80 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: drupal-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/drupal/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: drupal-pvc + namespace: drupal +spec: + storageClassName: "" + volumeName: drupal-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/riscv/drupal/nginx-config.yaml b/riscv/drupal/nginx-config.yaml new file mode 100644 index 0000000..fdc4ec0 --- /dev/null +++ b/riscv/drupal/nginx-config.yaml @@ -0,0 +1,26 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: nginx-config + namespace: drupal +data: + default.conf: | + server { + listen 80; + server_name _; + + root /opt/drupal/web; + index index.php index.html index.htm; + + location / { + try_files $uri $uri/ /index.php?$query_string; + } + + location ~ \.php$ { + include fastcgi_params; + fastcgi_pass 127.0.0.1:9000; + fastcgi_index index.php; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + fastcgi_param DOCUMENT_ROOT /opt/drupal/web; + } + } diff --git a/riscv/gitea/README.md b/riscv/gitea/README.md new file mode 100644 index 0000000..aeb81e0 --- /dev/null +++ b/riscv/gitea/README.md @@ -0,0 +1,2 @@ +user: allard +password: Gitea01@ diff --git a/riscv/gitea/catalog-info.yaml b/riscv/gitea/catalog-info.yaml new file mode 100644 index 0000000..edaebf7 --- /dev/null +++ b/riscv/gitea/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-gitea + title: Gitea (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/gitea/gitea.yaml b/riscv/gitea/gitea.yaml new file mode 100644 index 0000000..330d208 --- /dev/null +++ b/riscv/gitea/gitea.yaml @@ -0,0 +1,119 @@ +apiVersion: v1 +kind: Service +metadata: + name: gitea + namespace: "gitea" + labels: + app.kubernetes.io/instance: gitea + app.kubernetes.io/name: gitea +spec: + type: ClusterIP + sessionAffinity: None + ports: + - name: http + port: 3000 + targetPort: http + nodePort: null + - name: ssh + port: 22 + targetPort: ssh + nodePort: null + selector: + app.kubernetes.io/instance: gitea + app.kubernetes.io/name: gitea +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: gitea + namespace: "gitea" +spec: + selector: + matchLabels: + app.kubernetes.io/name: gitea + replicas: 1 + template: + metadata: + labels: + app.kubernetes.io/instance: gitea + app.kubernetes.io/name: gitea + spec: + containers: + - name: gitea + image: allardkrings/riscv64-gitea:1.21.7 + env: + - name: GITEA__database__DB_TYPE + value: mysql + - name: GITEA__database__HOST + value: mariadb.mariadb:3306 + - name: GITEA__database__NAME + value: gitea + - name: GITEA__database__USER + value: gitea + - name: GITEA__database__PASSWD + value: gitea + ports: + - name: http + containerPort: 3000 + - name: ssh + containerPort: 2222 + volumeMounts: + - name: gitea-data + mountPath: /data + volumes: + - name: gitea-data + persistentVolumeClaim: + claimName: gitea-pvc +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: gitea-tls + namespace: gitea +spec: + entryPoints: + - websecure + routes: + - match: Host(`gitea-riscv.allarddcs.nl`) + kind: Rule + services: + - name: gitea + port: 3000 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: gitea-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/gitea-riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: gitea-pvc + namespace: gitea +spec: + storageClassName: "" + volumeName: gitea-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + diff --git a/riscv/grafana/README.md b/riscv/grafana/README.md new file mode 100755 index 0000000..f853a10 --- /dev/null +++ b/riscv/grafana/README.md @@ -0,0 +1,19 @@ +#ruw materiaal voor mocht het beschikbaar komen op riscv + +INSTALLATIE: + +kubectl apply -f grafana-pv.yaml + +kubectl apply -f grafana-pvc.yaml + +kubectl create -f grafana-datasource-config.yaml + +kubectl create -f deployment.yaml + +kubectl create -f service.yaml + + + +# kubernetes-grafana + +Read about the grafana implementation on Kubernetes here https://devopscube.com/setup-grafana-kubernetes/ diff --git a/riscv/grafana/grafana-datasource-config.yaml b/riscv/grafana/grafana-datasource-config.yaml new file mode 100755 index 0000000..3a5695b --- /dev/null +++ b/riscv/grafana/grafana-datasource-config.yaml @@ -0,0 +1,21 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: grafana-datasources + namespace: observability +data: + prometheus.yaml: |- + { + "apiVersion": 1, + "datasources": [ + { + "access":"proxy", + "editable": true, + "name": "prometheus", + "orgId": 1, + "type": "prometheus", + "url": "http://prometheus-service.monitoring.svc:8080", + "version": 1 + } + ] + } diff --git a/riscv/grafana/grafana-pv.yaml b/riscv/grafana/grafana-pv.yaml new file mode 100755 index 0000000..2ac430b --- /dev/null +++ b/riscv/grafana/grafana-pv.yaml @@ -0,0 +1,20 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: grafana-pv + namespace: monitoring +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.40.100 + path: /mnt/nfs_share/grafana + readOnly: false + diff --git a/riscv/grafana/grafana-pvc.yaml b/riscv/grafana/grafana-pvc.yaml new file mode 100755 index 0000000..4a3249a --- /dev/null +++ b/riscv/grafana/grafana-pvc.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: grafana-pvc + namespace: monitoring +spec: + storageClassName: "" + volumeName: grafana-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + + + + diff --git a/riscv/grafana/grafana.yaml b/riscv/grafana/grafana.yaml new file mode 100755 index 0000000..b84f90a --- /dev/null +++ b/riscv/grafana/grafana.yaml @@ -0,0 +1,78 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: grafana + namespace: monitoring +spec: + replicas: 1 + selector: + matchLabels: + app: grafana + template: + metadata: + name: grafana + labels: + app: grafana + spec: + containers: + - name: grafana + image: grafana/grafana:latest + ports: + - name: grafana + containerPort: 3000 + resources: + limits: + memory: "1Gi" + cpu: "1000m" + requests: + memory: 500M + cpu: "500m" + volumeMounts: + - mountPath: /var/lib/grafana + name: grafana-storage + subPath: grafana/storage + - mountPath: /etc/grafana/provisioning/datasources + name: grafana-datasources + readOnly: false + volumes: + - name: grafana-storage + persistentVolumeClaim: + claimName: grafana-pvc + - name: grafana-datasources + configMap: + defaultMode: 420 + name: grafana-datasources +--- +apiVersion: v1 +kind: Service +metadata: + name: grafana + namespace: monitoring + annotations: + prometheus.io/scrape: 'true' + prometheus.io/port: '3000' +spec: + selector: + app: grafana + type: NodePort + ports: + - port: 3000 + targetPort: 3000 + nodePort: 32000 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: grafana-tls + namespace: monitoring +spec: + entryPoints: + - websecure + routes: + - match: Host(`grafana.alldcs.nl`) + kind: Rule + services: + - name: grafana + port: 3000 + tls: + certResolver: letsencrypt diff --git a/riscv/grafana/werkt_nog_niet b/riscv/grafana/werkt_nog_niet new file mode 100644 index 0000000..e69de29 diff --git a/riscv/jenkins/catalog-info.yaml b/riscv/jenkins/catalog-info.yaml new file mode 100644 index 0000000..adb208f --- /dev/null +++ b/riscv/jenkins/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-jenkins + title: Jenkins (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/jenkins/jenkins-old.yaml b/riscv/jenkins/jenkins-old.yaml new file mode 100644 index 0000000..22fe025 --- /dev/null +++ b/riscv/jenkins/jenkins-old.yaml @@ -0,0 +1,140 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: jenkins + namespace: jenkins +spec: + replicas: 1 + selector: + matchLabels: + app: jenkins + template: + metadata: + labels: + app: jenkins + spec: + containers: + - name: jenkins + image: allardkrings/riscv64-jenkins:1.6 + securityContext: + privileged: true + ports: + - name: http-port + containerPort: 8080 + - name: jnlp-port + containerPort: 50000 + volumeMounts: + - name: jenkins-home + mountPath: /var/jenkins_home + - name: docker-sock + mountPath: "/var/run/docker.sock" + readOnly: false + - name: docker-directory + mountPath: "/var/lib/docker" + readOnly: false + - name: docker-bin + mountPath: "/usr/bin/docker" + readOnly: false + initContainers: + - name: change-ownership-container + image: riscv64/busybox + command: ["/bin/chown","-R","1000:1000", "/var/run/docker.sock"] + securityContext: + runAsUser: 0 + privileged: true + volumeMounts: + - name: docker-sock + mountPath: /var/run/docker.sock + volumes: + - name: jenkins-home + persistentVolumeClaim: + claimName: jenkins-pvc + - name: docker-sock + hostPath: + path: "/var/run/docker.sock" + - name: docker-directory + hostPath: + path: "/var/lib/docker" + - name: docker-bin + hostPath: + path: "/usr/local/bin/docker" +--- +apiVersion: v1 +kind: Service +metadata: + name: jenkins + namespace: jenkins +spec: + type: NodePort + ports: + - port: 8080 + targetPort: 8080 + nodePort: 30000 + selector: + app: jenkins +--- +apiVersion: v1 +kind: Service +metadata: + name: jenkins-jnlp + namespace: jenkins +spec: + type: ClusterIP + ports: + - port: 50000 + targetPort: 50000 + selector: + app: jenkins +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: jenkins-tls + namespace: jenkins +spec: + entryPoints: + - websecure + routes: + - match: Host(`jenkins-riscv.alldcs.nl`) + kind: Rule + services: + - name: jenkins + port: 8080 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: jenkins-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/jenkins + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: jenkins-pvc + namespace: jenkins +spec: + storageClassName: "" + volumeName: jenkins-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + diff --git a/riscv/jenkins/jenkins.yaml b/riscv/jenkins/jenkins.yaml new file mode 100644 index 0000000..693f644 --- /dev/null +++ b/riscv/jenkins/jenkins.yaml @@ -0,0 +1,106 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: jenkins + namespace: jenkins +spec: + replicas: 1 + selector: + matchLabels: + app: jenkins + template: + metadata: + labels: + app: jenkins + spec: + containers: + - name: jenkins + image: allardkrings/riscv64-jenkins:1.6 + securityContext: + privileged: true + ports: + - name: http-port + containerPort: 8080 + - name: jnlp-port + containerPort: 50000 +# env: +# - name: MASTER_GLOBAL_JAVA_OPTIONS +# value: "org.csanchez.jenkins.plugins.kubernetes.pipeline.PodTemplateStepExecution.defaultImage=allardkrings/riscv64-jenkins-agent:1.0" + volumeMounts: + - name: jenkins-home + mountPath: /var/jenkins_home + serviceAccountName: "jenkins-service-account" + volumes: + - name: jenkins-home + persistentVolumeClaim: + claimName: jenkins-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: jenkins + namespace: jenkins +spec: + ports: + - port: 8080 + name: primary + targetPort: 8080 + - port: 50000 + name: agent + targetPort: 50000 + selector: + app: jenkins + type: ClusterIP +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: jenkins-tls + namespace: jenkins +spec: + entryPoints: + - websecure + routes: + - match: Host(`jenkins-riscv.allarddcs.nl`) + kind: Rule + services: + - name: jenkins + port: 8080 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: jenkins-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/jenkins + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: jenkins-pvc + namespace: jenkins +spec: + storageClassName: "" + volumeName: jenkins-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + + diff --git a/riscv/jenkins/service-account.yaml b/riscv/jenkins/service-account.yaml new file mode 100644 index 0000000..b792402 --- /dev/null +++ b/riscv/jenkins/service-account.yaml @@ -0,0 +1,33 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: jenkins-service-account + namespace: jenkins +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: jenkins-schedule-agents + namespace: jenkins +rules: + - apiGroups: [""] + resources: + ["pods", "pods/exec", "pods/log", "persistentvolumeclaims", "events"] + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["pods", "pods/exec", "persistentvolumeclaims"] + verbs: ["create", "delete", "deletecollection", "patch", "update"] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: jenkins-schedule-agents + namespace: jenkins +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: jenkins-schedule-agents +subjects: + - kind: ServiceAccount + name: jenkins-service-account + namespace: jenkins diff --git a/riscv/joomla/catalog-info.yaml b/riscv/joomla/catalog-info.yaml new file mode 100644 index 0000000..f564c97 --- /dev/null +++ b/riscv/joomla/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-joomla + title: Joomla (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/joomla/riscv/ingressroutes.yaml b/riscv/joomla/riscv/ingressroutes.yaml new file mode 100644 index 0000000..1090bd3 --- /dev/null +++ b/riscv/joomla/riscv/ingressroutes.yaml @@ -0,0 +1,46 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: joomla-http + namespace: joomla +spec: + entryPoints: + - web + routes: + - match: Host(`joomla-riscv.allarddcs.nl`) + kind: Rule + services: + - name: joomla + port: 80 + middlewares: + - name: redirect-to-https + namespace: joomla +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: joomla-tls + namespace: joomla +spec: + entryPoints: + - websecure + routes: + - match: Host(`joomla-riscv.allarddcs.nl`) + kind: Rule + services: + - name: joomla + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: redirect-to-https + namespace: joomla +spec: + redirectScheme: + scheme: https + permanent: true + + diff --git a/riscv/joomla/riscv/joomla.yaml b/riscv/joomla/riscv/joomla.yaml new file mode 100755 index 0000000..c4a3042 --- /dev/null +++ b/riscv/joomla/riscv/joomla.yaml @@ -0,0 +1,175 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: joomla + namespace: joomla + labels: + app: joomla +spec: + replicas: 1 + selector: + matchLabels: + app: joomla + strategy: + rollingUpdate: + maxSurge: 0 + maxUnavailable: 1 + type: RollingUpdate + template: + metadata: + labels: + app: joomla + spec: + containers: + - image: riscv64/joomla:5.2.3-php8.1-fpm-alpine + name: joomla + imagePullPolicy: Always + env: + - name: JOOMLA_DB_HOST + value: "mariadb.mariadb" + - name: JOOMLA_DB_USER + value: "joomla" + - name: JOOMLA_DB_PASSWORD + value: "joomla" +# - JOOMLA_DB_PASSWORD_FILE: +# value: "1000" + - name: JOOMLA_DB_NAME + value: "joomla" + - name: JOOMLA_DB_TYPE + value: "mysqli" + - name: JOOMLA_SITE_NAME + value: "allarddcs" + - name: JOOMLA_ADMIN_USER + value: "admin" + - name: JOOMLA_ADMIN_USERNAME + value: "admin" + - name: JOOMLA_ADMIN_PASSWORD + value: "JoomlaJoomla01" + - name: JOOMLA_ADMIN_EMAIL + value: "admin@allarddcs.nl" +# - JOOMLA_EXTENSIONS_URLS: +# value: "1000" +# - JOOMLA_EXTENSIONS_PATHS: +# value: "1000" +# - JOOMLA_SMTP_HOST: +# value: "1000" +# - JOOMLA_SMTP_HOST_PORT: + ports: + - containerPort: 9000 + name: php-fpm + protocol: TCP + volumeMounts: + - name: nfs-joomla + mountPath: /var/www/html + subPath: html + - name: nginx + image: riscv64/nginx:1.27.4-alpine + ports: + - containerPort: 80 + volumeMounts: + - name: nfs-joomla + mountPath: /var/www/html + subPath: html + - name: nfs-joomla + mountPath: /etc/nginx/conf.d/default.conf + subPath: default.conf + volumes: + - name: nfs-joomla + persistentVolumeClaim: + claimName: joomla-pvc + volumes: + - name: nfs-joomla # < linkname of the volume for the pvc + persistentVolumeClaim: + claimName: joomla-pvc # < pvc name we created in the previous yaml +--- +apiVersion: v1 +kind: Service +metadata: + name: joomla + namespace: joomla +spec: + selector: + app: joomla + ports: + - protocol: TCP + port: 80 + targetPort: 80 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: joomla-http + namespace: joomla +spec: + entryPoints: + - web + routes: + - match: Host(`joomla-riscv.allarddcs.nl`) + kind: Rule + services: + - name: joomla + port: 80 + middlewares: + - name: redirect-to-https + namespace: joomla +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: joomla-tls + namespace: joomla +spec: + entryPoints: + - websecure + routes: + - match: Host(`joomla-riscv.allarddcs.nl`) + kind: Rule + services: + - name: joomla + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: redirect-to-https + namespace: joomla +spec: + redirectScheme: + scheme: https + permanent: true +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: joomla-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/joomla/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: joomla-pvc + namespace: joomla +spec: + storageClassName: "" + volumeName: joomla-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi diff --git a/riscv/joomla/riscv/joomla.yaml.save b/riscv/joomla/riscv/joomla.yaml.save new file mode 100755 index 0000000..235026e --- /dev/null +++ b/riscv/joomla/riscv/joomla.yaml.save @@ -0,0 +1,158 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: joomla + namespace: joomla +spec: + replicas: 1 + selector: + matchLabels: + app: joomla + template: + metadata: + labels: + app: joomla + spec: + containers: + - name: php-fpm + - image: riscv64/joomla:5.2.3-php8.1-fpm-alpine + ports: + - containerPort: 9000 # PHP-FPM listens on this port + volumeMounts: + - name: joomla-data + mountPath: /var/www/html + + - name: nginx + image: nginx:latest + ports: + - containerPort: 80 # Nginx serves HTTP + volumeMounts: + - name: nfs-joomla + mountPath: /var/www/html + subPath: html + - name: nfs-joomla + mountPath: /etc/nginx/conf.d/default.conf + subPath: default.conf +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: joomla + namespace: joomla + labels: + app: joomla +spec: + replicas: 1 + selector: + matchLabels: + app: joomla + strategy: + rollingUpdate: + maxSurge: 0 + maxUnavailable: 1 + type: RollingUpdate + template: + metadata: + labels: + app: joomla + spec: + containers: + - image: riscv64/joomla:5.2.3-php8.1-fpm-alpine + name: joomla + imagePullPolicy: Always + env: + - name: JOOMLA_DB_HOST + value: "mariadb.mariadb" + - name: JOOMLA_DB_USER + value: "joomla" + - name: JOOMLA_DB_PASSWORD + value: "joomla" +# - JOOMLA_DB_PASSWORD_FILE: +# value: "1000" + - name: JOOMLA_DB_NAME + value: "joomla" + - name: JOOMLA_DB_TYPE + value: "mysqli" + - name: JOOMLA_SITE_NAME + value: "allarddcs" + - name: JOOMLA_ADMIN_USER + value: "admon" + - name: JOOMLA_ADMIN_USERNAME + value: "Admin" + - name: JOOMLA_ADMIN_PASSWORD + value: "JoomlaJoomla01" + - name: JOOMLA_ADMIN_EMAIL + value: "admin@allarddcs.nl" +# - JOOMLA_EXTENSIONS_URLS: +# value: "1000" +# - JOOMLA_EXTENSIONS_PATHS: +# value: "1000" +# - JOOMLA_SMTP_HOST: +# value: "1000" +# - JOOMLA_SMTP_HOST_PORT: + ports: + - containerPort: 9000 + name: php-fpm + protocol: TCP + - name: nginx + image: riscv64/nginx:1.27.4-alpine + ports: + - containerPort: 80 + volumeMounts: + - name: nfs-joomla + mountPath: /var/www/html + subPath: html + - name: nfs-joomla + mountPath: /etc/nginx/conf.d/default.conf + subPath: default.conf + volumes: + - name: nfs-joomla + persistentVolumeClaim: + claimName: joomla-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: joomla + namespace: joomla +spec: + selector: + app: nginx + ports: + - protocol: TCP + port: 80 + targetPort: 80 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: joomla-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/joomla/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: joomla-pvc + namespace: joomla +spec: + storageClassName: "" + volumeName: joomla-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi diff --git a/riscv/kubernetes/README.md b/riscv/kubernetes/README.md new file mode 100644 index 0000000..4dcf9de --- /dev/null +++ b/riscv/kubernetes/README.md @@ -0,0 +1,24 @@ +#installeren: + +INSTALL_K3S_SKIP_DOWNLOAD="true" bash -x k3s-install.sh + + +#kubeconfig aanmaken: + +export KUBECONFIG=~/.kube/config +mkdir ~/.kube 2> /dev/null +sudo k3s kubectl config view --raw > "$KUBECONFIG" +chmod 600 "$KUBECONFIG" + +#Node toevoegen: + +- eerst token van de server ophalen en bewaren: + +export mynodetoken=$(sudo cat /var/lib/rancher/k3s/server/node-token) + +- dan op de andere computer k3s installeren als agent: + +INSTALL_K3S_SKIP_DOWNLOAD="true" K3S_URL=https://myserver:6443 K3S_TOKEN=$mynodetoken bash -x k3s-install.sh + + + diff --git a/riscv/kubernetes/catalog-info.yaml b/riscv/kubernetes/catalog-info.yaml new file mode 100644 index 0000000..2dcacd5 --- /dev/null +++ b/riscv/kubernetes/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-kubernetes + title: Kubernetes (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/kubernetes/create-token.sh b/riscv/kubernetes/create-token.sh new file mode 100755 index 0000000..95a7f2d --- /dev/null +++ b/riscv/kubernetes/create-token.sh @@ -0,0 +1 @@ +microk8s kubectl -n kube-system create token admin-user --duration=8544h diff --git a/riscv/kubernetes/install.sh b/riscv/kubernetes/install.sh new file mode 100755 index 0000000..b56c1d7 --- /dev/null +++ b/riscv/kubernetes/install.sh @@ -0,0 +1,8 @@ +sudo /usr/local/bin/k3s-uninstall.sh +sudo cp k3s /usr/local/bin/ +INSTALL_K3S_SKIP_DOWNLOAD="true" bash -x k3s-install.sh +export KUBECONFIG=~/.kube/config +mkdir ~/.kube 2> /dev/null +sudo k3s kubectl config view --raw > "$KUBECONFIG" +chmod 600 "$KUBECONFIG" +kubectl get pod -A diff --git a/riscv/kubernetes/iptables-detect.sh b/riscv/kubernetes/iptables-detect.sh new file mode 100755 index 0000000..73be231 --- /dev/null +++ b/riscv/kubernetes/iptables-detect.sh @@ -0,0 +1,251 @@ +#!/bin/sh + +# Copyright 2019 The Kubernetes Authors. +# Copyright 2020 Rancher Labs +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This script is only meant for use when operating in a non-containerized +# environment but using non-host binaries (i.e. K3s with k3s-root), but +# will fall back to operating in a containerized environment if necessary. +# It relies on the underlying host system not having cgroups set up for PID +# 1, as this is how it detects whether it is operating in a containerized +# environment or not. + +# Four step process to inspect for which version of iptables we're operating +# with. +# 1. Detect whether we are operating in a containerized environment by inspecting cgroups for PID 1. +# 2. Run iptables-nft-save and iptables-legacy-save to inspect for rules. If +# no rules are found from either binaries, then +# 3. Check /etc/alternatives/iptables on the host to see if there is a symlink +# pointing towards the iptables binary we are using, if there is, run the +# binary and grep it's output for version higher than 1.8 and "legacy" to see +# if we are operating in legacy +# 4. Last chance is to do a rough check of the operating system, to make an +# educated guess at which mode we can operate in. + +# Bugs in iptables-nft 1.8.3 may cause it to get stuck in a loop in +# some circumstances, so we have to run the nft check in a timeout. To +# avoid hitting that timeout, we only bother to even check nft if +# legacy iptables was empty / mostly empty. + +mode=unknown + +detected_via=unknown + +containerized=false + +# Check to see if the nf_tables kernel module is loaded, if it is, we should operate in nft mode, else just fall back to legacy. This should only be run when in a container, ideally the klipper-lb container. + +nft_module_check() { + lsmod | grep "nf_tables" 2> /dev/null + if [ $? = 0 ]; then + detected_via=modules + mode=nft + else + detected_via=modules + mode=legacy + fi +} + +# Check to see if we are containerized -- essentially look at the cgroup for PID 1 and check for things at the end of the "/" which indicates we are in a container (PID 1 shouldn't necessarily have a cgroup) + +# there are two cases when we are containerized -- k3d and things that aren't k3s +is_containerized() { + CGT=$(cat /proc/1/cgroup | grep "cpuset" | awk -F: '{print $3}' | sed 's/\///g'); + if [ -z $CGT ]; then + containerized=false + else + containerized=true + fi +} + +rule_check() { + num_legacy_lines=$( ( + iptables-legacy-save || true + ip6tables-legacy-save || true + ) 2>/dev/null | grep '^-' | wc -l) + if [ "${num_legacy_lines}" -ge 10 ]; then + detected_via=rules + mode=legacy + else + num_nft_lines=$( (timeout 5 sh -c "iptables-nft-save; ip6tables-nft-save" || true) 2>/dev/null | grep '^-' | wc -l) + if [ "${num_legacy_lines}" -gt "${num_nft_lines}" ]; then + detected_via=rules + mode=legacy + elif [ "${num_nft_lines}" = 0 ]; then + mode=unknown + else + detected_via=rules + mode=nft + fi + fi +} + +alternatives_check() { + readlink /etc/alternatives/iptables >/dev/null + + if [ $? = 0 ]; then + readlink /etc/alternatives/iptables | grep -q "nft" + if [ $? = 0 ]; then + detected_via=alternatives + mode=nft + else + detected_via=alternatives + mode=legacy + fi + fi +} + +# we should not run os-detect if we're being run inside of a container +os_detect() { + # perform some very rudimentary platform detection + lsb_dist='' + dist_version='' + if [ -z "$lsb_dist" ] && [ -r /etc/lsb-release ]; then + lsb_dist="$(. /etc/lsb-release && echo "$DISTRIB_ID")" + fi + if [ -z "$lsb_dist" ] && [ -r /etc/debian_version ]; then + lsb_dist='debian' + fi + if [ -z "$lsb_dist" ] && [ -r /etc/fedora-release ]; then + lsb_dist='fedora' + fi + if [ -z "$lsb_dist" ] && [ -r /etc/oracle-release ]; then + lsb_dist='oracleserver' + fi + if [ -z "$lsb_dist" ] && [ -r /etc/centos-release ]; then + lsb_dist='centos' + fi + if [ -z "$lsb_dist" ] && [ -r /etc/redhat-release ]; then + lsb_dist='redhat' + fi + if [ -z "$lsb_dist" ] && [ -r /etc/os-release ]; then + lsb_dist="$(. /etc/os-release && echo "$ID")" + fi + + lsb_dist="$(echo "$lsb_dist" | tr '[:upper:]' '[:lower:]')" + + # Special case redhatenterpriseserver + if [ "${lsb_dist}" = "redhatenterpriseserver" ]; then + # Set it to redhat, it will be changed to centos below anyways + lsb_dist='redhat' + fi + + case "$lsb_dist" in + + alpine) + # Alpine is using iptables-legacy by default when you apk add iptables. There exists a iptables-nft subset of commands but they are not + # used by default. + detected_via=os + mode=legacy + ;; + + ubuntu) + # By default, Ubuntu is using iptables in legacy mode. Ideally, this should have been already caught by the alternatives check. + detected_via=os + mode=legacy + ;; + + debian | raspbian) + dist_version="$(cat /etc/debian_version | sed 's/\/.*//' | sed 's/\..*//')" + # If Debian >= 10 (Buster is 10), then NFT. otherwise, assume it is legacy + if [ "$dist_version" -ge 10 ]; then + detected_via=os + mode=nft + else + detected_via=os + mode=legacy + fi + ;; + + oracleserver) + dist_version="$(. /etc/os-release && echo "$VERSION_ID")" + maj_ver=$(echo $dist_version | sed -E -e "s/^([0-9]+)\.?[0-9]*$/\1/") + if [ "$maj_ver" -ge 8 ]; then + detected_via=os + mode=nft + else + detected_via=os + mode=legacy + fi + ;; + + fedora) + # As of 05/15/2020, all Fedora packages appeared to be still `legacy` by default although there is a `iptables-nft` package that installs the nft iptables, so look for that package. + rpm -qa | grep -q "iptables-nft" + if [ $? = 0 ]; then + detected_via=os + mode=nft + else + detected_via=os + mode=legacy + fi + ;; + + centos | redhat) + dist_version="$(. /etc/os-release && echo "$VERSION_ID")" + maj_ver=$(echo $dist_version | sed -E -e "s/^([0-9]+)\.?[0-9]*$/\1/") + if [ "$maj_ver" -ge 8 ]; then + detected_via=os + mode=nft + else + detected_via=os + mode=legacy + fi + ;; + + # We are running an operating system we don't know, default to nf_tables. + *) + detected_via=unknownos + mode=nft + ;; + + esac + +} + +if [ ! -z "$IPTABLES_MODE" ]; then + mode=${IPTABLES_MODE} +else + rule_check + if [ "${mode}" = "unknown" ]; then + is_containerized + # If we're containerized, then just fall back to legacy, in hopes `ip_tables` is loaded. + if [ "${containerized}" = "true" ]; then + mode=legacy + else + alternatives_check + if [ "${mode}" = "unknown" ]; then + os_detect + fi + fi + fi +fi + +if [ "${mode}" = "unknown" ]; then + exit 1 +fi + +if [ "$(basename $0)" = "iptables-detect.sh" ]; then + echo mode is $mode detected via $detected_via and containerized is $containerized + exit 0 +fi + +xtables-set-mode.sh -m ${mode} >/dev/null + +if [ $? = 0 ]; then + exec "$0" "$@" +else + exit 1 +fi diff --git a/riscv/kubernetes/k3s-install.sh b/riscv/kubernetes/k3s-install.sh new file mode 100644 index 0000000..733d950 --- /dev/null +++ b/riscv/kubernetes/k3s-install.sh @@ -0,0 +1,1119 @@ +#!/bin/sh +set -e +set -o noglob + +# Usage: +# curl ... | ENV_VAR=... sh - +# or +# ENV_VAR=... ./install.sh +# +# Example: +# Installing a server without traefik: +# curl ... | INSTALL_K3S_EXEC="--disable=traefik" sh - +# Installing an agent to point at a server: +# curl ... | K3S_TOKEN=xxx K3S_URL=https://server-url:6443 sh - +# +# Environment variables: +# - K3S_* +# Environment variables which begin with K3S_ will be preserved for the +# systemd service to use. Setting K3S_URL without explicitly setting +# a systemd exec command will default the command to "agent", and we +# enforce that K3S_TOKEN is also set. +# +# - INSTALL_K3S_SKIP_DOWNLOAD +# If set to true will not download k3s hash or binary. +# +# - INSTALL_K3S_FORCE_RESTART +# If set to true will always restart the K3s service +# +# - INSTALL_K3S_SYMLINK +# If set to 'skip' will not create symlinks, 'force' will overwrite, +# default will symlink if command does not exist in path. +# +# - INSTALL_K3S_SKIP_ENABLE +# If set to true will not enable or start k3s service. +# +# - INSTALL_K3S_SKIP_START +# If set to true will not start k3s service. +# +# - INSTALL_K3S_VERSION +# Version of k3s to download from github. Will attempt to download from the +# stable channel if not specified. +# +# - INSTALL_K3S_COMMIT +# Commit of k3s to download from temporary cloud storage. +# * (for developer & QA use) +# +# - INSTALL_K3S_PR +# PR build of k3s to download from Github Artifacts. +# * (for developer & QA use) +# +# - INSTALL_K3S_BIN_DIR +# Directory to install k3s binary, links, and uninstall script to, or use +# /usr/local/bin as the default +# +# - INSTALL_K3S_BIN_DIR_READ_ONLY +# If set to true will not write files to INSTALL_K3S_BIN_DIR, forces +# setting INSTALL_K3S_SKIP_DOWNLOAD=true +# +# - INSTALL_K3S_SYSTEMD_DIR +# Directory to install systemd service and environment files to, or use +# /etc/systemd/system as the default +# +# - INSTALL_K3S_EXEC or script arguments +# Command with flags to use for launching k3s in the systemd service, if +# the command is not specified will default to "agent" if K3S_URL is set +# or "server" if not. The final systemd command resolves to a combination +# of EXEC and script args ($@). +# +# The following commands result in the same behavior: +# curl ... | INSTALL_K3S_EXEC="--disable=traefik" sh -s - +# curl ... | INSTALL_K3S_EXEC="server --disable=traefik" sh -s - +# curl ... | INSTALL_K3S_EXEC="server" sh -s - --disable=traefik +# curl ... | sh -s - server --disable=traefik +# curl ... | sh -s - --disable=traefik +# +# - INSTALL_K3S_NAME +# Name of systemd service to create, will default from the k3s exec command +# if not specified. If specified the name will be prefixed with 'k3s-'. +# +# - INSTALL_K3S_TYPE +# Type of systemd service to create, will default from the k3s exec command +# if not specified. +# +# - INSTALL_K3S_SELINUX_WARN +# If set to true will continue if k3s-selinux policy is not found. +# +# - INSTALL_K3S_SKIP_SELINUX_RPM +# If set to true will skip automatic installation of the k3s RPM. +# +# - INSTALL_K3S_CHANNEL_URL +# Channel URL for fetching k3s download URL. +# Defaults to 'https://update.k3s.io/v1-release/channels'. +# +# - INSTALL_K3S_CHANNEL +# Channel to use for fetching k3s download URL. +# Defaults to 'stable'. + +GITHUB_URL=https://github.com/k3s-io/k3s/releases +GITHUB_PR_URL="" +STORAGE_URL=https://k3s-ci-builds.s3.amazonaws.com +DOWNLOADER= + +# --- helper functions for logs --- +info() +{ + echo '[INFO] ' "$@" +} +warn() +{ + echo '[WARN] ' "$@" >&2 +} +fatal() +{ + echo '[ERROR] ' "$@" >&2 + exit 1 +} + +# --- fatal if no systemd or openrc --- +verify_system() { + if [ -x /sbin/openrc-run ]; then + HAS_OPENRC=true + return + fi + if [ -x /bin/systemctl ] || type systemctl > /dev/null 2>&1; then + HAS_SYSTEMD=true + return + fi + fatal 'Can not find systemd or openrc to use as a process supervisor for k3s' +} + +# --- add quotes to command arguments --- +quote() { + for arg in "$@"; do + printf '%s\n' "$arg" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/'/" + done +} + +# --- add indentation and trailing slash to quoted args --- +quote_indent() { + printf ' \\\n' + for arg in "$@"; do + printf '\t%s \\\n' "$(quote "$arg")" + done +} + +# --- escape most punctuation characters, except quotes, forward slash, and space --- +escape() { + printf '%s' "$@" | sed -e 's/\([][!#$%&()*;<=>?\_`{|}]\)/\\\1/g;' +} + +# --- escape double quotes --- +escape_dq() { + printf '%s' "$@" | sed -e 's/"/\\"/g' +} + +# --- ensures $K3S_URL is empty or begins with https://, exiting fatally otherwise --- +verify_k3s_url() { + case "${K3S_URL}" in + "") + ;; + https://*) + ;; + *) + fatal "Only https:// URLs are supported for K3S_URL (have ${K3S_URL})" + ;; + esac +} + +# --- define needed environment variables --- +setup_env() { + # --- use command args if passed or create default --- + case "$1" in + # --- if we only have flags discover if command should be server or agent --- + (-*|"") + if [ -z "${K3S_URL}" ]; then + CMD_K3S=server + else + if [ -z "${K3S_TOKEN}" ] && [ -z "${K3S_TOKEN_FILE}" ]; then + fatal "Defaulted k3s exec command to 'agent' because K3S_URL is defined, but K3S_TOKEN or K3S_TOKEN_FILE is not defined." + fi + CMD_K3S=agent + fi + ;; + # --- command is provided --- + (*) + CMD_K3S=$1 + shift + ;; + esac + + verify_k3s_url + + CMD_K3S_EXEC="${CMD_K3S}$(quote_indent "$@")" + + # --- use systemd name if defined or create default --- + if [ -n "${INSTALL_K3S_NAME}" ]; then + SYSTEM_NAME=k3s-${INSTALL_K3S_NAME} + else + if [ "${CMD_K3S}" = server ]; then + SYSTEM_NAME=k3s + else + SYSTEM_NAME=k3s-${CMD_K3S} + fi + fi + + # --- check for invalid characters in system name --- + valid_chars=$(printf '%s' "${SYSTEM_NAME}" | sed -e 's/[][!#$%&()*;<=>?\_`{|}/[:space:]]/^/g;' ) + if [ "${SYSTEM_NAME}" != "${valid_chars}" ]; then + invalid_chars=$(printf '%s' "${valid_chars}" | sed -e 's/[^^]/ /g') + fatal "Invalid characters for system name: + ${SYSTEM_NAME} + ${invalid_chars}" + fi + + # --- use sudo if we are not already root --- + SUDO=sudo + if [ $(id -u) -eq 0 ]; then + SUDO= + fi + + # --- use systemd type if defined or create default --- + if [ -n "${INSTALL_K3S_TYPE}" ]; then + SYSTEMD_TYPE=${INSTALL_K3S_TYPE} + else + SYSTEMD_TYPE=notify + fi + + # --- use binary install directory if defined or create default --- + if [ -n "${INSTALL_K3S_BIN_DIR}" ]; then + BIN_DIR=${INSTALL_K3S_BIN_DIR} + else + # --- use /usr/local/bin if root can write to it, otherwise use /opt/bin if it exists + BIN_DIR=/usr/local/bin + if ! $SUDO sh -c "touch ${BIN_DIR}/k3s-ro-test && rm -rf ${BIN_DIR}/k3s-ro-test"; then + if [ -d /opt/bin ]; then + BIN_DIR=/opt/bin + fi + fi + fi + + # --- use systemd directory if defined or create default --- + if [ -n "${INSTALL_K3S_SYSTEMD_DIR}" ]; then + SYSTEMD_DIR="${INSTALL_K3S_SYSTEMD_DIR}" + else + SYSTEMD_DIR=/etc/systemd/system + fi + + # --- set related files from system name --- + SERVICE_K3S=${SYSTEM_NAME}.service + UNINSTALL_K3S_SH=${UNINSTALL_K3S_SH:-${BIN_DIR}/${SYSTEM_NAME}-uninstall.sh} + KILLALL_K3S_SH=${KILLALL_K3S_SH:-${BIN_DIR}/k3s-killall.sh} + + # --- use service or environment location depending on systemd/openrc --- + if [ "${HAS_SYSTEMD}" = true ]; then + FILE_K3S_SERVICE=${SYSTEMD_DIR}/${SERVICE_K3S} + FILE_K3S_ENV=${SYSTEMD_DIR}/${SERVICE_K3S}.env + elif [ "${HAS_OPENRC}" = true ]; then + $SUDO mkdir -p /etc/rancher/k3s + FILE_K3S_SERVICE=/etc/init.d/${SYSTEM_NAME} + FILE_K3S_ENV=/etc/rancher/k3s/${SYSTEM_NAME}.env + fi + + # --- get hash of config & exec for currently installed k3s --- + PRE_INSTALL_HASHES=$(get_installed_hashes) + + # --- if bin directory is read only skip download --- + if [ "${INSTALL_K3S_BIN_DIR_READ_ONLY}" = true ]; then + INSTALL_K3S_SKIP_DOWNLOAD=true + fi + + # --- setup channel values + INSTALL_K3S_CHANNEL_URL=${INSTALL_K3S_CHANNEL_URL:-'https://update.k3s.io/v1-release/channels'} + INSTALL_K3S_CHANNEL=${INSTALL_K3S_CHANNEL:-'stable'} +} + +# --- check if skip download environment variable set --- +can_skip_download_binary() { + if [ "${INSTALL_K3S_SKIP_DOWNLOAD}" != true ] && [ "${INSTALL_K3S_SKIP_DOWNLOAD}" != binary ]; then + return 1 + fi +} + +can_skip_download_selinux() { + if [ "${INSTALL_K3S_SKIP_DOWNLOAD}" != true ] && [ "${INSTALL_K3S_SKIP_DOWNLOAD}" != selinux ]; then + return 1 + fi +} + +# --- verify an executable k3s binary is installed --- +verify_k3s_is_executable() { + if [ ! -x ${BIN_DIR}/k3s ]; then + fatal "Executable k3s binary not found at ${BIN_DIR}/k3s" + fi +} + +# --- set arch and suffix, fatal if architecture not supported --- +setup_verify_arch() { + if [ -z "$ARCH" ]; then + ARCH=$(uname -m) + fi + case $ARCH in + amd64) + ARCH=amd64 + SUFFIX= + ;; + x86_64) + ARCH=amd64 + SUFFIX= + ;; + arm64) + ARCH=arm64 + SUFFIX=-${ARCH} + ;; + s390x) + ARCH=s390x + SUFFIX=-${ARCH} + ;; + aarch64) + ARCH=arm64 + SUFFIX=-${ARCH} + ;; + arm*) + ARCH=arm + SUFFIX=-${ARCH}hf + ;; + *) + fatal "Unsupported architecture $ARCH" + esac +} + +# --- verify existence of network downloader executable --- +verify_downloader() { + # Return failure if it doesn't exist or is no executable + [ -x "$(command -v $1)" ] || return 1 + + # Set verified executable as our downloader program and return success + DOWNLOADER=$1 + return 0 +} + +# --- create temporary directory and cleanup when done --- +setup_tmp() { + TMP_DIR=$(mktemp -d -t k3s-install.XXXXXXXXXX) + TMP_HASH=${TMP_DIR}/k3s.hash + TMP_ZIP=${TMP_DIR}/k3s.zip + TMP_BIN=${TMP_DIR}/k3s.bin + cleanup() { + code=$? + set +e + trap - EXIT + rm -rf ${TMP_DIR} + exit $code + } + trap cleanup INT EXIT +} + +# --- use desired k3s version if defined or find version from channel --- +get_release_version() { + if [ -n "${INSTALL_K3S_PR}" ]; then + VERSION_K3S="PR ${INSTALL_K3S_PR}" + get_pr_artifact_url + elif [ -n "${INSTALL_K3S_COMMIT}" ]; then + VERSION_K3S="commit ${INSTALL_K3S_COMMIT}" + elif [ -n "${INSTALL_K3S_VERSION}" ]; then + VERSION_K3S=${INSTALL_K3S_VERSION} + else + info "Finding release for channel ${INSTALL_K3S_CHANNEL}" + version_url="${INSTALL_K3S_CHANNEL_URL}/${INSTALL_K3S_CHANNEL}" + case $DOWNLOADER in + curl) + VERSION_K3S=$(curl -w '%{url_effective}' -L -s -S ${version_url} -o /dev/null | sed -e 's|.*/||') + ;; + wget) + VERSION_K3S=$(wget -SqO /dev/null ${version_url} 2>&1 | grep -i Location | sed -e 's|.*/||') + ;; + *) + fatal "Incorrect downloader executable '$DOWNLOADER'" + ;; + esac + fi + info "Using ${VERSION_K3S} as release" +} + +# --- get k3s-selinux version --- +get_k3s_selinux_version() { + available_version="k3s-selinux-1.2-2.${rpm_target}.noarch.rpm" + info "Finding available k3s-selinux versions" + + # run verify_downloader in case it binary installation was skipped + verify_downloader curl || verify_downloader wget || fatal 'Can not find curl or wget for downloading files' + + case $DOWNLOADER in + curl) + DOWNLOADER_OPTS="-s" + ;; + wget) + DOWNLOADER_OPTS="-q -O -" + ;; + *) + fatal "Incorrect downloader executable '$DOWNLOADER'" + ;; + esac + for i in {1..3}; do + set +e + if [ "${rpm_channel}" = "testing" ]; then + version=$(timeout 5 ${DOWNLOADER} ${DOWNLOADER_OPTS} https://api.github.com/repos/k3s-io/k3s-selinux/releases | grep browser_download_url | awk '{ print $2 }' | grep -oE "[^\/]+${rpm_target}\.noarch\.rpm" | head -n 1) + else + version=$(timeout 5 ${DOWNLOADER} ${DOWNLOADER_OPTS} https://api.github.com/repos/k3s-io/k3s-selinux/releases/latest | grep browser_download_url | awk '{ print $2 }' | grep -oE "[^\/]+${rpm_target}\.noarch\.rpm") + fi + set -e + if [ "${version}" != "" ]; then + break + fi + sleep 1 + done + if [ "${version}" == "" ]; then + warn "Failed to get available versions of k3s-selinux..defaulting to ${available_version}" + return + fi + available_version=${version} +} + +# --- download from github url --- +download() { + [ $# -eq 2 ] || fatal 'download needs exactly 2 arguments' + set +e + case $DOWNLOADER in + curl) + curl -o $1 -sfL $2 + ;; + wget) + wget -qO $1 $2 + ;; + *) + fatal "Incorrect executable '$DOWNLOADER'" + ;; + esac + + # Abort if download command failed + [ $? -eq 0 ] || fatal 'Download failed' + set -e +} + +# --- download hash from github url --- +download_hash() { + if [ -n "${INSTALL_K3S_PR}" ]; then + info "Downloading hash ${GITHUB_PR_URL}" + curl -o ${TMP_ZIP} -H "Authorization: Bearer $GITHUB_TOKEN" -L ${GITHUB_PR_URL} + unzip -p ${TMP_ZIP} k3s.sha256sum > ${TMP_HASH} + else + if [ -n "${INSTALL_K3S_COMMIT}" ]; then + HASH_URL=${STORAGE_URL}/k3s${SUFFIX}-${INSTALL_K3S_COMMIT}.sha256sum + else + HASH_URL=${GITHUB_URL}/download/${VERSION_K3S}/sha256sum-${ARCH}.txt + fi + info "Downloading hash ${HASH_URL}" + download ${TMP_HASH} ${HASH_URL} + fi + HASH_EXPECTED=$(grep " k3s${SUFFIX}$" ${TMP_HASH}) + HASH_EXPECTED=${HASH_EXPECTED%%[[:blank:]]*} +} + +# --- check hash against installed version --- +installed_hash_matches() { + if [ -x ${BIN_DIR}/k3s ]; then + HASH_INSTALLED=$(sha256sum ${BIN_DIR}/k3s) + HASH_INSTALLED=${HASH_INSTALLED%%[[:blank:]]*} + if [ "${HASH_EXPECTED}" = "${HASH_INSTALLED}" ]; then + return + fi + fi + return 1 +} + +# Use the GitHub API to identify the artifact associated with a given PR +get_pr_artifact_url() { + GITHUB_API_URL=https://api.github.com/repos/k3s-io/k3s + + # Check if jq is installed + if ! [ -x "$(command -v jq)" ]; then + echo "jq is required to use INSTALL_K3S_PR. Please install jq and try again" + exit 1 + fi + + if [ -z "${GITHUB_TOKEN}" ]; then + fatal "Installing PR builds requires GITHUB_TOKEN with k3s-io/k3s repo authorization" + fi + + # GET request to the GitHub API to retrieve the latest commit SHA from the pull request + COMMIT_ID=$(curl -s -H "Authorization: Bearer $GITHUB_TOKEN" "$GITHUB_API_URL/pulls/$INSTALL_K3S_PR" | jq -r '.head.sha') + + # GET request to the GitHub API to retrieve the Build workflow associated with the commit + wf_raw=$(curl -s -H "Authorization: Bearer $GITHUB_TOKEN" "$GITHUB_API_URL/commits/$COMMIT_ID/check-runs") + build_workflow=$(printf "%s" "$wf_raw" | jq -r '.check_runs[] | select(.name == "build / Build")') + + # Extract the Run ID from the build workflow and lookup artifacts associated with the run + RUN_ID=$(echo "$build_workflow" | jq -r ' .details_url' | awk -F'/' '{print $(NF-2)}') + + # Extract the artifat ID for the "k3s" artifact + artifacts=$(curl -s -H "Authorization: Bearer $GITHUB_TOKEN" "$GITHUB_API_URL/actions/runs/$RUN_ID/artifacts") + artifacts_url=$(echo "$artifacts" | jq -r '.artifacts[] | select(.name == "k3s") | .archive_download_url') + GITHUB_PR_URL=$artifacts_url +} + +# --- download binary from github url --- +download_binary() { + if [ -n "${INSTALL_K3S_PR}" ]; then + # Since Binary and Hash are zipped together, check if TMP_ZIP already exists + if ! [ -f ${TMP_ZIP} ]; then + info "Downloading K3s artifact ${GITHUB_PR_URL}" + curl -o ${TMP_ZIP} -H "Authorization: Bearer $GITHUB_TOKEN" -L ${GITHUB_PR_URL} + fi + # extract k3s binary from zip + unzip -p ${TMP_ZIP} k3s > ${TMP_BIN} + return + elif [ -n "${INSTALL_K3S_COMMIT}" ]; then + BIN_URL=${STORAGE_URL}/k3s${SUFFIX}-${INSTALL_K3S_COMMIT} + else + BIN_URL=${GITHUB_URL}/download/${VERSION_K3S}/k3s${SUFFIX} + fi + info "Downloading binary ${BIN_URL}" + download ${TMP_BIN} ${BIN_URL} +} + +# --- verify downloaded binary hash --- +verify_binary() { + info "Verifying binary download" + HASH_BIN=$(sha256sum ${TMP_BIN}) + HASH_BIN=${HASH_BIN%%[[:blank:]]*} + if [ "${HASH_EXPECTED}" != "${HASH_BIN}" ]; then + fatal "Download sha256 does not match ${HASH_EXPECTED}, got ${HASH_BIN}" + fi +} + +# --- setup permissions and move binary to system directory --- +setup_binary() { + chmod 755 ${TMP_BIN} + info "Installing k3s to ${BIN_DIR}/k3s" + $SUDO chown root:root ${TMP_BIN} + $SUDO mv -f ${TMP_BIN} ${BIN_DIR}/k3s +} + +# --- setup selinux policy --- +setup_selinux() { + case ${INSTALL_K3S_CHANNEL} in + *testing) + rpm_channel=testing + ;; + *latest) + rpm_channel=latest + ;; + *) + rpm_channel=stable + ;; + esac + + rpm_site="rpm.rancher.io" + if [ "${rpm_channel}" = "testing" ]; then + rpm_site="rpm-testing.rancher.io" + fi + + [ -r /etc/os-release ] && . /etc/os-release + if [ `expr "${ID_LIKE}" : ".*suse.*"` != 0 ]; then + rpm_target=sle + rpm_site_infix=microos + package_installer=zypper + if [ "${ID_LIKE:-}" = suse ] && ( [ "${VARIANT_ID:-}" = sle-micro ] || [ "${ID:-}" = sle-micro ] ); then + rpm_target=sle + rpm_site_infix=slemicro + package_installer=zypper + fi + elif [ "${ID_LIKE:-}" = coreos ] || [ "${VARIANT_ID:-}" = coreos ]; then + rpm_target=coreos + rpm_site_infix=coreos + package_installer=rpm-ostree + elif [ "${VERSION_ID%%.*}" = "7" ]; then + rpm_target=el7 + rpm_site_infix=centos/7 + package_installer=yum + elif [ "${VERSION_ID%%.*}" = "8" ] || [ "${VERSION_ID%%.*}" -gt "36" ]; then + rpm_target=el8 + rpm_site_infix=centos/8 + package_installer=yum + else + rpm_target=el9 + rpm_site_infix=centos/9 + package_installer=yum + fi + + if [ "${package_installer}" = "rpm-ostree" ] && [ -x /bin/yum ]; then + package_installer=yum + fi + + if [ "${package_installer}" = "yum" ] && [ -x /usr/bin/dnf ]; then + package_installer=dnf + fi + + policy_hint="please install: + ${package_installer} install -y container-selinux + ${package_installer} install -y https://${rpm_site}/k3s/${rpm_channel}/common/${rpm_site_infix}/noarch/${available_version} +" + + if [ "$INSTALL_K3S_SKIP_SELINUX_RPM" = true ] || can_skip_download_selinux || [ ! -d /usr/share/selinux ]; then + info "Skipping installation of SELinux RPM" + return + fi + + get_k3s_selinux_version + install_selinux_rpm ${rpm_site} ${rpm_channel} ${rpm_target} ${rpm_site_infix} + + policy_error=fatal + if [ "$INSTALL_K3S_SELINUX_WARN" = true ] || [ "${ID_LIKE:-}" = coreos ] || [ "${VARIANT_ID:-}" = coreos ]; then + policy_error=warn + fi + + if ! $SUDO chcon -u system_u -r object_r -t container_runtime_exec_t ${BIN_DIR}/k3s >/dev/null 2>&1; then + if $SUDO grep '^\s*SELINUX=enforcing' /etc/selinux/config >/dev/null 2>&1; then + $policy_error "Failed to apply container_runtime_exec_t to ${BIN_DIR}/k3s, ${policy_hint}" + fi + elif [ ! -f /usr/share/selinux/packages/k3s.pp ]; then + if [ -x /usr/sbin/transactional-update ] || [ "${ID_LIKE:-}" = coreos ] || [ "${VARIANT_ID:-}" = coreos ]; then + warn "Please reboot your machine to activate the changes and avoid data loss." + else + $policy_error "Failed to find the k3s-selinux policy, ${policy_hint}" + fi + fi +} + +install_selinux_rpm() { + if [ -r /etc/redhat-release ] || [ -r /etc/centos-release ] || [ -r /etc/oracle-release ] || [ -r /etc/fedora-release ] || [ "${ID_LIKE%%[ ]*}" = "suse" ]; then + repodir=/etc/yum.repos.d + if [ -d /etc/zypp/repos.d ]; then + repodir=/etc/zypp/repos.d + fi + set +o noglob + $SUDO rm -f ${repodir}/rancher-k3s-common*.repo + set -o noglob + if [ -r /etc/redhat-release ] && [ "${3}" = "el7" ]; then + $SUDO yum install -y yum-utils + $SUDO yum-config-manager --enable rhel-7-server-extras-rpms + fi + $SUDO tee ${repodir}/rancher-k3s-common.repo >/dev/null << EOF +[rancher-k3s-common-${2}] +name=Rancher K3s Common (${2}) +baseurl=https://${1}/k3s/${2}/common/${4}/noarch +enabled=1 +gpgcheck=1 +repo_gpgcheck=0 +gpgkey=https://${1}/public.key +EOF + case ${3} in + sle) + rpm_installer="zypper --gpg-auto-import-keys" + if [ "${TRANSACTIONAL_UPDATE=false}" != "true" ] && [ -x /usr/sbin/transactional-update ]; then + transactional_update_run="transactional-update --no-selfupdate -d run" + rpm_installer="transactional-update --no-selfupdate -d run ${rpm_installer}" + : "${INSTALL_K3S_SKIP_START:=true}" + fi + # create the /var/lib/rpm-state in SLE systems to fix the prein selinux macro + ${transactional_update_run} mkdir -p /var/lib/rpm-state + ;; + coreos) + rpm_installer="rpm-ostree --idempotent" + # rpm_install_extra_args="--apply-live" + : "${INSTALL_K3S_SKIP_START:=true}" + ;; + *) + rpm_installer="yum" + ;; + esac + if [ "${rpm_installer}" = "yum" ] && [ -x /usr/bin/dnf ]; then + rpm_installer=dnf + fi + if rpm -q --quiet k3s-selinux; then + # remove k3s-selinux module before upgrade to allow container-selinux to upgrade safely + if check_available_upgrades container-selinux ${3} && check_available_upgrades k3s-selinux ${3}; then + MODULE_PRIORITY=$($SUDO semodule --list=full | grep k3s | cut -f1 -d" ") + if [ -n "${MODULE_PRIORITY}" ]; then + $SUDO semodule -X $MODULE_PRIORITY -r k3s || true + fi + fi + fi + # shellcheck disable=SC2086 + $SUDO ${rpm_installer} install -y "k3s-selinux" + fi + return +} + +check_available_upgrades() { + set +e + case ${2} in + sle) + available_upgrades=$($SUDO zypper -q -t -s 11 se -s -u --type package $1 | tail -n 1 | grep -v "No matching" | awk '{print $3}') + ;; + coreos) + # currently rpm-ostree does not support search functionality https://github.com/coreos/rpm-ostree/issues/1877 + ;; + *) + available_upgrades=$($SUDO yum -q --refresh list $1 --upgrades | tail -n 1 | awk '{print $2}') + ;; + esac + set -e + if [ -n "${available_upgrades}" ]; then + return 0 + fi + return 1 +} +# --- download and verify k3s --- +download_and_verify() { + if can_skip_download_binary; then + info 'Skipping k3s download and verify' + verify_k3s_is_executable + return + fi + + setup_verify_arch + verify_downloader curl || verify_downloader wget || fatal 'Can not find curl or wget for downloading files' + setup_tmp + get_release_version + download_hash + + if installed_hash_matches; then + info 'Skipping binary downloaded, installed k3s matches hash' + return + fi + + download_binary + verify_binary + setup_binary +} + +# --- add additional utility links --- +create_symlinks() { + [ "${INSTALL_K3S_BIN_DIR_READ_ONLY}" = true ] && return + [ "${INSTALL_K3S_SYMLINK}" = skip ] && return + + for cmd in kubectl crictl ctr; do + if [ ! -e ${BIN_DIR}/${cmd} ] || [ "${INSTALL_K3S_SYMLINK}" = force ]; then + which_cmd=$(command -v ${cmd} 2>/dev/null || true) + if [ -z "${which_cmd}" ] || [ "${INSTALL_K3S_SYMLINK}" = force ]; then + info "Creating ${BIN_DIR}/${cmd} symlink to k3s" + $SUDO ln -sf k3s ${BIN_DIR}/${cmd} + else + info "Skipping ${BIN_DIR}/${cmd} symlink to k3s, command exists in PATH at ${which_cmd}" + fi + else + info "Skipping ${BIN_DIR}/${cmd} symlink to k3s, already exists" + fi + done +} + +# --- create killall script --- +create_killall() { + [ "${INSTALL_K3S_BIN_DIR_READ_ONLY}" = true ] && return + info "Creating killall script ${KILLALL_K3S_SH}" + $SUDO tee ${KILLALL_K3S_SH} >/dev/null << \EOF +#!/bin/sh +[ $(id -u) -eq 0 ] || exec sudo $0 $@ + +for bin in /var/lib/rancher/k3s/data/**/bin/; do + [ -d $bin ] && export PATH=$PATH:$bin:$bin/aux +done + +set -x + +for service in /etc/systemd/system/k3s*.service; do + [ -s $service ] && systemctl stop $(basename $service) +done + +for service in /etc/init.d/k3s*; do + [ -x $service ] && $service stop +done + +pschildren() { + ps -e -o ppid= -o pid= | \ + sed -e 's/^\s*//g; s/\s\s*/\t/g;' | \ + grep -w "^$1" | \ + cut -f2 +} + +pstree() { + for pid in $@; do + echo $pid + for child in $(pschildren $pid); do + pstree $child + done + done +} + +killtree() { + kill -9 $( + { set +x; } 2>/dev/null; + pstree $@; + set -x; + ) 2>/dev/null +} + +remove_interfaces() { + # Delete network interface(s) that match 'master cni0' + ip link show 2>/dev/null | grep 'master cni0' | while read ignore iface ignore; do + iface=${iface%%@*} + [ -z "$iface" ] || ip link delete $iface + done + + # Delete cni related interfaces + ip link delete cni0 + ip link delete flannel.1 + ip link delete flannel-v6.1 + ip link delete kube-ipvs0 + ip link delete flannel-wg + ip link delete flannel-wg-v6 + + # Restart tailscale + if [ -n "$(command -v tailscale)" ]; then + tailscale set --advertise-routes= + fi +} + +getshims() { + ps -e -o pid= -o args= | sed -e 's/^ *//; s/\s\s*/\t/;' | grep -w 'k3s/data/[^/]*/bin/containerd-shim' | cut -f1 +} + +killtree $({ set +x; } 2>/dev/null; getshims; set -x) + +do_unmount_and_remove() { + set +x + while read -r _ path _; do + case "$path" in $1*) echo "$path" ;; esac + done < /proc/self/mounts | sort -r | xargs -r -t -n 1 sh -c 'umount -f "$0" && rm -rf "$0"' + set -x +} + +do_unmount_and_remove '/run/k3s' +do_unmount_and_remove '/var/lib/rancher/k3s' +do_unmount_and_remove '/var/lib/kubelet/pods' +do_unmount_and_remove '/var/lib/kubelet/plugins' +do_unmount_and_remove '/run/netns/cni-' + +# Remove CNI namespaces +ip netns show 2>/dev/null | grep cni- | xargs -r -t -n 1 ip netns delete + +remove_interfaces + +rm -rf /var/lib/cni/ +iptables-save | grep -v KUBE- | grep -v CNI- | grep -iv flannel | iptables-restore +ip6tables-save | grep -v KUBE- | grep -v CNI- | grep -iv flannel | ip6tables-restore +EOF + $SUDO chmod 755 ${KILLALL_K3S_SH} + $SUDO chown root:root ${KILLALL_K3S_SH} +} + +# --- create uninstall script --- +create_uninstall() { + [ "${INSTALL_K3S_BIN_DIR_READ_ONLY}" = true ] && return + info "Creating uninstall script ${UNINSTALL_K3S_SH}" + $SUDO tee ${UNINSTALL_K3S_SH} >/dev/null << EOF +#!/bin/sh +set -x +[ \$(id -u) -eq 0 ] || exec sudo \$0 \$@ + +${KILLALL_K3S_SH} + +if command -v systemctl; then + systemctl disable ${SYSTEM_NAME} + systemctl reset-failed ${SYSTEM_NAME} + systemctl daemon-reload +fi +if command -v rc-update; then + rc-update delete ${SYSTEM_NAME} default +fi + +rm -f ${FILE_K3S_SERVICE} +rm -f ${FILE_K3S_ENV} + +remove_uninstall() { + rm -f ${UNINSTALL_K3S_SH} +} +trap remove_uninstall EXIT + +if (ls ${SYSTEMD_DIR}/k3s*.service || ls /etc/init.d/k3s*) >/dev/null 2>&1; then + set +x; echo 'Additional k3s services installed, skipping uninstall of k3s'; set -x + exit +fi + +for cmd in kubectl crictl ctr; do + if [ -L ${BIN_DIR}/\$cmd ]; then + rm -f ${BIN_DIR}/\$cmd + fi +done + +rm -rf /etc/rancher/k3s +rm -rf /run/k3s +rm -rf /run/flannel +rm -rf /var/lib/rancher/k3s +rm -rf /var/lib/kubelet +rm -f ${BIN_DIR}/k3s +rm -f ${KILLALL_K3S_SH} + +if type yum >/dev/null 2>&1; then + yum remove -y k3s-selinux + rm -f /etc/yum.repos.d/rancher-k3s-common*.repo +elif type rpm-ostree >/dev/null 2>&1; then + rpm-ostree uninstall k3s-selinux + rm -f /etc/yum.repos.d/rancher-k3s-common*.repo +elif type zypper >/dev/null 2>&1; then + uninstall_cmd="zypper remove -y k3s-selinux" + if [ "\${TRANSACTIONAL_UPDATE=false}" != "true" ] && [ -x /usr/sbin/transactional-update ]; then + uninstall_cmd="transactional-update --no-selfupdate -d run \$uninstall_cmd" + fi + \$uninstall_cmd + rm -f /etc/zypp/repos.d/rancher-k3s-common*.repo +fi +EOF + $SUDO chmod 755 ${UNINSTALL_K3S_SH} + $SUDO chown root:root ${UNINSTALL_K3S_SH} +} + +# --- disable current service if loaded -- +systemd_disable() { + $SUDO systemctl disable ${SYSTEM_NAME} >/dev/null 2>&1 || true + $SUDO rm -f /etc/systemd/system/${SERVICE_K3S} || true + $SUDO rm -f /etc/systemd/system/${SERVICE_K3S}.env || true +} + +# --- capture current env and create file containing k3s_ variables --- +create_env_file() { + info "env: Creating environment file ${FILE_K3S_ENV}" + $SUDO touch ${FILE_K3S_ENV} + $SUDO chmod 0600 ${FILE_K3S_ENV} + sh -c export | while read x v; do echo $v; done | grep -E '^(K3S|CONTAINERD)_' | $SUDO tee ${FILE_K3S_ENV} >/dev/null + sh -c export | while read x v; do echo $v; done | grep -Ei '^(NO|HTTP|HTTPS)_PROXY' | $SUDO tee -a ${FILE_K3S_ENV} >/dev/null +} + +# --- write systemd service file --- +create_systemd_service_file() { + info "systemd: Creating service file ${FILE_K3S_SERVICE}" + $SUDO tee ${FILE_K3S_SERVICE} >/dev/null << EOF +[Unit] +Description=Lightweight Kubernetes +Documentation=https://k3s.io +Wants=network-online.target +After=network-online.target + +[Install] +WantedBy=multi-user.target + +[Service] +Type=${SYSTEMD_TYPE} +EnvironmentFile=-/etc/default/%N +EnvironmentFile=-/etc/sysconfig/%N +EnvironmentFile=-${FILE_K3S_ENV} +KillMode=process +Delegate=yes +# Having non-zero Limit*s causes performance problems due to accounting overhead +# in the kernel. We recommend using cgroups to do container-local accounting. +LimitNOFILE=1048576 +LimitNPROC=infinity +LimitCORE=infinity +TasksMax=infinity +TimeoutStartSec=0 +Restart=always +RestartSec=5s +ExecStartPre=/bin/sh -xc '! /usr/bin/systemctl is-enabled --quiet nm-cloud-setup.service 2>/dev/null' +ExecStartPre=-/sbin/modprobe br_netfilter +ExecStartPre=-/sbin/modprobe overlay +ExecStart=${BIN_DIR}/k3s \\ + ${CMD_K3S_EXEC} + +EOF +} + +# --- write openrc service file --- +create_openrc_service_file() { + LOG_FILE=/var/log/${SYSTEM_NAME}.log + + info "openrc: Creating service file ${FILE_K3S_SERVICE}" + $SUDO tee ${FILE_K3S_SERVICE} >/dev/null << EOF +#!/sbin/openrc-run + +depend() { + after network-online + want cgroups +} + +start_pre() { + rm -f /tmp/k3s.* +} + +supervisor=supervise-daemon +name=${SYSTEM_NAME} +command="${BIN_DIR}/k3s" +command_args="$(escape_dq "${CMD_K3S_EXEC}") + >>${LOG_FILE} 2>&1" + +output_log=${LOG_FILE} +error_log=${LOG_FILE} + +pidfile="/var/run/${SYSTEM_NAME}.pid" +respawn_delay=5 +respawn_max=0 + +set -o allexport +if [ -f /etc/environment ]; then . /etc/environment; fi +if [ -f ${FILE_K3S_ENV} ]; then . ${FILE_K3S_ENV}; fi +set +o allexport +EOF + $SUDO chmod 0755 ${FILE_K3S_SERVICE} + + $SUDO tee /etc/logrotate.d/${SYSTEM_NAME} >/dev/null << EOF +${LOG_FILE} { + missingok + notifempty + copytruncate +} +EOF +} + +# --- write systemd or openrc service file --- +create_service_file() { + [ "${HAS_SYSTEMD}" = true ] && create_systemd_service_file && restore_systemd_service_file_context + [ "${HAS_OPENRC}" = true ] && create_openrc_service_file + return 0 +} + +restore_systemd_service_file_context() { + $SUDO restorecon -R -i ${FILE_K3S_SERVICE} 2>/dev/null || true + $SUDO restorecon -R -i ${FILE_K3S_ENV} 2>/dev/null || true +} + +# --- get hashes of the current k3s bin and service files +get_installed_hashes() { + $SUDO sha256sum ${BIN_DIR}/k3s ${FILE_K3S_SERVICE} ${FILE_K3S_ENV} 2>&1 || true +} + +# --- enable and start systemd service --- +systemd_enable() { + info "systemd: Enabling ${SYSTEM_NAME} unit" + $SUDO systemctl enable ${FILE_K3S_SERVICE} >/dev/null + $SUDO systemctl daemon-reload >/dev/null +} + +systemd_start() { + info "systemd: Starting ${SYSTEM_NAME}" + $SUDO systemctl restart ${SYSTEM_NAME} +} + +# --- enable and start openrc service --- +openrc_enable() { + info "openrc: Enabling ${SYSTEM_NAME} service for default runlevel" + $SUDO rc-update add ${SYSTEM_NAME} default >/dev/null +} + +openrc_start() { + info "openrc: Starting ${SYSTEM_NAME}" + $SUDO ${FILE_K3S_SERVICE} restart +} + +has_working_xtables() { + if $SUDO sh -c "command -v \"$1-save\"" 1> /dev/null && $SUDO sh -c "command -v \"$1-restore\"" 1> /dev/null; then + if $SUDO $1-save 2>/dev/null | grep -q '^-A CNI-HOSTPORT-MASQ -j MASQUERADE$'; then + warn "Host $1-save/$1-restore tools are incompatible with existing rules" + else + return 0 + fi + else + info "Host $1-save/$1-restore tools not found" + fi + return 1 +} + +# --- startup systemd or openrc service --- +service_enable_and_start() { + if [ -f "/proc/cgroups" ] && [ "$(grep memory /proc/cgroups | while read -r n n n enabled; do echo $enabled; done)" -eq 0 ]; + then + info 'Failed to find memory cgroup, you may need to add "cgroup_memory=1 cgroup_enable=memory" to your linux cmdline (/boot/cmdline.txt on a Raspberry Pi)' + fi + + [ "${INSTALL_K3S_SKIP_ENABLE}" = true ] && return + + [ "${HAS_SYSTEMD}" = true ] && systemd_enable + [ "${HAS_OPENRC}" = true ] && openrc_enable + + [ "${INSTALL_K3S_SKIP_START}" = true ] && return + + POST_INSTALL_HASHES=$(get_installed_hashes) + if [ "${PRE_INSTALL_HASHES}" = "${POST_INSTALL_HASHES}" ] && [ "${INSTALL_K3S_FORCE_RESTART}" != true ]; then + info 'No change detected so skipping service start' + return + fi + + for XTABLES in iptables ip6tables; do + if has_working_xtables ${XTABLES}; then + $SUDO ${XTABLES}-save 2>/dev/null | grep -v KUBE- | grep -iv flannel | $SUDO ${XTABLES}-restore + fi + done + + [ "${HAS_SYSTEMD}" = true ] && systemd_start + [ "${HAS_OPENRC}" = true ] && openrc_start + return 0 +} + +# --- re-evaluate args to include env command --- +eval set -- $(escape "${INSTALL_K3S_EXEC}") $(quote "$@") + +# --- run the install process -- +{ + verify_system + setup_env "$@" + download_and_verify + setup_selinux + create_symlinks + create_killall + create_uninstall + systemd_disable + create_env_file + create_service_file + service_enable_and_start +} + diff --git a/riscv/mariadb/catalog-info.yaml b/riscv/mariadb/catalog-info.yaml new file mode 100644 index 0000000..b5c5af3 --- /dev/null +++ b/riscv/mariadb/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-mariadb + title: Mariadb (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/mariadb/create-secret.sh b/riscv/mariadb/create-secret.sh new file mode 100755 index 0000000..0d6356e --- /dev/null +++ b/riscv/mariadb/create-secret.sh @@ -0,0 +1 @@ +microk8s kubectl create secret generic mariadb-secret --from-file=username=./username.txt --from-file=password=./password.txt diff --git a/riscv/mariadb/login.sh b/riscv/mariadb/login.sh new file mode 100755 index 0000000..c79c168 --- /dev/null +++ b/riscv/mariadb/login.sh @@ -0,0 +1 @@ +microk8s kubectl exec -it mariadb-sts-0 -- mariadb -uroot -psecret -n databases diff --git a/riscv/mariadb/mariadb.yaml b/riscv/mariadb/mariadb.yaml new file mode 100644 index 0000000..b11972d --- /dev/null +++ b/riscv/mariadb/mariadb.yaml @@ -0,0 +1,86 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: mariadb +--- +apiVersion: v1 +kind: Service +metadata: + name: mariadb + namespace: mariadb + labels: + app: mariadb +spec: + ports: + - port: 3306 + name: mariadb-port + clusterIP: None + selector: + app: mariadb +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: mariadb-sts + namespace: mariadb +spec: + serviceName: "mariadb" + replicas: 1 + selector: + matchLabels: + app: mariadb + template: + metadata: + labels: + app: mariadb + spec: + containers: + - name: mariadb + image: allardkrings/riscv64-mariadb:10.5 + ports: + - containerPort: 3306 + name: mariadb-port + env: + - name: MARIADB_ROOT_PASSWORD + value: "password" + - name: PMA_HOST + value: 'mariadb' + volumeMounts: + - name: datadir + mountPath: /var/lib/mysql/ + volumes: + - name: datadir + persistentVolumeClaim: + claimName: mariadb-pvc +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: mariadb-pv + labels: + type: local +spec: + storageClassName: "" + capacity: + storage: 4Gi + accessModes: + - ReadWriteMany + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/mariadb/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: mariadb-pvc + namespace: mariadb +spec: + storageClassName: "" + volumeName: mariadb-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 4Gi diff --git a/riscv/mariadb/password.txt b/riscv/mariadb/password.txt new file mode 100755 index 0000000..536aca3 --- /dev/null +++ b/riscv/mariadb/password.txt @@ -0,0 +1 @@ +secret \ No newline at end of file diff --git a/riscv/mariadb/username.txt b/riscv/mariadb/username.txt new file mode 100755 index 0000000..93ca142 --- /dev/null +++ b/riscv/mariadb/username.txt @@ -0,0 +1 @@ +root \ No newline at end of file diff --git a/riscv/monica/catalog-info.yaml b/riscv/monica/catalog-info.yaml new file mode 100644 index 0000000..275ec32 --- /dev/null +++ b/riscv/monica/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-monica + title: Monica (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/monica/riscv/README.md b/riscv/monica/riscv/README.md new file mode 100644 index 0000000..29cbc1a --- /dev/null +++ b/riscv/monica/riscv/README.md @@ -0,0 +1,2 @@ +user: admin +password: Monica0101@ diff --git a/riscv/monica/riscv/monica.yaml b/riscv/monica/riscv/monica.yaml new file mode 100644 index 0000000..2665f5c --- /dev/null +++ b/riscv/monica/riscv/monica.yaml @@ -0,0 +1,175 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: monica +--- +# Secret for database credentials +apiVersion: v1 +kind: Secret +metadata: + name: monica-db-secret + namespace: monica +type: Opaque +stringData: + DB_USERNAME: monica + DB_PASSWORD: monica +--- +# Secret for Monica APP_KEY (you can generate a new one with "php artisan key:generate --show") +apiVersion: v1 +kind: Secret +metadata: + name: monica-app-secret + namespace: monica +type: Opaque +stringData: + APP_KEY: base64:6McA2wuosOQlpO12vIRl7LPFbNlkxzOqzA8ZPSj7Huk= +--- +# Persistent Volume Claim for Monica's storage +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: monica-pvc + namespace: monica +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: monica-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteOnce + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/monica/riscv + readOnly: false +--- +# Monica Deployment +apiVersion: apps/v1 +kind: Deployment +metadata: + name: monica + namespace: monica +spec: + replicas: 1 + selector: + matchLabels: + app: monica + template: + metadata: + labels: + app: monica + spec: + containers: + - name: monica + image: riscv64/monica:latest + ports: + - containerPort: 80 + env: + - name: APP_ENV + value: production + - name: APP_KEY + valueFrom: + secretKeyRef: + name: monica-app-secret + key: APP_KEY + - name: DB_CONNECTION + value: mysql + - name: DB_HOST + value: mariadb.mariadb.svc.cluster.local + - name: DB_DATABASE + value: monica + - name: DB_USERNAME + valueFrom: + secretKeyRef: + name: monica-db-secret + key: DB_USERNAME + - name: DB_PASSWORD + valueFrom: + secretKeyRef: + name: monica-db-secret + key: DB_PASSWORD + - name: DB_PORT + value: "3306" + - name: APP_URL + value: https://monica-riscv.allarddcs + volumeMounts: + - name: monica-data + mountPath: /var/www/html/storage + volumes: + - name: monica-data + persistentVolumeClaim: + claimName: monica-pvc +--- +# Service for Monica +apiVersion: v1 +kind: Service +metadata: + name: monica + namespace: monica +spec: + type: ClusterIP + selector: + app: monica + ports: + - name: http + port: 80 + targetPort: 80 +--- +# Middleware for HTTP -> HTTPS redirect +apiVersion: traefik.containo.us/v1alpha1 +kind: Middleware +metadata: + name: redirect-to-https + namespace: monica +spec: + redirectScheme: + scheme: https + permanent: true +--- +# HTTP IngressRoute +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: monica + namespace: monica +spec: + entryPoints: + - web + routes: + - match: Host(`monica-riscv.allarddcs.nl`) + kind: Rule + middlewares: + - name: redirect-to-https + services: + - name: monica + port: 80 +--- +# HTTPS IngressRoute (TLS via Let's Encrypt) +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: monica-tls + namespace: monica +spec: + entryPoints: + - websecure + routes: + - match: Host(`monica-riscv.allarddcs.nl`) + kind: Rule + services: + - name: monica + port: 80 + tls: + certResolver: letsencrypt diff --git a/riscv/nextcloud/README.md b/riscv/nextcloud/README.md new file mode 100644 index 0000000..ebbb2fc --- /dev/null +++ b/riscv/nextcloud/README.md @@ -0,0 +1,171 @@ +INSIDE THE NEXTCLOUD CONTAINER: +=============================== + +#controleren of WEBDAV is geinstalleerd: + +su -s /bin/sh -c "php occ app:list www-data + +=> + +Enabled: + - activity: 2.20.0 + - circles: 28.0.0 + - cloud_federation_api: 1.11.0 + - comments: 1.18.0 + - contactsinteraction: 1.9.0 + - dashboard: 7.8.0 + - dav: 1.29.2 + - federatedfilesharing: 1.18.0 + - federation: 1.18.0 + - files: 2.0.0 + - files_pdfviewer: 2.9.0 + - files_reminders: 1.1.0 + - files_sharing: 1.20.0 + - files_trashbin: 1.18.0 + - files_versions: 1.21.0 + - firstrunwizard: 2.17.0 + - logreader: 2.13.0 + - lookup_server_connector: 1.16.0 + - nextcloud_announcements: 1.17.0 + - notifications: 2.16.0 + - oauth2: 1.16.4 + - password_policy: 1.18.0 + - photos: 2.4.0 + - privacy: 1.12.0 + - provisioning_api: 1.18.0 + - recommendations: 2.0.0 + - related_resources: 1.3.0 + - serverinfo: 1.18.0 + - settings: 1.10.1 + - sharebymail: 1.18.0 + - support: 1.11.1 + - survey_client: 1.16.0 + - systemtags: 1.18.0 + - text: 3.9.2 + - theming: 2.3.0 + - twofactor_backupcodes: 1.17.0 + - updatenotification: 1.18.0 + - user_status: 1.8.1 + - viewer: 2.2.0 + - weather_status: 1.8.0 + - workflowengine: 2.10.0 +Disabled: + - admin_audit: 1.18.0 + - bruteforcesettings: 2.8.0 + - encryption: 2.16.0 + - files_external: 1.20.0 + - suspicious_login: 6.0.0 + - twofactor_totp: 10.0.0-beta.2 + - user_ldap: 1.19.0 + +#zo niet dan: + +su -s /bin/sh -c "php occ app:enable dav" www-data + +=> dav already enabled + +#controleren of nextcloud alle bestanden in var/www/data kan lezen: + +su -s /bin/sh -c "php occ files:scan --all" www-data + +=> + +Starting scan for user 1 out of 1 (admin) ++---------+-------+-----+---------+---------+--------+--------------+ +| Folders | Files | New | Updated | Removed | Errors | Elapsed time | ++---------+-------+-----+---------+---------+--------+--------------+ +| 6 | 44 | 0 | 0 | 0 | 0 | 00:00:01 | ++---------+-------+-----+---------+---------+--------+--------------+ + +#controleren of de user "admin" een directory heeft: + +ls -lah /var/www/html/data/admin/ + +=> +total 16K +drwxrwx--- 4 www-data www-data 4.0K Feb 9 16:47 . +drwxrwx--- 4 www-data www-data 4.0K Feb 9 16:46 .. +drwxrwx--- 2 www-data www-data 4.0K Feb 9 16:47 cache +drwxrwx--- 5 www-data www-data 4.0K Feb 9 16:17 files + +su -s /bin/sh -c "php occ user:list" www-data + +#controleren of gebruiker bestaat: + +=> - admin: admin + +#enable gebruiker admin: + +su -s /bin/sh -c "php occ user:enable admin" www-data + +=> The specified user is enabled + +su -s /bin/sh -c "php occ security:bruteforce:reset admin" www-data + +=> +#controleren log of specifieke meldingen mbt admin: + +cat /var/www/html/data/nextcloud.log | grep "admin" + + +=> + +{"reqId":"up3RdhwXxxGTV3nlIMH9","level":2, + "time":"2025-02-09T20:15:15+00:00", + "remoteAddr":"10.42.0.82", + "user":"--", + "app":"no app in context", + "method":"POST", + "url":"/index.php/login", + "message":"Login failed: admin (Remote IP: 10.42.0.82)", + "userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15", + "version":"28.0.14.1", + "data":[]} + +#controleren of .htaccess goed is geconfigureerd: + +cat /var/www/html/.htaccess | grep dav + +=> + + RewriteRule ^$ /remote.php/webdav/ [L,R=302] + RewriteRule ^\.well-known/carddav /remote.php/dav/ [R=301,L] + RewriteRule ^\.well-known/caldav /remote.php/dav/ [R=301,L] + +# - https://docs.nextcloud.com/server/latest/admin_manual/issues/general_troubleshooting.html#troubleshooting-webdav + +#legen cache: + +su -s /bin/sh -c "php occ maintenance:mode --on" www-data +=> Nextcloud is in maintenance mode, no apps are loaded. + +su -s /bin/sh -c "php occ maintenance:data-fingerprint" www-data + +=> +Commands provided by apps are unavailable. +Updated data-fingerprint to 60f73f9b70daee107c27b5a064670c28 + +su -s /bin/sh -c "php occ cache:clear" www-data + +=> +Commands provided by apps are unavailable. +Updated data-fingerprint to 60f73f9b70daee107c27b5a064670c28 +There are no commands defined in the "cache" namespace. + +su -s /bin/sh -c "php occ maintenance:mode --off" www-data +=> +Maintenance mode disabled +su -s /bin/sh -c "php occ config:system:get overwrite.cli.url" www-data + + + +#OUTSIDE NEXTCLOUD CONTAINER +============================ +#herstarten: + +kubectl rollout restart deployment nextcloud -n nextcloud + +#testen webdav: + +curl -v -u admin:Nextcloud01@ -X PROPFIND https://nextcloud-riscv.allarddcs.nl/remote.php/dav/files/admin/ + diff --git a/riscv/nextcloud/catalog-info.yaml b/riscv/nextcloud/catalog-info.yaml new file mode 100644 index 0000000..9956d11 --- /dev/null +++ b/riscv/nextcloud/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-nextcloud + title: Nextcloud (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/nextcloud/ingressroutes.yaml b/riscv/nextcloud/ingressroutes.yaml new file mode 100644 index 0000000..c8c9adc --- /dev/null +++ b/riscv/nextcloud/ingressroutes.yaml @@ -0,0 +1,90 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nextcloud-http + namespace: nextcloud +spec: + entryPoints: + - web + routes: + - match: Host(`nextcloud-riscv.allarddcs.nl`) + kind: Rule + services: + - name: nginx + port: 80 + middlewares: + - name: redirect-to-https + namespace: nextcloud +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nextcloud-tls + namespace: nextcloud +spec: + entryPoints: + - websecure + routes: + - match: Host(`nextcloud-riscv.allarddcs.nl`) + kind: Rule + middlewares: + - name: nextcloud-well-known + - name: nextcloud-headers + services: + - name: nginx + port: 80 + - match: Host(`nextcloud-riscv.allarddcs.nl`) && PathPrefix(`/ocs/`) + kind: Rule + middlewares: + - name: nextcloud-well-known + - name: nextcloud-headers + services: + - name: nginx + port: 80 + - match: Host(`nextcloud-riscv.allarddcs.nl`) && PathPrefix(`/ocs-provider/`) + kind: Rule + middlewares: + - name: nextcloud-headers + services: + - name: nginx + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: redirect-to-https + namespace: nextcloud +spec: + redirectScheme: + scheme: https + permanent: true +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: nextcloud-headers + namespace: nextcloud +spec: + headers: + stsSeconds: 15552000 + browserXssFilter: true + contentTypeNosniff: true + forceSTSHeader: true + frameDeny: true + sslRedirect: true + stsIncludeSubdomains: true + stsPreload: true +--- +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: nextcloud-well-known + namespace: nextcloud +spec: + redirectRegex: + regex: "^/.well-known/(carddav|caldav|webdav)" + replacement: "/remote.php/dav" + permanent: true + diff --git a/riscv/nextcloud/nextcloud.yaml b/riscv/nextcloud/nextcloud.yaml new file mode 100755 index 0000000..e921f24 --- /dev/null +++ b/riscv/nextcloud/nextcloud.yaml @@ -0,0 +1,130 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nextcloud # < name of the deploymentand reference + namespace: nextcloud + labels: + app: nextcloud # < label for tagging and reference +spec: + replicas: 1 # < number of pods to deploy + selector: + matchLabels: + app: nextcloud + strategy: + rollingUpdate: + maxSurge: 0 # < The number of pods that can be created above the desired amount of pods during an update + maxUnavailable: 1 # < The number of pods that can be unavailable during the update process + type: RollingUpdate # < New pods are added gradually, and old pods are terminated gradually + template: + metadata: + labels: + app: nextcloud + spec: + containers: + - image: riscv64/nextcloud:28.0.14-fpm-alpine # < the name of the docker image we will use + name: nextcloud # < name of container + imagePullPolicy: Always # < always use the latest image when creating container/pod + env: # < environment variables. See https://hub.docker.com/r/linuxserver/nextcloud + - name: PGID + value: "1000" # < group "ubuntu" + - name: PUID + value: "1000" # < user "ubuntu" + - name: MYSQL_HOST + value: mariadb.mariadb.svc.cluster.local + - name: MYSQL_DATABASE + value: "nextcloud" + - name: MYSQL_USER + value: "nextcloud" + - name: MYSQL_PASSWORD + value: "nextcloud" + - name: MYSQL_ROOT_PASSWORD + value: "password" + - name: NEXTCLOUD_HOSTNAME + value: "nextcloud-riscv.allarddcs.nl" + - name: TZ + value: Europe/Amsterdam + - name: OVERWRITEPROTOCOL + value: "https" + - name: APACHE_SERVER_NAME + value: "nextcloud-riscv.allarddcs.nl" + ports: + - containerPort: 9000 # < required network portnumber. See https://hub.docker.com/r/linuxserver/nextcloud + name: http + protocol: TCP + volumeMounts: # < the volume mount in the container. Look at the relation volumelabel->pvc->pv +# - name: nfs-nextcloud +# mountPath: /var/www/html +# subPath: html + - name: nfs-nextcloud + mountPath: /var/www/html/data + subPath: data + - name: nfs-nextcloud + mountPath: /var/www/html/config + subPath: config +# - name: nfs-nextcloud +# mountPath: /var/www/html/custom_apps +# subPath: nextapps + - name: nginx + image: riscv64/nginx:1.27.4-alpine + ports: + - containerPort: 80 + volumeMounts: + - name: nfs-nextcloud + mountPath: /var/www/html + subPath: html + - name: nfs-nextcloud + mountPath: /etc/nginx/conf.d/default.conf + subPath: default.conf + volumes: + - name: nfs-nextcloud # < linkname of the volume for the pvc + persistentVolumeClaim: + claimName: nextcloud-pvc # < pvc name we created in the previous yaml +--- +apiVersion: v1 +kind: Service +metadata: + name: nginx + namespace: nextcloud +spec: + selector: + app: nextcloud + ports: + - name: http + protocol: TCP + port: 80 + targetPort: 80 +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nextcloud-pv +spec: + storageClassName: "" + capacity: + storage: 10Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/nextcloud-riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nextcloud-pvc + namespace: nextcloud +spec: + storageClassName: "" + volumeName: nextcloud-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 10Gi + diff --git a/riscv/nextcloud/restart.sh b/riscv/nextcloud/restart.sh new file mode 100755 index 0000000..8717977 --- /dev/null +++ b/riscv/nextcloud/restart.sh @@ -0,0 +1,4 @@ +kubectl delete -f nextcloud.yaml +kubectl delete -f nginx-config.yaml +kubectl apply -f nginx-config.yaml +kubectl apply -f nextcloud.yaml diff --git a/riscv/nextcloud/test.txt b/riscv/nextcloud/test.txt new file mode 100644 index 0000000..1116412 --- /dev/null +++ b/riscv/nextcloud/test.txt @@ -0,0 +1,1146 @@ + + + + 404 page not found - bedpage.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ Model +
+
+

Oops...
we cannot find her!

+

Maybe she got married!

+
+ ♥ +
+

Don't worry,

+

we still have the solution for you in Escorts.
Or try to look for another one!

+
+
+
+
+
+ + + + + + + + + + \ No newline at end of file diff --git a/riscv/nexus/catalog-info.yaml b/riscv/nexus/catalog-info.yaml new file mode 100644 index 0000000..0554673 --- /dev/null +++ b/riscv/nexus/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-nexus + title: Nexus (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/nexus/keytool/allarddcs.nl.cert b/riscv/nexus/keytool/allarddcs.nl.cert new file mode 100644 index 0000000..bbe45e2 --- /dev/null +++ b/riscv/nexus/keytool/allarddcs.nl.cert @@ -0,0 +1,23 @@ +-----BEGIN CERTIFICATE----- +MIID1TCCAr2gAwIBAgIIVTEAVNvb6f8wDQYJKoZIhvcNAQELBQAweDELMAkGA1UE +BhMCVVMxFDASBgNVBAgTC1Vuc3BlY2lmaWVkMRQwEgYDVQQHEwtVbnNwZWNpZmll +ZDERMA8GA1UEChMIU29uYXR5cGUxETAPBgNVBAsTCFNvbmF0eXBlMRcwFQYDVQQD +DA4qLmFsbGFyZGRjcy5ubDAeFw0yNTEwMjYwOTExMzRaFw0zOTA3MDUwOTExMzRa +MHgxCzAJBgNVBAYTAlVTMRQwEgYDVQQIEwtVbnNwZWNpZmllZDEUMBIGA1UEBxML +VW5zcGVjaWZpZWQxETAPBgNVBAoTCFNvbmF0eXBlMREwDwYDVQQLEwhTb25hdHlw +ZTEXMBUGA1UEAwwOKi5hbGxhcmRkY3MubmwwggEiMA0GCSqGSIb3DQEBAQUAA4IB +DwAwggEKAoIBAQCkVO2YgFo4sTybZaG4YHCsDHTL2WyAYggnW+yUDei5pnrFTYFk +F7k87xSxs0WeJtf0kiZhjj8dBMqfvSNf0VNKEIw1EBUXcn/R/ymE5aAraQOAsBhu +HPWCnbTZdplUwDR64B9+pn8uZ/qSkfJZ6pCsGcTa/hvl1inWMZJQgiKnkn17WMP9 +CSt8BOwy9HpadfSdLt1wkfyNQs5vHsPFwadCfXIgwxhN7NnN4Z9iPU1asfZa6Y2d +ndIocLNIB4YfMfZ15TX/dPGqiJ9qdcsdGMgcqFIC4e+N1reHNubnGKh/CdvP6LGC +IzorF83F81CoMjTKNGTZQ6WBM7qP36Y2NFuxAgMBAAGjYzBhMB0GA1UdDgQWBBQn +IWPFZINR46eiDT4GB4qB+hI/mTBABgNVHREEOTA3ghhuZXh1cy1yaXNjdi5hbGxh +cmRkY3MubmyCG3JlZ2lzdHJ5LXJpc2N2LmFsbGFyZGRjcy5ubDANBgkqhkiG9w0B +AQsFAAOCAQEAD+wcG658hrsu7M5rrKDK7U1qYJMliu6nnU/vl84YRwPHmWgcbrS3 +5Q2EudR0PyS1/YsNJH5HAANmu6K6My7/f+l6DBeiONs0FCZAqobgpHy5V8PCIOTt +tIP/lGoZe+USojc8VydTYzdG70AASF5R5No4w0vozDFuQptaVI0AmOH/7WMYjNlW +PSZGKZt/m/9Fd//kDjUvwLvYnGYKTx49GU3ZHyiDLxFdPl9lyLMq9M0jdx2BzLVz +HTtBJ6Rz5WtL1e7cUQclYugNlJoqRrnMNz/M8gVXzTqiqg4AEQYQHZHK1FFhuz55 +qUDjUDlP2psKFiKLXzKKyP1ugF/5Pm0/lw== +-----END CERTIFICATE----- diff --git a/riscv/nexus/keytool/allarddcs.nl.key b/riscv/nexus/keytool/allarddcs.nl.key new file mode 100644 index 0000000..48c4e7b --- /dev/null +++ b/riscv/nexus/keytool/allarddcs.nl.key @@ -0,0 +1,32 @@ +Bag Attributes + friendlyName: allarddcs.nl + localKeyID: 54 69 6D 65 20 31 37 36 31 34 36 39 39 37 35 39 30 37 +Key Attributes: +-----BEGIN PRIVATE KEY----- +MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCkVO2YgFo4sTyb +ZaG4YHCsDHTL2WyAYggnW+yUDei5pnrFTYFkF7k87xSxs0WeJtf0kiZhjj8dBMqf +vSNf0VNKEIw1EBUXcn/R/ymE5aAraQOAsBhuHPWCnbTZdplUwDR64B9+pn8uZ/qS +kfJZ6pCsGcTa/hvl1inWMZJQgiKnkn17WMP9CSt8BOwy9HpadfSdLt1wkfyNQs5v +HsPFwadCfXIgwxhN7NnN4Z9iPU1asfZa6Y2dndIocLNIB4YfMfZ15TX/dPGqiJ9q +dcsdGMgcqFIC4e+N1reHNubnGKh/CdvP6LGCIzorF83F81CoMjTKNGTZQ6WBM7qP +36Y2NFuxAgMBAAECggEAAPNppiA+ZWWUVctyWObCwCJ/HbU8WeHQ7XYsTQ8BJOtz +RzQtM3vcdOwznabNfrf3nlENXjMi5yZ7JafdtIg5h/KTw4E8UTTQZVHco6NqGDyb +UJTnda7YaZ3cyTiIDcpIg3PlVFsSRIQSTX00S2Dk3wBz9/BqD08vhS9apJMClrjR +fbJQjuhDJzOdoIbs3+pwCTLJdBDip8QQ6b6WwbSnYBb8yoAofR/GBZUP4Q6EoFER +WrXRaiwAS97KtJO0QrJap7VnC8JBR79irzJ/6C1ZOSomP2NJu571AetLPlSZBNo/ +LQcdOTOktV90eYwD6wVEqcHhl99seonH6beDYHO0oQKBgQDEwRbbXFc9gf48Iufh +N8GMGG6oUVhLqib4cGWjIrU6MnpSdE3C/AOkVZqhlhO6Aqwh311pFfhLazdfkqcc +wuaMJhxCNsG8rzOT1zUuiJlTe3Le19TR31qmQtLQ+tsENWrCxL939n5jf470zo0o +9/dgeUKA8hqps6ZgvZVW06C06wKBgQDV0Ig3vDm4VILjRjmPHcSktrF0i9Lbp3uD +OE7uwBItXuO+iLZJHM49vGgHtXsSgqA/B3Kso1Cv31Mh6CNbUVkVvwDht56FuP4R +7s638AE1502cQcc6gKbZlkfBpzeZlkTicdnuzPLw/PoZGaIyD5BgUNjx11nk4AKD +vzwR1sY60wKBgBhUaCcn/AG3GWEGT/YhluVkAAsARBLXL4p5G5hYqmBP7aBUkWkT +EMA5da2ViUrvGan2nO5psRJiZ66By/hagXfDHqtxafOTFqWpbwIaEhuooEO+HKr3 +G5aDnN4KpxqWIGWFPsfuyyIym9LZ18rBHu3nELoxNerWNDSyPM1Hzg+RAoGBAMXQ +tYYjPZ+diK7utKgFGX5ujAVQq5eO/0Wq3dQjnW2egcQwxb0kymbxnamsLJ42fj1y +DZVNT4Q3cLlJBRUiUPI+kXlDIYWEXoOG1nf0s5oEUpiDfuhQSI28bMzsgRM2pKqA +POmjcgylcFmyjo4UOjXx9pTg8Yk/+vObBN9YPnQDAoGAO4u2kpFG9n9EkUOpbr8f +x7VLpublPyWaL8PxqPR/816eaQwibf++Kd8d5pc8ILhCLGljbUIysR7DcfFOKaTU +qkMS699oq/zRD+VzeS5DxQhCAEzBezYf1+SYwJ9kCw4kduS+jgLgzpZTjlnZt65W +FyIeu0701aGQIYPMHjetBAE= +-----END PRIVATE KEY----- diff --git a/riscv/nexus/keytool/allarddcs.nl.p12 b/riscv/nexus/keytool/allarddcs.nl.p12 new file mode 100644 index 0000000..a9d8eee Binary files /dev/null and b/riscv/nexus/keytool/allarddcs.nl.p12 differ diff --git a/riscv/nexus/keytool/create-cert-secret.sh b/riscv/nexus/keytool/create-cert-secret.sh new file mode 100755 index 0000000..5fda830 --- /dev/null +++ b/riscv/nexus/keytool/create-cert-secret.sh @@ -0,0 +1,4 @@ +kubectl create secret tls nexus-cert \ + --cert=allarddcs.nl.cert \ + --key=allarddcs.nl.key \ + -n nexus diff --git a/riscv/nexus/keytool/create-keystore.sh b/riscv/nexus/keytool/create-keystore.sh new file mode 100755 index 0000000..aef3ea6 --- /dev/null +++ b/riscv/nexus/keytool/create-keystore.sh @@ -0,0 +1,10 @@ +keytool -genkeypair -keystore keystore.jks -storepass password -alias allarddcs.nl \ +-keyalg RSA -keysize 2048 -validity 5000 -keypass password \ +-dname 'CN=*.allarddcs.nl, OU=Sonatype, O=Sonatype, L=Unspecified, ST=Unspecified, C=US' \ +-ext 'SAN=DNS:nexus-riscv.allarddcs.nl,DNS:registry-riscv.allarddcs.nl' + +keytool -exportcert -keystore keystore.jks -alias allarddcs.nl -rfc > allarddcs.nl.cert + +keytool -importkeystore -srckeystore keystore.jks -destkeystore allarddcs.nl.p12 -deststoretype PKCS12 + +openssl pkcs12 -nocerts -nodes -in allarddcs.nl.p12 -out allarddcs.nl.key diff --git a/riscv/nexus/keytool/keystore.jks b/riscv/nexus/keytool/keystore.jks new file mode 100644 index 0000000..7aa5d83 Binary files /dev/null and b/riscv/nexus/keytool/keystore.jks differ diff --git a/riscv/nexus/nexus-passthrough.yaml b/riscv/nexus/nexus-passthrough.yaml new file mode 100755 index 0000000..92ccbec --- /dev/null +++ b/riscv/nexus/nexus-passthrough.yaml @@ -0,0 +1,156 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nexus + namespace: nexus + labels: + app: nexus +spec: + replicas: 1 + selector: + matchLabels: + app: nexus + template: + metadata: + labels: + app: nexus + spec: + containers: + - name: nexus + image: allardkrings/riscv64-nexus + resources: + requests: + memory: "2Gi" + cpu: "1000m" + limits: + memory: "4Gi" + cpu: "2000m" + ports: + - containerPort: 8081 + name: web + - containerPort: 8443 + name: websecure + - containerPort: 8444 + name: docker + volumeMounts: + # Nexus work directory + - mountPath: /opt/sonatype/sonatype-work/nexus3 + name: nexus-data + subPath: data-dir + # SSL keystore + - mountPath: /opt/sonatype/nexus/etc/ssl + name: nexus-data + subPath: ssl + env: + - name: INSTALL4J_ADD_VM_PARAMS + value: "-XX:ActiveProcessorCount=4 -Djava.util.prefs.userRoot=/opt/sonatype/sonatype-work/nexus3/javaprefs" + - name: NEXUS_SECURITY_SSL_KEYSTORE_PATH + value: /opt/sonatype/nexus/etc/ssl/allarddcs.nl.p12 + - name: NEXUS_SECURITY_SSL_KEYSTORE_PASSWORD + value: "password" + volumes: + - name: nexus-data + persistentVolumeClaim: + claimName: nexus-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: nexus + namespace: nexus +spec: + ports: + - name: web + targetPort: 8081 + port: 8081 + - name: websecure + targetPort: 8443 + port: 8443 + - name: docker + targetPort: 8444 + port: 8444 + selector: + app: nexus + type: ClusterIP +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: nexus-http + namespace: nexus +spec: + entryPoints: + - web + routes: + - match: Host(`nexus-riscv.allarddcs.nl`) + kind: Rule + services: + - name: nexus + port: 8081 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: nexus-tls + namespace: nexus +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`nexus-riscv.allarddcs.nl`) + services: + - name: nexus + port: 8443 + tls: + passthrough: true +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: registry-tcp-tls + namespace: nexus +spec: + entryPoints: + - docker + routes: + - match: HostSNI(`registry-riscv.allarddcs.nl`) + services: + - name: nexus + port: 8444 + tls: + passthrough: true +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nexus-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/nexus/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nexus-pvc + namespace: nexus +spec: + storageClassName: "" + volumeName: nexus-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/riscv/nexus/nexus-passthrough2.yaml b/riscv/nexus/nexus-passthrough2.yaml new file mode 100644 index 0000000..dc92d5c --- /dev/null +++ b/riscv/nexus/nexus-passthrough2.yaml @@ -0,0 +1,126 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nexus + namespace: nexus + labels: + app: nexus +spec: + replicas: 1 + selector: + matchLabels: + app: nexus + template: + metadata: + labels: + app: nexus + spec: + containers: + - name: nexus + image: allardkrings/riscv64-nexus + resources: + requests: + memory: "2Gi" + cpu: "1000m" + limits: + memory: "4Gi" + cpu: "2000m" + ports: + - containerPort: 8081 + name: web + - containerPort: 8443 + name: websecure + - containerPort: 8444 + name: docker + volumeMounts: + # Nexus work directory + - mountPath: /opt/sonatype/sonatype-work/nexus3 + name: nexus-data + subPath: data-dir + env: + - name: INSTALL4J_ADD_VM_PARAMS + value: "-XX:ActiveProcessorCount=4 -Djava.util.prefs.userRoot=/opt/sonatype/sonatype-work/nexus3/javaprefs" + volumes: + - name: nexus-data + persistentVolumeClaim: + claimName: nexus-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: nexus + namespace: nexus +spec: + ports: + - name: web + targetPort: 8081 + port: 8081 + selector: + app: nexus + type: ClusterIP +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: nexus-http + namespace: nexus +spec: + entryPoints: + - web + routes: + - match: Host(`nexus-riscv.allarddcs.nl`) + kind: Rule + services: + - name: nexus + port: 8081 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRouteTCP +metadata: + name: nexus-tls + namespace: nexus +spec: + entryPoints: + - websecure + routes: + - match: HostSNI(`nexus-riscv.allarddcs.nl`) + services: + - name: nexus + port: 8081 + tls: + passthrough: true +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nexus-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/nexus/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nexus-pvc + namespace: nexus +spec: + storageClassName: "" + volumeName: nexus-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/riscv/nexus/nexus.yaml b/riscv/nexus/nexus.yaml new file mode 100755 index 0000000..daed761 --- /dev/null +++ b/riscv/nexus/nexus.yaml @@ -0,0 +1,123 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nexus + namespace: nexus + labels: + app: nexus +spec: + replicas: 1 + selector: + matchLabels: + app: nexus + template: + metadata: + labels: + app: nexus + spec: + containers: + - name: nexus + image: allardkrings/riscv64-nexus + resources: + requests: + memory: "1Gi" + cpu: "500m" + limits: + memory: "2Gi" + cpu: "1000m" + ports: + - containerPort: 8081 + name: web + volumeMounts: + # Nexus work directory + - mountPath: /opt/sonatype/sonatype-work/nexus3 + name: nexus-data + subPath: data-dir + env: + - name: INSTALL4J_ADD_VM_PARAMS + value: "-XX:ActiveProcessorCount=4 -Djava.util.prefs.userRoot=/opt/sonatype/sonatype-work/nexus3/javaprefs" + volumes: + - name: nexus-data + persistentVolumeClaim: + claimName: nexus-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: nexus + namespace: nexus +spec: + ports: + - name: web + targetPort: 8081 + port: 8081 + selector: + app: nexus + type: ClusterIP +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: nexus-http + namespace: nexus +spec: + entryPoints: + - web + routes: + - match: Host(`nexus-riscv.allarddcs.nl`) + kind: Rule + services: + - name: nexus + port: 8081 +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: nexus-tls + namespace: nexus +spec: + entryPoints: + - websecure + routes: + - match: Host(`nexus-riscv.allarddcs.nl`) + kind: Rule + services: + - name: nexus + port: 8081 + tls: + secretName: nexus-cert +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nexus-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/nexus/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nexus-pvc + namespace: nexus +spec: + storageClassName: "" + volumeName: nexus-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi + diff --git a/riscv/nginx/catalog-info.yaml b/riscv/nginx/catalog-info.yaml new file mode 100644 index 0000000..f83cf09 --- /dev/null +++ b/riscv/nginx/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-nginx + title: Nginx (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/nginx/ingressroute-http.yaml b/riscv/nginx/ingressroute-http.yaml new file mode 100755 index 0000000..8815eb3 --- /dev/null +++ b/riscv/nginx/ingressroute-http.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nginx-http + namespace: nginx +spec: + entryPoints: + - web + routes: + - match: Host(`nginx-riscv.allarddcs.nl`) + kind: Rule + services: + - name: nginx + port: 80 diff --git a/riscv/nginx/ingressroute-tls.yaml b/riscv/nginx/ingressroute-tls.yaml new file mode 100755 index 0000000..a581342 --- /dev/null +++ b/riscv/nginx/ingressroute-tls.yaml @@ -0,0 +1,16 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: nginx-tls + namespace: nginx +spec: + entryPoints: + - websecure + routes: + - match: Host(`nginx-riscv.allarddcs.nl`) + kind: Rule + services: + - name: nginx + port: 80 + tls: + certResolver: letsencrypt diff --git a/riscv/nginx/nginx.yaml b/riscv/nginx/nginx.yaml new file mode 100755 index 0000000..1fff48d --- /dev/null +++ b/riscv/nginx/nginx.yaml @@ -0,0 +1,80 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx + namespace: nginx + labels: + app: nginx +spec: + replicas: 1 + selector: + matchLabels: + app: nginx + template: + metadata: + labels: + app: nginx + spec: + containers: + - name: nginx + image: allardkrings/riscv64-nginx:1.24 + volumeMounts: + - mountPath: /usr/share/nginx/html + name: nginx + subPath: html + ports: + - containerPort: 80 + volumes: + - name: nginx + persistentVolumeClaim: + claimName: nginx-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: nginx + namespace: nginx + labels: + name: nginx +spec: + type: NodePort + ports: + - port: 80 + nodePort: 30080 + name: http + selector: + app: nginx +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: nginx-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/nginx-riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: nginx-pvc + namespace: nginx +spec: + storageClassName: "" + volumeName: nginx-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi diff --git a/riscv/olproperties/catalog-info.yaml b/riscv/olproperties/catalog-info.yaml new file mode 100644 index 0000000..eed3b32 --- /dev/null +++ b/riscv/olproperties/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-olproperties + title: Olproperties (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/olproperties/riscv/olproperties.yaml b/riscv/olproperties/riscv/olproperties.yaml new file mode 100755 index 0000000..89b7247 --- /dev/null +++ b/riscv/olproperties/riscv/olproperties.yaml @@ -0,0 +1,53 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: olproperties + labels: + app: olproperties +spec: + replicas: 1 + selector: + matchLabels: + app: olproperties + template: + metadata: + labels: + app: olproperties + spec: + containers: + - name: olproperties + image: allardkrings/riscv64-olproperties:1.0 + imagePullPolicy: Always + ports: + - containerPort: 9080 + imagePullSecrets: + - name: registry-credentials +--- +apiVersion: v1 +kind: Service +metadata: + name: olproperties +spec: + type: ClusterIP + ports: + - name: port-0 + port: 9080 + selector: + app: olproperties +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: olproperties-tls +spec: + entryPoints: + - websecure + routes: + - match: Host(`olproperties-riscv.allarddcs.nl`) + kind: Rule + services: + - name: olproperties + port: 9080 + tls: + certResolver: letsencrypt + diff --git a/riscv/openliberty/Dockerfile b/riscv/openliberty/Dockerfile new file mode 100644 index 0000000..b335804 --- /dev/null +++ b/riscv/openliberty/Dockerfile @@ -0,0 +1,44 @@ +# syntax=docker/dockerfile:1 +FROM ubuntu:22.04 + +# Avoid interactive prompts +ENV DEBIAN_FRONTEND=noninteractive + +# Install JDK, bash, and utilities +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + openjdk-17-jdk-headless \ + bash curl unzip ca-certificates && \ + rm -rf /var/lib/apt/lists/* + +# Set JAVA_HOME and PATH +ENV JAVA_HOME=/usr/lib/jvm/java-17-openjdk-riscv64 +ENV PATH="${JAVA_HOME}/bin:${PATH}" + +# Open Liberty version and paths +ENV OPENLIBERTY_HOME=/opt/openliberty +ENV OPENLIBERTY_VERSION=24.0.0.11 +ENV OPENLIBERTY_FLAVOR=wlp-webProfile8 +ENV OPENLIBERTY_URL="https://public.dhe.ibm.com/ibmdl/export/pub/software/openliberty/runtime/release/${OPENLIBERTY_VERSION}/${OPENLIBERTY_FLAVOR}-${OPENLIBERTY_VERSION}.zip" + +# Download and install Open Liberty +RUN mkdir -p ${OPENLIBERTY_HOME} && \ + echo "Downloading Open Liberty from ${OPENLIBERTY_URL}" && \ + curl -fSL --retry 5 --retry-delay 5 ${OPENLIBERTY_URL} -o /tmp/openliberty.zip && \ + unzip -q /tmp/openliberty.zip -d /opt && \ + mv /opt/wlp ${OPENLIBERTY_HOME} && \ + rm /tmp/openliberty.zip + +# Make server script executable +RUN chmod +x ${OPENLIBERTY_HOME}/bin/server + +# Create default server +RUN ${OPENLIBERTY_HOME}/bin/server create defaultServer + +# Expose HTTP and HTTPS ports +EXPOSE 9080 9443 + +WORKDIR ${OPENLIBERTY_HOME} + +# Run default server +CMD ["bin/server", "run", "defaultServer"] diff --git a/riscv/openliberty/catalog-info.yaml b/riscv/openliberty/catalog-info.yaml new file mode 100644 index 0000000..05f3095 --- /dev/null +++ b/riscv/openliberty/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-openliberty + title: Openliberty (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/pgadmin/catalog-info.yaml b/riscv/pgadmin/catalog-info.yaml new file mode 100644 index 0000000..45036de --- /dev/null +++ b/riscv/pgadmin/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-pgadmin + title: Pgadmin (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/pgadmin/docker-compose.yaml.save b/riscv/pgadmin/docker-compose.yaml.save new file mode 100644 index 0000000..1172a5a --- /dev/null +++ b/riscv/pgadmin/docker-compose.yaml.save @@ -0,0 +1,206 @@ +# https://github.com/akmalovaa/zabbix-docker/blob/main/docker-compose.yml + + + +services: + + zabbix-server: + + image: ${ZABBIX_SERVER_IMAGE:-zabbix/zabbix-server-pgsql:ubuntu-7.0-latest} + + container_name: server + + restart: unless-stopped + + ports: + + - "10051:10051" + + environment: + + DB_SERVER_HOST: postgres + + DB_SERVER_PORT: 5432 + + POSTGRES_USER: ${POSTGRES_USER} + + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} + + POSTGRES_DB: ${POSTGRES_DB} + + depends_on: + + - postgres + + networks: + + - network-zabbix + + + + zabbix-frontend: + + image: ${ZABBIX_FRONTEND_IMAGE:-zabbix/zabbix-web-nginx-pgsql:ubuntu-7.0-latest} + + restart: unless-stopped + + container_name: frontend + + ports: + + - "8080:8080" + + - "8443:8443" + + environment: + + DB_SERVER_HOST: postgres + + POSTGRES_USER: ${POSTGRES_USER} + + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} + + POSTGRES_DB: ${POSTGRES_DB} + + PHP_TZ: ${TZ} + + ZBX_SERVER_HOST: zabbix-server + + ZBX_SERVER_PORT: 5432 + + depends_on: + + - zabbix-server + + networks: + + - network-zabbix + + + +# zabbix-agent: + +# image: ${ZABBIX_AGENT_IMAGE:-zabbix/zabbix-agent:ubuntu-7.0-latest} + +# container_name: agent + +# restart: unless-stopped + +# ports: + +# - "10050:10050" + +# environment: + +# ZBX_ACTIVE_ALLOW: false + +# TZ: ${TZ} + +# ZBX_SERVER_HOST: zabbix-server + +# ZBX_SERVER_PORT: 10051 + +# ZBX_HOSTNAME: zabbix-agent + +# ZBX_HOSTNAMEITEM: system.hostname + +# depends_on: + +# - zabbix-server + +# networks: + +# - network-zabbix + + + + postgres: + + image: ${POSTGRES_IMAGE:-postgres:latest} + + container_name: postgres + + restart: unless-stopped + + ports: + + - "7432:5432" + + - "7433:5433" + + volumes: + + - postgres:/var/lib/postgresql/data + + environment: + + POSTGRES_USER: ${POSTGRES_USER} + + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} + + POSTGRES_DB: ${POSTGRES_DB} + + PG_DATA: /var/lib/postgresql/data/pgdata + + networks: + + - network-zabbix + + + +# grafana: + +# image: ${GRAFANA_IMAGE:-grafana/grafana} + +# container_name: grafana + +# restart: unless-stopped + +# ports: + +# - "3333:3333" + +# environment: + +# GF_SECURITY_ADMIN_USER: ${GRAFANA_USER:-admin} + +# GF_SECURITY_ADMIN_PASSWORD: ${GRAFANA_SECRET:-12345} + +# GF_INSTALL_PLUGINS: alexanderzobnin-zabbix-app + +# TZ: ${TZ} + +# user: "472" + +# volumes: + +# - grafana:/var/lib/grafana + +# - ./grafana/grafana.ini:/etc/grafana/grafana.ini + +# - ./grafana/provisioning:/etc/grafana/provisioning + +# depends_on: + +# - zabbix-frontend + +# networks: + +# - network-zabbix + + + +volumes: + + postgres: {} + +# grafana: {} + + + +networks: + + network-zabbix: + + driver: bridge + diff --git a/riscv/pgadmin/pgadmin.yaml b/riscv/pgadmin/pgadmin.yaml new file mode 100755 index 0000000..5a1b1b9 --- /dev/null +++ b/riscv/pgadmin/pgadmin.yaml @@ -0,0 +1,102 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: pgadmin + namespace: postgres + labels: + app: pgadmin +spec: + replicas: 1 + selector: + matchLabels: + app: pgadmin + template: + metadata: + labels: + app: pgadmin + spec: + containers: + - name: pgadmin + image: allardkrings/riscv64-pgadmin4:8.8 + ports: + - containerPort: 80 + env: + - name: PGADMIN_DEFAULT_EMAIL + value: admin@alldcs.nl + - name: PGADMIN_DEFAULT_PASSWORD + value: Pgadmin01@ + volumeMounts: + - mountPath: /var/lib/pgadmin + name: pgadmin + volumes: + - name: pgadmin + persistentVolumeClaim: + claimName: pgadmin-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: pgadmin + namespace: postgres + labels: + name: pgadmin +spec: + selector: + app.kubernetes.io/name: pgadmin + ports: + - protocol: TCP + port: 80 + targetPort: 80 + selector: + app: pgadmin +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: pgadmin-tls + namespace: postgres +spec: + entryPoints: + - websecure + routes: + - match: Host(`pgadmin-riscv.allarddcs.nl`) + kind: Rule + services: + - name: pgadmin + port: 80 + tls: + certResolver: letsencrypt +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: pgadmin-pv +spec: + storageClassName: "" + capacity: + storage: 1Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/pgadmin/riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: pgadmin-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: pgadmin-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 1Gi diff --git a/riscv/phpmyadmin/catalog-info.yaml b/riscv/phpmyadmin/catalog-info.yaml new file mode 100644 index 0000000..3ea29b8 --- /dev/null +++ b/riscv/phpmyadmin/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-phpmyadmin + title: Phpmyadmin (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/phpmyadmin/phpmyadmin.yaml b/riscv/phpmyadmin/phpmyadmin.yaml new file mode 100644 index 0000000..142b695 --- /dev/null +++ b/riscv/phpmyadmin/phpmyadmin.yaml @@ -0,0 +1,59 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: phpmyadmin + namespace: mariadb + labels: + app: phpmyadmin +spec: + replicas: 1 + selector: + matchLabels: + app: phpmyadmin + template: + metadata: + labels: + app: phpmyadmin + spec: + containers: + - name: phpmyadmin + image: allardkrings/riscv64-phpmyadmin:5.2.1.1 + ports: + - containerPort: 80 + env: + - name: PMA_HOST + value: mariadb.mariadb + - name: PMA_PORT + value: "3306" + - name: MYSQL_ROOT_PASSWORD + value: "password" +--- +apiVersion: v1 +kind: Service +metadata: + name: phpmyadmin + namespace: mariadb +spec: + selector: + app: phpmyadmin + ports: + - protocol: TCP + port: 80 + targetPort: 80 +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: phpmyadmin-tls + namespace: mariadb +spec: + entryPoints: + - websecure + routes: + - match: Host(`phpmyadmin-riscv.allarddcs.nl`) + kind: Rule + services: + - name: phpmyadmin + port: 80 + tls: + certResolver: letsencrypt diff --git a/riscv/postgres14/catalog-info.yaml b/riscv/postgres14/catalog-info.yaml new file mode 100644 index 0000000..a7c06ac --- /dev/null +++ b/riscv/postgres14/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-postgres14 + title: Postgres14 (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/postgres14/postgres14riscv.yaml b/riscv/postgres14/postgres14riscv.yaml new file mode 100755 index 0000000..d6715a2 --- /dev/null +++ b/riscv/postgres14/postgres14riscv.yaml @@ -0,0 +1,85 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: postgres14-pv +spec: + storageClassName: "" + capacity: + storage: 2Gi + accessModes: + - ReadWriteMany + persistentVolumeReclaimPolicy: Retain + mountOptions: + - hard + - nfsvers=4.1 + nfs: + server: 192.168.2.110 + path: /mnt/nfs_share/postgres14riscv + readOnly: false +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres14-pvc + namespace: postgres +spec: + storageClassName: "" + volumeName: postgres14-pv + accessModes: + - ReadWriteMany + volumeMode: Filesystem + resources: + requests: + storage: 2Gi +--- +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: postgres14 + namespace: postgres +spec: + serviceName: postgres14 + replicas: 1 + selector: + matchLabels: + app: postgres14 + template: + metadata: + labels: + app: postgres14 + spec: + containers: + - name: postgres14 + image: allardkrings/riscv64-postgres:14 + ports: + - containerPort: 5432 + env: + - name: POSTGRES_DB + value: postgres + - name: POSTGRES_USER + value: admin + - name: POSTGRES_PASSWORD + value: Pgadmin01@ + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: postgres + volumes: + - name: postgres + persistentVolumeClaim: + claimName: postgres14-pvc +--- +apiVersion: v1 +kind: Service +metadata: + name: postgres14 + namespace: postgres + labels: + name: postgres14 +spec: + type: ClusterIP + ports: + - port: 5432 + name: postgres + selector: + app: postgres14 + diff --git a/riscv/traefik/README.md b/riscv/traefik/README.md new file mode 100644 index 0000000..7721739 --- /dev/null +++ b/riscv/traefik/README.md @@ -0,0 +1,83 @@ +#Installatie: + +Gewoon K3S installeren, daar zit stadaard traefik 2 in. + +Deze traefik is geinstalleerd via de in K3S ingebouwde helm. + +Test: kubectl get svc -n kube-system: nu zie je alleen poort 80 en poort 443. + +#versie traefik: + +kubectl exec -it traefik-765df5f764-br4rs -n kube-system -- traefik version + +geeft: + +Version: 2.10.3 +Codename: saintmarcelin +Go version: go1.20.6 +Built: 2023-07-19T09:18:04Z +OS/Arch: linux/riscv64 + +#dashboard enablen + +kubectl apply -f traefik-custom-conf.yaml + +(Dit is een helm-configuratie die de via helm geinstalleerde traefik aanpast). + +K3S stoppen en starten. Het duurt even voordat de traefik-service op beide nodes weer in de lucht is. + +Test: kubectl get svc -n kube-system: nu zie je ook poort 9000 voor het dashboard opduiken + +Het traefik-dashboard is nu via nodeport te benaderen. + +De ingressroutes werken echter nog niet en verschijnen ook nog niet op het dashboard + +Als je in de logging van de traefik-pod kijkt ziet je ook dat er foutmeldingen ontstaan +dat objecten niet gevonden worden. + +#time-out vergroten (als die bijvoorbeeld optreden bij pushen van images naar nexus) +KUBE_EDITOR=nano kubectl edit deploy traefik -n kube-system + +dan de volgende args toevoegen: + + - --entryPoints.web.transport.respondingTimeouts.readTimeout=600s + - --entryPoints.websecure.transport.respondingTimeouts.readTimeout=600s + +en dan traefik herstarten: + + kubectl rollout status deploy traefik -n kube-system + + +#verdere stappen: + +migreer van traefik.containo.us naar traefik.io: + +kubectl apply -f https://raw.githubusercontent.com/traefik/traefik/v2.10/docs/content/reference/dynamic-configuration/kubernetes-crd-rbac.yml +kubectl apply -f https://raw.githubusercontent.com/traefik/traefik/v2.10/docs/content/reference/dynamic-configuration/kubernetes-crd-definition-v1.yml + +pas autorisaties aan: + +kubectl apply -f rbac.yaml +kubectl apply -f clusterrolbinding-admin.yaml + + +#Achtergrondinfo: + +In v2.10, the Kubernetes CRDs API Group: 'traefik.containo.us' is deprecated, +and its support will end starting with Traefik v3. + +Please use the API Group traefik.io instead. + +As the Kubernetes CRD provider still works with both API Versions +(traefik.io/v1alpha1 and traefik.containo.us/v1alpha1), +it means that for the same kind, namespace and name, +the provider will only keep the traefik.io/v1alpha1 resource. + +In addition, the Kubernetes CRDs API Version traefik.io/v1alpha1 +will not be supported in Traefik v3 itself. + +Please note that it is a requirement to update the CRDs and the RBAC in the cluster before upgrading Traefik. To do so, please apply the required CRDs and RBAC manifests for v2.10: + +kubectl apply -f https://raw.githubusercontent.com/traefik/traefik/v2.10/docs/content/reference/dynamic-configuration/kubernetes-crd-rbac.yml +kubectl apply -f https://raw.githubusercontent.com/traefik/traefik/v2.10/docs/content/reference/dynamic-configuration/kubernetes-crd-definition-v1.yml + diff --git a/riscv/traefik/allard/traefik.yaml b/riscv/traefik/allard/traefik.yaml new file mode 100755 index 0000000..63d39b9 --- /dev/null +++ b/riscv/traefik/allard/traefik.yaml @@ -0,0 +1,261 @@ +--- +kind: ServiceAccount +apiVersion: v1 +metadata: + name: traefik + namespace: traefik + labels: + app.kubernetes.io/name: traefik + app.kubernetes.io/instance: traefik-traefik + helm.sh/chart: traefik-21.2.0 + app.kubernetes.io/managed-by: Helm + annotations: +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: traefik-traefik + labels: + app.kubernetes.io/name: traefik + app.kubernetes.io/instance: traefik-traefik + helm.sh/chart: traefik-21.2.0 + app.kubernetes.io/managed-by: Helm +rules: + - apiGroups: + - extensions + - networking.k8s.io + resources: + - ingressclasses + - ingresses + verbs: + - get + - list + - watch + - apiGroups: + - "" + resources: + - services + - endpoints + - secrets + verbs: + - get + - list + - watch + - apiGroups: + - extensions + - networking.k8s.io + resources: + - ingresses/status + verbs: + - update + - apiGroups: + - traefik.containo.us + resources: + - ingressroutes + - ingressroutetcps + - ingressrouteudps + - middlewares + - middlewaretcps + - tlsoptions + - tlsstores + - traefikservices + - serverstransports + verbs: + - get + - list + - watch +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: traefik-traefik + labels: + app.kubernetes.io/name: traefik + app.kubernetes.io/instance: traefik-traefik + helm.sh/chart: traefik-21.2.0 + app.kubernetes.io/managed-by: Helm +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: traefik-traefik +subjects: + - kind: ServiceAccount + name: traefik + namespace: traefik +--- +apiVersion: v1 +kind: Service +metadata: + name: traefik + namespace: traefik + labels: + app.kubernetes.io/name: traefik + app.kubernetes.io/instance: traefik-traefik + helm.sh/chart: traefik-21.2.0 + app.kubernetes.io/managed-by: Helm + annotations: +spec: + type: LoadBalancer + selector: + app.kubernetes.io/name: traefik + app.kubernetes.io/instance: traefik-traefik + ports: + - port: 80 + name: "web" + targetPort: web + protocol: TCP + - port: 443 + name: "websecure" + targetPort: websecure + protocol: TCP +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: traefik + namespace: traefik + labels: + app.kubernetes.io/name: traefik + app.kubernetes.io/instance: traefik-traefik + helm.sh/chart: traefik-21.2.0 + app.kubernetes.io/managed-by: Helm + annotations: +spec: + replicas: 1 + selector: + matchLabels: + app.kubernetes.io/name: traefik + app.kubernetes.io/instance: traefik-traefik + strategy: + rollingUpdate: + maxSurge: 1 + maxUnavailable: 0 + type: RollingUpdate + minReadySeconds: 0 + template: + metadata: + annotations: + prometheus.io/scrape: "true" + prometheus.io/path: "/metrics" + prometheus.io/port: "9100" + labels: + app.kubernetes.io/name: traefik + app.kubernetes.io/instance: traefik-traefik + helm.sh/chart: traefik-21.2.0 + app.kubernetes.io/managed-by: Helm + spec: + serviceAccountName: traefik + terminationGracePeriodSeconds: 60 + hostNetwork: false + containers: + - image: allardkrings/riscv64-traefik:1.0 + imagePullPolicy: IfNotPresent + name: traefik + resources: + readinessProbe: + httpGet: + path: /ping + port: 9000 + scheme: HTTP + failureThreshold: 1 + initialDelaySeconds: 2 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 2 + livenessProbe: + httpGet: + path: /ping + port: 9000 + scheme: HTTP + failureThreshold: 3 + initialDelaySeconds: 2 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 2 + lifecycle: + ports: + - name: "metrics" + containerPort: 9100 + protocol: "TCP" + - name: "traefik" + containerPort: 9000 + protocol: "TCP" + - name: "web" + containerPort: 8000 + protocol: "TCP" + - name: "websecure" + containerPort: 8443 + protocol: "TCP" + securityContext: + capabilities: + drop: + - ALL + readOnlyRootFilesystem: true + runAsGroup: 65532 + runAsNonRoot: true + runAsUser: 65532 + volumeMounts: + - name: data + mountPath: /data + - name: tmp + mountPath: /tmp + args: + - "--global.checknewversion" + - "--global.sendanonymoususage" + - "--entrypoints.metrics.address=:9100/tcp" + - "--entrypoints.traefik.address=:9000/tcp" + - "--entrypoints.web.address=:8000/tcp" + - "--entrypoints.websecure.address=:8443/tcp" + - "--api.dashboard=true" + - "--api.insecure=true" + - "--ping=true" + - "--metrics.prometheus=true" + - "--metrics.prometheus.entrypoint=metrics" + - "--providers.kubernetescrd" + - "--providers.kubernetesingress" + - "--entrypoints.websecure.http.tls=true" + - "--certificatesresolvers.letsencrypt.acme.tlschallenge=true" + - "--certificatesresolvers.letsencrypt.acme.email=admin@alldcs.nl" + - "--certificatesresolvers.letsencrypt.acme.storage=/data/letsencrypt.json" + volumes: + - name: data + emptyDir: {} + - name: tmp + emptyDir: {} + securityContext: + fsGroup: 65532 +--- +apiVersion: networking.k8s.io/v1 +kind: IngressClass +metadata: + annotations: + ingressclass.kubernetes.io/is-default-class: "true" + labels: + app.kubernetes.io/name: traefik + app.kubernetes.io/instance: traefik-traefik + helm.sh/chart: traefik-21.2.0 + app.kubernetes.io/managed-by: Helm + name: traefik +spec: + controller: traefik.io/ingress-controller +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: traefik-dashboard + namespace: traefik + annotations: + labels: + app.kubernetes.io/name: traefik + app.kubernetes.io/instance: traefik-traefik + helm.sh/chart: traefik-21.2.0 + app.kubernetes.io/managed-by: Helm +spec: + entryPoints: + - traefik + routes: + - match: PathPrefix(`/dashboard`) || PathPrefix(`/api`) + kind: Rule + services: + - name: api@internal + kind: TraefikService diff --git a/riscv/traefik/catalog-info.yaml b/riscv/traefik/catalog-info.yaml new file mode 100644 index 0000000..d0dbb5f --- /dev/null +++ b/riscv/traefik/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-traefik + title: Traefik (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/traefik/clusterrole.yaml b/riscv/traefik/clusterrole.yaml new file mode 100644 index 0000000..b05dc5c --- /dev/null +++ b/riscv/traefik/clusterrole.yaml @@ -0,0 +1,11 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: traefik +rules: + - apiGroups: ["traefik.io"] + resources: ["ingressroutes", "ingressroutesstatus"] + verbs: ["get", "list", "watch", "create", "update", "delete"] + - apiGroups: [""] + resources: ["services", "endpoints", "pods", "secrets"] + verbs: ["get", "list", "watch"] diff --git a/riscv/traefik/clusterrolebinding-admin.yaml b/riscv/traefik/clusterrolebinding-admin.yaml new file mode 100644 index 0000000..40e276d --- /dev/null +++ b/riscv/traefik/clusterrolebinding-admin.yaml @@ -0,0 +1,17 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + labels: + app.kubernetes.io/instance: traefik-kube-system + app.kubernetes.io/managed-by: Helm + app.kubernetes.io/name: traefik + helm.sh/chart: traefik-21.2.1_up21.2.0 + name: traefik-kube-system-admin +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: admin +subjects: +- kind: ServiceAccount + name: traefik + namespace: kube-system diff --git a/riscv/traefik/clusterrolebinding.yaml b/riscv/traefik/clusterrolebinding.yaml new file mode 100644 index 0000000..25a61c9 --- /dev/null +++ b/riscv/traefik/clusterrolebinding.yaml @@ -0,0 +1,12 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: traefik-ingressroute +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: traefik +subjects: + - kind: ServiceAccount + name: traefik + namespace: traefik diff --git a/riscv/traefik/rbac.yaml b/riscv/traefik/rbac.yaml new file mode 100644 index 0000000..9fa9e3b --- /dev/null +++ b/riscv/traefik/rbac.yaml @@ -0,0 +1,65 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: traefik-ingress-controller + +rules: + - apiGroups: + - "" + resources: + - services + - endpoints + - secrets + verbs: + - get + - list + - watch + - apiGroups: + - extensions + - networking.k8s.io + resources: + - ingresses + - ingressclasses + verbs: + - get + - list + - watch + - apiGroups: + - extensions + - networking.k8s.io + resources: + - ingresses/status + verbs: + - update + - apiGroups: + - traefik.io + - traefik.containo.us + resources: + - middlewares + - middlewaretcps + - ingressroutes + - traefikservices + - ingressroutetcps + - ingressrouteudps + - tlsoptions + - tlsstores + - serverstransports + verbs: + - get + - list + - watch + +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: traefik-ingress-controller + +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: traefik-ingress-controller +subjects: + - kind: ServiceAccount + name: traefik + namespace: kube-system diff --git a/riscv/traefik/tlsoption.yaml b/riscv/traefik/tlsoption.yaml new file mode 100755 index 0000000..5a0c5b9 --- /dev/null +++ b/riscv/traefik/tlsoption.yaml @@ -0,0 +1,8 @@ +apiVersion: traefik.io/v1alpha1 +kind: TLSOption +metadata: + name: tsloption + namespace: traefik +spec: + minVersion: VersionTLS12 + diff --git a/riscv/traefik/traefik-custom-conf.yaml b/riscv/traefik/traefik-custom-conf.yaml new file mode 100644 index 0000000..faae59e --- /dev/null +++ b/riscv/traefik/traefik-custom-conf.yaml @@ -0,0 +1,22 @@ +apiVersion: helm.cattle.io/v1 +kind: HelmChartConfig +metadata: + name: traefik + namespace: kube-system +spec: + valuesContent: |- + additionalArguments: + - "--api" + - "--api.dashboard=true" + - "--api.insecure=true" + - "--log.level=DEBUG" + - "--entrypoints.websecure.http.tls=true" + - "--certificatesresolvers.letsencrypt.acme.tlschallenge=true" + - "--certificatesresolvers.letsencrypt.acme.email=admin@allarddcs.nl" + - "--certificatesresolvers.letsencrypt.acme.storage=/data/letsencrypt.json" + ports: + traefik: + expose: true + providers: + kubernetesCRD: + allowCrossNamespace: true diff --git a/riscv/traefik/traefik-dashboard.yaml b/riscv/traefik/traefik-dashboard.yaml new file mode 100644 index 0000000..63106fe --- /dev/null +++ b/riscv/traefik/traefik-dashboard.yaml @@ -0,0 +1,14 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: traefik-dashboard + namespace: kube-system +spec: + entryPoints: + - websecure + routes: + - match: Host(`traefik-riscv.allarddcs.nl`) && (PathPrefix(`/dashboard`) || PathPrefix(`/api`)) + kind: Rule + services: + - name: api@internal + kind: TraefikService diff --git a/riscv/zabbix/README.md b/riscv/zabbix/README.md new file mode 100644 index 0000000..a02c18b --- /dev/null +++ b/riscv/zabbix/README.md @@ -0,0 +1 @@ +Dit is een catalogus van alle yamls en values die gebruikt worden in de clusters van Allard diff --git a/riscv/zabbix/catalog-info.yaml b/riscv/zabbix/catalog-info.yaml new file mode 100644 index 0000000..57a2b29 --- /dev/null +++ b/riscv/zabbix/catalog-info.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: riscv-zabbix + title: Zabbix (riscv) +spec: + type: service + lifecycle: production + owner: platform-team + partOf: + - ../catalog-info.yaml diff --git a/riscv/zabbix/configmap.yaml b/riscv/zabbix/configmap.yaml new file mode 100644 index 0000000..1effa62 --- /dev/null +++ b/riscv/zabbix/configmap.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: zabbix-agent-config + namespace: monitoring +data: + zabbix_agent2.conf: | + PidFile=/run/zabbix/zabbix_agent2.pid + LogFile=/var/log/zabbix/zabbix_agent2.log + LogFileSize=0 + Server=zabbix-server + ServerActive=zabbix-server + HostnameItem=system.run[echo $NODE_NAME] + ListenIP=0.0.0.0 diff --git a/riscv/zabbix/zabbix-riscv.yaml b/riscv/zabbix/zabbix-riscv.yaml new file mode 100755 index 0000000..360a78a --- /dev/null +++ b/riscv/zabbix/zabbix-riscv.yaml @@ -0,0 +1,171 @@ +apiVersion: apps/v1 +kind: DaemonSet +metadata: + name: zabbix-agent + namespace: monitoring +spec: + selector: + matchLabels: + app: zabbix-agent + template: + metadata: + labels: + app: zabbix-agent + spec: + containers: + - name: zabbix-agent + image: allardkrings/riscv64-zabbix-agent2:plucky + imagePullPolicy: Always + securityContext: + privileged: true + ports: + - containerPort: 10050 + env: + - name: NODE_NAME + valueFrom: + fieldRef: + fieldPath: spec.nodeName + volumeMounts: + - name: config-volume + mountPath: /etc/zabbix/zabbix_agent2.conf + subPath: zabbix_agent2.conf + volumes: + - name: config-volume + configMap: + name: zabbix-agent-config +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: zabbix-server + namespace: monitoring + labels: + app: zabbix-server +spec: + replicas: 1 + selector: + matchLabels: + app: zabbix-server + template: + metadata: + labels: + app: zabbix-server + spec: + containers: + - name: zabbix-server + image: allardkrings/riscv64-zabbix-server-mysql:6.4.12 + ports: + - containerPort: 10051 + env: + - name: ZABBIX_LISTENIP + value: "::" + - name: ZBX_SERVER_HOST + value: zabbix-server + - name: MYSQL_USER + value: zabbix + - name: MYSQL_PASSWORD + value: zabbix + - name: MYSQL_DATABASE + value: zabbix + - name: DB_SERVER_HOST + value: mariadb.mariadb + - name: MARIADB_ROOT_PASSWORD + value: password + - name: ZBX_HISTORYCACHESIZE + value: 496M + - name: ZBX_TRENDCACHESIZE + value: 496M + - name: ZBX_HISTORYINDEXCACHESIZE + value: 496M + - name: ZBX_CACHESIZE + value: 1024M + - name: ZBX_VALUECACHESIZE + value: 496M +--- +apiVersion: v1 +kind: Service +metadata: + namespace: monitoring + name: zabbix-server + labels: + name: zabbix-server +spec: + type: ClusterIP + ports: + - port: 10051 + name: zabbix-server + selector: + app: zabbix-server +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: zabbix-web + namespace: monitoring + labels: + app: zabbix-web +spec: + replicas: 1 + selector: + matchLabels: + app: zabbix-web + template: + metadata: + labels: + app: zabbix-web + spec: + containers: + - name: zabbix-web + image: allardkrings/riscv64-zabbix-web-nginx-mysql:6.4.12 + ports: + - containerPort: 8080 + env: + - name: MYSQL_USER + value: zabbix + - name: MYSQL_PASSWORD + value: zabbix + - name: MYSQL_DATABASE + value: zabbix + - name: DB_SERVER_HOST + value: mariadb.mariadb + - name: MYSQL_ROOT_PASSWORD + value: password + - name: ZBX_SERVER_NAME + value: ALLDCS + - name: ZBX_SERVER_HOST + value: zabbix-server +--- +apiVersion: v1 +kind: Service +metadata: + name: zabbix-web + namespace: monitoring + labels: + name: zabbix-web +spec: + type: ClusterIP + ports: + - protocol: TCP + port: 8080 + targetPort: 8080 + selector: + app: zabbix-web +--- +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: zabbix-tls + namespace: monitoring +spec: + entryPoints: + - websecure + routes: + - match: Host(`zabbix-riscv.allarddcs.nl`) + kind: Rule + services: + - name: zabbix-web + port: 8080 + tls: + certResolver: letsencrypt + + diff --git a/riscv/zabbix/zabbix_agent2.conf b/riscv/zabbix/zabbix_agent2.conf new file mode 100644 index 0000000..0b65eee --- /dev/null +++ b/riscv/zabbix/zabbix_agent2.conf @@ -0,0 +1,558 @@ +# This is a configuration file for Zabbix agent 2 (Unix) +# To get more information about Zabbix, visit https://www.zabbix.com + +############ GENERAL PARAMETERS ################# + +### Option: PidFile +# Name of PID file. +# +# Mandatory: no +# Default: +# PidFile=/tmp/zabbix_agent2.pid + +PidFile=/run/zabbix/zabbix_agent2.pid + +### Option: LogType +# Specifies where log messages are written to: +# system - syslog +# file - file specified with LogFile parameter +# console - standard output +# +# Mandatory: no +# Default: +# LogType=file + +### Option: LogFile +# Log file name for LogType 'file' parameter. +# +# Mandatory: yes, if LogType is set to file, otherwise no +# Default: +# LogFile=/tmp/zabbix_agent2.log + +LogFile=/var/log/zabbix/zabbix_agent2.log + +### Option: LogFileSize +# Maximum size of log file in MB. +# 0 - disable automatic log rotation. +# +# Mandatory: no +# Range: 0-1024 +# Default: +# LogFileSize=1 + +LogFileSize=0 + +### Option: DebugLevel +# Specifies debug level: +# 0 - basic information about starting and stopping of Zabbix processes +# 1 - critical information +# 2 - error information +# 3 - warnings +# 4 - for debugging (produces lots of information) +# 5 - extended debugging (produces even more information) +# +# Mandatory: no +# Range: 0-5 +# Default: +# DebugLevel=3 + +### Option: SourceIP +# Source IP address for outgoing connections. +# +# Mandatory: no +# Default: +# SourceIP= + +##### Passive checks related + +### Option: Server +# List of comma delimited IP addresses, optionally in CIDR notation, or DNS names of Zabbix servers and Zabbix proxies. +# Incoming connections will be accepted only from the hosts listed here. +# If IPv6 support is enabled then '127.0.0.1', '::127.0.0.1', '::ffff:127.0.0.1' are treated equally +# and '::/0' will allow any IPv4 or IPv6 address. +# '0.0.0.0/0' can be used to allow any IPv4 address. +# Example: Server=127.0.0.1,192.168.1.0/24,::1,2001:db8::/32,zabbix.example.com +# +# Mandatory: yes +# Default: +# Server= + +Server=127.0.0.1 + +### Option: ListenPort +# Agent will listen on this port for connections from the server. +# +# Mandatory: no +# Range: 1024-32767 +# Default: +# ListenPort=10050 + +### Option: ListenIP +# List of comma delimited IP addresses that the agent should listen on. +# First IP address is sent to Zabbix server if connecting to it to retrieve list of active checks. +# +# Mandatory: no +# Default: +# ListenIP=0.0.0.0 + +### Option: StatusPort +# Agent will listen on this port for HTTP status requests. +# +# Mandatory: no +# Range: 1024-32767 +# Default: +# StatusPort= + +##### Active checks related + +### Option: ServerActive +# Zabbix server/proxy address or cluster configuration to get active checks from. +# Server/proxy address is IP address or DNS name and optional port separated by colon. +# Cluster configuration is one or more server addresses separated by semicolon. +# Multiple Zabbix servers/clusters and Zabbix proxies can be specified, separated by comma. +# More than one Zabbix proxy should not be specified from each Zabbix server/cluster. +# If Zabbix proxy is specified then Zabbix server/cluster for that proxy should not be specified. +# Multiple comma-delimited addresses can be provided to use several independent Zabbix servers in parallel. Spaces are allowed. +# If port is not specified, default port is used. +# IPv6 addresses must be enclosed in square brackets if port for that host is specified. +# If port is not specified, square brackets for IPv6 addresses are optional. +# If this parameter is not specified, active checks are disabled. +# Example for Zabbix proxy: +# ServerActive=127.0.0.1:10051 +# Example for multiple servers: +# ServerActive=127.0.0.1:20051,zabbix.domain,[::1]:30051,::1,[12fc::1] +# Example for high availability: +# ServerActive=zabbix.cluster.node1;zabbix.cluster.node2:20051;zabbix.cluster.node3 +# Example for high availability with two clusters and one server: +# ServerActive=zabbix.cluster.node1;zabbix.cluster.node2:20051,zabbix.cluster2.node1;zabbix.cluster2.node2,zabbix.domain +# +# Mandatory: no +# Default: +# ServerActive= + +ServerActive=127.0.0.1 + +### Option: Hostname +# List of comma delimited unique, case sensitive hostnames. +# Required for active checks and must match hostnames as configured on the server. +# Value is acquired from HostnameItem if undefined. +# +# Mandatory: no +# Default: +# Hostname= + +#Hostname=Zabbix server + +### Option: HostnameItem +# Item used for generating Hostname if it is undefined. Ignored if Hostname is defined. +# Does not support UserParameters or aliases. +# +# Mandatory: no +# Default: +# HostnameItem=system.hostname + +### Option: HostMetadata +# Optional parameter that defines host metadata. +# Host metadata is used at host auto-registration process. +# An agent will issue an error and not start if the value is over limit of 2034 bytes. +# If not defined, value will be acquired from HostMetadataItem. +# +# Mandatory: no +# Range: 0-2034 bytes +# Default: +# HostMetadata= + +### Option: HostMetadataItem +# Optional parameter that defines an item used for getting host metadata. +# Host metadata is used at host auto-registration process. +# During an auto-registration request an agent will log a warning message if +# the value returned by specified item is over limit of 65535 characters. +# This option is only used when HostMetadata is not defined. +# +# Mandatory: no +# Default: +# HostMetadataItem= + +### Option: HostInterface +# Optional parameter that defines host interface. +# Host interface is used at host auto-registration process. +# An agent will issue an error and not start if the value is over limit of 255 characters. +# If not defined, value will be acquired from HostInterfaceItem. +# +# Mandatory: no +# Range: 0-255 characters +# Default: +# HostInterface= + +### Option: HostInterfaceItem +# Optional parameter that defines an item used for getting host interface. +# Host interface is used at host auto-registration process. +# During an auto-registration request an agent will log a warning message if +# the value returned by specified item is over limit of 255 characters. +# This option is only used when HostInterface is not defined. +# +# Mandatory: no +# Default: +# HostInterfaceItem= + +### Option: RefreshActiveChecks +# How often list of active checks is refreshed, in seconds. +# +# Mandatory: no +# Range: 1-86400 +# Default: +# RefreshActiveChecks=5 + +### Option: BufferSend +# Do not keep data longer than N seconds in buffer. +# +# Mandatory: no +# Range: 1-3600 +# Default: +# BufferSend=5 + +### Option: BufferSize +# Maximum number of values in a memory buffer. The agent will send +# all collected data to Zabbix Server or Proxy if the buffer is full. +# Option is not valid if EnablePersistentBuffer=1 +# +# Mandatory: no +# Range: 2-65535 +# Default: +# BufferSize=1000 + +### Option: EnablePersistentBuffer +# Enable usage of local persistent storage for active items. +# 0 - disabled, in-memory buffer is used (default); 1 - use persistent buffer +# Mandatory: no +# Range: 0-1 +# Default: +# EnablePersistentBuffer=0 + +### Option: PersistentBufferPeriod +# Zabbix Agent2 will keep data for this time period in case of no +# connectivity with Zabbix server or proxy. Older data will be lost. Log data will be preserved. +# Option is valid if EnablePersistentBuffer=1 +# +# Mandatory: no +# Range: 1m-365d +# Default: +# PersistentBufferPeriod=1h + +### Option: PersistentBufferFile +# Full filename. Zabbix Agent2 will keep SQLite database in this file. +# Option is valid if EnablePersistentBuffer=1 +# +# Mandatory: no +# Default: +# PersistentBufferFile= + +### Option: HeartbeatFrequency +# Frequency of heartbeat messages in seconds. +# Used for monitoring availability of active checks. +# 0 - heartbeat messages disabled. +# +# Mandatory: no +# Range: 0-3600 +# Default: 60 +# HeartbeatFrequency= + +############ ADVANCED PARAMETERS ################# + +### Option: Alias +# Sets an alias for an item key. It can be used to substitute long and complex item key with a smaller and simpler one. +# Multiple Alias parameters may be present. Multiple parameters with the same Alias key are not allowed. +# Different Alias keys may reference the same item key. +# For example, to retrieve the ID of user 'zabbix': +# Alias=zabbix.userid:vfs.file.regexp[/etc/passwd,^zabbix:.:([0-9]+),,,,\1] +# Now shorthand key zabbix.userid may be used to retrieve data. +# Aliases can be used in HostMetadataItem but not in HostnameItem parameters. +# +# Mandatory: no +# Range: +# Default: + +### Option: Timeout +# Specifies how long to wait (in seconds) for establishing connection and exchanging data with Zabbix proxy or server. +# +# Mandatory: no +# Range: 1-30 +# Default: +# Timeout=3 + +### Option: Include +# You may include individual files or all files in a directory in the configuration file. +# Installing Zabbix will create include directory in /usr/local/etc, unless modified during the compile time. +# +# Mandatory: no +# Default: +# Include= + +Include=/etc/zabbix/zabbix_agent2.d/*.conf + +# Include=/usr/local/etc/zabbix_agent2.userparams.conf +# Include=/usr/local/etc/zabbix_agent2.conf.d/ +# Include=/usr/local/etc/zabbix_agent2.conf.d/*.conf + +### Option:PluginTimeout +# Timeout for connections with external plugins. +# +# Mandatory: no +# Range: 1-30 +# Default: +# PluginTimeout= + +### Option:PluginSocket +# Path to unix socket for external plugin communications. +# +# Mandatory: no +# Default:/tmp/agent.plugin.sock +# PluginSocket= + +####### USER-DEFINED MONITORED PARAMETERS ####### + +### Option: UnsafeUserParameters +# Allow all characters to be passed in arguments to user-defined parameters. +# The following characters are not allowed: +# \ ' " ` * ? [ ] { } ~ $ ! & ; ( ) < > | # @ +# Additionally, newline characters are not allowed. +# 0 - do not allow +# 1 - allow +# +# Mandatory: no +# Range: 0-1 +# Default: +# UnsafeUserParameters=0 + +### Option: UserParameter +# User-defined parameter to monitor. There can be several user-defined parameters. +# Format: UserParameter=, +# See 'zabbix_agentd' directory for examples. +# +# Mandatory: no +# Default: +# UserParameter= + +### Option: UserParameterDir +# Directory to execute UserParameter commands from. Only one entry is allowed. +# When executing UserParameter commands the agent will change the working directory to the one +# specified in the UserParameterDir option. +# This way UserParameter commands can be specified using the relative ./ prefix. +# +# Mandatory: no +# Default: +# UserParameterDir= + +### Option: ControlSocket +# The control socket, used to send runtime commands with '-R' option. +# +# Mandatory: no +# Default: +# ControlSocket= + +ControlSocket=/tmp/agent.sock + +####### TLS-RELATED PARAMETERS ####### + +### Option: TLSConnect +# How the agent should connect to server or proxy. Used for active checks. +# Only one value can be specified: +# unencrypted - connect without encryption +# psk - connect using TLS and a pre-shared key +# cert - connect using TLS and a certificate +# +# Mandatory: yes, if TLS certificate or PSK parameters are defined (even for 'unencrypted' connection) +# Default: +# TLSConnect=unencrypted + +### Option: TLSAccept +# What incoming connections to accept. +# Multiple values can be specified, separated by comma: +# unencrypted - accept connections without encryption +# psk - accept connections secured with TLS and a pre-shared key +# cert - accept connections secured with TLS and a certificate +# +# Mandatory: yes, if TLS certificate or PSK parameters are defined (even for 'unencrypted' connection) +# Default: +# TLSAccept=unencrypted + +### Option: TLSCAFile +# Full pathname of a file containing the top-level CA(s) certificates for +# peer certificate verification. +# +# Mandatory: no +# Default: +# TLSCAFile= + +### Option: TLSCRLFile +# Full pathname of a file containing revoked certificates. +# +# Mandatory: no +# Default: +# TLSCRLFile= + +### Option: TLSServerCertIssuer +# Allowed server certificate issuer. +# +# Mandatory: no +# Default: +# TLSServerCertIssuer= + +### Option: TLSServerCertSubject +# Allowed server certificate subject. +# +# Mandatory: no +# Default: +# TLSServerCertSubject= + +### Option: TLSCertFile +# Full pathname of a file containing the agent certificate or certificate chain. +# +# Mandatory: no +# Default: +# TLSCertFile= + +### Option: TLSKeyFile +# Full pathname of a file containing the agent private key. +# +# Mandatory: no +# Default: +# TLSKeyFile= + +### Option: TLSPSKIdentity +# Unique, case sensitive string used to identify the pre-shared key. +# +# Mandatory: no +# Default: +# TLSPSKIdentity= + +### Option: TLSPSKFile +# Full pathname of a file containing the pre-shared key. +# +# Mandatory: no +# Default: +# TLSPSKFile= + +####### PLUGIN-SPECIFIC PARAMETERS ####### + +### Option: Plugins +# A plugin can have one or more plugin specific configuration parameters in format: +# Plugins..= +# Plugins..= +# +# Mandatory: no +# Range: +# Default: + +### Option: Plugins.Log.MaxLinesPerSecond +# Maximum number of new lines the agent will send per second to Zabbix Server +# or Proxy processing 'log' and 'logrt' active checks. +# The provided value will be overridden by the parameter 'maxlines', +# provided in 'log' or 'logrt' item keys. +# +# Mandatory: no +# Range: 1-1000 +# Default: +# Plugins.Log.MaxLinesPerSecond=20 + +### Option: AllowKey +# Allow execution of item keys matching pattern. +# Multiple keys matching rules may be defined in combination with DenyKey. +# Key pattern is wildcard expression, which support "*" character to match any number of any characters in certain position. It might be used in both key name and key arguments. +# Parameters are processed one by one according their appearance order. +# If no AllowKey or DenyKey rules defined, all keys are allowed. +# +# Mandatory: no + +### Option: DenyKey +# Deny execution of items keys matching pattern. +# Multiple keys matching rules may be defined in combination with AllowKey. +# Key pattern is wildcard expression, which support "*" character to match any number of any characters in certain position. It might be used in both key name and key arguments. +# Parameters are processed one by one according their appearance order. +# If no AllowKey or DenyKey rules defined, all keys are allowed. +# Unless another system.run[*] rule is specified DenyKey=system.run[*] is added by default. +# +# Mandatory: no +# Default: +# DenyKey=system.run[*] + +### Option: Plugins.SystemRun.LogRemoteCommands +# Enable logging of executed shell commands as warnings. +# 0 - disabled +# 1 - enabled +# +# Mandatory: no +# Default: +# Plugins.SystemRun.LogRemoteCommands=0 + +### Option: ForceActiveChecksOnStart +# Perform active checks immediately after restart for first received configuration. +# Also available as per plugin configuration, example: Plugins.Uptime.System.ForceActiveChecksOnStart=1 +# +# Mandatory: no +# Range: 0-1 +# Default: +# ForceActiveChecksOnStart=0 + +# Include configuration files for plugins +Include=./zabbix_agent2.d/plugins.d/*.conf + +####### For advanced users - TLS ciphersuite selection criteria ####### + +### Option: TLSCipherCert13 +# Cipher string for OpenSSL 1.1.1 or newer in TLS 1.3. +# Override the default ciphersuite selection criteria for certificate-based encryption. +# +# Mandatory: no +# Default: +# TLSCipherCert13= + +### Option: TLSCipherCert +# OpenSSL (TLS 1.2) cipher string. +# Override the default ciphersuite selection criteria for certificate-based encryption. +# Example: +# EECDH+aRSA+AES128:RSA+aRSA+AES128 +# +# Mandatory: no +# Default: +# TLSCipherCert= + +### Option: TLSCipherPSK13 +# Cipher string for OpenSSL 1.1.1 or newer in TLS 1.3. +# Override the default ciphersuite selection criteria for PSK-based encryption. +# Example: +# TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256 +# +# Mandatory: no +# Default: +# TLSCipherPSK13= + +### Option: TLSCipherPSK +# OpenSSL (TLS 1.2) cipher string. +# Override the default ciphersuite selection criteria for PSK-based encryption. +# Example: +# kECDHEPSK+AES128:kPSK+AES128 +# +# Mandatory: no +# Default: +# TLSCipherPSK= + +### Option: TLSCipherAll13 +# Cipher string for OpenSSL 1.1.1 or newer in TLS 1.3. +# Override the default ciphersuite selection criteria for certificate- and PSK-based encryption. +# Example: +# TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256 +# +# Mandatory: no +# Default: +# TLSCipherAll13= + +### Option: TLSCipherAll +# OpenSSL (TLS 1.2) cipher string. +# Override the default ciphersuite selection criteria for certificate- and PSK-based encryption. +# Example: +# EECDH+aRSA+AES128:RSA+aRSA+AES128:kECDHEPSK+AES128:kPSK+AES128 +# +# Mandatory: no +# Default: +# TLSCipherAll= diff --git a/scripts/catalog-info.yaml b/scripts/catalog-info.yaml new file mode 100644 index 0000000..4040c66 --- /dev/null +++ b/scripts/catalog-info.yaml @@ -0,0 +1,10 @@ +apiVersion: backstage.io/v1alpha1 +kind: System +metadata: + name: scripts + title: Scripts System +spec: + owner: platform-team + partOf: + - ../catalog-info.yaml + subcomponents: diff --git a/scripts/create-token.sh b/scripts/create-token.sh new file mode 100755 index 0000000..95a7f2d --- /dev/null +++ b/scripts/create-token.sh @@ -0,0 +1 @@ +microk8s kubectl -n kube-system create token admin-user --duration=8544h diff --git a/scripts/delete-completed-riscv.sh b/scripts/delete-completed-riscv.sh new file mode 100755 index 0000000..e65e6ad --- /dev/null +++ b/scripts/delete-completed-riscv.sh @@ -0,0 +1,2 @@ +kubectl delete pod -A --field-selector=status.phase==Succeeded +kubectl delete pod -A --field-selector=status.phase==Failed diff --git a/scripts/delete-completed.sh b/scripts/delete-completed.sh new file mode 100755 index 0000000..dc90d44 --- /dev/null +++ b/scripts/delete-completed.sh @@ -0,0 +1,2 @@ +microk8s kubectl delete pod -A --field-selector=status.phase==Succeeded +microk8s kubectl delete pod -A --field-selector=status.phase==Failed diff --git a/scripts/delete-images.sh b/scripts/delete-images.sh new file mode 100755 index 0000000..c304c87 --- /dev/null +++ b/scripts/delete-images.sh @@ -0,0 +1 @@ +docker rmi -f $(docker images -aq) diff --git a/scripts/delete-terminating.sh b/scripts/delete-terminating.sh new file mode 100755 index 0000000..6a3be24 --- /dev/null +++ b/scripts/delete-terminating.sh @@ -0,0 +1,5 @@ +microk8s kubectl get pods --all-namespaces | grep Terminating | while read line; do + pod_name=$(echo $line | awk '{print $2}' ) \ + name_space=$(echo $line | awk '{print $1}' ); \ + microk8s kubectl delete pods $pod_name -n $name_space --grace-period=0 --force +done diff --git a/scripts/install-dev.sh b/scripts/install-dev.sh new file mode 100755 index 0000000..d4e6f3d --- /dev/null +++ b/scripts/install-dev.sh @@ -0,0 +1,126 @@ +#!/bin/bash +cd ~/containers/kubernetes +echo "" +echo "installeren algemene zaken:" +echo "" +microk8s enable rbac +microk8s enable ingress +microk8s enable host-access +microk8s enable community +microk8s enable metallb:192.168.2.181-192.168.2.190 +microk8s enable cert-manager +microk8s kubectl apply -f kubernetes/cert-manager/cluster-issuer.yaml +echo "" +echo "installeren traefik:" +echo "" +microk8s kubectl create namespace traefik +microk8s helm install traefik traefik/traefik -f traefik/helm/values.yaml -n traefik +microk8s kubectl apply -f traefik/helm/tlsoption.yaml +microk8s kubectl apply -f traefik/helm/dev/ingressroute-dashboard.yaml +echo "" +echo "installeren kubernetes dashboard:" +echo "" +microk8s enable dashboard +microk8s kubectl apply -f kubernetes/dashboard/serviceaccount.yaml +microk8s kubectl apply -f kubernetes/dashboard/clusterrolebinding.yaml +microk8s kubectl apply -f kubernetes/dashboard/ingressroute-tls-dev.yaml +echo "" +echo "installeren nginx:" +echo "" +microk8s kubectl apply -f nginx/nginx-dev.yaml +echo "" +echo "installeren portainer:" +echo "" +microk8s kubectl apply -f portainer/yaml/portainer.yaml +echo "" +echo "installeren kubeapps:" +echo "" +#microk8s kubectl apply -f +microk8s kubectl create ns kubeapps +microk8s helm install kubeapps bitnami/kubeapps -n kubeapps +microk8s kubectl apply -f kubeapps/ingressroute-tls.yaml +microk8s enable observability +microk8s kubectl apply -f prometheus/microk8s/dev/ingressroute-tls.yaml +microk8s kubectl apply -f grafana/microk8s/dev/ingressroute-tls.yaml +echo "" +echo "installeren postgres14:" +echo "" +microk8s kubectl create ns postgres +#microk8s kubectl apply -f postgres/postgres13/postgres13dev.yaml +microk8s kubectl apply -f postgres/postgres14/postgres14dev.yaml +echo "" +echo "installeren pgadmin:" +echo "" +microk8s kubectl apply -f pgadmin/dev/pgadmin.yaml +echo "" +echo "installeren gitea:" +echo "" +microk8s kubectl create ns gitea +microk8s kubectl apply -f gitea/helm/gitea-pvc.yaml +microk8s helm install gitea bitnami/gitea -n gitea +microk8s kubectl apply -f gitea/helm/ingressrouteTCP-tls.yaml +microk8s kubectl apply -f gitea/helm/ingressroute-http.yaml +echo "" +echo "installeren harbor:" +echo "" +microk8s kubectl create ns harbor +microk8s kubectl apply -f harbor/helm/harbor-pv.yaml +microk8s kubectl apply -f harbor/helm/harbor-pvc.yaml +microk8s helm install harbor bitnami/harbor -n harbor -f harbor/helm/values.yaml +microk8s kubectl apply -f harbor/helm/ingressroute.yaml +harbor/helm/create-regstry-credentials.sh +echo "" +echo "installeren nexus:" +echo "" +microk8s kubectl apply -f nexus/nexus.yaml +microk8s kubectl apply -f nexus/ingressroute-nexus-http.yaml +microk8s kubectl apply -f nexus/ingressroute-registry-tls.yaml +microk8s kubectl apply -f nexus/ingressrouteTCP-nexus-tls.yaml +echo "" +echo "installeren sonarqube:" +echo "" +microk8s kubectl create ns sonarqube +microk8s kubectl create configmap sonar-properties --from-file="sonarqube/configmap/sonar-project.properties" -n sonarqube +microk8s kubectl apply -f sonarqube/sonarqube.yaml +echo "" +echo "installeren dependency-track:" +echo "" +microk8s kubectl apply -f deptrack/yaml/deptrack.yaml +echo "" +echo "installeren argocd:" +echo "" +microk8s kubectl create ns argocd +microk8s helm install argocd bitnami/argo-cd -n argocd -f argocd/helm/values.yaml +microk8s kubectl apply -f argocd/helm/ingressroute-tls.yaml + +echo "" +echo "installeren tekton:" +echo "" +microk8s kubectl apply --filename https://storage.googleapis.com/tekton-releases/pipeline/latest/release.yaml +microk8s kubectl apply --filename https://storage.googleapis.com/tekton-releases/dashboard/latest/release-full.yaml +microk8s kubectl apply -f tekton/ingressroute-tls.yaml +echo "" +echo "installeren tekton-tasks:" +echo "" +microk8s kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/git-clone/0.9/raw +microk8s kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/kaniko/0.6/raw +microk8s kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/buildah/0.5/raw +microk8s kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/maven/0.3/raw +microk8s kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/sonarqube-scanner/0.4/raw +microk8s kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/syft/0.1/syft.yaml +microk8s kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/grype/0.1/grype.yaml +microk8s kubectl apply -f /home/ubuntu/containers/kubernetes/tekton/tasks/push-sbom-task.yaml +microk8s kubectl apply -f /home/ubuntu/containers/kubernetes/tekton/tasks/register-change-task.yaml +microk8s kubectl apply -f /home/ubuntu/containers/kubernetes/tekton/tasks/curl-task.yaml +microk8s kubectl apply -f /home/ubuntu/containers/kubernetes/tekton/tasks/argocd/argocd-task-sync-and-wait.yaml +microk8s kubectl create -f /home/ubuntu/containers/kubernetes/tekton/tasks/argocd/argocd-env-configmap.yaml +/home/ubuntu/containers/kubernetes/tekton/tasks/argocd/create-argocd-env-secret.sh +echo "" +echo "installeren tekton triggers:" +echo "" +microk8s kubectl apply -f https://storage.googleapis.com/tekton-releases/triggers/latest/release.yaml +microk8s kubectl apply -f https://storage.googleapis.com/tekton-releases/triggers/latest/interceptors.yaml +echo "" +echo "installeren gitea event-listener:" +echo "" +microk8s kubectl apply -f gitea/tekton-triggers/gitea-trigger.yaml diff --git a/scripts/install-odroid.sh b/scripts/install-odroid.sh new file mode 100755 index 0000000..aa8ffeb --- /dev/null +++ b/scripts/install-odroid.sh @@ -0,0 +1,39 @@ +#installatie microok8s: +sudo snap install microk8s --classic --channel=1.29 +#enablen juiste features +microk8s enable community +microk8s enable dashboard +microk8s enable metallb 192.168.2.230-192.168.2.239 +microk8s enable rbac +microk8s enable cert-manager +microk8s kubectl apply -f kubernetes/cert-manager/cluster-issuer.yaml +microk8s enable ingress +#installeren kubernetes-dashboard: +microk8s kubectl apply kubernetes/dashboard/serviceaccount.yaml +microk8s kubectl apply kubernetes/dashboard/clusterrolebinding.yaml +microk8s kubectl apply -f kubernetes/dashboard/ingressroute-tls-odroid.yaml +#installeren traefik: +microk8s kubectl create ns traefik +helm install traefik traefik/traefik -f traefik/helm/values.yaml -n traefik +microk8s kubectl apply -f traefik/helm/tlsoption.yaml +microk8s kubectl apply -f traefik/helm/odroid/ingressroute-dashboard.yaml +#installatie postgres-operator +microk8s kubectl apply -f \ +https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.22/\ +releases/cnpg-1.22.0.yaml +#installatie nfs-provisioner +microk8s disable hostpath-storage +microk8s helm3 repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts +microk8s helm3 repo update +microk8s helm3 install csi-driver-nfs csi-driver-nfs/csi-driver-nfs \ + --namespace kube-system \ + --set kubeletDir=/var/snap/microk8s/common/var/lib/kubelet +microk8s kubectl apply -f nfs/nfs-storage-class.yaml +microk8s kubectl patch storageclass nfs-csi \ + -p '{"metadata": {"annotations":{"storageclass.kubernetes.io/is-default-class":"true"}}}' +#installatie minio +microk8s kubectl create ns postgres +kubectl apply -f minio/minio.yaml +#installatie postgres13 cluster met harbor als eerste database: +microk8s kubectl apply -f cnpg/recovery.yaml +microk8s kubectl apply -f cnpg/postgres13-lb.yaml diff --git a/scripts/mem.sh b/scripts/mem.sh new file mode 100755 index 0000000..77cd9f8 --- /dev/null +++ b/scripts/mem.sh @@ -0,0 +1,3 @@ +for src in arm core h264 isp v3d uart pwm emmc pixel vec hdmi dpi ; do + echo -e "$src:\t$(sudo vcgencmd get_mem $src)" ; +done diff --git a/scripts/mynetwork.txt b/scripts/mynetwork.txt new file mode 100644 index 0000000..494bcec --- /dev/null +++ b/scripts/mynetwork.txt @@ -0,0 +1,1017 @@ + Currently scanning: Starting. | Screen View: Unique Hosts + + 0 Captured ARP Req/Rep packets, from 0 hosts. Total size: 0 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + Currently scanning: Starting. | Screen View: Unique Hosts + + 7 Captured ARP Req/Rep packets, from 4 hosts. Total size: 420 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 1 60 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 2 120 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 2 120 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 2 120 Raspberry Pi Trading Ltd + Currently scanning: 192.168.2.0/24 | Screen View: Unique Hosts + + 15 Captured ARP Req/Rep packets, from 5 hosts. Total size: 900 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 2 120 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 4 240 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 4 240 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 4 240 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 1 60 devolo AG + Currently scanning: 192.168.2.0/24 | Screen View: Unique Hosts + + 56 Captured ARP Req/Rep packets, from 34 hosts. Total size: 3198 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 3 180 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 7 420 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 7 420 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 7 420 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 3 180 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: 192.168.2.0/24 | Screen View: Unique Hosts + + 61 Captured ARP Req/Rep packets, from 34 hosts. Total size: 3498 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 7 420 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 7 420 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 7 420 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 7 420 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 4 240 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 74 Captured ARP Req/Rep packets, from 34 hosts. Total size: 4278 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 14 840 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 8 480 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 9 540 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 9 540 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 5 300 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 76 Captured ARP Req/Rep packets, from 34 hosts. Total size: 4398 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 15 900 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 8 480 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 9 540 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 9 540 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 6 360 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 77 Captured ARP Req/Rep packets, from 34 hosts. Total size: 4458 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 16 960 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 8 480 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 9 540 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 9 540 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 6 360 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 79 Captured ARP Req/Rep packets, from 34 hosts. Total size: 4578 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 18 1080 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 8 480 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 9 540 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 9 540 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 6 360 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 81 Captured ARP Req/Rep packets, from 34 hosts. Total size: 4680 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 19 1140 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 8 480 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 9 540 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 9 540 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 6 360 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 81 Captured ARP Req/Rep packets, from 34 hosts. Total size: 4680 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 19 1140 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 8 480 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 9 540 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 9 540 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 6 360 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 82 Captured ARP Req/Rep packets, from 34 hosts. Total size: 4740 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 20 1200 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 8 480 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 9 540 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 9 540 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 6 360 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 83 Captured ARP Req/Rep packets, from 34 hosts. Total size: 4800 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 21 1260 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 8 480 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 9 540 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 9 540 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 6 360 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 90 Captured ARP Req/Rep packets, from 34 hosts. Total size: 5220 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 21 1260 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 10 600 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 11 660 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 11 660 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 7 420 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 97 Captured ARP Req/Rep packets, from 34 hosts. Total size: 5640 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 21 1260 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 12 720 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 13 780 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 13 780 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 8 480 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 103 Captured ARP Req/Rep packets, from 34 hosts. Total size: 6000 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 21 1260 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 14 840 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 15 900 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 15 900 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 8 480 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 109 Captured ARP Req/Rep packets, from 34 hosts. Total size: 6360 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 21 1260 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 16 960 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 17 1020 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 17 1020 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 8 480 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 117 Captured ARP Req/Rep packets, from 34 hosts. Total size: 6840 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 21 1260 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 10 600 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 117 Captured ARP Req/Rep packets, from 34 hosts. Total size: 6840 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 21 1260 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 10 600 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 117 Captured ARP Req/Rep packets, from 34 hosts. Total size: 6840 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 21 1260 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 10 600 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 118 Captured ARP Req/Rep packets, from 34 hosts. Total size: 6900 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 22 1320 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 10 600 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 122 Captured ARP Req/Rep packets, from 35 hosts. Total size: 7122 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 25 1500 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 10 600 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 125 Captured ARP Req/Rep packets, from 35 hosts. Total size: 7302 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 28 1680 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 10 600 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 125 Captured ARP Req/Rep packets, from 35 hosts. Total size: 7302 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 28 1680 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 10 600 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 130 Captured ARP Req/Rep packets, from 35 hosts. Total size: 7602 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 33 1980 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 10 600 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 133 Captured ARP Req/Rep packets, from 35 hosts. Total size: 7782 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 35 2100 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 11 660 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 138 Captured ARP Req/Rep packets, from 35 hosts. Total size: 8082 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 39 2340 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 12 720 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 139 Captured ARP Req/Rep packets, from 35 hosts. Total size: 8142 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 40 2400 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 12 720 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 145 Captured ARP Req/Rep packets, from 35 hosts. Total size: 8502 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 44 2640 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 14 840 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 158 Captured ARP Req/Rep packets, from 35 hosts. Total size: 9282 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 56 3360 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 15 900 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 1 60 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 171 Captured ARP Req/Rep packets, from 35 hosts. Total size: 10062 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 68 4080 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 15 900 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 2 120 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 171 Captured ARP Req/Rep packets, from 35 hosts. Total size: 10062 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 68 4080 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 15 900 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 2 120 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 173 Captured ARP Req/Rep packets, from 35 hosts. Total size: 10182 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 70 4200 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 15 900 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 2 120 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 175 Captured ARP Req/Rep packets, from 35 hosts. Total size: 10302 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 72 4320 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 15 900 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 2 120 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 177 Captured ARP Req/Rep packets, from 35 hosts. Total size: 10422 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 74 4440 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 15 900 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 2 120 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. + Currently scanning: Finished! | Screen View: Unique Hosts + + 177 Captured ARP Req/Rep packets, from 35 hosts. Total size: 10422 + _____________________________________________________________________________ + IP At MAC Address Count Len MAC Vendor / Hostname + ----------------------------------------------------------------------------- + 192.168.2.1 10:71:b3:80:f0:b3 74 4440 Zyxel Communications Corporation + 192.168.2.191 d8:3a:dd:a7:c6:95 18 1080 Raspberry Pi Trading Ltd + 192.168.2.192 e4:5f:01:1b:42:38 19 1140 Raspberry Pi Trading Ltd + 192.168.2.193 d8:3a:dd:d4:fd:e1 19 1140 Raspberry Pi Trading Ltd + 192.168.2.24 f4:06:8d:8e:0e:a0 15 900 devolo AG + 192.168.2.10 5c:a6:e6:64:03:04 1 42 TP-Link Corporation Limited + 192.168.2.17 5c:a6:e6:64:07:98 1 42 TP-Link Corporation Limited + 192.168.2.12 5c:aa:fd:25:c2:20 1 60 Sonos, Inc. + 192.168.2.32 94:9f:3e:14:f6:ae 1 60 Sonos, Inc. + 192.168.2.34 94:9f:3e:f7:47:aa 1 60 Sonos, Inc. + 192.168.2.52 f4:06:8d:66:71:98 1 60 devolo AG + 192.168.2.57 00:e0:4c:01:27:74 1 60 REALTEK SEMICONDUCTOR CORP. + 192.168.2.56 f4:06:8d:66:71:a4 1 60 devolo AG + 192.168.2.57 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.66 8c:98:06:3e:e4:40 1 60 SHENZHEN SEI ROBOTICS CO.,LTD + 192.168.2.70 4a:2e:f3:14:c3:60 1 60 Unknown vendor + 192.168.2.75 78:28:ca:32:b2:36 1 60 Sonos, Inc. + 192.168.2.77 94:9f:3e:f7:8d:fc 1 60 Sonos, Inc. + 192.168.2.76 b0:a7:b9:6f:47:ad 2 120 TP-Link Corporation Limited + 192.168.2.74 5c:a6:e6:64:0b:3c 1 42 TP-Link Corporation Limited + 192.168.2.90 54:60:09:01:22:72 1 60 Google, Inc. + 192.168.2.85 f8:0f:f9:51:54:16 1 60 Google, Inc. + 192.168.2.110 f8:e4:e3:77:83:fa 1 42 Intel Corporate + 192.168.2.18 fc:67:1f:93:d3:cd 1 42 Tuya Smart Inc. diff --git a/scripts/wakeonlan.sh b/scripts/wakeonlan.sh new file mode 100755 index 0000000..a0f86f9 --- /dev/null +++ b/scripts/wakeonlan.sh @@ -0,0 +1 @@ +wakeonlan 04:D4:C4:7A:CB:CB diff --git a/temp/catalog-info-url.yaml b/temp/catalog-info-url.yaml new file mode 100644 index 0000000..d024481 --- /dev/null +++ b/temp/catalog-info-url.yaml @@ -0,0 +1,25 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: kubernetes-deployments + description: All deployment manifests for our Kubernetes apps + links: + - url: https://gitea-dev.allarddcs.nl/allard/kubernetes + title: Kubernetes Configuration +spec: + type: service + lifecycle: production + owner: group:allarddcs + system: system:kubernetes +--- +apiVersion: backstage.io/v1alpha1 +kind: Location +metadata: + name: allarddcs-group + description: Location for the Allard DCS group +spec: + type: url + targets: + - ./group.yaml # explicit file + - ./system.yaml # explicit file + - ./dev/ # dir discovery diff --git a/temp/catalog-info.old b/temp/catalog-info.old new file mode 100644 index 0000000..2f0868d --- /dev/null +++ b/temp/catalog-info.old @@ -0,0 +1,26 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: kubernetes-deployments + description: All deployment manifests for our Kubernetes apps + annotations: + backstage.io/techdocs-ref: url:https://gitea-dev.allarddcs.nl/AllardDCS/kubernetes/raw/main/ + links: + - url: https://gitea-dev.allarddcs.nl/allard/kubernetes + title: Kubernetes Configuration +spec: + type: service + lifecycle: production + owner: group:allarddcs + system: system:kubernetes +--- +apiVersion: backstage.io/v1alpha1 +kind: Location +metadata: + name: allarddcs-locations +spec: + type: dir + targets: + - ./group.yaml + - ./system.yaml + diff --git a/temp/catalog-info.werkt b/temp/catalog-info.werkt new file mode 100644 index 0000000..a161ac6 --- /dev/null +++ b/temp/catalog-info.werkt @@ -0,0 +1,58 @@ +# catalog-info.yaml + +# ----------------------------- +# Group definition +# ----------------------------- +apiVersion: backstage.io/v1alpha1 +kind: Group +metadata: + name: allarddcs + description: All developers in AllardDCS +spec: + type: team + children: [] + +--- +# ----------------------------- +# System definition +# ----------------------------- +apiVersion: backstage.io/v1alpha1 +kind: System +metadata: + name: kubernetes + description: Kubernetes deployment system +spec: + owner: group:allarddcs + +--- +# ----------------------------- +# Component definition +# ----------------------------- +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: kubernetes-deployments + description: All deployment manifests for our Kubernetes apps + annotations: + # TechDocs URL pointing to the repository root (will render README.md recursively) + backstage.io/techdocs-ref: url:https://gitea-dev.allarddcs.nl/AllardDCS/kubernetes/raw/main/ + links: + - url: https://gitea-dev.allarddcs.nl/allard/kubernetes + title: Kubernetes Configuration +spec: + type: service + lifecycle: production + owner: group:allarddcs + system: system:kubernetes + +--- +# ----------------------------- +# Location definition +# ----------------------------- +apiVersion: backstage.io/v1alpha1 +kind: Location +metadata: + name: kubernetes-catalog +spec: + type: gitea + target: https://gitea-dev.allarddcs.nl/AllardDCS/kubernetes diff --git a/temp/catalog-info.werktniet b/temp/catalog-info.werktniet new file mode 100644 index 0000000..5a49c1b --- /dev/null +++ b/temp/catalog-info.werktniet @@ -0,0 +1,44 @@ +# ----------------------------- +# Group definition +# ----------------------------- +apiVersion: backstage.io/v1alpha1 +kind: Group +metadata: + name: allarddcs + description: All developers in AllardDCS +spec: + type: team + children: [] + +--- +# ----------------------------- +# System definition +# ----------------------------- +apiVersion: backstage.io/v1alpha1 +kind: System +metadata: + name: kubernetes + description: Kubernetes deployment system +spec: + owner: group:allarddcs + +--- +# ----------------------------- +# Component definition +# ----------------------------- +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: kubernetes-deployments + description: All deployment manifests for our Kubernetes apps + annotations: + # TechDocs URL pointing to repo root + backstage.io/techdocs-ref: url:https://gitea-dev.allarddcs.nl/AllardDCS/kubernetes/raw/main/ + links: + - url: https://gitea-dev.allarddcs.nl/AllardDCS/kubernetes + title: Kubernetes Configuration +spec: + type: service + lifecycle: production + owner: group:allarddcs + system: system:kubernetes diff --git a/temp/catalog-info.yaml b/temp/catalog-info.yaml new file mode 100644 index 0000000..9b58cd1 --- /dev/null +++ b/temp/catalog-info.yaml @@ -0,0 +1,10 @@ +apiVersion: backstage.io/v1alpha1 +kind: System +metadata: + name: temp + title: Temp System +spec: + owner: platform-team + partOf: + - ../catalog-info.yaml + subcomponents: diff --git a/temp/root-location.yaml b/temp/root-location.yaml new file mode 100644 index 0000000..2ee1ad5 --- /dev/null +++ b/temp/root-location.yaml @@ -0,0 +1,14 @@ +apiVersion: backstage.io/v1alpha1 +kind: Location +metadata: + name: allarddcs-root + description: Root location for all Backstage entities in this repo +spec: + type: git + target: https://gitea-dev.allarddcs.nl/allard/kubernetes.git + options: + branch: master + targets: + - group.yaml + - system.yaml + - dev/ # recursive discovery of catalog-info.yaml in dev/ and its subfolders diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..fb57ccd --- /dev/null +++ b/yarn.lock @@ -0,0 +1,4 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + +